From c7e186a1a92f5dacbf090b8caf5400a58f83c8a0 Mon Sep 17 00:00:00 2001 From: ZF sun <34314687@qq.com> Date: Wed, 17 Dec 2025 17:33:24 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A0=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E5=AF=BC=E5=85=A5Excel=E7=9A=84=E4=BE=9D=E8=B5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/application/admin/controller/Project.php | 94 + .../admin/template/project/users_index.htm | 240 +- src/template/pc/header.htm | 2 +- src/template/pc/lists_guestbook_project.htm | 8 +- src/vendor/autoload.php | 18 + src/vendor/composer/ClassLoader.php | 208 +- src/vendor/composer/InstalledVersions.php | 359 + src/vendor/composer/autoload_classmap.php | 3 +- src/vendor/composer/autoload_namespaces.php | 3 +- src/vendor/composer/autoload_psr4.php | 3 +- src/vendor/composer/autoload_real.php | 30 +- src/vendor/composer/autoload_static.php | 20 +- src/vendor/composer/installed.json | 120 +- src/vendor/composer/installed.php | 32 + src/vendor/composer/platform_check.php | 26 + src/vendor/phpoffice/phpexcel/.gitattributes | 3 + src/vendor/phpoffice/phpexcel/.gitignore | 9 + src/vendor/phpoffice/phpexcel/.travis.yml | 29 + .../phpoffice/phpexcel/Classes/PHPExcel.php | 1153 +++ .../phpexcel/Classes/PHPExcel/Autoloader.php | 81 + .../PHPExcel/CachedObjectStorage/APC.php | 290 + .../CachedObjectStorage/CacheBase.php | 368 + .../PHPExcel/CachedObjectStorage/DiscISAM.php | 208 + .../PHPExcel/CachedObjectStorage/ICache.php | 103 + .../PHPExcel/CachedObjectStorage/Igbinary.php | 149 + .../PHPExcel/CachedObjectStorage/Memcache.php | 308 + .../PHPExcel/CachedObjectStorage/Memory.php | 118 + .../CachedObjectStorage/MemoryGZip.php | 133 + .../CachedObjectStorage/MemorySerialized.php | 129 + .../PHPExcel/CachedObjectStorage/PHPTemp.php | 200 + .../PHPExcel/CachedObjectStorage/SQLite.php | 307 + .../PHPExcel/CachedObjectStorage/SQLite3.php | 346 + .../PHPExcel/CachedObjectStorage/Wincache.php | 289 + .../PHPExcel/CachedObjectStorageFactory.php | 231 + .../CalcEngine/CyclicReferenceStack.php | 94 + .../Classes/PHPExcel/CalcEngine/Logger.php | 151 + .../phpexcel/Classes/PHPExcel/Calculation.php | 4391 +++++++++ .../Classes/PHPExcel/Calculation/Database.php | 676 ++ .../Classes/PHPExcel/Calculation/DateTime.php | 1553 ++++ .../PHPExcel/Calculation/Engineering.php | 2650 ++++++ .../PHPExcel/Calculation/Exception.php | 46 + .../PHPExcel/Calculation/ExceptionHandler.php | 45 + .../PHPExcel/Calculation/Financial.php | 2359 +++++ .../PHPExcel/Calculation/FormulaParser.php | 622 ++ .../PHPExcel/Calculation/FormulaToken.php | 176 + .../Classes/PHPExcel/Calculation/Function.php | 148 + .../PHPExcel/Calculation/Functions.php | 759 ++ .../Classes/PHPExcel/Calculation/Logical.php | 285 + .../PHPExcel/Calculation/LookupRef.php | 879 ++ .../Classes/PHPExcel/Calculation/MathTrig.php | 1459 +++ .../PHPExcel/Calculation/Statistical.php | 3745 ++++++++ .../Classes/PHPExcel/Calculation/TextData.php | 651 ++ .../PHPExcel/Calculation/Token/Stack.php | 111 + .../PHPExcel/Calculation/functionlist.txt | 351 + .../phpexcel/Classes/PHPExcel/Cell.php | 1032 +++ .../PHPExcel/Cell/AdvancedValueBinder.php | 187 + .../Classes/PHPExcel/Cell/DataType.php | 115 + .../Classes/PHPExcel/Cell/DataValidation.php | 492 + .../PHPExcel/Cell/DefaultValueBinder.php | 102 + .../Classes/PHPExcel/Cell/Hyperlink.php | 124 + .../Classes/PHPExcel/Cell/IValueBinder.php | 47 + .../phpexcel/Classes/PHPExcel/Chart.php | 680 ++ .../phpexcel/Classes/PHPExcel/Chart/Axis.php | 561 ++ .../Classes/PHPExcel/Chart/DataSeries.php | 390 + .../PHPExcel/Chart/DataSeriesValues.php | 333 + .../Classes/PHPExcel/Chart/Exception.php | 46 + .../Classes/PHPExcel/Chart/GridLines.php | 472 + .../Classes/PHPExcel/Chart/Layout.php | 486 + .../Classes/PHPExcel/Chart/Legend.php | 170 + .../Classes/PHPExcel/Chart/PlotArea.php | 126 + .../Classes/PHPExcel/Chart/Properties.php | 363 + .../Chart/Renderer/PHP Charting Libraries.txt | 20 + .../PHPExcel/Chart/Renderer/jpgraph.php | 883 ++ .../phpexcel/Classes/PHPExcel/Chart/Title.php | 86 + .../phpexcel/Classes/PHPExcel/Comment.php | 338 + .../Classes/PHPExcel/DocumentProperties.php | 611 ++ .../Classes/PHPExcel/DocumentSecurity.php | 222 + .../phpexcel/Classes/PHPExcel/Exception.php | 54 + .../phpexcel/Classes/PHPExcel/HashTable.php | 204 + .../phpexcel/Classes/PHPExcel/Helper/HTML.php | 808 ++ .../phpexcel/Classes/PHPExcel/IComparable.php | 34 + .../phpexcel/Classes/PHPExcel/IOFactory.php | 289 + .../phpexcel/Classes/PHPExcel/NamedRange.php | 249 + .../Classes/PHPExcel/Reader/Abstract.php | 301 + .../phpexcel/Classes/PHPExcel/Reader/CSV.php | 406 + .../PHPExcel/Reader/DefaultReadFilter.php | 51 + .../Classes/PHPExcel/Reader/Excel2003XML.php | 801 ++ .../Classes/PHPExcel/Reader/Excel2007.php | 2051 +++++ .../PHPExcel/Reader/Excel2007/Chart.php | 520 ++ .../PHPExcel/Reader/Excel2007/Theme.php | 127 + .../Classes/PHPExcel/Reader/Excel5.php | 7594 ++++++++++++++++ .../Classes/PHPExcel/Reader/Excel5/Color.php | 32 + .../PHPExcel/Reader/Excel5/Color/BIFF5.php | 77 + .../PHPExcel/Reader/Excel5/Color/BIFF8.php | 77 + .../PHPExcel/Reader/Excel5/Color/BuiltIn.php | 31 + .../PHPExcel/Reader/Excel5/ErrorCode.php | 28 + .../Classes/PHPExcel/Reader/Excel5/Escher.php | 669 ++ .../Classes/PHPExcel/Reader/Excel5/MD5.php | 203 + .../Classes/PHPExcel/Reader/Excel5/RC4.php | 81 + .../PHPExcel/Reader/Excel5/Style/Border.php | 36 + .../Reader/Excel5/Style/FillPattern.php | 41 + .../Classes/PHPExcel/Reader/Exception.php | 46 + .../Classes/PHPExcel/Reader/Gnumeric.php | 850 ++ .../phpexcel/Classes/PHPExcel/Reader/HTML.php | 549 ++ .../Classes/PHPExcel/Reader/IReadFilter.php | 39 + .../Classes/PHPExcel/Reader/IReader.php | 46 + .../Classes/PHPExcel/Reader/OOCalc.php | 696 ++ .../phpexcel/Classes/PHPExcel/Reader/SYLK.php | 478 + .../Classes/PHPExcel/ReferenceHelper.php | 913 ++ .../phpexcel/Classes/PHPExcel/RichText.php | 191 + .../PHPExcel/RichText/ITextElement.php | 56 + .../Classes/PHPExcel/RichText/Run.php | 98 + .../Classes/PHPExcel/RichText/TextElement.php | 105 + .../phpexcel/Classes/PHPExcel/Settings.php | 389 + .../Classes/PHPExcel/Shared/CodePage.php | 156 + .../phpexcel/Classes/PHPExcel/Shared/Date.php | 418 + .../Classes/PHPExcel/Shared/Drawing.php | 270 + .../Classes/PHPExcel/Shared/Escher.php | 83 + .../PHPExcel/Shared/Escher/DgContainer.php | 75 + .../Escher/DgContainer/SpgrContainer.php | 102 + .../DgContainer/SpgrContainer/SpContainer.php | 388 + .../PHPExcel/Shared/Escher/DggContainer.php | 196 + .../Escher/DggContainer/BstoreContainer.php | 57 + .../DggContainer/BstoreContainer/BSE.php | 112 + .../DggContainer/BstoreContainer/BSE/Blip.php | 83 + .../Classes/PHPExcel/Shared/Excel5.php | 298 + .../phpexcel/Classes/PHPExcel/Shared/File.php | 180 + .../phpexcel/Classes/PHPExcel/Shared/Font.php | 741 ++ .../PHPExcel/Shared/JAMA/CHANGELOG.TXT | 16 + .../Shared/JAMA/CholeskyDecomposition.php | 148 + .../Shared/JAMA/EigenvalueDecomposition.php | 864 ++ .../PHPExcel/Shared/JAMA/LUDecomposition.php | 257 + .../Classes/PHPExcel/Shared/JAMA/Matrix.php | 1159 +++ .../PHPExcel/Shared/JAMA/QRDecomposition.php | 235 + .../JAMA/SingularValueDecomposition.php | 528 ++ .../PHPExcel/Shared/JAMA/utils/Error.php | 83 + .../PHPExcel/Shared/JAMA/utils/Maths.php | 44 + .../phpexcel/Classes/PHPExcel/Shared/OLE.php | 526 ++ .../Shared/OLE/ChainedBlockStream.php | 206 + .../Classes/PHPExcel/Shared/OLE/PPS.php | 230 + .../Classes/PHPExcel/Shared/OLE/PPS/File.php | 74 + .../Classes/PHPExcel/Shared/OLE/PPS/Root.php | 462 + .../Classes/PHPExcel/Shared/OLERead.php | 318 + .../PHPExcel/Shared/PCLZip/gnu-lgpl.txt | 504 + .../PHPExcel/Shared/PCLZip/pclzip.lib.php | 5173 +++++++++++ .../Classes/PHPExcel/Shared/PCLZip/readme.txt | 421 + .../PHPExcel/Shared/PasswordHasher.php | 67 + .../Classes/PHPExcel/Shared/String.php | 819 ++ .../Classes/PHPExcel/Shared/TimeZone.php | 144 + .../Classes/PHPExcel/Shared/XMLWriter.php | 124 + .../Classes/PHPExcel/Shared/ZipArchive.php | 163 + .../PHPExcel/Shared/ZipStreamWrapper.php | 200 + .../PHPExcel/Shared/trend/bestFitClass.php | 425 + .../Shared/trend/exponentialBestFitClass.php | 138 + .../Shared/trend/linearBestFitClass.php | 102 + .../Shared/trend/logarithmicBestFitClass.php | 110 + .../Shared/trend/polynomialBestFitClass.php | 222 + .../Shared/trend/powerBestFitClass.php | 138 + .../PHPExcel/Shared/trend/trendClass.php | 147 + .../phpexcel/Classes/PHPExcel/Style.php | 644 ++ .../Classes/PHPExcel/Style/Alignment.php | 464 + .../Classes/PHPExcel/Style/Border.php | 282 + .../Classes/PHPExcel/Style/Borders.php | 429 + .../phpexcel/Classes/PHPExcel/Style/Color.php | 443 + .../Classes/PHPExcel/Style/Conditional.php | 293 + .../phpexcel/Classes/PHPExcel/Style/Fill.php | 322 + .../phpexcel/Classes/PHPExcel/Style/Font.php | 543 ++ .../Classes/PHPExcel/Style/NumberFormat.php | 751 ++ .../Classes/PHPExcel/Style/Protection.php | 204 + .../Classes/PHPExcel/Style/Supervisor.php | 125 + .../phpexcel/Classes/PHPExcel/Worksheet.php | 2968 ++++++ .../Classes/PHPExcel/Worksheet/AutoFilter.php | 846 ++ .../PHPExcel/Worksheet/AutoFilter/Column.php | 405 + .../Worksheet/AutoFilter/Column/Rule.php | 468 + .../PHPExcel/Worksheet/BaseDrawing.php | 507 ++ .../PHPExcel/Worksheet/CellIterator.php | 88 + .../Classes/PHPExcel/Worksheet/Column.php | 86 + .../PHPExcel/Worksheet/ColumnCellIterator.php | 216 + .../PHPExcel/Worksheet/ColumnDimension.php | 132 + .../PHPExcel/Worksheet/ColumnIterator.php | 201 + .../Classes/PHPExcel/Worksheet/Dimension.php | 178 + .../Classes/PHPExcel/Worksheet/Drawing.php | 147 + .../PHPExcel/Worksheet/Drawing/Shadow.php | 296 + .../PHPExcel/Worksheet/HeaderFooter.php | 494 + .../Worksheet/HeaderFooterDrawing.php | 361 + .../PHPExcel/Worksheet/MemoryDrawing.php | 201 + .../PHPExcel/Worksheet/PageMargins.php | 233 + .../Classes/PHPExcel/Worksheet/PageSetup.php | 839 ++ .../Classes/PHPExcel/Worksheet/Protection.php | 581 ++ .../Classes/PHPExcel/Worksheet/Row.php | 86 + .../PHPExcel/Worksheet/RowCellIterator.php | 225 + .../PHPExcel/Worksheet/RowDimension.php | 132 + .../PHPExcel/Worksheet/RowIterator.php | 192 + .../Classes/PHPExcel/Worksheet/SheetView.php | 187 + .../Classes/PHPExcel/WorksheetIterator.php | 108 + .../Classes/PHPExcel/Writer/Abstract.php | 157 + .../phpexcel/Classes/PHPExcel/Writer/CSV.php | 352 + .../Classes/PHPExcel/Writer/Excel2007.php | 533 ++ .../PHPExcel/Writer/Excel2007/Chart.php | 1520 ++++ .../PHPExcel/Writer/Excel2007/Comments.php | 260 + .../Writer/Excel2007/ContentTypes.php | 240 + .../PHPExcel/Writer/Excel2007/DocProps.php | 262 + .../PHPExcel/Writer/Excel2007/Drawing.php | 589 ++ .../PHPExcel/Writer/Excel2007/Rels.php | 424 + .../PHPExcel/Writer/Excel2007/RelsRibbon.php | 67 + .../PHPExcel/Writer/Excel2007/RelsVBA.php | 63 + .../PHPExcel/Writer/Excel2007/StringTable.php | 313 + .../PHPExcel/Writer/Excel2007/Style.php | 696 ++ .../PHPExcel/Writer/Excel2007/Theme.php | 869 ++ .../PHPExcel/Writer/Excel2007/Workbook.php | 448 + .../PHPExcel/Writer/Excel2007/Worksheet.php | 1219 +++ .../PHPExcel/Writer/Excel2007/WriterPart.php | 75 + .../Classes/PHPExcel/Writer/Excel5.php | 904 ++ .../PHPExcel/Writer/Excel5/BIFFwriter.php | 246 + .../Classes/PHPExcel/Writer/Excel5/Escher.php | 523 ++ .../Classes/PHPExcel/Writer/Excel5/Font.php | 166 + .../Classes/PHPExcel/Writer/Excel5/Parser.php | 1531 ++++ .../PHPExcel/Writer/Excel5/Workbook.php | 1444 +++ .../PHPExcel/Writer/Excel5/Worksheet.php | 4240 +++++++++ .../Classes/PHPExcel/Writer/Excel5/Xf.php | 557 ++ .../Classes/PHPExcel/Writer/Exception.php | 46 + .../phpexcel/Classes/PHPExcel/Writer/HTML.php | 1612 ++++ .../Classes/PHPExcel/Writer/IWriter.php | 37 + .../Classes/PHPExcel/Writer/OpenDocument.php | 190 + .../Writer/OpenDocument/Cell/Comment.php | 63 + .../PHPExcel/Writer/OpenDocument/Content.php | 272 + .../PHPExcel/Writer/OpenDocument/Meta.php | 95 + .../PHPExcel/Writer/OpenDocument/MetaInf.php | 87 + .../PHPExcel/Writer/OpenDocument/Mimetype.php | 41 + .../PHPExcel/Writer/OpenDocument/Settings.php | 76 + .../PHPExcel/Writer/OpenDocument/Styles.php | 92 + .../Writer/OpenDocument/Thumbnails.php | 41 + .../Writer/OpenDocument/WriterPart.php | 30 + .../phpexcel/Classes/PHPExcel/Writer/PDF.php | 89 + .../Classes/PHPExcel/Writer/PDF/Core.php | 355 + .../Classes/PHPExcel/Writer/PDF/DomPDF.php | 108 + .../Classes/PHPExcel/Writer/PDF/mPDF.php | 118 + .../Classes/PHPExcel/Writer/PDF/tcPDF.php | 123 + .../Classes/PHPExcel/locale/bg/config | 49 + .../Classes/PHPExcel/locale/cs/config | 47 + .../Classes/PHPExcel/locale/cs/functions | 438 + .../Classes/PHPExcel/locale/da/config | 48 + .../Classes/PHPExcel/locale/da/functions | 438 + .../Classes/PHPExcel/locale/de/config | 47 + .../Classes/PHPExcel/locale/de/functions | 438 + .../Classes/PHPExcel/locale/en/uk/config | 32 + .../Classes/PHPExcel/locale/es/config | 47 + .../Classes/PHPExcel/locale/es/functions | 438 + .../Classes/PHPExcel/locale/fi/config | 47 + .../Classes/PHPExcel/locale/fi/functions | 438 + .../Classes/PHPExcel/locale/fr/config | 47 + .../Classes/PHPExcel/locale/fr/functions | 438 + .../Classes/PHPExcel/locale/hu/config | 47 + .../Classes/PHPExcel/locale/hu/functions | 438 + .../Classes/PHPExcel/locale/it/config | 47 + .../Classes/PHPExcel/locale/it/functions | 438 + .../Classes/PHPExcel/locale/nl/config | 47 + .../Classes/PHPExcel/locale/nl/functions | 438 + .../Classes/PHPExcel/locale/no/config | 47 + .../Classes/PHPExcel/locale/no/functions | 438 + .../Classes/PHPExcel/locale/pl/config | 47 + .../Classes/PHPExcel/locale/pl/functions | 438 + .../Classes/PHPExcel/locale/pt/br/config | 47 + .../Classes/PHPExcel/locale/pt/br/functions | 408 + .../Classes/PHPExcel/locale/pt/config | 47 + .../Classes/PHPExcel/locale/pt/functions | 408 + .../Classes/PHPExcel/locale/ru/config | 47 + .../Classes/PHPExcel/locale/ru/functions | 438 + .../Classes/PHPExcel/locale/sv/config | 47 + .../Classes/PHPExcel/locale/sv/functions | 408 + .../Classes/PHPExcel/locale/tr/config | 47 + .../Classes/PHPExcel/locale/tr/functions | 438 + .../Calculations/Database/DAVERAGE.php | 90 + .../Examples/Calculations/Database/DCOUNT.php | 90 + .../Examples/Calculations/Database/DGET.php | 86 + .../Examples/Calculations/Database/DMAX.php | 89 + .../Examples/Calculations/Database/DMIN.php | 89 + .../Calculations/Database/DPRODUCT.php | 87 + .../Examples/Calculations/Database/DSTDEV.php | 90 + .../Calculations/Database/DSTDEVP.php | 90 + .../Examples/Calculations/Database/DVAR.php | 90 + .../Examples/Calculations/Database/DVARP.php | 90 + .../Examples/Calculations/DateTime/DATE.php | 83 + .../Calculations/DateTime/DATEVALUE.php | 76 + .../Examples/Calculations/DateTime/TIME.php | 81 + .../Calculations/DateTime/TIMEVALUE.php | 72 + .../Examples/Calculations/index.php | 51 + .../Examples/Reader/exampleReader01.php | 42 + .../Examples/Reader/exampleReader02.php | 50 + .../Examples/Reader/exampleReader03.php | 51 + .../Examples/Reader/exampleReader04.php | 47 + .../Examples/Reader/exampleReader05.php | 51 + .../Examples/Reader/exampleReader06.php | 54 + .../Examples/Reader/exampleReader07.php | 55 + .../Examples/Reader/exampleReader08.php | 55 + .../Examples/Reader/exampleReader09.php | 71 + .../Examples/Reader/exampleReader10.php | 82 + .../Examples/Reader/exampleReader11.php | 91 + .../Examples/Reader/exampleReader12.php | 94 + .../Examples/Reader/exampleReader13.php | 60 + .../Examples/Reader/exampleReader14.php | 105 + .../Examples/Reader/exampleReader15.php | 71 + .../Examples/Reader/exampleReader16.php | 46 + .../Examples/Reader/exampleReader17.php | 52 + .../Examples/Reader/exampleReader18.php | 50 + .../Examples/Reader/exampleReader19.php | 53 + .../Examples/Reader/sampleData/example1.csv | 4 + .../Examples/Reader/sampleData/example1.tsv | 4 + .../Examples/Reader/sampleData/example1.xls | Bin 0 -> 22528 bytes .../Examples/Reader/sampleData/example2.csv | 223 + .../Examples/Reader/sampleData/example2.xls | Bin 0 -> 36864 bytes .../exampleWorkBookReader01.php | 93 + .../exampleWorkBookReader02.php | 52 + .../exampleWorkBookReader03.php | 80 + .../exampleWorkBookReader04.php | 55 + .../sampleData/example1.xls | Bin 0 -> 20992 bytes .../sampleData/example1.xlsx | Bin 0 -> 9733 bytes .../sampleData/example2.xls | Bin 0 -> 22528 bytes .../phpexcel/Documentation/Examples/index.php | 50 + .../Documentation/FunctionListByCategory.txt | 377 + .../Documentation/FunctionListByName.txt | 381 + .../Functionality Cross-Reference.xls | Bin 0 -> 38912 bytes ...lter Reference developer documentation.doc | Bin 0 -> 636416 bytes ...tion Reference developer documentation.doc | Bin 0 -> 628736 bytes ...umentation - Reading Spreadsheet Files.doc | Bin 0 -> 173568 bytes .../PHPExcel developer documentation.doc | Bin 0 -> 885248 bytes .../assets/ClassDiagrams/Architecture.cd | 51 + .../assets/ClassDiagrams/Architecture.png | Bin 0 -> 16945 bytes .../assets/ClassDiagrams/ClassDiagrams.csproj | 64 + .../ClassDiagrams/ClassDiagrams.csproj.user | 5 + .../assets/ClassDiagrams/ClassDiagrams.sln | 20 + .../assets/ClassDiagrams/Classes/IReader.cs | 15 + .../assets/ClassDiagrams/Classes/IWriter.cs | 15 + .../assets/ClassDiagrams/Classes/PHPExcel.cs | 40 + .../Classes/PHPExcel_IOFactory.cs | 41 + .../Classes/PHPExcel_Reader_Excel2007.cs | 25 + .../Classes/PHPExcel_Reader_Excel5.cs | 63 + .../Classes/PHPExcel_Reader_Serialized.cs | 44 + .../Classes/PHPExcel_Writer_Excel2007.cs | 25 + .../Classes/PHPExcel_Writer_Serialized.cs | 82 + .../assets/ClassDiagrams/Classes/Worksheet.cs | 14 + .../ClassDiagrams/Exports/Architecture.png | Bin 0 -> 15122 bytes .../ClassDiagrams/Exports/ReaderWriter.png | Bin 0 -> 46094 bytes .../assets/ClassDiagrams/ReaderWriter.cd | 135 + .../assets/ClassDiagrams/ReaderWriter.png | Bin 0 -> 57944 bytes .../FunctionReference/01-Introduction.md | 11 + .../02-01-Date-and-Time-Handling.md | 123 + .../02-General-Introduction.md | 36 + .../FunctionReference/03-01-Cube-Functions.md | 34 + .../03-02-Database-Functions.md | 618 ++ .../03-03-Date-and-Time-Functions.md | 1000 ++ .../Features/Autofilters/01-Autofilters.md | 19 + .../Autofilters/02-Setting-an-Autofilter.md | 24 + .../Autofilters/03-Autofilter-Expressions.md | 27 + .../04-01-Autofilter-Expressions-Simple.md | 52 + .../04-02-Autofilter-Expressions-Dategroup.md | 48 + .../04-03-Autofilter-Expressions-Custom.md | 84 + .../04-04-Autofilter-Expressions-Dynamic.md | 88 + .../04-05-Autofilter-Expressions-Topten.md | 69 + .../Autofilters/05-Executing-Autofilters.md | 42 + .../Autofilters/06-Autofilter-Sorting.md | 7 + .../Autofilters/images/01-01-autofilter.png | Bin 0 -> 45173 bytes .../Autofilters/images/01-02-autofilter.png | Bin 0 -> 14496 bytes .../images/01-03-filter-icon-1.png | Bin 0 -> 453 bytes .../images/01-03-filter-icon-2.png | Bin 0 -> 640 bytes .../Autofilters/images/01-04-autofilter.png | Bin 0 -> 17489 bytes .../images/04-01-simple-autofilter.png | Bin 0 -> 67694 bytes .../images/04-02-dategroup-autofilter.png | Bin 0 -> 49268 bytes .../images/04-03-custom-autofilter-1.png | Bin 0 -> 51786 bytes .../images/04-03-custom-autofilter-2.png | Bin 0 -> 53489 bytes .../images/04-04-dynamic-autofilter.png | Bin 0 -> 111531 bytes .../images/04-05-topten-autofilter-1.png | Bin 0 -> 53737 bytes .../images/04-05-topten-autofilter-2.png | Bin 0 -> 22842 bytes .../Functions/FunctionListByCategory.md | 411 + .../markdown/Functions/FunctionListByName.md | 485 + .../markdown/Overview/01-Getting-Started.md | 179 + .../markdown/Overview/02-Architecture.md | 76 + .../Overview/03-Creating-a-Spreadsheet.md | 34 + .../Overview/04-Configuration-Settings.md | 140 + .../Overview/05-Deleting-a-Workbook.md | 13 + .../markdown/Overview/06-Worksheets.md | 94 + .../markdown/Overview/07-Accessing-Cells.md | 390 + .../markdown/Overview/08-Recipes.md | 1214 +++ .../Overview/09-Calculation-Engine.md | 52 + .../Overview/10-Reading-and-Writing.md | 714 ++ .../markdown/Overview/11-Appendices.md | 100 + .../markdown/Overview/images/01-schematic.png | Bin 0 -> 14519 bytes .../Overview/images/02-readers-writers.png | Bin 0 -> 55819 bytes .../Overview/images/07-simple-example-1.png | Bin 0 -> 12239 bytes .../Overview/images/07-simple-example-2.png | Bin 0 -> 9620 bytes .../Overview/images/07-simple-example-3.png | Bin 0 -> 7157 bytes .../Overview/images/07-simple-example-4.png | Bin 0 -> 8018 bytes .../Overview/images/08-cell-comment.png | Bin 0 -> 31473 bytes .../Overview/images/08-column-width.png | Bin 0 -> 14985 bytes .../Overview/images/08-page-setup-margins.png | Bin 0 -> 125173 bytes .../images/08-page-setup-scaling-options.png | Bin 0 -> 24136 bytes .../images/08-styling-border-options.png | Bin 0 -> 18878 bytes .../images/09-command-line-calculation.png | Bin 0 -> 44332 bytes .../Overview/images/09-formula-in-cell-1.png | Bin 0 -> 26053 bytes .../Overview/images/09-formula-in-cell-2.png | Bin 0 -> 34014 bytes .../01-File-Formats.md | 60 + .../ReadingSpreadsheetFiles/02-Security.md | 13 + .../03-Loading-a-Spreadsheet.md | 21 + .../04-Loading-with-a-Reader.md | 56 + .../05-Reader-Options.md | 392 + .../06-Error-Handling.md | 20 + .../07-Helper-Methods.md | 47 + .../phpoffice/phpexcel/Examples/.gitignore | 5 + .../phpexcel/Examples/01pharSimple.php | 112 + .../Examples/01simple-download-ods.php | 89 + .../Examples/01simple-download-pdf.php | 104 + .../Examples/01simple-download-xls.php | 89 + .../Examples/01simple-download-xlsx.php | 89 + .../phpoffice/phpexcel/Examples/01simple.php | 125 + .../phpexcel/Examples/01simplePCLZip.php | 106 + .../phpexcel/Examples/02types-xls.php | 183 + .../phpoffice/phpexcel/Examples/02types.php | 204 + .../phpexcel/Examples/03formulas.php | 149 + .../phpexcel/Examples/04printing.php | 125 + .../phpexcel/Examples/05featuredemo.inc.php | 394 + .../phpexcel/Examples/05featuredemo.php | 78 + .../06largescale-with-cellcaching-sqlite.php | 129 + .../06largescale-with-cellcaching-sqlite3.php | 129 + .../06largescale-with-cellcaching.php | 128 + .../phpexcel/Examples/06largescale-xls.php | 136 + .../phpexcel/Examples/06largescale.php | 136 + .../phpoffice/phpexcel/Examples/07reader.php | 76 + .../phpexcel/Examples/07readerPCLZip.php | 79 + .../Examples/08conditionalformatting.php | 189 + .../Examples/08conditionalformatting2.php | 136 + .../phpexcel/Examples/09pagebreaks.php | 134 + .../Examples/10autofilter-selection-1.php | 221 + .../Examples/10autofilter-selection-2.php | 213 + .../10autofilter-selection-display.php | 198 + .../phpexcel/Examples/10autofilter.php | 171 + .../Examples/11documentsecurity-xls.php | 109 + .../phpexcel/Examples/11documentsecurity.php | 109 + .../phpexcel/Examples/12cellProtection.php | 107 + .../phpexcel/Examples/13calculation.php | 235 + .../Examples/13calculationCyclicFormulae.php | 97 + .../phpoffice/phpexcel/Examples/14excel5.php | 63 + .../Examples/15datavalidation-xls.php | 155 + .../phpexcel/Examples/15datavalidation.php | 156 + .../phpoffice/phpexcel/Examples/16csv.php | 105 + .../phpoffice/phpexcel/Examples/17html.php | 64 + .../Examples/18extendedcalculation.php | 108 + .../phpexcel/Examples/19namedrange.php | 129 + .../phpexcel/Examples/20readexcel5.php | 79 + .../phpoffice/phpexcel/Examples/21pdf.php | 94 + .../phpexcel/Examples/22heavilyformatted.php | 116 + .../phpexcel/Examples/23sharedstyles.php | 124 + .../phpexcel/Examples/24readfilter.php | 77 + .../phpexcel/Examples/25inmemoryimage.php | 89 + .../phpoffice/phpexcel/Examples/26utf8.php | 122 + .../phpexcel/Examples/27imagesexcel5.php | 64 + .../phpexcel/Examples/28iterator.php | 82 + .../Examples/29advancedvaluebinder.php | 183 + .../phpexcel/Examples/30template.php | 91 + .../Examples/31docproperties_write-xls.php | 119 + .../Examples/31docproperties_write.php | 119 + .../phpexcel/Examples/32chartreadwrite.php | 131 + .../phpexcel/Examples/33chartcreate-area.php | 142 + .../Examples/33chartcreate-bar-stacked.php | 145 + .../phpexcel/Examples/33chartcreate-bar.php | 145 + .../Examples/33chartcreate-column-2.php | 154 + .../Examples/33chartcreate-column.php | 145 + .../Examples/33chartcreate-composite.php | 203 + .../phpexcel/Examples/33chartcreate-line.php | 142 + .../33chartcreate-multiple-charts.php | 220 + .../phpexcel/Examples/33chartcreate-pie.php | 215 + .../phpexcel/Examples/33chartcreate-radar.php | 155 + .../Examples/33chartcreate-scatter.php | 139 + .../phpexcel/Examples/33chartcreate-stock.php | 151 + .../phpexcel/Examples/34chartupdate.php | 78 + .../phpexcel/Examples/35chartrender.php | 134 + .../Examples/36chartreadwriteHTML.php | 151 + .../phpexcel/Examples/36chartreadwritePDF.php | 174 + .../phpexcel/Examples/37page_layout_view.php | 83 + .../phpexcel/Examples/38cloneWorksheet.php | 118 + .../phpexcel/Examples/39dropdown.php | 175 + .../phpexcel/Examples/40duplicateStyle.php | 51 + .../phpexcel/Examples/41password.php | 84 + .../phpexcel/Examples/42richText.php | 164 + .../phpexcel/Examples/43mergeWorkbooks.php | 91 + .../phpexcel/Examples/44worksheetInfo.php | 58 + .../phpexcel/Examples/Excel2003XMLReader.php | 61 + .../phpexcel/Examples/Excel2003XMLTest.xml | 1 + .../phpexcel/Examples/GnumericReader.php | 60 + .../phpexcel/Examples/GnumericTest.gnumeric | Bin 0 -> 7823 bytes .../phpexcel/Examples/OOCalcReader.php | 61 + .../phpexcel/Examples/OOCalcReaderPCLZip.php | 64 + .../phpexcel/Examples/OOCalcTest.ods | Bin 0 -> 17931 bytes .../phpoffice/phpexcel/Examples/Quadratic.php | 68 + .../phpexcel/Examples/Quadratic2.php | 65 + .../phpexcel/Examples/SylkReader.php | 50 + .../phpoffice/phpexcel/Examples/SylkTest.slk | 152 + .../phpoffice/phpexcel/Examples/XMLReader.php | 60 + .../phpoffice/phpexcel/Examples/XMLTest.xml | 450 + .../Examples/data/continents/Africa.txt | 54 + .../Examples/data/continents/Asia.txt | 44 + .../Examples/data/continents/Europe.txt | 47 + .../data/continents/North America.txt | 23 + .../Examples/data/continents/Oceania.txt | 14 + .../data/continents/South America.txt | 12 + .../phpexcel/Examples/images/paid.png | Bin 0 -> 1605 bytes .../Examples/images/phpexcel_logo.gif | Bin 0 -> 6104 bytes .../phpoffice/phpexcel/Examples/runall.php | 132 + src/vendor/phpoffice/phpexcel/changelog.txt | 1445 +++ src/vendor/phpoffice/phpexcel/composer.json | 43 + src/vendor/phpoffice/phpexcel/install.txt | 75 + src/vendor/phpoffice/phpexcel/license.md | 345 + .../phpspreadsheet/.php-cs-fixer.dist.php | 226 + .../phpoffice/phpspreadsheet/.phpcs.xml.dist | 22 + .../phpoffice/phpspreadsheet/CHANGELOG.md | 1114 +++ .../phpoffice/phpspreadsheet/CONTRIBUTING.md | 20 + src/vendor/phpoffice/phpspreadsheet/LICENSE | 21 + src/vendor/phpoffice/phpspreadsheet/README.md | 100 + .../phpoffice/phpspreadsheet/composer.json | 110 + .../phpspreadsheet/phpstan-baseline.neon | 4157 +++++++++ .../phpspreadsheet/phpstan-conditional.php | 58 + .../phpspreadsheet/phpstan.neon.dist | 27 + .../Calculation/ArrayEnabled.php | 133 + .../Calculation/BinaryComparison.php | 181 + .../Calculation/Calculation.php | 5533 +++++++++++ .../PhpSpreadsheet/Calculation/Category.php | 20 + .../PhpSpreadsheet/Calculation/Database.php | 440 + .../Calculation/Database/DAverage.php | 45 + .../Calculation/Database/DCount.php | 43 + .../Calculation/Database/DCountA.php | 42 + .../Calculation/Database/DGet.php | 51 + .../Calculation/Database/DMax.php | 46 + .../Calculation/Database/DMin.php | 46 + .../Calculation/Database/DProduct.php | 45 + .../Calculation/Database/DStDev.php | 46 + .../Calculation/Database/DStDevP.php | 46 + .../Calculation/Database/DSum.php | 45 + .../Calculation/Database/DVar.php | 46 + .../Calculation/Database/DVarP.php | 46 + .../Calculation/Database/DatabaseAbstract.php | 174 + .../PhpSpreadsheet/Calculation/DateTime.php | 915 ++ .../Calculation/DateTimeExcel/Constants.php | 38 + .../Calculation/DateTimeExcel/Current.php | 59 + .../Calculation/DateTimeExcel/Date.php | 172 + .../Calculation/DateTimeExcel/DateParts.php | 151 + .../Calculation/DateTimeExcel/DateValue.php | 157 + .../Calculation/DateTimeExcel/Days.php | 62 + .../Calculation/DateTimeExcel/Days360.php | 118 + .../Calculation/DateTimeExcel/Difference.php | 158 + .../Calculation/DateTimeExcel/Helpers.php | 307 + .../Calculation/DateTimeExcel/Month.php | 101 + .../Calculation/DateTimeExcel/NetworkDays.php | 119 + .../Calculation/DateTimeExcel/Time.php | 130 + .../Calculation/DateTimeExcel/TimeParts.php | 132 + .../Calculation/DateTimeExcel/TimeValue.php | 78 + .../Calculation/DateTimeExcel/Week.php | 278 + .../Calculation/DateTimeExcel/WorkDay.php | 201 + .../Calculation/DateTimeExcel/YearFrac.php | 133 + .../Engine/ArrayArgumentHelper.php | 209 + .../Engine/ArrayArgumentProcessor.php | 175 + .../Calculation/Engine/BranchPruner.php | 223 + .../Engine/CyclicReferenceStack.php | 73 + .../Calculation/Engine/Logger.php | 142 + .../Calculation/Engineering.php | 1446 +++ .../Calculation/Engineering/BesselI.php | 145 + .../Calculation/Engineering/BesselJ.php | 180 + .../Calculation/Engineering/BesselK.php | 135 + .../Calculation/Engineering/BesselY.php | 141 + .../Calculation/Engineering/BitWise.php | 275 + .../Calculation/Engineering/Compare.php | 82 + .../Calculation/Engineering/Complex.php | 121 + .../Engineering/ComplexFunctions.php | 611 ++ .../Engineering/ComplexOperations.php | 134 + .../Calculation/Engineering/Constants.php | 11 + .../Calculation/Engineering/ConvertBase.php | 69 + .../Calculation/Engineering/ConvertBinary.php | 163 + .../Engineering/ConvertDecimal.php | 213 + .../Calculation/Engineering/ConvertHex.php | 175 + .../Calculation/Engineering/ConvertOctal.php | 174 + .../Calculation/Engineering/ConvertUOM.php | 693 ++ .../Engineering/EngineeringValidations.php | 33 + .../Calculation/Engineering/Erf.php | 105 + .../Calculation/Engineering/ErfC.php | 77 + .../PhpSpreadsheet/Calculation/Exception.php | 26 + .../Calculation/ExceptionHandler.php | 24 + .../PhpSpreadsheet/Calculation/Financial.php | 1430 +++ .../Calculation/Financial/Amortization.php | 214 + .../CashFlow/CashFlowValidations.php | 53 + .../Financial/CashFlow/Constant/Periodic.php | 200 + .../CashFlow/Constant/Periodic/Cumulative.php | 142 + .../CashFlow/Constant/Periodic/Interest.php | 217 + .../Periodic/InterestAndPrincipal.php | 44 + .../CashFlow/Constant/Periodic/Payments.php | 116 + .../Calculation/Financial/CashFlow/Single.php | 109 + .../CashFlow/Variable/NonPeriodic.php | 259 + .../Financial/CashFlow/Variable/Periodic.php | 161 + .../Calculation/Financial/Constants.php | 19 + .../Calculation/Financial/Coupons.php | 417 + .../Calculation/Financial/Depreciation.php | 267 + .../Calculation/Financial/Dollar.php | 132 + .../Financial/FinancialValidations.php | 158 + .../Calculation/Financial/Helpers.php | 58 + .../Calculation/Financial/InterestRate.php | 73 + .../Financial/Securities/AccruedInterest.php | 151 + .../Financial/Securities/Price.php | 284 + .../Financial/Securities/Rates.php | 138 + .../Securities/SecurityValidations.php | 42 + .../Financial/Securities/Yields.php | 153 + .../Calculation/Financial/TreasuryBill.php | 148 + .../Calculation/FormulaParser.php | 629 ++ .../Calculation/FormulaToken.php | 150 + .../PhpSpreadsheet/Calculation/Functions.php | 714 ++ .../Calculation/Information/ErrorValue.php | 71 + .../Calculation/Information/ExcelError.php | 171 + .../Calculation/Information/Value.php | 328 + .../Calculation/Internal/MakeMatrix.php | 11 + .../Calculation/Internal/WildcardMatch.php | 39 + .../PhpSpreadsheet/Calculation/Logical.php | 314 + .../Calculation/Logical/Boolean.php | 36 + .../Calculation/Logical/Conditional.php | 209 + .../Calculation/Logical/Operations.php | 207 + .../PhpSpreadsheet/Calculation/LookupRef.php | 416 + .../Calculation/LookupRef/Address.php | 119 + .../Calculation/LookupRef/ExcelMatch.php | 203 + .../Calculation/LookupRef/Filter.php | 81 + .../Calculation/LookupRef/Formula.php | 43 + .../Calculation/LookupRef/HLookup.php | 121 + .../Calculation/LookupRef/Helpers.php | 74 + .../Calculation/LookupRef/Hyperlink.php | 41 + .../Calculation/LookupRef/Indirect.php | 122 + .../Calculation/LookupRef/Lookup.php | 110 + .../Calculation/LookupRef/LookupBase.php | 66 + .../LookupRef/LookupRefValidations.php | 40 + .../Calculation/LookupRef/Matrix.php | 138 + .../Calculation/LookupRef/Offset.php | 137 + .../LookupRef/RowColumnInformation.php | 209 + .../Calculation/LookupRef/Selection.php | 51 + .../Calculation/LookupRef/Sort.php | 342 + .../Calculation/LookupRef/Unique.php | 141 + .../Calculation/LookupRef/VLookup.php | 117 + .../PhpSpreadsheet/Calculation/MathTrig.php | 1520 ++++ .../Calculation/MathTrig/Absolute.php | 37 + .../Calculation/MathTrig/Angle.php | 63 + .../Calculation/MathTrig/Arabic.php | 112 + .../Calculation/MathTrig/Base.php | 68 + .../Calculation/MathTrig/Ceiling.php | 167 + .../Calculation/MathTrig/Combinations.php | 91 + .../Calculation/MathTrig/Exp.php | 37 + .../Calculation/MathTrig/Factorial.php | 125 + .../Calculation/MathTrig/Floor.php | 195 + .../Calculation/MathTrig/Gcd.php | 70 + .../Calculation/MathTrig/Helpers.php | 130 + .../Calculation/MathTrig/IntClass.php | 40 + .../Calculation/MathTrig/Lcm.php | 111 + .../Calculation/MathTrig/Logarithms.php | 102 + .../Calculation/MathTrig/MatrixFunctions.php | 179 + .../Calculation/MathTrig/Operations.php | 162 + .../Calculation/MathTrig/Random.php | 99 + .../Calculation/MathTrig/Roman.php | 846 ++ .../Calculation/MathTrig/Round.php | 218 + .../Calculation/MathTrig/SeriesSum.php | 53 + .../Calculation/MathTrig/Sign.php | 38 + .../Calculation/MathTrig/Sqrt.php | 64 + .../Calculation/MathTrig/Subtotal.php | 135 + .../Calculation/MathTrig/Sum.php | 118 + .../Calculation/MathTrig/SumSquares.php | 143 + .../Calculation/MathTrig/Trig/Cosecant.php | 64 + .../Calculation/MathTrig/Trig/Cosine.php | 116 + .../Calculation/MathTrig/Trig/Cotangent.php | 118 + .../Calculation/MathTrig/Trig/Secant.php | 64 + .../Calculation/MathTrig/Trig/Sine.php | 116 + .../Calculation/MathTrig/Trig/Tangent.php | 161 + .../Calculation/MathTrig/Trunc.php | 50 + .../Calculation/Statistical.php | 1820 ++++ .../Calculation/Statistical/AggregateBase.php | 50 + .../Calculation/Statistical/Averages.php | 260 + .../Calculation/Statistical/Averages/Mean.php | 132 + .../Calculation/Statistical/Conditional.php | 304 + .../Calculation/Statistical/Confidence.php | 52 + .../Calculation/Statistical/Counts.php | 95 + .../Calculation/Statistical/Deviations.php | 142 + .../Statistical/Distributions/Beta.php | 280 + .../Statistical/Distributions/Binomial.php | 237 + .../Statistical/Distributions/ChiSquared.php | 337 + .../Distributions/DistributionValidations.php | 24 + .../Statistical/Distributions/Exponential.php | 55 + .../Statistical/Distributions/F.php | 64 + .../Statistical/Distributions/Fisher.php | 74 + .../Statistical/Distributions/Gamma.php | 151 + .../Statistical/Distributions/GammaBase.php | 382 + .../Distributions/HyperGeometric.php | 76 + .../Statistical/Distributions/LogNormal.php | 139 + .../Distributions/NewtonRaphson.php | 63 + .../Statistical/Distributions/Normal.php | 180 + .../Statistical/Distributions/Poisson.php | 66 + .../Distributions/StandardNormal.php | 151 + .../Statistical/Distributions/StudentT.php | 139 + .../Statistical/Distributions/Weibull.php | 57 + .../Calculation/Statistical/MaxMinBase.php | 17 + .../Calculation/Statistical/Maximum.php | 78 + .../Calculation/Statistical/Minimum.php | 78 + .../Calculation/Statistical/Percentiles.php | 206 + .../Calculation/Statistical/Permutations.php | 90 + .../Calculation/Statistical/Size.php | 97 + .../Statistical/StandardDeviations.php | 95 + .../Calculation/Statistical/Standardize.php | 49 + .../Statistical/StatisticalValidations.php | 45 + .../Calculation/Statistical/Trends.php | 430 + .../Calculation/Statistical/VarianceBase.php | 28 + .../Calculation/Statistical/Variances.php | 186 + .../PhpSpreadsheet/Calculation/TextData.php | 448 + .../Calculation/TextData/CaseConvert.php | 80 + .../Calculation/TextData/CharacterConvert.php | 81 + .../Calculation/TextData/Concatenate.php | 131 + .../Calculation/TextData/Extract.php | 98 + .../Calculation/TextData/Format.php | 280 + .../Calculation/TextData/Helpers.php | 91 + .../Calculation/TextData/Replace.php | 125 + .../Calculation/TextData/Search.php | 97 + .../Calculation/TextData/Text.php | 80 + .../Calculation/TextData/Trim.php | 52 + .../Calculation/Token/Stack.php | 129 + .../src/PhpSpreadsheet/Calculation/Web.php | 27 + .../Calculation/Web/Service.php | 75 + .../Calculation/locale/Translations.xlsx | Bin 0 -> 110548 bytes .../Calculation/locale/bg/config | 27 + .../Calculation/locale/bg/functions | 417 + .../Calculation/locale/cs/config | 20 + .../Calculation/locale/cs/functions | 520 ++ .../Calculation/locale/da/config | 20 + .../Calculation/locale/da/functions | 537 ++ .../Calculation/locale/de/config | 20 + .../Calculation/locale/de/functions | 533 ++ .../Calculation/locale/en/uk/config | 8 + .../Calculation/locale/es/config | 20 + .../Calculation/locale/es/functions | 537 ++ .../Calculation/locale/fi/config | 20 + .../Calculation/locale/fi/functions | 537 ++ .../Calculation/locale/fr/config | 20 + .../Calculation/locale/fr/functions | 524 ++ .../Calculation/locale/hu/config | 20 + .../Calculation/locale/hu/functions | 537 ++ .../Calculation/locale/it/config | 20 + .../Calculation/locale/it/functions | 537 ++ .../Calculation/locale/nb/config | 20 + .../Calculation/locale/nb/functions | 538 ++ .../Calculation/locale/nl/config | 20 + .../Calculation/locale/nl/functions | 536 ++ .../Calculation/locale/pl/config | 20 + .../Calculation/locale/pl/functions | 536 ++ .../Calculation/locale/pt/br/config | 20 + .../Calculation/locale/pt/br/functions | 527 ++ .../Calculation/locale/pt/config | 20 + .../Calculation/locale/pt/functions | 537 ++ .../Calculation/locale/ru/config | 20 + .../Calculation/locale/ru/functions | 555 ++ .../Calculation/locale/sv/config | 20 + .../Calculation/locale/sv/functions | 532 ++ .../Calculation/locale/tr/config | 20 + .../Calculation/locale/tr/functions | 537 ++ .../src/PhpSpreadsheet/Cell/AddressHelper.php | 153 + .../src/PhpSpreadsheet/Cell/AddressRange.php | 22 + .../Cell/AdvancedValueBinder.php | 210 + .../src/PhpSpreadsheet/Cell/Cell.php | 722 ++ .../src/PhpSpreadsheet/Cell/CellAddress.php | 166 + .../src/PhpSpreadsheet/Cell/CellRange.php | 136 + .../src/PhpSpreadsheet/Cell/ColumnRange.php | 125 + .../src/PhpSpreadsheet/Cell/Coordinate.php | 582 ++ .../src/PhpSpreadsheet/Cell/DataType.php | 89 + .../PhpSpreadsheet/Cell/DataValidation.php | 497 + .../src/PhpSpreadsheet/Cell/DataValidator.php | 80 + .../Cell/DefaultValueBinder.php | 83 + .../src/PhpSpreadsheet/Cell/Hyperlink.php | 113 + .../src/PhpSpreadsheet/Cell/IValueBinder.php | 16 + .../src/PhpSpreadsheet/Cell/RowRange.php | 93 + .../PhpSpreadsheet/Cell/StringValueBinder.php | 124 + .../PhpSpreadsheet/CellReferenceHelper.php | 119 + .../src/PhpSpreadsheet/Chart/Axis.php | 278 + .../src/PhpSpreadsheet/Chart/Chart.php | 750 ++ .../src/PhpSpreadsheet/Chart/ChartColor.php | 153 + .../src/PhpSpreadsheet/Chart/DataSeries.php | 419 + .../PhpSpreadsheet/Chart/DataSeriesValues.php | 580 ++ .../src/PhpSpreadsheet/Chart/Exception.php | 9 + .../src/PhpSpreadsheet/Chart/GridLines.php | 13 + .../src/PhpSpreadsheet/Chart/Layout.php | 543 ++ .../src/PhpSpreadsheet/Chart/Legend.php | 149 + .../src/PhpSpreadsheet/Chart/PlotArea.php | 104 + .../src/PhpSpreadsheet/Chart/Properties.php | 985 ++ .../Chart/Renderer/IRenderer.php | 22 + .../PhpSpreadsheet/Chart/Renderer/JpGraph.php | 882 ++ .../src/PhpSpreadsheet/Chart/Title.php | 85 + .../src/PhpSpreadsheet/Collection/Cells.php | 478 + .../Collection/CellsFactory.php | 21 + .../src/PhpSpreadsheet/Collection/Memory.php | 123 + .../src/PhpSpreadsheet/Comment.php | 362 + .../src/PhpSpreadsheet/DefinedName.php | 272 + .../PhpSpreadsheet/Document/Properties.php | 537 ++ .../src/PhpSpreadsheet/Document/Security.php | 152 + .../src/PhpSpreadsheet/Exception.php | 7 + .../src/PhpSpreadsheet/HashTable.php | 179 + .../src/PhpSpreadsheet/Helper/Dimension.php | 105 + .../src/PhpSpreadsheet/Helper/Html.php | 841 ++ .../src/PhpSpreadsheet/Helper/Sample.php | 226 + .../src/PhpSpreadsheet/Helper/Size.php | 52 + .../src/PhpSpreadsheet/IComparable.php | 13 + .../src/PhpSpreadsheet/IOFactory.php | 233 + .../src/PhpSpreadsheet/NamedFormula.php | 45 + .../src/PhpSpreadsheet/NamedRange.php | 55 + .../src/PhpSpreadsheet/Reader/BaseReader.php | 190 + .../src/PhpSpreadsheet/Reader/Csv.php | 645 ++ .../PhpSpreadsheet/Reader/Csv/Delimiter.php | 151 + .../Reader/DefaultReadFilter.php | 20 + .../src/PhpSpreadsheet/Reader/Exception.php | 9 + .../src/PhpSpreadsheet/Reader/Gnumeric.php | 586 ++ .../Reader/Gnumeric/PageSetup.php | 139 + .../Reader/Gnumeric/Properties.php | 164 + .../PhpSpreadsheet/Reader/Gnumeric/Styles.php | 278 + .../src/PhpSpreadsheet/Reader/Html.php | 1059 +++ .../src/PhpSpreadsheet/Reader/IReadFilter.php | 17 + .../src/PhpSpreadsheet/Reader/IReader.php | 129 + .../src/PhpSpreadsheet/Reader/Ods.php | 766 ++ .../PhpSpreadsheet/Reader/Ods/AutoFilter.php | 45 + .../PhpSpreadsheet/Reader/Ods/BaseLoader.php | 27 + .../Reader/Ods/DefinedNames.php | 66 + .../Reader/Ods/FormulaTranslator.php | 96 + .../Reader/Ods/PageSettings.php | 186 + .../PhpSpreadsheet/Reader/Ods/Properties.php | 130 + .../Reader/Security/XmlScanner.php | 157 + .../src/PhpSpreadsheet/Reader/Slk.php | 592 ++ .../src/PhpSpreadsheet/Reader/Xls.php | 8095 +++++++++++++++++ .../src/PhpSpreadsheet/Reader/Xls/Color.php | 36 + .../PhpSpreadsheet/Reader/Xls/Color/BIFF5.php | 81 + .../PhpSpreadsheet/Reader/Xls/Color/BIFF8.php | 81 + .../Reader/Xls/Color/BuiltIn.php | 35 + .../Reader/Xls/ConditionalFormatting.php | 49 + .../Reader/Xls/DataValidationHelper.php | 72 + .../PhpSpreadsheet/Reader/Xls/ErrorCode.php | 32 + .../src/PhpSpreadsheet/Reader/Xls/Escher.php | 624 ++ .../src/PhpSpreadsheet/Reader/Xls/MD5.php | 210 + .../src/PhpSpreadsheet/Reader/Xls/RC4.php | 61 + .../Reader/Xls/Style/Border.php | 37 + .../Reader/Xls/Style/CellAlignment.php | 50 + .../Reader/Xls/Style/CellFont.php | 39 + .../Reader/Xls/Style/FillPattern.php | 50 + .../src/PhpSpreadsheet/Reader/Xlsx.php | 2140 +++++ .../PhpSpreadsheet/Reader/Xlsx/AutoFilter.php | 149 + .../Reader/Xlsx/BaseParserClass.php | 19 + .../src/PhpSpreadsheet/Reader/Xlsx/Chart.php | 1293 +++ .../Reader/Xlsx/ColumnAndRowAttributes.php | 210 + .../Reader/Xlsx/ConditionalStyles.php | 272 + .../Reader/Xlsx/DataValidations.php | 53 + .../PhpSpreadsheet/Reader/Xlsx/Hyperlinks.php | 64 + .../PhpSpreadsheet/Reader/Xlsx/Namespaces.php | 82 + .../PhpSpreadsheet/Reader/Xlsx/PageSetup.php | 164 + .../PhpSpreadsheet/Reader/Xlsx/Properties.php | 109 + .../Reader/Xlsx/SheetViewOptions.php | 132 + .../PhpSpreadsheet/Reader/Xlsx/SheetViews.php | 156 + .../src/PhpSpreadsheet/Reader/Xlsx/Styles.php | 437 + .../src/PhpSpreadsheet/Reader/Xlsx/Theme.php | 78 + .../Reader/Xlsx/WorkbookView.php | 153 + .../src/PhpSpreadsheet/Reader/Xml.php | 532 ++ .../Reader/Xml/PageSettings.php | 134 + .../PhpSpreadsheet/Reader/Xml/Properties.php | 157 + .../src/PhpSpreadsheet/Reader/Xml/Style.php | 83 + .../Reader/Xml/Style/Alignment.php | 58 + .../Reader/Xml/Style/Border.php | 98 + .../PhpSpreadsheet/Reader/Xml/Style/Fill.php | 63 + .../PhpSpreadsheet/Reader/Xml/Style/Font.php | 79 + .../Reader/Xml/Style/NumberFormat.php | 33 + .../Reader/Xml/Style/StyleBase.php | 32 + .../src/PhpSpreadsheet/ReferenceHelper.php | 1165 +++ .../PhpSpreadsheet/RichText/ITextElement.php | 36 + .../src/PhpSpreadsheet/RichText/RichText.php | 171 + .../src/PhpSpreadsheet/RichText/Run.php | 65 + .../PhpSpreadsheet/RichText/TextElement.php | 71 + .../src/PhpSpreadsheet/Settings.php | 214 + .../src/PhpSpreadsheet/Shared/CodePage.php | 114 + .../src/PhpSpreadsheet/Shared/Date.php | 556 ++ .../src/PhpSpreadsheet/Shared/Drawing.php | 267 + .../src/PhpSpreadsheet/Shared/Escher.php | 64 + .../Shared/Escher/DgContainer.php | 52 + .../Escher/DgContainer/SpgrContainer.php | 75 + .../DgContainer/SpgrContainer/SpContainer.php | 369 + .../Shared/Escher/DggContainer.php | 175 + .../Escher/DggContainer/BstoreContainer.php | 32 + .../DggContainer/BstoreContainer/BSE.php | 87 + .../DggContainer/BstoreContainer/BSE/Blip.php | 58 + .../src/PhpSpreadsheet/Shared/File.php | 185 + .../src/PhpSpreadsheet/Shared/Font.php | 773 ++ .../src/PhpSpreadsheet/Shared/IntOrFloat.php | 21 + .../PhpSpreadsheet/Shared/JAMA/CHANGELOG.TXT | 16 + .../Shared/JAMA/CholeskyDecomposition.php | 147 + .../Shared/JAMA/EigenvalueDecomposition.php | 870 ++ .../Shared/JAMA/LUDecomposition.php | 284 + .../src/PhpSpreadsheet/Shared/JAMA/Matrix.php | 1190 +++ .../Shared/JAMA/QRDecomposition.php | 245 + .../JAMA/SingularValueDecomposition.php | 529 ++ .../Shared/JAMA/utils/Maths.php | 31 + .../src/PhpSpreadsheet/Shared/OLE.php | 559 ++ .../Shared/OLE/ChainedBlockStream.php | 197 + .../src/PhpSpreadsheet/Shared/OLE/PPS.php | 237 + .../PhpSpreadsheet/Shared/OLE/PPS/File.php | 64 + .../PhpSpreadsheet/Shared/OLE/PPS/Root.php | 426 + .../src/PhpSpreadsheet/Shared/OLERead.php | 347 + .../PhpSpreadsheet/Shared/PasswordHasher.php | 109 + .../PhpSpreadsheet/Shared/StringHelper.php | 705 ++ .../src/PhpSpreadsheet/Shared/TimeZone.php | 77 + .../PhpSpreadsheet/Shared/Trend/BestFit.php | 461 + .../Shared/Trend/ExponentialBestFit.php | 119 + .../Shared/Trend/LinearBestFit.php | 80 + .../Shared/Trend/LogarithmicBestFit.php | 87 + .../Shared/Trend/PolynomialBestFit.php | 203 + .../Shared/Trend/PowerBestFit.php | 109 + .../src/PhpSpreadsheet/Shared/Trend/Trend.php | 122 + .../src/PhpSpreadsheet/Shared/XMLWriter.php | 94 + .../src/PhpSpreadsheet/Shared/Xls.php | 277 + .../src/PhpSpreadsheet/Spreadsheet.php | 1628 ++++ .../src/PhpSpreadsheet/Style/Alignment.php | 486 + .../src/PhpSpreadsheet/Style/Border.php | 240 + .../src/PhpSpreadsheet/Style/Borders.php | 424 + .../src/PhpSpreadsheet/Style/Color.php | 444 + .../src/PhpSpreadsheet/Style/Conditional.php | 346 + .../ConditionalFormatting/CellMatcher.php | 312 + .../CellStyleAssessor.php | 45 + .../ConditionalDataBar.php | 102 + .../ConditionalDataBarExtension.php | 290 + .../ConditionalFormatValueObject.php | 78 + .../ConditionalFormattingRuleExtension.php | 208 + .../ConditionalFormatting/StyleMerger.php | 118 + .../Style/ConditionalFormatting/Wizard.php | 95 + .../ConditionalFormatting/Wizard/Blanks.php | 99 + .../Wizard/CellValue.php | 189 + .../Wizard/DateValue.php | 111 + .../Wizard/Duplicates.php | 78 + .../ConditionalFormatting/Wizard/Errors.php | 95 + .../Wizard/Expression.php | 73 + .../Wizard/TextValue.php | 163 + .../Wizard/WizardAbstract.php | 197 + .../Wizard/WizardInterface.php | 25 + .../src/PhpSpreadsheet/Style/Fill.php | 347 + .../src/PhpSpreadsheet/Style/Font.php | 815 ++ .../src/PhpSpreadsheet/Style/NumberFormat.php | 414 + .../Style/NumberFormat/BaseFormatter.php | 12 + .../Style/NumberFormat/DateFormatter.php | 182 + .../Style/NumberFormat/Formatter.php | 165 + .../Style/NumberFormat/FractionFormatter.php | 67 + .../Style/NumberFormat/NumberFormatter.php | 221 + .../NumberFormat/PercentageFormatter.php | 45 + .../src/PhpSpreadsheet/Style/Protection.php | 198 + .../src/PhpSpreadsheet/Style/Style.php | 735 ++ .../src/PhpSpreadsheet/Style/Supervisor.php | 175 + .../PhpSpreadsheet/Worksheet/AutoFilter.php | 1092 +++ .../Worksheet/AutoFilter/Column.php | 404 + .../Worksheet/AutoFilter/Column/Rule.php | 426 + .../PhpSpreadsheet/Worksheet/BaseDrawing.php | 535 ++ .../PhpSpreadsheet/Worksheet/CellIterator.php | 71 + .../src/PhpSpreadsheet/Worksheet/Column.php | 109 + .../Worksheet/ColumnCellIterator.php | 201 + .../Worksheet/ColumnDimension.php | 137 + .../Worksheet/ColumnIterator.php | 174 + .../PhpSpreadsheet/Worksheet/Dimension.php | 134 + .../src/PhpSpreadsheet/Worksheet/Drawing.php | 214 + .../Worksheet/Drawing/Shadow.php | 287 + .../PhpSpreadsheet/Worksheet/HeaderFooter.php | 490 + .../Worksheet/HeaderFooterDrawing.php | 24 + .../src/PhpSpreadsheet/Worksheet/Iterator.php | 74 + .../Worksheet/MemoryDrawing.php | 235 + .../PhpSpreadsheet/Worksheet/PageMargins.php | 244 + .../PhpSpreadsheet/Worksheet/PageSetup.php | 907 ++ .../PhpSpreadsheet/Worksheet/Protection.php | 691 ++ .../src/PhpSpreadsheet/Worksheet/Row.php | 108 + .../Worksheet/RowCellIterator.php | 191 + .../PhpSpreadsheet/Worksheet/RowDimension.php | 118 + .../PhpSpreadsheet/Worksheet/RowIterator.php | 158 + .../PhpSpreadsheet/Worksheet/SheetView.php | 193 + .../src/PhpSpreadsheet/Worksheet/Table.php | 454 + .../PhpSpreadsheet/Worksheet/Table/Column.php | 203 + .../Worksheet/Table/TableStyle.php | 230 + .../PhpSpreadsheet/Worksheet/Validations.php | 101 + .../PhpSpreadsheet/Worksheet/Worksheet.php | 3453 +++++++ .../src/PhpSpreadsheet/Writer/BaseWriter.php | 145 + .../src/PhpSpreadsheet/Writer/Csv.php | 404 + .../src/PhpSpreadsheet/Writer/Exception.php | 9 + .../src/PhpSpreadsheet/Writer/Html.php | 1856 ++++ .../src/PhpSpreadsheet/Writer/IWriter.php | 91 + .../src/PhpSpreadsheet/Writer/Ods.php | 199 + .../PhpSpreadsheet/Writer/Ods/AutoFilters.php | 63 + .../Writer/Ods/Cell/Comment.php | 30 + .../PhpSpreadsheet/Writer/Ods/Cell/Style.php | 262 + .../src/PhpSpreadsheet/Writer/Ods/Content.php | 335 + .../src/PhpSpreadsheet/Writer/Ods/Formula.php | 119 + .../src/PhpSpreadsheet/Writer/Ods/Meta.php | 122 + .../src/PhpSpreadsheet/Writer/Ods/MetaInf.php | 60 + .../PhpSpreadsheet/Writer/Ods/Mimetype.php | 16 + .../Writer/Ods/NamedExpressions.php | 140 + .../PhpSpreadsheet/Writer/Ods/Settings.php | 152 + .../src/PhpSpreadsheet/Writer/Ods/Styles.php | 65 + .../PhpSpreadsheet/Writer/Ods/Thumbnails.php | 16 + .../PhpSpreadsheet/Writer/Ods/WriterPart.php | 35 + .../src/PhpSpreadsheet/Writer/Pdf.php | 251 + .../src/PhpSpreadsheet/Writer/Pdf/Dompdf.php | 53 + .../src/PhpSpreadsheet/Writer/Pdf/Mpdf.php | 90 + .../src/PhpSpreadsheet/Writer/Pdf/Tcpdf.php | 84 + .../src/PhpSpreadsheet/Writer/Xls.php | 915 ++ .../PhpSpreadsheet/Writer/Xls/BIFFwriter.php | 224 + .../Writer/Xls/CellDataValidation.php | 78 + .../Writer/Xls/ConditionalHelper.php | 76 + .../PhpSpreadsheet/Writer/Xls/ErrorCode.php | 28 + .../src/PhpSpreadsheet/Writer/Xls/Escher.php | 510 ++ .../src/PhpSpreadsheet/Writer/Xls/Font.php | 147 + .../src/PhpSpreadsheet/Writer/Xls/Parser.php | 1485 +++ .../Writer/Xls/Style/CellAlignment.php | 59 + .../Writer/Xls/Style/CellBorder.php | 39 + .../Writer/Xls/Style/CellFill.php | 46 + .../Writer/Xls/Style/ColorMap.php | 90 + .../PhpSpreadsheet/Writer/Xls/Workbook.php | 1190 +++ .../PhpSpreadsheet/Writer/Xls/Worksheet.php | 3212 +++++++ .../src/PhpSpreadsheet/Writer/Xls/Xf.php | 418 + .../src/PhpSpreadsheet/Writer/Xlsx.php | 751 ++ .../src/PhpSpreadsheet/Writer/Xlsx/Chart.php | 1623 ++++ .../PhpSpreadsheet/Writer/Xlsx/Comments.php | 235 + .../Writer/Xlsx/ContentTypes.php | 265 + .../Writer/Xlsx/DefinedNames.php | 242 + .../PhpSpreadsheet/Writer/Xlsx/DocProps.php | 246 + .../PhpSpreadsheet/Writer/Xlsx/Drawing.php | 570 ++ .../src/PhpSpreadsheet/Writer/Xlsx/Rels.php | 492 + .../PhpSpreadsheet/Writer/Xlsx/RelsRibbon.php | 45 + .../PhpSpreadsheet/Writer/Xlsx/RelsVBA.php | 40 + .../Writer/Xlsx/StringTable.php | 337 + .../src/PhpSpreadsheet/Writer/Xlsx/Style.php | 657 ++ .../src/PhpSpreadsheet/Writer/Xlsx/Table.php | 111 + .../src/PhpSpreadsheet/Writer/Xlsx/Theme.php | 829 ++ .../PhpSpreadsheet/Writer/Xlsx/Workbook.php | 213 + .../PhpSpreadsheet/Writer/Xlsx/Worksheet.php | 1473 +++ .../PhpSpreadsheet/Writer/Xlsx/WriterPart.php | 33 + .../src/PhpSpreadsheet/Writer/Xlsx/Xlfn.php | 166 + 1035 files changed, 283359 insertions(+), 201 deletions(-) create mode 100644 src/vendor/composer/InstalledVersions.php create mode 100644 src/vendor/composer/installed.php create mode 100644 src/vendor/composer/platform_check.php create mode 100644 src/vendor/phpoffice/phpexcel/.gitattributes create mode 100644 src/vendor/phpoffice/phpexcel/.gitignore create mode 100644 src/vendor/phpoffice/phpexcel/.travis.yml create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Autoloader.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/APC.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/DiscISAM.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/ICache.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Igbinary.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memory.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/MemoryGZip.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/MemorySerialized.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/PHPTemp.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite3.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Wincache.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorageFactory.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine/CyclicReferenceStack.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine/Logger.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Database.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Exception.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/ExceptionHandler.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/FormulaParser.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/FormulaToken.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Function.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Logical.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/LookupRef.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/TextData.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Token/Stack.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/functionlist.txt create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/AdvancedValueBinder.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataType.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataValidation.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DefaultValueBinder.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/Hyperlink.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/IValueBinder.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Axis.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeries.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeriesValues.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Exception.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/GridLines.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Layout.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Legend.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/PlotArea.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Properties.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Renderer/jpgraph.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Title.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Comment.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/DocumentProperties.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/DocumentSecurity.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Exception.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/HashTable.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Helper/HTML.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/IComparable.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/IOFactory.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/NamedRange.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Abstract.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/CSV.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/DefaultReadFilter.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2003XML.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007/Chart.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007/Theme.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color/BIFF5.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color/BIFF8.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color/BuiltIn.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/ErrorCode.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Escher.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/MD5.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/RC4.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Style/Border.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Style/FillPattern.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Exception.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Gnumeric.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/HTML.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/IReadFilter.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/IReader.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/OOCalc.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/SYLK.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/ReferenceHelper.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/ITextElement.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/Run.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/TextElement.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Settings.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/CodePage.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Date.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Drawing.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Excel5.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/File.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Font.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/CHANGELOG.TXT create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/CholeskyDecomposition.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/LUDecomposition.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/Matrix.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/QRDecomposition.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/SingularValueDecomposition.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/utils/Error.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/utils/Maths.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/ChainedBlockStream.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/File.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/Root.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLERead.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/gnu-lgpl.txt create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/readme.txt create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PasswordHasher.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/String.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/TimeZone.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/XMLWriter.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/ZipArchive.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/ZipStreamWrapper.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/bestFitClass.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/exponentialBestFitClass.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/linearBestFitClass.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/logarithmicBestFitClass.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/polynomialBestFitClass.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/powerBestFitClass.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/trendClass.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Alignment.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Border.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Borders.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Color.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Conditional.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Fill.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Font.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/NumberFormat.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Protection.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Supervisor.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column/Rule.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/BaseDrawing.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/CellIterator.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Column.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnCellIterator.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnDimension.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnIterator.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Dimension.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing/Shadow.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooter.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooterDrawing.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/MemoryDrawing.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/PageMargins.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/PageSetup.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Protection.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Row.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowCellIterator.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowDimension.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowIterator.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/SheetView.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/WorksheetIterator.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Abstract.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/CSV.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Chart.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Comments.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/ContentTypes.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/DocProps.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Drawing.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Rels.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/RelsRibbon.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/RelsVBA.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/StringTable.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Style.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Theme.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Workbook.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Worksheet.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/WriterPart.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/BIFFwriter.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Escher.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Font.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Parser.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Workbook.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Worksheet.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Xf.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Exception.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/HTML.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/IWriter.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Cell/Comment.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Content.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Meta.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/MetaInf.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Mimetype.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Settings.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Styles.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Thumbnails.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/WriterPart.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/Core.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/DomPDF.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/mPDF.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/tcPDF.php create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/bg/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/cs/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/cs/functions create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/da/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/da/functions create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/de/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/de/functions create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/en/uk/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/es/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/es/functions create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fi/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fi/functions create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fr/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fr/functions create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/hu/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/hu/functions create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/it/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/it/functions create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/nl/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/nl/functions create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/no/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/no/functions create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pl/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pl/functions create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/br/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/br/functions create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/functions create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/ru/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/ru/functions create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/sv/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/sv/functions create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/tr/config create mode 100644 src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/tr/functions create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DAVERAGE.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DCOUNT.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DGET.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DMAX.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DMIN.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DPRODUCT.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DSTDEV.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DSTDEVP.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DVAR.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DVARP.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/DATE.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/DATEVALUE.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/TIME.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/TIMEVALUE.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/index.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader01.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader02.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader03.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader04.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader05.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader06.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader07.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader08.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader09.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader10.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader11.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader12.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader13.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader14.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader15.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader16.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader17.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader18.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader19.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example1.csv create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example1.tsv create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example1.xls create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example2.csv create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example2.xls create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader01.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader02.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader03.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader04.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/sampleData/example1.xls create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/sampleData/example1.xlsx create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/sampleData/example2.xls create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Examples/index.php create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/FunctionListByCategory.txt create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/FunctionListByName.txt create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/Functionality Cross-Reference.xls create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/PHPExcel AutoFilter Reference developer documentation.doc create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/PHPExcel Function Reference developer documentation.doc create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/PHPExcel User Documentation - Reading Spreadsheet Files.doc create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/PHPExcel developer documentation.doc create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Architecture.cd create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Architecture.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ClassDiagrams.csproj create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ClassDiagrams.csproj.user create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ClassDiagrams.sln create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/IReader.cs create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/IWriter.cs create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel.cs create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_IOFactory.cs create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Excel2007.cs create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Excel5.cs create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Serialized.cs create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Writer_Excel2007.cs create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Writer_Serialized.cs create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/Worksheet.cs create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Exports/Architecture.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Exports/ReaderWriter.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ReaderWriter.cd create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ReaderWriter.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/01-Introduction.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/02-01-Date-and-Time-Handling.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/02-General-Introduction.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/03-01-Cube-Functions.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/03-02-Database-Functions.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/03-03-Date-and-Time-Functions.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/01-Autofilters.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/02-Setting-an-Autofilter.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/03-Autofilter-Expressions.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-01-Autofilter-Expressions-Simple.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-02-Autofilter-Expressions-Dategroup.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-03-Autofilter-Expressions-Custom.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-04-Autofilter-Expressions-Dynamic.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-05-Autofilter-Expressions-Topten.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/05-Executing-Autofilters.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/06-Autofilter-Sorting.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-01-autofilter.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-02-autofilter.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-03-filter-icon-1.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-03-filter-icon-2.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-04-autofilter.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-01-simple-autofilter.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-02-dategroup-autofilter.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-03-custom-autofilter-1.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-03-custom-autofilter-2.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-04-dynamic-autofilter.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-05-topten-autofilter-1.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-05-topten-autofilter-2.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Functions/FunctionListByCategory.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Functions/FunctionListByName.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/01-Getting-Started.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/02-Architecture.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/03-Creating-a-Spreadsheet.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/04-Configuration-Settings.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/05-Deleting-a-Workbook.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/06-Worksheets.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/07-Accessing-Cells.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/08-Recipes.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/09-Calculation-Engine.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/10-Reading-and-Writing.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/11-Appendices.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/01-schematic.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/02-readers-writers.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/07-simple-example-1.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/07-simple-example-2.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/07-simple-example-3.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/07-simple-example-4.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-cell-comment.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-column-width.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-page-setup-margins.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-page-setup-scaling-options.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-styling-border-options.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/09-command-line-calculation.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/09-formula-in-cell-1.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/09-formula-in-cell-2.png create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/01-File-Formats.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/02-Security.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/03-Loading-a-Spreadsheet.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/04-Loading-with-a-Reader.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/05-Reader-Options.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/06-Error-Handling.md create mode 100644 src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/07-Helper-Methods.md create mode 100644 src/vendor/phpoffice/phpexcel/Examples/.gitignore create mode 100644 src/vendor/phpoffice/phpexcel/Examples/01pharSimple.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/01simple-download-ods.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/01simple-download-pdf.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/01simple-download-xls.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/01simple-download-xlsx.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/01simple.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/01simplePCLZip.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/02types-xls.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/02types.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/03formulas.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/04printing.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/05featuredemo.inc.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/05featuredemo.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching-sqlite.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching-sqlite3.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/06largescale-xls.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/06largescale.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/07reader.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/07readerPCLZip.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/08conditionalformatting.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/08conditionalformatting2.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/09pagebreaks.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/10autofilter-selection-1.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/10autofilter-selection-2.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/10autofilter-selection-display.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/10autofilter.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/11documentsecurity-xls.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/11documentsecurity.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/12cellProtection.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/13calculation.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/13calculationCyclicFormulae.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/14excel5.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/15datavalidation-xls.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/15datavalidation.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/16csv.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/17html.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/18extendedcalculation.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/19namedrange.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/20readexcel5.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/21pdf.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/22heavilyformatted.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/23sharedstyles.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/24readfilter.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/25inmemoryimage.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/26utf8.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/27imagesexcel5.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/28iterator.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/29advancedvaluebinder.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/30template.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/31docproperties_write-xls.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/31docproperties_write.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/32chartreadwrite.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/33chartcreate-area.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/33chartcreate-bar-stacked.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/33chartcreate-bar.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/33chartcreate-column-2.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/33chartcreate-column.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/33chartcreate-composite.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/33chartcreate-line.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/33chartcreate-multiple-charts.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/33chartcreate-pie.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/33chartcreate-radar.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/33chartcreate-scatter.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/33chartcreate-stock.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/34chartupdate.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/35chartrender.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/36chartreadwriteHTML.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/36chartreadwritePDF.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/37page_layout_view.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/38cloneWorksheet.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/39dropdown.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/40duplicateStyle.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/41password.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/42richText.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/43mergeWorkbooks.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/44worksheetInfo.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/Excel2003XMLReader.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/Excel2003XMLTest.xml create mode 100644 src/vendor/phpoffice/phpexcel/Examples/GnumericReader.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/GnumericTest.gnumeric create mode 100644 src/vendor/phpoffice/phpexcel/Examples/OOCalcReader.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/OOCalcReaderPCLZip.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/OOCalcTest.ods create mode 100644 src/vendor/phpoffice/phpexcel/Examples/Quadratic.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/Quadratic2.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/SylkReader.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/SylkTest.slk create mode 100644 src/vendor/phpoffice/phpexcel/Examples/XMLReader.php create mode 100644 src/vendor/phpoffice/phpexcel/Examples/XMLTest.xml create mode 100644 src/vendor/phpoffice/phpexcel/Examples/data/continents/Africa.txt create mode 100644 src/vendor/phpoffice/phpexcel/Examples/data/continents/Asia.txt create mode 100644 src/vendor/phpoffice/phpexcel/Examples/data/continents/Europe.txt create mode 100644 src/vendor/phpoffice/phpexcel/Examples/data/continents/North America.txt create mode 100644 src/vendor/phpoffice/phpexcel/Examples/data/continents/Oceania.txt create mode 100644 src/vendor/phpoffice/phpexcel/Examples/data/continents/South America.txt create mode 100644 src/vendor/phpoffice/phpexcel/Examples/images/paid.png create mode 100644 src/vendor/phpoffice/phpexcel/Examples/images/phpexcel_logo.gif create mode 100644 src/vendor/phpoffice/phpexcel/Examples/runall.php create mode 100644 src/vendor/phpoffice/phpexcel/changelog.txt create mode 100644 src/vendor/phpoffice/phpexcel/composer.json create mode 100644 src/vendor/phpoffice/phpexcel/install.txt create mode 100644 src/vendor/phpoffice/phpexcel/license.md create mode 100644 src/vendor/phpoffice/phpspreadsheet/.php-cs-fixer.dist.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/.phpcs.xml.dist create mode 100644 src/vendor/phpoffice/phpspreadsheet/CHANGELOG.md create mode 100644 src/vendor/phpoffice/phpspreadsheet/CONTRIBUTING.md create mode 100644 src/vendor/phpoffice/phpspreadsheet/LICENSE create mode 100644 src/vendor/phpoffice/phpspreadsheet/README.md create mode 100644 src/vendor/phpoffice/phpspreadsheet/composer.json create mode 100644 src/vendor/phpoffice/phpspreadsheet/phpstan-baseline.neon create mode 100644 src/vendor/phpoffice/phpspreadsheet/phpstan-conditional.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/phpstan.neon.dist create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/ArrayEnabled.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/BinaryComparison.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Calculation.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Category.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DAverage.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DCount.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DCountA.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DGet.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DMax.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DMin.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DProduct.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DStDev.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DStDevP.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DSum.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DVar.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DVarP.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DatabaseAbstract.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTime.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Constants.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Current.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Date.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/DateParts.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/DateValue.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Days.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Days360.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Difference.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Helpers.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Month.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/NetworkDays.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Time.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/TimeParts.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/TimeValue.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Week.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/WorkDay.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/YearFrac.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/ArrayArgumentHelper.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/ArrayArgumentProcessor.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/BranchPruner.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/CyclicReferenceStack.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/Logger.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselI.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselJ.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselK.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselY.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BitWise.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Compare.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Complex.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ComplexFunctions.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ComplexOperations.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Constants.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertBase.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertBinary.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertDecimal.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertHex.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertOctal.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertUOM.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/EngineeringValidations.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Erf.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ErfC.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Exception.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/ExceptionHandler.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Amortization.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/CashFlowValidations.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Cumulative.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Interest.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/InterestAndPrincipal.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Payments.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Single.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Variable/NonPeriodic.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Variable/Periodic.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Constants.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Coupons.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Depreciation.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Dollar.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/FinancialValidations.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Helpers.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/InterestRate.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/AccruedInterest.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/Price.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/Rates.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/SecurityValidations.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/Yields.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/TreasuryBill.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/FormulaParser.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/FormulaToken.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Functions.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Information/ErrorValue.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Information/ExcelError.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Information/Value.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Internal/MakeMatrix.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Internal/WildcardMatch.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Boolean.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Conditional.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Operations.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Address.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Filter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Formula.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/HLookup.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Helpers.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Hyperlink.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Indirect.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Lookup.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/LookupBase.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/LookupRefValidations.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Matrix.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Offset.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/RowColumnInformation.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Selection.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Sort.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Unique.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/VLookup.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Absolute.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Angle.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Arabic.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Base.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Ceiling.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Combinations.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Exp.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Factorial.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Floor.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Gcd.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Helpers.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/IntClass.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Lcm.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Logarithms.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/MatrixFunctions.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Operations.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Random.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Roman.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Round.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/SeriesSum.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Sign.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Sqrt.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Subtotal.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Sum.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/SumSquares.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Cosecant.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Cosine.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Cotangent.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Secant.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Sine.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Tangent.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trunc.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/AggregateBase.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Averages.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Averages/Mean.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Conditional.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Confidence.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Counts.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Deviations.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Beta.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Binomial.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/DistributionValidations.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Exponential.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/F.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Fisher.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Gamma.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/GammaBase.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/HyperGeometric.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/LogNormal.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/NewtonRaphson.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Normal.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Poisson.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/StandardNormal.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/StudentT.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Weibull.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/MaxMinBase.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Maximum.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Minimum.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Percentiles.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Permutations.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Size.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/StandardDeviations.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Standardize.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/StatisticalValidations.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Trends.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/VarianceBase.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Variances.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/CaseConvert.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/CharacterConvert.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Concatenate.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Extract.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Format.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Helpers.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Replace.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Search.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Text.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Trim.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Token/Stack.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Web.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Web/Service.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/Translations.xlsx create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/bg/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/bg/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/cs/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/cs/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/da/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/da/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/de/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/de/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/en/uk/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fi/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fi/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fr/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fr/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/hu/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/hu/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/it/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/it/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nb/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nb/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nl/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nl/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pl/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pl/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/br/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/br/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/ru/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/ru/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/sv/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/sv/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr/config create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr/functions create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AddressHelper.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AddressRange.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AdvancedValueBinder.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Cell.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/CellAddress.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/CellRange.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/ColumnRange.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Coordinate.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataType.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataValidation.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataValidator.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DefaultValueBinder.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Hyperlink.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/IValueBinder.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/RowRange.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/StringValueBinder.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/CellReferenceHelper.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Axis.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Chart.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/ChartColor.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/DataSeries.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/DataSeriesValues.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Exception.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/GridLines.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Layout.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Legend.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/PlotArea.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Properties.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/IRenderer.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/JpGraph.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Title.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Cells.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/CellsFactory.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Memory.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Comment.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/DefinedName.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document/Properties.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document/Security.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Exception.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/HashTable.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Dimension.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Html.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Sample.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Size.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IComparable.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IOFactory.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/NamedFormula.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/NamedRange.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/BaseReader.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv/Delimiter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/DefaultReadFilter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Exception.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/PageSetup.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/Properties.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/Styles.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Html.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/IReadFilter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/IReader.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/AutoFilter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/BaseLoader.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/DefinedNames.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/FormulaTranslator.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/PageSettings.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/Properties.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Security/XmlScanner.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Slk.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BIFF5.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BIFF8.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BuiltIn.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/ConditionalFormatting.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/DataValidationHelper.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/ErrorCode.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Escher.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/MD5.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/RC4.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/Border.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/CellAlignment.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/CellFont.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/FillPattern.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/AutoFilter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/BaseParserClass.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Chart.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/DataValidations.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Hyperlinks.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Namespaces.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/PageSetup.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Properties.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/SheetViewOptions.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/SheetViews.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Styles.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Theme.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/WorkbookView.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/PageSettings.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Properties.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Alignment.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Border.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Fill.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Font.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/NumberFormat.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/StyleBase.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/ReferenceHelper.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/ITextElement.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/RichText.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/Run.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/TextElement.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Settings.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/CodePage.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Date.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Drawing.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer/SpgrContainer.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer/BSE.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/File.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Font.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/IntOrFloat.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/CHANGELOG.TXT create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/CholeskyDecomposition.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/EigenvalueDecomposition.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/LUDecomposition.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/Matrix.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/QRDecomposition.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/SingularValueDecomposition.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/utils/Maths.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/ChainedBlockStream.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS/File.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS/Root.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLERead.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/PasswordHasher.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/StringHelper.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/TimeZone.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/BestFit.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/ExponentialBestFit.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/LinearBestFit.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/LogarithmicBestFit.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/PolynomialBestFit.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/PowerBestFit.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/Trend.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/XMLWriter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Xls.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Spreadsheet.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Alignment.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Border.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Borders.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Color.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Conditional.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/CellMatcher.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/CellStyleAssessor.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBar.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBarExtension.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormatValueObject.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/StyleMerger.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Blanks.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/CellValue.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/DateValue.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Duplicates.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Errors.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Expression.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/TextValue.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/WizardAbstract.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/WizardInterface.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Fill.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Font.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/BaseFormatter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/DateFormatter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Formatter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/FractionFormatter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/NumberFormatter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/PercentageFormatter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Protection.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Style.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Supervisor.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter/Column.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter/Column/Rule.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/BaseDrawing.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/CellIterator.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Column.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnCellIterator.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnDimension.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnIterator.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Dimension.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Drawing.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Drawing/Shadow.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/HeaderFooter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/HeaderFooterDrawing.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Iterator.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/MemoryDrawing.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/PageMargins.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/PageSetup.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Protection.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Row.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowCellIterator.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowDimension.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowIterator.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/SheetView.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table/Column.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table/TableStyle.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Validations.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Worksheet.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/BaseWriter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Csv.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Exception.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Html.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/IWriter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/AutoFilters.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Cell/Comment.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Cell/Style.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Content.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Formula.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Meta.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/MetaInf.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Mimetype.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/NamedExpressions.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Settings.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Styles.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Thumbnails.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/WriterPart.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Dompdf.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Mpdf.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Tcpdf.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/BIFFwriter.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/CellDataValidation.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/ConditionalHelper.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/ErrorCode.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Escher.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Font.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Parser.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/CellAlignment.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/CellBorder.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/CellFill.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/ColorMap.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Workbook.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Worksheet.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Xf.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Chart.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Comments.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/ContentTypes.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/DefinedNames.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/DocProps.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Drawing.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Rels.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/RelsRibbon.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/RelsVBA.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/StringTable.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Style.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Table.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Theme.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Workbook.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/WriterPart.php create mode 100644 src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Xlfn.php diff --git a/src/application/admin/controller/Project.php b/src/application/admin/controller/Project.php index c282650..193914c 100644 --- a/src/application/admin/controller/Project.php +++ b/src/application/admin/controller/Project.php @@ -350,6 +350,100 @@ class Project extends Base { } + /** + * 导入Excel文件 + * @return json + */ + public function import_excel() + { + if (IS_POST) { + $file = request()->file('excel_file'); + if (!$file) { + $this->error('请选择è¦å¯¼å…¥çš„æ–‡ä»¶'); + } + + // éªŒè¯æ–‡ä»¶ç±»åž‹ + $ext = strtolower(pathinfo($file->getInfo('name'), PATHINFO_EXTENSION)); + if (!in_array($ext, ['xls', 'xlsx'])) { + $this->error('åªæ”¯æŒExcelæ ¼å¼æ–‡ä»¶(.xls, .xlsx)'); + } + + // 移动文件到临时目录 + $info = $file->move(ROOT_PATH . 'data' . DS . 'runtime', ''); + if (!$info) { + $this->error('文件上传失败: ' . $file->getError()); + } + + $filename = ROOT_PATH . 'data' . DS . 'runtime' . DS . $info->getSaveName(); + + // è§£æžExcel文件 + $data = []; + try { + // 引入PHPExcel库 + vendor('phpoffice.phpexcel.Classes.PHPExcel'); + + // 判断文件类型 + if ($ext == 'xls') { + $objReader = \PHPExcel_IOFactory::createReader('Excel5'); + } else { + $objReader = \PHPExcel_IOFactory::createReader('Excel2007'); + } + + $objPHPExcel = $objReader->load($filename); + $sheet = $objPHPExcel->getSheet(0); + $highestRow = $sheet->getHighestRow(); + $highestColumn = $sheet->getHighestColumn(); + + // 跳过第一行标题 + for ($row = 2; $row <= $highestRow; $row++) { + // 获å–ä¸€è¡Œæ•°æ® + $rowData = $sheet->rangeToArray('A' . $row . ':' . $highestColumn . $row, NULL, TRUE, FALSE)[0]; + + // ç¡®ä¿è¡Œæ•°æ®å®Œæ•´ + if (count($rowData) >= 6) { + // 验è¯å¿…è¦å­—段ä¸ä¸ºç©º + if (empty(trim($rowData[0])) || empty(trim($rowData[1]))) { + continue; // 跳过必填字段为空的行 + } + + $data[] = [ + 'name' => trim($rowData[0]), + 'pwd' => trim($rowData[1]), + 'enterprise' => trim($rowData[2]), + 'filing' => trim($rowData[3]), + 'sid' => trim($rowData[4]), + 'limitationdate' => trim($rowData[5]), + 'createtime' => getTime() + ]; + } + } + + // 删除临时文件 + unlink($filename); + + // æ‰¹é‡æ’å…¥æ•°æ® + if (!empty($data)) { + $result = Db::name('project')->insertAll($data); + if ($result) { + $this->success('æˆåŠŸå¯¼å…¥ ' . count($data) . ' æ¡è®°å½•'); + } else { + $this->error('导入失败'); + } + } else { + $this->error('文件中没有有效数æ®'); + } + } catch (\Exception $e) { + // 删除临时文件 + if (file_exists($filename)) { + unlink($filename); + } + $this->error('文件解æžå¤±è´¥: ' . $e->getMessage()); + } + } + + $this->error('éžæ³•请求'); + } + /** * 测试 * @return string diff --git a/src/application/admin/template/project/users_index.htm b/src/application/admin/template/project/users_index.htm index a3176ca..16aaf11 100644 --- a/src/application/admin/template/project/users_index.htm +++ b/src/application/admin/template/project/users_index.htm @@ -11,7 +11,7 @@
{eq name="'Project@users_index'|is_check_access" value="1"} {/eq} {eq name="'Project@level_index'|is_check_access" value="1"} @@ -42,6 +42,13 @@
+
+ +
+ 导入Excel +
+
+
@@ -170,6 +177,155 @@
{include file="public/footer" /} \ No newline at end of file diff --git a/src/template/pc/header.htm b/src/template/pc/header.htm index 3d8fc16..7e97870 100644 --- a/src/template/pc/header.htm +++ b/src/template/pc/header.htm @@ -2,7 +2,7 @@
- + +
+
已使用:
+
+
申请状æ€ï¼š
å¯ç”³è¯·
diff --git a/src/vendor/autoload.php b/src/vendor/autoload.php index 8f80812..2307dd2 100644 --- a/src/vendor/autoload.php +++ b/src/vendor/autoload.php @@ -2,6 +2,24 @@ // autoload.php @generated by Composer +if (PHP_VERSION_ID < 50600) { + if (!headers_sent()) { + header('HTTP/1.1 500 Internal Server Error'); + } + $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL; + if (!ini_get('display_errors')) { + if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { + fwrite(STDERR, $err); + } elseif (!headers_sent()) { + echo $err; + } + } + trigger_error( + $err, + E_USER_ERROR + ); +} + require_once __DIR__ . '/composer/autoload_real.php'; return ComposerAutoloaderInitc94c02985840e0e24a4e6317fb9e1871::getLoader(); diff --git a/src/vendor/composer/ClassLoader.php b/src/vendor/composer/ClassLoader.php index dc02dfb..7824d8f 100644 --- a/src/vendor/composer/ClassLoader.php +++ b/src/vendor/composer/ClassLoader.php @@ -37,57 +37,126 @@ namespace Composer\Autoload; * * @author Fabien Potencier * @author Jordi Boggiano - * @see http://www.php-fig.org/psr/psr-0/ - * @see http://www.php-fig.org/psr/psr-4/ + * @see https://www.php-fig.org/psr/psr-0/ + * @see https://www.php-fig.org/psr/psr-4/ */ class ClassLoader { + /** @var \Closure(string):void */ + private static $includeFile; + + /** @var string|null */ + private $vendorDir; + // PSR-4 + /** + * @var array> + */ private $prefixLengthsPsr4 = array(); + /** + * @var array> + */ private $prefixDirsPsr4 = array(); + /** + * @var list + */ private $fallbackDirsPsr4 = array(); // PSR-0 + /** + * List of PSR-0 prefixes + * + * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2'))) + * + * @var array>> + */ private $prefixesPsr0 = array(); + /** + * @var list + */ private $fallbackDirsPsr0 = array(); + /** @var bool */ private $useIncludePath = false; + + /** + * @var array + */ private $classMap = array(); + + /** @var bool */ private $classMapAuthoritative = false; + + /** + * @var array + */ private $missingClasses = array(); + + /** @var string|null */ private $apcuPrefix; + /** + * @var array + */ + private static $registeredLoaders = array(); + + /** + * @param string|null $vendorDir + */ + public function __construct($vendorDir = null) + { + $this->vendorDir = $vendorDir; + self::initializeIncludeClosure(); + } + + /** + * @return array> + */ public function getPrefixes() { if (!empty($this->prefixesPsr0)) { - return call_user_func_array('array_merge', $this->prefixesPsr0); + return call_user_func_array('array_merge', array_values($this->prefixesPsr0)); } return array(); } + /** + * @return array> + */ public function getPrefixesPsr4() { return $this->prefixDirsPsr4; } + /** + * @return list + */ public function getFallbackDirs() { return $this->fallbackDirsPsr0; } + /** + * @return list + */ public function getFallbackDirsPsr4() { return $this->fallbackDirsPsr4; } + /** + * @return array Array of classname => path + */ public function getClassMap() { return $this->classMap; } /** - * @param array $classMap Class to filename map + * @param array $classMap Class to filename map + * + * @return void */ public function addClassMap(array $classMap) { @@ -102,22 +171,25 @@ class ClassLoader * Registers a set of PSR-0 directories for a given prefix, either * appending or prepending to the ones previously set for this prefix. * - * @param string $prefix The prefix - * @param array|string $paths The PSR-0 root directories - * @param bool $prepend Whether to prepend the directories + * @param string $prefix The prefix + * @param list|string $paths The PSR-0 root directories + * @param bool $prepend Whether to prepend the directories + * + * @return void */ public function add($prefix, $paths, $prepend = false) { + $paths = (array) $paths; if (!$prefix) { if ($prepend) { $this->fallbackDirsPsr0 = array_merge( - (array) $paths, + $paths, $this->fallbackDirsPsr0 ); } else { $this->fallbackDirsPsr0 = array_merge( $this->fallbackDirsPsr0, - (array) $paths + $paths ); } @@ -126,19 +198,19 @@ class ClassLoader $first = $prefix[0]; if (!isset($this->prefixesPsr0[$first][$prefix])) { - $this->prefixesPsr0[$first][$prefix] = (array) $paths; + $this->prefixesPsr0[$first][$prefix] = $paths; return; } if ($prepend) { $this->prefixesPsr0[$first][$prefix] = array_merge( - (array) $paths, + $paths, $this->prefixesPsr0[$first][$prefix] ); } else { $this->prefixesPsr0[$first][$prefix] = array_merge( $this->prefixesPsr0[$first][$prefix], - (array) $paths + $paths ); } } @@ -147,25 +219,28 @@ class ClassLoader * Registers a set of PSR-4 directories for a given namespace, either * appending or prepending to the ones previously set for this namespace. * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param array|string $paths The PSR-4 base directories - * @param bool $prepend Whether to prepend the directories + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param list|string $paths The PSR-4 base directories + * @param bool $prepend Whether to prepend the directories * * @throws \InvalidArgumentException + * + * @return void */ public function addPsr4($prefix, $paths, $prepend = false) { + $paths = (array) $paths; if (!$prefix) { // Register directories for the root namespace. if ($prepend) { $this->fallbackDirsPsr4 = array_merge( - (array) $paths, + $paths, $this->fallbackDirsPsr4 ); } else { $this->fallbackDirsPsr4 = array_merge( $this->fallbackDirsPsr4, - (array) $paths + $paths ); } } elseif (!isset($this->prefixDirsPsr4[$prefix])) { @@ -175,18 +250,18 @@ class ClassLoader throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); } $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; - $this->prefixDirsPsr4[$prefix] = (array) $paths; + $this->prefixDirsPsr4[$prefix] = $paths; } elseif ($prepend) { // Prepend directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( - (array) $paths, + $paths, $this->prefixDirsPsr4[$prefix] ); } else { // Append directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( $this->prefixDirsPsr4[$prefix], - (array) $paths + $paths ); } } @@ -195,8 +270,10 @@ class ClassLoader * Registers a set of PSR-0 directories for a given prefix, * replacing any others previously set for this prefix. * - * @param string $prefix The prefix - * @param array|string $paths The PSR-0 base directories + * @param string $prefix The prefix + * @param list|string $paths The PSR-0 base directories + * + * @return void */ public function set($prefix, $paths) { @@ -211,10 +288,12 @@ class ClassLoader * Registers a set of PSR-4 directories for a given namespace, * replacing any others previously set for this namespace. * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param array|string $paths The PSR-4 base directories + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param list|string $paths The PSR-4 base directories * * @throws \InvalidArgumentException + * + * @return void */ public function setPsr4($prefix, $paths) { @@ -234,6 +313,8 @@ class ClassLoader * Turns on searching the include path for class files. * * @param bool $useIncludePath + * + * @return void */ public function setUseIncludePath($useIncludePath) { @@ -256,6 +337,8 @@ class ClassLoader * that have not been registered with the class map. * * @param bool $classMapAuthoritative + * + * @return void */ public function setClassMapAuthoritative($classMapAuthoritative) { @@ -276,10 +359,12 @@ class ClassLoader * APCu prefix to use to cache found/not-found classes, if the extension is enabled. * * @param string|null $apcuPrefix + * + * @return void */ public function setApcuPrefix($apcuPrefix) { - $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; + $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; } /** @@ -296,33 +381,55 @@ class ClassLoader * Registers this instance as an autoloader. * * @param bool $prepend Whether to prepend the autoloader or not + * + * @return void */ public function register($prepend = false) { spl_autoload_register(array($this, 'loadClass'), true, $prepend); + + if (null === $this->vendorDir) { + return; + } + + if ($prepend) { + self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders; + } else { + unset(self::$registeredLoaders[$this->vendorDir]); + self::$registeredLoaders[$this->vendorDir] = $this; + } } /** * Unregisters this instance as an autoloader. + * + * @return void */ public function unregister() { spl_autoload_unregister(array($this, 'loadClass')); + + if (null !== $this->vendorDir) { + unset(self::$registeredLoaders[$this->vendorDir]); + } } /** * Loads the given class or interface. * * @param string $class The name of the class - * @return bool|null True if loaded, null otherwise + * @return true|null True if loaded, null otherwise */ public function loadClass($class) { if ($file = $this->findFile($class)) { - includeFile($file); + $includeFile = self::$includeFile; + $includeFile($file); return true; } + + return null; } /** @@ -367,6 +474,21 @@ class ClassLoader return $file; } + /** + * Returns the currently registered loaders keyed by their corresponding vendor directories. + * + * @return array + */ + public static function getRegisteredLoaders() + { + return self::$registeredLoaders; + } + + /** + * @param string $class + * @param string $ext + * @return string|false + */ private function findFileWithExtension($class, $ext) { // PSR-4 lookup @@ -377,7 +499,7 @@ class ClassLoader $subPath = $class; while (false !== $lastPos = strrpos($subPath, '\\')) { $subPath = substr($subPath, 0, $lastPos); - $search = $subPath.'\\'; + $search = $subPath . '\\'; if (isset($this->prefixDirsPsr4[$search])) { $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); foreach ($this->prefixDirsPsr4[$search] as $dir) { @@ -432,14 +554,26 @@ class ClassLoader return false; } -} -/** - * Scope isolated include. - * - * Prevents access to $this/self from included files. - */ -function includeFile($file) -{ - include $file; + /** + * @return void + */ + private static function initializeIncludeClosure() + { + if (self::$includeFile !== null) { + return; + } + + /** + * Scope isolated include. + * + * Prevents access to $this/self from included files. + * + * @param string $file + * @return void + */ + self::$includeFile = \Closure::bind(static function($file) { + include $file; + }, null, null); + } } diff --git a/src/vendor/composer/InstalledVersions.php b/src/vendor/composer/InstalledVersions.php new file mode 100644 index 0000000..51e734a --- /dev/null +++ b/src/vendor/composer/InstalledVersions.php @@ -0,0 +1,359 @@ + + * Jordi Boggiano + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Composer; + +use Composer\Autoload\ClassLoader; +use Composer\Semver\VersionParser; + +/** + * This class is copied in every Composer installed project and available to all + * + * See also https://getcomposer.org/doc/07-runtime.md#installed-versions + * + * To require its presence, you can require `composer-runtime-api ^2.0` + * + * @final + */ +class InstalledVersions +{ + /** + * @var mixed[]|null + * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array}|array{}|null + */ + private static $installed; + + /** + * @var bool|null + */ + private static $canGetVendors; + + /** + * @var array[] + * @psalm-var array}> + */ + private static $installedByVendor = array(); + + /** + * Returns a list of all package names which are present, either by being installed, replaced or provided + * + * @return string[] + * @psalm-return list + */ + public static function getInstalledPackages() + { + $packages = array(); + foreach (self::getInstalled() as $installed) { + $packages[] = array_keys($installed['versions']); + } + + if (1 === \count($packages)) { + return $packages[0]; + } + + return array_keys(array_flip(\call_user_func_array('array_merge', $packages))); + } + + /** + * Returns a list of all package names with a specific type e.g. 'library' + * + * @param string $type + * @return string[] + * @psalm-return list + */ + public static function getInstalledPackagesByType($type) + { + $packagesByType = array(); + + foreach (self::getInstalled() as $installed) { + foreach ($installed['versions'] as $name => $package) { + if (isset($package['type']) && $package['type'] === $type) { + $packagesByType[] = $name; + } + } + } + + return $packagesByType; + } + + /** + * Checks whether the given package is installed + * + * This also returns true if the package name is provided or replaced by another package + * + * @param string $packageName + * @param bool $includeDevRequirements + * @return bool + */ + public static function isInstalled($packageName, $includeDevRequirements = true) + { + foreach (self::getInstalled() as $installed) { + if (isset($installed['versions'][$packageName])) { + return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false; + } + } + + return false; + } + + /** + * Checks whether the given package satisfies a version constraint + * + * e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call: + * + * Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3') + * + * @param VersionParser $parser Install composer/semver to have access to this class and functionality + * @param string $packageName + * @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package + * @return bool + */ + public static function satisfies(VersionParser $parser, $packageName, $constraint) + { + $constraint = $parser->parseConstraints((string) $constraint); + $provided = $parser->parseConstraints(self::getVersionRanges($packageName)); + + return $provided->matches($constraint); + } + + /** + * Returns a version constraint representing all the range(s) which are installed for a given package + * + * It is easier to use this via isInstalled() with the $constraint argument if you need to check + * whether a given version of a package is installed, and not just whether it exists + * + * @param string $packageName + * @return string Version constraint usable with composer/semver + */ + public static function getVersionRanges($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + $ranges = array(); + if (isset($installed['versions'][$packageName]['pretty_version'])) { + $ranges[] = $installed['versions'][$packageName]['pretty_version']; + } + if (array_key_exists('aliases', $installed['versions'][$packageName])) { + $ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']); + } + if (array_key_exists('replaced', $installed['versions'][$packageName])) { + $ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']); + } + if (array_key_exists('provided', $installed['versions'][$packageName])) { + $ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']); + } + + return implode(' || ', $ranges); + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present + */ + public static function getVersion($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + if (!isset($installed['versions'][$packageName]['version'])) { + return null; + } + + return $installed['versions'][$packageName]['version']; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present + */ + public static function getPrettyVersion($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + if (!isset($installed['versions'][$packageName]['pretty_version'])) { + return null; + } + + return $installed['versions'][$packageName]['pretty_version']; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference + */ + public static function getReference($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + if (!isset($installed['versions'][$packageName]['reference'])) { + return null; + } + + return $installed['versions'][$packageName]['reference']; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path. + */ + public static function getInstallPath($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @return array + * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool} + */ + public static function getRootPackage() + { + $installed = self::getInstalled(); + + return $installed[0]['root']; + } + + /** + * Returns the raw installed.php data for custom implementations + * + * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect. + * @return array[] + * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array} + */ + public static function getRawData() + { + @trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED); + + if (null === self::$installed) { + // only require the installed.php file if this file is loaded from its dumped location, + // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 + if (substr(__DIR__, -8, 1) !== 'C') { + self::$installed = include __DIR__ . '/installed.php'; + } else { + self::$installed = array(); + } + } + + return self::$installed; + } + + /** + * Returns the raw data of all installed.php which are currently loaded for custom implementations + * + * @return array[] + * @psalm-return list}> + */ + public static function getAllRawData() + { + return self::getInstalled(); + } + + /** + * Lets you reload the static array from another file + * + * This is only useful for complex integrations in which a project needs to use + * this class but then also needs to execute another project's autoloader in process, + * and wants to ensure both projects have access to their version of installed.php. + * + * A typical case would be PHPUnit, where it would need to make sure it reads all + * the data it needs from this class, then call reload() with + * `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure + * the project in which it runs can then also use this class safely, without + * interference between PHPUnit's dependencies and the project's dependencies. + * + * @param array[] $data A vendor/composer/installed.php data set + * @return void + * + * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array} $data + */ + public static function reload($data) + { + self::$installed = $data; + self::$installedByVendor = array(); + } + + /** + * @return array[] + * @psalm-return list}> + */ + private static function getInstalled() + { + if (null === self::$canGetVendors) { + self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders'); + } + + $installed = array(); + + if (self::$canGetVendors) { + foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { + if (isset(self::$installedByVendor[$vendorDir])) { + $installed[] = self::$installedByVendor[$vendorDir]; + } elseif (is_file($vendorDir.'/composer/installed.php')) { + /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array} $required */ + $required = require $vendorDir.'/composer/installed.php'; + $installed[] = self::$installedByVendor[$vendorDir] = $required; + if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { + self::$installed = $installed[count($installed) - 1]; + } + } + } + } + + if (null === self::$installed) { + // only require the installed.php file if this file is loaded from its dumped location, + // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 + if (substr(__DIR__, -8, 1) !== 'C') { + /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array} $required */ + $required = require __DIR__ . '/installed.php'; + self::$installed = $required; + } else { + self::$installed = array(); + } + } + + if (self::$installed !== array()) { + $installed[] = self::$installed; + } + + return $installed; + } +} diff --git a/src/vendor/composer/autoload_classmap.php b/src/vendor/composer/autoload_classmap.php index 7a91153..0fb0a2c 100644 --- a/src/vendor/composer/autoload_classmap.php +++ b/src/vendor/composer/autoload_classmap.php @@ -2,8 +2,9 @@ // autoload_classmap.php @generated by Composer -$vendorDir = dirname(dirname(__FILE__)); +$vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( + 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', ); diff --git a/src/vendor/composer/autoload_namespaces.php b/src/vendor/composer/autoload_namespaces.php index b7fc012..b2cc7d4 100644 --- a/src/vendor/composer/autoload_namespaces.php +++ b/src/vendor/composer/autoload_namespaces.php @@ -2,8 +2,9 @@ // autoload_namespaces.php @generated by Composer -$vendorDir = dirname(dirname(__FILE__)); +$vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( + 'PHPExcel' => array($vendorDir . '/phpoffice/phpexcel/Classes'), ); diff --git a/src/vendor/composer/autoload_psr4.php b/src/vendor/composer/autoload_psr4.php index cdb581c..3890ddc 100644 --- a/src/vendor/composer/autoload_psr4.php +++ b/src/vendor/composer/autoload_psr4.php @@ -2,9 +2,8 @@ // autoload_psr4.php @generated by Composer -$vendorDir = dirname(dirname(__FILE__)); +$vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( - 'think\\' => array($vendorDir . '/topthink/think-image/src'), ); diff --git a/src/vendor/composer/autoload_real.php b/src/vendor/composer/autoload_real.php index b3f27c7..169133a 100644 --- a/src/vendor/composer/autoload_real.php +++ b/src/vendor/composer/autoload_real.php @@ -13,37 +13,23 @@ class ComposerAutoloaderInitc94c02985840e0e24a4e6317fb9e1871 } } + /** + * @return \Composer\Autoload\ClassLoader + */ public static function getLoader() { if (null !== self::$loader) { return self::$loader; } + require __DIR__ . '/platform_check.php'; + spl_autoload_register(array('ComposerAutoloaderInitc94c02985840e0e24a4e6317fb9e1871', 'loadClassLoader'), true, true); - self::$loader = $loader = new \Composer\Autoload\ClassLoader(); + self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); spl_autoload_unregister(array('ComposerAutoloaderInitc94c02985840e0e24a4e6317fb9e1871', 'loadClassLoader')); - $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); - if ($useStaticLoader) { - require_once __DIR__ . '/autoload_static.php'; - - call_user_func(\Composer\Autoload\ComposerStaticInitc94c02985840e0e24a4e6317fb9e1871::getInitializer($loader)); - } else { - $map = require __DIR__ . '/autoload_namespaces.php'; - foreach ($map as $namespace => $path) { - $loader->set($namespace, $path); - } - - $map = require __DIR__ . '/autoload_psr4.php'; - foreach ($map as $namespace => $path) { - $loader->setPsr4($namespace, $path); - } - - $classMap = require __DIR__ . '/autoload_classmap.php'; - if ($classMap) { - $loader->addClassMap($classMap); - } - } + require __DIR__ . '/autoload_static.php'; + call_user_func(\Composer\Autoload\ComposerStaticInitc94c02985840e0e24a4e6317fb9e1871::getInitializer($loader)); $loader->register(true); diff --git a/src/vendor/composer/autoload_static.php b/src/vendor/composer/autoload_static.php index e21508b..1216568 100644 --- a/src/vendor/composer/autoload_static.php +++ b/src/vendor/composer/autoload_static.php @@ -6,25 +6,25 @@ namespace Composer\Autoload; class ComposerStaticInitc94c02985840e0e24a4e6317fb9e1871 { - public static $prefixLengthsPsr4 = array ( - 't' => + public static $prefixesPsr0 = array ( + 'P' => array ( - 'think\\' => 6, + 'PHPExcel' => + array ( + 0 => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes', + ), ), ); - public static $prefixDirsPsr4 = array ( - 'think\\' => - array ( - 0 => __DIR__ . '/..' . '/topthink/think-image/src', - ), + public static $classMap = array ( + 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', ); public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInitc94c02985840e0e24a4e6317fb9e1871::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInitc94c02985840e0e24a4e6317fb9e1871::$prefixDirsPsr4; + $loader->prefixesPsr0 = ComposerStaticInitc94c02985840e0e24a4e6317fb9e1871::$prefixesPsr0; + $loader->classMap = ComposerStaticInitc94c02985840e0e24a4e6317fb9e1871::$classMap; }, null, ClassLoader::class); } diff --git a/src/vendor/composer/installed.json b/src/vendor/composer/installed.json index 782f6b1..26141a3 100644 --- a/src/vendor/composer/installed.json +++ b/src/vendor/composer/installed.json @@ -1,44 +1,76 @@ -[ - { - "name": "topthink/think-image", - "version": "v1.0.7", - "version_normalized": "1.0.7.0", - "source": { - "type": "git", - "url": "https://github.com/top-think/think-image.git", - "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512" - }, - "dist": { - "type": "zip", - "url": "https://files.phpcomposer.com/files/top-think/think-image/8586cf47f117481c6d415b20f7dedf62e79d5512.zip", - "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512", - "shasum": "" - }, - "require": { - "ext-gd": "*" - }, - "require-dev": { - "phpunit/phpunit": "4.8.*", - "topthink/framework": "^5.0" - }, - "time": "2016-09-29T06:05:43+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-4": { - "think\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "yunwuxin", - "email": "448901948@qq.com" - } - ], - "description": "The ThinkPHP5 Image Package" - } -] +{ + "packages": [ + { + "name": "phpoffice/phpexcel", + "version": "1.8.2", + "version_normalized": "1.8.2.0", + "source": { + "type": "git", + "url": "https://github.com/PHPOffice/PHPExcel.git", + "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870", + "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "php": "^5.2|^7.0" + }, + "require-dev": { + "squizlabs/php_codesniffer": "2.*" + }, + "time": "2018-11-22T23:07:24+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-0": { + "PHPExcel": "Classes/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1" + ], + "authors": [ + { + "name": "Maarten Balliauw", + "homepage": "http://blog.maartenballiauw.be" + }, + { + "name": "Erik Tilt" + }, + { + "name": "Franck Lefevre", + "homepage": "http://rootslabs.net" + }, + { + "name": "Mark Baker", + "homepage": "http://markbakeruk.net" + } + ], + "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine", + "homepage": "https://github.com/PHPOffice/PHPExcel", + "keywords": [ + "OpenXML", + "excel", + "php", + "spreadsheet", + "xls", + "xlsx" + ], + "support": { + "issues": "https://github.com/PHPOffice/PHPExcel/issues", + "source": "https://github.com/PHPOffice/PHPExcel/tree/master" + }, + "abandoned": "phpoffice/phpspreadsheet", + "install-path": "../phpoffice/phpexcel" + } + ], + "dev": true, + "dev-package-names": [] +} diff --git a/src/vendor/composer/installed.php b/src/vendor/composer/installed.php new file mode 100644 index 0000000..7c9b0bd --- /dev/null +++ b/src/vendor/composer/installed.php @@ -0,0 +1,32 @@ + array( + 'name' => '__root__', + 'pretty_version' => 'dev-master', + 'version' => 'dev-master', + 'reference' => '7e0ca0a8e729ed70ee7d74318f522993112e4dba', + 'type' => 'library', + 'install_path' => __DIR__ . '/../../', + 'aliases' => array(), + 'dev' => true, + ), + 'versions' => array( + '__root__' => array( + 'pretty_version' => 'dev-master', + 'version' => 'dev-master', + 'reference' => '7e0ca0a8e729ed70ee7d74318f522993112e4dba', + 'type' => 'library', + 'install_path' => __DIR__ . '/../../', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'phpoffice/phpexcel' => array( + 'pretty_version' => '1.8.2', + 'version' => '1.8.2.0', + 'reference' => '1441011fb7ecdd8cc689878f54f8b58a6805f870', + 'type' => 'library', + 'install_path' => __DIR__ . '/../phpoffice/phpexcel', + 'aliases' => array(), + 'dev_requirement' => false, + ), + ), +); diff --git a/src/vendor/composer/platform_check.php b/src/vendor/composer/platform_check.php new file mode 100644 index 0000000..201e2fc --- /dev/null +++ b/src/vendor/composer/platform_check.php @@ -0,0 +1,26 @@ += 50200)) { + $issues[] = 'Your Composer dependencies require a PHP version ">= 5.2.0". You are running ' . PHP_VERSION . '.'; +} + +if ($issues) { + if (!headers_sent()) { + header('HTTP/1.1 500 Internal Server Error'); + } + if (!ini_get('display_errors')) { + if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { + fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL); + } elseif (!headers_sent()) { + echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL; + } + } + trigger_error( + 'Composer detected issues in your platform: ' . implode(' ', $issues), + E_USER_ERROR + ); +} diff --git a/src/vendor/phpoffice/phpexcel/.gitattributes b/src/vendor/phpoffice/phpexcel/.gitattributes new file mode 100644 index 0000000..58182f2 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/.gitattributes @@ -0,0 +1,3 @@ +/Build export-ignore +/unitTests export-ignore +README.md export-ignore diff --git a/src/vendor/phpoffice/phpexcel/.gitignore b/src/vendor/phpoffice/phpexcel/.gitignore new file mode 100644 index 0000000..dea03b5 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/.gitignore @@ -0,0 +1,9 @@ +build/PHPExcel.phar +unitTests/codeCoverage +analysis + +## IDE support +*.buildpath +*.project +/.settings +/.idea diff --git a/src/vendor/phpoffice/phpexcel/.travis.yml b/src/vendor/phpoffice/phpexcel/.travis.yml new file mode 100644 index 0000000..99e9e8d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/.travis.yml @@ -0,0 +1,29 @@ +language: php + +php: + - 5.4 + - 5.5 + - 5.6 + - 7.0 + - hhvm + +matrix: + allow_failures: + - php: hhvm + +before_script: + ## Packages + - sudo apt-get -qq update > /dev/null + ## Composer + - composer self-update + - composer install --prefer-source --dev + - phpenv global "$TRAVIS_PHP_VERSION" + +script: + ## PHP_CodeSniffer + - ./vendor/bin/phpcs --report-width=200 --report-summary --report-full Classes/ unitTests/ --standard=PSR2 -n + ## PHPUnit + - phpunit -c ./unitTests/ + +notifications: + email: false diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel.php new file mode 100644 index 0000000..b8dbe0e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel.php @@ -0,0 +1,1153 @@ +hasMacros; + } + + /** + * Define if a workbook has macros + * + * @param boolean $hasMacros true|false + */ + public function setHasMacros($hasMacros = false) + { + $this->hasMacros = (bool) $hasMacros; + } + + /** + * Set the macros code + * + * @param string $MacrosCode string|null + */ + public function setMacrosCode($MacrosCode = null) + { + $this->macrosCode=$MacrosCode; + $this->setHasMacros(!is_null($MacrosCode)); + } + + /** + * Return the macros code + * + * @return string|null + */ + public function getMacrosCode() + { + return $this->macrosCode; + } + + /** + * Set the macros certificate + * + * @param string|null $Certificate + */ + public function setMacrosCertificate($Certificate = null) + { + $this->macrosCertificate=$Certificate; + } + + /** + * Is the project signed ? + * + * @return boolean true|false + */ + public function hasMacrosCertificate() + { + return !is_null($this->macrosCertificate); + } + + /** + * Return the macros certificate + * + * @return string|null + */ + public function getMacrosCertificate() + { + return $this->macrosCertificate; + } + + /** + * Remove all macros, certificate from spreadsheet + * + */ + public function discardMacros() + { + $this->hasMacros=false; + $this->macrosCode=null; + $this->macrosCertificate=null; + } + + /** + * set ribbon XML data + * + */ + public function setRibbonXMLData($Target = null, $XMLData = null) + { + if (!is_null($Target) && !is_null($XMLData)) { + $this->ribbonXMLData = array('target' => $Target, 'data' => $XMLData); + } else { + $this->ribbonXMLData = null; + } + } + + /** + * retrieve ribbon XML Data + * + * return string|null|array + */ + public function getRibbonXMLData($What = 'all') //we need some constants here... + { + $ReturnData = null; + $What = strtolower($What); + switch ($What){ + case 'all': + $ReturnData = $this->ribbonXMLData; + break; + case 'target': + case 'data': + if (is_array($this->ribbonXMLData) && array_key_exists($What, $this->ribbonXMLData)) { + $ReturnData = $this->ribbonXMLData[$What]; + } + break; + } + + return $ReturnData; + } + + /** + * store binaries ribbon objects (pictures) + * + */ + public function setRibbonBinObjects($BinObjectsNames = null, $BinObjectsData = null) + { + if (!is_null($BinObjectsNames) && !is_null($BinObjectsData)) { + $this->ribbonBinObjects = array('names' => $BinObjectsNames, 'data' => $BinObjectsData); + } else { + $this->ribbonBinObjects = null; + } + } + /** + * return the extension of a filename. Internal use for a array_map callback (php<5.3 don't like lambda function) + * + */ + private function getExtensionOnly($ThePath) + { + return pathinfo($ThePath, PATHINFO_EXTENSION); + } + + /** + * retrieve Binaries Ribbon Objects + * + */ + public function getRibbonBinObjects($What = 'all') + { + $ReturnData = null; + $What = strtolower($What); + switch($What) { + case 'all': + return $this->ribbonBinObjects; + break; + case 'names': + case 'data': + if (is_array($this->ribbonBinObjects) && array_key_exists($What, $this->ribbonBinObjects)) { + $ReturnData=$this->ribbonBinObjects[$What]; + } + break; + case 'types': + if (is_array($this->ribbonBinObjects) && + array_key_exists('data', $this->ribbonBinObjects) && is_array($this->ribbonBinObjects['data'])) { + $tmpTypes=array_keys($this->ribbonBinObjects['data']); + $ReturnData = array_unique(array_map(array($this, 'getExtensionOnly'), $tmpTypes)); + } else { + $ReturnData=array(); // the caller want an array... not null if empty + } + break; + } + return $ReturnData; + } + + /** + * This workbook have a custom UI ? + * + * @return boolean true|false + */ + public function hasRibbon() + { + return !is_null($this->ribbonXMLData); + } + + /** + * This workbook have additionnal object for the ribbon ? + * + * @return boolean true|false + */ + public function hasRibbonBinObjects() + { + return !is_null($this->ribbonBinObjects); + } + + /** + * Check if a sheet with a specified code name already exists + * + * @param string $pSheetCodeName Name of the worksheet to check + * @return boolean + */ + public function sheetCodeNameExists($pSheetCodeName) + { + return ($this->getSheetByCodeName($pSheetCodeName) !== null); + } + + /** + * Get sheet by code name. Warning : sheet don't have always a code name ! + * + * @param string $pName Sheet name + * @return PHPExcel_Worksheet + */ + public function getSheetByCodeName($pName = '') + { + $worksheetCount = count($this->workSheetCollection); + for ($i = 0; $i < $worksheetCount; ++$i) { + if ($this->workSheetCollection[$i]->getCodeName() == $pName) { + return $this->workSheetCollection[$i]; + } + } + + return null; + } + + /** + * Create a new PHPExcel with one Worksheet + */ + public function __construct() + { + $this->uniqueID = uniqid(); + $this->calculationEngine = new PHPExcel_Calculation($this); + + // Initialise worksheet collection and add one worksheet + $this->workSheetCollection = array(); + $this->workSheetCollection[] = new PHPExcel_Worksheet($this); + $this->activeSheetIndex = 0; + + // Create document properties + $this->properties = new PHPExcel_DocumentProperties(); + + // Create document security + $this->security = new PHPExcel_DocumentSecurity(); + + // Set named ranges + $this->namedRanges = array(); + + // Create the cellXf supervisor + $this->cellXfSupervisor = new PHPExcel_Style(true); + $this->cellXfSupervisor->bindParent($this); + + // Create the default style + $this->addCellXf(new PHPExcel_Style); + $this->addCellStyleXf(new PHPExcel_Style); + } + + /** + * Code to execute when this worksheet is unset() + * + */ + public function __destruct() + { + $this->calculationEngine = null; + $this->disconnectWorksheets(); + } + + /** + * Disconnect all worksheets from this PHPExcel workbook object, + * typically so that the PHPExcel object can be unset + * + */ + public function disconnectWorksheets() + { + $worksheet = null; + foreach ($this->workSheetCollection as $k => &$worksheet) { + $worksheet->disconnectCells(); + $this->workSheetCollection[$k] = null; + } + unset($worksheet); + $this->workSheetCollection = array(); + } + + /** + * Return the calculation engine for this worksheet + * + * @return PHPExcel_Calculation + */ + public function getCalculationEngine() + { + return $this->calculationEngine; + } // function getCellCacheController() + + /** + * Get properties + * + * @return PHPExcel_DocumentProperties + */ + public function getProperties() + { + return $this->properties; + } + + /** + * Set properties + * + * @param PHPExcel_DocumentProperties $pValue + */ + public function setProperties(PHPExcel_DocumentProperties $pValue) + { + $this->properties = $pValue; + } + + /** + * Get security + * + * @return PHPExcel_DocumentSecurity + */ + public function getSecurity() + { + return $this->security; + } + + /** + * Set security + * + * @param PHPExcel_DocumentSecurity $pValue + */ + public function setSecurity(PHPExcel_DocumentSecurity $pValue) + { + $this->security = $pValue; + } + + /** + * Get active sheet + * + * @return PHPExcel_Worksheet + * + * @throws PHPExcel_Exception + */ + public function getActiveSheet() + { + return $this->getSheet($this->activeSheetIndex); + } + + /** + * Create sheet and add it to this workbook + * + * @param int|null $iSheetIndex Index where sheet should go (0,1,..., or null for last) + * @return PHPExcel_Worksheet + * @throws PHPExcel_Exception + */ + public function createSheet($iSheetIndex = null) + { + $newSheet = new PHPExcel_Worksheet($this); + $this->addSheet($newSheet, $iSheetIndex); + return $newSheet; + } + + /** + * Check if a sheet with a specified name already exists + * + * @param string $pSheetName Name of the worksheet to check + * @return boolean + */ + public function sheetNameExists($pSheetName) + { + return ($this->getSheetByName($pSheetName) !== null); + } + + /** + * Add sheet + * + * @param PHPExcel_Worksheet $pSheet + * @param int|null $iSheetIndex Index where sheet should go (0,1,..., or null for last) + * @return PHPExcel_Worksheet + * @throws PHPExcel_Exception + */ + public function addSheet(PHPExcel_Worksheet $pSheet, $iSheetIndex = null) + { + if ($this->sheetNameExists($pSheet->getTitle())) { + throw new PHPExcel_Exception( + "Workbook already contains a worksheet named '{$pSheet->getTitle()}'. Rename this worksheet first." + ); + } + + if ($iSheetIndex === null) { + if ($this->activeSheetIndex < 0) { + $this->activeSheetIndex = 0; + } + $this->workSheetCollection[] = $pSheet; + } else { + // Insert the sheet at the requested index + array_splice( + $this->workSheetCollection, + $iSheetIndex, + 0, + array($pSheet) + ); + + // Adjust active sheet index if necessary + if ($this->activeSheetIndex >= $iSheetIndex) { + ++$this->activeSheetIndex; + } + } + + if ($pSheet->getParent() === null) { + $pSheet->rebindParent($this); + } + + return $pSheet; + } + + /** + * Remove sheet by index + * + * @param int $pIndex Active sheet index + * @throws PHPExcel_Exception + */ + public function removeSheetByIndex($pIndex = 0) + { + + $numSheets = count($this->workSheetCollection); + if ($pIndex > $numSheets - 1) { + throw new PHPExcel_Exception( + "You tried to remove a sheet by the out of bounds index: {$pIndex}. The actual number of sheets is {$numSheets}." + ); + } else { + array_splice($this->workSheetCollection, $pIndex, 1); + } + // Adjust active sheet index if necessary + if (($this->activeSheetIndex >= $pIndex) && + ($pIndex > count($this->workSheetCollection) - 1)) { + --$this->activeSheetIndex; + } + + } + + /** + * Get sheet by index + * + * @param int $pIndex Sheet index + * @return PHPExcel_Worksheet + * @throws PHPExcel_Exception + */ + public function getSheet($pIndex = 0) + { + if (!isset($this->workSheetCollection[$pIndex])) { + $numSheets = $this->getSheetCount(); + throw new PHPExcel_Exception( + "Your requested sheet index: {$pIndex} is out of bounds. The actual number of sheets is {$numSheets}." + ); + } + + return $this->workSheetCollection[$pIndex]; + } + + /** + * Get all sheets + * + * @return PHPExcel_Worksheet[] + */ + public function getAllSheets() + { + return $this->workSheetCollection; + } + + /** + * Get sheet by name + * + * @param string $pName Sheet name + * @return PHPExcel_Worksheet + */ + public function getSheetByName($pName = '') + { + $worksheetCount = count($this->workSheetCollection); + for ($i = 0; $i < $worksheetCount; ++$i) { + if ($this->workSheetCollection[$i]->getTitle() === $pName) { + return $this->workSheetCollection[$i]; + } + } + + return null; + } + + /** + * Get index for sheet + * + * @param PHPExcel_Worksheet $pSheet + * @return int Sheet index + * @throws PHPExcel_Exception + */ + public function getIndex(PHPExcel_Worksheet $pSheet) + { + foreach ($this->workSheetCollection as $key => $value) { + if ($value->getHashCode() == $pSheet->getHashCode()) { + return $key; + } + } + + throw new PHPExcel_Exception("Sheet does not exist."); + } + + /** + * Set index for sheet by sheet name. + * + * @param string $sheetName Sheet name to modify index for + * @param int $newIndex New index for the sheet + * @return int New sheet index + * @throws PHPExcel_Exception + */ + public function setIndexByName($sheetName, $newIndex) + { + $oldIndex = $this->getIndex($this->getSheetByName($sheetName)); + $pSheet = array_splice( + $this->workSheetCollection, + $oldIndex, + 1 + ); + array_splice( + $this->workSheetCollection, + $newIndex, + 0, + $pSheet + ); + return $newIndex; + } + + /** + * Get sheet count + * + * @return int + */ + public function getSheetCount() + { + return count($this->workSheetCollection); + } + + /** + * Get active sheet index + * + * @return int Active sheet index + */ + public function getActiveSheetIndex() + { + return $this->activeSheetIndex; + } + + /** + * Set active sheet index + * + * @param int $pIndex Active sheet index + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function setActiveSheetIndex($pIndex = 0) + { + $numSheets = count($this->workSheetCollection); + + if ($pIndex > $numSheets - 1) { + throw new PHPExcel_Exception( + "You tried to set a sheet active by the out of bounds index: {$pIndex}. The actual number of sheets is {$numSheets}." + ); + } else { + $this->activeSheetIndex = $pIndex; + } + return $this->getActiveSheet(); + } + + /** + * Set active sheet index by name + * + * @param string $pValue Sheet title + * @return PHPExcel_Worksheet + * @throws PHPExcel_Exception + */ + public function setActiveSheetIndexByName($pValue = '') + { + if (($worksheet = $this->getSheetByName($pValue)) instanceof PHPExcel_Worksheet) { + $this->setActiveSheetIndex($this->getIndex($worksheet)); + return $worksheet; + } + + throw new PHPExcel_Exception('Workbook does not contain sheet:' . $pValue); + } + + /** + * Get sheet names + * + * @return string[] + */ + public function getSheetNames() + { + $returnValue = array(); + $worksheetCount = $this->getSheetCount(); + for ($i = 0; $i < $worksheetCount; ++$i) { + $returnValue[] = $this->getSheet($i)->getTitle(); + } + + return $returnValue; + } + + /** + * Add external sheet + * + * @param PHPExcel_Worksheet $pSheet External sheet to add + * @param int|null $iSheetIndex Index where sheet should go (0,1,..., or null for last) + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function addExternalSheet(PHPExcel_Worksheet $pSheet, $iSheetIndex = null) + { + if ($this->sheetNameExists($pSheet->getTitle())) { + throw new PHPExcel_Exception("Workbook already contains a worksheet named '{$pSheet->getTitle()}'. Rename the external sheet first."); + } + + // count how many cellXfs there are in this workbook currently, we will need this below + $countCellXfs = count($this->cellXfCollection); + + // copy all the shared cellXfs from the external workbook and append them to the current + foreach ($pSheet->getParent()->getCellXfCollection() as $cellXf) { + $this->addCellXf(clone $cellXf); + } + + // move sheet to this workbook + $pSheet->rebindParent($this); + + // update the cellXfs + foreach ($pSheet->getCellCollection(false) as $cellID) { + $cell = $pSheet->getCell($cellID); + $cell->setXfIndex($cell->getXfIndex() + $countCellXfs); + } + + return $this->addSheet($pSheet, $iSheetIndex); + } + + /** + * Get named ranges + * + * @return PHPExcel_NamedRange[] + */ + public function getNamedRanges() + { + return $this->namedRanges; + } + + /** + * Add named range + * + * @param PHPExcel_NamedRange $namedRange + * @return boolean + */ + public function addNamedRange(PHPExcel_NamedRange $namedRange) + { + if ($namedRange->getScope() == null) { + // global scope + $this->namedRanges[$namedRange->getName()] = $namedRange; + } else { + // local scope + $this->namedRanges[$namedRange->getScope()->getTitle().'!'.$namedRange->getName()] = $namedRange; + } + return true; + } + + /** + * Get named range + * + * @param string $namedRange + * @param PHPExcel_Worksheet|null $pSheet Scope. Use null for global scope + * @return PHPExcel_NamedRange|null + */ + public function getNamedRange($namedRange, PHPExcel_Worksheet $pSheet = null) + { + $returnValue = null; + + if ($namedRange != '' && ($namedRange !== null)) { + // first look for global defined name + if (isset($this->namedRanges[$namedRange])) { + $returnValue = $this->namedRanges[$namedRange]; + } + + // then look for local defined name (has priority over global defined name if both names exist) + if (($pSheet !== null) && isset($this->namedRanges[$pSheet->getTitle() . '!' . $namedRange])) { + $returnValue = $this->namedRanges[$pSheet->getTitle() . '!' . $namedRange]; + } + } + + return $returnValue; + } + + /** + * Remove named range + * + * @param string $namedRange + * @param PHPExcel_Worksheet|null $pSheet Scope: use null for global scope. + * @return PHPExcel + */ + public function removeNamedRange($namedRange, PHPExcel_Worksheet $pSheet = null) + { + if ($pSheet === null) { + if (isset($this->namedRanges[$namedRange])) { + unset($this->namedRanges[$namedRange]); + } + } else { + if (isset($this->namedRanges[$pSheet->getTitle() . '!' . $namedRange])) { + unset($this->namedRanges[$pSheet->getTitle() . '!' . $namedRange]); + } + } + return $this; + } + + /** + * Get worksheet iterator + * + * @return PHPExcel_WorksheetIterator + */ + public function getWorksheetIterator() + { + return new PHPExcel_WorksheetIterator($this); + } + + /** + * Copy workbook (!= clone!) + * + * @return PHPExcel + */ + public function copy() + { + $copied = clone $this; + + $worksheetCount = count($this->workSheetCollection); + for ($i = 0; $i < $worksheetCount; ++$i) { + $this->workSheetCollection[$i] = $this->workSheetCollection[$i]->copy(); + $this->workSheetCollection[$i]->rebindParent($this); + } + + return $copied; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + foreach ($this as $key => $val) { + if (is_object($val) || (is_array($val))) { + $this->{$key} = unserialize(serialize($val)); + } + } + } + + /** + * Get the workbook collection of cellXfs + * + * @return PHPExcel_Style[] + */ + public function getCellXfCollection() + { + return $this->cellXfCollection; + } + + /** + * Get cellXf by index + * + * @param int $pIndex + * @return PHPExcel_Style + */ + public function getCellXfByIndex($pIndex = 0) + { + return $this->cellXfCollection[$pIndex]; + } + + /** + * Get cellXf by hash code + * + * @param string $pValue + * @return PHPExcel_Style|boolean False if no match found + */ + public function getCellXfByHashCode($pValue = '') + { + foreach ($this->cellXfCollection as $cellXf) { + if ($cellXf->getHashCode() == $pValue) { + return $cellXf; + } + } + return false; + } + + /** + * Check if style exists in style collection + * + * @param PHPExcel_Style $pCellStyle + * @return boolean + */ + public function cellXfExists($pCellStyle = null) + { + return in_array($pCellStyle, $this->cellXfCollection, true); + } + + /** + * Get default style + * + * @return PHPExcel_Style + * @throws PHPExcel_Exception + */ + public function getDefaultStyle() + { + if (isset($this->cellXfCollection[0])) { + return $this->cellXfCollection[0]; + } + throw new PHPExcel_Exception('No default style found for this workbook'); + } + + /** + * Add a cellXf to the workbook + * + * @param PHPExcel_Style $style + */ + public function addCellXf(PHPExcel_Style $style) + { + $this->cellXfCollection[] = $style; + $style->setIndex(count($this->cellXfCollection) - 1); + } + + /** + * Remove cellXf by index. It is ensured that all cells get their xf index updated. + * + * @param integer $pIndex Index to cellXf + * @throws PHPExcel_Exception + */ + public function removeCellXfByIndex($pIndex = 0) + { + if ($pIndex > count($this->cellXfCollection) - 1) { + throw new PHPExcel_Exception("CellXf index is out of bounds."); + } else { + // first remove the cellXf + array_splice($this->cellXfCollection, $pIndex, 1); + + // then update cellXf indexes for cells + foreach ($this->workSheetCollection as $worksheet) { + foreach ($worksheet->getCellCollection(false) as $cellID) { + $cell = $worksheet->getCell($cellID); + $xfIndex = $cell->getXfIndex(); + if ($xfIndex > $pIndex) { + // decrease xf index by 1 + $cell->setXfIndex($xfIndex - 1); + } elseif ($xfIndex == $pIndex) { + // set to default xf index 0 + $cell->setXfIndex(0); + } + } + } + } + } + + /** + * Get the cellXf supervisor + * + * @return PHPExcel_Style + */ + public function getCellXfSupervisor() + { + return $this->cellXfSupervisor; + } + + /** + * Get the workbook collection of cellStyleXfs + * + * @return PHPExcel_Style[] + */ + public function getCellStyleXfCollection() + { + return $this->cellStyleXfCollection; + } + + /** + * Get cellStyleXf by index + * + * @param integer $pIndex Index to cellXf + * @return PHPExcel_Style + */ + public function getCellStyleXfByIndex($pIndex = 0) + { + return $this->cellStyleXfCollection[$pIndex]; + } + + /** + * Get cellStyleXf by hash code + * + * @param string $pValue + * @return PHPExcel_Style|boolean False if no match found + */ + public function getCellStyleXfByHashCode($pValue = '') + { + foreach ($this->cellStyleXfCollection as $cellStyleXf) { + if ($cellStyleXf->getHashCode() == $pValue) { + return $cellStyleXf; + } + } + return false; + } + + /** + * Add a cellStyleXf to the workbook + * + * @param PHPExcel_Style $pStyle + */ + public function addCellStyleXf(PHPExcel_Style $pStyle) + { + $this->cellStyleXfCollection[] = $pStyle; + $pStyle->setIndex(count($this->cellStyleXfCollection) - 1); + } + + /** + * Remove cellStyleXf by index + * + * @param integer $pIndex Index to cellXf + * @throws PHPExcel_Exception + */ + public function removeCellStyleXfByIndex($pIndex = 0) + { + if ($pIndex > count($this->cellStyleXfCollection) - 1) { + throw new PHPExcel_Exception("CellStyleXf index is out of bounds."); + } else { + array_splice($this->cellStyleXfCollection, $pIndex, 1); + } + } + + /** + * Eliminate all unneeded cellXf and afterwards update the xfIndex for all cells + * and columns in the workbook + */ + public function garbageCollect() + { + // how many references are there to each cellXf ? + $countReferencesCellXf = array(); + foreach ($this->cellXfCollection as $index => $cellXf) { + $countReferencesCellXf[$index] = 0; + } + + foreach ($this->getWorksheetIterator() as $sheet) { + // from cells + foreach ($sheet->getCellCollection(false) as $cellID) { + $cell = $sheet->getCell($cellID); + ++$countReferencesCellXf[$cell->getXfIndex()]; + } + + // from row dimensions + foreach ($sheet->getRowDimensions() as $rowDimension) { + if ($rowDimension->getXfIndex() !== null) { + ++$countReferencesCellXf[$rowDimension->getXfIndex()]; + } + } + + // from column dimensions + foreach ($sheet->getColumnDimensions() as $columnDimension) { + ++$countReferencesCellXf[$columnDimension->getXfIndex()]; + } + } + + // remove cellXfs without references and create mapping so we can update xfIndex + // for all cells and columns + $countNeededCellXfs = 0; + $map = array(); + foreach ($this->cellXfCollection as $index => $cellXf) { + if ($countReferencesCellXf[$index] > 0 || $index == 0) { // we must never remove the first cellXf + ++$countNeededCellXfs; + } else { + unset($this->cellXfCollection[$index]); + } + $map[$index] = $countNeededCellXfs - 1; + } + $this->cellXfCollection = array_values($this->cellXfCollection); + + // update the index for all cellXfs + foreach ($this->cellXfCollection as $i => $cellXf) { + $cellXf->setIndex($i); + } + + // make sure there is always at least one cellXf (there should be) + if (empty($this->cellXfCollection)) { + $this->cellXfCollection[] = new PHPExcel_Style(); + } + + // update the xfIndex for all cells, row dimensions, column dimensions + foreach ($this->getWorksheetIterator() as $sheet) { + // for all cells + foreach ($sheet->getCellCollection(false) as $cellID) { + $cell = $sheet->getCell($cellID); + $cell->setXfIndex($map[$cell->getXfIndex()]); + } + + // for all row dimensions + foreach ($sheet->getRowDimensions() as $rowDimension) { + if ($rowDimension->getXfIndex() !== null) { + $rowDimension->setXfIndex($map[$rowDimension->getXfIndex()]); + } + } + + // for all column dimensions + foreach ($sheet->getColumnDimensions() as $columnDimension) { + $columnDimension->setXfIndex($map[$columnDimension->getXfIndex()]); + } + + // also do garbage collection for all the sheets + $sheet->garbageCollect(); + } + } + + /** + * Return the unique ID value assigned to this spreadsheet workbook + * + * @return string + */ + public function getID() + { + return $this->uniqueID; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Autoloader.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Autoloader.php new file mode 100644 index 0000000..c3b95a2 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Autoloader.php @@ -0,0 +1,81 @@ += 0) { + return spl_autoload_register(array('PHPExcel_Autoloader', 'load'), true, true); + } else { + return spl_autoload_register(array('PHPExcel_Autoloader', 'load')); + } + } + + /** + * Autoload a class identified by name + * + * @param string $pClassName Name of the object to load + */ + public static function load($pClassName) + { + if ((class_exists($pClassName, false)) || (strpos($pClassName, 'PHPExcel') !== 0)) { + // Either already loaded, or not a PHPExcel class request + return false; + } + + $pClassFilePath = PHPEXCEL_ROOT . + str_replace('_', DIRECTORY_SEPARATOR, $pClassName) . + '.php'; + + if ((file_exists($pClassFilePath) === false) || (is_readable($pClassFilePath) === false)) { + // Can't load + return false; + } + + require($pClassFilePath); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/APC.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/APC.php new file mode 100644 index 0000000..c74b07f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/APC.php @@ -0,0 +1,290 @@ +currentCellIsDirty && !empty($this->currentObjectID)) { + $this->currentObject->detach(); + + if (!apc_store( + $this->cachePrefix . $this->currentObjectID . '.cache', + serialize($this->currentObject), + $this->cacheTime + )) { + $this->__destruct(); + throw new PHPExcel_Exception('Failed to store cell ' . $this->currentObjectID . ' in APC'); + } + $this->currentCellIsDirty = false; + } + $this->currentObjectID = $this->currentObject = null; + } + + /** + * Add or Update a cell in cache identified by coordinate address + * + * @access public + * @param string $pCoord Coordinate address of the cell to update + * @param PHPExcel_Cell $cell Cell to update + * @return PHPExcel_Cell + * @throws PHPExcel_Exception + */ + public function addCacheData($pCoord, PHPExcel_Cell $cell) + { + if (($pCoord !== $this->currentObjectID) && ($this->currentObjectID !== null)) { + $this->storeData(); + } + $this->cellCache[$pCoord] = true; + + $this->currentObjectID = $pCoord; + $this->currentObject = $cell; + $this->currentCellIsDirty = true; + + return $cell; + } + + /** + * Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell? + * + * @access public + * @param string $pCoord Coordinate address of the cell to check + * @throws PHPExcel_Exception + * @return boolean + */ + public function isDataSet($pCoord) + { + // Check if the requested entry is the current object, or exists in the cache + if (parent::isDataSet($pCoord)) { + if ($this->currentObjectID == $pCoord) { + return true; + } + // Check if the requested entry still exists in apc + $success = apc_fetch($this->cachePrefix.$pCoord.'.cache'); + if ($success === false) { + // Entry no longer exists in APC, so clear it from the cache array + parent::deleteCacheData($pCoord); + throw new PHPExcel_Exception('Cell entry '.$pCoord.' no longer exists in APC cache'); + } + return true; + } + return false; + } + + /** + * Get cell at a specific coordinate + * + * @access public + * @param string $pCoord Coordinate of the cell + * @throws PHPExcel_Exception + * @return PHPExcel_Cell Cell that was found, or null if not found + */ + public function getCacheData($pCoord) + { + if ($pCoord === $this->currentObjectID) { + return $this->currentObject; + } + $this->storeData(); + + // Check if the entry that has been requested actually exists + if (parent::isDataSet($pCoord)) { + $obj = apc_fetch($this->cachePrefix . $pCoord . '.cache'); + if ($obj === false) { + // Entry no longer exists in APC, so clear it from the cache array + parent::deleteCacheData($pCoord); + throw new PHPExcel_Exception('Cell entry '.$pCoord.' no longer exists in APC cache'); + } + } else { + // Return null if requested entry doesn't exist in cache + return null; + } + + // Set current entry to the requested entry + $this->currentObjectID = $pCoord; + $this->currentObject = unserialize($obj); + // Re-attach this as the cell's parent + $this->currentObject->attach($this); + + // Return requested entry + return $this->currentObject; + } + + /** + * Get a list of all cell addresses currently held in cache + * + * @return string[] + */ + public function getCellList() + { + if ($this->currentObjectID !== null) { + $this->storeData(); + } + + return parent::getCellList(); + } + + /** + * Delete a cell in cache identified by coordinate address + * + * @access public + * @param string $pCoord Coordinate address of the cell to delete + * @throws PHPExcel_Exception + */ + public function deleteCacheData($pCoord) + { + // Delete the entry from APC + apc_delete($this->cachePrefix.$pCoord.'.cache'); + + // Delete the entry from our cell address array + parent::deleteCacheData($pCoord); + } + + /** + * Clone the cell collection + * + * @access public + * @param PHPExcel_Worksheet $parent The new worksheet + * @throws PHPExcel_Exception + * @return void + */ + public function copyCellCollection(PHPExcel_Worksheet $parent) + { + parent::copyCellCollection($parent); + // Get a new id for the new file name + $baseUnique = $this->getUniqueID(); + $newCachePrefix = substr(md5($baseUnique), 0, 8) . '.'; + $cacheList = $this->getCellList(); + foreach ($cacheList as $cellID) { + if ($cellID != $this->currentObjectID) { + $obj = apc_fetch($this->cachePrefix . $cellID . '.cache'); + if ($obj === false) { + // Entry no longer exists in APC, so clear it from the cache array + parent::deleteCacheData($cellID); + throw new PHPExcel_Exception('Cell entry ' . $cellID . ' no longer exists in APC'); + } + if (!apc_store($newCachePrefix . $cellID . '.cache', $obj, $this->cacheTime)) { + $this->__destruct(); + throw new PHPExcel_Exception('Failed to store cell ' . $cellID . ' in APC'); + } + } + } + $this->cachePrefix = $newCachePrefix; + } + + /** + * Clear the cell collection and disconnect from our parent + * + * @return void + */ + public function unsetWorksheetCells() + { + if ($this->currentObject !== null) { + $this->currentObject->detach(); + $this->currentObject = $this->currentObjectID = null; + } + + // Flush the APC cache + $this->__destruct(); + + $this->cellCache = array(); + + // detach ourself from the worksheet, so that it can then delete this object successfully + $this->parent = null; + } + + /** + * Initialise this new cell collection + * + * @param PHPExcel_Worksheet $parent The worksheet for this cell collection + * @param array of mixed $arguments Additional initialisation arguments + */ + public function __construct(PHPExcel_Worksheet $parent, $arguments) + { + $cacheTime = (isset($arguments['cacheTime'])) ? $arguments['cacheTime'] : 600; + + if ($this->cachePrefix === null) { + $baseUnique = $this->getUniqueID(); + $this->cachePrefix = substr(md5($baseUnique), 0, 8) . '.'; + $this->cacheTime = $cacheTime; + + parent::__construct($parent); + } + } + + /** + * Destroy this cell collection + */ + public function __destruct() + { + $cacheList = $this->getCellList(); + foreach ($cacheList as $cellID) { + apc_delete($this->cachePrefix . $cellID . '.cache'); + } + } + + /** + * Identify whether the caching method is currently available + * Some methods are dependent on the availability of certain extensions being enabled in the PHP build + * + * @return boolean + */ + public static function cacheMethodIsAvailable() + { + if (!function_exists('apc_store')) { + return false; + } + if (apc_sma_info() === false) { + return false; + } + + return true; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php new file mode 100644 index 0000000..9a12ec8 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php @@ -0,0 +1,368 @@ +parent = $parent; + } + + /** + * Return the parent worksheet for this cell collection + * + * @return PHPExcel_Worksheet + */ + public function getParent() + { + return $this->parent; + } + + /** + * Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell? + * + * @param string $pCoord Coordinate address of the cell to check + * @return boolean + */ + public function isDataSet($pCoord) + { + if ($pCoord === $this->currentObjectID) { + return true; + } + // Check if the requested entry exists in the cache + return isset($this->cellCache[$pCoord]); + } + + /** + * Move a cell object from one address to another + * + * @param string $fromAddress Current address of the cell to move + * @param string $toAddress Destination address of the cell to move + * @return boolean + */ + public function moveCell($fromAddress, $toAddress) + { + if ($fromAddress === $this->currentObjectID) { + $this->currentObjectID = $toAddress; + } + $this->currentCellIsDirty = true; + if (isset($this->cellCache[$fromAddress])) { + $this->cellCache[$toAddress] = &$this->cellCache[$fromAddress]; + unset($this->cellCache[$fromAddress]); + } + + return true; + } + + /** + * Add or Update a cell in cache + * + * @param PHPExcel_Cell $cell Cell to update + * @return PHPExcel_Cell + * @throws PHPExcel_Exception + */ + public function updateCacheData(PHPExcel_Cell $cell) + { + return $this->addCacheData($cell->getCoordinate(), $cell); + } + + /** + * Delete a cell in cache identified by coordinate address + * + * @param string $pCoord Coordinate address of the cell to delete + * @throws PHPExcel_Exception + */ + public function deleteCacheData($pCoord) + { + if ($pCoord === $this->currentObjectID && !is_null($this->currentObject)) { + $this->currentObject->detach(); + $this->currentObjectID = $this->currentObject = null; + } + + if (is_object($this->cellCache[$pCoord])) { + $this->cellCache[$pCoord]->detach(); + unset($this->cellCache[$pCoord]); + } + $this->currentCellIsDirty = false; + } + + /** + * Get a list of all cell addresses currently held in cache + * + * @return string[] + */ + public function getCellList() + { + return array_keys($this->cellCache); + } + + /** + * Sort the list of all cell addresses currently held in cache by row and column + * + * @return string[] + */ + public function getSortedCellList() + { + $sortKeys = array(); + foreach ($this->getCellList() as $coord) { + sscanf($coord, '%[A-Z]%d', $column, $row); + $sortKeys[sprintf('%09d%3s', $row, $column)] = $coord; + } + ksort($sortKeys); + + return array_values($sortKeys); + } + + /** + * Get highest worksheet column and highest row that have cell records + * + * @return array Highest column name and highest row number + */ + public function getHighestRowAndColumn() + { + // Lookup highest column and highest row + $col = array('A' => '1A'); + $row = array(1); + foreach ($this->getCellList() as $coord) { + sscanf($coord, '%[A-Z]%d', $c, $r); + $row[$r] = $r; + $col[$c] = strlen($c).$c; + } + if (!empty($row)) { + // Determine highest column and row + $highestRow = max($row); + $highestColumn = substr(max($col), 1); + } + + return array( + 'row' => $highestRow, + 'column' => $highestColumn + ); + } + + /** + * Return the cell address of the currently active cell object + * + * @return string + */ + public function getCurrentAddress() + { + return $this->currentObjectID; + } + + /** + * Return the column address of the currently active cell object + * + * @return string + */ + public function getCurrentColumn() + { + sscanf($this->currentObjectID, '%[A-Z]%d', $column, $row); + return $column; + } + + /** + * Return the row address of the currently active cell object + * + * @return integer + */ + public function getCurrentRow() + { + sscanf($this->currentObjectID, '%[A-Z]%d', $column, $row); + return (integer) $row; + } + + /** + * Get highest worksheet column + * + * @param string $row Return the highest column for the specified row, + * or the highest column of any row if no row number is passed + * @return string Highest column name + */ + public function getHighestColumn($row = null) + { + if ($row == null) { + $colRow = $this->getHighestRowAndColumn(); + return $colRow['column']; + } + + $columnList = array(1); + foreach ($this->getCellList() as $coord) { + sscanf($coord, '%[A-Z]%d', $c, $r); + if ($r != $row) { + continue; + } + $columnList[] = PHPExcel_Cell::columnIndexFromString($c); + } + return PHPExcel_Cell::stringFromColumnIndex(max($columnList) - 1); + } + + /** + * Get highest worksheet row + * + * @param string $column Return the highest row for the specified column, + * or the highest row of any column if no column letter is passed + * @return int Highest row number + */ + public function getHighestRow($column = null) + { + if ($column == null) { + $colRow = $this->getHighestRowAndColumn(); + return $colRow['row']; + } + + $rowList = array(0); + foreach ($this->getCellList() as $coord) { + sscanf($coord, '%[A-Z]%d', $c, $r); + if ($c != $column) { + continue; + } + $rowList[] = $r; + } + + return max($rowList); + } + + /** + * Generate a unique ID for cache referencing + * + * @return string Unique Reference + */ + protected function getUniqueID() + { + if (function_exists('posix_getpid')) { + $baseUnique = posix_getpid(); + } else { + $baseUnique = mt_rand(); + } + return uniqid($baseUnique, true); + } + + /** + * Clone the cell collection + * + * @param PHPExcel_Worksheet $parent The new worksheet + * @return void + */ + public function copyCellCollection(PHPExcel_Worksheet $parent) + { + $this->currentCellIsDirty; + $this->storeData(); + + $this->parent = $parent; + if (($this->currentObject !== null) && (is_object($this->currentObject))) { + $this->currentObject->attach($this); + } + } // function copyCellCollection() + + /** + * Remove a row, deleting all cells in that row + * + * @param string $row Row number to remove + * @return void + */ + public function removeRow($row) + { + foreach ($this->getCellList() as $coord) { + sscanf($coord, '%[A-Z]%d', $c, $r); + if ($r == $row) { + $this->deleteCacheData($coord); + } + } + } + + /** + * Remove a column, deleting all cells in that column + * + * @param string $column Column ID to remove + * @return void + */ + public function removeColumn($column) + { + foreach ($this->getCellList() as $coord) { + sscanf($coord, '%[A-Z]%d', $c, $r); + if ($c == $column) { + $this->deleteCacheData($coord); + } + } + } + + /** + * Identify whether the caching method is currently available + * Some methods are dependent on the availability of certain extensions being enabled in the PHP build + * + * @return boolean + */ + public static function cacheMethodIsAvailable() + { + return true; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/DiscISAM.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/DiscISAM.php new file mode 100644 index 0000000..13bc033 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/DiscISAM.php @@ -0,0 +1,208 @@ +currentCellIsDirty && !empty($this->currentObjectID)) { + $this->currentObject->detach(); + + fseek($this->fileHandle, 0, SEEK_END); + + $this->cellCache[$this->currentObjectID] = array( + 'ptr' => ftell($this->fileHandle), + 'sz' => fwrite($this->fileHandle, serialize($this->currentObject)) + ); + $this->currentCellIsDirty = false; + } + $this->currentObjectID = $this->currentObject = null; + } + + /** + * Add or Update a cell in cache identified by coordinate address + * + * @param string $pCoord Coordinate address of the cell to update + * @param PHPExcel_Cell $cell Cell to update + * @return PHPExcel_Cell + * @throws PHPExcel_Exception + */ + public function addCacheData($pCoord, PHPExcel_Cell $cell) + { + if (($pCoord !== $this->currentObjectID) && ($this->currentObjectID !== null)) { + $this->storeData(); + } + + $this->currentObjectID = $pCoord; + $this->currentObject = $cell; + $this->currentCellIsDirty = true; + + return $cell; + } + + /** + * Get cell at a specific coordinate + * + * @param string $pCoord Coordinate of the cell + * @throws PHPExcel_Exception + * @return PHPExcel_Cell Cell that was found, or null if not found + */ + public function getCacheData($pCoord) + { + if ($pCoord === $this->currentObjectID) { + return $this->currentObject; + } + $this->storeData(); + + // Check if the entry that has been requested actually exists + if (!isset($this->cellCache[$pCoord])) { + // Return null if requested entry doesn't exist in cache + return null; + } + + // Set current entry to the requested entry + $this->currentObjectID = $pCoord; + fseek($this->fileHandle, $this->cellCache[$pCoord]['ptr']); + $this->currentObject = unserialize(fread($this->fileHandle, $this->cellCache[$pCoord]['sz'])); + // Re-attach this as the cell's parent + $this->currentObject->attach($this); + + // Return requested entry + return $this->currentObject; + } + + /** + * Get a list of all cell addresses currently held in cache + * + * @return string[] + */ + public function getCellList() + { + if ($this->currentObjectID !== null) { + $this->storeData(); + } + + return parent::getCellList(); + } + + /** + * Clone the cell collection + * + * @param PHPExcel_Worksheet $parent The new worksheet + */ + public function copyCellCollection(PHPExcel_Worksheet $parent) + { + parent::copyCellCollection($parent); + // Get a new id for the new file name + $baseUnique = $this->getUniqueID(); + $newFileName = $this->cacheDirectory.'/PHPExcel.'.$baseUnique.'.cache'; + // Copy the existing cell cache file + copy($this->fileName, $newFileName); + $this->fileName = $newFileName; + // Open the copied cell cache file + $this->fileHandle = fopen($this->fileName, 'a+'); + } + + /** + * Clear the cell collection and disconnect from our parent + * + */ + public function unsetWorksheetCells() + { + if (!is_null($this->currentObject)) { + $this->currentObject->detach(); + $this->currentObject = $this->currentObjectID = null; + } + $this->cellCache = array(); + + // detach ourself from the worksheet, so that it can then delete this object successfully + $this->parent = null; + + // Close down the temporary cache file + $this->__destruct(); + } + + /** + * Initialise this new cell collection + * + * @param PHPExcel_Worksheet $parent The worksheet for this cell collection + * @param array of mixed $arguments Additional initialisation arguments + */ + public function __construct(PHPExcel_Worksheet $parent, $arguments) + { + $this->cacheDirectory = ((isset($arguments['dir'])) && ($arguments['dir'] !== null)) + ? $arguments['dir'] + : PHPExcel_Shared_File::sys_get_temp_dir(); + + parent::__construct($parent); + if (is_null($this->fileHandle)) { + $baseUnique = $this->getUniqueID(); + $this->fileName = $this->cacheDirectory.'/PHPExcel.'.$baseUnique.'.cache'; + $this->fileHandle = fopen($this->fileName, 'a+'); + } + } + + /** + * Destroy this cell collection + */ + public function __destruct() + { + if (!is_null($this->fileHandle)) { + fclose($this->fileHandle); + unlink($this->fileName); + } + $this->fileHandle = null; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/ICache.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/ICache.php new file mode 100644 index 0000000..aafef6e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/ICache.php @@ -0,0 +1,103 @@ +currentCellIsDirty && !empty($this->currentObjectID)) { + $this->currentObject->detach(); + + $this->cellCache[$this->currentObjectID] = igbinary_serialize($this->currentObject); + $this->currentCellIsDirty = false; + } + $this->currentObjectID = $this->currentObject = null; + } // function _storeData() + + + /** + * Add or Update a cell in cache identified by coordinate address + * + * @param string $pCoord Coordinate address of the cell to update + * @param PHPExcel_Cell $cell Cell to update + * @return PHPExcel_Cell + * @throws PHPExcel_Exception + */ + public function addCacheData($pCoord, PHPExcel_Cell $cell) + { + if (($pCoord !== $this->currentObjectID) && ($this->currentObjectID !== null)) { + $this->storeData(); + } + + $this->currentObjectID = $pCoord; + $this->currentObject = $cell; + $this->currentCellIsDirty = true; + + return $cell; + } // function addCacheData() + + + /** + * Get cell at a specific coordinate + * + * @param string $pCoord Coordinate of the cell + * @throws PHPExcel_Exception + * @return PHPExcel_Cell Cell that was found, or null if not found + */ + public function getCacheData($pCoord) + { + if ($pCoord === $this->currentObjectID) { + return $this->currentObject; + } + $this->storeData(); + + // Check if the entry that has been requested actually exists + if (!isset($this->cellCache[$pCoord])) { + // Return null if requested entry doesn't exist in cache + return null; + } + + // Set current entry to the requested entry + $this->currentObjectID = $pCoord; + $this->currentObject = igbinary_unserialize($this->cellCache[$pCoord]); + // Re-attach this as the cell's parent + $this->currentObject->attach($this); + + // Return requested entry + return $this->currentObject; + } // function getCacheData() + + + /** + * Get a list of all cell addresses currently held in cache + * + * @return string[] + */ + public function getCellList() + { + if ($this->currentObjectID !== null) { + $this->storeData(); + } + + return parent::getCellList(); + } + + + /** + * Clear the cell collection and disconnect from our parent + * + * @return void + */ + public function unsetWorksheetCells() + { + if (!is_null($this->currentObject)) { + $this->currentObject->detach(); + $this->currentObject = $this->currentObjectID = null; + } + $this->cellCache = array(); + + // detach ourself from the worksheet, so that it can then delete this object successfully + $this->parent = null; + } // function unsetWorksheetCells() + + + /** + * Identify whether the caching method is currently available + * Some methods are dependent on the availability of certain extensions being enabled in the PHP build + * + * @return boolean + */ + public static function cacheMethodIsAvailable() + { + if (!function_exists('igbinary_serialize')) { + return false; + } + + return true; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php new file mode 100644 index 0000000..07942cc --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php @@ -0,0 +1,308 @@ +currentCellIsDirty && !empty($this->currentObjectID)) { + $this->currentObject->detach(); + + $obj = serialize($this->currentObject); + if (!$this->memcache->replace($this->cachePrefix . $this->currentObjectID . '.cache', $obj, null, $this->cacheTime)) { + if (!$this->memcache->add($this->cachePrefix . $this->currentObjectID . '.cache', $obj, null, $this->cacheTime)) { + $this->__destruct(); + throw new PHPExcel_Exception("Failed to store cell {$this->currentObjectID} in MemCache"); + } + } + $this->currentCellIsDirty = false; + } + $this->currentObjectID = $this->currentObject = null; + } // function _storeData() + + + /** + * Add or Update a cell in cache identified by coordinate address + * + * @param string $pCoord Coordinate address of the cell to update + * @param PHPExcel_Cell $cell Cell to update + * @return PHPExcel_Cell + * @throws PHPExcel_Exception + */ + public function addCacheData($pCoord, PHPExcel_Cell $cell) + { + if (($pCoord !== $this->currentObjectID) && ($this->currentObjectID !== null)) { + $this->storeData(); + } + $this->cellCache[$pCoord] = true; + + $this->currentObjectID = $pCoord; + $this->currentObject = $cell; + $this->currentCellIsDirty = true; + + return $cell; + } // function addCacheData() + + + /** + * Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell? + * + * @param string $pCoord Coordinate address of the cell to check + * @return boolean + * @return boolean + */ + public function isDataSet($pCoord) + { + // Check if the requested entry is the current object, or exists in the cache + if (parent::isDataSet($pCoord)) { + if ($this->currentObjectID == $pCoord) { + return true; + } + // Check if the requested entry still exists in Memcache + $success = $this->memcache->get($this->cachePrefix.$pCoord.'.cache'); + if ($success === false) { + // Entry no longer exists in Memcache, so clear it from the cache array + parent::deleteCacheData($pCoord); + throw new PHPExcel_Exception('Cell entry '.$pCoord.' no longer exists in MemCache'); + } + return true; + } + return false; + } + + + /** + * Get cell at a specific coordinate + * + * @param string $pCoord Coordinate of the cell + * @throws PHPExcel_Exception + * @return PHPExcel_Cell Cell that was found, or null if not found + */ + public function getCacheData($pCoord) + { + if ($pCoord === $this->currentObjectID) { + return $this->currentObject; + } + $this->storeData(); + + // Check if the entry that has been requested actually exists + if (parent::isDataSet($pCoord)) { + $obj = $this->memcache->get($this->cachePrefix . $pCoord . '.cache'); + if ($obj === false) { + // Entry no longer exists in Memcache, so clear it from the cache array + parent::deleteCacheData($pCoord); + throw new PHPExcel_Exception("Cell entry {$pCoord} no longer exists in MemCache"); + } + } else { + // Return null if requested entry doesn't exist in cache + return null; + } + + // Set current entry to the requested entry + $this->currentObjectID = $pCoord; + $this->currentObject = unserialize($obj); + // Re-attach this as the cell's parent + $this->currentObject->attach($this); + + // Return requested entry + return $this->currentObject; + } + + /** + * Get a list of all cell addresses currently held in cache + * + * @return string[] + */ + public function getCellList() + { + if ($this->currentObjectID !== null) { + $this->storeData(); + } + + return parent::getCellList(); + } + + /** + * Delete a cell in cache identified by coordinate address + * + * @param string $pCoord Coordinate address of the cell to delete + * @throws PHPExcel_Exception + */ + public function deleteCacheData($pCoord) + { + // Delete the entry from Memcache + $this->memcache->delete($this->cachePrefix . $pCoord . '.cache'); + + // Delete the entry from our cell address array + parent::deleteCacheData($pCoord); + } + + /** + * Clone the cell collection + * + * @param PHPExcel_Worksheet $parent The new worksheet + * @return void + */ + public function copyCellCollection(PHPExcel_Worksheet $parent) + { + parent::copyCellCollection($parent); + // Get a new id for the new file name + $baseUnique = $this->getUniqueID(); + $newCachePrefix = substr(md5($baseUnique), 0, 8) . '.'; + $cacheList = $this->getCellList(); + foreach ($cacheList as $cellID) { + if ($cellID != $this->currentObjectID) { + $obj = $this->memcache->get($this->cachePrefix.$cellID.'.cache'); + if ($obj === false) { + // Entry no longer exists in Memcache, so clear it from the cache array + parent::deleteCacheData($cellID); + throw new PHPExcel_Exception("Cell entry {$cellID} no longer exists in MemCache"); + } + if (!$this->memcache->add($newCachePrefix . $cellID . '.cache', $obj, null, $this->cacheTime)) { + $this->__destruct(); + throw new PHPExcel_Exception("Failed to store cell {$cellID} in MemCache"); + } + } + } + $this->cachePrefix = $newCachePrefix; + } + + /** + * Clear the cell collection and disconnect from our parent + * + * @return void + */ + public function unsetWorksheetCells() + { + if (!is_null($this->currentObject)) { + $this->currentObject->detach(); + $this->currentObject = $this->currentObjectID = null; + } + + // Flush the Memcache cache + $this->__destruct(); + + $this->cellCache = array(); + + // detach ourself from the worksheet, so that it can then delete this object successfully + $this->parent = null; + } + + /** + * Initialise this new cell collection + * + * @param PHPExcel_Worksheet $parent The worksheet for this cell collection + * @param array of mixed $arguments Additional initialisation arguments + */ + public function __construct(PHPExcel_Worksheet $parent, $arguments) + { + $memcacheServer = (isset($arguments['memcacheServer'])) ? $arguments['memcacheServer'] : 'localhost'; + $memcachePort = (isset($arguments['memcachePort'])) ? $arguments['memcachePort'] : 11211; + $cacheTime = (isset($arguments['cacheTime'])) ? $arguments['cacheTime'] : 600; + + if (is_null($this->cachePrefix)) { + $baseUnique = $this->getUniqueID(); + $this->cachePrefix = substr(md5($baseUnique), 0, 8) . '.'; + + // Set a new Memcache object and connect to the Memcache server + $this->memcache = new Memcache(); + if (!$this->memcache->addServer($memcacheServer, $memcachePort, false, 50, 5, 5, true, array($this, 'failureCallback'))) { + throw new PHPExcel_Exception("Could not connect to MemCache server at {$memcacheServer}:{$memcachePort}"); + } + $this->cacheTime = $cacheTime; + + parent::__construct($parent); + } + } + + /** + * Memcache error handler + * + * @param string $host Memcache server + * @param integer $port Memcache port + * @throws PHPExcel_Exception + */ + public function failureCallback($host, $port) + { + throw new PHPExcel_Exception("memcache {$host}:{$port} failed"); + } + + /** + * Destroy this cell collection + */ + public function __destruct() + { + $cacheList = $this->getCellList(); + foreach ($cacheList as $cellID) { + $this->memcache->delete($this->cachePrefix.$cellID . '.cache'); + } + } + + /** + * Identify whether the caching method is currently available + * Some methods are dependent on the availability of certain extensions being enabled in the PHP build + * + * @return boolean + */ + public static function cacheMethodIsAvailable() + { + if (!function_exists('memcache_add')) { + return false; + } + + return true; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memory.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memory.php new file mode 100644 index 0000000..0e2ea0b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memory.php @@ -0,0 +1,118 @@ +cellCache[$pCoord] = $cell; + + // Set current entry to the new/updated entry + $this->currentObjectID = $pCoord; + + return $cell; + } + + + /** + * Get cell at a specific coordinate + * + * @param string $pCoord Coordinate of the cell + * @throws PHPExcel_Exception + * @return PHPExcel_Cell Cell that was found, or null if not found + */ + public function getCacheData($pCoord) + { + // Check if the entry that has been requested actually exists + if (!isset($this->cellCache[$pCoord])) { + $this->currentObjectID = null; + // Return null if requested entry doesn't exist in cache + return null; + } + + // Set current entry to the requested entry + $this->currentObjectID = $pCoord; + + // Return requested entry + return $this->cellCache[$pCoord]; + } + + + /** + * Clone the cell collection + * + * @param PHPExcel_Worksheet $parent The new worksheet + */ + public function copyCellCollection(PHPExcel_Worksheet $parent) + { + parent::copyCellCollection($parent); + + $newCollection = array(); + foreach ($this->cellCache as $k => &$cell) { + $newCollection[$k] = clone $cell; + $newCollection[$k]->attach($this); + } + + $this->cellCache = $newCollection; + } + + /** + * Clear the cell collection and disconnect from our parent + * + */ + public function unsetWorksheetCells() + { + // Because cells are all stored as intact objects in memory, we need to detach each one from the parent + foreach ($this->cellCache as $k => &$cell) { + $cell->detach(); + $this->cellCache[$k] = null; + } + unset($cell); + + $this->cellCache = array(); + + // detach ourself from the worksheet, so that it can then delete this object successfully + $this->parent = null; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/MemoryGZip.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/MemoryGZip.php new file mode 100644 index 0000000..c06ec71 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/MemoryGZip.php @@ -0,0 +1,133 @@ +currentCellIsDirty && !empty($this->currentObjectID)) { + $this->currentObject->detach(); + + $this->cellCache[$this->currentObjectID] = gzdeflate(serialize($this->currentObject)); + $this->currentCellIsDirty = false; + } + $this->currentObjectID = $this->currentObject = null; + } + + + /** + * Add or Update a cell in cache identified by coordinate address + * + * @param string $pCoord Coordinate address of the cell to update + * @param PHPExcel_Cell $cell Cell to update + * @return PHPExcel_Cell + * @throws PHPExcel_Exception + */ + public function addCacheData($pCoord, PHPExcel_Cell $cell) + { + if (($pCoord !== $this->currentObjectID) && ($this->currentObjectID !== null)) { + $this->storeData(); + } + + $this->currentObjectID = $pCoord; + $this->currentObject = $cell; + $this->currentCellIsDirty = true; + + return $cell; + } + + + /** + * Get cell at a specific coordinate + * + * @param string $pCoord Coordinate of the cell + * @throws PHPExcel_Exception + * @return PHPExcel_Cell Cell that was found, or null if not found + */ + public function getCacheData($pCoord) + { + if ($pCoord === $this->currentObjectID) { + return $this->currentObject; + } + $this->storeData(); + + // Check if the entry that has been requested actually exists + if (!isset($this->cellCache[$pCoord])) { + // Return null if requested entry doesn't exist in cache + return null; + } + + // Set current entry to the requested entry + $this->currentObjectID = $pCoord; + $this->currentObject = unserialize(gzinflate($this->cellCache[$pCoord])); + // Re-attach this as the cell's parent + $this->currentObject->attach($this); + + // Return requested entry + return $this->currentObject; + } + + + /** + * Get a list of all cell addresses currently held in cache + * + * @return string[] + */ + public function getCellList() + { + if ($this->currentObjectID !== null) { + $this->storeData(); + } + + return parent::getCellList(); + } + + + /** + * Clear the cell collection and disconnect from our parent + * + * @return void + */ + public function unsetWorksheetCells() + { + if (!is_null($this->currentObject)) { + $this->currentObject->detach(); + $this->currentObject = $this->currentObjectID = null; + } + $this->cellCache = array(); + + // detach ourself from the worksheet, so that it can then delete this object successfully + $this->parent = null; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/MemorySerialized.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/MemorySerialized.php new file mode 100644 index 0000000..1332514 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/MemorySerialized.php @@ -0,0 +1,129 @@ +currentCellIsDirty && !empty($this->currentObjectID)) { + $this->currentObject->detach(); + + $this->cellCache[$this->currentObjectID] = serialize($this->currentObject); + $this->currentCellIsDirty = false; + } + $this->currentObjectID = $this->currentObject = null; + } + + /** + * Add or Update a cell in cache identified by coordinate address + * + * @param string $pCoord Coordinate address of the cell to update + * @param PHPExcel_Cell $cell Cell to update + * @return PHPExcel_Cell + * @throws PHPExcel_Exception + */ + public function addCacheData($pCoord, PHPExcel_Cell $cell) + { + if (($pCoord !== $this->currentObjectID) && ($this->currentObjectID !== null)) { + $this->storeData(); + } + + $this->currentObjectID = $pCoord; + $this->currentObject = $cell; + $this->currentCellIsDirty = true; + + return $cell; + } + + /** + * Get cell at a specific coordinate + * + * @param string $pCoord Coordinate of the cell + * @throws PHPExcel_Exception + * @return PHPExcel_Cell Cell that was found, or null if not found + */ + public function getCacheData($pCoord) + { + if ($pCoord === $this->currentObjectID) { + return $this->currentObject; + } + $this->storeData(); + + // Check if the entry that has been requested actually exists + if (!isset($this->cellCache[$pCoord])) { + // Return null if requested entry doesn't exist in cache + return null; + } + + // Set current entry to the requested entry + $this->currentObjectID = $pCoord; + $this->currentObject = unserialize($this->cellCache[$pCoord]); + // Re-attach this as the cell's parent + $this->currentObject->attach($this); + + // Return requested entry + return $this->currentObject; + } + + /** + * Get a list of all cell addresses currently held in cache + * + * @return string[] + */ + public function getCellList() + { + if ($this->currentObjectID !== null) { + $this->storeData(); + } + + return parent::getCellList(); + } + + /** + * Clear the cell collection and disconnect from our parent + * + * @return void + */ + public function unsetWorksheetCells() + { + if (!is_null($this->currentObject)) { + $this->currentObject->detach(); + $this->currentObject = $this->currentObjectID = null; + } + $this->cellCache = array(); + + // detach ourself from the worksheet, so that it can then delete this object successfully + $this->parent = null; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/PHPTemp.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/PHPTemp.php new file mode 100644 index 0000000..43c7819 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/PHPTemp.php @@ -0,0 +1,200 @@ +currentCellIsDirty && !empty($this->currentObjectID)) { + $this->currentObject->detach(); + + fseek($this->fileHandle, 0, SEEK_END); + + $this->cellCache[$this->currentObjectID] = array( + 'ptr' => ftell($this->fileHandle), + 'sz' => fwrite($this->fileHandle, serialize($this->currentObject)) + ); + $this->currentCellIsDirty = false; + } + $this->currentObjectID = $this->currentObject = null; + } + + + /** + * Add or Update a cell in cache identified by coordinate address + * + * @param string $pCoord Coordinate address of the cell to update + * @param PHPExcel_Cell $cell Cell to update + * @return PHPExcel_Cell + * @throws PHPExcel_Exception + */ + public function addCacheData($pCoord, PHPExcel_Cell $cell) + { + if (($pCoord !== $this->currentObjectID) && ($this->currentObjectID !== null)) { + $this->storeData(); + } + + $this->currentObjectID = $pCoord; + $this->currentObject = $cell; + $this->currentCellIsDirty = true; + + return $cell; + } + + + /** + * Get cell at a specific coordinate + * + * @param string $pCoord Coordinate of the cell + * @throws PHPExcel_Exception + * @return PHPExcel_Cell Cell that was found, or null if not found + */ + public function getCacheData($pCoord) + { + if ($pCoord === $this->currentObjectID) { + return $this->currentObject; + } + $this->storeData(); + + // Check if the entry that has been requested actually exists + if (!isset($this->cellCache[$pCoord])) { + // Return null if requested entry doesn't exist in cache + return null; + } + + // Set current entry to the requested entry + $this->currentObjectID = $pCoord; + fseek($this->fileHandle, $this->cellCache[$pCoord]['ptr']); + $this->currentObject = unserialize(fread($this->fileHandle, $this->cellCache[$pCoord]['sz'])); + // Re-attach this as the cell's parent + $this->currentObject->attach($this); + + // Return requested entry + return $this->currentObject; + } + + /** + * Get a list of all cell addresses currently held in cache + * + * @return string[] + */ + public function getCellList() + { + if ($this->currentObjectID !== null) { + $this->storeData(); + } + + return parent::getCellList(); + } + + /** + * Clone the cell collection + * + * @param PHPExcel_Worksheet $parent The new worksheet + * @return void + */ + public function copyCellCollection(PHPExcel_Worksheet $parent) + { + parent::copyCellCollection($parent); + // Open a new stream for the cell cache data + $newFileHandle = fopen('php://temp/maxmemory:' . $this->memoryCacheSize, 'a+'); + // Copy the existing cell cache data to the new stream + fseek($this->fileHandle, 0); + while (!feof($this->fileHandle)) { + fwrite($newFileHandle, fread($this->fileHandle, 1024)); + } + $this->fileHandle = $newFileHandle; + } + + /** + * Clear the cell collection and disconnect from our parent + * + * @return void + */ + public function unsetWorksheetCells() + { + if (!is_null($this->currentObject)) { + $this->currentObject->detach(); + $this->currentObject = $this->currentObjectID = null; + } + $this->cellCache = array(); + + // detach ourself from the worksheet, so that it can then delete this object successfully + $this->parent = null; + + // Close down the php://temp file + $this->__destruct(); + } + + /** + * Initialise this new cell collection + * + * @param PHPExcel_Worksheet $parent The worksheet for this cell collection + * @param array of mixed $arguments Additional initialisation arguments + */ + public function __construct(PHPExcel_Worksheet $parent, $arguments) + { + $this->memoryCacheSize = (isset($arguments['memoryCacheSize'])) ? $arguments['memoryCacheSize'] : '1MB'; + + parent::__construct($parent); + if (is_null($this->fileHandle)) { + $this->fileHandle = fopen('php://temp/maxmemory:' . $this->memoryCacheSize, 'a+'); + } + } + + /** + * Destroy this cell collection + */ + public function __destruct() + { + if (!is_null($this->fileHandle)) { + fclose($this->fileHandle); + } + $this->fileHandle = null; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite.php new file mode 100644 index 0000000..e7b50c5 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite.php @@ -0,0 +1,307 @@ +currentCellIsDirty && !empty($this->currentObjectID)) { + $this->currentObject->detach(); + + if (!$this->DBHandle->queryExec("INSERT OR REPLACE INTO kvp_".$this->TableName." VALUES('".$this->currentObjectID."','".sqlite_escape_string(serialize($this->currentObject))."')")) { + throw new PHPExcel_Exception(sqlite_error_string($this->DBHandle->lastError())); + } + $this->currentCellIsDirty = false; + } + $this->currentObjectID = $this->currentObject = null; + } + + /** + * Add or Update a cell in cache identified by coordinate address + * + * @param string $pCoord Coordinate address of the cell to update + * @param PHPExcel_Cell $cell Cell to update + * @return PHPExcel_Cell + * @throws PHPExcel_Exception + */ + public function addCacheData($pCoord, PHPExcel_Cell $cell) + { + if (($pCoord !== $this->currentObjectID) && ($this->currentObjectID !== null)) { + $this->storeData(); + } + + $this->currentObjectID = $pCoord; + $this->currentObject = $cell; + $this->currentCellIsDirty = true; + + return $cell; + } + + /** + * Get cell at a specific coordinate + * + * @param string $pCoord Coordinate of the cell + * @throws PHPExcel_Exception + * @return PHPExcel_Cell Cell that was found, or null if not found + */ + public function getCacheData($pCoord) + { + if ($pCoord === $this->currentObjectID) { + return $this->currentObject; + } + $this->storeData(); + + $query = "SELECT value FROM kvp_".$this->TableName." WHERE id='".$pCoord."'"; + $cellResultSet = $this->DBHandle->query($query, SQLITE_ASSOC); + if ($cellResultSet === false) { + throw new PHPExcel_Exception(sqlite_error_string($this->DBHandle->lastError())); + } elseif ($cellResultSet->numRows() == 0) { + // Return null if requested entry doesn't exist in cache + return null; + } + + // Set current entry to the requested entry + $this->currentObjectID = $pCoord; + + $cellResult = $cellResultSet->fetchSingle(); + $this->currentObject = unserialize($cellResult); + // Re-attach this as the cell's parent + $this->currentObject->attach($this); + + // Return requested entry + return $this->currentObject; + } + + /** + * Is a value set for an indexed cell? + * + * @param string $pCoord Coordinate address of the cell to check + * @return boolean + */ + public function isDataSet($pCoord) + { + if ($pCoord === $this->currentObjectID) { + return true; + } + + // Check if the requested entry exists in the cache + $query = "SELECT id FROM kvp_".$this->TableName." WHERE id='".$pCoord."'"; + $cellResultSet = $this->DBHandle->query($query, SQLITE_ASSOC); + if ($cellResultSet === false) { + throw new PHPExcel_Exception(sqlite_error_string($this->DBHandle->lastError())); + } elseif ($cellResultSet->numRows() == 0) { + // Return null if requested entry doesn't exist in cache + return false; + } + return true; + } + + /** + * Delete a cell in cache identified by coordinate address + * + * @param string $pCoord Coordinate address of the cell to delete + * @throws PHPExcel_Exception + */ + public function deleteCacheData($pCoord) + { + if ($pCoord === $this->currentObjectID) { + $this->currentObject->detach(); + $this->currentObjectID = $this->currentObject = null; + } + + // Check if the requested entry exists in the cache + $query = "DELETE FROM kvp_".$this->TableName." WHERE id='".$pCoord."'"; + if (!$this->DBHandle->queryExec($query)) { + throw new PHPExcel_Exception(sqlite_error_string($this->DBHandle->lastError())); + } + + $this->currentCellIsDirty = false; + } + + /** + * Move a cell object from one address to another + * + * @param string $fromAddress Current address of the cell to move + * @param string $toAddress Destination address of the cell to move + * @return boolean + */ + public function moveCell($fromAddress, $toAddress) + { + if ($fromAddress === $this->currentObjectID) { + $this->currentObjectID = $toAddress; + } + + $query = "DELETE FROM kvp_".$this->TableName." WHERE id='".$toAddress."'"; + $result = $this->DBHandle->exec($query); + if ($result === false) { + throw new PHPExcel_Exception($this->DBHandle->lastErrorMsg()); + } + + $query = "UPDATE kvp_".$this->TableName." SET id='".$toAddress."' WHERE id='".$fromAddress."'"; + $result = $this->DBHandle->exec($query); + if ($result === false) { + throw new PHPExcel_Exception($this->DBHandle->lastErrorMsg()); + } + + return true; + } + + /** + * Get a list of all cell addresses currently held in cache + * + * @return string[] + */ + public function getCellList() + { + if ($this->currentObjectID !== null) { + $this->storeData(); + } + + $query = "SELECT id FROM kvp_".$this->TableName; + $cellIdsResult = $this->DBHandle->unbufferedQuery($query, SQLITE_ASSOC); + if ($cellIdsResult === false) { + throw new PHPExcel_Exception(sqlite_error_string($this->DBHandle->lastError())); + } + + $cellKeys = array(); + foreach ($cellIdsResult as $row) { + $cellKeys[] = $row['id']; + } + + return $cellKeys; + } + + /** + * Clone the cell collection + * + * @param PHPExcel_Worksheet $parent The new worksheet + * @return void + */ + public function copyCellCollection(PHPExcel_Worksheet $parent) + { + $this->currentCellIsDirty; + $this->storeData(); + + // Get a new id for the new table name + $tableName = str_replace('.', '_', $this->getUniqueID()); + if (!$this->DBHandle->queryExec('CREATE TABLE kvp_'.$tableName.' (id VARCHAR(12) PRIMARY KEY, value BLOB) + AS SELECT * FROM kvp_'.$this->TableName) + ) { + throw new PHPExcel_Exception(sqlite_error_string($this->DBHandle->lastError())); + } + + // Copy the existing cell cache file + $this->TableName = $tableName; + } + + /** + * Clear the cell collection and disconnect from our parent + * + * @return void + */ + public function unsetWorksheetCells() + { + if (!is_null($this->currentObject)) { + $this->currentObject->detach(); + $this->currentObject = $this->currentObjectID = null; + } + // detach ourself from the worksheet, so that it can then delete this object successfully + $this->parent = null; + + // Close down the temporary cache file + $this->__destruct(); + } + + /** + * Initialise this new cell collection + * + * @param PHPExcel_Worksheet $parent The worksheet for this cell collection + */ + public function __construct(PHPExcel_Worksheet $parent) + { + parent::__construct($parent); + if (is_null($this->DBHandle)) { + $this->TableName = str_replace('.', '_', $this->getUniqueID()); + $_DBName = ':memory:'; + + $this->DBHandle = new SQLiteDatabase($_DBName); + if ($this->DBHandle === false) { + throw new PHPExcel_Exception(sqlite_error_string($this->DBHandle->lastError())); + } + if (!$this->DBHandle->queryExec('CREATE TABLE kvp_'.$this->TableName.' (id VARCHAR(12) PRIMARY KEY, value BLOB)')) { + throw new PHPExcel_Exception(sqlite_error_string($this->DBHandle->lastError())); + } + } + } + + /** + * Destroy this cell collection + */ + public function __destruct() + { + if (!is_null($this->DBHandle)) { + $this->DBHandle->queryExec('DROP TABLE kvp_'.$this->TableName); + } + $this->DBHandle = null; + } + + /** + * Identify whether the caching method is currently available + * Some methods are dependent on the availability of certain extensions being enabled in the PHP build + * + * @return boolean + */ + public static function cacheMethodIsAvailable() + { + if (!function_exists('sqlite_open')) { + return false; + } + + return true; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite3.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite3.php new file mode 100644 index 0000000..27473d6 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite3.php @@ -0,0 +1,346 @@ +currentCellIsDirty && !empty($this->currentObjectID)) { + $this->currentObject->detach(); + + $this->insertQuery->bindValue('id', $this->currentObjectID, SQLITE3_TEXT); + $this->insertQuery->bindValue('data', serialize($this->currentObject), SQLITE3_BLOB); + $result = $this->insertQuery->execute(); + if ($result === false) { + throw new PHPExcel_Exception($this->DBHandle->lastErrorMsg()); + } + $this->currentCellIsDirty = false; + } + $this->currentObjectID = $this->currentObject = null; + } + + /** + * Add or Update a cell in cache identified by coordinate address + * + * @param string $pCoord Coordinate address of the cell to update + * @param PHPExcel_Cell $cell Cell to update + * @return PHPExcel_Cell + * @throws PHPExcel_Exception + */ + public function addCacheData($pCoord, PHPExcel_Cell $cell) + { + if (($pCoord !== $this->currentObjectID) && ($this->currentObjectID !== null)) { + $this->storeData(); + } + + $this->currentObjectID = $pCoord; + $this->currentObject = $cell; + $this->currentCellIsDirty = true; + + return $cell; + } + + /** + * Get cell at a specific coordinate + * + * @param string $pCoord Coordinate of the cell + * @throws PHPExcel_Exception + * @return PHPExcel_Cell Cell that was found, or null if not found + */ + public function getCacheData($pCoord) + { + if ($pCoord === $this->currentObjectID) { + return $this->currentObject; + } + $this->storeData(); + + $this->selectQuery->bindValue('id', $pCoord, SQLITE3_TEXT); + $cellResult = $this->selectQuery->execute(); + if ($cellResult === false) { + throw new PHPExcel_Exception($this->DBHandle->lastErrorMsg()); + } + $cellData = $cellResult->fetchArray(SQLITE3_ASSOC); + if ($cellData === false) { + // Return null if requested entry doesn't exist in cache + return null; + } + + // Set current entry to the requested entry + $this->currentObjectID = $pCoord; + + $this->currentObject = unserialize($cellData['value']); + // Re-attach this as the cell's parent + $this->currentObject->attach($this); + + // Return requested entry + return $this->currentObject; + } + + /** + * Is a value set for an indexed cell? + * + * @param string $pCoord Coordinate address of the cell to check + * @return boolean + */ + public function isDataSet($pCoord) + { + if ($pCoord === $this->currentObjectID) { + return true; + } + + // Check if the requested entry exists in the cache + $this->selectQuery->bindValue('id', $pCoord, SQLITE3_TEXT); + $cellResult = $this->selectQuery->execute(); + if ($cellResult === false) { + throw new PHPExcel_Exception($this->DBHandle->lastErrorMsg()); + } + $cellData = $cellResult->fetchArray(SQLITE3_ASSOC); + + return ($cellData === false) ? false : true; + } + + /** + * Delete a cell in cache identified by coordinate address + * + * @param string $pCoord Coordinate address of the cell to delete + * @throws PHPExcel_Exception + */ + public function deleteCacheData($pCoord) + { + if ($pCoord === $this->currentObjectID) { + $this->currentObject->detach(); + $this->currentObjectID = $this->currentObject = null; + } + + // Check if the requested entry exists in the cache + $this->deleteQuery->bindValue('id', $pCoord, SQLITE3_TEXT); + $result = $this->deleteQuery->execute(); + if ($result === false) { + throw new PHPExcel_Exception($this->DBHandle->lastErrorMsg()); + } + + $this->currentCellIsDirty = false; + } + + /** + * Move a cell object from one address to another + * + * @param string $fromAddress Current address of the cell to move + * @param string $toAddress Destination address of the cell to move + * @return boolean + */ + public function moveCell($fromAddress, $toAddress) + { + if ($fromAddress === $this->currentObjectID) { + $this->currentObjectID = $toAddress; + } + + $this->deleteQuery->bindValue('id', $toAddress, SQLITE3_TEXT); + $result = $this->deleteQuery->execute(); + if ($result === false) { + throw new PHPExcel_Exception($this->DBHandle->lastErrorMsg()); + } + + $this->updateQuery->bindValue('toid', $toAddress, SQLITE3_TEXT); + $this->updateQuery->bindValue('fromid', $fromAddress, SQLITE3_TEXT); + $result = $this->updateQuery->execute(); + if ($result === false) { + throw new PHPExcel_Exception($this->DBHandle->lastErrorMsg()); + } + + return true; + } + + /** + * Get a list of all cell addresses currently held in cache + * + * @return string[] + */ + public function getCellList() + { + if ($this->currentObjectID !== null) { + $this->storeData(); + } + + $query = "SELECT id FROM kvp_".$this->TableName; + $cellIdsResult = $this->DBHandle->query($query); + if ($cellIdsResult === false) { + throw new PHPExcel_Exception($this->DBHandle->lastErrorMsg()); + } + + $cellKeys = array(); + while ($row = $cellIdsResult->fetchArray(SQLITE3_ASSOC)) { + $cellKeys[] = $row['id']; + } + + return $cellKeys; + } + + /** + * Clone the cell collection + * + * @param PHPExcel_Worksheet $parent The new worksheet + * @return void + */ + public function copyCellCollection(PHPExcel_Worksheet $parent) + { + $this->currentCellIsDirty; + $this->storeData(); + + // Get a new id for the new table name + $tableName = str_replace('.', '_', $this->getUniqueID()); + if (!$this->DBHandle->exec('CREATE TABLE kvp_'.$tableName.' (id VARCHAR(12) PRIMARY KEY, value BLOB) + AS SELECT * FROM kvp_'.$this->TableName) + ) { + throw new PHPExcel_Exception($this->DBHandle->lastErrorMsg()); + } + + // Copy the existing cell cache file + $this->TableName = $tableName; + } + + /** + * Clear the cell collection and disconnect from our parent + * + * @return void + */ + public function unsetWorksheetCells() + { + if (!is_null($this->currentObject)) { + $this->currentObject->detach(); + $this->currentObject = $this->currentObjectID = null; + } + // detach ourself from the worksheet, so that it can then delete this object successfully + $this->parent = null; + + // Close down the temporary cache file + $this->__destruct(); + } + + /** + * Initialise this new cell collection + * + * @param PHPExcel_Worksheet $parent The worksheet for this cell collection + */ + public function __construct(PHPExcel_Worksheet $parent) + { + parent::__construct($parent); + if (is_null($this->DBHandle)) { + $this->TableName = str_replace('.', '_', $this->getUniqueID()); + $_DBName = ':memory:'; + + $this->DBHandle = new SQLite3($_DBName); + if ($this->DBHandle === false) { + throw new PHPExcel_Exception($this->DBHandle->lastErrorMsg()); + } + if (!$this->DBHandle->exec('CREATE TABLE kvp_'.$this->TableName.' (id VARCHAR(12) PRIMARY KEY, value BLOB)')) { + throw new PHPExcel_Exception($this->DBHandle->lastErrorMsg()); + } + } + + $this->selectQuery = $this->DBHandle->prepare("SELECT value FROM kvp_".$this->TableName." WHERE id = :id"); + $this->insertQuery = $this->DBHandle->prepare("INSERT OR REPLACE INTO kvp_".$this->TableName." VALUES(:id,:data)"); + $this->updateQuery = $this->DBHandle->prepare("UPDATE kvp_".$this->TableName." SET id=:toId WHERE id=:fromId"); + $this->deleteQuery = $this->DBHandle->prepare("DELETE FROM kvp_".$this->TableName." WHERE id = :id"); + } + + /** + * Destroy this cell collection + */ + public function __destruct() + { + if (!is_null($this->DBHandle)) { + $this->DBHandle->exec('DROP TABLE kvp_'.$this->TableName); + $this->DBHandle->close(); + } + $this->DBHandle = null; + } + + /** + * Identify whether the caching method is currently available + * Some methods are dependent on the availability of certain extensions being enabled in the PHP build + * + * @return boolean + */ + public static function cacheMethodIsAvailable() + { + if (!class_exists('SQLite3', false)) { + return false; + } + + return true; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Wincache.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Wincache.php new file mode 100644 index 0000000..1567874 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Wincache.php @@ -0,0 +1,289 @@ +currentCellIsDirty && !empty($this->currentObjectID)) { + $this->currentObject->detach(); + + $obj = serialize($this->currentObject); + if (wincache_ucache_exists($this->cachePrefix.$this->currentObjectID.'.cache')) { + if (!wincache_ucache_set($this->cachePrefix.$this->currentObjectID.'.cache', $obj, $this->cacheTime)) { + $this->__destruct(); + throw new PHPExcel_Exception('Failed to store cell '.$this->currentObjectID.' in WinCache'); + } + } else { + if (!wincache_ucache_add($this->cachePrefix.$this->currentObjectID.'.cache', $obj, $this->cacheTime)) { + $this->__destruct(); + throw new PHPExcel_Exception('Failed to store cell '.$this->currentObjectID.' in WinCache'); + } + } + $this->currentCellIsDirty = false; + } + + $this->currentObjectID = $this->currentObject = null; + } + + /** + * Add or Update a cell in cache identified by coordinate address + * + * @param string $pCoord Coordinate address of the cell to update + * @param PHPExcel_Cell $cell Cell to update + * @return PHPExcel_Cell + * @throws PHPExcel_Exception + */ + public function addCacheData($pCoord, PHPExcel_Cell $cell) + { + if (($pCoord !== $this->currentObjectID) && ($this->currentObjectID !== null)) { + $this->storeData(); + } + $this->cellCache[$pCoord] = true; + + $this->currentObjectID = $pCoord; + $this->currentObject = $cell; + $this->currentCellIsDirty = true; + + return $cell; + } + + /** + * Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell? + * + * @param string $pCoord Coordinate address of the cell to check + * @return boolean + */ + public function isDataSet($pCoord) + { + // Check if the requested entry is the current object, or exists in the cache + if (parent::isDataSet($pCoord)) { + if ($this->currentObjectID == $pCoord) { + return true; + } + // Check if the requested entry still exists in cache + $success = wincache_ucache_exists($this->cachePrefix.$pCoord.'.cache'); + if ($success === false) { + // Entry no longer exists in Wincache, so clear it from the cache array + parent::deleteCacheData($pCoord); + throw new PHPExcel_Exception('Cell entry '.$pCoord.' no longer exists in WinCache'); + } + return true; + } + return false; + } + + + /** + * Get cell at a specific coordinate + * + * @param string $pCoord Coordinate of the cell + * @throws PHPExcel_Exception + * @return PHPExcel_Cell Cell that was found, or null if not found + */ + public function getCacheData($pCoord) + { + if ($pCoord === $this->currentObjectID) { + return $this->currentObject; + } + $this->storeData(); + + // Check if the entry that has been requested actually exists + $obj = null; + if (parent::isDataSet($pCoord)) { + $success = false; + $obj = wincache_ucache_get($this->cachePrefix.$pCoord.'.cache', $success); + if ($success === false) { + // Entry no longer exists in WinCache, so clear it from the cache array + parent::deleteCacheData($pCoord); + throw new PHPExcel_Exception('Cell entry '.$pCoord.' no longer exists in WinCache'); + } + } else { + // Return null if requested entry doesn't exist in cache + return null; + } + + // Set current entry to the requested entry + $this->currentObjectID = $pCoord; + $this->currentObject = unserialize($obj); + // Re-attach this as the cell's parent + $this->currentObject->attach($this); + + // Return requested entry + return $this->currentObject; + } + + + /** + * Get a list of all cell addresses currently held in cache + * + * @return string[] + */ + public function getCellList() + { + if ($this->currentObjectID !== null) { + $this->storeData(); + } + + return parent::getCellList(); + } + + /** + * Delete a cell in cache identified by coordinate address + * + * @param string $pCoord Coordinate address of the cell to delete + * @throws PHPExcel_Exception + */ + public function deleteCacheData($pCoord) + { + // Delete the entry from Wincache + wincache_ucache_delete($this->cachePrefix.$pCoord.'.cache'); + + // Delete the entry from our cell address array + parent::deleteCacheData($pCoord); + } + + /** + * Clone the cell collection + * + * @param PHPExcel_Worksheet $parent The new worksheet + * @return void + */ + public function copyCellCollection(PHPExcel_Worksheet $parent) + { + parent::copyCellCollection($parent); + // Get a new id for the new file name + $baseUnique = $this->getUniqueID(); + $newCachePrefix = substr(md5($baseUnique), 0, 8) . '.'; + $cacheList = $this->getCellList(); + foreach ($cacheList as $cellID) { + if ($cellID != $this->currentObjectID) { + $success = false; + $obj = wincache_ucache_get($this->cachePrefix.$cellID.'.cache', $success); + if ($success === false) { + // Entry no longer exists in WinCache, so clear it from the cache array + parent::deleteCacheData($cellID); + throw new PHPExcel_Exception('Cell entry '.$cellID.' no longer exists in Wincache'); + } + if (!wincache_ucache_add($newCachePrefix.$cellID.'.cache', $obj, $this->cacheTime)) { + $this->__destruct(); + throw new PHPExcel_Exception('Failed to store cell '.$cellID.' in Wincache'); + } + } + } + $this->cachePrefix = $newCachePrefix; + } + + + /** + * Clear the cell collection and disconnect from our parent + * + * @return void + */ + public function unsetWorksheetCells() + { + if (!is_null($this->currentObject)) { + $this->currentObject->detach(); + $this->currentObject = $this->currentObjectID = null; + } + + // Flush the WinCache cache + $this->__destruct(); + + $this->cellCache = array(); + + // detach ourself from the worksheet, so that it can then delete this object successfully + $this->parent = null; + } + + /** + * Initialise this new cell collection + * + * @param PHPExcel_Worksheet $parent The worksheet for this cell collection + * @param array of mixed $arguments Additional initialisation arguments + */ + public function __construct(PHPExcel_Worksheet $parent, $arguments) + { + $cacheTime = (isset($arguments['cacheTime'])) ? $arguments['cacheTime'] : 600; + + if (is_null($this->cachePrefix)) { + $baseUnique = $this->getUniqueID(); + $this->cachePrefix = substr(md5($baseUnique), 0, 8).'.'; + $this->cacheTime = $cacheTime; + + parent::__construct($parent); + } + } + + /** + * Destroy this cell collection + */ + public function __destruct() + { + $cacheList = $this->getCellList(); + foreach ($cacheList as $cellID) { + wincache_ucache_delete($this->cachePrefix.$cellID.'.cache'); + } + } + + /** + * Identify whether the caching method is currently available + * Some methods are dependent on the availability of certain extensions being enabled in the PHP build + * + * @return boolean + */ + public static function cacheMethodIsAvailable() + { + if (!function_exists('wincache_ucache_add')) { + return false; + } + + return true; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorageFactory.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorageFactory.php new file mode 100644 index 0000000..0a96978 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorageFactory.php @@ -0,0 +1,231 @@ + array( + ), + self::cache_in_memory_gzip => array( + ), + self::cache_in_memory_serialized => array( + ), + self::cache_igbinary => array( + ), + self::cache_to_phpTemp => array( 'memoryCacheSize' => '1MB' + ), + self::cache_to_discISAM => array( 'dir' => null + ), + self::cache_to_apc => array( 'cacheTime' => 600 + ), + self::cache_to_memcache => array( 'memcacheServer' => 'localhost', + 'memcachePort' => 11211, + 'cacheTime' => 600 + ), + self::cache_to_wincache => array( 'cacheTime' => 600 + ), + self::cache_to_sqlite => array( + ), + self::cache_to_sqlite3 => array( + ), + ); + + /** + * Arguments for the active cache storage method + * + * @var array of mixed array + */ + private static $storageMethodParameters = array(); + + /** + * Return the current cache storage method + * + * @return string|null + **/ + public static function getCacheStorageMethod() + { + return self::$cacheStorageMethod; + } + + /** + * Return the current cache storage class + * + * @return PHPExcel_CachedObjectStorage_ICache|null + **/ + public static function getCacheStorageClass() + { + return self::$cacheStorageClass; + } + + /** + * Return the list of all possible cache storage methods + * + * @return string[] + **/ + public static function getAllCacheStorageMethods() + { + return self::$storageMethods; + } + + /** + * Return the list of all available cache storage methods + * + * @return string[] + **/ + public static function getCacheStorageMethods() + { + $activeMethods = array(); + foreach (self::$storageMethods as $storageMethod) { + $cacheStorageClass = 'PHPExcel_CachedObjectStorage_' . $storageMethod; + if (call_user_func(array($cacheStorageClass, 'cacheMethodIsAvailable'))) { + $activeMethods[] = $storageMethod; + } + } + return $activeMethods; + } + + /** + * Identify the cache storage method to use + * + * @param string $method Name of the method to use for cell cacheing + * @param array of mixed $arguments Additional arguments to pass to the cell caching class + * when instantiating + * @return boolean + **/ + public static function initialize($method = self::cache_in_memory, $arguments = array()) + { + if (!in_array($method, self::$storageMethods)) { + return false; + } + + $cacheStorageClass = 'PHPExcel_CachedObjectStorage_'.$method; + if (!call_user_func(array( $cacheStorageClass, + 'cacheMethodIsAvailable'))) { + return false; + } + + self::$storageMethodParameters[$method] = self::$storageMethodDefaultParameters[$method]; + foreach ($arguments as $k => $v) { + if (array_key_exists($k, self::$storageMethodParameters[$method])) { + self::$storageMethodParameters[$method][$k] = $v; + } + } + + if (self::$cacheStorageMethod === null) { + self::$cacheStorageClass = 'PHPExcel_CachedObjectStorage_' . $method; + self::$cacheStorageMethod = $method; + } + return true; + } + + /** + * Initialise the cache storage + * + * @param PHPExcel_Worksheet $parent Enable cell caching for this worksheet + * @return PHPExcel_CachedObjectStorage_ICache + **/ + public static function getInstance(PHPExcel_Worksheet $parent) + { + $cacheMethodIsAvailable = true; + if (self::$cacheStorageMethod === null) { + $cacheMethodIsAvailable = self::initialize(); + } + + if ($cacheMethodIsAvailable) { + $instance = new self::$cacheStorageClass( + $parent, + self::$storageMethodParameters[self::$cacheStorageMethod] + ); + if ($instance !== null) { + return $instance; + } + } + + return false; + } + + /** + * Clear the cache storage + * + **/ + public static function finalize() + { + self::$cacheStorageMethod = null; + self::$cacheStorageClass = null; + self::$storageMethodParameters = array(); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine/CyclicReferenceStack.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine/CyclicReferenceStack.php new file mode 100644 index 0000000..1072fc7 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine/CyclicReferenceStack.php @@ -0,0 +1,94 @@ +stack); + } + + /** + * Push a new entry onto the stack + * + * @param mixed $value + */ + public function push($value) + { + $this->stack[$value] = $value; + } + + /** + * Pop the last entry from the stack + * + * @return mixed + */ + public function pop() + { + return array_pop($this->stack); + } + + /** + * Test to see if a specified entry exists on the stack + * + * @param mixed $value The value to test + */ + public function onStack($value) + { + return isset($this->stack[$value]); + } + + /** + * Clear the stack + */ + public function clear() + { + $this->stack = array(); + } + + /** + * Return an array of all entries on the stack + * + * @return mixed[] + */ + public function showStack() + { + return $this->stack; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine/Logger.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine/Logger.php new file mode 100644 index 0000000..c5ffe73 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine/Logger.php @@ -0,0 +1,151 @@ +cellStack = $stack; + } + + /** + * Enable/Disable Calculation engine logging + * + * @param boolean $pValue + */ + public function setWriteDebugLog($pValue = false) + { + $this->writeDebugLog = $pValue; + } + + /** + * Return whether calculation engine logging is enabled or disabled + * + * @return boolean + */ + public function getWriteDebugLog() + { + return $this->writeDebugLog; + } + + /** + * Enable/Disable echoing of debug log information + * + * @param boolean $pValue + */ + public function setEchoDebugLog($pValue = false) + { + $this->echoDebugLog = $pValue; + } + + /** + * Return whether echoing of debug log information is enabled or disabled + * + * @return boolean + */ + public function getEchoDebugLog() + { + return $this->echoDebugLog; + } + + /** + * Write an entry to the calculation engine debug log + */ + public function writeDebugLog() + { + // Only write the debug log if logging is enabled + if ($this->writeDebugLog) { + $message = implode(func_get_args()); + $cellReference = implode(' -> ', $this->cellStack->showStack()); + if ($this->echoDebugLog) { + echo $cellReference, + ($this->cellStack->count() > 0 ? ' => ' : ''), + $message, + PHP_EOL; + } + $this->debugLog[] = $cellReference . + ($this->cellStack->count() > 0 ? ' => ' : '') . + $message; + } + } + + /** + * Clear the calculation engine debug log + */ + public function clearLog() + { + $this->debugLog = array(); + } + + /** + * Return the calculation engine debug log + * + * @return string[] + */ + public function getLog() + { + return $this->debugLog; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php new file mode 100644 index 0000000..20b1ec3 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php @@ -0,0 +1,4391 @@ +=-]*)|(\'[^\']*\')|(\"[^\"]*\"))!)?\$?([a-z]{1,3})\$?(\d{1,7})'); + // Named Range of cells + define('CALCULATION_REGEXP_NAMEDRANGE', '((([^\s,!&%^\/\*\+<>=-]*)|(\'[^\']*\')|(\"[^\"]*\"))!)?([_A-Z][_A-Z0-9\.]*)'); + } else { + // Cell reference (cell or range of cells, with or without a sheet reference) + define('CALCULATION_REGEXP_CELLREF', '(((\w*)|(\'[^\']*\')|(\"[^\"]*\"))!)?\$?([a-z]{1,3})\$?(\d+)'); + // Named Range of cells + define('CALCULATION_REGEXP_NAMEDRANGE', '(((\w*)|(\'.*\')|(\".*\"))!)?([_A-Z][_A-Z0-9\.]*)'); + } +} + +/** + * PHPExcel_Calculation (Multiton) + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Calculation + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Calculation +{ + /** Constants */ + /** Regular Expressions */ + // Numeric operand + const CALCULATION_REGEXP_NUMBER = '[-+]?\d*\.?\d+(e[-+]?\d+)?'; + // String operand + const CALCULATION_REGEXP_STRING = '"(?:[^"]|"")*"'; + // Opening bracket + const CALCULATION_REGEXP_OPENBRACE = '\('; + // Function (allow for the old @ symbol that could be used to prefix a function, but we'll ignore it) + const CALCULATION_REGEXP_FUNCTION = '@?([A-Z][A-Z0-9\.]*)[\s]*\('; + // Cell reference (cell or range of cells, with or without a sheet reference) + const CALCULATION_REGEXP_CELLREF = CALCULATION_REGEXP_CELLREF; + // Named Range of cells + const CALCULATION_REGEXP_NAMEDRANGE = CALCULATION_REGEXP_NAMEDRANGE; + // Error + const CALCULATION_REGEXP_ERROR = '\#[A-Z][A-Z0_\/]*[!\?]?'; + + + /** constants */ + const RETURN_ARRAY_AS_ERROR = 'error'; + const RETURN_ARRAY_AS_VALUE = 'value'; + const RETURN_ARRAY_AS_ARRAY = 'array'; + + private static $returnArrayAsType = self::RETURN_ARRAY_AS_VALUE; + + + /** + * Instance of this class + * + * @access private + * @var PHPExcel_Calculation + */ + private static $instance; + + + /** + * Instance of the workbook this Calculation Engine is using + * + * @access private + * @var PHPExcel + */ + private $workbook; + + /** + * List of instances of the calculation engine that we've instantiated for individual workbooks + * + * @access private + * @var PHPExcel_Calculation[] + */ + private static $workbookSets; + + /** + * Calculation cache + * + * @access private + * @var array + */ + private $calculationCache = array (); + + + /** + * Calculation cache enabled + * + * @access private + * @var boolean + */ + private $calculationCacheEnabled = true; + + + /** + * List of operators that can be used within formulae + * The true/false value indicates whether it is a binary operator or a unary operator + * + * @access private + * @var array + */ + private static $operators = array( + '+' => true, '-' => true, '*' => true, '/' => true, + '^' => true, '&' => true, '%' => false, '~' => false, + '>' => true, '<' => true, '=' => true, '>=' => true, + '<=' => true, '<>' => true, '|' => true, ':' => true + ); + + /** + * List of binary operators (those that expect two operands) + * + * @access private + * @var array + */ + private static $binaryOperators = array( + '+' => true, '-' => true, '*' => true, '/' => true, + '^' => true, '&' => true, '>' => true, '<' => true, + '=' => true, '>=' => true, '<=' => true, '<>' => true, + '|' => true, ':' => true + ); + + /** + * The debug log generated by the calculation engine + * + * @access private + * @var PHPExcel_CalcEngine_Logger + * + */ + private $debugLog; + + /** + * Flag to determine how formula errors should be handled + * If true, then a user error will be triggered + * If false, then an exception will be thrown + * + * @access public + * @var boolean + * + */ + public $suppressFormulaErrors = false; + + /** + * Error message for any error that was raised/thrown by the calculation engine + * + * @access public + * @var string + * + */ + public $formulaError = null; + + /** + * An array of the nested cell references accessed by the calculation engine, used for the debug log + * + * @access private + * @var array of string + * + */ + private $cyclicReferenceStack; + + private $cellStack = array(); + + /** + * Current iteration counter for cyclic formulae + * If the value is 0 (or less) then cyclic formulae will throw an exception, + * otherwise they will iterate to the limit defined here before returning a result + * + * @var integer + * + */ + private $cyclicFormulaCounter = 1; + + private $cyclicFormulaCell = ''; + + /** + * Number of iterations for cyclic formulae + * + * @var integer + * + */ + public $cyclicFormulaCount = 1; + + /** + * Epsilon Precision used for comparisons in calculations + * + * @var float + * + */ + private $delta = 0.1e-12; + + + /** + * The current locale setting + * + * @var string + * + */ + private static $localeLanguage = 'en_us'; // US English (default locale) + + /** + * List of available locale settings + * Note that this is read for the locale subdirectory only when requested + * + * @var string[] + * + */ + private static $validLocaleLanguages = array( + 'en' // English (default language) + ); + + /** + * Locale-specific argument separator for function arguments + * + * @var string + * + */ + private static $localeArgumentSeparator = ','; + private static $localeFunctions = array(); + + /** + * Locale-specific translations for Excel constants (True, False and Null) + * + * @var string[] + * + */ + public static $localeBoolean = array( + 'TRUE' => 'TRUE', + 'FALSE' => 'FALSE', + 'NULL' => 'NULL' + ); + + /** + * Excel constant string translations to their PHP equivalents + * Constant conversion from text name/value to actual (datatyped) value + * + * @var string[] + * + */ + private static $excelConstants = array( + 'TRUE' => true, + 'FALSE' => false, + 'NULL' => null + ); + + // PHPExcel functions + private static $PHPExcelFunctions = array( + 'ABS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'abs', + 'argumentCount' => '1' + ), + 'ACCRINT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::ACCRINT', + 'argumentCount' => '4-7' + ), + 'ACCRINTM' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::ACCRINTM', + 'argumentCount' => '3-5' + ), + 'ACOS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'acos', + 'argumentCount' => '1' + ), + 'ACOSH' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'acosh', + 'argumentCount' => '1' + ), + 'ADDRESS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_LookupRef::CELL_ADDRESS', + 'argumentCount' => '2-5' + ), + 'AMORDEGRC' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::AMORDEGRC', + 'argumentCount' => '6,7' + ), + 'AMORLINC' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::AMORLINC', + 'argumentCount' => '6,7' + ), + 'AND' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOGICAL, + 'functionCall' => 'PHPExcel_Calculation_Logical::LOGICAL_AND', + 'argumentCount' => '1+' + ), + 'AREAS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '1' + ), + 'ASC' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '1' + ), + 'ASIN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'asin', + 'argumentCount' => '1' + ), + 'ASINH' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'asinh', + 'argumentCount' => '1' + ), + 'ATAN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'atan', + 'argumentCount' => '1' + ), + 'ATAN2' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::ATAN2', + 'argumentCount' => '2' + ), + 'ATANH' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'atanh', + 'argumentCount' => '1' + ), + 'AVEDEV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::AVEDEV', + 'argumentCount' => '1+' + ), + 'AVERAGE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::AVERAGE', + 'argumentCount' => '1+' + ), + 'AVERAGEA' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::AVERAGEA', + 'argumentCount' => '1+' + ), + 'AVERAGEIF' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::AVERAGEIF', + 'argumentCount' => '2,3' + ), + 'AVERAGEIFS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '3+' + ), + 'BAHTTEXT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '1' + ), + 'BESSELI' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::BESSELI', + 'argumentCount' => '2' + ), + 'BESSELJ' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::BESSELJ', + 'argumentCount' => '2' + ), + 'BESSELK' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::BESSELK', + 'argumentCount' => '2' + ), + 'BESSELY' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::BESSELY', + 'argumentCount' => '2' + ), + 'BETADIST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::BETADIST', + 'argumentCount' => '3-5' + ), + 'BETAINV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::BETAINV', + 'argumentCount' => '3-5' + ), + 'BIN2DEC' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::BINTODEC', + 'argumentCount' => '1' + ), + 'BIN2HEX' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::BINTOHEX', + 'argumentCount' => '1,2' + ), + 'BIN2OCT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::BINTOOCT', + 'argumentCount' => '1,2' + ), + 'BINOMDIST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::BINOMDIST', + 'argumentCount' => '4' + ), + 'CEILING' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::CEILING', + 'argumentCount' => '2' + ), + 'CELL' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '1,2' + ), + 'CHAR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::CHARACTER', + 'argumentCount' => '1' + ), + 'CHIDIST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::CHIDIST', + 'argumentCount' => '2' + ), + 'CHIINV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::CHIINV', + 'argumentCount' => '2' + ), + 'CHITEST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '2' + ), + 'CHOOSE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_LookupRef::CHOOSE', + 'argumentCount' => '2+' + ), + 'CLEAN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::TRIMNONPRINTABLE', + 'argumentCount' => '1' + ), + 'CODE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::ASCIICODE', + 'argumentCount' => '1' + ), + 'COLUMN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_LookupRef::COLUMN', + 'argumentCount' => '-1', + 'passByReference' => array(true) + ), + 'COLUMNS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_LookupRef::COLUMNS', + 'argumentCount' => '1' + ), + 'COMBIN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::COMBIN', + 'argumentCount' => '2' + ), + 'COMPLEX' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::COMPLEX', + 'argumentCount' => '2,3' + ), + 'CONCATENATE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::CONCATENATE', + 'argumentCount' => '1+' + ), + 'CONFIDENCE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::CONFIDENCE', + 'argumentCount' => '3' + ), + 'CONVERT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::CONVERTUOM', + 'argumentCount' => '3' + ), + 'CORREL' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::CORREL', + 'argumentCount' => '2' + ), + 'COS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'cos', + 'argumentCount' => '1' + ), + 'COSH' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'cosh', + 'argumentCount' => '1' + ), + 'COUNT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::COUNT', + 'argumentCount' => '1+' + ), + 'COUNTA' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::COUNTA', + 'argumentCount' => '1+' + ), + 'COUNTBLANK' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::COUNTBLANK', + 'argumentCount' => '1' + ), + 'COUNTIF' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::COUNTIF', + 'argumentCount' => '2' + ), + 'COUNTIFS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '2' + ), + 'COUPDAYBS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::COUPDAYBS', + 'argumentCount' => '3,4' + ), + 'COUPDAYS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::COUPDAYS', + 'argumentCount' => '3,4' + ), + 'COUPDAYSNC' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::COUPDAYSNC', + 'argumentCount' => '3,4' + ), + 'COUPNCD' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::COUPNCD', + 'argumentCount' => '3,4' + ), + 'COUPNUM' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::COUPNUM', + 'argumentCount' => '3,4' + ), + 'COUPPCD' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::COUPPCD', + 'argumentCount' => '3,4' + ), + 'COVAR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::COVAR', + 'argumentCount' => '2' + ), + 'CRITBINOM' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::CRITBINOM', + 'argumentCount' => '3' + ), + 'CUBEKPIMEMBER' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_CUBE, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '?' + ), + 'CUBEMEMBER' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_CUBE, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '?' + ), + 'CUBEMEMBERPROPERTY' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_CUBE, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '?' + ), + 'CUBERANKEDMEMBER' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_CUBE, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '?' + ), + 'CUBESET' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_CUBE, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '?' + ), + 'CUBESETCOUNT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_CUBE, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '?' + ), + 'CUBEVALUE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_CUBE, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '?' + ), + 'CUMIPMT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::CUMIPMT', + 'argumentCount' => '6' + ), + 'CUMPRINC' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::CUMPRINC', + 'argumentCount' => '6' + ), + 'DATE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::DATE', + 'argumentCount' => '3' + ), + 'DATEDIF' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::DATEDIF', + 'argumentCount' => '2,3' + ), + 'DATEVALUE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::DATEVALUE', + 'argumentCount' => '1' + ), + 'DAVERAGE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATABASE, + 'functionCall' => 'PHPExcel_Calculation_Database::DAVERAGE', + 'argumentCount' => '3' + ), + 'DAY' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::DAYOFMONTH', + 'argumentCount' => '1' + ), + 'DAYS360' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::DAYS360', + 'argumentCount' => '2,3' + ), + 'DB' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::DB', + 'argumentCount' => '4,5' + ), + 'DCOUNT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATABASE, + 'functionCall' => 'PHPExcel_Calculation_Database::DCOUNT', + 'argumentCount' => '3' + ), + 'DCOUNTA' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATABASE, + 'functionCall' => 'PHPExcel_Calculation_Database::DCOUNTA', + 'argumentCount' => '3' + ), + 'DDB' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::DDB', + 'argumentCount' => '4,5' + ), + 'DEC2BIN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::DECTOBIN', + 'argumentCount' => '1,2' + ), + 'DEC2HEX' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::DECTOHEX', + 'argumentCount' => '1,2' + ), + 'DEC2OCT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::DECTOOCT', + 'argumentCount' => '1,2' + ), + 'DEGREES' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'rad2deg', + 'argumentCount' => '1' + ), + 'DELTA' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::DELTA', + 'argumentCount' => '1,2' + ), + 'DEVSQ' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::DEVSQ', + 'argumentCount' => '1+' + ), + 'DGET' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATABASE, + 'functionCall' => 'PHPExcel_Calculation_Database::DGET', + 'argumentCount' => '3' + ), + 'DISC' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::DISC', + 'argumentCount' => '4,5' + ), + 'DMAX' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATABASE, + 'functionCall' => 'PHPExcel_Calculation_Database::DMAX', + 'argumentCount' => '3' + ), + 'DMIN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATABASE, + 'functionCall' => 'PHPExcel_Calculation_Database::DMIN', + 'argumentCount' => '3' + ), + 'DOLLAR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::DOLLAR', + 'argumentCount' => '1,2' + ), + 'DOLLARDE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::DOLLARDE', + 'argumentCount' => '2' + ), + 'DOLLARFR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::DOLLARFR', + 'argumentCount' => '2' + ), + 'DPRODUCT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATABASE, + 'functionCall' => 'PHPExcel_Calculation_Database::DPRODUCT', + 'argumentCount' => '3' + ), + 'DSTDEV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATABASE, + 'functionCall' => 'PHPExcel_Calculation_Database::DSTDEV', + 'argumentCount' => '3' + ), + 'DSTDEVP' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATABASE, + 'functionCall' => 'PHPExcel_Calculation_Database::DSTDEVP', + 'argumentCount' => '3' + ), + 'DSUM' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATABASE, + 'functionCall' => 'PHPExcel_Calculation_Database::DSUM', + 'argumentCount' => '3' + ), + 'DURATION' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '5,6' + ), + 'DVAR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATABASE, + 'functionCall' => 'PHPExcel_Calculation_Database::DVAR', + 'argumentCount' => '3' + ), + 'DVARP' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATABASE, + 'functionCall' => 'PHPExcel_Calculation_Database::DVARP', + 'argumentCount' => '3' + ), + 'EDATE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::EDATE', + 'argumentCount' => '2' + ), + 'EFFECT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::EFFECT', + 'argumentCount' => '2' + ), + 'EOMONTH' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::EOMONTH', + 'argumentCount' => '2' + ), + 'ERF' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::ERF', + 'argumentCount' => '1,2' + ), + 'ERFC' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::ERFC', + 'argumentCount' => '1' + ), + 'ERROR.TYPE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::ERROR_TYPE', + 'argumentCount' => '1' + ), + 'EVEN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::EVEN', + 'argumentCount' => '1' + ), + 'EXACT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '2' + ), + 'EXP' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'exp', + 'argumentCount' => '1' + ), + 'EXPONDIST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::EXPONDIST', + 'argumentCount' => '3' + ), + 'FACT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::FACT', + 'argumentCount' => '1' + ), + 'FACTDOUBLE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::FACTDOUBLE', + 'argumentCount' => '1' + ), + 'FALSE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOGICAL, + 'functionCall' => 'PHPExcel_Calculation_Logical::FALSE', + 'argumentCount' => '0' + ), + 'FDIST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '3' + ), + 'FIND' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::SEARCHSENSITIVE', + 'argumentCount' => '2,3' + ), + 'FINDB' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::SEARCHSENSITIVE', + 'argumentCount' => '2,3' + ), + 'FINV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '3' + ), + 'FISHER' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::FISHER', + 'argumentCount' => '1' + ), + 'FISHERINV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::FISHERINV', + 'argumentCount' => '1' + ), + 'FIXED' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::FIXEDFORMAT', + 'argumentCount' => '1-3' + ), + 'FLOOR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::FLOOR', + 'argumentCount' => '2' + ), + 'FORECAST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::FORECAST', + 'argumentCount' => '3' + ), + 'FREQUENCY' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '2' + ), + 'FTEST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '2' + ), + 'FV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::FV', + 'argumentCount' => '3-5' + ), + 'FVSCHEDULE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::FVSCHEDULE', + 'argumentCount' => '2' + ), + 'GAMMADIST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::GAMMADIST', + 'argumentCount' => '4' + ), + 'GAMMAINV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::GAMMAINV', + 'argumentCount' => '3' + ), + 'GAMMALN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::GAMMALN', + 'argumentCount' => '1' + ), + 'GCD' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::GCD', + 'argumentCount' => '1+' + ), + 'GEOMEAN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::GEOMEAN', + 'argumentCount' => '1+' + ), + 'GESTEP' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::GESTEP', + 'argumentCount' => '1,2' + ), + 'GETPIVOTDATA' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '2+' + ), + 'GROWTH' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::GROWTH', + 'argumentCount' => '1-4' + ), + 'HARMEAN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::HARMEAN', + 'argumentCount' => '1+' + ), + 'HEX2BIN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::HEXTOBIN', + 'argumentCount' => '1,2' + ), + 'HEX2DEC' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::HEXTODEC', + 'argumentCount' => '1' + ), + 'HEX2OCT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::HEXTOOCT', + 'argumentCount' => '1,2' + ), + 'HLOOKUP' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_LookupRef::HLOOKUP', + 'argumentCount' => '3,4' + ), + 'HOUR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::HOUROFDAY', + 'argumentCount' => '1' + ), + 'HYPERLINK' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_LookupRef::HYPERLINK', + 'argumentCount' => '1,2', + 'passCellReference' => true + ), + 'HYPGEOMDIST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::HYPGEOMDIST', + 'argumentCount' => '4' + ), + 'IF' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOGICAL, + 'functionCall' => 'PHPExcel_Calculation_Logical::STATEMENT_IF', + 'argumentCount' => '1-3' + ), + 'IFERROR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOGICAL, + 'functionCall' => 'PHPExcel_Calculation_Logical::IFERROR', + 'argumentCount' => '2' + ), + 'IMABS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMABS', + 'argumentCount' => '1' + ), + 'IMAGINARY' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMAGINARY', + 'argumentCount' => '1' + ), + 'IMARGUMENT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMARGUMENT', + 'argumentCount' => '1' + ), + 'IMCONJUGATE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMCONJUGATE', + 'argumentCount' => '1' + ), + 'IMCOS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMCOS', + 'argumentCount' => '1' + ), + 'IMDIV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMDIV', + 'argumentCount' => '2' + ), + 'IMEXP' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMEXP', + 'argumentCount' => '1' + ), + 'IMLN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMLN', + 'argumentCount' => '1' + ), + 'IMLOG10' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMLOG10', + 'argumentCount' => '1' + ), + 'IMLOG2' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMLOG2', + 'argumentCount' => '1' + ), + 'IMPOWER' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMPOWER', + 'argumentCount' => '2' + ), + 'IMPRODUCT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMPRODUCT', + 'argumentCount' => '1+' + ), + 'IMREAL' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMREAL', + 'argumentCount' => '1' + ), + 'IMSIN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMSIN', + 'argumentCount' => '1' + ), + 'IMSQRT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMSQRT', + 'argumentCount' => '1' + ), + 'IMSUB' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMSUB', + 'argumentCount' => '2' + ), + 'IMSUM' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::IMSUM', + 'argumentCount' => '1+' + ), + 'INDEX' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_LookupRef::INDEX', + 'argumentCount' => '1-4' + ), + 'INDIRECT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_LookupRef::INDIRECT', + 'argumentCount' => '1,2', + 'passCellReference' => true + ), + 'INFO' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '1' + ), + 'INT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::INT', + 'argumentCount' => '1' + ), + 'INTERCEPT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::INTERCEPT', + 'argumentCount' => '2' + ), + 'INTRATE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::INTRATE', + 'argumentCount' => '4,5' + ), + 'IPMT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::IPMT', + 'argumentCount' => '4-6' + ), + 'IRR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::IRR', + 'argumentCount' => '1,2' + ), + 'ISBLANK' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::IS_BLANK', + 'argumentCount' => '1' + ), + 'ISERR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::IS_ERR', + 'argumentCount' => '1' + ), + 'ISERROR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::IS_ERROR', + 'argumentCount' => '1' + ), + 'ISEVEN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::IS_EVEN', + 'argumentCount' => '1' + ), + 'ISLOGICAL' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::IS_LOGICAL', + 'argumentCount' => '1' + ), + 'ISNA' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::IS_NA', + 'argumentCount' => '1' + ), + 'ISNONTEXT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::IS_NONTEXT', + 'argumentCount' => '1' + ), + 'ISNUMBER' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::IS_NUMBER', + 'argumentCount' => '1' + ), + 'ISODD' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::IS_ODD', + 'argumentCount' => '1' + ), + 'ISPMT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::ISPMT', + 'argumentCount' => '4' + ), + 'ISREF' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '1' + ), + 'ISTEXT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::IS_TEXT', + 'argumentCount' => '1' + ), + 'JIS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '1' + ), + 'KURT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::KURT', + 'argumentCount' => '1+' + ), + 'LARGE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::LARGE', + 'argumentCount' => '2' + ), + 'LCM' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::LCM', + 'argumentCount' => '1+' + ), + 'LEFT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::LEFT', + 'argumentCount' => '1,2' + ), + 'LEFTB' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::LEFT', + 'argumentCount' => '1,2' + ), + 'LEN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::STRINGLENGTH', + 'argumentCount' => '1' + ), + 'LENB' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::STRINGLENGTH', + 'argumentCount' => '1' + ), + 'LINEST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::LINEST', + 'argumentCount' => '1-4' + ), + 'LN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'log', + 'argumentCount' => '1' + ), + 'LOG' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::LOG_BASE', + 'argumentCount' => '1,2' + ), + 'LOG10' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'log10', + 'argumentCount' => '1' + ), + 'LOGEST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::LOGEST', + 'argumentCount' => '1-4' + ), + 'LOGINV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::LOGINV', + 'argumentCount' => '3' + ), + 'LOGNORMDIST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::LOGNORMDIST', + 'argumentCount' => '3' + ), + 'LOOKUP' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_LookupRef::LOOKUP', + 'argumentCount' => '2,3' + ), + 'LOWER' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::LOWERCASE', + 'argumentCount' => '1' + ), + 'MATCH' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_LookupRef::MATCH', + 'argumentCount' => '2,3' + ), + 'MAX' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::MAX', + 'argumentCount' => '1+' + ), + 'MAXA' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::MAXA', + 'argumentCount' => '1+' + ), + 'MAXIF' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::MAXIF', + 'argumentCount' => '2+' + ), + 'MDETERM' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::MDETERM', + 'argumentCount' => '1' + ), + 'MDURATION' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '5,6' + ), + 'MEDIAN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::MEDIAN', + 'argumentCount' => '1+' + ), + 'MEDIANIF' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '2+' + ), + 'MID' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::MID', + 'argumentCount' => '3' + ), + 'MIDB' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::MID', + 'argumentCount' => '3' + ), + 'MIN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::MIN', + 'argumentCount' => '1+' + ), + 'MINA' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::MINA', + 'argumentCount' => '1+' + ), + 'MINIF' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::MINIF', + 'argumentCount' => '2+' + ), + 'MINUTE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::MINUTEOFHOUR', + 'argumentCount' => '1' + ), + 'MINVERSE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::MINVERSE', + 'argumentCount' => '1' + ), + 'MIRR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::MIRR', + 'argumentCount' => '3' + ), + 'MMULT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::MMULT', + 'argumentCount' => '2' + ), + 'MOD' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::MOD', + 'argumentCount' => '2' + ), + 'MODE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::MODE', + 'argumentCount' => '1+' + ), + 'MONTH' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::MONTHOFYEAR', + 'argumentCount' => '1' + ), + 'MROUND' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::MROUND', + 'argumentCount' => '2' + ), + 'MULTINOMIAL' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::MULTINOMIAL', + 'argumentCount' => '1+' + ), + 'N' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::N', + 'argumentCount' => '1' + ), + 'NA' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::NA', + 'argumentCount' => '0' + ), + 'NEGBINOMDIST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::NEGBINOMDIST', + 'argumentCount' => '3' + ), + 'NETWORKDAYS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::NETWORKDAYS', + 'argumentCount' => '2+' + ), + 'NOMINAL' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::NOMINAL', + 'argumentCount' => '2' + ), + 'NORMDIST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::NORMDIST', + 'argumentCount' => '4' + ), + 'NORMINV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::NORMINV', + 'argumentCount' => '3' + ), + 'NORMSDIST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::NORMSDIST', + 'argumentCount' => '1' + ), + 'NORMSINV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::NORMSINV', + 'argumentCount' => '1' + ), + 'NOT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOGICAL, + 'functionCall' => 'PHPExcel_Calculation_Logical::NOT', + 'argumentCount' => '1' + ), + 'NOW' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::DATETIMENOW', + 'argumentCount' => '0' + ), + 'NPER' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::NPER', + 'argumentCount' => '3-5' + ), + 'NPV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::NPV', + 'argumentCount' => '2+' + ), + 'OCT2BIN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::OCTTOBIN', + 'argumentCount' => '1,2' + ), + 'OCT2DEC' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::OCTTODEC', + 'argumentCount' => '1' + ), + 'OCT2HEX' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_ENGINEERING, + 'functionCall' => 'PHPExcel_Calculation_Engineering::OCTTOHEX', + 'argumentCount' => '1,2' + ), + 'ODD' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::ODD', + 'argumentCount' => '1' + ), + 'ODDFPRICE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '8,9' + ), + 'ODDFYIELD' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '8,9' + ), + 'ODDLPRICE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '7,8' + ), + 'ODDLYIELD' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '7,8' + ), + 'OFFSET' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_LookupRef::OFFSET', + 'argumentCount' => '3-5', + 'passCellReference' => true, + 'passByReference' => array(true) + ), + 'OR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOGICAL, + 'functionCall' => 'PHPExcel_Calculation_Logical::LOGICAL_OR', + 'argumentCount' => '1+' + ), + 'PEARSON' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::CORREL', + 'argumentCount' => '2' + ), + 'PERCENTILE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::PERCENTILE', + 'argumentCount' => '2' + ), + 'PERCENTRANK' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::PERCENTRANK', + 'argumentCount' => '2,3' + ), + 'PERMUT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::PERMUT', + 'argumentCount' => '2' + ), + 'PHONETIC' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '1' + ), + 'PI' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'pi', + 'argumentCount' => '0' + ), + 'PMT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::PMT', + 'argumentCount' => '3-5' + ), + 'POISSON' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::POISSON', + 'argumentCount' => '3' + ), + 'POWER' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::POWER', + 'argumentCount' => '2' + ), + 'PPMT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::PPMT', + 'argumentCount' => '4-6' + ), + 'PRICE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::PRICE', + 'argumentCount' => '6,7' + ), + 'PRICEDISC' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::PRICEDISC', + 'argumentCount' => '4,5' + ), + 'PRICEMAT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::PRICEMAT', + 'argumentCount' => '5,6' + ), + 'PROB' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '3,4' + ), + 'PRODUCT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::PRODUCT', + 'argumentCount' => '1+' + ), + 'PROPER' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::PROPERCASE', + 'argumentCount' => '1' + ), + 'PV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::PV', + 'argumentCount' => '3-5' + ), + 'QUARTILE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::QUARTILE', + 'argumentCount' => '2' + ), + 'QUOTIENT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::QUOTIENT', + 'argumentCount' => '2' + ), + 'RADIANS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'deg2rad', + 'argumentCount' => '1' + ), + 'RAND' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::RAND', + 'argumentCount' => '0' + ), + 'RANDBETWEEN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::RAND', + 'argumentCount' => '2' + ), + 'RANK' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::RANK', + 'argumentCount' => '2,3' + ), + 'RATE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::RATE', + 'argumentCount' => '3-6' + ), + 'RECEIVED' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::RECEIVED', + 'argumentCount' => '4-5' + ), + 'REPLACE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::REPLACE', + 'argumentCount' => '4' + ), + 'REPLACEB' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::REPLACE', + 'argumentCount' => '4' + ), + 'REPT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'str_repeat', + 'argumentCount' => '2' + ), + 'RIGHT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::RIGHT', + 'argumentCount' => '1,2' + ), + 'RIGHTB' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::RIGHT', + 'argumentCount' => '1,2' + ), + 'ROMAN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::ROMAN', + 'argumentCount' => '1,2' + ), + 'ROUND' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'round', + 'argumentCount' => '2' + ), + 'ROUNDDOWN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::ROUNDDOWN', + 'argumentCount' => '2' + ), + 'ROUNDUP' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::ROUNDUP', + 'argumentCount' => '2' + ), + 'ROW' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_LookupRef::ROW', + 'argumentCount' => '-1', + 'passByReference' => array(true) + ), + 'ROWS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_LookupRef::ROWS', + 'argumentCount' => '1' + ), + 'RSQ' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::RSQ', + 'argumentCount' => '2' + ), + 'RTD' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '1+' + ), + 'SEARCH' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::SEARCHINSENSITIVE', + 'argumentCount' => '2,3' + ), + 'SEARCHB' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::SEARCHINSENSITIVE', + 'argumentCount' => '2,3' + ), + 'SECOND' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::SECONDOFMINUTE', + 'argumentCount' => '1' + ), + 'SERIESSUM' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::SERIESSUM', + 'argumentCount' => '4' + ), + 'SIGN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::SIGN', + 'argumentCount' => '1' + ), + 'SIN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'sin', + 'argumentCount' => '1' + ), + 'SINH' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'sinh', + 'argumentCount' => '1' + ), + 'SKEW' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::SKEW', + 'argumentCount' => '1+' + ), + 'SLN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::SLN', + 'argumentCount' => '3' + ), + 'SLOPE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::SLOPE', + 'argumentCount' => '2' + ), + 'SMALL' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::SMALL', + 'argumentCount' => '2' + ), + 'SQRT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'sqrt', + 'argumentCount' => '1' + ), + 'SQRTPI' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::SQRTPI', + 'argumentCount' => '1' + ), + 'STANDARDIZE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::STANDARDIZE', + 'argumentCount' => '3' + ), + 'STDEV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::STDEV', + 'argumentCount' => '1+' + ), + 'STDEVA' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::STDEVA', + 'argumentCount' => '1+' + ), + 'STDEVP' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::STDEVP', + 'argumentCount' => '1+' + ), + 'STDEVPA' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::STDEVPA', + 'argumentCount' => '1+' + ), + 'STEYX' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::STEYX', + 'argumentCount' => '2' + ), + 'SUBSTITUTE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::SUBSTITUTE', + 'argumentCount' => '3,4' + ), + 'SUBTOTAL' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::SUBTOTAL', + 'argumentCount' => '2+' + ), + 'SUM' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::SUM', + 'argumentCount' => '1+' + ), + 'SUMIF' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::SUMIF', + 'argumentCount' => '2,3' + ), + 'SUMIFS' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::SUMIFS', + 'argumentCount' => '3+' + ), + 'SUMPRODUCT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::SUMPRODUCT', + 'argumentCount' => '1+' + ), + 'SUMSQ' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::SUMSQ', + 'argumentCount' => '1+' + ), + 'SUMX2MY2' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::SUMX2MY2', + 'argumentCount' => '2' + ), + 'SUMX2PY2' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::SUMX2PY2', + 'argumentCount' => '2' + ), + 'SUMXMY2' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::SUMXMY2', + 'argumentCount' => '2' + ), + 'SYD' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::SYD', + 'argumentCount' => '4' + ), + 'T' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::RETURNSTRING', + 'argumentCount' => '1' + ), + 'TAN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'tan', + 'argumentCount' => '1' + ), + 'TANH' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'tanh', + 'argumentCount' => '1' + ), + 'TBILLEQ' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::TBILLEQ', + 'argumentCount' => '3' + ), + 'TBILLPRICE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::TBILLPRICE', + 'argumentCount' => '3' + ), + 'TBILLYIELD' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::TBILLYIELD', + 'argumentCount' => '3' + ), + 'TDIST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::TDIST', + 'argumentCount' => '3' + ), + 'TEXT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::TEXTFORMAT', + 'argumentCount' => '2' + ), + 'TIME' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::TIME', + 'argumentCount' => '3' + ), + 'TIMEVALUE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::TIMEVALUE', + 'argumentCount' => '1' + ), + 'TINV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::TINV', + 'argumentCount' => '2' + ), + 'TODAY' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::DATENOW', + 'argumentCount' => '0' + ), + 'TRANSPOSE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_LookupRef::TRANSPOSE', + 'argumentCount' => '1' + ), + 'TREND' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::TREND', + 'argumentCount' => '1-4' + ), + 'TRIM' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::TRIMSPACES', + 'argumentCount' => '1' + ), + 'TRIMMEAN' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::TRIMMEAN', + 'argumentCount' => '2' + ), + 'TRUE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOGICAL, + 'functionCall' => 'PHPExcel_Calculation_Logical::TRUE', + 'argumentCount' => '0' + ), + 'TRUNC' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'PHPExcel_Calculation_MathTrig::TRUNC', + 'argumentCount' => '1,2' + ), + 'TTEST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '4' + ), + 'TYPE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::TYPE', + 'argumentCount' => '1' + ), + 'UPPER' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::UPPERCASE', + 'argumentCount' => '1' + ), + 'USDOLLAR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '2' + ), + 'VALUE' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA, + 'functionCall' => 'PHPExcel_Calculation_TextData::VALUE', + 'argumentCount' => '1' + ), + 'VAR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::VARFunc', + 'argumentCount' => '1+' + ), + 'VARA' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::VARA', + 'argumentCount' => '1+' + ), + 'VARP' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::VARP', + 'argumentCount' => '1+' + ), + 'VARPA' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::VARPA', + 'argumentCount' => '1+' + ), + 'VDB' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '5-7' + ), + 'VERSION' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_INFORMATION, + 'functionCall' => 'PHPExcel_Calculation_Functions::VERSION', + 'argumentCount' => '0' + ), + 'VLOOKUP' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => 'PHPExcel_Calculation_LookupRef::VLOOKUP', + 'argumentCount' => '3,4' + ), + 'WEEKDAY' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::DAYOFWEEK', + 'argumentCount' => '1,2' + ), + 'WEEKNUM' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::WEEKOFYEAR', + 'argumentCount' => '1,2' + ), + 'WEIBULL' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::WEIBULL', + 'argumentCount' => '4' + ), + 'WORKDAY' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::WORKDAY', + 'argumentCount' => '2+' + ), + 'XIRR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::XIRR', + 'argumentCount' => '2,3' + ), + 'XNPV' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::XNPV', + 'argumentCount' => '3' + ), + 'YEAR' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::YEAR', + 'argumentCount' => '1' + ), + 'YEARFRAC' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME, + 'functionCall' => 'PHPExcel_Calculation_DateTime::YEARFRAC', + 'argumentCount' => '2,3' + ), + 'YIELD' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Functions::DUMMY', + 'argumentCount' => '6,7' + ), + 'YIELDDISC' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::YIELDDISC', + 'argumentCount' => '4,5' + ), + 'YIELDMAT' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_FINANCIAL, + 'functionCall' => 'PHPExcel_Calculation_Financial::YIELDMAT', + 'argumentCount' => '5,6' + ), + 'ZTEST' => array( + 'category' => PHPExcel_Calculation_Function::CATEGORY_STATISTICAL, + 'functionCall' => 'PHPExcel_Calculation_Statistical::ZTEST', + 'argumentCount' => '2-3' + ) + ); + + // Internal functions used for special control purposes + private static $controlFunctions = array( + 'MKMATRIX' => array( + 'argumentCount' => '*', + 'functionCall' => 'self::mkMatrix' + ) + ); + + + public function __construct(PHPExcel $workbook = null) + { + $this->delta = 1 * pow(10, 0 - ini_get('precision')); + + $this->workbook = $workbook; + $this->cyclicReferenceStack = new PHPExcel_CalcEngine_CyclicReferenceStack(); + $this->_debugLog = new PHPExcel_CalcEngine_Logger($this->cyclicReferenceStack); + } + + + private static function loadLocales() + { + $localeFileDirectory = PHPEXCEL_ROOT.'PHPExcel/locale/'; + foreach (glob($localeFileDirectory.'/*', GLOB_ONLYDIR) as $filename) { + $filename = substr($filename, strlen($localeFileDirectory)+1); + if ($filename != 'en') { + self::$validLocaleLanguages[] = $filename; + } + } + } + + /** + * Get an instance of this class + * + * @access public + * @param PHPExcel $workbook Injected workbook for working with a PHPExcel object, + * or NULL to create a standalone claculation engine + * @return PHPExcel_Calculation + */ + public static function getInstance(PHPExcel $workbook = null) + { + if ($workbook !== null) { + $instance = $workbook->getCalculationEngine(); + if (isset($instance)) { + return $instance; + } + } + + if (!isset(self::$instance) || (self::$instance === null)) { + self::$instance = new PHPExcel_Calculation(); + } + return self::$instance; + } + + /** + * Unset an instance of this class + * + * @access public + */ + public function __destruct() + { + $this->workbook = null; + } + + /** + * Flush the calculation cache for any existing instance of this class + * but only if a PHPExcel_Calculation instance exists + * + * @access public + * @return null + */ + public function flushInstance() + { + $this->clearCalculationCache(); + } + + + /** + * Get the debuglog for this claculation engine instance + * + * @access public + * @return PHPExcel_CalcEngine_Logger + */ + public function getDebugLog() + { + return $this->_debugLog; + } + + /** + * __clone implementation. Cloning should not be allowed in a Singleton! + * + * @access public + * @throws PHPExcel_Calculation_Exception + */ + final public function __clone() + { + throw new PHPExcel_Calculation_Exception('Cloning the calculation engine is not allowed!'); + } + + + /** + * Return the locale-specific translation of TRUE + * + * @access public + * @return string locale-specific translation of TRUE + */ + public static function getTRUE() + { + return self::$localeBoolean['TRUE']; + } + + /** + * Return the locale-specific translation of FALSE + * + * @access public + * @return string locale-specific translation of FALSE + */ + public static function getFALSE() + { + return self::$localeBoolean['FALSE']; + } + + /** + * Set the Array Return Type (Array or Value of first element in the array) + * + * @access public + * @param string $returnType Array return type + * @return boolean Success or failure + */ + public static function setArrayReturnType($returnType) + { + if (($returnType == self::RETURN_ARRAY_AS_VALUE) || + ($returnType == self::RETURN_ARRAY_AS_ERROR) || + ($returnType == self::RETURN_ARRAY_AS_ARRAY)) { + self::$returnArrayAsType = $returnType; + return true; + } + return false; + } + + + /** + * Return the Array Return Type (Array or Value of first element in the array) + * + * @access public + * @return string $returnType Array return type + */ + public static function getArrayReturnType() + { + return self::$returnArrayAsType; + } + + + /** + * Is calculation caching enabled? + * + * @access public + * @return boolean + */ + public function getCalculationCacheEnabled() + { + return $this->calculationCacheEnabled; + } + + /** + * Enable/disable calculation cache + * + * @access public + * @param boolean $pValue + */ + public function setCalculationCacheEnabled($pValue = true) + { + $this->calculationCacheEnabled = $pValue; + $this->clearCalculationCache(); + } + + + /** + * Enable calculation cache + */ + public function enableCalculationCache() + { + $this->setCalculationCacheEnabled(true); + } + + + /** + * Disable calculation cache + */ + public function disableCalculationCache() + { + $this->setCalculationCacheEnabled(false); + } + + + /** + * Clear calculation cache + */ + public function clearCalculationCache() + { + $this->calculationCache = array(); + } + + /** + * Clear calculation cache for a specified worksheet + * + * @param string $worksheetName + */ + public function clearCalculationCacheForWorksheet($worksheetName) + { + if (isset($this->calculationCache[$worksheetName])) { + unset($this->calculationCache[$worksheetName]); + } + } + + /** + * Rename calculation cache for a specified worksheet + * + * @param string $fromWorksheetName + * @param string $toWorksheetName + */ + public function renameCalculationCacheForWorksheet($fromWorksheetName, $toWorksheetName) + { + if (isset($this->calculationCache[$fromWorksheetName])) { + $this->calculationCache[$toWorksheetName] = &$this->calculationCache[$fromWorksheetName]; + unset($this->calculationCache[$fromWorksheetName]); + } + } + + + /** + * Get the currently defined locale code + * + * @return string + */ + public function getLocale() + { + return self::$localeLanguage; + } + + + /** + * Set the locale code + * + * @param string $locale The locale to use for formula translation + * @return boolean + */ + public function setLocale($locale = 'en_us') + { + // Identify our locale and language + $language = $locale = strtolower($locale); + if (strpos($locale, '_') !== false) { + list($language) = explode('_', $locale); + } + + if (count(self::$validLocaleLanguages) == 1) { + self::loadLocales(); + } + // Test whether we have any language data for this language (any locale) + if (in_array($language, self::$validLocaleLanguages)) { + // initialise language/locale settings + self::$localeFunctions = array(); + self::$localeArgumentSeparator = ','; + self::$localeBoolean = array('TRUE' => 'TRUE', 'FALSE' => 'FALSE', 'NULL' => 'NULL'); + // Default is English, if user isn't requesting english, then read the necessary data from the locale files + if ($locale != 'en_us') { + // Search for a file with a list of function names for locale + $functionNamesFile = PHPEXCEL_ROOT . 'PHPExcel'.DIRECTORY_SEPARATOR.'locale'.DIRECTORY_SEPARATOR.str_replace('_', DIRECTORY_SEPARATOR, $locale).DIRECTORY_SEPARATOR.'functions'; + if (!file_exists($functionNamesFile)) { + // If there isn't a locale specific function file, look for a language specific function file + $functionNamesFile = PHPEXCEL_ROOT . 'PHPExcel'.DIRECTORY_SEPARATOR.'locale'.DIRECTORY_SEPARATOR.$language.DIRECTORY_SEPARATOR.'functions'; + if (!file_exists($functionNamesFile)) { + return false; + } + } + // Retrieve the list of locale or language specific function names + $localeFunctions = file($functionNamesFile, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); + foreach ($localeFunctions as $localeFunction) { + list($localeFunction) = explode('##', $localeFunction); // Strip out comments + if (strpos($localeFunction, '=') !== false) { + list($fName, $lfName) = explode('=', $localeFunction); + $fName = trim($fName); + $lfName = trim($lfName); + if ((isset(self::$PHPExcelFunctions[$fName])) && ($lfName != '') && ($fName != $lfName)) { + self::$localeFunctions[$fName] = $lfName; + } + } + } + // Default the TRUE and FALSE constants to the locale names of the TRUE() and FALSE() functions + if (isset(self::$localeFunctions['TRUE'])) { + self::$localeBoolean['TRUE'] = self::$localeFunctions['TRUE']; + } + if (isset(self::$localeFunctions['FALSE'])) { + self::$localeBoolean['FALSE'] = self::$localeFunctions['FALSE']; + } + + $configFile = PHPEXCEL_ROOT . 'PHPExcel'.DIRECTORY_SEPARATOR.'locale'.DIRECTORY_SEPARATOR.str_replace('_', DIRECTORY_SEPARATOR, $locale).DIRECTORY_SEPARATOR.'config'; + if (!file_exists($configFile)) { + $configFile = PHPEXCEL_ROOT . 'PHPExcel'.DIRECTORY_SEPARATOR.'locale'.DIRECTORY_SEPARATOR.$language.DIRECTORY_SEPARATOR.'config'; + } + if (file_exists($configFile)) { + $localeSettings = file($configFile, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); + foreach ($localeSettings as $localeSetting) { + list($localeSetting) = explode('##', $localeSetting); // Strip out comments + if (strpos($localeSetting, '=') !== false) { + list($settingName, $settingValue) = explode('=', $localeSetting); + $settingName = strtoupper(trim($settingName)); + switch ($settingName) { + case 'ARGUMENTSEPARATOR': + self::$localeArgumentSeparator = trim($settingValue); + break; + } + } + } + } + } + + self::$functionReplaceFromExcel = self::$functionReplaceToExcel = + self::$functionReplaceFromLocale = self::$functionReplaceToLocale = null; + self::$localeLanguage = $locale; + return true; + } + return false; + } + + + + public static function translateSeparator($fromSeparator, $toSeparator, $formula, &$inBraces) + { + $strlen = mb_strlen($formula); + for ($i = 0; $i < $strlen; ++$i) { + $chr = mb_substr($formula, $i, 1); + switch ($chr) { + case '{': + $inBraces = true; + break; + case '}': + $inBraces = false; + break; + case $fromSeparator: + if (!$inBraces) { + $formula = mb_substr($formula, 0, $i).$toSeparator.mb_substr($formula, $i+1); + } + } + } + return $formula; + } + + private static function translateFormula($from, $to, $formula, $fromSeparator, $toSeparator) + { + // Convert any Excel function names to the required language + if (self::$localeLanguage !== 'en_us') { + $inBraces = false; + // If there is the possibility of braces within a quoted string, then we don't treat those as matrix indicators + if (strpos($formula, '"') !== false) { + // So instead we skip replacing in any quoted strings by only replacing in every other array element after we've exploded + // the formula + $temp = explode('"', $formula); + $i = false; + foreach ($temp as &$value) { + // Only count/replace in alternating array entries + if ($i = !$i) { + $value = preg_replace($from, $to, $value); + $value = self::translateSeparator($fromSeparator, $toSeparator, $value, $inBraces); + } + } + unset($value); + // Then rebuild the formula string + $formula = implode('"', $temp); + } else { + // If there's no quoted strings, then we do a simple count/replace + $formula = preg_replace($from, $to, $formula); + $formula = self::translateSeparator($fromSeparator, $toSeparator, $formula, $inBraces); + } + } + + return $formula; + } + + private static $functionReplaceFromExcel = null; + private static $functionReplaceToLocale = null; + + public function _translateFormulaToLocale($formula) + { + if (self::$functionReplaceFromExcel === null) { + self::$functionReplaceFromExcel = array(); + foreach (array_keys(self::$localeFunctions) as $excelFunctionName) { + self::$functionReplaceFromExcel[] = '/(@?[^\w\.])'.preg_quote($excelFunctionName).'([\s]*\()/Ui'; + } + foreach (array_keys(self::$localeBoolean) as $excelBoolean) { + self::$functionReplaceFromExcel[] = '/(@?[^\w\.])'.preg_quote($excelBoolean).'([^\w\.])/Ui'; + } + + } + + if (self::$functionReplaceToLocale === null) { + self::$functionReplaceToLocale = array(); + foreach (array_values(self::$localeFunctions) as $localeFunctionName) { + self::$functionReplaceToLocale[] = '$1'.trim($localeFunctionName).'$2'; + } + foreach (array_values(self::$localeBoolean) as $localeBoolean) { + self::$functionReplaceToLocale[] = '$1'.trim($localeBoolean).'$2'; + } + } + + return self::translateFormula(self::$functionReplaceFromExcel, self::$functionReplaceToLocale, $formula, ',', self::$localeArgumentSeparator); + } + + + private static $functionReplaceFromLocale = null; + private static $functionReplaceToExcel = null; + + public function _translateFormulaToEnglish($formula) + { + if (self::$functionReplaceFromLocale === null) { + self::$functionReplaceFromLocale = array(); + foreach (array_values(self::$localeFunctions) as $localeFunctionName) { + self::$functionReplaceFromLocale[] = '/(@?[^\w\.])'.preg_quote($localeFunctionName).'([\s]*\()/Ui'; + } + foreach (array_values(self::$localeBoolean) as $excelBoolean) { + self::$functionReplaceFromLocale[] = '/(@?[^\w\.])'.preg_quote($excelBoolean).'([^\w\.])/Ui'; + } + } + + if (self::$functionReplaceToExcel === null) { + self::$functionReplaceToExcel = array(); + foreach (array_keys(self::$localeFunctions) as $excelFunctionName) { + self::$functionReplaceToExcel[] = '$1'.trim($excelFunctionName).'$2'; + } + foreach (array_keys(self::$localeBoolean) as $excelBoolean) { + self::$functionReplaceToExcel[] = '$1'.trim($excelBoolean).'$2'; + } + } + + return self::translateFormula(self::$functionReplaceFromLocale, self::$functionReplaceToExcel, $formula, self::$localeArgumentSeparator, ','); + } + + + public static function localeFunc($function) + { + if (self::$localeLanguage !== 'en_us') { + $functionName = trim($function, '('); + if (isset(self::$localeFunctions[$functionName])) { + $brace = ($functionName != $function); + $function = self::$localeFunctions[$functionName]; + if ($brace) { + $function .= '('; + } + } + } + return $function; + } + + + + + /** + * Wrap string values in quotes + * + * @param mixed $value + * @return mixed + */ + public static function wrapResult($value) + { + if (is_string($value)) { + // Error values cannot be "wrapped" + if (preg_match('/^'.self::CALCULATION_REGEXP_ERROR.'$/i', $value, $match)) { + // Return Excel errors "as is" + return $value; + } + // Return strings wrapped in quotes + return '"'.$value.'"'; + // Convert numeric errors to NaN error + } elseif ((is_float($value)) && ((is_nan($value)) || (is_infinite($value)))) { + return PHPExcel_Calculation_Functions::NaN(); + } + + return $value; + } + + + /** + * Remove quotes used as a wrapper to identify string values + * + * @param mixed $value + * @return mixed + */ + public static function unwrapResult($value) + { + if (is_string($value)) { + if ((isset($value{0})) && ($value{0} == '"') && (substr($value, -1) == '"')) { + return substr($value, 1, -1); + } + // Convert numeric errors to NaN error + } elseif ((is_float($value)) && ((is_nan($value)) || (is_infinite($value)))) { + return PHPExcel_Calculation_Functions::NaN(); + } + return $value; + } + + + + + /** + * Calculate cell value (using formula from a cell ID) + * Retained for backward compatibility + * + * @access public + * @param PHPExcel_Cell $pCell Cell to calculate + * @return mixed + * @throws PHPExcel_Calculation_Exception + */ + public function calculate(PHPExcel_Cell $pCell = null) + { + try { + return $this->calculateCellValue($pCell); + } catch (PHPExcel_Exception $e) { + throw new PHPExcel_Calculation_Exception($e->getMessage()); + } + } + + + /** + * Calculate the value of a cell formula + * + * @access public + * @param PHPExcel_Cell $pCell Cell to calculate + * @param Boolean $resetLog Flag indicating whether the debug log should be reset or not + * @return mixed + * @throws PHPExcel_Calculation_Exception + */ + public function calculateCellValue(PHPExcel_Cell $pCell = null, $resetLog = true) + { + if ($pCell === null) { + return null; + } + + $returnArrayAsType = self::$returnArrayAsType; + if ($resetLog) { + // Initialise the logging settings if requested + $this->formulaError = null; + $this->_debugLog->clearLog(); + $this->cyclicReferenceStack->clear(); + $this->cyclicFormulaCounter = 1; + + self::$returnArrayAsType = self::RETURN_ARRAY_AS_ARRAY; + } + + // Execute the calculation for the cell formula + $this->cellStack[] = array( + 'sheet' => $pCell->getWorksheet()->getTitle(), + 'cell' => $pCell->getCoordinate(), + ); + try { + $result = self::unwrapResult($this->_calculateFormulaValue($pCell->getValue(), $pCell->getCoordinate(), $pCell)); + $cellAddress = array_pop($this->cellStack); + $this->workbook->getSheetByName($cellAddress['sheet'])->getCell($cellAddress['cell']); + } catch (PHPExcel_Exception $e) { + $cellAddress = array_pop($this->cellStack); + $this->workbook->getSheetByName($cellAddress['sheet'])->getCell($cellAddress['cell']); + throw new PHPExcel_Calculation_Exception($e->getMessage()); + } + + if ((is_array($result)) && (self::$returnArrayAsType != self::RETURN_ARRAY_AS_ARRAY)) { + self::$returnArrayAsType = $returnArrayAsType; + $testResult = PHPExcel_Calculation_Functions::flattenArray($result); + if (self::$returnArrayAsType == self::RETURN_ARRAY_AS_ERROR) { + return PHPExcel_Calculation_Functions::VALUE(); + } + // If there's only a single cell in the array, then we allow it + if (count($testResult) != 1) { + // If keys are numeric, then it's a matrix result rather than a cell range result, so we permit it + $r = array_keys($result); + $r = array_shift($r); + if (!is_numeric($r)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if (is_array($result[$r])) { + $c = array_keys($result[$r]); + $c = array_shift($c); + if (!is_numeric($c)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + } + $result = array_shift($testResult); + } + self::$returnArrayAsType = $returnArrayAsType; + + + if ($result === null) { + return 0; + } elseif ((is_float($result)) && ((is_nan($result)) || (is_infinite($result)))) { + return PHPExcel_Calculation_Functions::NaN(); + } + return $result; + } + + + /** + * Validate and parse a formula string + * + * @param string $formula Formula to parse + * @return array + * @throws PHPExcel_Calculation_Exception + */ + public function parseFormula($formula) + { + // Basic validation that this is indeed a formula + // We return an empty array if not + $formula = trim($formula); + if ((!isset($formula{0})) || ($formula{0} != '=')) { + return array(); + } + $formula = ltrim(substr($formula, 1)); + if (!isset($formula{0})) { + return array(); + } + + // Parse the formula and return the token stack + return $this->_parseFormula($formula); + } + + + /** + * Calculate the value of a formula + * + * @param string $formula Formula to parse + * @param string $cellID Address of the cell to calculate + * @param PHPExcel_Cell $pCell Cell to calculate + * @return mixed + * @throws PHPExcel_Calculation_Exception + */ + public function calculateFormula($formula, $cellID = null, PHPExcel_Cell $pCell = null) + { + // Initialise the logging settings + $this->formulaError = null; + $this->_debugLog->clearLog(); + $this->cyclicReferenceStack->clear(); + + if ($this->workbook !== null && $cellID === null && $pCell === null) { + $cellID = 'A1'; + $pCell = $this->workbook->getActiveSheet()->getCell($cellID); + } else { + // Disable calculation cacheing because it only applies to cell calculations, not straight formulae + // But don't actually flush any cache + $resetCache = $this->getCalculationCacheEnabled(); + $this->calculationCacheEnabled = false; + } + + // Execute the calculation + try { + $result = self::unwrapResult($this->_calculateFormulaValue($formula, $cellID, $pCell)); + } catch (PHPExcel_Exception $e) { + throw new PHPExcel_Calculation_Exception($e->getMessage()); + } + + if ($this->workbook === null) { + // Reset calculation cacheing to its previous state + $this->calculationCacheEnabled = $resetCache; + } + + return $result; + } + + + public function getValueFromCache($cellReference, &$cellValue) + { + // Is calculation cacheing enabled? + // Is the value present in calculation cache? + $this->_debugLog->writeDebugLog('Testing cache value for cell ', $cellReference); + if (($this->calculationCacheEnabled) && (isset($this->calculationCache[$cellReference]))) { + $this->_debugLog->writeDebugLog('Retrieving value for cell ', $cellReference, ' from cache'); + // Return the cached result + $cellValue = $this->calculationCache[$cellReference]; + return true; + } + return false; + } + + public function saveValueToCache($cellReference, $cellValue) + { + if ($this->calculationCacheEnabled) { + $this->calculationCache[$cellReference] = $cellValue; + } + } + + /** + * Parse a cell formula and calculate its value + * + * @param string $formula The formula to parse and calculate + * @param string $cellID The ID (e.g. A3) of the cell that we are calculating + * @param PHPExcel_Cell $pCell Cell to calculate + * @return mixed + * @throws PHPExcel_Calculation_Exception + */ + public function _calculateFormulaValue($formula, $cellID = null, PHPExcel_Cell $pCell = null) + { + $cellValue = null; + + // Basic validation that this is indeed a formula + // We simply return the cell value if not + $formula = trim($formula); + if ($formula{0} != '=') { + return self::wrapResult($formula); + } + $formula = ltrim(substr($formula, 1)); + if (!isset($formula{0})) { + return self::wrapResult($formula); + } + + $pCellParent = ($pCell !== null) ? $pCell->getWorksheet() : null; + $wsTitle = ($pCellParent !== null) ? $pCellParent->getTitle() : "\x00Wrk"; + $wsCellReference = $wsTitle . '!' . $cellID; + + if (($cellID !== null) && ($this->getValueFromCache($wsCellReference, $cellValue))) { + return $cellValue; + } + + if (($wsTitle{0} !== "\x00") && ($this->cyclicReferenceStack->onStack($wsCellReference))) { + if ($this->cyclicFormulaCount <= 0) { + $this->cyclicFormulaCell = ''; + return $this->raiseFormulaError('Cyclic Reference in Formula'); + } elseif ($this->cyclicFormulaCell === $wsCellReference) { + ++$this->cyclicFormulaCounter; + if ($this->cyclicFormulaCounter >= $this->cyclicFormulaCount) { + $this->cyclicFormulaCell = ''; + return $cellValue; + } + } elseif ($this->cyclicFormulaCell == '') { + if ($this->cyclicFormulaCounter >= $this->cyclicFormulaCount) { + return $cellValue; + } + $this->cyclicFormulaCell = $wsCellReference; + } + } + + // Parse the formula onto the token stack and calculate the value + $this->cyclicReferenceStack->push($wsCellReference); + $cellValue = $this->processTokenStack($this->_parseFormula($formula, $pCell), $cellID, $pCell); + $this->cyclicReferenceStack->pop(); + + // Save to calculation cache + if ($cellID !== null) { + $this->saveValueToCache($wsCellReference, $cellValue); + } + + // Return the calculated value + return $cellValue; + } + + + /** + * Ensure that paired matrix operands are both matrices and of the same size + * + * @param mixed &$operand1 First matrix operand + * @param mixed &$operand2 Second matrix operand + * @param integer $resize Flag indicating whether the matrices should be resized to match + * and (if so), whether the smaller dimension should grow or the + * larger should shrink. + * 0 = no resize + * 1 = shrink to fit + * 2 = extend to fit + */ + private static function checkMatrixOperands(&$operand1, &$operand2, $resize = 1) + { + // Examine each of the two operands, and turn them into an array if they aren't one already + // Note that this function should only be called if one or both of the operand is already an array + if (!is_array($operand1)) { + list($matrixRows, $matrixColumns) = self::getMatrixDimensions($operand2); + $operand1 = array_fill(0, $matrixRows, array_fill(0, $matrixColumns, $operand1)); + $resize = 0; + } elseif (!is_array($operand2)) { + list($matrixRows, $matrixColumns) = self::getMatrixDimensions($operand1); + $operand2 = array_fill(0, $matrixRows, array_fill(0, $matrixColumns, $operand2)); + $resize = 0; + } + + list($matrix1Rows, $matrix1Columns) = self::getMatrixDimensions($operand1); + list($matrix2Rows, $matrix2Columns) = self::getMatrixDimensions($operand2); + if (($matrix1Rows == $matrix2Columns) && ($matrix2Rows == $matrix1Columns)) { + $resize = 1; + } + + if ($resize == 2) { + // Given two matrices of (potentially) unequal size, convert the smaller in each dimension to match the larger + self::resizeMatricesExtend($operand1, $operand2, $matrix1Rows, $matrix1Columns, $matrix2Rows, $matrix2Columns); + } elseif ($resize == 1) { + // Given two matrices of (potentially) unequal size, convert the larger in each dimension to match the smaller + self::resizeMatricesShrink($operand1, $operand2, $matrix1Rows, $matrix1Columns, $matrix2Rows, $matrix2Columns); + } + return array( $matrix1Rows, $matrix1Columns, $matrix2Rows, $matrix2Columns); + } + + + /** + * Read the dimensions of a matrix, and re-index it with straight numeric keys starting from row 0, column 0 + * + * @param mixed &$matrix matrix operand + * @return array An array comprising the number of rows, and number of columns + */ + private static function getMatrixDimensions(&$matrix) + { + $matrixRows = count($matrix); + $matrixColumns = 0; + foreach ($matrix as $rowKey => $rowValue) { + $matrixColumns = max(count($rowValue), $matrixColumns); + if (!is_array($rowValue)) { + $matrix[$rowKey] = array($rowValue); + } else { + $matrix[$rowKey] = array_values($rowValue); + } + } + $matrix = array_values($matrix); + return array($matrixRows, $matrixColumns); + } + + + /** + * Ensure that paired matrix operands are both matrices of the same size + * + * @param mixed &$matrix1 First matrix operand + * @param mixed &$matrix2 Second matrix operand + * @param integer $matrix1Rows Row size of first matrix operand + * @param integer $matrix1Columns Column size of first matrix operand + * @param integer $matrix2Rows Row size of second matrix operand + * @param integer $matrix2Columns Column size of second matrix operand + */ + private static function resizeMatricesShrink(&$matrix1, &$matrix2, $matrix1Rows, $matrix1Columns, $matrix2Rows, $matrix2Columns) + { + if (($matrix2Columns < $matrix1Columns) || ($matrix2Rows < $matrix1Rows)) { + if ($matrix2Rows < $matrix1Rows) { + for ($i = $matrix2Rows; $i < $matrix1Rows; ++$i) { + unset($matrix1[$i]); + } + } + if ($matrix2Columns < $matrix1Columns) { + for ($i = 0; $i < $matrix1Rows; ++$i) { + for ($j = $matrix2Columns; $j < $matrix1Columns; ++$j) { + unset($matrix1[$i][$j]); + } + } + } + } + + if (($matrix1Columns < $matrix2Columns) || ($matrix1Rows < $matrix2Rows)) { + if ($matrix1Rows < $matrix2Rows) { + for ($i = $matrix1Rows; $i < $matrix2Rows; ++$i) { + unset($matrix2[$i]); + } + } + if ($matrix1Columns < $matrix2Columns) { + for ($i = 0; $i < $matrix2Rows; ++$i) { + for ($j = $matrix1Columns; $j < $matrix2Columns; ++$j) { + unset($matrix2[$i][$j]); + } + } + } + } + } + + + /** + * Ensure that paired matrix operands are both matrices of the same size + * + * @param mixed &$matrix1 First matrix operand + * @param mixed &$matrix2 Second matrix operand + * @param integer $matrix1Rows Row size of first matrix operand + * @param integer $matrix1Columns Column size of first matrix operand + * @param integer $matrix2Rows Row size of second matrix operand + * @param integer $matrix2Columns Column size of second matrix operand + */ + private static function resizeMatricesExtend(&$matrix1, &$matrix2, $matrix1Rows, $matrix1Columns, $matrix2Rows, $matrix2Columns) + { + if (($matrix2Columns < $matrix1Columns) || ($matrix2Rows < $matrix1Rows)) { + if ($matrix2Columns < $matrix1Columns) { + for ($i = 0; $i < $matrix2Rows; ++$i) { + $x = $matrix2[$i][$matrix2Columns-1]; + for ($j = $matrix2Columns; $j < $matrix1Columns; ++$j) { + $matrix2[$i][$j] = $x; + } + } + } + if ($matrix2Rows < $matrix1Rows) { + $x = $matrix2[$matrix2Rows-1]; + for ($i = 0; $i < $matrix1Rows; ++$i) { + $matrix2[$i] = $x; + } + } + } + + if (($matrix1Columns < $matrix2Columns) || ($matrix1Rows < $matrix2Rows)) { + if ($matrix1Columns < $matrix2Columns) { + for ($i = 0; $i < $matrix1Rows; ++$i) { + $x = $matrix1[$i][$matrix1Columns-1]; + for ($j = $matrix1Columns; $j < $matrix2Columns; ++$j) { + $matrix1[$i][$j] = $x; + } + } + } + if ($matrix1Rows < $matrix2Rows) { + $x = $matrix1[$matrix1Rows-1]; + for ($i = 0; $i < $matrix2Rows; ++$i) { + $matrix1[$i] = $x; + } + } + } + } + + + /** + * Format details of an operand for display in the log (based on operand type) + * + * @param mixed $value First matrix operand + * @return mixed + */ + private function showValue($value) + { + if ($this->_debugLog->getWriteDebugLog()) { + $testArray = PHPExcel_Calculation_Functions::flattenArray($value); + if (count($testArray) == 1) { + $value = array_pop($testArray); + } + + if (is_array($value)) { + $returnMatrix = array(); + $pad = $rpad = ', '; + foreach ($value as $row) { + if (is_array($row)) { + $returnMatrix[] = implode($pad, array_map(array($this, 'showValue'), $row)); + $rpad = '; '; + } else { + $returnMatrix[] = $this->showValue($row); + } + } + return '{ '.implode($rpad, $returnMatrix).' }'; + } elseif (is_string($value) && (trim($value, '"') == $value)) { + return '"'.$value.'"'; + } elseif (is_bool($value)) { + return ($value) ? self::$localeBoolean['TRUE'] : self::$localeBoolean['FALSE']; + } + } + return PHPExcel_Calculation_Functions::flattenSingleValue($value); + } + + + /** + * Format type and details of an operand for display in the log (based on operand type) + * + * @param mixed $value First matrix operand + * @return mixed + */ + private function showTypeDetails($value) + { + if ($this->_debugLog->getWriteDebugLog()) { + $testArray = PHPExcel_Calculation_Functions::flattenArray($value); + if (count($testArray) == 1) { + $value = array_pop($testArray); + } + + if ($value === null) { + return 'a NULL value'; + } elseif (is_float($value)) { + $typeString = 'a floating point number'; + } elseif (is_int($value)) { + $typeString = 'an integer number'; + } elseif (is_bool($value)) { + $typeString = 'a boolean'; + } elseif (is_array($value)) { + $typeString = 'a matrix'; + } else { + if ($value == '') { + return 'an empty string'; + } elseif ($value{0} == '#') { + return 'a '.$value.' error'; + } else { + $typeString = 'a string'; + } + } + return $typeString.' with a value of '.$this->showValue($value); + } + } + + + private function convertMatrixReferences($formula) + { + static $matrixReplaceFrom = array('{', ';', '}'); + static $matrixReplaceTo = array('MKMATRIX(MKMATRIX(', '),MKMATRIX(', '))'); + + // Convert any Excel matrix references to the MKMATRIX() function + if (strpos($formula, '{') !== false) { + // If there is the possibility of braces within a quoted string, then we don't treat those as matrix indicators + if (strpos($formula, '"') !== false) { + // So instead we skip replacing in any quoted strings by only replacing in every other array element after we've exploded + // the formula + $temp = explode('"', $formula); + // Open and Closed counts used for trapping mismatched braces in the formula + $openCount = $closeCount = 0; + $i = false; + foreach ($temp as &$value) { + // Only count/replace in alternating array entries + if ($i = !$i) { + $openCount += substr_count($value, '{'); + $closeCount += substr_count($value, '}'); + $value = str_replace($matrixReplaceFrom, $matrixReplaceTo, $value); + } + } + unset($value); + // Then rebuild the formula string + $formula = implode('"', $temp); + } else { + // If there's no quoted strings, then we do a simple count/replace + $openCount = substr_count($formula, '{'); + $closeCount = substr_count($formula, '}'); + $formula = str_replace($matrixReplaceFrom, $matrixReplaceTo, $formula); + } + // Trap for mismatched braces and trigger an appropriate error + if ($openCount < $closeCount) { + if ($openCount > 0) { + return $this->raiseFormulaError("Formula Error: Mismatched matrix braces '}'"); + } else { + return $this->raiseFormulaError("Formula Error: Unexpected '}' encountered"); + } + } elseif ($openCount > $closeCount) { + if ($closeCount > 0) { + return $this->raiseFormulaError("Formula Error: Mismatched matrix braces '{'"); + } else { + return $this->raiseFormulaError("Formula Error: Unexpected '{' encountered"); + } + } + } + + return $formula; + } + + + private static function mkMatrix() + { + return func_get_args(); + } + + + // Binary Operators + // These operators always work on two values + // Array key is the operator, the value indicates whether this is a left or right associative operator + private static $operatorAssociativity = array( + '^' => 0, // Exponentiation + '*' => 0, '/' => 0, // Multiplication and Division + '+' => 0, '-' => 0, // Addition and Subtraction + '&' => 0, // Concatenation + '|' => 0, ':' => 0, // Intersect and Range + '>' => 0, '<' => 0, '=' => 0, '>=' => 0, '<=' => 0, '<>' => 0 // Comparison + ); + + // Comparison (Boolean) Operators + // These operators work on two values, but always return a boolean result + private static $comparisonOperators = array('>' => true, '<' => true, '=' => true, '>=' => true, '<=' => true, '<>' => true); + + // Operator Precedence + // This list includes all valid operators, whether binary (including boolean) or unary (such as %) + // Array key is the operator, the value is its precedence + private static $operatorPrecedence = array( + ':' => 8, // Range + '|' => 7, // Intersect + '~' => 6, // Negation + '%' => 5, // Percentage + '^' => 4, // Exponentiation + '*' => 3, '/' => 3, // Multiplication and Division + '+' => 2, '-' => 2, // Addition and Subtraction + '&' => 1, // Concatenation + '>' => 0, '<' => 0, '=' => 0, '>=' => 0, '<=' => 0, '<>' => 0 // Comparison + ); + + // Convert infix to postfix notation + private function _parseFormula($formula, PHPExcel_Cell $pCell = null) + { + if (($formula = $this->convertMatrixReferences(trim($formula))) === false) { + return false; + } + + // If we're using cell caching, then $pCell may well be flushed back to the cache (which detaches the parent worksheet), + // so we store the parent worksheet so that we can re-attach it when necessary + $pCellParent = ($pCell !== null) ? $pCell->getWorksheet() : null; + + $regexpMatchString = '/^('.self::CALCULATION_REGEXP_FUNCTION. + '|'.self::CALCULATION_REGEXP_CELLREF. + '|'.self::CALCULATION_REGEXP_NUMBER. + '|'.self::CALCULATION_REGEXP_STRING. + '|'.self::CALCULATION_REGEXP_OPENBRACE. + '|'.self::CALCULATION_REGEXP_NAMEDRANGE. + '|'.self::CALCULATION_REGEXP_ERROR. + ')/si'; + + // Start with initialisation + $index = 0; + $stack = new PHPExcel_Calculation_Token_Stack; + $output = array(); + $expectingOperator = false; // We use this test in syntax-checking the expression to determine when a + // - is a negation or + is a positive operator rather than an operation + $expectingOperand = false; // We use this test in syntax-checking the expression to determine whether an operand + // should be null in a function call + // The guts of the lexical parser + // Loop through the formula extracting each operator and operand in turn + while (true) { +//echo 'Assessing Expression '.substr($formula, $index), PHP_EOL; + $opCharacter = $formula{$index}; // Get the first character of the value at the current index position +//echo 'Initial character of expression block is '.$opCharacter, PHP_EOL; + if ((isset(self::$comparisonOperators[$opCharacter])) && (strlen($formula) > $index) && (isset(self::$comparisonOperators[$formula{$index+1}]))) { + $opCharacter .= $formula{++$index}; +//echo 'Initial character of expression block is comparison operator '.$opCharacter.PHP_EOL; + } + + // Find out if we're currently at the beginning of a number, variable, cell reference, function, parenthesis or operand + $isOperandOrFunction = preg_match($regexpMatchString, substr($formula, $index), $match); +//echo '$isOperandOrFunction is '.(($isOperandOrFunction) ? 'True' : 'False').PHP_EOL; +//var_dump($match); + + if ($opCharacter == '-' && !$expectingOperator) { // Is it a negation instead of a minus? +//echo 'Element is a Negation operator', PHP_EOL; + $stack->push('Unary Operator', '~'); // Put a negation on the stack + ++$index; // and drop the negation symbol + } elseif ($opCharacter == '%' && $expectingOperator) { +//echo 'Element is a Percentage operator', PHP_EOL; + $stack->push('Unary Operator', '%'); // Put a percentage on the stack + ++$index; + } elseif ($opCharacter == '+' && !$expectingOperator) { // Positive (unary plus rather than binary operator plus) can be discarded? +//echo 'Element is a Positive number, not Plus operator', PHP_EOL; + ++$index; // Drop the redundant plus symbol + } elseif ((($opCharacter == '~') || ($opCharacter == '|')) && (!$isOperandOrFunction)) { // We have to explicitly deny a tilde or pipe, because they are legal + return $this->raiseFormulaError("Formula Error: Illegal character '~'"); // on the stack but not in the input expression + + } elseif ((isset(self::$operators[$opCharacter]) or $isOperandOrFunction) && $expectingOperator) { // Are we putting an operator on the stack? +//echo 'Element with value '.$opCharacter.' is an Operator', PHP_EOL; + while ($stack->count() > 0 && + ($o2 = $stack->last()) && + isset(self::$operators[$o2['value']]) && + @(self::$operatorAssociativity[$opCharacter] ? self::$operatorPrecedence[$opCharacter] < self::$operatorPrecedence[$o2['value']] : self::$operatorPrecedence[$opCharacter] <= self::$operatorPrecedence[$o2['value']])) { + $output[] = $stack->pop(); // Swap operands and higher precedence operators from the stack to the output + } + $stack->push('Binary Operator', $opCharacter); // Finally put our current operator onto the stack + ++$index; + $expectingOperator = false; + + } elseif ($opCharacter == ')' && $expectingOperator) { // Are we expecting to close a parenthesis? +//echo 'Element is a Closing bracket', PHP_EOL; + $expectingOperand = false; + while (($o2 = $stack->pop()) && $o2['value'] != '(') { // Pop off the stack back to the last ( + if ($o2 === null) { + return $this->raiseFormulaError('Formula Error: Unexpected closing brace ")"'); + } else { + $output[] = $o2; + } + } + $d = $stack->last(2); + if (preg_match('/^'.self::CALCULATION_REGEXP_FUNCTION.'$/i', $d['value'], $matches)) { // Did this parenthesis just close a function? + $functionName = $matches[1]; // Get the function name +//echo 'Closed Function is '.$functionName, PHP_EOL; + $d = $stack->pop(); + $argumentCount = $d['value']; // See how many arguments there were (argument count is the next value stored on the stack) +//if ($argumentCount == 0) { +// echo 'With no arguments', PHP_EOL; +//} elseif ($argumentCount == 1) { +// echo 'With 1 argument', PHP_EOL; +//} else { +// echo 'With '.$argumentCount.' arguments', PHP_EOL; +//} + $output[] = $d; // Dump the argument count on the output + $output[] = $stack->pop(); // Pop the function and push onto the output + if (isset(self::$controlFunctions[$functionName])) { +//echo 'Built-in function '.$functionName, PHP_EOL; + $expectedArgumentCount = self::$controlFunctions[$functionName]['argumentCount']; + $functionCall = self::$controlFunctions[$functionName]['functionCall']; + } elseif (isset(self::$PHPExcelFunctions[$functionName])) { +//echo 'PHPExcel function '.$functionName, PHP_EOL; + $expectedArgumentCount = self::$PHPExcelFunctions[$functionName]['argumentCount']; + $functionCall = self::$PHPExcelFunctions[$functionName]['functionCall']; + } else { // did we somehow push a non-function on the stack? this should never happen + return $this->raiseFormulaError("Formula Error: Internal error, non-function on stack"); + } + // Check the argument count + $argumentCountError = false; + if (is_numeric($expectedArgumentCount)) { + if ($expectedArgumentCount < 0) { +//echo '$expectedArgumentCount is between 0 and '.abs($expectedArgumentCount), PHP_EOL; + if ($argumentCount > abs($expectedArgumentCount)) { + $argumentCountError = true; + $expectedArgumentCountString = 'no more than '.abs($expectedArgumentCount); + } + } else { +//echo '$expectedArgumentCount is numeric '.$expectedArgumentCount, PHP_EOL; + if ($argumentCount != $expectedArgumentCount) { + $argumentCountError = true; + $expectedArgumentCountString = $expectedArgumentCount; + } + } + } elseif ($expectedArgumentCount != '*') { + $isOperandOrFunction = preg_match('/(\d*)([-+,])(\d*)/', $expectedArgumentCount, $argMatch); +//print_r($argMatch); +//echo PHP_EOL; + switch ($argMatch[2]) { + case '+': + if ($argumentCount < $argMatch[1]) { + $argumentCountError = true; + $expectedArgumentCountString = $argMatch[1].' or more '; + } + break; + case '-': + if (($argumentCount < $argMatch[1]) || ($argumentCount > $argMatch[3])) { + $argumentCountError = true; + $expectedArgumentCountString = 'between '.$argMatch[1].' and '.$argMatch[3]; + } + break; + case ',': + if (($argumentCount != $argMatch[1]) && ($argumentCount != $argMatch[3])) { + $argumentCountError = true; + $expectedArgumentCountString = 'either '.$argMatch[1].' or '.$argMatch[3]; + } + break; + } + } + if ($argumentCountError) { + return $this->raiseFormulaError("Formula Error: Wrong number of arguments for $functionName() function: $argumentCount given, ".$expectedArgumentCountString." expected"); + } + } + ++$index; + + } elseif ($opCharacter == ',') { // Is this the separator for function arguments? +//echo 'Element is a Function argument separator', PHP_EOL; + while (($o2 = $stack->pop()) && $o2['value'] != '(') { // Pop off the stack back to the last ( + if ($o2 === null) { + return $this->raiseFormulaError("Formula Error: Unexpected ,"); + } else { + $output[] = $o2; // pop the argument expression stuff and push onto the output + } + } + // If we've a comma when we're expecting an operand, then what we actually have is a null operand; + // so push a null onto the stack + if (($expectingOperand) || (!$expectingOperator)) { + $output[] = array('type' => 'NULL Value', 'value' => self::$excelConstants['NULL'], 'reference' => null); + } + // make sure there was a function + $d = $stack->last(2); + if (!preg_match('/^'.self::CALCULATION_REGEXP_FUNCTION.'$/i', $d['value'], $matches)) { + return $this->raiseFormulaError("Formula Error: Unexpected ,"); + } + $d = $stack->pop(); + $stack->push($d['type'], ++$d['value'], $d['reference']); // increment the argument count + $stack->push('Brace', '('); // put the ( back on, we'll need to pop back to it again + $expectingOperator = false; + $expectingOperand = true; + ++$index; + + } elseif ($opCharacter == '(' && !$expectingOperator) { +// echo 'Element is an Opening Bracket
'; + $stack->push('Brace', '('); + ++$index; + + } elseif ($isOperandOrFunction && !$expectingOperator) { // do we now have a function/variable/number? + $expectingOperator = true; + $expectingOperand = false; + $val = $match[1]; + $length = strlen($val); +// echo 'Element with value '.$val.' is an Operand, Variable, Constant, String, Number, Cell Reference or Function
'; + + if (preg_match('/^'.self::CALCULATION_REGEXP_FUNCTION.'$/i', $val, $matches)) { + $val = preg_replace('/\s/u', '', $val); +// echo 'Element '.$val.' is a Function
'; + if (isset(self::$PHPExcelFunctions[strtoupper($matches[1])]) || isset(self::$controlFunctions[strtoupper($matches[1])])) { // it's a function + $stack->push('Function', strtoupper($val)); + $ax = preg_match('/^\s*(\s*\))/ui', substr($formula, $index+$length), $amatch); + if ($ax) { + $stack->push('Operand Count for Function '.strtoupper($val).')', 0); + $expectingOperator = true; + } else { + $stack->push('Operand Count for Function '.strtoupper($val).')', 1); + $expectingOperator = false; + } + $stack->push('Brace', '('); + } else { // it's a var w/ implicit multiplication + $output[] = array('type' => 'Value', 'value' => $matches[1], 'reference' => null); + } + } elseif (preg_match('/^'.self::CALCULATION_REGEXP_CELLREF.'$/i', $val, $matches)) { +// echo 'Element '.$val.' is a Cell reference
'; + // Watch for this case-change when modifying to allow cell references in different worksheets... + // Should only be applied to the actual cell column, not the worksheet name + + // If the last entry on the stack was a : operator, then we have a cell range reference + $testPrevOp = $stack->last(1); + if ($testPrevOp['value'] == ':') { + // If we have a worksheet reference, then we're playing with a 3D reference + if ($matches[2] == '') { + // Otherwise, we 'inherit' the worksheet reference from the start cell reference + // The start of the cell range reference should be the last entry in $output + $startCellRef = $output[count($output)-1]['value']; + preg_match('/^'.self::CALCULATION_REGEXP_CELLREF.'$/i', $startCellRef, $startMatches); + if ($startMatches[2] > '') { + $val = $startMatches[2].'!'.$val; + } + } else { + return $this->raiseFormulaError("3D Range references are not yet supported"); + } + } + + $output[] = array('type' => 'Cell Reference', 'value' => $val, 'reference' => $val); +// $expectingOperator = FALSE; + } else { // it's a variable, constant, string, number or boolean +// echo 'Element is a Variable, Constant, String, Number or Boolean
'; + // If the last entry on the stack was a : operator, then we may have a row or column range reference + $testPrevOp = $stack->last(1); + if ($testPrevOp['value'] == ':') { + $startRowColRef = $output[count($output)-1]['value']; + $rangeWS1 = ''; + if (strpos('!', $startRowColRef) !== false) { + list($rangeWS1, $startRowColRef) = explode('!', $startRowColRef); + } + if ($rangeWS1 != '') { + $rangeWS1 .= '!'; + } + $rangeWS2 = $rangeWS1; + if (strpos('!', $val) !== false) { + list($rangeWS2, $val) = explode('!', $val); + } + if ($rangeWS2 != '') { + $rangeWS2 .= '!'; + } + if ((is_integer($startRowColRef)) && (ctype_digit($val)) && + ($startRowColRef <= 1048576) && ($val <= 1048576)) { + // Row range + $endRowColRef = ($pCellParent !== null) ? $pCellParent->getHighestColumn() : 'XFD'; // Max 16,384 columns for Excel2007 + $output[count($output)-1]['value'] = $rangeWS1.'A'.$startRowColRef; + $val = $rangeWS2.$endRowColRef.$val; + } elseif ((ctype_alpha($startRowColRef)) && (ctype_alpha($val)) && + (strlen($startRowColRef) <= 3) && (strlen($val) <= 3)) { + // Column range + $endRowColRef = ($pCellParent !== null) ? $pCellParent->getHighestRow() : 1048576; // Max 1,048,576 rows for Excel2007 + $output[count($output)-1]['value'] = $rangeWS1.strtoupper($startRowColRef).'1'; + $val = $rangeWS2.$val.$endRowColRef; + } + } + + $localeConstant = false; + if ($opCharacter == '"') { +// echo 'Element is a String
'; + // UnEscape any quotes within the string + $val = self::wrapResult(str_replace('""', '"', self::unwrapResult($val))); + } elseif (is_numeric($val)) { +// echo 'Element is a Number
'; + if ((strpos($val, '.') !== false) || (stripos($val, 'e') !== false) || ($val > PHP_INT_MAX) || ($val < -PHP_INT_MAX)) { +// echo 'Casting '.$val.' to float
'; + $val = (float) $val; + } else { +// echo 'Casting '.$val.' to integer
'; + $val = (integer) $val; + } + } elseif (isset(self::$excelConstants[trim(strtoupper($val))])) { + $excelConstant = trim(strtoupper($val)); +// echo 'Element '.$excelConstant.' is an Excel Constant
'; + $val = self::$excelConstants[$excelConstant]; + } elseif (($localeConstant = array_search(trim(strtoupper($val)), self::$localeBoolean)) !== false) { +// echo 'Element '.$localeConstant.' is an Excel Constant
'; + $val = self::$excelConstants[$localeConstant]; + } + $details = array('type' => 'Value', 'value' => $val, 'reference' => null); + if ($localeConstant) { + $details['localeValue'] = $localeConstant; + } + $output[] = $details; + } + $index += $length; + + } elseif ($opCharacter == '$') { // absolute row or column range + ++$index; + } elseif ($opCharacter == ')') { // miscellaneous error checking + if ($expectingOperand) { + $output[] = array('type' => 'NULL Value', 'value' => self::$excelConstants['NULL'], 'reference' => null); + $expectingOperand = false; + $expectingOperator = true; + } else { + return $this->raiseFormulaError("Formula Error: Unexpected ')'"); + } + } elseif (isset(self::$operators[$opCharacter]) && !$expectingOperator) { + return $this->raiseFormulaError("Formula Error: Unexpected operator '$opCharacter'"); + } else { // I don't even want to know what you did to get here + return $this->raiseFormulaError("Formula Error: An unexpected error occured"); + } + // Test for end of formula string + if ($index == strlen($formula)) { + // Did we end with an operator?. + // Only valid for the % unary operator + if ((isset(self::$operators[$opCharacter])) && ($opCharacter != '%')) { + return $this->raiseFormulaError("Formula Error: Operator '$opCharacter' has no operands"); + } else { + break; + } + } + // Ignore white space + while (($formula{$index} == "\n") || ($formula{$index} == "\r")) { + ++$index; + } + if ($formula{$index} == ' ') { + while ($formula{$index} == ' ') { + ++$index; + } + // If we're expecting an operator, but only have a space between the previous and next operands (and both are + // Cell References) then we have an INTERSECTION operator +// echo 'Possible Intersect Operator
'; + if (($expectingOperator) && (preg_match('/^'.self::CALCULATION_REGEXP_CELLREF.'.*/Ui', substr($formula, $index), $match)) && + ($output[count($output)-1]['type'] == 'Cell Reference')) { +// echo 'Element is an Intersect Operator
'; + while ($stack->count() > 0 && + ($o2 = $stack->last()) && + isset(self::$operators[$o2['value']]) && + @(self::$operatorAssociativity[$opCharacter] ? self::$operatorPrecedence[$opCharacter] < self::$operatorPrecedence[$o2['value']] : self::$operatorPrecedence[$opCharacter] <= self::$operatorPrecedence[$o2['value']])) { + $output[] = $stack->pop(); // Swap operands and higher precedence operators from the stack to the output + } + $stack->push('Binary Operator', '|'); // Put an Intersect Operator on the stack + $expectingOperator = false; + } + } + } + + while (($op = $stack->pop()) !== null) { // pop everything off the stack and push onto output + if ((is_array($op) && $op['value'] == '(') || ($op === '(')) { + return $this->raiseFormulaError("Formula Error: Expecting ')'"); // if there are any opening braces on the stack, then braces were unbalanced + } + $output[] = $op; + } + return $output; + } + + + private static function dataTestReference(&$operandData) + { + $operand = $operandData['value']; + if (($operandData['reference'] === null) && (is_array($operand))) { + $rKeys = array_keys($operand); + $rowKey = array_shift($rKeys); + $cKeys = array_keys(array_keys($operand[$rowKey])); + $colKey = array_shift($cKeys); + if (ctype_upper($colKey)) { + $operandData['reference'] = $colKey.$rowKey; + } + } + return $operand; + } + + // evaluate postfix notation + private function processTokenStack($tokens, $cellID = null, PHPExcel_Cell $pCell = null) + { + if ($tokens == false) { + return false; + } + + // If we're using cell caching, then $pCell may well be flushed back to the cache (which detaches the parent cell collection), + // so we store the parent cell collection so that we can re-attach it when necessary + $pCellWorksheet = ($pCell !== null) ? $pCell->getWorksheet() : null; + $pCellParent = ($pCell !== null) ? $pCell->getParent() : null; + $stack = new PHPExcel_Calculation_Token_Stack; + + // Loop through each token in turn + foreach ($tokens as $tokenData) { +// print_r($tokenData); +// echo '
'; + $token = $tokenData['value']; +// echo 'Token is '.$token.'
'; + // if the token is a binary operator, pop the top two values off the stack, do the operation, and push the result back on the stack + if (isset(self::$binaryOperators[$token])) { +// echo 'Token is a binary operator
'; + // We must have two operands, error if we don't + if (($operand2Data = $stack->pop()) === null) { + return $this->raiseFormulaError('Internal error - Operand value missing from stack'); + } + if (($operand1Data = $stack->pop()) === null) { + return $this->raiseFormulaError('Internal error - Operand value missing from stack'); + } + + $operand1 = self::dataTestReference($operand1Data); + $operand2 = self::dataTestReference($operand2Data); + + // Log what we're doing + if ($token == ':') { + $this->_debugLog->writeDebugLog('Evaluating Range ', $this->showValue($operand1Data['reference']), ' ', $token, ' ', $this->showValue($operand2Data['reference'])); + } else { + $this->_debugLog->writeDebugLog('Evaluating ', $this->showValue($operand1), ' ', $token, ' ', $this->showValue($operand2)); + } + + // Process the operation in the appropriate manner + switch ($token) { + // Comparison (Boolean) Operators + case '>': // Greater than + case '<': // Less than + case '>=': // Greater than or Equal to + case '<=': // Less than or Equal to + case '=': // Equality + case '<>': // Inequality + $this->executeBinaryComparisonOperation($cellID, $operand1, $operand2, $token, $stack); + break; + // Binary Operators + case ':': // Range + $sheet1 = $sheet2 = ''; + if (strpos($operand1Data['reference'], '!') !== false) { + list($sheet1, $operand1Data['reference']) = explode('!', $operand1Data['reference']); + } else { + $sheet1 = ($pCellParent !== null) ? $pCellWorksheet->getTitle() : ''; + } + if (strpos($operand2Data['reference'], '!') !== false) { + list($sheet2, $operand2Data['reference']) = explode('!', $operand2Data['reference']); + } else { + $sheet2 = $sheet1; + } + if ($sheet1 == $sheet2) { + if ($operand1Data['reference'] === null) { + if ((trim($operand1Data['value']) != '') && (is_numeric($operand1Data['value']))) { + $operand1Data['reference'] = $pCell->getColumn().$operand1Data['value']; + } elseif (trim($operand1Data['reference']) == '') { + $operand1Data['reference'] = $pCell->getCoordinate(); + } else { + $operand1Data['reference'] = $operand1Data['value'].$pCell->getRow(); + } + } + if ($operand2Data['reference'] === null) { + if ((trim($operand2Data['value']) != '') && (is_numeric($operand2Data['value']))) { + $operand2Data['reference'] = $pCell->getColumn().$operand2Data['value']; + } elseif (trim($operand2Data['reference']) == '') { + $operand2Data['reference'] = $pCell->getCoordinate(); + } else { + $operand2Data['reference'] = $operand2Data['value'].$pCell->getRow(); + } + } + + $oData = array_merge(explode(':', $operand1Data['reference']), explode(':', $operand2Data['reference'])); + $oCol = $oRow = array(); + foreach ($oData as $oDatum) { + $oCR = PHPExcel_Cell::coordinateFromString($oDatum); + $oCol[] = PHPExcel_Cell::columnIndexFromString($oCR[0]) - 1; + $oRow[] = $oCR[1]; + } + $cellRef = PHPExcel_Cell::stringFromColumnIndex(min($oCol)).min($oRow).':'.PHPExcel_Cell::stringFromColumnIndex(max($oCol)).max($oRow); + if ($pCellParent !== null) { + $cellValue = $this->extractCellRange($cellRef, $this->workbook->getSheetByName($sheet1), false); + } else { + return $this->raiseFormulaError('Unable to access Cell Reference'); + } + $stack->push('Cell Reference', $cellValue, $cellRef); + } else { + $stack->push('Error', PHPExcel_Calculation_Functions::REF(), null); + } + break; + case '+': // Addition + $this->executeNumericBinaryOperation($cellID, $operand1, $operand2, $token, 'plusEquals', $stack); + break; + case '-': // Subtraction + $this->executeNumericBinaryOperation($cellID, $operand1, $operand2, $token, 'minusEquals', $stack); + break; + case '*': // Multiplication + $this->executeNumericBinaryOperation($cellID, $operand1, $operand2, $token, 'arrayTimesEquals', $stack); + break; + case '/': // Division + $this->executeNumericBinaryOperation($cellID, $operand1, $operand2, $token, 'arrayRightDivide', $stack); + break; + case '^': // Exponential + $this->executeNumericBinaryOperation($cellID, $operand1, $operand2, $token, 'power', $stack); + break; + case '&': // Concatenation + // If either of the operands is a matrix, we need to treat them both as matrices + // (converting the other operand to a matrix if need be); then perform the required + // matrix operation + if (is_bool($operand1)) { + $operand1 = ($operand1) ? self::$localeBoolean['TRUE'] : self::$localeBoolean['FALSE']; + } + if (is_bool($operand2)) { + $operand2 = ($operand2) ? self::$localeBoolean['TRUE'] : self::$localeBoolean['FALSE']; + } + if ((is_array($operand1)) || (is_array($operand2))) { + // Ensure that both operands are arrays/matrices + self::checkMatrixOperands($operand1, $operand2, 2); + try { + // Convert operand 1 from a PHP array to a matrix + $matrix = new PHPExcel_Shared_JAMA_Matrix($operand1); + // Perform the required operation against the operand 1 matrix, passing in operand 2 + $matrixResult = $matrix->concat($operand2); + $result = $matrixResult->getArray(); + } catch (PHPExcel_Exception $ex) { + $this->_debugLog->writeDebugLog('JAMA Matrix Exception: ', $ex->getMessage()); + $result = '#VALUE!'; + } + } else { + $result = '"'.str_replace('""', '"', self::unwrapResult($operand1, '"').self::unwrapResult($operand2, '"')).'"'; + } + $this->_debugLog->writeDebugLog('Evaluation Result is ', $this->showTypeDetails($result)); + $stack->push('Value', $result); + break; + case '|': // Intersect + $rowIntersect = array_intersect_key($operand1, $operand2); + $cellIntersect = $oCol = $oRow = array(); + foreach (array_keys($rowIntersect) as $row) { + $oRow[] = $row; + foreach ($rowIntersect[$row] as $col => $data) { + $oCol[] = PHPExcel_Cell::columnIndexFromString($col) - 1; + $cellIntersect[$row] = array_intersect_key($operand1[$row], $operand2[$row]); + } + } + $cellRef = PHPExcel_Cell::stringFromColumnIndex(min($oCol)).min($oRow).':'.PHPExcel_Cell::stringFromColumnIndex(max($oCol)).max($oRow); + $this->_debugLog->writeDebugLog('Evaluation Result is ', $this->showTypeDetails($cellIntersect)); + $stack->push('Value', $cellIntersect, $cellRef); + break; + } + + // if the token is a unary operator, pop one value off the stack, do the operation, and push it back on + } elseif (($token === '~') || ($token === '%')) { +// echo 'Token is a unary operator
'; + if (($arg = $stack->pop()) === null) { + return $this->raiseFormulaError('Internal error - Operand value missing from stack'); + } + $arg = $arg['value']; + if ($token === '~') { +// echo 'Token is a negation operator
'; + $this->_debugLog->writeDebugLog('Evaluating Negation of ', $this->showValue($arg)); + $multiplier = -1; + } else { +// echo 'Token is a percentile operator
'; + $this->_debugLog->writeDebugLog('Evaluating Percentile of ', $this->showValue($arg)); + $multiplier = 0.01; + } + if (is_array($arg)) { + self::checkMatrixOperands($arg, $multiplier, 2); + try { + $matrix1 = new PHPExcel_Shared_JAMA_Matrix($arg); + $matrixResult = $matrix1->arrayTimesEquals($multiplier); + $result = $matrixResult->getArray(); + } catch (PHPExcel_Exception $ex) { + $this->_debugLog->writeDebugLog('JAMA Matrix Exception: ', $ex->getMessage()); + $result = '#VALUE!'; + } + $this->_debugLog->writeDebugLog('Evaluation Result is ', $this->showTypeDetails($result)); + $stack->push('Value', $result); + } else { + $this->executeNumericBinaryOperation($cellID, $multiplier, $arg, '*', 'arrayTimesEquals', $stack); + } + + } elseif (preg_match('/^'.self::CALCULATION_REGEXP_CELLREF.'$/i', $token, $matches)) { + $cellRef = null; +// echo 'Element '.$token.' is a Cell reference
'; + if (isset($matches[8])) { +// echo 'Reference is a Range of cells
'; + if ($pCell === null) { +// We can't access the range, so return a REF error + $cellValue = PHPExcel_Calculation_Functions::REF(); + } else { + $cellRef = $matches[6].$matches[7].':'.$matches[9].$matches[10]; + if ($matches[2] > '') { + $matches[2] = trim($matches[2], "\"'"); + if ((strpos($matches[2], '[') !== false) || (strpos($matches[2], ']') !== false)) { + // It's a Reference to an external workbook (not currently supported) + return $this->raiseFormulaError('Unable to access External Workbook'); + } + $matches[2] = trim($matches[2], "\"'"); +// echo '$cellRef='.$cellRef.' in worksheet '.$matches[2].'
'; + $this->_debugLog->writeDebugLog('Evaluating Cell Range ', $cellRef, ' in worksheet ', $matches[2]); + if ($pCellParent !== null) { + $cellValue = $this->extractCellRange($cellRef, $this->workbook->getSheetByName($matches[2]), false); + } else { + return $this->raiseFormulaError('Unable to access Cell Reference'); + } + $this->_debugLog->writeDebugLog('Evaluation Result for cells ', $cellRef, ' in worksheet ', $matches[2], ' is ', $this->showTypeDetails($cellValue)); +// $cellRef = $matches[2].'!'.$cellRef; + } else { +// echo '$cellRef='.$cellRef.' in current worksheet
'; + $this->_debugLog->writeDebugLog('Evaluating Cell Range ', $cellRef, ' in current worksheet'); + if ($pCellParent !== null) { + $cellValue = $this->extractCellRange($cellRef, $pCellWorksheet, false); + } else { + return $this->raiseFormulaError('Unable to access Cell Reference'); + } + $this->_debugLog->writeDebugLog('Evaluation Result for cells ', $cellRef, ' is ', $this->showTypeDetails($cellValue)); + } + } + } else { +// echo 'Reference is a single Cell
'; + if ($pCell === null) { +// We can't access the cell, so return a REF error + $cellValue = PHPExcel_Calculation_Functions::REF(); + } else { + $cellRef = $matches[6].$matches[7]; + if ($matches[2] > '') { + $matches[2] = trim($matches[2], "\"'"); + if ((strpos($matches[2], '[') !== false) || (strpos($matches[2], ']') !== false)) { + // It's a Reference to an external workbook (not currently supported) + return $this->raiseFormulaError('Unable to access External Workbook'); + } +// echo '$cellRef='.$cellRef.' in worksheet '.$matches[2].'
'; + $this->_debugLog->writeDebugLog('Evaluating Cell ', $cellRef, ' in worksheet ', $matches[2]); + if ($pCellParent !== null) { + $cellSheet = $this->workbook->getSheetByName($matches[2]); + if ($cellSheet && $cellSheet->cellExists($cellRef)) { + $cellValue = $this->extractCellRange($cellRef, $this->workbook->getSheetByName($matches[2]), false); + $pCell->attach($pCellParent); + } else { + $cellValue = null; + } + } else { + return $this->raiseFormulaError('Unable to access Cell Reference'); + } + $this->_debugLog->writeDebugLog('Evaluation Result for cell ', $cellRef, ' in worksheet ', $matches[2], ' is ', $this->showTypeDetails($cellValue)); +// $cellRef = $matches[2].'!'.$cellRef; + } else { +// echo '$cellRef='.$cellRef.' in current worksheet
'; + $this->_debugLog->writeDebugLog('Evaluating Cell ', $cellRef, ' in current worksheet'); + if ($pCellParent->isDataSet($cellRef)) { + $cellValue = $this->extractCellRange($cellRef, $pCellWorksheet, false); + $pCell->attach($pCellParent); + } else { + $cellValue = null; + } + $this->_debugLog->writeDebugLog('Evaluation Result for cell ', $cellRef, ' is ', $this->showTypeDetails($cellValue)); + } + } + } + $stack->push('Value', $cellValue, $cellRef); + + // if the token is a function, pop arguments off the stack, hand them to the function, and push the result back on + } elseif (preg_match('/^'.self::CALCULATION_REGEXP_FUNCTION.'$/i', $token, $matches)) { +// echo 'Token is a function
'; + $functionName = $matches[1]; + $argCount = $stack->pop(); + $argCount = $argCount['value']; + if ($functionName != 'MKMATRIX') { + $this->_debugLog->writeDebugLog('Evaluating Function ', self::localeFunc($functionName), '() with ', (($argCount == 0) ? 'no' : $argCount), ' argument', (($argCount == 1) ? '' : 's')); + } + if ((isset(self::$PHPExcelFunctions[$functionName])) || (isset(self::$controlFunctions[$functionName]))) { // function + if (isset(self::$PHPExcelFunctions[$functionName])) { + $functionCall = self::$PHPExcelFunctions[$functionName]['functionCall']; + $passByReference = isset(self::$PHPExcelFunctions[$functionName]['passByReference']); + $passCellReference = isset(self::$PHPExcelFunctions[$functionName]['passCellReference']); + } elseif (isset(self::$controlFunctions[$functionName])) { + $functionCall = self::$controlFunctions[$functionName]['functionCall']; + $passByReference = isset(self::$controlFunctions[$functionName]['passByReference']); + $passCellReference = isset(self::$controlFunctions[$functionName]['passCellReference']); + } + // get the arguments for this function +// echo 'Function '.$functionName.' expects '.$argCount.' arguments
'; + $args = $argArrayVals = array(); + for ($i = 0; $i < $argCount; ++$i) { + $arg = $stack->pop(); + $a = $argCount - $i - 1; + if (($passByReference) && + (isset(self::$PHPExcelFunctions[$functionName]['passByReference'][$a])) && + (self::$PHPExcelFunctions[$functionName]['passByReference'][$a])) { + if ($arg['reference'] === null) { + $args[] = $cellID; + if ($functionName != 'MKMATRIX') { + $argArrayVals[] = $this->showValue($cellID); + } + } else { + $args[] = $arg['reference']; + if ($functionName != 'MKMATRIX') { + $argArrayVals[] = $this->showValue($arg['reference']); + } + } + } else { + $args[] = self::unwrapResult($arg['value']); + if ($functionName != 'MKMATRIX') { + $argArrayVals[] = $this->showValue($arg['value']); + } + } + } + // Reverse the order of the arguments + krsort($args); + if (($passByReference) && ($argCount == 0)) { + $args[] = $cellID; + $argArrayVals[] = $this->showValue($cellID); + } +// echo 'Arguments are: '; +// print_r($args); +// echo '
'; + if ($functionName != 'MKMATRIX') { + if ($this->_debugLog->getWriteDebugLog()) { + krsort($argArrayVals); + $this->_debugLog->writeDebugLog('Evaluating ', self::localeFunc($functionName), '( ', implode(self::$localeArgumentSeparator.' ', PHPExcel_Calculation_Functions::flattenArray($argArrayVals)), ' )'); + } + } + // Process each argument in turn, building the return value as an array +// if (($argCount == 1) && (is_array($args[1])) && ($functionName != 'MKMATRIX')) { +// $operand1 = $args[1]; +// $this->_debugLog->writeDebugLog('Argument is a matrix: ', $this->showValue($operand1)); +// $result = array(); +// $row = 0; +// foreach($operand1 as $args) { +// if (is_array($args)) { +// foreach($args as $arg) { +// $this->_debugLog->writeDebugLog('Evaluating ', self::localeFunc($functionName), '( ', $this->showValue($arg), ' )'); +// $r = call_user_func_array($functionCall, $arg); +// $this->_debugLog->writeDebugLog('Evaluation Result for ', self::localeFunc($functionName), '() function call is ', $this->showTypeDetails($r)); +// $result[$row][] = $r; +// } +// ++$row; +// } else { +// $this->_debugLog->writeDebugLog('Evaluating ', self::localeFunc($functionName), '( ', $this->showValue($args), ' )'); +// $r = call_user_func_array($functionCall, $args); +// $this->_debugLog->writeDebugLog('Evaluation Result for ', self::localeFunc($functionName), '() function call is ', $this->showTypeDetails($r)); +// $result[] = $r; +// } +// } +// } else { + // Process the argument with the appropriate function call + if ($passCellReference) { + $args[] = $pCell; + } + if (strpos($functionCall, '::') !== false) { + $result = call_user_func_array(explode('::', $functionCall), $args); + } else { + foreach ($args as &$arg) { + $arg = PHPExcel_Calculation_Functions::flattenSingleValue($arg); + } + unset($arg); + $result = call_user_func_array($functionCall, $args); + } + if ($functionName != 'MKMATRIX') { + $this->_debugLog->writeDebugLog('Evaluation Result for ', self::localeFunc($functionName), '() function call is ', $this->showTypeDetails($result)); + } + $stack->push('Value', self::wrapResult($result)); + } + + } else { + // if the token is a number, boolean, string or an Excel error, push it onto the stack + if (isset(self::$excelConstants[strtoupper($token)])) { + $excelConstant = strtoupper($token); +// echo 'Token is a PHPExcel constant: '.$excelConstant.'
'; + $stack->push('Constant Value', self::$excelConstants[$excelConstant]); + $this->_debugLog->writeDebugLog('Evaluating Constant ', $excelConstant, ' as ', $this->showTypeDetails(self::$excelConstants[$excelConstant])); + } elseif ((is_numeric($token)) || ($token === null) || (is_bool($token)) || ($token == '') || ($token{0} == '"') || ($token{0} == '#')) { +// echo 'Token is a number, boolean, string, null or an Excel error
'; + $stack->push('Value', $token); + // if the token is a named range, push the named range name onto the stack + } elseif (preg_match('/^'.self::CALCULATION_REGEXP_NAMEDRANGE.'$/i', $token, $matches)) { +// echo 'Token is a named range
'; + $namedRange = $matches[6]; +// echo 'Named Range is '.$namedRange.'
'; + $this->_debugLog->writeDebugLog('Evaluating Named Range ', $namedRange); + $cellValue = $this->extractNamedRange($namedRange, ((null !== $pCell) ? $pCellWorksheet : null), false); + $pCell->attach($pCellParent); + $this->_debugLog->writeDebugLog('Evaluation Result for named range ', $namedRange, ' is ', $this->showTypeDetails($cellValue)); + $stack->push('Named Range', $cellValue, $namedRange); + } else { + return $this->raiseFormulaError("undefined variable '$token'"); + } + } + } + // when we're out of tokens, the stack should have a single element, the final result + if ($stack->count() != 1) { + return $this->raiseFormulaError("internal error"); + } + $output = $stack->pop(); + $output = $output['value']; + +// if ((is_array($output)) && (self::$returnArrayAsType != self::RETURN_ARRAY_AS_ARRAY)) { +// return array_shift(PHPExcel_Calculation_Functions::flattenArray($output)); +// } + return $output; + } + + + private function validateBinaryOperand($cellID, &$operand, &$stack) + { + if (is_array($operand)) { + if ((count($operand, COUNT_RECURSIVE) - count($operand)) == 1) { + do { + $operand = array_pop($operand); + } while (is_array($operand)); + } + } + // Numbers, matrices and booleans can pass straight through, as they're already valid + if (is_string($operand)) { + // We only need special validations for the operand if it is a string + // Start by stripping off the quotation marks we use to identify true excel string values internally + if ($operand > '' && $operand{0} == '"') { + $operand = self::unwrapResult($operand); + } + // If the string is a numeric value, we treat it as a numeric, so no further testing + if (!is_numeric($operand)) { + // If not a numeric, test to see if the value is an Excel error, and so can't be used in normal binary operations + if ($operand > '' && $operand{0} == '#') { + $stack->push('Value', $operand); + $this->_debugLog->writeDebugLog('Evaluation Result is ', $this->showTypeDetails($operand)); + return false; + } elseif (!PHPExcel_Shared_String::convertToNumberIfFraction($operand)) { + // If not a numeric or a fraction, then it's a text string, and so can't be used in mathematical binary operations + $stack->push('Value', '#VALUE!'); + $this->_debugLog->writeDebugLog('Evaluation Result is a ', $this->showTypeDetails('#VALUE!')); + return false; + } + } + } + + // return a true if the value of the operand is one that we can use in normal binary operations + return true; + } + + + private function executeBinaryComparisonOperation($cellID, $operand1, $operand2, $operation, &$stack, $recursingArrays = false) + { + // If we're dealing with matrix operations, we want a matrix result + if ((is_array($operand1)) || (is_array($operand2))) { + $result = array(); + if ((is_array($operand1)) && (!is_array($operand2))) { + foreach ($operand1 as $x => $operandData) { + $this->_debugLog->writeDebugLog('Evaluating Comparison ', $this->showValue($operandData), ' ', $operation, ' ', $this->showValue($operand2)); + $this->executeBinaryComparisonOperation($cellID, $operandData, $operand2, $operation, $stack); + $r = $stack->pop(); + $result[$x] = $r['value']; + } + } elseif ((!is_array($operand1)) && (is_array($operand2))) { + foreach ($operand2 as $x => $operandData) { + $this->_debugLog->writeDebugLog('Evaluating Comparison ', $this->showValue($operand1), ' ', $operation, ' ', $this->showValue($operandData)); + $this->executeBinaryComparisonOperation($cellID, $operand1, $operandData, $operation, $stack); + $r = $stack->pop(); + $result[$x] = $r['value']; + } + } else { + if (!$recursingArrays) { + self::checkMatrixOperands($operand1, $operand2, 2); + } + foreach ($operand1 as $x => $operandData) { + $this->_debugLog->writeDebugLog('Evaluating Comparison ', $this->showValue($operandData), ' ', $operation, ' ', $this->showValue($operand2[$x])); + $this->executeBinaryComparisonOperation($cellID, $operandData, $operand2[$x], $operation, $stack, true); + $r = $stack->pop(); + $result[$x] = $r['value']; + } + } + // Log the result details + $this->_debugLog->writeDebugLog('Comparison Evaluation Result is ', $this->showTypeDetails($result)); + // And push the result onto the stack + $stack->push('Array', $result); + return true; + } + + // Simple validate the two operands if they are string values + if (is_string($operand1) && $operand1 > '' && $operand1{0} == '"') { + $operand1 = self::unwrapResult($operand1); + } + if (is_string($operand2) && $operand2 > '' && $operand2{0} == '"') { + $operand2 = self::unwrapResult($operand2); + } + + // Use case insensitive comparaison if not OpenOffice mode + if (PHPExcel_Calculation_Functions::getCompatibilityMode() != PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE) { + if (is_string($operand1)) { + $operand1 = strtoupper($operand1); + } + if (is_string($operand2)) { + $operand2 = strtoupper($operand2); + } + } + + $useLowercaseFirstComparison = is_string($operand1) && is_string($operand2) && PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE; + + // execute the necessary operation + switch ($operation) { + // Greater than + case '>': + if ($useLowercaseFirstComparison) { + $result = $this->strcmpLowercaseFirst($operand1, $operand2) > 0; + } else { + $result = ($operand1 > $operand2); + } + break; + // Less than + case '<': + if ($useLowercaseFirstComparison) { + $result = $this->strcmpLowercaseFirst($operand1, $operand2) < 0; + } else { + $result = ($operand1 < $operand2); + } + break; + // Equality + case '=': + if (is_numeric($operand1) && is_numeric($operand2)) { + $result = (abs($operand1 - $operand2) < $this->delta); + } else { + $result = strcmp($operand1, $operand2) == 0; + } + break; + // Greater than or equal + case '>=': + if (is_numeric($operand1) && is_numeric($operand2)) { + $result = ((abs($operand1 - $operand2) < $this->delta) || ($operand1 > $operand2)); + } elseif ($useLowercaseFirstComparison) { + $result = $this->strcmpLowercaseFirst($operand1, $operand2) >= 0; + } else { + $result = strcmp($operand1, $operand2) >= 0; + } + break; + // Less than or equal + case '<=': + if (is_numeric($operand1) && is_numeric($operand2)) { + $result = ((abs($operand1 - $operand2) < $this->delta) || ($operand1 < $operand2)); + } elseif ($useLowercaseFirstComparison) { + $result = $this->strcmpLowercaseFirst($operand1, $operand2) <= 0; + } else { + $result = strcmp($operand1, $operand2) <= 0; + } + break; + // Inequality + case '<>': + if (is_numeric($operand1) && is_numeric($operand2)) { + $result = (abs($operand1 - $operand2) > 1E-14); + } else { + $result = strcmp($operand1, $operand2) != 0; + } + break; + } + + // Log the result details + $this->_debugLog->writeDebugLog('Evaluation Result is ', $this->showTypeDetails($result)); + // And push the result onto the stack + $stack->push('Value', $result); + return true; + } + + /** + * Compare two strings in the same way as strcmp() except that lowercase come before uppercase letters + * @param string $str1 First string value for the comparison + * @param string $str2 Second string value for the comparison + * @return integer + */ + private function strcmpLowercaseFirst($str1, $str2) + { + $inversedStr1 = PHPExcel_Shared_String::StrCaseReverse($str1); + $inversedStr2 = PHPExcel_Shared_String::StrCaseReverse($str2); + + return strcmp($inversedStr1, $inversedStr2); + } + + private function executeNumericBinaryOperation($cellID, $operand1, $operand2, $operation, $matrixFunction, &$stack) + { + // Validate the two operands + if (!$this->validateBinaryOperand($cellID, $operand1, $stack)) { + return false; + } + if (!$this->validateBinaryOperand($cellID, $operand2, $stack)) { + return false; + } + + // If either of the operands is a matrix, we need to treat them both as matrices + // (converting the other operand to a matrix if need be); then perform the required + // matrix operation + if ((is_array($operand1)) || (is_array($operand2))) { + // Ensure that both operands are arrays/matrices of the same size + self::checkMatrixOperands($operand1, $operand2, 2); + + try { + // Convert operand 1 from a PHP array to a matrix + $matrix = new PHPExcel_Shared_JAMA_Matrix($operand1); + // Perform the required operation against the operand 1 matrix, passing in operand 2 + $matrixResult = $matrix->$matrixFunction($operand2); + $result = $matrixResult->getArray(); + } catch (PHPExcel_Exception $ex) { + $this->_debugLog->writeDebugLog('JAMA Matrix Exception: ', $ex->getMessage()); + $result = '#VALUE!'; + } + } else { + if ((PHPExcel_Calculation_Functions::getCompatibilityMode() != PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE) && + ((is_string($operand1) && !is_numeric($operand1) && strlen($operand1)>0) || + (is_string($operand2) && !is_numeric($operand2) && strlen($operand2)>0))) { + $result = PHPExcel_Calculation_Functions::VALUE(); + } else { + // If we're dealing with non-matrix operations, execute the necessary operation + switch ($operation) { + // Addition + case '+': + $result = $operand1 + $operand2; + break; + // Subtraction + case '-': + $result = $operand1 - $operand2; + break; + // Multiplication + case '*': + $result = $operand1 * $operand2; + break; + // Division + case '/': + if ($operand2 == 0) { + // Trap for Divide by Zero error + $stack->push('Value', '#DIV/0!'); + $this->_debugLog->writeDebugLog('Evaluation Result is ', $this->showTypeDetails('#DIV/0!')); + return false; + } else { + $result = $operand1 / $operand2; + } + break; + // Power + case '^': + $result = pow($operand1, $operand2); + break; + } + } + } + + // Log the result details + $this->_debugLog->writeDebugLog('Evaluation Result is ', $this->showTypeDetails($result)); + // And push the result onto the stack + $stack->push('Value', $result); + return true; + } + + + // trigger an error, but nicely, if need be + protected function raiseFormulaError($errorMessage) + { + $this->formulaError = $errorMessage; + $this->cyclicReferenceStack->clear(); + if (!$this->suppressFormulaErrors) { + throw new PHPExcel_Calculation_Exception($errorMessage); + } + trigger_error($errorMessage, E_USER_ERROR); + } + + + /** + * Extract range values + * + * @param string &$pRange String based range representation + * @param PHPExcel_Worksheet $pSheet Worksheet + * @param boolean $resetLog Flag indicating whether calculation log should be reset or not + * @return mixed Array of values in range if range contains more than one element. Otherwise, a single value is returned. + * @throws PHPExcel_Calculation_Exception + */ + public function extractCellRange(&$pRange = 'A1', PHPExcel_Worksheet $pSheet = null, $resetLog = true) + { + // Return value + $returnValue = array (); + +// echo 'extractCellRange('.$pRange.')', PHP_EOL; + if ($pSheet !== null) { + $pSheetName = $pSheet->getTitle(); +// echo 'Passed sheet name is '.$pSheetName.PHP_EOL; +// echo 'Range reference is '.$pRange.PHP_EOL; + if (strpos($pRange, '!') !== false) { +// echo '$pRange reference includes sheet reference', PHP_EOL; + list($pSheetName, $pRange) = PHPExcel_Worksheet::extractSheetTitle($pRange, true); +// echo 'New sheet name is '.$pSheetName, PHP_EOL; +// echo 'Adjusted Range reference is '.$pRange, PHP_EOL; + $pSheet = $this->workbook->getSheetByName($pSheetName); + } + + // Extract range + $aReferences = PHPExcel_Cell::extractAllCellReferencesInRange($pRange); + $pRange = $pSheetName.'!'.$pRange; + if (!isset($aReferences[1])) { + // Single cell in range + sscanf($aReferences[0], '%[A-Z]%d', $currentCol, $currentRow); + $cellValue = null; + if ($pSheet->cellExists($aReferences[0])) { + $returnValue[$currentRow][$currentCol] = $pSheet->getCell($aReferences[0])->getCalculatedValue($resetLog); + } else { + $returnValue[$currentRow][$currentCol] = null; + } + } else { + // Extract cell data for all cells in the range + foreach ($aReferences as $reference) { + // Extract range + sscanf($reference, '%[A-Z]%d', $currentCol, $currentRow); + $cellValue = null; + if ($pSheet->cellExists($reference)) { + $returnValue[$currentRow][$currentCol] = $pSheet->getCell($reference)->getCalculatedValue($resetLog); + } else { + $returnValue[$currentRow][$currentCol] = null; + } + } + } + } + + return $returnValue; + } + + + /** + * Extract range values + * + * @param string &$pRange String based range representation + * @param PHPExcel_Worksheet $pSheet Worksheet + * @return mixed Array of values in range if range contains more than one element. Otherwise, a single value is returned. + * @param boolean $resetLog Flag indicating whether calculation log should be reset or not + * @throws PHPExcel_Calculation_Exception + */ + public function extractNamedRange(&$pRange = 'A1', PHPExcel_Worksheet $pSheet = null, $resetLog = true) + { + // Return value + $returnValue = array (); + +// echo 'extractNamedRange('.$pRange.')
'; + if ($pSheet !== null) { + $pSheetName = $pSheet->getTitle(); +// echo 'Current sheet name is '.$pSheetName.'
'; +// echo 'Range reference is '.$pRange.'
'; + if (strpos($pRange, '!') !== false) { +// echo '$pRange reference includes sheet reference', PHP_EOL; + list($pSheetName, $pRange) = PHPExcel_Worksheet::extractSheetTitle($pRange, true); +// echo 'New sheet name is '.$pSheetName, PHP_EOL; +// echo 'Adjusted Range reference is '.$pRange, PHP_EOL; + $pSheet = $this->workbook->getSheetByName($pSheetName); + } + + // Named range? + $namedRange = PHPExcel_NamedRange::resolveRange($pRange, $pSheet); + if ($namedRange !== null) { + $pSheet = $namedRange->getWorksheet(); +// echo 'Named Range '.$pRange.' ('; + $pRange = $namedRange->getRange(); + $splitRange = PHPExcel_Cell::splitRange($pRange); + // Convert row and column references + if (ctype_alpha($splitRange[0][0])) { + $pRange = $splitRange[0][0] . '1:' . $splitRange[0][1] . $namedRange->getWorksheet()->getHighestRow(); + } elseif (ctype_digit($splitRange[0][0])) { + $pRange = 'A' . $splitRange[0][0] . ':' . $namedRange->getWorksheet()->getHighestColumn() . $splitRange[0][1]; + } +// echo $pRange.') is in sheet '.$namedRange->getWorksheet()->getTitle().'
'; + +// if ($pSheet->getTitle() != $namedRange->getWorksheet()->getTitle()) { +// if (!$namedRange->getLocalOnly()) { +// $pSheet = $namedRange->getWorksheet(); +// } else { +// return $returnValue; +// } +// } + } else { + return PHPExcel_Calculation_Functions::REF(); + } + + // Extract range + $aReferences = PHPExcel_Cell::extractAllCellReferencesInRange($pRange); +// var_dump($aReferences); + if (!isset($aReferences[1])) { + // Single cell (or single column or row) in range + list($currentCol, $currentRow) = PHPExcel_Cell::coordinateFromString($aReferences[0]); + $cellValue = null; + if ($pSheet->cellExists($aReferences[0])) { + $returnValue[$currentRow][$currentCol] = $pSheet->getCell($aReferences[0])->getCalculatedValue($resetLog); + } else { + $returnValue[$currentRow][$currentCol] = null; + } + } else { + // Extract cell data for all cells in the range + foreach ($aReferences as $reference) { + // Extract range + list($currentCol, $currentRow) = PHPExcel_Cell::coordinateFromString($reference); +// echo 'NAMED RANGE: $currentCol='.$currentCol.' $currentRow='.$currentRow.'
'; + $cellValue = null; + if ($pSheet->cellExists($reference)) { + $returnValue[$currentRow][$currentCol] = $pSheet->getCell($reference)->getCalculatedValue($resetLog); + } else { + $returnValue[$currentRow][$currentCol] = null; + } + } + } +// print_r($returnValue); +// echo '
'; + } + + return $returnValue; + } + + + /** + * Is a specific function implemented? + * + * @param string $pFunction Function Name + * @return boolean + */ + public function isImplemented($pFunction = '') + { + $pFunction = strtoupper($pFunction); + if (isset(self::$PHPExcelFunctions[$pFunction])) { + return (self::$PHPExcelFunctions[$pFunction]['functionCall'] != 'PHPExcel_Calculation_Functions::DUMMY'); + } else { + return false; + } + } + + + /** + * Get a list of all implemented functions as an array of function objects + * + * @return array of PHPExcel_Calculation_Function + */ + public function listFunctions() + { + $returnValue = array(); + + foreach (self::$PHPExcelFunctions as $functionName => $function) { + if ($function['functionCall'] != 'PHPExcel_Calculation_Functions::DUMMY') { + $returnValue[$functionName] = new PHPExcel_Calculation_Function( + $function['category'], + $functionName, + $function['functionCall'] + ); + } + } + + return $returnValue; + } + + + /** + * Get a list of all Excel function names + * + * @return array + */ + public function listAllFunctionNames() + { + return array_keys(self::$PHPExcelFunctions); + } + + /** + * Get a list of implemented Excel function names + * + * @return array + */ + public function listFunctionNames() + { + $returnValue = array(); + foreach (self::$PHPExcelFunctions as $functionName => $function) { + if ($function['functionCall'] != 'PHPExcel_Calculation_Functions::DUMMY') { + $returnValue[] = $functionName; + } + } + + return $returnValue; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Database.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Database.php new file mode 100644 index 0000000..b8d91cb --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Database.php @@ -0,0 +1,676 @@ + $criteriaName) { + $testCondition = array(); + $testConditionCount = 0; + foreach ($criteria as $row => $criterion) { + if ($criterion[$key] > '') { + $testCondition[] = '[:'.$criteriaName.']'.PHPExcel_Calculation_Functions::ifCondition($criterion[$key]); + $testConditionCount++; + } + } + if ($testConditionCount > 1) { + $testConditions[] = 'OR(' . implode(',', $testCondition) . ')'; + $testConditionsCount++; + } elseif ($testConditionCount == 1) { + $testConditions[] = $testCondition[0]; + $testConditionsCount++; + } + } + + if ($testConditionsCount > 1) { + $testConditionSet = 'AND(' . implode(',', $testConditions) . ')'; + } elseif ($testConditionsCount == 1) { + $testConditionSet = $testConditions[0]; + } + + // Loop through each row of the database + foreach ($database as $dataRow => $dataValues) { + // Substitute actual values from the database row for our [:placeholders] + $testConditionList = $testConditionSet; + foreach ($criteriaNames as $key => $criteriaName) { + $k = array_search($criteriaName, $fieldNames); + if (isset($dataValues[$k])) { + $dataValue = $dataValues[$k]; + $dataValue = (is_string($dataValue)) ? PHPExcel_Calculation::wrapResult(strtoupper($dataValue)) : $dataValue; + $testConditionList = str_replace('[:' . $criteriaName . ']', $dataValue, $testConditionList); + } + } + // evaluate the criteria against the row data + $result = PHPExcel_Calculation::getInstance()->_calculateFormulaValue('='.$testConditionList); + // If the row failed to meet the criteria, remove it from the database + if (!$result) { + unset($database[$dataRow]); + } + } + + return $database; + } + + + private static function getFilteredColumn($database, $field, $criteria) + { + // reduce the database to a set of rows that match all the criteria + $database = self::filter($database, $criteria); + // extract an array of values for the requested column + $colData = array(); + foreach ($database as $row) { + $colData[] = $row[$field]; + } + + return $colData; + } + + /** + * DAVERAGE + * + * Averages the values in a column of a list or database that match conditions you specify. + * + * Excel Function: + * DAVERAGE(database,field,criteria) + * + * @access public + * @category Database Functions + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param string|integer $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * @return float + * + */ + public static function DAVERAGE($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if (is_null($field)) { + return null; + } + + // Return + return PHPExcel_Calculation_Statistical::AVERAGE( + self::getFilteredColumn($database, $field, $criteria) + ); + } + + + /** + * DCOUNT + * + * Counts the cells that contain numbers in a column of a list or database that match conditions + * that you specify. + * + * Excel Function: + * DCOUNT(database,[field],criteria) + * + * Excel Function: + * DAVERAGE(database,field,criteria) + * + * @access public + * @category Database Functions + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param string|integer $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * @return integer + * + * @TODO The field argument is optional. If field is omitted, DCOUNT counts all records in the + * database that match the criteria. + * + */ + public static function DCOUNT($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if (is_null($field)) { + return null; + } + + // Return + return PHPExcel_Calculation_Statistical::COUNT( + self::getFilteredColumn($database, $field, $criteria) + ); + } + + + /** + * DCOUNTA + * + * Counts the nonblank cells in a column of a list or database that match conditions that you specify. + * + * Excel Function: + * DCOUNTA(database,[field],criteria) + * + * @access public + * @category Database Functions + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param string|integer $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * @return integer + * + * @TODO The field argument is optional. If field is omitted, DCOUNTA counts all records in the + * database that match the criteria. + * + */ + public static function DCOUNTA($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if (is_null($field)) { + return null; + } + + // reduce the database to a set of rows that match all the criteria + $database = self::filter($database, $criteria); + // extract an array of values for the requested column + $colData = array(); + foreach ($database as $row) { + $colData[] = $row[$field]; + } + + // Return + return PHPExcel_Calculation_Statistical::COUNTA( + self::getFilteredColumn($database, $field, $criteria) + ); + } + + + /** + * DGET + * + * Extracts a single value from a column of a list or database that matches conditions that you + * specify. + * + * Excel Function: + * DGET(database,field,criteria) + * + * @access public + * @category Database Functions + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param string|integer $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * @return mixed + * + */ + public static function DGET($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if (is_null($field)) { + return null; + } + + // Return + $colData = self::getFilteredColumn($database, $field, $criteria); + if (count($colData) > 1) { + return PHPExcel_Calculation_Functions::NaN(); + } + + return $colData[0]; + } + + + /** + * DMAX + * + * Returns the largest number in a column of a list or database that matches conditions you that + * specify. + * + * Excel Function: + * DMAX(database,field,criteria) + * + * @access public + * @category Database Functions + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param string|integer $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * @return float + * + */ + public static function DMAX($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if (is_null($field)) { + return null; + } + + // Return + return PHPExcel_Calculation_Statistical::MAX( + self::getFilteredColumn($database, $field, $criteria) + ); + } + + + /** + * DMIN + * + * Returns the smallest number in a column of a list or database that matches conditions you that + * specify. + * + * Excel Function: + * DMIN(database,field,criteria) + * + * @access public + * @category Database Functions + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param string|integer $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * @return float + * + */ + public static function DMIN($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if (is_null($field)) { + return null; + } + + // Return + return PHPExcel_Calculation_Statistical::MIN( + self::getFilteredColumn($database, $field, $criteria) + ); + } + + + /** + * DPRODUCT + * + * Multiplies the values in a column of a list or database that match conditions that you specify. + * + * Excel Function: + * DPRODUCT(database,field,criteria) + * + * @access public + * @category Database Functions + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param string|integer $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * @return float + * + */ + public static function DPRODUCT($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if (is_null($field)) { + return null; + } + + // Return + return PHPExcel_Calculation_MathTrig::PRODUCT( + self::getFilteredColumn($database, $field, $criteria) + ); + } + + + /** + * DSTDEV + * + * Estimates the standard deviation of a population based on a sample by using the numbers in a + * column of a list or database that match conditions that you specify. + * + * Excel Function: + * DSTDEV(database,field,criteria) + * + * @access public + * @category Database Functions + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param string|integer $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * @return float + * + */ + public static function DSTDEV($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if (is_null($field)) { + return null; + } + + // Return + return PHPExcel_Calculation_Statistical::STDEV( + self::getFilteredColumn($database, $field, $criteria) + ); + } + + + /** + * DSTDEVP + * + * Calculates the standard deviation of a population based on the entire population by using the + * numbers in a column of a list or database that match conditions that you specify. + * + * Excel Function: + * DSTDEVP(database,field,criteria) + * + * @access public + * @category Database Functions + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param string|integer $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * @return float + * + */ + public static function DSTDEVP($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if (is_null($field)) { + return null; + } + + // Return + return PHPExcel_Calculation_Statistical::STDEVP( + self::getFilteredColumn($database, $field, $criteria) + ); + } + + + /** + * DSUM + * + * Adds the numbers in a column of a list or database that match conditions that you specify. + * + * Excel Function: + * DSUM(database,field,criteria) + * + * @access public + * @category Database Functions + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param string|integer $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * @return float + * + */ + public static function DSUM($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if (is_null($field)) { + return null; + } + + // Return + return PHPExcel_Calculation_MathTrig::SUM( + self::getFilteredColumn($database, $field, $criteria) + ); + } + + + /** + * DVAR + * + * Estimates the variance of a population based on a sample by using the numbers in a column + * of a list or database that match conditions that you specify. + * + * Excel Function: + * DVAR(database,field,criteria) + * + * @access public + * @category Database Functions + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param string|integer $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * @return float + * + */ + public static function DVAR($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if (is_null($field)) { + return null; + } + + // Return + return PHPExcel_Calculation_Statistical::VARFunc( + self::getFilteredColumn($database, $field, $criteria) + ); + } + + + /** + * DVARP + * + * Calculates the variance of a population based on the entire population by using the numbers + * in a column of a list or database that match conditions that you specify. + * + * Excel Function: + * DVARP(database,field,criteria) + * + * @access public + * @category Database Functions + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param string|integer $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * @return float + * + */ + public static function DVARP($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if (is_null($field)) { + return null; + } + + // Return + return PHPExcel_Calculation_Statistical::VARP( + self::getFilteredColumn($database, $field, $criteria) + ); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php new file mode 100644 index 0000000..72f4c7a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php @@ -0,0 +1,1553 @@ +format('m'); + $oYear = (int) $PHPDateObject->format('Y'); + + $adjustmentMonthsString = (string) $adjustmentMonths; + if ($adjustmentMonths > 0) { + $adjustmentMonthsString = '+'.$adjustmentMonths; + } + if ($adjustmentMonths != 0) { + $PHPDateObject->modify($adjustmentMonthsString.' months'); + } + $nMonth = (int) $PHPDateObject->format('m'); + $nYear = (int) $PHPDateObject->format('Y'); + + $monthDiff = ($nMonth - $oMonth) + (($nYear - $oYear) * 12); + if ($monthDiff != $adjustmentMonths) { + $adjustDays = (int) $PHPDateObject->format('d'); + $adjustDaysString = '-'.$adjustDays.' days'; + $PHPDateObject->modify($adjustDaysString); + } + return $PHPDateObject; + } + + + /** + * DATETIMENOW + * + * Returns the current date and time. + * The NOW function is useful when you need to display the current date and time on a worksheet or + * calculate a value based on the current date and time, and have that value updated each time you + * open the worksheet. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the date + * and time format of your regional settings. PHPExcel does not change cell formatting in this way. + * + * Excel Function: + * NOW() + * + * @access public + * @category Date/Time Functions + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function DATETIMENOW() + { + $saveTimeZone = date_default_timezone_get(); + date_default_timezone_set('UTC'); + $retValue = false; + switch (PHPExcel_Calculation_Functions::getReturnDateType()) { + case PHPExcel_Calculation_Functions::RETURNDATE_EXCEL: + $retValue = (float) PHPExcel_Shared_Date::PHPToExcel(time()); + break; + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC: + $retValue = (integer) time(); + break; + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_OBJECT: + $retValue = new DateTime(); + break; + } + date_default_timezone_set($saveTimeZone); + + return $retValue; + } + + + /** + * DATENOW + * + * Returns the current date. + * The NOW function is useful when you need to display the current date and time on a worksheet or + * calculate a value based on the current date and time, and have that value updated each time you + * open the worksheet. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the date + * and time format of your regional settings. PHPExcel does not change cell formatting in this way. + * + * Excel Function: + * TODAY() + * + * @access public + * @category Date/Time Functions + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function DATENOW() + { + $saveTimeZone = date_default_timezone_get(); + date_default_timezone_set('UTC'); + $retValue = false; + $excelDateTime = floor(PHPExcel_Shared_Date::PHPToExcel(time())); + switch (PHPExcel_Calculation_Functions::getReturnDateType()) { + case PHPExcel_Calculation_Functions::RETURNDATE_EXCEL: + $retValue = (float) $excelDateTime; + break; + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC: + $retValue = (integer) PHPExcel_Shared_Date::ExcelToPHP($excelDateTime); + break; + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_OBJECT: + $retValue = PHPExcel_Shared_Date::ExcelToPHPObject($excelDateTime); + break; + } + date_default_timezone_set($saveTimeZone); + + return $retValue; + } + + + /** + * DATE + * + * The DATE function returns a value that represents a particular date. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the date + * format of your regional settings. PHPExcel does not change cell formatting in this way. + * + * Excel Function: + * DATE(year,month,day) + * + * PHPExcel is a lot more forgiving than MS Excel when passing non numeric values to this function. + * A Month name or abbreviation (English only at this point) such as 'January' or 'Jan' will still be accepted, + * as will a day value with a suffix (e.g. '21st' rather than simply 21); again only English language. + * + * @access public + * @category Date/Time Functions + * @param integer $year The value of the year argument can include one to four digits. + * Excel interprets the year argument according to the configured + * date system: 1900 or 1904. + * If year is between 0 (zero) and 1899 (inclusive), Excel adds that + * value to 1900 to calculate the year. For example, DATE(108,1,2) + * returns January 2, 2008 (1900+108). + * If year is between 1900 and 9999 (inclusive), Excel uses that + * value as the year. For example, DATE(2008,1,2) returns January 2, + * 2008. + * If year is less than 0 or is 10000 or greater, Excel returns the + * #NUM! error value. + * @param integer $month A positive or negative integer representing the month of the year + * from 1 to 12 (January to December). + * If month is greater than 12, month adds that number of months to + * the first month in the year specified. For example, DATE(2008,14,2) + * returns the serial number representing February 2, 2009. + * If month is less than 1, month subtracts the magnitude of that + * number of months, plus 1, from the first month in the year + * specified. For example, DATE(2008,-3,2) returns the serial number + * representing September 2, 2007. + * @param integer $day A positive or negative integer representing the day of the month + * from 1 to 31. + * If day is greater than the number of days in the month specified, + * day adds that number of days to the first day in the month. For + * example, DATE(2008,1,35) returns the serial number representing + * February 4, 2008. + * If day is less than 1, day subtracts the magnitude that number of + * days, plus one, from the first day of the month specified. For + * example, DATE(2008,1,-15) returns the serial number representing + * December 16, 2007. + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function DATE($year = 0, $month = 1, $day = 1) + { + $year = PHPExcel_Calculation_Functions::flattenSingleValue($year); + $month = PHPExcel_Calculation_Functions::flattenSingleValue($month); + $day = PHPExcel_Calculation_Functions::flattenSingleValue($day); + + if (($month !== null) && (!is_numeric($month))) { + $month = PHPExcel_Shared_Date::monthStringToNumber($month); + } + + if (($day !== null) && (!is_numeric($day))) { + $day = PHPExcel_Shared_Date::dayStringToNumber($day); + } + + $year = ($year !== null) ? PHPExcel_Shared_String::testStringAsNumeric($year) : 0; + $month = ($month !== null) ? PHPExcel_Shared_String::testStringAsNumeric($month) : 0; + $day = ($day !== null) ? PHPExcel_Shared_String::testStringAsNumeric($day) : 0; + if ((!is_numeric($year)) || + (!is_numeric($month)) || + (!is_numeric($day))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $year = (integer) $year; + $month = (integer) $month; + $day = (integer) $day; + + $baseYear = PHPExcel_Shared_Date::getExcelCalendar(); + // Validate parameters + if ($year < ($baseYear-1900)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ((($baseYear-1900) != 0) && ($year < $baseYear) && ($year >= 1900)) { + return PHPExcel_Calculation_Functions::NaN(); + } + + if (($year < $baseYear) && ($year >= ($baseYear-1900))) { + $year += 1900; + } + + if ($month < 1) { + // Handle year/month adjustment if month < 1 + --$month; + $year += ceil($month / 12) - 1; + $month = 13 - abs($month % 12); + } elseif ($month > 12) { + // Handle year/month adjustment if month > 12 + $year += floor($month / 12); + $month = ($month % 12); + } + + // Re-validate the year parameter after adjustments + if (($year < $baseYear) || ($year >= 10000)) { + return PHPExcel_Calculation_Functions::NaN(); + } + + // Execute function + $excelDateValue = PHPExcel_Shared_Date::FormattedPHPToExcel($year, $month, $day); + switch (PHPExcel_Calculation_Functions::getReturnDateType()) { + case PHPExcel_Calculation_Functions::RETURNDATE_EXCEL: + return (float) $excelDateValue; + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC: + return (integer) PHPExcel_Shared_Date::ExcelToPHP($excelDateValue); + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_OBJECT: + return PHPExcel_Shared_Date::ExcelToPHPObject($excelDateValue); + } + } + + + /** + * TIME + * + * The TIME function returns a value that represents a particular time. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the time + * format of your regional settings. PHPExcel does not change cell formatting in this way. + * + * Excel Function: + * TIME(hour,minute,second) + * + * @access public + * @category Date/Time Functions + * @param integer $hour A number from 0 (zero) to 32767 representing the hour. + * Any value greater than 23 will be divided by 24 and the remainder + * will be treated as the hour value. For example, TIME(27,0,0) = + * TIME(3,0,0) = .125 or 3:00 AM. + * @param integer $minute A number from 0 to 32767 representing the minute. + * Any value greater than 59 will be converted to hours and minutes. + * For example, TIME(0,750,0) = TIME(12,30,0) = .520833 or 12:30 PM. + * @param integer $second A number from 0 to 32767 representing the second. + * Any value greater than 59 will be converted to hours, minutes, + * and seconds. For example, TIME(0,0,2000) = TIME(0,33,22) = .023148 + * or 12:33:20 AM + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function TIME($hour = 0, $minute = 0, $second = 0) + { + $hour = PHPExcel_Calculation_Functions::flattenSingleValue($hour); + $minute = PHPExcel_Calculation_Functions::flattenSingleValue($minute); + $second = PHPExcel_Calculation_Functions::flattenSingleValue($second); + + if ($hour == '') { + $hour = 0; + } + if ($minute == '') { + $minute = 0; + } + if ($second == '') { + $second = 0; + } + + if ((!is_numeric($hour)) || (!is_numeric($minute)) || (!is_numeric($second))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $hour = (integer) $hour; + $minute = (integer) $minute; + $second = (integer) $second; + + if ($second < 0) { + $minute += floor($second / 60); + $second = 60 - abs($second % 60); + if ($second == 60) { + $second = 0; + } + } elseif ($second >= 60) { + $minute += floor($second / 60); + $second = $second % 60; + } + if ($minute < 0) { + $hour += floor($minute / 60); + $minute = 60 - abs($minute % 60); + if ($minute == 60) { + $minute = 0; + } + } elseif ($minute >= 60) { + $hour += floor($minute / 60); + $minute = $minute % 60; + } + + if ($hour > 23) { + $hour = $hour % 24; + } elseif ($hour < 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + + // Execute function + switch (PHPExcel_Calculation_Functions::getReturnDateType()) { + case PHPExcel_Calculation_Functions::RETURNDATE_EXCEL: + $date = 0; + $calendar = PHPExcel_Shared_Date::getExcelCalendar(); + if ($calendar != PHPExcel_Shared_Date::CALENDAR_WINDOWS_1900) { + $date = 1; + } + return (float) PHPExcel_Shared_Date::FormattedPHPToExcel($calendar, 1, $date, $hour, $minute, $second); + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC: + return (integer) PHPExcel_Shared_Date::ExcelToPHP(PHPExcel_Shared_Date::FormattedPHPToExcel(1970, 1, 1, $hour, $minute, $second)); // -2147468400; // -2147472000 + 3600 + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_OBJECT: + $dayAdjust = 0; + if ($hour < 0) { + $dayAdjust = floor($hour / 24); + $hour = 24 - abs($hour % 24); + if ($hour == 24) { + $hour = 0; + } + } elseif ($hour >= 24) { + $dayAdjust = floor($hour / 24); + $hour = $hour % 24; + } + $phpDateObject = new DateTime('1900-01-01 '.$hour.':'.$minute.':'.$second); + if ($dayAdjust != 0) { + $phpDateObject->modify($dayAdjust.' days'); + } + return $phpDateObject; + } + } + + + /** + * DATEVALUE + * + * Returns a value that represents a particular date. + * Use DATEVALUE to convert a date represented by a text string to an Excel or PHP date/time stamp + * value. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the date + * format of your regional settings. PHPExcel does not change cell formatting in this way. + * + * Excel Function: + * DATEVALUE(dateValue) + * + * @access public + * @category Date/Time Functions + * @param string $dateValue Text that represents a date in a Microsoft Excel date format. + * For example, "1/30/2008" or "30-Jan-2008" are text strings within + * quotation marks that represent dates. Using the default date + * system in Excel for Windows, date_text must represent a date from + * January 1, 1900, to December 31, 9999. Using the default date + * system in Excel for the Macintosh, date_text must represent a date + * from January 1, 1904, to December 31, 9999. DATEVALUE returns the + * #VALUE! error value if date_text is out of this range. + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function DATEVALUE($dateValue = 1) + { + $dateValue = trim(PHPExcel_Calculation_Functions::flattenSingleValue($dateValue), '"'); + // Strip any ordinals because they're allowed in Excel (English only) + $dateValue = preg_replace('/(\d)(st|nd|rd|th)([ -\/])/Ui', '$1$3', $dateValue); + // Convert separators (/ . or space) to hyphens (should also handle dot used for ordinals in some countries, e.g. Denmark, Germany) + $dateValue = str_replace(array('/', '.', '-', ' '), array(' ', ' ', ' ', ' '), $dateValue); + + $yearFound = false; + $t1 = explode(' ', $dateValue); + foreach ($t1 as &$t) { + if ((is_numeric($t)) && ($t > 31)) { + if ($yearFound) { + return PHPExcel_Calculation_Functions::VALUE(); + } else { + if ($t < 100) { + $t += 1900; + } + $yearFound = true; + } + } + } + if ((count($t1) == 1) && (strpos($t, ':') != false)) { + // We've been fed a time value without any date + return 0.0; + } elseif (count($t1) == 2) { + // We only have two parts of the date: either day/month or month/year + if ($yearFound) { + array_unshift($t1, 1); + } else { + array_push($t1, date('Y')); + } + } + unset($t); + $dateValue = implode(' ', $t1); + + $PHPDateArray = date_parse($dateValue); + if (($PHPDateArray === false) || ($PHPDateArray['error_count'] > 0)) { + $testVal1 = strtok($dateValue, '- '); + if ($testVal1 !== false) { + $testVal2 = strtok('- '); + if ($testVal2 !== false) { + $testVal3 = strtok('- '); + if ($testVal3 === false) { + $testVal3 = strftime('%Y'); + } + } else { + return PHPExcel_Calculation_Functions::VALUE(); + } + } else { + return PHPExcel_Calculation_Functions::VALUE(); + } + $PHPDateArray = date_parse($testVal1.'-'.$testVal2.'-'.$testVal3); + if (($PHPDateArray === false) || ($PHPDateArray['error_count'] > 0)) { + $PHPDateArray = date_parse($testVal2.'-'.$testVal1.'-'.$testVal3); + if (($PHPDateArray === false) || ($PHPDateArray['error_count'] > 0)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + } + + if (($PHPDateArray !== false) && ($PHPDateArray['error_count'] == 0)) { + // Execute function + if ($PHPDateArray['year'] == '') { + $PHPDateArray['year'] = strftime('%Y'); + } + if ($PHPDateArray['year'] < 1900) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if ($PHPDateArray['month'] == '') { + $PHPDateArray['month'] = strftime('%m'); + } + if ($PHPDateArray['day'] == '') { + $PHPDateArray['day'] = strftime('%d'); + } + $excelDateValue = floor( + PHPExcel_Shared_Date::FormattedPHPToExcel( + $PHPDateArray['year'], + $PHPDateArray['month'], + $PHPDateArray['day'], + $PHPDateArray['hour'], + $PHPDateArray['minute'], + $PHPDateArray['second'] + ) + ); + + switch (PHPExcel_Calculation_Functions::getReturnDateType()) { + case PHPExcel_Calculation_Functions::RETURNDATE_EXCEL: + return (float) $excelDateValue; + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC: + return (integer) PHPExcel_Shared_Date::ExcelToPHP($excelDateValue); + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_OBJECT: + return new DateTime($PHPDateArray['year'].'-'.$PHPDateArray['month'].'-'.$PHPDateArray['day'].' 00:00:00'); + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * TIMEVALUE + * + * Returns a value that represents a particular time. + * Use TIMEVALUE to convert a time represented by a text string to an Excel or PHP date/time stamp + * value. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the time + * format of your regional settings. PHPExcel does not change cell formatting in this way. + * + * Excel Function: + * TIMEVALUE(timeValue) + * + * @access public + * @category Date/Time Functions + * @param string $timeValue A text string that represents a time in any one of the Microsoft + * Excel time formats; for example, "6:45 PM" and "18:45" text strings + * within quotation marks that represent time. + * Date information in time_text is ignored. + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function TIMEVALUE($timeValue) + { + $timeValue = trim(PHPExcel_Calculation_Functions::flattenSingleValue($timeValue), '"'); + $timeValue = str_replace(array('/', '.'), array('-', '-'), $timeValue); + + $PHPDateArray = date_parse($timeValue); + if (($PHPDateArray !== false) && ($PHPDateArray['error_count'] == 0)) { + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE) { + $excelDateValue = PHPExcel_Shared_Date::FormattedPHPToExcel( + $PHPDateArray['year'], + $PHPDateArray['month'], + $PHPDateArray['day'], + $PHPDateArray['hour'], + $PHPDateArray['minute'], + $PHPDateArray['second'] + ); + } else { + $excelDateValue = PHPExcel_Shared_Date::FormattedPHPToExcel(1900, 1, 1, $PHPDateArray['hour'], $PHPDateArray['minute'], $PHPDateArray['second']) - 1; + } + + switch (PHPExcel_Calculation_Functions::getReturnDateType()) { + case PHPExcel_Calculation_Functions::RETURNDATE_EXCEL: + return (float) $excelDateValue; + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC: + return (integer) $phpDateValue = PHPExcel_Shared_Date::ExcelToPHP($excelDateValue+25569) - 3600; + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_OBJECT: + return new DateTime('1900-01-01 '.$PHPDateArray['hour'].':'.$PHPDateArray['minute'].':'.$PHPDateArray['second']); + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * DATEDIF + * + * @param mixed $startDate Excel date serial value, PHP date/time stamp, PHP DateTime object + * or a standard date string + * @param mixed $endDate Excel date serial value, PHP date/time stamp, PHP DateTime object + * or a standard date string + * @param string $unit + * @return integer Interval between the dates + */ + public static function DATEDIF($startDate = 0, $endDate = 0, $unit = 'D') + { + $startDate = PHPExcel_Calculation_Functions::flattenSingleValue($startDate); + $endDate = PHPExcel_Calculation_Functions::flattenSingleValue($endDate); + $unit = strtoupper(PHPExcel_Calculation_Functions::flattenSingleValue($unit)); + + if (is_string($startDate = self::getDateValue($startDate))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if (is_string($endDate = self::getDateValue($endDate))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + // Validate parameters + if ($startDate >= $endDate) { + return PHPExcel_Calculation_Functions::NaN(); + } + + // Execute function + $difference = $endDate - $startDate; + + $PHPStartDateObject = PHPExcel_Shared_Date::ExcelToPHPObject($startDate); + $startDays = $PHPStartDateObject->format('j'); + $startMonths = $PHPStartDateObject->format('n'); + $startYears = $PHPStartDateObject->format('Y'); + + $PHPEndDateObject = PHPExcel_Shared_Date::ExcelToPHPObject($endDate); + $endDays = $PHPEndDateObject->format('j'); + $endMonths = $PHPEndDateObject->format('n'); + $endYears = $PHPEndDateObject->format('Y'); + + $retVal = PHPExcel_Calculation_Functions::NaN(); + switch ($unit) { + case 'D': + $retVal = intval($difference); + break; + case 'M': + $retVal = intval($endMonths - $startMonths) + (intval($endYears - $startYears) * 12); + // We're only interested in full months + if ($endDays < $startDays) { + --$retVal; + } + break; + case 'Y': + $retVal = intval($endYears - $startYears); + // We're only interested in full months + if ($endMonths < $startMonths) { + --$retVal; + } elseif (($endMonths == $startMonths) && ($endDays < $startDays)) { + --$retVal; + } + break; + case 'MD': + if ($endDays < $startDays) { + $retVal = $endDays; + $PHPEndDateObject->modify('-'.$endDays.' days'); + $adjustDays = $PHPEndDateObject->format('j'); + if ($adjustDays > $startDays) { + $retVal += ($adjustDays - $startDays); + } + } else { + $retVal = $endDays - $startDays; + } + break; + case 'YM': + $retVal = intval($endMonths - $startMonths); + if ($retVal < 0) { + $retVal += 12; + } + // We're only interested in full months + if ($endDays < $startDays) { + --$retVal; + } + break; + case 'YD': + $retVal = intval($difference); + if ($endYears > $startYears) { + while ($endYears > $startYears) { + $PHPEndDateObject->modify('-1 year'); + $endYears = $PHPEndDateObject->format('Y'); + } + $retVal = $PHPEndDateObject->format('z') - $PHPStartDateObject->format('z'); + if ($retVal < 0) { + $retVal += 365; + } + } + break; + default: + $retVal = PHPExcel_Calculation_Functions::NaN(); + } + return $retVal; + } + + + /** + * DAYS360 + * + * Returns the number of days between two dates based on a 360-day year (twelve 30-day months), + * which is used in some accounting calculations. Use this function to help compute payments if + * your accounting system is based on twelve 30-day months. + * + * Excel Function: + * DAYS360(startDate,endDate[,method]) + * + * @access public + * @category Date/Time Functions + * @param mixed $startDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param mixed $endDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param boolean $method US or European Method + * FALSE or omitted: U.S. (NASD) method. If the starting date is + * the last day of a month, it becomes equal to the 30th of the + * same month. If the ending date is the last day of a month and + * the starting date is earlier than the 30th of a month, the + * ending date becomes equal to the 1st of the next month; + * otherwise the ending date becomes equal to the 30th of the + * same month. + * TRUE: European method. Starting dates and ending dates that + * occur on the 31st of a month become equal to the 30th of the + * same month. + * @return integer Number of days between start date and end date + */ + public static function DAYS360($startDate = 0, $endDate = 0, $method = false) + { + $startDate = PHPExcel_Calculation_Functions::flattenSingleValue($startDate); + $endDate = PHPExcel_Calculation_Functions::flattenSingleValue($endDate); + + if (is_string($startDate = self::getDateValue($startDate))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if (is_string($endDate = self::getDateValue($endDate))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + if (!is_bool($method)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + // Execute function + $PHPStartDateObject = PHPExcel_Shared_Date::ExcelToPHPObject($startDate); + $startDay = $PHPStartDateObject->format('j'); + $startMonth = $PHPStartDateObject->format('n'); + $startYear = $PHPStartDateObject->format('Y'); + + $PHPEndDateObject = PHPExcel_Shared_Date::ExcelToPHPObject($endDate); + $endDay = $PHPEndDateObject->format('j'); + $endMonth = $PHPEndDateObject->format('n'); + $endYear = $PHPEndDateObject->format('Y'); + + return self::dateDiff360($startDay, $startMonth, $startYear, $endDay, $endMonth, $endYear, !$method); + } + + + /** + * YEARFRAC + * + * Calculates the fraction of the year represented by the number of whole days between two dates + * (the start_date and the end_date). + * Use the YEARFRAC worksheet function to identify the proportion of a whole year's benefits or + * obligations to assign to a specific term. + * + * Excel Function: + * YEARFRAC(startDate,endDate[,method]) + * + * @access public + * @category Date/Time Functions + * @param mixed $startDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param mixed $endDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param integer $method Method used for the calculation + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return float fraction of the year + */ + public static function YEARFRAC($startDate = 0, $endDate = 0, $method = 0) + { + $startDate = PHPExcel_Calculation_Functions::flattenSingleValue($startDate); + $endDate = PHPExcel_Calculation_Functions::flattenSingleValue($endDate); + $method = PHPExcel_Calculation_Functions::flattenSingleValue($method); + + if (is_string($startDate = self::getDateValue($startDate))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if (is_string($endDate = self::getDateValue($endDate))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + if (((is_numeric($method)) && (!is_string($method))) || ($method == '')) { + switch ($method) { + case 0: + return self::DAYS360($startDate, $endDate) / 360; + case 1: + $days = self::DATEDIF($startDate, $endDate); + $startYear = self::YEAR($startDate); + $endYear = self::YEAR($endDate); + $years = $endYear - $startYear + 1; + $leapDays = 0; + if ($years == 1) { + if (self::isLeapYear($endYear)) { + $startMonth = self::MONTHOFYEAR($startDate); + $endMonth = self::MONTHOFYEAR($endDate); + $endDay = self::DAYOFMONTH($endDate); + if (($startMonth < 3) || + (($endMonth * 100 + $endDay) >= (2 * 100 + 29))) { + $leapDays += 1; + } + } + } else { + for ($year = $startYear; $year <= $endYear; ++$year) { + if ($year == $startYear) { + $startMonth = self::MONTHOFYEAR($startDate); + $startDay = self::DAYOFMONTH($startDate); + if ($startMonth < 3) { + $leapDays += (self::isLeapYear($year)) ? 1 : 0; + } + } elseif ($year == $endYear) { + $endMonth = self::MONTHOFYEAR($endDate); + $endDay = self::DAYOFMONTH($endDate); + if (($endMonth * 100 + $endDay) >= (2 * 100 + 29)) { + $leapDays += (self::isLeapYear($year)) ? 1 : 0; + } + } else { + $leapDays += (self::isLeapYear($year)) ? 1 : 0; + } + } + if ($years == 2) { + if (($leapDays == 0) && (self::isLeapYear($startYear)) && ($days > 365)) { + $leapDays = 1; + } elseif ($days < 366) { + $years = 1; + } + } + $leapDays /= $years; + } + return $days / (365 + $leapDays); + case 2: + return self::DATEDIF($startDate, $endDate) / 360; + case 3: + return self::DATEDIF($startDate, $endDate) / 365; + case 4: + return self::DAYS360($startDate, $endDate, true) / 360; + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * NETWORKDAYS + * + * Returns the number of whole working days between start_date and end_date. Working days + * exclude weekends and any dates identified in holidays. + * Use NETWORKDAYS to calculate employee benefits that accrue based on the number of days + * worked during a specific term. + * + * Excel Function: + * NETWORKDAYS(startDate,endDate[,holidays[,holiday[,...]]]) + * + * @access public + * @category Date/Time Functions + * @param mixed $startDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param mixed $endDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param mixed $holidays,... Optional series of Excel date serial value (float), PHP date + * timestamp (integer), PHP DateTime object, or a standard date + * strings that will be excluded from the working calendar, such + * as state and federal holidays and floating holidays. + * @return integer Interval between the dates + */ + public static function NETWORKDAYS($startDate, $endDate) + { + // Retrieve the mandatory start and end date that are referenced in the function definition + $startDate = PHPExcel_Calculation_Functions::flattenSingleValue($startDate); + $endDate = PHPExcel_Calculation_Functions::flattenSingleValue($endDate); + // Flush the mandatory start and end date that are referenced in the function definition, and get the optional days + $dateArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + array_shift($dateArgs); + array_shift($dateArgs); + + // Validate the start and end dates + if (is_string($startDate = $sDate = self::getDateValue($startDate))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $startDate = (float) floor($startDate); + if (is_string($endDate = $eDate = self::getDateValue($endDate))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $endDate = (float) floor($endDate); + + if ($sDate > $eDate) { + $startDate = $eDate; + $endDate = $sDate; + } + + // Execute function + $startDoW = 6 - self::DAYOFWEEK($startDate, 2); + if ($startDoW < 0) { + $startDoW = 0; + } + $endDoW = self::DAYOFWEEK($endDate, 2); + if ($endDoW >= 6) { + $endDoW = 0; + } + + $wholeWeekDays = floor(($endDate - $startDate) / 7) * 5; + $partWeekDays = $endDoW + $startDoW; + if ($partWeekDays > 5) { + $partWeekDays -= 5; + } + + // Test any extra holiday parameters + $holidayCountedArray = array(); + foreach ($dateArgs as $holidayDate) { + if (is_string($holidayDate = self::getDateValue($holidayDate))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if (($holidayDate >= $startDate) && ($holidayDate <= $endDate)) { + if ((self::DAYOFWEEK($holidayDate, 2) < 6) && (!in_array($holidayDate, $holidayCountedArray))) { + --$partWeekDays; + $holidayCountedArray[] = $holidayDate; + } + } + } + + if ($sDate > $eDate) { + return 0 - ($wholeWeekDays + $partWeekDays); + } + return $wholeWeekDays + $partWeekDays; + } + + + /** + * WORKDAY + * + * Returns the date that is the indicated number of working days before or after a date (the + * starting date). Working days exclude weekends and any dates identified as holidays. + * Use WORKDAY to exclude weekends or holidays when you calculate invoice due dates, expected + * delivery times, or the number of days of work performed. + * + * Excel Function: + * WORKDAY(startDate,endDays[,holidays[,holiday[,...]]]) + * + * @access public + * @category Date/Time Functions + * @param mixed $startDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param integer $endDays The number of nonweekend and nonholiday days before or after + * startDate. A positive value for days yields a future date; a + * negative value yields a past date. + * @param mixed $holidays,... Optional series of Excel date serial value (float), PHP date + * timestamp (integer), PHP DateTime object, or a standard date + * strings that will be excluded from the working calendar, such + * as state and federal holidays and floating holidays. + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function WORKDAY($startDate, $endDays) + { + // Retrieve the mandatory start date and days that are referenced in the function definition + $startDate = PHPExcel_Calculation_Functions::flattenSingleValue($startDate); + $endDays = PHPExcel_Calculation_Functions::flattenSingleValue($endDays); + // Flush the mandatory start date and days that are referenced in the function definition, and get the optional days + $dateArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + array_shift($dateArgs); + array_shift($dateArgs); + + if ((is_string($startDate = self::getDateValue($startDate))) || (!is_numeric($endDays))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $startDate = (float) floor($startDate); + $endDays = (int) floor($endDays); + // If endDays is 0, we always return startDate + if ($endDays == 0) { + return $startDate; + } + + $decrementing = ($endDays < 0) ? true : false; + + // Adjust the start date if it falls over a weekend + + $startDoW = self::DAYOFWEEK($startDate, 3); + if (self::DAYOFWEEK($startDate, 3) >= 5) { + $startDate += ($decrementing) ? -$startDoW + 4: 7 - $startDoW; + ($decrementing) ? $endDays++ : $endDays--; + } + + // Add endDays + $endDate = (float) $startDate + (intval($endDays / 5) * 7) + ($endDays % 5); + + // Adjust the calculated end date if it falls over a weekend + $endDoW = self::DAYOFWEEK($endDate, 3); + if ($endDoW >= 5) { + $endDate += ($decrementing) ? -$endDoW + 4: 7 - $endDoW; + } + + // Test any extra holiday parameters + if (!empty($dateArgs)) { + $holidayCountedArray = $holidayDates = array(); + foreach ($dateArgs as $holidayDate) { + if (($holidayDate !== null) && (trim($holidayDate) > '')) { + if (is_string($holidayDate = self::getDateValue($holidayDate))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if (self::DAYOFWEEK($holidayDate, 3) < 5) { + $holidayDates[] = $holidayDate; + } + } + } + if ($decrementing) { + rsort($holidayDates, SORT_NUMERIC); + } else { + sort($holidayDates, SORT_NUMERIC); + } + foreach ($holidayDates as $holidayDate) { + if ($decrementing) { + if (($holidayDate <= $startDate) && ($holidayDate >= $endDate)) { + if (!in_array($holidayDate, $holidayCountedArray)) { + --$endDate; + $holidayCountedArray[] = $holidayDate; + } + } + } else { + if (($holidayDate >= $startDate) && ($holidayDate <= $endDate)) { + if (!in_array($holidayDate, $holidayCountedArray)) { + ++$endDate; + $holidayCountedArray[] = $holidayDate; + } + } + } + // Adjust the calculated end date if it falls over a weekend + $endDoW = self::DAYOFWEEK($endDate, 3); + if ($endDoW >= 5) { + $endDate += ($decrementing) ? -$endDoW + 4 : 7 - $endDoW; + } + } + } + + switch (PHPExcel_Calculation_Functions::getReturnDateType()) { + case PHPExcel_Calculation_Functions::RETURNDATE_EXCEL: + return (float) $endDate; + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC: + return (integer) PHPExcel_Shared_Date::ExcelToPHP($endDate); + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_OBJECT: + return PHPExcel_Shared_Date::ExcelToPHPObject($endDate); + } + } + + + /** + * DAYOFMONTH + * + * Returns the day of the month, for a specified date. The day is given as an integer + * ranging from 1 to 31. + * + * Excel Function: + * DAY(dateValue) + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @return int Day of the month + */ + public static function DAYOFMONTH($dateValue = 1) + { + $dateValue = PHPExcel_Calculation_Functions::flattenSingleValue($dateValue); + + if ($dateValue === null) { + $dateValue = 1; + } elseif (is_string($dateValue = self::getDateValue($dateValue))) { + return PHPExcel_Calculation_Functions::VALUE(); + } elseif ($dateValue == 0.0) { + return 0; + } elseif ($dateValue < 0.0) { + return PHPExcel_Calculation_Functions::NaN(); + } + + // Execute function + $PHPDateObject = PHPExcel_Shared_Date::ExcelToPHPObject($dateValue); + + return (int) $PHPDateObject->format('j'); + } + + + /** + * DAYOFWEEK + * + * Returns the day of the week for a specified date. The day is given as an integer + * ranging from 0 to 7 (dependent on the requested style). + * + * Excel Function: + * WEEKDAY(dateValue[,style]) + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param int $style A number that determines the type of return value + * 1 or omitted Numbers 1 (Sunday) through 7 (Saturday). + * 2 Numbers 1 (Monday) through 7 (Sunday). + * 3 Numbers 0 (Monday) through 6 (Sunday). + * @return int Day of the week value + */ + public static function DAYOFWEEK($dateValue = 1, $style = 1) + { + $dateValue = PHPExcel_Calculation_Functions::flattenSingleValue($dateValue); + $style = PHPExcel_Calculation_Functions::flattenSingleValue($style); + + if (!is_numeric($style)) { + return PHPExcel_Calculation_Functions::VALUE(); + } elseif (($style < 1) || ($style > 3)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $style = floor($style); + + if ($dateValue === null) { + $dateValue = 1; + } elseif (is_string($dateValue = self::getDateValue($dateValue))) { + return PHPExcel_Calculation_Functions::VALUE(); + } elseif ($dateValue < 0.0) { + return PHPExcel_Calculation_Functions::NaN(); + } + + // Execute function + $PHPDateObject = PHPExcel_Shared_Date::ExcelToPHPObject($dateValue); + $DoW = $PHPDateObject->format('w'); + + $firstDay = 1; + switch ($style) { + case 1: + ++$DoW; + break; + case 2: + if ($DoW == 0) { + $DoW = 7; + } + break; + case 3: + if ($DoW == 0) { + $DoW = 7; + } + $firstDay = 0; + --$DoW; + break; + } + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_EXCEL) { + // Test for Excel's 1900 leap year, and introduce the error as required + if (($PHPDateObject->format('Y') == 1900) && ($PHPDateObject->format('n') <= 2)) { + --$DoW; + if ($DoW < $firstDay) { + $DoW += 7; + } + } + } + + return (int) $DoW; + } + + + /** + * WEEKOFYEAR + * + * Returns the week of the year for a specified date. + * The WEEKNUM function considers the week containing January 1 to be the first week of the year. + * However, there is a European standard that defines the first week as the one with the majority + * of days (four or more) falling in the new year. This means that for years in which there are + * three days or less in the first week of January, the WEEKNUM function returns week numbers + * that are incorrect according to the European standard. + * + * Excel Function: + * WEEKNUM(dateValue[,style]) + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param boolean $method Week begins on Sunday or Monday + * 1 or omitted Week begins on Sunday. + * 2 Week begins on Monday. + * @return int Week Number + */ + public static function WEEKOFYEAR($dateValue = 1, $method = 1) + { + $dateValue = PHPExcel_Calculation_Functions::flattenSingleValue($dateValue); + $method = PHPExcel_Calculation_Functions::flattenSingleValue($method); + + if (!is_numeric($method)) { + return PHPExcel_Calculation_Functions::VALUE(); + } elseif (($method < 1) || ($method > 2)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $method = floor($method); + + if ($dateValue === null) { + $dateValue = 1; + } elseif (is_string($dateValue = self::getDateValue($dateValue))) { + return PHPExcel_Calculation_Functions::VALUE(); + } elseif ($dateValue < 0.0) { + return PHPExcel_Calculation_Functions::NaN(); + } + + // Execute function + $PHPDateObject = PHPExcel_Shared_Date::ExcelToPHPObject($dateValue); + $dayOfYear = $PHPDateObject->format('z'); + $dow = $PHPDateObject->format('w'); + $PHPDateObject->modify('-' . $dayOfYear . ' days'); + $dow = $PHPDateObject->format('w'); + $daysInFirstWeek = 7 - (($dow + (2 - $method)) % 7); + $dayOfYear -= $daysInFirstWeek; + $weekOfYear = ceil($dayOfYear / 7) + 1; + + return (int) $weekOfYear; + } + + + /** + * MONTHOFYEAR + * + * Returns the month of a date represented by a serial number. + * The month is given as an integer, ranging from 1 (January) to 12 (December). + * + * Excel Function: + * MONTH(dateValue) + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @return int Month of the year + */ + public static function MONTHOFYEAR($dateValue = 1) + { + $dateValue = PHPExcel_Calculation_Functions::flattenSingleValue($dateValue); + + if ($dateValue === null) { + $dateValue = 1; + } elseif (is_string($dateValue = self::getDateValue($dateValue))) { + return PHPExcel_Calculation_Functions::VALUE(); + } elseif ($dateValue < 0.0) { + return PHPExcel_Calculation_Functions::NaN(); + } + + // Execute function + $PHPDateObject = PHPExcel_Shared_Date::ExcelToPHPObject($dateValue); + + return (int) $PHPDateObject->format('n'); + } + + + /** + * YEAR + * + * Returns the year corresponding to a date. + * The year is returned as an integer in the range 1900-9999. + * + * Excel Function: + * YEAR(dateValue) + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @return int Year + */ + public static function YEAR($dateValue = 1) + { + $dateValue = PHPExcel_Calculation_Functions::flattenSingleValue($dateValue); + + if ($dateValue === null) { + $dateValue = 1; + } elseif (is_string($dateValue = self::getDateValue($dateValue))) { + return PHPExcel_Calculation_Functions::VALUE(); + } elseif ($dateValue < 0.0) { + return PHPExcel_Calculation_Functions::NaN(); + } + + // Execute function + $PHPDateObject = PHPExcel_Shared_Date::ExcelToPHPObject($dateValue); + + return (int) $PHPDateObject->format('Y'); + } + + + /** + * HOUROFDAY + * + * Returns the hour of a time value. + * The hour is given as an integer, ranging from 0 (12:00 A.M.) to 23 (11:00 P.M.). + * + * Excel Function: + * HOUR(timeValue) + * + * @param mixed $timeValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard time string + * @return int Hour + */ + public static function HOUROFDAY($timeValue = 0) + { + $timeValue = PHPExcel_Calculation_Functions::flattenSingleValue($timeValue); + + if (!is_numeric($timeValue)) { + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC) { + $testVal = strtok($timeValue, '/-: '); + if (strlen($testVal) < strlen($timeValue)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + $timeValue = self::getTimeValue($timeValue); + if (is_string($timeValue)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + // Execute function + if ($timeValue >= 1) { + $timeValue = fmod($timeValue, 1); + } elseif ($timeValue < 0.0) { + return PHPExcel_Calculation_Functions::NaN(); + } + $timeValue = PHPExcel_Shared_Date::ExcelToPHP($timeValue); + + return (int) gmdate('G', $timeValue); + } + + + /** + * MINUTEOFHOUR + * + * Returns the minutes of a time value. + * The minute is given as an integer, ranging from 0 to 59. + * + * Excel Function: + * MINUTE(timeValue) + * + * @param mixed $timeValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard time string + * @return int Minute + */ + public static function MINUTEOFHOUR($timeValue = 0) + { + $timeValue = $timeTester = PHPExcel_Calculation_Functions::flattenSingleValue($timeValue); + + if (!is_numeric($timeValue)) { + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC) { + $testVal = strtok($timeValue, '/-: '); + if (strlen($testVal) < strlen($timeValue)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + $timeValue = self::getTimeValue($timeValue); + if (is_string($timeValue)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + // Execute function + if ($timeValue >= 1) { + $timeValue = fmod($timeValue, 1); + } elseif ($timeValue < 0.0) { + return PHPExcel_Calculation_Functions::NaN(); + } + $timeValue = PHPExcel_Shared_Date::ExcelToPHP($timeValue); + + return (int) gmdate('i', $timeValue); + } + + + /** + * SECONDOFMINUTE + * + * Returns the seconds of a time value. + * The second is given as an integer in the range 0 (zero) to 59. + * + * Excel Function: + * SECOND(timeValue) + * + * @param mixed $timeValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard time string + * @return int Second + */ + public static function SECONDOFMINUTE($timeValue = 0) + { + $timeValue = PHPExcel_Calculation_Functions::flattenSingleValue($timeValue); + + if (!is_numeric($timeValue)) { + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC) { + $testVal = strtok($timeValue, '/-: '); + if (strlen($testVal) < strlen($timeValue)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + $timeValue = self::getTimeValue($timeValue); + if (is_string($timeValue)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + // Execute function + if ($timeValue >= 1) { + $timeValue = fmod($timeValue, 1); + } elseif ($timeValue < 0.0) { + return PHPExcel_Calculation_Functions::NaN(); + } + $timeValue = PHPExcel_Shared_Date::ExcelToPHP($timeValue); + + return (int) gmdate('s', $timeValue); + } + + + /** + * EDATE + * + * Returns the serial number that represents the date that is the indicated number of months + * before or after a specified date (the start_date). + * Use EDATE to calculate maturity dates or due dates that fall on the same day of the month + * as the date of issue. + * + * Excel Function: + * EDATE(dateValue,adjustmentMonths) + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param int $adjustmentMonths The number of months before or after start_date. + * A positive value for months yields a future date; + * a negative value yields a past date. + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function EDATE($dateValue = 1, $adjustmentMonths = 0) + { + $dateValue = PHPExcel_Calculation_Functions::flattenSingleValue($dateValue); + $adjustmentMonths = PHPExcel_Calculation_Functions::flattenSingleValue($adjustmentMonths); + + if (!is_numeric($adjustmentMonths)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $adjustmentMonths = floor($adjustmentMonths); + + if (is_string($dateValue = self::getDateValue($dateValue))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + // Execute function + $PHPDateObject = self::adjustDateByMonths($dateValue, $adjustmentMonths); + + switch (PHPExcel_Calculation_Functions::getReturnDateType()) { + case PHPExcel_Calculation_Functions::RETURNDATE_EXCEL: + return (float) PHPExcel_Shared_Date::PHPToExcel($PHPDateObject); + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC: + return (integer) PHPExcel_Shared_Date::ExcelToPHP(PHPExcel_Shared_Date::PHPToExcel($PHPDateObject)); + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_OBJECT: + return $PHPDateObject; + } + } + + + /** + * EOMONTH + * + * Returns the date value for the last day of the month that is the indicated number of months + * before or after start_date. + * Use EOMONTH to calculate maturity dates or due dates that fall on the last day of the month. + * + * Excel Function: + * EOMONTH(dateValue,adjustmentMonths) + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param int $adjustmentMonths The number of months before or after start_date. + * A positive value for months yields a future date; + * a negative value yields a past date. + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function EOMONTH($dateValue = 1, $adjustmentMonths = 0) + { + $dateValue = PHPExcel_Calculation_Functions::flattenSingleValue($dateValue); + $adjustmentMonths = PHPExcel_Calculation_Functions::flattenSingleValue($adjustmentMonths); + + if (!is_numeric($adjustmentMonths)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $adjustmentMonths = floor($adjustmentMonths); + + if (is_string($dateValue = self::getDateValue($dateValue))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + // Execute function + $PHPDateObject = self::adjustDateByMonths($dateValue, $adjustmentMonths+1); + $adjustDays = (int) $PHPDateObject->format('d'); + $adjustDaysString = '-' . $adjustDays . ' days'; + $PHPDateObject->modify($adjustDaysString); + + switch (PHPExcel_Calculation_Functions::getReturnDateType()) { + case PHPExcel_Calculation_Functions::RETURNDATE_EXCEL: + return (float) PHPExcel_Shared_Date::PHPToExcel($PHPDateObject); + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC: + return (integer) PHPExcel_Shared_Date::ExcelToPHP(PHPExcel_Shared_Date::PHPToExcel($PHPDateObject)); + case PHPExcel_Calculation_Functions::RETURNDATE_PHP_OBJECT: + return $PHPDateObject; + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php new file mode 100644 index 0000000..75e2784 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php @@ -0,0 +1,2650 @@ + array('Group' => 'Mass', 'Unit Name' => 'Gram', 'AllowPrefix' => true), + 'sg' => array('Group' => 'Mass', 'Unit Name' => 'Slug', 'AllowPrefix' => false), + 'lbm' => array('Group' => 'Mass', 'Unit Name' => 'Pound mass (avoirdupois)', 'AllowPrefix' => false), + 'u' => array('Group' => 'Mass', 'Unit Name' => 'U (atomic mass unit)', 'AllowPrefix' => true), + 'ozm' => array('Group' => 'Mass', 'Unit Name' => 'Ounce mass (avoirdupois)', 'AllowPrefix' => false), + 'm' => array('Group' => 'Distance', 'Unit Name' => 'Meter', 'AllowPrefix' => true), + 'mi' => array('Group' => 'Distance', 'Unit Name' => 'Statute mile', 'AllowPrefix' => false), + 'Nmi' => array('Group' => 'Distance', 'Unit Name' => 'Nautical mile', 'AllowPrefix' => false), + 'in' => array('Group' => 'Distance', 'Unit Name' => 'Inch', 'AllowPrefix' => false), + 'ft' => array('Group' => 'Distance', 'Unit Name' => 'Foot', 'AllowPrefix' => false), + 'yd' => array('Group' => 'Distance', 'Unit Name' => 'Yard', 'AllowPrefix' => false), + 'ang' => array('Group' => 'Distance', 'Unit Name' => 'Angstrom', 'AllowPrefix' => true), + 'Pica' => array('Group' => 'Distance', 'Unit Name' => 'Pica (1/72 in)', 'AllowPrefix' => false), + 'yr' => array('Group' => 'Time', 'Unit Name' => 'Year', 'AllowPrefix' => false), + 'day' => array('Group' => 'Time', 'Unit Name' => 'Day', 'AllowPrefix' => false), + 'hr' => array('Group' => 'Time', 'Unit Name' => 'Hour', 'AllowPrefix' => false), + 'mn' => array('Group' => 'Time', 'Unit Name' => 'Minute', 'AllowPrefix' => false), + 'sec' => array('Group' => 'Time', 'Unit Name' => 'Second', 'AllowPrefix' => true), + 'Pa' => array('Group' => 'Pressure', 'Unit Name' => 'Pascal', 'AllowPrefix' => true), + 'p' => array('Group' => 'Pressure', 'Unit Name' => 'Pascal', 'AllowPrefix' => true), + 'atm' => array('Group' => 'Pressure', 'Unit Name' => 'Atmosphere', 'AllowPrefix' => true), + 'at' => array('Group' => 'Pressure', 'Unit Name' => 'Atmosphere', 'AllowPrefix' => true), + 'mmHg' => array('Group' => 'Pressure', 'Unit Name' => 'mm of Mercury', 'AllowPrefix' => true), + 'N' => array('Group' => 'Force', 'Unit Name' => 'Newton', 'AllowPrefix' => true), + 'dyn' => array('Group' => 'Force', 'Unit Name' => 'Dyne', 'AllowPrefix' => true), + 'dy' => array('Group' => 'Force', 'Unit Name' => 'Dyne', 'AllowPrefix' => true), + 'lbf' => array('Group' => 'Force', 'Unit Name' => 'Pound force', 'AllowPrefix' => false), + 'J' => array('Group' => 'Energy', 'Unit Name' => 'Joule', 'AllowPrefix' => true), + 'e' => array('Group' => 'Energy', 'Unit Name' => 'Erg', 'AllowPrefix' => true), + 'c' => array('Group' => 'Energy', 'Unit Name' => 'Thermodynamic calorie', 'AllowPrefix' => true), + 'cal' => array('Group' => 'Energy', 'Unit Name' => 'IT calorie', 'AllowPrefix' => true), + 'eV' => array('Group' => 'Energy', 'Unit Name' => 'Electron volt', 'AllowPrefix' => true), + 'ev' => array('Group' => 'Energy', 'Unit Name' => 'Electron volt', 'AllowPrefix' => true), + 'HPh' => array('Group' => 'Energy', 'Unit Name' => 'Horsepower-hour', 'AllowPrefix' => false), + 'hh' => array('Group' => 'Energy', 'Unit Name' => 'Horsepower-hour', 'AllowPrefix' => false), + 'Wh' => array('Group' => 'Energy', 'Unit Name' => 'Watt-hour', 'AllowPrefix' => true), + 'wh' => array('Group' => 'Energy', 'Unit Name' => 'Watt-hour', 'AllowPrefix' => true), + 'flb' => array('Group' => 'Energy', 'Unit Name' => 'Foot-pound', 'AllowPrefix' => false), + 'BTU' => array('Group' => 'Energy', 'Unit Name' => 'BTU', 'AllowPrefix' => false), + 'btu' => array('Group' => 'Energy', 'Unit Name' => 'BTU', 'AllowPrefix' => false), + 'HP' => array('Group' => 'Power', 'Unit Name' => 'Horsepower', 'AllowPrefix' => false), + 'h' => array('Group' => 'Power', 'Unit Name' => 'Horsepower', 'AllowPrefix' => false), + 'W' => array('Group' => 'Power', 'Unit Name' => 'Watt', 'AllowPrefix' => true), + 'w' => array('Group' => 'Power', 'Unit Name' => 'Watt', 'AllowPrefix' => true), + 'T' => array('Group' => 'Magnetism', 'Unit Name' => 'Tesla', 'AllowPrefix' => true), + 'ga' => array('Group' => 'Magnetism', 'Unit Name' => 'Gauss', 'AllowPrefix' => true), + 'C' => array('Group' => 'Temperature', 'Unit Name' => 'Celsius', 'AllowPrefix' => false), + 'cel' => array('Group' => 'Temperature', 'Unit Name' => 'Celsius', 'AllowPrefix' => false), + 'F' => array('Group' => 'Temperature', 'Unit Name' => 'Fahrenheit', 'AllowPrefix' => false), + 'fah' => array('Group' => 'Temperature', 'Unit Name' => 'Fahrenheit', 'AllowPrefix' => false), + 'K' => array('Group' => 'Temperature', 'Unit Name' => 'Kelvin', 'AllowPrefix' => false), + 'kel' => array('Group' => 'Temperature', 'Unit Name' => 'Kelvin', 'AllowPrefix' => false), + 'tsp' => array('Group' => 'Liquid', 'Unit Name' => 'Teaspoon', 'AllowPrefix' => false), + 'tbs' => array('Group' => 'Liquid', 'Unit Name' => 'Tablespoon', 'AllowPrefix' => false), + 'oz' => array('Group' => 'Liquid', 'Unit Name' => 'Fluid Ounce', 'AllowPrefix' => false), + 'cup' => array('Group' => 'Liquid', 'Unit Name' => 'Cup', 'AllowPrefix' => false), + 'pt' => array('Group' => 'Liquid', 'Unit Name' => 'U.S. Pint', 'AllowPrefix' => false), + 'us_pt' => array('Group' => 'Liquid', 'Unit Name' => 'U.S. Pint', 'AllowPrefix' => false), + 'uk_pt' => array('Group' => 'Liquid', 'Unit Name' => 'U.K. Pint', 'AllowPrefix' => false), + 'qt' => array('Group' => 'Liquid', 'Unit Name' => 'Quart', 'AllowPrefix' => false), + 'gal' => array('Group' => 'Liquid', 'Unit Name' => 'Gallon', 'AllowPrefix' => false), + 'l' => array('Group' => 'Liquid', 'Unit Name' => 'Litre', 'AllowPrefix' => true), + 'lt' => array('Group' => 'Liquid', 'Unit Name' => 'Litre', 'AllowPrefix' => true), + ); + + /** + * Details of the Multiplier prefixes that can be used with Units of Measure in CONVERTUOM() + * + * @var mixed[] + */ + private static $conversionMultipliers = array( + 'Y' => array('multiplier' => 1E24, 'name' => 'yotta'), + 'Z' => array('multiplier' => 1E21, 'name' => 'zetta'), + 'E' => array('multiplier' => 1E18, 'name' => 'exa'), + 'P' => array('multiplier' => 1E15, 'name' => 'peta'), + 'T' => array('multiplier' => 1E12, 'name' => 'tera'), + 'G' => array('multiplier' => 1E9, 'name' => 'giga'), + 'M' => array('multiplier' => 1E6, 'name' => 'mega'), + 'k' => array('multiplier' => 1E3, 'name' => 'kilo'), + 'h' => array('multiplier' => 1E2, 'name' => 'hecto'), + 'e' => array('multiplier' => 1E1, 'name' => 'deka'), + 'd' => array('multiplier' => 1E-1, 'name' => 'deci'), + 'c' => array('multiplier' => 1E-2, 'name' => 'centi'), + 'm' => array('multiplier' => 1E-3, 'name' => 'milli'), + 'u' => array('multiplier' => 1E-6, 'name' => 'micro'), + 'n' => array('multiplier' => 1E-9, 'name' => 'nano'), + 'p' => array('multiplier' => 1E-12, 'name' => 'pico'), + 'f' => array('multiplier' => 1E-15, 'name' => 'femto'), + 'a' => array('multiplier' => 1E-18, 'name' => 'atto'), + 'z' => array('multiplier' => 1E-21, 'name' => 'zepto'), + 'y' => array('multiplier' => 1E-24, 'name' => 'yocto'), + ); + + /** + * Details of the Units of measure conversion factors, organised by group + * + * @var mixed[] + */ + private static $unitConversions = array( + 'Mass' => array( + 'g' => array( + 'g' => 1.0, + 'sg' => 6.85220500053478E-05, + 'lbm' => 2.20462291469134E-03, + 'u' => 6.02217000000000E+23, + 'ozm' => 3.52739718003627E-02, + ), + 'sg' => array( + 'g' => 1.45938424189287E+04, + 'sg' => 1.0, + 'lbm' => 3.21739194101647E+01, + 'u' => 8.78866000000000E+27, + 'ozm' => 5.14782785944229E+02, + ), + 'lbm' => array( + 'g' => 4.5359230974881148E+02, + 'sg' => 3.10810749306493E-02, + 'lbm' => 1.0, + 'u' => 2.73161000000000E+26, + 'ozm' => 1.60000023429410E+01, + ), + 'u' => array( + 'g' => 1.66053100460465E-24, + 'sg' => 1.13782988532950E-28, + 'lbm' => 3.66084470330684E-27, + 'u' => 1.0, + 'ozm' => 5.85735238300524E-26, + ), + 'ozm' => array( + 'g' => 2.83495152079732E+01, + 'sg' => 1.94256689870811E-03, + 'lbm' => 6.24999908478882E-02, + 'u' => 1.70725600000000E+25, + 'ozm' => 1.0, + ), + ), + 'Distance' => array( + 'm' => array( + 'm' => 1.0, + 'mi' => 6.21371192237334E-04, + 'Nmi' => 5.39956803455724E-04, + 'in' => 3.93700787401575E+01, + 'ft' => 3.28083989501312E+00, + 'yd' => 1.09361329797891E+00, + 'ang' => 1.00000000000000E+10, + 'Pica' => 2.83464566929116E+03, + ), + 'mi' => array( + 'm' => 1.60934400000000E+03, + 'mi' => 1.0, + 'Nmi' => 8.68976241900648E-01, + 'in' => 6.33600000000000E+04, + 'ft' => 5.28000000000000E+03, + 'yd' => 1.76000000000000E+03, + 'ang' => 1.60934400000000E+13, + 'Pica' => 4.56191999999971E+06, + ), + 'Nmi' => array( + 'm' => 1.85200000000000E+03, + 'mi' => 1.15077944802354E+00, + 'Nmi' => 1.0, + 'in' => 7.29133858267717E+04, + 'ft' => 6.07611548556430E+03, + 'yd' => 2.02537182785694E+03, + 'ang' => 1.85200000000000E+13, + 'Pica' => 5.24976377952723E+06, + ), + 'in' => array( + 'm' => 2.54000000000000E-02, + 'mi' => 1.57828282828283E-05, + 'Nmi' => 1.37149028077754E-05, + 'in' => 1.0, + 'ft' => 8.33333333333333E-02, + 'yd' => 2.77777777686643E-02, + 'ang' => 2.54000000000000E+08, + 'Pica' => 7.19999999999955E+01, + ), + 'ft' => array( + 'm' => 3.04800000000000E-01, + 'mi' => 1.89393939393939E-04, + 'Nmi' => 1.64578833693305E-04, + 'in' => 1.20000000000000E+01, + 'ft' => 1.0, + 'yd' => 3.33333333223972E-01, + 'ang' => 3.04800000000000E+09, + 'Pica' => 8.63999999999946E+02, + ), + 'yd' => array( + 'm' => 9.14400000300000E-01, + 'mi' => 5.68181818368230E-04, + 'Nmi' => 4.93736501241901E-04, + 'in' => 3.60000000118110E+01, + 'ft' => 3.00000000000000E+00, + 'yd' => 1.0, + 'ang' => 9.14400000300000E+09, + 'Pica' => 2.59200000085023E+03, + ), + 'ang' => array( + 'm' => 1.00000000000000E-10, + 'mi' => 6.21371192237334E-14, + 'Nmi' => 5.39956803455724E-14, + 'in' => 3.93700787401575E-09, + 'ft' => 3.28083989501312E-10, + 'yd' => 1.09361329797891E-10, + 'ang' => 1.0, + 'Pica' => 2.83464566929116E-07, + ), + 'Pica' => array( + 'm' => 3.52777777777800E-04, + 'mi' => 2.19205948372629E-07, + 'Nmi' => 1.90484761219114E-07, + 'in' => 1.38888888888898E-02, + 'ft' => 1.15740740740748E-03, + 'yd' => 3.85802469009251E-04, + 'ang' => 3.52777777777800E+06, + 'Pica' => 1.0, + ), + ), + 'Time' => array( + 'yr' => array( + 'yr' => 1.0, + 'day' => 365.25, + 'hr' => 8766.0, + 'mn' => 525960.0, + 'sec' => 31557600.0, + ), + 'day' => array( + 'yr' => 2.73785078713210E-03, + 'day' => 1.0, + 'hr' => 24.0, + 'mn' => 1440.0, + 'sec' => 86400.0, + ), + 'hr' => array( + 'yr' => 1.14077116130504E-04, + 'day' => 4.16666666666667E-02, + 'hr' => 1.0, + 'mn' => 60.0, + 'sec' => 3600.0, + ), + 'mn' => array( + 'yr' => 1.90128526884174E-06, + 'day' => 6.94444444444444E-04, + 'hr' => 1.66666666666667E-02, + 'mn' => 1.0, + 'sec' => 60.0, + ), + 'sec' => array( + 'yr' => 3.16880878140289E-08, + 'day' => 1.15740740740741E-05, + 'hr' => 2.77777777777778E-04, + 'mn' => 1.66666666666667E-02, + 'sec' => 1.0, + ), + ), + 'Pressure' => array( + 'Pa' => array( + 'Pa' => 1.0, + 'p' => 1.0, + 'atm' => 9.86923299998193E-06, + 'at' => 9.86923299998193E-06, + 'mmHg' => 7.50061707998627E-03, + ), + 'p' => array( + 'Pa' => 1.0, + 'p' => 1.0, + 'atm' => 9.86923299998193E-06, + 'at' => 9.86923299998193E-06, + 'mmHg' => 7.50061707998627E-03, + ), + 'atm' => array( + 'Pa' => 1.01324996583000E+05, + 'p' => 1.01324996583000E+05, + 'atm' => 1.0, + 'at' => 1.0, + 'mmHg' => 760.0, + ), + 'at' => array( + 'Pa' => 1.01324996583000E+05, + 'p' => 1.01324996583000E+05, + 'atm' => 1.0, + 'at' => 1.0, + 'mmHg' => 760.0, + ), + 'mmHg' => array( + 'Pa' => 1.33322363925000E+02, + 'p' => 1.33322363925000E+02, + 'atm' => 1.31578947368421E-03, + 'at' => 1.31578947368421E-03, + 'mmHg' => 1.0, + ), + ), + 'Force' => array( + 'N' => array( + 'N' => 1.0, + 'dyn' => 1.0E+5, + 'dy' => 1.0E+5, + 'lbf' => 2.24808923655339E-01, + ), + 'dyn' => array( + 'N' => 1.0E-5, + 'dyn' => 1.0, + 'dy' => 1.0, + 'lbf' => 2.24808923655339E-06, + ), + 'dy' => array( + 'N' => 1.0E-5, + 'dyn' => 1.0, + 'dy' => 1.0, + 'lbf' => 2.24808923655339E-06, + ), + 'lbf' => array( + 'N' => 4.448222, + 'dyn' => 4.448222E+5, + 'dy' => 4.448222E+5, + 'lbf' => 1.0, + ), + ), + 'Energy' => array( + 'J' => array( + 'J' => 1.0, + 'e' => 9.99999519343231E+06, + 'c' => 2.39006249473467E-01, + 'cal' => 2.38846190642017E-01, + 'eV' => 6.24145700000000E+18, + 'ev' => 6.24145700000000E+18, + 'HPh' => 3.72506430801000E-07, + 'hh' => 3.72506430801000E-07, + 'Wh' => 2.77777916238711E-04, + 'wh' => 2.77777916238711E-04, + 'flb' => 2.37304222192651E+01, + 'BTU' => 9.47815067349015E-04, + 'btu' => 9.47815067349015E-04, + ), + 'e' => array( + 'J' => 1.00000048065700E-07, + 'e' => 1.0, + 'c' => 2.39006364353494E-08, + 'cal' => 2.38846305445111E-08, + 'eV' => 6.24146000000000E+11, + 'ev' => 6.24146000000000E+11, + 'HPh' => 3.72506609848824E-14, + 'hh' => 3.72506609848824E-14, + 'Wh' => 2.77778049754611E-11, + 'wh' => 2.77778049754611E-11, + 'flb' => 2.37304336254586E-06, + 'BTU' => 9.47815522922962E-11, + 'btu' => 9.47815522922962E-11, + ), + 'c' => array( + 'J' => 4.18399101363672E+00, + 'e' => 4.18398900257312E+07, + 'c' => 1.0, + 'cal' => 9.99330315287563E-01, + 'eV' => 2.61142000000000E+19, + 'ev' => 2.61142000000000E+19, + 'HPh' => 1.55856355899327E-06, + 'hh' => 1.55856355899327E-06, + 'Wh' => 1.16222030532950E-03, + 'wh' => 1.16222030532950E-03, + 'flb' => 9.92878733152102E+01, + 'BTU' => 3.96564972437776E-03, + 'btu' => 3.96564972437776E-03, + ), + 'cal' => array( + 'J' => 4.18679484613929E+00, + 'e' => 4.18679283372801E+07, + 'c' => 1.00067013349059E+00, + 'cal' => 1.0, + 'eV' => 2.61317000000000E+19, + 'ev' => 2.61317000000000E+19, + 'HPh' => 1.55960800463137E-06, + 'hh' => 1.55960800463137E-06, + 'Wh' => 1.16299914807955E-03, + 'wh' => 1.16299914807955E-03, + 'flb' => 9.93544094443283E+01, + 'BTU' => 3.96830723907002E-03, + 'btu' => 3.96830723907002E-03, + ), + 'eV' => array( + 'J' => 1.60219000146921E-19, + 'e' => 1.60218923136574E-12, + 'c' => 3.82933423195043E-20, + 'cal' => 3.82676978535648E-20, + 'eV' => 1.0, + 'ev' => 1.0, + 'HPh' => 5.96826078912344E-26, + 'hh' => 5.96826078912344E-26, + 'Wh' => 4.45053000026614E-23, + 'wh' => 4.45053000026614E-23, + 'flb' => 3.80206452103492E-18, + 'BTU' => 1.51857982414846E-22, + 'btu' => 1.51857982414846E-22, + ), + 'ev' => array( + 'J' => 1.60219000146921E-19, + 'e' => 1.60218923136574E-12, + 'c' => 3.82933423195043E-20, + 'cal' => 3.82676978535648E-20, + 'eV' => 1.0, + 'ev' => 1.0, + 'HPh' => 5.96826078912344E-26, + 'hh' => 5.96826078912344E-26, + 'Wh' => 4.45053000026614E-23, + 'wh' => 4.45053000026614E-23, + 'flb' => 3.80206452103492E-18, + 'BTU' => 1.51857982414846E-22, + 'btu' => 1.51857982414846E-22, + ), + 'HPh' => array( + 'J' => 2.68451741316170E+06, + 'e' => 2.68451612283024E+13, + 'c' => 6.41616438565991E+05, + 'cal' => 6.41186757845835E+05, + 'eV' => 1.67553000000000E+25, + 'ev' => 1.67553000000000E+25, + 'HPh' => 1.0, + 'hh' => 1.0, + 'Wh' => 7.45699653134593E+02, + 'wh' => 7.45699653134593E+02, + 'flb' => 6.37047316692964E+07, + 'BTU' => 2.54442605275546E+03, + 'btu' => 2.54442605275546E+03, + ), + 'hh' => array( + 'J' => 2.68451741316170E+06, + 'e' => 2.68451612283024E+13, + 'c' => 6.41616438565991E+05, + 'cal' => 6.41186757845835E+05, + 'eV' => 1.67553000000000E+25, + 'ev' => 1.67553000000000E+25, + 'HPh' => 1.0, + 'hh' => 1.0, + 'Wh' => 7.45699653134593E+02, + 'wh' => 7.45699653134593E+02, + 'flb' => 6.37047316692964E+07, + 'BTU' => 2.54442605275546E+03, + 'btu' => 2.54442605275546E+03, + ), + 'Wh' => array( + 'J' => 3.59999820554720E+03, + 'e' => 3.59999647518369E+10, + 'c' => 8.60422069219046E+02, + 'cal' => 8.59845857713046E+02, + 'eV' => 2.24692340000000E+22, + 'ev' => 2.24692340000000E+22, + 'HPh' => 1.34102248243839E-03, + 'hh' => 1.34102248243839E-03, + 'Wh' => 1.0, + 'wh' => 1.0, + 'flb' => 8.54294774062316E+04, + 'BTU' => 3.41213254164705E+00, + 'btu' => 3.41213254164705E+00, + ), + 'wh' => array( + 'J' => 3.59999820554720E+03, + 'e' => 3.59999647518369E+10, + 'c' => 8.60422069219046E+02, + 'cal' => 8.59845857713046E+02, + 'eV' => 2.24692340000000E+22, + 'ev' => 2.24692340000000E+22, + 'HPh' => 1.34102248243839E-03, + 'hh' => 1.34102248243839E-03, + 'Wh' => 1.0, + 'wh' => 1.0, + 'flb' => 8.54294774062316E+04, + 'BTU' => 3.41213254164705E+00, + 'btu' => 3.41213254164705E+00, + ), + 'flb' => array( + 'J' => 4.21400003236424E-02, + 'e' => 4.21399800687660E+05, + 'c' => 1.00717234301644E-02, + 'cal' => 1.00649785509554E-02, + 'eV' => 2.63015000000000E+17, + 'ev' => 2.63015000000000E+17, + 'HPh' => 1.56974211145130E-08, + 'hh' => 1.56974211145130E-08, + 'Wh' => 1.17055614802000E-05, + 'wh' => 1.17055614802000E-05, + 'flb' => 1.0, + 'BTU' => 3.99409272448406E-05, + 'btu' => 3.99409272448406E-05, + ), + 'BTU' => array( + 'J' => 1.05505813786749E+03, + 'e' => 1.05505763074665E+10, + 'c' => 2.52165488508168E+02, + 'cal' => 2.51996617135510E+02, + 'eV' => 6.58510000000000E+21, + 'ev' => 6.58510000000000E+21, + 'HPh' => 3.93015941224568E-04, + 'hh' => 3.93015941224568E-04, + 'Wh' => 2.93071851047526E-01, + 'wh' => 2.93071851047526E-01, + 'flb' => 2.50369750774671E+04, + 'BTU' => 1.0, + 'btu' => 1.0, + ), + 'btu' => array( + 'J' => 1.05505813786749E+03, + 'e' => 1.05505763074665E+10, + 'c' => 2.52165488508168E+02, + 'cal' => 2.51996617135510E+02, + 'eV' => 6.58510000000000E+21, + 'ev' => 6.58510000000000E+21, + 'HPh' => 3.93015941224568E-04, + 'hh' => 3.93015941224568E-04, + 'Wh' => 2.93071851047526E-01, + 'wh' => 2.93071851047526E-01, + 'flb' => 2.50369750774671E+04, + 'BTU' => 1.0, + 'btu' => 1.0, + ), + ), + 'Power' => array( + 'HP' => array( + 'HP' => 1.0, + 'h' => 1.0, + 'W' => 7.45701000000000E+02, + 'w' => 7.45701000000000E+02, + ), + 'h' => array( + 'HP' => 1.0, + 'h' => 1.0, + 'W' => 7.45701000000000E+02, + 'w' => 7.45701000000000E+02, + ), + 'W' => array( + 'HP' => 1.34102006031908E-03, + 'h' => 1.34102006031908E-03, + 'W' => 1.0, + 'w' => 1.0, + ), + 'w' => array( + 'HP' => 1.34102006031908E-03, + 'h' => 1.34102006031908E-03, + 'W' => 1.0, + 'w' => 1.0, + ), + ), + 'Magnetism' => array( + 'T' => array( + 'T' => 1.0, + 'ga' => 10000.0, + ), + 'ga' => array( + 'T' => 0.0001, + 'ga' => 1.0, + ), + ), + 'Liquid' => array( + 'tsp' => array( + 'tsp' => 1.0, + 'tbs' => 3.33333333333333E-01, + 'oz' => 1.66666666666667E-01, + 'cup' => 2.08333333333333E-02, + 'pt' => 1.04166666666667E-02, + 'us_pt' => 1.04166666666667E-02, + 'uk_pt' => 8.67558516821960E-03, + 'qt' => 5.20833333333333E-03, + 'gal' => 1.30208333333333E-03, + 'l' => 4.92999408400710E-03, + 'lt' => 4.92999408400710E-03, + ), + 'tbs' => array( + 'tsp' => 3.00000000000000E+00, + 'tbs' => 1.0, + 'oz' => 5.00000000000000E-01, + 'cup' => 6.25000000000000E-02, + 'pt' => 3.12500000000000E-02, + 'us_pt' => 3.12500000000000E-02, + 'uk_pt' => 2.60267555046588E-02, + 'qt' => 1.56250000000000E-02, + 'gal' => 3.90625000000000E-03, + 'l' => 1.47899822520213E-02, + 'lt' => 1.47899822520213E-02, + ), + 'oz' => array( + 'tsp' => 6.00000000000000E+00, + 'tbs' => 2.00000000000000E+00, + 'oz' => 1.0, + 'cup' => 1.25000000000000E-01, + 'pt' => 6.25000000000000E-02, + 'us_pt' => 6.25000000000000E-02, + 'uk_pt' => 5.20535110093176E-02, + 'qt' => 3.12500000000000E-02, + 'gal' => 7.81250000000000E-03, + 'l' => 2.95799645040426E-02, + 'lt' => 2.95799645040426E-02, + ), + 'cup' => array( + 'tsp' => 4.80000000000000E+01, + 'tbs' => 1.60000000000000E+01, + 'oz' => 8.00000000000000E+00, + 'cup' => 1.0, + 'pt' => 5.00000000000000E-01, + 'us_pt' => 5.00000000000000E-01, + 'uk_pt' => 4.16428088074541E-01, + 'qt' => 2.50000000000000E-01, + 'gal' => 6.25000000000000E-02, + 'l' => 2.36639716032341E-01, + 'lt' => 2.36639716032341E-01, + ), + 'pt' => array( + 'tsp' => 9.60000000000000E+01, + 'tbs' => 3.20000000000000E+01, + 'oz' => 1.60000000000000E+01, + 'cup' => 2.00000000000000E+00, + 'pt' => 1.0, + 'us_pt' => 1.0, + 'uk_pt' => 8.32856176149081E-01, + 'qt' => 5.00000000000000E-01, + 'gal' => 1.25000000000000E-01, + 'l' => 4.73279432064682E-01, + 'lt' => 4.73279432064682E-01, + ), + 'us_pt' => array( + 'tsp' => 9.60000000000000E+01, + 'tbs' => 3.20000000000000E+01, + 'oz' => 1.60000000000000E+01, + 'cup' => 2.00000000000000E+00, + 'pt' => 1.0, + 'us_pt' => 1.0, + 'uk_pt' => 8.32856176149081E-01, + 'qt' => 5.00000000000000E-01, + 'gal' => 1.25000000000000E-01, + 'l' => 4.73279432064682E-01, + 'lt' => 4.73279432064682E-01, + ), + 'uk_pt' => array( + 'tsp' => 1.15266000000000E+02, + 'tbs' => 3.84220000000000E+01, + 'oz' => 1.92110000000000E+01, + 'cup' => 2.40137500000000E+00, + 'pt' => 1.20068750000000E+00, + 'us_pt' => 1.20068750000000E+00, + 'uk_pt' => 1.0, + 'qt' => 6.00343750000000E-01, + 'gal' => 1.50085937500000E-01, + 'l' => 5.68260698087162E-01, + 'lt' => 5.68260698087162E-01, + ), + 'qt' => array( + 'tsp' => 1.92000000000000E+02, + 'tbs' => 6.40000000000000E+01, + 'oz' => 3.20000000000000E+01, + 'cup' => 4.00000000000000E+00, + 'pt' => 2.00000000000000E+00, + 'us_pt' => 2.00000000000000E+00, + 'uk_pt' => 1.66571235229816E+00, + 'qt' => 1.0, + 'gal' => 2.50000000000000E-01, + 'l' => 9.46558864129363E-01, + 'lt' => 9.46558864129363E-01, + ), + 'gal' => array( + 'tsp' => 7.68000000000000E+02, + 'tbs' => 2.56000000000000E+02, + 'oz' => 1.28000000000000E+02, + 'cup' => 1.60000000000000E+01, + 'pt' => 8.00000000000000E+00, + 'us_pt' => 8.00000000000000E+00, + 'uk_pt' => 6.66284940919265E+00, + 'qt' => 4.00000000000000E+00, + 'gal' => 1.0, + 'l' => 3.78623545651745E+00, + 'lt' => 3.78623545651745E+00, + ), + 'l' => array( + 'tsp' => 2.02840000000000E+02, + 'tbs' => 6.76133333333333E+01, + 'oz' => 3.38066666666667E+01, + 'cup' => 4.22583333333333E+00, + 'pt' => 2.11291666666667E+00, + 'us_pt' => 2.11291666666667E+00, + 'uk_pt' => 1.75975569552166E+00, + 'qt' => 1.05645833333333E+00, + 'gal' => 2.64114583333333E-01, + 'l' => 1.0, + 'lt' => 1.0, + ), + 'lt' => array( + 'tsp' => 2.02840000000000E+02, + 'tbs' => 6.76133333333333E+01, + 'oz' => 3.38066666666667E+01, + 'cup' => 4.22583333333333E+00, + 'pt' => 2.11291666666667E+00, + 'us_pt' => 2.11291666666667E+00, + 'uk_pt' => 1.75975569552166E+00, + 'qt' => 1.05645833333333E+00, + 'gal' => 2.64114583333333E-01, + 'l' => 1.0, + 'lt' => 1.0, + ), + ), + ); + + + /** + * parseComplex + * + * Parses a complex number into its real and imaginary parts, and an I or J suffix + * + * @param string $complexNumber The complex number + * @return string[] Indexed on "real", "imaginary" and "suffix" + */ + public static function parseComplex($complexNumber) + { + $workString = (string) $complexNumber; + + $realNumber = $imaginary = 0; + // Extract the suffix, if there is one + $suffix = substr($workString, -1); + if (!is_numeric($suffix)) { + $workString = substr($workString, 0, -1); + } else { + $suffix = ''; + } + + // Split the input into its Real and Imaginary components + $leadingSign = 0; + if (strlen($workString) > 0) { + $leadingSign = (($workString{0} == '+') || ($workString{0} == '-')) ? 1 : 0; + } + $power = ''; + $realNumber = strtok($workString, '+-'); + if (strtoupper(substr($realNumber, -1)) == 'E') { + $power = strtok('+-'); + ++$leadingSign; + } + + $realNumber = substr($workString, 0, strlen($realNumber)+strlen($power)+$leadingSign); + + if ($suffix != '') { + $imaginary = substr($workString, strlen($realNumber)); + + if (($imaginary == '') && (($realNumber == '') || ($realNumber == '+') || ($realNumber == '-'))) { + $imaginary = $realNumber.'1'; + $realNumber = '0'; + } elseif ($imaginary == '') { + $imaginary = $realNumber; + $realNumber = '0'; + } elseif (($imaginary == '+') || ($imaginary == '-')) { + $imaginary .= '1'; + } + } + + return array( + 'real' => $realNumber, + 'imaginary' => $imaginary, + 'suffix' => $suffix + ); + } + + + /** + * Cleans the leading characters in a complex number string + * + * @param string $complexNumber The complex number to clean + * @return string The "cleaned" complex number + */ + private static function cleanComplex($complexNumber) + { + if ($complexNumber{0} == '+') { + $complexNumber = substr($complexNumber, 1); + } + if ($complexNumber{0} == '0') { + $complexNumber = substr($complexNumber, 1); + } + if ($complexNumber{0} == '.') { + $complexNumber = '0'.$complexNumber; + } + if ($complexNumber{0} == '+') { + $complexNumber = substr($complexNumber, 1); + } + return $complexNumber; + } + + /** + * Formats a number base string value with leading zeroes + * + * @param string $xVal The "number" to pad + * @param integer $places The length that we want to pad this value + * @return string The padded "number" + */ + private static function nbrConversionFormat($xVal, $places) + { + if (!is_null($places)) { + if (strlen($xVal) <= $places) { + return substr(str_pad($xVal, $places, '0', STR_PAD_LEFT), -10); + } else { + return PHPExcel_Calculation_Functions::NaN(); + } + } + + return substr($xVal, -10); + } + + /** + * BESSELI + * + * Returns the modified Bessel function In(x), which is equivalent to the Bessel function evaluated + * for purely imaginary arguments + * + * Excel Function: + * BESSELI(x,ord) + * + * @access public + * @category Engineering Functions + * @param float $x The value at which to evaluate the function. + * If x is nonnumeric, BESSELI returns the #VALUE! error value. + * @param integer $ord The order of the Bessel function. + * If ord is not an integer, it is truncated. + * If $ord is nonnumeric, BESSELI returns the #VALUE! error value. + * If $ord < 0, BESSELI returns the #NUM! error value. + * @return float + * + */ + public static function BESSELI($x, $ord) + { + $x = (is_null($x)) ? 0.0 : PHPExcel_Calculation_Functions::flattenSingleValue($x); + $ord = (is_null($ord)) ? 0.0 : PHPExcel_Calculation_Functions::flattenSingleValue($ord); + + if ((is_numeric($x)) && (is_numeric($ord))) { + $ord = floor($ord); + if ($ord < 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + + if (abs($x) <= 30) { + $fResult = $fTerm = pow($x / 2, $ord) / PHPExcel_Calculation_MathTrig::FACT($ord); + $ordK = 1; + $fSqrX = ($x * $x) / 4; + do { + $fTerm *= $fSqrX; + $fTerm /= ($ordK * ($ordK + $ord)); + $fResult += $fTerm; + } while ((abs($fTerm) > 1e-12) && (++$ordK < 100)); + } else { + $f_2_PI = 2 * M_PI; + + $fXAbs = abs($x); + $fResult = exp($fXAbs) / sqrt($f_2_PI * $fXAbs); + if (($ord & 1) && ($x < 0)) { + $fResult = -$fResult; + } + } + return (is_nan($fResult)) ? PHPExcel_Calculation_Functions::NaN() : $fResult; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * BESSELJ + * + * Returns the Bessel function + * + * Excel Function: + * BESSELJ(x,ord) + * + * @access public + * @category Engineering Functions + * @param float $x The value at which to evaluate the function. + * If x is nonnumeric, BESSELJ returns the #VALUE! error value. + * @param integer $ord The order of the Bessel function. If n is not an integer, it is truncated. + * If $ord is nonnumeric, BESSELJ returns the #VALUE! error value. + * If $ord < 0, BESSELJ returns the #NUM! error value. + * @return float + * + */ + public static function BESSELJ($x, $ord) + { + $x = (is_null($x)) ? 0.0 : PHPExcel_Calculation_Functions::flattenSingleValue($x); + $ord = (is_null($ord)) ? 0.0 : PHPExcel_Calculation_Functions::flattenSingleValue($ord); + + if ((is_numeric($x)) && (is_numeric($ord))) { + $ord = floor($ord); + if ($ord < 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + + $fResult = 0; + if (abs($x) <= 30) { + $fResult = $fTerm = pow($x / 2, $ord) / PHPExcel_Calculation_MathTrig::FACT($ord); + $ordK = 1; + $fSqrX = ($x * $x) / -4; + do { + $fTerm *= $fSqrX; + $fTerm /= ($ordK * ($ordK + $ord)); + $fResult += $fTerm; + } while ((abs($fTerm) > 1e-12) && (++$ordK < 100)); + } else { + $f_PI_DIV_2 = M_PI / 2; + $f_PI_DIV_4 = M_PI / 4; + + $fXAbs = abs($x); + $fResult = sqrt(M_2DIVPI / $fXAbs) * cos($fXAbs - $ord * $f_PI_DIV_2 - $f_PI_DIV_4); + if (($ord & 1) && ($x < 0)) { + $fResult = -$fResult; + } + } + return (is_nan($fResult)) ? PHPExcel_Calculation_Functions::NaN() : $fResult; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + private static function besselK0($fNum) + { + if ($fNum <= 2) { + $fNum2 = $fNum * 0.5; + $y = ($fNum2 * $fNum2); + $fRet = -log($fNum2) * self::BESSELI($fNum, 0) + + (-0.57721566 + $y * (0.42278420 + $y * (0.23069756 + $y * (0.3488590e-1 + $y * (0.262698e-2 + $y * + (0.10750e-3 + $y * 0.74e-5)))))); + } else { + $y = 2 / $fNum; + $fRet = exp(-$fNum) / sqrt($fNum) * + (1.25331414 + $y * (-0.7832358e-1 + $y * (0.2189568e-1 + $y * (-0.1062446e-1 + $y * + (0.587872e-2 + $y * (-0.251540e-2 + $y * 0.53208e-3)))))); + } + return $fRet; + } + + + private static function besselK1($fNum) + { + if ($fNum <= 2) { + $fNum2 = $fNum * 0.5; + $y = ($fNum2 * $fNum2); + $fRet = log($fNum2) * self::BESSELI($fNum, 1) + + (1 + $y * (0.15443144 + $y * (-0.67278579 + $y * (-0.18156897 + $y * (-0.1919402e-1 + $y * + (-0.110404e-2 + $y * (-0.4686e-4))))))) / $fNum; + } else { + $y = 2 / $fNum; + $fRet = exp(-$fNum) / sqrt($fNum) * + (1.25331414 + $y * (0.23498619 + $y * (-0.3655620e-1 + $y * (0.1504268e-1 + $y * (-0.780353e-2 + $y * + (0.325614e-2 + $y * (-0.68245e-3))))))); + } + return $fRet; + } + + + /** + * BESSELK + * + * Returns the modified Bessel function Kn(x), which is equivalent to the Bessel functions evaluated + * for purely imaginary arguments. + * + * Excel Function: + * BESSELK(x,ord) + * + * @access public + * @category Engineering Functions + * @param float $x The value at which to evaluate the function. + * If x is nonnumeric, BESSELK returns the #VALUE! error value. + * @param integer $ord The order of the Bessel function. If n is not an integer, it is truncated. + * If $ord is nonnumeric, BESSELK returns the #VALUE! error value. + * If $ord < 0, BESSELK returns the #NUM! error value. + * @return float + * + */ + public static function BESSELK($x, $ord) + { + $x = (is_null($x)) ? 0.0 : PHPExcel_Calculation_Functions::flattenSingleValue($x); + $ord = (is_null($ord)) ? 0.0 : PHPExcel_Calculation_Functions::flattenSingleValue($ord); + + if ((is_numeric($x)) && (is_numeric($ord))) { + if (($ord < 0) || ($x == 0.0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + + switch (floor($ord)) { + case 0: + return self::besselK0($x); + case 1: + return self::besselK1($x); + default: + $fTox = 2 / $x; + $fBkm = self::besselK0($x); + $fBk = self::besselK1($x); + for ($n = 1; $n < $ord; ++$n) { + $fBkp = $fBkm + $n * $fTox * $fBk; + $fBkm = $fBk; + $fBk = $fBkp; + } + } + return (is_nan($fBk)) ? PHPExcel_Calculation_Functions::NaN() : $fBk; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + private static function besselY0($fNum) + { + if ($fNum < 8.0) { + $y = ($fNum * $fNum); + $f1 = -2957821389.0 + $y * (7062834065.0 + $y * (-512359803.6 + $y * (10879881.29 + $y * (-86327.92757 + $y * 228.4622733)))); + $f2 = 40076544269.0 + $y * (745249964.8 + $y * (7189466.438 + $y * (47447.26470 + $y * (226.1030244 + $y)))); + $fRet = $f1 / $f2 + 0.636619772 * self::BESSELJ($fNum, 0) * log($fNum); + } else { + $z = 8.0 / $fNum; + $y = ($z * $z); + $xx = $fNum - 0.785398164; + $f1 = 1 + $y * (-0.1098628627e-2 + $y * (0.2734510407e-4 + $y * (-0.2073370639e-5 + $y * 0.2093887211e-6))); + $f2 = -0.1562499995e-1 + $y * (0.1430488765e-3 + $y * (-0.6911147651e-5 + $y * (0.7621095161e-6 + $y * (-0.934945152e-7)))); + $fRet = sqrt(0.636619772 / $fNum) * (sin($xx) * $f1 + $z * cos($xx) * $f2); + } + return $fRet; + } + + + private static function besselY1($fNum) + { + if ($fNum < 8.0) { + $y = ($fNum * $fNum); + $f1 = $fNum * (-0.4900604943e13 + $y * (0.1275274390e13 + $y * (-0.5153438139e11 + $y * (0.7349264551e9 + $y * + (-0.4237922726e7 + $y * 0.8511937935e4))))); + $f2 = 0.2499580570e14 + $y * (0.4244419664e12 + $y * (0.3733650367e10 + $y * (0.2245904002e8 + $y * + (0.1020426050e6 + $y * (0.3549632885e3 + $y))))); + $fRet = $f1 / $f2 + 0.636619772 * ( self::BESSELJ($fNum, 1) * log($fNum) - 1 / $fNum); + } else { + $fRet = sqrt(0.636619772 / $fNum) * sin($fNum - 2.356194491); + } + return $fRet; + } + + + /** + * BESSELY + * + * Returns the Bessel function, which is also called the Weber function or the Neumann function. + * + * Excel Function: + * BESSELY(x,ord) + * + * @access public + * @category Engineering Functions + * @param float $x The value at which to evaluate the function. + * If x is nonnumeric, BESSELK returns the #VALUE! error value. + * @param integer $ord The order of the Bessel function. If n is not an integer, it is truncated. + * If $ord is nonnumeric, BESSELK returns the #VALUE! error value. + * If $ord < 0, BESSELK returns the #NUM! error value. + * + * @return float + */ + public static function BESSELY($x, $ord) + { + $x = (is_null($x)) ? 0.0 : PHPExcel_Calculation_Functions::flattenSingleValue($x); + $ord = (is_null($ord)) ? 0.0 : PHPExcel_Calculation_Functions::flattenSingleValue($ord); + + if ((is_numeric($x)) && (is_numeric($ord))) { + if (($ord < 0) || ($x == 0.0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + + switch (floor($ord)) { + case 0: + return self::besselY0($x); + case 1: + return self::besselY1($x); + default: + $fTox = 2 / $x; + $fBym = self::besselY0($x); + $fBy = self::besselY1($x); + for ($n = 1; $n < $ord; ++$n) { + $fByp = $n * $fTox * $fBy - $fBym; + $fBym = $fBy; + $fBy = $fByp; + } + } + return (is_nan($fBy)) ? PHPExcel_Calculation_Functions::NaN() : $fBy; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * BINTODEC + * + * Return a binary value as decimal. + * + * Excel Function: + * BIN2DEC(x) + * + * @access public + * @category Engineering Functions + * @param string $x The binary number (as a string) that you want to convert. The number + * cannot contain more than 10 characters (10 bits). The most significant + * bit of number is the sign bit. The remaining 9 bits are magnitude bits. + * Negative numbers are represented using two's-complement notation. + * If number is not a valid binary number, or if number contains more than + * 10 characters (10 bits), BIN2DEC returns the #NUM! error value. + * @return string + */ + public static function BINTODEC($x) + { + $x = PHPExcel_Calculation_Functions::flattenSingleValue($x); + + if (is_bool($x)) { + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE) { + $x = (int) $x; + } else { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC) { + $x = floor($x); + } + $x = (string) $x; + if (strlen($x) > preg_match_all('/[01]/', $x, $out)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if (strlen($x) > 10) { + return PHPExcel_Calculation_Functions::NaN(); + } elseif (strlen($x) == 10) { + // Two's Complement + $x = substr($x, -9); + return '-'.(512-bindec($x)); + } + return bindec($x); + } + + + /** + * BINTOHEX + * + * Return a binary value as hex. + * + * Excel Function: + * BIN2HEX(x[,places]) + * + * @access public + * @category Engineering Functions + * @param string $x The binary number (as a string) that you want to convert. The number + * cannot contain more than 10 characters (10 bits). The most significant + * bit of number is the sign bit. The remaining 9 bits are magnitude bits. + * Negative numbers are represented using two's-complement notation. + * If number is not a valid binary number, or if number contains more than + * 10 characters (10 bits), BIN2HEX returns the #NUM! error value. + * @param integer $places The number of characters to use. If places is omitted, BIN2HEX uses the + * minimum number of characters necessary. Places is useful for padding the + * return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, BIN2HEX returns the #VALUE! error value. + * If places is negative, BIN2HEX returns the #NUM! error value. + * @return string + */ + public static function BINTOHEX($x, $places = null) + { + $x = PHPExcel_Calculation_Functions::flattenSingleValue($x); + $places = PHPExcel_Calculation_Functions::flattenSingleValue($places); + + if (is_bool($x)) { + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE) { + $x = (int) $x; + } else { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC) { + $x = floor($x); + } + $x = (string) $x; + if (strlen($x) > preg_match_all('/[01]/', $x, $out)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if (strlen($x) > 10) { + return PHPExcel_Calculation_Functions::NaN(); + } elseif (strlen($x) == 10) { + // Two's Complement + return str_repeat('F', 8).substr(strtoupper(dechex(bindec(substr($x, -9)))), -2); + } + $hexVal = (string) strtoupper(dechex(bindec($x))); + + return self::nbrConversionFormat($hexVal, $places); + } + + + /** + * BINTOOCT + * + * Return a binary value as octal. + * + * Excel Function: + * BIN2OCT(x[,places]) + * + * @access public + * @category Engineering Functions + * @param string $x The binary number (as a string) that you want to convert. The number + * cannot contain more than 10 characters (10 bits). The most significant + * bit of number is the sign bit. The remaining 9 bits are magnitude bits. + * Negative numbers are represented using two's-complement notation. + * If number is not a valid binary number, or if number contains more than + * 10 characters (10 bits), BIN2OCT returns the #NUM! error value. + * @param integer $places The number of characters to use. If places is omitted, BIN2OCT uses the + * minimum number of characters necessary. Places is useful for padding the + * return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, BIN2OCT returns the #VALUE! error value. + * If places is negative, BIN2OCT returns the #NUM! error value. + * @return string + */ + public static function BINTOOCT($x, $places = null) + { + $x = PHPExcel_Calculation_Functions::flattenSingleValue($x); + $places = PHPExcel_Calculation_Functions::flattenSingleValue($places); + + if (is_bool($x)) { + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE) { + $x = (int) $x; + } else { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC) { + $x = floor($x); + } + $x = (string) $x; + if (strlen($x) > preg_match_all('/[01]/', $x, $out)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if (strlen($x) > 10) { + return PHPExcel_Calculation_Functions::NaN(); + } elseif (strlen($x) == 10) { + // Two's Complement + return str_repeat('7', 7).substr(strtoupper(decoct(bindec(substr($x, -9)))), -3); + } + $octVal = (string) decoct(bindec($x)); + + return self::nbrConversionFormat($octVal, $places); + } + + + /** + * DECTOBIN + * + * Return a decimal value as binary. + * + * Excel Function: + * DEC2BIN(x[,places]) + * + * @access public + * @category Engineering Functions + * @param string $x The decimal integer you want to convert. If number is negative, + * valid place values are ignored and DEC2BIN returns a 10-character + * (10-bit) binary number in which the most significant bit is the sign + * bit. The remaining 9 bits are magnitude bits. Negative numbers are + * represented using two's-complement notation. + * If number < -512 or if number > 511, DEC2BIN returns the #NUM! error + * value. + * If number is nonnumeric, DEC2BIN returns the #VALUE! error value. + * If DEC2BIN requires more than places characters, it returns the #NUM! + * error value. + * @param integer $places The number of characters to use. If places is omitted, DEC2BIN uses + * the minimum number of characters necessary. Places is useful for + * padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, DEC2BIN returns the #VALUE! error value. + * If places is zero or negative, DEC2BIN returns the #NUM! error value. + * @return string + */ + public static function DECTOBIN($x, $places = null) + { + $x = PHPExcel_Calculation_Functions::flattenSingleValue($x); + $places = PHPExcel_Calculation_Functions::flattenSingleValue($places); + + if (is_bool($x)) { + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE) { + $x = (int) $x; + } else { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + $x = (string) $x; + if (strlen($x) > preg_match_all('/[-0123456789.]/', $x, $out)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $x = (string) floor($x); + $r = decbin($x); + if (strlen($r) == 32) { + // Two's Complement + $r = substr($r, -10); + } elseif (strlen($r) > 11) { + return PHPExcel_Calculation_Functions::NaN(); + } + + return self::nbrConversionFormat($r, $places); + } + + + /** + * DECTOHEX + * + * Return a decimal value as hex. + * + * Excel Function: + * DEC2HEX(x[,places]) + * + * @access public + * @category Engineering Functions + * @param string $x The decimal integer you want to convert. If number is negative, + * places is ignored and DEC2HEX returns a 10-character (40-bit) + * hexadecimal number in which the most significant bit is the sign + * bit. The remaining 39 bits are magnitude bits. Negative numbers + * are represented using two's-complement notation. + * If number < -549,755,813,888 or if number > 549,755,813,887, + * DEC2HEX returns the #NUM! error value. + * If number is nonnumeric, DEC2HEX returns the #VALUE! error value. + * If DEC2HEX requires more than places characters, it returns the + * #NUM! error value. + * @param integer $places The number of characters to use. If places is omitted, DEC2HEX uses + * the minimum number of characters necessary. Places is useful for + * padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, DEC2HEX returns the #VALUE! error value. + * If places is zero or negative, DEC2HEX returns the #NUM! error value. + * @return string + */ + public static function DECTOHEX($x, $places = null) + { + $x = PHPExcel_Calculation_Functions::flattenSingleValue($x); + $places = PHPExcel_Calculation_Functions::flattenSingleValue($places); + + if (is_bool($x)) { + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE) { + $x = (int) $x; + } else { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + $x = (string) $x; + if (strlen($x) > preg_match_all('/[-0123456789.]/', $x, $out)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $x = (string) floor($x); + $r = strtoupper(dechex($x)); + if (strlen($r) == 8) { + // Two's Complement + $r = 'FF'.$r; + } + + return self::nbrConversionFormat($r, $places); + } + + + /** + * DECTOOCT + * + * Return an decimal value as octal. + * + * Excel Function: + * DEC2OCT(x[,places]) + * + * @access public + * @category Engineering Functions + * @param string $x The decimal integer you want to convert. If number is negative, + * places is ignored and DEC2OCT returns a 10-character (30-bit) + * octal number in which the most significant bit is the sign bit. + * The remaining 29 bits are magnitude bits. Negative numbers are + * represented using two's-complement notation. + * If number < -536,870,912 or if number > 536,870,911, DEC2OCT + * returns the #NUM! error value. + * If number is nonnumeric, DEC2OCT returns the #VALUE! error value. + * If DEC2OCT requires more than places characters, it returns the + * #NUM! error value. + * @param integer $places The number of characters to use. If places is omitted, DEC2OCT uses + * the minimum number of characters necessary. Places is useful for + * padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, DEC2OCT returns the #VALUE! error value. + * If places is zero or negative, DEC2OCT returns the #NUM! error value. + * @return string + */ + public static function DECTOOCT($x, $places = null) + { + $x = PHPExcel_Calculation_Functions::flattenSingleValue($x); + $places = PHPExcel_Calculation_Functions::flattenSingleValue($places); + + if (is_bool($x)) { + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE) { + $x = (int) $x; + } else { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + $x = (string) $x; + if (strlen($x) > preg_match_all('/[-0123456789.]/', $x, $out)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $x = (string) floor($x); + $r = decoct($x); + if (strlen($r) == 11) { + // Two's Complement + $r = substr($r, -10); + } + + return self::nbrConversionFormat($r, $places); + } + + + /** + * HEXTOBIN + * + * Return a hex value as binary. + * + * Excel Function: + * HEX2BIN(x[,places]) + * + * @access public + * @category Engineering Functions + * @param string $x the hexadecimal number you want to convert. Number cannot + * contain more than 10 characters. The most significant bit of + * number is the sign bit (40th bit from the right). The remaining + * 9 bits are magnitude bits. Negative numbers are represented + * using two's-complement notation. + * If number is negative, HEX2BIN ignores places and returns a + * 10-character binary number. + * If number is negative, it cannot be less than FFFFFFFE00, and + * if number is positive, it cannot be greater than 1FF. + * If number is not a valid hexadecimal number, HEX2BIN returns + * the #NUM! error value. + * If HEX2BIN requires more than places characters, it returns + * the #NUM! error value. + * @param integer $places The number of characters to use. If places is omitted, + * HEX2BIN uses the minimum number of characters necessary. Places + * is useful for padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, HEX2BIN returns the #VALUE! error value. + * If places is negative, HEX2BIN returns the #NUM! error value. + * @return string + */ + public static function HEXTOBIN($x, $places = null) + { + $x = PHPExcel_Calculation_Functions::flattenSingleValue($x); + $places = PHPExcel_Calculation_Functions::flattenSingleValue($places); + + if (is_bool($x)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $x = (string) $x; + if (strlen($x) > preg_match_all('/[0123456789ABCDEF]/', strtoupper($x), $out)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $binVal = decbin(hexdec($x)); + + return substr(self::nbrConversionFormat($binVal, $places), -10); + } + + + /** + * HEXTODEC + * + * Return a hex value as decimal. + * + * Excel Function: + * HEX2DEC(x) + * + * @access public + * @category Engineering Functions + * @param string $x The hexadecimal number you want to convert. This number cannot + * contain more than 10 characters (40 bits). The most significant + * bit of number is the sign bit. The remaining 39 bits are magnitude + * bits. Negative numbers are represented using two's-complement + * notation. + * If number is not a valid hexadecimal number, HEX2DEC returns the + * #NUM! error value. + * @return string + */ + public static function HEXTODEC($x) + { + $x = PHPExcel_Calculation_Functions::flattenSingleValue($x); + + if (is_bool($x)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $x = (string) $x; + if (strlen($x) > preg_match_all('/[0123456789ABCDEF]/', strtoupper($x), $out)) { + return PHPExcel_Calculation_Functions::NaN(); + } + return hexdec($x); + } + + + /** + * HEXTOOCT + * + * Return a hex value as octal. + * + * Excel Function: + * HEX2OCT(x[,places]) + * + * @access public + * @category Engineering Functions + * @param string $x The hexadecimal number you want to convert. Number cannot + * contain more than 10 characters. The most significant bit of + * number is the sign bit. The remaining 39 bits are magnitude + * bits. Negative numbers are represented using two's-complement + * notation. + * If number is negative, HEX2OCT ignores places and returns a + * 10-character octal number. + * If number is negative, it cannot be less than FFE0000000, and + * if number is positive, it cannot be greater than 1FFFFFFF. + * If number is not a valid hexadecimal number, HEX2OCT returns + * the #NUM! error value. + * If HEX2OCT requires more than places characters, it returns + * the #NUM! error value. + * @param integer $places The number of characters to use. If places is omitted, HEX2OCT + * uses the minimum number of characters necessary. Places is + * useful for padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, HEX2OCT returns the #VALUE! error + * value. + * If places is negative, HEX2OCT returns the #NUM! error value. + * @return string + */ + public static function HEXTOOCT($x, $places = null) + { + $x = PHPExcel_Calculation_Functions::flattenSingleValue($x); + $places = PHPExcel_Calculation_Functions::flattenSingleValue($places); + + if (is_bool($x)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $x = (string) $x; + if (strlen($x) > preg_match_all('/[0123456789ABCDEF]/', strtoupper($x), $out)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $octVal = decoct(hexdec($x)); + + return self::nbrConversionFormat($octVal, $places); + } // function HEXTOOCT() + + + /** + * OCTTOBIN + * + * Return an octal value as binary. + * + * Excel Function: + * OCT2BIN(x[,places]) + * + * @access public + * @category Engineering Functions + * @param string $x The octal number you want to convert. Number may not + * contain more than 10 characters. The most significant + * bit of number is the sign bit. The remaining 29 bits + * are magnitude bits. Negative numbers are represented + * using two's-complement notation. + * If number is negative, OCT2BIN ignores places and returns + * a 10-character binary number. + * If number is negative, it cannot be less than 7777777000, + * and if number is positive, it cannot be greater than 777. + * If number is not a valid octal number, OCT2BIN returns + * the #NUM! error value. + * If OCT2BIN requires more than places characters, it + * returns the #NUM! error value. + * @param integer $places The number of characters to use. If places is omitted, + * OCT2BIN uses the minimum number of characters necessary. + * Places is useful for padding the return value with + * leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, OCT2BIN returns the #VALUE! + * error value. + * If places is negative, OCT2BIN returns the #NUM! error + * value. + * @return string + */ + public static function OCTTOBIN($x, $places = null) + { + $x = PHPExcel_Calculation_Functions::flattenSingleValue($x); + $places = PHPExcel_Calculation_Functions::flattenSingleValue($places); + + if (is_bool($x)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $x = (string) $x; + if (preg_match_all('/[01234567]/', $x, $out) != strlen($x)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $r = decbin(octdec($x)); + + return self::nbrConversionFormat($r, $places); + } + + + /** + * OCTTODEC + * + * Return an octal value as decimal. + * + * Excel Function: + * OCT2DEC(x) + * + * @access public + * @category Engineering Functions + * @param string $x The octal number you want to convert. Number may not contain + * more than 10 octal characters (30 bits). The most significant + * bit of number is the sign bit. The remaining 29 bits are + * magnitude bits. Negative numbers are represented using + * two's-complement notation. + * If number is not a valid octal number, OCT2DEC returns the + * #NUM! error value. + * @return string + */ + public static function OCTTODEC($x) + { + $x = PHPExcel_Calculation_Functions::flattenSingleValue($x); + + if (is_bool($x)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $x = (string) $x; + if (preg_match_all('/[01234567]/', $x, $out) != strlen($x)) { + return PHPExcel_Calculation_Functions::NaN(); + } + return octdec($x); + } + + + /** + * OCTTOHEX + * + * Return an octal value as hex. + * + * Excel Function: + * OCT2HEX(x[,places]) + * + * @access public + * @category Engineering Functions + * @param string $x The octal number you want to convert. Number may not contain + * more than 10 octal characters (30 bits). The most significant + * bit of number is the sign bit. The remaining 29 bits are + * magnitude bits. Negative numbers are represented using + * two's-complement notation. + * If number is negative, OCT2HEX ignores places and returns a + * 10-character hexadecimal number. + * If number is not a valid octal number, OCT2HEX returns the + * #NUM! error value. + * If OCT2HEX requires more than places characters, it returns + * the #NUM! error value. + * @param integer $places The number of characters to use. If places is omitted, OCT2HEX + * uses the minimum number of characters necessary. Places is useful + * for padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, OCT2HEX returns the #VALUE! error value. + * If places is negative, OCT2HEX returns the #NUM! error value. + * @return string + */ + public static function OCTTOHEX($x, $places = null) + { + $x = PHPExcel_Calculation_Functions::flattenSingleValue($x); + $places = PHPExcel_Calculation_Functions::flattenSingleValue($places); + + if (is_bool($x)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $x = (string) $x; + if (preg_match_all('/[01234567]/', $x, $out) != strlen($x)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $hexVal = strtoupper(dechex(octdec($x))); + + return self::nbrConversionFormat($hexVal, $places); + } + + + /** + * COMPLEX + * + * Converts real and imaginary coefficients into a complex number of the form x + yi or x + yj. + * + * Excel Function: + * COMPLEX(realNumber,imaginary[,places]) + * + * @access public + * @category Engineering Functions + * @param float $realNumber The real coefficient of the complex number. + * @param float $imaginary The imaginary coefficient of the complex number. + * @param string $suffix The suffix for the imaginary component of the complex number. + * If omitted, the suffix is assumed to be "i". + * @return string + */ + public static function COMPLEX($realNumber = 0.0, $imaginary = 0.0, $suffix = 'i') + { + $realNumber = (is_null($realNumber)) ? 0.0 : PHPExcel_Calculation_Functions::flattenSingleValue($realNumber); + $imaginary = (is_null($imaginary)) ? 0.0 : PHPExcel_Calculation_Functions::flattenSingleValue($imaginary); + $suffix = (is_null($suffix)) ? 'i' : PHPExcel_Calculation_Functions::flattenSingleValue($suffix); + + if (((is_numeric($realNumber)) && (is_numeric($imaginary))) && + (($suffix == 'i') || ($suffix == 'j') || ($suffix == ''))) { + $realNumber = (float) $realNumber; + $imaginary = (float) $imaginary; + + if ($suffix == '') { + $suffix = 'i'; + } + if ($realNumber == 0.0) { + if ($imaginary == 0.0) { + return (string) '0'; + } elseif ($imaginary == 1.0) { + return (string) $suffix; + } elseif ($imaginary == -1.0) { + return (string) '-'.$suffix; + } + return (string) $imaginary.$suffix; + } elseif ($imaginary == 0.0) { + return (string) $realNumber; + } elseif ($imaginary == 1.0) { + return (string) $realNumber.'+'.$suffix; + } elseif ($imaginary == -1.0) { + return (string) $realNumber.'-'.$suffix; + } + if ($imaginary > 0) { + $imaginary = (string) '+'.$imaginary; + } + return (string) $realNumber.$imaginary.$suffix; + } + + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * IMAGINARY + * + * Returns the imaginary coefficient of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMAGINARY(complexNumber) + * + * @access public + * @category Engineering Functions + * @param string $complexNumber The complex number for which you want the imaginary + * coefficient. + * @return float + */ + public static function IMAGINARY($complexNumber) + { + $complexNumber = PHPExcel_Calculation_Functions::flattenSingleValue($complexNumber); + + $parsedComplex = self::parseComplex($complexNumber); + return $parsedComplex['imaginary']; + } + + + /** + * IMREAL + * + * Returns the real coefficient of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMREAL(complexNumber) + * + * @access public + * @category Engineering Functions + * @param string $complexNumber The complex number for which you want the real coefficient. + * @return float + */ + public static function IMREAL($complexNumber) + { + $complexNumber = PHPExcel_Calculation_Functions::flattenSingleValue($complexNumber); + + $parsedComplex = self::parseComplex($complexNumber); + return $parsedComplex['real']; + } + + + /** + * IMABS + * + * Returns the absolute value (modulus) of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMABS(complexNumber) + * + * @param string $complexNumber The complex number for which you want the absolute value. + * @return float + */ + public static function IMABS($complexNumber) + { + $complexNumber = PHPExcel_Calculation_Functions::flattenSingleValue($complexNumber); + + $parsedComplex = self::parseComplex($complexNumber); + + return sqrt( + ($parsedComplex['real'] * $parsedComplex['real']) + + ($parsedComplex['imaginary'] * $parsedComplex['imaginary']) + ); + } + + + /** + * IMARGUMENT + * + * Returns the argument theta of a complex number, i.e. the angle in radians from the real + * axis to the representation of the number in polar coordinates. + * + * Excel Function: + * IMARGUMENT(complexNumber) + * + * @param string $complexNumber The complex number for which you want the argument theta. + * @return float + */ + public static function IMARGUMENT($complexNumber) + { + $complexNumber = PHPExcel_Calculation_Functions::flattenSingleValue($complexNumber); + + $parsedComplex = self::parseComplex($complexNumber); + + if ($parsedComplex['real'] == 0.0) { + if ($parsedComplex['imaginary'] == 0.0) { + return 0.0; + } elseif ($parsedComplex['imaginary'] < 0.0) { + return M_PI / -2; + } else { + return M_PI / 2; + } + } elseif ($parsedComplex['real'] > 0.0) { + return atan($parsedComplex['imaginary'] / $parsedComplex['real']); + } elseif ($parsedComplex['imaginary'] < 0.0) { + return 0 - (M_PI - atan(abs($parsedComplex['imaginary']) / abs($parsedComplex['real']))); + } else { + return M_PI - atan($parsedComplex['imaginary'] / abs($parsedComplex['real'])); + } + } + + + /** + * IMCONJUGATE + * + * Returns the complex conjugate of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMCONJUGATE(complexNumber) + * + * @param string $complexNumber The complex number for which you want the conjugate. + * @return string + */ + public static function IMCONJUGATE($complexNumber) + { + $complexNumber = PHPExcel_Calculation_Functions::flattenSingleValue($complexNumber); + + $parsedComplex = self::parseComplex($complexNumber); + + if ($parsedComplex['imaginary'] == 0.0) { + return $parsedComplex['real']; + } else { + return self::cleanComplex( + self::COMPLEX( + $parsedComplex['real'], + 0 - $parsedComplex['imaginary'], + $parsedComplex['suffix'] + ) + ); + } + } + + + /** + * IMCOS + * + * Returns the cosine of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMCOS(complexNumber) + * + * @param string $complexNumber The complex number for which you want the cosine. + * @return string|float + */ + public static function IMCOS($complexNumber) + { + $complexNumber = PHPExcel_Calculation_Functions::flattenSingleValue($complexNumber); + + $parsedComplex = self::parseComplex($complexNumber); + + if ($parsedComplex['imaginary'] == 0.0) { + return cos($parsedComplex['real']); + } else { + return self::IMCONJUGATE( + self::COMPLEX( + cos($parsedComplex['real']) * cosh($parsedComplex['imaginary']), + sin($parsedComplex['real']) * sinh($parsedComplex['imaginary']), + $parsedComplex['suffix'] + ) + ); + } + } + + + /** + * IMSIN + * + * Returns the sine of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMSIN(complexNumber) + * + * @param string $complexNumber The complex number for which you want the sine. + * @return string|float + */ + public static function IMSIN($complexNumber) + { + $complexNumber = PHPExcel_Calculation_Functions::flattenSingleValue($complexNumber); + + $parsedComplex = self::parseComplex($complexNumber); + + if ($parsedComplex['imaginary'] == 0.0) { + return sin($parsedComplex['real']); + } else { + return self::COMPLEX( + sin($parsedComplex['real']) * cosh($parsedComplex['imaginary']), + cos($parsedComplex['real']) * sinh($parsedComplex['imaginary']), + $parsedComplex['suffix'] + ); + } + } + + + /** + * IMSQRT + * + * Returns the square root of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMSQRT(complexNumber) + * + * @param string $complexNumber The complex number for which you want the square root. + * @return string + */ + public static function IMSQRT($complexNumber) + { + $complexNumber = PHPExcel_Calculation_Functions::flattenSingleValue($complexNumber); + + $parsedComplex = self::parseComplex($complexNumber); + + $theta = self::IMARGUMENT($complexNumber); + $d1 = cos($theta / 2); + $d2 = sin($theta / 2); + $r = sqrt(sqrt(($parsedComplex['real'] * $parsedComplex['real']) + ($parsedComplex['imaginary'] * $parsedComplex['imaginary']))); + + if ($parsedComplex['suffix'] == '') { + return self::COMPLEX($d1 * $r, $d2 * $r); + } else { + return self::COMPLEX($d1 * $r, $d2 * $r, $parsedComplex['suffix']); + } + } + + + /** + * IMLN + * + * Returns the natural logarithm of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMLN(complexNumber) + * + * @param string $complexNumber The complex number for which you want the natural logarithm. + * @return string + */ + public static function IMLN($complexNumber) + { + $complexNumber = PHPExcel_Calculation_Functions::flattenSingleValue($complexNumber); + + $parsedComplex = self::parseComplex($complexNumber); + + if (($parsedComplex['real'] == 0.0) && ($parsedComplex['imaginary'] == 0.0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + + $logR = log(sqrt(($parsedComplex['real'] * $parsedComplex['real']) + ($parsedComplex['imaginary'] * $parsedComplex['imaginary']))); + $t = self::IMARGUMENT($complexNumber); + + if ($parsedComplex['suffix'] == '') { + return self::COMPLEX($logR, $t); + } else { + return self::COMPLEX($logR, $t, $parsedComplex['suffix']); + } + } + + + /** + * IMLOG10 + * + * Returns the common logarithm (base 10) of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMLOG10(complexNumber) + * + * @param string $complexNumber The complex number for which you want the common logarithm. + * @return string + */ + public static function IMLOG10($complexNumber) + { + $complexNumber = PHPExcel_Calculation_Functions::flattenSingleValue($complexNumber); + + $parsedComplex = self::parseComplex($complexNumber); + + if (($parsedComplex['real'] == 0.0) && ($parsedComplex['imaginary'] == 0.0)) { + return PHPExcel_Calculation_Functions::NaN(); + } elseif (($parsedComplex['real'] > 0.0) && ($parsedComplex['imaginary'] == 0.0)) { + return log10($parsedComplex['real']); + } + + return self::IMPRODUCT(log10(EULER), self::IMLN($complexNumber)); + } + + + /** + * IMLOG2 + * + * Returns the base-2 logarithm of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMLOG2(complexNumber) + * + * @param string $complexNumber The complex number for which you want the base-2 logarithm. + * @return string + */ + public static function IMLOG2($complexNumber) + { + $complexNumber = PHPExcel_Calculation_Functions::flattenSingleValue($complexNumber); + + $parsedComplex = self::parseComplex($complexNumber); + + if (($parsedComplex['real'] == 0.0) && ($parsedComplex['imaginary'] == 0.0)) { + return PHPExcel_Calculation_Functions::NaN(); + } elseif (($parsedComplex['real'] > 0.0) && ($parsedComplex['imaginary'] == 0.0)) { + return log($parsedComplex['real'], 2); + } + + return self::IMPRODUCT(log(EULER, 2), self::IMLN($complexNumber)); + } + + + /** + * IMEXP + * + * Returns the exponential of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMEXP(complexNumber) + * + * @param string $complexNumber The complex number for which you want the exponential. + * @return string + */ + public static function IMEXP($complexNumber) + { + $complexNumber = PHPExcel_Calculation_Functions::flattenSingleValue($complexNumber); + + $parsedComplex = self::parseComplex($complexNumber); + + if (($parsedComplex['real'] == 0.0) && ($parsedComplex['imaginary'] == 0.0)) { + return '1'; + } + + $e = exp($parsedComplex['real']); + $eX = $e * cos($parsedComplex['imaginary']); + $eY = $e * sin($parsedComplex['imaginary']); + + if ($parsedComplex['suffix'] == '') { + return self::COMPLEX($eX, $eY); + } else { + return self::COMPLEX($eX, $eY, $parsedComplex['suffix']); + } + } + + + /** + * IMPOWER + * + * Returns a complex number in x + yi or x + yj text format raised to a power. + * + * Excel Function: + * IMPOWER(complexNumber,realNumber) + * + * @param string $complexNumber The complex number you want to raise to a power. + * @param float $realNumber The power to which you want to raise the complex number. + * @return string + */ + public static function IMPOWER($complexNumber, $realNumber) + { + $complexNumber = PHPExcel_Calculation_Functions::flattenSingleValue($complexNumber); + $realNumber = PHPExcel_Calculation_Functions::flattenSingleValue($realNumber); + + if (!is_numeric($realNumber)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + $parsedComplex = self::parseComplex($complexNumber); + + $r = sqrt(($parsedComplex['real'] * $parsedComplex['real']) + ($parsedComplex['imaginary'] * $parsedComplex['imaginary'])); + $rPower = pow($r, $realNumber); + $theta = self::IMARGUMENT($complexNumber) * $realNumber; + if ($theta == 0) { + return 1; + } elseif ($parsedComplex['imaginary'] == 0.0) { + return self::COMPLEX($rPower * cos($theta), $rPower * sin($theta), $parsedComplex['suffix']); + } else { + return self::COMPLEX($rPower * cos($theta), $rPower * sin($theta), $parsedComplex['suffix']); + } + } + + + /** + * IMDIV + * + * Returns the quotient of two complex numbers in x + yi or x + yj text format. + * + * Excel Function: + * IMDIV(complexDividend,complexDivisor) + * + * @param string $complexDividend The complex numerator or dividend. + * @param string $complexDivisor The complex denominator or divisor. + * @return string + */ + public static function IMDIV($complexDividend, $complexDivisor) + { + $complexDividend = PHPExcel_Calculation_Functions::flattenSingleValue($complexDividend); + $complexDivisor = PHPExcel_Calculation_Functions::flattenSingleValue($complexDivisor); + + $parsedComplexDividend = self::parseComplex($complexDividend); + $parsedComplexDivisor = self::parseComplex($complexDivisor); + + if (($parsedComplexDividend['suffix'] != '') && ($parsedComplexDivisor['suffix'] != '') && + ($parsedComplexDividend['suffix'] != $parsedComplexDivisor['suffix'])) { + return PHPExcel_Calculation_Functions::NaN(); + } + if (($parsedComplexDividend['suffix'] != '') && ($parsedComplexDivisor['suffix'] == '')) { + $parsedComplexDivisor['suffix'] = $parsedComplexDividend['suffix']; + } + + $d1 = ($parsedComplexDividend['real'] * $parsedComplexDivisor['real']) + ($parsedComplexDividend['imaginary'] * $parsedComplexDivisor['imaginary']); + $d2 = ($parsedComplexDividend['imaginary'] * $parsedComplexDivisor['real']) - ($parsedComplexDividend['real'] * $parsedComplexDivisor['imaginary']); + $d3 = ($parsedComplexDivisor['real'] * $parsedComplexDivisor['real']) + ($parsedComplexDivisor['imaginary'] * $parsedComplexDivisor['imaginary']); + + $r = $d1 / $d3; + $i = $d2 / $d3; + + if ($i > 0.0) { + return self::cleanComplex($r.'+'.$i.$parsedComplexDivisor['suffix']); + } elseif ($i < 0.0) { + return self::cleanComplex($r.$i.$parsedComplexDivisor['suffix']); + } else { + return $r; + } + } + + + /** + * IMSUB + * + * Returns the difference of two complex numbers in x + yi or x + yj text format. + * + * Excel Function: + * IMSUB(complexNumber1,complexNumber2) + * + * @param string $complexNumber1 The complex number from which to subtract complexNumber2. + * @param string $complexNumber2 The complex number to subtract from complexNumber1. + * @return string + */ + public static function IMSUB($complexNumber1, $complexNumber2) + { + $complexNumber1 = PHPExcel_Calculation_Functions::flattenSingleValue($complexNumber1); + $complexNumber2 = PHPExcel_Calculation_Functions::flattenSingleValue($complexNumber2); + + $parsedComplex1 = self::parseComplex($complexNumber1); + $parsedComplex2 = self::parseComplex($complexNumber2); + + if ((($parsedComplex1['suffix'] != '') && ($parsedComplex2['suffix'] != '')) && + ($parsedComplex1['suffix'] != $parsedComplex2['suffix'])) { + return PHPExcel_Calculation_Functions::NaN(); + } elseif (($parsedComplex1['suffix'] == '') && ($parsedComplex2['suffix'] != '')) { + $parsedComplex1['suffix'] = $parsedComplex2['suffix']; + } + + $d1 = $parsedComplex1['real'] - $parsedComplex2['real']; + $d2 = $parsedComplex1['imaginary'] - $parsedComplex2['imaginary']; + + return self::COMPLEX($d1, $d2, $parsedComplex1['suffix']); + } + + + /** + * IMSUM + * + * Returns the sum of two or more complex numbers in x + yi or x + yj text format. + * + * Excel Function: + * IMSUM(complexNumber[,complexNumber[,...]]) + * + * @param string $complexNumber,... Series of complex numbers to add + * @return string + */ + public static function IMSUM() + { + // Return value + $returnValue = self::parseComplex('0'); + $activeSuffix = ''; + + // Loop through the arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + foreach ($aArgs as $arg) { + $parsedComplex = self::parseComplex($arg); + + if ($activeSuffix == '') { + $activeSuffix = $parsedComplex['suffix']; + } elseif (($parsedComplex['suffix'] != '') && ($activeSuffix != $parsedComplex['suffix'])) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + $returnValue['real'] += $parsedComplex['real']; + $returnValue['imaginary'] += $parsedComplex['imaginary']; + } + + if ($returnValue['imaginary'] == 0.0) { + $activeSuffix = ''; + } + return self::COMPLEX($returnValue['real'], $returnValue['imaginary'], $activeSuffix); + } + + + /** + * IMPRODUCT + * + * Returns the product of two or more complex numbers in x + yi or x + yj text format. + * + * Excel Function: + * IMPRODUCT(complexNumber[,complexNumber[,...]]) + * + * @param string $complexNumber,... Series of complex numbers to multiply + * @return string + */ + public static function IMPRODUCT() + { + // Return value + $returnValue = self::parseComplex('1'); + $activeSuffix = ''; + + // Loop through the arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + foreach ($aArgs as $arg) { + $parsedComplex = self::parseComplex($arg); + + $workValue = $returnValue; + if (($parsedComplex['suffix'] != '') && ($activeSuffix == '')) { + $activeSuffix = $parsedComplex['suffix']; + } elseif (($parsedComplex['suffix'] != '') && ($activeSuffix != $parsedComplex['suffix'])) { + return PHPExcel_Calculation_Functions::NaN(); + } + $returnValue['real'] = ($workValue['real'] * $parsedComplex['real']) - ($workValue['imaginary'] * $parsedComplex['imaginary']); + $returnValue['imaginary'] = ($workValue['real'] * $parsedComplex['imaginary']) + ($workValue['imaginary'] * $parsedComplex['real']); + } + + if ($returnValue['imaginary'] == 0.0) { + $activeSuffix = ''; + } + return self::COMPLEX($returnValue['real'], $returnValue['imaginary'], $activeSuffix); + } + + + /** + * DELTA + * + * Tests whether two values are equal. Returns 1 if number1 = number2; returns 0 otherwise. + * Use this function to filter a set of values. For example, by summing several DELTA + * functions you calculate the count of equal pairs. This function is also known as the + * Kronecker Delta function. + * + * Excel Function: + * DELTA(a[,b]) + * + * @param float $a The first number. + * @param float $b The second number. If omitted, b is assumed to be zero. + * @return int + */ + public static function DELTA($a, $b = 0) + { + $a = PHPExcel_Calculation_Functions::flattenSingleValue($a); + $b = PHPExcel_Calculation_Functions::flattenSingleValue($b); + + return (int) ($a == $b); + } + + + /** + * GESTEP + * + * Excel Function: + * GESTEP(number[,step]) + * + * Returns 1 if number >= step; returns 0 (zero) otherwise + * Use this function to filter a set of values. For example, by summing several GESTEP + * functions you calculate the count of values that exceed a threshold. + * + * @param float $number The value to test against step. + * @param float $step The threshold value. + * If you omit a value for step, GESTEP uses zero. + * @return int + */ + public static function GESTEP($number, $step = 0) + { + $number = PHPExcel_Calculation_Functions::flattenSingleValue($number); + $step = PHPExcel_Calculation_Functions::flattenSingleValue($step); + + return (int) ($number >= $step); + } + + + // + // Private method to calculate the erf value + // + private static $twoSqrtPi = 1.128379167095512574; + + public static function erfVal($x) + { + if (abs($x) > 2.2) { + return 1 - self::erfcVal($x); + } + $sum = $term = $x; + $xsqr = ($x * $x); + $j = 1; + do { + $term *= $xsqr / $j; + $sum -= $term / (2 * $j + 1); + ++$j; + $term *= $xsqr / $j; + $sum += $term / (2 * $j + 1); + ++$j; + if ($sum == 0.0) { + break; + } + } while (abs($term / $sum) > PRECISION); + return self::$twoSqrtPi * $sum; + } + + + /** + * ERF + * + * Returns the error function integrated between the lower and upper bound arguments. + * + * Note: In Excel 2007 or earlier, if you input a negative value for the upper or lower bound arguments, + * the function would return a #NUM! error. However, in Excel 2010, the function algorithm was + * improved, so that it can now calculate the function for both positive and negative ranges. + * PHPExcel follows Excel 2010 behaviour, and accepts nagative arguments. + * + * Excel Function: + * ERF(lower[,upper]) + * + * @param float $lower lower bound for integrating ERF + * @param float $upper upper bound for integrating ERF. + * If omitted, ERF integrates between zero and lower_limit + * @return float + */ + public static function ERF($lower, $upper = null) + { + $lower = PHPExcel_Calculation_Functions::flattenSingleValue($lower); + $upper = PHPExcel_Calculation_Functions::flattenSingleValue($upper); + + if (is_numeric($lower)) { + if (is_null($upper)) { + return self::erfVal($lower); + } + if (is_numeric($upper)) { + return self::erfVal($upper) - self::erfVal($lower); + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + // + // Private method to calculate the erfc value + // + private static $oneSqrtPi = 0.564189583547756287; + + private static function erfcVal($x) + { + if (abs($x) < 2.2) { + return 1 - self::erfVal($x); + } + if ($x < 0) { + return 2 - self::ERFC(-$x); + } + $a = $n = 1; + $b = $c = $x; + $d = ($x * $x) + 0.5; + $q1 = $q2 = $b / $d; + $t = 0; + do { + $t = $a * $n + $b * $x; + $a = $b; + $b = $t; + $t = $c * $n + $d * $x; + $c = $d; + $d = $t; + $n += 0.5; + $q1 = $q2; + $q2 = $b / $d; + } while ((abs($q1 - $q2) / $q2) > PRECISION); + return self::$oneSqrtPi * exp(-$x * $x) * $q2; + } + + + /** + * ERFC + * + * Returns the complementary ERF function integrated between x and infinity + * + * Note: In Excel 2007 or earlier, if you input a negative value for the lower bound argument, + * the function would return a #NUM! error. However, in Excel 2010, the function algorithm was + * improved, so that it can now calculate the function for both positive and negative x values. + * PHPExcel follows Excel 2010 behaviour, and accepts nagative arguments. + * + * Excel Function: + * ERFC(x) + * + * @param float $x The lower bound for integrating ERFC + * @return float + */ + public static function ERFC($x) + { + $x = PHPExcel_Calculation_Functions::flattenSingleValue($x); + + if (is_numeric($x)) { + return self::erfcVal($x); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * getConversionGroups + * Returns a list of the different conversion groups for UOM conversions + * + * @return array + */ + public static function getConversionGroups() + { + $conversionGroups = array(); + foreach (self::$conversionUnits as $conversionUnit) { + $conversionGroups[] = $conversionUnit['Group']; + } + return array_merge(array_unique($conversionGroups)); + } + + + /** + * getConversionGroupUnits + * Returns an array of units of measure, for a specified conversion group, or for all groups + * + * @param string $group The group whose units of measure you want to retrieve + * @return array + */ + public static function getConversionGroupUnits($group = null) + { + $conversionGroups = array(); + foreach (self::$conversionUnits as $conversionUnit => $conversionGroup) { + if ((is_null($group)) || ($conversionGroup['Group'] == $group)) { + $conversionGroups[$conversionGroup['Group']][] = $conversionUnit; + } + } + return $conversionGroups; + } + + + /** + * getConversionGroupUnitDetails + * + * @param string $group The group whose units of measure you want to retrieve + * @return array + */ + public static function getConversionGroupUnitDetails($group = null) + { + $conversionGroups = array(); + foreach (self::$conversionUnits as $conversionUnit => $conversionGroup) { + if ((is_null($group)) || ($conversionGroup['Group'] == $group)) { + $conversionGroups[$conversionGroup['Group']][] = array( + 'unit' => $conversionUnit, + 'description' => $conversionGroup['Unit Name'] + ); + } + } + return $conversionGroups; + } + + + /** + * getConversionMultipliers + * Returns an array of the Multiplier prefixes that can be used with Units of Measure in CONVERTUOM() + * + * @return array of mixed + */ + public static function getConversionMultipliers() + { + return self::$conversionMultipliers; + } + + + /** + * CONVERTUOM + * + * Converts a number from one measurement system to another. + * For example, CONVERT can translate a table of distances in miles to a table of distances + * in kilometers. + * + * Excel Function: + * CONVERT(value,fromUOM,toUOM) + * + * @param float $value The value in fromUOM to convert. + * @param string $fromUOM The units for value. + * @param string $toUOM The units for the result. + * + * @return float + */ + public static function CONVERTUOM($value, $fromUOM, $toUOM) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $fromUOM = PHPExcel_Calculation_Functions::flattenSingleValue($fromUOM); + $toUOM = PHPExcel_Calculation_Functions::flattenSingleValue($toUOM); + + if (!is_numeric($value)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $fromMultiplier = 1.0; + if (isset(self::$conversionUnits[$fromUOM])) { + $unitGroup1 = self::$conversionUnits[$fromUOM]['Group']; + } else { + $fromMultiplier = substr($fromUOM, 0, 1); + $fromUOM = substr($fromUOM, 1); + if (isset(self::$conversionMultipliers[$fromMultiplier])) { + $fromMultiplier = self::$conversionMultipliers[$fromMultiplier]['multiplier']; + } else { + return PHPExcel_Calculation_Functions::NA(); + } + if ((isset(self::$conversionUnits[$fromUOM])) && (self::$conversionUnits[$fromUOM]['AllowPrefix'])) { + $unitGroup1 = self::$conversionUnits[$fromUOM]['Group']; + } else { + return PHPExcel_Calculation_Functions::NA(); + } + } + $value *= $fromMultiplier; + + $toMultiplier = 1.0; + if (isset(self::$conversionUnits[$toUOM])) { + $unitGroup2 = self::$conversionUnits[$toUOM]['Group']; + } else { + $toMultiplier = substr($toUOM, 0, 1); + $toUOM = substr($toUOM, 1); + if (isset(self::$conversionMultipliers[$toMultiplier])) { + $toMultiplier = self::$conversionMultipliers[$toMultiplier]['multiplier']; + } else { + return PHPExcel_Calculation_Functions::NA(); + } + if ((isset(self::$conversionUnits[$toUOM])) && (self::$conversionUnits[$toUOM]['AllowPrefix'])) { + $unitGroup2 = self::$conversionUnits[$toUOM]['Group']; + } else { + return PHPExcel_Calculation_Functions::NA(); + } + } + if ($unitGroup1 != $unitGroup2) { + return PHPExcel_Calculation_Functions::NA(); + } + + if (($fromUOM == $toUOM) && ($fromMultiplier == $toMultiplier)) { + // We've already factored $fromMultiplier into the value, so we need + // to reverse it again + return $value / $fromMultiplier; + } elseif ($unitGroup1 == 'Temperature') { + if (($fromUOM == 'F') || ($fromUOM == 'fah')) { + if (($toUOM == 'F') || ($toUOM == 'fah')) { + return $value; + } else { + $value = (($value - 32) / 1.8); + if (($toUOM == 'K') || ($toUOM == 'kel')) { + $value += 273.15; + } + return $value; + } + } elseif ((($fromUOM == 'K') || ($fromUOM == 'kel')) && + (($toUOM == 'K') || ($toUOM == 'kel'))) { + return $value; + } elseif ((($fromUOM == 'C') || ($fromUOM == 'cel')) && + (($toUOM == 'C') || ($toUOM == 'cel'))) { + return $value; + } + if (($toUOM == 'F') || ($toUOM == 'fah')) { + if (($fromUOM == 'K') || ($fromUOM == 'kel')) { + $value -= 273.15; + } + return ($value * 1.8) + 32; + } + if (($toUOM == 'C') || ($toUOM == 'cel')) { + return $value - 273.15; + } + return $value + 273.15; + } + return ($value * self::$unitConversions[$unitGroup1][$fromUOM][$toUOM]) / $toMultiplier; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Exception.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Exception.php new file mode 100644 index 0000000..52d73fc --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Exception.php @@ -0,0 +1,46 @@ +line = $line; + $e->file = $file; + throw $e; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/ExceptionHandler.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/ExceptionHandler.php new file mode 100644 index 0000000..4cb0a68 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/ExceptionHandler.php @@ -0,0 +1,45 @@ +format('d') == $testDate->format('t')); + } + + + /** + * isFirstDayOfMonth + * + * Returns a boolean TRUE/FALSE indicating if this date is the first date of the month + * + * @param DateTime $testDate The date for testing + * @return boolean + */ + private static function isFirstDayOfMonth($testDate) + { + return ($testDate->format('d') == 1); + } + + + private static function couponFirstPeriodDate($settlement, $maturity, $frequency, $next) + { + $months = 12 / $frequency; + + $result = PHPExcel_Shared_Date::ExcelToPHPObject($maturity); + $eom = self::isLastDayOfMonth($result); + + while ($settlement < PHPExcel_Shared_Date::PHPToExcel($result)) { + $result->modify('-'.$months.' months'); + } + if ($next) { + $result->modify('+'.$months.' months'); + } + + if ($eom) { + $result->modify('-1 day'); + } + + return PHPExcel_Shared_Date::PHPToExcel($result); + } + + + private static function isValidFrequency($frequency) + { + if (($frequency == 1) || ($frequency == 2) || ($frequency == 4)) { + return true; + } + if ((PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC) && + (($frequency == 6) || ($frequency == 12))) { + return true; + } + return false; + } + + + /** + * daysPerYear + * + * Returns the number of days in a specified year, as defined by the "basis" value + * + * @param integer $year The year against which we're testing + * @param integer $basis The type of day count: + * 0 or omitted US (NASD) 360 + * 1 Actual (365 or 366 in a leap year) + * 2 360 + * 3 365 + * 4 European 360 + * @return integer + */ + private static function daysPerYear($year, $basis = 0) + { + switch ($basis) { + case 0: + case 2: + case 4: + $daysPerYear = 360; + break; + case 3: + $daysPerYear = 365; + break; + case 1: + $daysPerYear = (PHPExcel_Calculation_DateTime::isLeapYear($year)) ? 366 : 365; + break; + default: + return PHPExcel_Calculation_Functions::NaN(); + } + return $daysPerYear; + } + + + private static function interestAndPrincipal($rate = 0, $per = 0, $nper = 0, $pv = 0, $fv = 0, $type = 0) + { + $pmt = self::PMT($rate, $nper, $pv, $fv, $type); + $capital = $pv; + for ($i = 1; $i<= $per; ++$i) { + $interest = ($type && $i == 1) ? 0 : -$capital * $rate; + $principal = $pmt - $interest; + $capital += $principal; + } + return array($interest, $principal); + } + + + /** + * ACCRINT + * + * Returns the accrued interest for a security that pays periodic interest. + * + * Excel Function: + * ACCRINT(issue,firstinterest,settlement,rate,par,frequency[,basis]) + * + * @access public + * @category Financial Functions + * @param mixed $issue The security's issue date. + * @param mixed $firstinterest The security's first interest date. + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue date + * when the security is traded to the buyer. + * @param float $rate The security's annual coupon rate. + * @param float $par The security's par value. + * If you omit par, ACCRINT uses $1,000. + * @param integer $frequency the number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * If working in Gnumeric Mode, the following frequency options are + * also available + * 6 Bimonthly + * 12 Monthly + * @param integer $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return float + */ + public static function ACCRINT($issue, $firstinterest, $settlement, $rate, $par = 1000, $frequency = 1, $basis = 0) + { + $issue = PHPExcel_Calculation_Functions::flattenSingleValue($issue); + $firstinterest = PHPExcel_Calculation_Functions::flattenSingleValue($firstinterest); + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $rate = PHPExcel_Calculation_Functions::flattenSingleValue($rate); + $par = (is_null($par)) ? 1000 : PHPExcel_Calculation_Functions::flattenSingleValue($par); + $frequency = (is_null($frequency)) ? 1 : PHPExcel_Calculation_Functions::flattenSingleValue($frequency); + $basis = (is_null($basis)) ? 0 : PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + // Validate + if ((is_numeric($rate)) && (is_numeric($par))) { + $rate = (float) $rate; + $par = (float) $par; + if (($rate <= 0) || ($par <= 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $daysBetweenIssueAndSettlement = PHPExcel_Calculation_DateTime::YEARFRAC($issue, $settlement, $basis); + if (!is_numeric($daysBetweenIssueAndSettlement)) { + // return date error + return $daysBetweenIssueAndSettlement; + } + + return $par * $rate * $daysBetweenIssueAndSettlement; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * ACCRINTM + * + * Returns the accrued interest for a security that pays interest at maturity. + * + * Excel Function: + * ACCRINTM(issue,settlement,rate[,par[,basis]]) + * + * @access public + * @category Financial Functions + * @param mixed issue The security's issue date. + * @param mixed settlement The security's settlement (or maturity) date. + * @param float rate The security's annual coupon rate. + * @param float par The security's par value. + * If you omit par, ACCRINT uses $1,000. + * @param integer basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return float + */ + public static function ACCRINTM($issue, $settlement, $rate, $par = 1000, $basis = 0) + { + $issue = PHPExcel_Calculation_Functions::flattenSingleValue($issue); + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $rate = PHPExcel_Calculation_Functions::flattenSingleValue($rate); + $par = (is_null($par)) ? 1000 : PHPExcel_Calculation_Functions::flattenSingleValue($par); + $basis = (is_null($basis)) ? 0 : PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + // Validate + if ((is_numeric($rate)) && (is_numeric($par))) { + $rate = (float) $rate; + $par = (float) $par; + if (($rate <= 0) || ($par <= 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $daysBetweenIssueAndSettlement = PHPExcel_Calculation_DateTime::YEARFRAC($issue, $settlement, $basis); + if (!is_numeric($daysBetweenIssueAndSettlement)) { + // return date error + return $daysBetweenIssueAndSettlement; + } + return $par * $rate * $daysBetweenIssueAndSettlement; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * AMORDEGRC + * + * Returns the depreciation for each accounting period. + * This function is provided for the French accounting system. If an asset is purchased in + * the middle of the accounting period, the prorated depreciation is taken into account. + * The function is similar to AMORLINC, except that a depreciation coefficient is applied in + * the calculation depending on the life of the assets. + * This function will return the depreciation until the last period of the life of the assets + * or until the cumulated value of depreciation is greater than the cost of the assets minus + * the salvage value. + * + * Excel Function: + * AMORDEGRC(cost,purchased,firstPeriod,salvage,period,rate[,basis]) + * + * @access public + * @category Financial Functions + * @param float cost The cost of the asset. + * @param mixed purchased Date of the purchase of the asset. + * @param mixed firstPeriod Date of the end of the first period. + * @param mixed salvage The salvage value at the end of the life of the asset. + * @param float period The period. + * @param float rate Rate of depreciation. + * @param integer basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return float + */ + public static function AMORDEGRC($cost, $purchased, $firstPeriod, $salvage, $period, $rate, $basis = 0) + { + $cost = PHPExcel_Calculation_Functions::flattenSingleValue($cost); + $purchased = PHPExcel_Calculation_Functions::flattenSingleValue($purchased); + $firstPeriod = PHPExcel_Calculation_Functions::flattenSingleValue($firstPeriod); + $salvage = PHPExcel_Calculation_Functions::flattenSingleValue($salvage); + $period = floor(PHPExcel_Calculation_Functions::flattenSingleValue($period)); + $rate = PHPExcel_Calculation_Functions::flattenSingleValue($rate); + $basis = (is_null($basis)) ? 0 : (int) PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + // The depreciation coefficients are: + // Life of assets (1/rate) Depreciation coefficient + // Less than 3 years 1 + // Between 3 and 4 years 1.5 + // Between 5 and 6 years 2 + // More than 6 years 2.5 + $fUsePer = 1.0 / $rate; + if ($fUsePer < 3.0) { + $amortiseCoeff = 1.0; + } elseif ($fUsePer < 5.0) { + $amortiseCoeff = 1.5; + } elseif ($fUsePer <= 6.0) { + $amortiseCoeff = 2.0; + } else { + $amortiseCoeff = 2.5; + } + + $rate *= $amortiseCoeff; + $fNRate = round(PHPExcel_Calculation_DateTime::YEARFRAC($purchased, $firstPeriod, $basis) * $rate * $cost, 0); + $cost -= $fNRate; + $fRest = $cost - $salvage; + + for ($n = 0; $n < $period; ++$n) { + $fNRate = round($rate * $cost, 0); + $fRest -= $fNRate; + + if ($fRest < 0.0) { + switch ($period - $n) { + case 0: + case 1: + return round($cost * 0.5, 0); + default: + return 0.0; + } + } + $cost -= $fNRate; + } + return $fNRate; + } + + + /** + * AMORLINC + * + * Returns the depreciation for each accounting period. + * This function is provided for the French accounting system. If an asset is purchased in + * the middle of the accounting period, the prorated depreciation is taken into account. + * + * Excel Function: + * AMORLINC(cost,purchased,firstPeriod,salvage,period,rate[,basis]) + * + * @access public + * @category Financial Functions + * @param float cost The cost of the asset. + * @param mixed purchased Date of the purchase of the asset. + * @param mixed firstPeriod Date of the end of the first period. + * @param mixed salvage The salvage value at the end of the life of the asset. + * @param float period The period. + * @param float rate Rate of depreciation. + * @param integer basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return float + */ + public static function AMORLINC($cost, $purchased, $firstPeriod, $salvage, $period, $rate, $basis = 0) + { + $cost = PHPExcel_Calculation_Functions::flattenSingleValue($cost); + $purchased = PHPExcel_Calculation_Functions::flattenSingleValue($purchased); + $firstPeriod = PHPExcel_Calculation_Functions::flattenSingleValue($firstPeriod); + $salvage = PHPExcel_Calculation_Functions::flattenSingleValue($salvage); + $period = PHPExcel_Calculation_Functions::flattenSingleValue($period); + $rate = PHPExcel_Calculation_Functions::flattenSingleValue($rate); + $basis = (is_null($basis)) ? 0 : (int) PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + $fOneRate = $cost * $rate; + $fCostDelta = $cost - $salvage; + // Note, quirky variation for leap years on the YEARFRAC for this function + $purchasedYear = PHPExcel_Calculation_DateTime::YEAR($purchased); + $yearFrac = PHPExcel_Calculation_DateTime::YEARFRAC($purchased, $firstPeriod, $basis); + + if (($basis == 1) && ($yearFrac < 1) && (PHPExcel_Calculation_DateTime::isLeapYear($purchasedYear))) { + $yearFrac *= 365 / 366; + } + + $f0Rate = $yearFrac * $rate * $cost; + $nNumOfFullPeriods = intval(($cost - $salvage - $f0Rate) / $fOneRate); + + if ($period == 0) { + return $f0Rate; + } elseif ($period <= $nNumOfFullPeriods) { + return $fOneRate; + } elseif ($period == ($nNumOfFullPeriods + 1)) { + return ($fCostDelta - $fOneRate * $nNumOfFullPeriods - $f0Rate); + } else { + return 0.0; + } + } + + + /** + * COUPDAYBS + * + * Returns the number of days from the beginning of the coupon period to the settlement date. + * + * Excel Function: + * COUPDAYBS(settlement,maturity,frequency[,basis]) + * + * @access public + * @category Financial Functions + * @param mixed settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed frequency the number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * If working in Gnumeric Mode, the following frequency options are + * also available + * 6 Bimonthly + * 12 Monthly + * @param integer basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return float + */ + public static function COUPDAYBS($settlement, $maturity, $frequency, $basis = 0) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $frequency = (int) PHPExcel_Calculation_Functions::flattenSingleValue($frequency); + $basis = (is_null($basis)) ? 0 : (int) PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + if (is_string($settlement = PHPExcel_Calculation_DateTime::getDateValue($settlement))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if (is_string($maturity = PHPExcel_Calculation_DateTime::getDateValue($maturity))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + if (($settlement > $maturity) || + (!self::isValidFrequency($frequency)) || + (($basis < 0) || ($basis > 4))) { + return PHPExcel_Calculation_Functions::NaN(); + } + + $daysPerYear = self::daysPerYear(PHPExcel_Calculation_DateTime::YEAR($settlement), $basis); + $prev = self::couponFirstPeriodDate($settlement, $maturity, $frequency, false); + + return PHPExcel_Calculation_DateTime::YEARFRAC($prev, $settlement, $basis) * $daysPerYear; + } + + + /** + * COUPDAYS + * + * Returns the number of days in the coupon period that contains the settlement date. + * + * Excel Function: + * COUPDAYS(settlement,maturity,frequency[,basis]) + * + * @access public + * @category Financial Functions + * @param mixed settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed frequency the number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * If working in Gnumeric Mode, the following frequency options are + * also available + * 6 Bimonthly + * 12 Monthly + * @param integer basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return float + */ + public static function COUPDAYS($settlement, $maturity, $frequency, $basis = 0) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $frequency = (int) PHPExcel_Calculation_Functions::flattenSingleValue($frequency); + $basis = (is_null($basis)) ? 0 : (int) PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + if (is_string($settlement = PHPExcel_Calculation_DateTime::getDateValue($settlement))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if (is_string($maturity = PHPExcel_Calculation_DateTime::getDateValue($maturity))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + if (($settlement > $maturity) || + (!self::isValidFrequency($frequency)) || + (($basis < 0) || ($basis > 4))) { + return PHPExcel_Calculation_Functions::NaN(); + } + + switch ($basis) { + case 3: + // Actual/365 + return 365 / $frequency; + case 1: + // Actual/actual + if ($frequency == 1) { + $daysPerYear = self::daysPerYear(PHPExcel_Calculation_DateTime::YEAR($maturity), $basis); + return ($daysPerYear / $frequency); + } + $prev = self::couponFirstPeriodDate($settlement, $maturity, $frequency, false); + $next = self::couponFirstPeriodDate($settlement, $maturity, $frequency, true); + return ($next - $prev); + default: + // US (NASD) 30/360, Actual/360 or European 30/360 + return 360 / $frequency; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * COUPDAYSNC + * + * Returns the number of days from the settlement date to the next coupon date. + * + * Excel Function: + * COUPDAYSNC(settlement,maturity,frequency[,basis]) + * + * @access public + * @category Financial Functions + * @param mixed settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed frequency the number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * If working in Gnumeric Mode, the following frequency options are + * also available + * 6 Bimonthly + * 12 Monthly + * @param integer basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return float + */ + public static function COUPDAYSNC($settlement, $maturity, $frequency, $basis = 0) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $frequency = (int) PHPExcel_Calculation_Functions::flattenSingleValue($frequency); + $basis = (is_null($basis)) ? 0 : (int) PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + if (is_string($settlement = PHPExcel_Calculation_DateTime::getDateValue($settlement))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if (is_string($maturity = PHPExcel_Calculation_DateTime::getDateValue($maturity))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + if (($settlement > $maturity) || + (!self::isValidFrequency($frequency)) || + (($basis < 0) || ($basis > 4))) { + return PHPExcel_Calculation_Functions::NaN(); + } + + $daysPerYear = self::daysPerYear(PHPExcel_Calculation_DateTime::YEAR($settlement), $basis); + $next = self::couponFirstPeriodDate($settlement, $maturity, $frequency, true); + + return PHPExcel_Calculation_DateTime::YEARFRAC($settlement, $next, $basis) * $daysPerYear; + } + + + /** + * COUPNCD + * + * Returns the next coupon date after the settlement date. + * + * Excel Function: + * COUPNCD(settlement,maturity,frequency[,basis]) + * + * @access public + * @category Financial Functions + * @param mixed settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed frequency the number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * If working in Gnumeric Mode, the following frequency options are + * also available + * 6 Bimonthly + * 12 Monthly + * @param integer basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function COUPNCD($settlement, $maturity, $frequency, $basis = 0) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $frequency = (int) PHPExcel_Calculation_Functions::flattenSingleValue($frequency); + $basis = (is_null($basis)) ? 0 : (int) PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + if (is_string($settlement = PHPExcel_Calculation_DateTime::getDateValue($settlement))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if (is_string($maturity = PHPExcel_Calculation_DateTime::getDateValue($maturity))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + if (($settlement > $maturity) || + (!self::isValidFrequency($frequency)) || + (($basis < 0) || ($basis > 4))) { + return PHPExcel_Calculation_Functions::NaN(); + } + + return self::couponFirstPeriodDate($settlement, $maturity, $frequency, true); + } + + + /** + * COUPNUM + * + * Returns the number of coupons payable between the settlement date and maturity date, + * rounded up to the nearest whole coupon. + * + * Excel Function: + * COUPNUM(settlement,maturity,frequency[,basis]) + * + * @access public + * @category Financial Functions + * @param mixed settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed frequency the number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * If working in Gnumeric Mode, the following frequency options are + * also available + * 6 Bimonthly + * 12 Monthly + * @param integer basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return integer + */ + public static function COUPNUM($settlement, $maturity, $frequency, $basis = 0) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $frequency = (int) PHPExcel_Calculation_Functions::flattenSingleValue($frequency); + $basis = (is_null($basis)) ? 0 : (int) PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + if (is_string($settlement = PHPExcel_Calculation_DateTime::getDateValue($settlement))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if (is_string($maturity = PHPExcel_Calculation_DateTime::getDateValue($maturity))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + if (($settlement > $maturity) || + (!self::isValidFrequency($frequency)) || + (($basis < 0) || ($basis > 4))) { + return PHPExcel_Calculation_Functions::NaN(); + } + + $settlement = self::couponFirstPeriodDate($settlement, $maturity, $frequency, true); + $daysBetweenSettlementAndMaturity = PHPExcel_Calculation_DateTime::YEARFRAC($settlement, $maturity, $basis) * 365; + + switch ($frequency) { + case 1: // annual payments + return ceil($daysBetweenSettlementAndMaturity / 360); + case 2: // half-yearly + return ceil($daysBetweenSettlementAndMaturity / 180); + case 4: // quarterly + return ceil($daysBetweenSettlementAndMaturity / 90); + case 6: // bimonthly + return ceil($daysBetweenSettlementAndMaturity / 60); + case 12: // monthly + return ceil($daysBetweenSettlementAndMaturity / 30); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * COUPPCD + * + * Returns the previous coupon date before the settlement date. + * + * Excel Function: + * COUPPCD(settlement,maturity,frequency[,basis]) + * + * @access public + * @category Financial Functions + * @param mixed settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed frequency the number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * If working in Gnumeric Mode, the following frequency options are + * also available + * 6 Bimonthly + * 12 Monthly + * @param integer basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function COUPPCD($settlement, $maturity, $frequency, $basis = 0) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $frequency = (int) PHPExcel_Calculation_Functions::flattenSingleValue($frequency); + $basis = (is_null($basis)) ? 0 : (int) PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + if (is_string($settlement = PHPExcel_Calculation_DateTime::getDateValue($settlement))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if (is_string($maturity = PHPExcel_Calculation_DateTime::getDateValue($maturity))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + if (($settlement > $maturity) || + (!self::isValidFrequency($frequency)) || + (($basis < 0) || ($basis > 4))) { + return PHPExcel_Calculation_Functions::NaN(); + } + + return self::couponFirstPeriodDate($settlement, $maturity, $frequency, false); + } + + + /** + * CUMIPMT + * + * Returns the cumulative interest paid on a loan between the start and end periods. + * + * Excel Function: + * CUMIPMT(rate,nper,pv,start,end[,type]) + * + * @access public + * @category Financial Functions + * @param float $rate The Interest rate + * @param integer $nper The total number of payment periods + * @param float $pv Present Value + * @param integer $start The first period in the calculation. + * Payment periods are numbered beginning with 1. + * @param integer $end The last period in the calculation. + * @param integer $type A number 0 or 1 and indicates when payments are due: + * 0 or omitted At the end of the period. + * 1 At the beginning of the period. + * @return float + */ + public static function CUMIPMT($rate, $nper, $pv, $start, $end, $type = 0) + { + $rate = PHPExcel_Calculation_Functions::flattenSingleValue($rate); + $nper = (int) PHPExcel_Calculation_Functions::flattenSingleValue($nper); + $pv = PHPExcel_Calculation_Functions::flattenSingleValue($pv); + $start = (int) PHPExcel_Calculation_Functions::flattenSingleValue($start); + $end = (int) PHPExcel_Calculation_Functions::flattenSingleValue($end); + $type = (int) PHPExcel_Calculation_Functions::flattenSingleValue($type); + + // Validate parameters + if ($type != 0 && $type != 1) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ($start < 1 || $start > $end) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + // Calculate + $interest = 0; + for ($per = $start; $per <= $end; ++$per) { + $interest += self::IPMT($rate, $per, $nper, $pv, 0, $type); + } + + return $interest; + } + + + /** + * CUMPRINC + * + * Returns the cumulative principal paid on a loan between the start and end periods. + * + * Excel Function: + * CUMPRINC(rate,nper,pv,start,end[,type]) + * + * @access public + * @category Financial Functions + * @param float $rate The Interest rate + * @param integer $nper The total number of payment periods + * @param float $pv Present Value + * @param integer $start The first period in the calculation. + * Payment periods are numbered beginning with 1. + * @param integer $end The last period in the calculation. + * @param integer $type A number 0 or 1 and indicates when payments are due: + * 0 or omitted At the end of the period. + * 1 At the beginning of the period. + * @return float + */ + public static function CUMPRINC($rate, $nper, $pv, $start, $end, $type = 0) + { + $rate = PHPExcel_Calculation_Functions::flattenSingleValue($rate); + $nper = (int) PHPExcel_Calculation_Functions::flattenSingleValue($nper); + $pv = PHPExcel_Calculation_Functions::flattenSingleValue($pv); + $start = (int) PHPExcel_Calculation_Functions::flattenSingleValue($start); + $end = (int) PHPExcel_Calculation_Functions::flattenSingleValue($end); + $type = (int) PHPExcel_Calculation_Functions::flattenSingleValue($type); + + // Validate parameters + if ($type != 0 && $type != 1) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ($start < 1 || $start > $end) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + // Calculate + $principal = 0; + for ($per = $start; $per <= $end; ++$per) { + $principal += self::PPMT($rate, $per, $nper, $pv, 0, $type); + } + + return $principal; + } + + + /** + * DB + * + * Returns the depreciation of an asset for a specified period using the + * fixed-declining balance method. + * This form of depreciation is used if you want to get a higher depreciation value + * at the beginning of the depreciation (as opposed to linear depreciation). The + * depreciation value is reduced with every depreciation period by the depreciation + * already deducted from the initial cost. + * + * Excel Function: + * DB(cost,salvage,life,period[,month]) + * + * @access public + * @category Financial Functions + * @param float cost Initial cost of the asset. + * @param float salvage Value at the end of the depreciation. + * (Sometimes called the salvage value of the asset) + * @param integer life Number of periods over which the asset is depreciated. + * (Sometimes called the useful life of the asset) + * @param integer period The period for which you want to calculate the + * depreciation. Period must use the same units as life. + * @param integer month Number of months in the first year. If month is omitted, + * it defaults to 12. + * @return float + */ + public static function DB($cost, $salvage, $life, $period, $month = 12) + { + $cost = PHPExcel_Calculation_Functions::flattenSingleValue($cost); + $salvage = PHPExcel_Calculation_Functions::flattenSingleValue($salvage); + $life = PHPExcel_Calculation_Functions::flattenSingleValue($life); + $period = PHPExcel_Calculation_Functions::flattenSingleValue($period); + $month = PHPExcel_Calculation_Functions::flattenSingleValue($month); + + // Validate + if ((is_numeric($cost)) && (is_numeric($salvage)) && (is_numeric($life)) && (is_numeric($period)) && (is_numeric($month))) { + $cost = (float) $cost; + $salvage = (float) $salvage; + $life = (int) $life; + $period = (int) $period; + $month = (int) $month; + if ($cost == 0) { + return 0.0; + } elseif (($cost < 0) || (($salvage / $cost) < 0) || ($life <= 0) || ($period < 1) || ($month < 1)) { + return PHPExcel_Calculation_Functions::NaN(); + } + // Set Fixed Depreciation Rate + $fixedDepreciationRate = 1 - pow(($salvage / $cost), (1 / $life)); + $fixedDepreciationRate = round($fixedDepreciationRate, 3); + + // Loop through each period calculating the depreciation + $previousDepreciation = 0; + for ($per = 1; $per <= $period; ++$per) { + if ($per == 1) { + $depreciation = $cost * $fixedDepreciationRate * $month / 12; + } elseif ($per == ($life + 1)) { + $depreciation = ($cost - $previousDepreciation) * $fixedDepreciationRate * (12 - $month) / 12; + } else { + $depreciation = ($cost - $previousDepreciation) * $fixedDepreciationRate; + } + $previousDepreciation += $depreciation; + } + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC) { + $depreciation = round($depreciation, 2); + } + return $depreciation; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * DDB + * + * Returns the depreciation of an asset for a specified period using the + * double-declining balance method or some other method you specify. + * + * Excel Function: + * DDB(cost,salvage,life,period[,factor]) + * + * @access public + * @category Financial Functions + * @param float cost Initial cost of the asset. + * @param float salvage Value at the end of the depreciation. + * (Sometimes called the salvage value of the asset) + * @param integer life Number of periods over which the asset is depreciated. + * (Sometimes called the useful life of the asset) + * @param integer period The period for which you want to calculate the + * depreciation. Period must use the same units as life. + * @param float factor The rate at which the balance declines. + * If factor is omitted, it is assumed to be 2 (the + * double-declining balance method). + * @return float + */ + public static function DDB($cost, $salvage, $life, $period, $factor = 2.0) + { + $cost = PHPExcel_Calculation_Functions::flattenSingleValue($cost); + $salvage = PHPExcel_Calculation_Functions::flattenSingleValue($salvage); + $life = PHPExcel_Calculation_Functions::flattenSingleValue($life); + $period = PHPExcel_Calculation_Functions::flattenSingleValue($period); + $factor = PHPExcel_Calculation_Functions::flattenSingleValue($factor); + + // Validate + if ((is_numeric($cost)) && (is_numeric($salvage)) && (is_numeric($life)) && (is_numeric($period)) && (is_numeric($factor))) { + $cost = (float) $cost; + $salvage = (float) $salvage; + $life = (int) $life; + $period = (int) $period; + $factor = (float) $factor; + if (($cost <= 0) || (($salvage / $cost) < 0) || ($life <= 0) || ($period < 1) || ($factor <= 0.0) || ($period > $life)) { + return PHPExcel_Calculation_Functions::NaN(); + } + // Set Fixed Depreciation Rate + $fixedDepreciationRate = 1 - pow(($salvage / $cost), (1 / $life)); + $fixedDepreciationRate = round($fixedDepreciationRate, 3); + + // Loop through each period calculating the depreciation + $previousDepreciation = 0; + for ($per = 1; $per <= $period; ++$per) { + $depreciation = min(($cost - $previousDepreciation) * ($factor / $life), ($cost - $salvage - $previousDepreciation)); + $previousDepreciation += $depreciation; + } + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC) { + $depreciation = round($depreciation, 2); + } + return $depreciation; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * DISC + * + * Returns the discount rate for a security. + * + * Excel Function: + * DISC(settlement,maturity,price,redemption[,basis]) + * + * @access public + * @category Financial Functions + * @param mixed settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param integer price The security's price per $100 face value. + * @param integer redemption The security's redemption value per $100 face value. + * @param integer basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return float + */ + public static function DISC($settlement, $maturity, $price, $redemption, $basis = 0) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $price = PHPExcel_Calculation_Functions::flattenSingleValue($price); + $redemption = PHPExcel_Calculation_Functions::flattenSingleValue($redemption); + $basis = PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + // Validate + if ((is_numeric($price)) && (is_numeric($redemption)) && (is_numeric($basis))) { + $price = (float) $price; + $redemption = (float) $redemption; + $basis = (int) $basis; + if (($price <= 0) || ($redemption <= 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $daysBetweenSettlementAndMaturity = PHPExcel_Calculation_DateTime::YEARFRAC($settlement, $maturity, $basis); + if (!is_numeric($daysBetweenSettlementAndMaturity)) { + // return date error + return $daysBetweenSettlementAndMaturity; + } + + return ((1 - $price / $redemption) / $daysBetweenSettlementAndMaturity); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * DOLLARDE + * + * Converts a dollar price expressed as an integer part and a fraction + * part into a dollar price expressed as a decimal number. + * Fractional dollar numbers are sometimes used for security prices. + * + * Excel Function: + * DOLLARDE(fractional_dollar,fraction) + * + * @access public + * @category Financial Functions + * @param float $fractional_dollar Fractional Dollar + * @param integer $fraction Fraction + * @return float + */ + public static function DOLLARDE($fractional_dollar = null, $fraction = 0) + { + $fractional_dollar = PHPExcel_Calculation_Functions::flattenSingleValue($fractional_dollar); + $fraction = (int)PHPExcel_Calculation_Functions::flattenSingleValue($fraction); + + // Validate parameters + if (is_null($fractional_dollar) || $fraction < 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ($fraction == 0) { + return PHPExcel_Calculation_Functions::DIV0(); + } + + $dollars = floor($fractional_dollar); + $cents = fmod($fractional_dollar, 1); + $cents /= $fraction; + $cents *= pow(10, ceil(log10($fraction))); + return $dollars + $cents; + } + + + /** + * DOLLARFR + * + * Converts a dollar price expressed as a decimal number into a dollar price + * expressed as a fraction. + * Fractional dollar numbers are sometimes used for security prices. + * + * Excel Function: + * DOLLARFR(decimal_dollar,fraction) + * + * @access public + * @category Financial Functions + * @param float $decimal_dollar Decimal Dollar + * @param integer $fraction Fraction + * @return float + */ + public static function DOLLARFR($decimal_dollar = null, $fraction = 0) + { + $decimal_dollar = PHPExcel_Calculation_Functions::flattenSingleValue($decimal_dollar); + $fraction = (int)PHPExcel_Calculation_Functions::flattenSingleValue($fraction); + + // Validate parameters + if (is_null($decimal_dollar) || $fraction < 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ($fraction == 0) { + return PHPExcel_Calculation_Functions::DIV0(); + } + + $dollars = floor($decimal_dollar); + $cents = fmod($decimal_dollar, 1); + $cents *= $fraction; + $cents *= pow(10, -ceil(log10($fraction))); + return $dollars + $cents; + } + + + /** + * EFFECT + * + * Returns the effective interest rate given the nominal rate and the number of + * compounding payments per year. + * + * Excel Function: + * EFFECT(nominal_rate,npery) + * + * @access public + * @category Financial Functions + * @param float $nominal_rate Nominal interest rate + * @param integer $npery Number of compounding payments per year + * @return float + */ + public static function EFFECT($nominal_rate = 0, $npery = 0) + { + $nominal_rate = PHPExcel_Calculation_Functions::flattenSingleValue($nominal_rate); + $npery = (int)PHPExcel_Calculation_Functions::flattenSingleValue($npery); + + // Validate parameters + if ($nominal_rate <= 0 || $npery < 1) { + return PHPExcel_Calculation_Functions::NaN(); + } + + return pow((1 + $nominal_rate / $npery), $npery) - 1; + } + + + /** + * FV + * + * Returns the Future Value of a cash flow with constant payments and interest rate (annuities). + * + * Excel Function: + * FV(rate,nper,pmt[,pv[,type]]) + * + * @access public + * @category Financial Functions + * @param float $rate The interest rate per period + * @param int $nper Total number of payment periods in an annuity + * @param float $pmt The payment made each period: it cannot change over the + * life of the annuity. Typically, pmt contains principal + * and interest but no other fees or taxes. + * @param float $pv Present Value, or the lump-sum amount that a series of + * future payments is worth right now. + * @param integer $type A number 0 or 1 and indicates when payments are due: + * 0 or omitted At the end of the period. + * 1 At the beginning of the period. + * @return float + */ + public static function FV($rate = 0, $nper = 0, $pmt = 0, $pv = 0, $type = 0) + { + $rate = PHPExcel_Calculation_Functions::flattenSingleValue($rate); + $nper = PHPExcel_Calculation_Functions::flattenSingleValue($nper); + $pmt = PHPExcel_Calculation_Functions::flattenSingleValue($pmt); + $pv = PHPExcel_Calculation_Functions::flattenSingleValue($pv); + $type = PHPExcel_Calculation_Functions::flattenSingleValue($type); + + // Validate parameters + if ($type != 0 && $type != 1) { + return PHPExcel_Calculation_Functions::NaN(); + } + + // Calculate + if (!is_null($rate) && $rate != 0) { + return -$pv * pow(1 + $rate, $nper) - $pmt * (1 + $rate * $type) * (pow(1 + $rate, $nper) - 1) / $rate; + } + return -$pv - $pmt * $nper; + } + + + /** + * FVSCHEDULE + * + * Returns the future value of an initial principal after applying a series of compound interest rates. + * Use FVSCHEDULE to calculate the future value of an investment with a variable or adjustable rate. + * + * Excel Function: + * FVSCHEDULE(principal,schedule) + * + * @param float $principal The present value. + * @param float[] $schedule An array of interest rates to apply. + * @return float + */ + public static function FVSCHEDULE($principal, $schedule) + { + $principal = PHPExcel_Calculation_Functions::flattenSingleValue($principal); + $schedule = PHPExcel_Calculation_Functions::flattenArray($schedule); + + foreach ($schedule as $rate) { + $principal *= 1 + $rate; + } + + return $principal; + } + + + /** + * INTRATE + * + * Returns the interest rate for a fully invested security. + * + * Excel Function: + * INTRATE(settlement,maturity,investment,redemption[,basis]) + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue date when the security is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param integer $investment The amount invested in the security. + * @param integer $redemption The amount to be received at maturity. + * @param integer $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return float + */ + public static function INTRATE($settlement, $maturity, $investment, $redemption, $basis = 0) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $investment = PHPExcel_Calculation_Functions::flattenSingleValue($investment); + $redemption = PHPExcel_Calculation_Functions::flattenSingleValue($redemption); + $basis = PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + // Validate + if ((is_numeric($investment)) && (is_numeric($redemption)) && (is_numeric($basis))) { + $investment = (float) $investment; + $redemption = (float) $redemption; + $basis = (int) $basis; + if (($investment <= 0) || ($redemption <= 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $daysBetweenSettlementAndMaturity = PHPExcel_Calculation_DateTime::YEARFRAC($settlement, $maturity, $basis); + if (!is_numeric($daysBetweenSettlementAndMaturity)) { + // return date error + return $daysBetweenSettlementAndMaturity; + } + + return (($redemption / $investment) - 1) / ($daysBetweenSettlementAndMaturity); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * IPMT + * + * Returns the interest payment for a given period for an investment based on periodic, constant payments and a constant interest rate. + * + * Excel Function: + * IPMT(rate,per,nper,pv[,fv][,type]) + * + * @param float $rate Interest rate per period + * @param int $per Period for which we want to find the interest + * @param int $nper Number of periods + * @param float $pv Present Value + * @param float $fv Future Value + * @param int $type Payment type: 0 = at the end of each period, 1 = at the beginning of each period + * @return float + */ + public static function IPMT($rate, $per, $nper, $pv, $fv = 0, $type = 0) + { + $rate = PHPExcel_Calculation_Functions::flattenSingleValue($rate); + $per = (int) PHPExcel_Calculation_Functions::flattenSingleValue($per); + $nper = (int) PHPExcel_Calculation_Functions::flattenSingleValue($nper); + $pv = PHPExcel_Calculation_Functions::flattenSingleValue($pv); + $fv = PHPExcel_Calculation_Functions::flattenSingleValue($fv); + $type = (int) PHPExcel_Calculation_Functions::flattenSingleValue($type); + + // Validate parameters + if ($type != 0 && $type != 1) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ($per <= 0 || $per > $nper) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + // Calculate + $interestAndPrincipal = self::interestAndPrincipal($rate, $per, $nper, $pv, $fv, $type); + return $interestAndPrincipal[0]; + } + + /** + * IRR + * + * Returns the internal rate of return for a series of cash flows represented by the numbers in values. + * These cash flows do not have to be even, as they would be for an annuity. However, the cash flows must occur + * at regular intervals, such as monthly or annually. The internal rate of return is the interest rate received + * for an investment consisting of payments (negative values) and income (positive values) that occur at regular + * periods. + * + * Excel Function: + * IRR(values[,guess]) + * + * @param float[] $values An array or a reference to cells that contain numbers for which you want + * to calculate the internal rate of return. + * Values must contain at least one positive value and one negative value to + * calculate the internal rate of return. + * @param float $guess A number that you guess is close to the result of IRR + * @return float + */ + public static function IRR($values, $guess = 0.1) + { + if (!is_array($values)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $values = PHPExcel_Calculation_Functions::flattenArray($values); + $guess = PHPExcel_Calculation_Functions::flattenSingleValue($guess); + + // create an initial range, with a root somewhere between 0 and guess + $x1 = 0.0; + $x2 = $guess; + $f1 = self::NPV($x1, $values); + $f2 = self::NPV($x2, $values); + for ($i = 0; $i < FINANCIAL_MAX_ITERATIONS; ++$i) { + if (($f1 * $f2) < 0.0) { + break; + } + if (abs($f1) < abs($f2)) { + $f1 = self::NPV($x1 += 1.6 * ($x1 - $x2), $values); + } else { + $f2 = self::NPV($x2 += 1.6 * ($x2 - $x1), $values); + } + } + if (($f1 * $f2) > 0.0) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + $f = self::NPV($x1, $values); + if ($f < 0.0) { + $rtb = $x1; + $dx = $x2 - $x1; + } else { + $rtb = $x2; + $dx = $x1 - $x2; + } + + for ($i = 0; $i < FINANCIAL_MAX_ITERATIONS; ++$i) { + $dx *= 0.5; + $x_mid = $rtb + $dx; + $f_mid = self::NPV($x_mid, $values); + if ($f_mid <= 0.0) { + $rtb = $x_mid; + } + if ((abs($f_mid) < FINANCIAL_PRECISION) || (abs($dx) < FINANCIAL_PRECISION)) { + return $x_mid; + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * ISPMT + * + * Returns the interest payment for an investment based on an interest rate and a constant payment schedule. + * + * Excel Function: + * =ISPMT(interest_rate, period, number_payments, PV) + * + * interest_rate is the interest rate for the investment + * + * period is the period to calculate the interest rate. It must be betweeen 1 and number_payments. + * + * number_payments is the number of payments for the annuity + * + * PV is the loan amount or present value of the payments + */ + public static function ISPMT() + { + // Return value + $returnValue = 0; + + // Get the parameters + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + $interestRate = array_shift($aArgs); + $period = array_shift($aArgs); + $numberPeriods = array_shift($aArgs); + $principleRemaining = array_shift($aArgs); + + // Calculate + $principlePayment = ($principleRemaining * 1.0) / ($numberPeriods * 1.0); + for ($i=0; $i <= $period; ++$i) { + $returnValue = $interestRate * $principleRemaining * -1; + $principleRemaining -= $principlePayment; + // principle needs to be 0 after the last payment, don't let floating point screw it up + if ($i == $numberPeriods) { + $returnValue = 0; + } + } + return($returnValue); + } + + + /** + * MIRR + * + * Returns the modified internal rate of return for a series of periodic cash flows. MIRR considers both + * the cost of the investment and the interest received on reinvestment of cash. + * + * Excel Function: + * MIRR(values,finance_rate, reinvestment_rate) + * + * @param float[] $values An array or a reference to cells that contain a series of payments and + * income occurring at regular intervals. + * Payments are negative value, income is positive values. + * @param float $finance_rate The interest rate you pay on the money used in the cash flows + * @param float $reinvestment_rate The interest rate you receive on the cash flows as you reinvest them + * @return float + */ + public static function MIRR($values, $finance_rate, $reinvestment_rate) + { + if (!is_array($values)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $values = PHPExcel_Calculation_Functions::flattenArray($values); + $finance_rate = PHPExcel_Calculation_Functions::flattenSingleValue($finance_rate); + $reinvestment_rate = PHPExcel_Calculation_Functions::flattenSingleValue($reinvestment_rate); + $n = count($values); + + $rr = 1.0 + $reinvestment_rate; + $fr = 1.0 + $finance_rate; + + $npv_pos = $npv_neg = 0.0; + foreach ($values as $i => $v) { + if ($v >= 0) { + $npv_pos += $v / pow($rr, $i); + } else { + $npv_neg += $v / pow($fr, $i); + } + } + + if (($npv_neg == 0) || ($npv_pos == 0) || ($reinvestment_rate <= -1)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + $mirr = pow((-$npv_pos * pow($rr, $n)) + / ($npv_neg * ($rr)), (1.0 / ($n - 1))) - 1.0; + + return (is_finite($mirr) ? $mirr : PHPExcel_Calculation_Functions::VALUE()); + } + + + /** + * NOMINAL + * + * Returns the nominal interest rate given the effective rate and the number of compounding payments per year. + * + * @param float $effect_rate Effective interest rate + * @param int $npery Number of compounding payments per year + * @return float + */ + public static function NOMINAL($effect_rate = 0, $npery = 0) + { + $effect_rate = PHPExcel_Calculation_Functions::flattenSingleValue($effect_rate); + $npery = (int)PHPExcel_Calculation_Functions::flattenSingleValue($npery); + + // Validate parameters + if ($effect_rate <= 0 || $npery < 1) { + return PHPExcel_Calculation_Functions::NaN(); + } + + // Calculate + return $npery * (pow($effect_rate + 1, 1 / $npery) - 1); + } + + + /** + * NPER + * + * Returns the number of periods for a cash flow with constant periodic payments (annuities), and interest rate. + * + * @param float $rate Interest rate per period + * @param int $pmt Periodic payment (annuity) + * @param float $pv Present Value + * @param float $fv Future Value + * @param int $type Payment type: 0 = at the end of each period, 1 = at the beginning of each period + * @return float + */ + public static function NPER($rate = 0, $pmt = 0, $pv = 0, $fv = 0, $type = 0) + { + $rate = PHPExcel_Calculation_Functions::flattenSingleValue($rate); + $pmt = PHPExcel_Calculation_Functions::flattenSingleValue($pmt); + $pv = PHPExcel_Calculation_Functions::flattenSingleValue($pv); + $fv = PHPExcel_Calculation_Functions::flattenSingleValue($fv); + $type = PHPExcel_Calculation_Functions::flattenSingleValue($type); + + // Validate parameters + if ($type != 0 && $type != 1) { + return PHPExcel_Calculation_Functions::NaN(); + } + + // Calculate + if (!is_null($rate) && $rate != 0) { + if ($pmt == 0 && $pv == 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + return log(($pmt * (1 + $rate * $type) / $rate - $fv) / ($pv + $pmt * (1 + $rate * $type) / $rate)) / log(1 + $rate); + } + if ($pmt == 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + return (-$pv -$fv) / $pmt; + } + + /** + * NPV + * + * Returns the Net Present Value of a cash flow series given a discount rate. + * + * @return float + */ + public static function NPV() + { + // Return value + $returnValue = 0; + + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + + // Calculate + $rate = array_shift($aArgs); + for ($i = 1; $i <= count($aArgs); ++$i) { + // Is it a numeric value? + if (is_numeric($aArgs[$i - 1])) { + $returnValue += $aArgs[$i - 1] / pow(1 + $rate, $i); + } + } + + // Return + return $returnValue; + } + + /** + * PMT + * + * Returns the constant payment (annuity) for a cash flow with a constant interest rate. + * + * @param float $rate Interest rate per period + * @param int $nper Number of periods + * @param float $pv Present Value + * @param float $fv Future Value + * @param int $type Payment type: 0 = at the end of each period, 1 = at the beginning of each period + * @return float + */ + public static function PMT($rate = 0, $nper = 0, $pv = 0, $fv = 0, $type = 0) + { + $rate = PHPExcel_Calculation_Functions::flattenSingleValue($rate); + $nper = PHPExcel_Calculation_Functions::flattenSingleValue($nper); + $pv = PHPExcel_Calculation_Functions::flattenSingleValue($pv); + $fv = PHPExcel_Calculation_Functions::flattenSingleValue($fv); + $type = PHPExcel_Calculation_Functions::flattenSingleValue($type); + + // Validate parameters + if ($type != 0 && $type != 1) { + return PHPExcel_Calculation_Functions::NaN(); + } + + // Calculate + if (!is_null($rate) && $rate != 0) { + return (-$fv - $pv * pow(1 + $rate, $nper)) / (1 + $rate * $type) / ((pow(1 + $rate, $nper) - 1) / $rate); + } + return (-$pv - $fv) / $nper; + } + + + /** + * PPMT + * + * Returns the interest payment for a given period for an investment based on periodic, constant payments and a constant interest rate. + * + * @param float $rate Interest rate per period + * @param int $per Period for which we want to find the interest + * @param int $nper Number of periods + * @param float $pv Present Value + * @param float $fv Future Value + * @param int $type Payment type: 0 = at the end of each period, 1 = at the beginning of each period + * @return float + */ + public static function PPMT($rate, $per, $nper, $pv, $fv = 0, $type = 0) + { + $rate = PHPExcel_Calculation_Functions::flattenSingleValue($rate); + $per = (int) PHPExcel_Calculation_Functions::flattenSingleValue($per); + $nper = (int) PHPExcel_Calculation_Functions::flattenSingleValue($nper); + $pv = PHPExcel_Calculation_Functions::flattenSingleValue($pv); + $fv = PHPExcel_Calculation_Functions::flattenSingleValue($fv); + $type = (int) PHPExcel_Calculation_Functions::flattenSingleValue($type); + + // Validate parameters + if ($type != 0 && $type != 1) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ($per <= 0 || $per > $nper) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + // Calculate + $interestAndPrincipal = self::interestAndPrincipal($rate, $per, $nper, $pv, $fv, $type); + return $interestAndPrincipal[1]; + } + + + public static function PRICE($settlement, $maturity, $rate, $yield, $redemption, $frequency, $basis = 0) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $rate = (float) PHPExcel_Calculation_Functions::flattenSingleValue($rate); + $yield = (float) PHPExcel_Calculation_Functions::flattenSingleValue($yield); + $redemption = (float) PHPExcel_Calculation_Functions::flattenSingleValue($redemption); + $frequency = (int) PHPExcel_Calculation_Functions::flattenSingleValue($frequency); + $basis = (is_null($basis)) ? 0 : (int) PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + if (is_string($settlement = PHPExcel_Calculation_DateTime::getDateValue($settlement))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if (is_string($maturity = PHPExcel_Calculation_DateTime::getDateValue($maturity))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + if (($settlement > $maturity) || + (!self::isValidFrequency($frequency)) || + (($basis < 0) || ($basis > 4))) { + return PHPExcel_Calculation_Functions::NaN(); + } + + $dsc = self::COUPDAYSNC($settlement, $maturity, $frequency, $basis); + $e = self::COUPDAYS($settlement, $maturity, $frequency, $basis); + $n = self::COUPNUM($settlement, $maturity, $frequency, $basis); + $a = self::COUPDAYBS($settlement, $maturity, $frequency, $basis); + + $baseYF = 1.0 + ($yield / $frequency); + $rfp = 100 * ($rate / $frequency); + $de = $dsc / $e; + + $result = $redemption / pow($baseYF, (--$n + $de)); + for ($k = 0; $k <= $n; ++$k) { + $result += $rfp / (pow($baseYF, ($k + $de))); + } + $result -= $rfp * ($a / $e); + + return $result; + } + + + /** + * PRICEDISC + * + * Returns the price per $100 face value of a discounted security. + * + * @param mixed settlement The security's settlement date. + * The security settlement date is the date after the issue date when the security is traded to the buyer. + * @param mixed maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param int discount The security's discount rate. + * @param int redemption The security's redemption value per $100 face value. + * @param int basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return float + */ + public static function PRICEDISC($settlement, $maturity, $discount, $redemption, $basis = 0) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $discount = (float) PHPExcel_Calculation_Functions::flattenSingleValue($discount); + $redemption = (float) PHPExcel_Calculation_Functions::flattenSingleValue($redemption); + $basis = (int) PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + // Validate + if ((is_numeric($discount)) && (is_numeric($redemption)) && (is_numeric($basis))) { + if (($discount <= 0) || ($redemption <= 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $daysBetweenSettlementAndMaturity = PHPExcel_Calculation_DateTime::YEARFRAC($settlement, $maturity, $basis); + if (!is_numeric($daysBetweenSettlementAndMaturity)) { + // return date error + return $daysBetweenSettlementAndMaturity; + } + + return $redemption * (1 - $discount * $daysBetweenSettlementAndMaturity); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * PRICEMAT + * + * Returns the price per $100 face value of a security that pays interest at maturity. + * + * @param mixed settlement The security's settlement date. + * The security's settlement date is the date after the issue date when the security is traded to the buyer. + * @param mixed maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed issue The security's issue date. + * @param int rate The security's interest rate at date of issue. + * @param int yield The security's annual yield. + * @param int basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return float + */ + public static function PRICEMAT($settlement, $maturity, $issue, $rate, $yield, $basis = 0) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $issue = PHPExcel_Calculation_Functions::flattenSingleValue($issue); + $rate = PHPExcel_Calculation_Functions::flattenSingleValue($rate); + $yield = PHPExcel_Calculation_Functions::flattenSingleValue($yield); + $basis = (int) PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + // Validate + if (is_numeric($rate) && is_numeric($yield)) { + if (($rate <= 0) || ($yield <= 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $daysPerYear = self::daysPerYear(PHPExcel_Calculation_DateTime::YEAR($settlement), $basis); + if (!is_numeric($daysPerYear)) { + return $daysPerYear; + } + $daysBetweenIssueAndSettlement = PHPExcel_Calculation_DateTime::YEARFRAC($issue, $settlement, $basis); + if (!is_numeric($daysBetweenIssueAndSettlement)) { + // return date error + return $daysBetweenIssueAndSettlement; + } + $daysBetweenIssueAndSettlement *= $daysPerYear; + $daysBetweenIssueAndMaturity = PHPExcel_Calculation_DateTime::YEARFRAC($issue, $maturity, $basis); + if (!is_numeric($daysBetweenIssueAndMaturity)) { + // return date error + return $daysBetweenIssueAndMaturity; + } + $daysBetweenIssueAndMaturity *= $daysPerYear; + $daysBetweenSettlementAndMaturity = PHPExcel_Calculation_DateTime::YEARFRAC($settlement, $maturity, $basis); + if (!is_numeric($daysBetweenSettlementAndMaturity)) { + // return date error + return $daysBetweenSettlementAndMaturity; + } + $daysBetweenSettlementAndMaturity *= $daysPerYear; + + return ((100 + (($daysBetweenIssueAndMaturity / $daysPerYear) * $rate * 100)) / + (1 + (($daysBetweenSettlementAndMaturity / $daysPerYear) * $yield)) - + (($daysBetweenIssueAndSettlement / $daysPerYear) * $rate * 100)); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * PV + * + * Returns the Present Value of a cash flow with constant payments and interest rate (annuities). + * + * @param float $rate Interest rate per period + * @param int $nper Number of periods + * @param float $pmt Periodic payment (annuity) + * @param float $fv Future Value + * @param int $type Payment type: 0 = at the end of each period, 1 = at the beginning of each period + * @return float + */ + public static function PV($rate = 0, $nper = 0, $pmt = 0, $fv = 0, $type = 0) + { + $rate = PHPExcel_Calculation_Functions::flattenSingleValue($rate); + $nper = PHPExcel_Calculation_Functions::flattenSingleValue($nper); + $pmt = PHPExcel_Calculation_Functions::flattenSingleValue($pmt); + $fv = PHPExcel_Calculation_Functions::flattenSingleValue($fv); + $type = PHPExcel_Calculation_Functions::flattenSingleValue($type); + + // Validate parameters + if ($type != 0 && $type != 1) { + return PHPExcel_Calculation_Functions::NaN(); + } + + // Calculate + if (!is_null($rate) && $rate != 0) { + return (-$pmt * (1 + $rate * $type) * ((pow(1 + $rate, $nper) - 1) / $rate) - $fv) / pow(1 + $rate, $nper); + } + return -$fv - $pmt * $nper; + } + + + /** + * RATE + * + * Returns the interest rate per period of an annuity. + * RATE is calculated by iteration and can have zero or more solutions. + * If the successive results of RATE do not converge to within 0.0000001 after 20 iterations, + * RATE returns the #NUM! error value. + * + * Excel Function: + * RATE(nper,pmt,pv[,fv[,type[,guess]]]) + * + * @access public + * @category Financial Functions + * @param float nper The total number of payment periods in an annuity. + * @param float pmt The payment made each period and cannot change over the life + * of the annuity. + * Typically, pmt includes principal and interest but no other + * fees or taxes. + * @param float pv The present value - the total amount that a series of future + * payments is worth now. + * @param float fv The future value, or a cash balance you want to attain after + * the last payment is made. If fv is omitted, it is assumed + * to be 0 (the future value of a loan, for example, is 0). + * @param integer type A number 0 or 1 and indicates when payments are due: + * 0 or omitted At the end of the period. + * 1 At the beginning of the period. + * @param float guess Your guess for what the rate will be. + * If you omit guess, it is assumed to be 10 percent. + * @return float + **/ + public static function RATE($nper, $pmt, $pv, $fv = 0.0, $type = 0, $guess = 0.1) + { + $nper = (int) PHPExcel_Calculation_Functions::flattenSingleValue($nper); + $pmt = PHPExcel_Calculation_Functions::flattenSingleValue($pmt); + $pv = PHPExcel_Calculation_Functions::flattenSingleValue($pv); + $fv = (is_null($fv)) ? 0.0 : PHPExcel_Calculation_Functions::flattenSingleValue($fv); + $type = (is_null($type)) ? 0 : (int) PHPExcel_Calculation_Functions::flattenSingleValue($type); + $guess = (is_null($guess)) ? 0.1 : PHPExcel_Calculation_Functions::flattenSingleValue($guess); + + $rate = $guess; + if (abs($rate) < FINANCIAL_PRECISION) { + $y = $pv * (1 + $nper * $rate) + $pmt * (1 + $rate * $type) * $nper + $fv; + } else { + $f = exp($nper * log(1 + $rate)); + $y = $pv * $f + $pmt * (1 / $rate + $type) * ($f - 1) + $fv; + } + $y0 = $pv + $pmt * $nper + $fv; + $y1 = $pv * $f + $pmt * (1 / $rate + $type) * ($f - 1) + $fv; + + // find root by secant method + $i = $x0 = 0.0; + $x1 = $rate; + while ((abs($y0 - $y1) > FINANCIAL_PRECISION) && ($i < FINANCIAL_MAX_ITERATIONS)) { + $rate = ($y1 * $x0 - $y0 * $x1) / ($y1 - $y0); + $x0 = $x1; + $x1 = $rate; + if (($nper * abs($pmt)) > ($pv - $fv)) { + $x1 = abs($x1); + } + if (abs($rate) < FINANCIAL_PRECISION) { + $y = $pv * (1 + $nper * $rate) + $pmt * (1 + $rate * $type) * $nper + $fv; + } else { + $f = exp($nper * log(1 + $rate)); + $y = $pv * $f + $pmt * (1 / $rate + $type) * ($f - 1) + $fv; + } + + $y0 = $y1; + $y1 = $y; + ++$i; + } + return $rate; + } + + + /** + * RECEIVED + * + * Returns the price per $100 face value of a discounted security. + * + * @param mixed settlement The security's settlement date. + * The security settlement date is the date after the issue date when the security is traded to the buyer. + * @param mixed maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param int investment The amount invested in the security. + * @param int discount The security's discount rate. + * @param int basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return float + */ + public static function RECEIVED($settlement, $maturity, $investment, $discount, $basis = 0) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $investment = (float) PHPExcel_Calculation_Functions::flattenSingleValue($investment); + $discount = (float) PHPExcel_Calculation_Functions::flattenSingleValue($discount); + $basis = (int) PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + // Validate + if ((is_numeric($investment)) && (is_numeric($discount)) && (is_numeric($basis))) { + if (($investment <= 0) || ($discount <= 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $daysBetweenSettlementAndMaturity = PHPExcel_Calculation_DateTime::YEARFRAC($settlement, $maturity, $basis); + if (!is_numeric($daysBetweenSettlementAndMaturity)) { + // return date error + return $daysBetweenSettlementAndMaturity; + } + + return $investment / ( 1 - ($discount * $daysBetweenSettlementAndMaturity)); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * SLN + * + * Returns the straight-line depreciation of an asset for one period + * + * @param cost Initial cost of the asset + * @param salvage Value at the end of the depreciation + * @param life Number of periods over which the asset is depreciated + * @return float + */ + public static function SLN($cost, $salvage, $life) + { + $cost = PHPExcel_Calculation_Functions::flattenSingleValue($cost); + $salvage = PHPExcel_Calculation_Functions::flattenSingleValue($salvage); + $life = PHPExcel_Calculation_Functions::flattenSingleValue($life); + + // Calculate + if ((is_numeric($cost)) && (is_numeric($salvage)) && (is_numeric($life))) { + if ($life < 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + return ($cost - $salvage) / $life; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * SYD + * + * Returns the sum-of-years' digits depreciation of an asset for a specified period. + * + * @param cost Initial cost of the asset + * @param salvage Value at the end of the depreciation + * @param life Number of periods over which the asset is depreciated + * @param period Period + * @return float + */ + public static function SYD($cost, $salvage, $life, $period) + { + $cost = PHPExcel_Calculation_Functions::flattenSingleValue($cost); + $salvage = PHPExcel_Calculation_Functions::flattenSingleValue($salvage); + $life = PHPExcel_Calculation_Functions::flattenSingleValue($life); + $period = PHPExcel_Calculation_Functions::flattenSingleValue($period); + + // Calculate + if ((is_numeric($cost)) && (is_numeric($salvage)) && (is_numeric($life)) && (is_numeric($period))) { + if (($life < 1) || ($period > $life)) { + return PHPExcel_Calculation_Functions::NaN(); + } + return (($cost - $salvage) * ($life - $period + 1) * 2) / ($life * ($life + 1)); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * TBILLEQ + * + * Returns the bond-equivalent yield for a Treasury bill. + * + * @param mixed settlement The Treasury bill's settlement date. + * The Treasury bill's settlement date is the date after the issue date when the Treasury bill is traded to the buyer. + * @param mixed maturity The Treasury bill's maturity date. + * The maturity date is the date when the Treasury bill expires. + * @param int discount The Treasury bill's discount rate. + * @return float + */ + public static function TBILLEQ($settlement, $maturity, $discount) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $discount = PHPExcel_Calculation_Functions::flattenSingleValue($discount); + + // Use TBILLPRICE for validation + $testValue = self::TBILLPRICE($settlement, $maturity, $discount); + if (is_string($testValue)) { + return $testValue; + } + + if (is_string($maturity = PHPExcel_Calculation_DateTime::getDateValue($maturity))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE) { + ++$maturity; + $daysBetweenSettlementAndMaturity = PHPExcel_Calculation_DateTime::YEARFRAC($settlement, $maturity) * 360; + } else { + $daysBetweenSettlementAndMaturity = (PHPExcel_Calculation_DateTime::getDateValue($maturity) - PHPExcel_Calculation_DateTime::getDateValue($settlement)); + } + + return (365 * $discount) / (360 - $discount * $daysBetweenSettlementAndMaturity); + } + + + /** + * TBILLPRICE + * + * Returns the yield for a Treasury bill. + * + * @param mixed settlement The Treasury bill's settlement date. + * The Treasury bill's settlement date is the date after the issue date when the Treasury bill is traded to the buyer. + * @param mixed maturity The Treasury bill's maturity date. + * The maturity date is the date when the Treasury bill expires. + * @param int discount The Treasury bill's discount rate. + * @return float + */ + public static function TBILLPRICE($settlement, $maturity, $discount) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $discount = PHPExcel_Calculation_Functions::flattenSingleValue($discount); + + if (is_string($maturity = PHPExcel_Calculation_DateTime::getDateValue($maturity))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + // Validate + if (is_numeric($discount)) { + if ($discount <= 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE) { + ++$maturity; + $daysBetweenSettlementAndMaturity = PHPExcel_Calculation_DateTime::YEARFRAC($settlement, $maturity) * 360; + if (!is_numeric($daysBetweenSettlementAndMaturity)) { + // return date error + return $daysBetweenSettlementAndMaturity; + } + } else { + $daysBetweenSettlementAndMaturity = (PHPExcel_Calculation_DateTime::getDateValue($maturity) - PHPExcel_Calculation_DateTime::getDateValue($settlement)); + } + + if ($daysBetweenSettlementAndMaturity > 360) { + return PHPExcel_Calculation_Functions::NaN(); + } + + $price = 100 * (1 - (($discount * $daysBetweenSettlementAndMaturity) / 360)); + if ($price <= 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + return $price; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * TBILLYIELD + * + * Returns the yield for a Treasury bill. + * + * @param mixed settlement The Treasury bill's settlement date. + * The Treasury bill's settlement date is the date after the issue date when the Treasury bill is traded to the buyer. + * @param mixed maturity The Treasury bill's maturity date. + * The maturity date is the date when the Treasury bill expires. + * @param int price The Treasury bill's price per $100 face value. + * @return float + */ + public static function TBILLYIELD($settlement, $maturity, $price) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $price = PHPExcel_Calculation_Functions::flattenSingleValue($price); + + // Validate + if (is_numeric($price)) { + if ($price <= 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE) { + ++$maturity; + $daysBetweenSettlementAndMaturity = PHPExcel_Calculation_DateTime::YEARFRAC($settlement, $maturity) * 360; + if (!is_numeric($daysBetweenSettlementAndMaturity)) { + // return date error + return $daysBetweenSettlementAndMaturity; + } + } else { + $daysBetweenSettlementAndMaturity = (PHPExcel_Calculation_DateTime::getDateValue($maturity) - PHPExcel_Calculation_DateTime::getDateValue($settlement)); + } + + if ($daysBetweenSettlementAndMaturity > 360) { + return PHPExcel_Calculation_Functions::NaN(); + } + + return ((100 - $price) / $price) * (360 / $daysBetweenSettlementAndMaturity); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + public static function XIRR($values, $dates, $guess = 0.1) + { + if ((!is_array($values)) && (!is_array($dates))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $values = PHPExcel_Calculation_Functions::flattenArray($values); + $dates = PHPExcel_Calculation_Functions::flattenArray($dates); + $guess = PHPExcel_Calculation_Functions::flattenSingleValue($guess); + if (count($values) != count($dates)) { + return PHPExcel_Calculation_Functions::NaN(); + } + + // create an initial range, with a root somewhere between 0 and guess + $x1 = 0.0; + $x2 = $guess; + $f1 = self::XNPV($x1, $values, $dates); + $f2 = self::XNPV($x2, $values, $dates); + for ($i = 0; $i < FINANCIAL_MAX_ITERATIONS; ++$i) { + if (($f1 * $f2) < 0.0) { + break; + } elseif (abs($f1) < abs($f2)) { + $f1 = self::XNPV($x1 += 1.6 * ($x1 - $x2), $values, $dates); + } else { + $f2 = self::XNPV($x2 += 1.6 * ($x2 - $x1), $values, $dates); + } + } + if (($f1 * $f2) > 0.0) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + $f = self::XNPV($x1, $values, $dates); + if ($f < 0.0) { + $rtb = $x1; + $dx = $x2 - $x1; + } else { + $rtb = $x2; + $dx = $x1 - $x2; + } + + for ($i = 0; $i < FINANCIAL_MAX_ITERATIONS; ++$i) { + $dx *= 0.5; + $x_mid = $rtb + $dx; + $f_mid = self::XNPV($x_mid, $values, $dates); + if ($f_mid <= 0.0) { + $rtb = $x_mid; + } + if ((abs($f_mid) < FINANCIAL_PRECISION) || (abs($dx) < FINANCIAL_PRECISION)) { + return $x_mid; + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * XNPV + * + * Returns the net present value for a schedule of cash flows that is not necessarily periodic. + * To calculate the net present value for a series of cash flows that is periodic, use the NPV function. + * + * Excel Function: + * =XNPV(rate,values,dates) + * + * @param float $rate The discount rate to apply to the cash flows. + * @param array of float $values A series of cash flows that corresponds to a schedule of payments in dates. + * The first payment is optional and corresponds to a cost or payment that occurs at the beginning of the investment. + * If the first value is a cost or payment, it must be a negative value. All succeeding payments are discounted based on a 365-day year. + * The series of values must contain at least one positive value and one negative value. + * @param array of mixed $dates A schedule of payment dates that corresponds to the cash flow payments. + * The first payment date indicates the beginning of the schedule of payments. + * All other dates must be later than this date, but they may occur in any order. + * @return float + */ + public static function XNPV($rate, $values, $dates) + { + $rate = PHPExcel_Calculation_Functions::flattenSingleValue($rate); + if (!is_numeric($rate)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if ((!is_array($values)) || (!is_array($dates))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $values = PHPExcel_Calculation_Functions::flattenArray($values); + $dates = PHPExcel_Calculation_Functions::flattenArray($dates); + $valCount = count($values); + if ($valCount != count($dates)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ((min($values) > 0) || (max($values) < 0)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + $xnpv = 0.0; + for ($i = 0; $i < $valCount; ++$i) { + if (!is_numeric($values[$i])) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $xnpv += $values[$i] / pow(1 + $rate, PHPExcel_Calculation_DateTime::DATEDIF($dates[0], $dates[$i], 'd') / 365); + } + return (is_finite($xnpv)) ? $xnpv : PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * YIELDDISC + * + * Returns the annual yield of a security that pays interest at maturity. + * + * @param mixed settlement The security's settlement date. + * The security's settlement date is the date after the issue date when the security is traded to the buyer. + * @param mixed maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param int price The security's price per $100 face value. + * @param int redemption The security's redemption value per $100 face value. + * @param int basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return float + */ + public static function YIELDDISC($settlement, $maturity, $price, $redemption, $basis = 0) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $price = PHPExcel_Calculation_Functions::flattenSingleValue($price); + $redemption = PHPExcel_Calculation_Functions::flattenSingleValue($redemption); + $basis = (int) PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + // Validate + if (is_numeric($price) && is_numeric($redemption)) { + if (($price <= 0) || ($redemption <= 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $daysPerYear = self::daysPerYear(PHPExcel_Calculation_DateTime::YEAR($settlement), $basis); + if (!is_numeric($daysPerYear)) { + return $daysPerYear; + } + $daysBetweenSettlementAndMaturity = PHPExcel_Calculation_DateTime::YEARFRAC($settlement, $maturity, $basis); + if (!is_numeric($daysBetweenSettlementAndMaturity)) { + // return date error + return $daysBetweenSettlementAndMaturity; + } + $daysBetweenSettlementAndMaturity *= $daysPerYear; + + return (($redemption - $price) / $price) * ($daysPerYear / $daysBetweenSettlementAndMaturity); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * YIELDMAT + * + * Returns the annual yield of a security that pays interest at maturity. + * + * @param mixed settlement The security's settlement date. + * The security's settlement date is the date after the issue date when the security is traded to the buyer. + * @param mixed maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed issue The security's issue date. + * @param int rate The security's interest rate at date of issue. + * @param int price The security's price per $100 face value. + * @param int basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @return float + */ + public static function YIELDMAT($settlement, $maturity, $issue, $rate, $price, $basis = 0) + { + $settlement = PHPExcel_Calculation_Functions::flattenSingleValue($settlement); + $maturity = PHPExcel_Calculation_Functions::flattenSingleValue($maturity); + $issue = PHPExcel_Calculation_Functions::flattenSingleValue($issue); + $rate = PHPExcel_Calculation_Functions::flattenSingleValue($rate); + $price = PHPExcel_Calculation_Functions::flattenSingleValue($price); + $basis = (int) PHPExcel_Calculation_Functions::flattenSingleValue($basis); + + // Validate + if (is_numeric($rate) && is_numeric($price)) { + if (($rate <= 0) || ($price <= 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $daysPerYear = self::daysPerYear(PHPExcel_Calculation_DateTime::YEAR($settlement), $basis); + if (!is_numeric($daysPerYear)) { + return $daysPerYear; + } + $daysBetweenIssueAndSettlement = PHPExcel_Calculation_DateTime::YEARFRAC($issue, $settlement, $basis); + if (!is_numeric($daysBetweenIssueAndSettlement)) { + // return date error + return $daysBetweenIssueAndSettlement; + } + $daysBetweenIssueAndSettlement *= $daysPerYear; + $daysBetweenIssueAndMaturity = PHPExcel_Calculation_DateTime::YEARFRAC($issue, $maturity, $basis); + if (!is_numeric($daysBetweenIssueAndMaturity)) { + // return date error + return $daysBetweenIssueAndMaturity; + } + $daysBetweenIssueAndMaturity *= $daysPerYear; + $daysBetweenSettlementAndMaturity = PHPExcel_Calculation_DateTime::YEARFRAC($settlement, $maturity, $basis); + if (!is_numeric($daysBetweenSettlementAndMaturity)) { + // return date error + return $daysBetweenSettlementAndMaturity; + } + $daysBetweenSettlementAndMaturity *= $daysPerYear; + + return ((1 + (($daysBetweenIssueAndMaturity / $daysPerYear) * $rate) - (($price / 100) + (($daysBetweenIssueAndSettlement / $daysPerYear) * $rate))) / + (($price / 100) + (($daysBetweenIssueAndSettlement / $daysPerYear) * $rate))) * + ($daysPerYear / $daysBetweenSettlementAndMaturity); + } + return PHPExcel_Calculation_Functions::VALUE(); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/FormulaParser.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/FormulaParser.php new file mode 100644 index 0000000..893f19e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/FormulaParser.php @@ -0,0 +1,622 @@ +<"; + const OPERATORS_POSTFIX = "%"; + + /** + * Formula + * + * @var string + */ + private $formula; + + /** + * Tokens + * + * @var PHPExcel_Calculation_FormulaToken[] + */ + private $tokens = array(); + + /** + * Create a new PHPExcel_Calculation_FormulaParser + * + * @param string $pFormula Formula to parse + * @throws PHPExcel_Calculation_Exception + */ + public function __construct($pFormula = '') + { + // Check parameters + if (is_null($pFormula)) { + throw new PHPExcel_Calculation_Exception("Invalid parameter passed: formula"); + } + + // Initialise values + $this->formula = trim($pFormula); + // Parse! + $this->parseToTokens(); + } + + /** + * Get Formula + * + * @return string + */ + public function getFormula() + { + return $this->formula; + } + + /** + * Get Token + * + * @param int $pId Token id + * @return string + * @throws PHPExcel_Calculation_Exception + */ + public function getToken($pId = 0) + { + if (isset($this->tokens[$pId])) { + return $this->tokens[$pId]; + } else { + throw new PHPExcel_Calculation_Exception("Token with id $pId does not exist."); + } + } + + /** + * Get Token count + * + * @return string + */ + public function getTokenCount() + { + return count($this->tokens); + } + + /** + * Get Tokens + * + * @return PHPExcel_Calculation_FormulaToken[] + */ + public function getTokens() + { + return $this->tokens; + } + + /** + * Parse to tokens + */ + private function parseToTokens() + { + // No attempt is made to verify formulas; assumes formulas are derived from Excel, where + // they can only exist if valid; stack overflows/underflows sunk as nulls without exceptions. + + // Check if the formula has a valid starting = + $formulaLength = strlen($this->formula); + if ($formulaLength < 2 || $this->formula{0} != '=') { + return; + } + + // Helper variables + $tokens1 = $tokens2 = $stack = array(); + $inString = $inPath = $inRange = $inError = false; + $token = $previousToken = $nextToken = null; + + $index = 1; + $value = ''; + + $ERRORS = array("#NULL!", "#DIV/0!", "#VALUE!", "#REF!", "#NAME?", "#NUM!", "#N/A"); + $COMPARATORS_MULTI = array(">=", "<=", "<>"); + + while ($index < $formulaLength) { + // state-dependent character evaluation (order is important) + + // double-quoted strings + // embeds are doubled + // end marks token + if ($inString) { + if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::QUOTE_DOUBLE) { + if ((($index + 2) <= $formulaLength) && ($this->formula{$index + 1} == PHPExcel_Calculation_FormulaParser::QUOTE_DOUBLE)) { + $value .= PHPExcel_Calculation_FormulaParser::QUOTE_DOUBLE; + ++$index; + } else { + $inString = false; + $tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND, PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_TEXT); + $value = ""; + } + } else { + $value .= $this->formula{$index}; + } + ++$index; + continue; + } + + // single-quoted strings (links) + // embeds are double + // end does not mark a token + if ($inPath) { + if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::QUOTE_SINGLE) { + if ((($index + 2) <= $formulaLength) && ($this->formula{$index + 1} == PHPExcel_Calculation_FormulaParser::QUOTE_SINGLE)) { + $value .= PHPExcel_Calculation_FormulaParser::QUOTE_SINGLE; + ++$index; + } else { + $inPath = false; + } + } else { + $value .= $this->formula{$index}; + } + ++$index; + continue; + } + + // bracked strings (R1C1 range index or linked workbook name) + // no embeds (changed to "()" by Excel) + // end does not mark a token + if ($inRange) { + if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::BRACKET_CLOSE) { + $inRange = false; + } + $value .= $this->formula{$index}; + ++$index; + continue; + } + + // error values + // end marks a token, determined from absolute list of values + if ($inError) { + $value .= $this->formula{$index}; + ++$index; + if (in_array($value, $ERRORS)) { + $inError = false; + $tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND, PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_ERROR); + $value = ""; + } + continue; + } + + // scientific notation check + if (strpos(PHPExcel_Calculation_FormulaParser::OPERATORS_SN, $this->formula{$index}) !== false) { + if (strlen($value) > 1) { + if (preg_match("/^[1-9]{1}(\.[0-9]+)?E{1}$/", $this->formula{$index}) != 0) { + $value .= $this->formula{$index}; + ++$index; + continue; + } + } + } + + // independent character evaluation (order not important) + + // establish state-dependent character evaluations + if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::QUOTE_DOUBLE) { + if (strlen($value > 0)) { + // unexpected + $tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_UNKNOWN); + $value = ""; + } + $inString = true; + ++$index; + continue; + } + + if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::QUOTE_SINGLE) { + if (strlen($value) > 0) { + // unexpected + $tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_UNKNOWN); + $value = ""; + } + $inPath = true; + ++$index; + continue; + } + + if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::BRACKET_OPEN) { + $inRange = true; + $value .= PHPExcel_Calculation_FormulaParser::BRACKET_OPEN; + ++$index; + continue; + } + + if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::ERROR_START) { + if (strlen($value) > 0) { + // unexpected + $tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_UNKNOWN); + $value = ""; + } + $inError = true; + $value .= PHPExcel_Calculation_FormulaParser::ERROR_START; + ++$index; + continue; + } + + // mark start and end of arrays and array rows + if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::BRACE_OPEN) { + if (strlen($value) > 0) { + // unexpected + $tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_UNKNOWN); + $value = ""; + } + + $tmp = new PHPExcel_Calculation_FormulaToken("ARRAY", PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_FUNCTION, PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_START); + $tokens1[] = $tmp; + $stack[] = clone $tmp; + + $tmp = new PHPExcel_Calculation_FormulaToken("ARRAYROW", PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_FUNCTION, PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_START); + $tokens1[] = $tmp; + $stack[] = clone $tmp; + + ++$index; + continue; + } + + if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::SEMICOLON) { + if (strlen($value) > 0) { + $tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND); + $value = ""; + } + + $tmp = array_pop($stack); + $tmp->setValue(""); + $tmp->setTokenSubType(PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_STOP); + $tokens1[] = $tmp; + + $tmp = new PHPExcel_Calculation_FormulaToken(",", PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_ARGUMENT); + $tokens1[] = $tmp; + + $tmp = new PHPExcel_Calculation_FormulaToken("ARRAYROW", PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_FUNCTION, PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_START); + $tokens1[] = $tmp; + $stack[] = clone $tmp; + + ++$index; + continue; + } + + if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::BRACE_CLOSE) { + if (strlen($value) > 0) { + $tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND); + $value = ""; + } + + $tmp = array_pop($stack); + $tmp->setValue(""); + $tmp->setTokenSubType(PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_STOP); + $tokens1[] = $tmp; + + $tmp = array_pop($stack); + $tmp->setValue(""); + $tmp->setTokenSubType(PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_STOP); + $tokens1[] = $tmp; + + ++$index; + continue; + } + + // trim white-space + if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::WHITESPACE) { + if (strlen($value) > 0) { + $tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND); + $value = ""; + } + $tokens1[] = new PHPExcel_Calculation_FormulaToken("", PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_WHITESPACE); + ++$index; + while (($this->formula{$index} == PHPExcel_Calculation_FormulaParser::WHITESPACE) && ($index < $formulaLength)) { + ++$index; + } + continue; + } + + // multi-character comparators + if (($index + 2) <= $formulaLength) { + if (in_array(substr($this->formula, $index, 2), $COMPARATORS_MULTI)) { + if (strlen($value) > 0) { + $tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND); + $value = ""; + } + $tokens1[] = new PHPExcel_Calculation_FormulaToken(substr($this->formula, $index, 2), PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERATORINFIX, PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_LOGICAL); + $index += 2; + continue; + } + } + + // standard infix operators + if (strpos(PHPExcel_Calculation_FormulaParser::OPERATORS_INFIX, $this->formula{$index}) !== false) { + if (strlen($value) > 0) { + $tokens1[] =new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND); + $value = ""; + } + $tokens1[] = new PHPExcel_Calculation_FormulaToken($this->formula{$index}, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERATORINFIX); + ++$index; + continue; + } + + // standard postfix operators (only one) + if (strpos(PHPExcel_Calculation_FormulaParser::OPERATORS_POSTFIX, $this->formula{$index}) !== false) { + if (strlen($value) > 0) { + $tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND); + $value = ""; + } + $tokens1[] = new PHPExcel_Calculation_FormulaToken($this->formula{$index}, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERATORPOSTFIX); + ++$index; + continue; + } + + // start subexpression or function + if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::PAREN_OPEN) { + if (strlen($value) > 0) { + $tmp = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_FUNCTION, PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_START); + $tokens1[] = $tmp; + $stack[] = clone $tmp; + $value = ""; + } else { + $tmp = new PHPExcel_Calculation_FormulaToken("", PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_SUBEXPRESSION, PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_START); + $tokens1[] = $tmp; + $stack[] = clone $tmp; + } + ++$index; + continue; + } + + // function, subexpression, or array parameters, or operand unions + if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::COMMA) { + if (strlen($value) > 0) { + $tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND); + $value = ""; + } + + $tmp = array_pop($stack); + $tmp->setValue(""); + $tmp->setTokenSubType(PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_STOP); + $stack[] = $tmp; + + if ($tmp->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_FUNCTION) { + $tokens1[] = new PHPExcel_Calculation_FormulaToken(",", PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERATORINFIX, PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_UNION); + } else { + $tokens1[] = new PHPExcel_Calculation_FormulaToken(",", PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_ARGUMENT); + } + ++$index; + continue; + } + + // stop subexpression + if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::PAREN_CLOSE) { + if (strlen($value) > 0) { + $tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND); + $value = ""; + } + + $tmp = array_pop($stack); + $tmp->setValue(""); + $tmp->setTokenSubType(PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_STOP); + $tokens1[] = $tmp; + + ++$index; + continue; + } + + // token accumulation + $value .= $this->formula{$index}; + ++$index; + } + + // dump remaining accumulation + if (strlen($value) > 0) { + $tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND); + } + + // move tokenList to new set, excluding unnecessary white-space tokens and converting necessary ones to intersections + $tokenCount = count($tokens1); + for ($i = 0; $i < $tokenCount; ++$i) { + $token = $tokens1[$i]; + if (isset($tokens1[$i - 1])) { + $previousToken = $tokens1[$i - 1]; + } else { + $previousToken = null; + } + if (isset($tokens1[$i + 1])) { + $nextToken = $tokens1[$i + 1]; + } else { + $nextToken = null; + } + + if (is_null($token)) { + continue; + } + + if ($token->getTokenType() != PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_WHITESPACE) { + $tokens2[] = $token; + continue; + } + + if (is_null($previousToken)) { + continue; + } + + if (! ( + (($previousToken->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_FUNCTION) && ($previousToken->getTokenSubType() == PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_STOP)) || + (($previousToken->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_SUBEXPRESSION) && ($previousToken->getTokenSubType() == PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_STOP)) || + ($previousToken->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND) + ) ) { + continue; + } + + if (is_null($nextToken)) { + continue; + } + + if (! ( + (($nextToken->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_FUNCTION) && ($nextToken->getTokenSubType() == PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_START)) || + (($nextToken->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_SUBEXPRESSION) && ($nextToken->getTokenSubType() == PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_START)) || + ($nextToken->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND) + ) ) { + continue; + } + + $tokens2[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERATORINFIX, PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_INTERSECTION); + } + + // move tokens to final list, switching infix "-" operators to prefix when appropriate, switching infix "+" operators + // to noop when appropriate, identifying operand and infix-operator subtypes, and pulling "@" from function names + $this->tokens = array(); + + $tokenCount = count($tokens2); + for ($i = 0; $i < $tokenCount; ++$i) { + $token = $tokens2[$i]; + if (isset($tokens2[$i - 1])) { + $previousToken = $tokens2[$i - 1]; + } else { + $previousToken = null; + } + if (isset($tokens2[$i + 1])) { + $nextToken = $tokens2[$i + 1]; + } else { + $nextToken = null; + } + + if (is_null($token)) { + continue; + } + + if ($token->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERATORINFIX && $token->getValue() == "-") { + if ($i == 0) { + $token->setTokenType(PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERATORPREFIX); + } elseif ((($previousToken->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_FUNCTION) && + ($previousToken->getTokenSubType() == PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_STOP)) || + (($previousToken->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_SUBEXPRESSION) && + ($previousToken->getTokenSubType() == PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_STOP)) || + ($previousToken->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERATORPOSTFIX) || + ($previousToken->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND)) { + $token->setTokenSubType(PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_MATH); + } else { + $token->setTokenType(PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERATORPREFIX); + } + + $this->tokens[] = $token; + continue; + } + + if ($token->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERATORINFIX && $token->getValue() == "+") { + if ($i == 0) { + continue; + } elseif ((($previousToken->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_FUNCTION) && + ($previousToken->getTokenSubType() == PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_STOP)) || + (($previousToken->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_SUBEXPRESSION) && + ($previousToken->getTokenSubType() == PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_STOP)) || + ($previousToken->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERATORPOSTFIX) || + ($previousToken->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND)) { + $token->setTokenSubType(PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_MATH); + } else { + continue; + } + + $this->tokens[] = $token; + continue; + } + + if ($token->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERATORINFIX && + $token->getTokenSubType() == PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_NOTHING) { + if (strpos("<>=", substr($token->getValue(), 0, 1)) !== false) { + $token->setTokenSubType(PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_LOGICAL); + } elseif ($token->getValue() == "&") { + $token->setTokenSubType(PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_CONCATENATION); + } else { + $token->setTokenSubType(PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_MATH); + } + + $this->tokens[] = $token; + continue; + } + + if ($token->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND && + $token->getTokenSubType() == PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_NOTHING) { + if (!is_numeric($token->getValue())) { + if (strtoupper($token->getValue()) == "TRUE" || strtoupper($token->getValue() == "FALSE")) { + $token->setTokenSubType(PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_LOGICAL); + } else { + $token->setTokenSubType(PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_RANGE); + } + } else { + $token->setTokenSubType(PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_NUMBER); + } + + $this->tokens[] = $token; + continue; + } + + if ($token->getTokenType() == PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_FUNCTION) { + if (strlen($token->getValue() > 0)) { + if (substr($token->getValue(), 0, 1) == "@") { + $token->setValue(substr($token->getValue(), 1)); + } + } + } + + $this->tokens[] = $token; + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/FormulaToken.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/FormulaToken.php new file mode 100644 index 0000000..41c6e3d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/FormulaToken.php @@ -0,0 +1,176 @@ +value = $pValue; + $this->tokenType = $pTokenType; + $this->tokenSubType = $pTokenSubType; + } + + /** + * Get Value + * + * @return string + */ + public function getValue() + { + return $this->value; + } + + /** + * Set Value + * + * @param string $value + */ + public function setValue($value) + { + $this->value = $value; + } + + /** + * Get Token Type (represented by TOKEN_TYPE_*) + * + * @return string + */ + public function getTokenType() + { + return $this->tokenType; + } + + /** + * Set Token Type + * + * @param string $value + */ + public function setTokenType($value = PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_UNKNOWN) + { + $this->tokenType = $value; + } + + /** + * Get Token SubType (represented by TOKEN_SUBTYPE_*) + * + * @return string + */ + public function getTokenSubType() + { + return $this->tokenSubType; + } + + /** + * Set Token SubType + * + * @param string $value + */ + public function setTokenSubType($value = PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_NOTHING) + { + $this->tokenSubType = $value; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Function.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Function.php new file mode 100644 index 0000000..d58cef2 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Function.php @@ -0,0 +1,148 @@ +category = $pCategory; + $this->excelName = $pExcelName; + $this->phpExcelName = $pPHPExcelName; + } else { + throw new PHPExcel_Calculation_Exception("Invalid parameters passed."); + } + } + + /** + * Get Category (represented by CATEGORY_*) + * + * @return string + */ + public function getCategory() + { + return $this->category; + } + + /** + * Set Category (represented by CATEGORY_*) + * + * @param string $value + * @throws PHPExcel_Calculation_Exception + */ + public function setCategory($value = null) + { + if (!is_null($value)) { + $this->category = $value; + } else { + throw new PHPExcel_Calculation_Exception("Invalid parameter passed."); + } + } + + /** + * Get Excel name + * + * @return string + */ + public function getExcelName() + { + return $this->excelName; + } + + /** + * Set Excel name + * + * @param string $value + */ + public function setExcelName($value) + { + $this->excelName = $value; + } + + /** + * Get PHPExcel name + * + * @return string + */ + public function getPHPExcelName() + { + return $this->phpExcelName; + } + + /** + * Set PHPExcel name + * + * @param string $value + */ + public function setPHPExcelName($value) + { + $this->phpExcelName = $value; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php new file mode 100644 index 0000000..b8b784f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php @@ -0,0 +1,759 @@ + '#NULL!', + 'divisionbyzero' => '#DIV/0!', + 'value' => '#VALUE!', + 'reference' => '#REF!', + 'name' => '#NAME?', + 'num' => '#NUM!', + 'na' => '#N/A', + 'gettingdata' => '#GETTING_DATA' + ); + + + /** + * Set the Compatibility Mode + * + * @access public + * @category Function Configuration + * @param string $compatibilityMode Compatibility Mode + * Permitted values are: + * PHPExcel_Calculation_Functions::COMPATIBILITY_EXCEL 'Excel' + * PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC 'Gnumeric' + * PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE 'OpenOfficeCalc' + * @return boolean (Success or Failure) + */ + public static function setCompatibilityMode($compatibilityMode) + { + if (($compatibilityMode == self::COMPATIBILITY_EXCEL) || + ($compatibilityMode == self::COMPATIBILITY_GNUMERIC) || + ($compatibilityMode == self::COMPATIBILITY_OPENOFFICE)) { + self::$compatibilityMode = $compatibilityMode; + return true; + } + return false; + } + + + /** + * Return the current Compatibility Mode + * + * @access public + * @category Function Configuration + * @return string Compatibility Mode + * Possible Return values are: + * PHPExcel_Calculation_Functions::COMPATIBILITY_EXCEL 'Excel' + * PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC 'Gnumeric' + * PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE 'OpenOfficeCalc' + */ + public static function getCompatibilityMode() + { + return self::$compatibilityMode; + } + + + /** + * Set the Return Date Format used by functions that return a date/time (Excel, PHP Serialized Numeric or PHP Object) + * + * @access public + * @category Function Configuration + * @param string $returnDateType Return Date Format + * Permitted values are: + * PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC 'P' + * PHPExcel_Calculation_Functions::RETURNDATE_PHP_OBJECT 'O' + * PHPExcel_Calculation_Functions::RETURNDATE_EXCEL 'E' + * @return boolean Success or failure + */ + public static function setReturnDateType($returnDateType) + { + if (($returnDateType == self::RETURNDATE_PHP_NUMERIC) || + ($returnDateType == self::RETURNDATE_PHP_OBJECT) || + ($returnDateType == self::RETURNDATE_EXCEL)) { + self::$returnDateType = $returnDateType; + return true; + } + return false; + } + + + /** + * Return the current Return Date Format for functions that return a date/time (Excel, PHP Serialized Numeric or PHP Object) + * + * @access public + * @category Function Configuration + * @return string Return Date Format + * Possible Return values are: + * PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC 'P' + * PHPExcel_Calculation_Functions::RETURNDATE_PHP_OBJECT 'O' + * PHPExcel_Calculation_Functions::RETURNDATE_EXCEL 'E' + */ + public static function getReturnDateType() + { + return self::$returnDateType; + } + + + /** + * DUMMY + * + * @access public + * @category Error Returns + * @return string #Not Yet Implemented + */ + public static function DUMMY() + { + return '#Not Yet Implemented'; + } + + + /** + * DIV0 + * + * @access public + * @category Error Returns + * @return string #Not Yet Implemented + */ + public static function DIV0() + { + return self::$errorCodes['divisionbyzero']; + } + + + /** + * NA + * + * Excel Function: + * =NA() + * + * Returns the error value #N/A + * #N/A is the error value that means "no value is available." + * + * @access public + * @category Logical Functions + * @return string #N/A! + */ + public static function NA() + { + return self::$errorCodes['na']; + } + + + /** + * NaN + * + * Returns the error value #NUM! + * + * @access public + * @category Error Returns + * @return string #NUM! + */ + public static function NaN() + { + return self::$errorCodes['num']; + } + + + /** + * NAME + * + * Returns the error value #NAME? + * + * @access public + * @category Error Returns + * @return string #NAME? + */ + public static function NAME() + { + return self::$errorCodes['name']; + } + + + /** + * REF + * + * Returns the error value #REF! + * + * @access public + * @category Error Returns + * @return string #REF! + */ + public static function REF() + { + return self::$errorCodes['reference']; + } + + + /** + * NULL + * + * Returns the error value #NULL! + * + * @access public + * @category Error Returns + * @return string #NULL! + */ + public static function NULL() + { + return self::$errorCodes['null']; + } + + + /** + * VALUE + * + * Returns the error value #VALUE! + * + * @access public + * @category Error Returns + * @return string #VALUE! + */ + public static function VALUE() + { + return self::$errorCodes['value']; + } + + + public static function isMatrixValue($idx) + { + return ((substr_count($idx, '.') <= 1) || (preg_match('/\.[A-Z]/', $idx) > 0)); + } + + + public static function isValue($idx) + { + return (substr_count($idx, '.') == 0); + } + + + public static function isCellValue($idx) + { + return (substr_count($idx, '.') > 1); + } + + + public static function ifCondition($condition) + { + $condition = PHPExcel_Calculation_Functions::flattenSingleValue($condition); + if (!isset($condition{0})) { + $condition = '=""'; + } + if (!in_array($condition{0}, array('>', '<', '='))) { + if (!is_numeric($condition)) { + $condition = PHPExcel_Calculation::wrapResult(strtoupper($condition)); + } + return '=' . $condition; + } else { + preg_match('/([<>=]+)(.*)/', $condition, $matches); + list(, $operator, $operand) = $matches; + + if (!is_numeric($operand)) { + $operand = str_replace('"', '""', $operand); + $operand = PHPExcel_Calculation::wrapResult(strtoupper($operand)); + } + + return $operator.$operand; + } + } + + /** + * ERROR_TYPE + * + * @param mixed $value Value to check + * @return boolean + */ + public static function ERROR_TYPE($value = '') + { + $value = self::flattenSingleValue($value); + + $i = 1; + foreach (self::$errorCodes as $errorCode) { + if ($value === $errorCode) { + return $i; + } + ++$i; + } + return self::NA(); + } + + + /** + * IS_BLANK + * + * @param mixed $value Value to check + * @return boolean + */ + public static function IS_BLANK($value = null) + { + if (!is_null($value)) { + $value = self::flattenSingleValue($value); + } + + return is_null($value); + } + + + /** + * IS_ERR + * + * @param mixed $value Value to check + * @return boolean + */ + public static function IS_ERR($value = '') + { + $value = self::flattenSingleValue($value); + + return self::IS_ERROR($value) && (!self::IS_NA($value)); + } + + + /** + * IS_ERROR + * + * @param mixed $value Value to check + * @return boolean + */ + public static function IS_ERROR($value = '') + { + $value = self::flattenSingleValue($value); + + if (!is_string($value)) { + return false; + } + return in_array($value, array_values(self::$errorCodes)); + } + + + /** + * IS_NA + * + * @param mixed $value Value to check + * @return boolean + */ + public static function IS_NA($value = '') + { + $value = self::flattenSingleValue($value); + + return ($value === self::NA()); + } + + + /** + * IS_EVEN + * + * @param mixed $value Value to check + * @return boolean + */ + public static function IS_EVEN($value = null) + { + $value = self::flattenSingleValue($value); + + if ($value === null) { + return self::NAME(); + } elseif ((is_bool($value)) || ((is_string($value)) && (!is_numeric($value)))) { + return self::VALUE(); + } + + return ($value % 2 == 0); + } + + + /** + * IS_ODD + * + * @param mixed $value Value to check + * @return boolean + */ + public static function IS_ODD($value = null) + { + $value = self::flattenSingleValue($value); + + if ($value === null) { + return self::NAME(); + } elseif ((is_bool($value)) || ((is_string($value)) && (!is_numeric($value)))) { + return self::VALUE(); + } + + return (abs($value) % 2 == 1); + } + + + /** + * IS_NUMBER + * + * @param mixed $value Value to check + * @return boolean + */ + public static function IS_NUMBER($value = null) + { + $value = self::flattenSingleValue($value); + + if (is_string($value)) { + return false; + } + return is_numeric($value); + } + + + /** + * IS_LOGICAL + * + * @param mixed $value Value to check + * @return boolean + */ + public static function IS_LOGICAL($value = null) + { + $value = self::flattenSingleValue($value); + + return is_bool($value); + } + + + /** + * IS_TEXT + * + * @param mixed $value Value to check + * @return boolean + */ + public static function IS_TEXT($value = null) + { + $value = self::flattenSingleValue($value); + + return (is_string($value) && !self::IS_ERROR($value)); + } + + + /** + * IS_NONTEXT + * + * @param mixed $value Value to check + * @return boolean + */ + public static function IS_NONTEXT($value = null) + { + return !self::IS_TEXT($value); + } + + + /** + * VERSION + * + * @return string Version information + */ + public static function VERSION() { + return 'PHPExcel 1.8.2, 2018-11-22'; + } // function VERSION() + + + /** + * N + * + * Returns a value converted to a number + * + * @param value The value you want converted + * @return number N converts values listed in the following table + * If value is or refers to N returns + * A number That number + * A date The serial number of that date + * TRUE 1 + * FALSE 0 + * An error value The error value + * Anything else 0 + */ + public static function N($value = null) + { + while (is_array($value)) { + $value = array_shift($value); + } + + switch (gettype($value)) { + case 'double': + case 'float': + case 'integer': + return $value; + case 'boolean': + return (integer) $value; + case 'string': + // Errors + if ((strlen($value) > 0) && ($value{0} == '#')) { + return $value; + } + break; + } + return 0; + } + + + /** + * TYPE + * + * Returns a number that identifies the type of a value + * + * @param value The value you want tested + * @return number N converts values listed in the following table + * If value is or refers to N returns + * A number 1 + * Text 2 + * Logical Value 4 + * An error value 16 + * Array or Matrix 64 + */ + public static function TYPE($value = null) + { + $value = self::flattenArrayIndexed($value); + if (is_array($value) && (count($value) > 1)) { + end($value); + $a = key($value); + // Range of cells is an error + if (self::isCellValue($a)) { + return 16; + // Test for Matrix + } elseif (self::isMatrixValue($a)) { + return 64; + } + } elseif (empty($value)) { + // Empty Cell + return 1; + } + $value = self::flattenSingleValue($value); + + if (($value === null) || (is_float($value)) || (is_int($value))) { + return 1; + } elseif (is_bool($value)) { + return 4; + } elseif (is_array($value)) { + return 64; + } elseif (is_string($value)) { + // Errors + if ((strlen($value) > 0) && ($value{0} == '#')) { + return 16; + } + return 2; + } + return 0; + } + + + /** + * Convert a multi-dimensional array to a simple 1-dimensional array + * + * @param array $array Array to be flattened + * @return array Flattened array + */ + public static function flattenArray($array) + { + if (!is_array($array)) { + return (array) $array; + } + + $arrayValues = array(); + foreach ($array as $value) { + if (is_array($value)) { + foreach ($value as $val) { + if (is_array($val)) { + foreach ($val as $v) { + $arrayValues[] = $v; + } + } else { + $arrayValues[] = $val; + } + } + } else { + $arrayValues[] = $value; + } + } + + return $arrayValues; + } + + + /** + * Convert a multi-dimensional array to a simple 1-dimensional array, but retain an element of indexing + * + * @param array $array Array to be flattened + * @return array Flattened array + */ + public static function flattenArrayIndexed($array) + { + if (!is_array($array)) { + return (array) $array; + } + + $arrayValues = array(); + foreach ($array as $k1 => $value) { + if (is_array($value)) { + foreach ($value as $k2 => $val) { + if (is_array($val)) { + foreach ($val as $k3 => $v) { + $arrayValues[$k1.'.'.$k2.'.'.$k3] = $v; + } + } else { + $arrayValues[$k1.'.'.$k2] = $val; + } + } + } else { + $arrayValues[$k1] = $value; + } + } + + return $arrayValues; + } + + + /** + * Convert an array to a single scalar value by extracting the first element + * + * @param mixed $value Array or scalar value + * @return mixed + */ + public static function flattenSingleValue($value = '') + { + while (is_array($value)) { + $value = array_pop($value); + } + + return $value; + } +} + + +// +// There are a few mathematical functions that aren't available on all versions of PHP for all platforms +// These functions aren't available in Windows implementations of PHP prior to version 5.3.0 +// So we test if they do exist for this version of PHP/operating platform; and if not we create them +// +if (!function_exists('acosh')) { + function acosh($x) + { + return 2 * log(sqrt(($x + 1) / 2) + sqrt(($x - 1) / 2)); + } // function acosh() +} + +if (!function_exists('asinh')) { + function asinh($x) + { + return log($x + sqrt(1 + $x * $x)); + } // function asinh() +} + +if (!function_exists('atanh')) { + function atanh($x) + { + return (log(1 + $x) - log(1 - $x)) / 2; + } // function atanh() +} + + +// +// Strangely, PHP doesn't have a mb_str_replace multibyte function +// As we'll only ever use this function with UTF-8 characters, we can simply "hard-code" the character set +// +if ((!function_exists('mb_str_replace')) && + (function_exists('mb_substr')) && (function_exists('mb_strlen')) && (function_exists('mb_strpos'))) { + function mb_str_replace($search, $replace, $subject) + { + if (is_array($subject)) { + $ret = array(); + foreach ($subject as $key => $val) { + $ret[$key] = mb_str_replace($search, $replace, $val); + } + return $ret; + } + + foreach ((array) $search as $key => $s) { + if ($s == '' && $s !== 0) { + continue; + } + $r = !is_array($replace) ? $replace : (array_key_exists($key, $replace) ? $replace[$key] : ''); + $pos = mb_strpos($subject, $s, 0, 'UTF-8'); + while ($pos !== false) { + $subject = mb_substr($subject, 0, $pos, 'UTF-8') . $r . mb_substr($subject, $pos + mb_strlen($s, 'UTF-8'), 65535, 'UTF-8'); + $pos = mb_strpos($subject, $s, $pos + mb_strlen($r, 'UTF-8'), 'UTF-8'); + } + } + return $subject; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Logical.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Logical.php new file mode 100644 index 0000000..dd65f01 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Logical.php @@ -0,0 +1,285 @@ + $arg) { + // Is it a boolean value? + if (is_bool($arg)) { + $returnValue = $returnValue && $arg; + } elseif ((is_numeric($arg)) && (!is_string($arg))) { + $returnValue = $returnValue && ($arg != 0); + } elseif (is_string($arg)) { + $arg = strtoupper($arg); + if (($arg == 'TRUE') || ($arg == PHPExcel_Calculation::getTRUE())) { + $arg = true; + } elseif (($arg == 'FALSE') || ($arg == PHPExcel_Calculation::getFALSE())) { + $arg = false; + } else { + return PHPExcel_Calculation_Functions::VALUE(); + } + $returnValue = $returnValue && ($arg != 0); + } + } + + // Return + if ($argCount < 0) { + return PHPExcel_Calculation_Functions::VALUE(); + } + return $returnValue; + } + + + /** + * LOGICAL_OR + * + * Returns boolean TRUE if any argument is TRUE; returns FALSE if all arguments are FALSE. + * + * Excel Function: + * =OR(logical1[,logical2[, ...]]) + * + * The arguments must evaluate to logical values such as TRUE or FALSE, or the arguments must be arrays + * or references that contain logical values. + * + * Boolean arguments are treated as True or False as appropriate + * Integer or floating point arguments are treated as True, except for 0 or 0.0 which are False + * If any argument value is a string, or a Null, the function returns a #VALUE! error, unless the string holds + * the value TRUE or FALSE, in which case it is evaluated as the corresponding boolean value + * + * @access public + * @category Logical Functions + * @param mixed $arg,... Data values + * @return boolean The logical OR of the arguments. + */ + public static function LOGICAL_OR() + { + // Return value + $returnValue = false; + + // Loop through the arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + $argCount = -1; + foreach ($aArgs as $argCount => $arg) { + // Is it a boolean value? + if (is_bool($arg)) { + $returnValue = $returnValue || $arg; + } elseif ((is_numeric($arg)) && (!is_string($arg))) { + $returnValue = $returnValue || ($arg != 0); + } elseif (is_string($arg)) { + $arg = strtoupper($arg); + if (($arg == 'TRUE') || ($arg == PHPExcel_Calculation::getTRUE())) { + $arg = true; + } elseif (($arg == 'FALSE') || ($arg == PHPExcel_Calculation::getFALSE())) { + $arg = false; + } else { + return PHPExcel_Calculation_Functions::VALUE(); + } + $returnValue = $returnValue || ($arg != 0); + } + } + + // Return + if ($argCount < 0) { + return PHPExcel_Calculation_Functions::VALUE(); + } + return $returnValue; + } + + + /** + * NOT + * + * Returns the boolean inverse of the argument. + * + * Excel Function: + * =NOT(logical) + * + * The argument must evaluate to a logical value such as TRUE or FALSE + * + * Boolean arguments are treated as True or False as appropriate + * Integer or floating point arguments are treated as True, except for 0 or 0.0 which are False + * If any argument value is a string, or a Null, the function returns a #VALUE! error, unless the string holds + * the value TRUE or FALSE, in which case it is evaluated as the corresponding boolean value + * + * @access public + * @category Logical Functions + * @param mixed $logical A value or expression that can be evaluated to TRUE or FALSE + * @return boolean The boolean inverse of the argument. + */ + public static function NOT($logical = false) + { + $logical = PHPExcel_Calculation_Functions::flattenSingleValue($logical); + if (is_string($logical)) { + $logical = strtoupper($logical); + if (($logical == 'TRUE') || ($logical == PHPExcel_Calculation::getTRUE())) { + return false; + } elseif (($logical == 'FALSE') || ($logical == PHPExcel_Calculation::getFALSE())) { + return true; + } else { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + + return !$logical; + } + + /** + * STATEMENT_IF + * + * Returns one value if a condition you specify evaluates to TRUE and another value if it evaluates to FALSE. + * + * Excel Function: + * =IF(condition[,returnIfTrue[,returnIfFalse]]) + * + * Condition is any value or expression that can be evaluated to TRUE or FALSE. + * For example, A10=100 is a logical expression; if the value in cell A10 is equal to 100, + * the expression evaluates to TRUE. Otherwise, the expression evaluates to FALSE. + * This argument can use any comparison calculation operator. + * ReturnIfTrue is the value that is returned if condition evaluates to TRUE. + * For example, if this argument is the text string "Within budget" and the condition argument evaluates to TRUE, + * then the IF function returns the text "Within budget" + * If condition is TRUE and ReturnIfTrue is blank, this argument returns 0 (zero). To display the word TRUE, use + * the logical value TRUE for this argument. + * ReturnIfTrue can be another formula. + * ReturnIfFalse is the value that is returned if condition evaluates to FALSE. + * For example, if this argument is the text string "Over budget" and the condition argument evaluates to FALSE, + * then the IF function returns the text "Over budget". + * If condition is FALSE and ReturnIfFalse is omitted, then the logical value FALSE is returned. + * If condition is FALSE and ReturnIfFalse is blank, then the value 0 (zero) is returned. + * ReturnIfFalse can be another formula. + * + * @access public + * @category Logical Functions + * @param mixed $condition Condition to evaluate + * @param mixed $returnIfTrue Value to return when condition is true + * @param mixed $returnIfFalse Optional value to return when condition is false + * @return mixed The value of returnIfTrue or returnIfFalse determined by condition + */ + public static function STATEMENT_IF($condition = true, $returnIfTrue = 0, $returnIfFalse = false) + { + $condition = (is_null($condition)) ? true : (boolean) PHPExcel_Calculation_Functions::flattenSingleValue($condition); + $returnIfTrue = (is_null($returnIfTrue)) ? 0 : PHPExcel_Calculation_Functions::flattenSingleValue($returnIfTrue); + $returnIfFalse = (is_null($returnIfFalse)) ? false : PHPExcel_Calculation_Functions::flattenSingleValue($returnIfFalse); + + return ($condition) ? $returnIfTrue : $returnIfFalse; + } + + + /** + * IFERROR + * + * Excel Function: + * =IFERROR(testValue,errorpart) + * + * @access public + * @category Logical Functions + * @param mixed $testValue Value to check, is also the value returned when no error + * @param mixed $errorpart Value to return when testValue is an error condition + * @return mixed The value of errorpart or testValue determined by error condition + */ + public static function IFERROR($testValue = '', $errorpart = '') + { + $testValue = (is_null($testValue)) ? '' : PHPExcel_Calculation_Functions::flattenSingleValue($testValue); + $errorpart = (is_null($errorpart)) ? '' : PHPExcel_Calculation_Functions::flattenSingleValue($errorpart); + + return self::STATEMENT_IF(PHPExcel_Calculation_Functions::IS_ERROR($testValue), $errorpart, $testValue); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/LookupRef.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/LookupRef.php new file mode 100644 index 0000000..1fe7790 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/LookupRef.php @@ -0,0 +1,879 @@ + '') { + if (strpos($sheetText, ' ') !== false) { + $sheetText = "'".$sheetText."'"; + } + $sheetText .='!'; + } + if ((!is_bool($referenceStyle)) || $referenceStyle) { + $rowRelative = $columnRelative = '$'; + $column = PHPExcel_Cell::stringFromColumnIndex($column-1); + if (($relativity == 2) || ($relativity == 4)) { + $columnRelative = ''; + } + if (($relativity == 3) || ($relativity == 4)) { + $rowRelative = ''; + } + return $sheetText.$columnRelative.$column.$rowRelative.$row; + } else { + if (($relativity == 2) || ($relativity == 4)) { + $column = '['.$column.']'; + } + if (($relativity == 3) || ($relativity == 4)) { + $row = '['.$row.']'; + } + return $sheetText.'R'.$row.'C'.$column; + } + } + + + /** + * COLUMN + * + * Returns the column number of the given cell reference + * If the cell reference is a range of cells, COLUMN returns the column numbers of each column in the reference as a horizontal array. + * If cell reference is omitted, and the function is being called through the calculation engine, then it is assumed to be the + * reference of the cell in which the COLUMN function appears; otherwise this function returns 0. + * + * Excel Function: + * =COLUMN([cellAddress]) + * + * @param cellAddress A reference to a range of cells for which you want the column numbers + * @return integer or array of integer + */ + public static function COLUMN($cellAddress = null) + { + if (is_null($cellAddress) || trim($cellAddress) === '') { + return 0; + } + + if (is_array($cellAddress)) { + foreach ($cellAddress as $columnKey => $value) { + $columnKey = preg_replace('/[^a-z]/i', '', $columnKey); + return (integer) PHPExcel_Cell::columnIndexFromString($columnKey); + } + } else { + if (strpos($cellAddress, '!') !== false) { + list($sheet, $cellAddress) = explode('!', $cellAddress); + } + if (strpos($cellAddress, ':') !== false) { + list($startAddress, $endAddress) = explode(':', $cellAddress); + $startAddress = preg_replace('/[^a-z]/i', '', $startAddress); + $endAddress = preg_replace('/[^a-z]/i', '', $endAddress); + $returnValue = array(); + do { + $returnValue[] = (integer) PHPExcel_Cell::columnIndexFromString($startAddress); + } while ($startAddress++ != $endAddress); + return $returnValue; + } else { + $cellAddress = preg_replace('/[^a-z]/i', '', $cellAddress); + return (integer) PHPExcel_Cell::columnIndexFromString($cellAddress); + } + } + } + + + /** + * COLUMNS + * + * Returns the number of columns in an array or reference. + * + * Excel Function: + * =COLUMNS(cellAddress) + * + * @param cellAddress An array or array formula, or a reference to a range of cells for which you want the number of columns + * @return integer The number of columns in cellAddress + */ + public static function COLUMNS($cellAddress = null) + { + if (is_null($cellAddress) || $cellAddress === '') { + return 1; + } elseif (!is_array($cellAddress)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + reset($cellAddress); + $isMatrix = (is_numeric(key($cellAddress))); + list($columns, $rows) = PHPExcel_Calculation::_getMatrixDimensions($cellAddress); + + if ($isMatrix) { + return $rows; + } else { + return $columns; + } + } + + + /** + * ROW + * + * Returns the row number of the given cell reference + * If the cell reference is a range of cells, ROW returns the row numbers of each row in the reference as a vertical array. + * If cell reference is omitted, and the function is being called through the calculation engine, then it is assumed to be the + * reference of the cell in which the ROW function appears; otherwise this function returns 0. + * + * Excel Function: + * =ROW([cellAddress]) + * + * @param cellAddress A reference to a range of cells for which you want the row numbers + * @return integer or array of integer + */ + public static function ROW($cellAddress = null) + { + if (is_null($cellAddress) || trim($cellAddress) === '') { + return 0; + } + + if (is_array($cellAddress)) { + foreach ($cellAddress as $columnKey => $rowValue) { + foreach ($rowValue as $rowKey => $cellValue) { + return (integer) preg_replace('/[^0-9]/i', '', $rowKey); + } + } + } else { + if (strpos($cellAddress, '!') !== false) { + list($sheet, $cellAddress) = explode('!', $cellAddress); + } + if (strpos($cellAddress, ':') !== false) { + list($startAddress, $endAddress) = explode(':', $cellAddress); + $startAddress = preg_replace('/[^0-9]/', '', $startAddress); + $endAddress = preg_replace('/[^0-9]/', '', $endAddress); + $returnValue = array(); + do { + $returnValue[][] = (integer) $startAddress; + } while ($startAddress++ != $endAddress); + return $returnValue; + } else { + list($cellAddress) = explode(':', $cellAddress); + return (integer) preg_replace('/[^0-9]/', '', $cellAddress); + } + } + } + + + /** + * ROWS + * + * Returns the number of rows in an array or reference. + * + * Excel Function: + * =ROWS(cellAddress) + * + * @param cellAddress An array or array formula, or a reference to a range of cells for which you want the number of rows + * @return integer The number of rows in cellAddress + */ + public static function ROWS($cellAddress = null) + { + if (is_null($cellAddress) || $cellAddress === '') { + return 1; + } elseif (!is_array($cellAddress)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + reset($cellAddress); + $isMatrix = (is_numeric(key($cellAddress))); + list($columns, $rows) = PHPExcel_Calculation::_getMatrixDimensions($cellAddress); + + if ($isMatrix) { + return $columns; + } else { + return $rows; + } + } + + + /** + * HYPERLINK + * + * Excel Function: + * =HYPERLINK(linkURL,displayName) + * + * @access public + * @category Logical Functions + * @param string $linkURL Value to check, is also the value returned when no error + * @param string $displayName Value to return when testValue is an error condition + * @param PHPExcel_Cell $pCell The cell to set the hyperlink in + * @return mixed The value of $displayName (or $linkURL if $displayName was blank) + */ + public static function HYPERLINK($linkURL = '', $displayName = null, PHPExcel_Cell $pCell = null) + { + $args = func_get_args(); + $pCell = array_pop($args); + + $linkURL = (is_null($linkURL)) ? '' : PHPExcel_Calculation_Functions::flattenSingleValue($linkURL); + $displayName = (is_null($displayName)) ? '' : PHPExcel_Calculation_Functions::flattenSingleValue($displayName); + + if ((!is_object($pCell)) || (trim($linkURL) == '')) { + return PHPExcel_Calculation_Functions::REF(); + } + + if ((is_object($displayName)) || trim($displayName) == '') { + $displayName = $linkURL; + } + + $pCell->getHyperlink()->setUrl($linkURL); + $pCell->getHyperlink()->setTooltip($displayName); + + return $displayName; + } + + + /** + * INDIRECT + * + * Returns the reference specified by a text string. + * References are immediately evaluated to display their contents. + * + * Excel Function: + * =INDIRECT(cellAddress) + * + * NOTE - INDIRECT() does not yet support the optional a1 parameter introduced in Excel 2010 + * + * @param cellAddress $cellAddress The cell address of the current cell (containing this formula) + * @param PHPExcel_Cell $pCell The current cell (containing this formula) + * @return mixed The cells referenced by cellAddress + * + * @todo Support for the optional a1 parameter introduced in Excel 2010 + * + */ + public static function INDIRECT($cellAddress = null, PHPExcel_Cell $pCell = null) + { + $cellAddress = PHPExcel_Calculation_Functions::flattenSingleValue($cellAddress); + if (is_null($cellAddress) || $cellAddress === '') { + return PHPExcel_Calculation_Functions::REF(); + } + + $cellAddress1 = $cellAddress; + $cellAddress2 = null; + if (strpos($cellAddress, ':') !== false) { + list($cellAddress1, $cellAddress2) = explode(':', $cellAddress); + } + + if ((!preg_match('/^'.PHPExcel_Calculation::CALCULATION_REGEXP_CELLREF.'$/i', $cellAddress1, $matches)) || + ((!is_null($cellAddress2)) && (!preg_match('/^'.PHPExcel_Calculation::CALCULATION_REGEXP_CELLREF.'$/i', $cellAddress2, $matches)))) { + if (!preg_match('/^'.PHPExcel_Calculation::CALCULATION_REGEXP_NAMEDRANGE.'$/i', $cellAddress1, $matches)) { + return PHPExcel_Calculation_Functions::REF(); + } + + if (strpos($cellAddress, '!') !== false) { + list($sheetName, $cellAddress) = explode('!', $cellAddress); + $sheetName = trim($sheetName, "'"); + $pSheet = $pCell->getWorksheet()->getParent()->getSheetByName($sheetName); + } else { + $pSheet = $pCell->getWorksheet(); + } + + return PHPExcel_Calculation::getInstance()->extractNamedRange($cellAddress, $pSheet, false); + } + + if (strpos($cellAddress, '!') !== false) { + list($sheetName, $cellAddress) = explode('!', $cellAddress); + $sheetName = trim($sheetName, "'"); + $pSheet = $pCell->getWorksheet()->getParent()->getSheetByName($sheetName); + } else { + $pSheet = $pCell->getWorksheet(); + } + + return PHPExcel_Calculation::getInstance()->extractCellRange($cellAddress, $pSheet, false); + } + + + /** + * OFFSET + * + * Returns a reference to a range that is a specified number of rows and columns from a cell or range of cells. + * The reference that is returned can be a single cell or a range of cells. You can specify the number of rows and + * the number of columns to be returned. + * + * Excel Function: + * =OFFSET(cellAddress, rows, cols, [height], [width]) + * + * @param cellAddress The reference from which you want to base the offset. Reference must refer to a cell or + * range of adjacent cells; otherwise, OFFSET returns the #VALUE! error value. + * @param rows The number of rows, up or down, that you want the upper-left cell to refer to. + * Using 5 as the rows argument specifies that the upper-left cell in the reference is + * five rows below reference. Rows can be positive (which means below the starting reference) + * or negative (which means above the starting reference). + * @param cols The number of columns, to the left or right, that you want the upper-left cell of the result + * to refer to. Using 5 as the cols argument specifies that the upper-left cell in the + * reference is five columns to the right of reference. Cols can be positive (which means + * to the right of the starting reference) or negative (which means to the left of the + * starting reference). + * @param height The height, in number of rows, that you want the returned reference to be. Height must be a positive number. + * @param width The width, in number of columns, that you want the returned reference to be. Width must be a positive number. + * @return string A reference to a cell or range of cells + */ + public static function OFFSET($cellAddress = null, $rows = 0, $columns = 0, $height = null, $width = null) + { + $rows = PHPExcel_Calculation_Functions::flattenSingleValue($rows); + $columns = PHPExcel_Calculation_Functions::flattenSingleValue($columns); + $height = PHPExcel_Calculation_Functions::flattenSingleValue($height); + $width = PHPExcel_Calculation_Functions::flattenSingleValue($width); + if ($cellAddress == null) { + return 0; + } + + $args = func_get_args(); + $pCell = array_pop($args); + if (!is_object($pCell)) { + return PHPExcel_Calculation_Functions::REF(); + } + + $sheetName = null; + if (strpos($cellAddress, "!")) { + list($sheetName, $cellAddress) = explode("!", $cellAddress); + $sheetName = trim($sheetName, "'"); + } + if (strpos($cellAddress, ":")) { + list($startCell, $endCell) = explode(":", $cellAddress); + } else { + $startCell = $endCell = $cellAddress; + } + list($startCellColumn, $startCellRow) = PHPExcel_Cell::coordinateFromString($startCell); + list($endCellColumn, $endCellRow) = PHPExcel_Cell::coordinateFromString($endCell); + + $startCellRow += $rows; + $startCellColumn = PHPExcel_Cell::columnIndexFromString($startCellColumn) - 1; + $startCellColumn += $columns; + + if (($startCellRow <= 0) || ($startCellColumn < 0)) { + return PHPExcel_Calculation_Functions::REF(); + } + $endCellColumn = PHPExcel_Cell::columnIndexFromString($endCellColumn) - 1; + if (($width != null) && (!is_object($width))) { + $endCellColumn = $startCellColumn + $width - 1; + } else { + $endCellColumn += $columns; + } + $startCellColumn = PHPExcel_Cell::stringFromColumnIndex($startCellColumn); + + if (($height != null) && (!is_object($height))) { + $endCellRow = $startCellRow + $height - 1; + } else { + $endCellRow += $rows; + } + + if (($endCellRow <= 0) || ($endCellColumn < 0)) { + return PHPExcel_Calculation_Functions::REF(); + } + $endCellColumn = PHPExcel_Cell::stringFromColumnIndex($endCellColumn); + + $cellAddress = $startCellColumn.$startCellRow; + if (($startCellColumn != $endCellColumn) || ($startCellRow != $endCellRow)) { + $cellAddress .= ':'.$endCellColumn.$endCellRow; + } + + if ($sheetName !== null) { + $pSheet = $pCell->getWorksheet()->getParent()->getSheetByName($sheetName); + } else { + $pSheet = $pCell->getWorksheet(); + } + + return PHPExcel_Calculation::getInstance()->extractCellRange($cellAddress, $pSheet, false); + } + + + /** + * CHOOSE + * + * Uses lookup_value to return a value from the list of value arguments. + * Use CHOOSE to select one of up to 254 values based on the lookup_value. + * + * Excel Function: + * =CHOOSE(index_num, value1, [value2], ...) + * + * @param index_num Specifies which value argument is selected. + * Index_num must be a number between 1 and 254, or a formula or reference to a cell containing a number + * between 1 and 254. + * @param value1... Value1 is required, subsequent values are optional. + * Between 1 to 254 value arguments from which CHOOSE selects a value or an action to perform based on + * index_num. The arguments can be numbers, cell references, defined names, formulas, functions, or + * text. + * @return mixed The selected value + */ + public static function CHOOSE() + { + $chooseArgs = func_get_args(); + $chosenEntry = PHPExcel_Calculation_Functions::flattenArray(array_shift($chooseArgs)); + $entryCount = count($chooseArgs) - 1; + + if (is_array($chosenEntry)) { + $chosenEntry = array_shift($chosenEntry); + } + if ((is_numeric($chosenEntry)) && (!is_bool($chosenEntry))) { + --$chosenEntry; + } else { + return PHPExcel_Calculation_Functions::VALUE(); + } + $chosenEntry = floor($chosenEntry); + if (($chosenEntry < 0) || ($chosenEntry > $entryCount)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + if (is_array($chooseArgs[$chosenEntry])) { + return PHPExcel_Calculation_Functions::flattenArray($chooseArgs[$chosenEntry]); + } else { + return $chooseArgs[$chosenEntry]; + } + } + + + /** + * MATCH + * + * The MATCH function searches for a specified item in a range of cells + * + * Excel Function: + * =MATCH(lookup_value, lookup_array, [match_type]) + * + * @param lookup_value The value that you want to match in lookup_array + * @param lookup_array The range of cells being searched + * @param match_type The number -1, 0, or 1. -1 means above, 0 means exact match, 1 means below. If match_type is 1 or -1, the list has to be ordered. + * @return integer The relative position of the found item + */ + public static function MATCH($lookup_value, $lookup_array, $match_type = 1) + { + $lookup_array = PHPExcel_Calculation_Functions::flattenArray($lookup_array); + $lookup_value = PHPExcel_Calculation_Functions::flattenSingleValue($lookup_value); + $match_type = (is_null($match_type)) ? 1 : (int) PHPExcel_Calculation_Functions::flattenSingleValue($match_type); + // MATCH is not case sensitive + $lookup_value = strtolower($lookup_value); + + // lookup_value type has to be number, text, or logical values + if ((!is_numeric($lookup_value)) && (!is_string($lookup_value)) && (!is_bool($lookup_value))) { + return PHPExcel_Calculation_Functions::NA(); + } + + // match_type is 0, 1 or -1 + if (($match_type !== 0) && ($match_type !== -1) && ($match_type !== 1)) { + return PHPExcel_Calculation_Functions::NA(); + } + + // lookup_array should not be empty + $lookupArraySize = count($lookup_array); + if ($lookupArraySize <= 0) { + return PHPExcel_Calculation_Functions::NA(); + } + + // lookup_array should contain only number, text, or logical values, or empty (null) cells + foreach ($lookup_array as $i => $lookupArrayValue) { + // check the type of the value + if ((!is_numeric($lookupArrayValue)) && (!is_string($lookupArrayValue)) && + (!is_bool($lookupArrayValue)) && (!is_null($lookupArrayValue))) { + return PHPExcel_Calculation_Functions::NA(); + } + // convert strings to lowercase for case-insensitive testing + if (is_string($lookupArrayValue)) { + $lookup_array[$i] = strtolower($lookupArrayValue); + } + if ((is_null($lookupArrayValue)) && (($match_type == 1) || ($match_type == -1))) { + $lookup_array = array_slice($lookup_array, 0, $i-1); + } + } + + // if match_type is 1 or -1, the list has to be ordered + if ($match_type == 1) { + asort($lookup_array); + $keySet = array_keys($lookup_array); + } elseif ($match_type == -1) { + arsort($lookup_array); + $keySet = array_keys($lookup_array); + } + + // ** + // find the match + // ** + foreach ($lookup_array as $i => $lookupArrayValue) { + if (($match_type == 0) && ($lookupArrayValue == $lookup_value)) { + // exact match + return ++$i; + } elseif (($match_type == -1) && ($lookupArrayValue <= $lookup_value)) { + $i = array_search($i, $keySet); + // if match_type is -1 <=> find the smallest value that is greater than or equal to lookup_value + if ($i < 1) { + // 1st cell was already smaller than the lookup_value + break; + } else { + // the previous cell was the match + return $keySet[$i-1]+1; + } + } elseif (($match_type == 1) && ($lookupArrayValue >= $lookup_value)) { + $i = array_search($i, $keySet); + // if match_type is 1 <=> find the largest value that is less than or equal to lookup_value + if ($i < 1) { + // 1st cell was already bigger than the lookup_value + break; + } else { + // the previous cell was the match + return $keySet[$i-1]+1; + } + } + } + + // unsuccessful in finding a match, return #N/A error value + return PHPExcel_Calculation_Functions::NA(); + } + + + /** + * INDEX + * + * Uses an index to choose a value from a reference or array + * + * Excel Function: + * =INDEX(range_array, row_num, [column_num]) + * + * @param range_array A range of cells or an array constant + * @param row_num The row in array from which to return a value. If row_num is omitted, column_num is required. + * @param column_num The column in array from which to return a value. If column_num is omitted, row_num is required. + * @return mixed the value of a specified cell or array of cells + */ + public static function INDEX($arrayValues, $rowNum = 0, $columnNum = 0) + { + if (($rowNum < 0) || ($columnNum < 0)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + if (!is_array($arrayValues)) { + return PHPExcel_Calculation_Functions::REF(); + } + + $rowKeys = array_keys($arrayValues); + $columnKeys = @array_keys($arrayValues[$rowKeys[0]]); + + if ($columnNum > count($columnKeys)) { + return PHPExcel_Calculation_Functions::VALUE(); + } elseif ($columnNum == 0) { + if ($rowNum == 0) { + return $arrayValues; + } + $rowNum = $rowKeys[--$rowNum]; + $returnArray = array(); + foreach ($arrayValues as $arrayColumn) { + if (is_array($arrayColumn)) { + if (isset($arrayColumn[$rowNum])) { + $returnArray[] = $arrayColumn[$rowNum]; + } else { + return $arrayValues[$rowNum]; + } + } else { + return $arrayValues[$rowNum]; + } + } + return $returnArray; + } + $columnNum = $columnKeys[--$columnNum]; + if ($rowNum > count($rowKeys)) { + return PHPExcel_Calculation_Functions::VALUE(); + } elseif ($rowNum == 0) { + return $arrayValues[$columnNum]; + } + $rowNum = $rowKeys[--$rowNum]; + + return $arrayValues[$rowNum][$columnNum]; + } + + + /** + * TRANSPOSE + * + * @param array $matrixData A matrix of values + * @return array + * + * Unlike the Excel TRANSPOSE function, which will only work on a single row or column, this function will transpose a full matrix. + */ + public static function TRANSPOSE($matrixData) + { + $returnMatrix = array(); + if (!is_array($matrixData)) { + $matrixData = array(array($matrixData)); + } + + $column = 0; + foreach ($matrixData as $matrixRow) { + $row = 0; + foreach ($matrixRow as $matrixCell) { + $returnMatrix[$row][$column] = $matrixCell; + ++$row; + } + ++$column; + } + return $returnMatrix; + } + + + private static function vlookupSort($a, $b) + { + reset($a); + $firstColumn = key($a); + if (($aLower = strtolower($a[$firstColumn])) == ($bLower = strtolower($b[$firstColumn]))) { + return 0; + } + return ($aLower < $bLower) ? -1 : 1; + } + + + /** + * VLOOKUP + * The VLOOKUP function searches for value in the left-most column of lookup_array and returns the value in the same row based on the index_number. + * @param lookup_value The value that you want to match in lookup_array + * @param lookup_array The range of cells being searched + * @param index_number The column number in table_array from which the matching value must be returned. The first column is 1. + * @param not_exact_match Determines if you are looking for an exact match based on lookup_value. + * @return mixed The value of the found cell + */ + public static function VLOOKUP($lookup_value, $lookup_array, $index_number, $not_exact_match = true) + { + $lookup_value = PHPExcel_Calculation_Functions::flattenSingleValue($lookup_value); + $index_number = PHPExcel_Calculation_Functions::flattenSingleValue($index_number); + $not_exact_match = PHPExcel_Calculation_Functions::flattenSingleValue($not_exact_match); + + // index_number must be greater than or equal to 1 + if ($index_number < 1) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + // index_number must be less than or equal to the number of columns in lookup_array + if ((!is_array($lookup_array)) || (empty($lookup_array))) { + return PHPExcel_Calculation_Functions::REF(); + } else { + $f = array_keys($lookup_array); + $firstRow = array_pop($f); + if ((!is_array($lookup_array[$firstRow])) || ($index_number > count($lookup_array[$firstRow]))) { + return PHPExcel_Calculation_Functions::REF(); + } else { + $columnKeys = array_keys($lookup_array[$firstRow]); + $returnColumn = $columnKeys[--$index_number]; + $firstColumn = array_shift($columnKeys); + } + } + + if (!$not_exact_match) { + uasort($lookup_array, array('self', 'vlookupSort')); + } + + $rowNumber = $rowValue = false; + foreach ($lookup_array as $rowKey => $rowData) { + if ((is_numeric($lookup_value) && is_numeric($rowData[$firstColumn]) && ($rowData[$firstColumn] > $lookup_value)) || + (!is_numeric($lookup_value) && !is_numeric($rowData[$firstColumn]) && (strtolower($rowData[$firstColumn]) > strtolower($lookup_value)))) { + break; + } + $rowNumber = $rowKey; + $rowValue = $rowData[$firstColumn]; + } + + if ($rowNumber !== false) { + if ((!$not_exact_match) && ($rowValue != $lookup_value)) { + // if an exact match is required, we have what we need to return an appropriate response + return PHPExcel_Calculation_Functions::NA(); + } else { + // otherwise return the appropriate value + return $lookup_array[$rowNumber][$returnColumn]; + } + } + + return PHPExcel_Calculation_Functions::NA(); + } + + + /** + * HLOOKUP + * The HLOOKUP function searches for value in the top-most row of lookup_array and returns the value in the same column based on the index_number. + * @param lookup_value The value that you want to match in lookup_array + * @param lookup_array The range of cells being searched + * @param index_number The row number in table_array from which the matching value must be returned. The first row is 1. + * @param not_exact_match Determines if you are looking for an exact match based on lookup_value. + * @return mixed The value of the found cell + */ + public static function HLOOKUP($lookup_value, $lookup_array, $index_number, $not_exact_match = true) + { + $lookup_value = PHPExcel_Calculation_Functions::flattenSingleValue($lookup_value); + $index_number = PHPExcel_Calculation_Functions::flattenSingleValue($index_number); + $not_exact_match = PHPExcel_Calculation_Functions::flattenSingleValue($not_exact_match); + + // index_number must be greater than or equal to 1 + if ($index_number < 1) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + // index_number must be less than or equal to the number of columns in lookup_array + if ((!is_array($lookup_array)) || (empty($lookup_array))) { + return PHPExcel_Calculation_Functions::REF(); + } else { + $f = array_keys($lookup_array); + $firstRow = array_pop($f); + if ((!is_array($lookup_array[$firstRow])) || ($index_number > count($lookup_array[$firstRow]))) { + return PHPExcel_Calculation_Functions::REF(); + } else { + $columnKeys = array_keys($lookup_array[$firstRow]); + $firstkey = $f[0] - 1; + $returnColumn = $firstkey + $index_number; + $firstColumn = array_shift($f); + } + } + + if (!$not_exact_match) { + $firstRowH = asort($lookup_array[$firstColumn]); + } + + $rowNumber = $rowValue = false; + foreach ($lookup_array[$firstColumn] as $rowKey => $rowData) { + if ((is_numeric($lookup_value) && is_numeric($rowData) && ($rowData > $lookup_value)) || + (!is_numeric($lookup_value) && !is_numeric($rowData) && (strtolower($rowData) > strtolower($lookup_value)))) { + break; + } + $rowNumber = $rowKey; + $rowValue = $rowData; + } + + if ($rowNumber !== false) { + if ((!$not_exact_match) && ($rowValue != $lookup_value)) { + // if an exact match is required, we have what we need to return an appropriate response + return PHPExcel_Calculation_Functions::NA(); + } else { + // otherwise return the appropriate value + return $lookup_array[$returnColumn][$rowNumber]; + } + } + + return PHPExcel_Calculation_Functions::NA(); + } + + + /** + * LOOKUP + * The LOOKUP function searches for value either from a one-row or one-column range or from an array. + * @param lookup_value The value that you want to match in lookup_array + * @param lookup_vector The range of cells being searched + * @param result_vector The column from which the matching value must be returned + * @return mixed The value of the found cell + */ + public static function LOOKUP($lookup_value, $lookup_vector, $result_vector = null) + { + $lookup_value = PHPExcel_Calculation_Functions::flattenSingleValue($lookup_value); + + if (!is_array($lookup_vector)) { + return PHPExcel_Calculation_Functions::NA(); + } + $lookupRows = count($lookup_vector); + $l = array_keys($lookup_vector); + $l = array_shift($l); + $lookupColumns = count($lookup_vector[$l]); + if ((($lookupRows == 1) && ($lookupColumns > 1)) || (($lookupRows == 2) && ($lookupColumns != 2))) { + $lookup_vector = self::TRANSPOSE($lookup_vector); + $lookupRows = count($lookup_vector); + $l = array_keys($lookup_vector); + $lookupColumns = count($lookup_vector[array_shift($l)]); + } + + if (is_null($result_vector)) { + $result_vector = $lookup_vector; + } + $resultRows = count($result_vector); + $l = array_keys($result_vector); + $l = array_shift($l); + $resultColumns = count($result_vector[$l]); + if ((($resultRows == 1) && ($resultColumns > 1)) || (($resultRows == 2) && ($resultColumns != 2))) { + $result_vector = self::TRANSPOSE($result_vector); + $resultRows = count($result_vector); + $r = array_keys($result_vector); + $resultColumns = count($result_vector[array_shift($r)]); + } + + if ($lookupRows == 2) { + $result_vector = array_pop($lookup_vector); + $lookup_vector = array_shift($lookup_vector); + } + if ($lookupColumns != 2) { + foreach ($lookup_vector as &$value) { + if (is_array($value)) { + $k = array_keys($value); + $key1 = $key2 = array_shift($k); + $key2++; + $dataValue1 = $value[$key1]; + } else { + $key1 = 0; + $key2 = 1; + $dataValue1 = $value; + } + $dataValue2 = array_shift($result_vector); + if (is_array($dataValue2)) { + $dataValue2 = array_shift($dataValue2); + } + $value = array($key1 => $dataValue1, $key2 => $dataValue2); + } + unset($value); + } + + return self::VLOOKUP($lookup_value, $lookup_vector, 2); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php new file mode 100644 index 0000000..894ba9c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php @@ -0,0 +1,1459 @@ + 1; --$i) { + if (($value % $i) == 0) { + $factorArray = array_merge($factorArray, self::factors($value / $i)); + $factorArray = array_merge($factorArray, self::factors($i)); + if ($i <= sqrt($value)) { + break; + } + } + } + if (!empty($factorArray)) { + rsort($factorArray); + return $factorArray; + } else { + return array((integer) $value); + } + } + + + private static function romanCut($num, $n) + { + return ($num - ($num % $n ) ) / $n; + } + + + /** + * ATAN2 + * + * This function calculates the arc tangent of the two variables x and y. It is similar to + * calculating the arc tangent of y ÷ x, except that the signs of both arguments are used + * to determine the quadrant of the result. + * The arctangent is the angle from the x-axis to a line containing the origin (0, 0) and a + * point with coordinates (xCoordinate, yCoordinate). The angle is given in radians between + * -pi and pi, excluding -pi. + * + * Note that the Excel ATAN2() function accepts its arguments in the reverse order to the standard + * PHP atan2() function, so we need to reverse them here before calling the PHP atan() function. + * + * Excel Function: + * ATAN2(xCoordinate,yCoordinate) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param float $xCoordinate The x-coordinate of the point. + * @param float $yCoordinate The y-coordinate of the point. + * @return float The inverse tangent of the specified x- and y-coordinates. + */ + public static function ATAN2($xCoordinate = null, $yCoordinate = null) + { + $xCoordinate = PHPExcel_Calculation_Functions::flattenSingleValue($xCoordinate); + $yCoordinate = PHPExcel_Calculation_Functions::flattenSingleValue($yCoordinate); + + $xCoordinate = ($xCoordinate !== null) ? $xCoordinate : 0.0; + $yCoordinate = ($yCoordinate !== null) ? $yCoordinate : 0.0; + + if (((is_numeric($xCoordinate)) || (is_bool($xCoordinate))) && + ((is_numeric($yCoordinate))) || (is_bool($yCoordinate))) { + $xCoordinate = (float) $xCoordinate; + $yCoordinate = (float) $yCoordinate; + + if (($xCoordinate == 0) && ($yCoordinate == 0)) { + return PHPExcel_Calculation_Functions::DIV0(); + } + + return atan2($yCoordinate, $xCoordinate); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * CEILING + * + * Returns number rounded up, away from zero, to the nearest multiple of significance. + * For example, if you want to avoid using pennies in your prices and your product is + * priced at $4.42, use the formula =CEILING(4.42,0.05) to round prices up to the + * nearest nickel. + * + * Excel Function: + * CEILING(number[,significance]) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param float $number The number you want to round. + * @param float $significance The multiple to which you want to round. + * @return float Rounded Number + */ + public static function CEILING($number, $significance = null) + { + $number = PHPExcel_Calculation_Functions::flattenSingleValue($number); + $significance = PHPExcel_Calculation_Functions::flattenSingleValue($significance); + + if ((is_null($significance)) && + (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC)) { + $significance = $number / abs($number); + } + + if ((is_numeric($number)) && (is_numeric($significance))) { + if (($number == 0.0 ) || ($significance == 0.0)) { + return 0.0; + } elseif (self::SIGN($number) == self::SIGN($significance)) { + return ceil($number / $significance) * $significance; + } else { + return PHPExcel_Calculation_Functions::NaN(); + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * COMBIN + * + * Returns the number of combinations for a given number of items. Use COMBIN to + * determine the total possible number of groups for a given number of items. + * + * Excel Function: + * COMBIN(numObjs,numInSet) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param int $numObjs Number of different objects + * @param int $numInSet Number of objects in each combination + * @return int Number of combinations + */ + public static function COMBIN($numObjs, $numInSet) + { + $numObjs = PHPExcel_Calculation_Functions::flattenSingleValue($numObjs); + $numInSet = PHPExcel_Calculation_Functions::flattenSingleValue($numInSet); + + if ((is_numeric($numObjs)) && (is_numeric($numInSet))) { + if ($numObjs < $numInSet) { + return PHPExcel_Calculation_Functions::NaN(); + } elseif ($numInSet < 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + return round(self::FACT($numObjs) / self::FACT($numObjs - $numInSet)) / self::FACT($numInSet); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * EVEN + * + * Returns number rounded up to the nearest even integer. + * You can use this function for processing items that come in twos. For example, + * a packing crate accepts rows of one or two items. The crate is full when + * the number of items, rounded up to the nearest two, matches the crate's + * capacity. + * + * Excel Function: + * EVEN(number) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param float $number Number to round + * @return int Rounded Number + */ + public static function EVEN($number) + { + $number = PHPExcel_Calculation_Functions::flattenSingleValue($number); + + if (is_null($number)) { + return 0; + } elseif (is_bool($number)) { + $number = (int) $number; + } + + if (is_numeric($number)) { + $significance = 2 * self::SIGN($number); + return (int) self::CEILING($number, $significance); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * FACT + * + * Returns the factorial of a number. + * The factorial of a number is equal to 1*2*3*...* number. + * + * Excel Function: + * FACT(factVal) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param float $factVal Factorial Value + * @return int Factorial + */ + public static function FACT($factVal) + { + $factVal = PHPExcel_Calculation_Functions::flattenSingleValue($factVal); + + if (is_numeric($factVal)) { + if ($factVal < 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + $factLoop = floor($factVal); + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC) { + if ($factVal > $factLoop) { + return PHPExcel_Calculation_Functions::NaN(); + } + } + + $factorial = 1; + while ($factLoop > 1) { + $factorial *= $factLoop--; + } + return $factorial ; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * FACTDOUBLE + * + * Returns the double factorial of a number. + * + * Excel Function: + * FACTDOUBLE(factVal) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param float $factVal Factorial Value + * @return int Double Factorial + */ + public static function FACTDOUBLE($factVal) + { + $factLoop = PHPExcel_Calculation_Functions::flattenSingleValue($factVal); + + if (is_numeric($factLoop)) { + $factLoop = floor($factLoop); + if ($factVal < 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + $factorial = 1; + while ($factLoop > 1) { + $factorial *= $factLoop--; + --$factLoop; + } + return $factorial ; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * FLOOR + * + * Rounds number down, toward zero, to the nearest multiple of significance. + * + * Excel Function: + * FLOOR(number[,significance]) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param float $number Number to round + * @param float $significance Significance + * @return float Rounded Number + */ + public static function FLOOR($number, $significance = null) + { + $number = PHPExcel_Calculation_Functions::flattenSingleValue($number); + $significance = PHPExcel_Calculation_Functions::flattenSingleValue($significance); + + if ((is_null($significance)) && + (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC)) { + $significance = $number/abs($number); + } + + if ((is_numeric($number)) && (is_numeric($significance))) { + if ($significance == 0.0) { + return PHPExcel_Calculation_Functions::DIV0(); + } elseif ($number == 0.0) { + return 0.0; + } elseif (self::SIGN($number) == self::SIGN($significance)) { + return floor($number / $significance) * $significance; + } else { + return PHPExcel_Calculation_Functions::NaN(); + } + } + + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * GCD + * + * Returns the greatest common divisor of a series of numbers. + * The greatest common divisor is the largest integer that divides both + * number1 and number2 without a remainder. + * + * Excel Function: + * GCD(number1[,number2[, ...]]) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param mixed $arg,... Data values + * @return integer Greatest Common Divisor + */ + public static function GCD() + { + $returnValue = 1; + $allValuesFactors = array(); + // Loop through arguments + foreach (PHPExcel_Calculation_Functions::flattenArray(func_get_args()) as $value) { + if (!is_numeric($value)) { + return PHPExcel_Calculation_Functions::VALUE(); + } elseif ($value == 0) { + continue; + } elseif ($value < 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + $myFactors = self::factors($value); + $myCountedFactors = array_count_values($myFactors); + $allValuesFactors[] = $myCountedFactors; + } + $allValuesCount = count($allValuesFactors); + if ($allValuesCount == 0) { + return 0; + } + + $mergedArray = $allValuesFactors[0]; + for ($i=1; $i < $allValuesCount; ++$i) { + $mergedArray = array_intersect_key($mergedArray, $allValuesFactors[$i]); + } + $mergedArrayValues = count($mergedArray); + if ($mergedArrayValues == 0) { + return $returnValue; + } elseif ($mergedArrayValues > 1) { + foreach ($mergedArray as $mergedKey => $mergedValue) { + foreach ($allValuesFactors as $highestPowerTest) { + foreach ($highestPowerTest as $testKey => $testValue) { + if (($testKey == $mergedKey) && ($testValue < $mergedValue)) { + $mergedArray[$mergedKey] = $testValue; + $mergedValue = $testValue; + } + } + } + } + + $returnValue = 1; + foreach ($mergedArray as $key => $value) { + $returnValue *= pow($key, $value); + } + return $returnValue; + } else { + $keys = array_keys($mergedArray); + $key = $keys[0]; + $value = $mergedArray[$key]; + foreach ($allValuesFactors as $testValue) { + foreach ($testValue as $mergedKey => $mergedValue) { + if (($mergedKey == $key) && ($mergedValue < $value)) { + $value = $mergedValue; + } + } + } + return pow($key, $value); + } + } + + + /** + * INT + * + * Casts a floating point value to an integer + * + * Excel Function: + * INT(number) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param float $number Number to cast to an integer + * @return integer Integer value + */ + public static function INT($number) + { + $number = PHPExcel_Calculation_Functions::flattenSingleValue($number); + + if (is_null($number)) { + return 0; + } elseif (is_bool($number)) { + return (int) $number; + } + if (is_numeric($number)) { + return (int) floor($number); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * LCM + * + * Returns the lowest common multiplier of a series of numbers + * The least common multiple is the smallest positive integer that is a multiple + * of all integer arguments number1, number2, and so on. Use LCM to add fractions + * with different denominators. + * + * Excel Function: + * LCM(number1[,number2[, ...]]) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param mixed $arg,... Data values + * @return int Lowest Common Multiplier + */ + public static function LCM() + { + $returnValue = 1; + $allPoweredFactors = array(); + // Loop through arguments + foreach (PHPExcel_Calculation_Functions::flattenArray(func_get_args()) as $value) { + if (!is_numeric($value)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if ($value == 0) { + return 0; + } elseif ($value < 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + $myFactors = self::factors(floor($value)); + $myCountedFactors = array_count_values($myFactors); + $myPoweredFactors = array(); + foreach ($myCountedFactors as $myCountedFactor => $myCountedPower) { + $myPoweredFactors[$myCountedFactor] = pow($myCountedFactor, $myCountedPower); + } + foreach ($myPoweredFactors as $myPoweredValue => $myPoweredFactor) { + if (array_key_exists($myPoweredValue, $allPoweredFactors)) { + if ($allPoweredFactors[$myPoweredValue] < $myPoweredFactor) { + $allPoweredFactors[$myPoweredValue] = $myPoweredFactor; + } + } else { + $allPoweredFactors[$myPoweredValue] = $myPoweredFactor; + } + } + } + foreach ($allPoweredFactors as $allPoweredFactor) { + $returnValue *= (integer) $allPoweredFactor; + } + return $returnValue; + } + + + /** + * LOG_BASE + * + * Returns the logarithm of a number to a specified base. The default base is 10. + * + * Excel Function: + * LOG(number[,base]) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param float $number The positive real number for which you want the logarithm + * @param float $base The base of the logarithm. If base is omitted, it is assumed to be 10. + * @return float + */ + public static function LOG_BASE($number = null, $base = 10) + { + $number = PHPExcel_Calculation_Functions::flattenSingleValue($number); + $base = (is_null($base)) ? 10 : (float) PHPExcel_Calculation_Functions::flattenSingleValue($base); + + if ((!is_numeric($base)) || (!is_numeric($number))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if (($base <= 0) || ($number <= 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + return log($number, $base); + } + + + /** + * MDETERM + * + * Returns the matrix determinant of an array. + * + * Excel Function: + * MDETERM(array) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param array $matrixValues A matrix of values + * @return float + */ + public static function MDETERM($matrixValues) + { + $matrixData = array(); + if (!is_array($matrixValues)) { + $matrixValues = array(array($matrixValues)); + } + + $row = $maxColumn = 0; + foreach ($matrixValues as $matrixRow) { + if (!is_array($matrixRow)) { + $matrixRow = array($matrixRow); + } + $column = 0; + foreach ($matrixRow as $matrixCell) { + if ((is_string($matrixCell)) || ($matrixCell === null)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $matrixData[$column][$row] = $matrixCell; + ++$column; + } + if ($column > $maxColumn) { + $maxColumn = $column; + } + ++$row; + } + if ($row != $maxColumn) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + try { + $matrix = new PHPExcel_Shared_JAMA_Matrix($matrixData); + return $matrix->det(); + } catch (PHPExcel_Exception $ex) { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + + + /** + * MINVERSE + * + * Returns the inverse matrix for the matrix stored in an array. + * + * Excel Function: + * MINVERSE(array) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param array $matrixValues A matrix of values + * @return array + */ + public static function MINVERSE($matrixValues) + { + $matrixData = array(); + if (!is_array($matrixValues)) { + $matrixValues = array(array($matrixValues)); + } + + $row = $maxColumn = 0; + foreach ($matrixValues as $matrixRow) { + if (!is_array($matrixRow)) { + $matrixRow = array($matrixRow); + } + $column = 0; + foreach ($matrixRow as $matrixCell) { + if ((is_string($matrixCell)) || ($matrixCell === null)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $matrixData[$column][$row] = $matrixCell; + ++$column; + } + if ($column > $maxColumn) { + $maxColumn = $column; + } + ++$row; + } + if ($row != $maxColumn) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + try { + $matrix = new PHPExcel_Shared_JAMA_Matrix($matrixData); + return $matrix->inverse()->getArray(); + } catch (PHPExcel_Exception $ex) { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + + + /** + * MMULT + * + * @param array $matrixData1 A matrix of values + * @param array $matrixData2 A matrix of values + * @return array + */ + public static function MMULT($matrixData1, $matrixData2) + { + $matrixAData = $matrixBData = array(); + if (!is_array($matrixData1)) { + $matrixData1 = array(array($matrixData1)); + } + if (!is_array($matrixData2)) { + $matrixData2 = array(array($matrixData2)); + } + + try { + $rowA = 0; + foreach ($matrixData1 as $matrixRow) { + if (!is_array($matrixRow)) { + $matrixRow = array($matrixRow); + } + $columnA = 0; + foreach ($matrixRow as $matrixCell) { + if ((!is_numeric($matrixCell)) || ($matrixCell === null)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $matrixAData[$rowA][$columnA] = $matrixCell; + ++$columnA; + } + ++$rowA; + } + $matrixA = new PHPExcel_Shared_JAMA_Matrix($matrixAData); + $rowB = 0; + foreach ($matrixData2 as $matrixRow) { + if (!is_array($matrixRow)) { + $matrixRow = array($matrixRow); + } + $columnB = 0; + foreach ($matrixRow as $matrixCell) { + if ((!is_numeric($matrixCell)) || ($matrixCell === null)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $matrixBData[$rowB][$columnB] = $matrixCell; + ++$columnB; + } + ++$rowB; + } + $matrixB = new PHPExcel_Shared_JAMA_Matrix($matrixBData); + + if ($columnA != $rowB) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + return $matrixA->times($matrixB)->getArray(); + } catch (PHPExcel_Exception $ex) { + var_dump($ex->getMessage()); + return PHPExcel_Calculation_Functions::VALUE(); + } + } + + + /** + * MOD + * + * @param int $a Dividend + * @param int $b Divisor + * @return int Remainder + */ + public static function MOD($a = 1, $b = 1) + { + $a = PHPExcel_Calculation_Functions::flattenSingleValue($a); + $b = PHPExcel_Calculation_Functions::flattenSingleValue($b); + + if ($b == 0.0) { + return PHPExcel_Calculation_Functions::DIV0(); + } elseif (($a < 0.0) && ($b > 0.0)) { + return $b - fmod(abs($a), $b); + } elseif (($a > 0.0) && ($b < 0.0)) { + return $b + fmod($a, abs($b)); + } + + return fmod($a, $b); + } + + + /** + * MROUND + * + * Rounds a number to the nearest multiple of a specified value + * + * @param float $number Number to round + * @param int $multiple Multiple to which you want to round $number + * @return float Rounded Number + */ + public static function MROUND($number, $multiple) + { + $number = PHPExcel_Calculation_Functions::flattenSingleValue($number); + $multiple = PHPExcel_Calculation_Functions::flattenSingleValue($multiple); + + if ((is_numeric($number)) && (is_numeric($multiple))) { + if ($multiple == 0) { + return 0; + } + if ((self::SIGN($number)) == (self::SIGN($multiple))) { + $multiplier = 1 / $multiple; + return round($number * $multiplier) / $multiplier; + } + return PHPExcel_Calculation_Functions::NaN(); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * MULTINOMIAL + * + * Returns the ratio of the factorial of a sum of values to the product of factorials. + * + * @param array of mixed Data Series + * @return float + */ + public static function MULTINOMIAL() + { + $summer = 0; + $divisor = 1; + // Loop through arguments + foreach (PHPExcel_Calculation_Functions::flattenArray(func_get_args()) as $arg) { + // Is it a numeric value? + if (is_numeric($arg)) { + if ($arg < 1) { + return PHPExcel_Calculation_Functions::NaN(); + } + $summer += floor($arg); + $divisor *= self::FACT($arg); + } else { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + + // Return + if ($summer > 0) { + $summer = self::FACT($summer); + return $summer / $divisor; + } + return 0; + } + + + /** + * ODD + * + * Returns number rounded up to the nearest odd integer. + * + * @param float $number Number to round + * @return int Rounded Number + */ + public static function ODD($number) + { + $number = PHPExcel_Calculation_Functions::flattenSingleValue($number); + + if (is_null($number)) { + return 1; + } elseif (is_bool($number)) { + return 1; + } elseif (is_numeric($number)) { + $significance = self::SIGN($number); + if ($significance == 0) { + return 1; + } + + $result = self::CEILING($number, $significance); + if ($result == self::EVEN($result)) { + $result += $significance; + } + + return (int) $result; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * POWER + * + * Computes x raised to the power y. + * + * @param float $x + * @param float $y + * @return float + */ + public static function POWER($x = 0, $y = 2) + { + $x = PHPExcel_Calculation_Functions::flattenSingleValue($x); + $y = PHPExcel_Calculation_Functions::flattenSingleValue($y); + + // Validate parameters + if ($x == 0.0 && $y == 0.0) { + return PHPExcel_Calculation_Functions::NaN(); + } elseif ($x == 0.0 && $y < 0.0) { + return PHPExcel_Calculation_Functions::DIV0(); + } + + // Return + $result = pow($x, $y); + return (!is_nan($result) && !is_infinite($result)) ? $result : PHPExcel_Calculation_Functions::NaN(); + } + + + /** + * PRODUCT + * + * PRODUCT returns the product of all the values and cells referenced in the argument list. + * + * Excel Function: + * PRODUCT(value1[,value2[, ...]]) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function PRODUCT() + { + // Return value + $returnValue = null; + + // Loop through arguments + foreach (PHPExcel_Calculation_Functions::flattenArray(func_get_args()) as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + if (is_null($returnValue)) { + $returnValue = $arg; + } else { + $returnValue *= $arg; + } + } + } + + // Return + if (is_null($returnValue)) { + return 0; + } + return $returnValue; + } + + + /** + * QUOTIENT + * + * QUOTIENT function returns the integer portion of a division. Numerator is the divided number + * and denominator is the divisor. + * + * Excel Function: + * QUOTIENT(value1[,value2[, ...]]) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function QUOTIENT() + { + // Return value + $returnValue = null; + + // Loop through arguments + foreach (PHPExcel_Calculation_Functions::flattenArray(func_get_args()) as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + if (is_null($returnValue)) { + $returnValue = ($arg == 0) ? 0 : $arg; + } else { + if (($returnValue == 0) || ($arg == 0)) { + $returnValue = 0; + } else { + $returnValue /= $arg; + } + } + } + } + + // Return + return intval($returnValue); + } + + + /** + * RAND + * + * @param int $min Minimal value + * @param int $max Maximal value + * @return int Random number + */ + public static function RAND($min = 0, $max = 0) + { + $min = PHPExcel_Calculation_Functions::flattenSingleValue($min); + $max = PHPExcel_Calculation_Functions::flattenSingleValue($max); + + if ($min == 0 && $max == 0) { + return (mt_rand(0, 10000000)) / 10000000; + } else { + return mt_rand($min, $max); + } + } + + + public static function ROMAN($aValue, $style = 0) + { + $aValue = PHPExcel_Calculation_Functions::flattenSingleValue($aValue); + $style = (is_null($style)) ? 0 : (integer) PHPExcel_Calculation_Functions::flattenSingleValue($style); + if ((!is_numeric($aValue)) || ($aValue < 0) || ($aValue >= 4000)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $aValue = (integer) $aValue; + if ($aValue == 0) { + return ''; + } + + $mill = array('', 'M', 'MM', 'MMM', 'MMMM', 'MMMMM'); + $cent = array('', 'C', 'CC', 'CCC', 'CD', 'D', 'DC', 'DCC', 'DCCC', 'CM'); + $tens = array('', 'X', 'XX', 'XXX', 'XL', 'L', 'LX', 'LXX', 'LXXX', 'XC'); + $ones = array('', 'I', 'II', 'III', 'IV', 'V', 'VI', 'VII', 'VIII', 'IX'); + + $roman = ''; + while ($aValue > 5999) { + $roman .= 'M'; + $aValue -= 1000; + } + $m = self::romanCut($aValue, 1000); + $aValue %= 1000; + $c = self::romanCut($aValue, 100); + $aValue %= 100; + $t = self::romanCut($aValue, 10); + $aValue %= 10; + + return $roman.$mill[$m].$cent[$c].$tens[$t].$ones[$aValue]; + } + + + /** + * ROUNDUP + * + * Rounds a number up to a specified number of decimal places + * + * @param float $number Number to round + * @param int $digits Number of digits to which you want to round $number + * @return float Rounded Number + */ + public static function ROUNDUP($number, $digits) + { + $number = PHPExcel_Calculation_Functions::flattenSingleValue($number); + $digits = PHPExcel_Calculation_Functions::flattenSingleValue($digits); + + if ((is_numeric($number)) && (is_numeric($digits))) { + $significance = pow(10, (int) $digits); + if ($number < 0.0) { + return floor($number * $significance) / $significance; + } else { + return ceil($number * $significance) / $significance; + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * ROUNDDOWN + * + * Rounds a number down to a specified number of decimal places + * + * @param float $number Number to round + * @param int $digits Number of digits to which you want to round $number + * @return float Rounded Number + */ + public static function ROUNDDOWN($number, $digits) + { + $number = PHPExcel_Calculation_Functions::flattenSingleValue($number); + $digits = PHPExcel_Calculation_Functions::flattenSingleValue($digits); + + if ((is_numeric($number)) && (is_numeric($digits))) { + $significance = pow(10, (int) $digits); + if ($number < 0.0) { + return ceil($number * $significance) / $significance; + } else { + return floor($number * $significance) / $significance; + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * SERIESSUM + * + * Returns the sum of a power series + * + * @param float $x Input value to the power series + * @param float $n Initial power to which you want to raise $x + * @param float $m Step by which to increase $n for each term in the series + * @param array of mixed Data Series + * @return float + */ + public static function SERIESSUM() + { + $returnValue = 0; + + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + + $x = array_shift($aArgs); + $n = array_shift($aArgs); + $m = array_shift($aArgs); + + if ((is_numeric($x)) && (is_numeric($n)) && (is_numeric($m))) { + // Calculate + $i = 0; + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $returnValue += $arg * pow($x, $n + ($m * $i++)); + } else { + return PHPExcel_Calculation_Functions::VALUE(); + } + } + return $returnValue; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * SIGN + * + * Determines the sign of a number. Returns 1 if the number is positive, zero (0) + * if the number is 0, and -1 if the number is negative. + * + * @param float $number Number to round + * @return int sign value + */ + public static function SIGN($number) + { + $number = PHPExcel_Calculation_Functions::flattenSingleValue($number); + + if (is_bool($number)) { + return (int) $number; + } + if (is_numeric($number)) { + if ($number == 0.0) { + return 0; + } + return $number / abs($number); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * SQRTPI + * + * Returns the square root of (number * pi). + * + * @param float $number Number + * @return float Square Root of Number * Pi + */ + public static function SQRTPI($number) + { + $number = PHPExcel_Calculation_Functions::flattenSingleValue($number); + + if (is_numeric($number)) { + if ($number < 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + return sqrt($number * M_PI) ; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * SUBTOTAL + * + * Returns a subtotal in a list or database. + * + * @param int the number 1 to 11 that specifies which function to + * use in calculating subtotals within a list. + * @param array of mixed Data Series + * @return float + */ + public static function SUBTOTAL() + { + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + + // Calculate + $subtotal = array_shift($aArgs); + + if ((is_numeric($subtotal)) && (!is_string($subtotal))) { + switch ($subtotal) { + case 1: + return PHPExcel_Calculation_Statistical::AVERAGE($aArgs); + case 2: + return PHPExcel_Calculation_Statistical::COUNT($aArgs); + case 3: + return PHPExcel_Calculation_Statistical::COUNTA($aArgs); + case 4: + return PHPExcel_Calculation_Statistical::MAX($aArgs); + case 5: + return PHPExcel_Calculation_Statistical::MIN($aArgs); + case 6: + return self::PRODUCT($aArgs); + case 7: + return PHPExcel_Calculation_Statistical::STDEV($aArgs); + case 8: + return PHPExcel_Calculation_Statistical::STDEVP($aArgs); + case 9: + return self::SUM($aArgs); + case 10: + return PHPExcel_Calculation_Statistical::VARFunc($aArgs); + case 11: + return PHPExcel_Calculation_Statistical::VARP($aArgs); + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * SUM + * + * SUM computes the sum of all the values and cells referenced in the argument list. + * + * Excel Function: + * SUM(value1[,value2[, ...]]) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function SUM() + { + $returnValue = 0; + + // Loop through the arguments + foreach (PHPExcel_Calculation_Functions::flattenArray(func_get_args()) as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $returnValue += $arg; + } + } + + return $returnValue; + } + + + /** + * SUMIF + * + * Counts the number of cells that contain numbers within the list of arguments + * + * Excel Function: + * SUMIF(value1[,value2[, ...]],condition) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param mixed $arg,... Data values + * @param string $condition The criteria that defines which cells will be summed. + * @return float + */ + public static function SUMIF($aArgs, $condition, $sumArgs = array()) + { + $returnValue = 0; + + $aArgs = PHPExcel_Calculation_Functions::flattenArray($aArgs); + $sumArgs = PHPExcel_Calculation_Functions::flattenArray($sumArgs); + if (empty($sumArgs)) { + $sumArgs = $aArgs; + } + $condition = PHPExcel_Calculation_Functions::ifCondition($condition); + // Loop through arguments + foreach ($aArgs as $key => $arg) { + if (!is_numeric($arg)) { + $arg = str_replace('"', '""', $arg); + $arg = PHPExcel_Calculation::wrapResult(strtoupper($arg)); + } + + $testCondition = '='.$arg.$condition; + if (PHPExcel_Calculation::getInstance()->_calculateFormulaValue($testCondition)) { + // Is it a value within our criteria + $returnValue += $sumArgs[$key]; + } + } + + return $returnValue; + } + + + /** + * SUMIFS + * + * Counts the number of cells that contain numbers within the list of arguments + * + * Excel Function: + * SUMIFS(value1[,value2[, ...]],condition) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param mixed $arg,... Data values + * @param string $condition The criteria that defines which cells will be summed. + * @return float + */ + public static function SUMIFS() { + $arrayList = func_get_args(); + + $sumArgs = PHPExcel_Calculation_Functions::flattenArray(array_shift($arrayList)); + + while (count($arrayList) > 0) { + $aArgsArray[] = PHPExcel_Calculation_Functions::flattenArray(array_shift($arrayList)); + $conditions[] = PHPExcel_Calculation_Functions::ifCondition(array_shift($arrayList)); + } + + // Loop through each set of arguments and conditions + foreach ($conditions as $index => $condition) { + $aArgs = $aArgsArray[$index]; + $wildcard = false; + if ((strpos($condition, '*') !== false) || (strpos($condition, '?') !== false)) { + // * and ? are wildcard characters. + // Use ~* and ~? for literal star and question mark + // Code logic doesn't yet handle escaping + $condition = trim(ltrim($condition, '=<>'), '"'); + $wildcard = true; + } + // Loop through arguments + foreach ($aArgs as $key => $arg) { + if ($wildcard) { + if (!fnmatch($condition, $arg, FNM_CASEFOLD)) { + // Is it a value within our criteria + $sumArgs[$key] = 0.0; + } + } else { + if (!is_numeric($arg)) { + $arg = PHPExcel_Calculation::wrapResult(strtoupper($arg)); + } + $testCondition = '='.$arg.$condition; + if (!PHPExcel_Calculation::getInstance()->_calculateFormulaValue($testCondition)) { + // Is it a value within our criteria + $sumArgs[$key] = 0.0; + } + } + } + } + + // Return + return array_sum($sumArgs); + } + + + /** + * SUMPRODUCT + * + * Excel Function: + * SUMPRODUCT(value1[,value2[, ...]]) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function SUMPRODUCT() + { + $arrayList = func_get_args(); + + $wrkArray = PHPExcel_Calculation_Functions::flattenArray(array_shift($arrayList)); + $wrkCellCount = count($wrkArray); + + for ($i=0; $i< $wrkCellCount; ++$i) { + if ((!is_numeric($wrkArray[$i])) || (is_string($wrkArray[$i]))) { + $wrkArray[$i] = 0; + } + } + + foreach ($arrayList as $matrixData) { + $array2 = PHPExcel_Calculation_Functions::flattenArray($matrixData); + $count = count($array2); + if ($wrkCellCount != $count) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + foreach ($array2 as $i => $val) { + if ((!is_numeric($val)) || (is_string($val))) { + $val = 0; + } + $wrkArray[$i] *= $val; + } + } + + return array_sum($wrkArray); + } + + + /** + * SUMSQ + * + * SUMSQ returns the sum of the squares of the arguments + * + * Excel Function: + * SUMSQ(value1[,value2[, ...]]) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function SUMSQ() + { + $returnValue = 0; + + // Loop through arguments + foreach (PHPExcel_Calculation_Functions::flattenArray(func_get_args()) as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $returnValue += ($arg * $arg); + } + } + + return $returnValue; + } + + + /** + * SUMX2MY2 + * + * @param mixed[] $matrixData1 Matrix #1 + * @param mixed[] $matrixData2 Matrix #2 + * @return float + */ + public static function SUMX2MY2($matrixData1, $matrixData2) + { + $array1 = PHPExcel_Calculation_Functions::flattenArray($matrixData1); + $array2 = PHPExcel_Calculation_Functions::flattenArray($matrixData2); + $count = min(count($array1), count($array2)); + + $result = 0; + for ($i = 0; $i < $count; ++$i) { + if (((is_numeric($array1[$i])) && (!is_string($array1[$i]))) && + ((is_numeric($array2[$i])) && (!is_string($array2[$i])))) { + $result += ($array1[$i] * $array1[$i]) - ($array2[$i] * $array2[$i]); + } + } + + return $result; + } + + + /** + * SUMX2PY2 + * + * @param mixed[] $matrixData1 Matrix #1 + * @param mixed[] $matrixData2 Matrix #2 + * @return float + */ + public static function SUMX2PY2($matrixData1, $matrixData2) + { + $array1 = PHPExcel_Calculation_Functions::flattenArray($matrixData1); + $array2 = PHPExcel_Calculation_Functions::flattenArray($matrixData2); + $count = min(count($array1), count($array2)); + + $result = 0; + for ($i = 0; $i < $count; ++$i) { + if (((is_numeric($array1[$i])) && (!is_string($array1[$i]))) && + ((is_numeric($array2[$i])) && (!is_string($array2[$i])))) { + $result += ($array1[$i] * $array1[$i]) + ($array2[$i] * $array2[$i]); + } + } + + return $result; + } + + + /** + * SUMXMY2 + * + * @param mixed[] $matrixData1 Matrix #1 + * @param mixed[] $matrixData2 Matrix #2 + * @return float + */ + public static function SUMXMY2($matrixData1, $matrixData2) + { + $array1 = PHPExcel_Calculation_Functions::flattenArray($matrixData1); + $array2 = PHPExcel_Calculation_Functions::flattenArray($matrixData2); + $count = min(count($array1), count($array2)); + + $result = 0; + for ($i = 0; $i < $count; ++$i) { + if (((is_numeric($array1[$i])) && (!is_string($array1[$i]))) && + ((is_numeric($array2[$i])) && (!is_string($array2[$i])))) { + $result += ($array1[$i] - $array2[$i]) * ($array1[$i] - $array2[$i]); + } + } + + return $result; + } + + + /** + * TRUNC + * + * Truncates value to the number of fractional digits by number_digits. + * + * @param float $value + * @param int $digits + * @return float Truncated value + */ + public static function TRUNC($value = 0, $digits = 0) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $digits = PHPExcel_Calculation_Functions::flattenSingleValue($digits); + + // Validate parameters + if ((!is_numeric($value)) || (!is_numeric($digits))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $digits = floor($digits); + + // Truncate + $adjust = pow(10, $digits); + + if (($digits > 0) && (rtrim(intval((abs($value) - abs(intval($value))) * $adjust), '0') < $adjust/10)) { + return $value; + } + + return (intval($value * $adjust)) / $adjust; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php new file mode 100644 index 0000000..1a33610 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php @@ -0,0 +1,3745 @@ + $value) { + if ((is_bool($value)) || (is_string($value)) || (is_null($value))) { + unset($array1[$key]); + unset($array2[$key]); + } + } + foreach ($array2 as $key => $value) { + if ((is_bool($value)) || (is_string($value)) || (is_null($value))) { + unset($array1[$key]); + unset($array2[$key]); + } + } + $array1 = array_merge($array1); + $array2 = array_merge($array2); + + return true; + } + + + /** + * Beta function. + * + * @author Jaco van Kooten + * + * @param p require p>0 + * @param q require q>0 + * @return 0 if p<=0, q<=0 or p+q>2.55E305 to avoid errors and over/underflow + */ + private static function beta($p, $q) + { + if ($p <= 0.0 || $q <= 0.0 || ($p + $q) > LOG_GAMMA_X_MAX_VALUE) { + return 0.0; + } else { + return exp(self::logBeta($p, $q)); + } + } + + + /** + * Incomplete beta function + * + * @author Jaco van Kooten + * @author Paul Meagher + * + * The computation is based on formulas from Numerical Recipes, Chapter 6.4 (W.H. Press et al, 1992). + * @param x require 0<=x<=1 + * @param p require p>0 + * @param q require q>0 + * @return 0 if x<0, p<=0, q<=0 or p+q>2.55E305 and 1 if x>1 to avoid errors and over/underflow + */ + private static function incompleteBeta($x, $p, $q) + { + if ($x <= 0.0) { + return 0.0; + } elseif ($x >= 1.0) { + return 1.0; + } elseif (($p <= 0.0) || ($q <= 0.0) || (($p + $q) > LOG_GAMMA_X_MAX_VALUE)) { + return 0.0; + } + $beta_gam = exp((0 - self::logBeta($p, $q)) + $p * log($x) + $q * log(1.0 - $x)); + if ($x < ($p + 1.0) / ($p + $q + 2.0)) { + return $beta_gam * self::betaFraction($x, $p, $q) / $p; + } else { + return 1.0 - ($beta_gam * self::betaFraction(1 - $x, $q, $p) / $q); + } + } + + + // Function cache for logBeta function + private static $logBetaCacheP = 0.0; + private static $logBetaCacheQ = 0.0; + private static $logBetaCacheResult = 0.0; + + /** + * The natural logarithm of the beta function. + * + * @param p require p>0 + * @param q require q>0 + * @return 0 if p<=0, q<=0 or p+q>2.55E305 to avoid errors and over/underflow + * @author Jaco van Kooten + */ + private static function logBeta($p, $q) + { + if ($p != self::$logBetaCacheP || $q != self::$logBetaCacheQ) { + self::$logBetaCacheP = $p; + self::$logBetaCacheQ = $q; + if (($p <= 0.0) || ($q <= 0.0) || (($p + $q) > LOG_GAMMA_X_MAX_VALUE)) { + self::$logBetaCacheResult = 0.0; + } else { + self::$logBetaCacheResult = self::logGamma($p) + self::logGamma($q) - self::logGamma($p + $q); + } + } + return self::$logBetaCacheResult; + } + + + /** + * Evaluates of continued fraction part of incomplete beta function. + * Based on an idea from Numerical Recipes (W.H. Press et al, 1992). + * @author Jaco van Kooten + */ + private static function betaFraction($x, $p, $q) + { + $c = 1.0; + $sum_pq = $p + $q; + $p_plus = $p + 1.0; + $p_minus = $p - 1.0; + $h = 1.0 - $sum_pq * $x / $p_plus; + if (abs($h) < XMININ) { + $h = XMININ; + } + $h = 1.0 / $h; + $frac = $h; + $m = 1; + $delta = 0.0; + while ($m <= MAX_ITERATIONS && abs($delta-1.0) > PRECISION) { + $m2 = 2 * $m; + // even index for d + $d = $m * ($q - $m) * $x / ( ($p_minus + $m2) * ($p + $m2)); + $h = 1.0 + $d * $h; + if (abs($h) < XMININ) { + $h = XMININ; + } + $h = 1.0 / $h; + $c = 1.0 + $d / $c; + if (abs($c) < XMININ) { + $c = XMININ; + } + $frac *= $h * $c; + // odd index for d + $d = -($p + $m) * ($sum_pq + $m) * $x / (($p + $m2) * ($p_plus + $m2)); + $h = 1.0 + $d * $h; + if (abs($h) < XMININ) { + $h = XMININ; + } + $h = 1.0 / $h; + $c = 1.0 + $d / $c; + if (abs($c) < XMININ) { + $c = XMININ; + } + $delta = $h * $c; + $frac *= $delta; + ++$m; + } + return $frac; + } + + + /** + * logGamma function + * + * @version 1.1 + * @author Jaco van Kooten + * + * Original author was Jaco van Kooten. Ported to PHP by Paul Meagher. + * + * The natural logarithm of the gamma function.
+ * Based on public domain NETLIB (Fortran) code by W. J. Cody and L. Stoltz
+ * Applied Mathematics Division
+ * Argonne National Laboratory
+ * Argonne, IL 60439
+ *

+ * References: + *

    + *
  1. W. J. Cody and K. E. Hillstrom, 'Chebyshev Approximations for the Natural + * Logarithm of the Gamma Function,' Math. Comp. 21, 1967, pp. 198-203.
  2. + *
  3. K. E. Hillstrom, ANL/AMD Program ANLC366S, DGAMMA/DLGAMA, May, 1969.
  4. + *
  5. Hart, Et. Al., Computer Approximations, Wiley and sons, New York, 1968.
  6. + *
+ *

+ *

+ * From the original documentation: + *

+ *

+ * This routine calculates the LOG(GAMMA) function for a positive real argument X. + * Computation is based on an algorithm outlined in references 1 and 2. + * The program uses rational functions that theoretically approximate LOG(GAMMA) + * to at least 18 significant decimal digits. The approximation for X > 12 is from + * reference 3, while approximations for X < 12.0 are similar to those in reference + * 1, but are unpublished. The accuracy achieved depends on the arithmetic system, + * the compiler, the intrinsic functions, and proper selection of the + * machine-dependent constants. + *

+ *

+ * Error returns:
+ * The program returns the value XINF for X .LE. 0.0 or when overflow would occur. + * The computation is believed to be free of underflow and overflow. + *

+ * @return MAX_VALUE for x < 0.0 or when overflow would occur, i.e. x > 2.55E305 + */ + + // Function cache for logGamma + private static $logGammaCacheResult = 0.0; + private static $logGammaCacheX = 0.0; + + private static function logGamma($x) + { + // Log Gamma related constants + static $lg_d1 = -0.5772156649015328605195174; + static $lg_d2 = 0.4227843350984671393993777; + static $lg_d4 = 1.791759469228055000094023; + + static $lg_p1 = array( + 4.945235359296727046734888, + 201.8112620856775083915565, + 2290.838373831346393026739, + 11319.67205903380828685045, + 28557.24635671635335736389, + 38484.96228443793359990269, + 26377.48787624195437963534, + 7225.813979700288197698961 + ); + static $lg_p2 = array( + 4.974607845568932035012064, + 542.4138599891070494101986, + 15506.93864978364947665077, + 184793.2904445632425417223, + 1088204.76946882876749847, + 3338152.967987029735917223, + 5106661.678927352456275255, + 3074109.054850539556250927 + ); + static $lg_p4 = array( + 14745.02166059939948905062, + 2426813.369486704502836312, + 121475557.4045093227939592, + 2663432449.630976949898078, + 29403789566.34553899906876, + 170266573776.5398868392998, + 492612579337.743088758812, + 560625185622.3951465078242 + ); + static $lg_q1 = array( + 67.48212550303777196073036, + 1113.332393857199323513008, + 7738.757056935398733233834, + 27639.87074403340708898585, + 54993.10206226157329794414, + 61611.22180066002127833352, + 36351.27591501940507276287, + 8785.536302431013170870835 + ); + static $lg_q2 = array( + 183.0328399370592604055942, + 7765.049321445005871323047, + 133190.3827966074194402448, + 1136705.821321969608938755, + 5267964.117437946917577538, + 13467014.54311101692290052, + 17827365.30353274213975932, + 9533095.591844353613395747 + ); + static $lg_q4 = array( + 2690.530175870899333379843, + 639388.5654300092398984238, + 41355999.30241388052042842, + 1120872109.61614794137657, + 14886137286.78813811542398, + 101680358627.2438228077304, + 341747634550.7377132798597, + 446315818741.9713286462081 + ); + static $lg_c = array( + -0.001910444077728, + 8.4171387781295e-4, + -5.952379913043012e-4, + 7.93650793500350248e-4, + -0.002777777777777681622553, + 0.08333333333333333331554247, + 0.0057083835261 + ); + + // Rough estimate of the fourth root of logGamma_xBig + static $lg_frtbig = 2.25e76; + static $pnt68 = 0.6796875; + + + if ($x == self::$logGammaCacheX) { + return self::$logGammaCacheResult; + } + $y = $x; + if ($y > 0.0 && $y <= LOG_GAMMA_X_MAX_VALUE) { + if ($y <= EPS) { + $res = -log(y); + } elseif ($y <= 1.5) { + // --------------------- + // EPS .LT. X .LE. 1.5 + // --------------------- + if ($y < $pnt68) { + $corr = -log($y); + $xm1 = $y; + } else { + $corr = 0.0; + $xm1 = $y - 1.0; + } + if ($y <= 0.5 || $y >= $pnt68) { + $xden = 1.0; + $xnum = 0.0; + for ($i = 0; $i < 8; ++$i) { + $xnum = $xnum * $xm1 + $lg_p1[$i]; + $xden = $xden * $xm1 + $lg_q1[$i]; + } + $res = $corr + $xm1 * ($lg_d1 + $xm1 * ($xnum / $xden)); + } else { + $xm2 = $y - 1.0; + $xden = 1.0; + $xnum = 0.0; + for ($i = 0; $i < 8; ++$i) { + $xnum = $xnum * $xm2 + $lg_p2[$i]; + $xden = $xden * $xm2 + $lg_q2[$i]; + } + $res = $corr + $xm2 * ($lg_d2 + $xm2 * ($xnum / $xden)); + } + } elseif ($y <= 4.0) { + // --------------------- + // 1.5 .LT. X .LE. 4.0 + // --------------------- + $xm2 = $y - 2.0; + $xden = 1.0; + $xnum = 0.0; + for ($i = 0; $i < 8; ++$i) { + $xnum = $xnum * $xm2 + $lg_p2[$i]; + $xden = $xden * $xm2 + $lg_q2[$i]; + } + $res = $xm2 * ($lg_d2 + $xm2 * ($xnum / $xden)); + } elseif ($y <= 12.0) { + // ---------------------- + // 4.0 .LT. X .LE. 12.0 + // ---------------------- + $xm4 = $y - 4.0; + $xden = -1.0; + $xnum = 0.0; + for ($i = 0; $i < 8; ++$i) { + $xnum = $xnum * $xm4 + $lg_p4[$i]; + $xden = $xden * $xm4 + $lg_q4[$i]; + } + $res = $lg_d4 + $xm4 * ($xnum / $xden); + } else { + // --------------------------------- + // Evaluate for argument .GE. 12.0 + // --------------------------------- + $res = 0.0; + if ($y <= $lg_frtbig) { + $res = $lg_c[6]; + $ysq = $y * $y; + for ($i = 0; $i < 6; ++$i) { + $res = $res / $ysq + $lg_c[$i]; + } + $res /= $y; + $corr = log($y); + $res = $res + log(SQRT2PI) - 0.5 * $corr; + $res += $y * ($corr - 1.0); + } + } + } else { + // -------------------------- + // Return for bad arguments + // -------------------------- + $res = MAX_VALUE; + } + // ------------------------------ + // Final adjustments and return + // ------------------------------ + self::$logGammaCacheX = $x; + self::$logGammaCacheResult = $res; + return $res; + } + + + // + // Private implementation of the incomplete Gamma function + // + private static function incompleteGamma($a, $x) + { + static $max = 32; + $summer = 0; + for ($n=0; $n<=$max; ++$n) { + $divisor = $a; + for ($i=1; $i<=$n; ++$i) { + $divisor *= ($a + $i); + } + $summer += (pow($x, $n) / $divisor); + } + return pow($x, $a) * exp(0-$x) * $summer; + } + + + // + // Private implementation of the Gamma function + // + private static function gamma($data) + { + if ($data == 0.0) { + return 0; + } + + static $p0 = 1.000000000190015; + static $p = array( + 1 => 76.18009172947146, + 2 => -86.50532032941677, + 3 => 24.01409824083091, + 4 => -1.231739572450155, + 5 => 1.208650973866179e-3, + 6 => -5.395239384953e-6 + ); + + $y = $x = $data; + $tmp = $x + 5.5; + $tmp -= ($x + 0.5) * log($tmp); + + $summer = $p0; + for ($j=1; $j<=6; ++$j) { + $summer += ($p[$j] / ++$y); + } + return exp(0 - $tmp + log(SQRT2PI * $summer / $x)); + } + + + /*************************************************************************** + * inverse_ncdf.php + * ------------------- + * begin : Friday, January 16, 2004 + * copyright : (C) 2004 Michael Nickerson + * email : nickersonm@yahoo.com + * + ***************************************************************************/ + private static function inverseNcdf($p) + { + // Inverse ncdf approximation by Peter J. Acklam, implementation adapted to + // PHP by Michael Nickerson, using Dr. Thomas Ziegler's C implementation as + // a guide. http://home.online.no/~pjacklam/notes/invnorm/index.html + // I have not checked the accuracy of this implementation. Be aware that PHP + // will truncate the coeficcients to 14 digits. + + // You have permission to use and distribute this function freely for + // whatever purpose you want, but please show common courtesy and give credit + // where credit is due. + + // Input paramater is $p - probability - where 0 < p < 1. + + // Coefficients in rational approximations + static $a = array( + 1 => -3.969683028665376e+01, + 2 => 2.209460984245205e+02, + 3 => -2.759285104469687e+02, + 4 => 1.383577518672690e+02, + 5 => -3.066479806614716e+01, + 6 => 2.506628277459239e+00 + ); + + static $b = array( + 1 => -5.447609879822406e+01, + 2 => 1.615858368580409e+02, + 3 => -1.556989798598866e+02, + 4 => 6.680131188771972e+01, + 5 => -1.328068155288572e+01 + ); + + static $c = array( + 1 => -7.784894002430293e-03, + 2 => -3.223964580411365e-01, + 3 => -2.400758277161838e+00, + 4 => -2.549732539343734e+00, + 5 => 4.374664141464968e+00, + 6 => 2.938163982698783e+00 + ); + + static $d = array( + 1 => 7.784695709041462e-03, + 2 => 3.224671290700398e-01, + 3 => 2.445134137142996e+00, + 4 => 3.754408661907416e+00 + ); + + // Define lower and upper region break-points. + $p_low = 0.02425; //Use lower region approx. below this + $p_high = 1 - $p_low; //Use upper region approx. above this + + if (0 < $p && $p < $p_low) { + // Rational approximation for lower region. + $q = sqrt(-2 * log($p)); + return ((((($c[1] * $q + $c[2]) * $q + $c[3]) * $q + $c[4]) * $q + $c[5]) * $q + $c[6]) / + (((($d[1] * $q + $d[2]) * $q + $d[3]) * $q + $d[4]) * $q + 1); + } elseif ($p_low <= $p && $p <= $p_high) { + // Rational approximation for central region. + $q = $p - 0.5; + $r = $q * $q; + return ((((($a[1] * $r + $a[2]) * $r + $a[3]) * $r + $a[4]) * $r + $a[5]) * $r + $a[6]) * $q / + ((((($b[1] * $r + $b[2]) * $r + $b[3]) * $r + $b[4]) * $r + $b[5]) * $r + 1); + } elseif ($p_high < $p && $p < 1) { + // Rational approximation for upper region. + $q = sqrt(-2 * log(1 - $p)); + return -((((($c[1] * $q + $c[2]) * $q + $c[3]) * $q + $c[4]) * $q + $c[5]) * $q + $c[6]) / + (((($d[1] * $q + $d[2]) * $q + $d[3]) * $q + $d[4]) * $q + 1); + } + // If 0 < p < 1, return a null value + return PHPExcel_Calculation_Functions::NULL(); + } + + + private static function inverseNcdf2($prob) + { + // Approximation of inverse standard normal CDF developed by + // B. Moro, "The Full Monte," Risk 8(2), Feb 1995, 57-58. + + $a1 = 2.50662823884; + $a2 = -18.61500062529; + $a3 = 41.39119773534; + $a4 = -25.44106049637; + + $b1 = -8.4735109309; + $b2 = 23.08336743743; + $b3 = -21.06224101826; + $b4 = 3.13082909833; + + $c1 = 0.337475482272615; + $c2 = 0.976169019091719; + $c3 = 0.160797971491821; + $c4 = 2.76438810333863E-02; + $c5 = 3.8405729373609E-03; + $c6 = 3.951896511919E-04; + $c7 = 3.21767881768E-05; + $c8 = 2.888167364E-07; + $c9 = 3.960315187E-07; + + $y = $prob - 0.5; + if (abs($y) < 0.42) { + $z = ($y * $y); + $z = $y * ((($a4 * $z + $a3) * $z + $a2) * $z + $a1) / (((($b4 * $z + $b3) * $z + $b2) * $z + $b1) * $z + 1); + } else { + if ($y > 0) { + $z = log(-log(1 - $prob)); + } else { + $z = log(-log($prob)); + } + $z = $c1 + $z * ($c2 + $z * ($c3 + $z * ($c4 + $z * ($c5 + $z * ($c6 + $z * ($c7 + $z * ($c8 + $z * $c9))))))); + if ($y < 0) { + $z = -$z; + } + } + return $z; + } // function inverseNcdf2() + + + private static function inverseNcdf3($p) + { + // ALGORITHM AS241 APPL. STATIST. (1988) VOL. 37, NO. 3. + // Produces the normal deviate Z corresponding to a given lower + // tail area of P; Z is accurate to about 1 part in 10**16. + // + // This is a PHP version of the original FORTRAN code that can + // be found at http://lib.stat.cmu.edu/apstat/ + $split1 = 0.425; + $split2 = 5; + $const1 = 0.180625; + $const2 = 1.6; + + // coefficients for p close to 0.5 + $a0 = 3.3871328727963666080; + $a1 = 1.3314166789178437745E+2; + $a2 = 1.9715909503065514427E+3; + $a3 = 1.3731693765509461125E+4; + $a4 = 4.5921953931549871457E+4; + $a5 = 6.7265770927008700853E+4; + $a6 = 3.3430575583588128105E+4; + $a7 = 2.5090809287301226727E+3; + + $b1 = 4.2313330701600911252E+1; + $b2 = 6.8718700749205790830E+2; + $b3 = 5.3941960214247511077E+3; + $b4 = 2.1213794301586595867E+4; + $b5 = 3.9307895800092710610E+4; + $b6 = 2.8729085735721942674E+4; + $b7 = 5.2264952788528545610E+3; + + // coefficients for p not close to 0, 0.5 or 1. + $c0 = 1.42343711074968357734; + $c1 = 4.63033784615654529590; + $c2 = 5.76949722146069140550; + $c3 = 3.64784832476320460504; + $c4 = 1.27045825245236838258; + $c5 = 2.41780725177450611770E-1; + $c6 = 2.27238449892691845833E-2; + $c7 = 7.74545014278341407640E-4; + + $d1 = 2.05319162663775882187; + $d2 = 1.67638483018380384940; + $d3 = 6.89767334985100004550E-1; + $d4 = 1.48103976427480074590E-1; + $d5 = 1.51986665636164571966E-2; + $d6 = 5.47593808499534494600E-4; + $d7 = 1.05075007164441684324E-9; + + // coefficients for p near 0 or 1. + $e0 = 6.65790464350110377720; + $e1 = 5.46378491116411436990; + $e2 = 1.78482653991729133580; + $e3 = 2.96560571828504891230E-1; + $e4 = 2.65321895265761230930E-2; + $e5 = 1.24266094738807843860E-3; + $e6 = 2.71155556874348757815E-5; + $e7 = 2.01033439929228813265E-7; + + $f1 = 5.99832206555887937690E-1; + $f2 = 1.36929880922735805310E-1; + $f3 = 1.48753612908506148525E-2; + $f4 = 7.86869131145613259100E-4; + $f5 = 1.84631831751005468180E-5; + $f6 = 1.42151175831644588870E-7; + $f7 = 2.04426310338993978564E-15; + + $q = $p - 0.5; + + // computation for p close to 0.5 + if (abs($q) <= split1) { + $R = $const1 - $q * $q; + $z = $q * ((((((($a7 * $R + $a6) * $R + $a5) * $R + $a4) * $R + $a3) * $R + $a2) * $R + $a1) * $R + $a0) / + ((((((($b7 * $R + $b6) * $R + $b5) * $R + $b4) * $R + $b3) * $R + $b2) * $R + $b1) * $R + 1); + } else { + if ($q < 0) { + $R = $p; + } else { + $R = 1 - $p; + } + $R = pow(-log($R), 2); + + // computation for p not close to 0, 0.5 or 1. + if ($R <= $split2) { + $R = $R - $const2; + $z = ((((((($c7 * $R + $c6) * $R + $c5) * $R + $c4) * $R + $c3) * $R + $c2) * $R + $c1) * $R + $c0) / + ((((((($d7 * $R + $d6) * $R + $d5) * $R + $d4) * $R + $d3) * $R + $d2) * $R + $d1) * $R + 1); + } else { + // computation for p near 0 or 1. + $R = $R - $split2; + $z = ((((((($e7 * $R + $e6) * $R + $e5) * $R + $e4) * $R + $e3) * $R + $e2) * $R + $e1) * $R + $e0) / + ((((((($f7 * $R + $f6) * $R + $f5) * $R + $f4) * $R + $f3) * $R + $f2) * $R + $f1) * $R + 1); + } + if ($q < 0) { + $z = -$z; + } + } + return $z; + } + + + /** + * AVEDEV + * + * Returns the average of the absolute deviations of data points from their mean. + * AVEDEV is a measure of the variability in a data set. + * + * Excel Function: + * AVEDEV(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function AVEDEV() + { + $aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args()); + + // Return value + $returnValue = null; + + $aMean = self::AVERAGE($aArgs); + if ($aMean != PHPExcel_Calculation_Functions::DIV0()) { + $aCount = 0; + foreach ($aArgs as $k => $arg) { + if ((is_bool($arg)) && + ((!PHPExcel_Calculation_Functions::isCellValue($k)) || (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE))) { + $arg = (integer) $arg; + } + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + if (is_null($returnValue)) { + $returnValue = abs($arg - $aMean); + } else { + $returnValue += abs($arg - $aMean); + } + ++$aCount; + } + } + + // Return + if ($aCount == 0) { + return PHPExcel_Calculation_Functions::DIV0(); + } + return $returnValue / $aCount; + } + return PHPExcel_Calculation_Functions::NaN(); + } + + + /** + * AVERAGE + * + * Returns the average (arithmetic mean) of the arguments + * + * Excel Function: + * AVERAGE(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function AVERAGE() + { + $returnValue = $aCount = 0; + + // Loop through arguments + foreach (PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args()) as $k => $arg) { + if ((is_bool($arg)) && + ((!PHPExcel_Calculation_Functions::isCellValue($k)) || (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE))) { + $arg = (integer) $arg; + } + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + if (is_null($returnValue)) { + $returnValue = $arg; + } else { + $returnValue += $arg; + } + ++$aCount; + } + } + + // Return + if ($aCount > 0) { + return $returnValue / $aCount; + } else { + return PHPExcel_Calculation_Functions::DIV0(); + } + } + + + /** + * AVERAGEA + * + * Returns the average of its arguments, including numbers, text, and logical values + * + * Excel Function: + * AVERAGEA(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function AVERAGEA() + { + $returnValue = null; + + $aCount = 0; + // Loop through arguments + foreach (PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args()) as $k => $arg) { + if ((is_bool($arg)) && + (!PHPExcel_Calculation_Functions::isMatrixValue($k))) { + } else { + if ((is_numeric($arg)) || (is_bool($arg)) || ((is_string($arg) && ($arg != '')))) { + if (is_bool($arg)) { + $arg = (integer) $arg; + } elseif (is_string($arg)) { + $arg = 0; + } + if (is_null($returnValue)) { + $returnValue = $arg; + } else { + $returnValue += $arg; + } + ++$aCount; + } + } + } + + if ($aCount > 0) { + return $returnValue / $aCount; + } else { + return PHPExcel_Calculation_Functions::DIV0(); + } + } + + + /** + * AVERAGEIF + * + * Returns the average value from a range of cells that contain numbers within the list of arguments + * + * Excel Function: + * AVERAGEIF(value1[,value2[, ...]],condition) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param mixed $arg,... Data values + * @param string $condition The criteria that defines which cells will be checked. + * @param mixed[] $averageArgs Data values + * @return float + */ + public static function AVERAGEIF($aArgs, $condition, $averageArgs = array()) + { + $returnValue = 0; + + $aArgs = PHPExcel_Calculation_Functions::flattenArray($aArgs); + $averageArgs = PHPExcel_Calculation_Functions::flattenArray($averageArgs); + if (empty($averageArgs)) { + $averageArgs = $aArgs; + } + $condition = PHPExcel_Calculation_Functions::ifCondition($condition); + // Loop through arguments + $aCount = 0; + foreach ($aArgs as $key => $arg) { + if (!is_numeric($arg)) { + $arg = PHPExcel_Calculation::wrapResult(strtoupper($arg)); + } + $testCondition = '='.$arg.$condition; + if (PHPExcel_Calculation::getInstance()->_calculateFormulaValue($testCondition)) { + if ((is_null($returnValue)) || ($arg > $returnValue)) { + $returnValue += $arg; + ++$aCount; + } + } + } + + if ($aCount > 0) { + return $returnValue / $aCount; + } + return PHPExcel_Calculation_Functions::DIV0(); + } + + + /** + * BETADIST + * + * Returns the beta distribution. + * + * @param float $value Value at which you want to evaluate the distribution + * @param float $alpha Parameter to the distribution + * @param float $beta Parameter to the distribution + * @param boolean $cumulative + * @return float + * + */ + public static function BETADIST($value, $alpha, $beta, $rMin = 0, $rMax = 1) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $alpha = PHPExcel_Calculation_Functions::flattenSingleValue($alpha); + $beta = PHPExcel_Calculation_Functions::flattenSingleValue($beta); + $rMin = PHPExcel_Calculation_Functions::flattenSingleValue($rMin); + $rMax = PHPExcel_Calculation_Functions::flattenSingleValue($rMax); + + if ((is_numeric($value)) && (is_numeric($alpha)) && (is_numeric($beta)) && (is_numeric($rMin)) && (is_numeric($rMax))) { + if (($value < $rMin) || ($value > $rMax) || ($alpha <= 0) || ($beta <= 0) || ($rMin == $rMax)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ($rMin > $rMax) { + $tmp = $rMin; + $rMin = $rMax; + $rMax = $tmp; + } + $value -= $rMin; + $value /= ($rMax - $rMin); + return self::incompleteBeta($value, $alpha, $beta); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * BETAINV + * + * Returns the inverse of the beta distribution. + * + * @param float $probability Probability at which you want to evaluate the distribution + * @param float $alpha Parameter to the distribution + * @param float $beta Parameter to the distribution + * @param float $rMin Minimum value + * @param float $rMax Maximum value + * @param boolean $cumulative + * @return float + * + */ + public static function BETAINV($probability, $alpha, $beta, $rMin = 0, $rMax = 1) + { + $probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability); + $alpha = PHPExcel_Calculation_Functions::flattenSingleValue($alpha); + $beta = PHPExcel_Calculation_Functions::flattenSingleValue($beta); + $rMin = PHPExcel_Calculation_Functions::flattenSingleValue($rMin); + $rMax = PHPExcel_Calculation_Functions::flattenSingleValue($rMax); + + if ((is_numeric($probability)) && (is_numeric($alpha)) && (is_numeric($beta)) && (is_numeric($rMin)) && (is_numeric($rMax))) { + if (($alpha <= 0) || ($beta <= 0) || ($rMin == $rMax) || ($probability <= 0) || ($probability > 1)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ($rMin > $rMax) { + $tmp = $rMin; + $rMin = $rMax; + $rMax = $tmp; + } + $a = 0; + $b = 2; + + $i = 0; + while ((($b - $a) > PRECISION) && ($i++ < MAX_ITERATIONS)) { + $guess = ($a + $b) / 2; + $result = self::BETADIST($guess, $alpha, $beta); + if (($result == $probability) || ($result == 0)) { + $b = $a; + } elseif ($result > $probability) { + $b = $guess; + } else { + $a = $guess; + } + } + if ($i == MAX_ITERATIONS) { + return PHPExcel_Calculation_Functions::NA(); + } + return round($rMin + $guess * ($rMax - $rMin), 12); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * BINOMDIST + * + * Returns the individual term binomial distribution probability. Use BINOMDIST in problems with + * a fixed number of tests or trials, when the outcomes of any trial are only success or failure, + * when trials are independent, and when the probability of success is constant throughout the + * experiment. For example, BINOMDIST can calculate the probability that two of the next three + * babies born are male. + * + * @param float $value Number of successes in trials + * @param float $trials Number of trials + * @param float $probability Probability of success on each trial + * @param boolean $cumulative + * @return float + * + * @todo Cumulative distribution function + * + */ + public static function BINOMDIST($value, $trials, $probability, $cumulative) + { + $value = floor(PHPExcel_Calculation_Functions::flattenSingleValue($value)); + $trials = floor(PHPExcel_Calculation_Functions::flattenSingleValue($trials)); + $probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability); + + if ((is_numeric($value)) && (is_numeric($trials)) && (is_numeric($probability))) { + if (($value < 0) || ($value > $trials)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if (($probability < 0) || ($probability > 1)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ((is_numeric($cumulative)) || (is_bool($cumulative))) { + if ($cumulative) { + $summer = 0; + for ($i = 0; $i <= $value; ++$i) { + $summer += PHPExcel_Calculation_MathTrig::COMBIN($trials, $i) * pow($probability, $i) * pow(1 - $probability, $trials - $i); + } + return $summer; + } else { + return PHPExcel_Calculation_MathTrig::COMBIN($trials, $value) * pow($probability, $value) * pow(1 - $probability, $trials - $value) ; + } + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * CHIDIST + * + * Returns the one-tailed probability of the chi-squared distribution. + * + * @param float $value Value for the function + * @param float $degrees degrees of freedom + * @return float + */ + public static function CHIDIST($value, $degrees) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $degrees = floor(PHPExcel_Calculation_Functions::flattenSingleValue($degrees)); + + if ((is_numeric($value)) && (is_numeric($degrees))) { + if ($degrees < 1) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ($value < 0) { + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC) { + return 1; + } + return PHPExcel_Calculation_Functions::NaN(); + } + return 1 - (self::incompleteGamma($degrees/2, $value/2) / self::gamma($degrees/2)); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * CHIINV + * + * Returns the one-tailed probability of the chi-squared distribution. + * + * @param float $probability Probability for the function + * @param float $degrees degrees of freedom + * @return float + */ + public static function CHIINV($probability, $degrees) + { + $probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability); + $degrees = floor(PHPExcel_Calculation_Functions::flattenSingleValue($degrees)); + + if ((is_numeric($probability)) && (is_numeric($degrees))) { + $xLo = 100; + $xHi = 0; + + $x = $xNew = 1; + $dx = 1; + $i = 0; + + while ((abs($dx) > PRECISION) && ($i++ < MAX_ITERATIONS)) { + // Apply Newton-Raphson step + $result = self::CHIDIST($x, $degrees); + $error = $result - $probability; + if ($error == 0.0) { + $dx = 0; + } elseif ($error < 0.0) { + $xLo = $x; + } else { + $xHi = $x; + } + // Avoid division by zero + if ($result != 0.0) { + $dx = $error / $result; + $xNew = $x - $dx; + } + // If the NR fails to converge (which for example may be the + // case if the initial guess is too rough) we apply a bisection + // step to determine a more narrow interval around the root. + if (($xNew < $xLo) || ($xNew > $xHi) || ($result == 0.0)) { + $xNew = ($xLo + $xHi) / 2; + $dx = $xNew - $x; + } + $x = $xNew; + } + if ($i == MAX_ITERATIONS) { + return PHPExcel_Calculation_Functions::NA(); + } + return round($x, 12); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * CONFIDENCE + * + * Returns the confidence interval for a population mean + * + * @param float $alpha + * @param float $stdDev Standard Deviation + * @param float $size + * @return float + * + */ + public static function CONFIDENCE($alpha, $stdDev, $size) + { + $alpha = PHPExcel_Calculation_Functions::flattenSingleValue($alpha); + $stdDev = PHPExcel_Calculation_Functions::flattenSingleValue($stdDev); + $size = floor(PHPExcel_Calculation_Functions::flattenSingleValue($size)); + + if ((is_numeric($alpha)) && (is_numeric($stdDev)) && (is_numeric($size))) { + if (($alpha <= 0) || ($alpha >= 1)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if (($stdDev <= 0) || ($size < 1)) { + return PHPExcel_Calculation_Functions::NaN(); + } + return self::NORMSINV(1 - $alpha / 2) * $stdDev / sqrt($size); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * CORREL + * + * Returns covariance, the average of the products of deviations for each data point pair. + * + * @param array of mixed Data Series Y + * @param array of mixed Data Series X + * @return float + */ + public static function CORREL($yValues, $xValues = null) + { + if ((is_null($xValues)) || (!is_array($yValues)) || (!is_array($xValues))) { + return PHPExcel_Calculation_Functions::VALUE(); + } + if (!self::checkTrendArrays($yValues, $xValues)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $yValueCount = count($yValues); + $xValueCount = count($xValues); + + if (($yValueCount == 0) || ($yValueCount != $xValueCount)) { + return PHPExcel_Calculation_Functions::NA(); + } elseif ($yValueCount == 1) { + return PHPExcel_Calculation_Functions::DIV0(); + } + + $bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues); + return $bestFitLinear->getCorrelation(); + } + + + /** + * COUNT + * + * Counts the number of cells that contain numbers within the list of arguments + * + * Excel Function: + * COUNT(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return int + */ + public static function COUNT() + { + $returnValue = 0; + + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args()); + foreach ($aArgs as $k => $arg) { + if ((is_bool($arg)) && + ((!PHPExcel_Calculation_Functions::isCellValue($k)) || (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE))) { + $arg = (integer) $arg; + } + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + ++$returnValue; + } + } + + return $returnValue; + } + + + /** + * COUNTA + * + * Counts the number of cells that are not empty within the list of arguments + * + * Excel Function: + * COUNTA(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return int + */ + public static function COUNTA() + { + $returnValue = 0; + + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + foreach ($aArgs as $arg) { + // Is it a numeric, boolean or string value? + if ((is_numeric($arg)) || (is_bool($arg)) || ((is_string($arg) && ($arg != '')))) { + ++$returnValue; + } + } + + return $returnValue; + } + + + /** + * COUNTBLANK + * + * Counts the number of empty cells within the list of arguments + * + * Excel Function: + * COUNTBLANK(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return int + */ + public static function COUNTBLANK() + { + $returnValue = 0; + + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + foreach ($aArgs as $arg) { + // Is it a blank cell? + if ((is_null($arg)) || ((is_string($arg)) && ($arg == ''))) { + ++$returnValue; + } + } + + return $returnValue; + } + + + /** + * COUNTIF + * + * Counts the number of cells that contain numbers within the list of arguments + * + * Excel Function: + * COUNTIF(value1[,value2[, ...]],condition) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @param string $condition The criteria that defines which cells will be counted. + * @return int + */ + public static function COUNTIF($aArgs, $condition) + { + $returnValue = 0; + + $aArgs = PHPExcel_Calculation_Functions::flattenArray($aArgs); + $condition = PHPExcel_Calculation_Functions::ifCondition($condition); + // Loop through arguments + foreach ($aArgs as $arg) { + if (!is_numeric($arg)) { + $arg = PHPExcel_Calculation::wrapResult(strtoupper($arg)); + } + $testCondition = '='.$arg.$condition; + if (PHPExcel_Calculation::getInstance()->_calculateFormulaValue($testCondition)) { + // Is it a value within our criteria + ++$returnValue; + } + } + + return $returnValue; + } + + + /** + * COVAR + * + * Returns covariance, the average of the products of deviations for each data point pair. + * + * @param array of mixed Data Series Y + * @param array of mixed Data Series X + * @return float + */ + public static function COVAR($yValues, $xValues) + { + if (!self::checkTrendArrays($yValues, $xValues)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $yValueCount = count($yValues); + $xValueCount = count($xValues); + + if (($yValueCount == 0) || ($yValueCount != $xValueCount)) { + return PHPExcel_Calculation_Functions::NA(); + } elseif ($yValueCount == 1) { + return PHPExcel_Calculation_Functions::DIV0(); + } + + $bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues); + return $bestFitLinear->getCovariance(); + } + + + /** + * CRITBINOM + * + * Returns the smallest value for which the cumulative binomial distribution is greater + * than or equal to a criterion value + * + * See http://support.microsoft.com/kb/828117/ for details of the algorithm used + * + * @param float $trials number of Bernoulli trials + * @param float $probability probability of a success on each trial + * @param float $alpha criterion value + * @return int + * + * @todo Warning. This implementation differs from the algorithm detailed on the MS + * web site in that $CumPGuessMinus1 = $CumPGuess - 1 rather than $CumPGuess - $PGuess + * This eliminates a potential endless loop error, but may have an adverse affect on the + * accuracy of the function (although all my tests have so far returned correct results). + * + */ + public static function CRITBINOM($trials, $probability, $alpha) + { + $trials = floor(PHPExcel_Calculation_Functions::flattenSingleValue($trials)); + $probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability); + $alpha = PHPExcel_Calculation_Functions::flattenSingleValue($alpha); + + if ((is_numeric($trials)) && (is_numeric($probability)) && (is_numeric($alpha))) { + if ($trials < 0) { + return PHPExcel_Calculation_Functions::NaN(); + } elseif (($probability < 0) || ($probability > 1)) { + return PHPExcel_Calculation_Functions::NaN(); + } elseif (($alpha < 0) || ($alpha > 1)) { + return PHPExcel_Calculation_Functions::NaN(); + } elseif ($alpha <= 0.5) { + $t = sqrt(log(1 / ($alpha * $alpha))); + $trialsApprox = 0 - ($t + (2.515517 + 0.802853 * $t + 0.010328 * $t * $t) / (1 + 1.432788 * $t + 0.189269 * $t * $t + 0.001308 * $t * $t * $t)); + } else { + $t = sqrt(log(1 / pow(1 - $alpha, 2))); + $trialsApprox = $t - (2.515517 + 0.802853 * $t + 0.010328 * $t * $t) / (1 + 1.432788 * $t + 0.189269 * $t * $t + 0.001308 * $t * $t * $t); + } + $Guess = floor($trials * $probability + $trialsApprox * sqrt($trials * $probability * (1 - $probability))); + if ($Guess < 0) { + $Guess = 0; + } elseif ($Guess > $trials) { + $Guess = $trials; + } + + $TotalUnscaledProbability = $UnscaledPGuess = $UnscaledCumPGuess = 0.0; + $EssentiallyZero = 10e-12; + + $m = floor($trials * $probability); + ++$TotalUnscaledProbability; + if ($m == $Guess) { + ++$UnscaledPGuess; + } + if ($m <= $Guess) { + ++$UnscaledCumPGuess; + } + + $PreviousValue = 1; + $Done = false; + $k = $m + 1; + while ((!$Done) && ($k <= $trials)) { + $CurrentValue = $PreviousValue * ($trials - $k + 1) * $probability / ($k * (1 - $probability)); + $TotalUnscaledProbability += $CurrentValue; + if ($k == $Guess) { + $UnscaledPGuess += $CurrentValue; + } + if ($k <= $Guess) { + $UnscaledCumPGuess += $CurrentValue; + } + if ($CurrentValue <= $EssentiallyZero) { + $Done = true; + } + $PreviousValue = $CurrentValue; + ++$k; + } + + $PreviousValue = 1; + $Done = false; + $k = $m - 1; + while ((!$Done) && ($k >= 0)) { + $CurrentValue = $PreviousValue * $k + 1 * (1 - $probability) / (($trials - $k) * $probability); + $TotalUnscaledProbability += $CurrentValue; + if ($k == $Guess) { + $UnscaledPGuess += $CurrentValue; + } + if ($k <= $Guess) { + $UnscaledCumPGuess += $CurrentValue; + } + if ($CurrentValue <= $EssentiallyZero) { + $Done = true; + } + $PreviousValue = $CurrentValue; + --$k; + } + + $PGuess = $UnscaledPGuess / $TotalUnscaledProbability; + $CumPGuess = $UnscaledCumPGuess / $TotalUnscaledProbability; + +// $CumPGuessMinus1 = $CumPGuess - $PGuess; + $CumPGuessMinus1 = $CumPGuess - 1; + + while (true) { + if (($CumPGuessMinus1 < $alpha) && ($CumPGuess >= $alpha)) { + return $Guess; + } elseif (($CumPGuessMinus1 < $alpha) && ($CumPGuess < $alpha)) { + $PGuessPlus1 = $PGuess * ($trials - $Guess) * $probability / $Guess / (1 - $probability); + $CumPGuessMinus1 = $CumPGuess; + $CumPGuess = $CumPGuess + $PGuessPlus1; + $PGuess = $PGuessPlus1; + ++$Guess; + } elseif (($CumPGuessMinus1 >= $alpha) && ($CumPGuess >= $alpha)) { + $PGuessMinus1 = $PGuess * $Guess * (1 - $probability) / ($trials - $Guess + 1) / $probability; + $CumPGuess = $CumPGuessMinus1; + $CumPGuessMinus1 = $CumPGuessMinus1 - $PGuess; + $PGuess = $PGuessMinus1; + --$Guess; + } + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * DEVSQ + * + * Returns the sum of squares of deviations of data points from their sample mean. + * + * Excel Function: + * DEVSQ(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function DEVSQ() + { + $aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args()); + + // Return value + $returnValue = null; + + $aMean = self::AVERAGE($aArgs); + if ($aMean != PHPExcel_Calculation_Functions::DIV0()) { + $aCount = -1; + foreach ($aArgs as $k => $arg) { + // Is it a numeric value? + if ((is_bool($arg)) && + ((!PHPExcel_Calculation_Functions::isCellValue($k)) || + (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE))) { + $arg = (integer) $arg; + } + if ((is_numeric($arg)) && (!is_string($arg))) { + if (is_null($returnValue)) { + $returnValue = pow(($arg - $aMean), 2); + } else { + $returnValue += pow(($arg - $aMean), 2); + } + ++$aCount; + } + } + + // Return + if (is_null($returnValue)) { + return PHPExcel_Calculation_Functions::NaN(); + } else { + return $returnValue; + } + } + return self::NA(); + } + + + /** + * EXPONDIST + * + * Returns the exponential distribution. Use EXPONDIST to model the time between events, + * such as how long an automated bank teller takes to deliver cash. For example, you can + * use EXPONDIST to determine the probability that the process takes at most 1 minute. + * + * @param float $value Value of the function + * @param float $lambda The parameter value + * @param boolean $cumulative + * @return float + */ + public static function EXPONDIST($value, $lambda, $cumulative) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $lambda = PHPExcel_Calculation_Functions::flattenSingleValue($lambda); + $cumulative = PHPExcel_Calculation_Functions::flattenSingleValue($cumulative); + + if ((is_numeric($value)) && (is_numeric($lambda))) { + if (($value < 0) || ($lambda < 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ((is_numeric($cumulative)) || (is_bool($cumulative))) { + if ($cumulative) { + return 1 - exp(0-$value*$lambda); + } else { + return $lambda * exp(0-$value*$lambda); + } + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * FISHER + * + * Returns the Fisher transformation at x. This transformation produces a function that + * is normally distributed rather than skewed. Use this function to perform hypothesis + * testing on the correlation coefficient. + * + * @param float $value + * @return float + */ + public static function FISHER($value) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + + if (is_numeric($value)) { + if (($value <= -1) || ($value >= 1)) { + return PHPExcel_Calculation_Functions::NaN(); + } + return 0.5 * log((1+$value)/(1-$value)); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * FISHERINV + * + * Returns the inverse of the Fisher transformation. Use this transformation when + * analyzing correlations between ranges or arrays of data. If y = FISHER(x), then + * FISHERINV(y) = x. + * + * @param float $value + * @return float + */ + public static function FISHERINV($value) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + + if (is_numeric($value)) { + return (exp(2 * $value) - 1) / (exp(2 * $value) + 1); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * FORECAST + * + * Calculates, or predicts, a future value by using existing values. The predicted value is a y-value for a given x-value. + * + * @param float Value of X for which we want to find Y + * @param array of mixed Data Series Y + * @param array of mixed Data Series X + * @return float + */ + public static function FORECAST($xValue, $yValues, $xValues) + { + $xValue = PHPExcel_Calculation_Functions::flattenSingleValue($xValue); + if (!is_numeric($xValue)) { + return PHPExcel_Calculation_Functions::VALUE(); + } elseif (!self::checkTrendArrays($yValues, $xValues)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $yValueCount = count($yValues); + $xValueCount = count($xValues); + + if (($yValueCount == 0) || ($yValueCount != $xValueCount)) { + return PHPExcel_Calculation_Functions::NA(); + } elseif ($yValueCount == 1) { + return PHPExcel_Calculation_Functions::DIV0(); + } + + $bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues); + return $bestFitLinear->getValueOfYForX($xValue); + } + + + /** + * GAMMADIST + * + * Returns the gamma distribution. + * + * @param float $value Value at which you want to evaluate the distribution + * @param float $a Parameter to the distribution + * @param float $b Parameter to the distribution + * @param boolean $cumulative + * @return float + * + */ + public static function GAMMADIST($value, $a, $b, $cumulative) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $a = PHPExcel_Calculation_Functions::flattenSingleValue($a); + $b = PHPExcel_Calculation_Functions::flattenSingleValue($b); + + if ((is_numeric($value)) && (is_numeric($a)) && (is_numeric($b))) { + if (($value < 0) || ($a <= 0) || ($b <= 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ((is_numeric($cumulative)) || (is_bool($cumulative))) { + if ($cumulative) { + return self::incompleteGamma($a, $value / $b) / self::gamma($a); + } else { + return (1 / (pow($b, $a) * self::gamma($a))) * pow($value, $a-1) * exp(0-($value / $b)); + } + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * GAMMAINV + * + * Returns the inverse of the beta distribution. + * + * @param float $probability Probability at which you want to evaluate the distribution + * @param float $alpha Parameter to the distribution + * @param float $beta Parameter to the distribution + * @return float + * + */ + public static function GAMMAINV($probability, $alpha, $beta) + { + $probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability); + $alpha = PHPExcel_Calculation_Functions::flattenSingleValue($alpha); + $beta = PHPExcel_Calculation_Functions::flattenSingleValue($beta); + + if ((is_numeric($probability)) && (is_numeric($alpha)) && (is_numeric($beta))) { + if (($alpha <= 0) || ($beta <= 0) || ($probability < 0) || ($probability > 1)) { + return PHPExcel_Calculation_Functions::NaN(); + } + + $xLo = 0; + $xHi = $alpha * $beta * 5; + + $x = $xNew = 1; + $error = $pdf = 0; + $dx = 1024; + $i = 0; + + while ((abs($dx) > PRECISION) && ($i++ < MAX_ITERATIONS)) { + // Apply Newton-Raphson step + $error = self::GAMMADIST($x, $alpha, $beta, true) - $probability; + if ($error < 0.0) { + $xLo = $x; + } else { + $xHi = $x; + } + $pdf = self::GAMMADIST($x, $alpha, $beta, false); + // Avoid division by zero + if ($pdf != 0.0) { + $dx = $error / $pdf; + $xNew = $x - $dx; + } + // If the NR fails to converge (which for example may be the + // case if the initial guess is too rough) we apply a bisection + // step to determine a more narrow interval around the root. + if (($xNew < $xLo) || ($xNew > $xHi) || ($pdf == 0.0)) { + $xNew = ($xLo + $xHi) / 2; + $dx = $xNew - $x; + } + $x = $xNew; + } + if ($i == MAX_ITERATIONS) { + return PHPExcel_Calculation_Functions::NA(); + } + return $x; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * GAMMALN + * + * Returns the natural logarithm of the gamma function. + * + * @param float $value + * @return float + */ + public static function GAMMALN($value) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + + if (is_numeric($value)) { + if ($value <= 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + return log(self::gamma($value)); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * GEOMEAN + * + * Returns the geometric mean of an array or range of positive data. For example, you + * can use GEOMEAN to calculate average growth rate given compound interest with + * variable rates. + * + * Excel Function: + * GEOMEAN(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function GEOMEAN() + { + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + + $aMean = PHPExcel_Calculation_MathTrig::PRODUCT($aArgs); + if (is_numeric($aMean) && ($aMean > 0)) { + $aCount = self::COUNT($aArgs) ; + if (self::MIN($aArgs) > 0) { + return pow($aMean, (1 / $aCount)); + } + } + return PHPExcel_Calculation_Functions::NaN(); + } + + + /** + * GROWTH + * + * Returns values along a predicted emponential trend + * + * @param array of mixed Data Series Y + * @param array of mixed Data Series X + * @param array of mixed Values of X for which we want to find Y + * @param boolean A logical value specifying whether to force the intersect to equal 0. + * @return array of float + */ + public static function GROWTH($yValues, $xValues = array(), $newValues = array(), $const = true) + { + $yValues = PHPExcel_Calculation_Functions::flattenArray($yValues); + $xValues = PHPExcel_Calculation_Functions::flattenArray($xValues); + $newValues = PHPExcel_Calculation_Functions::flattenArray($newValues); + $const = (is_null($const)) ? true : (boolean) PHPExcel_Calculation_Functions::flattenSingleValue($const); + + $bestFitExponential = trendClass::calculate(trendClass::TREND_EXPONENTIAL, $yValues, $xValues, $const); + if (empty($newValues)) { + $newValues = $bestFitExponential->getXValues(); + } + + $returnArray = array(); + foreach ($newValues as $xValue) { + $returnArray[0][] = $bestFitExponential->getValueOfYForX($xValue); + } + + return $returnArray; + } + + + /** + * HARMEAN + * + * Returns the harmonic mean of a data set. The harmonic mean is the reciprocal of the + * arithmetic mean of reciprocals. + * + * Excel Function: + * HARMEAN(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function HARMEAN() + { + // Return value + $returnValue = PHPExcel_Calculation_Functions::NA(); + + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + if (self::MIN($aArgs) < 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + $aCount = 0; + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + if ($arg <= 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + if (is_null($returnValue)) { + $returnValue = (1 / $arg); + } else { + $returnValue += (1 / $arg); + } + ++$aCount; + } + } + + // Return + if ($aCount > 0) { + return 1 / ($returnValue / $aCount); + } else { + return $returnValue; + } + } + + + /** + * HYPGEOMDIST + * + * Returns the hypergeometric distribution. HYPGEOMDIST returns the probability of a given number of + * sample successes, given the sample size, population successes, and population size. + * + * @param float $sampleSuccesses Number of successes in the sample + * @param float $sampleNumber Size of the sample + * @param float $populationSuccesses Number of successes in the population + * @param float $populationNumber Population size + * @return float + * + */ + public static function HYPGEOMDIST($sampleSuccesses, $sampleNumber, $populationSuccesses, $populationNumber) + { + $sampleSuccesses = floor(PHPExcel_Calculation_Functions::flattenSingleValue($sampleSuccesses)); + $sampleNumber = floor(PHPExcel_Calculation_Functions::flattenSingleValue($sampleNumber)); + $populationSuccesses = floor(PHPExcel_Calculation_Functions::flattenSingleValue($populationSuccesses)); + $populationNumber = floor(PHPExcel_Calculation_Functions::flattenSingleValue($populationNumber)); + + if ((is_numeric($sampleSuccesses)) && (is_numeric($sampleNumber)) && (is_numeric($populationSuccesses)) && (is_numeric($populationNumber))) { + if (($sampleSuccesses < 0) || ($sampleSuccesses > $sampleNumber) || ($sampleSuccesses > $populationSuccesses)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if (($sampleNumber <= 0) || ($sampleNumber > $populationNumber)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if (($populationSuccesses <= 0) || ($populationSuccesses > $populationNumber)) { + return PHPExcel_Calculation_Functions::NaN(); + } + return PHPExcel_Calculation_MathTrig::COMBIN($populationSuccesses, $sampleSuccesses) * + PHPExcel_Calculation_MathTrig::COMBIN($populationNumber - $populationSuccesses, $sampleNumber - $sampleSuccesses) / + PHPExcel_Calculation_MathTrig::COMBIN($populationNumber, $sampleNumber); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * INTERCEPT + * + * Calculates the point at which a line will intersect the y-axis by using existing x-values and y-values. + * + * @param array of mixed Data Series Y + * @param array of mixed Data Series X + * @return float + */ + public static function INTERCEPT($yValues, $xValues) + { + if (!self::checkTrendArrays($yValues, $xValues)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $yValueCount = count($yValues); + $xValueCount = count($xValues); + + if (($yValueCount == 0) || ($yValueCount != $xValueCount)) { + return PHPExcel_Calculation_Functions::NA(); + } elseif ($yValueCount == 1) { + return PHPExcel_Calculation_Functions::DIV0(); + } + + $bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues); + return $bestFitLinear->getIntersect(); + } + + + /** + * KURT + * + * Returns the kurtosis of a data set. Kurtosis characterizes the relative peakedness + * or flatness of a distribution compared with the normal distribution. Positive + * kurtosis indicates a relatively peaked distribution. Negative kurtosis indicates a + * relatively flat distribution. + * + * @param array Data Series + * @return float + */ + public static function KURT() + { + $aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args()); + $mean = self::AVERAGE($aArgs); + $stdDev = self::STDEV($aArgs); + + if ($stdDev > 0) { + $count = $summer = 0; + // Loop through arguments + foreach ($aArgs as $k => $arg) { + if ((is_bool($arg)) && + (!PHPExcel_Calculation_Functions::isMatrixValue($k))) { + } else { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $summer += pow((($arg - $mean) / $stdDev), 4); + ++$count; + } + } + } + + // Return + if ($count > 3) { + return $summer * ($count * ($count+1) / (($count-1) * ($count-2) * ($count-3))) - (3 * pow($count-1, 2) / (($count-2) * ($count-3))); + } + } + return PHPExcel_Calculation_Functions::DIV0(); + } + + + /** + * LARGE + * + * Returns the nth largest value in a data set. You can use this function to + * select a value based on its relative standing. + * + * Excel Function: + * LARGE(value1[,value2[, ...]],entry) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @param int $entry Position (ordered from the largest) in the array or range of data to return + * @return float + * + */ + public static function LARGE() + { + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + + // Calculate + $entry = floor(array_pop($aArgs)); + + if ((is_numeric($entry)) && (!is_string($entry))) { + $mArgs = array(); + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $mArgs[] = $arg; + } + } + $count = self::COUNT($mArgs); + $entry = floor(--$entry); + if (($entry < 0) || ($entry >= $count) || ($count == 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + rsort($mArgs); + return $mArgs[$entry]; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * LINEST + * + * Calculates the statistics for a line by using the "least squares" method to calculate a straight line that best fits your data, + * and then returns an array that describes the line. + * + * @param array of mixed Data Series Y + * @param array of mixed Data Series X + * @param boolean A logical value specifying whether to force the intersect to equal 0. + * @param boolean A logical value specifying whether to return additional regression statistics. + * @return array + */ + public static function LINEST($yValues, $xValues = null, $const = true, $stats = false) + { + $const = (is_null($const)) ? true : (boolean) PHPExcel_Calculation_Functions::flattenSingleValue($const); + $stats = (is_null($stats)) ? false : (boolean) PHPExcel_Calculation_Functions::flattenSingleValue($stats); + if (is_null($xValues)) { + $xValues = range(1, count(PHPExcel_Calculation_Functions::flattenArray($yValues))); + } + + if (!self::checkTrendArrays($yValues, $xValues)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $yValueCount = count($yValues); + $xValueCount = count($xValues); + + + if (($yValueCount == 0) || ($yValueCount != $xValueCount)) { + return PHPExcel_Calculation_Functions::NA(); + } elseif ($yValueCount == 1) { + return 0; + } + + $bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues, $const); + if ($stats) { + return array( + array( + $bestFitLinear->getSlope(), + $bestFitLinear->getSlopeSE(), + $bestFitLinear->getGoodnessOfFit(), + $bestFitLinear->getF(), + $bestFitLinear->getSSRegression(), + ), + array( + $bestFitLinear->getIntersect(), + $bestFitLinear->getIntersectSE(), + $bestFitLinear->getStdevOfResiduals(), + $bestFitLinear->getDFResiduals(), + $bestFitLinear->getSSResiduals() + ) + ); + } else { + return array( + $bestFitLinear->getSlope(), + $bestFitLinear->getIntersect() + ); + } + } + + + /** + * LOGEST + * + * Calculates an exponential curve that best fits the X and Y data series, + * and then returns an array that describes the line. + * + * @param array of mixed Data Series Y + * @param array of mixed Data Series X + * @param boolean A logical value specifying whether to force the intersect to equal 0. + * @param boolean A logical value specifying whether to return additional regression statistics. + * @return array + */ + public static function LOGEST($yValues, $xValues = null, $const = true, $stats = false) + { + $const = (is_null($const)) ? true : (boolean) PHPExcel_Calculation_Functions::flattenSingleValue($const); + $stats = (is_null($stats)) ? false : (boolean) PHPExcel_Calculation_Functions::flattenSingleValue($stats); + if (is_null($xValues)) { + $xValues = range(1, count(PHPExcel_Calculation_Functions::flattenArray($yValues))); + } + + if (!self::checkTrendArrays($yValues, $xValues)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $yValueCount = count($yValues); + $xValueCount = count($xValues); + + foreach ($yValues as $value) { + if ($value <= 0.0) { + return PHPExcel_Calculation_Functions::NaN(); + } + } + + + if (($yValueCount == 0) || ($yValueCount != $xValueCount)) { + return PHPExcel_Calculation_Functions::NA(); + } elseif ($yValueCount == 1) { + return 1; + } + + $bestFitExponential = trendClass::calculate(trendClass::TREND_EXPONENTIAL, $yValues, $xValues, $const); + if ($stats) { + return array( + array( + $bestFitExponential->getSlope(), + $bestFitExponential->getSlopeSE(), + $bestFitExponential->getGoodnessOfFit(), + $bestFitExponential->getF(), + $bestFitExponential->getSSRegression(), + ), + array( + $bestFitExponential->getIntersect(), + $bestFitExponential->getIntersectSE(), + $bestFitExponential->getStdevOfResiduals(), + $bestFitExponential->getDFResiduals(), + $bestFitExponential->getSSResiduals() + ) + ); + } else { + return array( + $bestFitExponential->getSlope(), + $bestFitExponential->getIntersect() + ); + } + } + + + /** + * LOGINV + * + * Returns the inverse of the normal cumulative distribution + * + * @param float $probability + * @param float $mean + * @param float $stdDev + * @return float + * + * @todo Try implementing P J Acklam's refinement algorithm for greater + * accuracy if I can get my head round the mathematics + * (as described at) http://home.online.no/~pjacklam/notes/invnorm/ + */ + public static function LOGINV($probability, $mean, $stdDev) + { + $probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability); + $mean = PHPExcel_Calculation_Functions::flattenSingleValue($mean); + $stdDev = PHPExcel_Calculation_Functions::flattenSingleValue($stdDev); + + if ((is_numeric($probability)) && (is_numeric($mean)) && (is_numeric($stdDev))) { + if (($probability < 0) || ($probability > 1) || ($stdDev <= 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + return exp($mean + $stdDev * self::NORMSINV($probability)); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * LOGNORMDIST + * + * Returns the cumulative lognormal distribution of x, where ln(x) is normally distributed + * with parameters mean and standard_dev. + * + * @param float $value + * @param float $mean + * @param float $stdDev + * @return float + */ + public static function LOGNORMDIST($value, $mean, $stdDev) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $mean = PHPExcel_Calculation_Functions::flattenSingleValue($mean); + $stdDev = PHPExcel_Calculation_Functions::flattenSingleValue($stdDev); + + if ((is_numeric($value)) && (is_numeric($mean)) && (is_numeric($stdDev))) { + if (($value <= 0) || ($stdDev <= 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + return self::NORMSDIST((log($value) - $mean) / $stdDev); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * MAX + * + * MAX returns the value of the element of the values passed that has the highest value, + * with negative numbers considered smaller than positive numbers. + * + * Excel Function: + * MAX(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function MAX() + { + $returnValue = null; + + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + if ((is_null($returnValue)) || ($arg > $returnValue)) { + $returnValue = $arg; + } + } + } + + if (is_null($returnValue)) { + return 0; + } + return $returnValue; + } + + + /** + * MAXA + * + * Returns the greatest value in a list of arguments, including numbers, text, and logical values + * + * Excel Function: + * MAXA(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function MAXA() + { + $returnValue = null; + + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) || (is_bool($arg)) || ((is_string($arg) && ($arg != '')))) { + if (is_bool($arg)) { + $arg = (integer) $arg; + } elseif (is_string($arg)) { + $arg = 0; + } + if ((is_null($returnValue)) || ($arg > $returnValue)) { + $returnValue = $arg; + } + } + } + + if (is_null($returnValue)) { + return 0; + } + return $returnValue; + } + + + /** + * MAXIF + * + * Counts the maximum value within a range of cells that contain numbers within the list of arguments + * + * Excel Function: + * MAXIF(value1[,value2[, ...]],condition) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param mixed $arg,... Data values + * @param string $condition The criteria that defines which cells will be checked. + * @return float + */ + public static function MAXIF($aArgs, $condition, $sumArgs = array()) + { + $returnValue = null; + + $aArgs = PHPExcel_Calculation_Functions::flattenArray($aArgs); + $sumArgs = PHPExcel_Calculation_Functions::flattenArray($sumArgs); + if (empty($sumArgs)) { + $sumArgs = $aArgs; + } + $condition = PHPExcel_Calculation_Functions::ifCondition($condition); + // Loop through arguments + foreach ($aArgs as $key => $arg) { + if (!is_numeric($arg)) { + $arg = PHPExcel_Calculation::wrapResult(strtoupper($arg)); + } + $testCondition = '='.$arg.$condition; + if (PHPExcel_Calculation::getInstance()->_calculateFormulaValue($testCondition)) { + if ((is_null($returnValue)) || ($arg > $returnValue)) { + $returnValue = $arg; + } + } + } + + return $returnValue; + } + + /** + * MEDIAN + * + * Returns the median of the given numbers. The median is the number in the middle of a set of numbers. + * + * Excel Function: + * MEDIAN(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function MEDIAN() + { + $returnValue = PHPExcel_Calculation_Functions::NaN(); + + $mArgs = array(); + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $mArgs[] = $arg; + } + } + + $mValueCount = count($mArgs); + if ($mValueCount > 0) { + sort($mArgs, SORT_NUMERIC); + $mValueCount = $mValueCount / 2; + if ($mValueCount == floor($mValueCount)) { + $returnValue = ($mArgs[$mValueCount--] + $mArgs[$mValueCount]) / 2; + } else { + $mValueCount = floor($mValueCount); + $returnValue = $mArgs[$mValueCount]; + } + } + + return $returnValue; + } + + + /** + * MIN + * + * MIN returns the value of the element of the values passed that has the smallest value, + * with negative numbers considered smaller than positive numbers. + * + * Excel Function: + * MIN(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function MIN() + { + $returnValue = null; + + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + if ((is_null($returnValue)) || ($arg < $returnValue)) { + $returnValue = $arg; + } + } + } + + if (is_null($returnValue)) { + return 0; + } + return $returnValue; + } + + + /** + * MINA + * + * Returns the smallest value in a list of arguments, including numbers, text, and logical values + * + * Excel Function: + * MINA(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function MINA() + { + $returnValue = null; + + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) || (is_bool($arg)) || ((is_string($arg) && ($arg != '')))) { + if (is_bool($arg)) { + $arg = (integer) $arg; + } elseif (is_string($arg)) { + $arg = 0; + } + if ((is_null($returnValue)) || ($arg < $returnValue)) { + $returnValue = $arg; + } + } + } + + if (is_null($returnValue)) { + return 0; + } + return $returnValue; + } + + + /** + * MINIF + * + * Returns the minimum value within a range of cells that contain numbers within the list of arguments + * + * Excel Function: + * MINIF(value1[,value2[, ...]],condition) + * + * @access public + * @category Mathematical and Trigonometric Functions + * @param mixed $arg,... Data values + * @param string $condition The criteria that defines which cells will be checked. + * @return float + */ + public static function MINIF($aArgs, $condition, $sumArgs = array()) + { + $returnValue = null; + + $aArgs = PHPExcel_Calculation_Functions::flattenArray($aArgs); + $sumArgs = PHPExcel_Calculation_Functions::flattenArray($sumArgs); + if (empty($sumArgs)) { + $sumArgs = $aArgs; + } + $condition = PHPExcel_Calculation_Functions::ifCondition($condition); + // Loop through arguments + foreach ($aArgs as $key => $arg) { + if (!is_numeric($arg)) { + $arg = PHPExcel_Calculation::wrapResult(strtoupper($arg)); + } + $testCondition = '='.$arg.$condition; + if (PHPExcel_Calculation::getInstance()->_calculateFormulaValue($testCondition)) { + if ((is_null($returnValue)) || ($arg < $returnValue)) { + $returnValue = $arg; + } + } + } + + return $returnValue; + } + + + // + // Special variant of array_count_values that isn't limited to strings and integers, + // but can work with floating point numbers as values + // + private static function modeCalc($data) + { + $frequencyArray = array(); + foreach ($data as $datum) { + $found = false; + foreach ($frequencyArray as $key => $value) { + if ((string) $value['value'] == (string) $datum) { + ++$frequencyArray[$key]['frequency']; + $found = true; + break; + } + } + if (!$found) { + $frequencyArray[] = array( + 'value' => $datum, + 'frequency' => 1 + ); + } + } + + foreach ($frequencyArray as $key => $value) { + $frequencyList[$key] = $value['frequency']; + $valueList[$key] = $value['value']; + } + array_multisort($frequencyList, SORT_DESC, $valueList, SORT_ASC, SORT_NUMERIC, $frequencyArray); + + if ($frequencyArray[0]['frequency'] == 1) { + return PHPExcel_Calculation_Functions::NA(); + } + return $frequencyArray[0]['value']; + } + + + /** + * MODE + * + * Returns the most frequently occurring, or repetitive, value in an array or range of data + * + * Excel Function: + * MODE(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function MODE() + { + $returnValue = PHPExcel_Calculation_Functions::NA(); + + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + + $mArgs = array(); + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $mArgs[] = $arg; + } + } + + if (!empty($mArgs)) { + return self::modeCalc($mArgs); + } + + return $returnValue; + } + + + /** + * NEGBINOMDIST + * + * Returns the negative binomial distribution. NEGBINOMDIST returns the probability that + * there will be number_f failures before the number_s-th success, when the constant + * probability of a success is probability_s. This function is similar to the binomial + * distribution, except that the number of successes is fixed, and the number of trials is + * variable. Like the binomial, trials are assumed to be independent. + * + * @param float $failures Number of Failures + * @param float $successes Threshold number of Successes + * @param float $probability Probability of success on each trial + * @return float + * + */ + public static function NEGBINOMDIST($failures, $successes, $probability) + { + $failures = floor(PHPExcel_Calculation_Functions::flattenSingleValue($failures)); + $successes = floor(PHPExcel_Calculation_Functions::flattenSingleValue($successes)); + $probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability); + + if ((is_numeric($failures)) && (is_numeric($successes)) && (is_numeric($probability))) { + if (($failures < 0) || ($successes < 1)) { + return PHPExcel_Calculation_Functions::NaN(); + } elseif (($probability < 0) || ($probability > 1)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC) { + if (($failures + $successes - 1) <= 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + } + return (PHPExcel_Calculation_MathTrig::COMBIN($failures + $successes - 1, $successes - 1)) * (pow($probability, $successes)) * (pow(1 - $probability, $failures)); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * NORMDIST + * + * Returns the normal distribution for the specified mean and standard deviation. This + * function has a very wide range of applications in statistics, including hypothesis + * testing. + * + * @param float $value + * @param float $mean Mean Value + * @param float $stdDev Standard Deviation + * @param boolean $cumulative + * @return float + * + */ + public static function NORMDIST($value, $mean, $stdDev, $cumulative) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $mean = PHPExcel_Calculation_Functions::flattenSingleValue($mean); + $stdDev = PHPExcel_Calculation_Functions::flattenSingleValue($stdDev); + + if ((is_numeric($value)) && (is_numeric($mean)) && (is_numeric($stdDev))) { + if ($stdDev < 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ((is_numeric($cumulative)) || (is_bool($cumulative))) { + if ($cumulative) { + return 0.5 * (1 + PHPExcel_Calculation_Engineering::erfVal(($value - $mean) / ($stdDev * sqrt(2)))); + } else { + return (1 / (SQRT2PI * $stdDev)) * exp(0 - (pow($value - $mean, 2) / (2 * ($stdDev * $stdDev)))); + } + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * NORMINV + * + * Returns the inverse of the normal cumulative distribution for the specified mean and standard deviation. + * + * @param float $value + * @param float $mean Mean Value + * @param float $stdDev Standard Deviation + * @return float + * + */ + public static function NORMINV($probability, $mean, $stdDev) + { + $probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability); + $mean = PHPExcel_Calculation_Functions::flattenSingleValue($mean); + $stdDev = PHPExcel_Calculation_Functions::flattenSingleValue($stdDev); + + if ((is_numeric($probability)) && (is_numeric($mean)) && (is_numeric($stdDev))) { + if (($probability < 0) || ($probability > 1)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ($stdDev < 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + return (self::inverseNcdf($probability) * $stdDev) + $mean; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * NORMSDIST + * + * Returns the standard normal cumulative distribution function. The distribution has + * a mean of 0 (zero) and a standard deviation of one. Use this function in place of a + * table of standard normal curve areas. + * + * @param float $value + * @return float + */ + public static function NORMSDIST($value) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + + return self::NORMDIST($value, 0, 1, true); + } + + + /** + * NORMSINV + * + * Returns the inverse of the standard normal cumulative distribution + * + * @param float $value + * @return float + */ + public static function NORMSINV($value) + { + return self::NORMINV($value, 0, 1); + } + + + /** + * PERCENTILE + * + * Returns the nth percentile of values in a range.. + * + * Excel Function: + * PERCENTILE(value1[,value2[, ...]],entry) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @param float $entry Percentile value in the range 0..1, inclusive. + * @return float + */ + public static function PERCENTILE() + { + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + + // Calculate + $entry = array_pop($aArgs); + + if ((is_numeric($entry)) && (!is_string($entry))) { + if (($entry < 0) || ($entry > 1)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $mArgs = array(); + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $mArgs[] = $arg; + } + } + $mValueCount = count($mArgs); + if ($mValueCount > 0) { + sort($mArgs); + $count = self::COUNT($mArgs); + $index = $entry * ($count-1); + $iBase = floor($index); + if ($index == $iBase) { + return $mArgs[$index]; + } else { + $iNext = $iBase + 1; + $iProportion = $index - $iBase; + return $mArgs[$iBase] + (($mArgs[$iNext] - $mArgs[$iBase]) * $iProportion) ; + } + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * PERCENTRANK + * + * Returns the rank of a value in a data set as a percentage of the data set. + * + * @param array of number An array of, or a reference to, a list of numbers. + * @param number The number whose rank you want to find. + * @param number The number of significant digits for the returned percentage value. + * @return float + */ + public static function PERCENTRANK($valueSet, $value, $significance = 3) + { + $valueSet = PHPExcel_Calculation_Functions::flattenArray($valueSet); + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $significance = (is_null($significance)) ? 3 : (integer) PHPExcel_Calculation_Functions::flattenSingleValue($significance); + + foreach ($valueSet as $key => $valueEntry) { + if (!is_numeric($valueEntry)) { + unset($valueSet[$key]); + } + } + sort($valueSet, SORT_NUMERIC); + $valueCount = count($valueSet); + if ($valueCount == 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + + $valueAdjustor = $valueCount - 1; + if (($value < $valueSet[0]) || ($value > $valueSet[$valueAdjustor])) { + return PHPExcel_Calculation_Functions::NA(); + } + + $pos = array_search($value, $valueSet); + if ($pos === false) { + $pos = 0; + $testValue = $valueSet[0]; + while ($testValue < $value) { + $testValue = $valueSet[++$pos]; + } + --$pos; + $pos += (($value - $valueSet[$pos]) / ($testValue - $valueSet[$pos])); + } + + return round($pos / $valueAdjustor, $significance); + } + + + /** + * PERMUT + * + * Returns the number of permutations for a given number of objects that can be + * selected from number objects. A permutation is any set or subset of objects or + * events where internal order is significant. Permutations are different from + * combinations, for which the internal order is not significant. Use this function + * for lottery-style probability calculations. + * + * @param int $numObjs Number of different objects + * @param int $numInSet Number of objects in each permutation + * @return int Number of permutations + */ + public static function PERMUT($numObjs, $numInSet) + { + $numObjs = PHPExcel_Calculation_Functions::flattenSingleValue($numObjs); + $numInSet = PHPExcel_Calculation_Functions::flattenSingleValue($numInSet); + + if ((is_numeric($numObjs)) && (is_numeric($numInSet))) { + $numInSet = floor($numInSet); + if ($numObjs < $numInSet) { + return PHPExcel_Calculation_Functions::NaN(); + } + return round(PHPExcel_Calculation_MathTrig::FACT($numObjs) / PHPExcel_Calculation_MathTrig::FACT($numObjs - $numInSet)); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * POISSON + * + * Returns the Poisson distribution. A common application of the Poisson distribution + * is predicting the number of events over a specific time, such as the number of + * cars arriving at a toll plaza in 1 minute. + * + * @param float $value + * @param float $mean Mean Value + * @param boolean $cumulative + * @return float + * + */ + public static function POISSON($value, $mean, $cumulative) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $mean = PHPExcel_Calculation_Functions::flattenSingleValue($mean); + + if ((is_numeric($value)) && (is_numeric($mean))) { + if (($value < 0) || ($mean <= 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ((is_numeric($cumulative)) || (is_bool($cumulative))) { + if ($cumulative) { + $summer = 0; + for ($i = 0; $i <= floor($value); ++$i) { + $summer += pow($mean, $i) / PHPExcel_Calculation_MathTrig::FACT($i); + } + return exp(0-$mean) * $summer; + } else { + return (exp(0-$mean) * pow($mean, $value)) / PHPExcel_Calculation_MathTrig::FACT($value); + } + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * QUARTILE + * + * Returns the quartile of a data set. + * + * Excel Function: + * QUARTILE(value1[,value2[, ...]],entry) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @param int $entry Quartile value in the range 1..3, inclusive. + * @return float + */ + public static function QUARTILE() + { + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + + // Calculate + $entry = floor(array_pop($aArgs)); + + if ((is_numeric($entry)) && (!is_string($entry))) { + $entry /= 4; + if (($entry < 0) || ($entry > 1)) { + return PHPExcel_Calculation_Functions::NaN(); + } + return self::PERCENTILE($aArgs, $entry); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * RANK + * + * Returns the rank of a number in a list of numbers. + * + * @param number The number whose rank you want to find. + * @param array of number An array of, or a reference to, a list of numbers. + * @param mixed Order to sort the values in the value set + * @return float + */ + public static function RANK($value, $valueSet, $order = 0) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $valueSet = PHPExcel_Calculation_Functions::flattenArray($valueSet); + $order = (is_null($order)) ? 0 : (integer) PHPExcel_Calculation_Functions::flattenSingleValue($order); + + foreach ($valueSet as $key => $valueEntry) { + if (!is_numeric($valueEntry)) { + unset($valueSet[$key]); + } + } + + if ($order == 0) { + rsort($valueSet, SORT_NUMERIC); + } else { + sort($valueSet, SORT_NUMERIC); + } + $pos = array_search($value, $valueSet); + if ($pos === false) { + return PHPExcel_Calculation_Functions::NA(); + } + + return ++$pos; + } + + + /** + * RSQ + * + * Returns the square of the Pearson product moment correlation coefficient through data points in known_y's and known_x's. + * + * @param array of mixed Data Series Y + * @param array of mixed Data Series X + * @return float + */ + public static function RSQ($yValues, $xValues) + { + if (!self::checkTrendArrays($yValues, $xValues)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $yValueCount = count($yValues); + $xValueCount = count($xValues); + + if (($yValueCount == 0) || ($yValueCount != $xValueCount)) { + return PHPExcel_Calculation_Functions::NA(); + } elseif ($yValueCount == 1) { + return PHPExcel_Calculation_Functions::DIV0(); + } + + $bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues); + return $bestFitLinear->getGoodnessOfFit(); + } + + + /** + * SKEW + * + * Returns the skewness of a distribution. Skewness characterizes the degree of asymmetry + * of a distribution around its mean. Positive skewness indicates a distribution with an + * asymmetric tail extending toward more positive values. Negative skewness indicates a + * distribution with an asymmetric tail extending toward more negative values. + * + * @param array Data Series + * @return float + */ + public static function SKEW() + { + $aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args()); + $mean = self::AVERAGE($aArgs); + $stdDev = self::STDEV($aArgs); + + $count = $summer = 0; + // Loop through arguments + foreach ($aArgs as $k => $arg) { + if ((is_bool($arg)) && + (!PHPExcel_Calculation_Functions::isMatrixValue($k))) { + } else { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $summer += pow((($arg - $mean) / $stdDev), 3); + ++$count; + } + } + } + + if ($count > 2) { + return $summer * ($count / (($count-1) * ($count-2))); + } + return PHPExcel_Calculation_Functions::DIV0(); + } + + + /** + * SLOPE + * + * Returns the slope of the linear regression line through data points in known_y's and known_x's. + * + * @param array of mixed Data Series Y + * @param array of mixed Data Series X + * @return float + */ + public static function SLOPE($yValues, $xValues) + { + if (!self::checkTrendArrays($yValues, $xValues)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $yValueCount = count($yValues); + $xValueCount = count($xValues); + + if (($yValueCount == 0) || ($yValueCount != $xValueCount)) { + return PHPExcel_Calculation_Functions::NA(); + } elseif ($yValueCount == 1) { + return PHPExcel_Calculation_Functions::DIV0(); + } + + $bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues); + return $bestFitLinear->getSlope(); + } + + + /** + * SMALL + * + * Returns the nth smallest value in a data set. You can use this function to + * select a value based on its relative standing. + * + * Excel Function: + * SMALL(value1[,value2[, ...]],entry) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @param int $entry Position (ordered from the smallest) in the array or range of data to return + * @return float + */ + public static function SMALL() + { + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + + // Calculate + $entry = array_pop($aArgs); + + if ((is_numeric($entry)) && (!is_string($entry))) { + $mArgs = array(); + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $mArgs[] = $arg; + } + } + $count = self::COUNT($mArgs); + $entry = floor(--$entry); + if (($entry < 0) || ($entry >= $count) || ($count == 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + sort($mArgs); + return $mArgs[$entry]; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * STANDARDIZE + * + * Returns a normalized value from a distribution characterized by mean and standard_dev. + * + * @param float $value Value to normalize + * @param float $mean Mean Value + * @param float $stdDev Standard Deviation + * @return float Standardized value + */ + public static function STANDARDIZE($value, $mean, $stdDev) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $mean = PHPExcel_Calculation_Functions::flattenSingleValue($mean); + $stdDev = PHPExcel_Calculation_Functions::flattenSingleValue($stdDev); + + if ((is_numeric($value)) && (is_numeric($mean)) && (is_numeric($stdDev))) { + if ($stdDev <= 0) { + return PHPExcel_Calculation_Functions::NaN(); + } + return ($value - $mean) / $stdDev ; + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * STDEV + * + * Estimates standard deviation based on a sample. The standard deviation is a measure of how + * widely values are dispersed from the average value (the mean). + * + * Excel Function: + * STDEV(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function STDEV() + { + $aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args()); + + // Return value + $returnValue = null; + + $aMean = self::AVERAGE($aArgs); + if (!is_null($aMean)) { + $aCount = -1; + foreach ($aArgs as $k => $arg) { + if ((is_bool($arg)) && + ((!PHPExcel_Calculation_Functions::isCellValue($k)) || (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE))) { + $arg = (integer) $arg; + } + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + if (is_null($returnValue)) { + $returnValue = pow(($arg - $aMean), 2); + } else { + $returnValue += pow(($arg - $aMean), 2); + } + ++$aCount; + } + } + + // Return + if (($aCount > 0) && ($returnValue >= 0)) { + return sqrt($returnValue / $aCount); + } + } + return PHPExcel_Calculation_Functions::DIV0(); + } + + + /** + * STDEVA + * + * Estimates standard deviation based on a sample, including numbers, text, and logical values + * + * Excel Function: + * STDEVA(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function STDEVA() + { + $aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args()); + + $returnValue = null; + + $aMean = self::AVERAGEA($aArgs); + if (!is_null($aMean)) { + $aCount = -1; + foreach ($aArgs as $k => $arg) { + if ((is_bool($arg)) && + (!PHPExcel_Calculation_Functions::isMatrixValue($k))) { + } else { + // Is it a numeric value? + if ((is_numeric($arg)) || (is_bool($arg)) || ((is_string($arg) & ($arg != '')))) { + if (is_bool($arg)) { + $arg = (integer) $arg; + } elseif (is_string($arg)) { + $arg = 0; + } + if (is_null($returnValue)) { + $returnValue = pow(($arg - $aMean), 2); + } else { + $returnValue += pow(($arg - $aMean), 2); + } + ++$aCount; + } + } + } + + if (($aCount > 0) && ($returnValue >= 0)) { + return sqrt($returnValue / $aCount); + } + } + return PHPExcel_Calculation_Functions::DIV0(); + } + + + /** + * STDEVP + * + * Calculates standard deviation based on the entire population + * + * Excel Function: + * STDEVP(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function STDEVP() + { + $aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args()); + + $returnValue = null; + + $aMean = self::AVERAGE($aArgs); + if (!is_null($aMean)) { + $aCount = 0; + foreach ($aArgs as $k => $arg) { + if ((is_bool($arg)) && + ((!PHPExcel_Calculation_Functions::isCellValue($k)) || (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE))) { + $arg = (integer) $arg; + } + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + if (is_null($returnValue)) { + $returnValue = pow(($arg - $aMean), 2); + } else { + $returnValue += pow(($arg - $aMean), 2); + } + ++$aCount; + } + } + + if (($aCount > 0) && ($returnValue >= 0)) { + return sqrt($returnValue / $aCount); + } + } + return PHPExcel_Calculation_Functions::DIV0(); + } + + + /** + * STDEVPA + * + * Calculates standard deviation based on the entire population, including numbers, text, and logical values + * + * Excel Function: + * STDEVPA(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function STDEVPA() + { + $aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args()); + + $returnValue = null; + + $aMean = self::AVERAGEA($aArgs); + if (!is_null($aMean)) { + $aCount = 0; + foreach ($aArgs as $k => $arg) { + if ((is_bool($arg)) && + (!PHPExcel_Calculation_Functions::isMatrixValue($k))) { + } else { + // Is it a numeric value? + if ((is_numeric($arg)) || (is_bool($arg)) || ((is_string($arg) & ($arg != '')))) { + if (is_bool($arg)) { + $arg = (integer) $arg; + } elseif (is_string($arg)) { + $arg = 0; + } + if (is_null($returnValue)) { + $returnValue = pow(($arg - $aMean), 2); + } else { + $returnValue += pow(($arg - $aMean), 2); + } + ++$aCount; + } + } + } + + if (($aCount > 0) && ($returnValue >= 0)) { + return sqrt($returnValue / $aCount); + } + } + return PHPExcel_Calculation_Functions::DIV0(); + } + + + /** + * STEYX + * + * Returns the standard error of the predicted y-value for each x in the regression. + * + * @param array of mixed Data Series Y + * @param array of mixed Data Series X + * @return float + */ + public static function STEYX($yValues, $xValues) + { + if (!self::checkTrendArrays($yValues, $xValues)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $yValueCount = count($yValues); + $xValueCount = count($xValues); + + if (($yValueCount == 0) || ($yValueCount != $xValueCount)) { + return PHPExcel_Calculation_Functions::NA(); + } elseif ($yValueCount == 1) { + return PHPExcel_Calculation_Functions::DIV0(); + } + + $bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues); + return $bestFitLinear->getStdevOfResiduals(); + } + + + /** + * TDIST + * + * Returns the probability of Student's T distribution. + * + * @param float $value Value for the function + * @param float $degrees degrees of freedom + * @param float $tails number of tails (1 or 2) + * @return float + */ + public static function TDIST($value, $degrees, $tails) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $degrees = floor(PHPExcel_Calculation_Functions::flattenSingleValue($degrees)); + $tails = floor(PHPExcel_Calculation_Functions::flattenSingleValue($tails)); + + if ((is_numeric($value)) && (is_numeric($degrees)) && (is_numeric($tails))) { + if (($value < 0) || ($degrees < 1) || ($tails < 1) || ($tails > 2)) { + return PHPExcel_Calculation_Functions::NaN(); + } + // tdist, which finds the probability that corresponds to a given value + // of t with k degrees of freedom. This algorithm is translated from a + // pascal function on p81 of "Statistical Computing in Pascal" by D + // Cooke, A H Craven & G M Clark (1985: Edward Arnold (Pubs.) Ltd: + // London). The above Pascal algorithm is itself a translation of the + // fortran algoritm "AS 3" by B E Cooper of the Atlas Computer + // Laboratory as reported in (among other places) "Applied Statistics + // Algorithms", editied by P Griffiths and I D Hill (1985; Ellis + // Horwood Ltd.; W. Sussex, England). + $tterm = $degrees; + $ttheta = atan2($value, sqrt($tterm)); + $tc = cos($ttheta); + $ts = sin($ttheta); + $tsum = 0; + + if (($degrees % 2) == 1) { + $ti = 3; + $tterm = $tc; + } else { + $ti = 2; + $tterm = 1; + } + + $tsum = $tterm; + while ($ti < $degrees) { + $tterm *= $tc * $tc * ($ti - 1) / $ti; + $tsum += $tterm; + $ti += 2; + } + $tsum *= $ts; + if (($degrees % 2) == 1) { + $tsum = M_2DIVPI * ($tsum + $ttheta); + } + $tValue = 0.5 * (1 + $tsum); + if ($tails == 1) { + return 1 - abs($tValue); + } else { + return 1 - abs((1 - $tValue) - $tValue); + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * TINV + * + * Returns the one-tailed probability of the chi-squared distribution. + * + * @param float $probability Probability for the function + * @param float $degrees degrees of freedom + * @return float + */ + public static function TINV($probability, $degrees) + { + $probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability); + $degrees = floor(PHPExcel_Calculation_Functions::flattenSingleValue($degrees)); + + if ((is_numeric($probability)) && (is_numeric($degrees))) { + $xLo = 100; + $xHi = 0; + + $x = $xNew = 1; + $dx = 1; + $i = 0; + + while ((abs($dx) > PRECISION) && ($i++ < MAX_ITERATIONS)) { + // Apply Newton-Raphson step + $result = self::TDIST($x, $degrees, 2); + $error = $result - $probability; + if ($error == 0.0) { + $dx = 0; + } elseif ($error < 0.0) { + $xLo = $x; + } else { + $xHi = $x; + } + // Avoid division by zero + if ($result != 0.0) { + $dx = $error / $result; + $xNew = $x - $dx; + } + // If the NR fails to converge (which for example may be the + // case if the initial guess is too rough) we apply a bisection + // step to determine a more narrow interval around the root. + if (($xNew < $xLo) || ($xNew > $xHi) || ($result == 0.0)) { + $xNew = ($xLo + $xHi) / 2; + $dx = $xNew - $x; + } + $x = $xNew; + } + if ($i == MAX_ITERATIONS) { + return PHPExcel_Calculation_Functions::NA(); + } + return round($x, 12); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * TREND + * + * Returns values along a linear trend + * + * @param array of mixed Data Series Y + * @param array of mixed Data Series X + * @param array of mixed Values of X for which we want to find Y + * @param boolean A logical value specifying whether to force the intersect to equal 0. + * @return array of float + */ + public static function TREND($yValues, $xValues = array(), $newValues = array(), $const = true) + { + $yValues = PHPExcel_Calculation_Functions::flattenArray($yValues); + $xValues = PHPExcel_Calculation_Functions::flattenArray($xValues); + $newValues = PHPExcel_Calculation_Functions::flattenArray($newValues); + $const = (is_null($const)) ? true : (boolean) PHPExcel_Calculation_Functions::flattenSingleValue($const); + + $bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues, $const); + if (empty($newValues)) { + $newValues = $bestFitLinear->getXValues(); + } + + $returnArray = array(); + foreach ($newValues as $xValue) { + $returnArray[0][] = $bestFitLinear->getValueOfYForX($xValue); + } + + return $returnArray; + } + + + /** + * TRIMMEAN + * + * Returns the mean of the interior of a data set. TRIMMEAN calculates the mean + * taken by excluding a percentage of data points from the top and bottom tails + * of a data set. + * + * Excel Function: + * TRIMEAN(value1[,value2[, ...]], $discard) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @param float $discard Percentage to discard + * @return float + */ + public static function TRIMMEAN() + { + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + + // Calculate + $percent = array_pop($aArgs); + + if ((is_numeric($percent)) && (!is_string($percent))) { + if (($percent < 0) || ($percent > 1)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $mArgs = array(); + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $mArgs[] = $arg; + } + } + $discard = floor(self::COUNT($mArgs) * $percent / 2); + sort($mArgs); + for ($i=0; $i < $discard; ++$i) { + array_pop($mArgs); + array_shift($mArgs); + } + return self::AVERAGE($mArgs); + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * VARFunc + * + * Estimates variance based on a sample. + * + * Excel Function: + * VAR(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function VARFunc() + { + $returnValue = PHPExcel_Calculation_Functions::DIV0(); + + $summerA = $summerB = 0; + + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + $aCount = 0; + foreach ($aArgs as $arg) { + if (is_bool($arg)) { + $arg = (integer) $arg; + } + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $summerA += ($arg * $arg); + $summerB += $arg; + ++$aCount; + } + } + + if ($aCount > 1) { + $summerA *= $aCount; + $summerB *= $summerB; + $returnValue = ($summerA - $summerB) / ($aCount * ($aCount - 1)); + } + return $returnValue; + } + + + /** + * VARA + * + * Estimates variance based on a sample, including numbers, text, and logical values + * + * Excel Function: + * VARA(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function VARA() + { + $returnValue = PHPExcel_Calculation_Functions::DIV0(); + + $summerA = $summerB = 0; + + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args()); + $aCount = 0; + foreach ($aArgs as $k => $arg) { + if ((is_string($arg)) && + (PHPExcel_Calculation_Functions::isValue($k))) { + return PHPExcel_Calculation_Functions::VALUE(); + } elseif ((is_string($arg)) && + (!PHPExcel_Calculation_Functions::isMatrixValue($k))) { + } else { + // Is it a numeric value? + if ((is_numeric($arg)) || (is_bool($arg)) || ((is_string($arg) & ($arg != '')))) { + if (is_bool($arg)) { + $arg = (integer) $arg; + } elseif (is_string($arg)) { + $arg = 0; + } + $summerA += ($arg * $arg); + $summerB += $arg; + ++$aCount; + } + } + } + + if ($aCount > 1) { + $summerA *= $aCount; + $summerB *= $summerB; + $returnValue = ($summerA - $summerB) / ($aCount * ($aCount - 1)); + } + return $returnValue; + } + + + /** + * VARP + * + * Calculates variance based on the entire population + * + * Excel Function: + * VARP(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function VARP() + { + // Return value + $returnValue = PHPExcel_Calculation_Functions::DIV0(); + + $summerA = $summerB = 0; + + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + $aCount = 0; + foreach ($aArgs as $arg) { + if (is_bool($arg)) { + $arg = (integer) $arg; + } + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $summerA += ($arg * $arg); + $summerB += $arg; + ++$aCount; + } + } + + if ($aCount > 0) { + $summerA *= $aCount; + $summerB *= $summerB; + $returnValue = ($summerA - $summerB) / ($aCount * $aCount); + } + return $returnValue; + } + + + /** + * VARPA + * + * Calculates variance based on the entire population, including numbers, text, and logical values + * + * Excel Function: + * VARPA(value1[,value2[, ...]]) + * + * @access public + * @category Statistical Functions + * @param mixed $arg,... Data values + * @return float + */ + public static function VARPA() + { + $returnValue = PHPExcel_Calculation_Functions::DIV0(); + + $summerA = $summerB = 0; + + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args()); + $aCount = 0; + foreach ($aArgs as $k => $arg) { + if ((is_string($arg)) && + (PHPExcel_Calculation_Functions::isValue($k))) { + return PHPExcel_Calculation_Functions::VALUE(); + } elseif ((is_string($arg)) && + (!PHPExcel_Calculation_Functions::isMatrixValue($k))) { + } else { + // Is it a numeric value? + if ((is_numeric($arg)) || (is_bool($arg)) || ((is_string($arg) & ($arg != '')))) { + if (is_bool($arg)) { + $arg = (integer) $arg; + } elseif (is_string($arg)) { + $arg = 0; + } + $summerA += ($arg * $arg); + $summerB += $arg; + ++$aCount; + } + } + } + + if ($aCount > 0) { + $summerA *= $aCount; + $summerB *= $summerB; + $returnValue = ($summerA - $summerB) / ($aCount * $aCount); + } + return $returnValue; + } + + + /** + * WEIBULL + * + * Returns the Weibull distribution. Use this distribution in reliability + * analysis, such as calculating a device's mean time to failure. + * + * @param float $value + * @param float $alpha Alpha Parameter + * @param float $beta Beta Parameter + * @param boolean $cumulative + * @return float + * + */ + public static function WEIBULL($value, $alpha, $beta, $cumulative) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $alpha = PHPExcel_Calculation_Functions::flattenSingleValue($alpha); + $beta = PHPExcel_Calculation_Functions::flattenSingleValue($beta); + + if ((is_numeric($value)) && (is_numeric($alpha)) && (is_numeric($beta))) { + if (($value < 0) || ($alpha <= 0) || ($beta <= 0)) { + return PHPExcel_Calculation_Functions::NaN(); + } + if ((is_numeric($cumulative)) || (is_bool($cumulative))) { + if ($cumulative) { + return 1 - exp(0 - pow($value / $beta, $alpha)); + } else { + return ($alpha / pow($beta, $alpha)) * pow($value, $alpha - 1) * exp(0 - pow($value / $beta, $alpha)); + } + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * ZTEST + * + * Returns the Weibull distribution. Use this distribution in reliability + * analysis, such as calculating a device's mean time to failure. + * + * @param float $dataSet + * @param float $m0 Alpha Parameter + * @param float $sigma Beta Parameter + * @param boolean $cumulative + * @return float + * + */ + public static function ZTEST($dataSet, $m0, $sigma = null) + { + $dataSet = PHPExcel_Calculation_Functions::flattenArrayIndexed($dataSet); + $m0 = PHPExcel_Calculation_Functions::flattenSingleValue($m0); + $sigma = PHPExcel_Calculation_Functions::flattenSingleValue($sigma); + + if (is_null($sigma)) { + $sigma = self::STDEV($dataSet); + } + $n = count($dataSet); + + return 1 - self::NORMSDIST((self::AVERAGE($dataSet) - $m0) / ($sigma / SQRT($n))); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/TextData.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/TextData.php new file mode 100644 index 0000000..6461d06 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/TextData.php @@ -0,0 +1,651 @@ +=0 && ord($c{0}) <= 127) { + return ord($c{0}); + } elseif (ord($c{0}) >= 192 && ord($c{0}) <= 223) { + return (ord($c{0})-192)*64 + (ord($c{1})-128); + } elseif (ord($c{0}) >= 224 && ord($c{0}) <= 239) { + return (ord($c{0})-224)*4096 + (ord($c{1})-128)*64 + (ord($c{2})-128); + } elseif (ord($c{0}) >= 240 && ord($c{0}) <= 247) { + return (ord($c{0})-240)*262144 + (ord($c{1})-128)*4096 + (ord($c{2})-128)*64 + (ord($c{3})-128); + } elseif (ord($c{0}) >= 248 && ord($c{0}) <= 251) { + return (ord($c{0})-248)*16777216 + (ord($c{1})-128)*262144 + (ord($c{2})-128)*4096 + (ord($c{3})-128)*64 + (ord($c{4})-128); + } elseif (ord($c{0}) >= 252 && ord($c{0}) <= 253) { + return (ord($c{0})-252)*1073741824 + (ord($c{1})-128)*16777216 + (ord($c{2})-128)*262144 + (ord($c{3})-128)*4096 + (ord($c{4})-128)*64 + (ord($c{5})-128); + } elseif (ord($c{0}) >= 254 && ord($c{0}) <= 255) { + // error + return PHPExcel_Calculation_Functions::VALUE(); + } + return 0; + } + + /** + * CHARACTER + * + * @param string $character Value + * @return int + */ + public static function CHARACTER($character) + { + $character = PHPExcel_Calculation_Functions::flattenSingleValue($character); + + if ((!is_numeric($character)) || ($character < 0)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + if (function_exists('mb_convert_encoding')) { + return mb_convert_encoding('&#'.intval($character).';', 'UTF-8', 'HTML-ENTITIES'); + } else { + return chr(intval($character)); + } + } + + + /** + * TRIMNONPRINTABLE + * + * @param mixed $stringValue Value to check + * @return string + */ + public static function TRIMNONPRINTABLE($stringValue = '') + { + $stringValue = PHPExcel_Calculation_Functions::flattenSingleValue($stringValue); + + if (is_bool($stringValue)) { + return ($stringValue) ? PHPExcel_Calculation::getTRUE() : PHPExcel_Calculation::getFALSE(); + } + + if (self::$invalidChars == null) { + self::$invalidChars = range(chr(0), chr(31)); + } + + if (is_string($stringValue) || is_numeric($stringValue)) { + return str_replace(self::$invalidChars, '', trim($stringValue, "\x00..\x1F")); + } + return null; + } + + + /** + * TRIMSPACES + * + * @param mixed $stringValue Value to check + * @return string + */ + public static function TRIMSPACES($stringValue = '') + { + $stringValue = PHPExcel_Calculation_Functions::flattenSingleValue($stringValue); + if (is_bool($stringValue)) { + return ($stringValue) ? PHPExcel_Calculation::getTRUE() : PHPExcel_Calculation::getFALSE(); + } + + if (is_string($stringValue) || is_numeric($stringValue)) { + return trim(preg_replace('/ +/', ' ', trim($stringValue, ' ')), ' '); + } + return null; + } + + + /** + * ASCIICODE + * + * @param string $characters Value + * @return int + */ + public static function ASCIICODE($characters) + { + if (($characters === null) || ($characters === '')) { + return PHPExcel_Calculation_Functions::VALUE(); + } + $characters = PHPExcel_Calculation_Functions::flattenSingleValue($characters); + if (is_bool($characters)) { + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE) { + $characters = (int) $characters; + } else { + $characters = ($characters) ? PHPExcel_Calculation::getTRUE() : PHPExcel_Calculation::getFALSE(); + } + } + + $character = $characters; + if ((function_exists('mb_strlen')) && (function_exists('mb_substr'))) { + if (mb_strlen($characters, 'UTF-8') > 1) { + $character = mb_substr($characters, 0, 1, 'UTF-8'); + } + return self::unicodeToOrd($character); + } else { + if (strlen($characters) > 0) { + $character = substr($characters, 0, 1); + } + return ord($character); + } + } + + + /** + * CONCATENATE + * + * @return string + */ + public static function CONCATENATE() + { + $returnValue = ''; + + // Loop through arguments + $aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args()); + foreach ($aArgs as $arg) { + if (is_bool($arg)) { + if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE) { + $arg = (int) $arg; + } else { + $arg = ($arg) ? PHPExcel_Calculation::getTRUE() : PHPExcel_Calculation::getFALSE(); + } + } + $returnValue .= $arg; + } + + return $returnValue; + } + + + /** + * DOLLAR + * + * This function converts a number to text using currency format, with the decimals rounded to the specified place. + * The format used is $#,##0.00_);($#,##0.00).. + * + * @param float $value The value to format + * @param int $decimals The number of digits to display to the right of the decimal point. + * If decimals is negative, number is rounded to the left of the decimal point. + * If you omit decimals, it is assumed to be 2 + * @return string + */ + public static function DOLLAR($value = 0, $decimals = 2) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $decimals = is_null($decimals) ? 0 : PHPExcel_Calculation_Functions::flattenSingleValue($decimals); + + // Validate parameters + if (!is_numeric($value) || !is_numeric($decimals)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $decimals = floor($decimals); + + $mask = '$#,##0'; + if ($decimals > 0) { + $mask .= '.' . str_repeat('0', $decimals); + } else { + $round = pow(10, abs($decimals)); + if ($value < 0) { + $round = 0-$round; + } + $value = PHPExcel_Calculation_MathTrig::MROUND($value, $round); + } + + return PHPExcel_Style_NumberFormat::toFormattedString($value, $mask); + + } + + + /** + * SEARCHSENSITIVE + * + * @param string $needle The string to look for + * @param string $haystack The string in which to look + * @param int $offset Offset within $haystack + * @return string + */ + public static function SEARCHSENSITIVE($needle, $haystack, $offset = 1) + { + $needle = PHPExcel_Calculation_Functions::flattenSingleValue($needle); + $haystack = PHPExcel_Calculation_Functions::flattenSingleValue($haystack); + $offset = PHPExcel_Calculation_Functions::flattenSingleValue($offset); + + if (!is_bool($needle)) { + if (is_bool($haystack)) { + $haystack = ($haystack) ? PHPExcel_Calculation::getTRUE() : PHPExcel_Calculation::getFALSE(); + } + + if (($offset > 0) && (PHPExcel_Shared_String::CountCharacters($haystack) > $offset)) { + if (PHPExcel_Shared_String::CountCharacters($needle) == 0) { + return $offset; + } + if (function_exists('mb_strpos')) { + $pos = mb_strpos($haystack, $needle, --$offset, 'UTF-8'); + } else { + $pos = strpos($haystack, $needle, --$offset); + } + if ($pos !== false) { + return ++$pos; + } + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * SEARCHINSENSITIVE + * + * @param string $needle The string to look for + * @param string $haystack The string in which to look + * @param int $offset Offset within $haystack + * @return string + */ + public static function SEARCHINSENSITIVE($needle, $haystack, $offset = 1) + { + $needle = PHPExcel_Calculation_Functions::flattenSingleValue($needle); + $haystack = PHPExcel_Calculation_Functions::flattenSingleValue($haystack); + $offset = PHPExcel_Calculation_Functions::flattenSingleValue($offset); + + if (!is_bool($needle)) { + if (is_bool($haystack)) { + $haystack = ($haystack) ? PHPExcel_Calculation::getTRUE() : PHPExcel_Calculation::getFALSE(); + } + + if (($offset > 0) && (PHPExcel_Shared_String::CountCharacters($haystack) > $offset)) { + if (PHPExcel_Shared_String::CountCharacters($needle) == 0) { + return $offset; + } + if (function_exists('mb_stripos')) { + $pos = mb_stripos($haystack, $needle, --$offset, 'UTF-8'); + } else { + $pos = stripos($haystack, $needle, --$offset); + } + if ($pos !== false) { + return ++$pos; + } + } + } + return PHPExcel_Calculation_Functions::VALUE(); + } + + + /** + * FIXEDFORMAT + * + * @param mixed $value Value to check + * @param integer $decimals + * @param boolean $no_commas + * @return boolean + */ + public static function FIXEDFORMAT($value, $decimals = 2, $no_commas = false) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $decimals = PHPExcel_Calculation_Functions::flattenSingleValue($decimals); + $no_commas = PHPExcel_Calculation_Functions::flattenSingleValue($no_commas); + + // Validate parameters + if (!is_numeric($value) || !is_numeric($decimals)) { + return PHPExcel_Calculation_Functions::NaN(); + } + $decimals = floor($decimals); + + $valueResult = round($value, $decimals); + if ($decimals < 0) { + $decimals = 0; + } + if (!$no_commas) { + $valueResult = number_format($valueResult, $decimals); + } + + return (string) $valueResult; + } + + + /** + * LEFT + * + * @param string $value Value + * @param int $chars Number of characters + * @return string + */ + public static function LEFT($value = '', $chars = 1) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $chars = PHPExcel_Calculation_Functions::flattenSingleValue($chars); + + if ($chars < 0) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + if (is_bool($value)) { + $value = ($value) ? PHPExcel_Calculation::getTRUE() : PHPExcel_Calculation::getFALSE(); + } + + if (function_exists('mb_substr')) { + return mb_substr($value, 0, $chars, 'UTF-8'); + } else { + return substr($value, 0, $chars); + } + } + + + /** + * MID + * + * @param string $value Value + * @param int $start Start character + * @param int $chars Number of characters + * @return string + */ + public static function MID($value = '', $start = 1, $chars = null) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $start = PHPExcel_Calculation_Functions::flattenSingleValue($start); + $chars = PHPExcel_Calculation_Functions::flattenSingleValue($chars); + + if (($start < 1) || ($chars < 0)) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + if (is_bool($value)) { + $value = ($value) ? PHPExcel_Calculation::getTRUE() : PHPExcel_Calculation::getFALSE(); + } + + if (function_exists('mb_substr')) { + return mb_substr($value, --$start, $chars, 'UTF-8'); + } else { + return substr($value, --$start, $chars); + } + } + + + /** + * RIGHT + * + * @param string $value Value + * @param int $chars Number of characters + * @return string + */ + public static function RIGHT($value = '', $chars = 1) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $chars = PHPExcel_Calculation_Functions::flattenSingleValue($chars); + + if ($chars < 0) { + return PHPExcel_Calculation_Functions::VALUE(); + } + + if (is_bool($value)) { + $value = ($value) ? PHPExcel_Calculation::getTRUE() : PHPExcel_Calculation::getFALSE(); + } + + if ((function_exists('mb_substr')) && (function_exists('mb_strlen'))) { + return mb_substr($value, mb_strlen($value, 'UTF-8') - $chars, $chars, 'UTF-8'); + } else { + return substr($value, strlen($value) - $chars); + } + } + + + /** + * STRINGLENGTH + * + * @param string $value Value + * @return string + */ + public static function STRINGLENGTH($value = '') + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + + if (is_bool($value)) { + $value = ($value) ? PHPExcel_Calculation::getTRUE() : PHPExcel_Calculation::getFALSE(); + } + + if (function_exists('mb_strlen')) { + return mb_strlen($value, 'UTF-8'); + } else { + return strlen($value); + } + } + + + /** + * LOWERCASE + * + * Converts a string value to upper case. + * + * @param string $mixedCaseString + * @return string + */ + public static function LOWERCASE($mixedCaseString) + { + $mixedCaseString = PHPExcel_Calculation_Functions::flattenSingleValue($mixedCaseString); + + if (is_bool($mixedCaseString)) { + $mixedCaseString = ($mixedCaseString) ? PHPExcel_Calculation::getTRUE() : PHPExcel_Calculation::getFALSE(); + } + + return PHPExcel_Shared_String::StrToLower($mixedCaseString); + } + + + /** + * UPPERCASE + * + * Converts a string value to upper case. + * + * @param string $mixedCaseString + * @return string + */ + public static function UPPERCASE($mixedCaseString) + { + $mixedCaseString = PHPExcel_Calculation_Functions::flattenSingleValue($mixedCaseString); + + if (is_bool($mixedCaseString)) { + $mixedCaseString = ($mixedCaseString) ? PHPExcel_Calculation::getTRUE() : PHPExcel_Calculation::getFALSE(); + } + + return PHPExcel_Shared_String::StrToUpper($mixedCaseString); + } + + + /** + * PROPERCASE + * + * Converts a string value to upper case. + * + * @param string $mixedCaseString + * @return string + */ + public static function PROPERCASE($mixedCaseString) + { + $mixedCaseString = PHPExcel_Calculation_Functions::flattenSingleValue($mixedCaseString); + + if (is_bool($mixedCaseString)) { + $mixedCaseString = ($mixedCaseString) ? PHPExcel_Calculation::getTRUE() : PHPExcel_Calculation::getFALSE(); + } + + return PHPExcel_Shared_String::StrToTitle($mixedCaseString); + } + + + /** + * REPLACE + * + * @param string $oldText String to modify + * @param int $start Start character + * @param int $chars Number of characters + * @param string $newText String to replace in defined position + * @return string + */ + public static function REPLACE($oldText = '', $start = 1, $chars = null, $newText) + { + $oldText = PHPExcel_Calculation_Functions::flattenSingleValue($oldText); + $start = PHPExcel_Calculation_Functions::flattenSingleValue($start); + $chars = PHPExcel_Calculation_Functions::flattenSingleValue($chars); + $newText = PHPExcel_Calculation_Functions::flattenSingleValue($newText); + + $left = self::LEFT($oldText, $start-1); + $right = self::RIGHT($oldText, self::STRINGLENGTH($oldText)-($start+$chars)+1); + + return $left.$newText.$right; + } + + + /** + * SUBSTITUTE + * + * @param string $text Value + * @param string $fromText From Value + * @param string $toText To Value + * @param integer $instance Instance Number + * @return string + */ + public static function SUBSTITUTE($text = '', $fromText = '', $toText = '', $instance = 0) + { + $text = PHPExcel_Calculation_Functions::flattenSingleValue($text); + $fromText = PHPExcel_Calculation_Functions::flattenSingleValue($fromText); + $toText = PHPExcel_Calculation_Functions::flattenSingleValue($toText); + $instance = floor(PHPExcel_Calculation_Functions::flattenSingleValue($instance)); + + if ($instance == 0) { + if (function_exists('mb_str_replace')) { + return mb_str_replace($fromText, $toText, $text); + } else { + return str_replace($fromText, $toText, $text); + } + } else { + $pos = -1; + while ($instance > 0) { + if (function_exists('mb_strpos')) { + $pos = mb_strpos($text, $fromText, $pos+1, 'UTF-8'); + } else { + $pos = strpos($text, $fromText, $pos+1); + } + if ($pos === false) { + break; + } + --$instance; + } + if ($pos !== false) { + if (function_exists('mb_strlen')) { + return self::REPLACE($text, ++$pos, mb_strlen($fromText, 'UTF-8'), $toText); + } else { + return self::REPLACE($text, ++$pos, strlen($fromText), $toText); + } + } + } + + return $text; + } + + + /** + * RETURNSTRING + * + * @param mixed $testValue Value to check + * @return boolean + */ + public static function RETURNSTRING($testValue = '') + { + $testValue = PHPExcel_Calculation_Functions::flattenSingleValue($testValue); + + if (is_string($testValue)) { + return $testValue; + } + return null; + } + + + /** + * TEXTFORMAT + * + * @param mixed $value Value to check + * @param string $format Format mask to use + * @return boolean + */ + public static function TEXTFORMAT($value, $format) + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + $format = PHPExcel_Calculation_Functions::flattenSingleValue($format); + + if ((is_string($value)) && (!is_numeric($value)) && PHPExcel_Shared_Date::isDateTimeFormatCode($format)) { + $value = PHPExcel_Calculation_DateTime::DATEVALUE($value); + } + + return (string) PHPExcel_Style_NumberFormat::toFormattedString($value, $format); + } + + /** + * VALUE + * + * @param mixed $value Value to check + * @return boolean + */ + public static function VALUE($value = '') + { + $value = PHPExcel_Calculation_Functions::flattenSingleValue($value); + + if (!is_numeric($value)) { + $numberValue = str_replace( + PHPExcel_Shared_String::getThousandsSeparator(), + '', + trim($value, " \t\n\r\0\x0B" . PHPExcel_Shared_String::getCurrencyCode()) + ); + if (is_numeric($numberValue)) { + return (float) $numberValue; + } + + $dateSetting = PHPExcel_Calculation_Functions::getReturnDateType(); + PHPExcel_Calculation_Functions::setReturnDateType(PHPExcel_Calculation_Functions::RETURNDATE_EXCEL); + + if (strpos($value, ':') !== false) { + $timeValue = PHPExcel_Calculation_DateTime::TIMEVALUE($value); + if ($timeValue !== PHPExcel_Calculation_Functions::VALUE()) { + PHPExcel_Calculation_Functions::setReturnDateType($dateSetting); + return $timeValue; + } + } + $dateValue = PHPExcel_Calculation_DateTime::DATEVALUE($value); + if ($dateValue !== PHPExcel_Calculation_Functions::VALUE()) { + PHPExcel_Calculation_Functions::setReturnDateType($dateSetting); + return $dateValue; + } + PHPExcel_Calculation_Functions::setReturnDateType($dateSetting); + + return PHPExcel_Calculation_Functions::VALUE(); + } + return (float) $value; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Token/Stack.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Token/Stack.php new file mode 100644 index 0000000..02ed5aa --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Token/Stack.php @@ -0,0 +1,111 @@ +count; + } + + /** + * Push a new entry onto the stack + * + * @param mixed $type + * @param mixed $value + * @param mixed $reference + */ + public function push($type, $value, $reference = null) + { + $this->stack[$this->count++] = array( + 'type' => $type, + 'value' => $value, + 'reference' => $reference + ); + if ($type == 'Function') { + $localeFunction = PHPExcel_Calculation::localeFunc($value); + if ($localeFunction != $value) { + $this->stack[($this->count - 1)]['localeValue'] = $localeFunction; + } + } + } + + /** + * Pop the last entry from the stack + * + * @return mixed + */ + public function pop() + { + if ($this->count > 0) { + return $this->stack[--$this->count]; + } + return null; + } + + /** + * Return an entry from the stack without removing it + * + * @param integer $n number indicating how far back in the stack we want to look + * @return mixed + */ + public function last($n = 1) + { + if ($this->count - $n < 0) { + return null; + } + return $this->stack[$this->count - $n]; + } + + /** + * Clear the stack + */ + public function clear() + { + $this->stack = array(); + $this->count = 0; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/functionlist.txt b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/functionlist.txt new file mode 100644 index 0000000..67dbd49 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/functionlist.txt @@ -0,0 +1,351 @@ +ABS +ACCRINT +ACCRINTM +ACOS +ACOSH +ADDRESS +AMORDEGRC +AMORLINC +AND +AREAS +ASC +ASIN +ASINH +ATAN +ATAN2 +ATANH +AVEDEV +AVERAGE +AVERAGEA +AVERAGEIF +AVERAGEIFS +BAHTTEXT +BESSELI +BESSELJ +BESSELK +BESSELY +BETADIST +BETAINV +BIN2DEC +BIN2HEX +BIN2OCT +BINOMDIST +CEILING +CELL +CHAR +CHIDIST +CHIINV +CHITEST +CHOOSE +CLEAN +CODE +COLUMN +COLUMNS +COMBIN +COMPLEX +CONCATENATE +CONFIDENCE +CONVERT +CORREL +COS +COSH +COUNT +COUNTA +COUNTBLANK +COUNTIF +COUNTIFS +COUPDAYBS +COUPDAYBS +COUPDAYSNC +COUPNCD +COUPNUM +COUPPCD +COVAR +CRITBINOM +CUBEKPIMEMBER +CUBEMEMBER +CUBEMEMBERPROPERTY +CUBERANKEDMEMBER +CUBESET +CUBESETCOUNT +CUBEVALUE +CUMIPMT +CUMPRINC +DATE +DATEDIF +DATEVALUE +DAVERAGE +DAY +DAYS360 +DB +DCOUNT +DCOUNTA +DDB +DEC2BIN +DEC2HEX +DEC2OCT +DEGREES +DELTA +DEVSQ +DGET +DISC +DMAX +DMIN +DOLLAR +DOLLARDE +DOLLARFR +DPRODUCT +DSTDEV +DSTDEVP +DSUM +DURATION +DVAR +DVARP +EDATE +EFFECT +EOMONTH +ERF +ERFC +ERROR.TYPE +EVEN +EXACT +EXP +EXPONDIST +FACT +FACTDOUBLE +FALSE +FDIST +FIND +FINDB +FINV +FISHER +FISHERINV +FIXED +FLOOR +FORECAST +FREQUENCY +FTEST +FV +FVSCHEDULE +GAMAMDIST +GAMMAINV +GAMMALN +GCD +GEOMEAN +GESTEP +GETPIVOTDATA +GROWTH +HARMEAN +HEX2BIN +HEX2OCT +HLOOKUP +HOUR +HYPERLINK +HYPGEOMDIST +IF +IFERROR +IMABS +IMAGINARY +IMARGUMENT +IMCONJUGATE +IMCOS +IMEXP +IMLN +IMLOG10 +IMLOG2 +IMPOWER +IMPRODUCT +IMREAL +IMSIN +IMSQRT +IMSUB +IMSUM +INDEX +INDIRECT +INFO +INT +INTERCEPT +INTRATE +IPMT +IRR +ISBLANK +ISERR +ISERROR +ISEVEN +ISLOGICAL +ISNA +ISNONTEXT +ISNUMBER +ISODD +ISPMT +ISREF +ISTEXT +JIS +KURT +LARGE +LCM +LEFT +LEFTB +LEN +LENB +LINEST +LN +LOG +LOG10 +LOGEST +LOGINV +LOGNORMDIST +LOOKUP +LOWER +MATCH +MAX +MAXA +MDETERM +MDURATION +MEDIAN +MID +MIDB +MIN +MINA +MINUTE +MINVERSE +MIRR +MMULT +MOD +MODE +MONTH +MROUND +MULTINOMIAL +N +NA +NEGBINOMDIST +NETWORKDAYS +NOMINAL +NORMDIST +NORMINV +NORMSDIST +NORMSINV +NOT +NOW +NPER +NPV +OCT2BIN +OCT2DEC +OCT2HEX +ODD +ODDFPRICE +ODDFYIELD +ODDLPRICE +ODDLYIELD +OFFSET +OR +PEARSON +PERCENTILE +PERCENTRANK +PERMUT +PHONETIC +PI +PMT +POISSON +POWER +PPMT +PRICE +PRICEDISC +PRICEMAT +PROB +PRODUCT +PROPER +PV +QUARTILE +QUOTIENT +RADIANS +RAND +RANDBETWEEN +RANK +RATE +RECEIVED +REPLACE +REPLACEB +REPT +RIGHT +RIGHTB +ROMAN +ROUND +ROUNDDOWN +ROUNDUP +ROW +ROWS +RSQ +RTD +SEARCH +SEARCHB +SECOND +SERIESSUM +SIGN +SIN +SINH +SKEW +SLN +SLOPE +SMALL +SQRT +SQRTPI +STANDARDIZE +STDEV +STDEVA +STDEVP +STDEVPA +STEYX +SUBSTITUTE +SUBTOTAL +SUM +SUMIF +SUMIFS +SUMPRODUCT +SUMSQ +SUMX2MY2 +SUMX2PY2 +SUMXMY2 +SYD +T +TAN +TANH +TBILLEQ +TBILLPRICE +TBILLYIELD +TDIST +TEXT +TIME +TIMEVALUE +TINV +TODAY +TRANSPOSE +TREND +TRIM +TRIMMEAN +TRUE +TRUNC +TTEST +TYPE +UPPER +USDOLLAR +VALUE +VAR +VARA +VARP +VARPA +VDB +VERSION +VLOOKUP +WEEKDAY +WEEKNUM +WEIBULL +WORKDAY +XIRR +XNPV +YEAR +YEARFRAC +YIELD +YIELDDISC +YIELDMAT +ZTEST diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php new file mode 100644 index 0000000..c99a3c8 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php @@ -0,0 +1,1032 @@ +parent->updateCacheData($this); + + return $this; + } + + public function detach() + { + $this->parent = null; + } + + public function attach(PHPExcel_CachedObjectStorage_CacheBase $parent) + { + $this->parent = $parent; + } + + + /** + * Create a new Cell + * + * @param mixed $pValue + * @param string $pDataType + * @param PHPExcel_Worksheet $pSheet + * @throws PHPExcel_Exception + */ + public function __construct($pValue = null, $pDataType = null, PHPExcel_Worksheet $pSheet = null) + { + // Initialise cell value + $this->value = $pValue; + + // Set worksheet cache + $this->parent = $pSheet->getCellCacheController(); + + // Set datatype? + if ($pDataType !== null) { + if ($pDataType == PHPExcel_Cell_DataType::TYPE_STRING2) { + $pDataType = PHPExcel_Cell_DataType::TYPE_STRING; + } + $this->dataType = $pDataType; + } elseif (!self::getValueBinder()->bindValue($this, $pValue)) { + throw new PHPExcel_Exception("Value could not be bound to cell."); + } + } + + /** + * Get cell coordinate column + * + * @return string + */ + public function getColumn() + { + return $this->parent->getCurrentColumn(); + } + + /** + * Get cell coordinate row + * + * @return int + */ + public function getRow() + { + return $this->parent->getCurrentRow(); + } + + /** + * Get cell coordinate + * + * @return string + */ + public function getCoordinate() + { + return $this->parent->getCurrentAddress(); + } + + /** + * Get cell value + * + * @return mixed + */ + public function getValue() + { + return $this->value; + } + + /** + * Get cell value with formatting + * + * @return string + */ + public function getFormattedValue() + { + return (string) PHPExcel_Style_NumberFormat::toFormattedString( + $this->getCalculatedValue(), + $this->getStyle() + ->getNumberFormat()->getFormatCode() + ); + } + + /** + * Set cell value + * + * Sets the value for a cell, automatically determining the datatype using the value binder + * + * @param mixed $pValue Value + * @return PHPExcel_Cell + * @throws PHPExcel_Exception + */ + public function setValue($pValue = null) + { + if (!self::getValueBinder()->bindValue($this, $pValue)) { + throw new PHPExcel_Exception("Value could not be bound to cell."); + } + return $this; + } + + /** + * Set the value for a cell, with the explicit data type passed to the method (bypassing any use of the value binder) + * + * @param mixed $pValue Value + * @param string $pDataType Explicit data type + * @return PHPExcel_Cell + * @throws PHPExcel_Exception + */ + public function setValueExplicit($pValue = null, $pDataType = PHPExcel_Cell_DataType::TYPE_STRING) + { + // set the value according to data type + switch ($pDataType) { + case PHPExcel_Cell_DataType::TYPE_NULL: + $this->value = $pValue; + break; + case PHPExcel_Cell_DataType::TYPE_STRING2: + $pDataType = PHPExcel_Cell_DataType::TYPE_STRING; + // no break + case PHPExcel_Cell_DataType::TYPE_STRING: + // Synonym for string + case PHPExcel_Cell_DataType::TYPE_INLINE: + // Rich text + $this->value = PHPExcel_Cell_DataType::checkString($pValue); + break; + case PHPExcel_Cell_DataType::TYPE_NUMERIC: + $this->value = (float) $pValue; + break; + case PHPExcel_Cell_DataType::TYPE_FORMULA: + $this->value = (string) $pValue; + break; + case PHPExcel_Cell_DataType::TYPE_BOOL: + $this->value = (bool) $pValue; + break; + case PHPExcel_Cell_DataType::TYPE_ERROR: + $this->value = PHPExcel_Cell_DataType::checkErrorCode($pValue); + break; + default: + throw new PHPExcel_Exception('Invalid datatype: ' . $pDataType); + break; + } + + // set the datatype + $this->dataType = $pDataType; + + return $this->notifyCacheController(); + } + + /** + * Get calculated cell value + * + * @deprecated Since version 1.7.8 for planned changes to cell for array formula handling + * + * @param boolean $resetLog Whether the calculation engine logger should be reset or not + * @return mixed + * @throws PHPExcel_Exception + */ + public function getCalculatedValue($resetLog = true) + { +//echo 'Cell '.$this->getCoordinate().' value is a '.$this->dataType.' with a value of '.$this->getValue().PHP_EOL; + if ($this->dataType == PHPExcel_Cell_DataType::TYPE_FORMULA) { + try { +//echo 'Cell value for '.$this->getCoordinate().' is a formula: Calculating value'.PHP_EOL; + $result = PHPExcel_Calculation::getInstance( + $this->getWorksheet()->getParent() + )->calculateCellValue($this, $resetLog); +//echo $this->getCoordinate().' calculation result is '.$result.PHP_EOL; + // We don't yet handle array returns + if (is_array($result)) { + while (is_array($result)) { + $result = array_pop($result); + } + } + } catch (PHPExcel_Exception $ex) { + if (($ex->getMessage() === 'Unable to access External Workbook') && ($this->calculatedValue !== null)) { +//echo 'Returning fallback value of '.$this->calculatedValue.' for cell '.$this->getCoordinate().PHP_EOL; + return $this->calculatedValue; // Fallback for calculations referencing external files. + } +//echo 'Calculation Exception: '.$ex->getMessage().PHP_EOL; + $result = '#N/A'; + throw new PHPExcel_Calculation_Exception( + $this->getWorksheet()->getTitle().'!'.$this->getCoordinate().' -> '.$ex->getMessage() + ); + } + + if ($result === '#Not Yet Implemented') { +//echo 'Returning fallback value of '.$this->calculatedValue.' for cell '.$this->getCoordinate().PHP_EOL; + return $this->calculatedValue; // Fallback if calculation engine does not support the formula. + } +//echo 'Returning calculated value of '.$result.' for cell '.$this->getCoordinate().PHP_EOL; + return $result; + } elseif ($this->value instanceof PHPExcel_RichText) { +// echo 'Cell value for '.$this->getCoordinate().' is rich text: Returning data value of '.$this->value.'
'; + return $this->value->getPlainText(); + } +// echo 'Cell value for '.$this->getCoordinate().' is not a formula: Returning data value of '.$this->value.'
'; + return $this->value; + } + + /** + * Set old calculated value (cached) + * + * @param mixed $pValue Value + * @return PHPExcel_Cell + */ + public function setCalculatedValue($pValue = null) + { + if ($pValue !== null) { + $this->calculatedValue = (is_numeric($pValue)) ? (float) $pValue : $pValue; + } + + return $this->notifyCacheController(); + } + + /** + * Get old calculated value (cached) + * This returns the value last calculated by MS Excel or whichever spreadsheet program was used to + * create the original spreadsheet file. + * Note that this value is not guaranteed to refelect the actual calculated value because it is + * possible that auto-calculation was disabled in the original spreadsheet, and underlying data + * values used by the formula have changed since it was last calculated. + * + * @return mixed + */ + public function getOldCalculatedValue() + { + return $this->calculatedValue; + } + + /** + * Get cell data type + * + * @return string + */ + public function getDataType() + { + return $this->dataType; + } + + /** + * Set cell data type + * + * @param string $pDataType + * @return PHPExcel_Cell + */ + public function setDataType($pDataType = PHPExcel_Cell_DataType::TYPE_STRING) + { + if ($pDataType == PHPExcel_Cell_DataType::TYPE_STRING2) { + $pDataType = PHPExcel_Cell_DataType::TYPE_STRING; + } + $this->dataType = $pDataType; + + return $this->notifyCacheController(); + } + + /** + * Identify if the cell contains a formula + * + * @return boolean + */ + public function isFormula() + { + return $this->dataType == PHPExcel_Cell_DataType::TYPE_FORMULA; + } + + /** + * Does this cell contain Data validation rules? + * + * @return boolean + * @throws PHPExcel_Exception + */ + public function hasDataValidation() + { + if (!isset($this->parent)) { + throw new PHPExcel_Exception('Cannot check for data validation when cell is not bound to a worksheet'); + } + + return $this->getWorksheet()->dataValidationExists($this->getCoordinate()); + } + + /** + * Get Data validation rules + * + * @return PHPExcel_Cell_DataValidation + * @throws PHPExcel_Exception + */ + public function getDataValidation() + { + if (!isset($this->parent)) { + throw new PHPExcel_Exception('Cannot get data validation for cell that is not bound to a worksheet'); + } + + return $this->getWorksheet()->getDataValidation($this->getCoordinate()); + } + + /** + * Set Data validation rules + * + * @param PHPExcel_Cell_DataValidation $pDataValidation + * @return PHPExcel_Cell + * @throws PHPExcel_Exception + */ + public function setDataValidation(PHPExcel_Cell_DataValidation $pDataValidation = null) + { + if (!isset($this->parent)) { + throw new PHPExcel_Exception('Cannot set data validation for cell that is not bound to a worksheet'); + } + + $this->getWorksheet()->setDataValidation($this->getCoordinate(), $pDataValidation); + + return $this->notifyCacheController(); + } + + /** + * Does this cell contain a Hyperlink? + * + * @return boolean + * @throws PHPExcel_Exception + */ + public function hasHyperlink() + { + if (!isset($this->parent)) { + throw new PHPExcel_Exception('Cannot check for hyperlink when cell is not bound to a worksheet'); + } + + return $this->getWorksheet()->hyperlinkExists($this->getCoordinate()); + } + + /** + * Get Hyperlink + * + * @return PHPExcel_Cell_Hyperlink + * @throws PHPExcel_Exception + */ + public function getHyperlink() + { + if (!isset($this->parent)) { + throw new PHPExcel_Exception('Cannot get hyperlink for cell that is not bound to a worksheet'); + } + + return $this->getWorksheet()->getHyperlink($this->getCoordinate()); + } + + /** + * Set Hyperlink + * + * @param PHPExcel_Cell_Hyperlink $pHyperlink + * @return PHPExcel_Cell + * @throws PHPExcel_Exception + */ + public function setHyperlink(PHPExcel_Cell_Hyperlink $pHyperlink = null) + { + if (!isset($this->parent)) { + throw new PHPExcel_Exception('Cannot set hyperlink for cell that is not bound to a worksheet'); + } + + $this->getWorksheet()->setHyperlink($this->getCoordinate(), $pHyperlink); + + return $this->notifyCacheController(); + } + + /** + * Get parent worksheet + * + * @return PHPExcel_CachedObjectStorage_CacheBase + */ + public function getParent() + { + return $this->parent; + } + + /** + * Get parent worksheet + * + * @return PHPExcel_Worksheet + */ + public function getWorksheet() + { + return $this->parent->getParent(); + } + + /** + * Is this cell in a merge range + * + * @return boolean + */ + public function isInMergeRange() + { + return (boolean) $this->getMergeRange(); + } + + /** + * Is this cell the master (top left cell) in a merge range (that holds the actual data value) + * + * @return boolean + */ + public function isMergeRangeValueCell() + { + if ($mergeRange = $this->getMergeRange()) { + $mergeRange = PHPExcel_Cell::splitRange($mergeRange); + list($startCell) = $mergeRange[0]; + if ($this->getCoordinate() === $startCell) { + return true; + } + } + return false; + } + + /** + * If this cell is in a merge range, then return the range + * + * @return string + */ + public function getMergeRange() + { + foreach ($this->getWorksheet()->getMergeCells() as $mergeRange) { + if ($this->isInRange($mergeRange)) { + return $mergeRange; + } + } + return false; + } + + /** + * Get cell style + * + * @return PHPExcel_Style + */ + public function getStyle() + { + return $this->getWorksheet()->getStyle($this->getCoordinate()); + } + + /** + * Re-bind parent + * + * @param PHPExcel_Worksheet $parent + * @return PHPExcel_Cell + */ + public function rebindParent(PHPExcel_Worksheet $parent) + { + $this->parent = $parent->getCellCacheController(); + + return $this->notifyCacheController(); + } + + /** + * Is cell in a specific range? + * + * @param string $pRange Cell range (e.g. A1:A1) + * @return boolean + */ + public function isInRange($pRange = 'A1:A1') + { + list($rangeStart, $rangeEnd) = self::rangeBoundaries($pRange); + + // Translate properties + $myColumn = self::columnIndexFromString($this->getColumn()); + $myRow = $this->getRow(); + + // Verify if cell is in range + return (($rangeStart[0] <= $myColumn) && ($rangeEnd[0] >= $myColumn) && + ($rangeStart[1] <= $myRow) && ($rangeEnd[1] >= $myRow) + ); + } + + /** + * Coordinate from string + * + * @param string $pCoordinateString + * @return array Array containing column and row (indexes 0 and 1) + * @throws PHPExcel_Exception + */ + public static function coordinateFromString($pCoordinateString = 'A1') + { + if (preg_match("/^([$]?[A-Z]{1,3})([$]?\d{1,7})$/", $pCoordinateString, $matches)) { + return array($matches[1],$matches[2]); + } elseif ((strpos($pCoordinateString, ':') !== false) || (strpos($pCoordinateString, ',') !== false)) { + throw new PHPExcel_Exception('Cell coordinate string can not be a range of cells'); + } elseif ($pCoordinateString == '') { + throw new PHPExcel_Exception('Cell coordinate can not be zero-length string'); + } + + throw new PHPExcel_Exception('Invalid cell coordinate '.$pCoordinateString); + } + + /** + * Make string row, column or cell coordinate absolute + * + * @param string $pCoordinateString e.g. 'A' or '1' or 'A1' + * Note that this value can be a row or column reference as well as a cell reference + * @return string Absolute coordinate e.g. '$A' or '$1' or '$A$1' + * @throws PHPExcel_Exception + */ + public static function absoluteReference($pCoordinateString = 'A1') + { + if (strpos($pCoordinateString, ':') === false && strpos($pCoordinateString, ',') === false) { + // Split out any worksheet name from the reference + $worksheet = ''; + $cellAddress = explode('!', $pCoordinateString); + if (count($cellAddress) > 1) { + list($worksheet, $pCoordinateString) = $cellAddress; + } + if ($worksheet > '') { + $worksheet .= '!'; + } + + // Create absolute coordinate + if (ctype_digit($pCoordinateString)) { + return $worksheet . '$' . $pCoordinateString; + } elseif (ctype_alpha($pCoordinateString)) { + return $worksheet . '$' . strtoupper($pCoordinateString); + } + return $worksheet . self::absoluteCoordinate($pCoordinateString); + } + + throw new PHPExcel_Exception('Cell coordinate string can not be a range of cells'); + } + + /** + * Make string coordinate absolute + * + * @param string $pCoordinateString e.g. 'A1' + * @return string Absolute coordinate e.g. '$A$1' + * @throws PHPExcel_Exception + */ + public static function absoluteCoordinate($pCoordinateString = 'A1') + { + if (strpos($pCoordinateString, ':') === false && strpos($pCoordinateString, ',') === false) { + // Split out any worksheet name from the coordinate + $worksheet = ''; + $cellAddress = explode('!', $pCoordinateString); + if (count($cellAddress) > 1) { + list($worksheet, $pCoordinateString) = $cellAddress; + } + if ($worksheet > '') { + $worksheet .= '!'; + } + + // Create absolute coordinate + list($column, $row) = self::coordinateFromString($pCoordinateString); + $column = ltrim($column, '$'); + $row = ltrim($row, '$'); + return $worksheet . '$' . $column . '$' . $row; + } + + throw new PHPExcel_Exception('Cell coordinate string can not be a range of cells'); + } + + /** + * Split range into coordinate strings + * + * @param string $pRange e.g. 'B4:D9' or 'B4:D9,H2:O11' or 'B4' + * @return array Array containg one or more arrays containing one or two coordinate strings + * e.g. array('B4','D9') or array(array('B4','D9'),array('H2','O11')) + * or array('B4') + */ + public static function splitRange($pRange = 'A1:A1') + { + // Ensure $pRange is a valid range + if (empty($pRange)) { + $pRange = self::DEFAULT_RANGE; + } + + $exploded = explode(',', $pRange); + $counter = count($exploded); + for ($i = 0; $i < $counter; ++$i) { + $exploded[$i] = explode(':', $exploded[$i]); + } + return $exploded; + } + + /** + * Build range from coordinate strings + * + * @param array $pRange Array containg one or more arrays containing one or two coordinate strings + * @return string String representation of $pRange + * @throws PHPExcel_Exception + */ + public static function buildRange($pRange) + { + // Verify range + if (!is_array($pRange) || empty($pRange) || !is_array($pRange[0])) { + throw new PHPExcel_Exception('Range does not contain any information'); + } + + // Build range + $imploded = array(); + $counter = count($pRange); + for ($i = 0; $i < $counter; ++$i) { + $pRange[$i] = implode(':', $pRange[$i]); + } + $imploded = implode(',', $pRange); + + return $imploded; + } + + /** + * Calculate range boundaries + * + * @param string $pRange Cell range (e.g. A1:A1) + * @return array Range coordinates array(Start Cell, End Cell) + * where Start Cell and End Cell are arrays (Column Number, Row Number) + */ + public static function rangeBoundaries($pRange = 'A1:A1') + { + // Ensure $pRange is a valid range + if (empty($pRange)) { + $pRange = self::DEFAULT_RANGE; + } + + // Uppercase coordinate + $pRange = strtoupper($pRange); + + // Extract range + if (strpos($pRange, ':') === false) { + $rangeA = $rangeB = $pRange; + } else { + list($rangeA, $rangeB) = explode(':', $pRange); + } + + // Calculate range outer borders + $rangeStart = self::coordinateFromString($rangeA); + $rangeEnd = self::coordinateFromString($rangeB); + + // Translate column into index + $rangeStart[0] = self::columnIndexFromString($rangeStart[0]); + $rangeEnd[0] = self::columnIndexFromString($rangeEnd[0]); + + return array($rangeStart, $rangeEnd); + } + + /** + * Calculate range dimension + * + * @param string $pRange Cell range (e.g. A1:A1) + * @return array Range dimension (width, height) + */ + public static function rangeDimension($pRange = 'A1:A1') + { + // Calculate range outer borders + list($rangeStart, $rangeEnd) = self::rangeBoundaries($pRange); + + return array( ($rangeEnd[0] - $rangeStart[0] + 1), ($rangeEnd[1] - $rangeStart[1] + 1) ); + } + + /** + * Calculate range boundaries + * + * @param string $pRange Cell range (e.g. A1:A1) + * @return array Range coordinates array(Start Cell, End Cell) + * where Start Cell and End Cell are arrays (Column ID, Row Number) + */ + public static function getRangeBoundaries($pRange = 'A1:A1') + { + // Ensure $pRange is a valid range + if (empty($pRange)) { + $pRange = self::DEFAULT_RANGE; + } + + // Uppercase coordinate + $pRange = strtoupper($pRange); + + // Extract range + if (strpos($pRange, ':') === false) { + $rangeA = $rangeB = $pRange; + } else { + list($rangeA, $rangeB) = explode(':', $pRange); + } + + return array( self::coordinateFromString($rangeA), self::coordinateFromString($rangeB)); + } + + /** + * Column index from string + * + * @param string $pString + * @return int Column index (base 1 !!!) + */ + public static function columnIndexFromString($pString = 'A') + { + // Using a lookup cache adds a slight memory overhead, but boosts speed + // caching using a static within the method is faster than a class static, + // though it's additional memory overhead + static $_indexCache = array(); + + if (isset($_indexCache[$pString])) { + return $_indexCache[$pString]; + } + // It's surprising how costly the strtoupper() and ord() calls actually are, so we use a lookup array rather than use ord() + // and make it case insensitive to get rid of the strtoupper() as well. Because it's a static, there's no significant + // memory overhead either + static $_columnLookup = array( + 'A' => 1, 'B' => 2, 'C' => 3, 'D' => 4, 'E' => 5, 'F' => 6, 'G' => 7, 'H' => 8, 'I' => 9, 'J' => 10, 'K' => 11, 'L' => 12, 'M' => 13, + 'N' => 14, 'O' => 15, 'P' => 16, 'Q' => 17, 'R' => 18, 'S' => 19, 'T' => 20, 'U' => 21, 'V' => 22, 'W' => 23, 'X' => 24, 'Y' => 25, 'Z' => 26, + 'a' => 1, 'b' => 2, 'c' => 3, 'd' => 4, 'e' => 5, 'f' => 6, 'g' => 7, 'h' => 8, 'i' => 9, 'j' => 10, 'k' => 11, 'l' => 12, 'm' => 13, + 'n' => 14, 'o' => 15, 'p' => 16, 'q' => 17, 'r' => 18, 's' => 19, 't' => 20, 'u' => 21, 'v' => 22, 'w' => 23, 'x' => 24, 'y' => 25, 'z' => 26 + ); + + // We also use the language construct isset() rather than the more costly strlen() function to match the length of $pString + // for improved performance + if (isset($pString{0})) { + if (!isset($pString{1})) { + $_indexCache[$pString] = $_columnLookup[$pString]; + return $_indexCache[$pString]; + } elseif (!isset($pString{2})) { + $_indexCache[$pString] = $_columnLookup[$pString{0}] * 26 + $_columnLookup[$pString{1}]; + return $_indexCache[$pString]; + } elseif (!isset($pString{3})) { + $_indexCache[$pString] = $_columnLookup[$pString{0}] * 676 + $_columnLookup[$pString{1}] * 26 + $_columnLookup[$pString{2}]; + return $_indexCache[$pString]; + } + } + throw new PHPExcel_Exception("Column string index can not be " . ((isset($pString{0})) ? "longer than 3 characters" : "empty")); + } + + /** + * String from columnindex + * + * @param int $pColumnIndex Column index (base 0 !!!) + * @return string + */ + public static function stringFromColumnIndex($pColumnIndex = 0) + { + // Using a lookup cache adds a slight memory overhead, but boosts speed + // caching using a static within the method is faster than a class static, + // though it's additional memory overhead + static $_indexCache = array(); + + if (!isset($_indexCache[$pColumnIndex])) { + // Determine column string + if ($pColumnIndex < 26) { + $_indexCache[$pColumnIndex] = chr(65 + $pColumnIndex); + } elseif ($pColumnIndex < 702) { + $_indexCache[$pColumnIndex] = chr(64 + ($pColumnIndex / 26)) . + chr(65 + $pColumnIndex % 26); + } else { + $_indexCache[$pColumnIndex] = chr(64 + (($pColumnIndex - 26) / 676)) . + chr(65 + ((($pColumnIndex - 26) % 676) / 26)) . + chr(65 + $pColumnIndex % 26); + } + } + return $_indexCache[$pColumnIndex]; + } + + /** + * Extract all cell references in range + * + * @param string $pRange Range (e.g. A1 or A1:C10 or A1:E10 A20:E25) + * @return array Array containing single cell references + */ + public static function extractAllCellReferencesInRange($pRange = 'A1') + { + // Returnvalue + $returnValue = array(); + + // Explode spaces + $cellBlocks = explode(' ', str_replace('$', '', strtoupper($pRange))); + foreach ($cellBlocks as $cellBlock) { + // Single cell? + if (strpos($cellBlock, ':') === false && strpos($cellBlock, ',') === false) { + $returnValue[] = $cellBlock; + continue; + } + + // Range... + $ranges = self::splitRange($cellBlock); + foreach ($ranges as $range) { + // Single cell? + if (!isset($range[1])) { + $returnValue[] = $range[0]; + continue; + } + + // Range... + list($rangeStart, $rangeEnd) = $range; + sscanf($rangeStart, '%[A-Z]%d', $startCol, $startRow); + sscanf($rangeEnd, '%[A-Z]%d', $endCol, $endRow); + ++$endCol; + + // Current data + $currentCol = $startCol; + $currentRow = $startRow; + + // Loop cells + while ($currentCol != $endCol) { + while ($currentRow <= $endRow) { + $returnValue[] = $currentCol.$currentRow; + ++$currentRow; + } + ++$currentCol; + $currentRow = $startRow; + } + } + } + + // Sort the result by column and row + $sortKeys = array(); + foreach (array_unique($returnValue) as $coord) { + sscanf($coord, '%[A-Z]%d', $column, $row); + $sortKeys[sprintf('%3s%09d', $column, $row)] = $coord; + } + ksort($sortKeys); + + // Return value + return array_values($sortKeys); + } + + /** + * Compare 2 cells + * + * @param PHPExcel_Cell $a Cell a + * @param PHPExcel_Cell $b Cell b + * @return int Result of comparison (always -1 or 1, never zero!) + */ + public static function compareCells(PHPExcel_Cell $a, PHPExcel_Cell $b) + { + if ($a->getRow() < $b->getRow()) { + return -1; + } elseif ($a->getRow() > $b->getRow()) { + return 1; + } elseif (self::columnIndexFromString($a->getColumn()) < self::columnIndexFromString($b->getColumn())) { + return -1; + } else { + return 1; + } + } + + /** + * Get value binder to use + * + * @return PHPExcel_Cell_IValueBinder + */ + public static function getValueBinder() + { + if (self::$valueBinder === null) { + self::$valueBinder = new PHPExcel_Cell_DefaultValueBinder(); + } + + return self::$valueBinder; + } + + /** + * Set value binder to use + * + * @param PHPExcel_Cell_IValueBinder $binder + * @throws PHPExcel_Exception + */ + public static function setValueBinder(PHPExcel_Cell_IValueBinder $binder = null) + { + if ($binder === null) { + throw new PHPExcel_Exception("A PHPExcel_Cell_IValueBinder is required for PHPExcel to function correctly."); + } + + self::$valueBinder = $binder; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if ((is_object($value)) && ($key != 'parent')) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } + + /** + * Get index to cellXf + * + * @return int + */ + public function getXfIndex() + { + return $this->xfIndex; + } + + /** + * Set index to cellXf + * + * @param int $pValue + * @return PHPExcel_Cell + */ + public function setXfIndex($pValue = 0) + { + $this->xfIndex = $pValue; + + return $this->notifyCacheController(); + } + + /** + * @deprecated Since version 1.7.8 for planned changes to cell for array formula handling + */ + public function setFormulaAttributes($pAttributes) + { + $this->formulaAttributes = $pAttributes; + return $this; + } + + /** + * @deprecated Since version 1.7.8 for planned changes to cell for array formula handling + */ + public function getFormulaAttributes() + { + return $this->formulaAttributes; + } + + /** + * Convert to string + * + * @return string + */ + public function __toString() + { + return (string) $this->getValue(); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/AdvancedValueBinder.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/AdvancedValueBinder.php new file mode 100644 index 0000000..061d04e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/AdvancedValueBinder.php @@ -0,0 +1,187 @@ +setValueExplicit(true, PHPExcel_Cell_DataType::TYPE_BOOL); + return true; + } elseif ($value == PHPExcel_Calculation::getFALSE()) { + $cell->setValueExplicit(false, PHPExcel_Cell_DataType::TYPE_BOOL); + return true; + } + + // Check for number in scientific format + if (preg_match('/^'.PHPExcel_Calculation::CALCULATION_REGEXP_NUMBER.'$/', $value)) { + $cell->setValueExplicit((float) $value, PHPExcel_Cell_DataType::TYPE_NUMERIC); + return true; + } + + // Check for fraction + if (preg_match('/^([+-]?)\s*([0-9]+)\s?\/\s*([0-9]+)$/', $value, $matches)) { + // Convert value to number + $value = $matches[2] / $matches[3]; + if ($matches[1] == '-') { + $value = 0 - $value; + } + $cell->setValueExplicit((float) $value, PHPExcel_Cell_DataType::TYPE_NUMERIC); + // Set style + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getNumberFormat()->setFormatCode('??/??'); + return true; + } elseif (preg_match('/^([+-]?)([0-9]*) +([0-9]*)\s?\/\s*([0-9]*)$/', $value, $matches)) { + // Convert value to number + $value = $matches[2] + ($matches[3] / $matches[4]); + if ($matches[1] == '-') { + $value = 0 - $value; + } + $cell->setValueExplicit((float) $value, PHPExcel_Cell_DataType::TYPE_NUMERIC); + // Set style + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getNumberFormat()->setFormatCode('# ??/??'); + return true; + } + + // Check for percentage + if (preg_match('/^\-?[0-9]*\.?[0-9]*\s?\%$/', $value)) { + // Convert value to number + $value = (float) str_replace('%', '', $value) / 100; + $cell->setValueExplicit($value, PHPExcel_Cell_DataType::TYPE_NUMERIC); + // Set style + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_PERCENTAGE_00); + return true; + } + + // Check for currency + $currencyCode = PHPExcel_Shared_String::getCurrencyCode(); + $decimalSeparator = PHPExcel_Shared_String::getDecimalSeparator(); + $thousandsSeparator = PHPExcel_Shared_String::getThousandsSeparator(); + if (preg_match('/^'.preg_quote($currencyCode).' *(\d{1,3}('.preg_quote($thousandsSeparator).'\d{3})*|(\d+))('.preg_quote($decimalSeparator).'\d{2})?$/', $value)) { + // Convert value to number + $value = (float) trim(str_replace(array($currencyCode, $thousandsSeparator, $decimalSeparator), array('', '', '.'), $value)); + $cell->setValueExplicit($value, PHPExcel_Cell_DataType::TYPE_NUMERIC); + // Set style + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getNumberFormat()->setFormatCode( + str_replace('$', $currencyCode, PHPExcel_Style_NumberFormat::FORMAT_CURRENCY_USD_SIMPLE) + ); + return true; + } elseif (preg_match('/^\$ *(\d{1,3}(\,\d{3})*|(\d+))(\.\d{2})?$/', $value)) { + // Convert value to number + $value = (float) trim(str_replace(array('$',','), '', $value)); + $cell->setValueExplicit($value, PHPExcel_Cell_DataType::TYPE_NUMERIC); + // Set style + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_CURRENCY_USD_SIMPLE); + return true; + } + + // Check for time without seconds e.g. '9:45', '09:45' + if (preg_match('/^(\d|[0-1]\d|2[0-3]):[0-5]\d$/', $value)) { + // Convert value to number + list($h, $m) = explode(':', $value); + $days = $h / 24 + $m / 1440; + $cell->setValueExplicit($days, PHPExcel_Cell_DataType::TYPE_NUMERIC); + // Set style + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME3); + return true; + } + + // Check for time with seconds '9:45:59', '09:45:59' + if (preg_match('/^(\d|[0-1]\d|2[0-3]):[0-5]\d:[0-5]\d$/', $value)) { + // Convert value to number + list($h, $m, $s) = explode(':', $value); + $days = $h / 24 + $m / 1440 + $s / 86400; + // Convert value to number + $cell->setValueExplicit($days, PHPExcel_Cell_DataType::TYPE_NUMERIC); + // Set style + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME4); + return true; + } + + // Check for datetime, e.g. '2008-12-31', '2008-12-31 15:59', '2008-12-31 15:59:10' + if (($d = PHPExcel_Shared_Date::stringToExcel($value)) !== false) { + // Convert value to number + $cell->setValueExplicit($d, PHPExcel_Cell_DataType::TYPE_NUMERIC); + // Determine style. Either there is a time part or not. Look for ':' + if (strpos($value, ':') !== false) { + $formatCode = 'yyyy-mm-dd h:mm'; + } else { + $formatCode = 'yyyy-mm-dd'; + } + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getNumberFormat()->setFormatCode($formatCode); + return true; + } + + // Check for newline character "\n" + if (strpos($value, "\n") !== false) { + $value = PHPExcel_Shared_String::SanitizeUTF8($value); + $cell->setValueExplicit($value, PHPExcel_Cell_DataType::TYPE_STRING); + // Set style + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getAlignment()->setWrapText(true); + return true; + } + } + + // Not bound yet? Use parent... + return parent::bindValue($cell, $value); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataType.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataType.php new file mode 100644 index 0000000..fc010e6 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataType.php @@ -0,0 +1,115 @@ + 0, + '#DIV/0!' => 1, + '#VALUE!' => 2, + '#REF!' => 3, + '#NAME?' => 4, + '#NUM!' => 5, + '#N/A' => 6 + ); + + /** + * Get list of error codes + * + * @return array + */ + public static function getErrorCodes() + { + return self::$errorCodes; + } + + /** + * DataType for value + * + * @deprecated Replaced by PHPExcel_Cell_IValueBinder infrastructure, will be removed in version 1.8.0 + * @param mixed $pValue + * @return string + */ + public static function dataTypeForValue($pValue = null) + { + return PHPExcel_Cell_DefaultValueBinder::dataTypeForValue($pValue); + } + + /** + * Check a string that it satisfies Excel requirements + * + * @param mixed Value to sanitize to an Excel string + * @return mixed Sanitized value + */ + public static function checkString($pValue = null) + { + if ($pValue instanceof PHPExcel_RichText) { + // TODO: Sanitize Rich-Text string (max. character count is 32,767) + return $pValue; + } + + // string must never be longer than 32,767 characters, truncate if necessary + $pValue = PHPExcel_Shared_String::Substring($pValue, 0, 32767); + + // we require that newline is represented as "\n" in core, not as "\r\n" or "\r" + $pValue = str_replace(array("\r\n", "\r"), "\n", $pValue); + + return $pValue; + } + + /** + * Check a value that it is a valid error code + * + * @param mixed Value to sanitize to an Excel error code + * @return string Sanitized value + */ + public static function checkErrorCode($pValue = null) + { + $pValue = (string) $pValue; + + if (!array_key_exists($pValue, self::$errorCodes)) { + $pValue = '#NULL!'; + } + + return $pValue; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataValidation.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataValidation.php new file mode 100644 index 0000000..9883633 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataValidation.php @@ -0,0 +1,492 @@ +formula1 = ''; + $this->formula2 = ''; + $this->type = PHPExcel_Cell_DataValidation::TYPE_NONE; + $this->errorStyle = PHPExcel_Cell_DataValidation::STYLE_STOP; + $this->operator = ''; + $this->allowBlank = false; + $this->showDropDown = false; + $this->showInputMessage = false; + $this->showErrorMessage = false; + $this->errorTitle = ''; + $this->error = ''; + $this->promptTitle = ''; + $this->prompt = ''; + } + + /** + * Get Formula 1 + * + * @return string + */ + public function getFormula1() + { + return $this->formula1; + } + + /** + * Set Formula 1 + * + * @param string $value + * @return PHPExcel_Cell_DataValidation + */ + public function setFormula1($value = '') + { + $this->formula1 = $value; + return $this; + } + + /** + * Get Formula 2 + * + * @return string + */ + public function getFormula2() + { + return $this->formula2; + } + + /** + * Set Formula 2 + * + * @param string $value + * @return PHPExcel_Cell_DataValidation + */ + public function setFormula2($value = '') + { + $this->formula2 = $value; + return $this; + } + + /** + * Get Type + * + * @return string + */ + public function getType() + { + return $this->type; + } + + /** + * Set Type + * + * @param string $value + * @return PHPExcel_Cell_DataValidation + */ + public function setType($value = PHPExcel_Cell_DataValidation::TYPE_NONE) + { + $this->type = $value; + return $this; + } + + /** + * Get Error style + * + * @return string + */ + public function getErrorStyle() + { + return $this->errorStyle; + } + + /** + * Set Error style + * + * @param string $value + * @return PHPExcel_Cell_DataValidation + */ + public function setErrorStyle($value = PHPExcel_Cell_DataValidation::STYLE_STOP) + { + $this->errorStyle = $value; + return $this; + } + + /** + * Get Operator + * + * @return string + */ + public function getOperator() + { + return $this->operator; + } + + /** + * Set Operator + * + * @param string $value + * @return PHPExcel_Cell_DataValidation + */ + public function setOperator($value = '') + { + $this->operator = $value; + return $this; + } + + /** + * Get Allow Blank + * + * @return boolean + */ + public function getAllowBlank() + { + return $this->allowBlank; + } + + /** + * Set Allow Blank + * + * @param boolean $value + * @return PHPExcel_Cell_DataValidation + */ + public function setAllowBlank($value = false) + { + $this->allowBlank = $value; + return $this; + } + + /** + * Get Show DropDown + * + * @return boolean + */ + public function getShowDropDown() + { + return $this->showDropDown; + } + + /** + * Set Show DropDown + * + * @param boolean $value + * @return PHPExcel_Cell_DataValidation + */ + public function setShowDropDown($value = false) + { + $this->showDropDown = $value; + return $this; + } + + /** + * Get Show InputMessage + * + * @return boolean + */ + public function getShowInputMessage() + { + return $this->showInputMessage; + } + + /** + * Set Show InputMessage + * + * @param boolean $value + * @return PHPExcel_Cell_DataValidation + */ + public function setShowInputMessage($value = false) + { + $this->showInputMessage = $value; + return $this; + } + + /** + * Get Show ErrorMessage + * + * @return boolean + */ + public function getShowErrorMessage() + { + return $this->showErrorMessage; + } + + /** + * Set Show ErrorMessage + * + * @param boolean $value + * @return PHPExcel_Cell_DataValidation + */ + public function setShowErrorMessage($value = false) + { + $this->showErrorMessage = $value; + return $this; + } + + /** + * Get Error title + * + * @return string + */ + public function getErrorTitle() + { + return $this->errorTitle; + } + + /** + * Set Error title + * + * @param string $value + * @return PHPExcel_Cell_DataValidation + */ + public function setErrorTitle($value = '') + { + $this->errorTitle = $value; + return $this; + } + + /** + * Get Error + * + * @return string + */ + public function getError() + { + return $this->error; + } + + /** + * Set Error + * + * @param string $value + * @return PHPExcel_Cell_DataValidation + */ + public function setError($value = '') + { + $this->error = $value; + return $this; + } + + /** + * Get Prompt title + * + * @return string + */ + public function getPromptTitle() + { + return $this->promptTitle; + } + + /** + * Set Prompt title + * + * @param string $value + * @return PHPExcel_Cell_DataValidation + */ + public function setPromptTitle($value = '') + { + $this->promptTitle = $value; + return $this; + } + + /** + * Get Prompt + * + * @return string + */ + public function getPrompt() + { + return $this->prompt; + } + + /** + * Set Prompt + * + * @param string $value + * @return PHPExcel_Cell_DataValidation + */ + public function setPrompt($value = '') + { + $this->prompt = $value; + return $this; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->formula1 . + $this->formula2 . + $this->type = PHPExcel_Cell_DataValidation::TYPE_NONE . + $this->errorStyle = PHPExcel_Cell_DataValidation::STYLE_STOP . + $this->operator . + ($this->allowBlank ? 't' : 'f') . + ($this->showDropDown ? 't' : 'f') . + ($this->showInputMessage ? 't' : 'f') . + ($this->showErrorMessage ? 't' : 'f') . + $this->errorTitle . + $this->error . + $this->promptTitle . + $this->prompt . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DefaultValueBinder.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DefaultValueBinder.php new file mode 100644 index 0000000..dc19e6c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DefaultValueBinder.php @@ -0,0 +1,102 @@ +format('Y-m-d H:i:s'); + } elseif (!($value instanceof PHPExcel_RichText)) { + $value = (string) $value; + } + } + + // Set value explicit + $cell->setValueExplicit($value, self::dataTypeForValue($value)); + + // Done! + return true; + } + + /** + * DataType for value + * + * @param mixed $pValue + * @return string + */ + public static function dataTypeForValue($pValue = null) + { + // Match the value against a few data types + if ($pValue === null) { + return PHPExcel_Cell_DataType::TYPE_NULL; + } elseif ($pValue === '') { + return PHPExcel_Cell_DataType::TYPE_STRING; + } elseif ($pValue instanceof PHPExcel_RichText) { + return PHPExcel_Cell_DataType::TYPE_INLINE; + } elseif ($pValue{0} === '=' && strlen($pValue) > 1) { + return PHPExcel_Cell_DataType::TYPE_FORMULA; + } elseif (is_bool($pValue)) { + return PHPExcel_Cell_DataType::TYPE_BOOL; + } elseif (is_float($pValue) || is_int($pValue)) { + return PHPExcel_Cell_DataType::TYPE_NUMERIC; + } elseif (preg_match('/^[\+\-]?([0-9]+\\.?[0-9]*|[0-9]*\\.?[0-9]+)([Ee][\-\+]?[0-2]?\d{1,3})?$/', $pValue)) { + $tValue = ltrim($pValue, '+-'); + if (is_string($pValue) && $tValue{0} === '0' && strlen($tValue) > 1 && $tValue{1} !== '.') { + return PHPExcel_Cell_DataType::TYPE_STRING; + } elseif ((strpos($pValue, '.') === false) && ($pValue > PHP_INT_MAX)) { + return PHPExcel_Cell_DataType::TYPE_STRING; + } + return PHPExcel_Cell_DataType::TYPE_NUMERIC; + } elseif (is_string($pValue) && array_key_exists($pValue, PHPExcel_Cell_DataType::getErrorCodes())) { + return PHPExcel_Cell_DataType::TYPE_ERROR; + } + + return PHPExcel_Cell_DataType::TYPE_STRING; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/Hyperlink.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/Hyperlink.php new file mode 100644 index 0000000..daab54c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/Hyperlink.php @@ -0,0 +1,124 @@ +url = $pUrl; + $this->tooltip = $pTooltip; + } + + /** + * Get URL + * + * @return string + */ + public function getUrl() + { + return $this->url; + } + + /** + * Set URL + * + * @param string $value + * @return PHPExcel_Cell_Hyperlink + */ + public function setUrl($value = '') + { + $this->url = $value; + return $this; + } + + /** + * Get tooltip + * + * @return string + */ + public function getTooltip() + { + return $this->tooltip; + } + + /** + * Set tooltip + * + * @param string $value + * @return PHPExcel_Cell_Hyperlink + */ + public function setTooltip($value = '') + { + $this->tooltip = $value; + return $this; + } + + /** + * Is this hyperlink internal? (to another worksheet) + * + * @return boolean + */ + public function isInternal() + { + return strpos($this->url, 'sheet://') !== false; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->url . + $this->tooltip . + __CLASS__ + ); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/IValueBinder.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/IValueBinder.php new file mode 100644 index 0000000..de2d0ac --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/IValueBinder.php @@ -0,0 +1,47 @@ +name = $name; + $this->title = $title; + $this->legend = $legend; + $this->xAxisLabel = $xAxisLabel; + $this->yAxisLabel = $yAxisLabel; + $this->plotArea = $plotArea; + $this->plotVisibleOnly = $plotVisibleOnly; + $this->displayBlanksAs = $displayBlanksAs; + $this->xAxis = $xAxis; + $this->yAxis = $yAxis; + $this->majorGridlines = $majorGridlines; + $this->minorGridlines = $minorGridlines; + } + + /** + * Get Name + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Get Worksheet + * + * @return PHPExcel_Worksheet + */ + public function getWorksheet() + { + return $this->worksheet; + } + + /** + * Set Worksheet + * + * @param PHPExcel_Worksheet $pValue + * @throws PHPExcel_Chart_Exception + * @return PHPExcel_Chart + */ + public function setWorksheet(PHPExcel_Worksheet $pValue = null) + { + $this->worksheet = $pValue; + + return $this; + } + + /** + * Get Title + * + * @return PHPExcel_Chart_Title + */ + public function getTitle() + { + return $this->title; + } + + /** + * Set Title + * + * @param PHPExcel_Chart_Title $title + * @return PHPExcel_Chart + */ + public function setTitle(PHPExcel_Chart_Title $title) + { + $this->title = $title; + + return $this; + } + + /** + * Get Legend + * + * @return PHPExcel_Chart_Legend + */ + public function getLegend() + { + return $this->legend; + } + + /** + * Set Legend + * + * @param PHPExcel_Chart_Legend $legend + * @return PHPExcel_Chart + */ + public function setLegend(PHPExcel_Chart_Legend $legend) + { + $this->legend = $legend; + + return $this; + } + + /** + * Get X-Axis Label + * + * @return PHPExcel_Chart_Title + */ + public function getXAxisLabel() + { + return $this->xAxisLabel; + } + + /** + * Set X-Axis Label + * + * @param PHPExcel_Chart_Title $label + * @return PHPExcel_Chart + */ + public function setXAxisLabel(PHPExcel_Chart_Title $label) + { + $this->xAxisLabel = $label; + + return $this; + } + + /** + * Get Y-Axis Label + * + * @return PHPExcel_Chart_Title + */ + public function getYAxisLabel() + { + return $this->yAxisLabel; + } + + /** + * Set Y-Axis Label + * + * @param PHPExcel_Chart_Title $label + * @return PHPExcel_Chart + */ + public function setYAxisLabel(PHPExcel_Chart_Title $label) + { + $this->yAxisLabel = $label; + + return $this; + } + + /** + * Get Plot Area + * + * @return PHPExcel_Chart_PlotArea + */ + public function getPlotArea() + { + return $this->plotArea; + } + + /** + * Get Plot Visible Only + * + * @return boolean + */ + public function getPlotVisibleOnly() + { + return $this->plotVisibleOnly; + } + + /** + * Set Plot Visible Only + * + * @param boolean $plotVisibleOnly + * @return PHPExcel_Chart + */ + public function setPlotVisibleOnly($plotVisibleOnly = true) + { + $this->plotVisibleOnly = $plotVisibleOnly; + + return $this; + } + + /** + * Get Display Blanks as + * + * @return string + */ + public function getDisplayBlanksAs() + { + return $this->displayBlanksAs; + } + + /** + * Set Display Blanks as + * + * @param string $displayBlanksAs + * @return PHPExcel_Chart + */ + public function setDisplayBlanksAs($displayBlanksAs = '0') + { + $this->displayBlanksAs = $displayBlanksAs; + } + + + /** + * Get yAxis + * + * @return PHPExcel_Chart_Axis + */ + public function getChartAxisY() + { + if ($this->yAxis !== null) { + return $this->yAxis; + } + + return new PHPExcel_Chart_Axis(); + } + + /** + * Get xAxis + * + * @return PHPExcel_Chart_Axis + */ + public function getChartAxisX() + { + if ($this->xAxis !== null) { + return $this->xAxis; + } + + return new PHPExcel_Chart_Axis(); + } + + /** + * Get Major Gridlines + * + * @return PHPExcel_Chart_GridLines + */ + public function getMajorGridlines() + { + if ($this->majorGridlines !== null) { + return $this->majorGridlines; + } + + return new PHPExcel_Chart_GridLines(); + } + + /** + * Get Minor Gridlines + * + * @return PHPExcel_Chart_GridLines + */ + public function getMinorGridlines() + { + if ($this->minorGridlines !== null) { + return $this->minorGridlines; + } + + return new PHPExcel_Chart_GridLines(); + } + + + /** + * Set the Top Left position for the chart + * + * @param string $cell + * @param integer $xOffset + * @param integer $yOffset + * @return PHPExcel_Chart + */ + public function setTopLeftPosition($cell, $xOffset = null, $yOffset = null) + { + $this->topLeftCellRef = $cell; + if (!is_null($xOffset)) { + $this->setTopLeftXOffset($xOffset); + } + if (!is_null($yOffset)) { + $this->setTopLeftYOffset($yOffset); + } + + return $this; + } + + /** + * Get the top left position of the chart + * + * @return array an associative array containing the cell address, X-Offset and Y-Offset from the top left of that cell + */ + public function getTopLeftPosition() + { + return array( + 'cell' => $this->topLeftCellRef, + 'xOffset' => $this->topLeftXOffset, + 'yOffset' => $this->topLeftYOffset + ); + } + + /** + * Get the cell address where the top left of the chart is fixed + * + * @return string + */ + public function getTopLeftCell() + { + return $this->topLeftCellRef; + } + + /** + * Set the Top Left cell position for the chart + * + * @param string $cell + * @return PHPExcel_Chart + */ + public function setTopLeftCell($cell) + { + $this->topLeftCellRef = $cell; + + return $this; + } + + /** + * Set the offset position within the Top Left cell for the chart + * + * @param integer $xOffset + * @param integer $yOffset + * @return PHPExcel_Chart + */ + public function setTopLeftOffset($xOffset = null, $yOffset = null) + { + if (!is_null($xOffset)) { + $this->setTopLeftXOffset($xOffset); + } + if (!is_null($yOffset)) { + $this->setTopLeftYOffset($yOffset); + } + + return $this; + } + + /** + * Get the offset position within the Top Left cell for the chart + * + * @return integer[] + */ + public function getTopLeftOffset() + { + return array( + 'X' => $this->topLeftXOffset, + 'Y' => $this->topLeftYOffset + ); + } + + public function setTopLeftXOffset($xOffset) + { + $this->topLeftXOffset = $xOffset; + + return $this; + } + + public function getTopLeftXOffset() + { + return $this->topLeftXOffset; + } + + public function setTopLeftYOffset($yOffset) + { + $this->topLeftYOffset = $yOffset; + + return $this; + } + + public function getTopLeftYOffset() + { + return $this->topLeftYOffset; + } + + /** + * Set the Bottom Right position of the chart + * + * @param string $cell + * @param integer $xOffset + * @param integer $yOffset + * @return PHPExcel_Chart + */ + public function setBottomRightPosition($cell, $xOffset = null, $yOffset = null) + { + $this->bottomRightCellRef = $cell; + if (!is_null($xOffset)) { + $this->setBottomRightXOffset($xOffset); + } + if (!is_null($yOffset)) { + $this->setBottomRightYOffset($yOffset); + } + + return $this; + } + + /** + * Get the bottom right position of the chart + * + * @return array an associative array containing the cell address, X-Offset and Y-Offset from the top left of that cell + */ + public function getBottomRightPosition() + { + return array( + 'cell' => $this->bottomRightCellRef, + 'xOffset' => $this->bottomRightXOffset, + 'yOffset' => $this->bottomRightYOffset + ); + } + + public function setBottomRightCell($cell) + { + $this->bottomRightCellRef = $cell; + + return $this; + } + + /** + * Get the cell address where the bottom right of the chart is fixed + * + * @return string + */ + public function getBottomRightCell() + { + return $this->bottomRightCellRef; + } + + /** + * Set the offset position within the Bottom Right cell for the chart + * + * @param integer $xOffset + * @param integer $yOffset + * @return PHPExcel_Chart + */ + public function setBottomRightOffset($xOffset = null, $yOffset = null) + { + if (!is_null($xOffset)) { + $this->setBottomRightXOffset($xOffset); + } + if (!is_null($yOffset)) { + $this->setBottomRightYOffset($yOffset); + } + + return $this; + } + + /** + * Get the offset position within the Bottom Right cell for the chart + * + * @return integer[] + */ + public function getBottomRightOffset() + { + return array( + 'X' => $this->bottomRightXOffset, + 'Y' => $this->bottomRightYOffset + ); + } + + public function setBottomRightXOffset($xOffset) + { + $this->bottomRightXOffset = $xOffset; + + return $this; + } + + public function getBottomRightXOffset() + { + return $this->bottomRightXOffset; + } + + public function setBottomRightYOffset($yOffset) + { + $this->bottomRightYOffset = $yOffset; + + return $this; + } + + public function getBottomRightYOffset() + { + return $this->bottomRightYOffset; + } + + + public function refresh() + { + if ($this->worksheet !== null) { + $this->plotArea->refresh($this->worksheet); + } + } + + public function render($outputDestination = null) + { + $libraryName = PHPExcel_Settings::getChartRendererName(); + if (is_null($libraryName)) { + return false; + } + // Ensure that data series values are up-to-date before we render + $this->refresh(); + + $libraryPath = PHPExcel_Settings::getChartRendererPath(); + $includePath = str_replace('\\', '/', get_include_path()); + $rendererPath = str_replace('\\', '/', $libraryPath); + if (strpos($rendererPath, $includePath) === false) { + set_include_path(get_include_path() . PATH_SEPARATOR . $libraryPath); + } + + $rendererName = 'PHPExcel_Chart_Renderer_'.$libraryName; + $renderer = new $rendererName($this); + + if ($outputDestination == 'php://output') { + $outputDestination = null; + } + return $renderer->render($outputDestination); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Axis.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Axis.php new file mode 100644 index 0000000..9aeafc6 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Axis.php @@ -0,0 +1,561 @@ + self::FORMAT_CODE_GENERAL, + 'source_linked' => 1 + ); + + /** + * Axis Options + * + * @var array of mixed + */ + private $axisOptions = array( + 'minimum' => null, + 'maximum' => null, + 'major_unit' => null, + 'minor_unit' => null, + 'orientation' => self::ORIENTATION_NORMAL, + 'minor_tick_mark' => self::TICK_MARK_NONE, + 'major_tick_mark' => self::TICK_MARK_NONE, + 'axis_labels' => self::AXIS_LABELS_NEXT_TO, + 'horizontal_crosses' => self::HORIZONTAL_CROSSES_AUTOZERO, + 'horizontal_crosses_value' => null + ); + + /** + * Fill Properties + * + * @var array of mixed + */ + private $fillProperties = array( + 'type' => self::EXCEL_COLOR_TYPE_ARGB, + 'value' => null, + 'alpha' => 0 + ); + + /** + * Line Properties + * + * @var array of mixed + */ + private $lineProperties = array( + 'type' => self::EXCEL_COLOR_TYPE_ARGB, + 'value' => null, + 'alpha' => 0 + ); + + /** + * Line Style Properties + * + * @var array of mixed + */ + private $lineStyleProperties = array( + 'width' => '9525', + 'compound' => self::LINE_STYLE_COMPOUND_SIMPLE, + 'dash' => self::LINE_STYLE_DASH_SOLID, + 'cap' => self::LINE_STYLE_CAP_FLAT, + 'join' => self::LINE_STYLE_JOIN_BEVEL, + 'arrow' => array( + 'head' => array( + 'type' => self::LINE_STYLE_ARROW_TYPE_NOARROW, + 'size' => self::LINE_STYLE_ARROW_SIZE_5 + ), + 'end' => array( + 'type' => self::LINE_STYLE_ARROW_TYPE_NOARROW, + 'size' => self::LINE_STYLE_ARROW_SIZE_8 + ), + ) + ); + + /** + * Shadow Properties + * + * @var array of mixed + */ + private $shadowProperties = array( + 'presets' => self::SHADOW_PRESETS_NOSHADOW, + 'effect' => null, + 'color' => array( + 'type' => self::EXCEL_COLOR_TYPE_STANDARD, + 'value' => 'black', + 'alpha' => 40, + ), + 'size' => array( + 'sx' => null, + 'sy' => null, + 'kx' => null + ), + 'blur' => null, + 'direction' => null, + 'distance' => null, + 'algn' => null, + 'rotWithShape' => null + ); + + /** + * Glow Properties + * + * @var array of mixed + */ + private $glowProperties = array( + 'size' => null, + 'color' => array( + 'type' => self::EXCEL_COLOR_TYPE_STANDARD, + 'value' => 'black', + 'alpha' => 40 + ) + ); + + /** + * Soft Edge Properties + * + * @var array of mixed + */ + private $softEdges = array( + 'size' => null + ); + + /** + * Get Series Data Type + * + * @return string + */ + public function setAxisNumberProperties($format_code) + { + $this->axisNumber['format'] = (string) $format_code; + $this->axisNumber['source_linked'] = 0; + } + + /** + * Get Axis Number Format Data Type + * + * @return string + */ + public function getAxisNumberFormat() + { + return $this->axisNumber['format']; + } + + /** + * Get Axis Number Source Linked + * + * @return string + */ + public function getAxisNumberSourceLinked() + { + return (string) $this->axisNumber['source_linked']; + } + + /** + * Set Axis Options Properties + * + * @param string $axis_labels + * @param string $horizontal_crosses_value + * @param string $horizontal_crosses + * @param string $axis_orientation + * @param string $major_tmt + * @param string $minor_tmt + * @param string $minimum + * @param string $maximum + * @param string $major_unit + * @param string $minor_unit + * + */ + public function setAxisOptionsProperties($axis_labels, $horizontal_crosses_value = null, $horizontal_crosses = null, $axis_orientation = null, $major_tmt = null, $minor_tmt = null, $minimum = null, $maximum = null, $major_unit = null, $minor_unit = null) + { + $this->axisOptions['axis_labels'] = (string) $axis_labels; + ($horizontal_crosses_value !== null) ? $this->axisOptions['horizontal_crosses_value'] = (string) $horizontal_crosses_value : null; + ($horizontal_crosses !== null) ? $this->axisOptions['horizontal_crosses'] = (string) $horizontal_crosses : null; + ($axis_orientation !== null) ? $this->axisOptions['orientation'] = (string) $axis_orientation : null; + ($major_tmt !== null) ? $this->axisOptions['major_tick_mark'] = (string) $major_tmt : null; + ($minor_tmt !== null) ? $this->axisOptions['minor_tick_mark'] = (string) $minor_tmt : null; + ($minor_tmt !== null) ? $this->axisOptions['minor_tick_mark'] = (string) $minor_tmt : null; + ($minimum !== null) ? $this->axisOptions['minimum'] = (string) $minimum : null; + ($maximum !== null) ? $this->axisOptions['maximum'] = (string) $maximum : null; + ($major_unit !== null) ? $this->axisOptions['major_unit'] = (string) $major_unit : null; + ($minor_unit !== null) ? $this->axisOptions['minor_unit'] = (string) $minor_unit : null; + } + + /** + * Get Axis Options Property + * + * @param string $property + * + * @return string + */ + public function getAxisOptionsProperty($property) + { + return $this->axisOptions[$property]; + } + + /** + * Set Axis Orientation Property + * + * @param string $orientation + * + */ + public function setAxisOrientation($orientation) + { + $this->orientation = (string) $orientation; + } + + /** + * Set Fill Property + * + * @param string $color + * @param int $alpha + * @param string $type + * + */ + public function setFillParameters($color, $alpha = 0, $type = self::EXCEL_COLOR_TYPE_ARGB) + { + $this->fillProperties = $this->setColorProperties($color, $alpha, $type); + } + + /** + * Set Line Property + * + * @param string $color + * @param int $alpha + * @param string $type + * + */ + public function setLineParameters($color, $alpha = 0, $type = self::EXCEL_COLOR_TYPE_ARGB) + { + $this->lineProperties = $this->setColorProperties($color, $alpha, $type); + } + + /** + * Get Fill Property + * + * @param string $property + * + * @return string + */ + public function getFillProperty($property) + { + return $this->fillProperties[$property]; + } + + /** + * Get Line Property + * + * @param string $property + * + * @return string + */ + public function getLineProperty($property) + { + return $this->lineProperties[$property]; + } + + /** + * Set Line Style Properties + * + * @param float $line_width + * @param string $compound_type + * @param string $dash_type + * @param string $cap_type + * @param string $join_type + * @param string $head_arrow_type + * @param string $head_arrow_size + * @param string $end_arrow_type + * @param string $end_arrow_size + * + */ + public function setLineStyleProperties($line_width = null, $compound_type = null, $dash_type = null, $cap_type = null, $join_type = null, $head_arrow_type = null, $head_arrow_size = null, $end_arrow_type = null, $end_arrow_size = null) + { + (!is_null($line_width)) ? $this->lineStyleProperties['width'] = $this->getExcelPointsWidth((float) $line_width) : null; + (!is_null($compound_type)) ? $this->lineStyleProperties['compound'] = (string) $compound_type : null; + (!is_null($dash_type)) ? $this->lineStyleProperties['dash'] = (string) $dash_type : null; + (!is_null($cap_type)) ? $this->lineStyleProperties['cap'] = (string) $cap_type : null; + (!is_null($join_type)) ? $this->lineStyleProperties['join'] = (string) $join_type : null; + (!is_null($head_arrow_type)) ? $this->lineStyleProperties['arrow']['head']['type'] = (string) $head_arrow_type : null; + (!is_null($head_arrow_size)) ? $this->lineStyleProperties['arrow']['head']['size'] = (string) $head_arrow_size : null; + (!is_null($end_arrow_type)) ? $this->lineStyleProperties['arrow']['end']['type'] = (string) $end_arrow_type : null; + (!is_null($end_arrow_size)) ? $this->lineStyleProperties['arrow']['end']['size'] = (string) $end_arrow_size : null; + } + + /** + * Get Line Style Property + * + * @param array|string $elements + * + * @return string + */ + public function getLineStyleProperty($elements) + { + return $this->getArrayElementsValue($this->lineStyleProperties, $elements); + } + + /** + * Get Line Style Arrow Excel Width + * + * @param string $arrow + * + * @return string + */ + public function getLineStyleArrowWidth($arrow) + { + return $this->getLineStyleArrowSize($this->lineStyleProperties['arrow'][$arrow]['size'], 'w'); + } + + /** + * Get Line Style Arrow Excel Length + * + * @param string $arrow + * + * @return string + */ + public function getLineStyleArrowLength($arrow) + { + return $this->getLineStyleArrowSize($this->lineStyleProperties['arrow'][$arrow]['size'], 'len'); + } + + /** + * Set Shadow Properties + * + * @param int $shadow_presets + * @param string $sh_color_value + * @param string $sh_color_type + * @param string $sh_color_alpha + * @param float $sh_blur + * @param int $sh_angle + * @param float $sh_distance + * + */ + public function setShadowProperties($sh_presets, $sh_color_value = null, $sh_color_type = null, $sh_color_alpha = null, $sh_blur = null, $sh_angle = null, $sh_distance = null) + { + $this->setShadowPresetsProperties((int) $sh_presets) + ->setShadowColor( + is_null($sh_color_value) ? $this->shadowProperties['color']['value'] : $sh_color_value, + is_null($sh_color_alpha) ? (int) $this->shadowProperties['color']['alpha'] : $sh_color_alpha, + is_null($sh_color_type) ? $this->shadowProperties['color']['type'] : $sh_color_type + ) + ->setShadowBlur($sh_blur) + ->setShadowAngle($sh_angle) + ->setShadowDistance($sh_distance); + } + + /** + * Set Shadow Color + * + * @param int $shadow_presets + * + * @return PHPExcel_Chart_Axis + */ + private function setShadowPresetsProperties($shadow_presets) + { + $this->shadowProperties['presets'] = $shadow_presets; + $this->setShadowProperiesMapValues($this->getShadowPresetsMap($shadow_presets)); + + return $this; + } + + /** + * Set Shadow Properties from Maped Values + * + * @param array $properties_map + * @param * $reference + * + * @return PHPExcel_Chart_Axis + */ + private function setShadowProperiesMapValues(array $properties_map, &$reference = null) + { + $base_reference = $reference; + foreach ($properties_map as $property_key => $property_val) { + if (is_array($property_val)) { + if ($reference === null) { + $reference = & $this->shadowProperties[$property_key]; + } else { + $reference = & $reference[$property_key]; + } + $this->setShadowProperiesMapValues($property_val, $reference); + } else { + if ($base_reference === null) { + $this->shadowProperties[$property_key] = $property_val; + } else { + $reference[$property_key] = $property_val; + } + } + } + + return $this; + } + + /** + * Set Shadow Color + * + * @param string $color + * @param int $alpha + * @param string $type + * + * @return PHPExcel_Chart_Axis + */ + private function setShadowColor($color, $alpha, $type) + { + $this->shadowProperties['color'] = $this->setColorProperties($color, $alpha, $type); + + return $this; + } + + /** + * Set Shadow Blur + * + * @param float $blur + * + * @return PHPExcel_Chart_Axis + */ + private function setShadowBlur($blur) + { + if ($blur !== null) { + $this->shadowProperties['blur'] = (string) $this->getExcelPointsWidth($blur); + } + + return $this; + } + + /** + * Set Shadow Angle + * + * @param int $angle + * + * @return PHPExcel_Chart_Axis + */ + private function setShadowAngle($angle) + { + if ($angle !== null) { + $this->shadowProperties['direction'] = (string) $this->getExcelPointsAngle($angle); + } + + return $this; + } + + /** + * Set Shadow Distance + * + * @param float $distance + * + * @return PHPExcel_Chart_Axis + */ + private function setShadowDistance($distance) + { + if ($distance !== null) { + $this->shadowProperties['distance'] = (string) $this->getExcelPointsWidth($distance); + } + + return $this; + } + + /** + * Get Glow Property + * + * @param float $size + * @param string $color_value + * @param int $color_alpha + * @param string $color_type + */ + public function getShadowProperty($elements) + { + return $this->getArrayElementsValue($this->shadowProperties, $elements); + } + + /** + * Set Glow Properties + * + * @param float $size + * @param string $color_value + * @param int $color_alpha + * @param string $color_type + */ + public function setGlowProperties($size, $color_value = null, $color_alpha = null, $color_type = null) + { + $this->setGlowSize($size) + ->setGlowColor( + is_null($color_value) ? $this->glowProperties['color']['value'] : $color_value, + is_null($color_alpha) ? (int) $this->glowProperties['color']['alpha'] : $color_alpha, + is_null($color_type) ? $this->glowProperties['color']['type'] : $color_type + ); + } + + /** + * Get Glow Property + * + * @param array|string $property + * + * @return string + */ + public function getGlowProperty($property) + { + return $this->getArrayElementsValue($this->glowProperties, $property); + } + + /** + * Set Glow Color + * + * @param float $size + * + * @return PHPExcel_Chart_Axis + */ + private function setGlowSize($size) + { + if (!is_null($size)) { + $this->glowProperties['size'] = $this->getExcelPointsWidth($size); + } + + return $this; + } + + /** + * Set Glow Color + * + * @param string $color + * @param int $alpha + * @param string $type + * + * @return PHPExcel_Chart_Axis + */ + private function setGlowColor($color, $alpha, $type) + { + $this->glowProperties['color'] = $this->setColorProperties($color, $alpha, $type); + + return $this; + } + + /** + * Set Soft Edges Size + * + * @param float $size + */ + public function setSoftEdges($size) + { + if (!is_null($size)) { + $softEdges['size'] = (string) $this->getExcelPointsWidth($size); + } + } + + /** + * Get Soft Edges Size + * + * @return string + */ + public function getSoftEdgesSize() + { + return $this->softEdges['size']; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeries.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeries.php new file mode 100644 index 0000000..9ecd543 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeries.php @@ -0,0 +1,390 @@ +plotType = $plotType; + $this->plotGrouping = $plotGrouping; + $this->plotOrder = $plotOrder; + $keys = array_keys($plotValues); + $this->plotValues = $plotValues; + if ((count($plotLabel) == 0) || (is_null($plotLabel[$keys[0]]))) { + $plotLabel[$keys[0]] = new PHPExcel_Chart_DataSeriesValues(); + } + + $this->plotLabel = $plotLabel; + if ((count($plotCategory) == 0) || (is_null($plotCategory[$keys[0]]))) { + $plotCategory[$keys[0]] = new PHPExcel_Chart_DataSeriesValues(); + } + $this->plotCategory = $plotCategory; + $this->smoothLine = $smoothLine; + $this->plotStyle = $plotStyle; + + if (is_null($plotDirection)) { + $plotDirection = self::DIRECTION_COL; + } + $this->plotDirection = $plotDirection; + } + + /** + * Get Plot Type + * + * @return string + */ + public function getPlotType() + { + return $this->plotType; + } + + /** + * Set Plot Type + * + * @param string $plotType + * @return PHPExcel_Chart_DataSeries + */ + public function setPlotType($plotType = '') + { + $this->plotType = $plotType; + return $this; + } + + /** + * Get Plot Grouping Type + * + * @return string + */ + public function getPlotGrouping() + { + return $this->plotGrouping; + } + + /** + * Set Plot Grouping Type + * + * @param string $groupingType + * @return PHPExcel_Chart_DataSeries + */ + public function setPlotGrouping($groupingType = null) + { + $this->plotGrouping = $groupingType; + return $this; + } + + /** + * Get Plot Direction + * + * @return string + */ + public function getPlotDirection() + { + return $this->plotDirection; + } + + /** + * Set Plot Direction + * + * @param string $plotDirection + * @return PHPExcel_Chart_DataSeries + */ + public function setPlotDirection($plotDirection = null) + { + $this->plotDirection = $plotDirection; + return $this; + } + + /** + * Get Plot Order + * + * @return string + */ + public function getPlotOrder() + { + return $this->plotOrder; + } + + /** + * Get Plot Labels + * + * @return array of PHPExcel_Chart_DataSeriesValues + */ + public function getPlotLabels() + { + return $this->plotLabel; + } + + /** + * Get Plot Label by Index + * + * @return PHPExcel_Chart_DataSeriesValues + */ + public function getPlotLabelByIndex($index) + { + $keys = array_keys($this->plotLabel); + if (in_array($index, $keys)) { + return $this->plotLabel[$index]; + } elseif (isset($keys[$index])) { + return $this->plotLabel[$keys[$index]]; + } + return false; + } + + /** + * Get Plot Categories + * + * @return array of PHPExcel_Chart_DataSeriesValues + */ + public function getPlotCategories() + { + return $this->plotCategory; + } + + /** + * Get Plot Category by Index + * + * @return PHPExcel_Chart_DataSeriesValues + */ + public function getPlotCategoryByIndex($index) + { + $keys = array_keys($this->plotCategory); + if (in_array($index, $keys)) { + return $this->plotCategory[$index]; + } elseif (isset($keys[$index])) { + return $this->plotCategory[$keys[$index]]; + } + return false; + } + + /** + * Get Plot Style + * + * @return string + */ + public function getPlotStyle() + { + return $this->plotStyle; + } + + /** + * Set Plot Style + * + * @param string $plotStyle + * @return PHPExcel_Chart_DataSeries + */ + public function setPlotStyle($plotStyle = null) + { + $this->plotStyle = $plotStyle; + return $this; + } + + /** + * Get Plot Values + * + * @return array of PHPExcel_Chart_DataSeriesValues + */ + public function getPlotValues() + { + return $this->plotValues; + } + + /** + * Get Plot Values by Index + * + * @return PHPExcel_Chart_DataSeriesValues + */ + public function getPlotValuesByIndex($index) + { + $keys = array_keys($this->plotValues); + if (in_array($index, $keys)) { + return $this->plotValues[$index]; + } elseif (isset($keys[$index])) { + return $this->plotValues[$keys[$index]]; + } + return false; + } + + /** + * Get Number of Plot Series + * + * @return integer + */ + public function getPlotSeriesCount() + { + return count($this->plotValues); + } + + /** + * Get Smooth Line + * + * @return boolean + */ + public function getSmoothLine() + { + return $this->smoothLine; + } + + /** + * Set Smooth Line + * + * @param boolean $smoothLine + * @return PHPExcel_Chart_DataSeries + */ + public function setSmoothLine($smoothLine = true) + { + $this->smoothLine = $smoothLine; + return $this; + } + + public function refresh(PHPExcel_Worksheet $worksheet) + { + foreach ($this->plotValues as $plotValues) { + if ($plotValues !== null) { + $plotValues->refresh($worksheet, true); + } + } + foreach ($this->plotLabel as $plotValues) { + if ($plotValues !== null) { + $plotValues->refresh($worksheet, true); + } + } + foreach ($this->plotCategory as $plotValues) { + if ($plotValues !== null) { + $plotValues->refresh($worksheet, false); + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeriesValues.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeriesValues.php new file mode 100644 index 0000000..ea57e52 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeriesValues.php @@ -0,0 +1,333 @@ +setDataType($dataType); + $this->dataSource = $dataSource; + $this->formatCode = $formatCode; + $this->pointCount = $pointCount; + $this->dataValues = $dataValues; + $this->pointMarker = $marker; + } + + /** + * Get Series Data Type + * + * @return string + */ + public function getDataType() + { + return $this->dataType; + } + + /** + * Set Series Data Type + * + * @param string $dataType Datatype of this data series + * Typical values are: + * PHPExcel_Chart_DataSeriesValues::DATASERIES_TYPE_STRING + * Normally used for axis point values + * PHPExcel_Chart_DataSeriesValues::DATASERIES_TYPE_NUMBER + * Normally used for chart data values + * @return PHPExcel_Chart_DataSeriesValues + */ + public function setDataType($dataType = self::DATASERIES_TYPE_NUMBER) + { + if (!in_array($dataType, self::$dataTypeValues)) { + throw new PHPExcel_Chart_Exception('Invalid datatype for chart data series values'); + } + $this->dataType = $dataType; + + return $this; + } + + /** + * Get Series Data Source (formula) + * + * @return string + */ + public function getDataSource() + { + return $this->dataSource; + } + + /** + * Set Series Data Source (formula) + * + * @param string $dataSource + * @return PHPExcel_Chart_DataSeriesValues + */ + public function setDataSource($dataSource = null, $refreshDataValues = true) + { + $this->dataSource = $dataSource; + + if ($refreshDataValues) { + // TO DO + } + + return $this; + } + + /** + * Get Point Marker + * + * @return string + */ + public function getPointMarker() + { + return $this->pointMarker; + } + + /** + * Set Point Marker + * + * @param string $marker + * @return PHPExcel_Chart_DataSeriesValues + */ + public function setPointMarker($marker = null) + { + $this->pointMarker = $marker; + + return $this; + } + + /** + * Get Series Format Code + * + * @return string + */ + public function getFormatCode() + { + return $this->formatCode; + } + + /** + * Set Series Format Code + * + * @param string $formatCode + * @return PHPExcel_Chart_DataSeriesValues + */ + public function setFormatCode($formatCode = null) + { + $this->formatCode = $formatCode; + + return $this; + } + + /** + * Get Series Point Count + * + * @return integer + */ + public function getPointCount() + { + return $this->pointCount; + } + + /** + * Identify if the Data Series is a multi-level or a simple series + * + * @return boolean + */ + public function isMultiLevelSeries() + { + if (count($this->dataValues) > 0) { + return is_array($this->dataValues[0]); + } + return null; + } + + /** + * Return the level count of a multi-level Data Series + * + * @return boolean + */ + public function multiLevelCount() + { + $levelCount = 0; + foreach ($this->dataValues as $dataValueSet) { + $levelCount = max($levelCount, count($dataValueSet)); + } + return $levelCount; + } + + /** + * Get Series Data Values + * + * @return array of mixed + */ + public function getDataValues() + { + return $this->dataValues; + } + + /** + * Get the first Series Data value + * + * @return mixed + */ + public function getDataValue() + { + $count = count($this->dataValues); + if ($count == 0) { + return null; + } elseif ($count == 1) { + return $this->dataValues[0]; + } + return $this->dataValues; + } + + /** + * Set Series Data Values + * + * @param array $dataValues + * @param boolean $refreshDataSource + * TRUE - refresh the value of dataSource based on the values of $dataValues + * FALSE - don't change the value of dataSource + * @return PHPExcel_Chart_DataSeriesValues + */ + public function setDataValues($dataValues = array(), $refreshDataSource = true) + { + $this->dataValues = PHPExcel_Calculation_Functions::flattenArray($dataValues); + $this->pointCount = count($dataValues); + + if ($refreshDataSource) { + // TO DO + } + + return $this; + } + + private function stripNulls($var) + { + return $var !== null; + } + + public function refresh(PHPExcel_Worksheet $worksheet, $flatten = true) + { + if ($this->dataSource !== null) { + $calcEngine = PHPExcel_Calculation::getInstance($worksheet->getParent()); + $newDataValues = PHPExcel_Calculation::unwrapResult( + $calcEngine->_calculateFormulaValue( + '='.$this->dataSource, + null, + $worksheet->getCell('A1') + ) + ); + if ($flatten) { + $this->dataValues = PHPExcel_Calculation_Functions::flattenArray($newDataValues); + foreach ($this->dataValues as &$dataValue) { + if ((!empty($dataValue)) && ($dataValue[0] == '#')) { + $dataValue = 0.0; + } + } + unset($dataValue); + } else { + $cellRange = explode('!', $this->dataSource); + if (count($cellRange) > 1) { + list(, $cellRange) = $cellRange; + } + + $dimensions = PHPExcel_Cell::rangeDimension(str_replace('$', '', $cellRange)); + if (($dimensions[0] == 1) || ($dimensions[1] == 1)) { + $this->dataValues = PHPExcel_Calculation_Functions::flattenArray($newDataValues); + } else { + $newArray = array_values(array_shift($newDataValues)); + foreach ($newArray as $i => $newDataSet) { + $newArray[$i] = array($newDataSet); + } + + foreach ($newDataValues as $newDataSet) { + $i = 0; + foreach ($newDataSet as $newDataVal) { + array_unshift($newArray[$i++], $newDataVal); + } + } + $this->dataValues = $newArray; + } + } + $this->pointCount = count($this->dataValues); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Exception.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Exception.php new file mode 100644 index 0000000..e20dfa5 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Exception.php @@ -0,0 +1,46 @@ +line = $line; + $e->file = $file; + throw $e; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/GridLines.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/GridLines.php new file mode 100644 index 0000000..898012e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/GridLines.php @@ -0,0 +1,472 @@ + array( + 'type' => self::EXCEL_COLOR_TYPE_STANDARD, + 'value' => null, + 'alpha' => 0 + ), + 'style' => array( + 'width' => '9525', + 'compound' => self::LINE_STYLE_COMPOUND_SIMPLE, + 'dash' => self::LINE_STYLE_DASH_SOLID, + 'cap' => self::LINE_STYLE_CAP_FLAT, + 'join' => self::LINE_STYLE_JOIN_BEVEL, + 'arrow' => array( + 'head' => array( + 'type' => self::LINE_STYLE_ARROW_TYPE_NOARROW, + 'size' => self::LINE_STYLE_ARROW_SIZE_5 + ), + 'end' => array( + 'type' => self::LINE_STYLE_ARROW_TYPE_NOARROW, + 'size' => self::LINE_STYLE_ARROW_SIZE_8 + ), + ) + ) + ); + + private $shadowProperties = array( + 'presets' => self::SHADOW_PRESETS_NOSHADOW, + 'effect' => null, + 'color' => array( + 'type' => self::EXCEL_COLOR_TYPE_STANDARD, + 'value' => 'black', + 'alpha' => 85, + ), + 'size' => array( + 'sx' => null, + 'sy' => null, + 'kx' => null + ), + 'blur' => null, + 'direction' => null, + 'distance' => null, + 'algn' => null, + 'rotWithShape' => null + ); + + private $glowProperties = array( + 'size' => null, + 'color' => array( + 'type' => self::EXCEL_COLOR_TYPE_STANDARD, + 'value' => 'black', + 'alpha' => 40 + ) + ); + + private $softEdges = array( + 'size' => null + ); + + /** + * Get Object State + * + * @return bool + */ + + public function getObjectState() + { + return $this->objectState; + } + + /** + * Change Object State to True + * + * @return PHPExcel_Chart_GridLines + */ + + private function activateObject() + { + $this->objectState = true; + + return $this; + } + + /** + * Set Line Color Properties + * + * @param string $value + * @param int $alpha + * @param string $type + */ + + public function setLineColorProperties($value, $alpha = 0, $type = self::EXCEL_COLOR_TYPE_STANDARD) + { + $this->activateObject() + ->lineProperties['color'] = $this->setColorProperties( + $value, + $alpha, + $type + ); + } + + /** + * Set Line Color Properties + * + * @param float $line_width + * @param string $compound_type + * @param string $dash_type + * @param string $cap_type + * @param string $join_type + * @param string $head_arrow_type + * @param string $head_arrow_size + * @param string $end_arrow_type + * @param string $end_arrow_size + */ + + public function setLineStyleProperties($line_width = null, $compound_type = null, $dash_type = null, $cap_type = null, $join_type = null, $head_arrow_type = null, $head_arrow_size = null, $end_arrow_type = null, $end_arrow_size = null) + { + $this->activateObject(); + (!is_null($line_width)) + ? $this->lineProperties['style']['width'] = $this->getExcelPointsWidth((float) $line_width) + : null; + (!is_null($compound_type)) + ? $this->lineProperties['style']['compound'] = (string) $compound_type + : null; + (!is_null($dash_type)) + ? $this->lineProperties['style']['dash'] = (string) $dash_type + : null; + (!is_null($cap_type)) + ? $this->lineProperties['style']['cap'] = (string) $cap_type + : null; + (!is_null($join_type)) + ? $this->lineProperties['style']['join'] = (string) $join_type + : null; + (!is_null($head_arrow_type)) + ? $this->lineProperties['style']['arrow']['head']['type'] = (string) $head_arrow_type + : null; + (!is_null($head_arrow_size)) + ? $this->lineProperties['style']['arrow']['head']['size'] = (string) $head_arrow_size + : null; + (!is_null($end_arrow_type)) + ? $this->lineProperties['style']['arrow']['end']['type'] = (string) $end_arrow_type + : null; + (!is_null($end_arrow_size)) + ? $this->lineProperties['style']['arrow']['end']['size'] = (string) $end_arrow_size + : null; + } + + /** + * Get Line Color Property + * + * @param string $parameter + * + * @return string + */ + + public function getLineColorProperty($parameter) + { + return $this->lineProperties['color'][$parameter]; + } + + /** + * Get Line Style Property + * + * @param array|string $elements + * + * @return string + */ + + public function getLineStyleProperty($elements) + { + return $this->getArrayElementsValue($this->lineProperties['style'], $elements); + } + + /** + * Set Glow Properties + * + * @param float $size + * @param string $color_value + * @param int $color_alpha + * @param string $color_type + * + */ + + public function setGlowProperties($size, $color_value = null, $color_alpha = null, $color_type = null) + { + $this + ->activateObject() + ->setGlowSize($size) + ->setGlowColor($color_value, $color_alpha, $color_type); + } + + /** + * Get Glow Color Property + * + * @param string $property + * + * @return string + */ + + public function getGlowColor($property) + { + return $this->glowProperties['color'][$property]; + } + + /** + * Get Glow Size + * + * @return string + */ + + public function getGlowSize() + { + return $this->glowProperties['size']; + } + + /** + * Set Glow Size + * + * @param float $size + * + * @return PHPExcel_Chart_GridLines + */ + + private function setGlowSize($size) + { + $this->glowProperties['size'] = $this->getExcelPointsWidth((float) $size); + + return $this; + } + + /** + * Set Glow Color + * + * @param string $color + * @param int $alpha + * @param string $type + * + * @return PHPExcel_Chart_GridLines + */ + + private function setGlowColor($color, $alpha, $type) + { + if (!is_null($color)) { + $this->glowProperties['color']['value'] = (string) $color; + } + if (!is_null($alpha)) { + $this->glowProperties['color']['alpha'] = $this->getTrueAlpha((int) $alpha); + } + if (!is_null($type)) { + $this->glowProperties['color']['type'] = (string) $type; + } + + return $this; + } + + /** + * Get Line Style Arrow Parameters + * + * @param string $arrow_selector + * @param string $property_selector + * + * @return string + */ + + public function getLineStyleArrowParameters($arrow_selector, $property_selector) + { + return $this->getLineStyleArrowSize($this->lineProperties['style']['arrow'][$arrow_selector]['size'], $property_selector); + } + + /** + * Set Shadow Properties + * + * @param int $sh_presets + * @param string $sh_color_value + * @param string $sh_color_type + * @param int $sh_color_alpha + * @param string $sh_blur + * @param int $sh_angle + * @param float $sh_distance + * + */ + + public function setShadowProperties($sh_presets, $sh_color_value = null, $sh_color_type = null, $sh_color_alpha = null, $sh_blur = null, $sh_angle = null, $sh_distance = null) + { + $this->activateObject() + ->setShadowPresetsProperties((int) $sh_presets) + ->setShadowColor( + is_null($sh_color_value) ? $this->shadowProperties['color']['value'] : $sh_color_value, + is_null($sh_color_alpha) ? (int) $this->shadowProperties['color']['alpha'] : $this->getTrueAlpha($sh_color_alpha), + is_null($sh_color_type) ? $this->shadowProperties['color']['type'] : $sh_color_type + ) + ->setShadowBlur($sh_blur) + ->setShadowAngle($sh_angle) + ->setShadowDistance($sh_distance); + } + + /** + * Set Shadow Presets Properties + * + * @param int $shadow_presets + * + * @return PHPExcel_Chart_GridLines + */ + + private function setShadowPresetsProperties($shadow_presets) + { + $this->shadowProperties['presets'] = $shadow_presets; + $this->setShadowProperiesMapValues($this->getShadowPresetsMap($shadow_presets)); + + return $this; + } + + /** + * Set Shadow Properties Values + * + * @param array $properties_map + * @param * $reference + * + * @return PHPExcel_Chart_GridLines + */ + + private function setShadowProperiesMapValues(array $properties_map, &$reference = null) + { + $base_reference = $reference; + foreach ($properties_map as $property_key => $property_val) { + if (is_array($property_val)) { + if ($reference === null) { + $reference = & $this->shadowProperties[$property_key]; + } else { + $reference = & $reference[$property_key]; + } + $this->setShadowProperiesMapValues($property_val, $reference); + } else { + if ($base_reference === null) { + $this->shadowProperties[$property_key] = $property_val; + } else { + $reference[$property_key] = $property_val; + } + } + } + + return $this; + } + + /** + * Set Shadow Color + * + * @param string $color + * @param int $alpha + * @param string $type + * @return PHPExcel_Chart_GridLines + */ + private function setShadowColor($color, $alpha, $type) + { + if (!is_null($color)) { + $this->shadowProperties['color']['value'] = (string) $color; + } + if (!is_null($alpha)) { + $this->shadowProperties['color']['alpha'] = $this->getTrueAlpha((int) $alpha); + } + if (!is_null($type)) { + $this->shadowProperties['color']['type'] = (string) $type; + } + + return $this; + } + + /** + * Set Shadow Blur + * + * @param float $blur + * + * @return PHPExcel_Chart_GridLines + */ + private function setShadowBlur($blur) + { + if ($blur !== null) { + $this->shadowProperties['blur'] = (string) $this->getExcelPointsWidth($blur); + } + + return $this; + } + + /** + * Set Shadow Angle + * + * @param int $angle + * @return PHPExcel_Chart_GridLines + */ + + private function setShadowAngle($angle) + { + if ($angle !== null) { + $this->shadowProperties['direction'] = (string) $this->getExcelPointsAngle($angle); + } + + return $this; + } + + /** + * Set Shadow Distance + * + * @param float $distance + * @return PHPExcel_Chart_GridLines + */ + private function setShadowDistance($distance) + { + if ($distance !== null) { + $this->shadowProperties['distance'] = (string) $this->getExcelPointsWidth($distance); + } + + return $this; + } + + /** + * Get Shadow Property + * + * @param string $elements + * @param array $elements + * @return string + */ + public function getShadowProperty($elements) + { + return $this->getArrayElementsValue($this->shadowProperties, $elements); + } + + /** + * Set Soft Edges Size + * + * @param float $size + */ + public function setSoftEdgesSize($size) + { + if (!is_null($size)) { + $this->activateObject(); + $softEdges['size'] = (string) $this->getExcelPointsWidth($size); + } + } + + /** + * Get Soft Edges Size + * + * @return string + */ + public function getSoftEdgesSize() + { + return $this->softEdges['size']; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Layout.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Layout.php new file mode 100644 index 0000000..7fef074 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Layout.php @@ -0,0 +1,486 @@ +layoutTarget = $layout['layoutTarget']; + } + if (isset($layout['xMode'])) { + $this->xMode = $layout['xMode']; + } + if (isset($layout['yMode'])) { + $this->yMode = $layout['yMode']; + } + if (isset($layout['x'])) { + $this->xPos = (float) $layout['x']; + } + if (isset($layout['y'])) { + $this->yPos = (float) $layout['y']; + } + if (isset($layout['w'])) { + $this->width = (float) $layout['w']; + } + if (isset($layout['h'])) { + $this->height = (float) $layout['h']; + } + } + + /** + * Get Layout Target + * + * @return string + */ + public function getLayoutTarget() + { + return $this->layoutTarget; + } + + /** + * Set Layout Target + * + * @param Layout Target $value + * @return PHPExcel_Chart_Layout + */ + public function setLayoutTarget($value) + { + $this->layoutTarget = $value; + return $this; + } + + /** + * Get X-Mode + * + * @return string + */ + public function getXMode() + { + return $this->xMode; + } + + /** + * Set X-Mode + * + * @param X-Mode $value + * @return PHPExcel_Chart_Layout + */ + public function setXMode($value) + { + $this->xMode = $value; + return $this; + } + + /** + * Get Y-Mode + * + * @return string + */ + public function getYMode() + { + return $this->yMode; + } + + /** + * Set Y-Mode + * + * @param Y-Mode $value + * @return PHPExcel_Chart_Layout + */ + public function setYMode($value) + { + $this->yMode = $value; + return $this; + } + + /** + * Get X-Position + * + * @return number + */ + public function getXPosition() + { + return $this->xPos; + } + + /** + * Set X-Position + * + * @param X-Position $value + * @return PHPExcel_Chart_Layout + */ + public function setXPosition($value) + { + $this->xPos = $value; + return $this; + } + + /** + * Get Y-Position + * + * @return number + */ + public function getYPosition() + { + return $this->yPos; + } + + /** + * Set Y-Position + * + * @param Y-Position $value + * @return PHPExcel_Chart_Layout + */ + public function setYPosition($value) + { + $this->yPos = $value; + return $this; + } + + /** + * Get Width + * + * @return number + */ + public function getWidth() + { + return $this->width; + } + + /** + * Set Width + * + * @param Width $value + * @return PHPExcel_Chart_Layout + */ + public function setWidth($value) + { + $this->width = $value; + return $this; + } + + /** + * Get Height + * + * @return number + */ + public function getHeight() + { + return $this->height; + } + + /** + * Set Height + * + * @param Height $value + * @return PHPExcel_Chart_Layout + */ + public function setHeight($value) + { + $this->height = $value; + return $this; + } + + + /** + * Get show legend key + * + * @return boolean + */ + public function getShowLegendKey() + { + return $this->showLegendKey; + } + + /** + * Set show legend key + * Specifies that legend keys should be shown in data labels. + * + * @param boolean $value Show legend key + * @return PHPExcel_Chart_Layout + */ + public function setShowLegendKey($value) + { + $this->showLegendKey = $value; + return $this; + } + + /** + * Get show value + * + * @return boolean + */ + public function getShowVal() + { + return $this->showVal; + } + + /** + * Set show val + * Specifies that the value should be shown in data labels. + * + * @param boolean $value Show val + * @return PHPExcel_Chart_Layout + */ + public function setShowVal($value) + { + $this->showVal = $value; + return $this; + } + + /** + * Get show category name + * + * @return boolean + */ + public function getShowCatName() + { + return $this->showCatName; + } + + /** + * Set show cat name + * Specifies that the category name should be shown in data labels. + * + * @param boolean $value Show cat name + * @return PHPExcel_Chart_Layout + */ + public function setShowCatName($value) + { + $this->showCatName = $value; + return $this; + } + + /** + * Get show data series name + * + * @return boolean + */ + public function getShowSerName() + { + return $this->showSerName; + } + + /** + * Set show ser name + * Specifies that the series name should be shown in data labels. + * + * @param boolean $value Show series name + * @return PHPExcel_Chart_Layout + */ + public function setShowSerName($value) + { + $this->showSerName = $value; + return $this; + } + + /** + * Get show percentage + * + * @return boolean + */ + public function getShowPercent() + { + return $this->showPercent; + } + + /** + * Set show percentage + * Specifies that the percentage should be shown in data labels. + * + * @param boolean $value Show percentage + * @return PHPExcel_Chart_Layout + */ + public function setShowPercent($value) + { + $this->showPercent = $value; + return $this; + } + + /** + * Get show bubble size + * + * @return boolean + */ + public function getShowBubbleSize() + { + return $this->showBubbleSize; + } + + /** + * Set show bubble size + * Specifies that the bubble size should be shown in data labels. + * + * @param boolean $value Show bubble size + * @return PHPExcel_Chart_Layout + */ + public function setShowBubbleSize($value) + { + $this->showBubbleSize = $value; + return $this; + } + + /** + * Get show leader lines + * + * @return boolean + */ + public function getShowLeaderLines() + { + return $this->showLeaderLines; + } + + /** + * Set show leader lines + * Specifies that leader lines should be shown in data labels. + * + * @param boolean $value Show leader lines + * @return PHPExcel_Chart_Layout + */ + public function setShowLeaderLines($value) + { + $this->showLeaderLines = $value; + return $this; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Legend.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Legend.php new file mode 100644 index 0000000..e850eb5 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Legend.php @@ -0,0 +1,170 @@ + self::POSITION_BOTTOM, + self::xlLegendPositionCorner => self::POSITION_TOPRIGHT, + self::xlLegendPositionCustom => '??', + self::xlLegendPositionLeft => self::POSITION_LEFT, + self::xlLegendPositionRight => self::POSITION_RIGHT, + self::xlLegendPositionTop => self::POSITION_TOP + ); + + /** + * Legend position + * + * @var string + */ + private $position = self::POSITION_RIGHT; + + /** + * Allow overlay of other elements? + * + * @var boolean + */ + private $overlay = true; + + /** + * Legend Layout + * + * @var PHPExcel_Chart_Layout + */ + private $layout = null; + + + /** + * Create a new PHPExcel_Chart_Legend + */ + public function __construct($position = self::POSITION_RIGHT, PHPExcel_Chart_Layout $layout = null, $overlay = false) + { + $this->setPosition($position); + $this->layout = $layout; + $this->setOverlay($overlay); + } + + /** + * Get legend position as an excel string value + * + * @return string + */ + public function getPosition() + { + return $this->position; + } + + /** + * Get legend position using an excel string value + * + * @param string $position + */ + public function setPosition($position = self::POSITION_RIGHT) + { + if (!in_array($position, self::$positionXLref)) { + return false; + } + + $this->position = $position; + return true; + } + + /** + * Get legend position as an Excel internal numeric value + * + * @return number + */ + public function getPositionXL() + { + return array_search($this->position, self::$positionXLref); + } + + /** + * Set legend position using an Excel internal numeric value + * + * @param number $positionXL + */ + public function setPositionXL($positionXL = self::xlLegendPositionRight) + { + if (!array_key_exists($positionXL, self::$positionXLref)) { + return false; + } + + $this->position = self::$positionXLref[$positionXL]; + return true; + } + + /** + * Get allow overlay of other elements? + * + * @return boolean + */ + public function getOverlay() + { + return $this->overlay; + } + + /** + * Set allow overlay of other elements? + * + * @param boolean $overlay + * @return boolean + */ + public function setOverlay($overlay = false) + { + if (!is_bool($overlay)) { + return false; + } + + $this->overlay = $overlay; + return true; + } + + /** + * Get Layout + * + * @return PHPExcel_Chart_Layout + */ + public function getLayout() + { + return $this->layout; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/PlotArea.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/PlotArea.php new file mode 100644 index 0000000..551cc51 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/PlotArea.php @@ -0,0 +1,126 @@ +layout = $layout; + $this->plotSeries = $plotSeries; + } + + /** + * Get Layout + * + * @return PHPExcel_Chart_Layout + */ + public function getLayout() + { + return $this->layout; + } + + /** + * Get Number of Plot Groups + * + * @return array of PHPExcel_Chart_DataSeries + */ + public function getPlotGroupCount() + { + return count($this->plotSeries); + } + + /** + * Get Number of Plot Series + * + * @return integer + */ + public function getPlotSeriesCount() + { + $seriesCount = 0; + foreach ($this->plotSeries as $plot) { + $seriesCount += $plot->getPlotSeriesCount(); + } + return $seriesCount; + } + + /** + * Get Plot Series + * + * @return array of PHPExcel_Chart_DataSeries + */ + public function getPlotGroup() + { + return $this->plotSeries; + } + + /** + * Get Plot Series by Index + * + * @return PHPExcel_Chart_DataSeries + */ + public function getPlotGroupByIndex($index) + { + return $this->plotSeries[$index]; + } + + /** + * Set Plot Series + * + * @param [PHPExcel_Chart_DataSeries] + * @return PHPExcel_Chart_PlotArea + */ + public function setPlotSeries($plotSeries = array()) + { + $this->plotSeries = $plotSeries; + + return $this; + } + + public function refresh(PHPExcel_Worksheet $worksheet) + { + foreach ($this->plotSeries as $plotSeries) { + $plotSeries->refresh($worksheet); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Properties.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Properties.php new file mode 100644 index 0000000..9bb6e93 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Properties.php @@ -0,0 +1,363 @@ + (string) $type, + 'value' => (string) $color, + 'alpha' => (string) $this->getTrueAlpha($alpha) + ); + } + + protected function getLineStyleArrowSize($array_selector, $array_kay_selector) + { + $sizes = array( + 1 => array('w' => 'sm', 'len' => 'sm'), + 2 => array('w' => 'sm', 'len' => 'med'), + 3 => array('w' => 'sm', 'len' => 'lg'), + 4 => array('w' => 'med', 'len' => 'sm'), + 5 => array('w' => 'med', 'len' => 'med'), + 6 => array('w' => 'med', 'len' => 'lg'), + 7 => array('w' => 'lg', 'len' => 'sm'), + 8 => array('w' => 'lg', 'len' => 'med'), + 9 => array('w' => 'lg', 'len' => 'lg') + ); + + return $sizes[$array_selector][$array_kay_selector]; + } + + protected function getShadowPresetsMap($shadow_presets_option) + { + $presets_options = array( + //OUTER + 1 => array( + 'effect' => 'outerShdw', + 'blur' => '50800', + 'distance' => '38100', + 'direction' => '2700000', + 'algn' => 'tl', + 'rotWithShape' => '0' + ), + 2 => array( + 'effect' => 'outerShdw', + 'blur' => '50800', + 'distance' => '38100', + 'direction' => '5400000', + 'algn' => 't', + 'rotWithShape' => '0' + ), + 3 => array( + 'effect' => 'outerShdw', + 'blur' => '50800', + 'distance' => '38100', + 'direction' => '8100000', + 'algn' => 'tr', + 'rotWithShape' => '0' + ), + 4 => array( + 'effect' => 'outerShdw', + 'blur' => '50800', + 'distance' => '38100', + 'algn' => 'l', + 'rotWithShape' => '0' + ), + 5 => array( + 'effect' => 'outerShdw', + 'size' => array( + 'sx' => '102000', + 'sy' => '102000' + ) + , + 'blur' => '63500', + 'distance' => '38100', + 'algn' => 'ctr', + 'rotWithShape' => '0' + ), + 6 => array( + 'effect' => 'outerShdw', + 'blur' => '50800', + 'distance' => '38100', + 'direction' => '10800000', + 'algn' => 'r', + 'rotWithShape' => '0' + ), + 7 => array( + 'effect' => 'outerShdw', + 'blur' => '50800', + 'distance' => '38100', + 'direction' => '18900000', + 'algn' => 'bl', + 'rotWithShape' => '0' + ), + 8 => array( + 'effect' => 'outerShdw', + 'blur' => '50800', + 'distance' => '38100', + 'direction' => '16200000', + 'rotWithShape' => '0' + ), + 9 => array( + 'effect' => 'outerShdw', + 'blur' => '50800', + 'distance' => '38100', + 'direction' => '13500000', + 'algn' => 'br', + 'rotWithShape' => '0' + ), + //INNER + 10 => array( + 'effect' => 'innerShdw', + 'blur' => '63500', + 'distance' => '50800', + 'direction' => '2700000', + ), + 11 => array( + 'effect' => 'innerShdw', + 'blur' => '63500', + 'distance' => '50800', + 'direction' => '5400000', + ), + 12 => array( + 'effect' => 'innerShdw', + 'blur' => '63500', + 'distance' => '50800', + 'direction' => '8100000', + ), + 13 => array( + 'effect' => 'innerShdw', + 'blur' => '63500', + 'distance' => '50800', + ), + 14 => array( + 'effect' => 'innerShdw', + 'blur' => '114300', + ), + 15 => array( + 'effect' => 'innerShdw', + 'blur' => '63500', + 'distance' => '50800', + 'direction' => '10800000', + ), + 16 => array( + 'effect' => 'innerShdw', + 'blur' => '63500', + 'distance' => '50800', + 'direction' => '18900000', + ), + 17 => array( + 'effect' => 'innerShdw', + 'blur' => '63500', + 'distance' => '50800', + 'direction' => '16200000', + ), + 18 => array( + 'effect' => 'innerShdw', + 'blur' => '63500', + 'distance' => '50800', + 'direction' => '13500000', + ), + //perspective + 19 => array( + 'effect' => 'outerShdw', + 'blur' => '152400', + 'distance' => '317500', + 'size' => array( + 'sx' => '90000', + 'sy' => '-19000', + ), + 'direction' => '5400000', + 'rotWithShape' => '0', + ), + 20 => array( + 'effect' => 'outerShdw', + 'blur' => '76200', + 'direction' => '18900000', + 'size' => array( + 'sy' => '23000', + 'kx' => '-1200000', + ), + 'algn' => 'bl', + 'rotWithShape' => '0', + ), + 21 => array( + 'effect' => 'outerShdw', + 'blur' => '76200', + 'direction' => '13500000', + 'size' => array( + 'sy' => '23000', + 'kx' => '1200000', + ), + 'algn' => 'br', + 'rotWithShape' => '0', + ), + 22 => array( + 'effect' => 'outerShdw', + 'blur' => '76200', + 'distance' => '12700', + 'direction' => '2700000', + 'size' => array( + 'sy' => '-23000', + 'kx' => '-800400', + ), + 'algn' => 'bl', + 'rotWithShape' => '0', + ), + 23 => array( + 'effect' => 'outerShdw', + 'blur' => '76200', + 'distance' => '12700', + 'direction' => '8100000', + 'size' => array( + 'sy' => '-23000', + 'kx' => '800400', + ), + 'algn' => 'br', + 'rotWithShape' => '0', + ), + ); + + return $presets_options[$shadow_presets_option]; + } + + protected function getArrayElementsValue($properties, $elements) + { + $reference = & $properties; + if (!is_array($elements)) { + return $reference[$elements]; + } else { + foreach ($elements as $keys) { + $reference = & $reference[$keys]; + } + return $reference; + } + return $this; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt new file mode 100644 index 0000000..a088989 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt @@ -0,0 +1,20 @@ +ChartDirector + http://www.advsofteng.com/cdphp.html + +GraPHPite + http://graphpite.sourceforge.net/ + +JpGraph + http://www.aditus.nu/jpgraph/ + +LibChart + http://naku.dohcrew.com/libchart/pages/introduction/ + +pChart + http://pchart.sourceforge.net/ + +TeeChart + http://www.steema.com/products/teechart/overview.html + +PHPGraphLib + http://www.ebrueggeman.com/phpgraphlib \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Renderer/jpgraph.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Renderer/jpgraph.php new file mode 100644 index 0000000..b3d7396 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Renderer/jpgraph.php @@ -0,0 +1,883 @@ + MARK_DIAMOND, + 'square' => MARK_SQUARE, + 'triangle' => MARK_UTRIANGLE, + 'x' => MARK_X, + 'star' => MARK_STAR, + 'dot' => MARK_FILLEDCIRCLE, + 'dash' => MARK_DTRIANGLE, + 'circle' => MARK_CIRCLE, + 'plus' => MARK_CROSS + ); + + + private $chart; + + private $graph; + + private static $plotColour = 0; + + private static $plotMark = 0; + + + private function formatPointMarker($seriesPlot, $markerID) + { + $plotMarkKeys = array_keys(self::$markSet); + if (is_null($markerID)) { + // Use default plot marker (next marker in the series) + self::$plotMark %= count(self::$markSet); + $seriesPlot->mark->SetType(self::$markSet[$plotMarkKeys[self::$plotMark++]]); + } elseif ($markerID !== 'none') { + // Use specified plot marker (if it exists) + if (isset(self::$markSet[$markerID])) { + $seriesPlot->mark->SetType(self::$markSet[$markerID]); + } else { + // If the specified plot marker doesn't exist, use default plot marker (next marker in the series) + self::$plotMark %= count(self::$markSet); + $seriesPlot->mark->SetType(self::$markSet[$plotMarkKeys[self::$plotMark++]]); + } + } else { + // Hide plot marker + $seriesPlot->mark->Hide(); + } + $seriesPlot->mark->SetColor(self::$colourSet[self::$plotColour]); + $seriesPlot->mark->SetFillColor(self::$colourSet[self::$plotColour]); + $seriesPlot->SetColor(self::$colourSet[self::$plotColour++]); + + return $seriesPlot; + } + + + private function formatDataSetLabels($groupID, $datasetLabels, $labelCount, $rotation = '') + { + $datasetLabelFormatCode = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotCategoryByIndex(0)->getFormatCode(); + if (!is_null($datasetLabelFormatCode)) { + // Retrieve any label formatting code + $datasetLabelFormatCode = stripslashes($datasetLabelFormatCode); + } + + $testCurrentIndex = 0; + foreach ($datasetLabels as $i => $datasetLabel) { + if (is_array($datasetLabel)) { + if ($rotation == 'bar') { + $datasetLabels[$i] = implode(" ", $datasetLabel); + } else { + $datasetLabel = array_reverse($datasetLabel); + $datasetLabels[$i] = implode("\n", $datasetLabel); + } + } else { + // Format labels according to any formatting code + if (!is_null($datasetLabelFormatCode)) { + $datasetLabels[$i] = PHPExcel_Style_NumberFormat::toFormattedString($datasetLabel, $datasetLabelFormatCode); + } + } + ++$testCurrentIndex; + } + + return $datasetLabels; + } + + + private function percentageSumCalculation($groupID, $seriesCount) + { + // Adjust our values to a percentage value across all series in the group + for ($i = 0; $i < $seriesCount; ++$i) { + if ($i == 0) { + $sumValues = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getDataValues(); + } else { + $nextValues = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getDataValues(); + foreach ($nextValues as $k => $value) { + if (isset($sumValues[$k])) { + $sumValues[$k] += $value; + } else { + $sumValues[$k] = $value; + } + } + } + } + + return $sumValues; + } + + + private function percentageAdjustValues($dataValues, $sumValues) + { + foreach ($dataValues as $k => $dataValue) { + $dataValues[$k] = $dataValue / $sumValues[$k] * 100; + } + + return $dataValues; + } + + + private function getCaption($captionElement) + { + // Read any caption + $caption = (!is_null($captionElement)) ? $captionElement->getCaption() : null; + // Test if we have a title caption to display + if (!is_null($caption)) { + // If we do, it could be a plain string or an array + if (is_array($caption)) { + // Implode an array to a plain string + $caption = implode('', $caption); + } + } + return $caption; + } + + + private function renderTitle() + { + $title = $this->getCaption($this->chart->getTitle()); + if (!is_null($title)) { + $this->graph->title->Set($title); + } + } + + + private function renderLegend() + { + $legend = $this->chart->getLegend(); + if (!is_null($legend)) { + $legendPosition = $legend->getPosition(); + $legendOverlay = $legend->getOverlay(); + switch ($legendPosition) { + case 'r': + $this->graph->legend->SetPos(0.01, 0.5, 'right', 'center'); // right + $this->graph->legend->SetColumns(1); + break; + case 'l': + $this->graph->legend->SetPos(0.01, 0.5, 'left', 'center'); // left + $this->graph->legend->SetColumns(1); + break; + case 't': + $this->graph->legend->SetPos(0.5, 0.01, 'center', 'top'); // top + break; + case 'b': + $this->graph->legend->SetPos(0.5, 0.99, 'center', 'bottom'); // bottom + break; + default: + $this->graph->legend->SetPos(0.01, 0.01, 'right', 'top'); // top-right + $this->graph->legend->SetColumns(1); + break; + } + } else { + $this->graph->legend->Hide(); + } + } + + + private function renderCartesianPlotArea($type = 'textlin') + { + $this->graph = new Graph(self::$width, self::$height); + $this->graph->SetScale($type); + + $this->renderTitle(); + + // Rotate for bar rather than column chart + $rotation = $this->chart->getPlotArea()->getPlotGroupByIndex(0)->getPlotDirection(); + $reverse = ($rotation == 'bar') ? true : false; + + $xAxisLabel = $this->chart->getXAxisLabel(); + if (!is_null($xAxisLabel)) { + $title = $this->getCaption($xAxisLabel); + if (!is_null($title)) { + $this->graph->xaxis->SetTitle($title, 'center'); + $this->graph->xaxis->title->SetMargin(35); + if ($reverse) { + $this->graph->xaxis->title->SetAngle(90); + $this->graph->xaxis->title->SetMargin(90); + } + } + } + + $yAxisLabel = $this->chart->getYAxisLabel(); + if (!is_null($yAxisLabel)) { + $title = $this->getCaption($yAxisLabel); + if (!is_null($title)) { + $this->graph->yaxis->SetTitle($title, 'center'); + if ($reverse) { + $this->graph->yaxis->title->SetAngle(0); + $this->graph->yaxis->title->SetMargin(-55); + } + } + } + } + + + private function renderPiePlotArea($doughnut = false) + { + $this->graph = new PieGraph(self::$width, self::$height); + + $this->renderTitle(); + } + + + private function renderRadarPlotArea() + { + $this->graph = new RadarGraph(self::$width, self::$height); + $this->graph->SetScale('lin'); + + $this->renderTitle(); + } + + + private function renderPlotLine($groupID, $filled = false, $combination = false, $dimensions = '2d') + { + $grouping = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotGrouping(); + + $labelCount = count($this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex(0)->getPointCount()); + if ($labelCount > 0) { + $datasetLabels = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotCategoryByIndex(0)->getDataValues(); + $datasetLabels = $this->formatDataSetLabels($groupID, $datasetLabels, $labelCount); + $this->graph->xaxis->SetTickLabels($datasetLabels); + } + + $seriesCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotSeriesCount(); + $seriesPlots = array(); + if ($grouping == 'percentStacked') { + $sumValues = $this->percentageSumCalculation($groupID, $seriesCount); + } + + // Loop through each data series in turn + for ($i = 0; $i < $seriesCount; ++$i) { + $dataValues = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getDataValues(); + $marker = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getPointMarker(); + + if ($grouping == 'percentStacked') { + $dataValues = $this->percentageAdjustValues($dataValues, $sumValues); + } + + // Fill in any missing values in the $dataValues array + $testCurrentIndex = 0; + foreach ($dataValues as $k => $dataValue) { + while ($k != $testCurrentIndex) { + $dataValues[$testCurrentIndex] = null; + ++$testCurrentIndex; + } + ++$testCurrentIndex; + } + + $seriesPlot = new LinePlot($dataValues); + if ($combination) { + $seriesPlot->SetBarCenter(); + } + + if ($filled) { + $seriesPlot->SetFilled(true); + $seriesPlot->SetColor('black'); + $seriesPlot->SetFillColor(self::$colourSet[self::$plotColour++]); + } else { + // Set the appropriate plot marker + $this->formatPointMarker($seriesPlot, $marker); + } + $dataLabel = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotLabelByIndex($i)->getDataValue(); + $seriesPlot->SetLegend($dataLabel); + + $seriesPlots[] = $seriesPlot; + } + + if ($grouping == 'standard') { + $groupPlot = $seriesPlots; + } else { + $groupPlot = new AccLinePlot($seriesPlots); + } + $this->graph->Add($groupPlot); + } + + + private function renderPlotBar($groupID, $dimensions = '2d') + { + $rotation = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotDirection(); + // Rotate for bar rather than column chart + if (($groupID == 0) && ($rotation == 'bar')) { + $this->graph->Set90AndMargin(); + } + $grouping = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotGrouping(); + + $labelCount = count($this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex(0)->getPointCount()); + if ($labelCount > 0) { + $datasetLabels = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotCategoryByIndex(0)->getDataValues(); + $datasetLabels = $this->formatDataSetLabels($groupID, $datasetLabels, $labelCount, $rotation); + // Rotate for bar rather than column chart + if ($rotation == 'bar') { + $datasetLabels = array_reverse($datasetLabels); + $this->graph->yaxis->SetPos('max'); + $this->graph->yaxis->SetLabelAlign('center', 'top'); + $this->graph->yaxis->SetLabelSide(SIDE_RIGHT); + } + $this->graph->xaxis->SetTickLabels($datasetLabels); + } + + + $seriesCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotSeriesCount(); + $seriesPlots = array(); + if ($grouping == 'percentStacked') { + $sumValues = $this->percentageSumCalculation($groupID, $seriesCount); + } + + // Loop through each data series in turn + for ($j = 0; $j < $seriesCount; ++$j) { + $dataValues = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($j)->getDataValues(); + if ($grouping == 'percentStacked') { + $dataValues = $this->percentageAdjustValues($dataValues, $sumValues); + } + + // Fill in any missing values in the $dataValues array + $testCurrentIndex = 0; + foreach ($dataValues as $k => $dataValue) { + while ($k != $testCurrentIndex) { + $dataValues[$testCurrentIndex] = null; + ++$testCurrentIndex; + } + ++$testCurrentIndex; + } + + // Reverse the $dataValues order for bar rather than column chart + if ($rotation == 'bar') { + $dataValues = array_reverse($dataValues); + } + $seriesPlot = new BarPlot($dataValues); + $seriesPlot->SetColor('black'); + $seriesPlot->SetFillColor(self::$colourSet[self::$plotColour++]); + if ($dimensions == '3d') { + $seriesPlot->SetShadow(); + } + if (!$this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotLabelByIndex($j)) { + $dataLabel = ''; + } else { + $dataLabel = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotLabelByIndex($j)->getDataValue(); + } + $seriesPlot->SetLegend($dataLabel); + + $seriesPlots[] = $seriesPlot; + } + // Reverse the plot order for bar rather than column chart + if (($rotation == 'bar') && (!($grouping == 'percentStacked'))) { + $seriesPlots = array_reverse($seriesPlots); + } + + if ($grouping == 'clustered') { + $groupPlot = new GroupBarPlot($seriesPlots); + } elseif ($grouping == 'standard') { + $groupPlot = new GroupBarPlot($seriesPlots); + } else { + $groupPlot = new AccBarPlot($seriesPlots); + if ($dimensions == '3d') { + $groupPlot->SetShadow(); + } + } + + $this->graph->Add($groupPlot); + } + + + private function renderPlotScatter($groupID, $bubble) + { + $grouping = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotGrouping(); + $scatterStyle = $bubbleSize = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotStyle(); + + $seriesCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotSeriesCount(); + $seriesPlots = array(); + + // Loop through each data series in turn + for ($i = 0; $i < $seriesCount; ++$i) { + $dataValuesY = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotCategoryByIndex($i)->getDataValues(); + $dataValuesX = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getDataValues(); + + foreach ($dataValuesY as $k => $dataValueY) { + $dataValuesY[$k] = $k; + } + + $seriesPlot = new ScatterPlot($dataValuesX, $dataValuesY); + if ($scatterStyle == 'lineMarker') { + $seriesPlot->SetLinkPoints(); + $seriesPlot->link->SetColor(self::$colourSet[self::$plotColour]); + } elseif ($scatterStyle == 'smoothMarker') { + $spline = new Spline($dataValuesY, $dataValuesX); + list($splineDataY, $splineDataX) = $spline->Get(count($dataValuesX) * self::$width / 20); + $lplot = new LinePlot($splineDataX, $splineDataY); + $lplot->SetColor(self::$colourSet[self::$plotColour]); + + $this->graph->Add($lplot); + } + + if ($bubble) { + $this->formatPointMarker($seriesPlot, 'dot'); + $seriesPlot->mark->SetColor('black'); + $seriesPlot->mark->SetSize($bubbleSize); + } else { + $marker = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getPointMarker(); + $this->formatPointMarker($seriesPlot, $marker); + } + $dataLabel = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotLabelByIndex($i)->getDataValue(); + $seriesPlot->SetLegend($dataLabel); + + $this->graph->Add($seriesPlot); + } + } + + + private function renderPlotRadar($groupID) + { + $radarStyle = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotStyle(); + + $seriesCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotSeriesCount(); + $seriesPlots = array(); + + // Loop through each data series in turn + for ($i = 0; $i < $seriesCount; ++$i) { + $dataValuesY = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotCategoryByIndex($i)->getDataValues(); + $dataValuesX = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getDataValues(); + $marker = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getPointMarker(); + + $dataValues = array(); + foreach ($dataValuesY as $k => $dataValueY) { + $dataValues[$k] = implode(' ', array_reverse($dataValueY)); + } + $tmp = array_shift($dataValues); + $dataValues[] = $tmp; + $tmp = array_shift($dataValuesX); + $dataValuesX[] = $tmp; + + $this->graph->SetTitles(array_reverse($dataValues)); + + $seriesPlot = new RadarPlot(array_reverse($dataValuesX)); + + $dataLabel = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotLabelByIndex($i)->getDataValue(); + $seriesPlot->SetColor(self::$colourSet[self::$plotColour++]); + if ($radarStyle == 'filled') { + $seriesPlot->SetFillColor(self::$colourSet[self::$plotColour]); + } + $this->formatPointMarker($seriesPlot, $marker); + $seriesPlot->SetLegend($dataLabel); + + $this->graph->Add($seriesPlot); + } + } + + + private function renderPlotContour($groupID) + { + $contourStyle = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotStyle(); + + $seriesCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotSeriesCount(); + $seriesPlots = array(); + + $dataValues = array(); + // Loop through each data series in turn + for ($i = 0; $i < $seriesCount; ++$i) { + $dataValuesY = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotCategoryByIndex($i)->getDataValues(); + $dataValuesX = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getDataValues(); + + $dataValues[$i] = $dataValuesX; + } + $seriesPlot = new ContourPlot($dataValues); + + $this->graph->Add($seriesPlot); + } + + + private function renderPlotStock($groupID) + { + $seriesCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotSeriesCount(); + $plotOrder = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotOrder(); + + $dataValues = array(); + // Loop through each data series in turn and build the plot arrays + foreach ($plotOrder as $i => $v) { + $dataValuesX = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($v)->getDataValues(); + foreach ($dataValuesX as $j => $dataValueX) { + $dataValues[$plotOrder[$i]][$j] = $dataValueX; + } + } + if (empty($dataValues)) { + return; + } + + $dataValuesPlot = array(); + // Flatten the plot arrays to a single dimensional array to work with jpgraph + for ($j = 0; $j < count($dataValues[0]); ++$j) { + for ($i = 0; $i < $seriesCount; ++$i) { + $dataValuesPlot[] = $dataValues[$i][$j]; + } + } + + // Set the x-axis labels + $labelCount = count($this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex(0)->getPointCount()); + if ($labelCount > 0) { + $datasetLabels = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotCategoryByIndex(0)->getDataValues(); + $datasetLabels = $this->formatDataSetLabels($groupID, $datasetLabels, $labelCount); + $this->graph->xaxis->SetTickLabels($datasetLabels); + } + + $seriesPlot = new StockPlot($dataValuesPlot); + $seriesPlot->SetWidth(20); + + $this->graph->Add($seriesPlot); + } + + + private function renderAreaChart($groupCount, $dimensions = '2d') + { + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_line.php'); + + $this->renderCartesianPlotArea(); + + for ($i = 0; $i < $groupCount; ++$i) { + $this->renderPlotLine($i, true, false, $dimensions); + } + } + + + private function renderLineChart($groupCount, $dimensions = '2d') + { + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_line.php'); + + $this->renderCartesianPlotArea(); + + for ($i = 0; $i < $groupCount; ++$i) { + $this->renderPlotLine($i, false, false, $dimensions); + } + } + + + private function renderBarChart($groupCount, $dimensions = '2d') + { + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_bar.php'); + + $this->renderCartesianPlotArea(); + + for ($i = 0; $i < $groupCount; ++$i) { + $this->renderPlotBar($i, $dimensions); + } + } + + + private function renderScatterChart($groupCount) + { + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_scatter.php'); + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_regstat.php'); + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_line.php'); + + $this->renderCartesianPlotArea('linlin'); + + for ($i = 0; $i < $groupCount; ++$i) { + $this->renderPlotScatter($i, false); + } + } + + + private function renderBubbleChart($groupCount) + { + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_scatter.php'); + + $this->renderCartesianPlotArea('linlin'); + + for ($i = 0; $i < $groupCount; ++$i) { + $this->renderPlotScatter($i, true); + } + } + + + private function renderPieChart($groupCount, $dimensions = '2d', $doughnut = false, $multiplePlots = false) + { + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_pie.php'); + if ($dimensions == '3d') { + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_pie3d.php'); + } + + $this->renderPiePlotArea($doughnut); + + $iLimit = ($multiplePlots) ? $groupCount : 1; + for ($groupID = 0; $groupID < $iLimit; ++$groupID) { + $grouping = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotGrouping(); + $exploded = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotStyle(); + if ($groupID == 0) { + $labelCount = count($this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex(0)->getPointCount()); + if ($labelCount > 0) { + $datasetLabels = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotCategoryByIndex(0)->getDataValues(); + $datasetLabels = $this->formatDataSetLabels($groupID, $datasetLabels, $labelCount); + } + } + + $seriesCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotSeriesCount(); + $seriesPlots = array(); + // For pie charts, we only display the first series: doughnut charts generally display all series + $jLimit = ($multiplePlots) ? $seriesCount : 1; + // Loop through each data series in turn + for ($j = 0; $j < $jLimit; ++$j) { + $dataValues = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($j)->getDataValues(); + + // Fill in any missing values in the $dataValues array + $testCurrentIndex = 0; + foreach ($dataValues as $k => $dataValue) { + while ($k != $testCurrentIndex) { + $dataValues[$testCurrentIndex] = null; + ++$testCurrentIndex; + } + ++$testCurrentIndex; + } + + if ($dimensions == '3d') { + $seriesPlot = new PiePlot3D($dataValues); + } else { + if ($doughnut) { + $seriesPlot = new PiePlotC($dataValues); + } else { + $seriesPlot = new PiePlot($dataValues); + } + } + + if ($multiplePlots) { + $seriesPlot->SetSize(($jLimit-$j) / ($jLimit * 4)); + } + + if ($doughnut) { + $seriesPlot->SetMidColor('white'); + } + + $seriesPlot->SetColor(self::$colourSet[self::$plotColour++]); + if (count($datasetLabels) > 0) { + $seriesPlot->SetLabels(array_fill(0, count($datasetLabels), '')); + } + if ($dimensions != '3d') { + $seriesPlot->SetGuideLines(false); + } + if ($j == 0) { + if ($exploded) { + $seriesPlot->ExplodeAll(); + } + $seriesPlot->SetLegends($datasetLabels); + } + + $this->graph->Add($seriesPlot); + } + } + } + + + private function renderRadarChart($groupCount) + { + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_radar.php'); + + $this->renderRadarPlotArea(); + + for ($groupID = 0; $groupID < $groupCount; ++$groupID) { + $this->renderPlotRadar($groupID); + } + } + + + private function renderStockChart($groupCount) + { + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_stock.php'); + + $this->renderCartesianPlotArea('intint'); + + for ($groupID = 0; $groupID < $groupCount; ++$groupID) { + $this->renderPlotStock($groupID); + } + } + + + private function renderContourChart($groupCount, $dimensions) + { + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_contour.php'); + + $this->renderCartesianPlotArea('intint'); + + for ($i = 0; $i < $groupCount; ++$i) { + $this->renderPlotContour($i); + } + } + + + private function renderCombinationChart($groupCount, $dimensions, $outputDestination) + { + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_line.php'); + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_bar.php'); + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_scatter.php'); + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_regstat.php'); + require_once(PHPExcel_Settings::getChartRendererPath().'jpgraph_line.php'); + + $this->renderCartesianPlotArea(); + + for ($i = 0; $i < $groupCount; ++$i) { + $dimensions = null; + $chartType = $this->chart->getPlotArea()->getPlotGroupByIndex($i)->getPlotType(); + switch ($chartType) { + case 'area3DChart': + $dimensions = '3d'; + // no break + case 'areaChart': + $this->renderPlotLine($i, true, true, $dimensions); + break; + case 'bar3DChart': + $dimensions = '3d'; + // no break + case 'barChart': + $this->renderPlotBar($i, $dimensions); + break; + case 'line3DChart': + $dimensions = '3d'; + // no break + case 'lineChart': + $this->renderPlotLine($i, false, true, $dimensions); + break; + case 'scatterChart': + $this->renderPlotScatter($i, false); + break; + case 'bubbleChart': + $this->renderPlotScatter($i, true); + break; + default: + $this->graph = null; + return false; + } + } + + $this->renderLegend(); + + $this->graph->Stroke($outputDestination); + return true; + } + + + public function render($outputDestination) + { + self::$plotColour = 0; + + $groupCount = $this->chart->getPlotArea()->getPlotGroupCount(); + + $dimensions = null; + if ($groupCount == 1) { + $chartType = $this->chart->getPlotArea()->getPlotGroupByIndex(0)->getPlotType(); + } else { + $chartTypes = array(); + for ($i = 0; $i < $groupCount; ++$i) { + $chartTypes[] = $this->chart->getPlotArea()->getPlotGroupByIndex($i)->getPlotType(); + } + $chartTypes = array_unique($chartTypes); + if (count($chartTypes) == 1) { + $chartType = array_pop($chartTypes); + } elseif (count($chartTypes) == 0) { + echo 'Chart is not yet implemented
'; + return false; + } else { + return $this->renderCombinationChart($groupCount, $dimensions, $outputDestination); + } + } + + switch ($chartType) { + case 'area3DChart': + $dimensions = '3d'; + // no break + case 'areaChart': + $this->renderAreaChart($groupCount, $dimensions); + break; + case 'bar3DChart': + $dimensions = '3d'; + // no break + case 'barChart': + $this->renderBarChart($groupCount, $dimensions); + break; + case 'line3DChart': + $dimensions = '3d'; + // no break + case 'lineChart': + $this->renderLineChart($groupCount, $dimensions); + break; + case 'pie3DChart': + $dimensions = '3d'; + // no break + case 'pieChart': + $this->renderPieChart($groupCount, $dimensions, false, false); + break; + case 'doughnut3DChart': + $dimensions = '3d'; + // no break + case 'doughnutChart': + $this->renderPieChart($groupCount, $dimensions, true, true); + break; + case 'scatterChart': + $this->renderScatterChart($groupCount); + break; + case 'bubbleChart': + $this->renderBubbleChart($groupCount); + break; + case 'radarChart': + $this->renderRadarChart($groupCount); + break; + case 'surface3DChart': + $dimensions = '3d'; + // no break + case 'surfaceChart': + $this->renderContourChart($groupCount, $dimensions); + break; + case 'stockChart': + $this->renderStockChart($groupCount, $dimensions); + break; + default: + echo $chartType.' is not yet implemented
'; + return false; + } + $this->renderLegend(); + + $this->graph->Stroke($outputDestination); + return true; + } + + + /** + * Create a new PHPExcel_Chart_Renderer_jpgraph + */ + public function __construct(PHPExcel_Chart $chart) + { + $this->graph = null; + $this->chart = $chart; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Title.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Title.php new file mode 100644 index 0000000..d8dc14f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Title.php @@ -0,0 +1,86 @@ +caption = $caption; + $this->layout = $layout; + } + + /** + * Get caption + * + * @return string + */ + public function getCaption() + { + return $this->caption; + } + + /** + * Set caption + * + * @param string $caption + * @return PHPExcel_Chart_Title + */ + public function setCaption($caption = null) + { + $this->caption = $caption; + + return $this; + } + + /** + * Get Layout + * + * @return PHPExcel_Chart_Layout + */ + public function getLayout() + { + return $this->layout; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Comment.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Comment.php new file mode 100644 index 0000000..d55363f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Comment.php @@ -0,0 +1,338 @@ +author = 'Author'; + $this->text = new PHPExcel_RichText(); + $this->fillColor = new PHPExcel_Style_Color('FFFFFFE1'); + $this->alignment = PHPExcel_Style_Alignment::HORIZONTAL_GENERAL; + } + + /** + * Get Author + * + * @return string + */ + public function getAuthor() + { + return $this->author; + } + + /** + * Set Author + * + * @param string $pValue + * @return PHPExcel_Comment + */ + public function setAuthor($pValue = '') + { + $this->author = $pValue; + return $this; + } + + /** + * Get Rich text comment + * + * @return PHPExcel_RichText + */ + public function getText() + { + return $this->text; + } + + /** + * Set Rich text comment + * + * @param PHPExcel_RichText $pValue + * @return PHPExcel_Comment + */ + public function setText(PHPExcel_RichText $pValue) + { + $this->text = $pValue; + return $this; + } + + /** + * Get comment width (CSS style, i.e. XXpx or YYpt) + * + * @return string + */ + public function getWidth() + { + return $this->width; + } + + /** + * Set comment width (CSS style, i.e. XXpx or YYpt) + * + * @param string $value + * @return PHPExcel_Comment + */ + public function setWidth($value = '96pt') + { + $this->width = $value; + return $this; + } + + /** + * Get comment height (CSS style, i.e. XXpx or YYpt) + * + * @return string + */ + public function getHeight() + { + return $this->height; + } + + /** + * Set comment height (CSS style, i.e. XXpx or YYpt) + * + * @param string $value + * @return PHPExcel_Comment + */ + public function setHeight($value = '55.5pt') + { + $this->height = $value; + return $this; + } + + /** + * Get left margin (CSS style, i.e. XXpx or YYpt) + * + * @return string + */ + public function getMarginLeft() + { + return $this->marginLeft; + } + + /** + * Set left margin (CSS style, i.e. XXpx or YYpt) + * + * @param string $value + * @return PHPExcel_Comment + */ + public function setMarginLeft($value = '59.25pt') + { + $this->marginLeft = $value; + return $this; + } + + /** + * Get top margin (CSS style, i.e. XXpx or YYpt) + * + * @return string + */ + public function getMarginTop() + { + return $this->marginTop; + } + + /** + * Set top margin (CSS style, i.e. XXpx or YYpt) + * + * @param string $value + * @return PHPExcel_Comment + */ + public function setMarginTop($value = '1.5pt') + { + $this->marginTop = $value; + return $this; + } + + /** + * Is the comment visible by default? + * + * @return boolean + */ + public function getVisible() + { + return $this->visible; + } + + /** + * Set comment default visibility + * + * @param boolean $value + * @return PHPExcel_Comment + */ + public function setVisible($value = false) + { + $this->visible = $value; + return $this; + } + + /** + * Get fill color + * + * @return PHPExcel_Style_Color + */ + public function getFillColor() + { + return $this->fillColor; + } + + /** + * Set Alignment + * + * @param string $pValue + * @return PHPExcel_Comment + */ + public function setAlignment($pValue = PHPExcel_Style_Alignment::HORIZONTAL_GENERAL) + { + $this->alignment = $pValue; + return $this; + } + + /** + * Get Alignment + * + * @return string + */ + public function getAlignment() + { + return $this->alignment; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->author . + $this->text->getHashCode() . + $this->width . + $this->height . + $this->marginLeft . + $this->marginTop . + ($this->visible ? 1 : 0) . + $this->fillColor->getHashCode() . + $this->alignment . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } + + /** + * Convert to string + * + * @return string + */ + public function __toString() + { + return $this->text->getPlainText(); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/DocumentProperties.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/DocumentProperties.php new file mode 100644 index 0000000..2395ba9 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/DocumentProperties.php @@ -0,0 +1,611 @@ +lastModifiedBy = $this->creator; + $this->created = time(); + $this->modified = time(); + } + + /** + * Get Creator + * + * @return string + */ + public function getCreator() + { + return $this->creator; + } + + /** + * Set Creator + * + * @param string $pValue + * @return PHPExcel_DocumentProperties + */ + public function setCreator($pValue = '') + { + $this->creator = $pValue; + return $this; + } + + /** + * Get Last Modified By + * + * @return string + */ + public function getLastModifiedBy() + { + return $this->lastModifiedBy; + } + + /** + * Set Last Modified By + * + * @param string $pValue + * @return PHPExcel_DocumentProperties + */ + public function setLastModifiedBy($pValue = '') + { + $this->lastModifiedBy = $pValue; + return $this; + } + + /** + * Get Created + * + * @return datetime + */ + public function getCreated() + { + return $this->created; + } + + /** + * Set Created + * + * @param datetime $pValue + * @return PHPExcel_DocumentProperties + */ + public function setCreated($pValue = null) + { + if ($pValue === null) { + $pValue = time(); + } elseif (is_string($pValue)) { + if (is_numeric($pValue)) { + $pValue = intval($pValue); + } else { + $pValue = strtotime($pValue); + } + } + + $this->created = $pValue; + return $this; + } + + /** + * Get Modified + * + * @return datetime + */ + public function getModified() + { + return $this->modified; + } + + /** + * Set Modified + * + * @param datetime $pValue + * @return PHPExcel_DocumentProperties + */ + public function setModified($pValue = null) + { + if ($pValue === null) { + $pValue = time(); + } elseif (is_string($pValue)) { + if (is_numeric($pValue)) { + $pValue = intval($pValue); + } else { + $pValue = strtotime($pValue); + } + } + + $this->modified = $pValue; + return $this; + } + + /** + * Get Title + * + * @return string + */ + public function getTitle() + { + return $this->title; + } + + /** + * Set Title + * + * @param string $pValue + * @return PHPExcel_DocumentProperties + */ + public function setTitle($pValue = '') + { + $this->title = $pValue; + return $this; + } + + /** + * Get Description + * + * @return string + */ + public function getDescription() + { + return $this->description; + } + + /** + * Set Description + * + * @param string $pValue + * @return PHPExcel_DocumentProperties + */ + public function setDescription($pValue = '') + { + $this->description = $pValue; + return $this; + } + + /** + * Get Subject + * + * @return string + */ + public function getSubject() + { + return $this->subject; + } + + /** + * Set Subject + * + * @param string $pValue + * @return PHPExcel_DocumentProperties + */ + public function setSubject($pValue = '') + { + $this->subject = $pValue; + return $this; + } + + /** + * Get Keywords + * + * @return string + */ + public function getKeywords() + { + return $this->keywords; + } + + /** + * Set Keywords + * + * @param string $pValue + * @return PHPExcel_DocumentProperties + */ + public function setKeywords($pValue = '') + { + $this->keywords = $pValue; + return $this; + } + + /** + * Get Category + * + * @return string + */ + public function getCategory() + { + return $this->category; + } + + /** + * Set Category + * + * @param string $pValue + * @return PHPExcel_DocumentProperties + */ + public function setCategory($pValue = '') + { + $this->category = $pValue; + return $this; + } + + /** + * Get Company + * + * @return string + */ + public function getCompany() + { + return $this->company; + } + + /** + * Set Company + * + * @param string $pValue + * @return PHPExcel_DocumentProperties + */ + public function setCompany($pValue = '') + { + $this->company = $pValue; + return $this; + } + + /** + * Get Manager + * + * @return string + */ + public function getManager() + { + return $this->manager; + } + + /** + * Set Manager + * + * @param string $pValue + * @return PHPExcel_DocumentProperties + */ + public function setManager($pValue = '') + { + $this->manager = $pValue; + return $this; + } + + /** + * Get a List of Custom Property Names + * + * @return array of string + */ + public function getCustomProperties() + { + return array_keys($this->customProperties); + } + + /** + * Check if a Custom Property is defined + * + * @param string $propertyName + * @return boolean + */ + public function isCustomPropertySet($propertyName) + { + return isset($this->customProperties[$propertyName]); + } + + /** + * Get a Custom Property Value + * + * @param string $propertyName + * @return string + */ + public function getCustomPropertyValue($propertyName) + { + if (isset($this->customProperties[$propertyName])) { + return $this->customProperties[$propertyName]['value']; + } + + } + + /** + * Get a Custom Property Type + * + * @param string $propertyName + * @return string + */ + public function getCustomPropertyType($propertyName) + { + if (isset($this->customProperties[$propertyName])) { + return $this->customProperties[$propertyName]['type']; + } + + } + + /** + * Set a Custom Property + * + * @param string $propertyName + * @param mixed $propertyValue + * @param string $propertyType + * 'i' : Integer + * 'f' : Floating Point + * 's' : String + * 'd' : Date/Time + * 'b' : Boolean + * @return PHPExcel_DocumentProperties + */ + public function setCustomProperty($propertyName, $propertyValue = '', $propertyType = null) + { + if (($propertyType === null) || (!in_array($propertyType, array(self::PROPERTY_TYPE_INTEGER, + self::PROPERTY_TYPE_FLOAT, + self::PROPERTY_TYPE_STRING, + self::PROPERTY_TYPE_DATE, + self::PROPERTY_TYPE_BOOLEAN)))) { + if ($propertyValue === null) { + $propertyType = self::PROPERTY_TYPE_STRING; + } elseif (is_float($propertyValue)) { + $propertyType = self::PROPERTY_TYPE_FLOAT; + } elseif (is_int($propertyValue)) { + $propertyType = self::PROPERTY_TYPE_INTEGER; + } elseif (is_bool($propertyValue)) { + $propertyType = self::PROPERTY_TYPE_BOOLEAN; + } else { + $propertyType = self::PROPERTY_TYPE_STRING; + } + } + + $this->customProperties[$propertyName] = array( + 'value' => $propertyValue, + 'type' => $propertyType + ); + return $this; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } + + public static function convertProperty($propertyValue, $propertyType) + { + switch ($propertyType) { + case 'empty': // Empty + return ''; + break; + case 'null': // Null + return null; + break; + case 'i1': // 1-Byte Signed Integer + case 'i2': // 2-Byte Signed Integer + case 'i4': // 4-Byte Signed Integer + case 'i8': // 8-Byte Signed Integer + case 'int': // Integer + return (int) $propertyValue; + break; + case 'ui1': // 1-Byte Unsigned Integer + case 'ui2': // 2-Byte Unsigned Integer + case 'ui4': // 4-Byte Unsigned Integer + case 'ui8': // 8-Byte Unsigned Integer + case 'uint': // Unsigned Integer + return abs((int) $propertyValue); + break; + case 'r4': // 4-Byte Real Number + case 'r8': // 8-Byte Real Number + case 'decimal': // Decimal + return (float) $propertyValue; + break; + case 'lpstr': // LPSTR + case 'lpwstr': // LPWSTR + case 'bstr': // Basic String + return $propertyValue; + break; + case 'date': // Date and Time + case 'filetime': // File Time + return strtotime($propertyValue); + break; + case 'bool': // Boolean + return ($propertyValue == 'true') ? true : false; + break; + case 'cy': // Currency + case 'error': // Error Status Code + case 'vector': // Vector + case 'array': // Array + case 'blob': // Binary Blob + case 'oblob': // Binary Blob Object + case 'stream': // Binary Stream + case 'ostream': // Binary Stream Object + case 'storage': // Binary Storage + case 'ostorage': // Binary Storage Object + case 'vstream': // Binary Versioned Stream + case 'clsid': // Class ID + case 'cf': // Clipboard Data + return $propertyValue; + break; + } + return $propertyValue; + } + + public static function convertPropertyType($propertyType) + { + switch ($propertyType) { + case 'i1': // 1-Byte Signed Integer + case 'i2': // 2-Byte Signed Integer + case 'i4': // 4-Byte Signed Integer + case 'i8': // 8-Byte Signed Integer + case 'int': // Integer + case 'ui1': // 1-Byte Unsigned Integer + case 'ui2': // 2-Byte Unsigned Integer + case 'ui4': // 4-Byte Unsigned Integer + case 'ui8': // 8-Byte Unsigned Integer + case 'uint': // Unsigned Integer + return self::PROPERTY_TYPE_INTEGER; + break; + case 'r4': // 4-Byte Real Number + case 'r8': // 8-Byte Real Number + case 'decimal': // Decimal + return self::PROPERTY_TYPE_FLOAT; + break; + case 'empty': // Empty + case 'null': // Null + case 'lpstr': // LPSTR + case 'lpwstr': // LPWSTR + case 'bstr': // Basic String + return self::PROPERTY_TYPE_STRING; + break; + case 'date': // Date and Time + case 'filetime': // File Time + return self::PROPERTY_TYPE_DATE; + break; + case 'bool': // Boolean + return self::PROPERTY_TYPE_BOOLEAN; + break; + case 'cy': // Currency + case 'error': // Error Status Code + case 'vector': // Vector + case 'array': // Array + case 'blob': // Binary Blob + case 'oblob': // Binary Blob Object + case 'stream': // Binary Stream + case 'ostream': // Binary Stream Object + case 'storage': // Binary Storage + case 'ostorage': // Binary Storage Object + case 'vstream': // Binary Versioned Stream + case 'clsid': // Class ID + case 'cf': // Clipboard Data + return self::PROPERTY_TYPE_UNKNOWN; + break; + } + return self::PROPERTY_TYPE_UNKNOWN; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/DocumentSecurity.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/DocumentSecurity.php new file mode 100644 index 0000000..ecea0da --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/DocumentSecurity.php @@ -0,0 +1,222 @@ +lockRevision = false; + $this->lockStructure = false; + $this->lockWindows = false; + $this->revisionsPassword = ''; + $this->workbookPassword = ''; + } + + /** + * Is some sort of document security enabled? + * + * @return boolean + */ + public function isSecurityEnabled() + { + return $this->lockRevision || + $this->lockStructure || + $this->lockWindows; + } + + /** + * Get LockRevision + * + * @return boolean + */ + public function getLockRevision() + { + return $this->lockRevision; + } + + /** + * Set LockRevision + * + * @param boolean $pValue + * @return PHPExcel_DocumentSecurity + */ + public function setLockRevision($pValue = false) + { + $this->lockRevision = $pValue; + return $this; + } + + /** + * Get LockStructure + * + * @return boolean + */ + public function getLockStructure() + { + return $this->lockStructure; + } + + /** + * Set LockStructure + * + * @param boolean $pValue + * @return PHPExcel_DocumentSecurity + */ + public function setLockStructure($pValue = false) + { + $this->lockStructure = $pValue; + return $this; + } + + /** + * Get LockWindows + * + * @return boolean + */ + public function getLockWindows() + { + return $this->lockWindows; + } + + /** + * Set LockWindows + * + * @param boolean $pValue + * @return PHPExcel_DocumentSecurity + */ + public function setLockWindows($pValue = false) + { + $this->lockWindows = $pValue; + return $this; + } + + /** + * Get RevisionsPassword (hashed) + * + * @return string + */ + public function getRevisionsPassword() + { + return $this->revisionsPassword; + } + + /** + * Set RevisionsPassword + * + * @param string $pValue + * @param boolean $pAlreadyHashed If the password has already been hashed, set this to true + * @return PHPExcel_DocumentSecurity + */ + public function setRevisionsPassword($pValue = '', $pAlreadyHashed = false) + { + if (!$pAlreadyHashed) { + $pValue = PHPExcel_Shared_PasswordHasher::hashPassword($pValue); + } + $this->revisionsPassword = $pValue; + return $this; + } + + /** + * Get WorkbookPassword (hashed) + * + * @return string + */ + public function getWorkbookPassword() + { + return $this->workbookPassword; + } + + /** + * Set WorkbookPassword + * + * @param string $pValue + * @param boolean $pAlreadyHashed If the password has already been hashed, set this to true + * @return PHPExcel_DocumentSecurity + */ + public function setWorkbookPassword($pValue = '', $pAlreadyHashed = false) + { + if (!$pAlreadyHashed) { + $pValue = PHPExcel_Shared_PasswordHasher::hashPassword($pValue); + } + $this->workbookPassword = $pValue; + return $this; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Exception.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Exception.php new file mode 100644 index 0000000..b27750e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Exception.php @@ -0,0 +1,54 @@ +line = $line; + $e->file = $file; + throw $e; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/HashTable.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/HashTable.php new file mode 100644 index 0000000..c21d18c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/HashTable.php @@ -0,0 +1,204 @@ +addFromSource($pSource); + } + } + + /** + * Add HashTable items from source + * + * @param PHPExcel_IComparable[] $pSource Source array to create HashTable from + * @throws PHPExcel_Exception + */ + public function addFromSource($pSource = null) + { + // Check if an array was passed + if ($pSource == null) { + return; + } elseif (!is_array($pSource)) { + throw new PHPExcel_Exception('Invalid array parameter passed.'); + } + + foreach ($pSource as $item) { + $this->add($item); + } + } + + /** + * Add HashTable item + * + * @param PHPExcel_IComparable $pSource Item to add + * @throws PHPExcel_Exception + */ + public function add(PHPExcel_IComparable $pSource = null) + { + $hash = $pSource->getHashCode(); + if (!isset($this->items[$hash])) { + $this->items[$hash] = $pSource; + $this->keyMap[count($this->items) - 1] = $hash; + } + } + + /** + * Remove HashTable item + * + * @param PHPExcel_IComparable $pSource Item to remove + * @throws PHPExcel_Exception + */ + public function remove(PHPExcel_IComparable $pSource = null) + { + $hash = $pSource->getHashCode(); + if (isset($this->items[$hash])) { + unset($this->items[$hash]); + + $deleteKey = -1; + foreach ($this->keyMap as $key => $value) { + if ($deleteKey >= 0) { + $this->keyMap[$key - 1] = $value; + } + + if ($value == $hash) { + $deleteKey = $key; + } + } + unset($this->keyMap[count($this->keyMap) - 1]); + } + } + + /** + * Clear HashTable + * + */ + public function clear() + { + $this->items = array(); + $this->keyMap = array(); + } + + /** + * Count + * + * @return int + */ + public function count() + { + return count($this->items); + } + + /** + * Get index for hash code + * + * @param string $pHashCode + * @return int Index + */ + public function getIndexForHashCode($pHashCode = '') + { + return array_search($pHashCode, $this->keyMap); + } + + /** + * Get by index + * + * @param int $pIndex + * @return PHPExcel_IComparable + * + */ + public function getByIndex($pIndex = 0) + { + if (isset($this->keyMap[$pIndex])) { + return $this->getByHashCode($this->keyMap[$pIndex]); + } + + return null; + } + + /** + * Get by hashcode + * + * @param string $pHashCode + * @return PHPExcel_IComparable + * + */ + public function getByHashCode($pHashCode = '') + { + if (isset($this->items[$pHashCode])) { + return $this->items[$pHashCode]; + } + + return null; + } + + /** + * HashTable to array + * + * @return PHPExcel_IComparable[] + */ + public function toArray() + { + return $this->items; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Helper/HTML.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Helper/HTML.php new file mode 100644 index 0000000..a78f11c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Helper/HTML.php @@ -0,0 +1,808 @@ + 'f0f8ff', + 'antiquewhite' => 'faebd7', + 'antiquewhite1' => 'ffefdb', + 'antiquewhite2' => 'eedfcc', + 'antiquewhite3' => 'cdc0b0', + 'antiquewhite4' => '8b8378', + 'aqua' => '00ffff', + 'aquamarine1' => '7fffd4', + 'aquamarine2' => '76eec6', + 'aquamarine4' => '458b74', + 'azure1' => 'f0ffff', + 'azure2' => 'e0eeee', + 'azure3' => 'c1cdcd', + 'azure4' => '838b8b', + 'beige' => 'f5f5dc', + 'bisque1' => 'ffe4c4', + 'bisque2' => 'eed5b7', + 'bisque3' => 'cdb79e', + 'bisque4' => '8b7d6b', + 'black' => '000000', + 'blanchedalmond' => 'ffebcd', + 'blue' => '0000ff', + 'blue1' => '0000ff', + 'blue2' => '0000ee', + 'blue4' => '00008b', + 'blueviolet' => '8a2be2', + 'brown' => 'a52a2a', + 'brown1' => 'ff4040', + 'brown2' => 'ee3b3b', + 'brown3' => 'cd3333', + 'brown4' => '8b2323', + 'burlywood' => 'deb887', + 'burlywood1' => 'ffd39b', + 'burlywood2' => 'eec591', + 'burlywood3' => 'cdaa7d', + 'burlywood4' => '8b7355', + 'cadetblue' => '5f9ea0', + 'cadetblue1' => '98f5ff', + 'cadetblue2' => '8ee5ee', + 'cadetblue3' => '7ac5cd', + 'cadetblue4' => '53868b', + 'chartreuse1' => '7fff00', + 'chartreuse2' => '76ee00', + 'chartreuse3' => '66cd00', + 'chartreuse4' => '458b00', + 'chocolate' => 'd2691e', + 'chocolate1' => 'ff7f24', + 'chocolate2' => 'ee7621', + 'chocolate3' => 'cd661d', + 'coral' => 'ff7f50', + 'coral1' => 'ff7256', + 'coral2' => 'ee6a50', + 'coral3' => 'cd5b45', + 'coral4' => '8b3e2f', + 'cornflowerblue' => '6495ed', + 'cornsilk1' => 'fff8dc', + 'cornsilk2' => 'eee8cd', + 'cornsilk3' => 'cdc8b1', + 'cornsilk4' => '8b8878', + 'cyan1' => '00ffff', + 'cyan2' => '00eeee', + 'cyan3' => '00cdcd', + 'cyan4' => '008b8b', + 'darkgoldenrod' => 'b8860b', + 'darkgoldenrod1' => 'ffb90f', + 'darkgoldenrod2' => 'eead0e', + 'darkgoldenrod3' => 'cd950c', + 'darkgoldenrod4' => '8b6508', + 'darkgreen' => '006400', + 'darkkhaki' => 'bdb76b', + 'darkolivegreen' => '556b2f', + 'darkolivegreen1' => 'caff70', + 'darkolivegreen2' => 'bcee68', + 'darkolivegreen3' => 'a2cd5a', + 'darkolivegreen4' => '6e8b3d', + 'darkorange' => 'ff8c00', + 'darkorange1' => 'ff7f00', + 'darkorange2' => 'ee7600', + 'darkorange3' => 'cd6600', + 'darkorange4' => '8b4500', + 'darkorchid' => '9932cc', + 'darkorchid1' => 'bf3eff', + 'darkorchid2' => 'b23aee', + 'darkorchid3' => '9a32cd', + 'darkorchid4' => '68228b', + 'darksalmon' => 'e9967a', + 'darkseagreen' => '8fbc8f', + 'darkseagreen1' => 'c1ffc1', + 'darkseagreen2' => 'b4eeb4', + 'darkseagreen3' => '9bcd9b', + 'darkseagreen4' => '698b69', + 'darkslateblue' => '483d8b', + 'darkslategray' => '2f4f4f', + 'darkslategray1' => '97ffff', + 'darkslategray2' => '8deeee', + 'darkslategray3' => '79cdcd', + 'darkslategray4' => '528b8b', + 'darkturquoise' => '00ced1', + 'darkviolet' => '9400d3', + 'deeppink1' => 'ff1493', + 'deeppink2' => 'ee1289', + 'deeppink3' => 'cd1076', + 'deeppink4' => '8b0a50', + 'deepskyblue1' => '00bfff', + 'deepskyblue2' => '00b2ee', + 'deepskyblue3' => '009acd', + 'deepskyblue4' => '00688b', + 'dimgray' => '696969', + 'dodgerblue1' => '1e90ff', + 'dodgerblue2' => '1c86ee', + 'dodgerblue3' => '1874cd', + 'dodgerblue4' => '104e8b', + 'firebrick' => 'b22222', + 'firebrick1' => 'ff3030', + 'firebrick2' => 'ee2c2c', + 'firebrick3' => 'cd2626', + 'firebrick4' => '8b1a1a', + 'floralwhite' => 'fffaf0', + 'forestgreen' => '228b22', + 'fuchsia' => 'ff00ff', + 'gainsboro' => 'dcdcdc', + 'ghostwhite' => 'f8f8ff', + 'gold1' => 'ffd700', + 'gold2' => 'eec900', + 'gold3' => 'cdad00', + 'gold4' => '8b7500', + 'goldenrod' => 'daa520', + 'goldenrod1' => 'ffc125', + 'goldenrod2' => 'eeb422', + 'goldenrod3' => 'cd9b1d', + 'goldenrod4' => '8b6914', + 'gray' => 'bebebe', + 'gray1' => '030303', + 'gray10' => '1a1a1a', + 'gray11' => '1c1c1c', + 'gray12' => '1f1f1f', + 'gray13' => '212121', + 'gray14' => '242424', + 'gray15' => '262626', + 'gray16' => '292929', + 'gray17' => '2b2b2b', + 'gray18' => '2e2e2e', + 'gray19' => '303030', + 'gray2' => '050505', + 'gray20' => '333333', + 'gray21' => '363636', + 'gray22' => '383838', + 'gray23' => '3b3b3b', + 'gray24' => '3d3d3d', + 'gray25' => '404040', + 'gray26' => '424242', + 'gray27' => '454545', + 'gray28' => '474747', + 'gray29' => '4a4a4a', + 'gray3' => '080808', + 'gray30' => '4d4d4d', + 'gray31' => '4f4f4f', + 'gray32' => '525252', + 'gray33' => '545454', + 'gray34' => '575757', + 'gray35' => '595959', + 'gray36' => '5c5c5c', + 'gray37' => '5e5e5e', + 'gray38' => '616161', + 'gray39' => '636363', + 'gray4' => '0a0a0a', + 'gray40' => '666666', + 'gray41' => '696969', + 'gray42' => '6b6b6b', + 'gray43' => '6e6e6e', + 'gray44' => '707070', + 'gray45' => '737373', + 'gray46' => '757575', + 'gray47' => '787878', + 'gray48' => '7a7a7a', + 'gray49' => '7d7d7d', + 'gray5' => '0d0d0d', + 'gray50' => '7f7f7f', + 'gray51' => '828282', + 'gray52' => '858585', + 'gray53' => '878787', + 'gray54' => '8a8a8a', + 'gray55' => '8c8c8c', + 'gray56' => '8f8f8f', + 'gray57' => '919191', + 'gray58' => '949494', + 'gray59' => '969696', + 'gray6' => '0f0f0f', + 'gray60' => '999999', + 'gray61' => '9c9c9c', + 'gray62' => '9e9e9e', + 'gray63' => 'a1a1a1', + 'gray64' => 'a3a3a3', + 'gray65' => 'a6a6a6', + 'gray66' => 'a8a8a8', + 'gray67' => 'ababab', + 'gray68' => 'adadad', + 'gray69' => 'b0b0b0', + 'gray7' => '121212', + 'gray70' => 'b3b3b3', + 'gray71' => 'b5b5b5', + 'gray72' => 'b8b8b8', + 'gray73' => 'bababa', + 'gray74' => 'bdbdbd', + 'gray75' => 'bfbfbf', + 'gray76' => 'c2c2c2', + 'gray77' => 'c4c4c4', + 'gray78' => 'c7c7c7', + 'gray79' => 'c9c9c9', + 'gray8' => '141414', + 'gray80' => 'cccccc', + 'gray81' => 'cfcfcf', + 'gray82' => 'd1d1d1', + 'gray83' => 'd4d4d4', + 'gray84' => 'd6d6d6', + 'gray85' => 'd9d9d9', + 'gray86' => 'dbdbdb', + 'gray87' => 'dedede', + 'gray88' => 'e0e0e0', + 'gray89' => 'e3e3e3', + 'gray9' => '171717', + 'gray90' => 'e5e5e5', + 'gray91' => 'e8e8e8', + 'gray92' => 'ebebeb', + 'gray93' => 'ededed', + 'gray94' => 'f0f0f0', + 'gray95' => 'f2f2f2', + 'gray97' => 'f7f7f7', + 'gray98' => 'fafafa', + 'gray99' => 'fcfcfc', + 'green' => '00ff00', + 'green1' => '00ff00', + 'green2' => '00ee00', + 'green3' => '00cd00', + 'green4' => '008b00', + 'greenyellow' => 'adff2f', + 'honeydew1' => 'f0fff0', + 'honeydew2' => 'e0eee0', + 'honeydew3' => 'c1cdc1', + 'honeydew4' => '838b83', + 'hotpink' => 'ff69b4', + 'hotpink1' => 'ff6eb4', + 'hotpink2' => 'ee6aa7', + 'hotpink3' => 'cd6090', + 'hotpink4' => '8b3a62', + 'indianred' => 'cd5c5c', + 'indianred1' => 'ff6a6a', + 'indianred2' => 'ee6363', + 'indianred3' => 'cd5555', + 'indianred4' => '8b3a3a', + 'ivory1' => 'fffff0', + 'ivory2' => 'eeeee0', + 'ivory3' => 'cdcdc1', + 'ivory4' => '8b8b83', + 'khaki' => 'f0e68c', + 'khaki1' => 'fff68f', + 'khaki2' => 'eee685', + 'khaki3' => 'cdc673', + 'khaki4' => '8b864e', + 'lavender' => 'e6e6fa', + 'lavenderblush1' => 'fff0f5', + 'lavenderblush2' => 'eee0e5', + 'lavenderblush3' => 'cdc1c5', + 'lavenderblush4' => '8b8386', + 'lawngreen' => '7cfc00', + 'lemonchiffon1' => 'fffacd', + 'lemonchiffon2' => 'eee9bf', + 'lemonchiffon3' => 'cdc9a5', + 'lemonchiffon4' => '8b8970', + 'light' => 'eedd82', + 'lightblue' => 'add8e6', + 'lightblue1' => 'bfefff', + 'lightblue2' => 'b2dfee', + 'lightblue3' => '9ac0cd', + 'lightblue4' => '68838b', + 'lightcoral' => 'f08080', + 'lightcyan1' => 'e0ffff', + 'lightcyan2' => 'd1eeee', + 'lightcyan3' => 'b4cdcd', + 'lightcyan4' => '7a8b8b', + 'lightgoldenrod1' => 'ffec8b', + 'lightgoldenrod2' => 'eedc82', + 'lightgoldenrod3' => 'cdbe70', + 'lightgoldenrod4' => '8b814c', + 'lightgoldenrodyellow' => 'fafad2', + 'lightgray' => 'd3d3d3', + 'lightpink' => 'ffb6c1', + 'lightpink1' => 'ffaeb9', + 'lightpink2' => 'eea2ad', + 'lightpink3' => 'cd8c95', + 'lightpink4' => '8b5f65', + 'lightsalmon1' => 'ffa07a', + 'lightsalmon2' => 'ee9572', + 'lightsalmon3' => 'cd8162', + 'lightsalmon4' => '8b5742', + 'lightseagreen' => '20b2aa', + 'lightskyblue' => '87cefa', + 'lightskyblue1' => 'b0e2ff', + 'lightskyblue2' => 'a4d3ee', + 'lightskyblue3' => '8db6cd', + 'lightskyblue4' => '607b8b', + 'lightslateblue' => '8470ff', + 'lightslategray' => '778899', + 'lightsteelblue' => 'b0c4de', + 'lightsteelblue1' => 'cae1ff', + 'lightsteelblue2' => 'bcd2ee', + 'lightsteelblue3' => 'a2b5cd', + 'lightsteelblue4' => '6e7b8b', + 'lightyellow1' => 'ffffe0', + 'lightyellow2' => 'eeeed1', + 'lightyellow3' => 'cdcdb4', + 'lightyellow4' => '8b8b7a', + 'lime' => '00ff00', + 'limegreen' => '32cd32', + 'linen' => 'faf0e6', + 'magenta' => 'ff00ff', + 'magenta2' => 'ee00ee', + 'magenta3' => 'cd00cd', + 'magenta4' => '8b008b', + 'maroon' => 'b03060', + 'maroon1' => 'ff34b3', + 'maroon2' => 'ee30a7', + 'maroon3' => 'cd2990', + 'maroon4' => '8b1c62', + 'medium' => '66cdaa', + 'mediumaquamarine' => '66cdaa', + 'mediumblue' => '0000cd', + 'mediumorchid' => 'ba55d3', + 'mediumorchid1' => 'e066ff', + 'mediumorchid2' => 'd15fee', + 'mediumorchid3' => 'b452cd', + 'mediumorchid4' => '7a378b', + 'mediumpurple' => '9370db', + 'mediumpurple1' => 'ab82ff', + 'mediumpurple2' => '9f79ee', + 'mediumpurple3' => '8968cd', + 'mediumpurple4' => '5d478b', + 'mediumseagreen' => '3cb371', + 'mediumslateblue' => '7b68ee', + 'mediumspringgreen' => '00fa9a', + 'mediumturquoise' => '48d1cc', + 'mediumvioletred' => 'c71585', + 'midnightblue' => '191970', + 'mintcream' => 'f5fffa', + 'mistyrose1' => 'ffe4e1', + 'mistyrose2' => 'eed5d2', + 'mistyrose3' => 'cdb7b5', + 'mistyrose4' => '8b7d7b', + 'moccasin' => 'ffe4b5', + 'navajowhite1' => 'ffdead', + 'navajowhite2' => 'eecfa1', + 'navajowhite3' => 'cdb38b', + 'navajowhite4' => '8b795e', + 'navy' => '000080', + 'navyblue' => '000080', + 'oldlace' => 'fdf5e6', + 'olive' => '808000', + 'olivedrab' => '6b8e23', + 'olivedrab1' => 'c0ff3e', + 'olivedrab2' => 'b3ee3a', + 'olivedrab4' => '698b22', + 'orange' => 'ffa500', + 'orange1' => 'ffa500', + 'orange2' => 'ee9a00', + 'orange3' => 'cd8500', + 'orange4' => '8b5a00', + 'orangered1' => 'ff4500', + 'orangered2' => 'ee4000', + 'orangered3' => 'cd3700', + 'orangered4' => '8b2500', + 'orchid' => 'da70d6', + 'orchid1' => 'ff83fa', + 'orchid2' => 'ee7ae9', + 'orchid3' => 'cd69c9', + 'orchid4' => '8b4789', + 'pale' => 'db7093', + 'palegoldenrod' => 'eee8aa', + 'palegreen' => '98fb98', + 'palegreen1' => '9aff9a', + 'palegreen2' => '90ee90', + 'palegreen3' => '7ccd7c', + 'palegreen4' => '548b54', + 'paleturquoise' => 'afeeee', + 'paleturquoise1' => 'bbffff', + 'paleturquoise2' => 'aeeeee', + 'paleturquoise3' => '96cdcd', + 'paleturquoise4' => '668b8b', + 'palevioletred' => 'db7093', + 'palevioletred1' => 'ff82ab', + 'palevioletred2' => 'ee799f', + 'palevioletred3' => 'cd6889', + 'palevioletred4' => '8b475d', + 'papayawhip' => 'ffefd5', + 'peachpuff1' => 'ffdab9', + 'peachpuff2' => 'eecbad', + 'peachpuff3' => 'cdaf95', + 'peachpuff4' => '8b7765', + 'pink' => 'ffc0cb', + 'pink1' => 'ffb5c5', + 'pink2' => 'eea9b8', + 'pink3' => 'cd919e', + 'pink4' => '8b636c', + 'plum' => 'dda0dd', + 'plum1' => 'ffbbff', + 'plum2' => 'eeaeee', + 'plum3' => 'cd96cd', + 'plum4' => '8b668b', + 'powderblue' => 'b0e0e6', + 'purple' => 'a020f0', + 'rebeccapurple' => '663399', + 'purple1' => '9b30ff', + 'purple2' => '912cee', + 'purple3' => '7d26cd', + 'purple4' => '551a8b', + 'red' => 'ff0000', + 'red1' => 'ff0000', + 'red2' => 'ee0000', + 'red3' => 'cd0000', + 'red4' => '8b0000', + 'rosybrown' => 'bc8f8f', + 'rosybrown1' => 'ffc1c1', + 'rosybrown2' => 'eeb4b4', + 'rosybrown3' => 'cd9b9b', + 'rosybrown4' => '8b6969', + 'royalblue' => '4169e1', + 'royalblue1' => '4876ff', + 'royalblue2' => '436eee', + 'royalblue3' => '3a5fcd', + 'royalblue4' => '27408b', + 'saddlebrown' => '8b4513', + 'salmon' => 'fa8072', + 'salmon1' => 'ff8c69', + 'salmon2' => 'ee8262', + 'salmon3' => 'cd7054', + 'salmon4' => '8b4c39', + 'sandybrown' => 'f4a460', + 'seagreen1' => '54ff9f', + 'seagreen2' => '4eee94', + 'seagreen3' => '43cd80', + 'seagreen4' => '2e8b57', + 'seashell1' => 'fff5ee', + 'seashell2' => 'eee5de', + 'seashell3' => 'cdc5bf', + 'seashell4' => '8b8682', + 'sienna' => 'a0522d', + 'sienna1' => 'ff8247', + 'sienna2' => 'ee7942', + 'sienna3' => 'cd6839', + 'sienna4' => '8b4726', + 'silver' => 'c0c0c0', + 'skyblue' => '87ceeb', + 'skyblue1' => '87ceff', + 'skyblue2' => '7ec0ee', + 'skyblue3' => '6ca6cd', + 'skyblue4' => '4a708b', + 'slateblue' => '6a5acd', + 'slateblue1' => '836fff', + 'slateblue2' => '7a67ee', + 'slateblue3' => '6959cd', + 'slateblue4' => '473c8b', + 'slategray' => '708090', + 'slategray1' => 'c6e2ff', + 'slategray2' => 'b9d3ee', + 'slategray3' => '9fb6cd', + 'slategray4' => '6c7b8b', + 'snow1' => 'fffafa', + 'snow2' => 'eee9e9', + 'snow3' => 'cdc9c9', + 'snow4' => '8b8989', + 'springgreen1' => '00ff7f', + 'springgreen2' => '00ee76', + 'springgreen3' => '00cd66', + 'springgreen4' => '008b45', + 'steelblue' => '4682b4', + 'steelblue1' => '63b8ff', + 'steelblue2' => '5cacee', + 'steelblue3' => '4f94cd', + 'steelblue4' => '36648b', + 'tan' => 'd2b48c', + 'tan1' => 'ffa54f', + 'tan2' => 'ee9a49', + 'tan3' => 'cd853f', + 'tan4' => '8b5a2b', + 'teal' => '008080', + 'thistle' => 'd8bfd8', + 'thistle1' => 'ffe1ff', + 'thistle2' => 'eed2ee', + 'thistle3' => 'cdb5cd', + 'thistle4' => '8b7b8b', + 'tomato1' => 'ff6347', + 'tomato2' => 'ee5c42', + 'tomato3' => 'cd4f39', + 'tomato4' => '8b3626', + 'turquoise' => '40e0d0', + 'turquoise1' => '00f5ff', + 'turquoise2' => '00e5ee', + 'turquoise3' => '00c5cd', + 'turquoise4' => '00868b', + 'violet' => 'ee82ee', + 'violetred' => 'd02090', + 'violetred1' => 'ff3e96', + 'violetred2' => 'ee3a8c', + 'violetred3' => 'cd3278', + 'violetred4' => '8b2252', + 'wheat' => 'f5deb3', + 'wheat1' => 'ffe7ba', + 'wheat2' => 'eed8ae', + 'wheat3' => 'cdba96', + 'wheat4' => '8b7e66', + 'white' => 'ffffff', + 'whitesmoke' => 'f5f5f5', + 'yellow' => 'ffff00', + 'yellow1' => 'ffff00', + 'yellow2' => 'eeee00', + 'yellow3' => 'cdcd00', + 'yellow4' => '8b8b00', + 'yellowgreen' => '9acd32', + ); + + protected $face; + protected $size; + protected $color; + + protected $bold = false; + protected $italic = false; + protected $underline = false; + protected $superscript = false; + protected $subscript = false; + protected $strikethrough = false; + + protected $startTagCallbacks = array( + 'font' => 'startFontTag', + 'b' => 'startBoldTag', + 'strong' => 'startBoldTag', + 'i' => 'startItalicTag', + 'em' => 'startItalicTag', + 'u' => 'startUnderlineTag', + 'ins' => 'startUnderlineTag', + 'del' => 'startStrikethruTag', + 'sup' => 'startSuperscriptTag', + 'sub' => 'startSubscriptTag', + ); + + protected $endTagCallbacks = array( + 'font' => 'endFontTag', + 'b' => 'endBoldTag', + 'strong' => 'endBoldTag', + 'i' => 'endItalicTag', + 'em' => 'endItalicTag', + 'u' => 'endUnderlineTag', + 'ins' => 'endUnderlineTag', + 'del' => 'endStrikethruTag', + 'sup' => 'endSuperscriptTag', + 'sub' => 'endSubscriptTag', + 'br' => 'breakTag', + 'p' => 'breakTag', + 'h1' => 'breakTag', + 'h2' => 'breakTag', + 'h3' => 'breakTag', + 'h4' => 'breakTag', + 'h5' => 'breakTag', + 'h6' => 'breakTag', + ); + + protected $stack = array(); + + protected $stringData = ''; + + protected $richTextObject; + + protected function initialise() + { + $this->face = $this->size = $this->color = null; + $this->bold = $this->italic = $this->underline = $this->superscript = $this->subscript = $this->strikethrough = false; + + $this->stack = array(); + + $this->stringData = ''; + } + + public function toRichTextObject($html) + { + $this->initialise(); + + // Create a new DOM object + $dom = new \DOMDocument; + // Load the HTML file into the DOM object + // Note the use of error suppression, because typically this will be an html fragment, so not fully valid markup + $loaded = @$dom->loadHTML($html); + + // Discard excess white space + $dom->preserveWhiteSpace = false; + + $this->richTextObject = new PHPExcel_RichText();; + $this->parseElements($dom); + + // Clean any further spurious whitespace + $this->cleanWhitespace(); + + return $this->richTextObject; + } + + protected function cleanWhitespace() + { + foreach ($this->richTextObject->getRichTextElements() as $key => $element) { + $text = $element->getText(); + // Trim any leading spaces on the first run + if ($key == 0) { + $text = ltrim($text); + } + // Trim any spaces immediately after a line break + $text = preg_replace('/\n */mu', "\n", $text); + $element->setText($text); + } + } + + protected function buildTextRun() + { + $text = $this->stringData; + if (trim($text) === '') { + return; + } + + $richtextRun = $this->richTextObject->createTextRun($this->stringData); + if ($this->face) { + $richtextRun->getFont()->setName($this->face); + } + if ($this->size) { + $richtextRun->getFont()->setSize($this->size); + } + if ($this->color) { + $richtextRun->getFont()->setColor(new PHPExcel_Style_Color('ff' . $this->color)); + } + if ($this->bold) { + $richtextRun->getFont()->setBold(true); + } + if ($this->italic) { + $richtextRun->getFont()->setItalic(true); + } + if ($this->underline) { + $richtextRun->getFont()->setUnderline(PHPExcel_Style_Font::UNDERLINE_SINGLE); + } + if ($this->superscript) { + $richtextRun->getFont()->setSuperScript(true); + } + if ($this->subscript) { + $richtextRun->getFont()->setSubScript(true); + } + if ($this->strikethrough) { + $richtextRun->getFont()->setStrikethrough(true); + } + $this->stringData = ''; + } + + protected function rgbToColour($rgb) + { + preg_match_all('/\d+/', $rgb, $values); + foreach ($values[0] as &$value) { + $value = str_pad(dechex($value), 2, '0', STR_PAD_LEFT); + } + return implode($values[0]); + } + + protected function colourNameLookup($rgb) + { + return self::$colourMap[$rgb]; + } + + protected function startFontTag($tag) + { + foreach ($tag->attributes as $attribute) { + $attributeName = strtolower($attribute->name); + $attributeValue = $attribute->value; + + if ($attributeName == 'color') { + if (preg_match('/rgb\s*\(/', $attributeValue)) { + $this->$attributeName = $this->rgbToColour($attributeValue); + } elseif (strpos(trim($attributeValue), '#') === 0) { + $this->$attributeName = ltrim($attributeValue, '#'); + } else { + $this->$attributeName = $this->colourNameLookup($attributeValue); + } + } else { + $this->$attributeName = $attributeValue; + } + } + } + + protected function endFontTag() + { + $this->face = $this->size = $this->color = null; + } + + protected function startBoldTag() + { + $this->bold = true; + } + + protected function endBoldTag() + { + $this->bold = false; + } + + protected function startItalicTag() + { + $this->italic = true; + } + + protected function endItalicTag() + { + $this->italic = false; + } + + protected function startUnderlineTag() + { + $this->underline = true; + } + + protected function endUnderlineTag() + { + $this->underline = false; + } + + protected function startSubscriptTag() + { + $this->subscript = true; + } + + protected function endSubscriptTag() + { + $this->subscript = false; + } + + protected function startSuperscriptTag() + { + $this->superscript = true; + } + + protected function endSuperscriptTag() + { + $this->superscript = false; + } + + protected function startStrikethruTag() + { + $this->strikethrough = true; + } + + protected function endStrikethruTag() + { + $this->strikethrough = false; + } + + protected function breakTag() + { + $this->stringData .= "\n"; + } + + protected function parseTextNode(DOMText $textNode) + { + $domText = preg_replace( + '/\s+/u', + ' ', + str_replace(array("\r", "\n"), ' ', $textNode->nodeValue) + ); + $this->stringData .= $domText; + $this->buildTextRun(); + } + + protected function handleCallback($element, $callbackTag, $callbacks) + { + if (isset($callbacks[$callbackTag])) { + $elementHandler = $callbacks[$callbackTag]; + if (method_exists($this, $elementHandler)) { + call_user_func(array($this, $elementHandler), $element); + } + } + } + + protected function parseElementNode(DOMElement $element) + { + $callbackTag = strtolower($element->nodeName); + $this->stack[] = $callbackTag; + + $this->handleCallback($element, $callbackTag, $this->startTagCallbacks); + + $this->parseElements($element); + array_pop($this->stack); + + $this->handleCallback($element, $callbackTag, $this->endTagCallbacks); + } + + protected function parseElements(DOMNode $element) + { + foreach ($element->childNodes as $child) { + if ($child instanceof DOMText) { + $this->parseTextNode($child); + } elseif ($child instanceof DOMElement) { + $this->parseElementNode($child); + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/IComparable.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/IComparable.php new file mode 100644 index 0000000..6dc36a9 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/IComparable.php @@ -0,0 +1,34 @@ + 'IWriter', 'path' => 'PHPExcel/Writer/{0}.php', 'class' => 'PHPExcel_Writer_{0}' ), + array( 'type' => 'IReader', 'path' => 'PHPExcel/Reader/{0}.php', 'class' => 'PHPExcel_Reader_{0}' ) + ); + + /** + * Autoresolve classes + * + * @var array + * @access private + * @static + */ + private static $autoResolveClasses = array( + 'Excel2007', + 'Excel5', + 'Excel2003XML', + 'OOCalc', + 'SYLK', + 'Gnumeric', + 'HTML', + 'CSV', + ); + + /** + * Private constructor for PHPExcel_IOFactory + */ + private function __construct() + { + } + + /** + * Get search locations + * + * @static + * @access public + * @return array + */ + public static function getSearchLocations() + { + return self::$searchLocations; + } + + /** + * Set search locations + * + * @static + * @access public + * @param array $value + * @throws PHPExcel_Reader_Exception + */ + public static function setSearchLocations($value) + { + if (is_array($value)) { + self::$searchLocations = $value; + } else { + throw new PHPExcel_Reader_Exception('Invalid parameter passed.'); + } + } + + /** + * Add search location + * + * @static + * @access public + * @param string $type Example: IWriter + * @param string $location Example: PHPExcel/Writer/{0}.php + * @param string $classname Example: PHPExcel_Writer_{0} + */ + public static function addSearchLocation($type = '', $location = '', $classname = '') + { + self::$searchLocations[] = array( 'type' => $type, 'path' => $location, 'class' => $classname ); + } + + /** + * Create PHPExcel_Writer_IWriter + * + * @static + * @access public + * @param PHPExcel $phpExcel + * @param string $writerType Example: Excel2007 + * @return PHPExcel_Writer_IWriter + * @throws PHPExcel_Reader_Exception + */ + public static function createWriter(PHPExcel $phpExcel, $writerType = '') + { + // Search type + $searchType = 'IWriter'; + + // Include class + foreach (self::$searchLocations as $searchLocation) { + if ($searchLocation['type'] == $searchType) { + $className = str_replace('{0}', $writerType, $searchLocation['class']); + + $instance = new $className($phpExcel); + if ($instance !== null) { + return $instance; + } + } + } + + // Nothing found... + throw new PHPExcel_Reader_Exception("No $searchType found for type $writerType"); + } + + /** + * Create PHPExcel_Reader_IReader + * + * @static + * @access public + * @param string $readerType Example: Excel2007 + * @return PHPExcel_Reader_IReader + * @throws PHPExcel_Reader_Exception + */ + public static function createReader($readerType = '') + { + // Search type + $searchType = 'IReader'; + + // Include class + foreach (self::$searchLocations as $searchLocation) { + if ($searchLocation['type'] == $searchType) { + $className = str_replace('{0}', $readerType, $searchLocation['class']); + + $instance = new $className(); + if ($instance !== null) { + return $instance; + } + } + } + + // Nothing found... + throw new PHPExcel_Reader_Exception("No $searchType found for type $readerType"); + } + + /** + * Loads PHPExcel from file using automatic PHPExcel_Reader_IReader resolution + * + * @static + * @access public + * @param string $pFilename The name of the spreadsheet file + * @return PHPExcel + * @throws PHPExcel_Reader_Exception + */ + public static function load($pFilename) + { + $reader = self::createReaderForFile($pFilename); + return $reader->load($pFilename); + } + + /** + * Identify file type using automatic PHPExcel_Reader_IReader resolution + * + * @static + * @access public + * @param string $pFilename The name of the spreadsheet file to identify + * @return string + * @throws PHPExcel_Reader_Exception + */ + public static function identify($pFilename) + { + $reader = self::createReaderForFile($pFilename); + $className = get_class($reader); + $classType = explode('_', $className); + unset($reader); + return array_pop($classType); + } + + /** + * Create PHPExcel_Reader_IReader for file using automatic PHPExcel_Reader_IReader resolution + * + * @static + * @access public + * @param string $pFilename The name of the spreadsheet file + * @return PHPExcel_Reader_IReader + * @throws PHPExcel_Reader_Exception + */ + public static function createReaderForFile($pFilename) + { + // First, lucky guess by inspecting file extension + $pathinfo = pathinfo($pFilename); + + $extensionType = null; + if (isset($pathinfo['extension'])) { + switch (strtolower($pathinfo['extension'])) { + case 'xlsx': // Excel (OfficeOpenXML) Spreadsheet + case 'xlsm': // Excel (OfficeOpenXML) Macro Spreadsheet (macros will be discarded) + case 'xltx': // Excel (OfficeOpenXML) Template + case 'xltm': // Excel (OfficeOpenXML) Macro Template (macros will be discarded) + $extensionType = 'Excel2007'; + break; + case 'xls': // Excel (BIFF) Spreadsheet + case 'xlt': // Excel (BIFF) Template + $extensionType = 'Excel5'; + break; + case 'ods': // Open/Libre Offic Calc + case 'ots': // Open/Libre Offic Calc Template + $extensionType = 'OOCalc'; + break; + case 'slk': + $extensionType = 'SYLK'; + break; + case 'xml': // Excel 2003 SpreadSheetML + $extensionType = 'Excel2003XML'; + break; + case 'gnumeric': + $extensionType = 'Gnumeric'; + break; + case 'htm': + case 'html': + $extensionType = 'HTML'; + break; + case 'csv': + // Do nothing + // We must not try to use CSV reader since it loads + // all files including Excel files etc. + break; + default: + break; + } + + if ($extensionType !== null) { + $reader = self::createReader($extensionType); + // Let's see if we are lucky + if (isset($reader) && $reader->canRead($pFilename)) { + return $reader; + } + } + } + + // If we reach here then "lucky guess" didn't give any result + // Try walking through all the options in self::$autoResolveClasses + foreach (self::$autoResolveClasses as $autoResolveClass) { + // Ignore our original guess, we know that won't work + if ($autoResolveClass !== $extensionType) { + $reader = self::createReader($autoResolveClass); + if ($reader->canRead($pFilename)) { + return $reader; + } + } + } + + throw new PHPExcel_Reader_Exception('Unable to identify a reader for this file'); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/NamedRange.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/NamedRange.php new file mode 100644 index 0000000..2848db8 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/NamedRange.php @@ -0,0 +1,249 @@ +worksheet) + * + * @var bool + */ + private $localOnly; + + /** + * Scope + * + * @var PHPExcel_Worksheet + */ + private $scope; + + /** + * Create a new NamedRange + * + * @param string $pName + * @param PHPExcel_Worksheet $pWorksheet + * @param string $pRange + * @param bool $pLocalOnly + * @param PHPExcel_Worksheet|null $pScope Scope. Only applies when $pLocalOnly = true. Null for global scope. + * @throws PHPExcel_Exception + */ + public function __construct($pName = null, PHPExcel_Worksheet $pWorksheet, $pRange = 'A1', $pLocalOnly = false, $pScope = null) + { + // Validate data + if (($pName === null) || ($pWorksheet === null) || ($pRange === null)) { + throw new PHPExcel_Exception('Parameters can not be null.'); + } + + // Set local members + $this->name = $pName; + $this->worksheet = $pWorksheet; + $this->range = $pRange; + $this->localOnly = $pLocalOnly; + $this->scope = ($pLocalOnly == true) ? (($pScope == null) ? $pWorksheet : $pScope) : null; + } + + /** + * Get name + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Set name + * + * @param string $value + * @return PHPExcel_NamedRange + */ + public function setName($value = null) + { + if ($value !== null) { + // Old title + $oldTitle = $this->name; + + // Re-attach + if ($this->worksheet !== null) { + $this->worksheet->getParent()->removeNamedRange($this->name, $this->worksheet); + } + $this->name = $value; + + if ($this->worksheet !== null) { + $this->worksheet->getParent()->addNamedRange($this); + } + + // New title + $newTitle = $this->name; + PHPExcel_ReferenceHelper::getInstance()->updateNamedFormulas($this->worksheet->getParent(), $oldTitle, $newTitle); + } + return $this; + } + + /** + * Get worksheet + * + * @return PHPExcel_Worksheet + */ + public function getWorksheet() + { + return $this->worksheet; + } + + /** + * Set worksheet + * + * @param PHPExcel_Worksheet $value + * @return PHPExcel_NamedRange + */ + public function setWorksheet(PHPExcel_Worksheet $value = null) + { + if ($value !== null) { + $this->worksheet = $value; + } + return $this; + } + + /** + * Get range + * + * @return string + */ + public function getRange() + { + return $this->range; + } + + /** + * Set range + * + * @param string $value + * @return PHPExcel_NamedRange + */ + public function setRange($value = null) + { + if ($value !== null) { + $this->range = $value; + } + return $this; + } + + /** + * Get localOnly + * + * @return bool + */ + public function getLocalOnly() + { + return $this->localOnly; + } + + /** + * Set localOnly + * + * @param bool $value + * @return PHPExcel_NamedRange + */ + public function setLocalOnly($value = false) + { + $this->localOnly = $value; + $this->scope = $value ? $this->worksheet : null; + return $this; + } + + /** + * Get scope + * + * @return PHPExcel_Worksheet|null + */ + public function getScope() + { + return $this->scope; + } + + /** + * Set scope + * + * @param PHPExcel_Worksheet|null $value + * @return PHPExcel_NamedRange + */ + public function setScope(PHPExcel_Worksheet $value = null) + { + $this->scope = $value; + $this->localOnly = ($value == null) ? false : true; + return $this; + } + + /** + * Resolve a named range to a regular cell range + * + * @param string $pNamedRange Named range + * @param PHPExcel_Worksheet|null $pSheet Scope. Use null for global scope + * @return PHPExcel_NamedRange + */ + public static function resolveRange($pNamedRange = '', PHPExcel_Worksheet $pSheet) + { + return $pSheet->getParent()->getNamedRange($pNamedRange, $pSheet); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Abstract.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Abstract.php new file mode 100644 index 0000000..deeb75a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Abstract.php @@ -0,0 +1,301 @@ +readDataOnly; + } + + /** + * Set read data only + * Set to true, to advise the Reader only to read data values for cells, and to ignore any formatting information. + * Set to false (the default) to advise the Reader to read both data and formatting for cells. + * + * @param boolean $pValue + * + * @return PHPExcel_Reader_IReader + */ + public function setReadDataOnly($pValue = false) + { + $this->readDataOnly = $pValue; + return $this; + } + + /** + * Read empty cells? + * If this is true (the default), then the Reader will read data values for all cells, irrespective of value. + * If false it will not read data for cells containing a null value or an empty string. + * + * @return boolean + */ + public function getReadEmptyCells() + { + return $this->readEmptyCells; + } + + /** + * Set read empty cells + * Set to true (the default) to advise the Reader read data values for all cells, irrespective of value. + * Set to false to advise the Reader to ignore cells containing a null value or an empty string. + * + * @param boolean $pValue + * + * @return PHPExcel_Reader_IReader + */ + public function setReadEmptyCells($pValue = true) + { + $this->readEmptyCells = $pValue; + return $this; + } + + /** + * Read charts in workbook? + * If this is true, then the Reader will include any charts that exist in the workbook. + * Note that a ReadDataOnly value of false overrides, and charts won't be read regardless of the IncludeCharts value. + * If false (the default) it will ignore any charts defined in the workbook file. + * + * @return boolean + */ + public function getIncludeCharts() + { + return $this->includeCharts; + } + + /** + * Set read charts in workbook + * Set to true, to advise the Reader to include any charts that exist in the workbook. + * Note that a ReadDataOnly value of false overrides, and charts won't be read regardless of the IncludeCharts value. + * Set to false (the default) to discard charts. + * + * @param boolean $pValue + * + * @return PHPExcel_Reader_IReader + */ + public function setIncludeCharts($pValue = false) + { + $this->includeCharts = (boolean) $pValue; + return $this; + } + + /** + * Get which sheets to load + * Returns either an array of worksheet names (the list of worksheets that should be loaded), or a null + * indicating that all worksheets in the workbook should be loaded. + * + * @return mixed + */ + public function getLoadSheetsOnly() + { + return $this->loadSheetsOnly; + } + + /** + * Set which sheets to load + * + * @param mixed $value + * This should be either an array of worksheet names to be loaded, or a string containing a single worksheet name. + * If NULL, then it tells the Reader to read all worksheets in the workbook + * + * @return PHPExcel_Reader_IReader + */ + public function setLoadSheetsOnly($value = null) + { + if ($value === null) { + return $this->setLoadAllSheets(); + } + + $this->loadSheetsOnly = is_array($value) ? $value : array($value); + return $this; + } + + /** + * Set all sheets to load + * Tells the Reader to load all worksheets from the workbook. + * + * @return PHPExcel_Reader_IReader + */ + public function setLoadAllSheets() + { + $this->loadSheetsOnly = null; + return $this; + } + + /** + * Read filter + * + * @return PHPExcel_Reader_IReadFilter + */ + public function getReadFilter() + { + return $this->readFilter; + } + + /** + * Set read filter + * + * @param PHPExcel_Reader_IReadFilter $pValue + * @return PHPExcel_Reader_IReader + */ + public function setReadFilter(PHPExcel_Reader_IReadFilter $pValue) + { + $this->readFilter = $pValue; + return $this; + } + + /** + * Open file for reading + * + * @param string $pFilename + * @throws PHPExcel_Reader_Exception + * @return resource + */ + protected function openFile($pFilename) + { + // Check if file exists + if (!file_exists($pFilename) || !is_readable($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + // Open file + $this->fileHandle = fopen($pFilename, 'r'); + if ($this->fileHandle === false) { + throw new PHPExcel_Reader_Exception("Could not open file " . $pFilename . " for reading."); + } + } + + /** + * Can the current PHPExcel_Reader_IReader read the file? + * + * @param string $pFilename + * @return boolean + * @throws PHPExcel_Reader_Exception + */ + public function canRead($pFilename) + { + // Check if file exists + try { + $this->openFile($pFilename); + } catch (Exception $e) { + return false; + } + + $readable = $this->isValidFormat(); + fclose($this->fileHandle); + return $readable; + } + + /** + * Scan theXML for use of securityScan(file_get_contents($filestream)); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/CSV.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/CSV.php new file mode 100644 index 0000000..21329da --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/CSV.php @@ -0,0 +1,406 @@ +readFilter = new PHPExcel_Reader_DefaultReadFilter(); + } + + /** + * Validate that the current file is a CSV file + * + * @return boolean + */ + protected function isValidFormat() + { + return true; + } + + /** + * Set input encoding + * + * @param string $pValue Input encoding + */ + public function setInputEncoding($pValue = 'UTF-8') + { + $this->inputEncoding = $pValue; + return $this; + } + + /** + * Get input encoding + * + * @return string + */ + public function getInputEncoding() + { + return $this->inputEncoding; + } + + /** + * Move filepointer past any BOM marker + * + */ + protected function skipBOM() + { + rewind($this->fileHandle); + + switch ($this->inputEncoding) { + case 'UTF-8': + fgets($this->fileHandle, 4) == "\xEF\xBB\xBF" ? + fseek($this->fileHandle, 3) : fseek($this->fileHandle, 0); + break; + case 'UTF-16LE': + fgets($this->fileHandle, 3) == "\xFF\xFE" ? + fseek($this->fileHandle, 2) : fseek($this->fileHandle, 0); + break; + case 'UTF-16BE': + fgets($this->fileHandle, 3) == "\xFE\xFF" ? + fseek($this->fileHandle, 2) : fseek($this->fileHandle, 0); + break; + case 'UTF-32LE': + fgets($this->fileHandle, 5) == "\xFF\xFE\x00\x00" ? + fseek($this->fileHandle, 4) : fseek($this->fileHandle, 0); + break; + case 'UTF-32BE': + fgets($this->fileHandle, 5) == "\x00\x00\xFE\xFF" ? + fseek($this->fileHandle, 4) : fseek($this->fileHandle, 0); + break; + default: + break; + } + } + + /** + * Identify any separator that is explicitly set in the file + * + */ + protected function checkSeparator() + { + $line = fgets($this->fileHandle); + if ($line === false) { + return; + } + + if ((strlen(trim($line, "\r\n")) == 5) && (stripos($line, 'sep=') === 0)) { + $this->delimiter = substr($line, 4, 1); + return; + } + return $this->skipBOM(); + } + + /** + * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns) + * + * @param string $pFilename + * @throws PHPExcel_Reader_Exception + */ + public function listWorksheetInfo($pFilename) + { + // Open file + $this->openFile($pFilename); + if (!$this->isValidFormat()) { + fclose($this->fileHandle); + throw new PHPExcel_Reader_Exception($pFilename . " is an Invalid Spreadsheet file."); + } + $fileHandle = $this->fileHandle; + + // Skip BOM, if any + $this->skipBOM(); + $this->checkSeparator(); + + $escapeEnclosures = array( "\\" . $this->enclosure, $this->enclosure . $this->enclosure ); + + $worksheetInfo = array(); + $worksheetInfo[0]['worksheetName'] = 'Worksheet'; + $worksheetInfo[0]['lastColumnLetter'] = 'A'; + $worksheetInfo[0]['lastColumnIndex'] = 0; + $worksheetInfo[0]['totalRows'] = 0; + $worksheetInfo[0]['totalColumns'] = 0; + + // Loop through each line of the file in turn + while (($rowData = fgetcsv($fileHandle, 0, $this->delimiter, $this->enclosure)) !== false) { + $worksheetInfo[0]['totalRows']++; + $worksheetInfo[0]['lastColumnIndex'] = max($worksheetInfo[0]['lastColumnIndex'], count($rowData) - 1); + } + + $worksheetInfo[0]['lastColumnLetter'] = PHPExcel_Cell::stringFromColumnIndex($worksheetInfo[0]['lastColumnIndex']); + $worksheetInfo[0]['totalColumns'] = $worksheetInfo[0]['lastColumnIndex'] + 1; + + // Close file + fclose($fileHandle); + + return $worksheetInfo; + } + + /** + * Loads PHPExcel from file + * + * @param string $pFilename + * @return PHPExcel + * @throws PHPExcel_Reader_Exception + */ + public function load($pFilename) + { + // Create new PHPExcel + $objPHPExcel = new PHPExcel(); + + // Load into this instance + return $this->loadIntoExisting($pFilename, $objPHPExcel); + } + + /** + * Loads PHPExcel from file into PHPExcel instance + * + * @param string $pFilename + * @param PHPExcel $objPHPExcel + * @return PHPExcel + * @throws PHPExcel_Reader_Exception + */ + public function loadIntoExisting($pFilename, PHPExcel $objPHPExcel) + { + $lineEnding = ini_get('auto_detect_line_endings'); + ini_set('auto_detect_line_endings', true); + + // Open file + $this->openFile($pFilename); + if (!$this->isValidFormat()) { + fclose($this->fileHandle); + throw new PHPExcel_Reader_Exception($pFilename . " is an Invalid Spreadsheet file."); + } + $fileHandle = $this->fileHandle; + + // Skip BOM, if any + $this->skipBOM(); + $this->checkSeparator(); + + // Create new PHPExcel object + while ($objPHPExcel->getSheetCount() <= $this->sheetIndex) { + $objPHPExcel->createSheet(); + } + $sheet = $objPHPExcel->setActiveSheetIndex($this->sheetIndex); + + $escapeEnclosures = array( "\\" . $this->enclosure, + $this->enclosure . $this->enclosure + ); + + // Set our starting row based on whether we're in contiguous mode or not + $currentRow = 1; + if ($this->contiguous) { + $currentRow = ($this->contiguousRow == -1) ? $sheet->getHighestRow(): $this->contiguousRow; + } + + // Loop through each line of the file in turn + while (($rowData = fgetcsv($fileHandle, 0, $this->delimiter, $this->enclosure)) !== false) { + $columnLetter = 'A'; + foreach ($rowData as $rowDatum) { + if ($rowDatum != '' && $this->readFilter->readCell($columnLetter, $currentRow)) { + // Unescape enclosures + $rowDatum = str_replace($escapeEnclosures, $this->enclosure, $rowDatum); + + // Convert encoding if necessary + if ($this->inputEncoding !== 'UTF-8') { + $rowDatum = PHPExcel_Shared_String::ConvertEncoding($rowDatum, 'UTF-8', $this->inputEncoding); + } + + // Set cell value + $sheet->getCell($columnLetter . $currentRow)->setValue($rowDatum); + } + ++$columnLetter; + } + ++$currentRow; + } + + // Close file + fclose($fileHandle); + + if ($this->contiguous) { + $this->contiguousRow = $currentRow; + } + + ini_set('auto_detect_line_endings', $lineEnding); + + // Return + return $objPHPExcel; + } + + /** + * Get delimiter + * + * @return string + */ + public function getDelimiter() + { + return $this->delimiter; + } + + /** + * Set delimiter + * + * @param string $pValue Delimiter, defaults to , + * @return PHPExcel_Reader_CSV + */ + public function setDelimiter($pValue = ',') + { + $this->delimiter = $pValue; + return $this; + } + + /** + * Get enclosure + * + * @return string + */ + public function getEnclosure() + { + return $this->enclosure; + } + + /** + * Set enclosure + * + * @param string $pValue Enclosure, defaults to " + * @return PHPExcel_Reader_CSV + */ + public function setEnclosure($pValue = '"') + { + if ($pValue == '') { + $pValue = '"'; + } + $this->enclosure = $pValue; + return $this; + } + + /** + * Get sheet index + * + * @return integer + */ + public function getSheetIndex() + { + return $this->sheetIndex; + } + + /** + * Set sheet index + * + * @param integer $pValue Sheet index + * @return PHPExcel_Reader_CSV + */ + public function setSheetIndex($pValue = 0) + { + $this->sheetIndex = $pValue; + return $this; + } + + /** + * Set Contiguous + * + * @param boolean $contiguous + */ + public function setContiguous($contiguous = false) + { + $this->contiguous = (bool) $contiguous; + if (!$contiguous) { + $this->contiguousRow = -1; + } + + return $this; + } + + /** + * Get Contiguous + * + * @return boolean + */ + public function getContiguous() + { + return $this->contiguous; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/DefaultReadFilter.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/DefaultReadFilter.php new file mode 100644 index 0000000..ea25f63 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/DefaultReadFilter.php @@ -0,0 +1,51 @@ +readFilter = new PHPExcel_Reader_DefaultReadFilter(); + } + + + /** + * Can the current PHPExcel_Reader_IReader read the file? + * + * @param string $pFilename + * @return boolean + * @throws PHPExcel_Reader_Exception + */ + public function canRead($pFilename) + { + + // Office xmlns:o="urn:schemas-microsoft-com:office:office" + // Excel xmlns:x="urn:schemas-microsoft-com:office:excel" + // XML Spreadsheet xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" + // Spreadsheet component xmlns:c="urn:schemas-microsoft-com:office:component:spreadsheet" + // XML schema xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882" + // XML data type xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" + // MS-persist recordset xmlns:rs="urn:schemas-microsoft-com:rowset" + // Rowset xmlns:z="#RowsetSchema" + // + + $signature = array( + '' + ); + + // Open file + $this->openFile($pFilename); + $fileHandle = $this->fileHandle; + + // Read sample data (first 2 KB will do) + $data = fread($fileHandle, 2048); + fclose($fileHandle); + + $valid = true; + foreach ($signature as $match) { + // every part of the signature must be present + if (strpos($data, $match) === false) { + $valid = false; + break; + } + } + + // Retrieve charset encoding + if (preg_match('//um', $data, $matches)) { + $this->charSet = strtoupper($matches[1]); + } +// echo 'Character Set is ', $this->charSet,'
'; + + return $valid; + } + + + /** + * Reads names of the worksheets from a file, without parsing the whole file to a PHPExcel object + * + * @param string $pFilename + * @throws PHPExcel_Reader_Exception + */ + public function listWorksheetNames($pFilename) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + if (!$this->canRead($pFilename)) { + throw new PHPExcel_Reader_Exception($pFilename . " is an Invalid Spreadsheet file."); + } + + $worksheetNames = array(); + + $xml = simplexml_load_string($this->securityScan(file_get_contents($pFilename)), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + $namespaces = $xml->getNamespaces(true); + + $xml_ss = $xml->children($namespaces['ss']); + foreach ($xml_ss->Worksheet as $worksheet) { + $worksheet_ss = $worksheet->attributes($namespaces['ss']); + $worksheetNames[] = self::convertStringEncoding((string) $worksheet_ss['Name'], $this->charSet); + } + + return $worksheetNames; + } + + + /** + * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns) + * + * @param string $pFilename + * @throws PHPExcel_Reader_Exception + */ + public function listWorksheetInfo($pFilename) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + $worksheetInfo = array(); + + $xml = simplexml_load_string($this->securityScan(file_get_contents($pFilename)), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + $namespaces = $xml->getNamespaces(true); + + $worksheetID = 1; + $xml_ss = $xml->children($namespaces['ss']); + foreach ($xml_ss->Worksheet as $worksheet) { + $worksheet_ss = $worksheet->attributes($namespaces['ss']); + + $tmpInfo = array(); + $tmpInfo['worksheetName'] = ''; + $tmpInfo['lastColumnLetter'] = 'A'; + $tmpInfo['lastColumnIndex'] = 0; + $tmpInfo['totalRows'] = 0; + $tmpInfo['totalColumns'] = 0; + + if (isset($worksheet_ss['Name'])) { + $tmpInfo['worksheetName'] = (string) $worksheet_ss['Name']; + } else { + $tmpInfo['worksheetName'] = "Worksheet_{$worksheetID}"; + } + + if (isset($worksheet->Table->Row)) { + $rowIndex = 0; + + foreach ($worksheet->Table->Row as $rowData) { + $columnIndex = 0; + $rowHasData = false; + + foreach ($rowData->Cell as $cell) { + if (isset($cell->Data)) { + $tmpInfo['lastColumnIndex'] = max($tmpInfo['lastColumnIndex'], $columnIndex); + $rowHasData = true; + } + + ++$columnIndex; + } + + ++$rowIndex; + + if ($rowHasData) { + $tmpInfo['totalRows'] = max($tmpInfo['totalRows'], $rowIndex); + } + } + } + + $tmpInfo['lastColumnLetter'] = PHPExcel_Cell::stringFromColumnIndex($tmpInfo['lastColumnIndex']); + $tmpInfo['totalColumns'] = $tmpInfo['lastColumnIndex'] + 1; + + $worksheetInfo[] = $tmpInfo; + ++$worksheetID; + } + + return $worksheetInfo; + } + + + /** + * Loads PHPExcel from file + * + * @param string $pFilename + * @return PHPExcel + * @throws PHPExcel_Reader_Exception + */ + public function load($pFilename) + { + // Create new PHPExcel + $objPHPExcel = new PHPExcel(); + $objPHPExcel->removeSheetByIndex(0); + + // Load into this instance + return $this->loadIntoExisting($pFilename, $objPHPExcel); + } + + protected static function identifyFixedStyleValue($styleList, &$styleAttributeValue) + { + $styleAttributeValue = strtolower($styleAttributeValue); + foreach ($styleList as $style) { + if ($styleAttributeValue == strtolower($style)) { + $styleAttributeValue = $style; + return true; + } + } + return false; + } + + /** + * pixel units to excel width units(units of 1/256th of a character width) + * @param pxs + * @return + */ + protected static function pixel2WidthUnits($pxs) + { + $UNIT_OFFSET_MAP = array(0, 36, 73, 109, 146, 182, 219); + + $widthUnits = 256 * ($pxs / 7); + $widthUnits += $UNIT_OFFSET_MAP[($pxs % 7)]; + return $widthUnits; + } + + /** + * excel width units(units of 1/256th of a character width) to pixel units + * @param widthUnits + * @return + */ + protected static function widthUnits2Pixel($widthUnits) + { + $pixels = ($widthUnits / 256) * 7; + $offsetWidthUnits = $widthUnits % 256; + $pixels += round($offsetWidthUnits / (256 / 7)); + return $pixels; + } + + protected static function hex2str($hex) + { + return chr(hexdec($hex[1])); + } + + /** + * Loads PHPExcel from file into PHPExcel instance + * + * @param string $pFilename + * @param PHPExcel $objPHPExcel + * @return PHPExcel + * @throws PHPExcel_Reader_Exception + */ + public function loadIntoExisting($pFilename, PHPExcel $objPHPExcel) + { + $fromFormats = array('\-', '\ '); + $toFormats = array('-', ' '); + + $underlineStyles = array ( + PHPExcel_Style_Font::UNDERLINE_NONE, + PHPExcel_Style_Font::UNDERLINE_DOUBLE, + PHPExcel_Style_Font::UNDERLINE_DOUBLEACCOUNTING, + PHPExcel_Style_Font::UNDERLINE_SINGLE, + PHPExcel_Style_Font::UNDERLINE_SINGLEACCOUNTING + ); + $verticalAlignmentStyles = array ( + PHPExcel_Style_Alignment::VERTICAL_BOTTOM, + PHPExcel_Style_Alignment::VERTICAL_TOP, + PHPExcel_Style_Alignment::VERTICAL_CENTER, + PHPExcel_Style_Alignment::VERTICAL_JUSTIFY + ); + $horizontalAlignmentStyles = array ( + PHPExcel_Style_Alignment::HORIZONTAL_GENERAL, + PHPExcel_Style_Alignment::HORIZONTAL_LEFT, + PHPExcel_Style_Alignment::HORIZONTAL_RIGHT, + PHPExcel_Style_Alignment::HORIZONTAL_CENTER, + PHPExcel_Style_Alignment::HORIZONTAL_CENTER_CONTINUOUS, + PHPExcel_Style_Alignment::HORIZONTAL_JUSTIFY + ); + + $timezoneObj = new DateTimeZone('Europe/London'); + $GMT = new DateTimeZone('UTC'); + + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + if (!$this->canRead($pFilename)) { + throw new PHPExcel_Reader_Exception($pFilename . " is an Invalid Spreadsheet file."); + } + + $xml = simplexml_load_string($this->securityScan(file_get_contents($pFilename)), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + $namespaces = $xml->getNamespaces(true); + + $docProps = $objPHPExcel->getProperties(); + if (isset($xml->DocumentProperties[0])) { + foreach ($xml->DocumentProperties[0] as $propertyName => $propertyValue) { + switch ($propertyName) { + case 'Title': + $docProps->setTitle(self::convertStringEncoding($propertyValue, $this->charSet)); + break; + case 'Subject': + $docProps->setSubject(self::convertStringEncoding($propertyValue, $this->charSet)); + break; + case 'Author': + $docProps->setCreator(self::convertStringEncoding($propertyValue, $this->charSet)); + break; + case 'Created': + $creationDate = strtotime($propertyValue); + $docProps->setCreated($creationDate); + break; + case 'LastAuthor': + $docProps->setLastModifiedBy(self::convertStringEncoding($propertyValue, $this->charSet)); + break; + case 'LastSaved': + $lastSaveDate = strtotime($propertyValue); + $docProps->setModified($lastSaveDate); + break; + case 'Company': + $docProps->setCompany(self::convertStringEncoding($propertyValue, $this->charSet)); + break; + case 'Category': + $docProps->setCategory(self::convertStringEncoding($propertyValue, $this->charSet)); + break; + case 'Manager': + $docProps->setManager(self::convertStringEncoding($propertyValue, $this->charSet)); + break; + case 'Keywords': + $docProps->setKeywords(self::convertStringEncoding($propertyValue, $this->charSet)); + break; + case 'Description': + $docProps->setDescription(self::convertStringEncoding($propertyValue, $this->charSet)); + break; + } + } + } + if (isset($xml->CustomDocumentProperties)) { + foreach ($xml->CustomDocumentProperties[0] as $propertyName => $propertyValue) { + $propertyAttributes = $propertyValue->attributes($namespaces['dt']); + $propertyName = preg_replace_callback('/_x([0-9a-z]{4})_/', 'PHPExcel_Reader_Excel2003XML::hex2str', $propertyName); + $propertyType = PHPExcel_DocumentProperties::PROPERTY_TYPE_UNKNOWN; + switch ((string) $propertyAttributes) { + case 'string': + $propertyType = PHPExcel_DocumentProperties::PROPERTY_TYPE_STRING; + $propertyValue = trim($propertyValue); + break; + case 'boolean': + $propertyType = PHPExcel_DocumentProperties::PROPERTY_TYPE_BOOLEAN; + $propertyValue = (bool) $propertyValue; + break; + case 'integer': + $propertyType = PHPExcel_DocumentProperties::PROPERTY_TYPE_INTEGER; + $propertyValue = intval($propertyValue); + break; + case 'float': + $propertyType = PHPExcel_DocumentProperties::PROPERTY_TYPE_FLOAT; + $propertyValue = floatval($propertyValue); + break; + case 'dateTime.tz': + $propertyType = PHPExcel_DocumentProperties::PROPERTY_TYPE_DATE; + $propertyValue = strtotime(trim($propertyValue)); + break; + } + $docProps->setCustomProperty($propertyName, $propertyValue, $propertyType); + } + } + + foreach ($xml->Styles[0] as $style) { + $style_ss = $style->attributes($namespaces['ss']); + $styleID = (string) $style_ss['ID']; +// echo 'Style ID = '.$styleID.'
'; + $this->styles[$styleID] = (isset($this->styles['Default'])) ? $this->styles['Default'] : array(); + foreach ($style as $styleType => $styleData) { + $styleAttributes = $styleData->attributes($namespaces['ss']); +// echo $styleType.'
'; + switch ($styleType) { + case 'Alignment': + foreach ($styleAttributes as $styleAttributeKey => $styleAttributeValue) { +// echo $styleAttributeKey.' = '.$styleAttributeValue.'
'; + $styleAttributeValue = (string) $styleAttributeValue; + switch ($styleAttributeKey) { + case 'Vertical': + if (self::identifyFixedStyleValue($verticalAlignmentStyles, $styleAttributeValue)) { + $this->styles[$styleID]['alignment']['vertical'] = $styleAttributeValue; + } + break; + case 'Horizontal': + if (self::identifyFixedStyleValue($horizontalAlignmentStyles, $styleAttributeValue)) { + $this->styles[$styleID]['alignment']['horizontal'] = $styleAttributeValue; + } + break; + case 'WrapText': + $this->styles[$styleID]['alignment']['wrap'] = true; + break; + } + } + break; + case 'Borders': + foreach ($styleData->Border as $borderStyle) { + $borderAttributes = $borderStyle->attributes($namespaces['ss']); + $thisBorder = array(); + foreach ($borderAttributes as $borderStyleKey => $borderStyleValue) { +// echo $borderStyleKey.' = '.$borderStyleValue.'
'; + switch ($borderStyleKey) { + case 'LineStyle': + $thisBorder['style'] = PHPExcel_Style_Border::BORDER_MEDIUM; +// $thisBorder['style'] = $borderStyleValue; + break; + case 'Weight': +// $thisBorder['style'] = $borderStyleValue; + break; + case 'Position': + $borderPosition = strtolower($borderStyleValue); + break; + case 'Color': + $borderColour = substr($borderStyleValue, 1); + $thisBorder['color']['rgb'] = $borderColour; + break; + } + } + if (!empty($thisBorder)) { + if (($borderPosition == 'left') || ($borderPosition == 'right') || ($borderPosition == 'top') || ($borderPosition == 'bottom')) { + $this->styles[$styleID]['borders'][$borderPosition] = $thisBorder; + } + } + } + break; + case 'Font': + foreach ($styleAttributes as $styleAttributeKey => $styleAttributeValue) { +// echo $styleAttributeKey.' = '.$styleAttributeValue.'
'; + $styleAttributeValue = (string) $styleAttributeValue; + switch ($styleAttributeKey) { + case 'FontName': + $this->styles[$styleID]['font']['name'] = $styleAttributeValue; + break; + case 'Size': + $this->styles[$styleID]['font']['size'] = $styleAttributeValue; + break; + case 'Color': + $this->styles[$styleID]['font']['color']['rgb'] = substr($styleAttributeValue, 1); + break; + case 'Bold': + $this->styles[$styleID]['font']['bold'] = true; + break; + case 'Italic': + $this->styles[$styleID]['font']['italic'] = true; + break; + case 'Underline': + if (self::identifyFixedStyleValue($underlineStyles, $styleAttributeValue)) { + $this->styles[$styleID]['font']['underline'] = $styleAttributeValue; + } + break; + } + } + break; + case 'Interior': + foreach ($styleAttributes as $styleAttributeKey => $styleAttributeValue) { +// echo $styleAttributeKey.' = '.$styleAttributeValue.'
'; + switch ($styleAttributeKey) { + case 'Color': + $this->styles[$styleID]['fill']['color']['rgb'] = substr($styleAttributeValue, 1); + break; + } + } + break; + case 'NumberFormat': + foreach ($styleAttributes as $styleAttributeKey => $styleAttributeValue) { +// echo $styleAttributeKey.' = '.$styleAttributeValue.'
'; + $styleAttributeValue = str_replace($fromFormats, $toFormats, $styleAttributeValue); + switch ($styleAttributeValue) { + case 'Short Date': + $styleAttributeValue = 'dd/mm/yyyy'; + break; + } + if ($styleAttributeValue > '') { + $this->styles[$styleID]['numberformat']['code'] = $styleAttributeValue; + } + } + break; + case 'Protection': + foreach ($styleAttributes as $styleAttributeKey => $styleAttributeValue) { +// echo $styleAttributeKey.' = '.$styleAttributeValue.'
'; + } + break; + } + } +// print_r($this->styles[$styleID]); +// echo '
'; + } +// echo '
'; + + $worksheetID = 0; + $xml_ss = $xml->children($namespaces['ss']); + + foreach ($xml_ss->Worksheet as $worksheet) { + $worksheet_ss = $worksheet->attributes($namespaces['ss']); + + if ((isset($this->loadSheetsOnly)) && (isset($worksheet_ss['Name'])) && + (!in_array($worksheet_ss['Name'], $this->loadSheetsOnly))) { + continue; + } + +// echo '

Worksheet: ', $worksheet_ss['Name'],'

'; +// + // Create new Worksheet + $objPHPExcel->createSheet(); + $objPHPExcel->setActiveSheetIndex($worksheetID); + if (isset($worksheet_ss['Name'])) { + $worksheetName = self::convertStringEncoding((string) $worksheet_ss['Name'], $this->charSet); + // Use false for $updateFormulaCellReferences to prevent adjustment of worksheet references in + // formula cells... during the load, all formulae should be correct, and we're simply bringing + // the worksheet name in line with the formula, not the reverse + $objPHPExcel->getActiveSheet()->setTitle($worksheetName, false); + } + + $columnID = 'A'; + if (isset($worksheet->Table->Column)) { + foreach ($worksheet->Table->Column as $columnData) { + $columnData_ss = $columnData->attributes($namespaces['ss']); + if (isset($columnData_ss['Index'])) { + $columnID = PHPExcel_Cell::stringFromColumnIndex($columnData_ss['Index']-1); + } + if (isset($columnData_ss['Width'])) { + $columnWidth = $columnData_ss['Width']; +// echo 'Setting column width for '.$columnID.' to '.$columnWidth.'
'; + $objPHPExcel->getActiveSheet()->getColumnDimension($columnID)->setWidth($columnWidth / 5.4); + } + ++$columnID; + } + } + + $rowID = 1; + if (isset($worksheet->Table->Row)) { + $additionalMergedCells = 0; + foreach ($worksheet->Table->Row as $rowData) { + $rowHasData = false; + $row_ss = $rowData->attributes($namespaces['ss']); + if (isset($row_ss['Index'])) { + $rowID = (integer) $row_ss['Index']; + } +// echo 'Row '.$rowID.'
'; + + $columnID = 'A'; + foreach ($rowData->Cell as $cell) { + $cell_ss = $cell->attributes($namespaces['ss']); + if (isset($cell_ss['Index'])) { + $columnID = PHPExcel_Cell::stringFromColumnIndex($cell_ss['Index']-1); + } + $cellRange = $columnID.$rowID; + + if ($this->getReadFilter() !== null) { + if (!$this->getReadFilter()->readCell($columnID, $rowID, $worksheetName)) { + continue; + } + } + + if ((isset($cell_ss['MergeAcross'])) || (isset($cell_ss['MergeDown']))) { + $columnTo = $columnID; + if (isset($cell_ss['MergeAcross'])) { + $additionalMergedCells += (int)$cell_ss['MergeAcross']; + $columnTo = PHPExcel_Cell::stringFromColumnIndex(PHPExcel_Cell::columnIndexFromString($columnID) + $cell_ss['MergeAcross'] -1); + } + $rowTo = $rowID; + if (isset($cell_ss['MergeDown'])) { + $rowTo = $rowTo + $cell_ss['MergeDown']; + } + $cellRange .= ':'.$columnTo.$rowTo; + $objPHPExcel->getActiveSheet()->mergeCells($cellRange); + } + + $cellIsSet = $hasCalculatedValue = false; + $cellDataFormula = ''; + if (isset($cell_ss['Formula'])) { + $cellDataFormula = $cell_ss['Formula']; + // added this as a check for array formulas + if (isset($cell_ss['ArrayRange'])) { + $cellDataCSEFormula = $cell_ss['ArrayRange']; +// echo "found an array formula at ".$columnID.$rowID."
"; + } + $hasCalculatedValue = true; + } + if (isset($cell->Data)) { + $cellValue = $cellData = $cell->Data; + $type = PHPExcel_Cell_DataType::TYPE_NULL; + $cellData_ss = $cellData->attributes($namespaces['ss']); + if (isset($cellData_ss['Type'])) { + $cellDataType = $cellData_ss['Type']; + switch ($cellDataType) { + /* + const TYPE_STRING = 's'; + const TYPE_FORMULA = 'f'; + const TYPE_NUMERIC = 'n'; + const TYPE_BOOL = 'b'; + const TYPE_NULL = 'null'; + const TYPE_INLINE = 'inlineStr'; + const TYPE_ERROR = 'e'; + */ + case 'String': + $cellValue = self::convertStringEncoding($cellValue, $this->charSet); + $type = PHPExcel_Cell_DataType::TYPE_STRING; + break; + case 'Number': + $type = PHPExcel_Cell_DataType::TYPE_NUMERIC; + $cellValue = (float) $cellValue; + if (floor($cellValue) == $cellValue) { + $cellValue = (integer) $cellValue; + } + break; + case 'Boolean': + $type = PHPExcel_Cell_DataType::TYPE_BOOL; + $cellValue = ($cellValue != 0); + break; + case 'DateTime': + $type = PHPExcel_Cell_DataType::TYPE_NUMERIC; + $cellValue = PHPExcel_Shared_Date::PHPToExcel(strtotime($cellValue)); + break; + case 'Error': + $type = PHPExcel_Cell_DataType::TYPE_ERROR; + break; + } + } + + if ($hasCalculatedValue) { +// echo 'FORMULA
'; + $type = PHPExcel_Cell_DataType::TYPE_FORMULA; + $columnNumber = PHPExcel_Cell::columnIndexFromString($columnID); + if (substr($cellDataFormula, 0, 3) == 'of:') { + $cellDataFormula = substr($cellDataFormula, 3); +// echo 'Before: ', $cellDataFormula,'
'; + $temp = explode('"', $cellDataFormula); + $key = false; + foreach ($temp as &$value) { + // Only replace in alternate array entries (i.e. non-quoted blocks) + if ($key = !$key) { + $value = str_replace(array('[.', '.', ']'), '', $value); + } + } + } else { + // Convert R1C1 style references to A1 style references (but only when not quoted) +// echo 'Before: ', $cellDataFormula,'
'; + $temp = explode('"', $cellDataFormula); + $key = false; + foreach ($temp as &$value) { + // Only replace in alternate array entries (i.e. non-quoted blocks) + if ($key = !$key) { + preg_match_all('/(R(\[?-?\d*\]?))(C(\[?-?\d*\]?))/', $value, $cellReferences, PREG_SET_ORDER + PREG_OFFSET_CAPTURE); + // Reverse the matches array, otherwise all our offsets will become incorrect if we modify our way + // through the formula from left to right. Reversing means that we work right to left.through + // the formula + $cellReferences = array_reverse($cellReferences); + // Loop through each R1C1 style reference in turn, converting it to its A1 style equivalent, + // then modify the formula to use that new reference + foreach ($cellReferences as $cellReference) { + $rowReference = $cellReference[2][0]; + // Empty R reference is the current row + if ($rowReference == '') { + $rowReference = $rowID; + } + // Bracketed R references are relative to the current row + if ($rowReference{0} == '[') { + $rowReference = $rowID + trim($rowReference, '[]'); + } + $columnReference = $cellReference[4][0]; + // Empty C reference is the current column + if ($columnReference == '') { + $columnReference = $columnNumber; + } + // Bracketed C references are relative to the current column + if ($columnReference{0} == '[') { + $columnReference = $columnNumber + trim($columnReference, '[]'); + } + $A1CellReference = PHPExcel_Cell::stringFromColumnIndex($columnReference-1).$rowReference; + $value = substr_replace($value, $A1CellReference, $cellReference[0][1], strlen($cellReference[0][0])); + } + } + } + } + unset($value); + // Then rebuild the formula string + $cellDataFormula = implode('"', $temp); +// echo 'After: ', $cellDataFormula,'
'; + } + +// echo 'Cell '.$columnID.$rowID.' is a '.$type.' with a value of '.(($hasCalculatedValue) ? $cellDataFormula : $cellValue).'
'; +// + $objPHPExcel->getActiveSheet()->getCell($columnID.$rowID)->setValueExplicit((($hasCalculatedValue) ? $cellDataFormula : $cellValue), $type); + if ($hasCalculatedValue) { +// echo 'Formula result is '.$cellValue.'
'; + $objPHPExcel->getActiveSheet()->getCell($columnID.$rowID)->setCalculatedValue($cellValue); + } + $cellIsSet = $rowHasData = true; + } + + if (isset($cell->Comment)) { +// echo 'comment found
'; + $commentAttributes = $cell->Comment->attributes($namespaces['ss']); + $author = 'unknown'; + if (isset($commentAttributes->Author)) { + $author = (string)$commentAttributes->Author; +// echo 'Author: ', $author,'
'; + } + $node = $cell->Comment->Data->asXML(); +// $annotation = str_replace('html:','',substr($node,49,-10)); +// echo $annotation,'
'; + $annotation = strip_tags($node); +// echo 'Annotation: ', $annotation,'
'; + $objPHPExcel->getActiveSheet()->getComment($columnID.$rowID)->setAuthor(self::convertStringEncoding($author, $this->charSet))->setText($this->parseRichText($annotation)); + } + + if (($cellIsSet) && (isset($cell_ss['StyleID']))) { + $style = (string) $cell_ss['StyleID']; +// echo 'Cell style for '.$columnID.$rowID.' is '.$style.'
'; + if ((isset($this->styles[$style])) && (!empty($this->styles[$style]))) { +// echo 'Cell '.$columnID.$rowID.'
'; +// print_r($this->styles[$style]); +// echo '
'; + if (!$objPHPExcel->getActiveSheet()->cellExists($columnID.$rowID)) { + $objPHPExcel->getActiveSheet()->getCell($columnID.$rowID)->setValue(null); + } + $objPHPExcel->getActiveSheet()->getStyle($cellRange)->applyFromArray($this->styles[$style]); + } + } + ++$columnID; + while ($additionalMergedCells > 0) { + ++$columnID; + $additionalMergedCells--; + } + } + + if ($rowHasData) { + if (isset($row_ss['StyleID'])) { + $rowStyle = $row_ss['StyleID']; + } + if (isset($row_ss['Height'])) { + $rowHeight = $row_ss['Height']; +// echo 'Setting row height to '.$rowHeight.'
'; + $objPHPExcel->getActiveSheet()->getRowDimension($rowID)->setRowHeight($rowHeight); + } + } + + ++$rowID; + } + } + ++$worksheetID; + } + + // Return + return $objPHPExcel; + } + + + protected static function convertStringEncoding($string, $charset) + { + if ($charset != 'UTF-8') { + return PHPExcel_Shared_String::ConvertEncoding($string, 'UTF-8', $charset); + } + return $string; + } + + + protected function parseRichText($is = '') + { + $value = new PHPExcel_RichText(); + + $value->createText(self::convertStringEncoding($is, $this->charSet)); + + return $value; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007.php new file mode 100644 index 0000000..1932df4 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007.php @@ -0,0 +1,2051 @@ +readFilter = new PHPExcel_Reader_DefaultReadFilter(); + $this->referenceHelper = PHPExcel_ReferenceHelper::getInstance(); + } + + /** + * Can the current PHPExcel_Reader_IReader read the file? + * + * @param string $pFilename + * @return boolean + * @throws PHPExcel_Reader_Exception + */ + public function canRead($pFilename) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + $zipClass = PHPExcel_Settings::getZipClass(); + + // Check if zip class exists +// if (!class_exists($zipClass, false)) { +// throw new PHPExcel_Reader_Exception($zipClass . " library is not enabled"); +// } + + $xl = false; + // Load file + $zip = new $zipClass; + if ($zip->open($pFilename) === true) { + // check if it is an OOXML archive + $rels = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "_rels/.rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + if ($rels !== false) { + foreach ($rels->Relationship as $rel) { + switch ($rel["Type"]) { + case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument": + if (basename($rel["Target"]) == 'workbook.xml') { + $xl = true; + } + break; + + } + } + } + $zip->close(); + } + + return $xl; + } + + + /** + * Reads names of the worksheets from a file, without parsing the whole file to a PHPExcel object + * + * @param string $pFilename + * @throws PHPExcel_Reader_Exception + */ + public function listWorksheetNames($pFilename) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + $worksheetNames = array(); + + $zipClass = PHPExcel_Settings::getZipClass(); + + $zip = new $zipClass; + $zip->open($pFilename); + + // The files we're looking at here are small enough that simpleXML is more efficient than XMLReader + $rels = simplexml_load_string( + $this->securityScan($this->getFromZipArchive($zip, "_rels/.rels"), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()) + ); //~ http://schemas.openxmlformats.org/package/2006/relationships"); + foreach ($rels->Relationship as $rel) { + switch ($rel["Type"]) { + case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument": + $xmlWorkbook = simplexml_load_string( + $this->securityScan($this->getFromZipArchive($zip, "{$rel['Target']}"), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()) + ); //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main"); + + if ($xmlWorkbook->sheets) { + foreach ($xmlWorkbook->sheets->sheet as $eleSheet) { + // Check if sheet should be skipped + $worksheetNames[] = (string) $eleSheet["name"]; + } + } + } + } + + $zip->close(); + + return $worksheetNames; + } + + + /** + * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns) + * + * @param string $pFilename + * @throws PHPExcel_Reader_Exception + */ + public function listWorksheetInfo($pFilename) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + $worksheetInfo = array(); + + $zipClass = PHPExcel_Settings::getZipClass(); + + $zip = new $zipClass; + $zip->open($pFilename); + + $rels = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "_rels/.rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships"); + foreach ($rels->Relationship as $rel) { + if ($rel["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument") { + $dir = dirname($rel["Target"]); + $relsWorkbook = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "$dir/_rels/" . basename($rel["Target"]) . ".rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships"); + $relsWorkbook->registerXPathNamespace("rel", "http://schemas.openxmlformats.org/package/2006/relationships"); + + $worksheets = array(); + foreach ($relsWorkbook->Relationship as $ele) { + if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet") { + $worksheets[(string) $ele["Id"]] = $ele["Target"]; + } + } + + $xmlWorkbook = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "{$rel['Target']}")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main"); + if ($xmlWorkbook->sheets) { + $dir = dirname($rel["Target"]); + foreach ($xmlWorkbook->sheets->sheet as $eleSheet) { + $tmpInfo = array( + 'worksheetName' => (string) $eleSheet["name"], + 'lastColumnLetter' => 'A', + 'lastColumnIndex' => 0, + 'totalRows' => 0, + 'totalColumns' => 0, + ); + + $fileWorksheet = $worksheets[(string) self::getArrayItem($eleSheet->attributes("http://schemas.openxmlformats.org/officeDocument/2006/relationships"), "id")]; + + $xml = new XMLReader(); + $res = $xml->xml($this->securityScanFile('zip://'.PHPExcel_Shared_File::realpath($pFilename).'#'."$dir/$fileWorksheet"), null, PHPExcel_Settings::getLibXmlLoaderOptions()); + $xml->setParserProperty(2, true); + + $currCells = 0; + while ($xml->read()) { + if ($xml->name == 'row' && $xml->nodeType == XMLReader::ELEMENT) { + $row = $xml->getAttribute('r'); + $tmpInfo['totalRows'] = $row; + $tmpInfo['totalColumns'] = max($tmpInfo['totalColumns'], $currCells); + $currCells = 0; + } elseif ($xml->name == 'c' && $xml->nodeType == XMLReader::ELEMENT) { + $currCells++; + } + } + $tmpInfo['totalColumns'] = max($tmpInfo['totalColumns'], $currCells); + $xml->close(); + + $tmpInfo['lastColumnIndex'] = $tmpInfo['totalColumns'] - 1; + $tmpInfo['lastColumnLetter'] = PHPExcel_Cell::stringFromColumnIndex($tmpInfo['lastColumnIndex']); + + $worksheetInfo[] = $tmpInfo; + } + } + } + } + + $zip->close(); + + return $worksheetInfo; + } + + private static function castToBoolean($c) + { +// echo 'Initial Cast to Boolean', PHP_EOL; + $value = isset($c->v) ? (string) $c->v : null; + if ($value == '0') { + return false; + } elseif ($value == '1') { + return true; + } else { + return (bool)$c->v; + } + return $value; + } + + private static function castToError($c) + { +// echo 'Initial Cast to Error', PHP_EOL; + return isset($c->v) ? (string) $c->v : null; + } + + private static function castToString($c) + { +// echo 'Initial Cast to String, PHP_EOL; + return isset($c->v) ? (string) $c->v : null; + } + + private function castToFormula($c, $r, &$cellDataType, &$value, &$calculatedValue, &$sharedFormulas, $castBaseType) + { +// echo 'Formula', PHP_EOL; +// echo '$c->f is ', $c->f, PHP_EOL; + $cellDataType = 'f'; + $value = "={$c->f}"; + $calculatedValue = self::$castBaseType($c); + + // Shared formula? + if (isset($c->f['t']) && strtolower((string)$c->f['t']) == 'shared') { +// echo 'SHARED FORMULA', PHP_EOL; + $instance = (string)$c->f['si']; + +// echo 'Instance ID = ', $instance, PHP_EOL; +// +// echo 'Shared Formula Array:', PHP_EOL; +// print_r($sharedFormulas); + if (!isset($sharedFormulas[(string)$c->f['si']])) { +// echo 'SETTING NEW SHARED FORMULA', PHP_EOL; +// echo 'Master is ', $r, PHP_EOL; +// echo 'Formula is ', $value, PHP_EOL; + $sharedFormulas[$instance] = array('master' => $r, 'formula' => $value); +// echo 'New Shared Formula Array:', PHP_EOL; +// print_r($sharedFormulas); + } else { +// echo 'GETTING SHARED FORMULA', PHP_EOL; +// echo 'Master is ', $sharedFormulas[$instance]['master'], PHP_EOL; +// echo 'Formula is ', $sharedFormulas[$instance]['formula'], PHP_EOL; + $master = PHPExcel_Cell::coordinateFromString($sharedFormulas[$instance]['master']); + $current = PHPExcel_Cell::coordinateFromString($r); + + $difference = array(0, 0); + $difference[0] = PHPExcel_Cell::columnIndexFromString($current[0]) - PHPExcel_Cell::columnIndexFromString($master[0]); + $difference[1] = $current[1] - $master[1]; + + $value = $this->referenceHelper->updateFormulaReferences($sharedFormulas[$instance]['formula'], 'A1', $difference[0], $difference[1]); +// echo 'Adjusted Formula is ', $value, PHP_EOL; + } + } + } + + + private function getFromZipArchive($archive, $fileName = '') + { + // Root-relative paths + if (strpos($fileName, '//') !== false) { + $fileName = substr($fileName, strpos($fileName, '//') + 1); + } + $fileName = PHPExcel_Shared_File::realpath($fileName); + + // Sadly, some 3rd party xlsx generators don't use consistent case for filenaming + // so we need to load case-insensitively from the zip file + + // Apache POI fixes + $contents = $archive->getFromIndex( + $archive->locateName($fileName, ZIPARCHIVE::FL_NOCASE) + ); + if ($contents === false) { + $contents = $archive->getFromIndex( + $archive->locateName(substr($fileName, 1), ZIPARCHIVE::FL_NOCASE) + ); + } + + return $contents; + } + + + /** + * Loads PHPExcel from file + * + * @param string $pFilename + * @return PHPExcel + * @throws PHPExcel_Reader_Exception + */ + public function load($pFilename) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + // Initialisations + $excel = new PHPExcel; + $excel->removeSheetByIndex(0); + if (!$this->readDataOnly) { + $excel->removeCellStyleXfByIndex(0); // remove the default style + $excel->removeCellXfByIndex(0); // remove the default style + } + + $zipClass = PHPExcel_Settings::getZipClass(); + + $zip = new $zipClass; + $zip->open($pFilename); + + // Read the theme first, because we need the colour scheme when reading the styles + $wbRels = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "xl/_rels/workbook.xml.rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships"); + foreach ($wbRels->Relationship as $rel) { + switch ($rel["Type"]) { + case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme": + $themeOrderArray = array('lt1', 'dk1', 'lt2', 'dk2'); + $themeOrderAdditional = count($themeOrderArray); + + $xmlTheme = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "xl/{$rel['Target']}")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + if (is_object($xmlTheme)) { + $xmlThemeName = $xmlTheme->attributes(); + $xmlTheme = $xmlTheme->children("http://schemas.openxmlformats.org/drawingml/2006/main"); + $themeName = (string)$xmlThemeName['name']; + + $colourScheme = $xmlTheme->themeElements->clrScheme->attributes(); + $colourSchemeName = (string)$colourScheme['name']; + $colourScheme = $xmlTheme->themeElements->clrScheme->children("http://schemas.openxmlformats.org/drawingml/2006/main"); + + $themeColours = array(); + foreach ($colourScheme as $k => $xmlColour) { + $themePos = array_search($k, $themeOrderArray); + if ($themePos === false) { + $themePos = $themeOrderAdditional++; + } + if (isset($xmlColour->sysClr)) { + $xmlColourData = $xmlColour->sysClr->attributes(); + $themeColours[$themePos] = $xmlColourData['lastClr']; + } elseif (isset($xmlColour->srgbClr)) { + $xmlColourData = $xmlColour->srgbClr->attributes(); + $themeColours[$themePos] = $xmlColourData['val']; + } + } + self::$theme = new PHPExcel_Reader_Excel2007_Theme($themeName, $colourSchemeName, $themeColours); + } + break; + } + } + + $rels = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "_rels/.rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships"); + foreach ($rels->Relationship as $rel) { + switch ($rel["Type"]) { + case "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties": + $xmlCore = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "{$rel['Target']}")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + if (is_object($xmlCore)) { + $xmlCore->registerXPathNamespace("dc", "http://purl.org/dc/elements/1.1/"); + $xmlCore->registerXPathNamespace("dcterms", "http://purl.org/dc/terms/"); + $xmlCore->registerXPathNamespace("cp", "http://schemas.openxmlformats.org/package/2006/metadata/core-properties"); + $docProps = $excel->getProperties(); + $docProps->setCreator((string) self::getArrayItem($xmlCore->xpath("dc:creator"))); + $docProps->setLastModifiedBy((string) self::getArrayItem($xmlCore->xpath("cp:lastModifiedBy"))); + $docProps->setCreated(strtotime(self::getArrayItem($xmlCore->xpath("dcterms:created")))); //! respect xsi:type + $docProps->setModified(strtotime(self::getArrayItem($xmlCore->xpath("dcterms:modified")))); //! respect xsi:type + $docProps->setTitle((string) self::getArrayItem($xmlCore->xpath("dc:title"))); + $docProps->setDescription((string) self::getArrayItem($xmlCore->xpath("dc:description"))); + $docProps->setSubject((string) self::getArrayItem($xmlCore->xpath("dc:subject"))); + $docProps->setKeywords((string) self::getArrayItem($xmlCore->xpath("cp:keywords"))); + $docProps->setCategory((string) self::getArrayItem($xmlCore->xpath("cp:category"))); + } + break; + case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties": + $xmlCore = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "{$rel['Target']}")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + if (is_object($xmlCore)) { + $docProps = $excel->getProperties(); + if (isset($xmlCore->Company)) { + $docProps->setCompany((string) $xmlCore->Company); + } + if (isset($xmlCore->Manager)) { + $docProps->setManager((string) $xmlCore->Manager); + } + } + break; + case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties": + $xmlCore = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "{$rel['Target']}")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + if (is_object($xmlCore)) { + $docProps = $excel->getProperties(); + foreach ($xmlCore as $xmlProperty) { + $cellDataOfficeAttributes = $xmlProperty->attributes(); + if (isset($cellDataOfficeAttributes['name'])) { + $propertyName = (string) $cellDataOfficeAttributes['name']; + $cellDataOfficeChildren = $xmlProperty->children('http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes'); + $attributeType = $cellDataOfficeChildren->getName(); + $attributeValue = (string) $cellDataOfficeChildren->{$attributeType}; + $attributeValue = PHPExcel_DocumentProperties::convertProperty($attributeValue, $attributeType); + $attributeType = PHPExcel_DocumentProperties::convertPropertyType($attributeType); + $docProps->setCustomProperty($propertyName, $attributeValue, $attributeType); + } + } + } + break; + //Ribbon + case "http://schemas.microsoft.com/office/2006/relationships/ui/extensibility": + $customUI = $rel['Target']; + if (!is_null($customUI)) { + $this->readRibbon($excel, $customUI, $zip); + } + break; + case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument": + $dir = dirname($rel["Target"]); + $relsWorkbook = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "$dir/_rels/" . basename($rel["Target"]) . ".rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships"); + $relsWorkbook->registerXPathNamespace("rel", "http://schemas.openxmlformats.org/package/2006/relationships"); + + $sharedStrings = array(); + $xpath = self::getArrayItem($relsWorkbook->xpath("rel:Relationship[@Type='http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings']")); + $xmlStrings = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "$dir/$xpath[Target]")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main"); + if (isset($xmlStrings) && isset($xmlStrings->si)) { + foreach ($xmlStrings->si as $val) { + if (isset($val->t)) { + $sharedStrings[] = PHPExcel_Shared_String::ControlCharacterOOXML2PHP((string) $val->t); + } elseif (isset($val->r)) { + $sharedStrings[] = $this->parseRichText($val); + } + } + } + + $worksheets = array(); + $macros = $customUI = null; + foreach ($relsWorkbook->Relationship as $ele) { + switch ($ele['Type']) { + case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet": + $worksheets[(string) $ele["Id"]] = $ele["Target"]; + break; + // a vbaProject ? (: some macros) + case "http://schemas.microsoft.com/office/2006/relationships/vbaProject": + $macros = $ele["Target"]; + break; + } + } + + if (!is_null($macros)) { + $macrosCode = $this->getFromZipArchive($zip, 'xl/vbaProject.bin');//vbaProject.bin always in 'xl' dir and always named vbaProject.bin + if ($macrosCode !== false) { + $excel->setMacrosCode($macrosCode); + $excel->setHasMacros(true); + //short-circuit : not reading vbaProject.bin.rel to get Signature =>allways vbaProjectSignature.bin in 'xl' dir + $Certificate = $this->getFromZipArchive($zip, 'xl/vbaProjectSignature.bin'); + if ($Certificate !== false) { + $excel->setMacrosCertificate($Certificate); + } + } + } + $styles = array(); + $cellStyles = array(); + $xpath = self::getArrayItem($relsWorkbook->xpath("rel:Relationship[@Type='http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles']")); + $xmlStyles = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "$dir/$xpath[Target]")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main"); + + $numFmts = null; + if ($xmlStyles && $xmlStyles->numFmts[0]) { + $numFmts = $xmlStyles->numFmts[0]; + } + if (isset($numFmts) && ($numFmts !== null)) { + $numFmts->registerXPathNamespace("sml", "http://schemas.openxmlformats.org/spreadsheetml/2006/main"); + } + if (!$this->readDataOnly && $xmlStyles) { + foreach ($xmlStyles->cellXfs->xf as $xf) { + $numFmt = PHPExcel_Style_NumberFormat::FORMAT_GENERAL; + if ($xf["numFmtId"]) { + if (isset($numFmts)) { + $tmpNumFmt = self::getArrayItem($numFmts->xpath("sml:numFmt[@numFmtId=$xf[numFmtId]]")); + + if (isset($tmpNumFmt["formatCode"])) { + $numFmt = (string) $tmpNumFmt["formatCode"]; + } + } + + // We shouldn't override any of the built-in MS Excel values (values below id 164) + // But there's a lot of naughty homebrew xlsx writers that do use "reserved" id values that aren't actually used + // So we make allowance for them rather than lose formatting masks + if ((int)$xf["numFmtId"] < 164 && PHPExcel_Style_NumberFormat::builtInFormatCode((int)$xf["numFmtId"]) !== '') { + $numFmt = PHPExcel_Style_NumberFormat::builtInFormatCode((int)$xf["numFmtId"]); + } + } + $quotePrefix = false; + if (isset($xf["quotePrefix"])) { + $quotePrefix = (boolean) $xf["quotePrefix"]; + } + + $style = (object) array( + "numFmt" => $numFmt, + "font" => $xmlStyles->fonts->font[intval($xf["fontId"])], + "fill" => $xmlStyles->fills->fill[intval($xf["fillId"])], + "border" => $xmlStyles->borders->border[intval($xf["borderId"])], + "alignment" => $xf->alignment, + "protection" => $xf->protection, + "quotePrefix" => $quotePrefix, + ); + $styles[] = $style; + + // add style to cellXf collection + $objStyle = new PHPExcel_Style; + self::readStyle($objStyle, $style); + $excel->addCellXf($objStyle); + } + + foreach ($xmlStyles->cellStyleXfs->xf as $xf) { + $numFmt = PHPExcel_Style_NumberFormat::FORMAT_GENERAL; + if ($numFmts && $xf["numFmtId"]) { + $tmpNumFmt = self::getArrayItem($numFmts->xpath("sml:numFmt[@numFmtId=$xf[numFmtId]]")); + if (isset($tmpNumFmt["formatCode"])) { + $numFmt = (string) $tmpNumFmt["formatCode"]; + } elseif ((int)$xf["numFmtId"] < 165) { + $numFmt = PHPExcel_Style_NumberFormat::builtInFormatCode((int)$xf["numFmtId"]); + } + } + + $cellStyle = (object) array( + "numFmt" => $numFmt, + "font" => $xmlStyles->fonts->font[intval($xf["fontId"])], + "fill" => $xmlStyles->fills->fill[intval($xf["fillId"])], + "border" => $xmlStyles->borders->border[intval($xf["borderId"])], + "alignment" => $xf->alignment, + "protection" => $xf->protection, + "quotePrefix" => $quotePrefix, + ); + $cellStyles[] = $cellStyle; + + // add style to cellStyleXf collection + $objStyle = new PHPExcel_Style; + self::readStyle($objStyle, $cellStyle); + $excel->addCellStyleXf($objStyle); + } + } + + $dxfs = array(); + if (!$this->readDataOnly && $xmlStyles) { + // Conditional Styles + if ($xmlStyles->dxfs) { + foreach ($xmlStyles->dxfs->dxf as $dxf) { + $style = new PHPExcel_Style(false, true); + self::readStyle($style, $dxf); + $dxfs[] = $style; + } + } + // Cell Styles + if ($xmlStyles->cellStyles) { + foreach ($xmlStyles->cellStyles->cellStyle as $cellStyle) { + if (intval($cellStyle['builtinId']) == 0) { + if (isset($cellStyles[intval($cellStyle['xfId'])])) { + // Set default style + $style = new PHPExcel_Style; + self::readStyle($style, $cellStyles[intval($cellStyle['xfId'])]); + + // normal style, currently not using it for anything + } + } + } + } + } + + $xmlWorkbook = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "{$rel['Target']}")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main"); + + // Set base date + if ($xmlWorkbook->workbookPr) { + PHPExcel_Shared_Date::setExcelCalendar(PHPExcel_Shared_Date::CALENDAR_WINDOWS_1900); + if (isset($xmlWorkbook->workbookPr['date1904'])) { + if (self::boolean((string) $xmlWorkbook->workbookPr['date1904'])) { + PHPExcel_Shared_Date::setExcelCalendar(PHPExcel_Shared_Date::CALENDAR_MAC_1904); + } + } + } + + $sheetId = 0; // keep track of new sheet id in final workbook + $oldSheetId = -1; // keep track of old sheet id in final workbook + $countSkippedSheets = 0; // keep track of number of skipped sheets + $mapSheetId = array(); // mapping of sheet ids from old to new + + $charts = $chartDetails = array(); + + if ($xmlWorkbook->sheets) { + foreach ($xmlWorkbook->sheets->sheet as $eleSheet) { + ++$oldSheetId; + + // Check if sheet should be skipped + if (isset($this->loadSheetsOnly) && !in_array((string) $eleSheet["name"], $this->loadSheetsOnly)) { + ++$countSkippedSheets; + $mapSheetId[$oldSheetId] = null; + continue; + } + + // Map old sheet id in original workbook to new sheet id. + // They will differ if loadSheetsOnly() is being used + $mapSheetId[$oldSheetId] = $oldSheetId - $countSkippedSheets; + + // Load sheet + $docSheet = $excel->createSheet(); + // Use false for $updateFormulaCellReferences to prevent adjustment of worksheet + // references in formula cells... during the load, all formulae should be correct, + // and we're simply bringing the worksheet name in line with the formula, not the + // reverse + $docSheet->setTitle((string) $eleSheet["name"], false); + $fileWorksheet = $worksheets[(string) self::getArrayItem($eleSheet->attributes("http://schemas.openxmlformats.org/officeDocument/2006/relationships"), "id")]; + $xmlSheet = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "$dir/$fileWorksheet")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main"); + + $sharedFormulas = array(); + + if (isset($eleSheet["state"]) && (string) $eleSheet["state"] != '') { + $docSheet->setSheetState((string) $eleSheet["state"]); + } + + if (isset($xmlSheet->sheetViews) && isset($xmlSheet->sheetViews->sheetView)) { + if (isset($xmlSheet->sheetViews->sheetView['zoomScale'])) { + $docSheet->getSheetView()->setZoomScale(intval($xmlSheet->sheetViews->sheetView['zoomScale'])); + } + if (isset($xmlSheet->sheetViews->sheetView['zoomScaleNormal'])) { + $docSheet->getSheetView()->setZoomScaleNormal(intval($xmlSheet->sheetViews->sheetView['zoomScaleNormal'])); + } + if (isset($xmlSheet->sheetViews->sheetView['view'])) { + $docSheet->getSheetView()->setView((string) $xmlSheet->sheetViews->sheetView['view']); + } + if (isset($xmlSheet->sheetViews->sheetView['showGridLines'])) { + $docSheet->setShowGridLines(self::boolean((string)$xmlSheet->sheetViews->sheetView['showGridLines'])); + } + if (isset($xmlSheet->sheetViews->sheetView['showRowColHeaders'])) { + $docSheet->setShowRowColHeaders(self::boolean((string)$xmlSheet->sheetViews->sheetView['showRowColHeaders'])); + } + if (isset($xmlSheet->sheetViews->sheetView['rightToLeft'])) { + $docSheet->setRightToLeft(self::boolean((string)$xmlSheet->sheetViews->sheetView['rightToLeft'])); + } + if (isset($xmlSheet->sheetViews->sheetView->pane)) { + if (isset($xmlSheet->sheetViews->sheetView->pane['topLeftCell'])) { + $docSheet->freezePane((string)$xmlSheet->sheetViews->sheetView->pane['topLeftCell']); + } else { + $xSplit = 0; + $ySplit = 0; + + if (isset($xmlSheet->sheetViews->sheetView->pane['xSplit'])) { + $xSplit = 1 + intval($xmlSheet->sheetViews->sheetView->pane['xSplit']); + } + + if (isset($xmlSheet->sheetViews->sheetView->pane['ySplit'])) { + $ySplit = 1 + intval($xmlSheet->sheetViews->sheetView->pane['ySplit']); + } + + $docSheet->freezePaneByColumnAndRow($xSplit, $ySplit); + } + } + + if (isset($xmlSheet->sheetViews->sheetView->selection)) { + if (isset($xmlSheet->sheetViews->sheetView->selection['sqref'])) { + $sqref = (string)$xmlSheet->sheetViews->sheetView->selection['sqref']; + $sqref = explode(' ', $sqref); + $sqref = $sqref[0]; + $docSheet->setSelectedCells($sqref); + } + } + } + + if (isset($xmlSheet->sheetPr) && isset($xmlSheet->sheetPr->tabColor)) { + if (isset($xmlSheet->sheetPr->tabColor['rgb'])) { + $docSheet->getTabColor()->setARGB((string)$xmlSheet->sheetPr->tabColor['rgb']); + } + } + if (isset($xmlSheet->sheetPr) && isset($xmlSheet->sheetPr['codeName'])) { + $docSheet->setCodeName((string) $xmlSheet->sheetPr['codeName']); + } + if (isset($xmlSheet->sheetPr) && isset($xmlSheet->sheetPr->outlinePr)) { + if (isset($xmlSheet->sheetPr->outlinePr['summaryRight']) && + !self::boolean((string) $xmlSheet->sheetPr->outlinePr['summaryRight'])) { + $docSheet->setShowSummaryRight(false); + } else { + $docSheet->setShowSummaryRight(true); + } + + if (isset($xmlSheet->sheetPr->outlinePr['summaryBelow']) && + !self::boolean((string) $xmlSheet->sheetPr->outlinePr['summaryBelow'])) { + $docSheet->setShowSummaryBelow(false); + } else { + $docSheet->setShowSummaryBelow(true); + } + } + + if (isset($xmlSheet->sheetPr) && isset($xmlSheet->sheetPr->pageSetUpPr)) { + if (isset($xmlSheet->sheetPr->pageSetUpPr['fitToPage']) && + !self::boolean((string) $xmlSheet->sheetPr->pageSetUpPr['fitToPage'])) { + $docSheet->getPageSetup()->setFitToPage(false); + } else { + $docSheet->getPageSetup()->setFitToPage(true); + } + } + + if (isset($xmlSheet->sheetFormatPr)) { + if (isset($xmlSheet->sheetFormatPr['customHeight']) && + self::boolean((string) $xmlSheet->sheetFormatPr['customHeight']) && + isset($xmlSheet->sheetFormatPr['defaultRowHeight'])) { + $docSheet->getDefaultRowDimension()->setRowHeight((float)$xmlSheet->sheetFormatPr['defaultRowHeight']); + } + if (isset($xmlSheet->sheetFormatPr['defaultColWidth'])) { + $docSheet->getDefaultColumnDimension()->setWidth((float)$xmlSheet->sheetFormatPr['defaultColWidth']); + } + if (isset($xmlSheet->sheetFormatPr['zeroHeight']) && + ((string)$xmlSheet->sheetFormatPr['zeroHeight'] == '1')) { + $docSheet->getDefaultRowDimension()->setZeroHeight(true); + } + } + + if (isset($xmlSheet->cols) && !$this->readDataOnly) { + foreach ($xmlSheet->cols->col as $col) { + for ($i = intval($col["min"]) - 1; $i < intval($col["max"]); ++$i) { + if ($col["style"] && !$this->readDataOnly) { + $docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setXfIndex(intval($col["style"])); + } + if (self::boolean($col["bestFit"])) { + //$docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setAutoSize(true); + } + if (self::boolean($col["hidden"])) { + // echo PHPExcel_Cell::stringFromColumnIndex($i), ': HIDDEN COLUMN',PHP_EOL; + $docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setVisible(false); + } + if (self::boolean($col["collapsed"])) { + $docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setCollapsed(true); + } + if ($col["outlineLevel"] > 0) { + $docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setOutlineLevel(intval($col["outlineLevel"])); + } + $docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setWidth(floatval($col["width"])); + + if (intval($col["max"]) == 16384) { + break; + } + } + } + } + + if (isset($xmlSheet->printOptions) && !$this->readDataOnly) { + if (self::boolean((string) $xmlSheet->printOptions['gridLinesSet'])) { + $docSheet->setShowGridlines(true); + } + if (self::boolean((string) $xmlSheet->printOptions['gridLines'])) { + $docSheet->setPrintGridlines(true); + } + if (self::boolean((string) $xmlSheet->printOptions['horizontalCentered'])) { + $docSheet->getPageSetup()->setHorizontalCentered(true); + } + if (self::boolean((string) $xmlSheet->printOptions['verticalCentered'])) { + $docSheet->getPageSetup()->setVerticalCentered(true); + } + } + + if ($xmlSheet && $xmlSheet->sheetData && $xmlSheet->sheetData->row) { + foreach ($xmlSheet->sheetData->row as $row) { + if ($row["ht"] && !$this->readDataOnly) { + $docSheet->getRowDimension(intval($row["r"]))->setRowHeight(floatval($row["ht"])); + } + if (self::boolean($row["hidden"]) && !$this->readDataOnly) { + $docSheet->getRowDimension(intval($row["r"]))->setVisible(false); + } + if (self::boolean($row["collapsed"])) { + $docSheet->getRowDimension(intval($row["r"]))->setCollapsed(true); + } + if ($row["outlineLevel"] > 0) { + $docSheet->getRowDimension(intval($row["r"]))->setOutlineLevel(intval($row["outlineLevel"])); + } + if ($row["s"] && !$this->readDataOnly) { + $docSheet->getRowDimension(intval($row["r"]))->setXfIndex(intval($row["s"])); + } + + foreach ($row->c as $c) { + $r = (string) $c["r"]; + $cellDataType = (string) $c["t"]; + $value = null; + $calculatedValue = null; + + // Read cell? + if ($this->getReadFilter() !== null) { + $coordinates = PHPExcel_Cell::coordinateFromString($r); + + if (!$this->getReadFilter()->readCell($coordinates[0], $coordinates[1], $docSheet->getTitle())) { + continue; + } + } + + // echo 'Reading cell ', $coordinates[0], $coordinates[1], PHP_EOL; + // print_r($c); + // echo PHP_EOL; + // echo 'Cell Data Type is ', $cellDataType, ': '; + // + // Read cell! + switch ($cellDataType) { + case "s": + // echo 'String', PHP_EOL; + if ((string)$c->v != '') { + $value = $sharedStrings[intval($c->v)]; + + if ($value instanceof PHPExcel_RichText) { + $value = clone $value; + } + } else { + $value = ''; + } + break; + case "b": + // echo 'Boolean', PHP_EOL; + if (!isset($c->f)) { + $value = self::castToBoolean($c); + } else { + // Formula + $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToBoolean'); + if (isset($c->f['t'])) { + $att = array(); + $att = $c->f; + $docSheet->getCell($r)->setFormulaAttributes($att); + } + // echo '$calculatedValue = ', $calculatedValue, PHP_EOL; + } + break; + case "inlineStr": +// echo 'Inline String', PHP_EOL; + if (isset($c->f)) { + $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToError'); + } else { + $value = $this->parseRichText($c->is); + } + break; + case "e": + // echo 'Error', PHP_EOL; + if (!isset($c->f)) { + $value = self::castToError($c); + } else { + // Formula + $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToError'); + // echo '$calculatedValue = ', $calculatedValue, PHP_EOL; + } + break; + default: +// echo 'Default', PHP_EOL; + if (!isset($c->f)) { + // echo 'Not a Formula', PHP_EOL; + $value = self::castToString($c); + } else { + // echo 'Treat as Formula', PHP_EOL; + // Formula + $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToString'); + // echo '$calculatedValue = ', $calculatedValue, PHP_EOL; + } + break; + } + // echo 'Value is ', $value, PHP_EOL; + + // Check for numeric values + if (is_numeric($value) && $cellDataType != 's') { + if ($value == (int)$value) { + $value = (int)$value; + } elseif ($value == (float)$value) { + $value = (float)$value; + } elseif ($value == (double)$value) { + $value = (double)$value; + } + } + + // Rich text? + if ($value instanceof PHPExcel_RichText && $this->readDataOnly) { + $value = $value->getPlainText(); + } + + $cell = $docSheet->getCell($r); + // Assign value + if ($cellDataType != '') { + $cell->setValueExplicit($value, $cellDataType); + } else { + $cell->setValue($value); + } + if ($calculatedValue !== null) { + $cell->setCalculatedValue($calculatedValue); + } + + // Style information? + if ($c["s"] && !$this->readDataOnly) { + // no style index means 0, it seems + $cell->setXfIndex(isset($styles[intval($c["s"])]) ? + intval($c["s"]) : 0); + } + } + } + } + + $conditionals = array(); + if (!$this->readDataOnly && $xmlSheet && $xmlSheet->conditionalFormatting) { + foreach ($xmlSheet->conditionalFormatting as $conditional) { + foreach ($conditional->cfRule as $cfRule) { + if (((string)$cfRule["type"] == PHPExcel_Style_Conditional::CONDITION_NONE || (string)$cfRule["type"] == PHPExcel_Style_Conditional::CONDITION_CELLIS || (string)$cfRule["type"] == PHPExcel_Style_Conditional::CONDITION_CONTAINSTEXT || (string)$cfRule["type"] == PHPExcel_Style_Conditional::CONDITION_EXPRESSION) && isset($dxfs[intval($cfRule["dxfId"])])) { + $conditionals[(string) $conditional["sqref"]][intval($cfRule["priority"])] = $cfRule; + } + } + } + + foreach ($conditionals as $ref => $cfRules) { + ksort($cfRules); + $conditionalStyles = array(); + foreach ($cfRules as $cfRule) { + $objConditional = new PHPExcel_Style_Conditional(); + $objConditional->setConditionType((string)$cfRule["type"]); + $objConditional->setOperatorType((string)$cfRule["operator"]); + + if ((string)$cfRule["text"] != '') { + $objConditional->setText((string)$cfRule["text"]); + } + + if (count($cfRule->formula) > 1) { + foreach ($cfRule->formula as $formula) { + $objConditional->addCondition((string)$formula); + } + } else { + $objConditional->addCondition((string)$cfRule->formula); + } + $objConditional->setStyle(clone $dxfs[intval($cfRule["dxfId"])]); + $conditionalStyles[] = $objConditional; + } + + // Extract all cell references in $ref + $cellBlocks = explode(' ', str_replace('$', '', strtoupper($ref))); + foreach ($cellBlocks as $cellBlock) { + $docSheet->getStyle($cellBlock)->setConditionalStyles($conditionalStyles); + } + } + } + + $aKeys = array("sheet", "objects", "scenarios", "formatCells", "formatColumns", "formatRows", "insertColumns", "insertRows", "insertHyperlinks", "deleteColumns", "deleteRows", "selectLockedCells", "sort", "autoFilter", "pivotTables", "selectUnlockedCells"); + if (!$this->readDataOnly && $xmlSheet && $xmlSheet->sheetProtection) { + foreach ($aKeys as $key) { + $method = "set" . ucfirst($key); + $docSheet->getProtection()->$method(self::boolean((string) $xmlSheet->sheetProtection[$key])); + } + } + + if (!$this->readDataOnly && $xmlSheet && $xmlSheet->sheetProtection) { + $docSheet->getProtection()->setPassword((string) $xmlSheet->sheetProtection["password"], true); + if ($xmlSheet->protectedRanges->protectedRange) { + foreach ($xmlSheet->protectedRanges->protectedRange as $protectedRange) { + $docSheet->protectCells((string) $protectedRange["sqref"], (string) $protectedRange["password"], true); + } + } + } + + if ($xmlSheet && $xmlSheet->autoFilter && !$this->readDataOnly) { + $autoFilterRange = (string) $xmlSheet->autoFilter["ref"]; + if (strpos($autoFilterRange, ':') !== false) { + $autoFilter = $docSheet->getAutoFilter(); + $autoFilter->setRange($autoFilterRange); + + foreach ($xmlSheet->autoFilter->filterColumn as $filterColumn) { + $column = $autoFilter->getColumnByOffset((integer) $filterColumn["colId"]); + // Check for standard filters + if ($filterColumn->filters) { + $column->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_FILTER); + $filters = $filterColumn->filters; + if ((isset($filters["blank"])) && ($filters["blank"] == 1)) { + // Operator is undefined, but always treated as EQUAL + $column->createRule()->setRule(null, '')->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_FILTER); + } + // Standard filters are always an OR join, so no join rule needs to be set + // Entries can be either filter elements + foreach ($filters->filter as $filterRule) { + // Operator is undefined, but always treated as EQUAL + $column->createRule()->setRule(null, (string) $filterRule["val"])->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_FILTER); + } + // Or Date Group elements + foreach ($filters->dateGroupItem as $dateGroupItem) { + $column->createRule()->setRule( + // Operator is undefined, but always treated as EQUAL + null, + array( + 'year' => (string) $dateGroupItem["year"], + 'month' => (string) $dateGroupItem["month"], + 'day' => (string) $dateGroupItem["day"], + 'hour' => (string) $dateGroupItem["hour"], + 'minute' => (string) $dateGroupItem["minute"], + 'second' => (string) $dateGroupItem["second"], + ), + (string) $dateGroupItem["dateTimeGrouping"] + ) + ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP); + } + } + // Check for custom filters + if ($filterColumn->customFilters) { + $column->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_CUSTOMFILTER); + $customFilters = $filterColumn->customFilters; + // Custom filters can an AND or an OR join; + // and there should only ever be one or two entries + if ((isset($customFilters["and"])) && ($customFilters["and"] == 1)) { + $column->setJoin(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_COLUMN_JOIN_AND); + } + foreach ($customFilters->customFilter as $filterRule) { + $column->createRule()->setRule( + (string) $filterRule["operator"], + (string) $filterRule["val"] + ) + ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_CUSTOMFILTER); + } + } + // Check for dynamic filters + if ($filterColumn->dynamicFilter) { + $column->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_DYNAMICFILTER); + // We should only ever have one dynamic filter + foreach ($filterColumn->dynamicFilter as $filterRule) { + $column->createRule()->setRule( + // Operator is undefined, but always treated as EQUAL + null, + (string) $filterRule["val"], + (string) $filterRule["type"] + ) + ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMICFILTER); + if (isset($filterRule["val"])) { + $column->setAttribute('val', (string) $filterRule["val"]); + } + if (isset($filterRule["maxVal"])) { + $column->setAttribute('maxVal', (string) $filterRule["maxVal"]); + } + } + } + // Check for dynamic filters + if ($filterColumn->top10) { + $column->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_TOPTENFILTER); + // We should only ever have one top10 filter + foreach ($filterColumn->top10 as $filterRule) { + $column->createRule()->setRule( + (((isset($filterRule["percent"])) && ($filterRule["percent"] == 1)) + ? PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_PERCENT + : PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_BY_VALUE + ), + (string) $filterRule["val"], + (((isset($filterRule["top"])) && ($filterRule["top"] == 1)) + ? PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_TOP + : PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_BOTTOM + ) + ) + ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_TOPTENFILTER); + } + } + } + } + } + + if ($xmlSheet && $xmlSheet->mergeCells && $xmlSheet->mergeCells->mergeCell && !$this->readDataOnly) { + foreach ($xmlSheet->mergeCells->mergeCell as $mergeCell) { + $mergeRef = (string) $mergeCell["ref"]; + if (strpos($mergeRef, ':') !== false) { + $docSheet->mergeCells((string) $mergeCell["ref"]); + } + } + } + + if ($xmlSheet && $xmlSheet->pageMargins && !$this->readDataOnly) { + $docPageMargins = $docSheet->getPageMargins(); + $docPageMargins->setLeft(floatval($xmlSheet->pageMargins["left"])); + $docPageMargins->setRight(floatval($xmlSheet->pageMargins["right"])); + $docPageMargins->setTop(floatval($xmlSheet->pageMargins["top"])); + $docPageMargins->setBottom(floatval($xmlSheet->pageMargins["bottom"])); + $docPageMargins->setHeader(floatval($xmlSheet->pageMargins["header"])); + $docPageMargins->setFooter(floatval($xmlSheet->pageMargins["footer"])); + } + + if ($xmlSheet && $xmlSheet->pageSetup && !$this->readDataOnly) { + $docPageSetup = $docSheet->getPageSetup(); + + if (isset($xmlSheet->pageSetup["orientation"])) { + $docPageSetup->setOrientation((string) $xmlSheet->pageSetup["orientation"]); + } + if (isset($xmlSheet->pageSetup["paperSize"])) { + $docPageSetup->setPaperSize(intval($xmlSheet->pageSetup["paperSize"])); + } + if (isset($xmlSheet->pageSetup["scale"])) { + $docPageSetup->setScale(intval($xmlSheet->pageSetup["scale"]), false); + } + if (isset($xmlSheet->pageSetup["fitToHeight"]) && intval($xmlSheet->pageSetup["fitToHeight"]) >= 0) { + $docPageSetup->setFitToHeight(intval($xmlSheet->pageSetup["fitToHeight"]), false); + } + if (isset($xmlSheet->pageSetup["fitToWidth"]) && intval($xmlSheet->pageSetup["fitToWidth"]) >= 0) { + $docPageSetup->setFitToWidth(intval($xmlSheet->pageSetup["fitToWidth"]), false); + } + if (isset($xmlSheet->pageSetup["firstPageNumber"]) && isset($xmlSheet->pageSetup["useFirstPageNumber"]) && + self::boolean((string) $xmlSheet->pageSetup["useFirstPageNumber"])) { + $docPageSetup->setFirstPageNumber(intval($xmlSheet->pageSetup["firstPageNumber"])); + } + } + + if ($xmlSheet && $xmlSheet->headerFooter && !$this->readDataOnly) { + $docHeaderFooter = $docSheet->getHeaderFooter(); + + if (isset($xmlSheet->headerFooter["differentOddEven"]) && + self::boolean((string)$xmlSheet->headerFooter["differentOddEven"])) { + $docHeaderFooter->setDifferentOddEven(true); + } else { + $docHeaderFooter->setDifferentOddEven(false); + } + if (isset($xmlSheet->headerFooter["differentFirst"]) && + self::boolean((string)$xmlSheet->headerFooter["differentFirst"])) { + $docHeaderFooter->setDifferentFirst(true); + } else { + $docHeaderFooter->setDifferentFirst(false); + } + if (isset($xmlSheet->headerFooter["scaleWithDoc"]) && + !self::boolean((string)$xmlSheet->headerFooter["scaleWithDoc"])) { + $docHeaderFooter->setScaleWithDocument(false); + } else { + $docHeaderFooter->setScaleWithDocument(true); + } + if (isset($xmlSheet->headerFooter["alignWithMargins"]) && + !self::boolean((string)$xmlSheet->headerFooter["alignWithMargins"])) { + $docHeaderFooter->setAlignWithMargins(false); + } else { + $docHeaderFooter->setAlignWithMargins(true); + } + + $docHeaderFooter->setOddHeader((string) $xmlSheet->headerFooter->oddHeader); + $docHeaderFooter->setOddFooter((string) $xmlSheet->headerFooter->oddFooter); + $docHeaderFooter->setEvenHeader((string) $xmlSheet->headerFooter->evenHeader); + $docHeaderFooter->setEvenFooter((string) $xmlSheet->headerFooter->evenFooter); + $docHeaderFooter->setFirstHeader((string) $xmlSheet->headerFooter->firstHeader); + $docHeaderFooter->setFirstFooter((string) $xmlSheet->headerFooter->firstFooter); + } + + if ($xmlSheet && $xmlSheet->rowBreaks && $xmlSheet->rowBreaks->brk && !$this->readDataOnly) { + foreach ($xmlSheet->rowBreaks->brk as $brk) { + if ($brk["man"]) { + $docSheet->setBreak("A$brk[id]", PHPExcel_Worksheet::BREAK_ROW); + } + } + } + if ($xmlSheet && $xmlSheet->colBreaks && $xmlSheet->colBreaks->brk && !$this->readDataOnly) { + foreach ($xmlSheet->colBreaks->brk as $brk) { + if ($brk["man"]) { + $docSheet->setBreak(PHPExcel_Cell::stringFromColumnIndex((string) $brk["id"]) . "1", PHPExcel_Worksheet::BREAK_COLUMN); + } + } + } + + if ($xmlSheet && $xmlSheet->dataValidations && !$this->readDataOnly) { + foreach ($xmlSheet->dataValidations->dataValidation as $dataValidation) { + // Uppercase coordinate + $range = strtoupper($dataValidation["sqref"]); + $rangeSet = explode(' ', $range); + foreach ($rangeSet as $range) { + $stRange = $docSheet->shrinkRangeToFit($range); + + // Extract all cell references in $range + foreach (PHPExcel_Cell::extractAllCellReferencesInRange($stRange) as $reference) { + // Create validation + $docValidation = $docSheet->getCell($reference)->getDataValidation(); + $docValidation->setType((string) $dataValidation["type"]); + $docValidation->setErrorStyle((string) $dataValidation["errorStyle"]); + $docValidation->setOperator((string) $dataValidation["operator"]); + $docValidation->setAllowBlank($dataValidation["allowBlank"] != 0); + $docValidation->setShowDropDown($dataValidation["showDropDown"] == 0); + $docValidation->setShowInputMessage($dataValidation["showInputMessage"] != 0); + $docValidation->setShowErrorMessage($dataValidation["showErrorMessage"] != 0); + $docValidation->setErrorTitle((string) $dataValidation["errorTitle"]); + $docValidation->setError((string) $dataValidation["error"]); + $docValidation->setPromptTitle((string) $dataValidation["promptTitle"]); + $docValidation->setPrompt((string) $dataValidation["prompt"]); + $docValidation->setFormula1((string) $dataValidation->formula1); + $docValidation->setFormula2((string) $dataValidation->formula2); + } + } + } + } + + // Add hyperlinks + $hyperlinks = array(); + if (!$this->readDataOnly) { + // Locate hyperlink relations + if ($zip->locateName(dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")) { + $relsWorksheet = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships"); + foreach ($relsWorksheet->Relationship as $ele) { + if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink") { + $hyperlinks[(string)$ele["Id"]] = (string)$ele["Target"]; + } + } + } + + // Loop through hyperlinks + if ($xmlSheet && $xmlSheet->hyperlinks) { + foreach ($xmlSheet->hyperlinks->hyperlink as $hyperlink) { + // Link url + $linkRel = $hyperlink->attributes('http://schemas.openxmlformats.org/officeDocument/2006/relationships'); + + foreach (PHPExcel_Cell::extractAllCellReferencesInRange($hyperlink['ref']) as $cellReference) { + $cell = $docSheet->getCell($cellReference); + if (isset($linkRel['id'])) { + $hyperlinkUrl = $hyperlinks[ (string)$linkRel['id'] ]; + if (isset($hyperlink['location'])) { + $hyperlinkUrl .= '#' . (string) $hyperlink['location']; + } + $cell->getHyperlink()->setUrl($hyperlinkUrl); + } elseif (isset($hyperlink['location'])) { + $cell->getHyperlink()->setUrl('sheet://' . (string)$hyperlink['location']); + } + + // Tooltip + if (isset($hyperlink['tooltip'])) { + $cell->getHyperlink()->setTooltip((string)$hyperlink['tooltip']); + } + } + } + } + } + + // Add comments + $comments = array(); + $vmlComments = array(); + if (!$this->readDataOnly) { + // Locate comment relations + if ($zip->locateName(dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")) { + $relsWorksheet = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships"); + foreach ($relsWorksheet->Relationship as $ele) { + if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments") { + $comments[(string)$ele["Id"]] = (string)$ele["Target"]; + } + if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing") { + $vmlComments[(string)$ele["Id"]] = (string)$ele["Target"]; + } + } + } + + // Loop through comments + foreach ($comments as $relName => $relPath) { + // Load comments file + $relPath = PHPExcel_Shared_File::realpath(dirname("$dir/$fileWorksheet") . "/" . $relPath); + $commentsFile = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, $relPath)), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + + // Utility variables + $authors = array(); + + // Loop through authors + foreach ($commentsFile->authors->author as $author) { + $authors[] = (string)$author; + } + + // Loop through contents + foreach ($commentsFile->commentList->comment as $comment) { + if (!empty($comment['authorId'])) { + $docSheet->getComment((string)$comment['ref'])->setAuthor($authors[(string)$comment['authorId']]); + } + $docSheet->getComment((string)$comment['ref'])->setText($this->parseRichText($comment->text)); + } + } + + // Loop through VML comments + foreach ($vmlComments as $relName => $relPath) { + // Load VML comments file + $relPath = PHPExcel_Shared_File::realpath(dirname("$dir/$fileWorksheet") . "/" . $relPath); + $vmlCommentsFile = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, $relPath)), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + $vmlCommentsFile->registerXPathNamespace('v', 'urn:schemas-microsoft-com:vml'); + + $shapes = $vmlCommentsFile->xpath('//v:shape'); + foreach ($shapes as $shape) { + $shape->registerXPathNamespace('v', 'urn:schemas-microsoft-com:vml'); + + if (isset($shape['style'])) { + $style = (string)$shape['style']; + $fillColor = strtoupper(substr((string)$shape['fillcolor'], 1)); + $column = null; + $row = null; + + $clientData = $shape->xpath('.//x:ClientData'); + if (is_array($clientData) && !empty($clientData)) { + $clientData = $clientData[0]; + + if (isset($clientData['ObjectType']) && (string)$clientData['ObjectType'] == 'Note') { + $temp = $clientData->xpath('.//x:Row'); + if (is_array($temp)) { + $row = $temp[0]; + } + + $temp = $clientData->xpath('.//x:Column'); + if (is_array($temp)) { + $column = $temp[0]; + } + } + } + + if (($column !== null) && ($row !== null)) { + // Set comment properties + $comment = $docSheet->getCommentByColumnAndRow((string) $column, $row + 1); + $comment->getFillColor()->setRGB($fillColor); + + // Parse style + $styleArray = explode(';', str_replace(' ', '', $style)); + foreach ($styleArray as $stylePair) { + $stylePair = explode(':', $stylePair); + + if ($stylePair[0] == 'margin-left') { + $comment->setMarginLeft($stylePair[1]); + } + if ($stylePair[0] == 'margin-top') { + $comment->setMarginTop($stylePair[1]); + } + if ($stylePair[0] == 'width') { + $comment->setWidth($stylePair[1]); + } + if ($stylePair[0] == 'height') { + $comment->setHeight($stylePair[1]); + } + if ($stylePair[0] == 'visibility') { + $comment->setVisible($stylePair[1] == 'visible'); + } + } + } + } + } + } + + // Header/footer images + if ($xmlSheet && $xmlSheet->legacyDrawingHF && !$this->readDataOnly) { + if ($zip->locateName(dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")) { + $relsWorksheet = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships"); + $vmlRelationship = ''; + + foreach ($relsWorksheet->Relationship as $ele) { + if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing") { + $vmlRelationship = self::dirAdd("$dir/$fileWorksheet", $ele["Target"]); + } + } + + if ($vmlRelationship != '') { + // Fetch linked images + $relsVML = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, dirname($vmlRelationship) . '/_rels/' . basename($vmlRelationship) . '.rels')), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships"); + $drawings = array(); + foreach ($relsVML->Relationship as $ele) { + if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image") { + $drawings[(string) $ele["Id"]] = self::dirAdd($vmlRelationship, $ele["Target"]); + } + } + + // Fetch VML document + $vmlDrawing = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, $vmlRelationship)), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + $vmlDrawing->registerXPathNamespace('v', 'urn:schemas-microsoft-com:vml'); + + $hfImages = array(); + + $shapes = $vmlDrawing->xpath('//v:shape'); + foreach ($shapes as $idx => $shape) { + $shape->registerXPathNamespace('v', 'urn:schemas-microsoft-com:vml'); + $imageData = $shape->xpath('//v:imagedata'); + $imageData = $imageData[$idx]; + + $imageData = $imageData->attributes('urn:schemas-microsoft-com:office:office'); + $style = self::toCSSArray((string)$shape['style']); + + $hfImages[ (string)$shape['id'] ] = new PHPExcel_Worksheet_HeaderFooterDrawing(); + if (isset($imageData['title'])) { + $hfImages[ (string)$shape['id'] ]->setName((string)$imageData['title']); + } + + $hfImages[ (string)$shape['id'] ]->setPath("zip://".PHPExcel_Shared_File::realpath($pFilename)."#" . $drawings[(string)$imageData['relid']], false); + $hfImages[ (string)$shape['id'] ]->setResizeProportional(false); + $hfImages[ (string)$shape['id'] ]->setWidth($style['width']); + $hfImages[ (string)$shape['id'] ]->setHeight($style['height']); + if (isset($style['margin-left'])) { + $hfImages[ (string)$shape['id'] ]->setOffsetX($style['margin-left']); + } + $hfImages[ (string)$shape['id'] ]->setOffsetY($style['margin-top']); + $hfImages[ (string)$shape['id'] ]->setResizeProportional(true); + } + + $docSheet->getHeaderFooter()->setImages($hfImages); + } + } + } + + } + + // TODO: Autoshapes from twoCellAnchors! + if ($zip->locateName(dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")) { + $relsWorksheet = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships"); + $drawings = array(); + foreach ($relsWorksheet->Relationship as $ele) { + if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/drawing") { + $drawings[(string) $ele["Id"]] = self::dirAdd("$dir/$fileWorksheet", $ele["Target"]); + } + } + if ($xmlSheet->drawing && !$this->readDataOnly) { + foreach ($xmlSheet->drawing as $drawing) { + $fileDrawing = $drawings[(string) self::getArrayItem($drawing->attributes("http://schemas.openxmlformats.org/officeDocument/2006/relationships"), "id")]; + $relsDrawing = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, dirname($fileDrawing) . "/_rels/" . basename($fileDrawing) . ".rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships"); + $images = array(); + + if ($relsDrawing && $relsDrawing->Relationship) { + foreach ($relsDrawing->Relationship as $ele) { + if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image") { + $images[(string) $ele["Id"]] = self::dirAdd($fileDrawing, $ele["Target"]); + } elseif ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart") { + if ($this->includeCharts) { + $charts[self::dirAdd($fileDrawing, $ele["Target"])] = array( + 'id' => (string) $ele["Id"], + 'sheet' => $docSheet->getTitle() + ); + } + } + } + } + $xmlDrawing = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, $fileDrawing)), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions())->children("http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing"); + + if ($xmlDrawing->oneCellAnchor) { + foreach ($xmlDrawing->oneCellAnchor as $oneCellAnchor) { + if ($oneCellAnchor->pic->blipFill) { + $blip = $oneCellAnchor->pic->blipFill->children("http://schemas.openxmlformats.org/drawingml/2006/main")->blip; + $xfrm = $oneCellAnchor->pic->spPr->children("http://schemas.openxmlformats.org/drawingml/2006/main")->xfrm; + $outerShdw = $oneCellAnchor->pic->spPr->children("http://schemas.openxmlformats.org/drawingml/2006/main")->effectLst->outerShdw; + $objDrawing = new PHPExcel_Worksheet_Drawing; + $objDrawing->setName((string) self::getArrayItem($oneCellAnchor->pic->nvPicPr->cNvPr->attributes(), "name")); + $objDrawing->setDescription((string) self::getArrayItem($oneCellAnchor->pic->nvPicPr->cNvPr->attributes(), "descr")); + $objDrawing->setPath("zip://".PHPExcel_Shared_File::realpath($pFilename)."#" . $images[(string) self::getArrayItem($blip->attributes("http://schemas.openxmlformats.org/officeDocument/2006/relationships"), "embed")], false); + $objDrawing->setCoordinates(PHPExcel_Cell::stringFromColumnIndex((string) $oneCellAnchor->from->col) . ($oneCellAnchor->from->row + 1)); + $objDrawing->setOffsetX(PHPExcel_Shared_Drawing::EMUToPixels($oneCellAnchor->from->colOff)); + $objDrawing->setOffsetY(PHPExcel_Shared_Drawing::EMUToPixels($oneCellAnchor->from->rowOff)); + $objDrawing->setResizeProportional(false); + $objDrawing->setWidth(PHPExcel_Shared_Drawing::EMUToPixels(self::getArrayItem($oneCellAnchor->ext->attributes(), "cx"))); + $objDrawing->setHeight(PHPExcel_Shared_Drawing::EMUToPixels(self::getArrayItem($oneCellAnchor->ext->attributes(), "cy"))); + if ($xfrm) { + $objDrawing->setRotation(PHPExcel_Shared_Drawing::angleToDegrees(self::getArrayItem($xfrm->attributes(), "rot"))); + } + if ($outerShdw) { + $shadow = $objDrawing->getShadow(); + $shadow->setVisible(true); + $shadow->setBlurRadius(PHPExcel_Shared_Drawing::EMUTopixels(self::getArrayItem($outerShdw->attributes(), "blurRad"))); + $shadow->setDistance(PHPExcel_Shared_Drawing::EMUTopixels(self::getArrayItem($outerShdw->attributes(), "dist"))); + $shadow->setDirection(PHPExcel_Shared_Drawing::angleToDegrees(self::getArrayItem($outerShdw->attributes(), "dir"))); + $shadow->setAlignment((string) self::getArrayItem($outerShdw->attributes(), "algn")); + $shadow->getColor()->setRGB(self::getArrayItem($outerShdw->srgbClr->attributes(), "val")); + $shadow->setAlpha(self::getArrayItem($outerShdw->srgbClr->alpha->attributes(), "val") / 1000); + } + $objDrawing->setWorksheet($docSheet); + } else { + // ? Can charts be positioned with a oneCellAnchor ? + $coordinates = PHPExcel_Cell::stringFromColumnIndex((string) $oneCellAnchor->from->col) . ($oneCellAnchor->from->row + 1); + $offsetX = PHPExcel_Shared_Drawing::EMUToPixels($oneCellAnchor->from->colOff); + $offsetY = PHPExcel_Shared_Drawing::EMUToPixels($oneCellAnchor->from->rowOff); + $width = PHPExcel_Shared_Drawing::EMUToPixels(self::getArrayItem($oneCellAnchor->ext->attributes(), "cx")); + $height = PHPExcel_Shared_Drawing::EMUToPixels(self::getArrayItem($oneCellAnchor->ext->attributes(), "cy")); + } + } + } + if ($xmlDrawing->twoCellAnchor) { + foreach ($xmlDrawing->twoCellAnchor as $twoCellAnchor) { + if ($twoCellAnchor->pic->blipFill) { + $blip = $twoCellAnchor->pic->blipFill->children("http://schemas.openxmlformats.org/drawingml/2006/main")->blip; + $xfrm = $twoCellAnchor->pic->spPr->children("http://schemas.openxmlformats.org/drawingml/2006/main")->xfrm; + $outerShdw = $twoCellAnchor->pic->spPr->children("http://schemas.openxmlformats.org/drawingml/2006/main")->effectLst->outerShdw; + $objDrawing = new PHPExcel_Worksheet_Drawing; + $objDrawing->setName((string) self::getArrayItem($twoCellAnchor->pic->nvPicPr->cNvPr->attributes(), "name")); + $objDrawing->setDescription((string) self::getArrayItem($twoCellAnchor->pic->nvPicPr->cNvPr->attributes(), "descr")); + $objDrawing->setPath("zip://".PHPExcel_Shared_File::realpath($pFilename)."#" . $images[(string) self::getArrayItem($blip->attributes("http://schemas.openxmlformats.org/officeDocument/2006/relationships"), "embed")], false); + $objDrawing->setCoordinates(PHPExcel_Cell::stringFromColumnIndex((string) $twoCellAnchor->from->col) . ($twoCellAnchor->from->row + 1)); + $objDrawing->setOffsetX(PHPExcel_Shared_Drawing::EMUToPixels($twoCellAnchor->from->colOff)); + $objDrawing->setOffsetY(PHPExcel_Shared_Drawing::EMUToPixels($twoCellAnchor->from->rowOff)); + $objDrawing->setResizeProportional(false); + + if ($xfrm) { + $objDrawing->setWidth(PHPExcel_Shared_Drawing::EMUToPixels(self::getArrayItem($xfrm->ext->attributes(), "cx"))); + $objDrawing->setHeight(PHPExcel_Shared_Drawing::EMUToPixels(self::getArrayItem($xfrm->ext->attributes(), "cy"))); + $objDrawing->setRotation(PHPExcel_Shared_Drawing::angleToDegrees(self::getArrayItem($xfrm->attributes(), "rot"))); + } + if ($outerShdw) { + $shadow = $objDrawing->getShadow(); + $shadow->setVisible(true); + $shadow->setBlurRadius(PHPExcel_Shared_Drawing::EMUTopixels(self::getArrayItem($outerShdw->attributes(), "blurRad"))); + $shadow->setDistance(PHPExcel_Shared_Drawing::EMUTopixels(self::getArrayItem($outerShdw->attributes(), "dist"))); + $shadow->setDirection(PHPExcel_Shared_Drawing::angleToDegrees(self::getArrayItem($outerShdw->attributes(), "dir"))); + $shadow->setAlignment((string) self::getArrayItem($outerShdw->attributes(), "algn")); + $shadow->getColor()->setRGB(self::getArrayItem($outerShdw->srgbClr->attributes(), "val")); + $shadow->setAlpha(self::getArrayItem($outerShdw->srgbClr->alpha->attributes(), "val") / 1000); + } + $objDrawing->setWorksheet($docSheet); + } elseif (($this->includeCharts) && ($twoCellAnchor->graphicFrame)) { + $fromCoordinate = PHPExcel_Cell::stringFromColumnIndex((string) $twoCellAnchor->from->col) . ($twoCellAnchor->from->row + 1); + $fromOffsetX = PHPExcel_Shared_Drawing::EMUToPixels($twoCellAnchor->from->colOff); + $fromOffsetY = PHPExcel_Shared_Drawing::EMUToPixels($twoCellAnchor->from->rowOff); + $toCoordinate = PHPExcel_Cell::stringFromColumnIndex((string) $twoCellAnchor->to->col) . ($twoCellAnchor->to->row + 1); + $toOffsetX = PHPExcel_Shared_Drawing::EMUToPixels($twoCellAnchor->to->colOff); + $toOffsetY = PHPExcel_Shared_Drawing::EMUToPixels($twoCellAnchor->to->rowOff); + $graphic = $twoCellAnchor->graphicFrame->children("http://schemas.openxmlformats.org/drawingml/2006/main")->graphic; + $chartRef = $graphic->graphicData->children("http://schemas.openxmlformats.org/drawingml/2006/chart")->chart; + $thisChart = (string) $chartRef->attributes("http://schemas.openxmlformats.org/officeDocument/2006/relationships"); + + $chartDetails[$docSheet->getTitle().'!'.$thisChart] = array( + 'fromCoordinate' => $fromCoordinate, + 'fromOffsetX' => $fromOffsetX, + 'fromOffsetY' => $fromOffsetY, + 'toCoordinate' => $toCoordinate, + 'toOffsetX' => $toOffsetX, + 'toOffsetY' => $toOffsetY, + 'worksheetTitle' => $docSheet->getTitle() + ); + } + } + } + } + } + } + + // Loop through definedNames + if ($xmlWorkbook->definedNames) { + foreach ($xmlWorkbook->definedNames->definedName as $definedName) { + // Extract range + $extractedRange = (string)$definedName; + $extractedRange = preg_replace('/\'(\w+)\'\!/', '', $extractedRange); + if (($spos = strpos($extractedRange, '!')) !== false) { + $extractedRange = substr($extractedRange, 0, $spos).str_replace('$', '', substr($extractedRange, $spos)); + } else { + $extractedRange = str_replace('$', '', $extractedRange); + } + + // Valid range? + if (stripos((string)$definedName, '#REF!') !== false || $extractedRange == '') { + continue; + } + + // Some definedNames are only applicable if we are on the same sheet... + if ((string)$definedName['localSheetId'] != '' && (string)$definedName['localSheetId'] == $sheetId) { + // Switch on type + switch ((string)$definedName['name']) { + case '_xlnm._FilterDatabase': + if ((string)$definedName['hidden'] !== '1') { + $extractedRange = explode(',', $extractedRange); + foreach ($extractedRange as $range) { + $autoFilterRange = $range; + if (strpos($autoFilterRange, ':') !== false) { + $docSheet->getAutoFilter()->setRange($autoFilterRange); + } + } + } + break; + case '_xlnm.Print_Titles': + // Split $extractedRange + $extractedRange = explode(',', $extractedRange); + + // Set print titles + foreach ($extractedRange as $range) { + $matches = array(); + $range = str_replace('$', '', $range); + + // check for repeating columns, e g. 'A:A' or 'A:D' + if (preg_match('/!?([A-Z]+)\:([A-Z]+)$/', $range, $matches)) { + $docSheet->getPageSetup()->setColumnsToRepeatAtLeft(array($matches[1], $matches[2])); + } elseif (preg_match('/!?(\d+)\:(\d+)$/', $range, $matches)) { + // check for repeating rows, e.g. '1:1' or '1:5' + $docSheet->getPageSetup()->setRowsToRepeatAtTop(array($matches[1], $matches[2])); + } + } + break; + case '_xlnm.Print_Area': + $rangeSets = explode(',', $extractedRange); // FIXME: what if sheetname contains comma? + $newRangeSets = array(); + foreach ($rangeSets as $rangeSet) { + $range = explode('!', $rangeSet); // FIXME: what if sheetname contains exclamation mark? + $rangeSet = isset($range[1]) ? $range[1] : $range[0]; + if (strpos($rangeSet, ':') === false) { + $rangeSet = $rangeSet . ':' . $rangeSet; + } + $newRangeSets[] = str_replace('$', '', $rangeSet); + } + $docSheet->getPageSetup()->setPrintArea(implode(',', $newRangeSets)); + break; + + default: + break; + } + } + } + } + + // Next sheet id + ++$sheetId; + } + + // Loop through definedNames + if ($xmlWorkbook->definedNames) { + foreach ($xmlWorkbook->definedNames->definedName as $definedName) { + // Extract range + $extractedRange = (string)$definedName; + $extractedRange = preg_replace('/\'(\w+)\'\!/', '', $extractedRange); + if (($spos = strpos($extractedRange, '!')) !== false) { + $extractedRange = substr($extractedRange, 0, $spos).str_replace('$', '', substr($extractedRange, $spos)); + } else { + $extractedRange = str_replace('$', '', $extractedRange); + } + + // Valid range? + if (stripos((string)$definedName, '#REF!') !== false || $extractedRange == '') { + continue; + } + + // Some definedNames are only applicable if we are on the same sheet... + if ((string)$definedName['localSheetId'] != '') { + // Local defined name + // Switch on type + switch ((string)$definedName['name']) { + case '_xlnm._FilterDatabase': + case '_xlnm.Print_Titles': + case '_xlnm.Print_Area': + break; + default: + if ($mapSheetId[(integer) $definedName['localSheetId']] !== null) { + $range = explode('!', (string)$definedName); + if (count($range) == 2) { + $range[0] = str_replace("''", "'", $range[0]); + $range[0] = str_replace("'", "", $range[0]); + if ($worksheet = $docSheet->getParent()->getSheetByName($range[0])) { + $extractedRange = str_replace('$', '', $range[1]); + $scope = $docSheet->getParent()->getSheet($mapSheetId[(integer) $definedName['localSheetId']]); + $excel->addNamedRange(new PHPExcel_NamedRange((string)$definedName['name'], $worksheet, $extractedRange, true, $scope)); + } + } + } + break; + } + } elseif (!isset($definedName['localSheetId'])) { + // "Global" definedNames + $locatedSheet = null; + $extractedSheetName = ''; + if (strpos((string)$definedName, '!') !== false) { + // Extract sheet name + $extractedSheetName = PHPExcel_Worksheet::extractSheetTitle((string)$definedName, true); + $extractedSheetName = $extractedSheetName[0]; + + // Locate sheet + $locatedSheet = $excel->getSheetByName($extractedSheetName); + + // Modify range + $range = explode('!', $extractedRange); + $extractedRange = isset($range[1]) ? $range[1] : $range[0]; + } + + if ($locatedSheet !== null) { + $excel->addNamedRange(new PHPExcel_NamedRange((string)$definedName['name'], $locatedSheet, $extractedRange, false)); + } + } + } + } + } + + if ((!$this->readDataOnly) || (!empty($this->loadSheetsOnly))) { + // active sheet index + $activeTab = intval($xmlWorkbook->bookViews->workbookView["activeTab"]); // refers to old sheet index + + // keep active sheet index if sheet is still loaded, else first sheet is set as the active + if (isset($mapSheetId[$activeTab]) && $mapSheetId[$activeTab] !== null) { + $excel->setActiveSheetIndex($mapSheetId[$activeTab]); + } else { + if ($excel->getSheetCount() == 0) { + $excel->createSheet(); + } + $excel->setActiveSheetIndex(0); + } + } + break; + } + } + + if (!$this->readDataOnly) { + $contentTypes = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "[Content_Types].xml")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + foreach ($contentTypes->Override as $contentType) { + switch ($contentType["ContentType"]) { + case "application/vnd.openxmlformats-officedocument.drawingml.chart+xml": + if ($this->includeCharts) { + $chartEntryRef = ltrim($contentType['PartName'], '/'); + $chartElements = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, $chartEntryRef)), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + $objChart = PHPExcel_Reader_Excel2007_Chart::readChart($chartElements, basename($chartEntryRef, '.xml')); + +// echo 'Chart ', $chartEntryRef, '
'; +// var_dump($charts[$chartEntryRef]); +// + if (isset($charts[$chartEntryRef])) { + $chartPositionRef = $charts[$chartEntryRef]['sheet'].'!'.$charts[$chartEntryRef]['id']; +// echo 'Position Ref ', $chartPositionRef, '
'; + if (isset($chartDetails[$chartPositionRef])) { +// var_dump($chartDetails[$chartPositionRef]); + + $excel->getSheetByName($charts[$chartEntryRef]['sheet'])->addChart($objChart); + $objChart->setWorksheet($excel->getSheetByName($charts[$chartEntryRef]['sheet'])); + $objChart->setTopLeftPosition($chartDetails[$chartPositionRef]['fromCoordinate'], $chartDetails[$chartPositionRef]['fromOffsetX'], $chartDetails[$chartPositionRef]['fromOffsetY']); + $objChart->setBottomRightPosition($chartDetails[$chartPositionRef]['toCoordinate'], $chartDetails[$chartPositionRef]['toOffsetX'], $chartDetails[$chartPositionRef]['toOffsetY']); + } + } + } + } + } + } + + $zip->close(); + + return $excel; + } + + private static function readColor($color, $background = false) + { + if (isset($color["rgb"])) { + return (string)$color["rgb"]; + } elseif (isset($color["indexed"])) { + return PHPExcel_Style_Color::indexedColor($color["indexed"]-7, $background)->getARGB(); + } elseif (isset($color["theme"])) { + if (self::$theme !== null) { + $returnColour = self::$theme->getColourByIndex((int)$color["theme"]); + if (isset($color["tint"])) { + $tintAdjust = (float) $color["tint"]; + $returnColour = PHPExcel_Style_Color::changeBrightness($returnColour, $tintAdjust); + } + return 'FF'.$returnColour; + } + } + + if ($background) { + return 'FFFFFFFF'; + } + return 'FF000000'; + } + + private static function readStyle($docStyle, $style) + { + // format code +// if (isset($style->numFmt)) { +// if (isset($style->numFmt['formatCode'])) { +// $docStyle->getNumberFormat()->setFormatCode((string) $style->numFmt['formatCode']); +// } else { + $docStyle->getNumberFormat()->setFormatCode($style->numFmt); +// } +// } + + // font + if (isset($style->font)) { + $docStyle->getFont()->setName((string) $style->font->name["val"]); + $docStyle->getFont()->setSize((string) $style->font->sz["val"]); + if (isset($style->font->b)) { + $docStyle->getFont()->setBold(!isset($style->font->b["val"]) || self::boolean((string) $style->font->b["val"])); + } + if (isset($style->font->i)) { + $docStyle->getFont()->setItalic(!isset($style->font->i["val"]) || self::boolean((string) $style->font->i["val"])); + } + if (isset($style->font->strike)) { + $docStyle->getFont()->setStrikethrough(!isset($style->font->strike["val"]) || self::boolean((string) $style->font->strike["val"])); + } + $docStyle->getFont()->getColor()->setARGB(self::readColor($style->font->color)); + + if (isset($style->font->u) && !isset($style->font->u["val"])) { + $docStyle->getFont()->setUnderline(PHPExcel_Style_Font::UNDERLINE_SINGLE); + } elseif (isset($style->font->u) && isset($style->font->u["val"])) { + $docStyle->getFont()->setUnderline((string)$style->font->u["val"]); + } + + if (isset($style->font->vertAlign) && isset($style->font->vertAlign["val"])) { + $vertAlign = strtolower((string)$style->font->vertAlign["val"]); + if ($vertAlign == 'superscript') { + $docStyle->getFont()->setSuperScript(true); + } + if ($vertAlign == 'subscript') { + $docStyle->getFont()->setSubScript(true); + } + } + } + + // fill + if (isset($style->fill)) { + if ($style->fill->gradientFill) { + $gradientFill = $style->fill->gradientFill[0]; + if (!empty($gradientFill["type"])) { + $docStyle->getFill()->setFillType((string) $gradientFill["type"]); + } + $docStyle->getFill()->setRotation(floatval($gradientFill["degree"])); + $gradientFill->registerXPathNamespace("sml", "http://schemas.openxmlformats.org/spreadsheetml/2006/main"); + $docStyle->getFill()->getStartColor()->setARGB(self::readColor(self::getArrayItem($gradientFill->xpath("sml:stop[@position=0]"))->color)); + $docStyle->getFill()->getEndColor()->setARGB(self::readColor(self::getArrayItem($gradientFill->xpath("sml:stop[@position=1]"))->color)); + } elseif ($style->fill->patternFill) { + $patternType = (string)$style->fill->patternFill["patternType"] != '' ? (string)$style->fill->patternFill["patternType"] : 'solid'; + $docStyle->getFill()->setFillType($patternType); + if ($style->fill->patternFill->fgColor) { + $docStyle->getFill()->getStartColor()->setARGB(self::readColor($style->fill->patternFill->fgColor, true)); + } else { + $docStyle->getFill()->getStartColor()->setARGB('FF000000'); + } + if ($style->fill->patternFill->bgColor) { + $docStyle->getFill()->getEndColor()->setARGB(self::readColor($style->fill->patternFill->bgColor, true)); + } + } + } + + // border + if (isset($style->border)) { + $diagonalUp = self::boolean((string) $style->border["diagonalUp"]); + $diagonalDown = self::boolean((string) $style->border["diagonalDown"]); + if (!$diagonalUp && !$diagonalDown) { + $docStyle->getBorders()->setDiagonalDirection(PHPExcel_Style_Borders::DIAGONAL_NONE); + } elseif ($diagonalUp && !$diagonalDown) { + $docStyle->getBorders()->setDiagonalDirection(PHPExcel_Style_Borders::DIAGONAL_UP); + } elseif (!$diagonalUp && $diagonalDown) { + $docStyle->getBorders()->setDiagonalDirection(PHPExcel_Style_Borders::DIAGONAL_DOWN); + } else { + $docStyle->getBorders()->setDiagonalDirection(PHPExcel_Style_Borders::DIAGONAL_BOTH); + } + self::readBorder($docStyle->getBorders()->getLeft(), $style->border->left); + self::readBorder($docStyle->getBorders()->getRight(), $style->border->right); + self::readBorder($docStyle->getBorders()->getTop(), $style->border->top); + self::readBorder($docStyle->getBorders()->getBottom(), $style->border->bottom); + self::readBorder($docStyle->getBorders()->getDiagonal(), $style->border->diagonal); + } + + // alignment + if (isset($style->alignment)) { + $docStyle->getAlignment()->setHorizontal((string) $style->alignment["horizontal"]); + $docStyle->getAlignment()->setVertical((string) $style->alignment["vertical"]); + + $textRotation = 0; + if ((int)$style->alignment["textRotation"] <= 90) { + $textRotation = (int)$style->alignment["textRotation"]; + } elseif ((int)$style->alignment["textRotation"] > 90) { + $textRotation = 90 - (int)$style->alignment["textRotation"]; + } + + $docStyle->getAlignment()->setTextRotation(intval($textRotation)); + $docStyle->getAlignment()->setWrapText(self::boolean((string) $style->alignment["wrapText"])); + $docStyle->getAlignment()->setShrinkToFit(self::boolean((string) $style->alignment["shrinkToFit"])); + $docStyle->getAlignment()->setIndent(intval((string)$style->alignment["indent"]) > 0 ? intval((string)$style->alignment["indent"]) : 0); + $docStyle->getAlignment()->setReadorder(intval((string)$style->alignment["readingOrder"]) > 0 ? intval((string)$style->alignment["readingOrder"]) : 0); + } + + // protection + if (isset($style->protection)) { + if (isset($style->protection['locked'])) { + if (self::boolean((string) $style->protection['locked'])) { + $docStyle->getProtection()->setLocked(PHPExcel_Style_Protection::PROTECTION_PROTECTED); + } else { + $docStyle->getProtection()->setLocked(PHPExcel_Style_Protection::PROTECTION_UNPROTECTED); + } + } + + if (isset($style->protection['hidden'])) { + if (self::boolean((string) $style->protection['hidden'])) { + $docStyle->getProtection()->setHidden(PHPExcel_Style_Protection::PROTECTION_PROTECTED); + } else { + $docStyle->getProtection()->setHidden(PHPExcel_Style_Protection::PROTECTION_UNPROTECTED); + } + } + } + + // top-level style settings + if (isset($style->quotePrefix)) { + $docStyle->setQuotePrefix($style->quotePrefix); + } + } + + private static function readBorder($docBorder, $eleBorder) + { + if (isset($eleBorder["style"])) { + $docBorder->setBorderStyle((string) $eleBorder["style"]); + } + if (isset($eleBorder->color)) { + $docBorder->getColor()->setARGB(self::readColor($eleBorder->color)); + } + } + + private function parseRichText($is = null) + { + $value = new PHPExcel_RichText(); + + if (isset($is->t)) { + $value->createText(PHPExcel_Shared_String::ControlCharacterOOXML2PHP((string) $is->t)); + } else { + if (is_object($is->r)) { + foreach ($is->r as $run) { + if (!isset($run->rPr)) { + $objText = $value->createText(PHPExcel_Shared_String::ControlCharacterOOXML2PHP((string) $run->t)); + + } else { + $objText = $value->createTextRun(PHPExcel_Shared_String::ControlCharacterOOXML2PHP((string) $run->t)); + + if (isset($run->rPr->rFont["val"])) { + $objText->getFont()->setName((string) $run->rPr->rFont["val"]); + } + if (isset($run->rPr->sz["val"])) { + $objText->getFont()->setSize((string) $run->rPr->sz["val"]); + } + if (isset($run->rPr->color)) { + $objText->getFont()->setColor(new PHPExcel_Style_Color(self::readColor($run->rPr->color))); + } + if ((isset($run->rPr->b["val"]) && self::boolean((string) $run->rPr->b["val"])) || + (isset($run->rPr->b) && !isset($run->rPr->b["val"]))) { + $objText->getFont()->setBold(true); + } + if ((isset($run->rPr->i["val"]) && self::boolean((string) $run->rPr->i["val"])) || + (isset($run->rPr->i) && !isset($run->rPr->i["val"]))) { + $objText->getFont()->setItalic(true); + } + if (isset($run->rPr->vertAlign) && isset($run->rPr->vertAlign["val"])) { + $vertAlign = strtolower((string)$run->rPr->vertAlign["val"]); + if ($vertAlign == 'superscript') { + $objText->getFont()->setSuperScript(true); + } + if ($vertAlign == 'subscript') { + $objText->getFont()->setSubScript(true); + } + } + if (isset($run->rPr->u) && !isset($run->rPr->u["val"])) { + $objText->getFont()->setUnderline(PHPExcel_Style_Font::UNDERLINE_SINGLE); + } elseif (isset($run->rPr->u) && isset($run->rPr->u["val"])) { + $objText->getFont()->setUnderline((string)$run->rPr->u["val"]); + } + if ((isset($run->rPr->strike["val"]) && self::boolean((string) $run->rPr->strike["val"])) || + (isset($run->rPr->strike) && !isset($run->rPr->strike["val"]))) { + $objText->getFont()->setStrikethrough(true); + } + } + } + } + } + + return $value; + } + + private function readRibbon($excel, $customUITarget, $zip) + { + $baseDir = dirname($customUITarget); + $nameCustomUI = basename($customUITarget); + // get the xml file (ribbon) + $localRibbon = $this->getFromZipArchive($zip, $customUITarget); + $customUIImagesNames = array(); + $customUIImagesBinaries = array(); + // something like customUI/_rels/customUI.xml.rels + $pathRels = $baseDir . '/_rels/' . $nameCustomUI . '.rels'; + $dataRels = $this->getFromZipArchive($zip, $pathRels); + if ($dataRels) { + // exists and not empty if the ribbon have some pictures (other than internal MSO) + $UIRels = simplexml_load_string($this->securityScan($dataRels), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + if ($UIRels) { + // we need to save id and target to avoid parsing customUI.xml and "guess" if it's a pseudo callback who load the image + foreach ($UIRels->Relationship as $ele) { + if ($ele["Type"] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image') { + // an image ? + $customUIImagesNames[(string) $ele['Id']] = (string)$ele['Target']; + $customUIImagesBinaries[(string)$ele['Target']] = $this->getFromZipArchive($zip, $baseDir . '/' . (string) $ele['Target']); + } + } + } + } + if ($localRibbon) { + $excel->setRibbonXMLData($customUITarget, $localRibbon); + if (count($customUIImagesNames) > 0 && count($customUIImagesBinaries) > 0) { + $excel->setRibbonBinObjects($customUIImagesNames, $customUIImagesBinaries); + } else { + $excel->setRibbonBinObjects(null); + } + } else { + $excel->setRibbonXMLData(null); + $excel->setRibbonBinObjects(null); + } + } + + private static function getArrayItem($array, $key = 0) + { + return (isset($array[$key]) ? $array[$key] : null); + } + + private static function dirAdd($base, $add) + { + return preg_replace('~[^/]+/\.\./~', '', dirname($base) . "/$add"); + } + + private static function toCSSArray($style) + { + $style = str_replace(array("\r","\n"), "", $style); + + $temp = explode(';', $style); + $style = array(); + foreach ($temp as $item) { + $item = explode(':', $item); + + if (strpos($item[1], 'px') !== false) { + $item[1] = str_replace('px', '', $item[1]); + } + if (strpos($item[1], 'pt') !== false) { + $item[1] = str_replace('pt', '', $item[1]); + $item[1] = PHPExcel_Shared_Font::fontSizeToPixels($item[1]); + } + if (strpos($item[1], 'in') !== false) { + $item[1] = str_replace('in', '', $item[1]); + $item[1] = PHPExcel_Shared_Font::inchSizeToPixels($item[1]); + } + if (strpos($item[1], 'cm') !== false) { + $item[1] = str_replace('cm', '', $item[1]); + $item[1] = PHPExcel_Shared_Font::centimeterSizeToPixels($item[1]); + } + + $style[$item[0]] = $item[1]; + } + + return $style; + } + + private static function boolean($value = null) + { + if (is_object($value)) { + $value = (string) $value; + } + if (is_numeric($value)) { + return (bool) $value; + } + return ($value === 'true' || $value === 'TRUE'); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007/Chart.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007/Chart.php new file mode 100644 index 0000000..590bf2d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007/Chart.php @@ -0,0 +1,520 @@ +attributes(); + if (isset($attributes[$name])) { + if ($format == 'string') { + return (string) $attributes[$name]; + } elseif ($format == 'integer') { + return (integer) $attributes[$name]; + } elseif ($format == 'boolean') { + return (boolean) ($attributes[$name] === '0' || $attributes[$name] !== 'true') ? false : true; + } else { + return (float) $attributes[$name]; + } + } + return null; + } + + + private static function readColor($color, $background = false) + { + if (isset($color["rgb"])) { + return (string)$color["rgb"]; + } elseif (isset($color["indexed"])) { + return PHPExcel_Style_Color::indexedColor($color["indexed"]-7, $background)->getARGB(); + } + } + + public static function readChart($chartElements, $chartName) + { + $namespacesChartMeta = $chartElements->getNamespaces(true); + $chartElementsC = $chartElements->children($namespacesChartMeta['c']); + + $XaxisLabel = $YaxisLabel = $legend = $title = null; + $dispBlanksAs = $plotVisOnly = null; + + foreach ($chartElementsC as $chartElementKey => $chartElement) { + switch ($chartElementKey) { + case "chart": + foreach ($chartElement as $chartDetailsKey => $chartDetails) { + $chartDetailsC = $chartDetails->children($namespacesChartMeta['c']); + switch ($chartDetailsKey) { + case "plotArea": + $plotAreaLayout = $XaxisLable = $YaxisLable = null; + $plotSeries = $plotAttributes = array(); + foreach ($chartDetails as $chartDetailKey => $chartDetail) { + switch ($chartDetailKey) { + case "layout": + $plotAreaLayout = self::chartLayoutDetails($chartDetail, $namespacesChartMeta, 'plotArea'); + break; + case "catAx": + if (isset($chartDetail->title)) { + $XaxisLabel = self::chartTitle($chartDetail->title->children($namespacesChartMeta['c']), $namespacesChartMeta, 'cat'); + } + break; + case "dateAx": + if (isset($chartDetail->title)) { + $XaxisLabel = self::chartTitle($chartDetail->title->children($namespacesChartMeta['c']), $namespacesChartMeta, 'cat'); + } + break; + case "valAx": + if (isset($chartDetail->title)) { + $YaxisLabel = self::chartTitle($chartDetail->title->children($namespacesChartMeta['c']), $namespacesChartMeta, 'cat'); + } + break; + case "barChart": + case "bar3DChart": + $barDirection = self::getAttribute($chartDetail->barDir, 'val', 'string'); + $plotSer = self::chartDataSeries($chartDetail, $namespacesChartMeta, $chartDetailKey); + $plotSer->setPlotDirection($barDirection); + $plotSeries[] = $plotSer; + $plotAttributes = self::readChartAttributes($chartDetail); + break; + case "lineChart": + case "line3DChart": + $plotSeries[] = self::chartDataSeries($chartDetail, $namespacesChartMeta, $chartDetailKey); + $plotAttributes = self::readChartAttributes($chartDetail); + break; + case "areaChart": + case "area3DChart": + $plotSeries[] = self::chartDataSeries($chartDetail, $namespacesChartMeta, $chartDetailKey); + $plotAttributes = self::readChartAttributes($chartDetail); + break; + case "doughnutChart": + case "pieChart": + case "pie3DChart": + $explosion = isset($chartDetail->ser->explosion); + $plotSer = self::chartDataSeries($chartDetail, $namespacesChartMeta, $chartDetailKey); + $plotSer->setPlotStyle($explosion); + $plotSeries[] = $plotSer; + $plotAttributes = self::readChartAttributes($chartDetail); + break; + case "scatterChart": + $scatterStyle = self::getAttribute($chartDetail->scatterStyle, 'val', 'string'); + $plotSer = self::chartDataSeries($chartDetail, $namespacesChartMeta, $chartDetailKey); + $plotSer->setPlotStyle($scatterStyle); + $plotSeries[] = $plotSer; + $plotAttributes = self::readChartAttributes($chartDetail); + break; + case "bubbleChart": + $bubbleScale = self::getAttribute($chartDetail->bubbleScale, 'val', 'integer'); + $plotSer = self::chartDataSeries($chartDetail, $namespacesChartMeta, $chartDetailKey); + $plotSer->setPlotStyle($bubbleScale); + $plotSeries[] = $plotSer; + $plotAttributes = self::readChartAttributes($chartDetail); + break; + case "radarChart": + $radarStyle = self::getAttribute($chartDetail->radarStyle, 'val', 'string'); + $plotSer = self::chartDataSeries($chartDetail, $namespacesChartMeta, $chartDetailKey); + $plotSer->setPlotStyle($radarStyle); + $plotSeries[] = $plotSer; + $plotAttributes = self::readChartAttributes($chartDetail); + break; + case "surfaceChart": + case "surface3DChart": + $wireFrame = self::getAttribute($chartDetail->wireframe, 'val', 'boolean'); + $plotSer = self::chartDataSeries($chartDetail, $namespacesChartMeta, $chartDetailKey); + $plotSer->setPlotStyle($wireFrame); + $plotSeries[] = $plotSer; + $plotAttributes = self::readChartAttributes($chartDetail); + break; + case "stockChart": + $plotSeries[] = self::chartDataSeries($chartDetail, $namespacesChartMeta, $chartDetailKey); + $plotAttributes = self::readChartAttributes($plotAreaLayout); + break; + } + } + if ($plotAreaLayout == null) { + $plotAreaLayout = new PHPExcel_Chart_Layout(); + } + $plotArea = new PHPExcel_Chart_PlotArea($plotAreaLayout, $plotSeries); + self::setChartAttributes($plotAreaLayout, $plotAttributes); + break; + case "plotVisOnly": + $plotVisOnly = self::getAttribute($chartDetails, 'val', 'string'); + break; + case "dispBlanksAs": + $dispBlanksAs = self::getAttribute($chartDetails, 'val', 'string'); + break; + case "title": + $title = self::chartTitle($chartDetails, $namespacesChartMeta, 'title'); + break; + case "legend": + $legendPos = 'r'; + $legendLayout = null; + $legendOverlay = false; + foreach ($chartDetails as $chartDetailKey => $chartDetail) { + switch ($chartDetailKey) { + case "legendPos": + $legendPos = self::getAttribute($chartDetail, 'val', 'string'); + break; + case "overlay": + $legendOverlay = self::getAttribute($chartDetail, 'val', 'boolean'); + break; + case "layout": + $legendLayout = self::chartLayoutDetails($chartDetail, $namespacesChartMeta, 'legend'); + break; + } + } + $legend = new PHPExcel_Chart_Legend($legendPos, $legendLayout, $legendOverlay); + break; + } + } + } + } + $chart = new PHPExcel_Chart($chartName, $title, $legend, $plotArea, $plotVisOnly, $dispBlanksAs, $XaxisLabel, $YaxisLabel); + + return $chart; + } + + private static function chartTitle($titleDetails, $namespacesChartMeta, $type) + { + $caption = array(); + $titleLayout = null; + foreach ($titleDetails as $titleDetailKey => $chartDetail) { + switch ($titleDetailKey) { + case "tx": + $titleDetails = $chartDetail->rich->children($namespacesChartMeta['a']); + foreach ($titleDetails as $titleKey => $titleDetail) { + switch ($titleKey) { + case "p": + $titleDetailPart = $titleDetail->children($namespacesChartMeta['a']); + $caption[] = self::parseRichText($titleDetailPart); + } + } + break; + case "layout": + $titleLayout = self::chartLayoutDetails($chartDetail, $namespacesChartMeta); + break; + } + } + + return new PHPExcel_Chart_Title($caption, $titleLayout); + } + + private static function chartLayoutDetails($chartDetail, $namespacesChartMeta) + { + if (!isset($chartDetail->manualLayout)) { + return null; + } + $details = $chartDetail->manualLayout->children($namespacesChartMeta['c']); + if (is_null($details)) { + return null; + } + $layout = array(); + foreach ($details as $detailKey => $detail) { +// echo $detailKey, ' => ',self::getAttribute($detail, 'val', 'string'),PHP_EOL; + $layout[$detailKey] = self::getAttribute($detail, 'val', 'string'); + } + return new PHPExcel_Chart_Layout($layout); + } + + private static function chartDataSeries($chartDetail, $namespacesChartMeta, $plotType) + { + $multiSeriesType = null; + $smoothLine = false; + $seriesLabel = $seriesCategory = $seriesValues = $plotOrder = array(); + + $seriesDetailSet = $chartDetail->children($namespacesChartMeta['c']); + foreach ($seriesDetailSet as $seriesDetailKey => $seriesDetails) { + switch ($seriesDetailKey) { + case "grouping": + $multiSeriesType = self::getAttribute($chartDetail->grouping, 'val', 'string'); + break; + case "ser": + $marker = null; + foreach ($seriesDetails as $seriesKey => $seriesDetail) { + switch ($seriesKey) { + case "idx": + $seriesIndex = self::getAttribute($seriesDetail, 'val', 'integer'); + break; + case "order": + $seriesOrder = self::getAttribute($seriesDetail, 'val', 'integer'); + $plotOrder[$seriesIndex] = $seriesOrder; + break; + case "tx": + $seriesLabel[$seriesIndex] = self::chartDataSeriesValueSet($seriesDetail, $namespacesChartMeta); + break; + case "marker": + $marker = self::getAttribute($seriesDetail->symbol, 'val', 'string'); + break; + case "smooth": + $smoothLine = self::getAttribute($seriesDetail, 'val', 'boolean'); + break; + case "cat": + $seriesCategory[$seriesIndex] = self::chartDataSeriesValueSet($seriesDetail, $namespacesChartMeta); + break; + case "val": + $seriesValues[$seriesIndex] = self::chartDataSeriesValueSet($seriesDetail, $namespacesChartMeta, $marker); + break; + case "xVal": + $seriesCategory[$seriesIndex] = self::chartDataSeriesValueSet($seriesDetail, $namespacesChartMeta, $marker); + break; + case "yVal": + $seriesValues[$seriesIndex] = self::chartDataSeriesValueSet($seriesDetail, $namespacesChartMeta, $marker); + break; + } + } + } + } + return new PHPExcel_Chart_DataSeries($plotType, $multiSeriesType, $plotOrder, $seriesLabel, $seriesCategory, $seriesValues, $smoothLine); + } + + + private static function chartDataSeriesValueSet($seriesDetail, $namespacesChartMeta, $marker = null, $smoothLine = false) + { + if (isset($seriesDetail->strRef)) { + $seriesSource = (string) $seriesDetail->strRef->f; + $seriesData = self::chartDataSeriesValues($seriesDetail->strRef->strCache->children($namespacesChartMeta['c']), 's'); + + return new PHPExcel_Chart_DataSeriesValues('String', $seriesSource, $seriesData['formatCode'], $seriesData['pointCount'], $seriesData['dataValues'], $marker, $smoothLine); + } elseif (isset($seriesDetail->numRef)) { + $seriesSource = (string) $seriesDetail->numRef->f; + $seriesData = self::chartDataSeriesValues($seriesDetail->numRef->numCache->children($namespacesChartMeta['c'])); + + return new PHPExcel_Chart_DataSeriesValues('Number', $seriesSource, $seriesData['formatCode'], $seriesData['pointCount'], $seriesData['dataValues'], $marker, $smoothLine); + } elseif (isset($seriesDetail->multiLvlStrRef)) { + $seriesSource = (string) $seriesDetail->multiLvlStrRef->f; + $seriesData = self::chartDataSeriesValuesMultiLevel($seriesDetail->multiLvlStrRef->multiLvlStrCache->children($namespacesChartMeta['c']), 's'); + $seriesData['pointCount'] = count($seriesData['dataValues']); + + return new PHPExcel_Chart_DataSeriesValues('String', $seriesSource, $seriesData['formatCode'], $seriesData['pointCount'], $seriesData['dataValues'], $marker, $smoothLine); + } elseif (isset($seriesDetail->multiLvlNumRef)) { + $seriesSource = (string) $seriesDetail->multiLvlNumRef->f; + $seriesData = self::chartDataSeriesValuesMultiLevel($seriesDetail->multiLvlNumRef->multiLvlNumCache->children($namespacesChartMeta['c']), 's'); + $seriesData['pointCount'] = count($seriesData['dataValues']); + + return new PHPExcel_Chart_DataSeriesValues('String', $seriesSource, $seriesData['formatCode'], $seriesData['pointCount'], $seriesData['dataValues'], $marker, $smoothLine); + } + return null; + } + + + private static function chartDataSeriesValues($seriesValueSet, $dataType = 'n') + { + $seriesVal = array(); + $formatCode = ''; + $pointCount = 0; + + foreach ($seriesValueSet as $seriesValueIdx => $seriesValue) { + switch ($seriesValueIdx) { + case 'ptCount': + $pointCount = self::getAttribute($seriesValue, 'val', 'integer'); + break; + case 'formatCode': + $formatCode = (string) $seriesValue; + break; + case 'pt': + $pointVal = self::getAttribute($seriesValue, 'idx', 'integer'); + if ($dataType == 's') { + $seriesVal[$pointVal] = (string) $seriesValue->v; + } else { + $seriesVal[$pointVal] = (float) $seriesValue->v; + } + break; + } + } + + return array( + 'formatCode' => $formatCode, + 'pointCount' => $pointCount, + 'dataValues' => $seriesVal + ); + } + + private static function chartDataSeriesValuesMultiLevel($seriesValueSet, $dataType = 'n') + { + $seriesVal = array(); + $formatCode = ''; + $pointCount = 0; + + foreach ($seriesValueSet->lvl as $seriesLevelIdx => $seriesLevel) { + foreach ($seriesLevel as $seriesValueIdx => $seriesValue) { + switch ($seriesValueIdx) { + case 'ptCount': + $pointCount = self::getAttribute($seriesValue, 'val', 'integer'); + break; + case 'formatCode': + $formatCode = (string) $seriesValue; + break; + case 'pt': + $pointVal = self::getAttribute($seriesValue, 'idx', 'integer'); + if ($dataType == 's') { + $seriesVal[$pointVal][] = (string) $seriesValue->v; + } else { + $seriesVal[$pointVal][] = (float) $seriesValue->v; + } + break; + } + } + } + + return array( + 'formatCode' => $formatCode, + 'pointCount' => $pointCount, + 'dataValues' => $seriesVal + ); + } + + private static function parseRichText($titleDetailPart = null) + { + $value = new PHPExcel_RichText(); + + foreach ($titleDetailPart as $titleDetailElementKey => $titleDetailElement) { + if (isset($titleDetailElement->t)) { + $objText = $value->createTextRun((string) $titleDetailElement->t); + } + if (isset($titleDetailElement->rPr)) { + if (isset($titleDetailElement->rPr->rFont["val"])) { + $objText->getFont()->setName((string) $titleDetailElement->rPr->rFont["val"]); + } + + $fontSize = (self::getAttribute($titleDetailElement->rPr, 'sz', 'integer')); + if (!is_null($fontSize)) { + $objText->getFont()->setSize(floor($fontSize / 100)); + } + + $fontColor = (self::getAttribute($titleDetailElement->rPr, 'color', 'string')); + if (!is_null($fontColor)) { + $objText->getFont()->setColor(new PHPExcel_Style_Color(self::readColor($fontColor))); + } + + $bold = self::getAttribute($titleDetailElement->rPr, 'b', 'boolean'); + if (!is_null($bold)) { + $objText->getFont()->setBold($bold); + } + + $italic = self::getAttribute($titleDetailElement->rPr, 'i', 'boolean'); + if (!is_null($italic)) { + $objText->getFont()->setItalic($italic); + } + + $baseline = self::getAttribute($titleDetailElement->rPr, 'baseline', 'integer'); + if (!is_null($baseline)) { + if ($baseline > 0) { + $objText->getFont()->setSuperScript(true); + } elseif ($baseline < 0) { + $objText->getFont()->setSubScript(true); + } + } + + $underscore = (self::getAttribute($titleDetailElement->rPr, 'u', 'string')); + if (!is_null($underscore)) { + if ($underscore == 'sng') { + $objText->getFont()->setUnderline(PHPExcel_Style_Font::UNDERLINE_SINGLE); + } elseif ($underscore == 'dbl') { + $objText->getFont()->setUnderline(PHPExcel_Style_Font::UNDERLINE_DOUBLE); + } else { + $objText->getFont()->setUnderline(PHPExcel_Style_Font::UNDERLINE_NONE); + } + } + + $strikethrough = (self::getAttribute($titleDetailElement->rPr, 's', 'string')); + if (!is_null($strikethrough)) { + if ($strikethrough == 'noStrike') { + $objText->getFont()->setStrikethrough(false); + } else { + $objText->getFont()->setStrikethrough(true); + } + } + } + } + + return $value; + } + + private static function readChartAttributes($chartDetail) + { + $plotAttributes = array(); + if (isset($chartDetail->dLbls)) { + if (isset($chartDetail->dLbls->howLegendKey)) { + $plotAttributes['showLegendKey'] = self::getAttribute($chartDetail->dLbls->showLegendKey, 'val', 'string'); + } + if (isset($chartDetail->dLbls->showVal)) { + $plotAttributes['showVal'] = self::getAttribute($chartDetail->dLbls->showVal, 'val', 'string'); + } + if (isset($chartDetail->dLbls->showCatName)) { + $plotAttributes['showCatName'] = self::getAttribute($chartDetail->dLbls->showCatName, 'val', 'string'); + } + if (isset($chartDetail->dLbls->showSerName)) { + $plotAttributes['showSerName'] = self::getAttribute($chartDetail->dLbls->showSerName, 'val', 'string'); + } + if (isset($chartDetail->dLbls->showPercent)) { + $plotAttributes['showPercent'] = self::getAttribute($chartDetail->dLbls->showPercent, 'val', 'string'); + } + if (isset($chartDetail->dLbls->showBubbleSize)) { + $plotAttributes['showBubbleSize'] = self::getAttribute($chartDetail->dLbls->showBubbleSize, 'val', 'string'); + } + if (isset($chartDetail->dLbls->showLeaderLines)) { + $plotAttributes['showLeaderLines'] = self::getAttribute($chartDetail->dLbls->showLeaderLines, 'val', 'string'); + } + } + + return $plotAttributes; + } + + private static function setChartAttributes($plotArea, $plotAttributes) + { + foreach ($plotAttributes as $plotAttributeKey => $plotAttributeValue) { + switch ($plotAttributeKey) { + case 'showLegendKey': + $plotArea->setShowLegendKey($plotAttributeValue); + break; + case 'showVal': + $plotArea->setShowVal($plotAttributeValue); + break; + case 'showCatName': + $plotArea->setShowCatName($plotAttributeValue); + break; + case 'showSerName': + $plotArea->setShowSerName($plotAttributeValue); + break; + case 'showPercent': + $plotArea->setShowPercent($plotAttributeValue); + break; + case 'showBubbleSize': + $plotArea->setShowBubbleSize($plotAttributeValue); + break; + case 'showLeaderLines': + $plotArea->setShowLeaderLines($plotAttributeValue); + break; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007/Theme.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007/Theme.php new file mode 100644 index 0000000..134f4b6 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007/Theme.php @@ -0,0 +1,127 @@ +themeName = $themeName; + $this->colourSchemeName = $colourSchemeName; + $this->colourMap = $colourMap; + } + + /** + * Get Theme Name + * + * @return string + */ + public function getThemeName() + { + return $this->themeName; + } + + /** + * Get colour Scheme Name + * + * @return string + */ + public function getColourSchemeName() + { + return $this->colourSchemeName; + } + + /** + * Get colour Map Value by Position + * + * @return string + */ + public function getColourByIndex($index = 0) + { + if (isset($this->colourMap[$index])) { + return $this->colourMap[$index]; + } + return null; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if ((is_object($value)) && ($key != '_parent')) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php new file mode 100644 index 0000000..62e971d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php @@ -0,0 +1,7594 @@ +data + * + * @var int + */ + private $dataSize; + + /** + * Current position in stream + * + * @var integer + */ + private $pos; + + /** + * Workbook to be returned by the reader. + * + * @var PHPExcel + */ + private $phpExcel; + + /** + * Worksheet that is currently being built by the reader. + * + * @var PHPExcel_Worksheet + */ + private $phpSheet; + + /** + * BIFF version + * + * @var int + */ + private $version; + + /** + * Codepage set in the Excel file being read. Only important for BIFF5 (Excel 5.0 - Excel 95) + * For BIFF8 (Excel 97 - Excel 2003) this will always have the value 'UTF-16LE' + * + * @var string + */ + private $codepage; + + /** + * Shared formats + * + * @var array + */ + private $formats; + + /** + * Shared fonts + * + * @var array + */ + private $objFonts; + + /** + * Color palette + * + * @var array + */ + private $palette; + + /** + * Worksheets + * + * @var array + */ + private $sheets; + + /** + * External books + * + * @var array + */ + private $externalBooks; + + /** + * REF structures. Only applies to BIFF8. + * + * @var array + */ + private $ref; + + /** + * External names + * + * @var array + */ + private $externalNames; + + /** + * Defined names + * + * @var array + */ + private $definedname; + + /** + * Shared strings. Only applies to BIFF8. + * + * @var array + */ + private $sst; + + /** + * Panes are frozen? (in sheet currently being read). See WINDOW2 record. + * + * @var boolean + */ + private $frozen; + + /** + * Fit printout to number of pages? (in sheet currently being read). See SHEETPR record. + * + * @var boolean + */ + private $isFitToPages; + + /** + * Objects. One OBJ record contributes with one entry. + * + * @var array + */ + private $objs; + + /** + * Text Objects. One TXO record corresponds with one entry. + * + * @var array + */ + private $textObjects; + + /** + * Cell Annotations (BIFF8) + * + * @var array + */ + private $cellNotes; + + /** + * The combined MSODRAWINGGROUP data + * + * @var string + */ + private $drawingGroupData; + + /** + * The combined MSODRAWING data (per sheet) + * + * @var string + */ + private $drawingData; + + /** + * Keep track of XF index + * + * @var int + */ + private $xfIndex; + + /** + * Mapping of XF index (that is a cell XF) to final index in cellXf collection + * + * @var array + */ + private $mapCellXfIndex; + + /** + * Mapping of XF index (that is a style XF) to final index in cellStyleXf collection + * + * @var array + */ + private $mapCellStyleXfIndex; + + /** + * The shared formulas in a sheet. One SHAREDFMLA record contributes with one value. + * + * @var array + */ + private $sharedFormulas; + + /** + * The shared formula parts in a sheet. One FORMULA record contributes with one value if it + * refers to a shared formula. + * + * @var array + */ + private $sharedFormulaParts; + + /** + * The type of encryption in use + * + * @var int + */ + private $encryption = 0; + + /** + * The position in the stream after which contents are encrypted + * + * @var int + */ + private $encryptionStartPos = false; + + /** + * The current RC4 decryption object + * + * @var PHPExcel_Reader_Excel5_RC4 + */ + private $rc4Key = null; + + /** + * The position in the stream that the RC4 decryption object was left at + * + * @var int + */ + private $rc4Pos = 0; + + /** + * The current MD5 context state + * + * @var string + */ + private $md5Ctxt = null; + + /** + * Create a new PHPExcel_Reader_Excel5 instance + */ + public function __construct() + { + $this->readFilter = new PHPExcel_Reader_DefaultReadFilter(); + } + + /** + * Can the current PHPExcel_Reader_IReader read the file? + * + * @param string $pFilename + * @return boolean + * @throws PHPExcel_Reader_Exception + */ + public function canRead($pFilename) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + try { + // Use ParseXL for the hard work. + $ole = new PHPExcel_Shared_OLERead(); + + // get excel data + $res = $ole->read($pFilename); + return true; + } catch (PHPExcel_Exception $e) { + return false; + } + } + + /** + * Reads names of the worksheets from a file, without parsing the whole file to a PHPExcel object + * + * @param string $pFilename + * @throws PHPExcel_Reader_Exception + */ + public function listWorksheetNames($pFilename) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + $worksheetNames = array(); + + // Read the OLE file + $this->loadOLE($pFilename); + + // total byte size of Excel data (workbook global substream + sheet substreams) + $this->dataSize = strlen($this->data); + + $this->pos = 0; + $this->sheets = array(); + + // Parse Workbook Global Substream + while ($this->pos < $this->dataSize) { + $code = self::getInt2d($this->data, $this->pos); + + switch ($code) { + case self::XLS_TYPE_BOF: + $this->readBof(); + break; + case self::XLS_TYPE_SHEET: + $this->readSheet(); + break; + case self::XLS_TYPE_EOF: + $this->readDefault(); + break 2; + default: + $this->readDefault(); + break; + } + } + + foreach ($this->sheets as $sheet) { + if ($sheet['sheetType'] != 0x00) { + // 0x00: Worksheet, 0x02: Chart, 0x06: Visual Basic module + continue; + } + + $worksheetNames[] = $sheet['name']; + } + + return $worksheetNames; + } + + + /** + * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns) + * + * @param string $pFilename + * @throws PHPExcel_Reader_Exception + */ + public function listWorksheetInfo($pFilename) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + $worksheetInfo = array(); + + // Read the OLE file + $this->loadOLE($pFilename); + + // total byte size of Excel data (workbook global substream + sheet substreams) + $this->dataSize = strlen($this->data); + + // initialize + $this->pos = 0; + $this->sheets = array(); + + // Parse Workbook Global Substream + while ($this->pos < $this->dataSize) { + $code = self::getInt2d($this->data, $this->pos); + + switch ($code) { + case self::XLS_TYPE_BOF: + $this->readBof(); + break; + case self::XLS_TYPE_SHEET: + $this->readSheet(); + break; + case self::XLS_TYPE_EOF: + $this->readDefault(); + break 2; + default: + $this->readDefault(); + break; + } + } + + // Parse the individual sheets + foreach ($this->sheets as $sheet) { + if ($sheet['sheetType'] != 0x00) { + // 0x00: Worksheet + // 0x02: Chart + // 0x06: Visual Basic module + continue; + } + + $tmpInfo = array(); + $tmpInfo['worksheetName'] = $sheet['name']; + $tmpInfo['lastColumnLetter'] = 'A'; + $tmpInfo['lastColumnIndex'] = 0; + $tmpInfo['totalRows'] = 0; + $tmpInfo['totalColumns'] = 0; + + $this->pos = $sheet['offset']; + + while ($this->pos <= $this->dataSize - 4) { + $code = self::getInt2d($this->data, $this->pos); + + switch ($code) { + case self::XLS_TYPE_RK: + case self::XLS_TYPE_LABELSST: + case self::XLS_TYPE_NUMBER: + case self::XLS_TYPE_FORMULA: + case self::XLS_TYPE_BOOLERR: + case self::XLS_TYPE_LABEL: + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + $rowIndex = self::getInt2d($recordData, 0) + 1; + $columnIndex = self::getInt2d($recordData, 2); + + $tmpInfo['totalRows'] = max($tmpInfo['totalRows'], $rowIndex); + $tmpInfo['lastColumnIndex'] = max($tmpInfo['lastColumnIndex'], $columnIndex); + break; + case self::XLS_TYPE_BOF: + $this->readBof(); + break; + case self::XLS_TYPE_EOF: + $this->readDefault(); + break 2; + default: + $this->readDefault(); + break; + } + } + + $tmpInfo['lastColumnLetter'] = PHPExcel_Cell::stringFromColumnIndex($tmpInfo['lastColumnIndex']); + $tmpInfo['totalColumns'] = $tmpInfo['lastColumnIndex'] + 1; + + $worksheetInfo[] = $tmpInfo; + } + + return $worksheetInfo; + } + + + /** + * Loads PHPExcel from file + * + * @param string $pFilename + * @return PHPExcel + * @throws PHPExcel_Reader_Exception + */ + public function load($pFilename) + { + // Read the OLE file + $this->loadOLE($pFilename); + + // Initialisations + $this->phpExcel = new PHPExcel; + $this->phpExcel->removeSheetByIndex(0); // remove 1st sheet + if (!$this->readDataOnly) { + $this->phpExcel->removeCellStyleXfByIndex(0); // remove the default style + $this->phpExcel->removeCellXfByIndex(0); // remove the default style + } + + // Read the summary information stream (containing meta data) + $this->readSummaryInformation(); + + // Read the Additional document summary information stream (containing application-specific meta data) + $this->readDocumentSummaryInformation(); + + // total byte size of Excel data (workbook global substream + sheet substreams) + $this->dataSize = strlen($this->data); + + // initialize + $this->pos = 0; + $this->codepage = 'CP1252'; + $this->formats = array(); + $this->objFonts = array(); + $this->palette = array(); + $this->sheets = array(); + $this->externalBooks = array(); + $this->ref = array(); + $this->definedname = array(); + $this->sst = array(); + $this->drawingGroupData = ''; + $this->xfIndex = ''; + $this->mapCellXfIndex = array(); + $this->mapCellStyleXfIndex = array(); + + // Parse Workbook Global Substream + while ($this->pos < $this->dataSize) { + $code = self::getInt2d($this->data, $this->pos); + + switch ($code) { + case self::XLS_TYPE_BOF: + $this->readBof(); + break; + case self::XLS_TYPE_FILEPASS: + $this->readFilepass(); + break; + case self::XLS_TYPE_CODEPAGE: + $this->readCodepage(); + break; + case self::XLS_TYPE_DATEMODE: + $this->readDateMode(); + break; + case self::XLS_TYPE_FONT: + $this->readFont(); + break; + case self::XLS_TYPE_FORMAT: + $this->readFormat(); + break; + case self::XLS_TYPE_XF: + $this->readXf(); + break; + case self::XLS_TYPE_XFEXT: + $this->readXfExt(); + break; + case self::XLS_TYPE_STYLE: + $this->readStyle(); + break; + case self::XLS_TYPE_PALETTE: + $this->readPalette(); + break; + case self::XLS_TYPE_SHEET: + $this->readSheet(); + break; + case self::XLS_TYPE_EXTERNALBOOK: + $this->readExternalBook(); + break; + case self::XLS_TYPE_EXTERNNAME: + $this->readExternName(); + break; + case self::XLS_TYPE_EXTERNSHEET: + $this->readExternSheet(); + break; + case self::XLS_TYPE_DEFINEDNAME: + $this->readDefinedName(); + break; + case self::XLS_TYPE_MSODRAWINGGROUP: + $this->readMsoDrawingGroup(); + break; + case self::XLS_TYPE_SST: + $this->readSst(); + break; + case self::XLS_TYPE_EOF: + $this->readDefault(); + break 2; + default: + $this->readDefault(); + break; + } + } + + // Resolve indexed colors for font, fill, and border colors + // Cannot be resolved already in XF record, because PALETTE record comes afterwards + if (!$this->readDataOnly) { + foreach ($this->objFonts as $objFont) { + if (isset($objFont->colorIndex)) { + $color = PHPExcel_Reader_Excel5_Color::map($objFont->colorIndex, $this->palette, $this->version); + $objFont->getColor()->setRGB($color['rgb']); + } + } + + foreach ($this->phpExcel->getCellXfCollection() as $objStyle) { + // fill start and end color + $fill = $objStyle->getFill(); + + if (isset($fill->startcolorIndex)) { + $startColor = PHPExcel_Reader_Excel5_Color::map($fill->startcolorIndex, $this->palette, $this->version); + $fill->getStartColor()->setRGB($startColor['rgb']); + } + if (isset($fill->endcolorIndex)) { + $endColor = PHPExcel_Reader_Excel5_Color::map($fill->endcolorIndex, $this->palette, $this->version); + $fill->getEndColor()->setRGB($endColor['rgb']); + } + + // border colors + $top = $objStyle->getBorders()->getTop(); + $right = $objStyle->getBorders()->getRight(); + $bottom = $objStyle->getBorders()->getBottom(); + $left = $objStyle->getBorders()->getLeft(); + $diagonal = $objStyle->getBorders()->getDiagonal(); + + if (isset($top->colorIndex)) { + $borderTopColor = PHPExcel_Reader_Excel5_Color::map($top->colorIndex, $this->palette, $this->version); + $top->getColor()->setRGB($borderTopColor['rgb']); + } + if (isset($right->colorIndex)) { + $borderRightColor = PHPExcel_Reader_Excel5_Color::map($right->colorIndex, $this->palette, $this->version); + $right->getColor()->setRGB($borderRightColor['rgb']); + } + if (isset($bottom->colorIndex)) { + $borderBottomColor = PHPExcel_Reader_Excel5_Color::map($bottom->colorIndex, $this->palette, $this->version); + $bottom->getColor()->setRGB($borderBottomColor['rgb']); + } + if (isset($left->colorIndex)) { + $borderLeftColor = PHPExcel_Reader_Excel5_Color::map($left->colorIndex, $this->palette, $this->version); + $left->getColor()->setRGB($borderLeftColor['rgb']); + } + if (isset($diagonal->colorIndex)) { + $borderDiagonalColor = PHPExcel_Reader_Excel5_Color::map($diagonal->colorIndex, $this->palette, $this->version); + $diagonal->getColor()->setRGB($borderDiagonalColor['rgb']); + } + } + } + + // treat MSODRAWINGGROUP records, workbook-level Escher + if (!$this->readDataOnly && $this->drawingGroupData) { + $escherWorkbook = new PHPExcel_Shared_Escher(); + $reader = new PHPExcel_Reader_Excel5_Escher($escherWorkbook); + $escherWorkbook = $reader->load($this->drawingGroupData); + + // debug Escher stream + //$debug = new Debug_Escher(new PHPExcel_Shared_Escher()); + //$debug->load($this->drawingGroupData); + } + + // Parse the individual sheets + foreach ($this->sheets as $sheet) { + if ($sheet['sheetType'] != 0x00) { + // 0x00: Worksheet, 0x02: Chart, 0x06: Visual Basic module + continue; + } + + // check if sheet should be skipped + if (isset($this->loadSheetsOnly) && !in_array($sheet['name'], $this->loadSheetsOnly)) { + continue; + } + + // add sheet to PHPExcel object + $this->phpSheet = $this->phpExcel->createSheet(); + // Use false for $updateFormulaCellReferences to prevent adjustment of worksheet references in formula + // cells... during the load, all formulae should be correct, and we're simply bringing the worksheet + // name in line with the formula, not the reverse + $this->phpSheet->setTitle($sheet['name'], false); + $this->phpSheet->setSheetState($sheet['sheetState']); + + $this->pos = $sheet['offset']; + + // Initialize isFitToPages. May change after reading SHEETPR record. + $this->isFitToPages = false; + + // Initialize drawingData + $this->drawingData = ''; + + // Initialize objs + $this->objs = array(); + + // Initialize shared formula parts + $this->sharedFormulaParts = array(); + + // Initialize shared formulas + $this->sharedFormulas = array(); + + // Initialize text objs + $this->textObjects = array(); + + // Initialize cell annotations + $this->cellNotes = array(); + $this->textObjRef = -1; + + while ($this->pos <= $this->dataSize - 4) { + $code = self::getInt2d($this->data, $this->pos); + + switch ($code) { + case self::XLS_TYPE_BOF: + $this->readBof(); + break; + case self::XLS_TYPE_PRINTGRIDLINES: + $this->readPrintGridlines(); + break; + case self::XLS_TYPE_DEFAULTROWHEIGHT: + $this->readDefaultRowHeight(); + break; + case self::XLS_TYPE_SHEETPR: + $this->readSheetPr(); + break; + case self::XLS_TYPE_HORIZONTALPAGEBREAKS: + $this->readHorizontalPageBreaks(); + break; + case self::XLS_TYPE_VERTICALPAGEBREAKS: + $this->readVerticalPageBreaks(); + break; + case self::XLS_TYPE_HEADER: + $this->readHeader(); + break; + case self::XLS_TYPE_FOOTER: + $this->readFooter(); + break; + case self::XLS_TYPE_HCENTER: + $this->readHcenter(); + break; + case self::XLS_TYPE_VCENTER: + $this->readVcenter(); + break; + case self::XLS_TYPE_LEFTMARGIN: + $this->readLeftMargin(); + break; + case self::XLS_TYPE_RIGHTMARGIN: + $this->readRightMargin(); + break; + case self::XLS_TYPE_TOPMARGIN: + $this->readTopMargin(); + break; + case self::XLS_TYPE_BOTTOMMARGIN: + $this->readBottomMargin(); + break; + case self::XLS_TYPE_PAGESETUP: + $this->readPageSetup(); + break; + case self::XLS_TYPE_PROTECT: + $this->readProtect(); + break; + case self::XLS_TYPE_SCENPROTECT: + $this->readScenProtect(); + break; + case self::XLS_TYPE_OBJECTPROTECT: + $this->readObjectProtect(); + break; + case self::XLS_TYPE_PASSWORD: + $this->readPassword(); + break; + case self::XLS_TYPE_DEFCOLWIDTH: + $this->readDefColWidth(); + break; + case self::XLS_TYPE_COLINFO: + $this->readColInfo(); + break; + case self::XLS_TYPE_DIMENSION: + $this->readDefault(); + break; + case self::XLS_TYPE_ROW: + $this->readRow(); + break; + case self::XLS_TYPE_DBCELL: + $this->readDefault(); + break; + case self::XLS_TYPE_RK: + $this->readRk(); + break; + case self::XLS_TYPE_LABELSST: + $this->readLabelSst(); + break; + case self::XLS_TYPE_MULRK: + $this->readMulRk(); + break; + case self::XLS_TYPE_NUMBER: + $this->readNumber(); + break; + case self::XLS_TYPE_FORMULA: + $this->readFormula(); + break; + case self::XLS_TYPE_SHAREDFMLA: + $this->readSharedFmla(); + break; + case self::XLS_TYPE_BOOLERR: + $this->readBoolErr(); + break; + case self::XLS_TYPE_MULBLANK: + $this->readMulBlank(); + break; + case self::XLS_TYPE_LABEL: + $this->readLabel(); + break; + case self::XLS_TYPE_BLANK: + $this->readBlank(); + break; + case self::XLS_TYPE_MSODRAWING: + $this->readMsoDrawing(); + break; + case self::XLS_TYPE_OBJ: + $this->readObj(); + break; + case self::XLS_TYPE_WINDOW2: + $this->readWindow2(); + break; + case self::XLS_TYPE_PAGELAYOUTVIEW: + $this->readPageLayoutView(); + break; + case self::XLS_TYPE_SCL: + $this->readScl(); + break; + case self::XLS_TYPE_PANE: + $this->readPane(); + break; + case self::XLS_TYPE_SELECTION: + $this->readSelection(); + break; + case self::XLS_TYPE_MERGEDCELLS: + $this->readMergedCells(); + break; + case self::XLS_TYPE_HYPERLINK: + $this->readHyperLink(); + break; + case self::XLS_TYPE_DATAVALIDATIONS: + $this->readDataValidations(); + break; + case self::XLS_TYPE_DATAVALIDATION: + $this->readDataValidation(); + break; + case self::XLS_TYPE_SHEETLAYOUT: + $this->readSheetLayout(); + break; + case self::XLS_TYPE_SHEETPROTECTION: + $this->readSheetProtection(); + break; + case self::XLS_TYPE_RANGEPROTECTION: + $this->readRangeProtection(); + break; + case self::XLS_TYPE_NOTE: + $this->readNote(); + break; + //case self::XLS_TYPE_IMDATA: $this->readImData(); break; + case self::XLS_TYPE_TXO: + $this->readTextObject(); + break; + case self::XLS_TYPE_CONTINUE: + $this->readContinue(); + break; + case self::XLS_TYPE_EOF: + $this->readDefault(); + break 2; + default: + $this->readDefault(); + break; + } + + } + + // treat MSODRAWING records, sheet-level Escher + if (!$this->readDataOnly && $this->drawingData) { + $escherWorksheet = new PHPExcel_Shared_Escher(); + $reader = new PHPExcel_Reader_Excel5_Escher($escherWorksheet); + $escherWorksheet = $reader->load($this->drawingData); + + // debug Escher stream + //$debug = new Debug_Escher(new PHPExcel_Shared_Escher()); + //$debug->load($this->drawingData); + + // get all spContainers in one long array, so they can be mapped to OBJ records + $allSpContainers = $escherWorksheet->getDgContainer()->getSpgrContainer()->getAllSpContainers(); + } + + // treat OBJ records + foreach ($this->objs as $n => $obj) { +// echo '
Object reference is ', $n,'
'; +// var_dump($obj); +// echo '
'; + + // the first shape container never has a corresponding OBJ record, hence $n + 1 + if (isset($allSpContainers[$n + 1]) && is_object($allSpContainers[$n + 1])) { + $spContainer = $allSpContainers[$n + 1]; + + // we skip all spContainers that are a part of a group shape since we cannot yet handle those + if ($spContainer->getNestingLevel() > 1) { + continue; + } + + // calculate the width and height of the shape + list($startColumn, $startRow) = PHPExcel_Cell::coordinateFromString($spContainer->getStartCoordinates()); + list($endColumn, $endRow) = PHPExcel_Cell::coordinateFromString($spContainer->getEndCoordinates()); + + $startOffsetX = $spContainer->getStartOffsetX(); + $startOffsetY = $spContainer->getStartOffsetY(); + $endOffsetX = $spContainer->getEndOffsetX(); + $endOffsetY = $spContainer->getEndOffsetY(); + + $width = PHPExcel_Shared_Excel5::getDistanceX($this->phpSheet, $startColumn, $startOffsetX, $endColumn, $endOffsetX); + $height = PHPExcel_Shared_Excel5::getDistanceY($this->phpSheet, $startRow, $startOffsetY, $endRow, $endOffsetY); + + // calculate offsetX and offsetY of the shape + $offsetX = $startOffsetX * PHPExcel_Shared_Excel5::sizeCol($this->phpSheet, $startColumn) / 1024; + $offsetY = $startOffsetY * PHPExcel_Shared_Excel5::sizeRow($this->phpSheet, $startRow) / 256; + + switch ($obj['otObjType']) { + case 0x19: + // Note +// echo 'Cell Annotation Object
'; +// echo 'Object ID is ', $obj['idObjID'],'
'; + if (isset($this->cellNotes[$obj['idObjID']])) { + $cellNote = $this->cellNotes[$obj['idObjID']]; + + if (isset($this->textObjects[$obj['idObjID']])) { + $textObject = $this->textObjects[$obj['idObjID']]; + $this->cellNotes[$obj['idObjID']]['objTextData'] = $textObject; + } + } + break; + case 0x08: +// echo 'Picture Object
'; + // picture + // get index to BSE entry (1-based) + $BSEindex = $spContainer->getOPT(0x0104); + $BSECollection = $escherWorkbook->getDggContainer()->getBstoreContainer()->getBSECollection(); + $BSE = $BSECollection[$BSEindex - 1]; + $blipType = $BSE->getBlipType(); + + // need check because some blip types are not supported by Escher reader such as EMF + if ($blip = $BSE->getBlip()) { + $ih = imagecreatefromstring($blip->getData()); + $drawing = new PHPExcel_Worksheet_MemoryDrawing(); + $drawing->setImageResource($ih); + + // width, height, offsetX, offsetY + $drawing->setResizeProportional(false); + $drawing->setWidth($width); + $drawing->setHeight($height); + $drawing->setOffsetX($offsetX); + $drawing->setOffsetY($offsetY); + + switch ($blipType) { + case PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE::BLIPTYPE_JPEG: + $drawing->setRenderingFunction(PHPExcel_Worksheet_MemoryDrawing::RENDERING_JPEG); + $drawing->setMimeType(PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_JPEG); + break; + case PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE::BLIPTYPE_PNG: + $drawing->setRenderingFunction(PHPExcel_Worksheet_MemoryDrawing::RENDERING_PNG); + $drawing->setMimeType(PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_PNG); + break; + } + + $drawing->setWorksheet($this->phpSheet); + $drawing->setCoordinates($spContainer->getStartCoordinates()); + } + break; + default: + // other object type + break; + } + } + } + + // treat SHAREDFMLA records + if ($this->version == self::XLS_BIFF8) { + foreach ($this->sharedFormulaParts as $cell => $baseCell) { + list($column, $row) = PHPExcel_Cell::coordinateFromString($cell); + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($column, $row, $this->phpSheet->getTitle())) { + $formula = $this->getFormulaFromStructure($this->sharedFormulas[$baseCell], $cell); + $this->phpSheet->getCell($cell)->setValueExplicit('=' . $formula, PHPExcel_Cell_DataType::TYPE_FORMULA); + } + } + } + + if (!empty($this->cellNotes)) { + foreach ($this->cellNotes as $note => $noteDetails) { + if (!isset($noteDetails['objTextData'])) { + if (isset($this->textObjects[$note])) { + $textObject = $this->textObjects[$note]; + $noteDetails['objTextData'] = $textObject; + } else { + $noteDetails['objTextData']['text'] = ''; + } + } +// echo 'Cell annotation ', $note,'
'; +// var_dump($noteDetails); +// echo '
'; + $cellAddress = str_replace('$', '', $noteDetails['cellRef']); + $this->phpSheet->getComment($cellAddress)->setAuthor($noteDetails['author'])->setText($this->parseRichText($noteDetails['objTextData']['text'])); + } + } + } + + // add the named ranges (defined names) + foreach ($this->definedname as $definedName) { + if ($definedName['isBuiltInName']) { + switch ($definedName['name']) { + case pack('C', 0x06): + // print area + // in general, formula looks like this: Foo!$C$7:$J$66,Bar!$A$1:$IV$2 + $ranges = explode(',', $definedName['formula']); // FIXME: what if sheetname contains comma? + + $extractedRanges = array(); + foreach ($ranges as $range) { + // $range should look like one of these + // Foo!$C$7:$J$66 + // Bar!$A$1:$IV$2 + $explodes = explode('!', $range); // FIXME: what if sheetname contains exclamation mark? + $sheetName = trim($explodes[0], "'"); + if (count($explodes) == 2) { + if (strpos($explodes[1], ':') === false) { + $explodes[1] = $explodes[1] . ':' . $explodes[1]; + } + $extractedRanges[] = str_replace('$', '', $explodes[1]); // C7:J66 + } + } + if ($docSheet = $this->phpExcel->getSheetByName($sheetName)) { + $docSheet->getPageSetup()->setPrintArea(implode(',', $extractedRanges)); // C7:J66,A1:IV2 + } + break; + case pack('C', 0x07): + // print titles (repeating rows) + // Assuming BIFF8, there are 3 cases + // 1. repeating rows + // formula looks like this: Sheet!$A$1:$IV$2 + // rows 1-2 repeat + // 2. repeating columns + // formula looks like this: Sheet!$A$1:$B$65536 + // columns A-B repeat + // 3. both repeating rows and repeating columns + // formula looks like this: Sheet!$A$1:$B$65536,Sheet!$A$1:$IV$2 + $ranges = explode(',', $definedName['formula']); // FIXME: what if sheetname contains comma? + foreach ($ranges as $range) { + // $range should look like this one of these + // Sheet!$A$1:$B$65536 + // Sheet!$A$1:$IV$2 + $explodes = explode('!', $range); + if (count($explodes) == 2) { + if ($docSheet = $this->phpExcel->getSheetByName($explodes[0])) { + $extractedRange = $explodes[1]; + $extractedRange = str_replace('$', '', $extractedRange); + + $coordinateStrings = explode(':', $extractedRange); + if (count($coordinateStrings) == 2) { + list($firstColumn, $firstRow) = PHPExcel_Cell::coordinateFromString($coordinateStrings[0]); + list($lastColumn, $lastRow) = PHPExcel_Cell::coordinateFromString($coordinateStrings[1]); + + if ($firstColumn == 'A' and $lastColumn == 'IV') { + // then we have repeating rows + $docSheet->getPageSetup()->setRowsToRepeatAtTop(array($firstRow, $lastRow)); + } elseif ($firstRow == 1 and $lastRow == 65536) { + // then we have repeating columns + $docSheet->getPageSetup()->setColumnsToRepeatAtLeft(array($firstColumn, $lastColumn)); + } + } + } + } + } + break; + } + } else { + // Extract range + $explodes = explode('!', $definedName['formula']); + + if (count($explodes) == 2) { + if (($docSheet = $this->phpExcel->getSheetByName($explodes[0])) || + ($docSheet = $this->phpExcel->getSheetByName(trim($explodes[0], "'")))) { + $extractedRange = $explodes[1]; + $extractedRange = str_replace('$', '', $extractedRange); + + $localOnly = ($definedName['scope'] == 0) ? false : true; + + $scope = ($definedName['scope'] == 0) ? null : $this->phpExcel->getSheetByName($this->sheets[$definedName['scope'] - 1]['name']); + + $this->phpExcel->addNamedRange(new PHPExcel_NamedRange((string)$definedName['name'], $docSheet, $extractedRange, $localOnly, $scope)); + } + } else { + // Named Value + // TODO Provide support for named values + } + } + } + $this->data = null; + + return $this->phpExcel; + } + + /** + * Read record data from stream, decrypting as required + * + * @param string $data Data stream to read from + * @param int $pos Position to start reading from + * @param int $length Record data length + * + * @return string Record data + */ + private function readRecordData($data, $pos, $len) + { + $data = substr($data, $pos, $len); + + // File not encrypted, or record before encryption start point + if ($this->encryption == self::MS_BIFF_CRYPTO_NONE || $pos < $this->encryptionStartPos) { + return $data; + } + + $recordData = ''; + if ($this->encryption == self::MS_BIFF_CRYPTO_RC4) { + $oldBlock = floor($this->rc4Pos / self::REKEY_BLOCK); + $block = floor($pos / self::REKEY_BLOCK); + $endBlock = floor(($pos + $len) / self::REKEY_BLOCK); + + // Spin an RC4 decryptor to the right spot. If we have a decryptor sitting + // at a point earlier in the current block, re-use it as we can save some time. + if ($block != $oldBlock || $pos < $this->rc4Pos || !$this->rc4Key) { + $this->rc4Key = $this->makeKey($block, $this->md5Ctxt); + $step = $pos % self::REKEY_BLOCK; + } else { + $step = $pos - $this->rc4Pos; + } + $this->rc4Key->RC4(str_repeat("\0", $step)); + + // Decrypt record data (re-keying at the end of every block) + while ($block != $endBlock) { + $step = self::REKEY_BLOCK - ($pos % self::REKEY_BLOCK); + $recordData .= $this->rc4Key->RC4(substr($data, 0, $step)); + $data = substr($data, $step); + $pos += $step; + $len -= $step; + $block++; + $this->rc4Key = $this->makeKey($block, $this->md5Ctxt); + } + $recordData .= $this->rc4Key->RC4(substr($data, 0, $len)); + + // Keep track of the position of this decryptor. + // We'll try and re-use it later if we can to speed things up + $this->rc4Pos = $pos + $len; + } elseif ($this->encryption == self::MS_BIFF_CRYPTO_XOR) { + throw new PHPExcel_Reader_Exception('XOr encryption not supported'); + } + return $recordData; + } + + /** + * Use OLE reader to extract the relevant data streams from the OLE file + * + * @param string $pFilename + */ + private function loadOLE($pFilename) + { + // OLE reader + $ole = new PHPExcel_Shared_OLERead(); + // get excel data, + $res = $ole->read($pFilename); + // Get workbook data: workbook stream + sheet streams + $this->data = $ole->getStream($ole->wrkbook); + // Get summary information data + $this->summaryInformation = $ole->getStream($ole->summaryInformation); + // Get additional document summary information data + $this->documentSummaryInformation = $ole->getStream($ole->documentSummaryInformation); + // Get user-defined property data +// $this->userDefinedProperties = $ole->getUserDefinedProperties(); + } + + + /** + * Read summary information + */ + private function readSummaryInformation() + { + if (!isset($this->summaryInformation)) { + return; + } + + // offset: 0; size: 2; must be 0xFE 0xFF (UTF-16 LE byte order mark) + // offset: 2; size: 2; + // offset: 4; size: 2; OS version + // offset: 6; size: 2; OS indicator + // offset: 8; size: 16 + // offset: 24; size: 4; section count + $secCount = self::getInt4d($this->summaryInformation, 24); + + // offset: 28; size: 16; first section's class id: e0 85 9f f2 f9 4f 68 10 ab 91 08 00 2b 27 b3 d9 + // offset: 44; size: 4 + $secOffset = self::getInt4d($this->summaryInformation, 44); + + // section header + // offset: $secOffset; size: 4; section length + $secLength = self::getInt4d($this->summaryInformation, $secOffset); + + // offset: $secOffset+4; size: 4; property count + $countProperties = self::getInt4d($this->summaryInformation, $secOffset+4); + + // initialize code page (used to resolve string values) + $codePage = 'CP1252'; + + // offset: ($secOffset+8); size: var + // loop through property decarations and properties + for ($i = 0; $i < $countProperties; ++$i) { + // offset: ($secOffset+8) + (8 * $i); size: 4; property ID + $id = self::getInt4d($this->summaryInformation, ($secOffset+8) + (8 * $i)); + + // Use value of property id as appropriate + // offset: ($secOffset+12) + (8 * $i); size: 4; offset from beginning of section (48) + $offset = self::getInt4d($this->summaryInformation, ($secOffset+12) + (8 * $i)); + + $type = self::getInt4d($this->summaryInformation, $secOffset + $offset); + + // initialize property value + $value = null; + + // extract property value based on property type + switch ($type) { + case 0x02: // 2 byte signed integer + $value = self::getInt2d($this->summaryInformation, $secOffset + 4 + $offset); + break; + case 0x03: // 4 byte signed integer + $value = self::getInt4d($this->summaryInformation, $secOffset + 4 + $offset); + break; + case 0x13: // 4 byte unsigned integer + // not needed yet, fix later if necessary + break; + case 0x1E: // null-terminated string prepended by dword string length + $byteLength = self::getInt4d($this->summaryInformation, $secOffset + 4 + $offset); + $value = substr($this->summaryInformation, $secOffset + 8 + $offset, $byteLength); + $value = PHPExcel_Shared_String::ConvertEncoding($value, 'UTF-8', $codePage); + $value = rtrim($value); + break; + case 0x40: // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601) + // PHP-time + $value = PHPExcel_Shared_OLE::OLE2LocalDate(substr($this->summaryInformation, $secOffset + 4 + $offset, 8)); + break; + case 0x47: // Clipboard format + // not needed yet, fix later if necessary + break; + } + + switch ($id) { + case 0x01: // Code Page + $codePage = PHPExcel_Shared_CodePage::NumberToName($value); + break; + case 0x02: // Title + $this->phpExcel->getProperties()->setTitle($value); + break; + case 0x03: // Subject + $this->phpExcel->getProperties()->setSubject($value); + break; + case 0x04: // Author (Creator) + $this->phpExcel->getProperties()->setCreator($value); + break; + case 0x05: // Keywords + $this->phpExcel->getProperties()->setKeywords($value); + break; + case 0x06: // Comments (Description) + $this->phpExcel->getProperties()->setDescription($value); + break; + case 0x07: // Template + // Not supported by PHPExcel + break; + case 0x08: // Last Saved By (LastModifiedBy) + $this->phpExcel->getProperties()->setLastModifiedBy($value); + break; + case 0x09: // Revision + // Not supported by PHPExcel + break; + case 0x0A: // Total Editing Time + // Not supported by PHPExcel + break; + case 0x0B: // Last Printed + // Not supported by PHPExcel + break; + case 0x0C: // Created Date/Time + $this->phpExcel->getProperties()->setCreated($value); + break; + case 0x0D: // Modified Date/Time + $this->phpExcel->getProperties()->setModified($value); + break; + case 0x0E: // Number of Pages + // Not supported by PHPExcel + break; + case 0x0F: // Number of Words + // Not supported by PHPExcel + break; + case 0x10: // Number of Characters + // Not supported by PHPExcel + break; + case 0x11: // Thumbnail + // Not supported by PHPExcel + break; + case 0x12: // Name of creating application + // Not supported by PHPExcel + break; + case 0x13: // Security + // Not supported by PHPExcel + break; + } + } + } + + + /** + * Read additional document summary information + */ + private function readDocumentSummaryInformation() + { + if (!isset($this->documentSummaryInformation)) { + return; + } + + // offset: 0; size: 2; must be 0xFE 0xFF (UTF-16 LE byte order mark) + // offset: 2; size: 2; + // offset: 4; size: 2; OS version + // offset: 6; size: 2; OS indicator + // offset: 8; size: 16 + // offset: 24; size: 4; section count + $secCount = self::getInt4d($this->documentSummaryInformation, 24); +// echo '$secCount = ', $secCount,'
'; + + // offset: 28; size: 16; first section's class id: 02 d5 cd d5 9c 2e 1b 10 93 97 08 00 2b 2c f9 ae + // offset: 44; size: 4; first section offset + $secOffset = self::getInt4d($this->documentSummaryInformation, 44); +// echo '$secOffset = ', $secOffset,'
'; + + // section header + // offset: $secOffset; size: 4; section length + $secLength = self::getInt4d($this->documentSummaryInformation, $secOffset); +// echo '$secLength = ', $secLength,'
'; + + // offset: $secOffset+4; size: 4; property count + $countProperties = self::getInt4d($this->documentSummaryInformation, $secOffset+4); +// echo '$countProperties = ', $countProperties,'
'; + + // initialize code page (used to resolve string values) + $codePage = 'CP1252'; + + // offset: ($secOffset+8); size: var + // loop through property decarations and properties + for ($i = 0; $i < $countProperties; ++$i) { +// echo 'Property ', $i,'
'; + // offset: ($secOffset+8) + (8 * $i); size: 4; property ID + $id = self::getInt4d($this->documentSummaryInformation, ($secOffset+8) + (8 * $i)); +// echo 'ID is ', $id,'
'; + + // Use value of property id as appropriate + // offset: 60 + 8 * $i; size: 4; offset from beginning of section (48) + $offset = self::getInt4d($this->documentSummaryInformation, ($secOffset+12) + (8 * $i)); + + $type = self::getInt4d($this->documentSummaryInformation, $secOffset + $offset); +// echo 'Type is ', $type,', '; + + // initialize property value + $value = null; + + // extract property value based on property type + switch ($type) { + case 0x02: // 2 byte signed integer + $value = self::getInt2d($this->documentSummaryInformation, $secOffset + 4 + $offset); + break; + case 0x03: // 4 byte signed integer + $value = self::getInt4d($this->documentSummaryInformation, $secOffset + 4 + $offset); + break; + case 0x0B: // Boolean + $value = self::getInt2d($this->documentSummaryInformation, $secOffset + 4 + $offset); + $value = ($value == 0 ? false : true); + break; + case 0x13: // 4 byte unsigned integer + // not needed yet, fix later if necessary + break; + case 0x1E: // null-terminated string prepended by dword string length + $byteLength = self::getInt4d($this->documentSummaryInformation, $secOffset + 4 + $offset); + $value = substr($this->documentSummaryInformation, $secOffset + 8 + $offset, $byteLength); + $value = PHPExcel_Shared_String::ConvertEncoding($value, 'UTF-8', $codePage); + $value = rtrim($value); + break; + case 0x40: // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601) + // PHP-Time + $value = PHPExcel_Shared_OLE::OLE2LocalDate(substr($this->documentSummaryInformation, $secOffset + 4 + $offset, 8)); + break; + case 0x47: // Clipboard format + // not needed yet, fix later if necessary + break; + } + + switch ($id) { + case 0x01: // Code Page + $codePage = PHPExcel_Shared_CodePage::NumberToName($value); + break; + case 0x02: // Category + $this->phpExcel->getProperties()->setCategory($value); + break; + case 0x03: // Presentation Target + // Not supported by PHPExcel + break; + case 0x04: // Bytes + // Not supported by PHPExcel + break; + case 0x05: // Lines + // Not supported by PHPExcel + break; + case 0x06: // Paragraphs + // Not supported by PHPExcel + break; + case 0x07: // Slides + // Not supported by PHPExcel + break; + case 0x08: // Notes + // Not supported by PHPExcel + break; + case 0x09: // Hidden Slides + // Not supported by PHPExcel + break; + case 0x0A: // MM Clips + // Not supported by PHPExcel + break; + case 0x0B: // Scale Crop + // Not supported by PHPExcel + break; + case 0x0C: // Heading Pairs + // Not supported by PHPExcel + break; + case 0x0D: // Titles of Parts + // Not supported by PHPExcel + break; + case 0x0E: // Manager + $this->phpExcel->getProperties()->setManager($value); + break; + case 0x0F: // Company + $this->phpExcel->getProperties()->setCompany($value); + break; + case 0x10: // Links up-to-date + // Not supported by PHPExcel + break; + } + } + } + + + /** + * Reads a general type of BIFF record. Does nothing except for moving stream pointer forward to next record. + */ + private function readDefault() + { + $length = self::getInt2d($this->data, $this->pos + 2); +// $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + } + + + /** + * The NOTE record specifies a comment associated with a particular cell. In Excel 95 (BIFF7) and earlier versions, + * this record stores a note (cell note). This feature was significantly enhanced in Excel 97. + */ + private function readNote() + { +// echo 'Read Cell Annotation
'; + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly) { + return; + } + + $cellAddress = $this->readBIFF8CellAddress(substr($recordData, 0, 4)); + if ($this->version == self::XLS_BIFF8) { + $noteObjID = self::getInt2d($recordData, 6); + $noteAuthor = self::readUnicodeStringLong(substr($recordData, 8)); + $noteAuthor = $noteAuthor['value']; +// echo 'Note Address=', $cellAddress,'
'; +// echo 'Note Object ID=', $noteObjID,'
'; +// echo 'Note Author=', $noteAuthor,'
'; +// + $this->cellNotes[$noteObjID] = array( + 'cellRef' => $cellAddress, + 'objectID' => $noteObjID, + 'author' => $noteAuthor + ); + } else { + $extension = false; + if ($cellAddress == '$B$65536') { + // If the address row is -1 and the column is 0, (which translates as $B$65536) then this is a continuation + // note from the previous cell annotation. We're not yet handling this, so annotations longer than the + // max 2048 bytes will probably throw a wobbly. + $row = self::getInt2d($recordData, 0); + $extension = true; + $cellAddress = array_pop(array_keys($this->phpSheet->getComments())); + } +// echo 'Note Address=', $cellAddress,'
'; + + $cellAddress = str_replace('$', '', $cellAddress); + $noteLength = self::getInt2d($recordData, 4); + $noteText = trim(substr($recordData, 6)); +// echo 'Note Length=', $noteLength,'
'; +// echo 'Note Text=', $noteText,'
'; + + if ($extension) { + // Concatenate this extension with the currently set comment for the cell + $comment = $this->phpSheet->getComment($cellAddress); + $commentText = $comment->getText()->getPlainText(); + $comment->setText($this->parseRichText($commentText.$noteText)); + } else { + // Set comment for the cell + $this->phpSheet->getComment($cellAddress)->setText($this->parseRichText($noteText)); +// ->setAuthor($author) + } + } + + } + + + /** + * The TEXT Object record contains the text associated with a cell annotation. + */ + private function readTextObject() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly) { + return; + } + + // recordData consists of an array of subrecords looking like this: + // grbit: 2 bytes; Option Flags + // rot: 2 bytes; rotation + // cchText: 2 bytes; length of the text (in the first continue record) + // cbRuns: 2 bytes; length of the formatting (in the second continue record) + // followed by the continuation records containing the actual text and formatting + $grbitOpts = self::getInt2d($recordData, 0); + $rot = self::getInt2d($recordData, 2); + $cchText = self::getInt2d($recordData, 10); + $cbRuns = self::getInt2d($recordData, 12); + $text = $this->getSplicedRecordData(); + + $this->textObjects[$this->textObjRef] = array( + 'text' => substr($text["recordData"], $text["spliceOffsets"][0]+1, $cchText), + 'format' => substr($text["recordData"], $text["spliceOffsets"][1], $cbRuns), + 'alignment' => $grbitOpts, + 'rotation' => $rot + ); + +// echo '_readTextObject()
'; +// var_dump($this->textObjects[$this->textObjRef]); +// echo '
'; + } + + + /** + * Read BOF + */ + private function readBof() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = substr($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 2; size: 2; type of the following data + $substreamType = self::getInt2d($recordData, 2); + + switch ($substreamType) { + case self::XLS_WorkbookGlobals: + $version = self::getInt2d($recordData, 0); + if (($version != self::XLS_BIFF8) && ($version != self::XLS_BIFF7)) { + throw new PHPExcel_Reader_Exception('Cannot read this Excel file. Version is too old.'); + } + $this->version = $version; + break; + case self::XLS_Worksheet: + // do not use this version information for anything + // it is unreliable (OpenOffice doc, 5.8), use only version information from the global stream + break; + default: + // substream, e.g. chart + // just skip the entire substream + do { + $code = self::getInt2d($this->data, $this->pos); + $this->readDefault(); + } while ($code != self::XLS_TYPE_EOF && $this->pos < $this->dataSize); + break; + } + } + + + /** + * FILEPASS + * + * This record is part of the File Protection Block. It + * contains information about the read/write password of the + * file. All record contents following this record will be + * encrypted. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + * + * The decryption functions and objects used from here on in + * are based on the source of Spreadsheet-ParseExcel: + * http://search.cpan.org/~jmcnamara/Spreadsheet-ParseExcel/ + */ + private function readFilepass() + { + $length = self::getInt2d($this->data, $this->pos + 2); + + if ($length != 54) { + throw new PHPExcel_Reader_Exception('Unexpected file pass record length'); + } + + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->verifyPassword('VelvetSweatshop', substr($recordData, 6, 16), substr($recordData, 22, 16), substr($recordData, 38, 16), $this->md5Ctxt)) { + throw new PHPExcel_Reader_Exception('Decryption password incorrect'); + } + + $this->encryption = self::MS_BIFF_CRYPTO_RC4; + + // Decryption required from the record after next onwards + $this->encryptionStartPos = $this->pos + self::getInt2d($this->data, $this->pos + 2); + } + + /** + * Make an RC4 decryptor for the given block + * + * @var int $block Block for which to create decrypto + * @var string $valContext MD5 context state + * + * @return PHPExcel_Reader_Excel5_RC4 + */ + private function makeKey($block, $valContext) + { + $pwarray = str_repeat("\0", 64); + + for ($i = 0; $i < 5; $i++) { + $pwarray[$i] = $valContext[$i]; + } + + $pwarray[5] = chr($block & 0xff); + $pwarray[6] = chr(($block >> 8) & 0xff); + $pwarray[7] = chr(($block >> 16) & 0xff); + $pwarray[8] = chr(($block >> 24) & 0xff); + + $pwarray[9] = "\x80"; + $pwarray[56] = "\x48"; + + $md5 = new PHPExcel_Reader_Excel5_MD5(); + $md5->add($pwarray); + + $s = $md5->getContext(); + return new PHPExcel_Reader_Excel5_RC4($s); + } + + /** + * Verify RC4 file password + * + * @var string $password Password to check + * @var string $docid Document id + * @var string $salt_data Salt data + * @var string $hashedsalt_data Hashed salt data + * @var string &$valContext Set to the MD5 context of the value + * + * @return bool Success + */ + private function verifyPassword($password, $docid, $salt_data, $hashedsalt_data, &$valContext) + { + $pwarray = str_repeat("\0", 64); + + for ($i = 0; $i < strlen($password); $i++) { + $o = ord(substr($password, $i, 1)); + $pwarray[2 * $i] = chr($o & 0xff); + $pwarray[2 * $i + 1] = chr(($o >> 8) & 0xff); + } + $pwarray[2 * $i] = chr(0x80); + $pwarray[56] = chr(($i << 4) & 0xff); + + $md5 = new PHPExcel_Reader_Excel5_MD5(); + $md5->add($pwarray); + + $mdContext1 = $md5->getContext(); + + $offset = 0; + $keyoffset = 0; + $tocopy = 5; + + $md5->reset(); + + while ($offset != 16) { + if ((64 - $offset) < 5) { + $tocopy = 64 - $offset; + } + for ($i = 0; $i <= $tocopy; $i++) { + $pwarray[$offset + $i] = $mdContext1[$keyoffset + $i]; + } + $offset += $tocopy; + + if ($offset == 64) { + $md5->add($pwarray); + $keyoffset = $tocopy; + $tocopy = 5 - $tocopy; + $offset = 0; + continue; + } + + $keyoffset = 0; + $tocopy = 5; + for ($i = 0; $i < 16; $i++) { + $pwarray[$offset + $i] = $docid[$i]; + } + $offset += 16; + } + + $pwarray[16] = "\x80"; + for ($i = 0; $i < 47; $i++) { + $pwarray[17 + $i] = "\0"; + } + $pwarray[56] = "\x80"; + $pwarray[57] = "\x0a"; + + $md5->add($pwarray); + $valContext = $md5->getContext(); + + $key = $this->makeKey(0, $valContext); + + $salt = $key->RC4($salt_data); + $hashedsalt = $key->RC4($hashedsalt_data); + + $salt .= "\x80" . str_repeat("\0", 47); + $salt[56] = "\x80"; + + $md5->reset(); + $md5->add($salt); + $mdContext2 = $md5->getContext(); + + return $mdContext2 == $hashedsalt; + } + + /** + * CODEPAGE + * + * This record stores the text encoding used to write byte + * strings, stored as MS Windows code page identifier. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readCodepage() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; code page identifier + $codepage = self::getInt2d($recordData, 0); + + $this->codepage = PHPExcel_Shared_CodePage::NumberToName($codepage); + } + + + /** + * DATEMODE + * + * This record specifies the base date for displaying date + * values. All dates are stored as count of days past this + * base date. In BIFF2-BIFF4 this record is part of the + * Calculation Settings Block. In BIFF5-BIFF8 it is + * stored in the Workbook Globals Substream. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readDateMode() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; 0 = base 1900, 1 = base 1904 + PHPExcel_Shared_Date::setExcelCalendar(PHPExcel_Shared_Date::CALENDAR_WINDOWS_1900); + if (ord($recordData{0}) == 1) { + PHPExcel_Shared_Date::setExcelCalendar(PHPExcel_Shared_Date::CALENDAR_MAC_1904); + } + } + + + /** + * Read a FONT record + */ + private function readFont() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + $objFont = new PHPExcel_Style_Font(); + + // offset: 0; size: 2; height of the font (in twips = 1/20 of a point) + $size = self::getInt2d($recordData, 0); + $objFont->setSize($size / 20); + + // offset: 2; size: 2; option flags + // bit: 0; mask 0x0001; bold (redundant in BIFF5-BIFF8) + // bit: 1; mask 0x0002; italic + $isItalic = (0x0002 & self::getInt2d($recordData, 2)) >> 1; + if ($isItalic) { + $objFont->setItalic(true); + } + + // bit: 2; mask 0x0004; underlined (redundant in BIFF5-BIFF8) + // bit: 3; mask 0x0008; strike + $isStrike = (0x0008 & self::getInt2d($recordData, 2)) >> 3; + if ($isStrike) { + $objFont->setStrikethrough(true); + } + + // offset: 4; size: 2; colour index + $colorIndex = self::getInt2d($recordData, 4); + $objFont->colorIndex = $colorIndex; + + // offset: 6; size: 2; font weight + $weight = self::getInt2d($recordData, 6); + switch ($weight) { + case 0x02BC: + $objFont->setBold(true); + break; + } + + // offset: 8; size: 2; escapement type + $escapement = self::getInt2d($recordData, 8); + switch ($escapement) { + case 0x0001: + $objFont->setSuperScript(true); + break; + case 0x0002: + $objFont->setSubScript(true); + break; + } + + // offset: 10; size: 1; underline type + $underlineType = ord($recordData{10}); + switch ($underlineType) { + case 0x00: + break; // no underline + case 0x01: + $objFont->setUnderline(PHPExcel_Style_Font::UNDERLINE_SINGLE); + break; + case 0x02: + $objFont->setUnderline(PHPExcel_Style_Font::UNDERLINE_DOUBLE); + break; + case 0x21: + $objFont->setUnderline(PHPExcel_Style_Font::UNDERLINE_SINGLEACCOUNTING); + break; + case 0x22: + $objFont->setUnderline(PHPExcel_Style_Font::UNDERLINE_DOUBLEACCOUNTING); + break; + } + + // offset: 11; size: 1; font family + // offset: 12; size: 1; character set + // offset: 13; size: 1; not used + // offset: 14; size: var; font name + if ($this->version == self::XLS_BIFF8) { + $string = self::readUnicodeStringShort(substr($recordData, 14)); + } else { + $string = $this->readByteStringShort(substr($recordData, 14)); + } + $objFont->setName($string['value']); + + $this->objFonts[] = $objFont; + } + } + + + /** + * FORMAT + * + * This record contains information about a number format. + * All FORMAT records occur together in a sequential list. + * + * In BIFF2-BIFF4 other records referencing a FORMAT record + * contain a zero-based index into this list. From BIFF5 on + * the FORMAT record contains the index itself that will be + * used by other records. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readFormat() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + $indexCode = self::getInt2d($recordData, 0); + + if ($this->version == self::XLS_BIFF8) { + $string = self::readUnicodeStringLong(substr($recordData, 2)); + } else { + // BIFF7 + $string = $this->readByteStringShort(substr($recordData, 2)); + } + + $formatString = $string['value']; + $this->formats[$indexCode] = $formatString; + } + } + + + /** + * XF - Extended Format + * + * This record contains formatting information for cells, rows, columns or styles. + * According to http://support.microsoft.com/kb/147732 there are always at least 15 cell style XF + * and 1 cell XF. + * Inspection of Excel files generated by MS Office Excel shows that XF records 0-14 are cell style XF + * and XF record 15 is a cell XF + * We only read the first cell style XF and skip the remaining cell style XF records + * We read all cell XF records. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readXf() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + $objStyle = new PHPExcel_Style(); + + if (!$this->readDataOnly) { + // offset: 0; size: 2; Index to FONT record + if (self::getInt2d($recordData, 0) < 4) { + $fontIndex = self::getInt2d($recordData, 0); + } else { + // this has to do with that index 4 is omitted in all BIFF versions for some strange reason + // check the OpenOffice documentation of the FONT record + $fontIndex = self::getInt2d($recordData, 0) - 1; + } + $objStyle->setFont($this->objFonts[$fontIndex]); + + // offset: 2; size: 2; Index to FORMAT record + $numberFormatIndex = self::getInt2d($recordData, 2); + if (isset($this->formats[$numberFormatIndex])) { + // then we have user-defined format code + $numberformat = array('code' => $this->formats[$numberFormatIndex]); + } elseif (($code = PHPExcel_Style_NumberFormat::builtInFormatCode($numberFormatIndex)) !== '') { + // then we have built-in format code + $numberformat = array('code' => $code); + } else { + // we set the general format code + $numberformat = array('code' => 'General'); + } + $objStyle->getNumberFormat()->setFormatCode($numberformat['code']); + + // offset: 4; size: 2; XF type, cell protection, and parent style XF + // bit 2-0; mask 0x0007; XF_TYPE_PROT + $xfTypeProt = self::getInt2d($recordData, 4); + // bit 0; mask 0x01; 1 = cell is locked + $isLocked = (0x01 & $xfTypeProt) >> 0; + $objStyle->getProtection()->setLocked($isLocked ? PHPExcel_Style_Protection::PROTECTION_INHERIT : PHPExcel_Style_Protection::PROTECTION_UNPROTECTED); + + // bit 1; mask 0x02; 1 = Formula is hidden + $isHidden = (0x02 & $xfTypeProt) >> 1; + $objStyle->getProtection()->setHidden($isHidden ? PHPExcel_Style_Protection::PROTECTION_PROTECTED : PHPExcel_Style_Protection::PROTECTION_UNPROTECTED); + + // bit 2; mask 0x04; 0 = Cell XF, 1 = Cell Style XF + $isCellStyleXf = (0x04 & $xfTypeProt) >> 2; + + // offset: 6; size: 1; Alignment and text break + // bit 2-0, mask 0x07; horizontal alignment + $horAlign = (0x07 & ord($recordData{6})) >> 0; + switch ($horAlign) { + case 0: + $objStyle->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_GENERAL); + break; + case 1: + $objStyle->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_LEFT); + break; + case 2: + $objStyle->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER); + break; + case 3: + $objStyle->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_RIGHT); + break; + case 4: + $objStyle->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_FILL); + break; + case 5: + $objStyle->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_JUSTIFY); + break; + case 6: + $objStyle->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER_CONTINUOUS); + break; + } + // bit 3, mask 0x08; wrap text + $wrapText = (0x08 & ord($recordData{6})) >> 3; + switch ($wrapText) { + case 0: + $objStyle->getAlignment()->setWrapText(false); + break; + case 1: + $objStyle->getAlignment()->setWrapText(true); + break; + } + // bit 6-4, mask 0x70; vertical alignment + $vertAlign = (0x70 & ord($recordData{6})) >> 4; + switch ($vertAlign) { + case 0: + $objStyle->getAlignment()->setVertical(PHPExcel_Style_Alignment::VERTICAL_TOP); + break; + case 1: + $objStyle->getAlignment()->setVertical(PHPExcel_Style_Alignment::VERTICAL_CENTER); + break; + case 2: + $objStyle->getAlignment()->setVertical(PHPExcel_Style_Alignment::VERTICAL_BOTTOM); + break; + case 3: + $objStyle->getAlignment()->setVertical(PHPExcel_Style_Alignment::VERTICAL_JUSTIFY); + break; + } + + if ($this->version == self::XLS_BIFF8) { + // offset: 7; size: 1; XF_ROTATION: Text rotation angle + $angle = ord($recordData{7}); + $rotation = 0; + if ($angle <= 90) { + $rotation = $angle; + } elseif ($angle <= 180) { + $rotation = 90 - $angle; + } elseif ($angle == 255) { + $rotation = -165; + } + $objStyle->getAlignment()->setTextRotation($rotation); + + // offset: 8; size: 1; Indentation, shrink to cell size, and text direction + // bit: 3-0; mask: 0x0F; indent level + $indent = (0x0F & ord($recordData{8})) >> 0; + $objStyle->getAlignment()->setIndent($indent); + + // bit: 4; mask: 0x10; 1 = shrink content to fit into cell + $shrinkToFit = (0x10 & ord($recordData{8})) >> 4; + switch ($shrinkToFit) { + case 0: + $objStyle->getAlignment()->setShrinkToFit(false); + break; + case 1: + $objStyle->getAlignment()->setShrinkToFit(true); + break; + } + + // offset: 9; size: 1; Flags used for attribute groups + + // offset: 10; size: 4; Cell border lines and background area + // bit: 3-0; mask: 0x0000000F; left style + if ($bordersLeftStyle = PHPExcel_Reader_Excel5_Style_Border::lookup((0x0000000F & self::getInt4d($recordData, 10)) >> 0)) { + $objStyle->getBorders()->getLeft()->setBorderStyle($bordersLeftStyle); + } + // bit: 7-4; mask: 0x000000F0; right style + if ($bordersRightStyle = PHPExcel_Reader_Excel5_Style_Border::lookup((0x000000F0 & self::getInt4d($recordData, 10)) >> 4)) { + $objStyle->getBorders()->getRight()->setBorderStyle($bordersRightStyle); + } + // bit: 11-8; mask: 0x00000F00; top style + if ($bordersTopStyle = PHPExcel_Reader_Excel5_Style_Border::lookup((0x00000F00 & self::getInt4d($recordData, 10)) >> 8)) { + $objStyle->getBorders()->getTop()->setBorderStyle($bordersTopStyle); + } + // bit: 15-12; mask: 0x0000F000; bottom style + if ($bordersBottomStyle = PHPExcel_Reader_Excel5_Style_Border::lookup((0x0000F000 & self::getInt4d($recordData, 10)) >> 12)) { + $objStyle->getBorders()->getBottom()->setBorderStyle($bordersBottomStyle); + } + // bit: 22-16; mask: 0x007F0000; left color + $objStyle->getBorders()->getLeft()->colorIndex = (0x007F0000 & self::getInt4d($recordData, 10)) >> 16; + + // bit: 29-23; mask: 0x3F800000; right color + $objStyle->getBorders()->getRight()->colorIndex = (0x3F800000 & self::getInt4d($recordData, 10)) >> 23; + + // bit: 30; mask: 0x40000000; 1 = diagonal line from top left to right bottom + $diagonalDown = (0x40000000 & self::getInt4d($recordData, 10)) >> 30 ? true : false; + + // bit: 31; mask: 0x80000000; 1 = diagonal line from bottom left to top right + $diagonalUp = (0x80000000 & self::getInt4d($recordData, 10)) >> 31 ? true : false; + + if ($diagonalUp == false && $diagonalDown == false) { + $objStyle->getBorders()->setDiagonalDirection(PHPExcel_Style_Borders::DIAGONAL_NONE); + } elseif ($diagonalUp == true && $diagonalDown == false) { + $objStyle->getBorders()->setDiagonalDirection(PHPExcel_Style_Borders::DIAGONAL_UP); + } elseif ($diagonalUp == false && $diagonalDown == true) { + $objStyle->getBorders()->setDiagonalDirection(PHPExcel_Style_Borders::DIAGONAL_DOWN); + } elseif ($diagonalUp == true && $diagonalDown == true) { + $objStyle->getBorders()->setDiagonalDirection(PHPExcel_Style_Borders::DIAGONAL_BOTH); + } + + // offset: 14; size: 4; + // bit: 6-0; mask: 0x0000007F; top color + $objStyle->getBorders()->getTop()->colorIndex = (0x0000007F & self::getInt4d($recordData, 14)) >> 0; + + // bit: 13-7; mask: 0x00003F80; bottom color + $objStyle->getBorders()->getBottom()->colorIndex = (0x00003F80 & self::getInt4d($recordData, 14)) >> 7; + + // bit: 20-14; mask: 0x001FC000; diagonal color + $objStyle->getBorders()->getDiagonal()->colorIndex = (0x001FC000 & self::getInt4d($recordData, 14)) >> 14; + + // bit: 24-21; mask: 0x01E00000; diagonal style + if ($bordersDiagonalStyle = PHPExcel_Reader_Excel5_Style_Border::lookup((0x01E00000 & self::getInt4d($recordData, 14)) >> 21)) { + $objStyle->getBorders()->getDiagonal()->setBorderStyle($bordersDiagonalStyle); + } + + // bit: 31-26; mask: 0xFC000000 fill pattern + if ($fillType = PHPExcel_Reader_Excel5_Style_FillPattern::lookup((0xFC000000 & self::getInt4d($recordData, 14)) >> 26)) { + $objStyle->getFill()->setFillType($fillType); + } + // offset: 18; size: 2; pattern and background colour + // bit: 6-0; mask: 0x007F; color index for pattern color + $objStyle->getFill()->startcolorIndex = (0x007F & self::getInt2d($recordData, 18)) >> 0; + + // bit: 13-7; mask: 0x3F80; color index for pattern background + $objStyle->getFill()->endcolorIndex = (0x3F80 & self::getInt2d($recordData, 18)) >> 7; + } else { + // BIFF5 + + // offset: 7; size: 1; Text orientation and flags + $orientationAndFlags = ord($recordData{7}); + + // bit: 1-0; mask: 0x03; XF_ORIENTATION: Text orientation + $xfOrientation = (0x03 & $orientationAndFlags) >> 0; + switch ($xfOrientation) { + case 0: + $objStyle->getAlignment()->setTextRotation(0); + break; + case 1: + $objStyle->getAlignment()->setTextRotation(-165); + break; + case 2: + $objStyle->getAlignment()->setTextRotation(90); + break; + case 3: + $objStyle->getAlignment()->setTextRotation(-90); + break; + } + + // offset: 8; size: 4; cell border lines and background area + $borderAndBackground = self::getInt4d($recordData, 8); + + // bit: 6-0; mask: 0x0000007F; color index for pattern color + $objStyle->getFill()->startcolorIndex = (0x0000007F & $borderAndBackground) >> 0; + + // bit: 13-7; mask: 0x00003F80; color index for pattern background + $objStyle->getFill()->endcolorIndex = (0x00003F80 & $borderAndBackground) >> 7; + + // bit: 21-16; mask: 0x003F0000; fill pattern + $objStyle->getFill()->setFillType(PHPExcel_Reader_Excel5_Style_FillPattern::lookup((0x003F0000 & $borderAndBackground) >> 16)); + + // bit: 24-22; mask: 0x01C00000; bottom line style + $objStyle->getBorders()->getBottom()->setBorderStyle(PHPExcel_Reader_Excel5_Style_Border::lookup((0x01C00000 & $borderAndBackground) >> 22)); + + // bit: 31-25; mask: 0xFE000000; bottom line color + $objStyle->getBorders()->getBottom()->colorIndex = (0xFE000000 & $borderAndBackground) >> 25; + + // offset: 12; size: 4; cell border lines + $borderLines = self::getInt4d($recordData, 12); + + // bit: 2-0; mask: 0x00000007; top line style + $objStyle->getBorders()->getTop()->setBorderStyle(PHPExcel_Reader_Excel5_Style_Border::lookup((0x00000007 & $borderLines) >> 0)); + + // bit: 5-3; mask: 0x00000038; left line style + $objStyle->getBorders()->getLeft()->setBorderStyle(PHPExcel_Reader_Excel5_Style_Border::lookup((0x00000038 & $borderLines) >> 3)); + + // bit: 8-6; mask: 0x000001C0; right line style + $objStyle->getBorders()->getRight()->setBorderStyle(PHPExcel_Reader_Excel5_Style_Border::lookup((0x000001C0 & $borderLines) >> 6)); + + // bit: 15-9; mask: 0x0000FE00; top line color index + $objStyle->getBorders()->getTop()->colorIndex = (0x0000FE00 & $borderLines) >> 9; + + // bit: 22-16; mask: 0x007F0000; left line color index + $objStyle->getBorders()->getLeft()->colorIndex = (0x007F0000 & $borderLines) >> 16; + + // bit: 29-23; mask: 0x3F800000; right line color index + $objStyle->getBorders()->getRight()->colorIndex = (0x3F800000 & $borderLines) >> 23; + } + + // add cellStyleXf or cellXf and update mapping + if ($isCellStyleXf) { + // we only read one style XF record which is always the first + if ($this->xfIndex == 0) { + $this->phpExcel->addCellStyleXf($objStyle); + $this->mapCellStyleXfIndex[$this->xfIndex] = 0; + } + } else { + // we read all cell XF records + $this->phpExcel->addCellXf($objStyle); + $this->mapCellXfIndex[$this->xfIndex] = count($this->phpExcel->getCellXfCollection()) - 1; + } + + // update XF index for when we read next record + ++$this->xfIndex; + } + } + + + /** + * + */ + private function readXfExt() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; 0x087D = repeated header + + // offset: 2; size: 2 + + // offset: 4; size: 8; not used + + // offset: 12; size: 2; record version + + // offset: 14; size: 2; index to XF record which this record modifies + $ixfe = self::getInt2d($recordData, 14); + + // offset: 16; size: 2; not used + + // offset: 18; size: 2; number of extension properties that follow + $cexts = self::getInt2d($recordData, 18); + + // start reading the actual extension data + $offset = 20; + while ($offset < $length) { + // extension type + $extType = self::getInt2d($recordData, $offset); + + // extension length + $cb = self::getInt2d($recordData, $offset + 2); + + // extension data + $extData = substr($recordData, $offset + 4, $cb); + + switch ($extType) { + case 4: // fill start color + $xclfType = self::getInt2d($extData, 0); // color type + $xclrValue = substr($extData, 4, 4); // color value (value based on color type) + + if ($xclfType == 2) { + $rgb = sprintf('%02X%02X%02X', ord($xclrValue{0}), ord($xclrValue{1}), ord($xclrValue{2})); + + // modify the relevant style property + if (isset($this->mapCellXfIndex[$ixfe])) { + $fill = $this->phpExcel->getCellXfByIndex($this->mapCellXfIndex[$ixfe])->getFill(); + $fill->getStartColor()->setRGB($rgb); + unset($fill->startcolorIndex); // normal color index does not apply, discard + } + } + break; + case 5: // fill end color + $xclfType = self::getInt2d($extData, 0); // color type + $xclrValue = substr($extData, 4, 4); // color value (value based on color type) + + if ($xclfType == 2) { + $rgb = sprintf('%02X%02X%02X', ord($xclrValue{0}), ord($xclrValue{1}), ord($xclrValue{2})); + + // modify the relevant style property + if (isset($this->mapCellXfIndex[$ixfe])) { + $fill = $this->phpExcel->getCellXfByIndex($this->mapCellXfIndex[$ixfe])->getFill(); + $fill->getEndColor()->setRGB($rgb); + unset($fill->endcolorIndex); // normal color index does not apply, discard + } + } + break; + case 7: // border color top + $xclfType = self::getInt2d($extData, 0); // color type + $xclrValue = substr($extData, 4, 4); // color value (value based on color type) + + if ($xclfType == 2) { + $rgb = sprintf('%02X%02X%02X', ord($xclrValue{0}), ord($xclrValue{1}), ord($xclrValue{2})); + + // modify the relevant style property + if (isset($this->mapCellXfIndex[$ixfe])) { + $top = $this->phpExcel->getCellXfByIndex($this->mapCellXfIndex[$ixfe])->getBorders()->getTop(); + $top->getColor()->setRGB($rgb); + unset($top->colorIndex); // normal color index does not apply, discard + } + } + break; + case 8: // border color bottom + $xclfType = self::getInt2d($extData, 0); // color type + $xclrValue = substr($extData, 4, 4); // color value (value based on color type) + + if ($xclfType == 2) { + $rgb = sprintf('%02X%02X%02X', ord($xclrValue{0}), ord($xclrValue{1}), ord($xclrValue{2})); + + // modify the relevant style property + if (isset($this->mapCellXfIndex[$ixfe])) { + $bottom = $this->phpExcel->getCellXfByIndex($this->mapCellXfIndex[$ixfe])->getBorders()->getBottom(); + $bottom->getColor()->setRGB($rgb); + unset($bottom->colorIndex); // normal color index does not apply, discard + } + } + break; + case 9: // border color left + $xclfType = self::getInt2d($extData, 0); // color type + $xclrValue = substr($extData, 4, 4); // color value (value based on color type) + + if ($xclfType == 2) { + $rgb = sprintf('%02X%02X%02X', ord($xclrValue{0}), ord($xclrValue{1}), ord($xclrValue{2})); + + // modify the relevant style property + if (isset($this->mapCellXfIndex[$ixfe])) { + $left = $this->phpExcel->getCellXfByIndex($this->mapCellXfIndex[$ixfe])->getBorders()->getLeft(); + $left->getColor()->setRGB($rgb); + unset($left->colorIndex); // normal color index does not apply, discard + } + } + break; + case 10: // border color right + $xclfType = self::getInt2d($extData, 0); // color type + $xclrValue = substr($extData, 4, 4); // color value (value based on color type) + + if ($xclfType == 2) { + $rgb = sprintf('%02X%02X%02X', ord($xclrValue{0}), ord($xclrValue{1}), ord($xclrValue{2})); + + // modify the relevant style property + if (isset($this->mapCellXfIndex[$ixfe])) { + $right = $this->phpExcel->getCellXfByIndex($this->mapCellXfIndex[$ixfe])->getBorders()->getRight(); + $right->getColor()->setRGB($rgb); + unset($right->colorIndex); // normal color index does not apply, discard + } + } + break; + case 11: // border color diagonal + $xclfType = self::getInt2d($extData, 0); // color type + $xclrValue = substr($extData, 4, 4); // color value (value based on color type) + + if ($xclfType == 2) { + $rgb = sprintf('%02X%02X%02X', ord($xclrValue{0}), ord($xclrValue{1}), ord($xclrValue{2})); + + // modify the relevant style property + if (isset($this->mapCellXfIndex[$ixfe])) { + $diagonal = $this->phpExcel->getCellXfByIndex($this->mapCellXfIndex[$ixfe])->getBorders()->getDiagonal(); + $diagonal->getColor()->setRGB($rgb); + unset($diagonal->colorIndex); // normal color index does not apply, discard + } + } + break; + case 13: // font color + $xclfType = self::getInt2d($extData, 0); // color type + $xclrValue = substr($extData, 4, 4); // color value (value based on color type) + + if ($xclfType == 2) { + $rgb = sprintf('%02X%02X%02X', ord($xclrValue{0}), ord($xclrValue{1}), ord($xclrValue{2})); + + // modify the relevant style property + if (isset($this->mapCellXfIndex[$ixfe])) { + $font = $this->phpExcel->getCellXfByIndex($this->mapCellXfIndex[$ixfe])->getFont(); + $font->getColor()->setRGB($rgb); + unset($font->colorIndex); // normal color index does not apply, discard + } + } + break; + } + + $offset += $cb; + } + } + + } + + + /** + * Read STYLE record + */ + private function readStyle() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; index to XF record and flag for built-in style + $ixfe = self::getInt2d($recordData, 0); + + // bit: 11-0; mask 0x0FFF; index to XF record + $xfIndex = (0x0FFF & $ixfe) >> 0; + + // bit: 15; mask 0x8000; 0 = user-defined style, 1 = built-in style + $isBuiltIn = (bool) ((0x8000 & $ixfe) >> 15); + + if ($isBuiltIn) { + // offset: 2; size: 1; identifier for built-in style + $builtInId = ord($recordData{2}); + + switch ($builtInId) { + case 0x00: + // currently, we are not using this for anything + break; + default: + break; + } + } else { + // user-defined; not supported by PHPExcel + } + } + } + + + /** + * Read PALETTE record + */ + private function readPalette() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; number of following colors + $nm = self::getInt2d($recordData, 0); + + // list of RGB colors + for ($i = 0; $i < $nm; ++$i) { + $rgb = substr($recordData, 2 + 4 * $i, 4); + $this->palette[] = self::readRGB($rgb); + } + } + } + + + /** + * SHEET + * + * This record is located in the Workbook Globals + * Substream and represents a sheet inside the workbook. + * One SHEET record is written for each sheet. It stores the + * sheet name and a stream offset to the BOF record of the + * respective Sheet Substream within the Workbook Stream. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readSheet() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // offset: 0; size: 4; absolute stream position of the BOF record of the sheet + // NOTE: not encrypted + $rec_offset = self::getInt4d($this->data, $this->pos + 4); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 4; size: 1; sheet state + switch (ord($recordData{4})) { + case 0x00: + $sheetState = PHPExcel_Worksheet::SHEETSTATE_VISIBLE; + break; + case 0x01: + $sheetState = PHPExcel_Worksheet::SHEETSTATE_HIDDEN; + break; + case 0x02: + $sheetState = PHPExcel_Worksheet::SHEETSTATE_VERYHIDDEN; + break; + default: + $sheetState = PHPExcel_Worksheet::SHEETSTATE_VISIBLE; + break; + } + + // offset: 5; size: 1; sheet type + $sheetType = ord($recordData{5}); + + // offset: 6; size: var; sheet name + if ($this->version == self::XLS_BIFF8) { + $string = self::readUnicodeStringShort(substr($recordData, 6)); + $rec_name = $string['value']; + } elseif ($this->version == self::XLS_BIFF7) { + $string = $this->readByteStringShort(substr($recordData, 6)); + $rec_name = $string['value']; + } + + $this->sheets[] = array( + 'name' => $rec_name, + 'offset' => $rec_offset, + 'sheetState' => $sheetState, + 'sheetType' => $sheetType, + ); + } + + + /** + * Read EXTERNALBOOK record + */ + private function readExternalBook() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset within record data + $offset = 0; + + // there are 4 types of records + if (strlen($recordData) > 4) { + // external reference + // offset: 0; size: 2; number of sheet names ($nm) + $nm = self::getInt2d($recordData, 0); + $offset += 2; + + // offset: 2; size: var; encoded URL without sheet name (Unicode string, 16-bit length) + $encodedUrlString = self::readUnicodeStringLong(substr($recordData, 2)); + $offset += $encodedUrlString['size']; + + // offset: var; size: var; list of $nm sheet names (Unicode strings, 16-bit length) + $externalSheetNames = array(); + for ($i = 0; $i < $nm; ++$i) { + $externalSheetNameString = self::readUnicodeStringLong(substr($recordData, $offset)); + $externalSheetNames[] = $externalSheetNameString['value']; + $offset += $externalSheetNameString['size']; + } + + // store the record data + $this->externalBooks[] = array( + 'type' => 'external', + 'encodedUrl' => $encodedUrlString['value'], + 'externalSheetNames' => $externalSheetNames, + ); + } elseif (substr($recordData, 2, 2) == pack('CC', 0x01, 0x04)) { + // internal reference + // offset: 0; size: 2; number of sheet in this document + // offset: 2; size: 2; 0x01 0x04 + $this->externalBooks[] = array( + 'type' => 'internal', + ); + } elseif (substr($recordData, 0, 4) == pack('vCC', 0x0001, 0x01, 0x3A)) { + // add-in function + // offset: 0; size: 2; 0x0001 + $this->externalBooks[] = array( + 'type' => 'addInFunction', + ); + } elseif (substr($recordData, 0, 2) == pack('v', 0x0000)) { + // DDE links, OLE links + // offset: 0; size: 2; 0x0000 + // offset: 2; size: var; encoded source document name + $this->externalBooks[] = array( + 'type' => 'DDEorOLE', + ); + } + } + + + /** + * Read EXTERNNAME record. + */ + private function readExternName() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // external sheet references provided for named cells + if ($this->version == self::XLS_BIFF8) { + // offset: 0; size: 2; options + $options = self::getInt2d($recordData, 0); + + // offset: 2; size: 2; + + // offset: 4; size: 2; not used + + // offset: 6; size: var + $nameString = self::readUnicodeStringShort(substr($recordData, 6)); + + // offset: var; size: var; formula data + $offset = 6 + $nameString['size']; + $formula = $this->getFormulaFromStructure(substr($recordData, $offset)); + + $this->externalNames[] = array( + 'name' => $nameString['value'], + 'formula' => $formula, + ); + } + } + + + /** + * Read EXTERNSHEET record + */ + private function readExternSheet() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // external sheet references provided for named cells + if ($this->version == self::XLS_BIFF8) { + // offset: 0; size: 2; number of following ref structures + $nm = self::getInt2d($recordData, 0); + for ($i = 0; $i < $nm; ++$i) { + $this->ref[] = array( + // offset: 2 + 6 * $i; index to EXTERNALBOOK record + 'externalBookIndex' => self::getInt2d($recordData, 2 + 6 * $i), + // offset: 4 + 6 * $i; index to first sheet in EXTERNALBOOK record + 'firstSheetIndex' => self::getInt2d($recordData, 4 + 6 * $i), + // offset: 6 + 6 * $i; index to last sheet in EXTERNALBOOK record + 'lastSheetIndex' => self::getInt2d($recordData, 6 + 6 * $i), + ); + } + } + } + + + /** + * DEFINEDNAME + * + * This record is part of a Link Table. It contains the name + * and the token array of an internal defined name. Token + * arrays of defined names contain tokens with aberrant + * token classes. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readDefinedName() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->version == self::XLS_BIFF8) { + // retrieves named cells + + // offset: 0; size: 2; option flags + $opts = self::getInt2d($recordData, 0); + + // bit: 5; mask: 0x0020; 0 = user-defined name, 1 = built-in-name + $isBuiltInName = (0x0020 & $opts) >> 5; + + // offset: 2; size: 1; keyboard shortcut + + // offset: 3; size: 1; length of the name (character count) + $nlen = ord($recordData{3}); + + // offset: 4; size: 2; size of the formula data (it can happen that this is zero) + // note: there can also be additional data, this is not included in $flen + $flen = self::getInt2d($recordData, 4); + + // offset: 8; size: 2; 0=Global name, otherwise index to sheet (1-based) + $scope = self::getInt2d($recordData, 8); + + // offset: 14; size: var; Name (Unicode string without length field) + $string = self::readUnicodeString(substr($recordData, 14), $nlen); + + // offset: var; size: $flen; formula data + $offset = 14 + $string['size']; + $formulaStructure = pack('v', $flen) . substr($recordData, $offset); + + try { + $formula = $this->getFormulaFromStructure($formulaStructure); + } catch (PHPExcel_Exception $e) { + $formula = ''; + } + + $this->definedname[] = array( + 'isBuiltInName' => $isBuiltInName, + 'name' => $string['value'], + 'formula' => $formula, + 'scope' => $scope, + ); + } + } + + + /** + * Read MSODRAWINGGROUP record + */ + private function readMsoDrawingGroup() + { + $length = self::getInt2d($this->data, $this->pos + 2); + + // get spliced record data + $splicedRecordData = $this->getSplicedRecordData(); + $recordData = $splicedRecordData['recordData']; + + $this->drawingGroupData .= $recordData; + } + + + /** + * SST - Shared String Table + * + * This record contains a list of all strings used anywhere + * in the workbook. Each string occurs only once. The + * workbook uses indexes into the list to reference the + * strings. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + **/ + private function readSst() + { + // offset within (spliced) record data + $pos = 0; + + // get spliced record data + $splicedRecordData = $this->getSplicedRecordData(); + + $recordData = $splicedRecordData['recordData']; + $spliceOffsets = $splicedRecordData['spliceOffsets']; + + // offset: 0; size: 4; total number of strings in the workbook + $pos += 4; + + // offset: 4; size: 4; number of following strings ($nm) + $nm = self::getInt4d($recordData, 4); + $pos += 4; + + // loop through the Unicode strings (16-bit length) + for ($i = 0; $i < $nm; ++$i) { + // number of characters in the Unicode string + $numChars = self::getInt2d($recordData, $pos); + $pos += 2; + + // option flags + $optionFlags = ord($recordData{$pos}); + ++$pos; + + // bit: 0; mask: 0x01; 0 = compressed; 1 = uncompressed + $isCompressed = (($optionFlags & 0x01) == 0) ; + + // bit: 2; mask: 0x02; 0 = ordinary; 1 = Asian phonetic + $hasAsian = (($optionFlags & 0x04) != 0); + + // bit: 3; mask: 0x03; 0 = ordinary; 1 = Rich-Text + $hasRichText = (($optionFlags & 0x08) != 0); + + if ($hasRichText) { + // number of Rich-Text formatting runs + $formattingRuns = self::getInt2d($recordData, $pos); + $pos += 2; + } + + if ($hasAsian) { + // size of Asian phonetic setting + $extendedRunLength = self::getInt4d($recordData, $pos); + $pos += 4; + } + + // expected byte length of character array if not split + $len = ($isCompressed) ? $numChars : $numChars * 2; + + // look up limit position + foreach ($spliceOffsets as $spliceOffset) { + // it can happen that the string is empty, therefore we need + // <= and not just < + if ($pos <= $spliceOffset) { + $limitpos = $spliceOffset; + break; + } + } + + if ($pos + $len <= $limitpos) { + // character array is not split between records + + $retstr = substr($recordData, $pos, $len); + $pos += $len; + } else { + // character array is split between records + + // first part of character array + $retstr = substr($recordData, $pos, $limitpos - $pos); + + $bytesRead = $limitpos - $pos; + + // remaining characters in Unicode string + $charsLeft = $numChars - (($isCompressed) ? $bytesRead : ($bytesRead / 2)); + + $pos = $limitpos; + + // keep reading the characters + while ($charsLeft > 0) { + // look up next limit position, in case the string span more than one continue record + foreach ($spliceOffsets as $spliceOffset) { + if ($pos < $spliceOffset) { + $limitpos = $spliceOffset; + break; + } + } + + // repeated option flags + // OpenOffice.org documentation 5.21 + $option = ord($recordData{$pos}); + ++$pos; + + if ($isCompressed && ($option == 0)) { + // 1st fragment compressed + // this fragment compressed + $len = min($charsLeft, $limitpos - $pos); + $retstr .= substr($recordData, $pos, $len); + $charsLeft -= $len; + $isCompressed = true; + } elseif (!$isCompressed && ($option != 0)) { + // 1st fragment uncompressed + // this fragment uncompressed + $len = min($charsLeft * 2, $limitpos - $pos); + $retstr .= substr($recordData, $pos, $len); + $charsLeft -= $len / 2; + $isCompressed = false; + } elseif (!$isCompressed && ($option == 0)) { + // 1st fragment uncompressed + // this fragment compressed + $len = min($charsLeft, $limitpos - $pos); + for ($j = 0; $j < $len; ++$j) { + $retstr .= $recordData{$pos + $j} . chr(0); + } + $charsLeft -= $len; + $isCompressed = false; + } else { + // 1st fragment compressed + // this fragment uncompressed + $newstr = ''; + for ($j = 0; $j < strlen($retstr); ++$j) { + $newstr .= $retstr[$j] . chr(0); + } + $retstr = $newstr; + $len = min($charsLeft * 2, $limitpos - $pos); + $retstr .= substr($recordData, $pos, $len); + $charsLeft -= $len / 2; + $isCompressed = false; + } + + $pos += $len; + } + } + + // convert to UTF-8 + $retstr = self::encodeUTF16($retstr, $isCompressed); + + // read additional Rich-Text information, if any + $fmtRuns = array(); + if ($hasRichText) { + // list of formatting runs + for ($j = 0; $j < $formattingRuns; ++$j) { + // first formatted character; zero-based + $charPos = self::getInt2d($recordData, $pos + $j * 4); + + // index to font record + $fontIndex = self::getInt2d($recordData, $pos + 2 + $j * 4); + + $fmtRuns[] = array( + 'charPos' => $charPos, + 'fontIndex' => $fontIndex, + ); + } + $pos += 4 * $formattingRuns; + } + + // read additional Asian phonetics information, if any + if ($hasAsian) { + // For Asian phonetic settings, we skip the extended string data + $pos += $extendedRunLength; + } + + // store the shared sting + $this->sst[] = array( + 'value' => $retstr, + 'fmtRuns' => $fmtRuns, + ); + } + + // getSplicedRecordData() takes care of moving current position in data stream + } + + + /** + * Read PRINTGRIDLINES record + */ + private function readPrintGridlines() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->version == self::XLS_BIFF8 && !$this->readDataOnly) { + // offset: 0; size: 2; 0 = do not print sheet grid lines; 1 = print sheet gridlines + $printGridlines = (bool) self::getInt2d($recordData, 0); + $this->phpSheet->setPrintGridlines($printGridlines); + } + } + + + /** + * Read DEFAULTROWHEIGHT record + */ + private function readDefaultRowHeight() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; option flags + // offset: 2; size: 2; default height for unused rows, (twips 1/20 point) + $height = self::getInt2d($recordData, 2); + $this->phpSheet->getDefaultRowDimension()->setRowHeight($height / 20); + } + + + /** + * Read SHEETPR record + */ + private function readSheetPr() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2 + + // bit: 6; mask: 0x0040; 0 = outline buttons above outline group + $isSummaryBelow = (0x0040 & self::getInt2d($recordData, 0)) >> 6; + $this->phpSheet->setShowSummaryBelow($isSummaryBelow); + + // bit: 7; mask: 0x0080; 0 = outline buttons left of outline group + $isSummaryRight = (0x0080 & self::getInt2d($recordData, 0)) >> 7; + $this->phpSheet->setShowSummaryRight($isSummaryRight); + + // bit: 8; mask: 0x100; 0 = scale printout in percent, 1 = fit printout to number of pages + // this corresponds to radio button setting in page setup dialog in Excel + $this->isFitToPages = (bool) ((0x0100 & self::getInt2d($recordData, 0)) >> 8); + } + + + /** + * Read HORIZONTALPAGEBREAKS record + */ + private function readHorizontalPageBreaks() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->version == self::XLS_BIFF8 && !$this->readDataOnly) { + // offset: 0; size: 2; number of the following row index structures + $nm = self::getInt2d($recordData, 0); + + // offset: 2; size: 6 * $nm; list of $nm row index structures + for ($i = 0; $i < $nm; ++$i) { + $r = self::getInt2d($recordData, 2 + 6 * $i); + $cf = self::getInt2d($recordData, 2 + 6 * $i + 2); + $cl = self::getInt2d($recordData, 2 + 6 * $i + 4); + + // not sure why two column indexes are necessary? + $this->phpSheet->setBreakByColumnAndRow($cf, $r, PHPExcel_Worksheet::BREAK_ROW); + } + } + } + + + /** + * Read VERTICALPAGEBREAKS record + */ + private function readVerticalPageBreaks() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->version == self::XLS_BIFF8 && !$this->readDataOnly) { + // offset: 0; size: 2; number of the following column index structures + $nm = self::getInt2d($recordData, 0); + + // offset: 2; size: 6 * $nm; list of $nm row index structures + for ($i = 0; $i < $nm; ++$i) { + $c = self::getInt2d($recordData, 2 + 6 * $i); + $rf = self::getInt2d($recordData, 2 + 6 * $i + 2); + $rl = self::getInt2d($recordData, 2 + 6 * $i + 4); + + // not sure why two row indexes are necessary? + $this->phpSheet->setBreakByColumnAndRow($c, $rf, PHPExcel_Worksheet::BREAK_COLUMN); + } + } + } + + + /** + * Read HEADER record + */ + private function readHeader() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: var + // realized that $recordData can be empty even when record exists + if ($recordData) { + if ($this->version == self::XLS_BIFF8) { + $string = self::readUnicodeStringLong($recordData); + } else { + $string = $this->readByteStringShort($recordData); + } + + $this->phpSheet->getHeaderFooter()->setOddHeader($string['value']); + $this->phpSheet->getHeaderFooter()->setEvenHeader($string['value']); + } + } + } + + + /** + * Read FOOTER record + */ + private function readFooter() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: var + // realized that $recordData can be empty even when record exists + if ($recordData) { + if ($this->version == self::XLS_BIFF8) { + $string = self::readUnicodeStringLong($recordData); + } else { + $string = $this->readByteStringShort($recordData); + } + $this->phpSheet->getHeaderFooter()->setOddFooter($string['value']); + $this->phpSheet->getHeaderFooter()->setEvenFooter($string['value']); + } + } + } + + + /** + * Read HCENTER record + */ + private function readHcenter() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; 0 = print sheet left aligned, 1 = print sheet centered horizontally + $isHorizontalCentered = (bool) self::getInt2d($recordData, 0); + + $this->phpSheet->getPageSetup()->setHorizontalCentered($isHorizontalCentered); + } + } + + + /** + * Read VCENTER record + */ + private function readVcenter() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; 0 = print sheet aligned at top page border, 1 = print sheet vertically centered + $isVerticalCentered = (bool) self::getInt2d($recordData, 0); + + $this->phpSheet->getPageSetup()->setVerticalCentered($isVerticalCentered); + } + } + + + /** + * Read LEFTMARGIN record + */ + private function readLeftMargin() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 8 + $this->phpSheet->getPageMargins()->setLeft(self::extractNumber($recordData)); + } + } + + + /** + * Read RIGHTMARGIN record + */ + private function readRightMargin() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 8 + $this->phpSheet->getPageMargins()->setRight(self::extractNumber($recordData)); + } + } + + + /** + * Read TOPMARGIN record + */ + private function readTopMargin() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 8 + $this->phpSheet->getPageMargins()->setTop(self::extractNumber($recordData)); + } + } + + + /** + * Read BOTTOMMARGIN record + */ + private function readBottomMargin() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 8 + $this->phpSheet->getPageMargins()->setBottom(self::extractNumber($recordData)); + } + } + + + /** + * Read PAGESETUP record + */ + private function readPageSetup() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; paper size + $paperSize = self::getInt2d($recordData, 0); + + // offset: 2; size: 2; scaling factor + $scale = self::getInt2d($recordData, 2); + + // offset: 6; size: 2; fit worksheet width to this number of pages, 0 = use as many as needed + $fitToWidth = self::getInt2d($recordData, 6); + + // offset: 8; size: 2; fit worksheet height to this number of pages, 0 = use as many as needed + $fitToHeight = self::getInt2d($recordData, 8); + + // offset: 10; size: 2; option flags + + // bit: 1; mask: 0x0002; 0=landscape, 1=portrait + $isPortrait = (0x0002 & self::getInt2d($recordData, 10)) >> 1; + + // bit: 2; mask: 0x0004; 1= paper size, scaling factor, paper orient. not init + // when this bit is set, do not use flags for those properties + $isNotInit = (0x0004 & self::getInt2d($recordData, 10)) >> 2; + + if (!$isNotInit) { + $this->phpSheet->getPageSetup()->setPaperSize($paperSize); + switch ($isPortrait) { + case 0: + $this->phpSheet->getPageSetup()->setOrientation(PHPExcel_Worksheet_PageSetup::ORIENTATION_LANDSCAPE); + break; + case 1: + $this->phpSheet->getPageSetup()->setOrientation(PHPExcel_Worksheet_PageSetup::ORIENTATION_PORTRAIT); + break; + } + + $this->phpSheet->getPageSetup()->setScale($scale, false); + $this->phpSheet->getPageSetup()->setFitToPage((bool) $this->isFitToPages); + $this->phpSheet->getPageSetup()->setFitToWidth($fitToWidth, false); + $this->phpSheet->getPageSetup()->setFitToHeight($fitToHeight, false); + } + + // offset: 16; size: 8; header margin (IEEE 754 floating-point value) + $marginHeader = self::extractNumber(substr($recordData, 16, 8)); + $this->phpSheet->getPageMargins()->setHeader($marginHeader); + + // offset: 24; size: 8; footer margin (IEEE 754 floating-point value) + $marginFooter = self::extractNumber(substr($recordData, 24, 8)); + $this->phpSheet->getPageMargins()->setFooter($marginFooter); + } + } + + + /** + * PROTECT - Sheet protection (BIFF2 through BIFF8) + * if this record is omitted, then it also means no sheet protection + */ + private function readProtect() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly) { + return; + } + + // offset: 0; size: 2; + + // bit 0, mask 0x01; 1 = sheet is protected + $bool = (0x01 & self::getInt2d($recordData, 0)) >> 0; + $this->phpSheet->getProtection()->setSheet((bool)$bool); + } + + + /** + * SCENPROTECT + */ + private function readScenProtect() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly) { + return; + } + + // offset: 0; size: 2; + + // bit: 0, mask 0x01; 1 = scenarios are protected + $bool = (0x01 & self::getInt2d($recordData, 0)) >> 0; + + $this->phpSheet->getProtection()->setScenarios((bool)$bool); + } + + + /** + * OBJECTPROTECT + */ + private function readObjectProtect() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly) { + return; + } + + // offset: 0; size: 2; + + // bit: 0, mask 0x01; 1 = objects are protected + $bool = (0x01 & self::getInt2d($recordData, 0)) >> 0; + + $this->phpSheet->getProtection()->setObjects((bool)$bool); + } + + + /** + * PASSWORD - Sheet protection (hashed) password (BIFF2 through BIFF8) + */ + private function readPassword() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; 16-bit hash value of password + $password = strtoupper(dechex(self::getInt2d($recordData, 0))); // the hashed password + $this->phpSheet->getProtection()->setPassword($password, true); + } + } + + + /** + * Read DEFCOLWIDTH record + */ + private function readDefColWidth() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; default column width + $width = self::getInt2d($recordData, 0); + if ($width != 8) { + $this->phpSheet->getDefaultColumnDimension()->setWidth($width); + } + } + + + /** + * Read COLINFO record + */ + private function readColInfo() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; index to first column in range + $fc = self::getInt2d($recordData, 0); // first column index + + // offset: 2; size: 2; index to last column in range + $lc = self::getInt2d($recordData, 2); // first column index + + // offset: 4; size: 2; width of the column in 1/256 of the width of the zero character + $width = self::getInt2d($recordData, 4); + + // offset: 6; size: 2; index to XF record for default column formatting + $xfIndex = self::getInt2d($recordData, 6); + + // offset: 8; size: 2; option flags + // bit: 0; mask: 0x0001; 1= columns are hidden + $isHidden = (0x0001 & self::getInt2d($recordData, 8)) >> 0; + + // bit: 10-8; mask: 0x0700; outline level of the columns (0 = no outline) + $level = (0x0700 & self::getInt2d($recordData, 8)) >> 8; + + // bit: 12; mask: 0x1000; 1 = collapsed + $isCollapsed = (0x1000 & self::getInt2d($recordData, 8)) >> 12; + + // offset: 10; size: 2; not used + + for ($i = $fc; $i <= $lc; ++$i) { + if ($lc == 255 || $lc == 256) { + $this->phpSheet->getDefaultColumnDimension()->setWidth($width / 256); + break; + } + $this->phpSheet->getColumnDimensionByColumn($i)->setWidth($width / 256); + $this->phpSheet->getColumnDimensionByColumn($i)->setVisible(!$isHidden); + $this->phpSheet->getColumnDimensionByColumn($i)->setOutlineLevel($level); + $this->phpSheet->getColumnDimensionByColumn($i)->setCollapsed($isCollapsed); + $this->phpSheet->getColumnDimensionByColumn($i)->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + } + } + + + /** + * ROW + * + * This record contains the properties of a single row in a + * sheet. Rows and cells in a sheet are divided into blocks + * of 32 rows. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readRow() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; index of this row + $r = self::getInt2d($recordData, 0); + + // offset: 2; size: 2; index to column of the first cell which is described by a cell record + + // offset: 4; size: 2; index to column of the last cell which is described by a cell record, increased by 1 + + // offset: 6; size: 2; + + // bit: 14-0; mask: 0x7FFF; height of the row, in twips = 1/20 of a point + $height = (0x7FFF & self::getInt2d($recordData, 6)) >> 0; + + // bit: 15: mask: 0x8000; 0 = row has custom height; 1= row has default height + $useDefaultHeight = (0x8000 & self::getInt2d($recordData, 6)) >> 15; + + if (!$useDefaultHeight) { + $this->phpSheet->getRowDimension($r + 1)->setRowHeight($height / 20); + } + + // offset: 8; size: 2; not used + + // offset: 10; size: 2; not used in BIFF5-BIFF8 + + // offset: 12; size: 4; option flags and default row formatting + + // bit: 2-0: mask: 0x00000007; outline level of the row + $level = (0x00000007 & self::getInt4d($recordData, 12)) >> 0; + $this->phpSheet->getRowDimension($r + 1)->setOutlineLevel($level); + + // bit: 4; mask: 0x00000010; 1 = outline group start or ends here... and is collapsed + $isCollapsed = (0x00000010 & self::getInt4d($recordData, 12)) >> 4; + $this->phpSheet->getRowDimension($r + 1)->setCollapsed($isCollapsed); + + // bit: 5; mask: 0x00000020; 1 = row is hidden + $isHidden = (0x00000020 & self::getInt4d($recordData, 12)) >> 5; + $this->phpSheet->getRowDimension($r + 1)->setVisible(!$isHidden); + + // bit: 7; mask: 0x00000080; 1 = row has explicit format + $hasExplicitFormat = (0x00000080 & self::getInt4d($recordData, 12)) >> 7; + + // bit: 27-16; mask: 0x0FFF0000; only applies when hasExplicitFormat = 1; index to XF record + $xfIndex = (0x0FFF0000 & self::getInt4d($recordData, 12)) >> 16; + + if ($hasExplicitFormat) { + $this->phpSheet->getRowDimension($r + 1)->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + } + } + + + /** + * Read RK record + * This record represents a cell that contains an RK value + * (encoded integer or floating-point value). If a + * floating-point value cannot be encoded to an RK value, + * a NUMBER record will be written. This record replaces the + * record INTEGER written in BIFF2. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readRk() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; index to row + $row = self::getInt2d($recordData, 0); + + // offset: 2; size: 2; index to column + $column = self::getInt2d($recordData, 2); + $columnString = PHPExcel_Cell::stringFromColumnIndex($column); + + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + // offset: 4; size: 2; index to XF record + $xfIndex = self::getInt2d($recordData, 4); + + // offset: 6; size: 4; RK value + $rknum = self::getInt4d($recordData, 6); + $numValue = self::getIEEE754($rknum); + + $cell = $this->phpSheet->getCell($columnString . ($row + 1)); + if (!$this->readDataOnly) { + // add style information + $cell->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + + // add cell + $cell->setValueExplicit($numValue, PHPExcel_Cell_DataType::TYPE_NUMERIC); + } + } + + + /** + * Read LABELSST record + * This record represents a cell that contains a string. It + * replaces the LABEL record and RSTRING record used in + * BIFF2-BIFF5. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readLabelSst() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; index to row + $row = self::getInt2d($recordData, 0); + + // offset: 2; size: 2; index to column + $column = self::getInt2d($recordData, 2); + $columnString = PHPExcel_Cell::stringFromColumnIndex($column); + + $emptyCell = true; + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + // offset: 4; size: 2; index to XF record + $xfIndex = self::getInt2d($recordData, 4); + + // offset: 6; size: 4; index to SST record + $index = self::getInt4d($recordData, 6); + + // add cell + if (($fmtRuns = $this->sst[$index]['fmtRuns']) && !$this->readDataOnly) { + // then we should treat as rich text + $richText = new PHPExcel_RichText(); + $charPos = 0; + $sstCount = count($this->sst[$index]['fmtRuns']); + for ($i = 0; $i <= $sstCount; ++$i) { + if (isset($fmtRuns[$i])) { + $text = PHPExcel_Shared_String::Substring($this->sst[$index]['value'], $charPos, $fmtRuns[$i]['charPos'] - $charPos); + $charPos = $fmtRuns[$i]['charPos']; + } else { + $text = PHPExcel_Shared_String::Substring($this->sst[$index]['value'], $charPos, PHPExcel_Shared_String::CountCharacters($this->sst[$index]['value'])); + } + + if (PHPExcel_Shared_String::CountCharacters($text) > 0) { + if ($i == 0) { // first text run, no style + $richText->createText($text); + } else { + $textRun = $richText->createTextRun($text); + if (isset($fmtRuns[$i - 1])) { + if ($fmtRuns[$i - 1]['fontIndex'] < 4) { + $fontIndex = $fmtRuns[$i - 1]['fontIndex']; + } else { + // this has to do with that index 4 is omitted in all BIFF versions for some strange reason + // check the OpenOffice documentation of the FONT record + $fontIndex = $fmtRuns[$i - 1]['fontIndex'] - 1; + } + $textRun->setFont(clone $this->objFonts[$fontIndex]); + } + } + } + } + if ($this->readEmptyCells || trim($richText->getPlainText()) !== '') { + $cell = $this->phpSheet->getCell($columnString . ($row + 1)); + $cell->setValueExplicit($richText, PHPExcel_Cell_DataType::TYPE_STRING); + $emptyCell = false; + } + } else { + if ($this->readEmptyCells || trim($this->sst[$index]['value']) !== '') { + $cell = $this->phpSheet->getCell($columnString . ($row + 1)); + $cell->setValueExplicit($this->sst[$index]['value'], PHPExcel_Cell_DataType::TYPE_STRING); + $emptyCell = false; + } + } + + if (!$this->readDataOnly && !$emptyCell) { + // add style information + $cell->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + } + } + + + /** + * Read MULRK record + * This record represents a cell range containing RK value + * cells. All cells are located in the same row. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readMulRk() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; index to row + $row = self::getInt2d($recordData, 0); + + // offset: 2; size: 2; index to first column + $colFirst = self::getInt2d($recordData, 2); + + // offset: var; size: 2; index to last column + $colLast = self::getInt2d($recordData, $length - 2); + $columns = $colLast - $colFirst + 1; + + // offset within record data + $offset = 4; + + for ($i = 0; $i < $columns; ++$i) { + $columnString = PHPExcel_Cell::stringFromColumnIndex($colFirst + $i); + + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + // offset: var; size: 2; index to XF record + $xfIndex = self::getInt2d($recordData, $offset); + + // offset: var; size: 4; RK value + $numValue = self::getIEEE754(self::getInt4d($recordData, $offset + 2)); + $cell = $this->phpSheet->getCell($columnString . ($row + 1)); + if (!$this->readDataOnly) { + // add style + $cell->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + + // add cell value + $cell->setValueExplicit($numValue, PHPExcel_Cell_DataType::TYPE_NUMERIC); + } + + $offset += 6; + } + } + + + /** + * Read NUMBER record + * This record represents a cell that contains a + * floating-point value. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readNumber() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; index to row + $row = self::getInt2d($recordData, 0); + + // offset: 2; size 2; index to column + $column = self::getInt2d($recordData, 2); + $columnString = PHPExcel_Cell::stringFromColumnIndex($column); + + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + // offset 4; size: 2; index to XF record + $xfIndex = self::getInt2d($recordData, 4); + + $numValue = self::extractNumber(substr($recordData, 6, 8)); + + $cell = $this->phpSheet->getCell($columnString . ($row + 1)); + if (!$this->readDataOnly) { + // add cell style + $cell->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + + // add cell value + $cell->setValueExplicit($numValue, PHPExcel_Cell_DataType::TYPE_NUMERIC); + } + } + + + /** + * Read FORMULA record + perhaps a following STRING record if formula result is a string + * This record contains the token array and the result of a + * formula cell. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readFormula() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; row index + $row = self::getInt2d($recordData, 0); + + // offset: 2; size: 2; col index + $column = self::getInt2d($recordData, 2); + $columnString = PHPExcel_Cell::stringFromColumnIndex($column); + + // offset: 20: size: variable; formula structure + $formulaStructure = substr($recordData, 20); + + // offset: 14: size: 2; option flags, recalculate always, recalculate on open etc. + $options = self::getInt2d($recordData, 14); + + // bit: 0; mask: 0x0001; 1 = recalculate always + // bit: 1; mask: 0x0002; 1 = calculate on open + // bit: 2; mask: 0x0008; 1 = part of a shared formula + $isPartOfSharedFormula = (bool) (0x0008 & $options); + + // WARNING: + // We can apparently not rely on $isPartOfSharedFormula. Even when $isPartOfSharedFormula = true + // the formula data may be ordinary formula data, therefore we need to check + // explicitly for the tExp token (0x01) + $isPartOfSharedFormula = $isPartOfSharedFormula && ord($formulaStructure{2}) == 0x01; + + if ($isPartOfSharedFormula) { + // part of shared formula which means there will be a formula with a tExp token and nothing else + // get the base cell, grab tExp token + $baseRow = self::getInt2d($formulaStructure, 3); + $baseCol = self::getInt2d($formulaStructure, 5); + $this->_baseCell = PHPExcel_Cell::stringFromColumnIndex($baseCol). ($baseRow + 1); + } + + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + if ($isPartOfSharedFormula) { + // formula is added to this cell after the sheet has been read + $this->sharedFormulaParts[$columnString . ($row + 1)] = $this->_baseCell; + } + + // offset: 16: size: 4; not used + + // offset: 4; size: 2; XF index + $xfIndex = self::getInt2d($recordData, 4); + + // offset: 6; size: 8; result of the formula + if ((ord($recordData{6}) == 0) && (ord($recordData{12}) == 255) && (ord($recordData{13}) == 255)) { + // String formula. Result follows in appended STRING record + $dataType = PHPExcel_Cell_DataType::TYPE_STRING; + + // read possible SHAREDFMLA record + $code = self::getInt2d($this->data, $this->pos); + if ($code == self::XLS_TYPE_SHAREDFMLA) { + $this->readSharedFmla(); + } + + // read STRING record + $value = $this->readString(); + } elseif ((ord($recordData{6}) == 1) + && (ord($recordData{12}) == 255) + && (ord($recordData{13}) == 255)) { + // Boolean formula. Result is in +2; 0=false, 1=true + $dataType = PHPExcel_Cell_DataType::TYPE_BOOL; + $value = (bool) ord($recordData{8}); + } elseif ((ord($recordData{6}) == 2) + && (ord($recordData{12}) == 255) + && (ord($recordData{13}) == 255)) { + // Error formula. Error code is in +2 + $dataType = PHPExcel_Cell_DataType::TYPE_ERROR; + $value = PHPExcel_Reader_Excel5_ErrorCode::lookup(ord($recordData{8})); + } elseif ((ord($recordData{6}) == 3) + && (ord($recordData{12}) == 255) + && (ord($recordData{13}) == 255)) { + // Formula result is a null string + $dataType = PHPExcel_Cell_DataType::TYPE_NULL; + $value = ''; + } else { + // forumla result is a number, first 14 bytes like _NUMBER record + $dataType = PHPExcel_Cell_DataType::TYPE_NUMERIC; + $value = self::extractNumber(substr($recordData, 6, 8)); + } + + $cell = $this->phpSheet->getCell($columnString . ($row + 1)); + if (!$this->readDataOnly) { + // add cell style + $cell->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + + // store the formula + if (!$isPartOfSharedFormula) { + // not part of shared formula + // add cell value. If we can read formula, populate with formula, otherwise just used cached value + try { + if ($this->version != self::XLS_BIFF8) { + throw new PHPExcel_Reader_Exception('Not BIFF8. Can only read BIFF8 formulas'); + } + $formula = $this->getFormulaFromStructure($formulaStructure); // get formula in human language + $cell->setValueExplicit('=' . $formula, PHPExcel_Cell_DataType::TYPE_FORMULA); + + } catch (PHPExcel_Exception $e) { + $cell->setValueExplicit($value, $dataType); + } + } else { + if ($this->version == self::XLS_BIFF8) { + // do nothing at this point, formula id added later in the code + } else { + $cell->setValueExplicit($value, $dataType); + } + } + + // store the cached calculated value + $cell->setCalculatedValue($value); + } + } + + + /** + * Read a SHAREDFMLA record. This function just stores the binary shared formula in the reader, + * which usually contains relative references. + * These will be used to construct the formula in each shared formula part after the sheet is read. + */ + private function readSharedFmla() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0, size: 6; cell range address of the area used by the shared formula, not used for anything + $cellRange = substr($recordData, 0, 6); + $cellRange = $this->readBIFF5CellRangeAddressFixed($cellRange); // note: even BIFF8 uses BIFF5 syntax + + // offset: 6, size: 1; not used + + // offset: 7, size: 1; number of existing FORMULA records for this shared formula + $no = ord($recordData{7}); + + // offset: 8, size: var; Binary token array of the shared formula + $formula = substr($recordData, 8); + + // at this point we only store the shared formula for later use + $this->sharedFormulas[$this->_baseCell] = $formula; + } + + + /** + * Read a STRING record from current stream position and advance the stream pointer to next record + * This record is used for storing result from FORMULA record when it is a string, and + * it occurs directly after the FORMULA record + * + * @return string The string contents as UTF-8 + */ + private function readString() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->version == self::XLS_BIFF8) { + $string = self::readUnicodeStringLong($recordData); + $value = $string['value']; + } else { + $string = $this->readByteStringLong($recordData); + $value = $string['value']; + } + + return $value; + } + + + /** + * Read BOOLERR record + * This record represents a Boolean value or error value + * cell. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readBoolErr() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; row index + $row = self::getInt2d($recordData, 0); + + // offset: 2; size: 2; column index + $column = self::getInt2d($recordData, 2); + $columnString = PHPExcel_Cell::stringFromColumnIndex($column); + + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + // offset: 4; size: 2; index to XF record + $xfIndex = self::getInt2d($recordData, 4); + + // offset: 6; size: 1; the boolean value or error value + $boolErr = ord($recordData{6}); + + // offset: 7; size: 1; 0=boolean; 1=error + $isError = ord($recordData{7}); + + $cell = $this->phpSheet->getCell($columnString . ($row + 1)); + switch ($isError) { + case 0: // boolean + $value = (bool) $boolErr; + + // add cell value + $cell->setValueExplicit($value, PHPExcel_Cell_DataType::TYPE_BOOL); + break; + case 1: // error type + $value = PHPExcel_Reader_Excel5_ErrorCode::lookup($boolErr); + + // add cell value + $cell->setValueExplicit($value, PHPExcel_Cell_DataType::TYPE_ERROR); + break; + } + + if (!$this->readDataOnly) { + // add cell style + $cell->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + } + } + + + /** + * Read MULBLANK record + * This record represents a cell range of empty cells. All + * cells are located in the same row + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readMulBlank() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; index to row + $row = self::getInt2d($recordData, 0); + + // offset: 2; size: 2; index to first column + $fc = self::getInt2d($recordData, 2); + + // offset: 4; size: 2 x nc; list of indexes to XF records + // add style information + if (!$this->readDataOnly && $this->readEmptyCells) { + for ($i = 0; $i < $length / 2 - 3; ++$i) { + $columnString = PHPExcel_Cell::stringFromColumnIndex($fc + $i); + + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + $xfIndex = self::getInt2d($recordData, 4 + 2 * $i); + $this->phpSheet->getCell($columnString . ($row + 1))->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + } + } + + // offset: 6; size 2; index to last column (not needed) + } + + + /** + * Read LABEL record + * This record represents a cell that contains a string. In + * BIFF8 it is usually replaced by the LABELSST record. + * Excel still uses this record, if it copies unformatted + * text cells to the clipboard. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readLabel() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; index to row + $row = self::getInt2d($recordData, 0); + + // offset: 2; size: 2; index to column + $column = self::getInt2d($recordData, 2); + $columnString = PHPExcel_Cell::stringFromColumnIndex($column); + + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + // offset: 4; size: 2; XF index + $xfIndex = self::getInt2d($recordData, 4); + + // add cell value + // todo: what if string is very long? continue record + if ($this->version == self::XLS_BIFF8) { + $string = self::readUnicodeStringLong(substr($recordData, 6)); + $value = $string['value']; + } else { + $string = $this->readByteStringLong(substr($recordData, 6)); + $value = $string['value']; + } + if ($this->readEmptyCells || trim($value) !== '') { + $cell = $this->phpSheet->getCell($columnString . ($row + 1)); + $cell->setValueExplicit($value, PHPExcel_Cell_DataType::TYPE_STRING); + + if (!$this->readDataOnly) { + // add cell style + $cell->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + } + } + } + + + /** + * Read BLANK record + */ + private function readBlank() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; row index + $row = self::getInt2d($recordData, 0); + + // offset: 2; size: 2; col index + $col = self::getInt2d($recordData, 2); + $columnString = PHPExcel_Cell::stringFromColumnIndex($col); + + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + // offset: 4; size: 2; XF index + $xfIndex = self::getInt2d($recordData, 4); + + // add style information + if (!$this->readDataOnly && $this->readEmptyCells) { + $this->phpSheet->getCell($columnString . ($row + 1))->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + } + } + + + /** + * Read MSODRAWING record + */ + private function readMsoDrawing() + { + $length = self::getInt2d($this->data, $this->pos + 2); + + // get spliced record data + $splicedRecordData = $this->getSplicedRecordData(); + $recordData = $splicedRecordData['recordData']; + + $this->drawingData .= $recordData; + } + + + /** + * Read OBJ record + */ + private function readObj() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly || $this->version != self::XLS_BIFF8) { + return; + } + + // recordData consists of an array of subrecords looking like this: + // ft: 2 bytes; ftCmo type (0x15) + // cb: 2 bytes; size in bytes of ftCmo data + // ot: 2 bytes; Object Type + // id: 2 bytes; Object id number + // grbit: 2 bytes; Option Flags + // data: var; subrecord data + + // for now, we are just interested in the second subrecord containing the object type + $ftCmoType = self::getInt2d($recordData, 0); + $cbCmoSize = self::getInt2d($recordData, 2); + $otObjType = self::getInt2d($recordData, 4); + $idObjID = self::getInt2d($recordData, 6); + $grbitOpts = self::getInt2d($recordData, 6); + + $this->objs[] = array( + 'ftCmoType' => $ftCmoType, + 'cbCmoSize' => $cbCmoSize, + 'otObjType' => $otObjType, + 'idObjID' => $idObjID, + 'grbitOpts' => $grbitOpts + ); + $this->textObjRef = $idObjID; + +// echo '_readObj()
'; +// var_dump(end($this->objs)); +// echo '
'; + } + + + /** + * Read WINDOW2 record + */ + private function readWindow2() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; option flags + $options = self::getInt2d($recordData, 0); + + // offset: 2; size: 2; index to first visible row + $firstVisibleRow = self::getInt2d($recordData, 2); + + // offset: 4; size: 2; index to first visible colum + $firstVisibleColumn = self::getInt2d($recordData, 4); + if ($this->version === self::XLS_BIFF8) { + // offset: 8; size: 2; not used + // offset: 10; size: 2; cached magnification factor in page break preview (in percent); 0 = Default (60%) + // offset: 12; size: 2; cached magnification factor in normal view (in percent); 0 = Default (100%) + // offset: 14; size: 4; not used + $zoomscaleInPageBreakPreview = self::getInt2d($recordData, 10); + if ($zoomscaleInPageBreakPreview === 0) { + $zoomscaleInPageBreakPreview = 60; + } + $zoomscaleInNormalView = self::getInt2d($recordData, 12); + if ($zoomscaleInNormalView === 0) { + $zoomscaleInNormalView = 100; + } + } + + // bit: 1; mask: 0x0002; 0 = do not show gridlines, 1 = show gridlines + $showGridlines = (bool) ((0x0002 & $options) >> 1); + $this->phpSheet->setShowGridlines($showGridlines); + + // bit: 2; mask: 0x0004; 0 = do not show headers, 1 = show headers + $showRowColHeaders = (bool) ((0x0004 & $options) >> 2); + $this->phpSheet->setShowRowColHeaders($showRowColHeaders); + + // bit: 3; mask: 0x0008; 0 = panes are not frozen, 1 = panes are frozen + $this->frozen = (bool) ((0x0008 & $options) >> 3); + + // bit: 6; mask: 0x0040; 0 = columns from left to right, 1 = columns from right to left + $this->phpSheet->setRightToLeft((bool)((0x0040 & $options) >> 6)); + + // bit: 10; mask: 0x0400; 0 = sheet not active, 1 = sheet active + $isActive = (bool) ((0x0400 & $options) >> 10); + if ($isActive) { + $this->phpExcel->setActiveSheetIndex($this->phpExcel->getIndex($this->phpSheet)); + } + + // bit: 11; mask: 0x0800; 0 = normal view, 1 = page break view + $isPageBreakPreview = (bool) ((0x0800 & $options) >> 11); + + //FIXME: set $firstVisibleRow and $firstVisibleColumn + + if ($this->phpSheet->getSheetView()->getView() !== PHPExcel_Worksheet_SheetView::SHEETVIEW_PAGE_LAYOUT) { + //NOTE: this setting is inferior to page layout view(Excel2007-) + $view = $isPageBreakPreview ? PHPExcel_Worksheet_SheetView::SHEETVIEW_PAGE_BREAK_PREVIEW : PHPExcel_Worksheet_SheetView::SHEETVIEW_NORMAL; + $this->phpSheet->getSheetView()->setView($view); + if ($this->version === self::XLS_BIFF8) { + $zoomScale = $isPageBreakPreview ? $zoomscaleInPageBreakPreview : $zoomscaleInNormalView; + $this->phpSheet->getSheetView()->setZoomScale($zoomScale); + $this->phpSheet->getSheetView()->setZoomScaleNormal($zoomscaleInNormalView); + } + } + } + + /** + * Read PLV Record(Created by Excel2007 or upper) + */ + private function readPageLayoutView() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + //var_dump(unpack("vrt/vgrbitFrt/V2reserved/vwScalePLV/vgrbit", $recordData)); + + // offset: 0; size: 2; rt + //->ignore + $rt = self::getInt2d($recordData, 0); + // offset: 2; size: 2; grbitfr + //->ignore + $grbitFrt = self::getInt2d($recordData, 2); + // offset: 4; size: 8; reserved + //->ignore + + // offset: 12; size 2; zoom scale + $wScalePLV = self::getInt2d($recordData, 12); + // offset: 14; size 2; grbit + $grbit = self::getInt2d($recordData, 14); + + // decomprise grbit + $fPageLayoutView = $grbit & 0x01; + $fRulerVisible = ($grbit >> 1) & 0x01; //no support + $fWhitespaceHidden = ($grbit >> 3) & 0x01; //no support + + if ($fPageLayoutView === 1) { + $this->phpSheet->getSheetView()->setView(PHPExcel_Worksheet_SheetView::SHEETVIEW_PAGE_LAYOUT); + $this->phpSheet->getSheetView()->setZoomScale($wScalePLV); //set by Excel2007 only if SHEETVIEW_PAGE_LAYOUT + } + //otherwise, we cannot know whether SHEETVIEW_PAGE_LAYOUT or SHEETVIEW_PAGE_BREAK_PREVIEW. + } + + /** + * Read SCL record + */ + private function readScl() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; numerator of the view magnification + $numerator = self::getInt2d($recordData, 0); + + // offset: 2; size: 2; numerator of the view magnification + $denumerator = self::getInt2d($recordData, 2); + + // set the zoom scale (in percent) + $this->phpSheet->getSheetView()->setZoomScale($numerator * 100 / $denumerator); + } + + + /** + * Read PANE record + */ + private function readPane() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; position of vertical split + $px = self::getInt2d($recordData, 0); + + // offset: 2; size: 2; position of horizontal split + $py = self::getInt2d($recordData, 2); + + if ($this->frozen) { + // frozen panes + $this->phpSheet->freezePane(PHPExcel_Cell::stringFromColumnIndex($px) . ($py + 1)); + } else { + // unfrozen panes; split windows; not supported by PHPExcel core + } + } + } + + + /** + * Read SELECTION record. There is one such record for each pane in the sheet. + */ + private function readSelection() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 1; pane identifier + $paneId = ord($recordData{0}); + + // offset: 1; size: 2; index to row of the active cell + $r = self::getInt2d($recordData, 1); + + // offset: 3; size: 2; index to column of the active cell + $c = self::getInt2d($recordData, 3); + + // offset: 5; size: 2; index into the following cell range list to the + // entry that contains the active cell + $index = self::getInt2d($recordData, 5); + + // offset: 7; size: var; cell range address list containing all selected cell ranges + $data = substr($recordData, 7); + $cellRangeAddressList = $this->readBIFF5CellRangeAddressList($data); // note: also BIFF8 uses BIFF5 syntax + + $selectedCells = $cellRangeAddressList['cellRangeAddresses'][0]; + + // first row '1' + last row '16384' indicates that full column is selected (apparently also in BIFF8!) + if (preg_match('/^([A-Z]+1\:[A-Z]+)16384$/', $selectedCells)) { + $selectedCells = preg_replace('/^([A-Z]+1\:[A-Z]+)16384$/', '${1}1048576', $selectedCells); + } + + // first row '1' + last row '65536' indicates that full column is selected + if (preg_match('/^([A-Z]+1\:[A-Z]+)65536$/', $selectedCells)) { + $selectedCells = preg_replace('/^([A-Z]+1\:[A-Z]+)65536$/', '${1}1048576', $selectedCells); + } + + // first column 'A' + last column 'IV' indicates that full row is selected + if (preg_match('/^(A[0-9]+\:)IV([0-9]+)$/', $selectedCells)) { + $selectedCells = preg_replace('/^(A[0-9]+\:)IV([0-9]+)$/', '${1}XFD${2}', $selectedCells); + } + + $this->phpSheet->setSelectedCells($selectedCells); + } + } + + + private function includeCellRangeFiltered($cellRangeAddress) + { + $includeCellRange = true; + if ($this->getReadFilter() !== null) { + $includeCellRange = false; + $rangeBoundaries = PHPExcel_Cell::getRangeBoundaries($cellRangeAddress); + $rangeBoundaries[1][0]++; + for ($row = $rangeBoundaries[0][1]; $row <= $rangeBoundaries[1][1]; $row++) { + for ($column = $rangeBoundaries[0][0]; $column != $rangeBoundaries[1][0]; $column++) { + if ($this->getReadFilter()->readCell($column, $row, $this->phpSheet->getTitle())) { + $includeCellRange = true; + break 2; + } + } + } + } + return $includeCellRange; + } + + + /** + * MERGEDCELLS + * + * This record contains the addresses of merged cell ranges + * in the current sheet. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readMergedCells() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->version == self::XLS_BIFF8 && !$this->readDataOnly) { + $cellRangeAddressList = $this->readBIFF8CellRangeAddressList($recordData); + foreach ($cellRangeAddressList['cellRangeAddresses'] as $cellRangeAddress) { + if ((strpos($cellRangeAddress, ':') !== false) && + ($this->includeCellRangeFiltered($cellRangeAddress))) { + $this->phpSheet->mergeCells($cellRangeAddress); + } + } + } + } + + + /** + * Read HYPERLINK record + */ + private function readHyperLink() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer forward to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 8; cell range address of all cells containing this hyperlink + try { + $cellRange = $this->readBIFF8CellRangeAddressFixed($recordData, 0, 8); + } catch (PHPExcel_Exception $e) { + return; + } + + // offset: 8, size: 16; GUID of StdLink + + // offset: 24, size: 4; unknown value + + // offset: 28, size: 4; option flags + // bit: 0; mask: 0x00000001; 0 = no link or extant, 1 = file link or URL + $isFileLinkOrUrl = (0x00000001 & self::getInt2d($recordData, 28)) >> 0; + + // bit: 1; mask: 0x00000002; 0 = relative path, 1 = absolute path or URL + $isAbsPathOrUrl = (0x00000001 & self::getInt2d($recordData, 28)) >> 1; + + // bit: 2 (and 4); mask: 0x00000014; 0 = no description + $hasDesc = (0x00000014 & self::getInt2d($recordData, 28)) >> 2; + + // bit: 3; mask: 0x00000008; 0 = no text, 1 = has text + $hasText = (0x00000008 & self::getInt2d($recordData, 28)) >> 3; + + // bit: 7; mask: 0x00000080; 0 = no target frame, 1 = has target frame + $hasFrame = (0x00000080 & self::getInt2d($recordData, 28)) >> 7; + + // bit: 8; mask: 0x00000100; 0 = file link or URL, 1 = UNC path (inc. server name) + $isUNC = (0x00000100 & self::getInt2d($recordData, 28)) >> 8; + + // offset within record data + $offset = 32; + + if ($hasDesc) { + // offset: 32; size: var; character count of description text + $dl = self::getInt4d($recordData, 32); + // offset: 36; size: var; character array of description text, no Unicode string header, always 16-bit characters, zero terminated + $desc = self::encodeUTF16(substr($recordData, 36, 2 * ($dl - 1)), false); + $offset += 4 + 2 * $dl; + } + if ($hasFrame) { + $fl = self::getInt4d($recordData, $offset); + $offset += 4 + 2 * $fl; + } + + // detect type of hyperlink (there are 4 types) + $hyperlinkType = null; + + if ($isUNC) { + $hyperlinkType = 'UNC'; + } elseif (!$isFileLinkOrUrl) { + $hyperlinkType = 'workbook'; + } elseif (ord($recordData{$offset}) == 0x03) { + $hyperlinkType = 'local'; + } elseif (ord($recordData{$offset}) == 0xE0) { + $hyperlinkType = 'URL'; + } + + switch ($hyperlinkType) { + case 'URL': + // section 5.58.2: Hyperlink containing a URL + // e.g. http://example.org/index.php + + // offset: var; size: 16; GUID of URL Moniker + $offset += 16; + // offset: var; size: 4; size (in bytes) of character array of the URL including trailing zero word + $us = self::getInt4d($recordData, $offset); + $offset += 4; + // offset: var; size: $us; character array of the URL, no Unicode string header, always 16-bit characters, zero-terminated + $url = self::encodeUTF16(substr($recordData, $offset, $us - 2), false); + $nullOffset = strpos($url, 0x00); + if ($nullOffset) { + $url = substr($url, 0, $nullOffset); + } + $url .= $hasText ? '#' : ''; + $offset += $us; + break; + case 'local': + // section 5.58.3: Hyperlink to local file + // examples: + // mydoc.txt + // ../../somedoc.xls#Sheet!A1 + + // offset: var; size: 16; GUI of File Moniker + $offset += 16; + + // offset: var; size: 2; directory up-level count. + $upLevelCount = self::getInt2d($recordData, $offset); + $offset += 2; + + // offset: var; size: 4; character count of the shortened file path and name, including trailing zero word + $sl = self::getInt4d($recordData, $offset); + $offset += 4; + + // offset: var; size: sl; character array of the shortened file path and name in 8.3-DOS-format (compressed Unicode string) + $shortenedFilePath = substr($recordData, $offset, $sl); + $shortenedFilePath = self::encodeUTF16($shortenedFilePath, true); + $shortenedFilePath = substr($shortenedFilePath, 0, -1); // remove trailing zero + + $offset += $sl; + + // offset: var; size: 24; unknown sequence + $offset += 24; + + // extended file path + // offset: var; size: 4; size of the following file link field including string lenth mark + $sz = self::getInt4d($recordData, $offset); + $offset += 4; + + // only present if $sz > 0 + if ($sz > 0) { + // offset: var; size: 4; size of the character array of the extended file path and name + $xl = self::getInt4d($recordData, $offset); + $offset += 4; + + // offset: var; size 2; unknown + $offset += 2; + + // offset: var; size $xl; character array of the extended file path and name. + $extendedFilePath = substr($recordData, $offset, $xl); + $extendedFilePath = self::encodeUTF16($extendedFilePath, false); + $offset += $xl; + } + + // construct the path + $url = str_repeat('..\\', $upLevelCount); + $url .= ($sz > 0) ? $extendedFilePath : $shortenedFilePath; // use extended path if available + $url .= $hasText ? '#' : ''; + + break; + case 'UNC': + // section 5.58.4: Hyperlink to a File with UNC (Universal Naming Convention) Path + // todo: implement + return; + case 'workbook': + // section 5.58.5: Hyperlink to the Current Workbook + // e.g. Sheet2!B1:C2, stored in text mark field + $url = 'sheet://'; + break; + default: + return; + } + + if ($hasText) { + // offset: var; size: 4; character count of text mark including trailing zero word + $tl = self::getInt4d($recordData, $offset); + $offset += 4; + // offset: var; size: var; character array of the text mark without the # sign, no Unicode header, always 16-bit characters, zero-terminated + $text = self::encodeUTF16(substr($recordData, $offset, 2 * ($tl - 1)), false); + $url .= $text; + } + + // apply the hyperlink to all the relevant cells + foreach (PHPExcel_Cell::extractAllCellReferencesInRange($cellRange) as $coordinate) { + $this->phpSheet->getCell($coordinate)->getHyperLink()->setUrl($url); + } + } + } + + + /** + * Read DATAVALIDATIONS record + */ + private function readDataValidations() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer forward to next record + $this->pos += 4 + $length; + } + + + /** + * Read DATAVALIDATION record + */ + private function readDataValidation() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer forward to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly) { + return; + } + + // offset: 0; size: 4; Options + $options = self::getInt4d($recordData, 0); + + // bit: 0-3; mask: 0x0000000F; type + $type = (0x0000000F & $options) >> 0; + switch ($type) { + case 0x00: + $type = PHPExcel_Cell_DataValidation::TYPE_NONE; + break; + case 0x01: + $type = PHPExcel_Cell_DataValidation::TYPE_WHOLE; + break; + case 0x02: + $type = PHPExcel_Cell_DataValidation::TYPE_DECIMAL; + break; + case 0x03: + $type = PHPExcel_Cell_DataValidation::TYPE_LIST; + break; + case 0x04: + $type = PHPExcel_Cell_DataValidation::TYPE_DATE; + break; + case 0x05: + $type = PHPExcel_Cell_DataValidation::TYPE_TIME; + break; + case 0x06: + $type = PHPExcel_Cell_DataValidation::TYPE_TEXTLENGTH; + break; + case 0x07: + $type = PHPExcel_Cell_DataValidation::TYPE_CUSTOM; + break; + } + + // bit: 4-6; mask: 0x00000070; error type + $errorStyle = (0x00000070 & $options) >> 4; + switch ($errorStyle) { + case 0x00: + $errorStyle = PHPExcel_Cell_DataValidation::STYLE_STOP; + break; + case 0x01: + $errorStyle = PHPExcel_Cell_DataValidation::STYLE_WARNING; + break; + case 0x02: + $errorStyle = PHPExcel_Cell_DataValidation::STYLE_INFORMATION; + break; + } + + // bit: 7; mask: 0x00000080; 1= formula is explicit (only applies to list) + // I have only seen cases where this is 1 + $explicitFormula = (0x00000080 & $options) >> 7; + + // bit: 8; mask: 0x00000100; 1= empty cells allowed + $allowBlank = (0x00000100 & $options) >> 8; + + // bit: 9; mask: 0x00000200; 1= suppress drop down arrow in list type validity + $suppressDropDown = (0x00000200 & $options) >> 9; + + // bit: 18; mask: 0x00040000; 1= show prompt box if cell selected + $showInputMessage = (0x00040000 & $options) >> 18; + + // bit: 19; mask: 0x00080000; 1= show error box if invalid values entered + $showErrorMessage = (0x00080000 & $options) >> 19; + + // bit: 20-23; mask: 0x00F00000; condition operator + $operator = (0x00F00000 & $options) >> 20; + switch ($operator) { + case 0x00: + $operator = PHPExcel_Cell_DataValidation::OPERATOR_BETWEEN; + break; + case 0x01: + $operator = PHPExcel_Cell_DataValidation::OPERATOR_NOTBETWEEN; + break; + case 0x02: + $operator = PHPExcel_Cell_DataValidation::OPERATOR_EQUAL; + break; + case 0x03: + $operator = PHPExcel_Cell_DataValidation::OPERATOR_NOTEQUAL; + break; + case 0x04: + $operator = PHPExcel_Cell_DataValidation::OPERATOR_GREATERTHAN; + break; + case 0x05: + $operator = PHPExcel_Cell_DataValidation::OPERATOR_LESSTHAN; + break; + case 0x06: + $operator = PHPExcel_Cell_DataValidation::OPERATOR_GREATERTHANOREQUAL; + break; + case 0x07: + $operator = PHPExcel_Cell_DataValidation::OPERATOR_LESSTHANOREQUAL; + break; + } + + // offset: 4; size: var; title of the prompt box + $offset = 4; + $string = self::readUnicodeStringLong(substr($recordData, $offset)); + $promptTitle = $string['value'] !== chr(0) ? $string['value'] : ''; + $offset += $string['size']; + + // offset: var; size: var; title of the error box + $string = self::readUnicodeStringLong(substr($recordData, $offset)); + $errorTitle = $string['value'] !== chr(0) ? $string['value'] : ''; + $offset += $string['size']; + + // offset: var; size: var; text of the prompt box + $string = self::readUnicodeStringLong(substr($recordData, $offset)); + $prompt = $string['value'] !== chr(0) ? $string['value'] : ''; + $offset += $string['size']; + + // offset: var; size: var; text of the error box + $string = self::readUnicodeStringLong(substr($recordData, $offset)); + $error = $string['value'] !== chr(0) ? $string['value'] : ''; + $offset += $string['size']; + + // offset: var; size: 2; size of the formula data for the first condition + $sz1 = self::getInt2d($recordData, $offset); + $offset += 2; + + // offset: var; size: 2; not used + $offset += 2; + + // offset: var; size: $sz1; formula data for first condition (without size field) + $formula1 = substr($recordData, $offset, $sz1); + $formula1 = pack('v', $sz1) . $formula1; // prepend the length + try { + $formula1 = $this->getFormulaFromStructure($formula1); + + // in list type validity, null characters are used as item separators + if ($type == PHPExcel_Cell_DataValidation::TYPE_LIST) { + $formula1 = str_replace(chr(0), ',', $formula1); + } + } catch (PHPExcel_Exception $e) { + return; + } + $offset += $sz1; + + // offset: var; size: 2; size of the formula data for the first condition + $sz2 = self::getInt2d($recordData, $offset); + $offset += 2; + + // offset: var; size: 2; not used + $offset += 2; + + // offset: var; size: $sz2; formula data for second condition (without size field) + $formula2 = substr($recordData, $offset, $sz2); + $formula2 = pack('v', $sz2) . $formula2; // prepend the length + try { + $formula2 = $this->getFormulaFromStructure($formula2); + } catch (PHPExcel_Exception $e) { + return; + } + $offset += $sz2; + + // offset: var; size: var; cell range address list with + $cellRangeAddressList = $this->readBIFF8CellRangeAddressList(substr($recordData, $offset)); + $cellRangeAddresses = $cellRangeAddressList['cellRangeAddresses']; + + foreach ($cellRangeAddresses as $cellRange) { + $stRange = $this->phpSheet->shrinkRangeToFit($cellRange); + foreach (PHPExcel_Cell::extractAllCellReferencesInRange($stRange) as $coordinate) { + $objValidation = $this->phpSheet->getCell($coordinate)->getDataValidation(); + $objValidation->setType($type); + $objValidation->setErrorStyle($errorStyle); + $objValidation->setAllowBlank((bool)$allowBlank); + $objValidation->setShowInputMessage((bool)$showInputMessage); + $objValidation->setShowErrorMessage((bool)$showErrorMessage); + $objValidation->setShowDropDown(!$suppressDropDown); + $objValidation->setOperator($operator); + $objValidation->setErrorTitle($errorTitle); + $objValidation->setError($error); + $objValidation->setPromptTitle($promptTitle); + $objValidation->setPrompt($prompt); + $objValidation->setFormula1($formula1); + $objValidation->setFormula2($formula2); + } + } + } + + /** + * Read SHEETLAYOUT record. Stores sheet tab color information. + */ + private function readSheetLayout() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // local pointer in record data + $offset = 0; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; repeated record identifier 0x0862 + + // offset: 2; size: 10; not used + + // offset: 12; size: 4; size of record data + // Excel 2003 uses size of 0x14 (documented), Excel 2007 uses size of 0x28 (not documented?) + $sz = self::getInt4d($recordData, 12); + + switch ($sz) { + case 0x14: + // offset: 16; size: 2; color index for sheet tab + $colorIndex = self::getInt2d($recordData, 16); + $color = PHPExcel_Reader_Excel5_Color::map($colorIndex, $this->palette, $this->version); + $this->phpSheet->getTabColor()->setRGB($color['rgb']); + break; + case 0x28: + // TODO: Investigate structure for .xls SHEETLAYOUT record as saved by MS Office Excel 2007 + return; + break; + } + } + } + + + /** + * Read SHEETPROTECTION record (FEATHEADR) + */ + private function readSheetProtection() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly) { + return; + } + + // offset: 0; size: 2; repeated record header + + // offset: 2; size: 2; FRT cell reference flag (=0 currently) + + // offset: 4; size: 8; Currently not used and set to 0 + + // offset: 12; size: 2; Shared feature type index (2=Enhanced Protetion, 4=SmartTag) + $isf = self::getInt2d($recordData, 12); + if ($isf != 2) { + return; + } + + // offset: 14; size: 1; =1 since this is a feat header + + // offset: 15; size: 4; size of rgbHdrSData + + // rgbHdrSData, assume "Enhanced Protection" + // offset: 19; size: 2; option flags + $options = self::getInt2d($recordData, 19); + + // bit: 0; mask 0x0001; 1 = user may edit objects, 0 = users must not edit objects + $bool = (0x0001 & $options) >> 0; + $this->phpSheet->getProtection()->setObjects(!$bool); + + // bit: 1; mask 0x0002; edit scenarios + $bool = (0x0002 & $options) >> 1; + $this->phpSheet->getProtection()->setScenarios(!$bool); + + // bit: 2; mask 0x0004; format cells + $bool = (0x0004 & $options) >> 2; + $this->phpSheet->getProtection()->setFormatCells(!$bool); + + // bit: 3; mask 0x0008; format columns + $bool = (0x0008 & $options) >> 3; + $this->phpSheet->getProtection()->setFormatColumns(!$bool); + + // bit: 4; mask 0x0010; format rows + $bool = (0x0010 & $options) >> 4; + $this->phpSheet->getProtection()->setFormatRows(!$bool); + + // bit: 5; mask 0x0020; insert columns + $bool = (0x0020 & $options) >> 5; + $this->phpSheet->getProtection()->setInsertColumns(!$bool); + + // bit: 6; mask 0x0040; insert rows + $bool = (0x0040 & $options) >> 6; + $this->phpSheet->getProtection()->setInsertRows(!$bool); + + // bit: 7; mask 0x0080; insert hyperlinks + $bool = (0x0080 & $options) >> 7; + $this->phpSheet->getProtection()->setInsertHyperlinks(!$bool); + + // bit: 8; mask 0x0100; delete columns + $bool = (0x0100 & $options) >> 8; + $this->phpSheet->getProtection()->setDeleteColumns(!$bool); + + // bit: 9; mask 0x0200; delete rows + $bool = (0x0200 & $options) >> 9; + $this->phpSheet->getProtection()->setDeleteRows(!$bool); + + // bit: 10; mask 0x0400; select locked cells + $bool = (0x0400 & $options) >> 10; + $this->phpSheet->getProtection()->setSelectLockedCells(!$bool); + + // bit: 11; mask 0x0800; sort cell range + $bool = (0x0800 & $options) >> 11; + $this->phpSheet->getProtection()->setSort(!$bool); + + // bit: 12; mask 0x1000; auto filter + $bool = (0x1000 & $options) >> 12; + $this->phpSheet->getProtection()->setAutoFilter(!$bool); + + // bit: 13; mask 0x2000; pivot tables + $bool = (0x2000 & $options) >> 13; + $this->phpSheet->getProtection()->setPivotTables(!$bool); + + // bit: 14; mask 0x4000; select unlocked cells + $bool = (0x4000 & $options) >> 14; + $this->phpSheet->getProtection()->setSelectUnlockedCells(!$bool); + + // offset: 21; size: 2; not used + } + + + /** + * Read RANGEPROTECTION record + * Reading of this record is based on Microsoft Office Excel 97-2000 Binary File Format Specification, + * where it is referred to as FEAT record + */ + private function readRangeProtection() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // local pointer in record data + $offset = 0; + + if (!$this->readDataOnly) { + $offset += 12; + + // offset: 12; size: 2; shared feature type, 2 = enhanced protection, 4 = smart tag + $isf = self::getInt2d($recordData, 12); + if ($isf != 2) { + // we only read FEAT records of type 2 + return; + } + $offset += 2; + + $offset += 5; + + // offset: 19; size: 2; count of ref ranges this feature is on + $cref = self::getInt2d($recordData, 19); + $offset += 2; + + $offset += 6; + + // offset: 27; size: 8 * $cref; list of cell ranges (like in hyperlink record) + $cellRanges = array(); + for ($i = 0; $i < $cref; ++$i) { + try { + $cellRange = $this->readBIFF8CellRangeAddressFixed(substr($recordData, 27 + 8 * $i, 8)); + } catch (PHPExcel_Exception $e) { + return; + } + $cellRanges[] = $cellRange; + $offset += 8; + } + + // offset: var; size: var; variable length of feature specific data + $rgbFeat = substr($recordData, $offset); + $offset += 4; + + // offset: var; size: 4; the encrypted password (only 16-bit although field is 32-bit) + $wPassword = self::getInt4d($recordData, $offset); + $offset += 4; + + // Apply range protection to sheet + if ($cellRanges) { + $this->phpSheet->protectCells(implode(' ', $cellRanges), strtoupper(dechex($wPassword)), true); + } + } + } + + + /** + * Read IMDATA record + */ + private function readImData() + { + $length = self::getInt2d($this->data, $this->pos + 2); + + // get spliced record data + $splicedRecordData = $this->getSplicedRecordData(); + $recordData = $splicedRecordData['recordData']; + + // UNDER CONSTRUCTION + + // offset: 0; size: 2; image format + $cf = self::getInt2d($recordData, 0); + + // offset: 2; size: 2; environment from which the file was written + $env = self::getInt2d($recordData, 2); + + // offset: 4; size: 4; length of the image data + $lcb = self::getInt4d($recordData, 4); + + // offset: 8; size: var; image data + $iData = substr($recordData, 8); + + switch ($cf) { + case 0x09: // Windows bitmap format + // BITMAPCOREINFO + // 1. BITMAPCOREHEADER + // offset: 0; size: 4; bcSize, Specifies the number of bytes required by the structure + $bcSize = self::getInt4d($iData, 0); + // var_dump($bcSize); + + // offset: 4; size: 2; bcWidth, specifies the width of the bitmap, in pixels + $bcWidth = self::getInt2d($iData, 4); + // var_dump($bcWidth); + + // offset: 6; size: 2; bcHeight, specifies the height of the bitmap, in pixels. + $bcHeight = self::getInt2d($iData, 6); + // var_dump($bcHeight); + $ih = imagecreatetruecolor($bcWidth, $bcHeight); + + // offset: 8; size: 2; bcPlanes, specifies the number of planes for the target device. This value must be 1 + + // offset: 10; size: 2; bcBitCount specifies the number of bits-per-pixel. This value must be 1, 4, 8, or 24 + $bcBitCount = self::getInt2d($iData, 10); + // var_dump($bcBitCount); + + $rgbString = substr($iData, 12); + $rgbTriples = array(); + while (strlen($rgbString) > 0) { + $rgbTriples[] = unpack('Cb/Cg/Cr', $rgbString); + $rgbString = substr($rgbString, 3); + } + $x = 0; + $y = 0; + foreach ($rgbTriples as $i => $rgbTriple) { + $color = imagecolorallocate($ih, $rgbTriple['r'], $rgbTriple['g'], $rgbTriple['b']); + imagesetpixel($ih, $x, $bcHeight - 1 - $y, $color); + $x = ($x + 1) % $bcWidth; + $y = $y + floor(($x + 1) / $bcWidth); + } + //imagepng($ih, 'image.png'); + + $drawing = new PHPExcel_Worksheet_Drawing(); + $drawing->setPath($filename); + $drawing->setWorksheet($this->phpSheet); + break; + case 0x02: // Windows metafile or Macintosh PICT format + case 0x0e: // native format + default: + break; + } + + // getSplicedRecordData() takes care of moving current position in data stream + } + + + /** + * Read a free CONTINUE record. Free CONTINUE record may be a camouflaged MSODRAWING record + * When MSODRAWING data on a sheet exceeds 8224 bytes, CONTINUE records are used instead. Undocumented. + * In this case, we must treat the CONTINUE record as a MSODRAWING record + */ + private function readContinue() + { + $length = self::getInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // check if we are reading drawing data + // this is in case a free CONTINUE record occurs in other circumstances we are unaware of + if ($this->drawingData == '') { + // move stream pointer to next record + $this->pos += 4 + $length; + + return; + } + + // check if record data is at least 4 bytes long, otherwise there is no chance this is MSODRAWING data + if ($length < 4) { + // move stream pointer to next record + $this->pos += 4 + $length; + + return; + } + + // dirty check to see if CONTINUE record could be a camouflaged MSODRAWING record + // look inside CONTINUE record to see if it looks like a part of an Escher stream + // we know that Escher stream may be split at least at + // 0xF003 MsofbtSpgrContainer + // 0xF004 MsofbtSpContainer + // 0xF00D MsofbtClientTextbox + $validSplitPoints = array(0xF003, 0xF004, 0xF00D); // add identifiers if we find more + + $splitPoint = self::getInt2d($recordData, 2); + if (in_array($splitPoint, $validSplitPoints)) { + // get spliced record data (and move pointer to next record) + $splicedRecordData = $this->getSplicedRecordData(); + $this->drawingData .= $splicedRecordData['recordData']; + + return; + } + + // move stream pointer to next record + $this->pos += 4 + $length; + } + + + /** + * Reads a record from current position in data stream and continues reading data as long as CONTINUE + * records are found. Splices the record data pieces and returns the combined string as if record data + * is in one piece. + * Moves to next current position in data stream to start of next record different from a CONtINUE record + * + * @return array + */ + private function getSplicedRecordData() + { + $data = ''; + $spliceOffsets = array(); + + $i = 0; + $spliceOffsets[0] = 0; + + do { + ++$i; + + // offset: 0; size: 2; identifier + $identifier = self::getInt2d($this->data, $this->pos); + // offset: 2; size: 2; length + $length = self::getInt2d($this->data, $this->pos + 2); + $data .= $this->readRecordData($this->data, $this->pos + 4, $length); + + $spliceOffsets[$i] = $spliceOffsets[$i - 1] + $length; + + $this->pos += 4 + $length; + $nextIdentifier = self::getInt2d($this->data, $this->pos); + } while ($nextIdentifier == self::XLS_TYPE_CONTINUE); + + $splicedData = array( + 'recordData' => $data, + 'spliceOffsets' => $spliceOffsets, + ); + + return $splicedData; + + } + + + /** + * Convert formula structure into human readable Excel formula like 'A3+A5*5' + * + * @param string $formulaStructure The complete binary data for the formula + * @param string $baseCell Base cell, only needed when formula contains tRefN tokens, e.g. with shared formulas + * @return string Human readable formula + */ + private function getFormulaFromStructure($formulaStructure, $baseCell = 'A1') + { + // offset: 0; size: 2; size of the following formula data + $sz = self::getInt2d($formulaStructure, 0); + + // offset: 2; size: sz + $formulaData = substr($formulaStructure, 2, $sz); + + // for debug: dump the formula data + //echo ''; + //echo 'size: ' . $sz . "\n"; + //echo 'the entire formula data: '; + //Debug::dump($formulaData); + //echo "\n----\n"; + + // offset: 2 + sz; size: variable (optional) + if (strlen($formulaStructure) > 2 + $sz) { + $additionalData = substr($formulaStructure, 2 + $sz); + + // for debug: dump the additional data + //echo 'the entire additional data: '; + //Debug::dump($additionalData); + //echo "\n----\n"; + } else { + $additionalData = ''; + } + + return $this->getFormulaFromData($formulaData, $additionalData, $baseCell); + } + + + /** + * Take formula data and additional data for formula and return human readable formula + * + * @param string $formulaData The binary data for the formula itself + * @param string $additionalData Additional binary data going with the formula + * @param string $baseCell Base cell, only needed when formula contains tRefN tokens, e.g. with shared formulas + * @return string Human readable formula + */ + private function getFormulaFromData($formulaData, $additionalData = '', $baseCell = 'A1') + { + // start parsing the formula data + $tokens = array(); + + while (strlen($formulaData) > 0 and $token = $this->getNextToken($formulaData, $baseCell)) { + $tokens[] = $token; + $formulaData = substr($formulaData, $token['size']); + + // for debug: dump the token + //var_dump($token); + } + + $formulaString = $this->createFormulaFromTokens($tokens, $additionalData); + + return $formulaString; + } + + + /** + * Take array of tokens together with additional data for formula and return human readable formula + * + * @param array $tokens + * @param array $additionalData Additional binary data going with the formula + * @param string $baseCell Base cell, only needed when formula contains tRefN tokens, e.g. with shared formulas + * @return string Human readable formula + */ + private function createFormulaFromTokens($tokens, $additionalData) + { + // empty formula? + if (empty($tokens)) { + return ''; + } + + $formulaStrings = array(); + foreach ($tokens as $token) { + // initialize spaces + $space0 = isset($space0) ? $space0 : ''; // spaces before next token, not tParen + $space1 = isset($space1) ? $space1 : ''; // carriage returns before next token, not tParen + $space2 = isset($space2) ? $space2 : ''; // spaces before opening parenthesis + $space3 = isset($space3) ? $space3 : ''; // carriage returns before opening parenthesis + $space4 = isset($space4) ? $space4 : ''; // spaces before closing parenthesis + $space5 = isset($space5) ? $space5 : ''; // carriage returns before closing parenthesis + + switch ($token['name']) { + case 'tAdd': // addition + case 'tConcat': // addition + case 'tDiv': // division + case 'tEQ': // equality + case 'tGE': // greater than or equal + case 'tGT': // greater than + case 'tIsect': // intersection + case 'tLE': // less than or equal + case 'tList': // less than or equal + case 'tLT': // less than + case 'tMul': // multiplication + case 'tNE': // multiplication + case 'tPower': // power + case 'tRange': // range + case 'tSub': // subtraction + $op2 = array_pop($formulaStrings); + $op1 = array_pop($formulaStrings); + $formulaStrings[] = "$op1$space1$space0{$token['data']}$op2"; + unset($space0, $space1); + break; + case 'tUplus': // unary plus + case 'tUminus': // unary minus + $op = array_pop($formulaStrings); + $formulaStrings[] = "$space1$space0{$token['data']}$op"; + unset($space0, $space1); + break; + case 'tPercent': // percent sign + $op = array_pop($formulaStrings); + $formulaStrings[] = "$op$space1$space0{$token['data']}"; + unset($space0, $space1); + break; + case 'tAttrVolatile': // indicates volatile function + case 'tAttrIf': + case 'tAttrSkip': + case 'tAttrChoose': + // token is only important for Excel formula evaluator + // do nothing + break; + case 'tAttrSpace': // space / carriage return + // space will be used when next token arrives, do not alter formulaString stack + switch ($token['data']['spacetype']) { + case 'type0': + $space0 = str_repeat(' ', $token['data']['spacecount']); + break; + case 'type1': + $space1 = str_repeat("\n", $token['data']['spacecount']); + break; + case 'type2': + $space2 = str_repeat(' ', $token['data']['spacecount']); + break; + case 'type3': + $space3 = str_repeat("\n", $token['data']['spacecount']); + break; + case 'type4': + $space4 = str_repeat(' ', $token['data']['spacecount']); + break; + case 'type5': + $space5 = str_repeat("\n", $token['data']['spacecount']); + break; + } + break; + case 'tAttrSum': // SUM function with one parameter + $op = array_pop($formulaStrings); + $formulaStrings[] = "{$space1}{$space0}SUM($op)"; + unset($space0, $space1); + break; + case 'tFunc': // function with fixed number of arguments + case 'tFuncV': // function with variable number of arguments + if ($token['data']['function'] != '') { + // normal function + $ops = array(); // array of operators + for ($i = 0; $i < $token['data']['args']; ++$i) { + $ops[] = array_pop($formulaStrings); + } + $ops = array_reverse($ops); + $formulaStrings[] = "$space1$space0{$token['data']['function']}(" . implode(',', $ops) . ")"; + unset($space0, $space1); + } else { + // add-in function + $ops = array(); // array of operators + for ($i = 0; $i < $token['data']['args'] - 1; ++$i) { + $ops[] = array_pop($formulaStrings); + } + $ops = array_reverse($ops); + $function = array_pop($formulaStrings); + $formulaStrings[] = "$space1$space0$function(" . implode(',', $ops) . ")"; + unset($space0, $space1); + } + break; + case 'tParen': // parenthesis + $expression = array_pop($formulaStrings); + $formulaStrings[] = "$space3$space2($expression$space5$space4)"; + unset($space2, $space3, $space4, $space5); + break; + case 'tArray': // array constant + $constantArray = self::readBIFF8ConstantArray($additionalData); + $formulaStrings[] = $space1 . $space0 . $constantArray['value']; + $additionalData = substr($additionalData, $constantArray['size']); // bite of chunk of additional data + unset($space0, $space1); + break; + case 'tMemArea': + // bite off chunk of additional data + $cellRangeAddressList = $this->readBIFF8CellRangeAddressList($additionalData); + $additionalData = substr($additionalData, $cellRangeAddressList['size']); + $formulaStrings[] = "$space1$space0{$token['data']}"; + unset($space0, $space1); + break; + case 'tArea': // cell range address + case 'tBool': // boolean + case 'tErr': // error code + case 'tInt': // integer + case 'tMemErr': + case 'tMemFunc': + case 'tMissArg': + case 'tName': + case 'tNameX': + case 'tNum': // number + case 'tRef': // single cell reference + case 'tRef3d': // 3d cell reference + case 'tArea3d': // 3d cell range reference + case 'tRefN': + case 'tAreaN': + case 'tStr': // string + $formulaStrings[] = "$space1$space0{$token['data']}"; + unset($space0, $space1); + break; + } + } + $formulaString = $formulaStrings[0]; + + // for debug: dump the human readable formula + //echo '----' . "\n"; + //echo 'Formula: ' . $formulaString; + + return $formulaString; + } + + + /** + * Fetch next token from binary formula data + * + * @param string Formula data + * @param string $baseCell Base cell, only needed when formula contains tRefN tokens, e.g. with shared formulas + * @return array + * @throws PHPExcel_Reader_Exception + */ + private function getNextToken($formulaData, $baseCell = 'A1') + { + // offset: 0; size: 1; token id + $id = ord($formulaData[0]); // token id + $name = false; // initialize token name + + switch ($id) { + case 0x03: + $name = 'tAdd'; + $size = 1; + $data = '+'; + break; + case 0x04: + $name = 'tSub'; + $size = 1; + $data = '-'; + break; + case 0x05: + $name = 'tMul'; + $size = 1; + $data = '*'; + break; + case 0x06: + $name = 'tDiv'; + $size = 1; + $data = '/'; + break; + case 0x07: + $name = 'tPower'; + $size = 1; + $data = '^'; + break; + case 0x08: + $name = 'tConcat'; + $size = 1; + $data = '&'; + break; + case 0x09: + $name = 'tLT'; + $size = 1; + $data = '<'; + break; + case 0x0A: + $name = 'tLE'; + $size = 1; + $data = '<='; + break; + case 0x0B: + $name = 'tEQ'; + $size = 1; + $data = '='; + break; + case 0x0C: + $name = 'tGE'; + $size = 1; + $data = '>='; + break; + case 0x0D: + $name = 'tGT'; + $size = 1; + $data = '>'; + break; + case 0x0E: + $name = 'tNE'; + $size = 1; + $data = '<>'; + break; + case 0x0F: + $name = 'tIsect'; + $size = 1; + $data = ' '; + break; + case 0x10: + $name = 'tList'; + $size = 1; + $data = ','; + break; + case 0x11: + $name = 'tRange'; + $size = 1; + $data = ':'; + break; + case 0x12: + $name = 'tUplus'; + $size = 1; + $data = '+'; + break; + case 0x13: + $name = 'tUminus'; + $size = 1; + $data = '-'; + break; + case 0x14: + $name = 'tPercent'; + $size = 1; + $data = '%'; + break; + case 0x15: // parenthesis + $name = 'tParen'; + $size = 1; + $data = null; + break; + case 0x16: // missing argument + $name = 'tMissArg'; + $size = 1; + $data = ''; + break; + case 0x17: // string + $name = 'tStr'; + // offset: 1; size: var; Unicode string, 8-bit string length + $string = self::readUnicodeStringShort(substr($formulaData, 1)); + $size = 1 + $string['size']; + $data = self::UTF8toExcelDoubleQuoted($string['value']); + break; + case 0x19: // Special attribute + // offset: 1; size: 1; attribute type flags: + switch (ord($formulaData[1])) { + case 0x01: + $name = 'tAttrVolatile'; + $size = 4; + $data = null; + break; + case 0x02: + $name = 'tAttrIf'; + $size = 4; + $data = null; + break; + case 0x04: + $name = 'tAttrChoose'; + // offset: 2; size: 2; number of choices in the CHOOSE function ($nc, number of parameters decreased by 1) + $nc = self::getInt2d($formulaData, 2); + // offset: 4; size: 2 * $nc + // offset: 4 + 2 * $nc; size: 2 + $size = 2 * $nc + 6; + $data = null; + break; + case 0x08: + $name = 'tAttrSkip'; + $size = 4; + $data = null; + break; + case 0x10: + $name = 'tAttrSum'; + $size = 4; + $data = null; + break; + case 0x40: + case 0x41: + $name = 'tAttrSpace'; + $size = 4; + // offset: 2; size: 2; space type and position + switch (ord($formulaData[2])) { + case 0x00: + $spacetype = 'type0'; + break; + case 0x01: + $spacetype = 'type1'; + break; + case 0x02: + $spacetype = 'type2'; + break; + case 0x03: + $spacetype = 'type3'; + break; + case 0x04: + $spacetype = 'type4'; + break; + case 0x05: + $spacetype = 'type5'; + break; + default: + throw new PHPExcel_Reader_Exception('Unrecognized space type in tAttrSpace token'); + break; + } + // offset: 3; size: 1; number of inserted spaces/carriage returns + $spacecount = ord($formulaData[3]); + + $data = array('spacetype' => $spacetype, 'spacecount' => $spacecount); + break; + default: + throw new PHPExcel_Reader_Exception('Unrecognized attribute flag in tAttr token'); + break; + } + break; + case 0x1C: // error code + // offset: 1; size: 1; error code + $name = 'tErr'; + $size = 2; + $data = PHPExcel_Reader_Excel5_ErrorCode::lookup(ord($formulaData[1])); + break; + case 0x1D: // boolean + // offset: 1; size: 1; 0 = false, 1 = true; + $name = 'tBool'; + $size = 2; + $data = ord($formulaData[1]) ? 'TRUE' : 'FALSE'; + break; + case 0x1E: // integer + // offset: 1; size: 2; unsigned 16-bit integer + $name = 'tInt'; + $size = 3; + $data = self::getInt2d($formulaData, 1); + break; + case 0x1F: // number + // offset: 1; size: 8; + $name = 'tNum'; + $size = 9; + $data = self::extractNumber(substr($formulaData, 1)); + $data = str_replace(',', '.', (string)$data); // in case non-English locale + break; + case 0x20: // array constant + case 0x40: + case 0x60: + // offset: 1; size: 7; not used + $name = 'tArray'; + $size = 8; + $data = null; + break; + case 0x21: // function with fixed number of arguments + case 0x41: + case 0x61: + $name = 'tFunc'; + $size = 3; + // offset: 1; size: 2; index to built-in sheet function + switch (self::getInt2d($formulaData, 1)) { + case 2: + $function = 'ISNA'; + $args = 1; + break; + case 3: + $function = 'ISERROR'; + $args = 1; + break; + case 10: + $function = 'NA'; + $args = 0; + break; + case 15: + $function = 'SIN'; + $args = 1; + break; + case 16: + $function = 'COS'; + $args = 1; + break; + case 17: + $function = 'TAN'; + $args = 1; + break; + case 18: + $function = 'ATAN'; + $args = 1; + break; + case 19: + $function = 'PI'; + $args = 0; + break; + case 20: + $function = 'SQRT'; + $args = 1; + break; + case 21: + $function = 'EXP'; + $args = 1; + break; + case 22: + $function = 'LN'; + $args = 1; + break; + case 23: + $function = 'LOG10'; + $args = 1; + break; + case 24: + $function = 'ABS'; + $args = 1; + break; + case 25: + $function = 'INT'; + $args = 1; + break; + case 26: + $function = 'SIGN'; + $args = 1; + break; + case 27: + $function = 'ROUND'; + $args = 2; + break; + case 30: + $function = 'REPT'; + $args = 2; + break; + case 31: + $function = 'MID'; + $args = 3; + break; + case 32: + $function = 'LEN'; + $args = 1; + break; + case 33: + $function = 'VALUE'; + $args = 1; + break; + case 34: + $function = 'TRUE'; + $args = 0; + break; + case 35: + $function = 'FALSE'; + $args = 0; + break; + case 38: + $function = 'NOT'; + $args = 1; + break; + case 39: + $function = 'MOD'; + $args = 2; + break; + case 40: + $function = 'DCOUNT'; + $args = 3; + break; + case 41: + $function = 'DSUM'; + $args = 3; + break; + case 42: + $function = 'DAVERAGE'; + $args = 3; + break; + case 43: + $function = 'DMIN'; + $args = 3; + break; + case 44: + $function = 'DMAX'; + $args = 3; + break; + case 45: + $function = 'DSTDEV'; + $args = 3; + break; + case 48: + $function = 'TEXT'; + $args = 2; + break; + case 61: + $function = 'MIRR'; + $args = 3; + break; + case 63: + $function = 'RAND'; + $args = 0; + break; + case 65: + $function = 'DATE'; + $args = 3; + break; + case 66: + $function = 'TIME'; + $args = 3; + break; + case 67: + $function = 'DAY'; + $args = 1; + break; + case 68: + $function = 'MONTH'; + $args = 1; + break; + case 69: + $function = 'YEAR'; + $args = 1; + break; + case 71: + $function = 'HOUR'; + $args = 1; + break; + case 72: + $function = 'MINUTE'; + $args = 1; + break; + case 73: + $function = 'SECOND'; + $args = 1; + break; + case 74: + $function = 'NOW'; + $args = 0; + break; + case 75: + $function = 'AREAS'; + $args = 1; + break; + case 76: + $function = 'ROWS'; + $args = 1; + break; + case 77: + $function = 'COLUMNS'; + $args = 1; + break; + case 83: + $function = 'TRANSPOSE'; + $args = 1; + break; + case 86: + $function = 'TYPE'; + $args = 1; + break; + case 97: + $function = 'ATAN2'; + $args = 2; + break; + case 98: + $function = 'ASIN'; + $args = 1; + break; + case 99: + $function = 'ACOS'; + $args = 1; + break; + case 105: + $function = 'ISREF'; + $args = 1; + break; + case 111: + $function = 'CHAR'; + $args = 1; + break; + case 112: + $function = 'LOWER'; + $args = 1; + break; + case 113: + $function = 'UPPER'; + $args = 1; + break; + case 114: + $function = 'PROPER'; + $args = 1; + break; + case 117: + $function = 'EXACT'; + $args = 2; + break; + case 118: + $function = 'TRIM'; + $args = 1; + break; + case 119: + $function = 'REPLACE'; + $args = 4; + break; + case 121: + $function = 'CODE'; + $args = 1; + break; + case 126: + $function = 'ISERR'; + $args = 1; + break; + case 127: + $function = 'ISTEXT'; + $args = 1; + break; + case 128: + $function = 'ISNUMBER'; + $args = 1; + break; + case 129: + $function = 'ISBLANK'; + $args = 1; + break; + case 130: + $function = 'T'; + $args = 1; + break; + case 131: + $function = 'N'; + $args = 1; + break; + case 140: + $function = 'DATEVALUE'; + $args = 1; + break; + case 141: + $function = 'TIMEVALUE'; + $args = 1; + break; + case 142: + $function = 'SLN'; + $args = 3; + break; + case 143: + $function = 'SYD'; + $args = 4; + break; + case 162: + $function = 'CLEAN'; + $args = 1; + break; + case 163: + $function = 'MDETERM'; + $args = 1; + break; + case 164: + $function = 'MINVERSE'; + $args = 1; + break; + case 165: + $function = 'MMULT'; + $args = 2; + break; + case 184: + $function = 'FACT'; + $args = 1; + break; + case 189: + $function = 'DPRODUCT'; + $args = 3; + break; + case 190: + $function = 'ISNONTEXT'; + $args = 1; + break; + case 195: + $function = 'DSTDEVP'; + $args = 3; + break; + case 196: + $function = 'DVARP'; + $args = 3; + break; + case 198: + $function = 'ISLOGICAL'; + $args = 1; + break; + case 199: + $function = 'DCOUNTA'; + $args = 3; + break; + case 207: + $function = 'REPLACEB'; + $args = 4; + break; + case 210: + $function = 'MIDB'; + $args = 3; + break; + case 211: + $function = 'LENB'; + $args = 1; + break; + case 212: + $function = 'ROUNDUP'; + $args = 2; + break; + case 213: + $function = 'ROUNDDOWN'; + $args = 2; + break; + case 214: + $function = 'ASC'; + $args = 1; + break; + case 215: + $function = 'DBCS'; + $args = 1; + break; + case 221: + $function = 'TODAY'; + $args = 0; + break; + case 229: + $function = 'SINH'; + $args = 1; + break; + case 230: + $function = 'COSH'; + $args = 1; + break; + case 231: + $function = 'TANH'; + $args = 1; + break; + case 232: + $function = 'ASINH'; + $args = 1; + break; + case 233: + $function = 'ACOSH'; + $args = 1; + break; + case 234: + $function = 'ATANH'; + $args = 1; + break; + case 235: + $function = 'DGET'; + $args = 3; + break; + case 244: + $function = 'INFO'; + $args = 1; + break; + case 252: + $function = 'FREQUENCY'; + $args = 2; + break; + case 261: + $function = 'ERROR.TYPE'; + $args = 1; + break; + case 271: + $function = 'GAMMALN'; + $args = 1; + break; + case 273: + $function = 'BINOMDIST'; + $args = 4; + break; + case 274: + $function = 'CHIDIST'; + $args = 2; + break; + case 275: + $function = 'CHIINV'; + $args = 2; + break; + case 276: + $function = 'COMBIN'; + $args = 2; + break; + case 277: + $function = 'CONFIDENCE'; + $args = 3; + break; + case 278: + $function = 'CRITBINOM'; + $args = 3; + break; + case 279: + $function = 'EVEN'; + $args = 1; + break; + case 280: + $function = 'EXPONDIST'; + $args = 3; + break; + case 281: + $function = 'FDIST'; + $args = 3; + break; + case 282: + $function = 'FINV'; + $args = 3; + break; + case 283: + $function = 'FISHER'; + $args = 1; + break; + case 284: + $function = 'FISHERINV'; + $args = 1; + break; + case 285: + $function = 'FLOOR'; + $args = 2; + break; + case 286: + $function = 'GAMMADIST'; + $args = 4; + break; + case 287: + $function = 'GAMMAINV'; + $args = 3; + break; + case 288: + $function = 'CEILING'; + $args = 2; + break; + case 289: + $function = 'HYPGEOMDIST'; + $args = 4; + break; + case 290: + $function = 'LOGNORMDIST'; + $args = 3; + break; + case 291: + $function = 'LOGINV'; + $args = 3; + break; + case 292: + $function = 'NEGBINOMDIST'; + $args = 3; + break; + case 293: + $function = 'NORMDIST'; + $args = 4; + break; + case 294: + $function = 'NORMSDIST'; + $args = 1; + break; + case 295: + $function = 'NORMINV'; + $args = 3; + break; + case 296: + $function = 'NORMSINV'; + $args = 1; + break; + case 297: + $function = 'STANDARDIZE'; + $args = 3; + break; + case 298: + $function = 'ODD'; + $args = 1; + break; + case 299: + $function = 'PERMUT'; + $args = 2; + break; + case 300: + $function = 'POISSON'; + $args = 3; + break; + case 301: + $function = 'TDIST'; + $args = 3; + break; + case 302: + $function = 'WEIBULL'; + $args = 4; + break; + case 303: + $function = 'SUMXMY2'; + $args = 2; + break; + case 304: + $function = 'SUMX2MY2'; + $args = 2; + break; + case 305: + $function = 'SUMX2PY2'; + $args = 2; + break; + case 306: + $function = 'CHITEST'; + $args = 2; + break; + case 307: + $function = 'CORREL'; + $args = 2; + break; + case 308: + $function = 'COVAR'; + $args = 2; + break; + case 309: + $function = 'FORECAST'; + $args = 3; + break; + case 310: + $function = 'FTEST'; + $args = 2; + break; + case 311: + $function = 'INTERCEPT'; + $args = 2; + break; + case 312: + $function = 'PEARSON'; + $args = 2; + break; + case 313: + $function = 'RSQ'; + $args = 2; + break; + case 314: + $function = 'STEYX'; + $args = 2; + break; + case 315: + $function = 'SLOPE'; + $args = 2; + break; + case 316: + $function = 'TTEST'; + $args = 4; + break; + case 325: + $function = 'LARGE'; + $args = 2; + break; + case 326: + $function = 'SMALL'; + $args = 2; + break; + case 327: + $function = 'QUARTILE'; + $args = 2; + break; + case 328: + $function = 'PERCENTILE'; + $args = 2; + break; + case 331: + $function = 'TRIMMEAN'; + $args = 2; + break; + case 332: + $function = 'TINV'; + $args = 2; + break; + case 337: + $function = 'POWER'; + $args = 2; + break; + case 342: + $function = 'RADIANS'; + $args = 1; + break; + case 343: + $function = 'DEGREES'; + $args = 1; + break; + case 346: + $function = 'COUNTIF'; + $args = 2; + break; + case 347: + $function = 'COUNTBLANK'; + $args = 1; + break; + case 350: + $function = 'ISPMT'; + $args = 4; + break; + case 351: + $function = 'DATEDIF'; + $args = 3; + break; + case 352: + $function = 'DATESTRING'; + $args = 1; + break; + case 353: + $function = 'NUMBERSTRING'; + $args = 2; + break; + case 360: + $function = 'PHONETIC'; + $args = 1; + break; + case 368: + $function = 'BAHTTEXT'; + $args = 1; + break; + default: + throw new PHPExcel_Reader_Exception('Unrecognized function in formula'); + break; + } + $data = array('function' => $function, 'args' => $args); + break; + case 0x22: // function with variable number of arguments + case 0x42: + case 0x62: + $name = 'tFuncV'; + $size = 4; + // offset: 1; size: 1; number of arguments + $args = ord($formulaData[1]); + // offset: 2: size: 2; index to built-in sheet function + $index = self::getInt2d($formulaData, 2); + switch ($index) { + case 0: + $function = 'COUNT'; + break; + case 1: + $function = 'IF'; + break; + case 4: + $function = 'SUM'; + break; + case 5: + $function = 'AVERAGE'; + break; + case 6: + $function = 'MIN'; + break; + case 7: + $function = 'MAX'; + break; + case 8: + $function = 'ROW'; + break; + case 9: + $function = 'COLUMN'; + break; + case 11: + $function = 'NPV'; + break; + case 12: + $function = 'STDEV'; + break; + case 13: + $function = 'DOLLAR'; + break; + case 14: + $function = 'FIXED'; + break; + case 28: + $function = 'LOOKUP'; + break; + case 29: + $function = 'INDEX'; + break; + case 36: + $function = 'AND'; + break; + case 37: + $function = 'OR'; + break; + case 46: + $function = 'VAR'; + break; + case 49: + $function = 'LINEST'; + break; + case 50: + $function = 'TREND'; + break; + case 51: + $function = 'LOGEST'; + break; + case 52: + $function = 'GROWTH'; + break; + case 56: + $function = 'PV'; + break; + case 57: + $function = 'FV'; + break; + case 58: + $function = 'NPER'; + break; + case 59: + $function = 'PMT'; + break; + case 60: + $function = 'RATE'; + break; + case 62: + $function = 'IRR'; + break; + case 64: + $function = 'MATCH'; + break; + case 70: + $function = 'WEEKDAY'; + break; + case 78: + $function = 'OFFSET'; + break; + case 82: + $function = 'SEARCH'; + break; + case 100: + $function = 'CHOOSE'; + break; + case 101: + $function = 'HLOOKUP'; + break; + case 102: + $function = 'VLOOKUP'; + break; + case 109: + $function = 'LOG'; + break; + case 115: + $function = 'LEFT'; + break; + case 116: + $function = 'RIGHT'; + break; + case 120: + $function = 'SUBSTITUTE'; + break; + case 124: + $function = 'FIND'; + break; + case 125: + $function = 'CELL'; + break; + case 144: + $function = 'DDB'; + break; + case 148: + $function = 'INDIRECT'; + break; + case 167: + $function = 'IPMT'; + break; + case 168: + $function = 'PPMT'; + break; + case 169: + $function = 'COUNTA'; + break; + case 183: + $function = 'PRODUCT'; + break; + case 193: + $function = 'STDEVP'; + break; + case 194: + $function = 'VARP'; + break; + case 197: + $function = 'TRUNC'; + break; + case 204: + $function = 'USDOLLAR'; + break; + case 205: + $function = 'FINDB'; + break; + case 206: + $function = 'SEARCHB'; + break; + case 208: + $function = 'LEFTB'; + break; + case 209: + $function = 'RIGHTB'; + break; + case 216: + $function = 'RANK'; + break; + case 219: + $function = 'ADDRESS'; + break; + case 220: + $function = 'DAYS360'; + break; + case 222: + $function = 'VDB'; + break; + case 227: + $function = 'MEDIAN'; + break; + case 228: + $function = 'SUMPRODUCT'; + break; + case 247: + $function = 'DB'; + break; + case 255: + $function = ''; + break; + case 269: + $function = 'AVEDEV'; + break; + case 270: + $function = 'BETADIST'; + break; + case 272: + $function = 'BETAINV'; + break; + case 317: + $function = 'PROB'; + break; + case 318: + $function = 'DEVSQ'; + break; + case 319: + $function = 'GEOMEAN'; + break; + case 320: + $function = 'HARMEAN'; + break; + case 321: + $function = 'SUMSQ'; + break; + case 322: + $function = 'KURT'; + break; + case 323: + $function = 'SKEW'; + break; + case 324: + $function = 'ZTEST'; + break; + case 329: + $function = 'PERCENTRANK'; + break; + case 330: + $function = 'MODE'; + break; + case 336: + $function = 'CONCATENATE'; + break; + case 344: + $function = 'SUBTOTAL'; + break; + case 345: + $function = 'SUMIF'; + break; + case 354: + $function = 'ROMAN'; + break; + case 358: + $function = 'GETPIVOTDATA'; + break; + case 359: + $function = 'HYPERLINK'; + break; + case 361: + $function = 'AVERAGEA'; + break; + case 362: + $function = 'MAXA'; + break; + case 363: + $function = 'MINA'; + break; + case 364: + $function = 'STDEVPA'; + break; + case 365: + $function = 'VARPA'; + break; + case 366: + $function = 'STDEVA'; + break; + case 367: + $function = 'VARA'; + break; + default: + throw new PHPExcel_Reader_Exception('Unrecognized function in formula'); + break; + } + $data = array('function' => $function, 'args' => $args); + break; + case 0x23: // index to defined name + case 0x43: + case 0x63: + $name = 'tName'; + $size = 5; + // offset: 1; size: 2; one-based index to definedname record + $definedNameIndex = self::getInt2d($formulaData, 1) - 1; + // offset: 2; size: 2; not used + $data = $this->definedname[$definedNameIndex]['name']; + break; + case 0x24: // single cell reference e.g. A5 + case 0x44: + case 0x64: + $name = 'tRef'; + $size = 5; + $data = $this->readBIFF8CellAddress(substr($formulaData, 1, 4)); + break; + case 0x25: // cell range reference to cells in the same sheet (2d) + case 0x45: + case 0x65: + $name = 'tArea'; + $size = 9; + $data = $this->readBIFF8CellRangeAddress(substr($formulaData, 1, 8)); + break; + case 0x26: // Constant reference sub-expression + case 0x46: + case 0x66: + $name = 'tMemArea'; + // offset: 1; size: 4; not used + // offset: 5; size: 2; size of the following subexpression + $subSize = self::getInt2d($formulaData, 5); + $size = 7 + $subSize; + $data = $this->getFormulaFromData(substr($formulaData, 7, $subSize)); + break; + case 0x27: // Deleted constant reference sub-expression + case 0x47: + case 0x67: + $name = 'tMemErr'; + // offset: 1; size: 4; not used + // offset: 5; size: 2; size of the following subexpression + $subSize = self::getInt2d($formulaData, 5); + $size = 7 + $subSize; + $data = $this->getFormulaFromData(substr($formulaData, 7, $subSize)); + break; + case 0x29: // Variable reference sub-expression + case 0x49: + case 0x69: + $name = 'tMemFunc'; + // offset: 1; size: 2; size of the following sub-expression + $subSize = self::getInt2d($formulaData, 1); + $size = 3 + $subSize; + $data = $this->getFormulaFromData(substr($formulaData, 3, $subSize)); + break; + case 0x2C: // Relative 2d cell reference reference, used in shared formulas and some other places + case 0x4C: + case 0x6C: + $name = 'tRefN'; + $size = 5; + $data = $this->readBIFF8CellAddressB(substr($formulaData, 1, 4), $baseCell); + break; + case 0x2D: // Relative 2d range reference + case 0x4D: + case 0x6D: + $name = 'tAreaN'; + $size = 9; + $data = $this->readBIFF8CellRangeAddressB(substr($formulaData, 1, 8), $baseCell); + break; + case 0x39: // External name + case 0x59: + case 0x79: + $name = 'tNameX'; + $size = 7; + // offset: 1; size: 2; index to REF entry in EXTERNSHEET record + // offset: 3; size: 2; one-based index to DEFINEDNAME or EXTERNNAME record + $index = self::getInt2d($formulaData, 3); + // assume index is to EXTERNNAME record + $data = $this->externalNames[$index - 1]['name']; + // offset: 5; size: 2; not used + break; + case 0x3A: // 3d reference to cell + case 0x5A: + case 0x7A: + $name = 'tRef3d'; + $size = 7; + + try { + // offset: 1; size: 2; index to REF entry + $sheetRange = $this->readSheetRangeByRefIndex(self::getInt2d($formulaData, 1)); + // offset: 3; size: 4; cell address + $cellAddress = $this->readBIFF8CellAddress(substr($formulaData, 3, 4)); + + $data = "$sheetRange!$cellAddress"; + } catch (PHPExcel_Exception $e) { + // deleted sheet reference + $data = '#REF!'; + } + break; + case 0x3B: // 3d reference to cell range + case 0x5B: + case 0x7B: + $name = 'tArea3d'; + $size = 11; + + try { + // offset: 1; size: 2; index to REF entry + $sheetRange = $this->readSheetRangeByRefIndex(self::getInt2d($formulaData, 1)); + // offset: 3; size: 8; cell address + $cellRangeAddress = $this->readBIFF8CellRangeAddress(substr($formulaData, 3, 8)); + + $data = "$sheetRange!$cellRangeAddress"; + } catch (PHPExcel_Exception $e) { + // deleted sheet reference + $data = '#REF!'; + } + break; + // Unknown cases // don't know how to deal with + default: + throw new PHPExcel_Reader_Exception('Unrecognized token ' . sprintf('%02X', $id) . ' in formula'); + break; + } + + return array( + 'id' => $id, + 'name' => $name, + 'size' => $size, + 'data' => $data, + ); + } + + + /** + * Reads a cell address in BIFF8 e.g. 'A2' or '$A$2' + * section 3.3.4 + * + * @param string $cellAddressStructure + * @return string + */ + private function readBIFF8CellAddress($cellAddressStructure) + { + // offset: 0; size: 2; index to row (0... 65535) (or offset (-32768... 32767)) + $row = self::getInt2d($cellAddressStructure, 0) + 1; + + // offset: 2; size: 2; index to column or column offset + relative flags + // bit: 7-0; mask 0x00FF; column index + $column = PHPExcel_Cell::stringFromColumnIndex(0x00FF & self::getInt2d($cellAddressStructure, 2)); + + // bit: 14; mask 0x4000; (1 = relative column index, 0 = absolute column index) + if (!(0x4000 & self::getInt2d($cellAddressStructure, 2))) { + $column = '$' . $column; + } + // bit: 15; mask 0x8000; (1 = relative row index, 0 = absolute row index) + if (!(0x8000 & self::getInt2d($cellAddressStructure, 2))) { + $row = '$' . $row; + } + + return $column . $row; + } + + + /** + * Reads a cell address in BIFF8 for shared formulas. Uses positive and negative values for row and column + * to indicate offsets from a base cell + * section 3.3.4 + * + * @param string $cellAddressStructure + * @param string $baseCell Base cell, only needed when formula contains tRefN tokens, e.g. with shared formulas + * @return string + */ + private function readBIFF8CellAddressB($cellAddressStructure, $baseCell = 'A1') + { + list($baseCol, $baseRow) = PHPExcel_Cell::coordinateFromString($baseCell); + $baseCol = PHPExcel_Cell::columnIndexFromString($baseCol) - 1; + + // offset: 0; size: 2; index to row (0... 65535) (or offset (-32768... 32767)) + $rowIndex = self::getInt2d($cellAddressStructure, 0); + $row = self::getInt2d($cellAddressStructure, 0) + 1; + + // offset: 2; size: 2; index to column or column offset + relative flags + // bit: 7-0; mask 0x00FF; column index + $colIndex = 0x00FF & self::getInt2d($cellAddressStructure, 2); + + // bit: 14; mask 0x4000; (1 = relative column index, 0 = absolute column index) + if (!(0x4000 & self::getInt2d($cellAddressStructure, 2))) { + $column = PHPExcel_Cell::stringFromColumnIndex($colIndex); + $column = '$' . $column; + } else { + $colIndex = ($colIndex <= 127) ? $colIndex : $colIndex - 256; + $column = PHPExcel_Cell::stringFromColumnIndex($baseCol + $colIndex); + } + + // bit: 15; mask 0x8000; (1 = relative row index, 0 = absolute row index) + if (!(0x8000 & self::getInt2d($cellAddressStructure, 2))) { + $row = '$' . $row; + } else { + $rowIndex = ($rowIndex <= 32767) ? $rowIndex : $rowIndex - 65536; + $row = $baseRow + $rowIndex; + } + + return $column . $row; + } + + + /** + * Reads a cell range address in BIFF5 e.g. 'A2:B6' or 'A1' + * always fixed range + * section 2.5.14 + * + * @param string $subData + * @return string + * @throws PHPExcel_Reader_Exception + */ + private function readBIFF5CellRangeAddressFixed($subData) + { + // offset: 0; size: 2; index to first row + $fr = self::getInt2d($subData, 0) + 1; + + // offset: 2; size: 2; index to last row + $lr = self::getInt2d($subData, 2) + 1; + + // offset: 4; size: 1; index to first column + $fc = ord($subData{4}); + + // offset: 5; size: 1; index to last column + $lc = ord($subData{5}); + + // check values + if ($fr > $lr || $fc > $lc) { + throw new PHPExcel_Reader_Exception('Not a cell range address'); + } + + // column index to letter + $fc = PHPExcel_Cell::stringFromColumnIndex($fc); + $lc = PHPExcel_Cell::stringFromColumnIndex($lc); + + if ($fr == $lr and $fc == $lc) { + return "$fc$fr"; + } + return "$fc$fr:$lc$lr"; + } + + + /** + * Reads a cell range address in BIFF8 e.g. 'A2:B6' or 'A1' + * always fixed range + * section 2.5.14 + * + * @param string $subData + * @return string + * @throws PHPExcel_Reader_Exception + */ + private function readBIFF8CellRangeAddressFixed($subData) + { + // offset: 0; size: 2; index to first row + $fr = self::getInt2d($subData, 0) + 1; + + // offset: 2; size: 2; index to last row + $lr = self::getInt2d($subData, 2) + 1; + + // offset: 4; size: 2; index to first column + $fc = self::getInt2d($subData, 4); + + // offset: 6; size: 2; index to last column + $lc = self::getInt2d($subData, 6); + + // check values + if ($fr > $lr || $fc > $lc) { + throw new PHPExcel_Reader_Exception('Not a cell range address'); + } + + // column index to letter + $fc = PHPExcel_Cell::stringFromColumnIndex($fc); + $lc = PHPExcel_Cell::stringFromColumnIndex($lc); + + if ($fr == $lr and $fc == $lc) { + return "$fc$fr"; + } + return "$fc$fr:$lc$lr"; + } + + + /** + * Reads a cell range address in BIFF8 e.g. 'A2:B6' or '$A$2:$B$6' + * there are flags indicating whether column/row index is relative + * section 3.3.4 + * + * @param string $subData + * @return string + */ + private function readBIFF8CellRangeAddress($subData) + { + // todo: if cell range is just a single cell, should this funciton + // not just return e.g. 'A1' and not 'A1:A1' ? + + // offset: 0; size: 2; index to first row (0... 65535) (or offset (-32768... 32767)) + $fr = self::getInt2d($subData, 0) + 1; + + // offset: 2; size: 2; index to last row (0... 65535) (or offset (-32768... 32767)) + $lr = self::getInt2d($subData, 2) + 1; + + // offset: 4; size: 2; index to first column or column offset + relative flags + + // bit: 7-0; mask 0x00FF; column index + $fc = PHPExcel_Cell::stringFromColumnIndex(0x00FF & self::getInt2d($subData, 4)); + + // bit: 14; mask 0x4000; (1 = relative column index, 0 = absolute column index) + if (!(0x4000 & self::getInt2d($subData, 4))) { + $fc = '$' . $fc; + } + + // bit: 15; mask 0x8000; (1 = relative row index, 0 = absolute row index) + if (!(0x8000 & self::getInt2d($subData, 4))) { + $fr = '$' . $fr; + } + + // offset: 6; size: 2; index to last column or column offset + relative flags + + // bit: 7-0; mask 0x00FF; column index + $lc = PHPExcel_Cell::stringFromColumnIndex(0x00FF & self::getInt2d($subData, 6)); + + // bit: 14; mask 0x4000; (1 = relative column index, 0 = absolute column index) + if (!(0x4000 & self::getInt2d($subData, 6))) { + $lc = '$' . $lc; + } + + // bit: 15; mask 0x8000; (1 = relative row index, 0 = absolute row index) + if (!(0x8000 & self::getInt2d($subData, 6))) { + $lr = '$' . $lr; + } + + return "$fc$fr:$lc$lr"; + } + + + /** + * Reads a cell range address in BIFF8 for shared formulas. Uses positive and negative values for row and column + * to indicate offsets from a base cell + * section 3.3.4 + * + * @param string $subData + * @param string $baseCell Base cell + * @return string Cell range address + */ + private function readBIFF8CellRangeAddressB($subData, $baseCell = 'A1') + { + list($baseCol, $baseRow) = PHPExcel_Cell::coordinateFromString($baseCell); + $baseCol = PHPExcel_Cell::columnIndexFromString($baseCol) - 1; + + // TODO: if cell range is just a single cell, should this funciton + // not just return e.g. 'A1' and not 'A1:A1' ? + + // offset: 0; size: 2; first row + $frIndex = self::getInt2d($subData, 0); // adjust below + + // offset: 2; size: 2; relative index to first row (0... 65535) should be treated as offset (-32768... 32767) + $lrIndex = self::getInt2d($subData, 2); // adjust below + + // offset: 4; size: 2; first column with relative/absolute flags + + // bit: 7-0; mask 0x00FF; column index + $fcIndex = 0x00FF & self::getInt2d($subData, 4); + + // bit: 14; mask 0x4000; (1 = relative column index, 0 = absolute column index) + if (!(0x4000 & self::getInt2d($subData, 4))) { + // absolute column index + $fc = PHPExcel_Cell::stringFromColumnIndex($fcIndex); + $fc = '$' . $fc; + } else { + // column offset + $fcIndex = ($fcIndex <= 127) ? $fcIndex : $fcIndex - 256; + $fc = PHPExcel_Cell::stringFromColumnIndex($baseCol + $fcIndex); + } + + // bit: 15; mask 0x8000; (1 = relative row index, 0 = absolute row index) + if (!(0x8000 & self::getInt2d($subData, 4))) { + // absolute row index + $fr = $frIndex + 1; + $fr = '$' . $fr; + } else { + // row offset + $frIndex = ($frIndex <= 32767) ? $frIndex : $frIndex - 65536; + $fr = $baseRow + $frIndex; + } + + // offset: 6; size: 2; last column with relative/absolute flags + + // bit: 7-0; mask 0x00FF; column index + $lcIndex = 0x00FF & self::getInt2d($subData, 6); + $lcIndex = ($lcIndex <= 127) ? $lcIndex : $lcIndex - 256; + $lc = PHPExcel_Cell::stringFromColumnIndex($baseCol + $lcIndex); + + // bit: 14; mask 0x4000; (1 = relative column index, 0 = absolute column index) + if (!(0x4000 & self::getInt2d($subData, 6))) { + // absolute column index + $lc = PHPExcel_Cell::stringFromColumnIndex($lcIndex); + $lc = '$' . $lc; + } else { + // column offset + $lcIndex = ($lcIndex <= 127) ? $lcIndex : $lcIndex - 256; + $lc = PHPExcel_Cell::stringFromColumnIndex($baseCol + $lcIndex); + } + + // bit: 15; mask 0x8000; (1 = relative row index, 0 = absolute row index) + if (!(0x8000 & self::getInt2d($subData, 6))) { + // absolute row index + $lr = $lrIndex + 1; + $lr = '$' . $lr; + } else { + // row offset + $lrIndex = ($lrIndex <= 32767) ? $lrIndex : $lrIndex - 65536; + $lr = $baseRow + $lrIndex; + } + + return "$fc$fr:$lc$lr"; + } + + + /** + * Read BIFF8 cell range address list + * section 2.5.15 + * + * @param string $subData + * @return array + */ + private function readBIFF8CellRangeAddressList($subData) + { + $cellRangeAddresses = array(); + + // offset: 0; size: 2; number of the following cell range addresses + $nm = self::getInt2d($subData, 0); + + $offset = 2; + // offset: 2; size: 8 * $nm; list of $nm (fixed) cell range addresses + for ($i = 0; $i < $nm; ++$i) { + $cellRangeAddresses[] = $this->readBIFF8CellRangeAddressFixed(substr($subData, $offset, 8)); + $offset += 8; + } + + return array( + 'size' => 2 + 8 * $nm, + 'cellRangeAddresses' => $cellRangeAddresses, + ); + } + + + /** + * Read BIFF5 cell range address list + * section 2.5.15 + * + * @param string $subData + * @return array + */ + private function readBIFF5CellRangeAddressList($subData) + { + $cellRangeAddresses = array(); + + // offset: 0; size: 2; number of the following cell range addresses + $nm = self::getInt2d($subData, 0); + + $offset = 2; + // offset: 2; size: 6 * $nm; list of $nm (fixed) cell range addresses + for ($i = 0; $i < $nm; ++$i) { + $cellRangeAddresses[] = $this->readBIFF5CellRangeAddressFixed(substr($subData, $offset, 6)); + $offset += 6; + } + + return array( + 'size' => 2 + 6 * $nm, + 'cellRangeAddresses' => $cellRangeAddresses, + ); + } + + + /** + * Get a sheet range like Sheet1:Sheet3 from REF index + * Note: If there is only one sheet in the range, one gets e.g Sheet1 + * It can also happen that the REF structure uses the -1 (FFFF) code to indicate deleted sheets, + * in which case an PHPExcel_Reader_Exception is thrown + * + * @param int $index + * @return string|false + * @throws PHPExcel_Reader_Exception + */ + private function readSheetRangeByRefIndex($index) + { + if (isset($this->ref[$index])) { + $type = $this->externalBooks[$this->ref[$index]['externalBookIndex']]['type']; + + switch ($type) { + case 'internal': + // check if we have a deleted 3d reference + if ($this->ref[$index]['firstSheetIndex'] == 0xFFFF or $this->ref[$index]['lastSheetIndex'] == 0xFFFF) { + throw new PHPExcel_Reader_Exception('Deleted sheet reference'); + } + + // we have normal sheet range (collapsed or uncollapsed) + $firstSheetName = $this->sheets[$this->ref[$index]['firstSheetIndex']]['name']; + $lastSheetName = $this->sheets[$this->ref[$index]['lastSheetIndex']]['name']; + + if ($firstSheetName == $lastSheetName) { + // collapsed sheet range + $sheetRange = $firstSheetName; + } else { + $sheetRange = "$firstSheetName:$lastSheetName"; + } + + // escape the single-quotes + $sheetRange = str_replace("'", "''", $sheetRange); + + // if there are special characters, we need to enclose the range in single-quotes + // todo: check if we have identified the whole set of special characters + // it seems that the following characters are not accepted for sheet names + // and we may assume that they are not present: []*/:\? + if (preg_match("/[ !\"@#£$%&{()}<>=+'|^,;-]/", $sheetRange)) { + $sheetRange = "'$sheetRange'"; + } + + return $sheetRange; + break; + default: + // TODO: external sheet support + throw new PHPExcel_Reader_Exception('Excel5 reader only supports internal sheets in fomulas'); + break; + } + } + return false; + } + + + /** + * read BIFF8 constant value array from array data + * returns e.g. array('value' => '{1,2;3,4}', 'size' => 40} + * section 2.5.8 + * + * @param string $arrayData + * @return array + */ + private static function readBIFF8ConstantArray($arrayData) + { + // offset: 0; size: 1; number of columns decreased by 1 + $nc = ord($arrayData[0]); + + // offset: 1; size: 2; number of rows decreased by 1 + $nr = self::getInt2d($arrayData, 1); + $size = 3; // initialize + $arrayData = substr($arrayData, 3); + + // offset: 3; size: var; list of ($nc + 1) * ($nr + 1) constant values + $matrixChunks = array(); + for ($r = 1; $r <= $nr + 1; ++$r) { + $items = array(); + for ($c = 1; $c <= $nc + 1; ++$c) { + $constant = self::readBIFF8Constant($arrayData); + $items[] = $constant['value']; + $arrayData = substr($arrayData, $constant['size']); + $size += $constant['size']; + } + $matrixChunks[] = implode(',', $items); // looks like e.g. '1,"hello"' + } + $matrix = '{' . implode(';', $matrixChunks) . '}'; + + return array( + 'value' => $matrix, + 'size' => $size, + ); + } + + + /** + * read BIFF8 constant value which may be 'Empty Value', 'Number', 'String Value', 'Boolean Value', 'Error Value' + * section 2.5.7 + * returns e.g. array('value' => '5', 'size' => 9) + * + * @param string $valueData + * @return array + */ + private static function readBIFF8Constant($valueData) + { + // offset: 0; size: 1; identifier for type of constant + $identifier = ord($valueData[0]); + + switch ($identifier) { + case 0x00: // empty constant (what is this?) + $value = ''; + $size = 9; + break; + case 0x01: // number + // offset: 1; size: 8; IEEE 754 floating-point value + $value = self::extractNumber(substr($valueData, 1, 8)); + $size = 9; + break; + case 0x02: // string value + // offset: 1; size: var; Unicode string, 16-bit string length + $string = self::readUnicodeStringLong(substr($valueData, 1)); + $value = '"' . $string['value'] . '"'; + $size = 1 + $string['size']; + break; + case 0x04: // boolean + // offset: 1; size: 1; 0 = FALSE, 1 = TRUE + if (ord($valueData[1])) { + $value = 'TRUE'; + } else { + $value = 'FALSE'; + } + $size = 9; + break; + case 0x10: // error code + // offset: 1; size: 1; error code + $value = PHPExcel_Reader_Excel5_ErrorCode::lookup(ord($valueData[1])); + $size = 9; + break; + } + return array( + 'value' => $value, + 'size' => $size, + ); + } + + + /** + * Extract RGB color + * OpenOffice.org's Documentation of the Microsoft Excel File Format, section 2.5.4 + * + * @param string $rgb Encoded RGB value (4 bytes) + * @return array + */ + private static function readRGB($rgb) + { + // offset: 0; size 1; Red component + $r = ord($rgb{0}); + + // offset: 1; size: 1; Green component + $g = ord($rgb{1}); + + // offset: 2; size: 1; Blue component + $b = ord($rgb{2}); + + // HEX notation, e.g. 'FF00FC' + $rgb = sprintf('%02X%02X%02X', $r, $g, $b); + + return array('rgb' => $rgb); + } + + + /** + * Read byte string (8-bit string length) + * OpenOffice documentation: 2.5.2 + * + * @param string $subData + * @return array + */ + private function readByteStringShort($subData) + { + // offset: 0; size: 1; length of the string (character count) + $ln = ord($subData[0]); + + // offset: 1: size: var; character array (8-bit characters) + $value = $this->decodeCodepage(substr($subData, 1, $ln)); + + return array( + 'value' => $value, + 'size' => 1 + $ln, // size in bytes of data structure + ); + } + + + /** + * Read byte string (16-bit string length) + * OpenOffice documentation: 2.5.2 + * + * @param string $subData + * @return array + */ + private function readByteStringLong($subData) + { + // offset: 0; size: 2; length of the string (character count) + $ln = self::getInt2d($subData, 0); + + // offset: 2: size: var; character array (8-bit characters) + $value = $this->decodeCodepage(substr($subData, 2)); + + //return $string; + return array( + 'value' => $value, + 'size' => 2 + $ln, // size in bytes of data structure + ); + } + + + /** + * Extracts an Excel Unicode short string (8-bit string length) + * OpenOffice documentation: 2.5.3 + * function will automatically find out where the Unicode string ends. + * + * @param string $subData + * @return array + */ + private static function readUnicodeStringShort($subData) + { + $value = ''; + + // offset: 0: size: 1; length of the string (character count) + $characterCount = ord($subData[0]); + + $string = self::readUnicodeString(substr($subData, 1), $characterCount); + + // add 1 for the string length + $string['size'] += 1; + + return $string; + } + + + /** + * Extracts an Excel Unicode long string (16-bit string length) + * OpenOffice documentation: 2.5.3 + * this function is under construction, needs to support rich text, and Asian phonetic settings + * + * @param string $subData + * @return array + */ + private static function readUnicodeStringLong($subData) + { + $value = ''; + + // offset: 0: size: 2; length of the string (character count) + $characterCount = self::getInt2d($subData, 0); + + $string = self::readUnicodeString(substr($subData, 2), $characterCount); + + // add 2 for the string length + $string['size'] += 2; + + return $string; + } + + + /** + * Read Unicode string with no string length field, but with known character count + * this function is under construction, needs to support rich text, and Asian phonetic settings + * OpenOffice.org's Documentation of the Microsoft Excel File Format, section 2.5.3 + * + * @param string $subData + * @param int $characterCount + * @return array + */ + private static function readUnicodeString($subData, $characterCount) + { + $value = ''; + + // offset: 0: size: 1; option flags + // bit: 0; mask: 0x01; character compression (0 = compressed 8-bit, 1 = uncompressed 16-bit) + $isCompressed = !((0x01 & ord($subData[0])) >> 0); + + // bit: 2; mask: 0x04; Asian phonetic settings + $hasAsian = (0x04) & ord($subData[0]) >> 2; + + // bit: 3; mask: 0x08; Rich-Text settings + $hasRichText = (0x08) & ord($subData[0]) >> 3; + + // offset: 1: size: var; character array + // this offset assumes richtext and Asian phonetic settings are off which is generally wrong + // needs to be fixed + $value = self::encodeUTF16(substr($subData, 1, $isCompressed ? $characterCount : 2 * $characterCount), $isCompressed); + + return array( + 'value' => $value, + 'size' => $isCompressed ? 1 + $characterCount : 1 + 2 * $characterCount, // the size in bytes including the option flags + ); + } + + + /** + * Convert UTF-8 string to string surounded by double quotes. Used for explicit string tokens in formulas. + * Example: hello"world --> "hello""world" + * + * @param string $value UTF-8 encoded string + * @return string + */ + private static function UTF8toExcelDoubleQuoted($value) + { + return '"' . str_replace('"', '""', $value) . '"'; + } + + + /** + * Reads first 8 bytes of a string and return IEEE 754 float + * + * @param string $data Binary string that is at least 8 bytes long + * @return float + */ + private static function extractNumber($data) + { + $rknumhigh = self::getInt4d($data, 4); + $rknumlow = self::getInt4d($data, 0); + $sign = ($rknumhigh & 0x80000000) >> 31; + $exp = (($rknumhigh & 0x7ff00000) >> 20) - 1023; + $mantissa = (0x100000 | ($rknumhigh & 0x000fffff)); + $mantissalow1 = ($rknumlow & 0x80000000) >> 31; + $mantissalow2 = ($rknumlow & 0x7fffffff); + $value = $mantissa / pow(2, (20 - $exp)); + + if ($mantissalow1 != 0) { + $value += 1 / pow(2, (21 - $exp)); + } + + $value += $mantissalow2 / pow(2, (52 - $exp)); + if ($sign) { + $value *= -1; + } + + return $value; + } + + + private static function getIEEE754($rknum) + { + if (($rknum & 0x02) != 0) { + $value = $rknum >> 2; + } else { + // changes by mmp, info on IEEE754 encoding from + // research.microsoft.com/~hollasch/cgindex/coding/ieeefloat.html + // The RK format calls for using only the most significant 30 bits + // of the 64 bit floating point value. The other 34 bits are assumed + // to be 0 so we use the upper 30 bits of $rknum as follows... + $sign = ($rknum & 0x80000000) >> 31; + $exp = ($rknum & 0x7ff00000) >> 20; + $mantissa = (0x100000 | ($rknum & 0x000ffffc)); + $value = $mantissa / pow(2, (20- ($exp - 1023))); + if ($sign) { + $value = -1 * $value; + } + //end of changes by mmp + } + if (($rknum & 0x01) != 0) { + $value /= 100; + } + return $value; + } + + + /** + * Get UTF-8 string from (compressed or uncompressed) UTF-16 string + * + * @param string $string + * @param bool $compressed + * @return string + */ + private static function encodeUTF16($string, $compressed = '') + { + if ($compressed) { + $string = self::uncompressByteString($string); + } + + return PHPExcel_Shared_String::ConvertEncoding($string, 'UTF-8', 'UTF-16LE'); + } + + /** + * Convert UTF-16 string in compressed notation to uncompressed form. Only used for BIFF8. + * + * @param string $string + * @return string + */ + private static function uncompressByteString($string) + { + $uncompressedString = ''; + $strLen = strlen($string); + for ($i = 0; $i < $strLen; ++$i) { + $uncompressedString .= $string[$i] . "\0"; + } + + return $uncompressedString; + } + + /** + * Convert string to UTF-8. Only used for BIFF5. + * + * @param string $string + * @return string + */ + private function decodeCodepage($string) + { + return PHPExcel_Shared_String::ConvertEncoding($string, 'UTF-8', $this->codepage); + } + + /** + * Read 16-bit unsigned integer + * + * @param string $data + * @param int $pos + * @return int + */ + public static function getInt2d($data, $pos) + { + return ord($data[$pos]) | (ord($data[$pos+1]) << 8); + } + + /** + * Read 32-bit signed integer + * + * @param string $data + * @param int $pos + * @return int + */ + public static function getInt4d($data, $pos) + { + // FIX: represent numbers correctly on 64-bit system + // http://sourceforge.net/tracker/index.php?func=detail&aid=1487372&group_id=99160&atid=623334 + // Hacked by Andreas Rehm 2006 to ensure correct result of the <<24 block on 32 and 64bit systems + $_or_24 = ord($data[$pos + 3]); + if ($_or_24 >= 128) { + // negative number + $_ord_24 = -abs((256 - $_or_24) << 24); + } else { + $_ord_24 = ($_or_24 & 127) << 24; + } + return ord($data[$pos]) | (ord($data[$pos+1]) << 8) | (ord($data[$pos+2]) << 16) | $_ord_24; + } + + private function parseRichText($is = '') + { + $value = new PHPExcel_RichText(); + $value->createText($is); + + return $value; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color.php new file mode 100644 index 0000000..1801df5 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color.php @@ -0,0 +1,32 @@ +<?php + +class PHPExcel_Reader_Excel5_Color +{ + /** + * Read color + * + * @param int $color Indexed color + * @param array $palette Color palette + * @return array RGB color value, example: array('rgb' => 'FF0000') + */ + public static function map($color, $palette, $version) + { + if ($color <= 0x07 || $color >= 0x40) { + // special built-in color + return PHPExcel_Reader_Excel5_Color_BuiltIn::lookup($color); + } elseif (isset($palette) && isset($palette[$color - 8])) { + // palette color, color index 0x08 maps to pallete index 0 + return $palette[$color - 8]; + } else { + // default color table + if ($version == PHPExcel_Reader_Excel5::XLS_BIFF8) { + return PHPExcel_Reader_Excel5_Color_BIFF8::lookup($color); + } else { + // BIFF5 + return PHPExcel_Reader_Excel5_Color_BIFF5::lookup($color); + } + } + + return $color; + } +} \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color/BIFF5.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color/BIFF5.php new file mode 100644 index 0000000..159c27f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color/BIFF5.php @@ -0,0 +1,77 @@ +<?php + +class PHPExcel_Reader_Excel5_Color_BIFF5 +{ + protected static $map = array( + 0x08 => '000000', + 0x09 => 'FFFFFF', + 0x0A => 'FF0000', + 0x0B => '00FF00', + 0x0C => '0000FF', + 0x0D => 'FFFF00', + 0x0E => 'FF00FF', + 0x0F => '00FFFF', + 0x10 => '800000', + 0x11 => '008000', + 0x12 => '000080', + 0x13 => '808000', + 0x14 => '800080', + 0x15 => '008080', + 0x16 => 'C0C0C0', + 0x17 => '808080', + 0x18 => '8080FF', + 0x19 => '802060', + 0x1A => 'FFFFC0', + 0x1B => 'A0E0F0', + 0x1C => '600080', + 0x1D => 'FF8080', + 0x1E => '0080C0', + 0x1F => 'C0C0FF', + 0x20 => '000080', + 0x21 => 'FF00FF', + 0x22 => 'FFFF00', + 0x23 => '00FFFF', + 0x24 => '800080', + 0x25 => '800000', + 0x26 => '008080', + 0x27 => '0000FF', + 0x28 => '00CFFF', + 0x29 => '69FFFF', + 0x2A => 'E0FFE0', + 0x2B => 'FFFF80', + 0x2C => 'A6CAF0', + 0x2D => 'DD9CB3', + 0x2E => 'B38FEE', + 0x2F => 'E3E3E3', + 0x30 => '2A6FF9', + 0x31 => '3FB8CD', + 0x32 => '488436', + 0x33 => '958C41', + 0x34 => '8E5E42', + 0x35 => 'A0627A', + 0x36 => '624FAC', + 0x37 => '969696', + 0x38 => '1D2FBE', + 0x39 => '286676', + 0x3A => '004500', + 0x3B => '453E01', + 0x3C => '6A2813', + 0x3D => '85396A', + 0x3E => '4A3285', + 0x3F => '424242', + ); + + /** + * Map color array from BIFF5 built-in color index + * + * @param int $color + * @return array + */ + public static function lookup($color) + { + if (isset(self::$map[$color])) { + return array('rgb' => self::$map[$color]); + } + return array('rgb' => '000000'); + } +} \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color/BIFF8.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color/BIFF8.php new file mode 100644 index 0000000..4d3f2d0 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color/BIFF8.php @@ -0,0 +1,77 @@ +<?php + +class PHPExcel_Reader_Excel5_Color_BIFF8 +{ + protected static $map = array( + 0x08 => '000000', + 0x09 => 'FFFFFF', + 0x0A => 'FF0000', + 0x0B => '00FF00', + 0x0C => '0000FF', + 0x0D => 'FFFF00', + 0x0E => 'FF00FF', + 0x0F => '00FFFF', + 0x10 => '800000', + 0x11 => '008000', + 0x12 => '000080', + 0x13 => '808000', + 0x14 => '800080', + 0x15 => '008080', + 0x16 => 'C0C0C0', + 0x17 => '808080', + 0x18 => '9999FF', + 0x19 => '993366', + 0x1A => 'FFFFCC', + 0x1B => 'CCFFFF', + 0x1C => '660066', + 0x1D => 'FF8080', + 0x1E => '0066CC', + 0x1F => 'CCCCFF', + 0x20 => '000080', + 0x21 => 'FF00FF', + 0x22 => 'FFFF00', + 0x23 => '00FFFF', + 0x24 => '800080', + 0x25 => '800000', + 0x26 => '008080', + 0x27 => '0000FF', + 0x28 => '00CCFF', + 0x29 => 'CCFFFF', + 0x2A => 'CCFFCC', + 0x2B => 'FFFF99', + 0x2C => '99CCFF', + 0x2D => 'FF99CC', + 0x2E => 'CC99FF', + 0x2F => 'FFCC99', + 0x30 => '3366FF', + 0x31 => '33CCCC', + 0x32 => '99CC00', + 0x33 => 'FFCC00', + 0x34 => 'FF9900', + 0x35 => 'FF6600', + 0x36 => '666699', + 0x37 => '969696', + 0x38 => '003366', + 0x39 => '339966', + 0x3A => '003300', + 0x3B => '333300', + 0x3C => '993300', + 0x3D => '993366', + 0x3E => '333399', + 0x3F => '333333', + ); + + /** + * Map color array from BIFF8 built-in color index + * + * @param int $color + * @return array + */ + public static function lookup($color) + { + if (isset(self::$map[$color])) { + return array('rgb' => self::$map[$color]); + } + return array('rgb' => '000000'); + } +} \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color/BuiltIn.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color/BuiltIn.php new file mode 100644 index 0000000..a5b7e59 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color/BuiltIn.php @@ -0,0 +1,31 @@ +<?php + +class PHPExcel_Reader_Excel5_Color_BuiltIn +{ + protected static $map = array( + 0x00 => '000000', + 0x01 => 'FFFFFF', + 0x02 => 'FF0000', + 0x03 => '00FF00', + 0x04 => '0000FF', + 0x05 => 'FFFF00', + 0x06 => 'FF00FF', + 0x07 => '00FFFF', + 0x40 => '000000', // system window text color + 0x41 => 'FFFFFF', // system window background color + ); + + /** + * Map built-in color to RGB value + * + * @param int $color Indexed color + * @return array + */ + public static function lookup($color) + { + if (isset(self::$map[$color])) { + return array('rgb' => self::$map[$color]); + } + return array('rgb' => '000000'); + } +} \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/ErrorCode.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/ErrorCode.php new file mode 100644 index 0000000..f1d1cb6 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/ErrorCode.php @@ -0,0 +1,28 @@ +<?php + +class PHPExcel_Reader_Excel5_ErrorCode +{ + protected static $map = array( + 0x00 => '#NULL!', + 0x07 => '#DIV/0!', + 0x0F => '#VALUE!', + 0x17 => '#REF!', + 0x1D => '#NAME?', + 0x24 => '#NUM!', + 0x2A => '#N/A', + ); + + /** + * Map error code, e.g. '#N/A' + * + * @param int $code + * @return string + */ + public static function lookup($code) + { + if (isset(self::$map[$code])) { + return self::$map[$code]; + } + return false; + } +} \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Escher.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Escher.php new file mode 100644 index 0000000..2b99e22 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Escher.php @@ -0,0 +1,669 @@ +<?php + +/** + * PHPExcel_Reader_Excel5_Escher + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Reader_Excel5 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Reader_Excel5_Escher +{ + const DGGCONTAINER = 0xF000; + const BSTORECONTAINER = 0xF001; + const DGCONTAINER = 0xF002; + const SPGRCONTAINER = 0xF003; + const SPCONTAINER = 0xF004; + const DGG = 0xF006; + const BSE = 0xF007; + const DG = 0xF008; + const SPGR = 0xF009; + const SP = 0xF00A; + const OPT = 0xF00B; + const CLIENTTEXTBOX = 0xF00D; + const CLIENTANCHOR = 0xF010; + const CLIENTDATA = 0xF011; + const BLIPJPEG = 0xF01D; + const BLIPPNG = 0xF01E; + const SPLITMENUCOLORS = 0xF11E; + const TERTIARYOPT = 0xF122; + + /** + * Escher stream data (binary) + * + * @var string + */ + private $data; + + /** + * Size in bytes of the Escher stream data + * + * @var int + */ + private $dataSize; + + /** + * Current position of stream pointer in Escher stream data + * + * @var int + */ + private $pos; + + /** + * The object to be returned by the reader. Modified during load. + * + * @var mixed + */ + private $object; + + /** + * Create a new PHPExcel_Reader_Excel5_Escher instance + * + * @param mixed $object + */ + public function __construct($object) + { + $this->object = $object; + } + + /** + * Load Escher stream data. May be a partial Escher stream. + * + * @param string $data + */ + public function load($data) + { + $this->data = $data; + + // total byte size of Excel data (workbook global substream + sheet substreams) + $this->dataSize = strlen($this->data); + + $this->pos = 0; + + // Parse Escher stream + while ($this->pos < $this->dataSize) { + // offset: 2; size: 2: Record Type + $fbt = PHPExcel_Reader_Excel5::getInt2d($this->data, $this->pos + 2); + + switch ($fbt) { + case self::DGGCONTAINER: + $this->readDggContainer(); + break; + case self::DGG: + $this->readDgg(); + break; + case self::BSTORECONTAINER: + $this->readBstoreContainer(); + break; + case self::BSE: + $this->readBSE(); + break; + case self::BLIPJPEG: + $this->readBlipJPEG(); + break; + case self::BLIPPNG: + $this->readBlipPNG(); + break; + case self::OPT: + $this->readOPT(); + break; + case self::TERTIARYOPT: + $this->readTertiaryOPT(); + break; + case self::SPLITMENUCOLORS: + $this->readSplitMenuColors(); + break; + case self::DGCONTAINER: + $this->readDgContainer(); + break; + case self::DG: + $this->readDg(); + break; + case self::SPGRCONTAINER: + $this->readSpgrContainer(); + break; + case self::SPCONTAINER: + $this->readSpContainer(); + break; + case self::SPGR: + $this->readSpgr(); + break; + case self::SP: + $this->readSp(); + break; + case self::CLIENTTEXTBOX: + $this->readClientTextbox(); + break; + case self::CLIENTANCHOR: + $this->readClientAnchor(); + break; + case self::CLIENTDATA: + $this->readClientData(); + break; + default: + $this->readDefault(); + break; + } + } + + return $this->object; + } + + /** + * Read a generic record + */ + private function readDefault() + { + // offset 0; size: 2; recVer and recInstance + $verInstance = PHPExcel_Reader_Excel5::getInt2d($this->data, $this->pos); + + // offset: 2; size: 2: Record Type + $fbt = PHPExcel_Reader_Excel5::getInt2d($this->data, $this->pos + 2); + + // bit: 0-3; mask: 0x000F; recVer + $recVer = (0x000F & $verInstance) >> 0; + + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read DggContainer record (Drawing Group Container) + */ + private function readDggContainer() + { + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + // record is a container, read contents + $dggContainer = new PHPExcel_Shared_Escher_DggContainer(); + $this->object->setDggContainer($dggContainer); + $reader = new PHPExcel_Reader_Excel5_Escher($dggContainer); + $reader->load($recordData); + } + + /** + * Read Dgg record (Drawing Group) + */ + private function readDgg() + { + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read BstoreContainer record (Blip Store Container) + */ + private function readBstoreContainer() + { + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + // record is a container, read contents + $bstoreContainer = new PHPExcel_Shared_Escher_DggContainer_BstoreContainer(); + $this->object->setBstoreContainer($bstoreContainer); + $reader = new PHPExcel_Reader_Excel5_Escher($bstoreContainer); + $reader->load($recordData); + } + + /** + * Read BSE record + */ + private function readBSE() + { + // offset: 0; size: 2; recVer and recInstance + + // bit: 4-15; mask: 0xFFF0; recInstance + $recInstance = (0xFFF0 & PHPExcel_Reader_Excel5::getInt2d($this->data, $this->pos)) >> 4; + + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + // add BSE to BstoreContainer + $BSE = new PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE(); + $this->object->addBSE($BSE); + + $BSE->setBLIPType($recInstance); + + // offset: 0; size: 1; btWin32 (MSOBLIPTYPE) + $btWin32 = ord($recordData[0]); + + // offset: 1; size: 1; btWin32 (MSOBLIPTYPE) + $btMacOS = ord($recordData[1]); + + // offset: 2; size: 16; MD4 digest + $rgbUid = substr($recordData, 2, 16); + + // offset: 18; size: 2; tag + $tag = PHPExcel_Reader_Excel5::getInt2d($recordData, 18); + + // offset: 20; size: 4; size of BLIP in bytes + $size = PHPExcel_Reader_Excel5::getInt4d($recordData, 20); + + // offset: 24; size: 4; number of references to this BLIP + $cRef = PHPExcel_Reader_Excel5::getInt4d($recordData, 24); + + // offset: 28; size: 4; MSOFO file offset + $foDelay = PHPExcel_Reader_Excel5::getInt4d($recordData, 28); + + // offset: 32; size: 1; unused1 + $unused1 = ord($recordData{32}); + + // offset: 33; size: 1; size of nameData in bytes (including null terminator) + $cbName = ord($recordData{33}); + + // offset: 34; size: 1; unused2 + $unused2 = ord($recordData{34}); + + // offset: 35; size: 1; unused3 + $unused3 = ord($recordData{35}); + + // offset: 36; size: $cbName; nameData + $nameData = substr($recordData, 36, $cbName); + + // offset: 36 + $cbName, size: var; the BLIP data + $blipData = substr($recordData, 36 + $cbName); + + // record is a container, read contents + $reader = new PHPExcel_Reader_Excel5_Escher($BSE); + $reader->load($blipData); + } + + /** + * Read BlipJPEG record. Holds raw JPEG image data + */ + private function readBlipJPEG() + { + // offset: 0; size: 2; recVer and recInstance + + // bit: 4-15; mask: 0xFFF0; recInstance + $recInstance = (0xFFF0 & PHPExcel_Reader_Excel5::getInt2d($this->data, $this->pos)) >> 4; + + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + $pos = 0; + + // offset: 0; size: 16; rgbUid1 (MD4 digest of) + $rgbUid1 = substr($recordData, 0, 16); + $pos += 16; + + // offset: 16; size: 16; rgbUid2 (MD4 digest), only if $recInstance = 0x46B or 0x6E3 + if (in_array($recInstance, array(0x046B, 0x06E3))) { + $rgbUid2 = substr($recordData, 16, 16); + $pos += 16; + } + + // offset: var; size: 1; tag + $tag = ord($recordData{$pos}); + $pos += 1; + + // offset: var; size: var; the raw image data + $data = substr($recordData, $pos); + + $blip = new PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE_Blip(); + $blip->setData($data); + + $this->object->setBlip($blip); + } + + /** + * Read BlipPNG record. Holds raw PNG image data + */ + private function readBlipPNG() + { + // offset: 0; size: 2; recVer and recInstance + + // bit: 4-15; mask: 0xFFF0; recInstance + $recInstance = (0xFFF0 & PHPExcel_Reader_Excel5::getInt2d($this->data, $this->pos)) >> 4; + + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + $pos = 0; + + // offset: 0; size: 16; rgbUid1 (MD4 digest of) + $rgbUid1 = substr($recordData, 0, 16); + $pos += 16; + + // offset: 16; size: 16; rgbUid2 (MD4 digest), only if $recInstance = 0x46B or 0x6E3 + if ($recInstance == 0x06E1) { + $rgbUid2 = substr($recordData, 16, 16); + $pos += 16; + } + + // offset: var; size: 1; tag + $tag = ord($recordData{$pos}); + $pos += 1; + + // offset: var; size: var; the raw image data + $data = substr($recordData, $pos); + + $blip = new PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE_Blip(); + $blip->setData($data); + + $this->object->setBlip($blip); + } + + /** + * Read OPT record. This record may occur within DggContainer record or SpContainer + */ + private function readOPT() + { + // offset: 0; size: 2; recVer and recInstance + + // bit: 4-15; mask: 0xFFF0; recInstance + $recInstance = (0xFFF0 & PHPExcel_Reader_Excel5::getInt2d($this->data, $this->pos)) >> 4; + + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + $this->readOfficeArtRGFOPTE($recordData, $recInstance); + } + + /** + * Read TertiaryOPT record + */ + private function readTertiaryOPT() + { + // offset: 0; size: 2; recVer and recInstance + + // bit: 4-15; mask: 0xFFF0; recInstance + $recInstance = (0xFFF0 & PHPExcel_Reader_Excel5::getInt2d($this->data, $this->pos)) >> 4; + + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read SplitMenuColors record + */ + private function readSplitMenuColors() + { + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read DgContainer record (Drawing Container) + */ + private function readDgContainer() + { + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + // record is a container, read contents + $dgContainer = new PHPExcel_Shared_Escher_DgContainer(); + $this->object->setDgContainer($dgContainer); + $reader = new PHPExcel_Reader_Excel5_Escher($dgContainer); + $escher = $reader->load($recordData); + } + + /** + * Read Dg record (Drawing) + */ + private function readDg() + { + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read SpgrContainer record (Shape Group Container) + */ + private function readSpgrContainer() + { + // context is either context DgContainer or SpgrContainer + + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + // record is a container, read contents + $spgrContainer = new PHPExcel_Shared_Escher_DgContainer_SpgrContainer(); + + if ($this->object instanceof PHPExcel_Shared_Escher_DgContainer) { + // DgContainer + $this->object->setSpgrContainer($spgrContainer); + } else { + // SpgrContainer + $this->object->addChild($spgrContainer); + } + + $reader = new PHPExcel_Reader_Excel5_Escher($spgrContainer); + $escher = $reader->load($recordData); + } + + /** + * Read SpContainer record (Shape Container) + */ + private function readSpContainer() + { + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // add spContainer to spgrContainer + $spContainer = new PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer(); + $this->object->addChild($spContainer); + + // move stream pointer to next record + $this->pos += 8 + $length; + + // record is a container, read contents + $reader = new PHPExcel_Reader_Excel5_Escher($spContainer); + $escher = $reader->load($recordData); + } + + /** + * Read Spgr record (Shape Group) + */ + private function readSpgr() + { + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read Sp record (Shape) + */ + private function readSp() + { + // offset: 0; size: 2; recVer and recInstance + + // bit: 4-15; mask: 0xFFF0; recInstance + $recInstance = (0xFFF0 & PHPExcel_Reader_Excel5::getInt2d($this->data, $this->pos)) >> 4; + + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read ClientTextbox record + */ + private function readClientTextbox() + { + // offset: 0; size: 2; recVer and recInstance + + // bit: 4-15; mask: 0xFFF0; recInstance + $recInstance = (0xFFF0 & PHPExcel_Reader_Excel5::getInt2d($this->data, $this->pos)) >> 4; + + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read ClientAnchor record. This record holds information about where the shape is anchored in worksheet + */ + private function readClientAnchor() + { + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + // offset: 2; size: 2; upper-left corner column index (0-based) + $c1 = PHPExcel_Reader_Excel5::getInt2d($recordData, 2); + + // offset: 4; size: 2; upper-left corner horizontal offset in 1/1024 of column width + $startOffsetX = PHPExcel_Reader_Excel5::getInt2d($recordData, 4); + + // offset: 6; size: 2; upper-left corner row index (0-based) + $r1 = PHPExcel_Reader_Excel5::getInt2d($recordData, 6); + + // offset: 8; size: 2; upper-left corner vertical offset in 1/256 of row height + $startOffsetY = PHPExcel_Reader_Excel5::getInt2d($recordData, 8); + + // offset: 10; size: 2; bottom-right corner column index (0-based) + $c2 = PHPExcel_Reader_Excel5::getInt2d($recordData, 10); + + // offset: 12; size: 2; bottom-right corner horizontal offset in 1/1024 of column width + $endOffsetX = PHPExcel_Reader_Excel5::getInt2d($recordData, 12); + + // offset: 14; size: 2; bottom-right corner row index (0-based) + $r2 = PHPExcel_Reader_Excel5::getInt2d($recordData, 14); + + // offset: 16; size: 2; bottom-right corner vertical offset in 1/256 of row height + $endOffsetY = PHPExcel_Reader_Excel5::getInt2d($recordData, 16); + + // set the start coordinates + $this->object->setStartCoordinates(PHPExcel_Cell::stringFromColumnIndex($c1) . ($r1 + 1)); + + // set the start offsetX + $this->object->setStartOffsetX($startOffsetX); + + // set the start offsetY + $this->object->setStartOffsetY($startOffsetY); + + // set the end coordinates + $this->object->setEndCoordinates(PHPExcel_Cell::stringFromColumnIndex($c2) . ($r2 + 1)); + + // set the end offsetX + $this->object->setEndOffsetX($endOffsetX); + + // set the end offsetY + $this->object->setEndOffsetY($endOffsetY); + } + + /** + * Read ClientData record + */ + private function readClientData() + { + $length = PHPExcel_Reader_Excel5::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read OfficeArtRGFOPTE table of property-value pairs + * + * @param string $data Binary data + * @param int $n Number of properties + */ + private function readOfficeArtRGFOPTE($data, $n) + { + $splicedComplexData = substr($data, 6 * $n); + + // loop through property-value pairs + for ($i = 0; $i < $n; ++$i) { + // read 6 bytes at a time + $fopte = substr($data, 6 * $i, 6); + + // offset: 0; size: 2; opid + $opid = PHPExcel_Reader_Excel5::getInt2d($fopte, 0); + + // bit: 0-13; mask: 0x3FFF; opid.opid + $opidOpid = (0x3FFF & $opid) >> 0; + + // bit: 14; mask 0x4000; 1 = value in op field is BLIP identifier + $opidFBid = (0x4000 & $opid) >> 14; + + // bit: 15; mask 0x8000; 1 = this is a complex property, op field specifies size of complex data + $opidFComplex = (0x8000 & $opid) >> 15; + + // offset: 2; size: 4; the value for this property + $op = PHPExcel_Reader_Excel5::getInt4d($fopte, 2); + + if ($opidFComplex) { + $complexData = substr($splicedComplexData, 0, $op); + $splicedComplexData = substr($splicedComplexData, $op); + + // we store string value with complex data + $value = $complexData; + } else { + // we store integer value + $value = $op; + } + + $this->object->setOPT($opidOpid, $value); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/MD5.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/MD5.php new file mode 100644 index 0000000..f14ea94 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/MD5.php @@ -0,0 +1,203 @@ +<?php + +/** + * PHPExcel_Reader_Excel5_MD5 + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Reader_Excel5 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Reader_Excel5_MD5 +{ + // Context + private $a; + private $b; + private $c; + private $d; + + /** + * MD5 stream constructor + */ + public function __construct() + { + $this->reset(); + } + + /** + * Reset the MD5 stream context + */ + public function reset() + { + $this->a = 0x67452301; + $this->b = 0xEFCDAB89; + $this->c = 0x98BADCFE; + $this->d = 0x10325476; + } + + /** + * Get MD5 stream context + * + * @return string + */ + public function getContext() + { + $s = ''; + foreach (array('a', 'b', 'c', 'd') as $i) { + $v = $this->{$i}; + $s .= chr($v & 0xff); + $s .= chr(($v >> 8) & 0xff); + $s .= chr(($v >> 16) & 0xff); + $s .= chr(($v >> 24) & 0xff); + } + + return $s; + } + + /** + * Add data to context + * + * @param string $data Data to add + */ + public function add($data) + { + $words = array_values(unpack('V16', $data)); + + $A = $this->a; + $B = $this->b; + $C = $this->c; + $D = $this->d; + + $F = array('PHPExcel_Reader_Excel5_MD5','f'); + $G = array('PHPExcel_Reader_Excel5_MD5','g'); + $H = array('PHPExcel_Reader_Excel5_MD5','h'); + $I = array('PHPExcel_Reader_Excel5_MD5','i'); + + /* ROUND 1 */ + self::step($F, $A, $B, $C, $D, $words[0], 7, 0xd76aa478); + self::step($F, $D, $A, $B, $C, $words[1], 12, 0xe8c7b756); + self::step($F, $C, $D, $A, $B, $words[2], 17, 0x242070db); + self::step($F, $B, $C, $D, $A, $words[3], 22, 0xc1bdceee); + self::step($F, $A, $B, $C, $D, $words[4], 7, 0xf57c0faf); + self::step($F, $D, $A, $B, $C, $words[5], 12, 0x4787c62a); + self::step($F, $C, $D, $A, $B, $words[6], 17, 0xa8304613); + self::step($F, $B, $C, $D, $A, $words[7], 22, 0xfd469501); + self::step($F, $A, $B, $C, $D, $words[8], 7, 0x698098d8); + self::step($F, $D, $A, $B, $C, $words[9], 12, 0x8b44f7af); + self::step($F, $C, $D, $A, $B, $words[10], 17, 0xffff5bb1); + self::step($F, $B, $C, $D, $A, $words[11], 22, 0x895cd7be); + self::step($F, $A, $B, $C, $D, $words[12], 7, 0x6b901122); + self::step($F, $D, $A, $B, $C, $words[13], 12, 0xfd987193); + self::step($F, $C, $D, $A, $B, $words[14], 17, 0xa679438e); + self::step($F, $B, $C, $D, $A, $words[15], 22, 0x49b40821); + + /* ROUND 2 */ + self::step($G, $A, $B, $C, $D, $words[1], 5, 0xf61e2562); + self::step($G, $D, $A, $B, $C, $words[6], 9, 0xc040b340); + self::step($G, $C, $D, $A, $B, $words[11], 14, 0x265e5a51); + self::step($G, $B, $C, $D, $A, $words[0], 20, 0xe9b6c7aa); + self::step($G, $A, $B, $C, $D, $words[5], 5, 0xd62f105d); + self::step($G, $D, $A, $B, $C, $words[10], 9, 0x02441453); + self::step($G, $C, $D, $A, $B, $words[15], 14, 0xd8a1e681); + self::step($G, $B, $C, $D, $A, $words[4], 20, 0xe7d3fbc8); + self::step($G, $A, $B, $C, $D, $words[9], 5, 0x21e1cde6); + self::step($G, $D, $A, $B, $C, $words[14], 9, 0xc33707d6); + self::step($G, $C, $D, $A, $B, $words[3], 14, 0xf4d50d87); + self::step($G, $B, $C, $D, $A, $words[8], 20, 0x455a14ed); + self::step($G, $A, $B, $C, $D, $words[13], 5, 0xa9e3e905); + self::step($G, $D, $A, $B, $C, $words[2], 9, 0xfcefa3f8); + self::step($G, $C, $D, $A, $B, $words[7], 14, 0x676f02d9); + self::step($G, $B, $C, $D, $A, $words[12], 20, 0x8d2a4c8a); + + /* ROUND 3 */ + self::step($H, $A, $B, $C, $D, $words[5], 4, 0xfffa3942); + self::step($H, $D, $A, $B, $C, $words[8], 11, 0x8771f681); + self::step($H, $C, $D, $A, $B, $words[11], 16, 0x6d9d6122); + self::step($H, $B, $C, $D, $A, $words[14], 23, 0xfde5380c); + self::step($H, $A, $B, $C, $D, $words[1], 4, 0xa4beea44); + self::step($H, $D, $A, $B, $C, $words[4], 11, 0x4bdecfa9); + self::step($H, $C, $D, $A, $B, $words[7], 16, 0xf6bb4b60); + self::step($H, $B, $C, $D, $A, $words[10], 23, 0xbebfbc70); + self::step($H, $A, $B, $C, $D, $words[13], 4, 0x289b7ec6); + self::step($H, $D, $A, $B, $C, $words[0], 11, 0xeaa127fa); + self::step($H, $C, $D, $A, $B, $words[3], 16, 0xd4ef3085); + self::step($H, $B, $C, $D, $A, $words[6], 23, 0x04881d05); + self::step($H, $A, $B, $C, $D, $words[9], 4, 0xd9d4d039); + self::step($H, $D, $A, $B, $C, $words[12], 11, 0xe6db99e5); + self::step($H, $C, $D, $A, $B, $words[15], 16, 0x1fa27cf8); + self::step($H, $B, $C, $D, $A, $words[2], 23, 0xc4ac5665); + + /* ROUND 4 */ + self::step($I, $A, $B, $C, $D, $words[0], 6, 0xf4292244); + self::step($I, $D, $A, $B, $C, $words[7], 10, 0x432aff97); + self::step($I, $C, $D, $A, $B, $words[14], 15, 0xab9423a7); + self::step($I, $B, $C, $D, $A, $words[5], 21, 0xfc93a039); + self::step($I, $A, $B, $C, $D, $words[12], 6, 0x655b59c3); + self::step($I, $D, $A, $B, $C, $words[3], 10, 0x8f0ccc92); + self::step($I, $C, $D, $A, $B, $words[10], 15, 0xffeff47d); + self::step($I, $B, $C, $D, $A, $words[1], 21, 0x85845dd1); + self::step($I, $A, $B, $C, $D, $words[8], 6, 0x6fa87e4f); + self::step($I, $D, $A, $B, $C, $words[15], 10, 0xfe2ce6e0); + self::step($I, $C, $D, $A, $B, $words[6], 15, 0xa3014314); + self::step($I, $B, $C, $D, $A, $words[13], 21, 0x4e0811a1); + self::step($I, $A, $B, $C, $D, $words[4], 6, 0xf7537e82); + self::step($I, $D, $A, $B, $C, $words[11], 10, 0xbd3af235); + self::step($I, $C, $D, $A, $B, $words[2], 15, 0x2ad7d2bb); + self::step($I, $B, $C, $D, $A, $words[9], 21, 0xeb86d391); + + $this->a = ($this->a + $A) & 0xffffffff; + $this->b = ($this->b + $B) & 0xffffffff; + $this->c = ($this->c + $C) & 0xffffffff; + $this->d = ($this->d + $D) & 0xffffffff; + } + + private static function f($X, $Y, $Z) + { + return (($X & $Y) | ((~ $X) & $Z)); // X AND Y OR NOT X AND Z + } + + private static function g($X, $Y, $Z) + { + return (($X & $Z) | ($Y & (~ $Z))); // X AND Z OR Y AND NOT Z + } + + private static function h($X, $Y, $Z) + { + return ($X ^ $Y ^ $Z); // X XOR Y XOR Z + } + + private static function i($X, $Y, $Z) + { + return ($Y ^ ($X | (~ $Z))) ; // Y XOR (X OR NOT Z) + } + + private static function step($func, &$A, $B, $C, $D, $M, $s, $t) + { + $A = ($A + call_user_func($func, $B, $C, $D) + $M + $t) & 0xffffffff; + $A = self::rotate($A, $s); + $A = ($B + $A) & 0xffffffff; + } + + private static function rotate($decimal, $bits) + { + $binary = str_pad(decbin($decimal), 32, "0", STR_PAD_LEFT); + return bindec(substr($binary, $bits).substr($binary, 0, $bits)); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/RC4.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/RC4.php new file mode 100644 index 0000000..5640539 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/RC4.php @@ -0,0 +1,81 @@ +<?php + +/** + * PHPExcel_Reader_Excel5_RC4 + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Reader_Excel5 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Reader_Excel5_RC4 +{ + // Context + protected $s = array(); + protected $i = 0; + protected $j = 0; + + /** + * RC4 stream decryption/encryption constrcutor + * + * @param string $key Encryption key/passphrase + */ + public function __construct($key) + { + $len = strlen($key); + + for ($this->i = 0; $this->i < 256; $this->i++) { + $this->s[$this->i] = $this->i; + } + + $this->j = 0; + for ($this->i = 0; $this->i < 256; $this->i++) { + $this->j = ($this->j + $this->s[$this->i] + ord($key[$this->i % $len])) % 256; + $t = $this->s[$this->i]; + $this->s[$this->i] = $this->s[$this->j]; + $this->s[$this->j] = $t; + } + $this->i = $this->j = 0; + } + + /** + * Symmetric decryption/encryption function + * + * @param string $data Data to encrypt/decrypt + * + * @return string + */ + public function RC4($data) + { + $len = strlen($data); + for ($c = 0; $c < $len; $c++) { + $this->i = ($this->i + 1) % 256; + $this->j = ($this->j + $this->s[$this->i]) % 256; + $t = $this->s[$this->i]; + $this->s[$this->i] = $this->s[$this->j]; + $this->s[$this->j] = $t; + + $t = ($this->s[$this->i] + $this->s[$this->j]) % 256; + + $data[$c] = chr(ord($data[$c]) ^ $this->s[$t]); + } + return $data; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Style/Border.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Style/Border.php new file mode 100644 index 0000000..fb45b9d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Style/Border.php @@ -0,0 +1,36 @@ +<?php + +class PHPExcel_Reader_Excel5_Style_Border +{ + protected static $map = array( + 0x00 => PHPExcel_Style_Border::BORDER_NONE, + 0x01 => PHPExcel_Style_Border::BORDER_THIN, + 0x02 => PHPExcel_Style_Border::BORDER_MEDIUM, + 0x03 => PHPExcel_Style_Border::BORDER_DASHED, + 0x04 => PHPExcel_Style_Border::BORDER_DOTTED, + 0x05 => PHPExcel_Style_Border::BORDER_THICK, + 0x06 => PHPExcel_Style_Border::BORDER_DOUBLE, + 0x07 => PHPExcel_Style_Border::BORDER_HAIR, + 0x08 => PHPExcel_Style_Border::BORDER_MEDIUMDASHED, + 0x09 => PHPExcel_Style_Border::BORDER_DASHDOT, + 0x0A => PHPExcel_Style_Border::BORDER_MEDIUMDASHDOT, + 0x0B => PHPExcel_Style_Border::BORDER_DASHDOTDOT, + 0x0C => PHPExcel_Style_Border::BORDER_MEDIUMDASHDOTDOT, + 0x0D => PHPExcel_Style_Border::BORDER_SLANTDASHDOT, + ); + + /** + * Map border style + * OpenOffice documentation: 2.5.11 + * + * @param int $index + * @return string + */ + public static function lookup($index) + { + if (isset(self::$map[$index])) { + return self::$map[$index]; + } + return PHPExcel_Style_Border::BORDER_NONE; + } +} \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Style/FillPattern.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Style/FillPattern.php new file mode 100644 index 0000000..c92d19a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Style/FillPattern.php @@ -0,0 +1,41 @@ +<?php + +class PHPExcel_Reader_Excel5_Style_FillPattern +{ + protected static $map = array( + 0x00 => PHPExcel_Style_Fill::FILL_NONE, + 0x01 => PHPExcel_Style_Fill::FILL_SOLID, + 0x02 => PHPExcel_Style_Fill::FILL_PATTERN_MEDIUMGRAY, + 0x03 => PHPExcel_Style_Fill::FILL_PATTERN_DARKGRAY, + 0x04 => PHPExcel_Style_Fill::FILL_PATTERN_LIGHTGRAY, + 0x05 => PHPExcel_Style_Fill::FILL_PATTERN_DARKHORIZONTAL, + 0x06 => PHPExcel_Style_Fill::FILL_PATTERN_DARKVERTICAL, + 0x07 => PHPExcel_Style_Fill::FILL_PATTERN_DARKDOWN, + 0x08 => PHPExcel_Style_Fill::FILL_PATTERN_DARKUP, + 0x09 => PHPExcel_Style_Fill::FILL_PATTERN_DARKGRID, + 0x0A => PHPExcel_Style_Fill::FILL_PATTERN_DARKTRELLIS, + 0x0B => PHPExcel_Style_Fill::FILL_PATTERN_LIGHTHORIZONTAL, + 0x0C => PHPExcel_Style_Fill::FILL_PATTERN_LIGHTVERTICAL, + 0x0D => PHPExcel_Style_Fill::FILL_PATTERN_LIGHTDOWN, + 0x0E => PHPExcel_Style_Fill::FILL_PATTERN_LIGHTUP, + 0x0F => PHPExcel_Style_Fill::FILL_PATTERN_LIGHTGRID, + 0x10 => PHPExcel_Style_Fill::FILL_PATTERN_LIGHTTRELLIS, + 0x11 => PHPExcel_Style_Fill::FILL_PATTERN_GRAY125, + 0x12 => PHPExcel_Style_Fill::FILL_PATTERN_GRAY0625, + ); + + /** + * Get fill pattern from index + * OpenOffice documentation: 2.5.12 + * + * @param int $index + * @return string + */ + public static function lookup($index) + { + if (isset(self::$map[$index])) { + return self::$map[$index]; + } + return PHPExcel_Style_Fill::FILL_NONE; + } +} \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Exception.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Exception.php new file mode 100644 index 0000000..48b3f82 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Exception.php @@ -0,0 +1,46 @@ +<?php + +/** + * PHPExcel_Reader_Exception + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Reader + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Reader_Exception extends PHPExcel_Exception +{ + /** + * Error handler callback + * + * @param mixed $code + * @param mixed $string + * @param mixed $file + * @param mixed $line + * @param mixed $context + */ + public static function errorHandlerCallback($code, $string, $file, $line, $context) + { + $e = new self($string, $code); + $e->line = $line; + $e->file = $file; + throw $e; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Gnumeric.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Gnumeric.php new file mode 100644 index 0000000..913e52b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Gnumeric.php @@ -0,0 +1,850 @@ +<?php + +/** PHPExcel root directory */ +if (!defined('PHPEXCEL_ROOT')) { + /** + * @ignore + */ + define('PHPEXCEL_ROOT', dirname(__FILE__) . '/../../'); + require(PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php'); +} + +/** + * PHPExcel_Reader_Gnumeric + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Reader + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Reader_Gnumeric extends PHPExcel_Reader_Abstract implements PHPExcel_Reader_IReader +{ + /** + * Formats + * + * @var array + */ + private $styles = array(); + + /** + * Shared Expressions + * + * @var array + */ + private $expressions = array(); + + private $referenceHelper = null; + + /** + * Create a new PHPExcel_Reader_Gnumeric + */ + public function __construct() + { + $this->readFilter = new PHPExcel_Reader_DefaultReadFilter(); + $this->referenceHelper = PHPExcel_ReferenceHelper::getInstance(); + } + + /** + * Can the current PHPExcel_Reader_IReader read the file? + * + * @param string $pFilename + * @return boolean + * @throws PHPExcel_Reader_Exception + */ + public function canRead($pFilename) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + // Check if gzlib functions are available + if (!function_exists('gzread')) { + throw new PHPExcel_Reader_Exception("gzlib library is not enabled"); + } + + // Read signature data (first 3 bytes) + $fh = fopen($pFilename, 'r'); + $data = fread($fh, 2); + fclose($fh); + + if ($data != chr(0x1F).chr(0x8B)) { + return false; + } + + return true; + } + + /** + * Reads names of the worksheets from a file, without parsing the whole file to a PHPExcel object + * + * @param string $pFilename + * @throws PHPExcel_Reader_Exception + */ + public function listWorksheetNames($pFilename) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + $xml = new XMLReader(); + $xml->xml($this->securityScanFile('compress.zlib://'.realpath($pFilename)), null, PHPExcel_Settings::getLibXmlLoaderOptions()); + $xml->setParserProperty(2, true); + + $worksheetNames = array(); + while ($xml->read()) { + if ($xml->name == 'gnm:SheetName' && $xml->nodeType == XMLReader::ELEMENT) { + $xml->read(); // Move onto the value node + $worksheetNames[] = (string) $xml->value; + } elseif ($xml->name == 'gnm:Sheets') { + // break out of the loop once we've got our sheet names rather than parse the entire file + break; + } + } + + return $worksheetNames; + } + + /** + * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns) + * + * @param string $pFilename + * @throws PHPExcel_Reader_Exception + */ + public function listWorksheetInfo($pFilename) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + $xml = new XMLReader(); + $xml->xml($this->securityScanFile('compress.zlib://'.realpath($pFilename)), null, PHPExcel_Settings::getLibXmlLoaderOptions()); + $xml->setParserProperty(2, true); + + $worksheetInfo = array(); + while ($xml->read()) { + if ($xml->name == 'gnm:Sheet' && $xml->nodeType == XMLReader::ELEMENT) { + $tmpInfo = array( + 'worksheetName' => '', + 'lastColumnLetter' => 'A', + 'lastColumnIndex' => 0, + 'totalRows' => 0, + 'totalColumns' => 0, + ); + + while ($xml->read()) { + if ($xml->name == 'gnm:Name' && $xml->nodeType == XMLReader::ELEMENT) { + $xml->read(); // Move onto the value node + $tmpInfo['worksheetName'] = (string) $xml->value; + } elseif ($xml->name == 'gnm:MaxCol' && $xml->nodeType == XMLReader::ELEMENT) { + $xml->read(); // Move onto the value node + $tmpInfo['lastColumnIndex'] = (int) $xml->value; + $tmpInfo['totalColumns'] = (int) $xml->value + 1; + } elseif ($xml->name == 'gnm:MaxRow' && $xml->nodeType == XMLReader::ELEMENT) { + $xml->read(); // Move onto the value node + $tmpInfo['totalRows'] = (int) $xml->value + 1; + break; + } + } + $tmpInfo['lastColumnLetter'] = PHPExcel_Cell::stringFromColumnIndex($tmpInfo['lastColumnIndex']); + $worksheetInfo[] = $tmpInfo; + } + } + + return $worksheetInfo; + } + + private function gzfileGetContents($filename) + { + $file = @gzopen($filename, 'rb'); + if ($file !== false) { + $data = ''; + while (!gzeof($file)) { + $data .= gzread($file, 1024); + } + gzclose($file); + } + return $data; + } + + /** + * Loads PHPExcel from file + * + * @param string $pFilename + * @return PHPExcel + * @throws PHPExcel_Reader_Exception + */ + public function load($pFilename) + { + // Create new PHPExcel + $objPHPExcel = new PHPExcel(); + + // Load into this instance + return $this->loadIntoExisting($pFilename, $objPHPExcel); + } + + /** + * Loads PHPExcel from file into PHPExcel instance + * + * @param string $pFilename + * @param PHPExcel $objPHPExcel + * @return PHPExcel + * @throws PHPExcel_Reader_Exception + */ + public function loadIntoExisting($pFilename, PHPExcel $objPHPExcel) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + $timezoneObj = new DateTimeZone('Europe/London'); + $GMT = new DateTimeZone('UTC'); + + $gFileData = $this->gzfileGetContents($pFilename); + +// echo '<pre>'; +// echo htmlentities($gFileData,ENT_QUOTES,'UTF-8'); +// echo '</pre><hr />'; +// + $xml = simplexml_load_string($this->securityScan($gFileData), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + $namespacesMeta = $xml->getNamespaces(true); + +// var_dump($namespacesMeta); +// + $gnmXML = $xml->children($namespacesMeta['gnm']); + + $docProps = $objPHPExcel->getProperties(); + // Document Properties are held differently, depending on the version of Gnumeric + if (isset($namespacesMeta['office'])) { + $officeXML = $xml->children($namespacesMeta['office']); + $officeDocXML = $officeXML->{'document-meta'}; + $officeDocMetaXML = $officeDocXML->meta; + + foreach ($officeDocMetaXML as $officePropertyData) { + $officePropertyDC = array(); + if (isset($namespacesMeta['dc'])) { + $officePropertyDC = $officePropertyData->children($namespacesMeta['dc']); + } + foreach ($officePropertyDC as $propertyName => $propertyValue) { + $propertyValue = (string) $propertyValue; + switch ($propertyName) { + case 'title': + $docProps->setTitle(trim($propertyValue)); + break; + case 'subject': + $docProps->setSubject(trim($propertyValue)); + break; + case 'creator': + $docProps->setCreator(trim($propertyValue)); + $docProps->setLastModifiedBy(trim($propertyValue)); + break; + case 'date': + $creationDate = strtotime(trim($propertyValue)); + $docProps->setCreated($creationDate); + $docProps->setModified($creationDate); + break; + case 'description': + $docProps->setDescription(trim($propertyValue)); + break; + } + } + $officePropertyMeta = array(); + if (isset($namespacesMeta['meta'])) { + $officePropertyMeta = $officePropertyData->children($namespacesMeta['meta']); + } + foreach ($officePropertyMeta as $propertyName => $propertyValue) { + $attributes = $propertyValue->attributes($namespacesMeta['meta']); + $propertyValue = (string) $propertyValue; + switch ($propertyName) { + case 'keyword': + $docProps->setKeywords(trim($propertyValue)); + break; + case 'initial-creator': + $docProps->setCreator(trim($propertyValue)); + $docProps->setLastModifiedBy(trim($propertyValue)); + break; + case 'creation-date': + $creationDate = strtotime(trim($propertyValue)); + $docProps->setCreated($creationDate); + $docProps->setModified($creationDate); + break; + case 'user-defined': + list(, $attrName) = explode(':', $attributes['name']); + switch ($attrName) { + case 'publisher': + $docProps->setCompany(trim($propertyValue)); + break; + case 'category': + $docProps->setCategory(trim($propertyValue)); + break; + case 'manager': + $docProps->setManager(trim($propertyValue)); + break; + } + break; + } + } + } + } elseif (isset($gnmXML->Summary)) { + foreach ($gnmXML->Summary->Item as $summaryItem) { + $propertyName = $summaryItem->name; + $propertyValue = $summaryItem->{'val-string'}; + switch ($propertyName) { + case 'title': + $docProps->setTitle(trim($propertyValue)); + break; + case 'comments': + $docProps->setDescription(trim($propertyValue)); + break; + case 'keywords': + $docProps->setKeywords(trim($propertyValue)); + break; + case 'category': + $docProps->setCategory(trim($propertyValue)); + break; + case 'manager': + $docProps->setManager(trim($propertyValue)); + break; + case 'author': + $docProps->setCreator(trim($propertyValue)); + $docProps->setLastModifiedBy(trim($propertyValue)); + break; + case 'company': + $docProps->setCompany(trim($propertyValue)); + break; + } + } + } + + $worksheetID = 0; + foreach ($gnmXML->Sheets->Sheet as $sheet) { + $worksheetName = (string) $sheet->Name; +// echo '<b>Worksheet: ', $worksheetName,'</b><br />'; + if ((isset($this->loadSheetsOnly)) && (!in_array($worksheetName, $this->loadSheetsOnly))) { + continue; + } + + $maxRow = $maxCol = 0; + + // Create new Worksheet + $objPHPExcel->createSheet(); + $objPHPExcel->setActiveSheetIndex($worksheetID); + // Use false for $updateFormulaCellReferences to prevent adjustment of worksheet references in formula + // cells... during the load, all formulae should be correct, and we're simply bringing the worksheet + // name in line with the formula, not the reverse + $objPHPExcel->getActiveSheet()->setTitle($worksheetName, false); + + if ((!$this->readDataOnly) && (isset($sheet->PrintInformation))) { + if (isset($sheet->PrintInformation->Margins)) { + foreach ($sheet->PrintInformation->Margins->children('gnm', true) as $key => $margin) { + $marginAttributes = $margin->attributes(); + $marginSize = 72 / 100; // Default + switch ($marginAttributes['PrefUnit']) { + case 'mm': + $marginSize = intval($marginAttributes['Points']) / 100; + break; + } + switch ($key) { + case 'top': + $objPHPExcel->getActiveSheet()->getPageMargins()->setTop($marginSize); + break; + case 'bottom': + $objPHPExcel->getActiveSheet()->getPageMargins()->setBottom($marginSize); + break; + case 'left': + $objPHPExcel->getActiveSheet()->getPageMargins()->setLeft($marginSize); + break; + case 'right': + $objPHPExcel->getActiveSheet()->getPageMargins()->setRight($marginSize); + break; + case 'header': + $objPHPExcel->getActiveSheet()->getPageMargins()->setHeader($marginSize); + break; + case 'footer': + $objPHPExcel->getActiveSheet()->getPageMargins()->setFooter($marginSize); + break; + } + } + } + } + + foreach ($sheet->Cells->Cell as $cell) { + $cellAttributes = $cell->attributes(); + $row = (int) $cellAttributes->Row + 1; + $column = (int) $cellAttributes->Col; + + if ($row > $maxRow) { + $maxRow = $row; + } + if ($column > $maxCol) { + $maxCol = $column; + } + + $column = PHPExcel_Cell::stringFromColumnIndex($column); + + // Read cell? + if ($this->getReadFilter() !== null) { + if (!$this->getReadFilter()->readCell($column, $row, $worksheetName)) { + continue; + } + } + + $ValueType = $cellAttributes->ValueType; + $ExprID = (string) $cellAttributes->ExprID; +// echo 'Cell ', $column, $row,'<br />'; +// echo 'Type is ', $ValueType,'<br />'; +// echo 'Value is ', $cell,'<br />'; + $type = PHPExcel_Cell_DataType::TYPE_FORMULA; + if ($ExprID > '') { + if (((string) $cell) > '') { + $this->expressions[$ExprID] = array( + 'column' => $cellAttributes->Col, + 'row' => $cellAttributes->Row, + 'formula' => (string) $cell + ); +// echo 'NEW EXPRESSION ', $ExprID,'<br />'; + } else { + $expression = $this->expressions[$ExprID]; + + $cell = $this->referenceHelper->updateFormulaReferences( + $expression['formula'], + 'A1', + $cellAttributes->Col - $expression['column'], + $cellAttributes->Row - $expression['row'], + $worksheetName + ); +// echo 'SHARED EXPRESSION ', $ExprID,'<br />'; +// echo 'New Value is ', $cell,'<br />'; + } + $type = PHPExcel_Cell_DataType::TYPE_FORMULA; + } else { + switch ($ValueType) { + case '10': // NULL + $type = PHPExcel_Cell_DataType::TYPE_NULL; + break; + case '20': // Boolean + $type = PHPExcel_Cell_DataType::TYPE_BOOL; + $cell = ($cell == 'TRUE') ? true: false; + break; + case '30': // Integer + $cell = intval($cell); + // Excel 2007+ doesn't differentiate between integer and float, so set the value and dropthru to the next (numeric) case + case '40': // Float + $type = PHPExcel_Cell_DataType::TYPE_NUMERIC; + break; + case '50': // Error + $type = PHPExcel_Cell_DataType::TYPE_ERROR; + break; + case '60': // String + $type = PHPExcel_Cell_DataType::TYPE_STRING; + break; + case '70': // Cell Range + case '80': // Array + } + } + $objPHPExcel->getActiveSheet()->getCell($column.$row)->setValueExplicit($cell, $type); + } + + if ((!$this->readDataOnly) && (isset($sheet->Objects))) { + foreach ($sheet->Objects->children('gnm', true) as $key => $comment) { + $commentAttributes = $comment->attributes(); + // Only comment objects are handled at the moment + if ($commentAttributes->Text) { + $objPHPExcel->getActiveSheet()->getComment((string)$commentAttributes->ObjectBound)->setAuthor((string)$commentAttributes->Author)->setText($this->parseRichText((string)$commentAttributes->Text)); + } + } + } +// echo '$maxCol=', $maxCol,'; $maxRow=', $maxRow,'<br />'; +// + foreach ($sheet->Styles->StyleRegion as $styleRegion) { + $styleAttributes = $styleRegion->attributes(); + if (($styleAttributes['startRow'] <= $maxRow) && + ($styleAttributes['startCol'] <= $maxCol)) { + $startColumn = PHPExcel_Cell::stringFromColumnIndex((int) $styleAttributes['startCol']); + $startRow = $styleAttributes['startRow'] + 1; + + $endColumn = ($styleAttributes['endCol'] > $maxCol) ? $maxCol : (int) $styleAttributes['endCol']; + $endColumn = PHPExcel_Cell::stringFromColumnIndex($endColumn); + $endRow = ($styleAttributes['endRow'] > $maxRow) ? $maxRow : $styleAttributes['endRow']; + $endRow += 1; + $cellRange = $startColumn.$startRow.':'.$endColumn.$endRow; +// echo $cellRange,'<br />'; + + $styleAttributes = $styleRegion->Style->attributes(); +// var_dump($styleAttributes); +// echo '<br />'; + + // We still set the number format mask for date/time values, even if readDataOnly is true + if ((!$this->readDataOnly) || + (PHPExcel_Shared_Date::isDateTimeFormatCode((string) $styleAttributes['Format']))) { + $styleArray = array(); + $styleArray['numberformat']['code'] = (string) $styleAttributes['Format']; + // If readDataOnly is false, we set all formatting information + if (!$this->readDataOnly) { + switch ($styleAttributes['HAlign']) { + case '1': + $styleArray['alignment']['horizontal'] = PHPExcel_Style_Alignment::HORIZONTAL_GENERAL; + break; + case '2': + $styleArray['alignment']['horizontal'] = PHPExcel_Style_Alignment::HORIZONTAL_LEFT; + break; + case '4': + $styleArray['alignment']['horizontal'] = PHPExcel_Style_Alignment::HORIZONTAL_RIGHT; + break; + case '8': + $styleArray['alignment']['horizontal'] = PHPExcel_Style_Alignment::HORIZONTAL_CENTER; + break; + case '16': + case '64': + $styleArray['alignment']['horizontal'] = PHPExcel_Style_Alignment::HORIZONTAL_CENTER_CONTINUOUS; + break; + case '32': + $styleArray['alignment']['horizontal'] = PHPExcel_Style_Alignment::HORIZONTAL_JUSTIFY; + break; + } + + switch ($styleAttributes['VAlign']) { + case '1': + $styleArray['alignment']['vertical'] = PHPExcel_Style_Alignment::VERTICAL_TOP; + break; + case '2': + $styleArray['alignment']['vertical'] = PHPExcel_Style_Alignment::VERTICAL_BOTTOM; + break; + case '4': + $styleArray['alignment']['vertical'] = PHPExcel_Style_Alignment::VERTICAL_CENTER; + break; + case '8': + $styleArray['alignment']['vertical'] = PHPExcel_Style_Alignment::VERTICAL_JUSTIFY; + break; + } + + $styleArray['alignment']['wrap'] = ($styleAttributes['WrapText'] == '1') ? true : false; + $styleArray['alignment']['shrinkToFit'] = ($styleAttributes['ShrinkToFit'] == '1') ? true : false; + $styleArray['alignment']['indent'] = (intval($styleAttributes["Indent"]) > 0) ? $styleAttributes["indent"] : 0; + + $RGB = self::parseGnumericColour($styleAttributes["Fore"]); + $styleArray['font']['color']['rgb'] = $RGB; + $RGB = self::parseGnumericColour($styleAttributes["Back"]); + $shade = $styleAttributes["Shade"]; + if (($RGB != '000000') || ($shade != '0')) { + $styleArray['fill']['color']['rgb'] = $styleArray['fill']['startcolor']['rgb'] = $RGB; + $RGB2 = self::parseGnumericColour($styleAttributes["PatternColor"]); + $styleArray['fill']['endcolor']['rgb'] = $RGB2; + switch ($shade) { + case '1': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_SOLID; + break; + case '2': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_GRADIENT_LINEAR; + break; + case '3': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_GRADIENT_PATH; + break; + case '4': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_DARKDOWN; + break; + case '5': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_DARKGRAY; + break; + case '6': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_DARKGRID; + break; + case '7': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_DARKHORIZONTAL; + break; + case '8': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_DARKTRELLIS; + break; + case '9': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_DARKUP; + break; + case '10': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_DARKVERTICAL; + break; + case '11': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_GRAY0625; + break; + case '12': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_GRAY125; + break; + case '13': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_LIGHTDOWN; + break; + case '14': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_LIGHTGRAY; + break; + case '15': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_LIGHTGRID; + break; + case '16': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_LIGHTHORIZONTAL; + break; + case '17': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_LIGHTTRELLIS; + break; + case '18': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_LIGHTUP; + break; + case '19': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_LIGHTVERTICAL; + break; + case '20': + $styleArray['fill']['type'] = PHPExcel_Style_Fill::FILL_PATTERN_MEDIUMGRAY; + break; + } + } + + $fontAttributes = $styleRegion->Style->Font->attributes(); +// var_dump($fontAttributes); +// echo '<br />'; + $styleArray['font']['name'] = (string) $styleRegion->Style->Font; + $styleArray['font']['size'] = intval($fontAttributes['Unit']); + $styleArray['font']['bold'] = ($fontAttributes['Bold'] == '1') ? true : false; + $styleArray['font']['italic'] = ($fontAttributes['Italic'] == '1') ? true : false; + $styleArray['font']['strike'] = ($fontAttributes['StrikeThrough'] == '1') ? true : false; + switch ($fontAttributes['Underline']) { + case '1': + $styleArray['font']['underline'] = PHPExcel_Style_Font::UNDERLINE_SINGLE; + break; + case '2': + $styleArray['font']['underline'] = PHPExcel_Style_Font::UNDERLINE_DOUBLE; + break; + case '3': + $styleArray['font']['underline'] = PHPExcel_Style_Font::UNDERLINE_SINGLEACCOUNTING; + break; + case '4': + $styleArray['font']['underline'] = PHPExcel_Style_Font::UNDERLINE_DOUBLEACCOUNTING; + break; + default: + $styleArray['font']['underline'] = PHPExcel_Style_Font::UNDERLINE_NONE; + break; + } + switch ($fontAttributes['Script']) { + case '1': + $styleArray['font']['superScript'] = true; + break; + case '-1': + $styleArray['font']['subScript'] = true; + break; + } + + if (isset($styleRegion->Style->StyleBorder)) { + if (isset($styleRegion->Style->StyleBorder->Top)) { + $styleArray['borders']['top'] = self::parseBorderAttributes($styleRegion->Style->StyleBorder->Top->attributes()); + } + if (isset($styleRegion->Style->StyleBorder->Bottom)) { + $styleArray['borders']['bottom'] = self::parseBorderAttributes($styleRegion->Style->StyleBorder->Bottom->attributes()); + } + if (isset($styleRegion->Style->StyleBorder->Left)) { + $styleArray['borders']['left'] = self::parseBorderAttributes($styleRegion->Style->StyleBorder->Left->attributes()); + } + if (isset($styleRegion->Style->StyleBorder->Right)) { + $styleArray['borders']['right'] = self::parseBorderAttributes($styleRegion->Style->StyleBorder->Right->attributes()); + } + if ((isset($styleRegion->Style->StyleBorder->Diagonal)) && (isset($styleRegion->Style->StyleBorder->{'Rev-Diagonal'}))) { + $styleArray['borders']['diagonal'] = self::parseBorderAttributes($styleRegion->Style->StyleBorder->Diagonal->attributes()); + $styleArray['borders']['diagonaldirection'] = PHPExcel_Style_Borders::DIAGONAL_BOTH; + } elseif (isset($styleRegion->Style->StyleBorder->Diagonal)) { + $styleArray['borders']['diagonal'] = self::parseBorderAttributes($styleRegion->Style->StyleBorder->Diagonal->attributes()); + $styleArray['borders']['diagonaldirection'] = PHPExcel_Style_Borders::DIAGONAL_UP; + } elseif (isset($styleRegion->Style->StyleBorder->{'Rev-Diagonal'})) { + $styleArray['borders']['diagonal'] = self::parseBorderAttributes($styleRegion->Style->StyleBorder->{'Rev-Diagonal'}->attributes()); + $styleArray['borders']['diagonaldirection'] = PHPExcel_Style_Borders::DIAGONAL_DOWN; + } + } + if (isset($styleRegion->Style->HyperLink)) { + // TO DO + $hyperlink = $styleRegion->Style->HyperLink->attributes(); + } + } +// var_dump($styleArray); +// echo '<br />'; + $objPHPExcel->getActiveSheet()->getStyle($cellRange)->applyFromArray($styleArray); + } + } + } + + if ((!$this->readDataOnly) && (isset($sheet->Cols))) { + // Column Widths + $columnAttributes = $sheet->Cols->attributes(); + $defaultWidth = $columnAttributes['DefaultSizePts'] / 5.4; + $c = 0; + foreach ($sheet->Cols->ColInfo as $columnOverride) { + $columnAttributes = $columnOverride->attributes(); + $column = $columnAttributes['No']; + $columnWidth = $columnAttributes['Unit'] / 5.4; + $hidden = ((isset($columnAttributes['Hidden'])) && ($columnAttributes['Hidden'] == '1')) ? true : false; + $columnCount = (isset($columnAttributes['Count'])) ? $columnAttributes['Count'] : 1; + while ($c < $column) { + $objPHPExcel->getActiveSheet()->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($c))->setWidth($defaultWidth); + ++$c; + } + while (($c < ($column+$columnCount)) && ($c <= $maxCol)) { + $objPHPExcel->getActiveSheet()->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($c))->setWidth($columnWidth); + if ($hidden) { + $objPHPExcel->getActiveSheet()->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($c))->setVisible(false); + } + ++$c; + } + } + while ($c <= $maxCol) { + $objPHPExcel->getActiveSheet()->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($c))->setWidth($defaultWidth); + ++$c; + } + } + + if ((!$this->readDataOnly) && (isset($sheet->Rows))) { + // Row Heights + $rowAttributes = $sheet->Rows->attributes(); + $defaultHeight = $rowAttributes['DefaultSizePts']; + $r = 0; + + foreach ($sheet->Rows->RowInfo as $rowOverride) { + $rowAttributes = $rowOverride->attributes(); + $row = $rowAttributes['No']; + $rowHeight = $rowAttributes['Unit']; + $hidden = ((isset($rowAttributes['Hidden'])) && ($rowAttributes['Hidden'] == '1')) ? true : false; + $rowCount = (isset($rowAttributes['Count'])) ? $rowAttributes['Count'] : 1; + while ($r < $row) { + ++$r; + $objPHPExcel->getActiveSheet()->getRowDimension($r)->setRowHeight($defaultHeight); + } + while (($r < ($row+$rowCount)) && ($r < $maxRow)) { + ++$r; + $objPHPExcel->getActiveSheet()->getRowDimension($r)->setRowHeight($rowHeight); + if ($hidden) { + $objPHPExcel->getActiveSheet()->getRowDimension($r)->setVisible(false); + } + } + } + while ($r < $maxRow) { + ++$r; + $objPHPExcel->getActiveSheet()->getRowDimension($r)->setRowHeight($defaultHeight); + } + } + + // Handle Merged Cells in this worksheet + if (isset($sheet->MergedRegions)) { + foreach ($sheet->MergedRegions->Merge as $mergeCells) { + if (strpos($mergeCells, ':') !== false) { + $objPHPExcel->getActiveSheet()->mergeCells($mergeCells); + } + } + } + + $worksheetID++; + } + + // Loop through definedNames (global named ranges) + if (isset($gnmXML->Names)) { + foreach ($gnmXML->Names->Name as $namedRange) { + $name = (string) $namedRange->name; + $range = (string) $namedRange->value; + if (stripos($range, '#REF!') !== false) { + continue; + } + + $range = explode('!', $range); + $range[0] = trim($range[0], "'"); + if ($worksheet = $objPHPExcel->getSheetByName($range[0])) { + $extractedRange = str_replace('$', '', $range[1]); + $objPHPExcel->addNamedRange(new PHPExcel_NamedRange($name, $worksheet, $extractedRange)); + } + } + } + + // Return + return $objPHPExcel; + } + + private static function parseBorderAttributes($borderAttributes) + { + $styleArray = array(); + if (isset($borderAttributes["Color"])) { + $styleArray['color']['rgb'] = self::parseGnumericColour($borderAttributes["Color"]); + } + + switch ($borderAttributes["Style"]) { + case '0': + $styleArray['style'] = PHPExcel_Style_Border::BORDER_NONE; + break; + case '1': + $styleArray['style'] = PHPExcel_Style_Border::BORDER_THIN; + break; + case '2': + $styleArray['style'] = PHPExcel_Style_Border::BORDER_MEDIUM; + break; + case '3': + $styleArray['style'] = PHPExcel_Style_Border::BORDER_SLANTDASHDOT; + break; + case '4': + $styleArray['style'] = PHPExcel_Style_Border::BORDER_DASHED; + break; + case '5': + $styleArray['style'] = PHPExcel_Style_Border::BORDER_THICK; + break; + case '6': + $styleArray['style'] = PHPExcel_Style_Border::BORDER_DOUBLE; + break; + case '7': + $styleArray['style'] = PHPExcel_Style_Border::BORDER_DOTTED; + break; + case '8': + $styleArray['style'] = PHPExcel_Style_Border::BORDER_MEDIUMDASHED; + break; + case '9': + $styleArray['style'] = PHPExcel_Style_Border::BORDER_DASHDOT; + break; + case '10': + $styleArray['style'] = PHPExcel_Style_Border::BORDER_MEDIUMDASHDOT; + break; + case '11': + $styleArray['style'] = PHPExcel_Style_Border::BORDER_DASHDOTDOT; + break; + case '12': + $styleArray['style'] = PHPExcel_Style_Border::BORDER_MEDIUMDASHDOTDOT; + break; + case '13': + $styleArray['style'] = PHPExcel_Style_Border::BORDER_MEDIUMDASHDOTDOT; + break; + } + return $styleArray; + } + + private function parseRichText($is = '') + { + $value = new PHPExcel_RichText(); + $value->createText($is); + + return $value; + } + + private static function parseGnumericColour($gnmColour) + { + list($gnmR, $gnmG, $gnmB) = explode(':', $gnmColour); + $gnmR = substr(str_pad($gnmR, 4, '0', STR_PAD_RIGHT), 0, 2); + $gnmG = substr(str_pad($gnmG, 4, '0', STR_PAD_RIGHT), 0, 2); + $gnmB = substr(str_pad($gnmB, 4, '0', STR_PAD_RIGHT), 0, 2); + return $gnmR . $gnmG . $gnmB; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/HTML.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/HTML.php new file mode 100644 index 0000000..ac762a4 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/HTML.php @@ -0,0 +1,549 @@ +<?php + +if (!defined('PHPEXCEL_ROOT')) { + /** + * @ignore + */ + define('PHPEXCEL_ROOT', dirname(__FILE__) . '/../../'); + require(PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php'); +} + +/** + * PHPExcel_Reader_HTML + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Reader + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +/** PHPExcel root directory */ +class PHPExcel_Reader_HTML extends PHPExcel_Reader_Abstract implements PHPExcel_Reader_IReader +{ + + /** + * Input encoding + * + * @var string + */ + protected $inputEncoding = 'ANSI'; + + /** + * Sheet index to read + * + * @var int + */ + protected $sheetIndex = 0; + + /** + * Formats + * + * @var array + */ + protected $formats = array( + 'h1' => array( + 'font' => array( + 'bold' => true, + 'size' => 24, + ), + ), // Bold, 24pt + 'h2' => array( + 'font' => array( + 'bold' => true, + 'size' => 18, + ), + ), // Bold, 18pt + 'h3' => array( + 'font' => array( + 'bold' => true, + 'size' => 13.5, + ), + ), // Bold, 13.5pt + 'h4' => array( + 'font' => array( + 'bold' => true, + 'size' => 12, + ), + ), // Bold, 12pt + 'h5' => array( + 'font' => array( + 'bold' => true, + 'size' => 10, + ), + ), // Bold, 10pt + 'h6' => array( + 'font' => array( + 'bold' => true, + 'size' => 7.5, + ), + ), // Bold, 7.5pt + 'a' => array( + 'font' => array( + 'underline' => true, + 'color' => array( + 'argb' => PHPExcel_Style_Color::COLOR_BLUE, + ), + ), + ), // Blue underlined + 'hr' => array( + 'borders' => array( + 'bottom' => array( + 'style' => PHPExcel_Style_Border::BORDER_THIN, + 'color' => array( + PHPExcel_Style_Color::COLOR_BLACK, + ), + ), + ), + ), // Bottom border + ); + + protected $rowspan = array(); + + /** + * Create a new PHPExcel_Reader_HTML + */ + public function __construct() + { + $this->readFilter = new PHPExcel_Reader_DefaultReadFilter(); + } + + /** + * Validate that the current file is an HTML file + * + * @return boolean + */ + protected function isValidFormat() + { + // Reading 2048 bytes should be enough to validate that the format is HTML + $data = fread($this->fileHandle, 2048); + if ((strpos($data, '<') !== false) && + (strlen($data) !== strlen(strip_tags($data)))) { + return true; + } + + return false; + } + + /** + * Loads PHPExcel from file + * + * @param string $pFilename + * @return PHPExcel + * @throws PHPExcel_Reader_Exception + */ + public function load($pFilename) + { + // Create new PHPExcel + $objPHPExcel = new PHPExcel(); + + // Load into this instance + return $this->loadIntoExisting($pFilename, $objPHPExcel); + } + + /** + * Set input encoding + * + * @param string $pValue Input encoding + */ + public function setInputEncoding($pValue = 'ANSI') + { + $this->inputEncoding = $pValue; + + return $this; + } + + /** + * Get input encoding + * + * @return string + */ + public function getInputEncoding() + { + return $this->inputEncoding; + } + + // Data Array used for testing only, should write to PHPExcel object on completion of tests + protected $dataArray = array(); + protected $tableLevel = 0; + protected $nestedColumn = array('A'); + + protected function setTableStartColumn($column) + { + if ($this->tableLevel == 0) { + $column = 'A'; + } + ++$this->tableLevel; + $this->nestedColumn[$this->tableLevel] = $column; + + return $this->nestedColumn[$this->tableLevel]; + } + + protected function getTableStartColumn() + { + return $this->nestedColumn[$this->tableLevel]; + } + + protected function releaseTableStartColumn() + { + --$this->tableLevel; + + return array_pop($this->nestedColumn); + } + + protected function flushCell($sheet, $column, $row, &$cellContent) + { + if (is_string($cellContent)) { + // Simple String content + if (trim($cellContent) > '') { + // Only actually write it if there's content in the string +// echo 'FLUSH CELL: ' , $column , $row , ' => ' , $cellContent , '<br />'; + // Write to worksheet to be done here... + // ... we return the cell so we can mess about with styles more easily + $sheet->setCellValue($column . $row, $cellContent, true); + $this->dataArray[$row][$column] = $cellContent; + } + } else { + // We have a Rich Text run + // TODO + $this->dataArray[$row][$column] = 'RICH TEXT: ' . $cellContent; + } + $cellContent = (string) ''; + } + + protected function processDomElement(DOMNode $element, $sheet, &$row, &$column, &$cellContent, $format = null) + { + foreach ($element->childNodes as $child) { + if ($child instanceof DOMText) { + $domText = preg_replace('/\s+/u', ' ', trim($child->nodeValue)); + if (is_string($cellContent)) { + // simply append the text if the cell content is a plain text string + $cellContent .= $domText; + } else { + // but if we have a rich text run instead, we need to append it correctly + // TODO + } + } elseif ($child instanceof DOMElement) { +// echo '<b>DOM ELEMENT: </b>' , strtoupper($child->nodeName) , '<br />'; + + $attributeArray = array(); + foreach ($child->attributes as $attribute) { +// echo '<b>ATTRIBUTE: </b>' , $attribute->name , ' => ' , $attribute->value , '<br />'; + $attributeArray[$attribute->name] = $attribute->value; + } + + switch ($child->nodeName) { + case 'meta': + foreach ($attributeArray as $attributeName => $attributeValue) { + switch ($attributeName) { + case 'content': + // TODO + // Extract character set, so we can convert to UTF-8 if required + break; + } + } + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + break; + case 'title': + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + $sheet->setTitle($cellContent); + $cellContent = ''; + break; + case 'span': + case 'div': + case 'font': + case 'i': + case 'em': + case 'strong': + case 'b': +// echo 'STYLING, SPAN OR DIV<br />'; + if ($cellContent > '') { + $cellContent .= ' '; + } + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + if ($cellContent > '') { + $cellContent .= ' '; + } +// echo 'END OF STYLING, SPAN OR DIV<br />'; + break; + case 'hr': + $this->flushCell($sheet, $column, $row, $cellContent); + ++$row; + if (isset($this->formats[$child->nodeName])) { + $sheet->getStyle($column . $row)->applyFromArray($this->formats[$child->nodeName]); + } else { + $cellContent = '----------'; + $this->flushCell($sheet, $column, $row, $cellContent); + } + ++$row; + // Add a break after a horizontal rule, simply by allowing the code to dropthru + case 'br': + if ($this->tableLevel > 0) { + // If we're inside a table, replace with a \n + $cellContent .= "\n"; + } else { + // Otherwise flush our existing content and move the row cursor on + $this->flushCell($sheet, $column, $row, $cellContent); + ++$row; + } +// echo 'HARD LINE BREAK: ' , '<br />'; + break; + case 'a': +// echo 'START OF HYPERLINK: ' , '<br />'; + foreach ($attributeArray as $attributeName => $attributeValue) { + switch ($attributeName) { + case 'href': +// echo 'Link to ' , $attributeValue , '<br />'; + $sheet->getCell($column . $row)->getHyperlink()->setUrl($attributeValue); + if (isset($this->formats[$child->nodeName])) { + $sheet->getStyle($column . $row)->applyFromArray($this->formats[$child->nodeName]); + } + break; + } + } + $cellContent .= ' '; + $this->processDomElement($child, $sheet, $row, $column, $cellContent); +// echo 'END OF HYPERLINK:' , '<br />'; + break; + case 'h1': + case 'h2': + case 'h3': + case 'h4': + case 'h5': + case 'h6': + case 'ol': + case 'ul': + case 'p': + if ($this->tableLevel > 0) { + // If we're inside a table, replace with a \n + $cellContent .= "\n"; +// echo 'LIST ENTRY: ' , '<br />'; + $this->processDomElement($child, $sheet, $row, $column, $cellContent); +// echo 'END OF LIST ENTRY:' , '<br />'; + } else { + if ($cellContent > '') { + $this->flushCell($sheet, $column, $row, $cellContent); + $row++; + } +// echo 'START OF PARAGRAPH: ' , '<br />'; + $this->processDomElement($child, $sheet, $row, $column, $cellContent); +// echo 'END OF PARAGRAPH:' , '<br />'; + $this->flushCell($sheet, $column, $row, $cellContent); + + if (isset($this->formats[$child->nodeName])) { + $sheet->getStyle($column . $row)->applyFromArray($this->formats[$child->nodeName]); + } + + $row++; + $column = 'A'; + } + break; + case 'li': + if ($this->tableLevel > 0) { + // If we're inside a table, replace with a \n + $cellContent .= "\n"; +// echo 'LIST ENTRY: ' , '<br />'; + $this->processDomElement($child, $sheet, $row, $column, $cellContent); +// echo 'END OF LIST ENTRY:' , '<br />'; + } else { + if ($cellContent > '') { + $this->flushCell($sheet, $column, $row, $cellContent); + } + ++$row; +// echo 'LIST ENTRY: ' , '<br />'; + $this->processDomElement($child, $sheet, $row, $column, $cellContent); +// echo 'END OF LIST ENTRY:' , '<br />'; + $this->flushCell($sheet, $column, $row, $cellContent); + $column = 'A'; + } + break; + case 'table': + $this->flushCell($sheet, $column, $row, $cellContent); + $column = $this->setTableStartColumn($column); +// echo 'START OF TABLE LEVEL ' , $this->tableLevel , '<br />'; + if ($this->tableLevel > 1) { + --$row; + } + $this->processDomElement($child, $sheet, $row, $column, $cellContent); +// echo 'END OF TABLE LEVEL ' , $this->tableLevel , '<br />'; + $column = $this->releaseTableStartColumn(); + if ($this->tableLevel > 1) { + ++$column; + } else { + ++$row; + } + break; + case 'thead': + case 'tbody': + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + break; + case 'tr': + $column = $this->getTableStartColumn(); + $cellContent = ''; +// echo 'START OF TABLE ' , $this->tableLevel , ' ROW<br />'; + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + ++$row; +// echo 'END OF TABLE ' , $this->tableLevel , ' ROW<br />'; + break; + case 'th': + case 'td': +// echo 'START OF TABLE ' , $this->tableLevel , ' CELL<br />'; + $this->processDomElement($child, $sheet, $row, $column, $cellContent); +// echo 'END OF TABLE ' , $this->tableLevel , ' CELL<br />'; + + while (isset($this->rowspan[$column . $row])) { + ++$column; + } + + $this->flushCell($sheet, $column, $row, $cellContent); + +// if (isset($attributeArray['style']) && !empty($attributeArray['style'])) { +// $styleAry = $this->getPhpExcelStyleArray($attributeArray['style']); +// +// if (!empty($styleAry)) { +// $sheet->getStyle($column . $row)->applyFromArray($styleAry); +// } +// } + + if (isset($attributeArray['rowspan']) && isset($attributeArray['colspan'])) { + //create merging rowspan and colspan + $columnTo = $column; + for ($i = 0; $i < $attributeArray['colspan'] - 1; $i++) { + ++$columnTo; + } + $range = $column . $row . ':' . $columnTo . ($row + $attributeArray['rowspan'] - 1); + foreach (\PHPExcel_Cell::extractAllCellReferencesInRange($range) as $value) { + $this->rowspan[$value] = true; + } + $sheet->mergeCells($range); + $column = $columnTo; + } elseif (isset($attributeArray['rowspan'])) { + //create merging rowspan + $range = $column . $row . ':' . $column . ($row + $attributeArray['rowspan'] - 1); + foreach (\PHPExcel_Cell::extractAllCellReferencesInRange($range) as $value) { + $this->rowspan[$value] = true; + } + $sheet->mergeCells($range); + } elseif (isset($attributeArray['colspan'])) { + //create merging colspan + $columnTo = $column; + for ($i = 0; $i < $attributeArray['colspan'] - 1; $i++) { + ++$columnTo; + } + $sheet->mergeCells($column . $row . ':' . $columnTo . $row); + $column = $columnTo; + } + ++$column; + break; + case 'body': + $row = 1; + $column = 'A'; + $content = ''; + $this->tableLevel = 0; + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + break; + default: + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + } + } + } + } + + /** + * Loads PHPExcel from file into PHPExcel instance + * + * @param string $pFilename + * @param PHPExcel $objPHPExcel + * @return PHPExcel + * @throws PHPExcel_Reader_Exception + */ + public function loadIntoExisting($pFilename, PHPExcel $objPHPExcel) + { + // Open file to validate + $this->openFile($pFilename); + if (!$this->isValidFormat()) { + fclose($this->fileHandle); + throw new PHPExcel_Reader_Exception($pFilename . " is an Invalid HTML file."); + } + // Close after validating + fclose($this->fileHandle); + + // Create new PHPExcel + while ($objPHPExcel->getSheetCount() <= $this->sheetIndex) { + $objPHPExcel->createSheet(); + } + $objPHPExcel->setActiveSheetIndex($this->sheetIndex); + + // Create a new DOM object + $dom = new domDocument; + // Reload the HTML file into the DOM object + $loaded = $dom->loadHTML(mb_convert_encoding($this->securityScanFile($pFilename), 'HTML-ENTITIES', 'UTF-8')); + if ($loaded === false) { + throw new PHPExcel_Reader_Exception('Failed to load ' . $pFilename . ' as a DOM Document'); + } + + // Discard white space + $dom->preserveWhiteSpace = false; + + $row = 0; + $column = 'A'; + $content = ''; + $this->processDomElement($dom, $objPHPExcel->getActiveSheet(), $row, $column, $content); + + // Return + return $objPHPExcel; + } + + /** + * Get sheet index + * + * @return int + */ + public function getSheetIndex() + { + return $this->sheetIndex; + } + + /** + * Set sheet index + * + * @param int $pValue Sheet index + * @return PHPExcel_Reader_HTML + */ + public function setSheetIndex($pValue = 0) + { + $this->sheetIndex = $pValue; + + return $this; + } + + /** + * Scan theXML for use of <!ENTITY to prevent XXE/XEE attacks + * + * @param string $xml + * @throws PHPExcel_Reader_Exception + */ + public function securityScan($xml) + { + $pattern = '/\\0?' . implode('\\0?', str_split('<!ENTITY')) . '\\0?/'; + if (preg_match($pattern, $xml)) { + throw new PHPExcel_Reader_Exception('Detected use of ENTITY in XML, spreadsheet file load() aborted to prevent XXE/XEE attacks'); + } + return $xml; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/IReadFilter.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/IReadFilter.php new file mode 100644 index 0000000..f7c852d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/IReadFilter.php @@ -0,0 +1,39 @@ +<?php + +/** + * PHPExcel_Reader_IReadFilter + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Reader + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +interface PHPExcel_Reader_IReadFilter +{ + /** + * Should this cell be read? + * + * @param $column Column address (as a string value like "A", or "IV") + * @param $row Row number + * @param $worksheetName Optional worksheet name + * @return boolean + */ + public function readCell($column, $row, $worksheetName = ''); +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/IReader.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/IReader.php new file mode 100644 index 0000000..9034546 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/IReader.php @@ -0,0 +1,46 @@ +<?php + +/** + * PHPExcel_Reader_IReader + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Reader + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +interface PHPExcel_Reader_IReader +{ + /** + * Can the current PHPExcel_Reader_IReader read the file? + * + * @param string $pFilename + * @return boolean + */ + public function canRead($pFilename); + + /** + * Loads PHPExcel from file + * + * @param string $pFilename + * @return PHPExcel + * @throws PHPExcel_Reader_Exception + */ + public function load($pFilename); +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/OOCalc.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/OOCalc.php new file mode 100644 index 0000000..a889d95 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/OOCalc.php @@ -0,0 +1,696 @@ +<?php + +/** PHPExcel root directory */ +if (!defined('PHPEXCEL_ROOT')) { + /** + * @ignore + */ + define('PHPEXCEL_ROOT', dirname(__FILE__) . '/../../'); + require(PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php'); +} + +/** + * PHPExcel_Reader_OOCalc + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Reader + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Reader_OOCalc extends PHPExcel_Reader_Abstract implements PHPExcel_Reader_IReader +{ + /** + * Formats + * + * @var array + */ + private $styles = array(); + + /** + * Create a new PHPExcel_Reader_OOCalc + */ + public function __construct() + { + $this->readFilter = new PHPExcel_Reader_DefaultReadFilter(); + } + + /** + * Can the current PHPExcel_Reader_IReader read the file? + * + * @param string $pFilename + * @return boolean + * @throws PHPExcel_Reader_Exception + */ + public function canRead($pFilename) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + $zipClass = PHPExcel_Settings::getZipClass(); + + // Check if zip class exists +// if (!class_exists($zipClass, false)) { +// throw new PHPExcel_Reader_Exception($zipClass . " library is not enabled"); +// } + + $mimeType = 'UNKNOWN'; + // Load file + $zip = new $zipClass; + if ($zip->open($pFilename) === true) { + // check if it is an OOXML archive + $stat = $zip->statName('mimetype'); + if ($stat && ($stat['size'] <= 255)) { + $mimeType = $zip->getFromName($stat['name']); + } elseif ($stat = $zip->statName('META-INF/manifest.xml')) { + $xml = simplexml_load_string($this->securityScan($zip->getFromName('META-INF/manifest.xml')), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + $namespacesContent = $xml->getNamespaces(true); + if (isset($namespacesContent['manifest'])) { + $manifest = $xml->children($namespacesContent['manifest']); + foreach ($manifest as $manifestDataSet) { + $manifestAttributes = $manifestDataSet->attributes($namespacesContent['manifest']); + if ($manifestAttributes->{'full-path'} == '/') { + $mimeType = (string) $manifestAttributes->{'media-type'}; + break; + } + } + } + } + + $zip->close(); + + return ($mimeType === 'application/vnd.oasis.opendocument.spreadsheet'); + } + + return false; + } + + + /** + * Reads names of the worksheets from a file, without parsing the whole file to a PHPExcel object + * + * @param string $pFilename + * @throws PHPExcel_Reader_Exception + */ + public function listWorksheetNames($pFilename) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + $zipClass = PHPExcel_Settings::getZipClass(); + + $zip = new $zipClass; + if (!$zip->open($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! Error opening file."); + } + + $worksheetNames = array(); + + $xml = new XMLReader(); + $res = $xml->xml($this->securityScanFile('zip://'.realpath($pFilename).'#content.xml'), null, PHPExcel_Settings::getLibXmlLoaderOptions()); + $xml->setParserProperty(2, true); + + // Step into the first level of content of the XML + $xml->read(); + while ($xml->read()) { + // Quickly jump through to the office:body node + while ($xml->name !== 'office:body') { + if ($xml->isEmptyElement) { + $xml->read(); + } else { + $xml->next(); + } + } + // Now read each node until we find our first table:table node + while ($xml->read()) { + if ($xml->name == 'table:table' && $xml->nodeType == XMLReader::ELEMENT) { + // Loop through each table:table node reading the table:name attribute for each worksheet name + do { + $worksheetNames[] = $xml->getAttribute('table:name'); + $xml->next(); + } while ($xml->name == 'table:table' && $xml->nodeType == XMLReader::ELEMENT); + } + } + } + + return $worksheetNames; + } + + /** + * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns) + * + * @param string $pFilename + * @throws PHPExcel_Reader_Exception + */ + public function listWorksheetInfo($pFilename) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + $worksheetInfo = array(); + + $zipClass = PHPExcel_Settings::getZipClass(); + + $zip = new $zipClass; + if (!$zip->open($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! Error opening file."); + } + + $xml = new XMLReader(); + $res = $xml->xml($this->securityScanFile('zip://'.realpath($pFilename).'#content.xml'), null, PHPExcel_Settings::getLibXmlLoaderOptions()); + $xml->setParserProperty(2, true); + + // Step into the first level of content of the XML + $xml->read(); + while ($xml->read()) { + // Quickly jump through to the office:body node + while ($xml->name !== 'office:body') { + if ($xml->isEmptyElement) { + $xml->read(); + } else { + $xml->next(); + } + } + // Now read each node until we find our first table:table node + while ($xml->read()) { + if ($xml->name == 'table:table' && $xml->nodeType == XMLReader::ELEMENT) { + $worksheetNames[] = $xml->getAttribute('table:name'); + + $tmpInfo = array( + 'worksheetName' => $xml->getAttribute('table:name'), + 'lastColumnLetter' => 'A', + 'lastColumnIndex' => 0, + 'totalRows' => 0, + 'totalColumns' => 0, + ); + + // Loop through each child node of the table:table element reading + $currCells = 0; + do { + $xml->read(); + if ($xml->name == 'table:table-row' && $xml->nodeType == XMLReader::ELEMENT) { + $rowspan = $xml->getAttribute('table:number-rows-repeated'); + $rowspan = empty($rowspan) ? 1 : $rowspan; + $tmpInfo['totalRows'] += $rowspan; + $tmpInfo['totalColumns'] = max($tmpInfo['totalColumns'], $currCells); + $currCells = 0; + // Step into the row + $xml->read(); + do { + if ($xml->name == 'table:table-cell' && $xml->nodeType == XMLReader::ELEMENT) { + if (!$xml->isEmptyElement) { + $currCells++; + $xml->next(); + } else { + $xml->read(); + } + } elseif ($xml->name == 'table:covered-table-cell' && $xml->nodeType == XMLReader::ELEMENT) { + $mergeSize = $xml->getAttribute('table:number-columns-repeated'); + $currCells += $mergeSize; + $xml->read(); + } + } while ($xml->name != 'table:table-row'); + } + } while ($xml->name != 'table:table'); + + $tmpInfo['totalColumns'] = max($tmpInfo['totalColumns'], $currCells); + $tmpInfo['lastColumnIndex'] = $tmpInfo['totalColumns'] - 1; + $tmpInfo['lastColumnLetter'] = PHPExcel_Cell::stringFromColumnIndex($tmpInfo['lastColumnIndex']); + $worksheetInfo[] = $tmpInfo; + } + } + +// foreach ($workbookData->table as $worksheetDataSet) { +// $worksheetData = $worksheetDataSet->children($namespacesContent['table']); +// $worksheetDataAttributes = $worksheetDataSet->attributes($namespacesContent['table']); +// +// $rowIndex = 0; +// foreach ($worksheetData as $key => $rowData) { +// switch ($key) { +// case 'table-row' : +// $rowDataTableAttributes = $rowData->attributes($namespacesContent['table']); +// $rowRepeats = (isset($rowDataTableAttributes['number-rows-repeated'])) ? +// $rowDataTableAttributes['number-rows-repeated'] : 1; +// $columnIndex = 0; +// +// foreach ($rowData as $key => $cellData) { +// $cellDataTableAttributes = $cellData->attributes($namespacesContent['table']); +// $colRepeats = (isset($cellDataTableAttributes['number-columns-repeated'])) ? +// $cellDataTableAttributes['number-columns-repeated'] : 1; +// $cellDataOfficeAttributes = $cellData->attributes($namespacesContent['office']); +// if (isset($cellDataOfficeAttributes['value-type'])) { +// $tmpInfo['lastColumnIndex'] = max($tmpInfo['lastColumnIndex'], $columnIndex + $colRepeats - 1); +// $tmpInfo['totalRows'] = max($tmpInfo['totalRows'], $rowIndex + $rowRepeats); +// } +// $columnIndex += $colRepeats; +// } +// $rowIndex += $rowRepeats; +// break; +// } +// } +// +// $tmpInfo['lastColumnLetter'] = PHPExcel_Cell::stringFromColumnIndex($tmpInfo['lastColumnIndex']); +// $tmpInfo['totalColumns'] = $tmpInfo['lastColumnIndex'] + 1; +// +// } +// } + } + + return $worksheetInfo; + } + + /** + * Loads PHPExcel from file + * + * @param string $pFilename + * @return PHPExcel + * @throws PHPExcel_Reader_Exception + */ + public function load($pFilename) + { + // Create new PHPExcel + $objPHPExcel = new PHPExcel(); + + // Load into this instance + return $this->loadIntoExisting($pFilename, $objPHPExcel); + } + + private static function identifyFixedStyleValue($styleList, &$styleAttributeValue) + { + $styleAttributeValue = strtolower($styleAttributeValue); + foreach ($styleList as $style) { + if ($styleAttributeValue == strtolower($style)) { + $styleAttributeValue = $style; + return true; + } + } + return false; + } + + /** + * Loads PHPExcel from file into PHPExcel instance + * + * @param string $pFilename + * @param PHPExcel $objPHPExcel + * @return PHPExcel + * @throws PHPExcel_Reader_Exception + */ + public function loadIntoExisting($pFilename, PHPExcel $objPHPExcel) + { + // Check if file exists + if (!file_exists($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); + } + + $timezoneObj = new DateTimeZone('Europe/London'); + $GMT = new DateTimeZone('UTC'); + + $zipClass = PHPExcel_Settings::getZipClass(); + + $zip = new $zipClass; + if (!$zip->open($pFilename)) { + throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! Error opening file."); + } + +// echo '<h1>Meta Information</h1>'; + $xml = simplexml_load_string($this->securityScan($zip->getFromName("meta.xml")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + $namespacesMeta = $xml->getNamespaces(true); +// echo '<pre>'; +// print_r($namespacesMeta); +// echo '</pre><hr />'; + + $docProps = $objPHPExcel->getProperties(); + $officeProperty = $xml->children($namespacesMeta['office']); + foreach ($officeProperty as $officePropertyData) { + $officePropertyDC = array(); + if (isset($namespacesMeta['dc'])) { + $officePropertyDC = $officePropertyData->children($namespacesMeta['dc']); + } + foreach ($officePropertyDC as $propertyName => $propertyValue) { + $propertyValue = (string) $propertyValue; + switch ($propertyName) { + case 'title': + $docProps->setTitle($propertyValue); + break; + case 'subject': + $docProps->setSubject($propertyValue); + break; + case 'creator': + $docProps->setCreator($propertyValue); + $docProps->setLastModifiedBy($propertyValue); + break; + case 'date': + $creationDate = strtotime($propertyValue); + $docProps->setCreated($creationDate); + $docProps->setModified($creationDate); + break; + case 'description': + $docProps->setDescription($propertyValue); + break; + } + } + $officePropertyMeta = array(); + if (isset($namespacesMeta['dc'])) { + $officePropertyMeta = $officePropertyData->children($namespacesMeta['meta']); + } + foreach ($officePropertyMeta as $propertyName => $propertyValue) { + $propertyValueAttributes = $propertyValue->attributes($namespacesMeta['meta']); + $propertyValue = (string) $propertyValue; + switch ($propertyName) { + case 'initial-creator': + $docProps->setCreator($propertyValue); + break; + case 'keyword': + $docProps->setKeywords($propertyValue); + break; + case 'creation-date': + $creationDate = strtotime($propertyValue); + $docProps->setCreated($creationDate); + break; + case 'user-defined': + $propertyValueType = PHPExcel_DocumentProperties::PROPERTY_TYPE_STRING; + foreach ($propertyValueAttributes as $key => $value) { + if ($key == 'name') { + $propertyValueName = (string) $value; + } elseif ($key == 'value-type') { + switch ($value) { + case 'date': + $propertyValue = PHPExcel_DocumentProperties::convertProperty($propertyValue, 'date'); + $propertyValueType = PHPExcel_DocumentProperties::PROPERTY_TYPE_DATE; + break; + case 'boolean': + $propertyValue = PHPExcel_DocumentProperties::convertProperty($propertyValue, 'bool'); + $propertyValueType = PHPExcel_DocumentProperties::PROPERTY_TYPE_BOOLEAN; + break; + case 'float': + $propertyValue = PHPExcel_DocumentProperties::convertProperty($propertyValue, 'r4'); + $propertyValueType = PHPExcel_DocumentProperties::PROPERTY_TYPE_FLOAT; + break; + default: + $propertyValueType = PHPExcel_DocumentProperties::PROPERTY_TYPE_STRING; + } + } + } + $docProps->setCustomProperty($propertyValueName, $propertyValue, $propertyValueType); + break; + } + } + } + + +// echo '<h1>Workbook Content</h1>'; + $xml = simplexml_load_string($this->securityScan($zip->getFromName("content.xml")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); + $namespacesContent = $xml->getNamespaces(true); +// echo '<pre>'; +// print_r($namespacesContent); +// echo '</pre><hr />'; + + $workbook = $xml->children($namespacesContent['office']); + foreach ($workbook->body->spreadsheet as $workbookData) { + $workbookData = $workbookData->children($namespacesContent['table']); + $worksheetID = 0; + foreach ($workbookData->table as $worksheetDataSet) { + $worksheetData = $worksheetDataSet->children($namespacesContent['table']); +// print_r($worksheetData); +// echo '<br />'; + $worksheetDataAttributes = $worksheetDataSet->attributes($namespacesContent['table']); +// print_r($worksheetDataAttributes); +// echo '<br />'; + if ((isset($this->loadSheetsOnly)) && (isset($worksheetDataAttributes['name'])) && + (!in_array($worksheetDataAttributes['name'], $this->loadSheetsOnly))) { + continue; + } + +// echo '<h2>Worksheet '.$worksheetDataAttributes['name'].'</h2>'; + // Create new Worksheet + $objPHPExcel->createSheet(); + $objPHPExcel->setActiveSheetIndex($worksheetID); + if (isset($worksheetDataAttributes['name'])) { + $worksheetName = (string) $worksheetDataAttributes['name']; + // Use false for $updateFormulaCellReferences to prevent adjustment of worksheet references in + // formula cells... during the load, all formulae should be correct, and we're simply + // bringing the worksheet name in line with the formula, not the reverse + $objPHPExcel->getActiveSheet()->setTitle($worksheetName, false); + } + + $rowID = 1; + foreach ($worksheetData as $key => $rowData) { +// echo '<b>'.$key.'</b><br />'; + switch ($key) { + case 'table-header-rows': + foreach ($rowData as $key => $cellData) { + $rowData = $cellData; + break; + } + case 'table-row': + $rowDataTableAttributes = $rowData->attributes($namespacesContent['table']); + $rowRepeats = (isset($rowDataTableAttributes['number-rows-repeated'])) ? $rowDataTableAttributes['number-rows-repeated'] : 1; + $columnID = 'A'; + foreach ($rowData as $key => $cellData) { + if ($this->getReadFilter() !== null) { + if (!$this->getReadFilter()->readCell($columnID, $rowID, $worksheetName)) { + continue; + } + } + +// echo '<b>'.$columnID.$rowID.'</b><br />'; + $cellDataText = (isset($namespacesContent['text'])) ? $cellData->children($namespacesContent['text']) : ''; + $cellDataOffice = $cellData->children($namespacesContent['office']); + $cellDataOfficeAttributes = $cellData->attributes($namespacesContent['office']); + $cellDataTableAttributes = $cellData->attributes($namespacesContent['table']); + +// echo 'Office Attributes: '; +// print_r($cellDataOfficeAttributes); +// echo '<br />Table Attributes: '; +// print_r($cellDataTableAttributes); +// echo '<br />Cell Data Text'; +// print_r($cellDataText); +// echo '<br />'; +// + $type = $formatting = $hyperlink = null; + $hasCalculatedValue = false; + $cellDataFormula = ''; + if (isset($cellDataTableAttributes['formula'])) { + $cellDataFormula = $cellDataTableAttributes['formula']; + $hasCalculatedValue = true; + } + + if (isset($cellDataOffice->annotation)) { +// echo 'Cell has comment<br />'; + $annotationText = $cellDataOffice->annotation->children($namespacesContent['text']); + $textArray = array(); + foreach ($annotationText as $t) { + if (isset($t->span)) { + foreach ($t->span as $text) { + $textArray[] = (string)$text; + } + } else { + $textArray[] = (string) $t; + } + } + $text = implode("\n", $textArray); +// echo $text, '<br />'; + $objPHPExcel->getActiveSheet()->getComment($columnID.$rowID)->setText($this->parseRichText($text)); +// ->setAuthor( $author ) + } + + if (isset($cellDataText->p)) { + // Consolidate if there are multiple p records (maybe with spans as well) + $dataArray = array(); + // Text can have multiple text:p and within those, multiple text:span. + // text:p newlines, but text:span does not. + // Also, here we assume there is no text data is span fields are specified, since + // we have no way of knowing proper positioning anyway. + foreach ($cellDataText->p as $pData) { + if (isset($pData->span)) { + // span sections do not newline, so we just create one large string here + $spanSection = ""; + foreach ($pData->span as $spanData) { + $spanSection .= $spanData; + } + array_push($dataArray, $spanSection); + } else { + array_push($dataArray, $pData); + } + } + $allCellDataText = implode($dataArray, "\n"); + +// echo 'Value Type is '.$cellDataOfficeAttributes['value-type'].'<br />'; + switch ($cellDataOfficeAttributes['value-type']) { + case 'string': + $type = PHPExcel_Cell_DataType::TYPE_STRING; + $dataValue = $allCellDataText; + if (isset($dataValue->a)) { + $dataValue = $dataValue->a; + $cellXLinkAttributes = $dataValue->attributes($namespacesContent['xlink']); + $hyperlink = $cellXLinkAttributes['href']; + } + break; + case 'boolean': + $type = PHPExcel_Cell_DataType::TYPE_BOOL; + $dataValue = ($allCellDataText == 'TRUE') ? true : false; + break; + case 'percentage': + $type = PHPExcel_Cell_DataType::TYPE_NUMERIC; + $dataValue = (float) $cellDataOfficeAttributes['value']; + if (floor($dataValue) == $dataValue) { + $dataValue = (integer) $dataValue; + } + $formatting = PHPExcel_Style_NumberFormat::FORMAT_PERCENTAGE_00; + break; + case 'currency': + $type = PHPExcel_Cell_DataType::TYPE_NUMERIC; + $dataValue = (float) $cellDataOfficeAttributes['value']; + if (floor($dataValue) == $dataValue) { + $dataValue = (integer) $dataValue; + } + $formatting = PHPExcel_Style_NumberFormat::FORMAT_CURRENCY_USD_SIMPLE; + break; + case 'float': + $type = PHPExcel_Cell_DataType::TYPE_NUMERIC; + $dataValue = (float) $cellDataOfficeAttributes['value']; + if (floor($dataValue) == $dataValue) { + if ($dataValue == (integer) $dataValue) { + $dataValue = (integer) $dataValue; + } else { + $dataValue = (float) $dataValue; + } + } + break; + case 'date': + $type = PHPExcel_Cell_DataType::TYPE_NUMERIC; + $dateObj = new DateTime($cellDataOfficeAttributes['date-value'], $GMT); + $dateObj->setTimeZone($timezoneObj); + list($year, $month, $day, $hour, $minute, $second) = explode(' ', $dateObj->format('Y m d H i s')); + $dataValue = PHPExcel_Shared_Date::FormattedPHPToExcel($year, $month, $day, $hour, $minute, $second); + if ($dataValue != floor($dataValue)) { + $formatting = PHPExcel_Style_NumberFormat::FORMAT_DATE_XLSX15.' '.PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME4; + } else { + $formatting = PHPExcel_Style_NumberFormat::FORMAT_DATE_XLSX15; + } + break; + case 'time': + $type = PHPExcel_Cell_DataType::TYPE_NUMERIC; + $dataValue = PHPExcel_Shared_Date::PHPToExcel(strtotime('01-01-1970 '.implode(':', sscanf($cellDataOfficeAttributes['time-value'], 'PT%dH%dM%dS')))); + $formatting = PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME4; + break; + } +// echo 'Data value is '.$dataValue.'<br />'; +// if ($hyperlink !== null) { +// echo 'Hyperlink is '.$hyperlink.'<br />'; +// } + } else { + $type = PHPExcel_Cell_DataType::TYPE_NULL; + $dataValue = null; + } + + if ($hasCalculatedValue) { + $type = PHPExcel_Cell_DataType::TYPE_FORMULA; +// echo 'Formula: ', $cellDataFormula, PHP_EOL; + $cellDataFormula = substr($cellDataFormula, strpos($cellDataFormula, ':=')+1); + $temp = explode('"', $cellDataFormula); + $tKey = false; + foreach ($temp as &$value) { + // Only replace in alternate array entries (i.e. non-quoted blocks) + if ($tKey = !$tKey) { + $value = preg_replace('/\[([^\.]+)\.([^\.]+):\.([^\.]+)\]/Ui', '$1!$2:$3', $value); // Cell range reference in another sheet + $value = preg_replace('/\[([^\.]+)\.([^\.]+)\]/Ui', '$1!$2', $value); // Cell reference in another sheet + $value = preg_replace('/\[\.([^\.]+):\.([^\.]+)\]/Ui', '$1:$2', $value); // Cell range reference + $value = preg_replace('/\[\.([^\.]+)\]/Ui', '$1', $value); // Simple cell reference + $value = PHPExcel_Calculation::translateSeparator(';', ',', $value, $inBraces); + } + } + unset($value); + // Then rebuild the formula string + $cellDataFormula = implode('"', $temp); +// echo 'Adjusted Formula: ', $cellDataFormula, PHP_EOL; + } + + $colRepeats = (isset($cellDataTableAttributes['number-columns-repeated'])) ? $cellDataTableAttributes['number-columns-repeated'] : 1; + if ($type !== null) { + for ($i = 0; $i < $colRepeats; ++$i) { + if ($i > 0) { + ++$columnID; + } + if ($type !== PHPExcel_Cell_DataType::TYPE_NULL) { + for ($rowAdjust = 0; $rowAdjust < $rowRepeats; ++$rowAdjust) { + $rID = $rowID + $rowAdjust; + $objPHPExcel->getActiveSheet()->getCell($columnID.$rID)->setValueExplicit((($hasCalculatedValue) ? $cellDataFormula : $dataValue), $type); + if ($hasCalculatedValue) { +// echo 'Forumla result is '.$dataValue.'<br />'; + $objPHPExcel->getActiveSheet()->getCell($columnID.$rID)->setCalculatedValue($dataValue); + } + if ($formatting !== null) { + $objPHPExcel->getActiveSheet()->getStyle($columnID.$rID)->getNumberFormat()->setFormatCode($formatting); + } else { + $objPHPExcel->getActiveSheet()->getStyle($columnID.$rID)->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_GENERAL); + } + if ($hyperlink !== null) { + $objPHPExcel->getActiveSheet()->getCell($columnID.$rID)->getHyperlink()->setUrl($hyperlink); + } + } + } + } + } + + // Merged cells + if ((isset($cellDataTableAttributes['number-columns-spanned'])) || (isset($cellDataTableAttributes['number-rows-spanned']))) { + if (($type !== PHPExcel_Cell_DataType::TYPE_NULL) || (!$this->readDataOnly)) { + $columnTo = $columnID; + if (isset($cellDataTableAttributes['number-columns-spanned'])) { + $columnTo = PHPExcel_Cell::stringFromColumnIndex(PHPExcel_Cell::columnIndexFromString($columnID) + $cellDataTableAttributes['number-columns-spanned'] -2); + } + $rowTo = $rowID; + if (isset($cellDataTableAttributes['number-rows-spanned'])) { + $rowTo = $rowTo + $cellDataTableAttributes['number-rows-spanned'] - 1; + } + $cellRange = $columnID.$rowID.':'.$columnTo.$rowTo; + $objPHPExcel->getActiveSheet()->mergeCells($cellRange); + } + } + + ++$columnID; + } + $rowID += $rowRepeats; + break; + } + } + ++$worksheetID; + } + } + + // Return + return $objPHPExcel; + } + + private function parseRichText($is = '') + { + $value = new PHPExcel_RichText(); + + $value->createText($is); + + return $value; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/SYLK.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/SYLK.php new file mode 100644 index 0000000..eb7ef1a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/SYLK.php @@ -0,0 +1,478 @@ +<?php + +/** PHPExcel root directory */ +if (!defined('PHPEXCEL_ROOT')) { + /** + * @ignore + */ + define('PHPEXCEL_ROOT', dirname(__FILE__) . '/../../'); + require(PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php'); +} + +/** + * PHPExcel_Reader_SYLK + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Reader + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Reader_SYLK extends PHPExcel_Reader_Abstract implements PHPExcel_Reader_IReader +{ + /** + * Input encoding + * + * @var string + */ + private $inputEncoding = 'ANSI'; + + /** + * Sheet index to read + * + * @var int + */ + private $sheetIndex = 0; + + /** + * Formats + * + * @var array + */ + private $formats = array(); + + /** + * Format Count + * + * @var int + */ + private $format = 0; + + /** + * Create a new PHPExcel_Reader_SYLK + */ + public function __construct() + { + $this->readFilter = new PHPExcel_Reader_DefaultReadFilter(); + } + + /** + * Validate that the current file is a SYLK file + * + * @return boolean + */ + protected function isValidFormat() + { + // Read sample data (first 2 KB will do) + $data = fread($this->fileHandle, 2048); + + // Count delimiters in file + $delimiterCount = substr_count($data, ';'); + if ($delimiterCount < 1) { + return false; + } + + // Analyze first line looking for ID; signature + $lines = explode("\n", $data); + if (substr($lines[0], 0, 4) != 'ID;P') { + return false; + } + + return true; + } + + /** + * Set input encoding + * + * @param string $pValue Input encoding + */ + public function setInputEncoding($pValue = 'ANSI') + { + $this->inputEncoding = $pValue; + return $this; + } + + /** + * Get input encoding + * + * @return string + */ + public function getInputEncoding() + { + return $this->inputEncoding; + } + + /** + * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns) + * + * @param string $pFilename + * @throws PHPExcel_Reader_Exception + */ + public function listWorksheetInfo($pFilename) + { + // Open file + $this->openFile($pFilename); + if (!$this->isValidFormat()) { + fclose($this->fileHandle); + throw new PHPExcel_Reader_Exception($pFilename . " is an Invalid Spreadsheet file."); + } + $fileHandle = $this->fileHandle; + rewind($fileHandle); + + $worksheetInfo = array(); + $worksheetInfo[0]['worksheetName'] = 'Worksheet'; + $worksheetInfo[0]['lastColumnLetter'] = 'A'; + $worksheetInfo[0]['lastColumnIndex'] = 0; + $worksheetInfo[0]['totalRows'] = 0; + $worksheetInfo[0]['totalColumns'] = 0; + + // Loop through file + $rowData = array(); + + // loop through one row (line) at a time in the file + $rowIndex = 0; + while (($rowData = fgets($fileHandle)) !== false) { + $columnIndex = 0; + + // convert SYLK encoded $rowData to UTF-8 + $rowData = PHPExcel_Shared_String::SYLKtoUTF8($rowData); + + // explode each row at semicolons while taking into account that literal semicolon (;) + // is escaped like this (;;) + $rowData = explode("\t", str_replace('¤', ';', str_replace(';', "\t", str_replace(';;', '¤', rtrim($rowData))))); + + $dataType = array_shift($rowData); + if ($dataType == 'C') { + // Read cell value data + foreach ($rowData as $rowDatum) { + switch ($rowDatum{0}) { + case 'C': + case 'X': + $columnIndex = substr($rowDatum, 1) - 1; + break; + case 'R': + case 'Y': + $rowIndex = substr($rowDatum, 1); + break; + } + + $worksheetInfo[0]['totalRows'] = max($worksheetInfo[0]['totalRows'], $rowIndex); + $worksheetInfo[0]['lastColumnIndex'] = max($worksheetInfo[0]['lastColumnIndex'], $columnIndex); + } + } + } + + $worksheetInfo[0]['lastColumnLetter'] = PHPExcel_Cell::stringFromColumnIndex($worksheetInfo[0]['lastColumnIndex']); + $worksheetInfo[0]['totalColumns'] = $worksheetInfo[0]['lastColumnIndex'] + 1; + + // Close file + fclose($fileHandle); + + return $worksheetInfo; + } + + /** + * Loads PHPExcel from file + * + * @param string $pFilename + * @return PHPExcel + * @throws PHPExcel_Reader_Exception + */ + public function load($pFilename) + { + // Create new PHPExcel + $objPHPExcel = new PHPExcel(); + + // Load into this instance + return $this->loadIntoExisting($pFilename, $objPHPExcel); + } + + /** + * Loads PHPExcel from file into PHPExcel instance + * + * @param string $pFilename + * @param PHPExcel $objPHPExcel + * @return PHPExcel + * @throws PHPExcel_Reader_Exception + */ + public function loadIntoExisting($pFilename, PHPExcel $objPHPExcel) + { + // Open file + $this->openFile($pFilename); + if (!$this->isValidFormat()) { + fclose($this->fileHandle); + throw new PHPExcel_Reader_Exception($pFilename . " is an Invalid Spreadsheet file."); + } + $fileHandle = $this->fileHandle; + rewind($fileHandle); + + // Create new PHPExcel + while ($objPHPExcel->getSheetCount() <= $this->sheetIndex) { + $objPHPExcel->createSheet(); + } + $objPHPExcel->setActiveSheetIndex($this->sheetIndex); + + $fromFormats = array('\-', '\ '); + $toFormats = array('-', ' '); + + // Loop through file + $rowData = array(); + $column = $row = ''; + + // loop through one row (line) at a time in the file + while (($rowData = fgets($fileHandle)) !== false) { + // convert SYLK encoded $rowData to UTF-8 + $rowData = PHPExcel_Shared_String::SYLKtoUTF8($rowData); + + // explode each row at semicolons while taking into account that literal semicolon (;) + // is escaped like this (;;) + $rowData = explode("\t", str_replace('¤', ';', str_replace(';', "\t", str_replace(';;', '¤', rtrim($rowData))))); + + $dataType = array_shift($rowData); + // Read shared styles + if ($dataType == 'P') { + $formatArray = array(); + foreach ($rowData as $rowDatum) { + switch ($rowDatum{0}) { + case 'P': + $formatArray['numberformat']['code'] = str_replace($fromFormats, $toFormats, substr($rowDatum, 1)); + break; + case 'E': + case 'F': + $formatArray['font']['name'] = substr($rowDatum, 1); + break; + case 'L': + $formatArray['font']['size'] = substr($rowDatum, 1); + break; + case 'S': + $styleSettings = substr($rowDatum, 1); + for ($i=0; $i<strlen($styleSettings); ++$i) { + switch ($styleSettings{$i}) { + case 'I': + $formatArray['font']['italic'] = true; + break; + case 'D': + $formatArray['font']['bold'] = true; + break; + case 'T': + $formatArray['borders']['top']['style'] = PHPExcel_Style_Border::BORDER_THIN; + break; + case 'B': + $formatArray['borders']['bottom']['style'] = PHPExcel_Style_Border::BORDER_THIN; + break; + case 'L': + $formatArray['borders']['left']['style'] = PHPExcel_Style_Border::BORDER_THIN; + break; + case 'R': + $formatArray['borders']['right']['style'] = PHPExcel_Style_Border::BORDER_THIN; + break; + } + } + break; + } + } + $this->formats['P'.$this->format++] = $formatArray; + // Read cell value data + } elseif ($dataType == 'C') { + $hasCalculatedValue = false; + $cellData = $cellDataFormula = ''; + foreach ($rowData as $rowDatum) { + switch ($rowDatum{0}) { + case 'C': + case 'X': + $column = substr($rowDatum, 1); + break; + case 'R': + case 'Y': + $row = substr($rowDatum, 1); + break; + case 'K': + $cellData = substr($rowDatum, 1); + break; + case 'E': + $cellDataFormula = '='.substr($rowDatum, 1); + // Convert R1C1 style references to A1 style references (but only when not quoted) + $temp = explode('"', $cellDataFormula); + $key = false; + foreach ($temp as &$value) { + // Only count/replace in alternate array entries + if ($key = !$key) { + preg_match_all('/(R(\[?-?\d*\]?))(C(\[?-?\d*\]?))/', $value, $cellReferences, PREG_SET_ORDER+PREG_OFFSET_CAPTURE); + // Reverse the matches array, otherwise all our offsets will become incorrect if we modify our way + // through the formula from left to right. Reversing means that we work right to left.through + // the formula + $cellReferences = array_reverse($cellReferences); + // Loop through each R1C1 style reference in turn, converting it to its A1 style equivalent, + // then modify the formula to use that new reference + foreach ($cellReferences as $cellReference) { + $rowReference = $cellReference[2][0]; + // Empty R reference is the current row + if ($rowReference == '') { + $rowReference = $row; + } + // Bracketed R references are relative to the current row + if ($rowReference{0} == '[') { + $rowReference = $row + trim($rowReference, '[]'); + } + $columnReference = $cellReference[4][0]; + // Empty C reference is the current column + if ($columnReference == '') { + $columnReference = $column; + } + // Bracketed C references are relative to the current column + if ($columnReference{0} == '[') { + $columnReference = $column + trim($columnReference, '[]'); + } + $A1CellReference = PHPExcel_Cell::stringFromColumnIndex($columnReference-1).$rowReference; + + $value = substr_replace($value, $A1CellReference, $cellReference[0][1], strlen($cellReference[0][0])); + } + } + } + unset($value); + // Then rebuild the formula string + $cellDataFormula = implode('"', $temp); + $hasCalculatedValue = true; + break; + } + } + $columnLetter = PHPExcel_Cell::stringFromColumnIndex($column-1); + $cellData = PHPExcel_Calculation::unwrapResult($cellData); + + // Set cell value + $objPHPExcel->getActiveSheet()->getCell($columnLetter.$row)->setValue(($hasCalculatedValue) ? $cellDataFormula : $cellData); + if ($hasCalculatedValue) { + $cellData = PHPExcel_Calculation::unwrapResult($cellData); + $objPHPExcel->getActiveSheet()->getCell($columnLetter.$row)->setCalculatedValue($cellData); + } + // Read cell formatting + } elseif ($dataType == 'F') { + $formatStyle = $columnWidth = $styleSettings = ''; + $styleData = array(); + foreach ($rowData as $rowDatum) { + switch ($rowDatum{0}) { + case 'C': + case 'X': + $column = substr($rowDatum, 1); + break; + case 'R': + case 'Y': + $row = substr($rowDatum, 1); + break; + case 'P': + $formatStyle = $rowDatum; + break; + case 'W': + list($startCol, $endCol, $columnWidth) = explode(' ', substr($rowDatum, 1)); + break; + case 'S': + $styleSettings = substr($rowDatum, 1); + for ($i=0; $i<strlen($styleSettings); ++$i) { + switch ($styleSettings{$i}) { + case 'I': + $styleData['font']['italic'] = true; + break; + case 'D': + $styleData['font']['bold'] = true; + break; + case 'T': + $styleData['borders']['top']['style'] = PHPExcel_Style_Border::BORDER_THIN; + break; + case 'B': + $styleData['borders']['bottom']['style'] = PHPExcel_Style_Border::BORDER_THIN; + break; + case 'L': + $styleData['borders']['left']['style'] = PHPExcel_Style_Border::BORDER_THIN; + break; + case 'R': + $styleData['borders']['right']['style'] = PHPExcel_Style_Border::BORDER_THIN; + break; + } + } + break; + } + } + if (($formatStyle > '') && ($column > '') && ($row > '')) { + $columnLetter = PHPExcel_Cell::stringFromColumnIndex($column-1); + if (isset($this->formats[$formatStyle])) { + $objPHPExcel->getActiveSheet()->getStyle($columnLetter.$row)->applyFromArray($this->formats[$formatStyle]); + } + } + if ((!empty($styleData)) && ($column > '') && ($row > '')) { + $columnLetter = PHPExcel_Cell::stringFromColumnIndex($column-1); + $objPHPExcel->getActiveSheet()->getStyle($columnLetter.$row)->applyFromArray($styleData); + } + if ($columnWidth > '') { + if ($startCol == $endCol) { + $startCol = PHPExcel_Cell::stringFromColumnIndex($startCol-1); + $objPHPExcel->getActiveSheet()->getColumnDimension($startCol)->setWidth($columnWidth); + } else { + $startCol = PHPExcel_Cell::stringFromColumnIndex($startCol-1); + $endCol = PHPExcel_Cell::stringFromColumnIndex($endCol-1); + $objPHPExcel->getActiveSheet()->getColumnDimension($startCol)->setWidth($columnWidth); + do { + $objPHPExcel->getActiveSheet()->getColumnDimension(++$startCol)->setWidth($columnWidth); + } while ($startCol != $endCol); + } + } + } else { + foreach ($rowData as $rowDatum) { + switch ($rowDatum{0}) { + case 'C': + case 'X': + $column = substr($rowDatum, 1); + break; + case 'R': + case 'Y': + $row = substr($rowDatum, 1); + break; + } + } + } + } + + // Close file + fclose($fileHandle); + + // Return + return $objPHPExcel; + } + + /** + * Get sheet index + * + * @return int + */ + public function getSheetIndex() + { + return $this->sheetIndex; + } + + /** + * Set sheet index + * + * @param int $pValue Sheet index + * @return PHPExcel_Reader_SYLK + */ + public function setSheetIndex($pValue = 0) + { + $this->sheetIndex = $pValue; + return $this; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/ReferenceHelper.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/ReferenceHelper.php new file mode 100644 index 0000000..7d7de93 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/ReferenceHelper.php @@ -0,0 +1,913 @@ +<?php + +/** + * PHPExcel_ReferenceHelper (Singleton) + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_ReferenceHelper +{ + /** Constants */ + /** Regular Expressions */ + const REFHELPER_REGEXP_CELLREF = '((\w*|\'[^!]*\')!)?(?<![:a-z\$])(\$?[a-z]{1,3}\$?\d+)(?=[^:!\d\'])'; + const REFHELPER_REGEXP_CELLRANGE = '((\w*|\'[^!]*\')!)?(\$?[a-z]{1,3}\$?\d+):(\$?[a-z]{1,3}\$?\d+)'; + const REFHELPER_REGEXP_ROWRANGE = '((\w*|\'[^!]*\')!)?(\$?\d+):(\$?\d+)'; + const REFHELPER_REGEXP_COLRANGE = '((\w*|\'[^!]*\')!)?(\$?[a-z]{1,3}):(\$?[a-z]{1,3})'; + + /** + * Instance of this class + * + * @var PHPExcel_ReferenceHelper + */ + private static $instance; + + /** + * Get an instance of this class + * + * @return PHPExcel_ReferenceHelper + */ + public static function getInstance() + { + if (!isset(self::$instance) || (self::$instance === null)) { + self::$instance = new PHPExcel_ReferenceHelper(); + } + + return self::$instance; + } + + /** + * Create a new PHPExcel_ReferenceHelper + */ + protected function __construct() + { + } + + /** + * Compare two column addresses + * Intended for use as a Callback function for sorting column addresses by column + * + * @param string $a First column to test (e.g. 'AA') + * @param string $b Second column to test (e.g. 'Z') + * @return integer + */ + public static function columnSort($a, $b) + { + return strcasecmp(strlen($a) . $a, strlen($b) . $b); + } + + /** + * Compare two column addresses + * Intended for use as a Callback function for reverse sorting column addresses by column + * + * @param string $a First column to test (e.g. 'AA') + * @param string $b Second column to test (e.g. 'Z') + * @return integer + */ + public static function columnReverseSort($a, $b) + { + return 1 - strcasecmp(strlen($a) . $a, strlen($b) . $b); + } + + /** + * Compare two cell addresses + * Intended for use as a Callback function for sorting cell addresses by column and row + * + * @param string $a First cell to test (e.g. 'AA1') + * @param string $b Second cell to test (e.g. 'Z1') + * @return integer + */ + public static function cellSort($a, $b) + { + sscanf($a, '%[A-Z]%d', $ac, $ar); + sscanf($b, '%[A-Z]%d', $bc, $br); + + if ($ar == $br) { + return strcasecmp(strlen($ac) . $ac, strlen($bc) . $bc); + } + return ($ar < $br) ? -1 : 1; + } + + /** + * Compare two cell addresses + * Intended for use as a Callback function for sorting cell addresses by column and row + * + * @param string $a First cell to test (e.g. 'AA1') + * @param string $b Second cell to test (e.g. 'Z1') + * @return integer + */ + public static function cellReverseSort($a, $b) + { + sscanf($a, '%[A-Z]%d', $ac, $ar); + sscanf($b, '%[A-Z]%d', $bc, $br); + + if ($ar == $br) { + return 1 - strcasecmp(strlen($ac) . $ac, strlen($bc) . $bc); + } + return ($ar < $br) ? 1 : -1; + } + + /** + * Test whether a cell address falls within a defined range of cells + * + * @param string $cellAddress Address of the cell we're testing + * @param integer $beforeRow Number of the row we're inserting/deleting before + * @param integer $pNumRows Number of rows to insert/delete (negative values indicate deletion) + * @param integer $beforeColumnIndex Index number of the column we're inserting/deleting before + * @param integer $pNumCols Number of columns to insert/delete (negative values indicate deletion) + * @return boolean + */ + private static function cellAddressInDeleteRange($cellAddress, $beforeRow, $pNumRows, $beforeColumnIndex, $pNumCols) + { + list($cellColumn, $cellRow) = PHPExcel_Cell::coordinateFromString($cellAddress); + $cellColumnIndex = PHPExcel_Cell::columnIndexFromString($cellColumn); + // Is cell within the range of rows/columns if we're deleting + if ($pNumRows < 0 && + ($cellRow >= ($beforeRow + $pNumRows)) && + ($cellRow < $beforeRow)) { + return true; + } elseif ($pNumCols < 0 && + ($cellColumnIndex >= ($beforeColumnIndex + $pNumCols)) && + ($cellColumnIndex < $beforeColumnIndex)) { + return true; + } + return false; + } + + /** + * Update page breaks when inserting/deleting rows/columns + * + * @param PHPExcel_Worksheet $pSheet The worksheet that we're editing + * @param string $pBefore Insert/Delete before this cell address (e.g. 'A1') + * @param integer $beforeColumnIndex Index number of the column we're inserting/deleting before + * @param integer $pNumCols Number of columns to insert/delete (negative values indicate deletion) + * @param integer $beforeRow Number of the row we're inserting/deleting before + * @param integer $pNumRows Number of rows to insert/delete (negative values indicate deletion) + */ + protected function adjustPageBreaks(PHPExcel_Worksheet $pSheet, $pBefore, $beforeColumnIndex, $pNumCols, $beforeRow, $pNumRows) + { + $aBreaks = $pSheet->getBreaks(); + ($pNumCols > 0 || $pNumRows > 0) ? + uksort($aBreaks, array('PHPExcel_ReferenceHelper','cellReverseSort')) : + uksort($aBreaks, array('PHPExcel_ReferenceHelper','cellSort')); + + foreach ($aBreaks as $key => $value) { + if (self::cellAddressInDeleteRange($key, $beforeRow, $pNumRows, $beforeColumnIndex, $pNumCols)) { + // If we're deleting, then clear any defined breaks that are within the range + // of rows/columns that we're deleting + $pSheet->setBreak($key, PHPExcel_Worksheet::BREAK_NONE); + } else { + // Otherwise update any affected breaks by inserting a new break at the appropriate point + // and removing the old affected break + $newReference = $this->updateCellReference($key, $pBefore, $pNumCols, $pNumRows); + if ($key != $newReference) { + $pSheet->setBreak($newReference, $value) + ->setBreak($key, PHPExcel_Worksheet::BREAK_NONE); + } + } + } + } + + /** + * Update cell comments when inserting/deleting rows/columns + * + * @param PHPExcel_Worksheet $pSheet The worksheet that we're editing + * @param string $pBefore Insert/Delete before this cell address (e.g. 'A1') + * @param integer $beforeColumnIndex Index number of the column we're inserting/deleting before + * @param integer $pNumCols Number of columns to insert/delete (negative values indicate deletion) + * @param integer $beforeRow Number of the row we're inserting/deleting before + * @param integer $pNumRows Number of rows to insert/delete (negative values indicate deletion) + */ + protected function adjustComments($pSheet, $pBefore, $beforeColumnIndex, $pNumCols, $beforeRow, $pNumRows) + { + $aComments = $pSheet->getComments(); + $aNewComments = array(); // the new array of all comments + + foreach ($aComments as $key => &$value) { + // Any comments inside a deleted range will be ignored + if (!self::cellAddressInDeleteRange($key, $beforeRow, $pNumRows, $beforeColumnIndex, $pNumCols)) { + // Otherwise build a new array of comments indexed by the adjusted cell reference + $newReference = $this->updateCellReference($key, $pBefore, $pNumCols, $pNumRows); + $aNewComments[$newReference] = $value; + } + } + // Replace the comments array with the new set of comments + $pSheet->setComments($aNewComments); + } + + /** + * Update hyperlinks when inserting/deleting rows/columns + * + * @param PHPExcel_Worksheet $pSheet The worksheet that we're editing + * @param string $pBefore Insert/Delete before this cell address (e.g. 'A1') + * @param integer $beforeColumnIndex Index number of the column we're inserting/deleting before + * @param integer $pNumCols Number of columns to insert/delete (negative values indicate deletion) + * @param integer $beforeRow Number of the row we're inserting/deleting before + * @param integer $pNumRows Number of rows to insert/delete (negative values indicate deletion) + */ + protected function adjustHyperlinks($pSheet, $pBefore, $beforeColumnIndex, $pNumCols, $beforeRow, $pNumRows) + { + $aHyperlinkCollection = $pSheet->getHyperlinkCollection(); + ($pNumCols > 0 || $pNumRows > 0) ? uksort($aHyperlinkCollection, array('PHPExcel_ReferenceHelper','cellReverseSort')) : uksort($aHyperlinkCollection, array('PHPExcel_ReferenceHelper','cellSort')); + + foreach ($aHyperlinkCollection as $key => $value) { + $newReference = $this->updateCellReference($key, $pBefore, $pNumCols, $pNumRows); + if ($key != $newReference) { + $pSheet->setHyperlink($newReference, $value); + $pSheet->setHyperlink($key, null); + } + } + } + + /** + * Update data validations when inserting/deleting rows/columns + * + * @param PHPExcel_Worksheet $pSheet The worksheet that we're editing + * @param string $pBefore Insert/Delete before this cell address (e.g. 'A1') + * @param integer $beforeColumnIndex Index number of the column we're inserting/deleting before + * @param integer $pNumCols Number of columns to insert/delete (negative values indicate deletion) + * @param integer $beforeRow Number of the row we're inserting/deleting before + * @param integer $pNumRows Number of rows to insert/delete (negative values indicate deletion) + */ + protected function adjustDataValidations($pSheet, $pBefore, $beforeColumnIndex, $pNumCols, $beforeRow, $pNumRows) + { + $aDataValidationCollection = $pSheet->getDataValidationCollection(); + ($pNumCols > 0 || $pNumRows > 0) ? uksort($aDataValidationCollection, array('PHPExcel_ReferenceHelper','cellReverseSort')) : uksort($aDataValidationCollection, array('PHPExcel_ReferenceHelper','cellSort')); + + foreach ($aDataValidationCollection as $key => $value) { + $newReference = $this->updateCellReference($key, $pBefore, $pNumCols, $pNumRows); + if ($key != $newReference) { + $pSheet->setDataValidation($newReference, $value); + $pSheet->setDataValidation($key, null); + } + } + } + + /** + * Update merged cells when inserting/deleting rows/columns + * + * @param PHPExcel_Worksheet $pSheet The worksheet that we're editing + * @param string $pBefore Insert/Delete before this cell address (e.g. 'A1') + * @param integer $beforeColumnIndex Index number of the column we're inserting/deleting before + * @param integer $pNumCols Number of columns to insert/delete (negative values indicate deletion) + * @param integer $beforeRow Number of the row we're inserting/deleting before + * @param integer $pNumRows Number of rows to insert/delete (negative values indicate deletion) + */ + protected function adjustMergeCells($pSheet, $pBefore, $beforeColumnIndex, $pNumCols, $beforeRow, $pNumRows) + { + $aMergeCells = $pSheet->getMergeCells(); + $aNewMergeCells = array(); // the new array of all merge cells + foreach ($aMergeCells as $key => &$value) { + $newReference = $this->updateCellReference($key, $pBefore, $pNumCols, $pNumRows); + $aNewMergeCells[$newReference] = $newReference; + } + $pSheet->setMergeCells($aNewMergeCells); // replace the merge cells array + } + + /** + * Update protected cells when inserting/deleting rows/columns + * + * @param PHPExcel_Worksheet $pSheet The worksheet that we're editing + * @param string $pBefore Insert/Delete before this cell address (e.g. 'A1') + * @param integer $beforeColumnIndex Index number of the column we're inserting/deleting before + * @param integer $pNumCols Number of columns to insert/delete (negative values indicate deletion) + * @param integer $beforeRow Number of the row we're inserting/deleting before + * @param integer $pNumRows Number of rows to insert/delete (negative values indicate deletion) + */ + protected function adjustProtectedCells($pSheet, $pBefore, $beforeColumnIndex, $pNumCols, $beforeRow, $pNumRows) + { + $aProtectedCells = $pSheet->getProtectedCells(); + ($pNumCols > 0 || $pNumRows > 0) ? + uksort($aProtectedCells, array('PHPExcel_ReferenceHelper','cellReverseSort')) : + uksort($aProtectedCells, array('PHPExcel_ReferenceHelper','cellSort')); + foreach ($aProtectedCells as $key => $value) { + $newReference = $this->updateCellReference($key, $pBefore, $pNumCols, $pNumRows); + if ($key != $newReference) { + $pSheet->protectCells($newReference, $value, true); + $pSheet->unprotectCells($key); + } + } + } + + /** + * Update column dimensions when inserting/deleting rows/columns + * + * @param PHPExcel_Worksheet $pSheet The worksheet that we're editing + * @param string $pBefore Insert/Delete before this cell address (e.g. 'A1') + * @param integer $beforeColumnIndex Index number of the column we're inserting/deleting before + * @param integer $pNumCols Number of columns to insert/delete (negative values indicate deletion) + * @param integer $beforeRow Number of the row we're inserting/deleting before + * @param integer $pNumRows Number of rows to insert/delete (negative values indicate deletion) + */ + protected function adjustColumnDimensions($pSheet, $pBefore, $beforeColumnIndex, $pNumCols, $beforeRow, $pNumRows) + { + $aColumnDimensions = array_reverse($pSheet->getColumnDimensions(), true); + if (!empty($aColumnDimensions)) { + foreach ($aColumnDimensions as $objColumnDimension) { + $newReference = $this->updateCellReference($objColumnDimension->getColumnIndex() . '1', $pBefore, $pNumCols, $pNumRows); + list($newReference) = PHPExcel_Cell::coordinateFromString($newReference); + if ($objColumnDimension->getColumnIndex() != $newReference) { + $objColumnDimension->setColumnIndex($newReference); + } + } + $pSheet->refreshColumnDimensions(); + } + } + + /** + * Update row dimensions when inserting/deleting rows/columns + * + * @param PHPExcel_Worksheet $pSheet The worksheet that we're editing + * @param string $pBefore Insert/Delete before this cell address (e.g. 'A1') + * @param integer $beforeColumnIndex Index number of the column we're inserting/deleting before + * @param integer $pNumCols Number of columns to insert/delete (negative values indicate deletion) + * @param integer $beforeRow Number of the row we're inserting/deleting before + * @param integer $pNumRows Number of rows to insert/delete (negative values indicate deletion) + */ + protected function adjustRowDimensions($pSheet, $pBefore, $beforeColumnIndex, $pNumCols, $beforeRow, $pNumRows) + { + $aRowDimensions = array_reverse($pSheet->getRowDimensions(), true); + if (!empty($aRowDimensions)) { + foreach ($aRowDimensions as $objRowDimension) { + $newReference = $this->updateCellReference('A' . $objRowDimension->getRowIndex(), $pBefore, $pNumCols, $pNumRows); + list(, $newReference) = PHPExcel_Cell::coordinateFromString($newReference); + if ($objRowDimension->getRowIndex() != $newReference) { + $objRowDimension->setRowIndex($newReference); + } + } + $pSheet->refreshRowDimensions(); + + $copyDimension = $pSheet->getRowDimension($beforeRow - 1); + for ($i = $beforeRow; $i <= $beforeRow - 1 + $pNumRows; ++$i) { + $newDimension = $pSheet->getRowDimension($i); + $newDimension->setRowHeight($copyDimension->getRowHeight()); + $newDimension->setVisible($copyDimension->getVisible()); + $newDimension->setOutlineLevel($copyDimension->getOutlineLevel()); + $newDimension->setCollapsed($copyDimension->getCollapsed()); + } + } + } + + /** + * Insert a new column or row, updating all possible related data + * + * @param string $pBefore Insert before this cell address (e.g. 'A1') + * @param integer $pNumCols Number of columns to insert/delete (negative values indicate deletion) + * @param integer $pNumRows Number of rows to insert/delete (negative values indicate deletion) + * @param PHPExcel_Worksheet $pSheet The worksheet that we're editing + * @throws PHPExcel_Exception + */ + public function insertNewBefore($pBefore = 'A1', $pNumCols = 0, $pNumRows = 0, PHPExcel_Worksheet $pSheet = null) + { + $remove = ($pNumCols < 0 || $pNumRows < 0); + $aCellCollection = $pSheet->getCellCollection(); + + // Get coordinates of $pBefore + $beforeColumn = 'A'; + $beforeRow = 1; + list($beforeColumn, $beforeRow) = PHPExcel_Cell::coordinateFromString($pBefore); + $beforeColumnIndex = PHPExcel_Cell::columnIndexFromString($beforeColumn); + + // Clear cells if we are removing columns or rows + $highestColumn = $pSheet->getHighestColumn(); + $highestRow = $pSheet->getHighestRow(); + + // 1. Clear column strips if we are removing columns + if ($pNumCols < 0 && $beforeColumnIndex - 2 + $pNumCols > 0) { + for ($i = 1; $i <= $highestRow - 1; ++$i) { + for ($j = $beforeColumnIndex - 1 + $pNumCols; $j <= $beforeColumnIndex - 2; ++$j) { + $coordinate = PHPExcel_Cell::stringFromColumnIndex($j) . $i; + $pSheet->removeConditionalStyles($coordinate); + if ($pSheet->cellExists($coordinate)) { + $pSheet->getCell($coordinate)->setValueExplicit('', PHPExcel_Cell_DataType::TYPE_NULL); + $pSheet->getCell($coordinate)->setXfIndex(0); + } + } + } + } + + // 2. Clear row strips if we are removing rows + if ($pNumRows < 0 && $beforeRow - 1 + $pNumRows > 0) { + for ($i = $beforeColumnIndex - 1; $i <= PHPExcel_Cell::columnIndexFromString($highestColumn) - 1; ++$i) { + for ($j = $beforeRow + $pNumRows; $j <= $beforeRow - 1; ++$j) { + $coordinate = PHPExcel_Cell::stringFromColumnIndex($i) . $j; + $pSheet->removeConditionalStyles($coordinate); + if ($pSheet->cellExists($coordinate)) { + $pSheet->getCell($coordinate)->setValueExplicit('', PHPExcel_Cell_DataType::TYPE_NULL); + $pSheet->getCell($coordinate)->setXfIndex(0); + } + } + } + } + + // Loop through cells, bottom-up, and change cell coordinates + if ($remove) { + // It's faster to reverse and pop than to use unshift, especially with large cell collections + $aCellCollection = array_reverse($aCellCollection); + } + while ($cellID = array_pop($aCellCollection)) { + $cell = $pSheet->getCell($cellID); + $cellIndex = PHPExcel_Cell::columnIndexFromString($cell->getColumn()); + + if ($cellIndex-1 + $pNumCols < 0) { + continue; + } + + // New coordinates + $newCoordinates = PHPExcel_Cell::stringFromColumnIndex($cellIndex-1 + $pNumCols) . ($cell->getRow() + $pNumRows); + + // Should the cell be updated? Move value and cellXf index from one cell to another. + if (($cellIndex >= $beforeColumnIndex) && ($cell->getRow() >= $beforeRow)) { + // Update cell styles + $pSheet->getCell($newCoordinates)->setXfIndex($cell->getXfIndex()); + + // Insert this cell at its new location + if ($cell->getDataType() == PHPExcel_Cell_DataType::TYPE_FORMULA) { + // Formula should be adjusted + $pSheet->getCell($newCoordinates) + ->setValue($this->updateFormulaReferences($cell->getValue(), $pBefore, $pNumCols, $pNumRows, $pSheet->getTitle())); + } else { + // Formula should not be adjusted + $pSheet->getCell($newCoordinates)->setValue($cell->getValue()); + } + + // Clear the original cell + $pSheet->getCellCacheController()->deleteCacheData($cellID); + } else { + /* We don't need to update styles for rows/columns before our insertion position, + but we do still need to adjust any formulae in those cells */ + if ($cell->getDataType() == PHPExcel_Cell_DataType::TYPE_FORMULA) { + // Formula should be adjusted + $cell->setValue($this->updateFormulaReferences($cell->getValue(), $pBefore, $pNumCols, $pNumRows, $pSheet->getTitle())); + } + + } + } + + // Duplicate styles for the newly inserted cells + $highestColumn = $pSheet->getHighestColumn(); + $highestRow = $pSheet->getHighestRow(); + + if ($pNumCols > 0 && $beforeColumnIndex - 2 > 0) { + for ($i = $beforeRow; $i <= $highestRow - 1; ++$i) { + // Style + $coordinate = PHPExcel_Cell::stringFromColumnIndex($beforeColumnIndex - 2) . $i; + if ($pSheet->cellExists($coordinate)) { + $xfIndex = $pSheet->getCell($coordinate)->getXfIndex(); + $conditionalStyles = $pSheet->conditionalStylesExists($coordinate) ? + $pSheet->getConditionalStyles($coordinate) : false; + for ($j = $beforeColumnIndex - 1; $j <= $beforeColumnIndex - 2 + $pNumCols; ++$j) { + $pSheet->getCellByColumnAndRow($j, $i)->setXfIndex($xfIndex); + if ($conditionalStyles) { + $cloned = array(); + foreach ($conditionalStyles as $conditionalStyle) { + $cloned[] = clone $conditionalStyle; + } + $pSheet->setConditionalStyles(PHPExcel_Cell::stringFromColumnIndex($j) . $i, $cloned); + } + } + } + + } + } + + if ($pNumRows > 0 && $beforeRow - 1 > 0) { + for ($i = $beforeColumnIndex - 1; $i <= PHPExcel_Cell::columnIndexFromString($highestColumn) - 1; ++$i) { + // Style + $coordinate = PHPExcel_Cell::stringFromColumnIndex($i) . ($beforeRow - 1); + if ($pSheet->cellExists($coordinate)) { + $xfIndex = $pSheet->getCell($coordinate)->getXfIndex(); + $conditionalStyles = $pSheet->conditionalStylesExists($coordinate) ? + $pSheet->getConditionalStyles($coordinate) : false; + for ($j = $beforeRow; $j <= $beforeRow - 1 + $pNumRows; ++$j) { + $pSheet->getCell(PHPExcel_Cell::stringFromColumnIndex($i) . $j)->setXfIndex($xfIndex); + if ($conditionalStyles) { + $cloned = array(); + foreach ($conditionalStyles as $conditionalStyle) { + $cloned[] = clone $conditionalStyle; + } + $pSheet->setConditionalStyles(PHPExcel_Cell::stringFromColumnIndex($i) . $j, $cloned); + } + } + } + } + } + + // Update worksheet: column dimensions + $this->adjustColumnDimensions($pSheet, $pBefore, $beforeColumnIndex, $pNumCols, $beforeRow, $pNumRows); + + // Update worksheet: row dimensions + $this->adjustRowDimensions($pSheet, $pBefore, $beforeColumnIndex, $pNumCols, $beforeRow, $pNumRows); + + // Update worksheet: page breaks + $this->adjustPageBreaks($pSheet, $pBefore, $beforeColumnIndex, $pNumCols, $beforeRow, $pNumRows); + + // Update worksheet: comments + $this->adjustComments($pSheet, $pBefore, $beforeColumnIndex, $pNumCols, $beforeRow, $pNumRows); + + // Update worksheet: hyperlinks + $this->adjustHyperlinks($pSheet, $pBefore, $beforeColumnIndex, $pNumCols, $beforeRow, $pNumRows); + + // Update worksheet: data validations + $this->adjustDataValidations($pSheet, $pBefore, $beforeColumnIndex, $pNumCols, $beforeRow, $pNumRows); + + // Update worksheet: merge cells + $this->adjustMergeCells($pSheet, $pBefore, $beforeColumnIndex, $pNumCols, $beforeRow, $pNumRows); + + // Update worksheet: protected cells + $this->adjustProtectedCells($pSheet, $pBefore, $beforeColumnIndex, $pNumCols, $beforeRow, $pNumRows); + + // Update worksheet: autofilter + $autoFilter = $pSheet->getAutoFilter(); + $autoFilterRange = $autoFilter->getRange(); + if (!empty($autoFilterRange)) { + if ($pNumCols != 0) { + $autoFilterColumns = array_keys($autoFilter->getColumns()); + if (count($autoFilterColumns) > 0) { + sscanf($pBefore, '%[A-Z]%d', $column, $row); + $columnIndex = PHPExcel_Cell::columnIndexFromString($column); + list($rangeStart, $rangeEnd) = PHPExcel_Cell::rangeBoundaries($autoFilterRange); + if ($columnIndex <= $rangeEnd[0]) { + if ($pNumCols < 0) { + // If we're actually deleting any columns that fall within the autofilter range, + // then we delete any rules for those columns + $deleteColumn = $columnIndex + $pNumCols - 1; + $deleteCount = abs($pNumCols); + for ($i = 1; $i <= $deleteCount; ++$i) { + if (in_array(PHPExcel_Cell::stringFromColumnIndex($deleteColumn), $autoFilterColumns)) { + $autoFilter->clearColumn(PHPExcel_Cell::stringFromColumnIndex($deleteColumn)); + } + ++$deleteColumn; + } + } + $startCol = ($columnIndex > $rangeStart[0]) ? $columnIndex : $rangeStart[0]; + + // Shuffle columns in autofilter range + if ($pNumCols > 0) { + // For insert, we shuffle from end to beginning to avoid overwriting + $startColID = PHPExcel_Cell::stringFromColumnIndex($startCol-1); + $toColID = PHPExcel_Cell::stringFromColumnIndex($startCol+$pNumCols-1); + $endColID = PHPExcel_Cell::stringFromColumnIndex($rangeEnd[0]); + + $startColRef = $startCol; + $endColRef = $rangeEnd[0]; + $toColRef = $rangeEnd[0]+$pNumCols; + + do { + $autoFilter->shiftColumn(PHPExcel_Cell::stringFromColumnIndex($endColRef-1), PHPExcel_Cell::stringFromColumnIndex($toColRef-1)); + --$endColRef; + --$toColRef; + } while ($startColRef <= $endColRef); + } else { + // For delete, we shuffle from beginning to end to avoid overwriting + $startColID = PHPExcel_Cell::stringFromColumnIndex($startCol-1); + $toColID = PHPExcel_Cell::stringFromColumnIndex($startCol+$pNumCols-1); + $endColID = PHPExcel_Cell::stringFromColumnIndex($rangeEnd[0]); + do { + $autoFilter->shiftColumn($startColID, $toColID); + ++$startColID; + ++$toColID; + } while ($startColID != $endColID); + } + } + } + } + $pSheet->setAutoFilter($this->updateCellReference($autoFilterRange, $pBefore, $pNumCols, $pNumRows)); + } + + // Update worksheet: freeze pane + if ($pSheet->getFreezePane() != '') { + $pSheet->freezePane($this->updateCellReference($pSheet->getFreezePane(), $pBefore, $pNumCols, $pNumRows)); + } + + // Page setup + if ($pSheet->getPageSetup()->isPrintAreaSet()) { + $pSheet->getPageSetup()->setPrintArea($this->updateCellReference($pSheet->getPageSetup()->getPrintArea(), $pBefore, $pNumCols, $pNumRows)); + } + + // Update worksheet: drawings + $aDrawings = $pSheet->getDrawingCollection(); + foreach ($aDrawings as $objDrawing) { + $newReference = $this->updateCellReference($objDrawing->getCoordinates(), $pBefore, $pNumCols, $pNumRows); + if ($objDrawing->getCoordinates() != $newReference) { + $objDrawing->setCoordinates($newReference); + } + } + + // Update workbook: named ranges + if (count($pSheet->getParent()->getNamedRanges()) > 0) { + foreach ($pSheet->getParent()->getNamedRanges() as $namedRange) { + if ($namedRange->getWorksheet()->getHashCode() == $pSheet->getHashCode()) { + $namedRange->setRange($this->updateCellReference($namedRange->getRange(), $pBefore, $pNumCols, $pNumRows)); + } + } + } + + // Garbage collect + $pSheet->garbageCollect(); + } + + /** + * Update references within formulas + * + * @param string $pFormula Formula to update + * @param int $pBefore Insert before this one + * @param int $pNumCols Number of columns to insert + * @param int $pNumRows Number of rows to insert + * @param string $sheetName Worksheet name/title + * @return string Updated formula + * @throws PHPExcel_Exception + */ + public function updateFormulaReferences($pFormula = '', $pBefore = 'A1', $pNumCols = 0, $pNumRows = 0, $sheetName = '') + { + // Update cell references in the formula + $formulaBlocks = explode('"', $pFormula); + $i = false; + foreach ($formulaBlocks as &$formulaBlock) { + // Ignore blocks that were enclosed in quotes (alternating entries in the $formulaBlocks array after the explode) + if ($i = !$i) { + $adjustCount = 0; + $newCellTokens = $cellTokens = array(); + // Search for row ranges (e.g. 'Sheet1'!3:5 or 3:5) with or without $ absolutes (e.g. $3:5) + $matchCount = preg_match_all('/'.self::REFHELPER_REGEXP_ROWRANGE.'/i', ' '.$formulaBlock.' ', $matches, PREG_SET_ORDER); + if ($matchCount > 0) { + foreach ($matches as $match) { + $fromString = ($match[2] > '') ? $match[2].'!' : ''; + $fromString .= $match[3].':'.$match[4]; + $modified3 = substr($this->updateCellReference('$A'.$match[3], $pBefore, $pNumCols, $pNumRows), 2); + $modified4 = substr($this->updateCellReference('$A'.$match[4], $pBefore, $pNumCols, $pNumRows), 2); + + if ($match[3].':'.$match[4] !== $modified3.':'.$modified4) { + if (($match[2] == '') || (trim($match[2], "'") == $sheetName)) { + $toString = ($match[2] > '') ? $match[2].'!' : ''; + $toString .= $modified3.':'.$modified4; + // Max worksheet size is 1,048,576 rows by 16,384 columns in Excel 2007, so our adjustments need to be at least one digit more + $column = 100000; + $row = 10000000 + trim($match[3], '$'); + $cellIndex = $column.$row; + + $newCellTokens[$cellIndex] = preg_quote($toString); + $cellTokens[$cellIndex] = '/(?<!\d\$\!)'.preg_quote($fromString).'(?!\d)/i'; + ++$adjustCount; + } + } + } + } + // Search for column ranges (e.g. 'Sheet1'!C:E or C:E) with or without $ absolutes (e.g. $C:E) + $matchCount = preg_match_all('/'.self::REFHELPER_REGEXP_COLRANGE.'/i', ' '.$formulaBlock.' ', $matches, PREG_SET_ORDER); + if ($matchCount > 0) { + foreach ($matches as $match) { + $fromString = ($match[2] > '') ? $match[2].'!' : ''; + $fromString .= $match[3].':'.$match[4]; + $modified3 = substr($this->updateCellReference($match[3].'$1', $pBefore, $pNumCols, $pNumRows), 0, -2); + $modified4 = substr($this->updateCellReference($match[4].'$1', $pBefore, $pNumCols, $pNumRows), 0, -2); + + if ($match[3].':'.$match[4] !== $modified3.':'.$modified4) { + if (($match[2] == '') || (trim($match[2], "'") == $sheetName)) { + $toString = ($match[2] > '') ? $match[2].'!' : ''; + $toString .= $modified3.':'.$modified4; + // Max worksheet size is 1,048,576 rows by 16,384 columns in Excel 2007, so our adjustments need to be at least one digit more + $column = PHPExcel_Cell::columnIndexFromString(trim($match[3], '$')) + 100000; + $row = 10000000; + $cellIndex = $column.$row; + + $newCellTokens[$cellIndex] = preg_quote($toString); + $cellTokens[$cellIndex] = '/(?<![A-Z\$\!])'.preg_quote($fromString).'(?![A-Z])/i'; + ++$adjustCount; + } + } + } + } + // Search for cell ranges (e.g. 'Sheet1'!A3:C5 or A3:C5) with or without $ absolutes (e.g. $A1:C$5) + $matchCount = preg_match_all('/'.self::REFHELPER_REGEXP_CELLRANGE.'/i', ' '.$formulaBlock.' ', $matches, PREG_SET_ORDER); + if ($matchCount > 0) { + foreach ($matches as $match) { + $fromString = ($match[2] > '') ? $match[2].'!' : ''; + $fromString .= $match[3].':'.$match[4]; + $modified3 = $this->updateCellReference($match[3], $pBefore, $pNumCols, $pNumRows); + $modified4 = $this->updateCellReference($match[4], $pBefore, $pNumCols, $pNumRows); + + if ($match[3].$match[4] !== $modified3.$modified4) { + if (($match[2] == '') || (trim($match[2], "'") == $sheetName)) { + $toString = ($match[2] > '') ? $match[2].'!' : ''; + $toString .= $modified3.':'.$modified4; + list($column, $row) = PHPExcel_Cell::coordinateFromString($match[3]); + // Max worksheet size is 1,048,576 rows by 16,384 columns in Excel 2007, so our adjustments need to be at least one digit more + $column = PHPExcel_Cell::columnIndexFromString(trim($column, '$')) + 100000; + $row = trim($row, '$') + 10000000; + $cellIndex = $column.$row; + + $newCellTokens[$cellIndex] = preg_quote($toString); + $cellTokens[$cellIndex] = '/(?<![A-Z]\$\!)'.preg_quote($fromString).'(?!\d)/i'; + ++$adjustCount; + } + } + } + } + // Search for cell references (e.g. 'Sheet1'!A3 or C5) with or without $ absolutes (e.g. $A1 or C$5) + $matchCount = preg_match_all('/'.self::REFHELPER_REGEXP_CELLREF.'/i', ' '.$formulaBlock.' ', $matches, PREG_SET_ORDER); + + if ($matchCount > 0) { + foreach ($matches as $match) { + $fromString = ($match[2] > '') ? $match[2].'!' : ''; + $fromString .= $match[3]; + + $modified3 = $this->updateCellReference($match[3], $pBefore, $pNumCols, $pNumRows); + if ($match[3] !== $modified3) { + if (($match[2] == '') || (trim($match[2], "'") == $sheetName)) { + $toString = ($match[2] > '') ? $match[2].'!' : ''; + $toString .= $modified3; + list($column, $row) = PHPExcel_Cell::coordinateFromString($match[3]); + // Max worksheet size is 1,048,576 rows by 16,384 columns in Excel 2007, so our adjustments need to be at least one digit more + $column = PHPExcel_Cell::columnIndexFromString(trim($column, '$')) + 100000; + $row = trim($row, '$') + 10000000; + $cellIndex = $row . $column; + + $newCellTokens[$cellIndex] = preg_quote($toString); + $cellTokens[$cellIndex] = '/(?<![A-Z\$\!])'.preg_quote($fromString).'(?!\d)/i'; + ++$adjustCount; + } + } + } + } + if ($adjustCount > 0) { + if ($pNumCols > 0 || $pNumRows > 0) { + krsort($cellTokens); + krsort($newCellTokens); + } else { + ksort($cellTokens); + ksort($newCellTokens); + } // Update cell references in the formula + $formulaBlock = str_replace('\\', '', preg_replace($cellTokens, $newCellTokens, $formulaBlock)); + } + } + } + unset($formulaBlock); + + // Then rebuild the formula string + return implode('"', $formulaBlocks); + } + + /** + * Update cell reference + * + * @param string $pCellRange Cell range + * @param int $pBefore Insert before this one + * @param int $pNumCols Number of columns to increment + * @param int $pNumRows Number of rows to increment + * @return string Updated cell range + * @throws PHPExcel_Exception + */ + public function updateCellReference($pCellRange = 'A1', $pBefore = 'A1', $pNumCols = 0, $pNumRows = 0) + { + // Is it in another worksheet? Will not have to update anything. + if (strpos($pCellRange, "!") !== false) { + return $pCellRange; + // Is it a range or a single cell? + } elseif (strpos($pCellRange, ':') === false && strpos($pCellRange, ',') === false) { + // Single cell + return $this->updateSingleCellReference($pCellRange, $pBefore, $pNumCols, $pNumRows); + } elseif (strpos($pCellRange, ':') !== false || strpos($pCellRange, ',') !== false) { + // Range + return $this->updateCellRange($pCellRange, $pBefore, $pNumCols, $pNumRows); + } else { + // Return original + return $pCellRange; + } + } + + /** + * Update named formulas (i.e. containing worksheet references / named ranges) + * + * @param PHPExcel $pPhpExcel Object to update + * @param string $oldName Old name (name to replace) + * @param string $newName New name + */ + public function updateNamedFormulas(PHPExcel $pPhpExcel, $oldName = '', $newName = '') + { + if ($oldName == '') { + return; + } + + foreach ($pPhpExcel->getWorksheetIterator() as $sheet) { + foreach ($sheet->getCellCollection(false) as $cellID) { + $cell = $sheet->getCell($cellID); + if (($cell !== null) && ($cell->getDataType() == PHPExcel_Cell_DataType::TYPE_FORMULA)) { + $formula = $cell->getValue(); + if (strpos($formula, $oldName) !== false) { + $formula = str_replace("'" . $oldName . "'!", "'" . $newName . "'!", $formula); + $formula = str_replace($oldName . "!", $newName . "!", $formula); + $cell->setValueExplicit($formula, PHPExcel_Cell_DataType::TYPE_FORMULA); + } + } + } + } + } + + /** + * Update cell range + * + * @param string $pCellRange Cell range (e.g. 'B2:D4', 'B:C' or '2:3') + * @param int $pBefore Insert before this one + * @param int $pNumCols Number of columns to increment + * @param int $pNumRows Number of rows to increment + * @return string Updated cell range + * @throws PHPExcel_Exception + */ + private function updateCellRange($pCellRange = 'A1:A1', $pBefore = 'A1', $pNumCols = 0, $pNumRows = 0) + { + if (strpos($pCellRange, ':') !== false || strpos($pCellRange, ',') !== false) { + // Update range + $range = PHPExcel_Cell::splitRange($pCellRange); + $ic = count($range); + for ($i = 0; $i < $ic; ++$i) { + $jc = count($range[$i]); + for ($j = 0; $j < $jc; ++$j) { + if (ctype_alpha($range[$i][$j])) { + $r = PHPExcel_Cell::coordinateFromString($this->updateSingleCellReference($range[$i][$j].'1', $pBefore, $pNumCols, $pNumRows)); + $range[$i][$j] = $r[0]; + } elseif (ctype_digit($range[$i][$j])) { + $r = PHPExcel_Cell::coordinateFromString($this->updateSingleCellReference('A'.$range[$i][$j], $pBefore, $pNumCols, $pNumRows)); + $range[$i][$j] = $r[1]; + } else { + $range[$i][$j] = $this->updateSingleCellReference($range[$i][$j], $pBefore, $pNumCols, $pNumRows); + } + } + } + + // Recreate range string + return PHPExcel_Cell::buildRange($range); + } else { + throw new PHPExcel_Exception("Only cell ranges may be passed to this method."); + } + } + + /** + * Update single cell reference + * + * @param string $pCellReference Single cell reference + * @param int $pBefore Insert before this one + * @param int $pNumCols Number of columns to increment + * @param int $pNumRows Number of rows to increment + * @return string Updated cell reference + * @throws PHPExcel_Exception + */ + private function updateSingleCellReference($pCellReference = 'A1', $pBefore = 'A1', $pNumCols = 0, $pNumRows = 0) + { + if (strpos($pCellReference, ':') === false && strpos($pCellReference, ',') === false) { + // Get coordinates of $pBefore + list($beforeColumn, $beforeRow) = PHPExcel_Cell::coordinateFromString($pBefore); + + // Get coordinates of $pCellReference + list($newColumn, $newRow) = PHPExcel_Cell::coordinateFromString($pCellReference); + + // Verify which parts should be updated + $updateColumn = (($newColumn{0} != '$') && ($beforeColumn{0} != '$') && (PHPExcel_Cell::columnIndexFromString($newColumn) >= PHPExcel_Cell::columnIndexFromString($beforeColumn))); + $updateRow = (($newRow{0} != '$') && ($beforeRow{0} != '$') && $newRow >= $beforeRow); + + // Create new column reference + if ($updateColumn) { + $newColumn = PHPExcel_Cell::stringFromColumnIndex(PHPExcel_Cell::columnIndexFromString($newColumn) - 1 + $pNumCols); + } + + // Create new row reference + if ($updateRow) { + $newRow = $newRow + $pNumRows; + } + + // Return new reference + return $newColumn . $newRow; + } else { + throw new PHPExcel_Exception("Only single cell references may be passed to this method."); + } + } + + /** + * __clone implementation. Cloning should not be allowed in a Singleton! + * + * @throws PHPExcel_Exception + */ + final public function __clone() + { + throw new PHPExcel_Exception("Cloning a Singleton is not allowed!"); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText.php new file mode 100644 index 0000000..74a3534 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText.php @@ -0,0 +1,191 @@ +<?php + +/** + * PHPExcel_RichText + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_RichText + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_RichText implements PHPExcel_IComparable +{ + /** + * Rich text elements + * + * @var PHPExcel_RichText_ITextElement[] + */ + private $richTextElements; + + /** + * Create a new PHPExcel_RichText instance + * + * @param PHPExcel_Cell $pCell + * @throws PHPExcel_Exception + */ + public function __construct(PHPExcel_Cell $pCell = null) + { + // Initialise variables + $this->richTextElements = array(); + + // Rich-Text string attached to cell? + if ($pCell !== null) { + // Add cell text and style + if ($pCell->getValue() != "") { + $objRun = new PHPExcel_RichText_Run($pCell->getValue()); + $objRun->setFont(clone $pCell->getParent()->getStyle($pCell->getCoordinate())->getFont()); + $this->addText($objRun); + } + + // Set parent value + $pCell->setValueExplicit($this, PHPExcel_Cell_DataType::TYPE_STRING); + } + } + + /** + * Add text + * + * @param PHPExcel_RichText_ITextElement $pText Rich text element + * @throws PHPExcel_Exception + * @return PHPExcel_RichText + */ + public function addText(PHPExcel_RichText_ITextElement $pText = null) + { + $this->richTextElements[] = $pText; + return $this; + } + + /** + * Create text + * + * @param string $pText Text + * @return PHPExcel_RichText_TextElement + * @throws PHPExcel_Exception + */ + public function createText($pText = '') + { + $objText = new PHPExcel_RichText_TextElement($pText); + $this->addText($objText); + return $objText; + } + + /** + * Create text run + * + * @param string $pText Text + * @return PHPExcel_RichText_Run + * @throws PHPExcel_Exception + */ + public function createTextRun($pText = '') + { + $objText = new PHPExcel_RichText_Run($pText); + $this->addText($objText); + return $objText; + } + + /** + * Get plain text + * + * @return string + */ + public function getPlainText() + { + // Return value + $returnValue = ''; + + // Loop through all PHPExcel_RichText_ITextElement + foreach ($this->richTextElements as $text) { + $returnValue .= $text->getText(); + } + + // Return + return $returnValue; + } + + /** + * Convert to string + * + * @return string + */ + public function __toString() + { + return $this->getPlainText(); + } + + /** + * Get Rich Text elements + * + * @return PHPExcel_RichText_ITextElement[] + */ + public function getRichTextElements() + { + return $this->richTextElements; + } + + /** + * Set Rich Text elements + * + * @param PHPExcel_RichText_ITextElement[] $pElements Array of elements + * @throws PHPExcel_Exception + * @return PHPExcel_RichText + */ + public function setRichTextElements($pElements = null) + { + if (is_array($pElements)) { + $this->richTextElements = $pElements; + } else { + throw new PHPExcel_Exception("Invalid PHPExcel_RichText_ITextElement[] array passed."); + } + return $this; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + $hashElements = ''; + foreach ($this->richTextElements as $element) { + $hashElements .= $element->getHashCode(); + } + + return md5( + $hashElements . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/ITextElement.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/ITextElement.php new file mode 100644 index 0000000..5db3432 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/ITextElement.php @@ -0,0 +1,56 @@ +<?php + +/** + * PHPExcel_RichText_ITextElement + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_RichText + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +interface PHPExcel_RichText_ITextElement +{ + /** + * Get text + * + * @return string Text + */ + public function getText(); + + /** + * Set text + * + * @param $pText string Text + * @return PHPExcel_RichText_ITextElement + */ + public function setText($pText = ''); + + /** + * Get font + * + * @return PHPExcel_Style_Font + */ + public function getFont(); + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode(); +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/Run.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/Run.php new file mode 100644 index 0000000..5737bb0 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/Run.php @@ -0,0 +1,98 @@ +<?php + +/** + * PHPExcel_RichText_Run + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_RichText + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_RichText_Run extends PHPExcel_RichText_TextElement implements PHPExcel_RichText_ITextElement +{ + /** + * Font + * + * @var PHPExcel_Style_Font + */ + private $font; + + /** + * Create a new PHPExcel_RichText_Run instance + * + * @param string $pText Text + */ + public function __construct($pText = '') + { + // Initialise variables + $this->setText($pText); + $this->font = new PHPExcel_Style_Font(); + } + + /** + * Get font + * + * @return PHPExcel_Style_Font + */ + public function getFont() + { + return $this->font; + } + + /** + * Set font + * + * @param PHPExcel_Style_Font $pFont Font + * @throws PHPExcel_Exception + * @return PHPExcel_RichText_ITextElement + */ + public function setFont(PHPExcel_Style_Font $pFont = null) + { + $this->font = $pFont; + return $this; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->getText() . + $this->font->getHashCode() . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/TextElement.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/TextElement.php new file mode 100644 index 0000000..f86e703 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/TextElement.php @@ -0,0 +1,105 @@ +<?php + +/** + * PHPExcel_RichText_TextElement + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_RichText + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_RichText_TextElement implements PHPExcel_RichText_ITextElement +{ + /** + * Text + * + * @var string + */ + private $text; + + /** + * Create a new PHPExcel_RichText_TextElement instance + * + * @param string $pText Text + */ + public function __construct($pText = '') + { + // Initialise variables + $this->text = $pText; + } + + /** + * Get text + * + * @return string Text + */ + public function getText() + { + return $this->text; + } + + /** + * Set text + * + * @param $pText string Text + * @return PHPExcel_RichText_ITextElement + */ + public function setText($pText = '') + { + $this->text = $pText; + return $this; + } + + /** + * Get font + * + * @return PHPExcel_Style_Font + */ + public function getFont() + { + return null; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->text . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Settings.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Settings.php new file mode 100644 index 0000000..dcbc89f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Settings.php @@ -0,0 +1,389 @@ +<?php + +/** PHPExcel root directory */ +if (!defined('PHPEXCEL_ROOT')) { + /** + * @ignore + */ + define('PHPEXCEL_ROOT', dirname(__FILE__) . '/../'); + require(PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php'); +} + +/** + * PHPExcel_Settings + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Settings + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Settings +{ + /** constants */ + /** Available Zip library classes */ + const PCLZIP = 'PHPExcel_Shared_ZipArchive'; + const ZIPARCHIVE = 'ZipArchive'; + + /** Optional Chart Rendering libraries */ + const CHART_RENDERER_JPGRAPH = 'jpgraph'; + + /** Optional PDF Rendering libraries */ + const PDF_RENDERER_TCPDF = 'tcPDF'; + const PDF_RENDERER_DOMPDF = 'DomPDF'; + const PDF_RENDERER_MPDF = 'mPDF'; + + + private static $chartRenderers = array( + self::CHART_RENDERER_JPGRAPH, + ); + + private static $pdfRenderers = array( + self::PDF_RENDERER_TCPDF, + self::PDF_RENDERER_DOMPDF, + self::PDF_RENDERER_MPDF, + ); + + + /** + * Name of the class used for Zip file management + * e.g. + * ZipArchive + * + * @var string + */ + private static $zipClass = self::ZIPARCHIVE; + + + /** + * Name of the external Library used for rendering charts + * e.g. + * jpgraph + * + * @var string + */ + private static $chartRendererName; + + /** + * Directory Path to the external Library used for rendering charts + * + * @var string + */ + private static $chartRendererPath; + + + /** + * Name of the external Library used for rendering PDF files + * e.g. + * mPDF + * + * @var string + */ + private static $pdfRendererName; + + /** + * Directory Path to the external Library used for rendering PDF files + * + * @var string + */ + private static $pdfRendererPath; + + /** + * Default options for libxml loader + * + * @var int + */ + private static $libXmlLoaderOptions = null; + + /** + * Set the Zip handler Class that PHPExcel should use for Zip file management (PCLZip or ZipArchive) + * + * @param string $zipClass The Zip handler class that PHPExcel should use for Zip file management + * e.g. PHPExcel_Settings::PCLZip or PHPExcel_Settings::ZipArchive + * @return boolean Success or failure + */ + public static function setZipClass($zipClass) + { + if (($zipClass === self::PCLZIP) || + ($zipClass === self::ZIPARCHIVE)) { + self::$zipClass = $zipClass; + return true; + } + return false; + } + + + /** + * Return the name of the Zip handler Class that PHPExcel is configured to use (PCLZip or ZipArchive) + * or Zip file management + * + * @return string Name of the Zip handler Class that PHPExcel is configured to use + * for Zip file management + * e.g. PHPExcel_Settings::PCLZip or PHPExcel_Settings::ZipArchive + */ + public static function getZipClass() + { + return self::$zipClass; + } + + + /** + * Return the name of the method that is currently configured for cell cacheing + * + * @return string Name of the cacheing method + */ + public static function getCacheStorageMethod() + { + return PHPExcel_CachedObjectStorageFactory::getCacheStorageMethod(); + } + + + /** + * Return the name of the class that is currently being used for cell cacheing + * + * @return string Name of the class currently being used for cacheing + */ + public static function getCacheStorageClass() + { + return PHPExcel_CachedObjectStorageFactory::getCacheStorageClass(); + } + + + /** + * Set the method that should be used for cell cacheing + * + * @param string $method Name of the cacheing method + * @param array $arguments Optional configuration arguments for the cacheing method + * @return boolean Success or failure + */ + public static function setCacheStorageMethod($method = PHPExcel_CachedObjectStorageFactory::cache_in_memory, $arguments = array()) + { + return PHPExcel_CachedObjectStorageFactory::initialize($method, $arguments); + } + + + /** + * Set the locale code to use for formula translations and any special formatting + * + * @param string $locale The locale code to use (e.g. "fr" or "pt_br" or "en_uk") + * @return boolean Success or failure + */ + public static function setLocale($locale = 'en_us') + { + return PHPExcel_Calculation::getInstance()->setLocale($locale); + } + + + /** + * Set details of the external library that PHPExcel should use for rendering charts + * + * @param string $libraryName Internal reference name of the library + * e.g. PHPExcel_Settings::CHART_RENDERER_JPGRAPH + * @param string $libraryBaseDir Directory path to the library's base folder + * + * @return boolean Success or failure + */ + public static function setChartRenderer($libraryName, $libraryBaseDir) + { + if (!self::setChartRendererName($libraryName)) { + return false; + } + return self::setChartRendererPath($libraryBaseDir); + } + + + /** + * Identify to PHPExcel the external library to use for rendering charts + * + * @param string $libraryName Internal reference name of the library + * e.g. PHPExcel_Settings::CHART_RENDERER_JPGRAPH + * + * @return boolean Success or failure + */ + public static function setChartRendererName($libraryName) + { + if (!in_array($libraryName, self::$chartRenderers)) { + return false; + } + self::$chartRendererName = $libraryName; + + return true; + } + + + /** + * Tell PHPExcel where to find the external library to use for rendering charts + * + * @param string $libraryBaseDir Directory path to the library's base folder + * @return boolean Success or failure + */ + public static function setChartRendererPath($libraryBaseDir) + { + if ((file_exists($libraryBaseDir) === false) || (is_readable($libraryBaseDir) === false)) { + return false; + } + self::$chartRendererPath = $libraryBaseDir; + + return true; + } + + + /** + * Return the Chart Rendering Library that PHPExcel is currently configured to use (e.g. jpgraph) + * + * @return string|NULL Internal reference name of the Chart Rendering Library that PHPExcel is + * currently configured to use + * e.g. PHPExcel_Settings::CHART_RENDERER_JPGRAPH + */ + public static function getChartRendererName() + { + return self::$chartRendererName; + } + + + /** + * Return the directory path to the Chart Rendering Library that PHPExcel is currently configured to use + * + * @return string|NULL Directory Path to the Chart Rendering Library that PHPExcel is + * currently configured to use + */ + public static function getChartRendererPath() + { + return self::$chartRendererPath; + } + + + /** + * Set details of the external library that PHPExcel should use for rendering PDF files + * + * @param string $libraryName Internal reference name of the library + * e.g. PHPExcel_Settings::PDF_RENDERER_TCPDF, + * PHPExcel_Settings::PDF_RENDERER_DOMPDF + * or PHPExcel_Settings::PDF_RENDERER_MPDF + * @param string $libraryBaseDir Directory path to the library's base folder + * + * @return boolean Success or failure + */ + public static function setPdfRenderer($libraryName, $libraryBaseDir) + { + if (!self::setPdfRendererName($libraryName)) { + return false; + } + return self::setPdfRendererPath($libraryBaseDir); + } + + + /** + * Identify to PHPExcel the external library to use for rendering PDF files + * + * @param string $libraryName Internal reference name of the library + * e.g. PHPExcel_Settings::PDF_RENDERER_TCPDF, + * PHPExcel_Settings::PDF_RENDERER_DOMPDF + * or PHPExcel_Settings::PDF_RENDERER_MPDF + * + * @return boolean Success or failure + */ + public static function setPdfRendererName($libraryName) + { + if (!in_array($libraryName, self::$pdfRenderers)) { + return false; + } + self::$pdfRendererName = $libraryName; + + return true; + } + + + /** + * Tell PHPExcel where to find the external library to use for rendering PDF files + * + * @param string $libraryBaseDir Directory path to the library's base folder + * @return boolean Success or failure + */ + public static function setPdfRendererPath($libraryBaseDir) + { + if ((file_exists($libraryBaseDir) === false) || (is_readable($libraryBaseDir) === false)) { + return false; + } + self::$pdfRendererPath = $libraryBaseDir; + + return true; + } + + + /** + * Return the PDF Rendering Library that PHPExcel is currently configured to use (e.g. dompdf) + * + * @return string|NULL Internal reference name of the PDF Rendering Library that PHPExcel is + * currently configured to use + * e.g. PHPExcel_Settings::PDF_RENDERER_TCPDF, + * PHPExcel_Settings::PDF_RENDERER_DOMPDF + * or PHPExcel_Settings::PDF_RENDERER_MPDF + */ + public static function getPdfRendererName() + { + return self::$pdfRendererName; + } + + /** + * Return the directory path to the PDF Rendering Library that PHPExcel is currently configured to use + * + * @return string|NULL Directory Path to the PDF Rendering Library that PHPExcel is + * currently configured to use + */ + public static function getPdfRendererPath() + { + return self::$pdfRendererPath; + } + + /** + * Set options for libxml loader + * + * @param int $options Options for libxml loader + */ + public static function setLibXmlLoaderOptions($options = null) + { + if (is_null($options) && defined('LIBXML_DTDLOAD')) { + $options = LIBXML_DTDLOAD | LIBXML_DTDATTR; + } + if (version_compare(PHP_VERSION, '5.2.11') >= 0) { + @libxml_disable_entity_loader((bool) $options); + } + self::$libXmlLoaderOptions = $options; + } + + /** + * Get defined options for libxml loader. + * Defaults to LIBXML_DTDLOAD | LIBXML_DTDATTR when not set explicitly. + * + * @return int Default options for libxml loader + */ + public static function getLibXmlLoaderOptions() + { + if (is_null(self::$libXmlLoaderOptions) && defined('LIBXML_DTDLOAD')) { + self::setLibXmlLoaderOptions(LIBXML_DTDLOAD | LIBXML_DTDATTR); + } elseif (is_null(self::$libXmlLoaderOptions)) { + self::$libXmlLoaderOptions = true; + } + if (version_compare(PHP_VERSION, '5.2.11') >= 0) { + @libxml_disable_entity_loader((bool) self::$libXmlLoaderOptions); + } + return self::$libXmlLoaderOptions; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/CodePage.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/CodePage.php new file mode 100644 index 0000000..b3e440e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/CodePage.php @@ -0,0 +1,156 @@ +<?php + +/** + * PHPExcel_Shared_CodePage + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_CodePage +{ + /** + * Convert Microsoft Code Page Identifier to Code Page Name which iconv + * and mbstring understands + * + * @param integer $codePage Microsoft Code Page Indentifier + * @return string Code Page Name + * @throws PHPExcel_Exception + */ + public static function NumberToName($codePage = 1252) + { + switch ($codePage) { + case 367: + return 'ASCII'; // ASCII + case 437: + return 'CP437'; // OEM US + case 720: + throw new PHPExcel_Exception('Code page 720 not supported.'); // OEM Arabic + case 737: + return 'CP737'; // OEM Greek + case 775: + return 'CP775'; // OEM Baltic + case 850: + return 'CP850'; // OEM Latin I + case 852: + return 'CP852'; // OEM Latin II (Central European) + case 855: + return 'CP855'; // OEM Cyrillic + case 857: + return 'CP857'; // OEM Turkish + case 858: + return 'CP858'; // OEM Multilingual Latin I with Euro + case 860: + return 'CP860'; // OEM Portugese + case 861: + return 'CP861'; // OEM Icelandic + case 862: + return 'CP862'; // OEM Hebrew + case 863: + return 'CP863'; // OEM Canadian (French) + case 864: + return 'CP864'; // OEM Arabic + case 865: + return 'CP865'; // OEM Nordic + case 866: + return 'CP866'; // OEM Cyrillic (Russian) + case 869: + return 'CP869'; // OEM Greek (Modern) + case 874: + return 'CP874'; // ANSI Thai + case 932: + return 'CP932'; // ANSI Japanese Shift-JIS + case 936: + return 'CP936'; // ANSI Chinese Simplified GBK + case 949: + return 'CP949'; // ANSI Korean (Wansung) + case 950: + return 'CP950'; // ANSI Chinese Traditional BIG5 + case 1200: + return 'UTF-16LE'; // UTF-16 (BIFF8) + case 1250: + return 'CP1250'; // ANSI Latin II (Central European) + case 1251: + return 'CP1251'; // ANSI Cyrillic + case 0: + // CodePage is not always correctly set when the xls file was saved by Apple's Numbers program + case 1252: + return 'CP1252'; // ANSI Latin I (BIFF4-BIFF7) + case 1253: + return 'CP1253'; // ANSI Greek + case 1254: + return 'CP1254'; // ANSI Turkish + case 1255: + return 'CP1255'; // ANSI Hebrew + case 1256: + return 'CP1256'; // ANSI Arabic + case 1257: + return 'CP1257'; // ANSI Baltic + case 1258: + return 'CP1258'; // ANSI Vietnamese + case 1361: + return 'CP1361'; // ANSI Korean (Johab) + case 10000: + return 'MAC'; // Apple Roman + case 10001: + return 'CP932'; // Macintosh Japanese + case 10002: + return 'CP950'; // Macintosh Chinese Traditional + case 10003: + return 'CP1361'; // Macintosh Korean + case 10004: + return 'MACARABIC'; // Apple Arabic + case 10005: + return 'MACHEBREW'; // Apple Hebrew + case 10006: + return 'MACGREEK'; // Macintosh Greek + case 10007: + return 'MACCYRILLIC'; // Macintosh Cyrillic + case 10008: + return 'CP936'; // Macintosh - Simplified Chinese (GB 2312) + case 10010: + return 'MACROMANIA'; // Macintosh Romania + case 10017: + return 'MACUKRAINE'; // Macintosh Ukraine + case 10021: + return 'MACTHAI'; // Macintosh Thai + case 10029: + return 'MACCENTRALEUROPE'; // Macintosh Central Europe + case 10079: + return 'MACICELAND'; // Macintosh Icelandic + case 10081: + return 'MACTURKISH'; // Macintosh Turkish + case 10082: + return 'MACCROATIAN'; // Macintosh Croatian + case 21010: + return 'UTF-16LE'; // UTF-16 (BIFF8) This isn't correct, but some Excel writer libraries erroneously use Codepage 21010 for UTF-16LE + case 32768: + return 'MAC'; // Apple Roman + case 32769: + throw new PHPExcel_Exception('Code page 32769 not supported.'); // ANSI Latin I (BIFF2-BIFF3) + case 65000: + return 'UTF-7'; // Unicode (UTF-7) + case 65001: + return 'UTF-8'; // Unicode (UTF-8) + } + throw new PHPExcel_Exception('Unknown codepage: ' . $codePage); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Date.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Date.php new file mode 100644 index 0000000..b00a39a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Date.php @@ -0,0 +1,418 @@ +<?php + +/** + * PHPExcel_Shared_Date + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_Date +{ + /** constants */ + const CALENDAR_WINDOWS_1900 = 1900; // Base date of 1st Jan 1900 = 1.0 + const CALENDAR_MAC_1904 = 1904; // Base date of 2nd Jan 1904 = 1.0 + + /* + * Names of the months of the year, indexed by shortname + * Planned usage for locale settings + * + * @public + * @var string[] + */ + public static $monthNames = array( + 'Jan' => 'January', + 'Feb' => 'February', + 'Mar' => 'March', + 'Apr' => 'April', + 'May' => 'May', + 'Jun' => 'June', + 'Jul' => 'July', + 'Aug' => 'August', + 'Sep' => 'September', + 'Oct' => 'October', + 'Nov' => 'November', + 'Dec' => 'December', + ); + + /* + * Names of the months of the year, indexed by shortname + * Planned usage for locale settings + * + * @public + * @var string[] + */ + public static $numberSuffixes = array( + 'st', + 'nd', + 'rd', + 'th', + ); + + /* + * Base calendar year to use for calculations + * + * @private + * @var int + */ + protected static $excelBaseDate = self::CALENDAR_WINDOWS_1900; + + /** + * Set the Excel calendar (Windows 1900 or Mac 1904) + * + * @param integer $baseDate Excel base date (1900 or 1904) + * @return boolean Success or failure + */ + public static function setExcelCalendar($baseDate) + { + if (($baseDate == self::CALENDAR_WINDOWS_1900) || + ($baseDate == self::CALENDAR_MAC_1904)) { + self::$excelBaseDate = $baseDate; + return true; + } + return false; + } + + + /** + * Return the Excel calendar (Windows 1900 or Mac 1904) + * + * @return integer Excel base date (1900 or 1904) + */ + public static function getExcelCalendar() + { + return self::$excelBaseDate; + } + + + /** + * Convert a date from Excel to PHP + * + * @param integer $dateValue Excel date/time value + * @param boolean $adjustToTimezone Flag indicating whether $dateValue should be treated as + * a UST timestamp, or adjusted to UST + * @param string $timezone The timezone for finding the adjustment from UST + * @return integer PHP serialized date/time + */ + public static function ExcelToPHP($dateValue = 0, $adjustToTimezone = false, $timezone = null) + { + if (self::$excelBaseDate == self::CALENDAR_WINDOWS_1900) { + $myexcelBaseDate = 25569; + // Adjust for the spurious 29-Feb-1900 (Day 60) + if ($dateValue < 60) { + --$myexcelBaseDate; + } + } else { + $myexcelBaseDate = 24107; + } + + // Perform conversion + if ($dateValue >= 1) { + $utcDays = $dateValue - $myexcelBaseDate; + $returnValue = round($utcDays * 86400); + if (($returnValue <= PHP_INT_MAX) && ($returnValue >= -PHP_INT_MAX)) { + $returnValue = (integer) $returnValue; + } + } else { + $hours = round($dateValue * 24); + $mins = round($dateValue * 1440) - round($hours * 60); + $secs = round($dateValue * 86400) - round($hours * 3600) - round($mins * 60); + $returnValue = (integer) gmmktime($hours, $mins, $secs); + } + + $timezoneAdjustment = ($adjustToTimezone) ? + PHPExcel_Shared_TimeZone::getTimezoneAdjustment($timezone, $returnValue) : + 0; + + return $returnValue + $timezoneAdjustment; + } + + + /** + * Convert a date from Excel to a PHP Date/Time object + * + * @param integer $dateValue Excel date/time value + * @return DateTime PHP date/time object + */ + public static function ExcelToPHPObject($dateValue = 0) + { + $dateTime = self::ExcelToPHP($dateValue); + $days = floor($dateTime / 86400); + $time = round((($dateTime / 86400) - $days) * 86400); + $hours = round($time / 3600); + $minutes = round($time / 60) - ($hours * 60); + $seconds = round($time) - ($hours * 3600) - ($minutes * 60); + + $dateObj = date_create('1-Jan-1970+'.$days.' days'); + $dateObj->setTime($hours, $minutes, $seconds); + + return $dateObj; + } + + + /** + * Convert a date from PHP to Excel + * + * @param mixed $dateValue PHP serialized date/time or date object + * @param boolean $adjustToTimezone Flag indicating whether $dateValue should be treated as + * a UST timestamp, or adjusted to UST + * @param string $timezone The timezone for finding the adjustment from UST + * @return mixed Excel date/time value + * or boolean FALSE on failure + */ + public static function PHPToExcel($dateValue = 0, $adjustToTimezone = false, $timezone = null) + { + $saveTimeZone = date_default_timezone_get(); + date_default_timezone_set('UTC'); + + $timezoneAdjustment = ($adjustToTimezone) ? + PHPExcel_Shared_TimeZone::getTimezoneAdjustment($timezone ? $timezone : $saveTimeZone, $dateValue) : + 0; + + $retValue = false; + if ((is_object($dateValue)) && ($dateValue instanceof DateTime)) { + $dateValue->add(new DateInterval('PT' . $timezoneAdjustment . 'S')); + $retValue = self::FormattedPHPToExcel($dateValue->format('Y'), $dateValue->format('m'), $dateValue->format('d'), $dateValue->format('H'), $dateValue->format('i'), $dateValue->format('s')); + } elseif (is_numeric($dateValue)) { + $dateValue += $timezoneAdjustment; + $retValue = self::FormattedPHPToExcel(date('Y', $dateValue), date('m', $dateValue), date('d', $dateValue), date('H', $dateValue), date('i', $dateValue), date('s', $dateValue)); + } elseif (is_string($dateValue)) { + $retValue = self::stringToExcel($dateValue); + } + date_default_timezone_set($saveTimeZone); + + return $retValue; + } + + + /** + * FormattedPHPToExcel + * + * @param integer $year + * @param integer $month + * @param integer $day + * @param integer $hours + * @param integer $minutes + * @param integer $seconds + * @return integer Excel date/time value + */ + public static function FormattedPHPToExcel($year, $month, $day, $hours = 0, $minutes = 0, $seconds = 0) + { + if (self::$excelBaseDate == self::CALENDAR_WINDOWS_1900) { + // + // Fudge factor for the erroneous fact that the year 1900 is treated as a Leap Year in MS Excel + // This affects every date following 28th February 1900 + // + $excel1900isLeapYear = true; + if (($year == 1900) && ($month <= 2)) { + $excel1900isLeapYear = false; + } + $myexcelBaseDate = 2415020; + } else { + $myexcelBaseDate = 2416481; + $excel1900isLeapYear = false; + } + + // Julian base date Adjustment + if ($month > 2) { + $month -= 3; + } else { + $month += 9; + --$year; + } + + // Calculate the Julian Date, then subtract the Excel base date (JD 2415020 = 31-Dec-1899 Giving Excel Date of 0) + $century = substr($year, 0, 2); + $decade = substr($year, 2, 2); + $excelDate = floor((146097 * $century) / 4) + floor((1461 * $decade) / 4) + floor((153 * $month + 2) / 5) + $day + 1721119 - $myexcelBaseDate + $excel1900isLeapYear; + + $excelTime = (($hours * 3600) + ($minutes * 60) + $seconds) / 86400; + + return (float) $excelDate + $excelTime; + } + + + /** + * Is a given cell a date/time? + * + * @param PHPExcel_Cell $pCell + * @return boolean + */ + public static function isDateTime(PHPExcel_Cell $pCell) + { + return self::isDateTimeFormat( + $pCell->getWorksheet()->getStyle( + $pCell->getCoordinate() + )->getNumberFormat() + ); + } + + + /** + * Is a given number format a date/time? + * + * @param PHPExcel_Style_NumberFormat $pFormat + * @return boolean + */ + public static function isDateTimeFormat(PHPExcel_Style_NumberFormat $pFormat) + { + return self::isDateTimeFormatCode($pFormat->getFormatCode()); + } + + + private static $possibleDateFormatCharacters = 'eymdHs'; + + /** + * Is a given number format code a date/time? + * + * @param string $pFormatCode + * @return boolean + */ + public static function isDateTimeFormatCode($pFormatCode = '') + { + if (strtolower($pFormatCode) === strtolower(PHPExcel_Style_NumberFormat::FORMAT_GENERAL)) { + // "General" contains an epoch letter 'e', so we trap for it explicitly here (case-insensitive check) + return false; + } + if (preg_match('/[0#]E[+-]0/i', $pFormatCode)) { + // Scientific format + return false; + } + + // Switch on formatcode + switch ($pFormatCode) { + // Explicitly defined date formats + case PHPExcel_Style_NumberFormat::FORMAT_DATE_YYYYMMDD: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_YYYYMMDD2: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_DDMMYYYY: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_DMYSLASH: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_DMYMINUS: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_DMMINUS: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_MYMINUS: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_DATETIME: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME1: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME2: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME3: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME4: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME5: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME6: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME7: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME8: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_YYYYMMDDSLASH: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_XLSX14: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_XLSX15: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_XLSX16: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_XLSX17: + case PHPExcel_Style_NumberFormat::FORMAT_DATE_XLSX22: + return true; + } + + // Typically number, currency or accounting (or occasionally fraction) formats + if ((substr($pFormatCode, 0, 1) == '_') || (substr($pFormatCode, 0, 2) == '0 ')) { + return false; + } + // Try checking for any of the date formatting characters that don't appear within square braces + if (preg_match('/(^|\])[^\[]*['.self::$possibleDateFormatCharacters.']/i', $pFormatCode)) { + // We might also have a format mask containing quoted strings... + // we don't want to test for any of our characters within the quoted blocks + if (strpos($pFormatCode, '"') !== false) { + $segMatcher = false; + foreach (explode('"', $pFormatCode) as $subVal) { + // Only test in alternate array entries (the non-quoted blocks) + if (($segMatcher = !$segMatcher) && + (preg_match('/(^|\])[^\[]*['.self::$possibleDateFormatCharacters.']/i', $subVal))) { + return true; + } + } + return false; + } + return true; + } + + // No date... + return false; + } + + + /** + * Convert a date/time string to Excel time + * + * @param string $dateValue Examples: '2009-12-31', '2009-12-31 15:59', '2009-12-31 15:59:10' + * @return float|FALSE Excel date/time serial value + */ + public static function stringToExcel($dateValue = '') + { + if (strlen($dateValue) < 2) { + return false; + } + if (!preg_match('/^(\d{1,4}[ \.\/\-][A-Z]{3,9}([ \.\/\-]\d{1,4})?|[A-Z]{3,9}[ \.\/\-]\d{1,4}([ \.\/\-]\d{1,4})?|\d{1,4}[ \.\/\-]\d{1,4}([ \.\/\-]\d{1,4})?)( \d{1,2}:\d{1,2}(:\d{1,2})?)?$/iu', $dateValue)) { + return false; + } + + $dateValueNew = PHPExcel_Calculation_DateTime::DATEVALUE($dateValue); + + if ($dateValueNew === PHPExcel_Calculation_Functions::VALUE()) { + return false; + } + + if (strpos($dateValue, ':') !== false) { + $timeValue = PHPExcel_Calculation_DateTime::TIMEVALUE($dateValue); + if ($timeValue === PHPExcel_Calculation_Functions::VALUE()) { + return false; + } + $dateValueNew += $timeValue; + } + return $dateValueNew; + } + + /** + * Converts a month name (either a long or a short name) to a month number + * + * @param string $month Month name or abbreviation + * @return integer|string Month number (1 - 12), or the original string argument if it isn't a valid month name + */ + public static function monthStringToNumber($month) + { + $monthIndex = 1; + foreach (self::$monthNames as $shortMonthName => $longMonthName) { + if (($month === $longMonthName) || ($month === $shortMonthName)) { + return $monthIndex; + } + ++$monthIndex; + } + return $month; + } + + /** + * Strips an ordinal froma numeric value + * + * @param string $day Day number with an ordinal + * @return integer|string The integer value with any ordinal stripped, or the original string argument if it isn't a valid numeric + */ + public static function dayStringToNumber($day) + { + $strippedDayValue = (str_replace(self::$numberSuffixes, '', $day)); + if (is_numeric($strippedDayValue)) { + return (integer) $strippedDayValue; + } + return $day; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Drawing.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Drawing.php new file mode 100644 index 0000000..3e027b4 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Drawing.php @@ -0,0 +1,270 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + + +/** + * PHPExcel_Shared_Drawing + * + * @category PHPExcel + * @package PHPExcel_Shared + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + */ +class PHPExcel_Shared_Drawing +{ + /** + * Convert pixels to EMU + * + * @param int $pValue Value in pixels + * @return int Value in EMU + */ + public static function pixelsToEMU($pValue = 0) + { + return round($pValue * 9525); + } + + /** + * Convert EMU to pixels + * + * @param int $pValue Value in EMU + * @return int Value in pixels + */ + public static function EMUToPixels($pValue = 0) + { + if ($pValue != 0) { + return round($pValue / 9525); + } else { + return 0; + } + } + + /** + * Convert pixels to column width. Exact algorithm not known. + * By inspection of a real Excel file using Calibri 11, one finds 1000px ~ 142.85546875 + * This gives a conversion factor of 7. Also, we assume that pixels and font size are proportional. + * + * @param int $pValue Value in pixels + * @param PHPExcel_Style_Font $pDefaultFont Default font of the workbook + * @return int Value in cell dimension + */ + public static function pixelsToCellDimension($pValue = 0, PHPExcel_Style_Font $pDefaultFont) + { + // Font name and size + $name = $pDefaultFont->getName(); + $size = $pDefaultFont->getSize(); + + if (isset(PHPExcel_Shared_Font::$defaultColumnWidths[$name][$size])) { + // Exact width can be determined + $colWidth = $pValue * PHPExcel_Shared_Font::$defaultColumnWidths[$name][$size]['width'] / PHPExcel_Shared_Font::$defaultColumnWidths[$name][$size]['px']; + } else { + // We don't have data for this particular font and size, use approximation by + // extrapolating from Calibri 11 + $colWidth = $pValue * 11 * PHPExcel_Shared_Font::$defaultColumnWidths['Calibri'][11]['width'] / PHPExcel_Shared_Font::$defaultColumnWidths['Calibri'][11]['px'] / $size; + } + + return $colWidth; + } + + /** + * Convert column width from (intrinsic) Excel units to pixels + * + * @param float $pValue Value in cell dimension + * @param PHPExcel_Style_Font $pDefaultFont Default font of the workbook + * @return int Value in pixels + */ + public static function cellDimensionToPixels($pValue = 0, PHPExcel_Style_Font $pDefaultFont) + { + // Font name and size + $name = $pDefaultFont->getName(); + $size = $pDefaultFont->getSize(); + + if (isset(PHPExcel_Shared_Font::$defaultColumnWidths[$name][$size])) { + // Exact width can be determined + $colWidth = $pValue * PHPExcel_Shared_Font::$defaultColumnWidths[$name][$size]['px'] / PHPExcel_Shared_Font::$defaultColumnWidths[$name][$size]['width']; + } else { + // We don't have data for this particular font and size, use approximation by + // extrapolating from Calibri 11 + $colWidth = $pValue * $size * PHPExcel_Shared_Font::$defaultColumnWidths['Calibri'][11]['px'] / PHPExcel_Shared_Font::$defaultColumnWidths['Calibri'][11]['width'] / 11; + } + + // Round pixels to closest integer + $colWidth = (int) round($colWidth); + + return $colWidth; + } + + /** + * Convert pixels to points + * + * @param int $pValue Value in pixels + * @return int Value in points + */ + public static function pixelsToPoints($pValue = 0) + { + return $pValue * 0.67777777; + } + + /** + * Convert points to pixels + * + * @param int $pValue Value in points + * @return int Value in pixels + */ + public static function pointsToPixels($pValue = 0) + { + if ($pValue != 0) { + return (int) ceil($pValue * 1.333333333); + } else { + return 0; + } + } + + /** + * Convert degrees to angle + * + * @param int $pValue Degrees + * @return int Angle + */ + public static function degreesToAngle($pValue = 0) + { + return (int)round($pValue * 60000); + } + + /** + * Convert angle to degrees + * + * @param int $pValue Angle + * @return int Degrees + */ + public static function angleToDegrees($pValue = 0) + { + if ($pValue != 0) { + return round($pValue / 60000); + } else { + return 0; + } + } + + /** + * Create a new image from file. By alexander at alexauto dot nl + * + * @link http://www.php.net/manual/en/function.imagecreatefromwbmp.php#86214 + * @param string $filename Path to Windows DIB (BMP) image + * @return resource + */ + public static function imagecreatefrombmp($p_sFile) + { + // Load the image into a string + $file = fopen($p_sFile, "rb"); + $read = fread($file, 10); + while (!feof($file) && ($read<>"")) { + $read .= fread($file, 1024); + } + + $temp = unpack("H*", $read); + $hex = $temp[1]; + $header = substr($hex, 0, 108); + + // Process the header + // Structure: http://www.fastgraph.com/help/bmp_header_format.html + if (substr($header, 0, 4)=="424d") { + // Cut it in parts of 2 bytes + $header_parts = str_split($header, 2); + + // Get the width 4 bytes + $width = hexdec($header_parts[19].$header_parts[18]); + + // Get the height 4 bytes + $height = hexdec($header_parts[23].$header_parts[22]); + + // Unset the header params + unset($header_parts); + } + + // Define starting X and Y + $x = 0; + $y = 1; + + // Create newimage + $image = imagecreatetruecolor($width, $height); + + // Grab the body from the image + $body = substr($hex, 108); + + // Calculate if padding at the end-line is needed + // Divided by two to keep overview. + // 1 byte = 2 HEX-chars + $body_size = (strlen($body)/2); + $header_size = ($width*$height); + + // Use end-line padding? Only when needed + $usePadding = ($body_size>($header_size*3)+4); + + // Using a for-loop with index-calculation instaid of str_split to avoid large memory consumption + // Calculate the next DWORD-position in the body + for ($i = 0; $i < $body_size; $i += 3) { + // Calculate line-ending and padding + if ($x >= $width) { + // If padding needed, ignore image-padding + // Shift i to the ending of the current 32-bit-block + if ($usePadding) { + $i += $width%4; + } + + // Reset horizontal position + $x = 0; + + // Raise the height-position (bottom-up) + $y++; + + // Reached the image-height? Break the for-loop + if ($y > $height) { + break; + } + } + + // Calculation of the RGB-pixel (defined as BGR in image-data) + // Define $i_pos as absolute position in the body + $i_pos = $i * 2; + $r = hexdec($body[$i_pos+4].$body[$i_pos+5]); + $g = hexdec($body[$i_pos+2].$body[$i_pos+3]); + $b = hexdec($body[$i_pos].$body[$i_pos+1]); + + // Calculate and draw the pixel + $color = imagecolorallocate($image, $r, $g, $b); + imagesetpixel($image, $x, $height-$y, $color); + + // Raise the horizontal position + $x++; + } + + // Unset the body / free the memory + unset($body); + + // Return image-object + return $image; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher.php new file mode 100644 index 0000000..1aedb9d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher.php @@ -0,0 +1,83 @@ +<?php + +/** + * PHPExcel_Shared_Escher + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_Escher + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_Escher +{ + /** + * Drawing Group Container + * + * @var PHPExcel_Shared_Escher_DggContainer + */ + private $dggContainer; + + /** + * Drawing Container + * + * @var PHPExcel_Shared_Escher_DgContainer + */ + private $dgContainer; + + /** + * Get Drawing Group Container + * + * @return PHPExcel_Shared_Escher_DgContainer + */ + public function getDggContainer() + { + return $this->dggContainer; + } + + /** + * Set Drawing Group Container + * + * @param PHPExcel_Shared_Escher_DggContainer $dggContainer + */ + public function setDggContainer($dggContainer) + { + return $this->dggContainer = $dggContainer; + } + + /** + * Get Drawing Container + * + * @return PHPExcel_Shared_Escher_DgContainer + */ + public function getDgContainer() + { + return $this->dgContainer; + } + + /** + * Set Drawing Container + * + * @param PHPExcel_Shared_Escher_DgContainer $dgContainer + */ + public function setDgContainer($dgContainer) + { + return $this->dgContainer = $dgContainer; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer.php new file mode 100644 index 0000000..739cd90 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer.php @@ -0,0 +1,75 @@ +<?php + +/** + * PHPExcel_Shared_Escher_DgContainer + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_Escher + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_Escher_DgContainer +{ + /** + * Drawing index, 1-based. + * + * @var int + */ + private $dgId; + + /** + * Last shape index in this drawing + * + * @var int + */ + private $lastSpId; + + private $spgrContainer = null; + + public function getDgId() + { + return $this->dgId; + } + + public function setDgId($value) + { + $this->dgId = $value; + } + + public function getLastSpId() + { + return $this->lastSpId; + } + + public function setLastSpId($value) + { + $this->lastSpId = $value; + } + + public function getSpgrContainer() + { + return $this->spgrContainer; + } + + public function setSpgrContainer($spgrContainer) + { + return $this->spgrContainer = $spgrContainer; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php new file mode 100644 index 0000000..49e7d68 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php @@ -0,0 +1,102 @@ +<?php + +/** + * PHPExcel_Shared_Escher_DgContainer_SpgrContainer + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_Escher + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_Escher_DgContainer_SpgrContainer +{ + /** + * Parent Shape Group Container + * + * @var PHPExcel_Shared_Escher_DgContainer_SpgrContainer + */ + private $parent; + + /** + * Shape Container collection + * + * @var array + */ + private $children = array(); + + /** + * Set parent Shape Group Container + * + * @param PHPExcel_Shared_Escher_DgContainer_SpgrContainer $parent + */ + public function setParent($parent) + { + $this->parent = $parent; + } + + /** + * Get the parent Shape Group Container if any + * + * @return PHPExcel_Shared_Escher_DgContainer_SpgrContainer|null + */ + public function getParent() + { + return $this->parent; + } + + /** + * Add a child. This will be either spgrContainer or spContainer + * + * @param mixed $child + */ + public function addChild($child) + { + $this->children[] = $child; + $child->setParent($this); + } + + /** + * Get collection of Shape Containers + */ + public function getChildren() + { + return $this->children; + } + + /** + * Recursively get all spContainers within this spgrContainer + * + * @return PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer[] + */ + public function getAllSpContainers() + { + $allSpContainers = array(); + + foreach ($this->children as $child) { + if ($child instanceof PHPExcel_Shared_Escher_DgContainer_SpgrContainer) { + $allSpContainers = array_merge($allSpContainers, $child->getAllSpContainers()); + } else { + $allSpContainers[] = $child; + } + } + + return $allSpContainers; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php new file mode 100644 index 0000000..a1f1a46 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php @@ -0,0 +1,388 @@ +<?php + +/** + * PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_Escher + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer +{ + /** + * Parent Shape Group Container + * + * @var PHPExcel_Shared_Escher_DgContainer_SpgrContainer + */ + private $parent; + + /** + * Is this a group shape? + * + * @var boolean + */ + private $spgr = false; + + /** + * Shape type + * + * @var int + */ + private $spType; + + /** + * Shape flag + * + * @var int + */ + private $spFlag; + + /** + * Shape index (usually group shape has index 0, and the rest: 1,2,3...) + * + * @var boolean + */ + private $spId; + + /** + * Array of options + * + * @var array + */ + private $OPT; + + /** + * Cell coordinates of upper-left corner of shape, e.g. 'A1' + * + * @var string + */ + private $startCoordinates; + + /** + * Horizontal offset of upper-left corner of shape measured in 1/1024 of column width + * + * @var int + */ + private $startOffsetX; + + /** + * Vertical offset of upper-left corner of shape measured in 1/256 of row height + * + * @var int + */ + private $startOffsetY; + + /** + * Cell coordinates of bottom-right corner of shape, e.g. 'B2' + * + * @var string + */ + private $endCoordinates; + + /** + * Horizontal offset of bottom-right corner of shape measured in 1/1024 of column width + * + * @var int + */ + private $endOffsetX; + + /** + * Vertical offset of bottom-right corner of shape measured in 1/256 of row height + * + * @var int + */ + private $endOffsetY; + + /** + * Set parent Shape Group Container + * + * @param PHPExcel_Shared_Escher_DgContainer_SpgrContainer $parent + */ + public function setParent($parent) + { + $this->parent = $parent; + } + + /** + * Get the parent Shape Group Container + * + * @return PHPExcel_Shared_Escher_DgContainer_SpgrContainer + */ + public function getParent() + { + return $this->parent; + } + + /** + * Set whether this is a group shape + * + * @param boolean $value + */ + public function setSpgr($value = false) + { + $this->spgr = $value; + } + + /** + * Get whether this is a group shape + * + * @return boolean + */ + public function getSpgr() + { + return $this->spgr; + } + + /** + * Set the shape type + * + * @param int $value + */ + public function setSpType($value) + { + $this->spType = $value; + } + + /** + * Get the shape type + * + * @return int + */ + public function getSpType() + { + return $this->spType; + } + + /** + * Set the shape flag + * + * @param int $value + */ + public function setSpFlag($value) + { + $this->spFlag = $value; + } + + /** + * Get the shape flag + * + * @return int + */ + public function getSpFlag() + { + return $this->spFlag; + } + + /** + * Set the shape index + * + * @param int $value + */ + public function setSpId($value) + { + $this->spId = $value; + } + + /** + * Get the shape index + * + * @return int + */ + public function getSpId() + { + return $this->spId; + } + + /** + * Set an option for the Shape Group Container + * + * @param int $property The number specifies the option + * @param mixed $value + */ + public function setOPT($property, $value) + { + $this->OPT[$property] = $value; + } + + /** + * Get an option for the Shape Group Container + * + * @param int $property The number specifies the option + * @return mixed + */ + public function getOPT($property) + { + if (isset($this->OPT[$property])) { + return $this->OPT[$property]; + } + return null; + } + + /** + * Get the collection of options + * + * @return array + */ + public function getOPTCollection() + { + return $this->OPT; + } + + /** + * Set cell coordinates of upper-left corner of shape + * + * @param string $value + */ + public function setStartCoordinates($value = 'A1') + { + $this->startCoordinates = $value; + } + + /** + * Get cell coordinates of upper-left corner of shape + * + * @return string + */ + public function getStartCoordinates() + { + return $this->startCoordinates; + } + + /** + * Set offset in x-direction of upper-left corner of shape measured in 1/1024 of column width + * + * @param int $startOffsetX + */ + public function setStartOffsetX($startOffsetX = 0) + { + $this->startOffsetX = $startOffsetX; + } + + /** + * Get offset in x-direction of upper-left corner of shape measured in 1/1024 of column width + * + * @return int + */ + public function getStartOffsetX() + { + return $this->startOffsetX; + } + + /** + * Set offset in y-direction of upper-left corner of shape measured in 1/256 of row height + * + * @param int $startOffsetY + */ + public function setStartOffsetY($startOffsetY = 0) + { + $this->startOffsetY = $startOffsetY; + } + + /** + * Get offset in y-direction of upper-left corner of shape measured in 1/256 of row height + * + * @return int + */ + public function getStartOffsetY() + { + return $this->startOffsetY; + } + + /** + * Set cell coordinates of bottom-right corner of shape + * + * @param string $value + */ + public function setEndCoordinates($value = 'A1') + { + $this->endCoordinates = $value; + } + + /** + * Get cell coordinates of bottom-right corner of shape + * + * @return string + */ + public function getEndCoordinates() + { + return $this->endCoordinates; + } + + /** + * Set offset in x-direction of bottom-right corner of shape measured in 1/1024 of column width + * + * @param int $startOffsetX + */ + public function setEndOffsetX($endOffsetX = 0) + { + $this->endOffsetX = $endOffsetX; + } + + /** + * Get offset in x-direction of bottom-right corner of shape measured in 1/1024 of column width + * + * @return int + */ + public function getEndOffsetX() + { + return $this->endOffsetX; + } + + /** + * Set offset in y-direction of bottom-right corner of shape measured in 1/256 of row height + * + * @param int $endOffsetY + */ + public function setEndOffsetY($endOffsetY = 0) + { + $this->endOffsetY = $endOffsetY; + } + + /** + * Get offset in y-direction of bottom-right corner of shape measured in 1/256 of row height + * + * @return int + */ + public function getEndOffsetY() + { + return $this->endOffsetY; + } + + /** + * Get the nesting level of this spContainer. This is the number of spgrContainers between this spContainer and + * the dgContainer. A value of 1 = immediately within first spgrContainer + * Higher nesting level occurs if and only if spContainer is part of a shape group + * + * @return int Nesting level + */ + public function getNestingLevel() + { + $nestingLevel = 0; + + $parent = $this->getParent(); + while ($parent instanceof PHPExcel_Shared_Escher_DgContainer_SpgrContainer) { + ++$nestingLevel; + $parent = $parent->getParent(); + } + + return $nestingLevel; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer.php new file mode 100644 index 0000000..b116b1b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer.php @@ -0,0 +1,196 @@ +<?php + +/** + * PHPExcel_Shared_Escher_DggContainer + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_Escher + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_Escher_DggContainer +{ + /** + * Maximum shape index of all shapes in all drawings increased by one + * + * @var int + */ + private $spIdMax; + + /** + * Total number of drawings saved + * + * @var int + */ + private $cDgSaved; + + /** + * Total number of shapes saved (including group shapes) + * + * @var int + */ + private $cSpSaved; + + /** + * BLIP Store Container + * + * @var PHPExcel_Shared_Escher_DggContainer_BstoreContainer + */ + private $bstoreContainer; + + /** + * Array of options for the drawing group + * + * @var array + */ + private $OPT = array(); + + /** + * Array of identifier clusters containg information about the maximum shape identifiers + * + * @var array + */ + private $IDCLs = array(); + + /** + * Get maximum shape index of all shapes in all drawings (plus one) + * + * @return int + */ + public function getSpIdMax() + { + return $this->spIdMax; + } + + /** + * Set maximum shape index of all shapes in all drawings (plus one) + * + * @param int + */ + public function setSpIdMax($value) + { + $this->spIdMax = $value; + } + + /** + * Get total number of drawings saved + * + * @return int + */ + public function getCDgSaved() + { + return $this->cDgSaved; + } + + /** + * Set total number of drawings saved + * + * @param int + */ + public function setCDgSaved($value) + { + $this->cDgSaved = $value; + } + + /** + * Get total number of shapes saved (including group shapes) + * + * @return int + */ + public function getCSpSaved() + { + return $this->cSpSaved; + } + + /** + * Set total number of shapes saved (including group shapes) + * + * @param int + */ + public function setCSpSaved($value) + { + $this->cSpSaved = $value; + } + + /** + * Get BLIP Store Container + * + * @return PHPExcel_Shared_Escher_DggContainer_BstoreContainer + */ + public function getBstoreContainer() + { + return $this->bstoreContainer; + } + + /** + * Set BLIP Store Container + * + * @param PHPExcel_Shared_Escher_DggContainer_BstoreContainer $bstoreContainer + */ + public function setBstoreContainer($bstoreContainer) + { + $this->bstoreContainer = $bstoreContainer; + } + + /** + * Set an option for the drawing group + * + * @param int $property The number specifies the option + * @param mixed $value + */ + public function setOPT($property, $value) + { + $this->OPT[$property] = $value; + } + + /** + * Get an option for the drawing group + * + * @param int $property The number specifies the option + * @return mixed + */ + public function getOPT($property) + { + if (isset($this->OPT[$property])) { + return $this->OPT[$property]; + } + return null; + } + + /** + * Get identifier clusters + * + * @return array + */ + public function getIDCLs() + { + return $this->IDCLs; + } + + /** + * Set identifier clusters. array(<drawingId> => <max shape id>, ...) + * + * @param array $pValue + */ + public function setIDCLs($pValue) + { + $this->IDCLs = $pValue; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php new file mode 100644 index 0000000..1af2432 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php @@ -0,0 +1,57 @@ +<?php + +/** + * PHPExcel_Shared_Escher_DggContainer_BstoreContainer + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_Escher + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_Escher_DggContainer_BstoreContainer +{ + /** + * BLIP Store Entries. Each of them holds one BLIP (Big Large Image or Picture) + * + * @var array + */ + private $BSECollection = array(); + + /** + * Add a BLIP Store Entry + * + * @param PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE $BSE + */ + public function addBSE($BSE) + { + $this->BSECollection[] = $BSE; + $BSE->setParent($this); + } + + /** + * Get the collection of BLIP Store Entries + * + * @return PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE[] + */ + public function getBSECollection() + { + return $this->BSECollection; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php new file mode 100644 index 0000000..d17e91e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php @@ -0,0 +1,112 @@ +<?php + +/** + * PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_Escher + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE +{ + const BLIPTYPE_ERROR = 0x00; + const BLIPTYPE_UNKNOWN = 0x01; + const BLIPTYPE_EMF = 0x02; + const BLIPTYPE_WMF = 0x03; + const BLIPTYPE_PICT = 0x04; + const BLIPTYPE_JPEG = 0x05; + const BLIPTYPE_PNG = 0x06; + const BLIPTYPE_DIB = 0x07; + const BLIPTYPE_TIFF = 0x11; + const BLIPTYPE_CMYKJPEG = 0x12; + + /** + * The parent BLIP Store Entry Container + * + * @var PHPExcel_Shared_Escher_DggContainer_BstoreContainer + */ + private $parent; + + /** + * The BLIP (Big Large Image or Picture) + * + * @var PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE_Blip + */ + private $blip; + + /** + * The BLIP type + * + * @var int + */ + private $blipType; + + /** + * Set parent BLIP Store Entry Container + * + * @param PHPExcel_Shared_Escher_DggContainer_BstoreContainer $parent + */ + public function setParent($parent) + { + $this->parent = $parent; + } + + /** + * Get the BLIP + * + * @return PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE_Blip + */ + public function getBlip() + { + return $this->blip; + } + + /** + * Set the BLIP + * + * @param PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE_Blip $blip + */ + public function setBlip($blip) + { + $this->blip = $blip; + $blip->setParent($this); + } + + /** + * Get the BLIP type + * + * @return int + */ + public function getBlipType() + { + return $this->blipType; + } + + /** + * Set the BLIP type + * + * @param int + */ + public function setBlipType($blipType) + { + $this->blipType = $blipType; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php new file mode 100644 index 0000000..3bcbbbe --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php @@ -0,0 +1,83 @@ +<?php + +/** + * PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE_Blip + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_Escher + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE_Blip +{ + /** + * The parent BSE + * + * @var PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE + */ + private $parent; + + /** + * Raw image data + * + * @var string + */ + private $data; + + /** + * Get the raw image data + * + * @return string + */ + public function getData() + { + return $this->data; + } + + /** + * Set the raw image data + * + * @param string + */ + public function setData($data) + { + $this->data = $data; + } + + /** + * Set parent BSE + * + * @param PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE $parent + */ + public function setParent($parent) + { + $this->parent = $parent; + } + + /** + * Get parent BSE + * + * @return PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE $parent + */ + public function getParent() + { + return $this->parent; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Excel5.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Excel5.php new file mode 100644 index 0000000..c3ff209 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Excel5.php @@ -0,0 +1,298 @@ +<?php + +/** + * PHPExcel_Shared_Excel5 + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_Excel5 +{ + /** + * Get the width of a column in pixels. We use the relationship y = ceil(7x) where + * x is the width in intrinsic Excel units (measuring width in number of normal characters) + * This holds for Arial 10 + * + * @param PHPExcel_Worksheet $sheet The sheet + * @param string $col The column + * @return integer The width in pixels + */ + public static function sizeCol($sheet, $col = 'A') + { + // default font of the workbook + $font = $sheet->getParent()->getDefaultStyle()->getFont(); + + $columnDimensions = $sheet->getColumnDimensions(); + + // first find the true column width in pixels (uncollapsed and unhidden) + if (isset($columnDimensions[$col]) and $columnDimensions[$col]->getWidth() != -1) { + // then we have column dimension with explicit width + $columnDimension = $columnDimensions[$col]; + $width = $columnDimension->getWidth(); + $pixelWidth = PHPExcel_Shared_Drawing::cellDimensionToPixels($width, $font); + } elseif ($sheet->getDefaultColumnDimension()->getWidth() != -1) { + // then we have default column dimension with explicit width + $defaultColumnDimension = $sheet->getDefaultColumnDimension(); + $width = $defaultColumnDimension->getWidth(); + $pixelWidth = PHPExcel_Shared_Drawing::cellDimensionToPixels($width, $font); + } else { + // we don't even have any default column dimension. Width depends on default font + $pixelWidth = PHPExcel_Shared_Font::getDefaultColumnWidthByFont($font, true); + } + + // now find the effective column width in pixels + if (isset($columnDimensions[$col]) and !$columnDimensions[$col]->getVisible()) { + $effectivePixelWidth = 0; + } else { + $effectivePixelWidth = $pixelWidth; + } + + return $effectivePixelWidth; + } + + /** + * Convert the height of a cell from user's units to pixels. By interpolation + * the relationship is: y = 4/3x. If the height hasn't been set by the user we + * use the default value. If the row is hidden we use a value of zero. + * + * @param PHPExcel_Worksheet $sheet The sheet + * @param integer $row The row index (1-based) + * @return integer The width in pixels + */ + public static function sizeRow($sheet, $row = 1) + { + // default font of the workbook + $font = $sheet->getParent()->getDefaultStyle()->getFont(); + + $rowDimensions = $sheet->getRowDimensions(); + + // first find the true row height in pixels (uncollapsed and unhidden) + if (isset($rowDimensions[$row]) and $rowDimensions[$row]->getRowHeight() != -1) { + // then we have a row dimension + $rowDimension = $rowDimensions[$row]; + $rowHeight = $rowDimension->getRowHeight(); + $pixelRowHeight = (int) ceil(4 * $rowHeight / 3); // here we assume Arial 10 + } elseif ($sheet->getDefaultRowDimension()->getRowHeight() != -1) { + // then we have a default row dimension with explicit height + $defaultRowDimension = $sheet->getDefaultRowDimension(); + $rowHeight = $defaultRowDimension->getRowHeight(); + $pixelRowHeight = PHPExcel_Shared_Drawing::pointsToPixels($rowHeight); + } else { + // we don't even have any default row dimension. Height depends on default font + $pointRowHeight = PHPExcel_Shared_Font::getDefaultRowHeightByFont($font); + $pixelRowHeight = PHPExcel_Shared_Font::fontSizeToPixels($pointRowHeight); + } + + // now find the effective row height in pixels + if (isset($rowDimensions[$row]) and !$rowDimensions[$row]->getVisible()) { + $effectivePixelRowHeight = 0; + } else { + $effectivePixelRowHeight = $pixelRowHeight; + } + + return $effectivePixelRowHeight; + } + + /** + * Get the horizontal distance in pixels between two anchors + * The distanceX is found as sum of all the spanning columns widths minus correction for the two offsets + * + * @param PHPExcel_Worksheet $sheet + * @param string $startColumn + * @param integer $startOffsetX Offset within start cell measured in 1/1024 of the cell width + * @param string $endColumn + * @param integer $endOffsetX Offset within end cell measured in 1/1024 of the cell width + * @return integer Horizontal measured in pixels + */ + public static function getDistanceX(PHPExcel_Worksheet $sheet, $startColumn = 'A', $startOffsetX = 0, $endColumn = 'A', $endOffsetX = 0) + { + $distanceX = 0; + + // add the widths of the spanning columns + $startColumnIndex = PHPExcel_Cell::columnIndexFromString($startColumn) - 1; // 1-based + $endColumnIndex = PHPExcel_Cell::columnIndexFromString($endColumn) - 1; // 1-based + for ($i = $startColumnIndex; $i <= $endColumnIndex; ++$i) { + $distanceX += self::sizeCol($sheet, PHPExcel_Cell::stringFromColumnIndex($i)); + } + + // correct for offsetX in startcell + $distanceX -= (int) floor(self::sizeCol($sheet, $startColumn) * $startOffsetX / 1024); + + // correct for offsetX in endcell + $distanceX -= (int) floor(self::sizeCol($sheet, $endColumn) * (1 - $endOffsetX / 1024)); + + return $distanceX; + } + + /** + * Get the vertical distance in pixels between two anchors + * The distanceY is found as sum of all the spanning rows minus two offsets + * + * @param PHPExcel_Worksheet $sheet + * @param integer $startRow (1-based) + * @param integer $startOffsetY Offset within start cell measured in 1/256 of the cell height + * @param integer $endRow (1-based) + * @param integer $endOffsetY Offset within end cell measured in 1/256 of the cell height + * @return integer Vertical distance measured in pixels + */ + public static function getDistanceY(PHPExcel_Worksheet $sheet, $startRow = 1, $startOffsetY = 0, $endRow = 1, $endOffsetY = 0) + { + $distanceY = 0; + + // add the widths of the spanning rows + for ($row = $startRow; $row <= $endRow; ++$row) { + $distanceY += self::sizeRow($sheet, $row); + } + + // correct for offsetX in startcell + $distanceY -= (int) floor(self::sizeRow($sheet, $startRow) * $startOffsetY / 256); + + // correct for offsetX in endcell + $distanceY -= (int) floor(self::sizeRow($sheet, $endRow) * (1 - $endOffsetY / 256)); + + return $distanceY; + } + + /** + * Convert 1-cell anchor coordinates to 2-cell anchor coordinates + * This function is ported from PEAR Spreadsheet_Writer_Excel with small modifications + * + * Calculate the vertices that define the position of the image as required by + * the OBJ record. + * + * +------------+------------+ + * | A | B | + * +-----+------------+------------+ + * | |(x1,y1) | | + * | 1 |(A1)._______|______ | + * | | | | | + * | | | | | + * +-----+----| BITMAP |-----+ + * | | | | | + * | 2 | |______________. | + * | | | (B2)| + * | | | (x2,y2)| + * +---- +------------+------------+ + * + * Example of a bitmap that covers some of the area from cell A1 to cell B2. + * + * Based on the width and height of the bitmap we need to calculate 8 vars: + * $col_start, $row_start, $col_end, $row_end, $x1, $y1, $x2, $y2. + * The width and height of the cells are also variable and have to be taken into + * account. + * The values of $col_start and $row_start are passed in from the calling + * function. The values of $col_end and $row_end are calculated by subtracting + * the width and height of the bitmap from the width and height of the + * underlying cells. + * The vertices are expressed as a percentage of the underlying cell width as + * follows (rhs values are in pixels): + * + * x1 = X / W *1024 + * y1 = Y / H *256 + * x2 = (X-1) / W *1024 + * y2 = (Y-1) / H *256 + * + * Where: X is distance from the left side of the underlying cell + * Y is distance from the top of the underlying cell + * W is the width of the cell + * H is the height of the cell + * + * @param PHPExcel_Worksheet $sheet + * @param string $coordinates E.g. 'A1' + * @param integer $offsetX Horizontal offset in pixels + * @param integer $offsetY Vertical offset in pixels + * @param integer $width Width in pixels + * @param integer $height Height in pixels + * @return array + */ + public static function oneAnchor2twoAnchor($sheet, $coordinates, $offsetX, $offsetY, $width, $height) + { + list($column, $row) = PHPExcel_Cell::coordinateFromString($coordinates); + $col_start = PHPExcel_Cell::columnIndexFromString($column) - 1; + $row_start = $row - 1; + + $x1 = $offsetX; + $y1 = $offsetY; + + // Initialise end cell to the same as the start cell + $col_end = $col_start; // Col containing lower right corner of object + $row_end = $row_start; // Row containing bottom right corner of object + + // Zero the specified offset if greater than the cell dimensions + if ($x1 >= self::sizeCol($sheet, PHPExcel_Cell::stringFromColumnIndex($col_start))) { + $x1 = 0; + } + if ($y1 >= self::sizeRow($sheet, $row_start + 1)) { + $y1 = 0; + } + + $width = $width + $x1 -1; + $height = $height + $y1 -1; + + // Subtract the underlying cell widths to find the end cell of the image + while ($width >= self::sizeCol($sheet, PHPExcel_Cell::stringFromColumnIndex($col_end))) { + $width -= self::sizeCol($sheet, PHPExcel_Cell::stringFromColumnIndex($col_end)); + ++$col_end; + } + + // Subtract the underlying cell heights to find the end cell of the image + while ($height >= self::sizeRow($sheet, $row_end + 1)) { + $height -= self::sizeRow($sheet, $row_end + 1); + ++$row_end; + } + + // Bitmap isn't allowed to start or finish in a hidden cell, i.e. a cell + // with zero height or width. + if (self::sizeCol($sheet, PHPExcel_Cell::stringFromColumnIndex($col_start)) == 0) { + return; + } + if (self::sizeCol($sheet, PHPExcel_Cell::stringFromColumnIndex($col_end)) == 0) { + return; + } + if (self::sizeRow($sheet, $row_start + 1) == 0) { + return; + } + if (self::sizeRow($sheet, $row_end + 1) == 0) { + return; + } + + // Convert the pixel values to the percentage value expected by Excel + $x1 = $x1 / self::sizeCol($sheet, PHPExcel_Cell::stringFromColumnIndex($col_start)) * 1024; + $y1 = $y1 / self::sizeRow($sheet, $row_start + 1) * 256; + $x2 = ($width + 1) / self::sizeCol($sheet, PHPExcel_Cell::stringFromColumnIndex($col_end)) * 1024; // Distance to right side of object + $y2 = ($height + 1) / self::sizeRow($sheet, $row_end + 1) * 256; // Distance to bottom of object + + $startCoordinates = PHPExcel_Cell::stringFromColumnIndex($col_start) . ($row_start + 1); + $endCoordinates = PHPExcel_Cell::stringFromColumnIndex($col_end) . ($row_end + 1); + + $twoAnchor = array( + 'startCoordinates' => $startCoordinates, + 'startOffsetX' => $x1, + 'startOffsetY' => $y1, + 'endCoordinates' => $endCoordinates, + 'endOffsetX' => $x2, + 'endOffsetY' => $y2, + ); + + return $twoAnchor; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/File.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/File.php new file mode 100644 index 0000000..a62df75 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/File.php @@ -0,0 +1,180 @@ +<?php + +/** + * PHPExcel_Shared_File + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_File +{ + /* + * Use Temp or File Upload Temp for temporary files + * + * @protected + * @var boolean + */ + protected static $useUploadTempDirectory = false; + + + /** + * Set the flag indicating whether the File Upload Temp directory should be used for temporary files + * + * @param boolean $useUploadTempDir Use File Upload Temporary directory (true or false) + */ + public static function setUseUploadTempDirectory($useUploadTempDir = false) + { + self::$useUploadTempDirectory = (boolean) $useUploadTempDir; + } + + + /** + * Get the flag indicating whether the File Upload Temp directory should be used for temporary files + * + * @return boolean Use File Upload Temporary directory (true or false) + */ + public static function getUseUploadTempDirectory() + { + return self::$useUploadTempDirectory; + } + + + /** + * Verify if a file exists + * + * @param string $pFilename Filename + * @return bool + */ + public static function file_exists($pFilename) + { + // Sick construction, but it seems that + // file_exists returns strange values when + // doing the original file_exists on ZIP archives... + if (strtolower(substr($pFilename, 0, 3)) == 'zip') { + // Open ZIP file and verify if the file exists + $zipFile = substr($pFilename, 6, strpos($pFilename, '#') - 6); + $archiveFile = substr($pFilename, strpos($pFilename, '#') + 1); + + $zip = new ZipArchive(); + if ($zip->open($zipFile) === true) { + $returnValue = ($zip->getFromName($archiveFile) !== false); + $zip->close(); + return $returnValue; + } else { + return false; + } + } else { + // Regular file_exists + return file_exists($pFilename); + } + } + + /** + * Returns canonicalized absolute pathname, also for ZIP archives + * + * @param string $pFilename + * @return string + */ + public static function realpath($pFilename) + { + // Returnvalue + $returnValue = ''; + + // Try using realpath() + if (file_exists($pFilename)) { + $returnValue = realpath($pFilename); + } + + // Found something? + if ($returnValue == '' || ($returnValue === null)) { + $pathArray = explode('/', $pFilename); + while (in_array('..', $pathArray) && $pathArray[0] != '..') { + for ($i = 0; $i < count($pathArray); ++$i) { + if ($pathArray[$i] == '..' && $i > 0) { + unset($pathArray[$i]); + unset($pathArray[$i - 1]); + break; + } + } + } + $returnValue = implode('/', $pathArray); + } + + // Return + return $returnValue; + } + + /** + * Get the systems temporary directory. + * + * @return string + */ + public static function sys_get_temp_dir() + { + if (self::$useUploadTempDirectory) { + // use upload-directory when defined to allow running on environments having very restricted + // open_basedir configs + if (ini_get('upload_tmp_dir') !== false) { + if ($temp = ini_get('upload_tmp_dir')) { + if (file_exists($temp)) { + return realpath($temp); + } + } + } + } + + // sys_get_temp_dir is only available since PHP 5.2.1 + // http://php.net/manual/en/function.sys-get-temp-dir.php#94119 + if (!function_exists('sys_get_temp_dir')) { + if ($temp = getenv('TMP')) { + if ((!empty($temp)) && (file_exists($temp))) { + return realpath($temp); + } + } + if ($temp = getenv('TEMP')) { + if ((!empty($temp)) && (file_exists($temp))) { + return realpath($temp); + } + } + if ($temp = getenv('TMPDIR')) { + if ((!empty($temp)) && (file_exists($temp))) { + return realpath($temp); + } + } + + // trick for creating a file in system's temporary dir + // without knowing the path of the system's temporary dir + $temp = tempnam(__FILE__, ''); + if (file_exists($temp)) { + unlink($temp); + return realpath(dirname($temp)); + } + + return null; + } + + // use ordinary built-in PHP function + // There should be no problem with the 5.2.4 Suhosin realpath() bug, because this line should only + // be called if we're running 5.2.1 or earlier + return realpath(sys_get_temp_dir()); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Font.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Font.php new file mode 100644 index 0000000..7efb3c9 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Font.php @@ -0,0 +1,741 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + + +/** + * PHPExcel_Shared_Font + * + * @category PHPExcel + * @package PHPExcel_Shared + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + */ +class PHPExcel_Shared_Font +{ + /* Methods for resolving autosize value */ + const AUTOSIZE_METHOD_APPROX = 'approx'; + const AUTOSIZE_METHOD_EXACT = 'exact'; + + private static $autoSizeMethods = array( + self::AUTOSIZE_METHOD_APPROX, + self::AUTOSIZE_METHOD_EXACT, + ); + + /** Character set codes used by BIFF5-8 in Font records */ + const CHARSET_ANSI_LATIN = 0x00; + const CHARSET_SYSTEM_DEFAULT = 0x01; + const CHARSET_SYMBOL = 0x02; + const CHARSET_APPLE_ROMAN = 0x4D; + const CHARSET_ANSI_JAPANESE_SHIFTJIS = 0x80; + const CHARSET_ANSI_KOREAN_HANGUL = 0x81; + const CHARSET_ANSI_KOREAN_JOHAB = 0x82; + const CHARSET_ANSI_CHINESE_SIMIPLIFIED = 0x86; // gb2312 + const CHARSET_ANSI_CHINESE_TRADITIONAL = 0x88; // big5 + const CHARSET_ANSI_GREEK = 0xA1; + const CHARSET_ANSI_TURKISH = 0xA2; + const CHARSET_ANSI_VIETNAMESE = 0xA3; + const CHARSET_ANSI_HEBREW = 0xB1; + const CHARSET_ANSI_ARABIC = 0xB2; + const CHARSET_ANSI_BALTIC = 0xBA; + const CHARSET_ANSI_CYRILLIC = 0xCC; + const CHARSET_ANSI_THAI = 0xDD; + const CHARSET_ANSI_LATIN_II = 0xEE; + const CHARSET_OEM_LATIN_I = 0xFF; + + // XXX: Constants created! + /** Font filenames */ + const ARIAL = 'arial.ttf'; + const ARIAL_BOLD = 'arialbd.ttf'; + const ARIAL_ITALIC = 'ariali.ttf'; + const ARIAL_BOLD_ITALIC = 'arialbi.ttf'; + + const CALIBRI = 'CALIBRI.TTF'; + const CALIBRI_BOLD = 'CALIBRIB.TTF'; + const CALIBRI_ITALIC = 'CALIBRII.TTF'; + const CALIBRI_BOLD_ITALIC = 'CALIBRIZ.TTF'; + + const COMIC_SANS_MS = 'comic.ttf'; + const COMIC_SANS_MS_BOLD = 'comicbd.ttf'; + + const COURIER_NEW = 'cour.ttf'; + const COURIER_NEW_BOLD = 'courbd.ttf'; + const COURIER_NEW_ITALIC = 'couri.ttf'; + const COURIER_NEW_BOLD_ITALIC = 'courbi.ttf'; + + const GEORGIA = 'georgia.ttf'; + const GEORGIA_BOLD = 'georgiab.ttf'; + const GEORGIA_ITALIC = 'georgiai.ttf'; + const GEORGIA_BOLD_ITALIC = 'georgiaz.ttf'; + + const IMPACT = 'impact.ttf'; + + const LIBERATION_SANS = 'LiberationSans-Regular.ttf'; + const LIBERATION_SANS_BOLD = 'LiberationSans-Bold.ttf'; + const LIBERATION_SANS_ITALIC = 'LiberationSans-Italic.ttf'; + const LIBERATION_SANS_BOLD_ITALIC = 'LiberationSans-BoldItalic.ttf'; + + const LUCIDA_CONSOLE = 'lucon.ttf'; + const LUCIDA_SANS_UNICODE = 'l_10646.ttf'; + + const MICROSOFT_SANS_SERIF = 'micross.ttf'; + + const PALATINO_LINOTYPE = 'pala.ttf'; + const PALATINO_LINOTYPE_BOLD = 'palab.ttf'; + const PALATINO_LINOTYPE_ITALIC = 'palai.ttf'; + const PALATINO_LINOTYPE_BOLD_ITALIC = 'palabi.ttf'; + + const SYMBOL = 'symbol.ttf'; + + const TAHOMA = 'tahoma.ttf'; + const TAHOMA_BOLD = 'tahomabd.ttf'; + + const TIMES_NEW_ROMAN = 'times.ttf'; + const TIMES_NEW_ROMAN_BOLD = 'timesbd.ttf'; + const TIMES_NEW_ROMAN_ITALIC = 'timesi.ttf'; + const TIMES_NEW_ROMAN_BOLD_ITALIC = 'timesbi.ttf'; + + const TREBUCHET_MS = 'trebuc.ttf'; + const TREBUCHET_MS_BOLD = 'trebucbd.ttf'; + const TREBUCHET_MS_ITALIC = 'trebucit.ttf'; + const TREBUCHET_MS_BOLD_ITALIC = 'trebucbi.ttf'; + + const VERDANA = 'verdana.ttf'; + const VERDANA_BOLD = 'verdanab.ttf'; + const VERDANA_ITALIC = 'verdanai.ttf'; + const VERDANA_BOLD_ITALIC = 'verdanaz.ttf'; + + /** + * AutoSize method + * + * @var string + */ + private static $autoSizeMethod = self::AUTOSIZE_METHOD_APPROX; + + /** + * Path to folder containing TrueType font .ttf files + * + * @var string + */ + private static $trueTypeFontPath = null; + + /** + * How wide is a default column for a given default font and size? + * Empirical data found by inspecting real Excel files and reading off the pixel width + * in Microsoft Office Excel 2007. + * + * @var array + */ + public static $defaultColumnWidths = array( + 'Arial' => array( + 1 => array('px' => 24, 'width' => 12.00000000), + 2 => array('px' => 24, 'width' => 12.00000000), + 3 => array('px' => 32, 'width' => 10.66406250), + 4 => array('px' => 32, 'width' => 10.66406250), + 5 => array('px' => 40, 'width' => 10.00000000), + 6 => array('px' => 48, 'width' => 9.59765625), + 7 => array('px' => 48, 'width' => 9.59765625), + 8 => array('px' => 56, 'width' => 9.33203125), + 9 => array('px' => 64, 'width' => 9.14062500), + 10 => array('px' => 64, 'width' => 9.14062500), + ), + 'Calibri' => array( + 1 => array('px' => 24, 'width' => 12.00000000), + 2 => array('px' => 24, 'width' => 12.00000000), + 3 => array('px' => 32, 'width' => 10.66406250), + 4 => array('px' => 32, 'width' => 10.66406250), + 5 => array('px' => 40, 'width' => 10.00000000), + 6 => array('px' => 48, 'width' => 9.59765625), + 7 => array('px' => 48, 'width' => 9.59765625), + 8 => array('px' => 56, 'width' => 9.33203125), + 9 => array('px' => 56, 'width' => 9.33203125), + 10 => array('px' => 64, 'width' => 9.14062500), + 11 => array('px' => 64, 'width' => 9.14062500), + ), + 'Verdana' => array( + 1 => array('px' => 24, 'width' => 12.00000000), + 2 => array('px' => 24, 'width' => 12.00000000), + 3 => array('px' => 32, 'width' => 10.66406250), + 4 => array('px' => 32, 'width' => 10.66406250), + 5 => array('px' => 40, 'width' => 10.00000000), + 6 => array('px' => 48, 'width' => 9.59765625), + 7 => array('px' => 48, 'width' => 9.59765625), + 8 => array('px' => 64, 'width' => 9.14062500), + 9 => array('px' => 72, 'width' => 9.00000000), + 10 => array('px' => 72, 'width' => 9.00000000), + ), + ); + + /** + * Set autoSize method + * + * @param string $pValue + * @return boolean Success or failure + */ + public static function setAutoSizeMethod($pValue = self::AUTOSIZE_METHOD_APPROX) + { + if (!in_array($pValue, self::$autoSizeMethods)) { + return false; + } + self::$autoSizeMethod = $pValue; + + return true; + } + + /** + * Get autoSize method + * + * @return string + */ + public static function getAutoSizeMethod() + { + return self::$autoSizeMethod; + } + + /** + * Set the path to the folder containing .ttf files. There should be a trailing slash. + * Typical locations on variout some platforms: + * <ul> + * <li>C:/Windows/Fonts/</li> + * <li>/usr/share/fonts/truetype/</li> + * <li>~/.fonts/</li> + * </ul> + * + * @param string $pValue + */ + public static function setTrueTypeFontPath($pValue = '') + { + self::$trueTypeFontPath = $pValue; + } + + /** + * Get the path to the folder containing .ttf files. + * + * @return string + */ + public static function getTrueTypeFontPath() + { + return self::$trueTypeFontPath; + } + + /** + * Calculate an (approximate) OpenXML column width, based on font size and text contained + * + * @param PHPExcel_Style_Font $font Font object + * @param PHPExcel_RichText|string $cellText Text to calculate width + * @param integer $rotation Rotation angle + * @param PHPExcel_Style_Font|NULL $defaultFont Font object + * @return integer Column width + */ + public static function calculateColumnWidth(PHPExcel_Style_Font $font, $cellText = '', $rotation = 0, PHPExcel_Style_Font $defaultFont = null) + { + // If it is rich text, use plain text + if ($cellText instanceof PHPExcel_RichText) { + $cellText = $cellText->getPlainText(); + } + + // Special case if there are one or more newline characters ("\n") + if (strpos($cellText, "\n") !== false) { + $lineTexts = explode("\n", $cellText); + $lineWidths = array(); + foreach ($lineTexts as $lineText) { + $lineWidths[] = self::calculateColumnWidth($font, $lineText, $rotation = 0, $defaultFont); + } + return max($lineWidths); // width of longest line in cell + } + + // Try to get the exact text width in pixels + $approximate = self::$autoSizeMethod == self::AUTOSIZE_METHOD_APPROX; + if (!$approximate) { + $columnWidthAdjust = ceil(self::getTextWidthPixelsExact('n', $font, 0) * 1.07); + try { + // Width of text in pixels excl. padding + // and addition because Excel adds some padding, just use approx width of 'n' glyph + $columnWidth = self::getTextWidthPixelsExact($cellText, $font, $rotation) + $columnWidthAdjust; + } catch (PHPExcel_Exception $e) { + $approximate = true; + } + } + + if ($approximate) { + $columnWidthAdjust = self::getTextWidthPixelsApprox('n', $font, 0); + // Width of text in pixels excl. padding, approximation + // and addition because Excel adds some padding, just use approx width of 'n' glyph + $columnWidth = self::getTextWidthPixelsApprox($cellText, $font, $rotation) + $columnWidthAdjust; + } + + // Convert from pixel width to column width + $columnWidth = PHPExcel_Shared_Drawing::pixelsToCellDimension($columnWidth, $defaultFont); + + // Return + return round($columnWidth, 6); + } + + /** + * Get GD text width in pixels for a string of text in a certain font at a certain rotation angle + * + * @param string $text + * @param PHPExcel_Style_Font + * @param int $rotation + * @return int + * @throws PHPExcel_Exception + */ + public static function getTextWidthPixelsExact($text, PHPExcel_Style_Font $font, $rotation = 0) + { + if (!function_exists('imagettfbbox')) { + throw new PHPExcel_Exception('GD library needs to be enabled'); + } + + // font size should really be supplied in pixels in GD2, + // but since GD2 seems to assume 72dpi, pixels and points are the same + $fontFile = self::getTrueTypeFontFileFromFont($font); + $textBox = imagettfbbox($font->getSize(), $rotation, $fontFile, $text); + + // Get corners positions + $lowerLeftCornerX = $textBox[0]; +// $lowerLeftCornerY = $textBox[1]; + $lowerRightCornerX = $textBox[2]; +// $lowerRightCornerY = $textBox[3]; + $upperRightCornerX = $textBox[4]; +// $upperRightCornerY = $textBox[5]; + $upperLeftCornerX = $textBox[6]; +// $upperLeftCornerY = $textBox[7]; + + // Consider the rotation when calculating the width + $textWidth = max($lowerRightCornerX - $upperLeftCornerX, $upperRightCornerX - $lowerLeftCornerX); + + return $textWidth; + } + + /** + * Get approximate width in pixels for a string of text in a certain font at a certain rotation angle + * + * @param string $columnText + * @param PHPExcel_Style_Font $font + * @param int $rotation + * @return int Text width in pixels (no padding added) + */ + public static function getTextWidthPixelsApprox($columnText, PHPExcel_Style_Font $font = null, $rotation = 0) + { + $fontName = $font->getName(); + $fontSize = $font->getSize(); + + // Calculate column width in pixels. We assume fixed glyph width. Result varies with font name and size. + switch ($fontName) { + case 'Calibri': + // value 8.26 was found via interpolation by inspecting real Excel files with Calibri 11 font. + $columnWidth = (int) (8.26 * PHPExcel_Shared_String::CountCharacters($columnText)); + $columnWidth = $columnWidth * $fontSize / 11; // extrapolate from font size + break; + + case 'Arial': + // value 7 was found via interpolation by inspecting real Excel files with Arial 10 font. +// $columnWidth = (int) (7 * PHPExcel_Shared_String::CountCharacters($columnText)); + // value 8 was set because of experience in different exports at Arial 10 font. + $columnWidth = (int) (8 * PHPExcel_Shared_String::CountCharacters($columnText)); + $columnWidth = $columnWidth * $fontSize / 10; // extrapolate from font size + break; + + case 'Verdana': + // value 8 was found via interpolation by inspecting real Excel files with Verdana 10 font. + $columnWidth = (int) (8 * PHPExcel_Shared_String::CountCharacters($columnText)); + $columnWidth = $columnWidth * $fontSize / 10; // extrapolate from font size + break; + + default: + // just assume Calibri + $columnWidth = (int) (8.26 * PHPExcel_Shared_String::CountCharacters($columnText)); + $columnWidth = $columnWidth * $fontSize / 11; // extrapolate from font size + break; + } + + // Calculate approximate rotated column width + if ($rotation !== 0) { + if ($rotation == -165) { + // stacked text + $columnWidth = 4; // approximation + } else { + // rotated text + $columnWidth = $columnWidth * cos(deg2rad($rotation)) + + $fontSize * abs(sin(deg2rad($rotation))) / 5; // approximation + } + } + + // pixel width is an integer + return (int) $columnWidth; + } + + /** + * Calculate an (approximate) pixel size, based on a font points size + * + * @param int $fontSizeInPoints Font size (in points) + * @return int Font size (in pixels) + */ + public static function fontSizeToPixels($fontSizeInPoints = 11) + { + return (int) ((4 / 3) * $fontSizeInPoints); + } + + /** + * Calculate an (approximate) pixel size, based on inch size + * + * @param int $sizeInInch Font size (in inch) + * @return int Size (in pixels) + */ + public static function inchSizeToPixels($sizeInInch = 1) + { + return ($sizeInInch * 96); + } + + /** + * Calculate an (approximate) pixel size, based on centimeter size + * + * @param int $sizeInCm Font size (in centimeters) + * @return int Size (in pixels) + */ + public static function centimeterSizeToPixels($sizeInCm = 1) + { + return ($sizeInCm * 37.795275591); + } + + /** + * Returns the font path given the font + * + * @param PHPExcel_Style_Font + * @return string Path to TrueType font file + */ + public static function getTrueTypeFontFileFromFont($font) + { + if (!file_exists(self::$trueTypeFontPath) || !is_dir(self::$trueTypeFontPath)) { + throw new PHPExcel_Exception('Valid directory to TrueType Font files not specified'); + } + + $name = $font->getName(); + $bold = $font->getBold(); + $italic = $font->getItalic(); + + // Check if we can map font to true type font file + switch ($name) { + case 'Arial': + $fontFile = ( + $bold ? ($italic ? self::ARIAL_BOLD_ITALIC : self::ARIAL_BOLD) + : ($italic ? self::ARIAL_ITALIC : self::ARIAL) + ); + break; + case 'Calibri': + $fontFile = ( + $bold ? ($italic ? self::CALIBRI_BOLD_ITALIC : self::CALIBRI_BOLD) + : ($italic ? self::CALIBRI_ITALIC : self::CALIBRI) + ); + break; + case 'Courier New': + $fontFile = ( + $bold ? ($italic ? self::COURIER_NEW_BOLD_ITALIC : self::COURIER_NEW_BOLD) + : ($italic ? self::COURIER_NEW_ITALIC : self::COURIER_NEW) + ); + break; + case 'Comic Sans MS': + $fontFile = ( + $bold ? self::COMIC_SANS_MS_BOLD : self::COMIC_SANS_MS + ); + break; + case 'Georgia': + $fontFile = ( + $bold ? ($italic ? self::GEORGIA_BOLD_ITALIC : self::GEORGIA_BOLD) + : ($italic ? self::GEORGIA_ITALIC : self::GEORGIA) + ); + break; + case 'Impact': + $fontFile = self::IMPACT; + break; + case 'Liberation Sans': + $fontFile = ( + $bold ? ($italic ? self::LIBERATION_SANS_BOLD_ITALIC : self::LIBERATION_SANS_BOLD) + : ($italic ? self::LIBERATION_SANS_ITALIC : self::LIBERATION_SANS) + ); + break; + case 'Lucida Console': + $fontFile = self::LUCIDA_CONSOLE; + break; + case 'Lucida Sans Unicode': + $fontFile = self::LUCIDA_SANS_UNICODE; + break; + case 'Microsoft Sans Serif': + $fontFile = self::MICROSOFT_SANS_SERIF; + break; + case 'Palatino Linotype': + $fontFile = ( + $bold ? ($italic ? self::PALATINO_LINOTYPE_BOLD_ITALIC : self::PALATINO_LINOTYPE_BOLD) + : ($italic ? self::PALATINO_LINOTYPE_ITALIC : self::PALATINO_LINOTYPE) + ); + break; + case 'Symbol': + $fontFile = self::SYMBOL; + break; + case 'Tahoma': + $fontFile = ( + $bold ? self::TAHOMA_BOLD : self::TAHOMA + ); + break; + case 'Times New Roman': + $fontFile = ( + $bold ? ($italic ? self::TIMES_NEW_ROMAN_BOLD_ITALIC : self::TIMES_NEW_ROMAN_BOLD) + : ($italic ? self::TIMES_NEW_ROMAN_ITALIC : self::TIMES_NEW_ROMAN) + ); + break; + case 'Trebuchet MS': + $fontFile = ( + $bold ? ($italic ? self::TREBUCHET_MS_BOLD_ITALIC : self::TREBUCHET_MS_BOLD) + : ($italic ? self::TREBUCHET_MS_ITALIC : self::TREBUCHET_MS) + ); + break; + case 'Verdana': + $fontFile = ( + $bold ? ($italic ? self::VERDANA_BOLD_ITALIC : self::VERDANA_BOLD) + : ($italic ? self::VERDANA_ITALIC : self::VERDANA) + ); + break; + default: + throw new PHPExcel_Exception('Unknown font name "'. $name .'". Cannot map to TrueType font file'); + break; + } + + $fontFile = self::$trueTypeFontPath . $fontFile; + + // Check if file actually exists + if (!file_exists($fontFile)) { + throw new PHPExcel_Exception('TrueType Font file not found'); + } + + return $fontFile; + } + + /** + * Returns the associated charset for the font name. + * + * @param string $name Font name + * @return int Character set code + */ + public static function getCharsetFromFontName($name) + { + switch ($name) { + // Add more cases. Check FONT records in real Excel files. + case 'EucrosiaUPC': + return self::CHARSET_ANSI_THAI; + case 'Wingdings': + return self::CHARSET_SYMBOL; + case 'Wingdings 2': + return self::CHARSET_SYMBOL; + case 'Wingdings 3': + return self::CHARSET_SYMBOL; + default: + return self::CHARSET_ANSI_LATIN; + } + } + + /** + * Get the effective column width for columns without a column dimension or column with width -1 + * For example, for Calibri 11 this is 9.140625 (64 px) + * + * @param PHPExcel_Style_Font $font The workbooks default font + * @param boolean $pPixels true = return column width in pixels, false = return in OOXML units + * @return mixed Column width + */ + public static function getDefaultColumnWidthByFont(PHPExcel_Style_Font $font, $pPixels = false) + { + if (isset(self::$defaultColumnWidths[$font->getName()][$font->getSize()])) { + // Exact width can be determined + $columnWidth = $pPixels ? + self::$defaultColumnWidths[$font->getName()][$font->getSize()]['px'] + : self::$defaultColumnWidths[$font->getName()][$font->getSize()]['width']; + + } else { + // We don't have data for this particular font and size, use approximation by + // extrapolating from Calibri 11 + $columnWidth = $pPixels ? + self::$defaultColumnWidths['Calibri'][11]['px'] + : self::$defaultColumnWidths['Calibri'][11]['width']; + $columnWidth = $columnWidth * $font->getSize() / 11; + + // Round pixels to closest integer + if ($pPixels) { + $columnWidth = (int) round($columnWidth); + } + } + + return $columnWidth; + } + + /** + * Get the effective row height for rows without a row dimension or rows with height -1 + * For example, for Calibri 11 this is 15 points + * + * @param PHPExcel_Style_Font $font The workbooks default font + * @return float Row height in points + */ + public static function getDefaultRowHeightByFont(PHPExcel_Style_Font $font) + { + switch ($font->getName()) { + case 'Arial': + switch ($font->getSize()) { + case 10: + // inspection of Arial 10 workbook says 12.75pt ~17px + $rowHeight = 12.75; + break; + case 9: + // inspection of Arial 9 workbook says 12.00pt ~16px + $rowHeight = 12; + break; + case 8: + // inspection of Arial 8 workbook says 11.25pt ~15px + $rowHeight = 11.25; + break; + case 7: + // inspection of Arial 7 workbook says 9.00pt ~12px + $rowHeight = 9; + break; + case 6: + case 5: + // inspection of Arial 5,6 workbook says 8.25pt ~11px + $rowHeight = 8.25; + break; + case 4: + // inspection of Arial 4 workbook says 6.75pt ~9px + $rowHeight = 6.75; + break; + case 3: + // inspection of Arial 3 workbook says 6.00pt ~8px + $rowHeight = 6; + break; + case 2: + case 1: + // inspection of Arial 1,2 workbook says 5.25pt ~7px + $rowHeight = 5.25; + break; + default: + // use Arial 10 workbook as an approximation, extrapolation + $rowHeight = 12.75 * $font->getSize() / 10; + break; + } + break; + + case 'Calibri': + switch ($font->getSize()) { + case 11: + // inspection of Calibri 11 workbook says 15.00pt ~20px + $rowHeight = 15; + break; + case 10: + // inspection of Calibri 10 workbook says 12.75pt ~17px + $rowHeight = 12.75; + break; + case 9: + // inspection of Calibri 9 workbook says 12.00pt ~16px + $rowHeight = 12; + break; + case 8: + // inspection of Calibri 8 workbook says 11.25pt ~15px + $rowHeight = 11.25; + break; + case 7: + // inspection of Calibri 7 workbook says 9.00pt ~12px + $rowHeight = 9; + break; + case 6: + case 5: + // inspection of Calibri 5,6 workbook says 8.25pt ~11px + $rowHeight = 8.25; + break; + case 4: + // inspection of Calibri 4 workbook says 6.75pt ~9px + $rowHeight = 6.75; + break; + case 3: + // inspection of Calibri 3 workbook says 6.00pt ~8px + $rowHeight = 6.00; + break; + case 2: + case 1: + // inspection of Calibri 1,2 workbook says 5.25pt ~7px + $rowHeight = 5.25; + break; + default: + // use Calibri 11 workbook as an approximation, extrapolation + $rowHeight = 15 * $font->getSize() / 11; + break; + } + break; + + case 'Verdana': + switch ($font->getSize()) { + case 10: + // inspection of Verdana 10 workbook says 12.75pt ~17px + $rowHeight = 12.75; + break; + case 9: + // inspection of Verdana 9 workbook says 11.25pt ~15px + $rowHeight = 11.25; + break; + case 8: + // inspection of Verdana 8 workbook says 10.50pt ~14px + $rowHeight = 10.50; + break; + case 7: + // inspection of Verdana 7 workbook says 9.00pt ~12px + $rowHeight = 9.00; + break; + case 6: + case 5: + // inspection of Verdana 5,6 workbook says 8.25pt ~11px + $rowHeight = 8.25; + break; + case 4: + // inspection of Verdana 4 workbook says 6.75pt ~9px + $rowHeight = 6.75; + break; + case 3: + // inspection of Verdana 3 workbook says 6.00pt ~8px + $rowHeight = 6; + break; + case 2: + case 1: + // inspection of Verdana 1,2 workbook says 5.25pt ~7px + $rowHeight = 5.25; + break; + default: + // use Verdana 10 workbook as an approximation, extrapolation + $rowHeight = 12.75 * $font->getSize() / 10; + break; + } + break; + default: + // just use Calibri as an approximation + $rowHeight = 15 * $font->getSize() / 11; + break; + } + + return $rowHeight; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/CHANGELOG.TXT b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/CHANGELOG.TXT new file mode 100644 index 0000000..1c18a5d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/CHANGELOG.TXT @@ -0,0 +1,16 @@ +Mar 1, 2005 11:15 AST by PM + ++ For consistency, renamed Math.php to Maths.java, utils to util, + tests to test, docs to doc - + ++ Removed conditional logic from top of Matrix class. + ++ Switched to using hypo function in Maths.php for all php-hypot calls. + NOTE TO SELF: Need to make sure that all decompositions have been + switched over to using the bundled hypo. + +Feb 25, 2005 at 10:00 AST by PM + ++ Recommend using simpler Error.php instead of JAMA_Error.php but + can be persuaded otherwise. + diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/CholeskyDecomposition.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/CholeskyDecomposition.php new file mode 100644 index 0000000..d68109b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/CholeskyDecomposition.php @@ -0,0 +1,148 @@ +<?php +/** + * @package JAMA + * + * Cholesky decomposition class + * + * For a symmetric, positive definite matrix A, the Cholesky decomposition + * is an lower triangular matrix L so that A = L*L'. + * + * If the matrix is not symmetric or positive definite, the constructor + * returns a partial decomposition and sets an internal flag that may + * be queried by the isSPD() method. + * + * @author Paul Meagher + * @author Michael Bommarito + * @version 1.2 + */ +class CholeskyDecomposition +{ + /** + * Decomposition storage + * @var array + * @access private + */ + private $L = array(); + + /** + * Matrix row and column dimension + * @var int + * @access private + */ + private $m; + + /** + * Symmetric positive definite flag + * @var boolean + * @access private + */ + private $isspd = true; + + /** + * CholeskyDecomposition + * + * Class constructor - decomposes symmetric positive definite matrix + * @param mixed Matrix square symmetric positive definite matrix + */ + public function __construct($A = null) + { + if ($A instanceof Matrix) { + $this->L = $A->getArray(); + $this->m = $A->getRowDimension(); + + for ($i = 0; $i < $this->m; ++$i) { + for ($j = $i; $j < $this->m; ++$j) { + for ($sum = $this->L[$i][$j], $k = $i - 1; $k >= 0; --$k) { + $sum -= $this->L[$i][$k] * $this->L[$j][$k]; + } + if ($i == $j) { + if ($sum >= 0) { + $this->L[$i][$i] = sqrt($sum); + } else { + $this->isspd = false; + } + } else { + if ($this->L[$i][$i] != 0) { + $this->L[$j][$i] = $sum / $this->L[$i][$i]; + } + } + } + + for ($k = $i+1; $k < $this->m; ++$k) { + $this->L[$i][$k] = 0.0; + } + } + } else { + throw new PHPExcel_Calculation_Exception(JAMAError(ARGUMENT_TYPE_EXCEPTION)); + } + } // function __construct() + + /** + * Is the matrix symmetric and positive definite? + * + * @return boolean + */ + public function isSPD() + { + return $this->isspd; + } // function isSPD() + + /** + * getL + * + * Return triangular factor. + * @return Matrix Lower triangular matrix + */ + public function getL() + { + return new Matrix($this->L); + } // function getL() + + /** + * Solve A*X = B + * + * @param $B Row-equal matrix + * @return Matrix L * L' * X = B + */ + public function solve($B = null) + { + if ($B instanceof Matrix) { + if ($B->getRowDimension() == $this->m) { + if ($this->isspd) { + $X = $B->getArrayCopy(); + $nx = $B->getColumnDimension(); + + for ($k = 0; $k < $this->m; ++$k) { + for ($i = $k + 1; $i < $this->m; ++$i) { + for ($j = 0; $j < $nx; ++$j) { + $X[$i][$j] -= $X[$k][$j] * $this->L[$i][$k]; + } + } + for ($j = 0; $j < $nx; ++$j) { + $X[$k][$j] /= $this->L[$k][$k]; + } + } + + for ($k = $this->m - 1; $k >= 0; --$k) { + for ($j = 0; $j < $nx; ++$j) { + $X[$k][$j] /= $this->L[$k][$k]; + } + for ($i = 0; $i < $k; ++$i) { + for ($j = 0; $j < $nx; ++$j) { + $X[$i][$j] -= $X[$k][$j] * $this->L[$k][$i]; + } + } + } + + return new Matrix($X, $this->m, $nx); + } else { + throw new PHPExcel_Calculation_Exception(JAMAError(MatrixSPDException)); + } + } else { + throw new PHPExcel_Calculation_Exception(JAMAError(MATRIX_DIMENSION_EXCEPTION)); + } + } else { + throw new PHPExcel_Calculation_Exception(JAMAError(ARGUMENT_TYPE_EXCEPTION)); + } + } // function solve() +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php new file mode 100644 index 0000000..d4ae397 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php @@ -0,0 +1,864 @@ +<?php +/** + * @package JAMA + * + * Class to obtain eigenvalues and eigenvectors of a real matrix. + * + * If A is symmetric, then A = V*D*V' where the eigenvalue matrix D + * is diagonal and the eigenvector matrix V is orthogonal (i.e. + * A = V.times(D.times(V.transpose())) and V.times(V.transpose()) + * equals the identity matrix). + * + * If A is not symmetric, then the eigenvalue matrix D is block diagonal + * with the real eigenvalues in 1-by-1 blocks and any complex eigenvalues, + * lambda + i*mu, in 2-by-2 blocks, [lambda, mu; -mu, lambda]. The + * columns of V represent the eigenvectors in the sense that A*V = V*D, + * i.e. A.times(V) equals V.times(D). The matrix V may be badly + * conditioned, or even singular, so the validity of the equation + * A = V*D*inverse(V) depends upon V.cond(). + * + * @author Paul Meagher + * @license PHP v3.0 + * @version 1.1 + */ +class EigenvalueDecomposition +{ + /** + * Row and column dimension (square matrix). + * @var int + */ + private $n; + + /** + * Internal symmetry flag. + * @var int + */ + private $issymmetric; + + /** + * Arrays for internal storage of eigenvalues. + * @var array + */ + private $d = array(); + private $e = array(); + + /** + * Array for internal storage of eigenvectors. + * @var array + */ + private $V = array(); + + /** + * Array for internal storage of nonsymmetric Hessenberg form. + * @var array + */ + private $H = array(); + + /** + * Working storage for nonsymmetric algorithm. + * @var array + */ + private $ort; + + /** + * Used for complex scalar division. + * @var float + */ + private $cdivr; + private $cdivi; + + /** + * Symmetric Householder reduction to tridiagonal form. + * + * @access private + */ + private function tred2() + { + // This is derived from the Algol procedures tred2 by + // Bowdler, Martin, Reinsch, and Wilkinson, Handbook for + // Auto. Comp., Vol.ii-Linear Algebra, and the corresponding + // Fortran subroutine in EISPACK. + $this->d = $this->V[$this->n-1]; + // Householder reduction to tridiagonal form. + for ($i = $this->n-1; $i > 0; --$i) { + $i_ = $i -1; + // Scale to avoid under/overflow. + $h = $scale = 0.0; + $scale += array_sum(array_map(abs, $this->d)); + if ($scale == 0.0) { + $this->e[$i] = $this->d[$i_]; + $this->d = array_slice($this->V[$i_], 0, $i_); + for ($j = 0; $j < $i; ++$j) { + $this->V[$j][$i] = $this->V[$i][$j] = 0.0; + } + } else { + // Generate Householder vector. + for ($k = 0; $k < $i; ++$k) { + $this->d[$k] /= $scale; + $h += pow($this->d[$k], 2); + } + $f = $this->d[$i_]; + $g = sqrt($h); + if ($f > 0) { + $g = -$g; + } + $this->e[$i] = $scale * $g; + $h = $h - $f * $g; + $this->d[$i_] = $f - $g; + for ($j = 0; $j < $i; ++$j) { + $this->e[$j] = 0.0; + } + // Apply similarity transformation to remaining columns. + for ($j = 0; $j < $i; ++$j) { + $f = $this->d[$j]; + $this->V[$j][$i] = $f; + $g = $this->e[$j] + $this->V[$j][$j] * $f; + for ($k = $j+1; $k <= $i_; ++$k) { + $g += $this->V[$k][$j] * $this->d[$k]; + $this->e[$k] += $this->V[$k][$j] * $f; + } + $this->e[$j] = $g; + } + $f = 0.0; + for ($j = 0; $j < $i; ++$j) { + $this->e[$j] /= $h; + $f += $this->e[$j] * $this->d[$j]; + } + $hh = $f / (2 * $h); + for ($j=0; $j < $i; ++$j) { + $this->e[$j] -= $hh * $this->d[$j]; + } + for ($j = 0; $j < $i; ++$j) { + $f = $this->d[$j]; + $g = $this->e[$j]; + for ($k = $j; $k <= $i_; ++$k) { + $this->V[$k][$j] -= ($f * $this->e[$k] + $g * $this->d[$k]); + } + $this->d[$j] = $this->V[$i-1][$j]; + $this->V[$i][$j] = 0.0; + } + } + $this->d[$i] = $h; + } + + // Accumulate transformations. + for ($i = 0; $i < $this->n-1; ++$i) { + $this->V[$this->n-1][$i] = $this->V[$i][$i]; + $this->V[$i][$i] = 1.0; + $h = $this->d[$i+1]; + if ($h != 0.0) { + for ($k = 0; $k <= $i; ++$k) { + $this->d[$k] = $this->V[$k][$i+1] / $h; + } + for ($j = 0; $j <= $i; ++$j) { + $g = 0.0; + for ($k = 0; $k <= $i; ++$k) { + $g += $this->V[$k][$i+1] * $this->V[$k][$j]; + } + for ($k = 0; $k <= $i; ++$k) { + $this->V[$k][$j] -= $g * $this->d[$k]; + } + } + } + for ($k = 0; $k <= $i; ++$k) { + $this->V[$k][$i+1] = 0.0; + } + } + + $this->d = $this->V[$this->n-1]; + $this->V[$this->n-1] = array_fill(0, $j, 0.0); + $this->V[$this->n-1][$this->n-1] = 1.0; + $this->e[0] = 0.0; + } + + /** + * Symmetric tridiagonal QL algorithm. + * + * This is derived from the Algol procedures tql2, by + * Bowdler, Martin, Reinsch, and Wilkinson, Handbook for + * Auto. Comp., Vol.ii-Linear Algebra, and the corresponding + * Fortran subroutine in EISPACK. + * + * @access private + */ + private function tql2() + { + for ($i = 1; $i < $this->n; ++$i) { + $this->e[$i-1] = $this->e[$i]; + } + $this->e[$this->n-1] = 0.0; + $f = 0.0; + $tst1 = 0.0; + $eps = pow(2.0, -52.0); + + for ($l = 0; $l < $this->n; ++$l) { + // Find small subdiagonal element + $tst1 = max($tst1, abs($this->d[$l]) + abs($this->e[$l])); + $m = $l; + while ($m < $this->n) { + if (abs($this->e[$m]) <= $eps * $tst1) { + break; + } + ++$m; + } + // If m == l, $this->d[l] is an eigenvalue, + // otherwise, iterate. + if ($m > $l) { + $iter = 0; + do { + // Could check iteration count here. + $iter += 1; + // Compute implicit shift + $g = $this->d[$l]; + $p = ($this->d[$l+1] - $g) / (2.0 * $this->e[$l]); + $r = hypo($p, 1.0); + if ($p < 0) { + $r *= -1; + } + $this->d[$l] = $this->e[$l] / ($p + $r); + $this->d[$l+1] = $this->e[$l] * ($p + $r); + $dl1 = $this->d[$l+1]; + $h = $g - $this->d[$l]; + for ($i = $l + 2; $i < $this->n; ++$i) { + $this->d[$i] -= $h; + } + $f += $h; + // Implicit QL transformation. + $p = $this->d[$m]; + $c = 1.0; + $c2 = $c3 = $c; + $el1 = $this->e[$l + 1]; + $s = $s2 = 0.0; + for ($i = $m-1; $i >= $l; --$i) { + $c3 = $c2; + $c2 = $c; + $s2 = $s; + $g = $c * $this->e[$i]; + $h = $c * $p; + $r = hypo($p, $this->e[$i]); + $this->e[$i+1] = $s * $r; + $s = $this->e[$i] / $r; + $c = $p / $r; + $p = $c * $this->d[$i] - $s * $g; + $this->d[$i+1] = $h + $s * ($c * $g + $s * $this->d[$i]); + // Accumulate transformation. + for ($k = 0; $k < $this->n; ++$k) { + $h = $this->V[$k][$i+1]; + $this->V[$k][$i+1] = $s * $this->V[$k][$i] + $c * $h; + $this->V[$k][$i] = $c * $this->V[$k][$i] - $s * $h; + } + } + $p = -$s * $s2 * $c3 * $el1 * $this->e[$l] / $dl1; + $this->e[$l] = $s * $p; + $this->d[$l] = $c * $p; + // Check for convergence. + } while (abs($this->e[$l]) > $eps * $tst1); + } + $this->d[$l] = $this->d[$l] + $f; + $this->e[$l] = 0.0; + } + + // Sort eigenvalues and corresponding vectors. + for ($i = 0; $i < $this->n - 1; ++$i) { + $k = $i; + $p = $this->d[$i]; + for ($j = $i+1; $j < $this->n; ++$j) { + if ($this->d[$j] < $p) { + $k = $j; + $p = $this->d[$j]; + } + } + if ($k != $i) { + $this->d[$k] = $this->d[$i]; + $this->d[$i] = $p; + for ($j = 0; $j < $this->n; ++$j) { + $p = $this->V[$j][$i]; + $this->V[$j][$i] = $this->V[$j][$k]; + $this->V[$j][$k] = $p; + } + } + } + } + + /** + * Nonsymmetric reduction to Hessenberg form. + * + * This is derived from the Algol procedures orthes and ortran, + * by Martin and Wilkinson, Handbook for Auto. Comp., + * Vol.ii-Linear Algebra, and the corresponding + * Fortran subroutines in EISPACK. + * + * @access private + */ + private function orthes() + { + $low = 0; + $high = $this->n-1; + + for ($m = $low+1; $m <= $high-1; ++$m) { + // Scale column. + $scale = 0.0; + for ($i = $m; $i <= $high; ++$i) { + $scale = $scale + abs($this->H[$i][$m-1]); + } + if ($scale != 0.0) { + // Compute Householder transformation. + $h = 0.0; + for ($i = $high; $i >= $m; --$i) { + $this->ort[$i] = $this->H[$i][$m-1] / $scale; + $h += $this->ort[$i] * $this->ort[$i]; + } + $g = sqrt($h); + if ($this->ort[$m] > 0) { + $g *= -1; + } + $h -= $this->ort[$m] * $g; + $this->ort[$m] -= $g; + // Apply Householder similarity transformation + // H = (I -u * u' / h) * H * (I -u * u') / h) + for ($j = $m; $j < $this->n; ++$j) { + $f = 0.0; + for ($i = $high; $i >= $m; --$i) { + $f += $this->ort[$i] * $this->H[$i][$j]; + } + $f /= $h; + for ($i = $m; $i <= $high; ++$i) { + $this->H[$i][$j] -= $f * $this->ort[$i]; + } + } + for ($i = 0; $i <= $high; ++$i) { + $f = 0.0; + for ($j = $high; $j >= $m; --$j) { + $f += $this->ort[$j] * $this->H[$i][$j]; + } + $f = $f / $h; + for ($j = $m; $j <= $high; ++$j) { + $this->H[$i][$j] -= $f * $this->ort[$j]; + } + } + $this->ort[$m] = $scale * $this->ort[$m]; + $this->H[$m][$m-1] = $scale * $g; + } + } + + // Accumulate transformations (Algol's ortran). + for ($i = 0; $i < $this->n; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $this->V[$i][$j] = ($i == $j ? 1.0 : 0.0); + } + } + for ($m = $high-1; $m >= $low+1; --$m) { + if ($this->H[$m][$m-1] != 0.0) { + for ($i = $m+1; $i <= $high; ++$i) { + $this->ort[$i] = $this->H[$i][$m-1]; + } + for ($j = $m; $j <= $high; ++$j) { + $g = 0.0; + for ($i = $m; $i <= $high; ++$i) { + $g += $this->ort[$i] * $this->V[$i][$j]; + } + // Double division avoids possible underflow + $g = ($g / $this->ort[$m]) / $this->H[$m][$m-1]; + for ($i = $m; $i <= $high; ++$i) { + $this->V[$i][$j] += $g * $this->ort[$i]; + } + } + } + } + } + + /** + * Performs complex division. + * + * @access private + */ + private function cdiv($xr, $xi, $yr, $yi) + { + if (abs($yr) > abs($yi)) { + $r = $yi / $yr; + $d = $yr + $r * $yi; + $this->cdivr = ($xr + $r * $xi) / $d; + $this->cdivi = ($xi - $r * $xr) / $d; + } else { + $r = $yr / $yi; + $d = $yi + $r * $yr; + $this->cdivr = ($r * $xr + $xi) / $d; + $this->cdivi = ($r * $xi - $xr) / $d; + } + } + + /** + * Nonsymmetric reduction from Hessenberg to real Schur form. + * + * Code is derived from the Algol procedure hqr2, + * by Martin and Wilkinson, Handbook for Auto. Comp., + * Vol.ii-Linear Algebra, and the corresponding + * Fortran subroutine in EISPACK. + * + * @access private + */ + private function hqr2() + { + // Initialize + $nn = $this->n; + $n = $nn - 1; + $low = 0; + $high = $nn - 1; + $eps = pow(2.0, -52.0); + $exshift = 0.0; + $p = $q = $r = $s = $z = 0; + // Store roots isolated by balanc and compute matrix norm + $norm = 0.0; + + for ($i = 0; $i < $nn; ++$i) { + if (($i < $low) or ($i > $high)) { + $this->d[$i] = $this->H[$i][$i]; + $this->e[$i] = 0.0; + } + for ($j = max($i-1, 0); $j < $nn; ++$j) { + $norm = $norm + abs($this->H[$i][$j]); + } + } + + // Outer loop over eigenvalue index + $iter = 0; + while ($n >= $low) { + // Look for single small sub-diagonal element + $l = $n; + while ($l > $low) { + $s = abs($this->H[$l-1][$l-1]) + abs($this->H[$l][$l]); + if ($s == 0.0) { + $s = $norm; + } + if (abs($this->H[$l][$l-1]) < $eps * $s) { + break; + } + --$l; + } + // Check for convergence + // One root found + if ($l == $n) { + $this->H[$n][$n] = $this->H[$n][$n] + $exshift; + $this->d[$n] = $this->H[$n][$n]; + $this->e[$n] = 0.0; + --$n; + $iter = 0; + // Two roots found + } elseif ($l == $n-1) { + $w = $this->H[$n][$n-1] * $this->H[$n-1][$n]; + $p = ($this->H[$n-1][$n-1] - $this->H[$n][$n]) / 2.0; + $q = $p * $p + $w; + $z = sqrt(abs($q)); + $this->H[$n][$n] = $this->H[$n][$n] + $exshift; + $this->H[$n-1][$n-1] = $this->H[$n-1][$n-1] + $exshift; + $x = $this->H[$n][$n]; + // Real pair + if ($q >= 0) { + if ($p >= 0) { + $z = $p + $z; + } else { + $z = $p - $z; + } + $this->d[$n-1] = $x + $z; + $this->d[$n] = $this->d[$n-1]; + if ($z != 0.0) { + $this->d[$n] = $x - $w / $z; + } + $this->e[$n-1] = 0.0; + $this->e[$n] = 0.0; + $x = $this->H[$n][$n-1]; + $s = abs($x) + abs($z); + $p = $x / $s; + $q = $z / $s; + $r = sqrt($p * $p + $q * $q); + $p = $p / $r; + $q = $q / $r; + // Row modification + for ($j = $n-1; $j < $nn; ++$j) { + $z = $this->H[$n-1][$j]; + $this->H[$n-1][$j] = $q * $z + $p * $this->H[$n][$j]; + $this->H[$n][$j] = $q * $this->H[$n][$j] - $p * $z; + } + // Column modification + for ($i = 0; $i <= $n; ++$i) { + $z = $this->H[$i][$n-1]; + $this->H[$i][$n-1] = $q * $z + $p * $this->H[$i][$n]; + $this->H[$i][$n] = $q * $this->H[$i][$n] - $p * $z; + } + // Accumulate transformations + for ($i = $low; $i <= $high; ++$i) { + $z = $this->V[$i][$n-1]; + $this->V[$i][$n-1] = $q * $z + $p * $this->V[$i][$n]; + $this->V[$i][$n] = $q * $this->V[$i][$n] - $p * $z; + } + // Complex pair + } else { + $this->d[$n-1] = $x + $p; + $this->d[$n] = $x + $p; + $this->e[$n-1] = $z; + $this->e[$n] = -$z; + } + $n = $n - 2; + $iter = 0; + // No convergence yet + } else { + // Form shift + $x = $this->H[$n][$n]; + $y = 0.0; + $w = 0.0; + if ($l < $n) { + $y = $this->H[$n-1][$n-1]; + $w = $this->H[$n][$n-1] * $this->H[$n-1][$n]; + } + // Wilkinson's original ad hoc shift + if ($iter == 10) { + $exshift += $x; + for ($i = $low; $i <= $n; ++$i) { + $this->H[$i][$i] -= $x; + } + $s = abs($this->H[$n][$n-1]) + abs($this->H[$n-1][$n-2]); + $x = $y = 0.75 * $s; + $w = -0.4375 * $s * $s; + } + // MATLAB's new ad hoc shift + if ($iter == 30) { + $s = ($y - $x) / 2.0; + $s = $s * $s + $w; + if ($s > 0) { + $s = sqrt($s); + if ($y < $x) { + $s = -$s; + } + $s = $x - $w / (($y - $x) / 2.0 + $s); + for ($i = $low; $i <= $n; ++$i) { + $this->H[$i][$i] -= $s; + } + $exshift += $s; + $x = $y = $w = 0.964; + } + } + // Could check iteration count here. + $iter = $iter + 1; + // Look for two consecutive small sub-diagonal elements + $m = $n - 2; + while ($m >= $l) { + $z = $this->H[$m][$m]; + $r = $x - $z; + $s = $y - $z; + $p = ($r * $s - $w) / $this->H[$m+1][$m] + $this->H[$m][$m+1]; + $q = $this->H[$m+1][$m+1] - $z - $r - $s; + $r = $this->H[$m+2][$m+1]; + $s = abs($p) + abs($q) + abs($r); + $p = $p / $s; + $q = $q / $s; + $r = $r / $s; + if ($m == $l) { + break; + } + if (abs($this->H[$m][$m-1]) * (abs($q) + abs($r)) < + $eps * (abs($p) * (abs($this->H[$m-1][$m-1]) + abs($z) + abs($this->H[$m+1][$m+1])))) { + break; + } + --$m; + } + for ($i = $m + 2; $i <= $n; ++$i) { + $this->H[$i][$i-2] = 0.0; + if ($i > $m+2) { + $this->H[$i][$i-3] = 0.0; + } + } + // Double QR step involving rows l:n and columns m:n + for ($k = $m; $k <= $n-1; ++$k) { + $notlast = ($k != $n-1); + if ($k != $m) { + $p = $this->H[$k][$k-1]; + $q = $this->H[$k+1][$k-1]; + $r = ($notlast ? $this->H[$k+2][$k-1] : 0.0); + $x = abs($p) + abs($q) + abs($r); + if ($x != 0.0) { + $p = $p / $x; + $q = $q / $x; + $r = $r / $x; + } + } + if ($x == 0.0) { + break; + } + $s = sqrt($p * $p + $q * $q + $r * $r); + if ($p < 0) { + $s = -$s; + } + if ($s != 0) { + if ($k != $m) { + $this->H[$k][$k-1] = -$s * $x; + } elseif ($l != $m) { + $this->H[$k][$k-1] = -$this->H[$k][$k-1]; + } + $p = $p + $s; + $x = $p / $s; + $y = $q / $s; + $z = $r / $s; + $q = $q / $p; + $r = $r / $p; + // Row modification + for ($j = $k; $j < $nn; ++$j) { + $p = $this->H[$k][$j] + $q * $this->H[$k+1][$j]; + if ($notlast) { + $p = $p + $r * $this->H[$k+2][$j]; + $this->H[$k+2][$j] = $this->H[$k+2][$j] - $p * $z; + } + $this->H[$k][$j] = $this->H[$k][$j] - $p * $x; + $this->H[$k+1][$j] = $this->H[$k+1][$j] - $p * $y; + } + // Column modification + for ($i = 0; $i <= min($n, $k+3); ++$i) { + $p = $x * $this->H[$i][$k] + $y * $this->H[$i][$k+1]; + if ($notlast) { + $p = $p + $z * $this->H[$i][$k+2]; + $this->H[$i][$k+2] = $this->H[$i][$k+2] - $p * $r; + } + $this->H[$i][$k] = $this->H[$i][$k] - $p; + $this->H[$i][$k+1] = $this->H[$i][$k+1] - $p * $q; + } + // Accumulate transformations + for ($i = $low; $i <= $high; ++$i) { + $p = $x * $this->V[$i][$k] + $y * $this->V[$i][$k+1]; + if ($notlast) { + $p = $p + $z * $this->V[$i][$k+2]; + $this->V[$i][$k+2] = $this->V[$i][$k+2] - $p * $r; + } + $this->V[$i][$k] = $this->V[$i][$k] - $p; + $this->V[$i][$k+1] = $this->V[$i][$k+1] - $p * $q; + } + } // ($s != 0) + } // k loop + } // check convergence + } // while ($n >= $low) + + // Backsubstitute to find vectors of upper triangular form + if ($norm == 0.0) { + return; + } + + for ($n = $nn-1; $n >= 0; --$n) { + $p = $this->d[$n]; + $q = $this->e[$n]; + // Real vector + if ($q == 0) { + $l = $n; + $this->H[$n][$n] = 1.0; + for ($i = $n-1; $i >= 0; --$i) { + $w = $this->H[$i][$i] - $p; + $r = 0.0; + for ($j = $l; $j <= $n; ++$j) { + $r = $r + $this->H[$i][$j] * $this->H[$j][$n]; + } + if ($this->e[$i] < 0.0) { + $z = $w; + $s = $r; + } else { + $l = $i; + if ($this->e[$i] == 0.0) { + if ($w != 0.0) { + $this->H[$i][$n] = -$r / $w; + } else { + $this->H[$i][$n] = -$r / ($eps * $norm); + } + // Solve real equations + } else { + $x = $this->H[$i][$i+1]; + $y = $this->H[$i+1][$i]; + $q = ($this->d[$i] - $p) * ($this->d[$i] - $p) + $this->e[$i] * $this->e[$i]; + $t = ($x * $s - $z * $r) / $q; + $this->H[$i][$n] = $t; + if (abs($x) > abs($z)) { + $this->H[$i+1][$n] = (-$r - $w * $t) / $x; + } else { + $this->H[$i+1][$n] = (-$s - $y * $t) / $z; + } + } + // Overflow control + $t = abs($this->H[$i][$n]); + if (($eps * $t) * $t > 1) { + for ($j = $i; $j <= $n; ++$j) { + $this->H[$j][$n] = $this->H[$j][$n] / $t; + } + } + } + } + // Complex vector + } elseif ($q < 0) { + $l = $n-1; + // Last vector component imaginary so matrix is triangular + if (abs($this->H[$n][$n-1]) > abs($this->H[$n-1][$n])) { + $this->H[$n-1][$n-1] = $q / $this->H[$n][$n-1]; + $this->H[$n-1][$n] = -($this->H[$n][$n] - $p) / $this->H[$n][$n-1]; + } else { + $this->cdiv(0.0, -$this->H[$n-1][$n], $this->H[$n-1][$n-1] - $p, $q); + $this->H[$n-1][$n-1] = $this->cdivr; + $this->H[$n-1][$n] = $this->cdivi; + } + $this->H[$n][$n-1] = 0.0; + $this->H[$n][$n] = 1.0; + for ($i = $n-2; $i >= 0; --$i) { + // double ra,sa,vr,vi; + $ra = 0.0; + $sa = 0.0; + for ($j = $l; $j <= $n; ++$j) { + $ra = $ra + $this->H[$i][$j] * $this->H[$j][$n-1]; + $sa = $sa + $this->H[$i][$j] * $this->H[$j][$n]; + } + $w = $this->H[$i][$i] - $p; + if ($this->e[$i] < 0.0) { + $z = $w; + $r = $ra; + $s = $sa; + } else { + $l = $i; + if ($this->e[$i] == 0) { + $this->cdiv(-$ra, -$sa, $w, $q); + $this->H[$i][$n-1] = $this->cdivr; + $this->H[$i][$n] = $this->cdivi; + } else { + // Solve complex equations + $x = $this->H[$i][$i+1]; + $y = $this->H[$i+1][$i]; + $vr = ($this->d[$i] - $p) * ($this->d[$i] - $p) + $this->e[$i] * $this->e[$i] - $q * $q; + $vi = ($this->d[$i] - $p) * 2.0 * $q; + if ($vr == 0.0 & $vi == 0.0) { + $vr = $eps * $norm * (abs($w) + abs($q) + abs($x) + abs($y) + abs($z)); + } + $this->cdiv($x * $r - $z * $ra + $q * $sa, $x * $s - $z * $sa - $q * $ra, $vr, $vi); + $this->H[$i][$n-1] = $this->cdivr; + $this->H[$i][$n] = $this->cdivi; + if (abs($x) > (abs($z) + abs($q))) { + $this->H[$i+1][$n-1] = (-$ra - $w * $this->H[$i][$n-1] + $q * $this->H[$i][$n]) / $x; + $this->H[$i+1][$n] = (-$sa - $w * $this->H[$i][$n] - $q * $this->H[$i][$n-1]) / $x; + } else { + $this->cdiv(-$r - $y * $this->H[$i][$n-1], -$s - $y * $this->H[$i][$n], $z, $q); + $this->H[$i+1][$n-1] = $this->cdivr; + $this->H[$i+1][$n] = $this->cdivi; + } + } + // Overflow control + $t = max(abs($this->H[$i][$n-1]), abs($this->H[$i][$n])); + if (($eps * $t) * $t > 1) { + for ($j = $i; $j <= $n; ++$j) { + $this->H[$j][$n-1] = $this->H[$j][$n-1] / $t; + $this->H[$j][$n] = $this->H[$j][$n] / $t; + } + } + } // end else + } // end for + } // end else for complex case + } // end for + + // Vectors of isolated roots + for ($i = 0; $i < $nn; ++$i) { + if ($i < $low | $i > $high) { + for ($j = $i; $j < $nn; ++$j) { + $this->V[$i][$j] = $this->H[$i][$j]; + } + } + } + + // Back transformation to get eigenvectors of original matrix + for ($j = $nn-1; $j >= $low; --$j) { + for ($i = $low; $i <= $high; ++$i) { + $z = 0.0; + for ($k = $low; $k <= min($j, $high); ++$k) { + $z = $z + $this->V[$i][$k] * $this->H[$k][$j]; + } + $this->V[$i][$j] = $z; + } + } + } // end hqr2 + + /** + * Constructor: Check for symmetry, then construct the eigenvalue decomposition + * + * @access public + * @param A Square matrix + * @return Structure to access D and V. + */ + public function __construct($Arg) + { + $this->A = $Arg->getArray(); + $this->n = $Arg->getColumnDimension(); + + $issymmetric = true; + for ($j = 0; ($j < $this->n) & $issymmetric; ++$j) { + for ($i = 0; ($i < $this->n) & $issymmetric; ++$i) { + $issymmetric = ($this->A[$i][$j] == $this->A[$j][$i]); + } + } + + if ($issymmetric) { + $this->V = $this->A; + // Tridiagonalize. + $this->tred2(); + // Diagonalize. + $this->tql2(); + } else { + $this->H = $this->A; + $this->ort = array(); + // Reduce to Hessenberg form. + $this->orthes(); + // Reduce Hessenberg to real Schur form. + $this->hqr2(); + } + } + + /** + * Return the eigenvector matrix + * + * @access public + * @return V + */ + public function getV() + { + return new Matrix($this->V, $this->n, $this->n); + } + + /** + * Return the real parts of the eigenvalues + * + * @access public + * @return real(diag(D)) + */ + public function getRealEigenvalues() + { + return $this->d; + } + + /** + * Return the imaginary parts of the eigenvalues + * + * @access public + * @return imag(diag(D)) + */ + public function getImagEigenvalues() + { + return $this->e; + } + + /** + * Return the block diagonal eigenvalue matrix + * + * @access public + * @return D + */ + public function getD() + { + for ($i = 0; $i < $this->n; ++$i) { + $D[$i] = array_fill(0, $this->n, 0.0); + $D[$i][$i] = $this->d[$i]; + if ($this->e[$i] == 0) { + continue; + } + $o = ($this->e[$i] > 0) ? $i + 1 : $i - 1; + $D[$i][$o] = $this->e[$i]; + } + return new Matrix($D); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/LUDecomposition.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/LUDecomposition.php new file mode 100644 index 0000000..2505d92 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/LUDecomposition.php @@ -0,0 +1,257 @@ +<?php +/** + * @package JAMA + * + * For an m-by-n matrix A with m >= n, the LU decomposition is an m-by-n + * unit lower triangular matrix L, an n-by-n upper triangular matrix U, + * and a permutation vector piv of length m so that A(piv,:) = L*U. + * If m < n, then L is m-by-m and U is m-by-n. + * + * The LU decompostion with pivoting always exists, even if the matrix is + * singular, so the constructor will never fail. The primary use of the + * LU decomposition is in the solution of square systems of simultaneous + * linear equations. This will fail if isNonsingular() returns false. + * + * @author Paul Meagher + * @author Bartosz Matosiuk + * @author Michael Bommarito + * @version 1.1 + * @license PHP v3.0 + */ +class PHPExcel_Shared_JAMA_LUDecomposition +{ + const MATRIX_SINGULAR_EXCEPTION = "Can only perform operation on singular matrix."; + const MATRIX_SQUARE_EXCEPTION = "Mismatched Row dimension"; + + /** + * Decomposition storage + * @var array + */ + private $LU = array(); + + /** + * Row dimension. + * @var int + */ + private $m; + + /** + * Column dimension. + * @var int + */ + private $n; + + /** + * Pivot sign. + * @var int + */ + private $pivsign; + + /** + * Internal storage of pivot vector. + * @var array + */ + private $piv = array(); + + /** + * LU Decomposition constructor. + * + * @param $A Rectangular matrix + * @return Structure to access L, U and piv. + */ + public function __construct($A) + { + if ($A instanceof PHPExcel_Shared_JAMA_Matrix) { + // Use a "left-looking", dot-product, Crout/Doolittle algorithm. + $this->LU = $A->getArray(); + $this->m = $A->getRowDimension(); + $this->n = $A->getColumnDimension(); + for ($i = 0; $i < $this->m; ++$i) { + $this->piv[$i] = $i; + } + $this->pivsign = 1; + $LUrowi = $LUcolj = array(); + + // Outer loop. + for ($j = 0; $j < $this->n; ++$j) { + // Make a copy of the j-th column to localize references. + for ($i = 0; $i < $this->m; ++$i) { + $LUcolj[$i] = &$this->LU[$i][$j]; + } + // Apply previous transformations. + for ($i = 0; $i < $this->m; ++$i) { + $LUrowi = $this->LU[$i]; + // Most of the time is spent in the following dot product. + $kmax = min($i, $j); + $s = 0.0; + for ($k = 0; $k < $kmax; ++$k) { + $s += $LUrowi[$k] * $LUcolj[$k]; + } + $LUrowi[$j] = $LUcolj[$i] -= $s; + } + // Find pivot and exchange if necessary. + $p = $j; + for ($i = $j+1; $i < $this->m; ++$i) { + if (abs($LUcolj[$i]) > abs($LUcolj[$p])) { + $p = $i; + } + } + if ($p != $j) { + for ($k = 0; $k < $this->n; ++$k) { + $t = $this->LU[$p][$k]; + $this->LU[$p][$k] = $this->LU[$j][$k]; + $this->LU[$j][$k] = $t; + } + $k = $this->piv[$p]; + $this->piv[$p] = $this->piv[$j]; + $this->piv[$j] = $k; + $this->pivsign = $this->pivsign * -1; + } + // Compute multipliers. + if (($j < $this->m) && ($this->LU[$j][$j] != 0.0)) { + for ($i = $j+1; $i < $this->m; ++$i) { + $this->LU[$i][$j] /= $this->LU[$j][$j]; + } + } + } + } else { + throw new PHPExcel_Calculation_Exception(PHPExcel_Shared_JAMA_Matrix::ARGUMENT_TYPE_EXCEPTION); + } + } // function __construct() + + /** + * Get lower triangular factor. + * + * @return array Lower triangular factor + */ + public function getL() + { + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + if ($i > $j) { + $L[$i][$j] = $this->LU[$i][$j]; + } elseif ($i == $j) { + $L[$i][$j] = 1.0; + } else { + $L[$i][$j] = 0.0; + } + } + } + return new PHPExcel_Shared_JAMA_Matrix($L); + } // function getL() + + /** + * Get upper triangular factor. + * + * @return array Upper triangular factor + */ + public function getU() + { + for ($i = 0; $i < $this->n; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + if ($i <= $j) { + $U[$i][$j] = $this->LU[$i][$j]; + } else { + $U[$i][$j] = 0.0; + } + } + } + return new PHPExcel_Shared_JAMA_Matrix($U); + } // function getU() + + /** + * Return pivot permutation vector. + * + * @return array Pivot vector + */ + public function getPivot() + { + return $this->piv; + } // function getPivot() + + /** + * Alias for getPivot + * + * @see getPivot + */ + public function getDoublePivot() + { + return $this->getPivot(); + } // function getDoublePivot() + + /** + * Is the matrix nonsingular? + * + * @return true if U, and hence A, is nonsingular. + */ + public function isNonsingular() + { + for ($j = 0; $j < $this->n; ++$j) { + if ($this->LU[$j][$j] == 0) { + return false; + } + } + return true; + } // function isNonsingular() + + /** + * Count determinants + * + * @return array d matrix deterninat + */ + public function det() + { + if ($this->m == $this->n) { + $d = $this->pivsign; + for ($j = 0; $j < $this->n; ++$j) { + $d *= $this->LU[$j][$j]; + } + return $d; + } else { + throw new PHPExcel_Calculation_Exception(PHPExcel_Shared_JAMA_Matrix::MATRIX_DIMENSION_EXCEPTION); + } + } // function det() + + /** + * Solve A*X = B + * + * @param $B A Matrix with as many rows as A and any number of columns. + * @return X so that L*U*X = B(piv,:) + * @PHPExcel_Calculation_Exception IllegalArgumentException Matrix row dimensions must agree. + * @PHPExcel_Calculation_Exception RuntimeException Matrix is singular. + */ + public function solve($B) + { + if ($B->getRowDimension() == $this->m) { + if ($this->isNonsingular()) { + // Copy right hand side with pivoting + $nx = $B->getColumnDimension(); + $X = $B->getMatrix($this->piv, 0, $nx-1); + // Solve L*Y = B(piv,:) + for ($k = 0; $k < $this->n; ++$k) { + for ($i = $k+1; $i < $this->n; ++$i) { + for ($j = 0; $j < $nx; ++$j) { + $X->A[$i][$j] -= $X->A[$k][$j] * $this->LU[$i][$k]; + } + } + } + // Solve U*X = Y; + for ($k = $this->n-1; $k >= 0; --$k) { + for ($j = 0; $j < $nx; ++$j) { + $X->A[$k][$j] /= $this->LU[$k][$k]; + } + for ($i = 0; $i < $k; ++$i) { + for ($j = 0; $j < $nx; ++$j) { + $X->A[$i][$j] -= $X->A[$k][$j] * $this->LU[$i][$k]; + } + } + } + return $X; + } else { + throw new PHPExcel_Calculation_Exception(self::MATRIX_SINGULAR_EXCEPTION); + } + } else { + throw new PHPExcel_Calculation_Exception(self::MATRIX_SQUARE_EXCEPTION); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/Matrix.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/Matrix.php new file mode 100644 index 0000000..82fb0fb --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/Matrix.php @@ -0,0 +1,1159 @@ +<?php +/** + * @package JAMA + */ + +/** PHPExcel root directory */ +if (!defined('PHPEXCEL_ROOT')) { + /** + * @ignore + */ + define('PHPEXCEL_ROOT', dirname(__FILE__) . '/../../../'); + require(PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php'); +} + + +/* + * Matrix class + * + * @author Paul Meagher + * @author Michael Bommarito + * @author Lukasz Karapuda + * @author Bartek Matosiuk + * @version 1.8 + * @license PHP v3.0 + * @see http://math.nist.gov/javanumerics/jama/ + */ +class PHPExcel_Shared_JAMA_Matrix +{ + const POLYMORPHIC_ARGUMENT_EXCEPTION = "Invalid argument pattern for polymorphic function."; + const ARGUMENT_TYPE_EXCEPTION = "Invalid argument type."; + const ARGUMENT_BOUNDS_EXCEPTION = "Invalid argument range."; + const MATRIX_DIMENSION_EXCEPTION = "Matrix dimensions are not equal."; + const ARRAY_LENGTH_EXCEPTION = "Array length must be a multiple of m."; + + /** + * Matrix storage + * + * @var array + * @access public + */ + public $A = array(); + + /** + * Matrix row dimension + * + * @var int + * @access private + */ + private $m; + + /** + * Matrix column dimension + * + * @var int + * @access private + */ + private $n; + + /** + * Polymorphic constructor + * + * As PHP has no support for polymorphic constructors, we hack our own sort of polymorphism using func_num_args, func_get_arg, and gettype. In essence, we're just implementing a simple RTTI filter and calling the appropriate constructor. + */ + public function __construct() + { + if (func_num_args() > 0) { + $args = func_get_args(); + $match = implode(",", array_map('gettype', $args)); + + switch ($match) { + //Rectangular matrix - m x n initialized from 2D array + case 'array': + $this->m = count($args[0]); + $this->n = count($args[0][0]); + $this->A = $args[0]; + break; + //Square matrix - n x n + case 'integer': + $this->m = $args[0]; + $this->n = $args[0]; + $this->A = array_fill(0, $this->m, array_fill(0, $this->n, 0)); + break; + //Rectangular matrix - m x n + case 'integer,integer': + $this->m = $args[0]; + $this->n = $args[1]; + $this->A = array_fill(0, $this->m, array_fill(0, $this->n, 0)); + break; + //Rectangular matrix - m x n initialized from packed array + case 'array,integer': + $this->m = $args[1]; + if ($this->m != 0) { + $this->n = count($args[0]) / $this->m; + } else { + $this->n = 0; + } + if (($this->m * $this->n) == count($args[0])) { + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $this->A[$i][$j] = $args[0][$i + $j * $this->m]; + } + } + } else { + throw new PHPExcel_Calculation_Exception(self::ARRAY_LENGTH_EXCEPTION); + } + break; + default: + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + break; + } + } else { + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + /** + * getArray + * + * @return array Matrix array + */ + public function getArray() + { + return $this->A; + } + + /** + * getRowDimension + * + * @return int Row dimension + */ + public function getRowDimension() + { + return $this->m; + } + + /** + * getColumnDimension + * + * @return int Column dimension + */ + public function getColumnDimension() + { + return $this->n; + } + + /** + * get + * + * Get the i,j-th element of the matrix. + * @param int $i Row position + * @param int $j Column position + * @return mixed Element (int/float/double) + */ + public function get($i = null, $j = null) + { + return $this->A[$i][$j]; + } + + /** + * getMatrix + * + * Get a submatrix + * @param int $i0 Initial row index + * @param int $iF Final row index + * @param int $j0 Initial column index + * @param int $jF Final column index + * @return Matrix Submatrix + */ + public function getMatrix() + { + if (func_num_args() > 0) { + $args = func_get_args(); + $match = implode(",", array_map('gettype', $args)); + + switch ($match) { + //A($i0...; $j0...) + case 'integer,integer': + list($i0, $j0) = $args; + if ($i0 >= 0) { + $m = $this->m - $i0; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_BOUNDS_EXCEPTION); + } + if ($j0 >= 0) { + $n = $this->n - $j0; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_BOUNDS_EXCEPTION); + } + $R = new PHPExcel_Shared_JAMA_Matrix($m, $n); + for ($i = $i0; $i < $this->m; ++$i) { + for ($j = $j0; $j < $this->n; ++$j) { + $R->set($i, $j, $this->A[$i][$j]); + } + } + return $R; + break; + //A($i0...$iF; $j0...$jF) + case 'integer,integer,integer,integer': + list($i0, $iF, $j0, $jF) = $args; + if (($iF > $i0) && ($this->m >= $iF) && ($i0 >= 0)) { + $m = $iF - $i0; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_BOUNDS_EXCEPTION); + } + if (($jF > $j0) && ($this->n >= $jF) && ($j0 >= 0)) { + $n = $jF - $j0; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_BOUNDS_EXCEPTION); + } + $R = new PHPExcel_Shared_JAMA_Matrix($m+1, $n+1); + for ($i = $i0; $i <= $iF; ++$i) { + for ($j = $j0; $j <= $jF; ++$j) { + $R->set($i - $i0, $j - $j0, $this->A[$i][$j]); + } + } + return $R; + break; + //$R = array of row indices; $C = array of column indices + case 'array,array': + list($RL, $CL) = $args; + if (count($RL) > 0) { + $m = count($RL); + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_BOUNDS_EXCEPTION); + } + if (count($CL) > 0) { + $n = count($CL); + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_BOUNDS_EXCEPTION); + } + $R = new PHPExcel_Shared_JAMA_Matrix($m, $n); + for ($i = 0; $i < $m; ++$i) { + for ($j = 0; $j < $n; ++$j) { + $R->set($i - $i0, $j - $j0, $this->A[$RL[$i]][$CL[$j]]); + } + } + return $R; + break; + //$RL = array of row indices; $CL = array of column indices + case 'array,array': + list($RL, $CL) = $args; + if (count($RL) > 0) { + $m = count($RL); + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_BOUNDS_EXCEPTION); + } + if (count($CL) > 0) { + $n = count($CL); + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_BOUNDS_EXCEPTION); + } + $R = new PHPExcel_Shared_JAMA_Matrix($m, $n); + for ($i = 0; $i < $m; ++$i) { + for ($j = 0; $j < $n; ++$j) { + $R->set($i, $j, $this->A[$RL[$i]][$CL[$j]]); + } + } + return $R; + break; + //A($i0...$iF); $CL = array of column indices + case 'integer,integer,array': + list($i0, $iF, $CL) = $args; + if (($iF > $i0) && ($this->m >= $iF) && ($i0 >= 0)) { + $m = $iF - $i0; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_BOUNDS_EXCEPTION); + } + if (count($CL) > 0) { + $n = count($CL); + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_BOUNDS_EXCEPTION); + } + $R = new PHPExcel_Shared_JAMA_Matrix($m, $n); + for ($i = $i0; $i < $iF; ++$i) { + for ($j = 0; $j < $n; ++$j) { + $R->set($i - $i0, $j, $this->A[$RL[$i]][$j]); + } + } + return $R; + break; + //$RL = array of row indices + case 'array,integer,integer': + list($RL, $j0, $jF) = $args; + if (count($RL) > 0) { + $m = count($RL); + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_BOUNDS_EXCEPTION); + } + if (($jF >= $j0) && ($this->n >= $jF) && ($j0 >= 0)) { + $n = $jF - $j0; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_BOUNDS_EXCEPTION); + } + $R = new PHPExcel_Shared_JAMA_Matrix($m, $n+1); + for ($i = 0; $i < $m; ++$i) { + for ($j = $j0; $j <= $jF; ++$j) { + $R->set($i, $j - $j0, $this->A[$RL[$i]][$j]); + } + } + return $R; + break; + default: + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + break; + } + } else { + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + /** + * checkMatrixDimensions + * + * Is matrix B the same size? + * @param Matrix $B Matrix B + * @return boolean + */ + public function checkMatrixDimensions($B = null) + { + if ($B instanceof PHPExcel_Shared_JAMA_Matrix) { + if (($this->m == $B->getRowDimension()) && ($this->n == $B->getColumnDimension())) { + return true; + } else { + throw new PHPExcel_Calculation_Exception(self::MATRIX_DIMENSION_EXCEPTION); + } + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_TYPE_EXCEPTION); + } + } // function checkMatrixDimensions() + + /** + * set + * + * Set the i,j-th element of the matrix. + * @param int $i Row position + * @param int $j Column position + * @param mixed $c Int/float/double value + * @return mixed Element (int/float/double) + */ + public function set($i = null, $j = null, $c = null) + { + // Optimized set version just has this + $this->A[$i][$j] = $c; + } // function set() + + /** + * identity + * + * Generate an identity matrix. + * @param int $m Row dimension + * @param int $n Column dimension + * @return Matrix Identity matrix + */ + public function identity($m = null, $n = null) + { + return $this->diagonal($m, $n, 1); + } + + /** + * diagonal + * + * Generate a diagonal matrix + * @param int $m Row dimension + * @param int $n Column dimension + * @param mixed $c Diagonal value + * @return Matrix Diagonal matrix + */ + public function diagonal($m = null, $n = null, $c = 1) + { + $R = new PHPExcel_Shared_JAMA_Matrix($m, $n); + for ($i = 0; $i < $m; ++$i) { + $R->set($i, $i, $c); + } + return $R; + } + + /** + * getMatrixByRow + * + * Get a submatrix by row index/range + * @param int $i0 Initial row index + * @param int $iF Final row index + * @return Matrix Submatrix + */ + public function getMatrixByRow($i0 = null, $iF = null) + { + if (is_int($i0)) { + if (is_int($iF)) { + return $this->getMatrix($i0, 0, $iF + 1, $this->n); + } else { + return $this->getMatrix($i0, 0, $i0 + 1, $this->n); + } + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_TYPE_EXCEPTION); + } + } + + /** + * getMatrixByCol + * + * Get a submatrix by column index/range + * @param int $i0 Initial column index + * @param int $iF Final column index + * @return Matrix Submatrix + */ + public function getMatrixByCol($j0 = null, $jF = null) + { + if (is_int($j0)) { + if (is_int($jF)) { + return $this->getMatrix(0, $j0, $this->m, $jF + 1); + } else { + return $this->getMatrix(0, $j0, $this->m, $j0 + 1); + } + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_TYPE_EXCEPTION); + } + } + + /** + * transpose + * + * Tranpose matrix + * @return Matrix Transposed matrix + */ + public function transpose() + { + $R = new PHPExcel_Shared_JAMA_Matrix($this->n, $this->m); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $R->set($j, $i, $this->A[$i][$j]); + } + } + return $R; + } // function transpose() + + /** + * trace + * + * Sum of diagonal elements + * @return float Sum of diagonal elements + */ + public function trace() + { + $s = 0; + $n = min($this->m, $this->n); + for ($i = 0; $i < $n; ++$i) { + $s += $this->A[$i][$i]; + } + return $s; + } + + /** + * uminus + * + * Unary minus matrix -A + * @return Matrix Unary minus matrix + */ + public function uminus() + { + } + + /** + * plus + * + * A + B + * @param mixed $B Matrix/Array + * @return Matrix Sum + */ + public function plus() + { + if (func_num_args() > 0) { + $args = func_get_args(); + $match = implode(",", array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof PHPExcel_Shared_JAMA_Matrix) { + $M = $args[0]; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_TYPE_EXCEPTION); + } + break; + case 'array': + $M = new PHPExcel_Shared_JAMA_Matrix($args[0]); + break; + default: + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $M->set($i, $j, $M->get($i, $j) + $this->A[$i][$j]); + } + } + return $M; + } else { + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + /** + * plusEquals + * + * A = A + B + * @param mixed $B Matrix/Array + * @return Matrix Sum + */ + public function plusEquals() + { + if (func_num_args() > 0) { + $args = func_get_args(); + $match = implode(",", array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof PHPExcel_Shared_JAMA_Matrix) { + $M = $args[0]; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_TYPE_EXCEPTION); + } + break; + case 'array': + $M = new PHPExcel_Shared_JAMA_Matrix($args[0]); + break; + default: + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $validValues = true; + $value = $M->get($i, $j); + if ((is_string($this->A[$i][$j])) && (strlen($this->A[$i][$j]) > 0) && (!is_numeric($this->A[$i][$j]))) { + $this->A[$i][$j] = trim($this->A[$i][$j], '"'); + $validValues &= PHPExcel_Shared_String::convertToNumberIfFraction($this->A[$i][$j]); + } + if ((is_string($value)) && (strlen($value) > 0) && (!is_numeric($value))) { + $value = trim($value, '"'); + $validValues &= PHPExcel_Shared_String::convertToNumberIfFraction($value); + } + if ($validValues) { + $this->A[$i][$j] += $value; + } else { + $this->A[$i][$j] = PHPExcel_Calculation_Functions::NaN(); + } + } + } + return $this; + } else { + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + /** + * minus + * + * A - B + * @param mixed $B Matrix/Array + * @return Matrix Sum + */ + public function minus() + { + if (func_num_args() > 0) { + $args = func_get_args(); + $match = implode(",", array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof PHPExcel_Shared_JAMA_Matrix) { + $M = $args[0]; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_TYPE_EXCEPTION); + } + break; + case 'array': + $M = new PHPExcel_Shared_JAMA_Matrix($args[0]); + break; + default: + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $M->set($i, $j, $M->get($i, $j) - $this->A[$i][$j]); + } + } + return $M; + } else { + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + /** + * minusEquals + * + * A = A - B + * @param mixed $B Matrix/Array + * @return Matrix Sum + */ + public function minusEquals() + { + if (func_num_args() > 0) { + $args = func_get_args(); + $match = implode(",", array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof PHPExcel_Shared_JAMA_Matrix) { + $M = $args[0]; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_TYPE_EXCEPTION); + } + break; + case 'array': + $M = new PHPExcel_Shared_JAMA_Matrix($args[0]); + break; + default: + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $validValues = true; + $value = $M->get($i, $j); + if ((is_string($this->A[$i][$j])) && (strlen($this->A[$i][$j]) > 0) && (!is_numeric($this->A[$i][$j]))) { + $this->A[$i][$j] = trim($this->A[$i][$j], '"'); + $validValues &= PHPExcel_Shared_String::convertToNumberIfFraction($this->A[$i][$j]); + } + if ((is_string($value)) && (strlen($value) > 0) && (!is_numeric($value))) { + $value = trim($value, '"'); + $validValues &= PHPExcel_Shared_String::convertToNumberIfFraction($value); + } + if ($validValues) { + $this->A[$i][$j] -= $value; + } else { + $this->A[$i][$j] = PHPExcel_Calculation_Functions::NaN(); + } + } + } + return $this; + } else { + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + /** + * arrayTimes + * + * Element-by-element multiplication + * Cij = Aij * Bij + * @param mixed $B Matrix/Array + * @return Matrix Matrix Cij + */ + public function arrayTimes() + { + if (func_num_args() > 0) { + $args = func_get_args(); + $match = implode(",", array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof PHPExcel_Shared_JAMA_Matrix) { + $M = $args[0]; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_TYPE_EXCEPTION); + } + break; + case 'array': + $M = new PHPExcel_Shared_JAMA_Matrix($args[0]); + break; + default: + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $M->set($i, $j, $M->get($i, $j) * $this->A[$i][$j]); + } + } + return $M; + } else { + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + /** + * arrayTimesEquals + * + * Element-by-element multiplication + * Aij = Aij * Bij + * @param mixed $B Matrix/Array + * @return Matrix Matrix Aij + */ + public function arrayTimesEquals() + { + if (func_num_args() > 0) { + $args = func_get_args(); + $match = implode(",", array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof PHPExcel_Shared_JAMA_Matrix) { + $M = $args[0]; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_TYPE_EXCEPTION); + } + break; + case 'array': + $M = new PHPExcel_Shared_JAMA_Matrix($args[0]); + break; + default: + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $validValues = true; + $value = $M->get($i, $j); + if ((is_string($this->A[$i][$j])) && (strlen($this->A[$i][$j]) > 0) && (!is_numeric($this->A[$i][$j]))) { + $this->A[$i][$j] = trim($this->A[$i][$j], '"'); + $validValues &= PHPExcel_Shared_String::convertToNumberIfFraction($this->A[$i][$j]); + } + if ((is_string($value)) && (strlen($value) > 0) && (!is_numeric($value))) { + $value = trim($value, '"'); + $validValues &= PHPExcel_Shared_String::convertToNumberIfFraction($value); + } + if ($validValues) { + $this->A[$i][$j] *= $value; + } else { + $this->A[$i][$j] = PHPExcel_Calculation_Functions::NaN(); + } + } + } + return $this; + } else { + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + /** + * arrayRightDivide + * + * Element-by-element right division + * A / B + * @param Matrix $B Matrix B + * @return Matrix Division result + */ + public function arrayRightDivide() + { + if (func_num_args() > 0) { + $args = func_get_args(); + $match = implode(",", array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof PHPExcel_Shared_JAMA_Matrix) { + $M = $args[0]; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_TYPE_EXCEPTION); + } + break; + case 'array': + $M = new PHPExcel_Shared_JAMA_Matrix($args[0]); + break; + default: + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $validValues = true; + $value = $M->get($i, $j); + if ((is_string($this->A[$i][$j])) && (strlen($this->A[$i][$j]) > 0) && (!is_numeric($this->A[$i][$j]))) { + $this->A[$i][$j] = trim($this->A[$i][$j], '"'); + $validValues &= PHPExcel_Shared_String::convertToNumberIfFraction($this->A[$i][$j]); + } + if ((is_string($value)) && (strlen($value) > 0) && (!is_numeric($value))) { + $value = trim($value, '"'); + $validValues &= PHPExcel_Shared_String::convertToNumberIfFraction($value); + } + if ($validValues) { + if ($value == 0) { + // Trap for Divide by Zero error + $M->set($i, $j, '#DIV/0!'); + } else { + $M->set($i, $j, $this->A[$i][$j] / $value); + } + } else { + $M->set($i, $j, PHPExcel_Calculation_Functions::NaN()); + } + } + } + return $M; + } else { + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + + /** + * arrayRightDivideEquals + * + * Element-by-element right division + * Aij = Aij / Bij + * @param mixed $B Matrix/Array + * @return Matrix Matrix Aij + */ + public function arrayRightDivideEquals() + { + if (func_num_args() > 0) { + $args = func_get_args(); + $match = implode(",", array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof PHPExcel_Shared_JAMA_Matrix) { + $M = $args[0]; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_TYPE_EXCEPTION); + } + break; + case 'array': + $M = new PHPExcel_Shared_JAMA_Matrix($args[0]); + break; + default: + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $this->A[$i][$j] = $this->A[$i][$j] / $M->get($i, $j); + } + } + return $M; + } else { + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + + /** + * arrayLeftDivide + * + * Element-by-element Left division + * A / B + * @param Matrix $B Matrix B + * @return Matrix Division result + */ + public function arrayLeftDivide() + { + if (func_num_args() > 0) { + $args = func_get_args(); + $match = implode(",", array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof PHPExcel_Shared_JAMA_Matrix) { + $M = $args[0]; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_TYPE_EXCEPTION); + } + break; + case 'array': + $M = new PHPExcel_Shared_JAMA_Matrix($args[0]); + break; + default: + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $M->set($i, $j, $M->get($i, $j) / $this->A[$i][$j]); + } + } + return $M; + } else { + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + + /** + * arrayLeftDivideEquals + * + * Element-by-element Left division + * Aij = Aij / Bij + * @param mixed $B Matrix/Array + * @return Matrix Matrix Aij + */ + public function arrayLeftDivideEquals() + { + if (func_num_args() > 0) { + $args = func_get_args(); + $match = implode(",", array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof PHPExcel_Shared_JAMA_Matrix) { + $M = $args[0]; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_TYPE_EXCEPTION); + } + break; + case 'array': + $M = new PHPExcel_Shared_JAMA_Matrix($args[0]); + break; + default: + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $this->A[$i][$j] = $M->get($i, $j) / $this->A[$i][$j]; + } + } + return $M; + } else { + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + + /** + * times + * + * Matrix multiplication + * @param mixed $n Matrix/Array/Scalar + * @return Matrix Product + */ + public function times() + { + if (func_num_args() > 0) { + $args = func_get_args(); + $match = implode(",", array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof PHPExcel_Shared_JAMA_Matrix) { + $B = $args[0]; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_TYPE_EXCEPTION); + } + if ($this->n == $B->m) { + $C = new PHPExcel_Shared_JAMA_Matrix($this->m, $B->n); + for ($j = 0; $j < $B->n; ++$j) { + for ($k = 0; $k < $this->n; ++$k) { + $Bcolj[$k] = $B->A[$k][$j]; + } + for ($i = 0; $i < $this->m; ++$i) { + $Arowi = $this->A[$i]; + $s = 0; + for ($k = 0; $k < $this->n; ++$k) { + $s += $Arowi[$k] * $Bcolj[$k]; + } + $C->A[$i][$j] = $s; + } + } + return $C; + } else { + throw new PHPExcel_Calculation_Exception(JAMAError(MatrixDimensionMismatch)); + } + break; + case 'array': + $B = new PHPExcel_Shared_JAMA_Matrix($args[0]); + if ($this->n == $B->m) { + $C = new PHPExcel_Shared_JAMA_Matrix($this->m, $B->n); + for ($i = 0; $i < $C->m; ++$i) { + for ($j = 0; $j < $C->n; ++$j) { + $s = "0"; + for ($k = 0; $k < $C->n; ++$k) { + $s += $this->A[$i][$k] * $B->A[$k][$j]; + } + $C->A[$i][$j] = $s; + } + } + return $C; + } else { + throw new PHPExcel_Calculation_Exception(JAMAError(MatrixDimensionMismatch)); + } + return $M; + break; + case 'integer': + $C = new PHPExcel_Shared_JAMA_Matrix($this->A); + for ($i = 0; $i < $C->m; ++$i) { + for ($j = 0; $j < $C->n; ++$j) { + $C->A[$i][$j] *= $args[0]; + } + } + return $C; + break; + case 'double': + $C = new PHPExcel_Shared_JAMA_Matrix($this->m, $this->n); + for ($i = 0; $i < $C->m; ++$i) { + for ($j = 0; $j < $C->n; ++$j) { + $C->A[$i][$j] = $args[0] * $this->A[$i][$j]; + } + } + return $C; + break; + case 'float': + $C = new PHPExcel_Shared_JAMA_Matrix($this->A); + for ($i = 0; $i < $C->m; ++$i) { + for ($j = 0; $j < $C->n; ++$j) { + $C->A[$i][$j] *= $args[0]; + } + } + return $C; + break; + default: + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + break; + } + } else { + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + /** + * power + * + * A = A ^ B + * @param mixed $B Matrix/Array + * @return Matrix Sum + */ + public function power() + { + if (func_num_args() > 0) { + $args = func_get_args(); + $match = implode(",", array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof PHPExcel_Shared_JAMA_Matrix) { + $M = $args[0]; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_TYPE_EXCEPTION); + } + break; + case 'array': + $M = new PHPExcel_Shared_JAMA_Matrix($args[0]); + break; + default: + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $validValues = true; + $value = $M->get($i, $j); + if ((is_string($this->A[$i][$j])) && (strlen($this->A[$i][$j]) > 0) && (!is_numeric($this->A[$i][$j]))) { + $this->A[$i][$j] = trim($this->A[$i][$j], '"'); + $validValues &= PHPExcel_Shared_String::convertToNumberIfFraction($this->A[$i][$j]); + } + if ((is_string($value)) && (strlen($value) > 0) && (!is_numeric($value))) { + $value = trim($value, '"'); + $validValues &= PHPExcel_Shared_String::convertToNumberIfFraction($value); + } + if ($validValues) { + $this->A[$i][$j] = pow($this->A[$i][$j], $value); + } else { + $this->A[$i][$j] = PHPExcel_Calculation_Functions::NaN(); + } + } + } + return $this; + } else { + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + /** + * concat + * + * A = A & B + * @param mixed $B Matrix/Array + * @return Matrix Sum + */ + public function concat() + { + if (func_num_args() > 0) { + $args = func_get_args(); + $match = implode(",", array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof PHPExcel_Shared_JAMA_Matrix) { + $M = $args[0]; + } else { + throw new PHPExcel_Calculation_Exception(self::ARGUMENT_TYPE_EXCEPTION); + } + case 'array': + $M = new PHPExcel_Shared_JAMA_Matrix($args[0]); + break; + default: + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $this->A[$i][$j] = trim($this->A[$i][$j], '"').trim($M->get($i, $j), '"'); + } + } + return $this; + } else { + throw new PHPExcel_Calculation_Exception(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + /** + * Solve A*X = B. + * + * @param Matrix $B Right hand side + * @return Matrix ... Solution if A is square, least squares solution otherwise + */ + public function solve($B) + { + if ($this->m == $this->n) { + $LU = new PHPExcel_Shared_JAMA_LUDecomposition($this); + return $LU->solve($B); + } else { + $QR = new PHPExcel_Shared_JAMA_QRDecomposition($this); + return $QR->solve($B); + } + } + + /** + * Matrix inverse or pseudoinverse. + * + * @return Matrix ... Inverse(A) if A is square, pseudoinverse otherwise. + */ + public function inverse() + { + return $this->solve($this->identity($this->m, $this->m)); + } + + /** + * det + * + * Calculate determinant + * @return float Determinant + */ + public function det() + { + $L = new PHPExcel_Shared_JAMA_LUDecomposition($this); + return $L->det(); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/QRDecomposition.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/QRDecomposition.php new file mode 100644 index 0000000..1e43c7c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/QRDecomposition.php @@ -0,0 +1,235 @@ +<?php +/** + * @package JAMA + * + * For an m-by-n matrix A with m >= n, the QR decomposition is an m-by-n + * orthogonal matrix Q and an n-by-n upper triangular matrix R so that + * A = Q*R. + * + * The QR decompostion always exists, even if the matrix does not have + * full rank, so the constructor will never fail. The primary use of the + * QR decomposition is in the least squares solution of nonsquare systems + * of simultaneous linear equations. This will fail if isFullRank() + * returns false. + * + * @author Paul Meagher + * @license PHP v3.0 + * @version 1.1 + */ +class PHPExcel_Shared_JAMA_QRDecomposition +{ + const MATRIX_RANK_EXCEPTION = "Can only perform operation on full-rank matrix."; + + /** + * Array for internal storage of decomposition. + * @var array + */ + private $QR = array(); + + /** + * Row dimension. + * @var integer + */ + private $m; + + /** + * Column dimension. + * @var integer + */ + private $n; + + /** + * Array for internal storage of diagonal of R. + * @var array + */ + private $Rdiag = array(); + + + /** + * QR Decomposition computed by Householder reflections. + * + * @param matrix $A Rectangular matrix + * @return Structure to access R and the Householder vectors and compute Q. + */ + public function __construct($A) + { + if ($A instanceof PHPExcel_Shared_JAMA_Matrix) { + // Initialize. + $this->QR = $A->getArrayCopy(); + $this->m = $A->getRowDimension(); + $this->n = $A->getColumnDimension(); + // Main loop. + for ($k = 0; $k < $this->n; ++$k) { + // Compute 2-norm of k-th column without under/overflow. + $nrm = 0.0; + for ($i = $k; $i < $this->m; ++$i) { + $nrm = hypo($nrm, $this->QR[$i][$k]); + } + if ($nrm != 0.0) { + // Form k-th Householder vector. + if ($this->QR[$k][$k] < 0) { + $nrm = -$nrm; + } + for ($i = $k; $i < $this->m; ++$i) { + $this->QR[$i][$k] /= $nrm; + } + $this->QR[$k][$k] += 1.0; + // Apply transformation to remaining columns. + for ($j = $k+1; $j < $this->n; ++$j) { + $s = 0.0; + for ($i = $k; $i < $this->m; ++$i) { + $s += $this->QR[$i][$k] * $this->QR[$i][$j]; + } + $s = -$s/$this->QR[$k][$k]; + for ($i = $k; $i < $this->m; ++$i) { + $this->QR[$i][$j] += $s * $this->QR[$i][$k]; + } + } + } + $this->Rdiag[$k] = -$nrm; + } + } else { + throw new PHPExcel_Calculation_Exception(PHPExcel_Shared_JAMA_Matrix::ARGUMENT_TYPE_EXCEPTION); + } + } // function __construct() + + + /** + * Is the matrix full rank? + * + * @return boolean true if R, and hence A, has full rank, else false. + */ + public function isFullRank() + { + for ($j = 0; $j < $this->n; ++$j) { + if ($this->Rdiag[$j] == 0) { + return false; + } + } + return true; + } // function isFullRank() + + /** + * Return the Householder vectors + * + * @return Matrix Lower trapezoidal matrix whose columns define the reflections + */ + public function getH() + { + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + if ($i >= $j) { + $H[$i][$j] = $this->QR[$i][$j]; + } else { + $H[$i][$j] = 0.0; + } + } + } + return new PHPExcel_Shared_JAMA_Matrix($H); + } // function getH() + + /** + * Return the upper triangular factor + * + * @return Matrix upper triangular factor + */ + public function getR() + { + for ($i = 0; $i < $this->n; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + if ($i < $j) { + $R[$i][$j] = $this->QR[$i][$j]; + } elseif ($i == $j) { + $R[$i][$j] = $this->Rdiag[$i]; + } else { + $R[$i][$j] = 0.0; + } + } + } + return new PHPExcel_Shared_JAMA_Matrix($R); + } // function getR() + + /** + * Generate and return the (economy-sized) orthogonal factor + * + * @return Matrix orthogonal factor + */ + public function getQ() + { + for ($k = $this->n-1; $k >= 0; --$k) { + for ($i = 0; $i < $this->m; ++$i) { + $Q[$i][$k] = 0.0; + } + $Q[$k][$k] = 1.0; + for ($j = $k; $j < $this->n; ++$j) { + if ($this->QR[$k][$k] != 0) { + $s = 0.0; + for ($i = $k; $i < $this->m; ++$i) { + $s += $this->QR[$i][$k] * $Q[$i][$j]; + } + $s = -$s/$this->QR[$k][$k]; + for ($i = $k; $i < $this->m; ++$i) { + $Q[$i][$j] += $s * $this->QR[$i][$k]; + } + } + } + } + /* + for($i = 0; $i < count($Q); ++$i) { + for($j = 0; $j < count($Q); ++$j) { + if (! isset($Q[$i][$j]) ) { + $Q[$i][$j] = 0; + } + } + } + */ + return new PHPExcel_Shared_JAMA_Matrix($Q); + } // function getQ() + + /** + * Least squares solution of A*X = B + * + * @param Matrix $B A Matrix with as many rows as A and any number of columns. + * @return Matrix Matrix that minimizes the two norm of Q*R*X-B. + */ + public function solve($B) + { + if ($B->getRowDimension() == $this->m) { + if ($this->isFullRank()) { + // Copy right hand side + $nx = $B->getColumnDimension(); + $X = $B->getArrayCopy(); + // Compute Y = transpose(Q)*B + for ($k = 0; $k < $this->n; ++$k) { + for ($j = 0; $j < $nx; ++$j) { + $s = 0.0; + for ($i = $k; $i < $this->m; ++$i) { + $s += $this->QR[$i][$k] * $X[$i][$j]; + } + $s = -$s/$this->QR[$k][$k]; + for ($i = $k; $i < $this->m; ++$i) { + $X[$i][$j] += $s * $this->QR[$i][$k]; + } + } + } + // Solve R*X = Y; + for ($k = $this->n-1; $k >= 0; --$k) { + for ($j = 0; $j < $nx; ++$j) { + $X[$k][$j] /= $this->Rdiag[$k]; + } + for ($i = 0; $i < $k; ++$i) { + for ($j = 0; $j < $nx; ++$j) { + $X[$i][$j] -= $X[$k][$j]* $this->QR[$i][$k]; + } + } + } + $X = new PHPExcel_Shared_JAMA_Matrix($X); + return ($X->getMatrix(0, $this->n-1, 0, $nx)); + } else { + throw new PHPExcel_Calculation_Exception(self::MATRIX_RANK_EXCEPTION); + } + } else { + throw new PHPExcel_Calculation_Exception(PHPExcel_Shared_JAMA_Matrix::MATRIX_DIMENSION_EXCEPTION); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/SingularValueDecomposition.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/SingularValueDecomposition.php new file mode 100644 index 0000000..f57d122 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/SingularValueDecomposition.php @@ -0,0 +1,528 @@ +<?php +/** + * @package JAMA + * + * For an m-by-n matrix A with m >= n, the singular value decomposition is + * an m-by-n orthogonal matrix U, an n-by-n diagonal matrix S, and + * an n-by-n orthogonal matrix V so that A = U*S*V'. + * + * The singular values, sigma[$k] = S[$k][$k], are ordered so that + * sigma[0] >= sigma[1] >= ... >= sigma[n-1]. + * + * The singular value decompostion always exists, so the constructor will + * never fail. The matrix condition number and the effective numerical + * rank can be computed from this decomposition. + * + * @author Paul Meagher + * @license PHP v3.0 + * @version 1.1 + */ +class SingularValueDecomposition +{ + /** + * Internal storage of U. + * @var array + */ + private $U = array(); + + /** + * Internal storage of V. + * @var array + */ + private $V = array(); + + /** + * Internal storage of singular values. + * @var array + */ + private $s = array(); + + /** + * Row dimension. + * @var int + */ + private $m; + + /** + * Column dimension. + * @var int + */ + private $n; + + /** + * Construct the singular value decomposition + * + * Derived from LINPACK code. + * + * @param $A Rectangular matrix + * @return Structure to access U, S and V. + */ + public function __construct($Arg) + { + // Initialize. + $A = $Arg->getArrayCopy(); + $this->m = $Arg->getRowDimension(); + $this->n = $Arg->getColumnDimension(); + $nu = min($this->m, $this->n); + $e = array(); + $work = array(); + $wantu = true; + $wantv = true; + $nct = min($this->m - 1, $this->n); + $nrt = max(0, min($this->n - 2, $this->m)); + + // Reduce A to bidiagonal form, storing the diagonal elements + // in s and the super-diagonal elements in e. + for ($k = 0; $k < max($nct, $nrt); ++$k) { + if ($k < $nct) { + // Compute the transformation for the k-th column and + // place the k-th diagonal in s[$k]. + // Compute 2-norm of k-th column without under/overflow. + $this->s[$k] = 0; + for ($i = $k; $i < $this->m; ++$i) { + $this->s[$k] = hypo($this->s[$k], $A[$i][$k]); + } + if ($this->s[$k] != 0.0) { + if ($A[$k][$k] < 0.0) { + $this->s[$k] = -$this->s[$k]; + } + for ($i = $k; $i < $this->m; ++$i) { + $A[$i][$k] /= $this->s[$k]; + } + $A[$k][$k] += 1.0; + } + $this->s[$k] = -$this->s[$k]; + } + + for ($j = $k + 1; $j < $this->n; ++$j) { + if (($k < $nct) & ($this->s[$k] != 0.0)) { + // Apply the transformation. + $t = 0; + for ($i = $k; $i < $this->m; ++$i) { + $t += $A[$i][$k] * $A[$i][$j]; + } + $t = -$t / $A[$k][$k]; + for ($i = $k; $i < $this->m; ++$i) { + $A[$i][$j] += $t * $A[$i][$k]; + } + // Place the k-th row of A into e for the + // subsequent calculation of the row transformation. + $e[$j] = $A[$k][$j]; + } + } + + if ($wantu and ($k < $nct)) { + // Place the transformation in U for subsequent back + // multiplication. + for ($i = $k; $i < $this->m; ++$i) { + $this->U[$i][$k] = $A[$i][$k]; + } + } + + if ($k < $nrt) { + // Compute the k-th row transformation and place the + // k-th super-diagonal in e[$k]. + // Compute 2-norm without under/overflow. + $e[$k] = 0; + for ($i = $k + 1; $i < $this->n; ++$i) { + $e[$k] = hypo($e[$k], $e[$i]); + } + if ($e[$k] != 0.0) { + if ($e[$k+1] < 0.0) { + $e[$k] = -$e[$k]; + } + for ($i = $k + 1; $i < $this->n; ++$i) { + $e[$i] /= $e[$k]; + } + $e[$k+1] += 1.0; + } + $e[$k] = -$e[$k]; + if (($k+1 < $this->m) and ($e[$k] != 0.0)) { + // Apply the transformation. + for ($i = $k+1; $i < $this->m; ++$i) { + $work[$i] = 0.0; + } + for ($j = $k+1; $j < $this->n; ++$j) { + for ($i = $k+1; $i < $this->m; ++$i) { + $work[$i] += $e[$j] * $A[$i][$j]; + } + } + for ($j = $k + 1; $j < $this->n; ++$j) { + $t = -$e[$j] / $e[$k+1]; + for ($i = $k + 1; $i < $this->m; ++$i) { + $A[$i][$j] += $t * $work[$i]; + } + } + } + if ($wantv) { + // Place the transformation in V for subsequent + // back multiplication. + for ($i = $k + 1; $i < $this->n; ++$i) { + $this->V[$i][$k] = $e[$i]; + } + } + } + } + + // Set up the final bidiagonal matrix or order p. + $p = min($this->n, $this->m + 1); + if ($nct < $this->n) { + $this->s[$nct] = $A[$nct][$nct]; + } + if ($this->m < $p) { + $this->s[$p-1] = 0.0; + } + if ($nrt + 1 < $p) { + $e[$nrt] = $A[$nrt][$p-1]; + } + $e[$p-1] = 0.0; + // If required, generate U. + if ($wantu) { + for ($j = $nct; $j < $nu; ++$j) { + for ($i = 0; $i < $this->m; ++$i) { + $this->U[$i][$j] = 0.0; + } + $this->U[$j][$j] = 1.0; + } + for ($k = $nct - 1; $k >= 0; --$k) { + if ($this->s[$k] != 0.0) { + for ($j = $k + 1; $j < $nu; ++$j) { + $t = 0; + for ($i = $k; $i < $this->m; ++$i) { + $t += $this->U[$i][$k] * $this->U[$i][$j]; + } + $t = -$t / $this->U[$k][$k]; + for ($i = $k; $i < $this->m; ++$i) { + $this->U[$i][$j] += $t * $this->U[$i][$k]; + } + } + for ($i = $k; $i < $this->m; ++$i) { + $this->U[$i][$k] = -$this->U[$i][$k]; + } + $this->U[$k][$k] = 1.0 + $this->U[$k][$k]; + for ($i = 0; $i < $k - 1; ++$i) { + $this->U[$i][$k] = 0.0; + } + } else { + for ($i = 0; $i < $this->m; ++$i) { + $this->U[$i][$k] = 0.0; + } + $this->U[$k][$k] = 1.0; + } + } + } + + // If required, generate V. + if ($wantv) { + for ($k = $this->n - 1; $k >= 0; --$k) { + if (($k < $nrt) and ($e[$k] != 0.0)) { + for ($j = $k + 1; $j < $nu; ++$j) { + $t = 0; + for ($i = $k + 1; $i < $this->n; ++$i) { + $t += $this->V[$i][$k]* $this->V[$i][$j]; + } + $t = -$t / $this->V[$k+1][$k]; + for ($i = $k + 1; $i < $this->n; ++$i) { + $this->V[$i][$j] += $t * $this->V[$i][$k]; + } + } + } + for ($i = 0; $i < $this->n; ++$i) { + $this->V[$i][$k] = 0.0; + } + $this->V[$k][$k] = 1.0; + } + } + + // Main iteration loop for the singular values. + $pp = $p - 1; + $iter = 0; + $eps = pow(2.0, -52.0); + + while ($p > 0) { + // Here is where a test for too many iterations would go. + // This section of the program inspects for negligible + // elements in the s and e arrays. On completion the + // variables kase and k are set as follows: + // kase = 1 if s(p) and e[k-1] are negligible and k<p + // kase = 2 if s(k) is negligible and k<p + // kase = 3 if e[k-1] is negligible, k<p, and + // s(k), ..., s(p) are not negligible (qr step). + // kase = 4 if e(p-1) is negligible (convergence). + for ($k = $p - 2; $k >= -1; --$k) { + if ($k == -1) { + break; + } + if (abs($e[$k]) <= $eps * (abs($this->s[$k]) + abs($this->s[$k+1]))) { + $e[$k] = 0.0; + break; + } + } + if ($k == $p - 2) { + $kase = 4; + } else { + for ($ks = $p - 1; $ks >= $k; --$ks) { + if ($ks == $k) { + break; + } + $t = ($ks != $p ? abs($e[$ks]) : 0.) + ($ks != $k + 1 ? abs($e[$ks-1]) : 0.); + if (abs($this->s[$ks]) <= $eps * $t) { + $this->s[$ks] = 0.0; + break; + } + } + if ($ks == $k) { + $kase = 3; + } elseif ($ks == $p-1) { + $kase = 1; + } else { + $kase = 2; + $k = $ks; + } + } + ++$k; + + // Perform the task indicated by kase. + switch ($kase) { + // Deflate negligible s(p). + case 1: + $f = $e[$p-2]; + $e[$p-2] = 0.0; + for ($j = $p - 2; $j >= $k; --$j) { + $t = hypo($this->s[$j], $f); + $cs = $this->s[$j] / $t; + $sn = $f / $t; + $this->s[$j] = $t; + if ($j != $k) { + $f = -$sn * $e[$j-1]; + $e[$j-1] = $cs * $e[$j-1]; + } + if ($wantv) { + for ($i = 0; $i < $this->n; ++$i) { + $t = $cs * $this->V[$i][$j] + $sn * $this->V[$i][$p-1]; + $this->V[$i][$p-1] = -$sn * $this->V[$i][$j] + $cs * $this->V[$i][$p-1]; + $this->V[$i][$j] = $t; + } + } + } + break; + // Split at negligible s(k). + case 2: + $f = $e[$k-1]; + $e[$k-1] = 0.0; + for ($j = $k; $j < $p; ++$j) { + $t = hypo($this->s[$j], $f); + $cs = $this->s[$j] / $t; + $sn = $f / $t; + $this->s[$j] = $t; + $f = -$sn * $e[$j]; + $e[$j] = $cs * $e[$j]; + if ($wantu) { + for ($i = 0; $i < $this->m; ++$i) { + $t = $cs * $this->U[$i][$j] + $sn * $this->U[$i][$k-1]; + $this->U[$i][$k-1] = -$sn * $this->U[$i][$j] + $cs * $this->U[$i][$k-1]; + $this->U[$i][$j] = $t; + } + } + } + break; + // Perform one qr step. + case 3: + // Calculate the shift. + $scale = max(max(max(max(abs($this->s[$p-1]), abs($this->s[$p-2])), abs($e[$p-2])), abs($this->s[$k])), abs($e[$k])); + $sp = $this->s[$p-1] / $scale; + $spm1 = $this->s[$p-2] / $scale; + $epm1 = $e[$p-2] / $scale; + $sk = $this->s[$k] / $scale; + $ek = $e[$k] / $scale; + $b = (($spm1 + $sp) * ($spm1 - $sp) + $epm1 * $epm1) / 2.0; + $c = ($sp * $epm1) * ($sp * $epm1); + $shift = 0.0; + if (($b != 0.0) || ($c != 0.0)) { + $shift = sqrt($b * $b + $c); + if ($b < 0.0) { + $shift = -$shift; + } + $shift = $c / ($b + $shift); + } + $f = ($sk + $sp) * ($sk - $sp) + $shift; + $g = $sk * $ek; + // Chase zeros. + for ($j = $k; $j < $p-1; ++$j) { + $t = hypo($f, $g); + $cs = $f/$t; + $sn = $g/$t; + if ($j != $k) { + $e[$j-1] = $t; + } + $f = $cs * $this->s[$j] + $sn * $e[$j]; + $e[$j] = $cs * $e[$j] - $sn * $this->s[$j]; + $g = $sn * $this->s[$j+1]; + $this->s[$j+1] = $cs * $this->s[$j+1]; + if ($wantv) { + for ($i = 0; $i < $this->n; ++$i) { + $t = $cs * $this->V[$i][$j] + $sn * $this->V[$i][$j+1]; + $this->V[$i][$j+1] = -$sn * $this->V[$i][$j] + $cs * $this->V[$i][$j+1]; + $this->V[$i][$j] = $t; + } + } + $t = hypo($f, $g); + $cs = $f/$t; + $sn = $g/$t; + $this->s[$j] = $t; + $f = $cs * $e[$j] + $sn * $this->s[$j+1]; + $this->s[$j+1] = -$sn * $e[$j] + $cs * $this->s[$j+1]; + $g = $sn * $e[$j+1]; + $e[$j+1] = $cs * $e[$j+1]; + if ($wantu && ($j < $this->m - 1)) { + for ($i = 0; $i < $this->m; ++$i) { + $t = $cs * $this->U[$i][$j] + $sn * $this->U[$i][$j+1]; + $this->U[$i][$j+1] = -$sn * $this->U[$i][$j] + $cs * $this->U[$i][$j+1]; + $this->U[$i][$j] = $t; + } + } + } + $e[$p-2] = $f; + $iter = $iter + 1; + break; + // Convergence. + case 4: + // Make the singular values positive. + if ($this->s[$k] <= 0.0) { + $this->s[$k] = ($this->s[$k] < 0.0 ? -$this->s[$k] : 0.0); + if ($wantv) { + for ($i = 0; $i <= $pp; ++$i) { + $this->V[$i][$k] = -$this->V[$i][$k]; + } + } + } + // Order the singular values. + while ($k < $pp) { + if ($this->s[$k] >= $this->s[$k+1]) { + break; + } + $t = $this->s[$k]; + $this->s[$k] = $this->s[$k+1]; + $this->s[$k+1] = $t; + if ($wantv and ($k < $this->n - 1)) { + for ($i = 0; $i < $this->n; ++$i) { + $t = $this->V[$i][$k+1]; + $this->V[$i][$k+1] = $this->V[$i][$k]; + $this->V[$i][$k] = $t; + } + } + if ($wantu and ($k < $this->m-1)) { + for ($i = 0; $i < $this->m; ++$i) { + $t = $this->U[$i][$k+1]; + $this->U[$i][$k+1] = $this->U[$i][$k]; + $this->U[$i][$k] = $t; + } + } + ++$k; + } + $iter = 0; + --$p; + break; + } // end switch + } // end while + + } // end constructor + + + /** + * Return the left singular vectors + * + * @access public + * @return U + */ + public function getU() + { + return new Matrix($this->U, $this->m, min($this->m + 1, $this->n)); + } + + + /** + * Return the right singular vectors + * + * @access public + * @return V + */ + public function getV() + { + return new Matrix($this->V); + } + + + /** + * Return the one-dimensional array of singular values + * + * @access public + * @return diagonal of S. + */ + public function getSingularValues() + { + return $this->s; + } + + + /** + * Return the diagonal matrix of singular values + * + * @access public + * @return S + */ + public function getS() + { + for ($i = 0; $i < $this->n; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $S[$i][$j] = 0.0; + } + $S[$i][$i] = $this->s[$i]; + } + return new Matrix($S); + } + + + /** + * Two norm + * + * @access public + * @return max(S) + */ + public function norm2() + { + return $this->s[0]; + } + + + /** + * Two norm condition number + * + * @access public + * @return max(S)/min(S) + */ + public function cond() + { + return $this->s[0] / $this->s[min($this->m, $this->n) - 1]; + } + + + /** + * Effective numerical matrix rank + * + * @access public + * @return Number of nonnegligible singular values. + */ + public function rank() + { + $eps = pow(2.0, -52.0); + $tol = max($this->m, $this->n) * $this->s[0] * $eps; + $r = 0; + for ($i = 0; $i < count($this->s); ++$i) { + if ($this->s[$i] > $tol) { + ++$r; + } + } + return $r; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/utils/Error.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/utils/Error.php new file mode 100644 index 0000000..71b8c99 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/utils/Error.php @@ -0,0 +1,83 @@ +<?php +/** + * @package JAMA + * + * Error handling + * @author Michael Bommarito + * @version 01292005 + */ + +//Language constant +define('JAMALANG', 'EN'); + + +//All errors may be defined by the following format: +//define('ExceptionName', N); +//$error['lang'][ExceptionName] = 'Error message'; +$error = array(); + +/* +I've used Babelfish and a little poor knowledge of Romance/Germanic languages for the translations here. +Feel free to correct anything that looks amiss to you. +*/ + +define('POLYMORPHIC_ARGUMENT_EXCEPTION', -1); +$error['EN'][POLYMORPHIC_ARGUMENT_EXCEPTION] = "Invalid argument pattern for polymorphic function."; +$error['FR'][POLYMORPHIC_ARGUMENT_EXCEPTION] = "Modèle inadmissible d'argument pour la fonction polymorphe.". +$error['DE'][POLYMORPHIC_ARGUMENT_EXCEPTION] = "Unzulässiges Argumentmuster für polymorphe Funktion."; + +define('ARGUMENT_TYPE_EXCEPTION', -2); +$error['EN'][ARGUMENT_TYPE_EXCEPTION] = "Invalid argument type."; +$error['FR'][ARGUMENT_TYPE_EXCEPTION] = "Type inadmissible d'argument."; +$error['DE'][ARGUMENT_TYPE_EXCEPTION] = "Unzulässige Argumentart."; + +define('ARGUMENT_BOUNDS_EXCEPTION', -3); +$error['EN'][ARGUMENT_BOUNDS_EXCEPTION] = "Invalid argument range."; +$error['FR'][ARGUMENT_BOUNDS_EXCEPTION] = "Gamme inadmissible d'argument."; +$error['DE'][ARGUMENT_BOUNDS_EXCEPTION] = "Unzulässige Argumentstrecke."; + +define('MATRIX_DIMENSION_EXCEPTION', -4); +$error['EN'][MATRIX_DIMENSION_EXCEPTION] = "Matrix dimensions are not equal."; +$error['FR'][MATRIX_DIMENSION_EXCEPTION] = "Les dimensions de Matrix ne sont pas égales."; +$error['DE'][MATRIX_DIMENSION_EXCEPTION] = "Matrixmaße sind nicht gleich."; + +define('PRECISION_LOSS_EXCEPTION', -5); +$error['EN'][PRECISION_LOSS_EXCEPTION] = "Significant precision loss detected."; +$error['FR'][PRECISION_LOSS_EXCEPTION] = "Perte significative de précision détectée."; +$error['DE'][PRECISION_LOSS_EXCEPTION] = "Bedeutender Präzision Verlust ermittelte."; + +define('MATRIX_SPD_EXCEPTION', -6); +$error['EN'][MATRIX_SPD_EXCEPTION] = "Can only perform operation on symmetric positive definite matrix."; +$error['FR'][MATRIX_SPD_EXCEPTION] = "Perte significative de précision détectée."; +$error['DE'][MATRIX_SPD_EXCEPTION] = "Bedeutender Präzision Verlust ermittelte."; + +define('MATRIX_SINGULAR_EXCEPTION', -7); +$error['EN'][MATRIX_SINGULAR_EXCEPTION] = "Can only perform operation on singular matrix."; + +define('MATRIX_RANK_EXCEPTION', -8); +$error['EN'][MATRIX_RANK_EXCEPTION] = "Can only perform operation on full-rank matrix."; + +define('ARRAY_LENGTH_EXCEPTION', -9); +$error['EN'][ARRAY_LENGTH_EXCEPTION] = "Array length must be a multiple of m."; + +define('ROW_LENGTH_EXCEPTION', -10); +$error['EN'][ROW_LENGTH_EXCEPTION] = "All rows must have the same length."; + +/** + * Custom error handler + * @param int $num Error number + */ +function JAMAError($errorNumber = null) +{ + global $error; + + if (isset($errorNumber)) { + if (isset($error[JAMALANG][$errorNumber])) { + return $error[JAMALANG][$errorNumber]; + } else { + return $error['EN'][$errorNumber]; + } + } else { + return ("Invalid argument to JAMAError()"); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/utils/Maths.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/utils/Maths.php new file mode 100644 index 0000000..386c1e6 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/utils/Maths.php @@ -0,0 +1,44 @@ +<?php +/** + * @package JAMA + * + * Pythagorean Theorem: + * + * a = 3 + * b = 4 + * r = sqrt(square(a) + square(b)) + * r = 5 + * + * r = sqrt(a^2 + b^2) without under/overflow. + */ +function hypo($a, $b) +{ + if (abs($a) > abs($b)) { + $r = $b / $a; + $r = abs($a) * sqrt(1 + $r * $r); + } elseif ($b != 0) { + $r = $a / $b; + $r = abs($b) * sqrt(1 + $r * $r); + } else { + $r = 0.0; + } + return $r; +} // function hypo() + + +/** + * Mike Bommarito's version. + * Compute n-dimensional hyotheneuse. + * +function hypot() { + $s = 0; + foreach (func_get_args() as $d) { + if (is_numeric($d)) { + $s += pow($d, 2); + } else { + throw new PHPExcel_Calculation_Exception(JAMAError(ARGUMENT_TYPE_EXCEPTION)); + } + } + return sqrt($s); +} +*/ diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE.php new file mode 100644 index 0000000..42a3c52 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE.php @@ -0,0 +1,526 @@ +<?php +/* vim: set expandtab tabstop=4 shiftwidth=4: */ +// +----------------------------------------------------------------------+ +// | PHP Version 4 | +// +----------------------------------------------------------------------+ +// | Copyright (c) 1997-2002 The PHP Group | +// +----------------------------------------------------------------------+ +// | This source file is subject to version 2.02 of the PHP license, | +// | that is bundled with this package in the file LICENSE, and is | +// | available at through the world-wide-web at | +// | http://www.php.net/license/2_02.txt. | +// | If you did not receive a copy of the PHP license and are unable to | +// | obtain it through the world-wide-web, please send a note to | +// | license@php.net so we can mail you a copy immediately. | +// +----------------------------------------------------------------------+ +// | Author: Xavier Noguer <xnoguer@php.net> | +// | Based on OLE::Storage_Lite by Kawai, Takanori | +// +----------------------------------------------------------------------+ +// +// $Id: OLE.php,v 1.13 2007/03/07 14:38:25 schmidt Exp $ + + +/** +* Array for storing OLE instances that are accessed from +* OLE_ChainedBlockStream::stream_open(). +* @var array +*/ +$GLOBALS['_OLE_INSTANCES'] = array(); + +/** +* OLE package base class. +* +* @author Xavier Noguer <xnoguer@php.net> +* @author Christian Schmidt <schmidt@php.net> +* @category PHPExcel +* @package PHPExcel_Shared_OLE +*/ +class PHPExcel_Shared_OLE +{ + const OLE_PPS_TYPE_ROOT = 5; + const OLE_PPS_TYPE_DIR = 1; + const OLE_PPS_TYPE_FILE = 2; + const OLE_DATA_SIZE_SMALL = 0x1000; + const OLE_LONG_INT_SIZE = 4; + const OLE_PPS_SIZE = 0x80; + + /** + * The file handle for reading an OLE container + * @var resource + */ + public $_file_handle; + + /** + * Array of PPS's found on the OLE container + * @var array + */ + public $_list = array(); + + /** + * Root directory of OLE container + * @var OLE_PPS_Root + */ + public $root; + + /** + * Big Block Allocation Table + * @var array (blockId => nextBlockId) + */ + public $bbat; + + /** + * Short Block Allocation Table + * @var array (blockId => nextBlockId) + */ + public $sbat; + + /** + * Size of big blocks. This is usually 512. + * @var int number of octets per block. + */ + public $bigBlockSize; + + /** + * Size of small blocks. This is usually 64. + * @var int number of octets per block + */ + public $smallBlockSize; + + /** + * Reads an OLE container from the contents of the file given. + * + * @acces public + * @param string $file + * @return mixed true on success, PEAR_Error on failure + */ + public function read($file) + { + $fh = fopen($file, "r"); + if (!$fh) { + throw new PHPExcel_Reader_Exception("Can't open file $file"); + } + $this->_file_handle = $fh; + + $signature = fread($fh, 8); + if ("\xD0\xCF\x11\xE0\xA1\xB1\x1A\xE1" != $signature) { + throw new PHPExcel_Reader_Exception("File doesn't seem to be an OLE container."); + } + fseek($fh, 28); + if (fread($fh, 2) != "\xFE\xFF") { + // This shouldn't be a problem in practice + throw new PHPExcel_Reader_Exception("Only Little-Endian encoding is supported."); + } + // Size of blocks and short blocks in bytes + $this->bigBlockSize = pow(2, self::_readInt2($fh)); + $this->smallBlockSize = pow(2, self::_readInt2($fh)); + + // Skip UID, revision number and version number + fseek($fh, 44); + // Number of blocks in Big Block Allocation Table + $bbatBlockCount = self::_readInt4($fh); + + // Root chain 1st block + $directoryFirstBlockId = self::_readInt4($fh); + + // Skip unused bytes + fseek($fh, 56); + // Streams shorter than this are stored using small blocks + $this->bigBlockThreshold = self::_readInt4($fh); + // Block id of first sector in Short Block Allocation Table + $sbatFirstBlockId = self::_readInt4($fh); + // Number of blocks in Short Block Allocation Table + $sbbatBlockCount = self::_readInt4($fh); + // Block id of first sector in Master Block Allocation Table + $mbatFirstBlockId = self::_readInt4($fh); + // Number of blocks in Master Block Allocation Table + $mbbatBlockCount = self::_readInt4($fh); + $this->bbat = array(); + + // Remaining 4 * 109 bytes of current block is beginning of Master + // Block Allocation Table + $mbatBlocks = array(); + for ($i = 0; $i < 109; ++$i) { + $mbatBlocks[] = self::_readInt4($fh); + } + + // Read rest of Master Block Allocation Table (if any is left) + $pos = $this->_getBlockOffset($mbatFirstBlockId); + for ($i = 0; $i < $mbbatBlockCount; ++$i) { + fseek($fh, $pos); + for ($j = 0; $j < $this->bigBlockSize / 4 - 1; ++$j) { + $mbatBlocks[] = self::_readInt4($fh); + } + // Last block id in each block points to next block + $pos = $this->_getBlockOffset(self::_readInt4($fh)); + } + + // Read Big Block Allocation Table according to chain specified by + // $mbatBlocks + for ($i = 0; $i < $bbatBlockCount; ++$i) { + $pos = $this->_getBlockOffset($mbatBlocks[$i]); + fseek($fh, $pos); + for ($j = 0; $j < $this->bigBlockSize / 4; ++$j) { + $this->bbat[] = self::_readInt4($fh); + } + } + + // Read short block allocation table (SBAT) + $this->sbat = array(); + $shortBlockCount = $sbbatBlockCount * $this->bigBlockSize / 4; + $sbatFh = $this->getStream($sbatFirstBlockId); + for ($blockId = 0; $blockId < $shortBlockCount; ++$blockId) { + $this->sbat[$blockId] = self::_readInt4($sbatFh); + } + fclose($sbatFh); + + $this->_readPpsWks($directoryFirstBlockId); + + return true; + } + + /** + * @param int block id + * @param int byte offset from beginning of file + * @access public + */ + public function _getBlockOffset($blockId) + { + return 512 + $blockId * $this->bigBlockSize; + } + + /** + * Returns a stream for use with fread() etc. External callers should + * use PHPExcel_Shared_OLE_PPS_File::getStream(). + * @param int|PPS block id or PPS + * @return resource read-only stream + */ + public function getStream($blockIdOrPps) + { + static $isRegistered = false; + if (!$isRegistered) { + stream_wrapper_register('ole-chainedblockstream', 'PHPExcel_Shared_OLE_ChainedBlockStream'); + $isRegistered = true; + } + + // Store current instance in global array, so that it can be accessed + // in OLE_ChainedBlockStream::stream_open(). + // Object is removed from self::$instances in OLE_Stream::close(). + $GLOBALS['_OLE_INSTANCES'][] = $this; + $instanceId = end(array_keys($GLOBALS['_OLE_INSTANCES'])); + + $path = 'ole-chainedblockstream://oleInstanceId=' . $instanceId; + if ($blockIdOrPps instanceof PHPExcel_Shared_OLE_PPS) { + $path .= '&blockId=' . $blockIdOrPps->_StartBlock; + $path .= '&size=' . $blockIdOrPps->Size; + } else { + $path .= '&blockId=' . $blockIdOrPps; + } + return fopen($path, 'r'); + } + + /** + * Reads a signed char. + * @param resource file handle + * @return int + * @access public + */ + private static function _readInt1($fh) + { + list(, $tmp) = unpack("c", fread($fh, 1)); + return $tmp; + } + + /** + * Reads an unsigned short (2 octets). + * @param resource file handle + * @return int + * @access public + */ + private static function _readInt2($fh) + { + list(, $tmp) = unpack("v", fread($fh, 2)); + return $tmp; + } + + /** + * Reads an unsigned long (4 octets). + * @param resource file handle + * @return int + * @access public + */ + private static function _readInt4($fh) + { + list(, $tmp) = unpack("V", fread($fh, 4)); + return $tmp; + } + + /** + * Gets information about all PPS's on the OLE container from the PPS WK's + * creates an OLE_PPS object for each one. + * + * @access public + * @param integer the block id of the first block + * @return mixed true on success, PEAR_Error on failure + */ + public function _readPpsWks($blockId) + { + $fh = $this->getStream($blockId); + for ($pos = 0;; $pos += 128) { + fseek($fh, $pos, SEEK_SET); + $nameUtf16 = fread($fh, 64); + $nameLength = self::_readInt2($fh); + $nameUtf16 = substr($nameUtf16, 0, $nameLength - 2); + // Simple conversion from UTF-16LE to ISO-8859-1 + $name = str_replace("\x00", "", $nameUtf16); + $type = self::_readInt1($fh); + switch ($type) { + case self::OLE_PPS_TYPE_ROOT: + $pps = new PHPExcel_Shared_OLE_PPS_Root(null, null, array()); + $this->root = $pps; + break; + case self::OLE_PPS_TYPE_DIR: + $pps = new PHPExcel_Shared_OLE_PPS(null, null, null, null, null, null, null, null, null, array()); + break; + case self::OLE_PPS_TYPE_FILE: + $pps = new PHPExcel_Shared_OLE_PPS_File($name); + break; + default: + continue; + } + fseek($fh, 1, SEEK_CUR); + $pps->Type = $type; + $pps->Name = $name; + $pps->PrevPps = self::_readInt4($fh); + $pps->NextPps = self::_readInt4($fh); + $pps->DirPps = self::_readInt4($fh); + fseek($fh, 20, SEEK_CUR); + $pps->Time1st = self::OLE2LocalDate(fread($fh, 8)); + $pps->Time2nd = self::OLE2LocalDate(fread($fh, 8)); + $pps->_StartBlock = self::_readInt4($fh); + $pps->Size = self::_readInt4($fh); + $pps->No = count($this->_list); + $this->_list[] = $pps; + + // check if the PPS tree (starting from root) is complete + if (isset($this->root) && $this->_ppsTreeComplete($this->root->No)) { + break; + } + } + fclose($fh); + + // Initialize $pps->children on directories + foreach ($this->_list as $pps) { + if ($pps->Type == self::OLE_PPS_TYPE_DIR || $pps->Type == self::OLE_PPS_TYPE_ROOT) { + $nos = array($pps->DirPps); + $pps->children = array(); + while ($nos) { + $no = array_pop($nos); + if ($no != -1) { + $childPps = $this->_list[$no]; + $nos[] = $childPps->PrevPps; + $nos[] = $childPps->NextPps; + $pps->children[] = $childPps; + } + } + } + } + + return true; + } + + /** + * It checks whether the PPS tree is complete (all PPS's read) + * starting with the given PPS (not necessarily root) + * + * @access public + * @param integer $index The index of the PPS from which we are checking + * @return boolean Whether the PPS tree for the given PPS is complete + */ + public function _ppsTreeComplete($index) + { + return isset($this->_list[$index]) && + ($pps = $this->_list[$index]) && + ($pps->PrevPps == -1 || + $this->_ppsTreeComplete($pps->PrevPps)) && + ($pps->NextPps == -1 || + $this->_ppsTreeComplete($pps->NextPps)) && + ($pps->DirPps == -1 || + $this->_ppsTreeComplete($pps->DirPps)); + } + + /** + * Checks whether a PPS is a File PPS or not. + * If there is no PPS for the index given, it will return false. + * + * @access public + * @param integer $index The index for the PPS + * @return bool true if it's a File PPS, false otherwise + */ + public function isFile($index) + { + if (isset($this->_list[$index])) { + return ($this->_list[$index]->Type == self::OLE_PPS_TYPE_FILE); + } + return false; + } + + /** + * Checks whether a PPS is a Root PPS or not. + * If there is no PPS for the index given, it will return false. + * + * @access public + * @param integer $index The index for the PPS. + * @return bool true if it's a Root PPS, false otherwise + */ + public function isRoot($index) + { + if (isset($this->_list[$index])) { + return ($this->_list[$index]->Type == self::OLE_PPS_TYPE_ROOT); + } + return false; + } + + /** + * Gives the total number of PPS's found in the OLE container. + * + * @access public + * @return integer The total number of PPS's found in the OLE container + */ + public function ppsTotal() + { + return count($this->_list); + } + + /** + * Gets data from a PPS + * If there is no PPS for the index given, it will return an empty string. + * + * @access public + * @param integer $index The index for the PPS + * @param integer $position The position from which to start reading + * (relative to the PPS) + * @param integer $length The amount of bytes to read (at most) + * @return string The binary string containing the data requested + * @see OLE_PPS_File::getStream() + */ + public function getData($index, $position, $length) + { + // if position is not valid return empty string + if (!isset($this->_list[$index]) || ($position >= $this->_list[$index]->Size) || ($position < 0)) { + return ''; + } + $fh = $this->getStream($this->_list[$index]); + $data = stream_get_contents($fh, $length, $position); + fclose($fh); + return $data; + } + + /** + * Gets the data length from a PPS + * If there is no PPS for the index given, it will return 0. + * + * @access public + * @param integer $index The index for the PPS + * @return integer The amount of bytes in data the PPS has + */ + public function getDataLength($index) + { + if (isset($this->_list[$index])) { + return $this->_list[$index]->Size; + } + return 0; + } + + /** + * Utility function to transform ASCII text to Unicode + * + * @access public + * @static + * @param string $ascii The ASCII string to transform + * @return string The string in Unicode + */ + public static function Asc2Ucs($ascii) + { + $rawname = ''; + for ($i = 0; $i < strlen($ascii); ++$i) { + $rawname .= $ascii{$i} . "\x00"; + } + return $rawname; + } + + /** + * Utility function + * Returns a string for the OLE container with the date given + * + * @access public + * @static + * @param integer $date A timestamp + * @return string The string for the OLE container + */ + public static function LocalDate2OLE($date = null) + { + if (!isset($date)) { + return "\x00\x00\x00\x00\x00\x00\x00\x00"; + } + + // factor used for separating numbers into 4 bytes parts + $factor = pow(2, 32); + + // days from 1-1-1601 until the beggining of UNIX era + $days = 134774; + // calculate seconds + $big_date = $days*24*3600 + gmmktime(date("H", $date), date("i", $date), date("s", $date), date("m", $date), date("d", $date), date("Y", $date)); + // multiply just to make MS happy + $big_date *= 10000000; + + $high_part = floor($big_date / $factor); + // lower 4 bytes + $low_part = floor((($big_date / $factor) - $high_part) * $factor); + + // Make HEX string + $res = ''; + + for ($i = 0; $i < 4; ++$i) { + $hex = $low_part % 0x100; + $res .= pack('c', $hex); + $low_part /= 0x100; + } + for ($i = 0; $i < 4; ++$i) { + $hex = $high_part % 0x100; + $res .= pack('c', $hex); + $high_part /= 0x100; + } + return $res; + } + + /** + * Returns a timestamp from an OLE container's date + * + * @access public + * @static + * @param integer $string A binary string with the encoded date + * @return string The timestamp corresponding to the string + */ + public static function OLE2LocalDate($string) + { + if (strlen($string) != 8) { + return new PEAR_Error("Expecting 8 byte string"); + } + + // factor used for separating numbers into 4 bytes parts + $factor = pow(2, 32); + list(, $high_part) = unpack('V', substr($string, 4, 4)); + list(, $low_part) = unpack('V', substr($string, 0, 4)); + + $big_date = ($high_part * $factor) + $low_part; + // translate to seconds + $big_date /= 10000000; + + // days from 1-1-1601 until the beggining of UNIX era + $days = 134774; + + // translate to seconds from beggining of UNIX era + $big_date -= $days * 24 * 3600; + return floor($big_date); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/ChainedBlockStream.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/ChainedBlockStream.php new file mode 100644 index 0000000..84d2cc5 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/ChainedBlockStream.php @@ -0,0 +1,206 @@ +<?php + +/** + * PHPExcel_Shared_OLE_ChainedBlockStream + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_OLE + * @copyright Copyright (c) 2006 - 2007 Christian Schmidt + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_OLE_ChainedBlockStream +{ + /** + * The OLE container of the file that is being read. + * @var OLE + */ + public $ole; + + /** + * Parameters specified by fopen(). + * @var array + */ + public $params; + + /** + * The binary data of the file. + * @var string + */ + public $data; + + /** + * The file pointer. + * @var int byte offset + */ + public $pos; + + /** + * Implements support for fopen(). + * For creating streams using this wrapper, use OLE_PPS_File::getStream(). + * + * @param string $path resource name including scheme, e.g. + * ole-chainedblockstream://oleInstanceId=1 + * @param string $mode only "r" is supported + * @param int $options mask of STREAM_REPORT_ERRORS and STREAM_USE_PATH + * @param string &$openedPath absolute path of the opened stream (out parameter) + * @return bool true on success + */ + public function stream_open($path, $mode, $options, &$openedPath) + { + if ($mode != 'r') { + if ($options & STREAM_REPORT_ERRORS) { + trigger_error('Only reading is supported', E_USER_WARNING); + } + return false; + } + + // 25 is length of "ole-chainedblockstream://" + parse_str(substr($path, 25), $this->params); + if (!isset($this->params['oleInstanceId'], $this->params['blockId'], $GLOBALS['_OLE_INSTANCES'][$this->params['oleInstanceId']])) { + if ($options & STREAM_REPORT_ERRORS) { + trigger_error('OLE stream not found', E_USER_WARNING); + } + return false; + } + $this->ole = $GLOBALS['_OLE_INSTANCES'][$this->params['oleInstanceId']]; + + $blockId = $this->params['blockId']; + $this->data = ''; + if (isset($this->params['size']) && $this->params['size'] < $this->ole->bigBlockThreshold && $blockId != $this->ole->root->_StartBlock) { + // Block id refers to small blocks + $rootPos = $this->ole->_getBlockOffset($this->ole->root->_StartBlock); + while ($blockId != -2) { + $pos = $rootPos + $blockId * $this->ole->bigBlockSize; + $blockId = $this->ole->sbat[$blockId]; + fseek($this->ole->_file_handle, $pos); + $this->data .= fread($this->ole->_file_handle, $this->ole->bigBlockSize); + } + } else { + // Block id refers to big blocks + while ($blockId != -2) { + $pos = $this->ole->_getBlockOffset($blockId); + fseek($this->ole->_file_handle, $pos); + $this->data .= fread($this->ole->_file_handle, $this->ole->bigBlockSize); + $blockId = $this->ole->bbat[$blockId]; + } + } + if (isset($this->params['size'])) { + $this->data = substr($this->data, 0, $this->params['size']); + } + + if ($options & STREAM_USE_PATH) { + $openedPath = $path; + } + + return true; + } + + /** + * Implements support for fclose(). + * + */ + public function stream_close() + { + $this->ole = null; + unset($GLOBALS['_OLE_INSTANCES']); + } + + /** + * Implements support for fread(), fgets() etc. + * + * @param int $count maximum number of bytes to read + * @return string + */ + public function stream_read($count) + { + if ($this->stream_eof()) { + return false; + } + $s = substr($this->data, $this->pos, $count); + $this->pos += $count; + return $s; + } + + /** + * Implements support for feof(). + * + * @return bool TRUE if the file pointer is at EOF; otherwise FALSE + */ + public function stream_eof() + { + return $this->pos >= strlen($this->data); + } + + /** + * Returns the position of the file pointer, i.e. its offset into the file + * stream. Implements support for ftell(). + * + * @return int + */ + public function stream_tell() + { + return $this->pos; + } + + /** + * Implements support for fseek(). + * + * @param int $offset byte offset + * @param int $whence SEEK_SET, SEEK_CUR or SEEK_END + * @return bool + */ + public function stream_seek($offset, $whence) + { + if ($whence == SEEK_SET && $offset >= 0) { + $this->pos = $offset; + } elseif ($whence == SEEK_CUR && -$offset <= $this->pos) { + $this->pos += $offset; + } elseif ($whence == SEEK_END && -$offset <= sizeof($this->data)) { + $this->pos = strlen($this->data) + $offset; + } else { + return false; + } + return true; + } + + /** + * Implements support for fstat(). Currently the only supported field is + * "size". + * @return array + */ + public function stream_stat() + { + return array( + 'size' => strlen($this->data), + ); + } + + // Methods used by stream_wrapper_register() that are not implemented: + // bool stream_flush ( void ) + // int stream_write ( string data ) + // bool rename ( string path_from, string path_to ) + // bool mkdir ( string path, int mode, int options ) + // bool rmdir ( string path, int options ) + // bool dir_opendir ( string path, int options ) + // array url_stat ( string path, int flags ) + // string dir_readdir ( void ) + // bool dir_rewinddir ( void ) + // bool dir_closedir ( void ) +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS.php new file mode 100644 index 0000000..608a892 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS.php @@ -0,0 +1,230 @@ +<?php +/* vim: set expandtab tabstop=4 shiftwidth=4: */ +// +----------------------------------------------------------------------+ +// | PHP Version 4 | +// +----------------------------------------------------------------------+ +// | Copyright (c) 1997-2002 The PHP Group | +// +----------------------------------------------------------------------+ +// | This source file is subject to version 2.02 of the PHP license, | +// | that is bundled with this package in the file LICENSE, and is | +// | available at through the world-wide-web at | +// | http://www.php.net/license/2_02.txt. | +// | If you did not receive a copy of the PHP license and are unable to | +// | obtain it through the world-wide-web, please send a note to | +// | license@php.net so we can mail you a copy immediately. | +// +----------------------------------------------------------------------+ +// | Author: Xavier Noguer <xnoguer@php.net> | +// | Based on OLE::Storage_Lite by Kawai, Takanori | +// +----------------------------------------------------------------------+ +// +// $Id: PPS.php,v 1.7 2007/02/13 21:00:42 schmidt Exp $ + + +/** +* Class for creating PPS's for OLE containers +* +* @author Xavier Noguer <xnoguer@php.net> +* @category PHPExcel +* @package PHPExcel_Shared_OLE +*/ +class PHPExcel_Shared_OLE_PPS +{ + /** + * The PPS index + * @var integer + */ + public $No; + + /** + * The PPS name (in Unicode) + * @var string + */ + public $Name; + + /** + * The PPS type. Dir, Root or File + * @var integer + */ + public $Type; + + /** + * The index of the previous PPS + * @var integer + */ + public $PrevPps; + + /** + * The index of the next PPS + * @var integer + */ + public $NextPps; + + /** + * The index of it's first child if this is a Dir or Root PPS + * @var integer + */ + public $DirPps; + + /** + * A timestamp + * @var integer + */ + public $Time1st; + + /** + * A timestamp + * @var integer + */ + public $Time2nd; + + /** + * Starting block (small or big) for this PPS's data inside the container + * @var integer + */ + public $_StartBlock; + + /** + * The size of the PPS's data (in bytes) + * @var integer + */ + public $Size; + + /** + * The PPS's data (only used if it's not using a temporary file) + * @var string + */ + public $_data; + + /** + * Array of child PPS's (only used by Root and Dir PPS's) + * @var array + */ + public $children = array(); + + /** + * Pointer to OLE container + * @var OLE + */ + public $ole; + + /** + * The constructor + * + * @access public + * @param integer $No The PPS index + * @param string $name The PPS name + * @param integer $type The PPS type. Dir, Root or File + * @param integer $prev The index of the previous PPS + * @param integer $next The index of the next PPS + * @param integer $dir The index of it's first child if this is a Dir or Root PPS + * @param integer $time_1st A timestamp + * @param integer $time_2nd A timestamp + * @param string $data The (usually binary) source data of the PPS + * @param array $children Array containing children PPS for this PPS + */ + public function __construct($No, $name, $type, $prev, $next, $dir, $time_1st, $time_2nd, $data, $children) + { + $this->No = $No; + $this->Name = $name; + $this->Type = $type; + $this->PrevPps = $prev; + $this->NextPps = $next; + $this->DirPps = $dir; + $this->Time1st = $time_1st; + $this->Time2nd = $time_2nd; + $this->_data = $data; + $this->children = $children; + if ($data != '') { + $this->Size = strlen($data); + } else { + $this->Size = 0; + } + } + + /** + * Returns the amount of data saved for this PPS + * + * @access public + * @return integer The amount of data (in bytes) + */ + public function _DataLen() + { + if (!isset($this->_data)) { + return 0; + } + //if (isset($this->_PPS_FILE)) { + // fseek($this->_PPS_FILE, 0); + // $stats = fstat($this->_PPS_FILE); + // return $stats[7]; + //} else { + return strlen($this->_data); + //} + } + + /** + * Returns a string with the PPS's WK (What is a WK?) + * + * @access public + * @return string The binary string + */ + public function _getPpsWk() + { + $ret = str_pad($this->Name, 64, "\x00"); + + $ret .= pack("v", strlen($this->Name) + 2) // 66 + . pack("c", $this->Type) // 67 + . pack("c", 0x00) //UK // 68 + . pack("V", $this->PrevPps) //Prev // 72 + . pack("V", $this->NextPps) //Next // 76 + . pack("V", $this->DirPps) //Dir // 80 + . "\x00\x09\x02\x00" // 84 + . "\x00\x00\x00\x00" // 88 + . "\xc0\x00\x00\x00" // 92 + . "\x00\x00\x00\x46" // 96 // Seems to be ok only for Root + . "\x00\x00\x00\x00" // 100 + . PHPExcel_Shared_OLE::LocalDate2OLE($this->Time1st) // 108 + . PHPExcel_Shared_OLE::LocalDate2OLE($this->Time2nd) // 116 + . pack("V", isset($this->_StartBlock)? + $this->_StartBlock:0) // 120 + . pack("V", $this->Size) // 124 + . pack("V", 0); // 128 + return $ret; + } + + /** + * Updates index and pointers to previous, next and children PPS's for this + * PPS. I don't think it'll work with Dir PPS's. + * + * @access public + * @param array &$raList Reference to the array of PPS's for the whole OLE + * container + * @return integer The index for this PPS + */ + public static function _savePpsSetPnt(&$raList, $to_save, $depth = 0) + { + if (!is_array($to_save) || (empty($to_save))) { + return 0xFFFFFFFF; + } elseif (count($to_save) == 1) { + $cnt = count($raList); + // If the first entry, it's the root... Don't clone it! + $raList[$cnt] = ( $depth == 0 ) ? $to_save[0] : clone $to_save[0]; + $raList[$cnt]->No = $cnt; + $raList[$cnt]->PrevPps = 0xFFFFFFFF; + $raList[$cnt]->NextPps = 0xFFFFFFFF; + $raList[$cnt]->DirPps = self::_savePpsSetPnt($raList, @$raList[$cnt]->children, $depth++); + } else { + $iPos = floor(count($to_save) / 2); + $aPrev = array_slice($to_save, 0, $iPos); + $aNext = array_slice($to_save, $iPos + 1); + $cnt = count($raList); + // If the first entry, it's the root... Don't clone it! + $raList[$cnt] = ( $depth == 0 ) ? $to_save[$iPos] : clone $to_save[$iPos]; + $raList[$cnt]->No = $cnt; + $raList[$cnt]->PrevPps = self::_savePpsSetPnt($raList, $aPrev, $depth++); + $raList[$cnt]->NextPps = self::_savePpsSetPnt($raList, $aNext, $depth++); + $raList[$cnt]->DirPps = self::_savePpsSetPnt($raList, @$raList[$cnt]->children, $depth++); + + } + return $cnt; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/File.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/File.php new file mode 100644 index 0000000..1ca337c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/File.php @@ -0,0 +1,74 @@ +<?php +/* vim: set expandtab tabstop=4 shiftwidth=4: */ +// +----------------------------------------------------------------------+ +// | PHP Version 4 | +// +----------------------------------------------------------------------+ +// | Copyright (c) 1997-2002 The PHP Group | +// +----------------------------------------------------------------------+ +// | This source file is subject to version 2.02 of the PHP license, | +// | that is bundled with this package in the file LICENSE, and is | +// | available at through the world-wide-web at | +// | http://www.php.net/license/2_02.txt. | +// | If you did not receive a copy of the PHP license and are unable to | +// | obtain it through the world-wide-web, please send a note to | +// | license@php.net so we can mail you a copy immediately. | +// +----------------------------------------------------------------------+ +// | Author: Xavier Noguer <xnoguer@php.net> | +// | Based on OLE::Storage_Lite by Kawai, Takanori | +// +----------------------------------------------------------------------+ +// +// $Id: File.php,v 1.11 2007/02/13 21:00:42 schmidt Exp $ + + +/** +* Class for creating File PPS's for OLE containers +* +* @author Xavier Noguer <xnoguer@php.net> +* @category PHPExcel +* @package PHPExcel_Shared_OLE +*/ +class PHPExcel_Shared_OLE_PPS_File extends PHPExcel_Shared_OLE_PPS +{ + /** + * The constructor + * + * @access public + * @param string $name The name of the file (in Unicode) + * @see OLE::Asc2Ucs() + */ + public function __construct($name) + { + parent::__construct(null, $name, PHPExcel_Shared_OLE::OLE_PPS_TYPE_FILE, null, null, null, null, null, '', array()); + } + + /** + * Initialization method. Has to be called right after OLE_PPS_File(). + * + * @access public + * @return mixed true on success + */ + public function init() + { + return true; + } + + /** + * Append data to PPS + * + * @access public + * @param string $data The data to append + */ + public function append($data) + { + $this->_data .= $data; + } + + /** + * Returns a stream for reading this file using fread() etc. + * @return resource a read-only stream + */ + public function getStream() + { + $this->ole->getStream($this); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/Root.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/Root.php new file mode 100644 index 0000000..5d4052f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/Root.php @@ -0,0 +1,462 @@ +<?php +/* vim: set expandtab tabstop=4 shiftwidth=4: */ +// +----------------------------------------------------------------------+ +// | PHP Version 4 | +// +----------------------------------------------------------------------+ +// | Copyright (c) 1997-2002 The PHP Group | +// +----------------------------------------------------------------------+ +// | This source file is subject to version 2.02 of the PHP license, | +// | that is bundled with this package in the file LICENSE, and is | +// | available at through the world-wide-web at | +// | http://www.php.net/license/2_02.txt. | +// | If you did not receive a copy of the PHP license and are unable to | +// | obtain it through the world-wide-web, please send a note to | +// | license@php.net so we can mail you a copy immediately. | +// +----------------------------------------------------------------------+ +// | Author: Xavier Noguer <xnoguer@php.net> | +// | Based on OLE::Storage_Lite by Kawai, Takanori | +// +----------------------------------------------------------------------+ +// +// $Id: Root.php,v 1.9 2005/04/23 21:53:49 dufuz Exp $ + + +/** +* Class for creating Root PPS's for OLE containers +* +* @author Xavier Noguer <xnoguer@php.net> +* @category PHPExcel +* @package PHPExcel_Shared_OLE +*/ +class PHPExcel_Shared_OLE_PPS_Root extends PHPExcel_Shared_OLE_PPS +{ + + /** + * Directory for temporary files + * @var string + */ + protected $tempDirectory = null; + + /** + * @param integer $time_1st A timestamp + * @param integer $time_2nd A timestamp + */ + public function __construct($time_1st, $time_2nd, $raChild) + { + $this->_tempDir = PHPExcel_Shared_File::sys_get_temp_dir(); + + parent::__construct(null, PHPExcel_Shared_OLE::Asc2Ucs('Root Entry'), PHPExcel_Shared_OLE::OLE_PPS_TYPE_ROOT, null, null, null, $time_1st, $time_2nd, null, $raChild); + } + + /** + * Method for saving the whole OLE container (including files). + * In fact, if called with an empty argument (or '-'), it saves to a + * temporary file and then outputs it's contents to stdout. + * If a resource pointer to a stream created by fopen() is passed + * it will be used, but you have to close such stream by yourself. + * + * @param string|resource $filename The name of the file or stream where to save the OLE container. + * @access public + * @return mixed true on success + */ + public function save($filename) + { + // Initial Setting for saving + $this->_BIG_BLOCK_SIZE = pow( + 2, + (isset($this->_BIG_BLOCK_SIZE))? self::adjust2($this->_BIG_BLOCK_SIZE) : 9 + ); + $this->_SMALL_BLOCK_SIZE= pow( + 2, + (isset($this->_SMALL_BLOCK_SIZE))? self::adjust2($this->_SMALL_BLOCK_SIZE) : 6 + ); + + if (is_resource($filename)) { + $this->_FILEH_ = $filename; + } elseif ($filename == '-' || $filename == '') { + if ($this->tempDirectory === null) { + $this->tempDirectory = PHPExcel_Shared_File::sys_get_temp_dir(); + } + $this->_tmp_filename = tempnam($this->tempDirectory, "OLE_PPS_Root"); + $this->_FILEH_ = fopen($this->_tmp_filename, "w+b"); + if ($this->_FILEH_ == false) { + throw new PHPExcel_Writer_Exception("Can't create temporary file."); + } + } else { + $this->_FILEH_ = fopen($filename, "wb"); + } + if ($this->_FILEH_ == false) { + throw new PHPExcel_Writer_Exception("Can't open $filename. It may be in use or protected."); + } + // Make an array of PPS's (for Save) + $aList = array(); + PHPExcel_Shared_OLE_PPS::_savePpsSetPnt($aList, array($this)); + // calculate values for header + list($iSBDcnt, $iBBcnt, $iPPScnt) = $this->_calcSize($aList); //, $rhInfo); + // Save Header + $this->_saveHeader($iSBDcnt, $iBBcnt, $iPPScnt); + + // Make Small Data string (write SBD) + $this->_data = $this->_makeSmallData($aList); + + // Write BB + $this->_saveBigData($iSBDcnt, $aList); + // Write PPS + $this->_savePps($aList); + // Write Big Block Depot and BDList and Adding Header informations + $this->_saveBbd($iSBDcnt, $iBBcnt, $iPPScnt); + + if (!is_resource($filename)) { + fclose($this->_FILEH_); + } + + return true; + } + + /** + * Calculate some numbers + * + * @access public + * @param array $raList Reference to an array of PPS's + * @return array The array of numbers + */ + public function _calcSize(&$raList) + { + // Calculate Basic Setting + list($iSBDcnt, $iBBcnt, $iPPScnt) = array(0,0,0); + $iSmallLen = 0; + $iSBcnt = 0; + $iCount = count($raList); + for ($i = 0; $i < $iCount; ++$i) { + if ($raList[$i]->Type == PHPExcel_Shared_OLE::OLE_PPS_TYPE_FILE) { + $raList[$i]->Size = $raList[$i]->_DataLen(); + if ($raList[$i]->Size < PHPExcel_Shared_OLE::OLE_DATA_SIZE_SMALL) { + $iSBcnt += floor($raList[$i]->Size / $this->_SMALL_BLOCK_SIZE) + + (($raList[$i]->Size % $this->_SMALL_BLOCK_SIZE)? 1: 0); + } else { + $iBBcnt += (floor($raList[$i]->Size / $this->_BIG_BLOCK_SIZE) + + (($raList[$i]->Size % $this->_BIG_BLOCK_SIZE)? 1: 0)); + } + } + } + $iSmallLen = $iSBcnt * $this->_SMALL_BLOCK_SIZE; + $iSlCnt = floor($this->_BIG_BLOCK_SIZE / PHPExcel_Shared_OLE::OLE_LONG_INT_SIZE); + $iSBDcnt = floor($iSBcnt / $iSlCnt) + (($iSBcnt % $iSlCnt)? 1:0); + $iBBcnt += (floor($iSmallLen / $this->_BIG_BLOCK_SIZE) + + (( $iSmallLen % $this->_BIG_BLOCK_SIZE)? 1: 0)); + $iCnt = count($raList); + $iBdCnt = $this->_BIG_BLOCK_SIZE / PHPExcel_Shared_OLE::OLE_PPS_SIZE; + $iPPScnt = (floor($iCnt/$iBdCnt) + (($iCnt % $iBdCnt)? 1: 0)); + + return array($iSBDcnt, $iBBcnt, $iPPScnt); + } + + /** + * Helper function for caculating a magic value for block sizes + * + * @access public + * @param integer $i2 The argument + * @see save() + * @return integer + */ + private static function adjust2($i2) + { + $iWk = log($i2)/log(2); + return ($iWk > floor($iWk))? floor($iWk)+1:$iWk; + } + + /** + * Save OLE header + * + * @access public + * @param integer $iSBDcnt + * @param integer $iBBcnt + * @param integer $iPPScnt + */ + public function _saveHeader($iSBDcnt, $iBBcnt, $iPPScnt) + { + $FILE = $this->_FILEH_; + + // Calculate Basic Setting + $iBlCnt = $this->_BIG_BLOCK_SIZE / PHPExcel_Shared_OLE::OLE_LONG_INT_SIZE; + $i1stBdL = ($this->_BIG_BLOCK_SIZE - 0x4C) / PHPExcel_Shared_OLE::OLE_LONG_INT_SIZE; + + $iBdExL = 0; + $iAll = $iBBcnt + $iPPScnt + $iSBDcnt; + $iAllW = $iAll; + $iBdCntW = floor($iAllW / $iBlCnt) + (($iAllW % $iBlCnt)? 1: 0); + $iBdCnt = floor(($iAll + $iBdCntW) / $iBlCnt) + ((($iAllW+$iBdCntW) % $iBlCnt)? 1: 0); + + // Calculate BD count + if ($iBdCnt > $i1stBdL) { + while (1) { + ++$iBdExL; + ++$iAllW; + $iBdCntW = floor($iAllW / $iBlCnt) + (($iAllW % $iBlCnt)? 1: 0); + $iBdCnt = floor(($iAllW + $iBdCntW) / $iBlCnt) + ((($iAllW+$iBdCntW) % $iBlCnt)? 1: 0); + if ($iBdCnt <= ($iBdExL*$iBlCnt+ $i1stBdL)) { + break; + } + } + } + + // Save Header + fwrite( + $FILE, + "\xD0\xCF\x11\xE0\xA1\xB1\x1A\xE1" + . "\x00\x00\x00\x00" + . "\x00\x00\x00\x00" + . "\x00\x00\x00\x00" + . "\x00\x00\x00\x00" + . pack("v", 0x3b) + . pack("v", 0x03) + . pack("v", -2) + . pack("v", 9) + . pack("v", 6) + . pack("v", 0) + . "\x00\x00\x00\x00" + . "\x00\x00\x00\x00" + . pack("V", $iBdCnt) + . pack("V", $iBBcnt+$iSBDcnt) //ROOT START + . pack("V", 0) + . pack("V", 0x1000) + . pack("V", $iSBDcnt ? 0 : -2) //Small Block Depot + . pack("V", $iSBDcnt) + ); + // Extra BDList Start, Count + if ($iBdCnt < $i1stBdL) { + fwrite( + $FILE, + pack("V", -2) // Extra BDList Start + . pack("V", 0)// Extra BDList Count + ); + } else { + fwrite($FILE, pack("V", $iAll+$iBdCnt) . pack("V", $iBdExL)); + } + + // BDList + for ($i = 0; $i < $i1stBdL && $i < $iBdCnt; ++$i) { + fwrite($FILE, pack("V", $iAll+$i)); + } + if ($i < $i1stBdL) { + $jB = $i1stBdL - $i; + for ($j = 0; $j < $jB; ++$j) { + fwrite($FILE, (pack("V", -1))); + } + } + } + + /** + * Saving big data (PPS's with data bigger than PHPExcel_Shared_OLE::OLE_DATA_SIZE_SMALL) + * + * @access public + * @param integer $iStBlk + * @param array &$raList Reference to array of PPS's + */ + public function _saveBigData($iStBlk, &$raList) + { + $FILE = $this->_FILEH_; + + // cycle through PPS's + $iCount = count($raList); + for ($i = 0; $i < $iCount; ++$i) { + if ($raList[$i]->Type != PHPExcel_Shared_OLE::OLE_PPS_TYPE_DIR) { + $raList[$i]->Size = $raList[$i]->_DataLen(); + if (($raList[$i]->Size >= PHPExcel_Shared_OLE::OLE_DATA_SIZE_SMALL) || (($raList[$i]->Type == PHPExcel_Shared_OLE::OLE_PPS_TYPE_ROOT) && isset($raList[$i]->_data))) { + // Write Data + //if (isset($raList[$i]->_PPS_FILE)) { + // $iLen = 0; + // fseek($raList[$i]->_PPS_FILE, 0); // To The Top + // while ($sBuff = fread($raList[$i]->_PPS_FILE, 4096)) { + // $iLen += strlen($sBuff); + // fwrite($FILE, $sBuff); + // } + //} else { + fwrite($FILE, $raList[$i]->_data); + //} + + if ($raList[$i]->Size % $this->_BIG_BLOCK_SIZE) { + fwrite($FILE, str_repeat("\x00", $this->_BIG_BLOCK_SIZE - ($raList[$i]->Size % $this->_BIG_BLOCK_SIZE))); + } + // Set For PPS + $raList[$i]->_StartBlock = $iStBlk; + $iStBlk += + (floor($raList[$i]->Size / $this->_BIG_BLOCK_SIZE) + + (($raList[$i]->Size % $this->_BIG_BLOCK_SIZE)? 1: 0)); + } + // Close file for each PPS, and unlink it + //if (isset($raList[$i]->_PPS_FILE)) { + // fclose($raList[$i]->_PPS_FILE); + // $raList[$i]->_PPS_FILE = null; + // unlink($raList[$i]->_tmp_filename); + //} + } + } + } + + /** + * get small data (PPS's with data smaller than PHPExcel_Shared_OLE::OLE_DATA_SIZE_SMALL) + * + * @access public + * @param array &$raList Reference to array of PPS's + */ + public function _makeSmallData(&$raList) + { + $sRes = ''; + $FILE = $this->_FILEH_; + $iSmBlk = 0; + + $iCount = count($raList); + for ($i = 0; $i < $iCount; ++$i) { + // Make SBD, small data string + if ($raList[$i]->Type == PHPExcel_Shared_OLE::OLE_PPS_TYPE_FILE) { + if ($raList[$i]->Size <= 0) { + continue; + } + if ($raList[$i]->Size < PHPExcel_Shared_OLE::OLE_DATA_SIZE_SMALL) { + $iSmbCnt = floor($raList[$i]->Size / $this->_SMALL_BLOCK_SIZE) + + (($raList[$i]->Size % $this->_SMALL_BLOCK_SIZE)? 1: 0); + // Add to SBD + $jB = $iSmbCnt - 1; + for ($j = 0; $j < $jB; ++$j) { + fwrite($FILE, pack("V", $j+$iSmBlk+1)); + } + fwrite($FILE, pack("V", -2)); + + //// Add to Data String(this will be written for RootEntry) + //if ($raList[$i]->_PPS_FILE) { + // fseek($raList[$i]->_PPS_FILE, 0); // To The Top + // while ($sBuff = fread($raList[$i]->_PPS_FILE, 4096)) { + // $sRes .= $sBuff; + // } + //} else { + $sRes .= $raList[$i]->_data; + //} + if ($raList[$i]->Size % $this->_SMALL_BLOCK_SIZE) { + $sRes .= str_repeat("\x00", $this->_SMALL_BLOCK_SIZE - ($raList[$i]->Size % $this->_SMALL_BLOCK_SIZE)); + } + // Set for PPS + $raList[$i]->_StartBlock = $iSmBlk; + $iSmBlk += $iSmbCnt; + } + } + } + $iSbCnt = floor($this->_BIG_BLOCK_SIZE / PHPExcel_Shared_OLE::OLE_LONG_INT_SIZE); + if ($iSmBlk % $iSbCnt) { + $iB = $iSbCnt - ($iSmBlk % $iSbCnt); + for ($i = 0; $i < $iB; ++$i) { + fwrite($FILE, pack("V", -1)); + } + } + return $sRes; + } + + /** + * Saves all the PPS's WKs + * + * @access public + * @param array $raList Reference to an array with all PPS's + */ + public function _savePps(&$raList) + { + // Save each PPS WK + $iC = count($raList); + for ($i = 0; $i < $iC; ++$i) { + fwrite($this->_FILEH_, $raList[$i]->_getPpsWk()); + } + // Adjust for Block + $iCnt = count($raList); + $iBCnt = $this->_BIG_BLOCK_SIZE / PHPExcel_Shared_OLE::OLE_PPS_SIZE; + if ($iCnt % $iBCnt) { + fwrite($this->_FILEH_, str_repeat("\x00", ($iBCnt - ($iCnt % $iBCnt)) * PHPExcel_Shared_OLE::OLE_PPS_SIZE)); + } + } + + /** + * Saving Big Block Depot + * + * @access public + * @param integer $iSbdSize + * @param integer $iBsize + * @param integer $iPpsCnt + */ + public function _saveBbd($iSbdSize, $iBsize, $iPpsCnt) + { + $FILE = $this->_FILEH_; + // Calculate Basic Setting + $iBbCnt = $this->_BIG_BLOCK_SIZE / PHPExcel_Shared_OLE::OLE_LONG_INT_SIZE; + $i1stBdL = ($this->_BIG_BLOCK_SIZE - 0x4C) / PHPExcel_Shared_OLE::OLE_LONG_INT_SIZE; + + $iBdExL = 0; + $iAll = $iBsize + $iPpsCnt + $iSbdSize; + $iAllW = $iAll; + $iBdCntW = floor($iAllW / $iBbCnt) + (($iAllW % $iBbCnt)? 1: 0); + $iBdCnt = floor(($iAll + $iBdCntW) / $iBbCnt) + ((($iAllW+$iBdCntW) % $iBbCnt)? 1: 0); + // Calculate BD count + if ($iBdCnt >$i1stBdL) { + while (1) { + ++$iBdExL; + ++$iAllW; + $iBdCntW = floor($iAllW / $iBbCnt) + (($iAllW % $iBbCnt)? 1: 0); + $iBdCnt = floor(($iAllW + $iBdCntW) / $iBbCnt) + ((($iAllW+$iBdCntW) % $iBbCnt)? 1: 0); + if ($iBdCnt <= ($iBdExL*$iBbCnt+ $i1stBdL)) { + break; + } + } + } + + // Making BD + // Set for SBD + if ($iSbdSize > 0) { + for ($i = 0; $i < ($iSbdSize - 1); ++$i) { + fwrite($FILE, pack("V", $i+1)); + } + fwrite($FILE, pack("V", -2)); + } + // Set for B + for ($i = 0; $i < ($iBsize - 1); ++$i) { + fwrite($FILE, pack("V", $i+$iSbdSize+1)); + } + fwrite($FILE, pack("V", -2)); + + // Set for PPS + for ($i = 0; $i < ($iPpsCnt - 1); ++$i) { + fwrite($FILE, pack("V", $i+$iSbdSize+$iBsize+1)); + } + fwrite($FILE, pack("V", -2)); + // Set for BBD itself ( 0xFFFFFFFD : BBD) + for ($i = 0; $i < $iBdCnt; ++$i) { + fwrite($FILE, pack("V", 0xFFFFFFFD)); + } + // Set for ExtraBDList + for ($i = 0; $i < $iBdExL; ++$i) { + fwrite($FILE, pack("V", 0xFFFFFFFC)); + } + // Adjust for Block + if (($iAllW + $iBdCnt) % $iBbCnt) { + $iBlock = ($iBbCnt - (($iAllW + $iBdCnt) % $iBbCnt)); + for ($i = 0; $i < $iBlock; ++$i) { + fwrite($FILE, pack("V", -1)); + } + } + // Extra BDList + if ($iBdCnt > $i1stBdL) { + $iN=0; + $iNb=0; + for ($i = $i1stBdL; $i < $iBdCnt; $i++, ++$iN) { + if ($iN >= ($iBbCnt - 1)) { + $iN = 0; + ++$iNb; + fwrite($FILE, pack("V", $iAll+$iBdCnt+$iNb)); + } + fwrite($FILE, pack("V", $iBsize+$iSbdSize+$iPpsCnt+$i)); + } + if (($iBdCnt-$i1stBdL) % ($iBbCnt-1)) { + $iB = ($iBbCnt - 1) - (($iBdCnt - $i1stBdL) % ($iBbCnt - 1)); + for ($i = 0; $i < $iB; ++$i) { + fwrite($FILE, pack("V", -1)); + } + } + fwrite($FILE, pack("V", -2)); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLERead.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLERead.php new file mode 100644 index 0000000..6b15d97 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLERead.php @@ -0,0 +1,318 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +defined('IDENTIFIER_OLE') || + define('IDENTIFIER_OLE', pack('CCCCCCCC', 0xd0, 0xcf, 0x11, 0xe0, 0xa1, 0xb1, 0x1a, 0xe1)); + +class PHPExcel_Shared_OLERead +{ + private $data = ''; + + // OLE identifier + const IDENTIFIER_OLE = IDENTIFIER_OLE; + + // Size of a sector = 512 bytes + const BIG_BLOCK_SIZE = 0x200; + + // Size of a short sector = 64 bytes + const SMALL_BLOCK_SIZE = 0x40; + + // Size of a directory entry always = 128 bytes + const PROPERTY_STORAGE_BLOCK_SIZE = 0x80; + + // Minimum size of a standard stream = 4096 bytes, streams smaller than this are stored as short streams + const SMALL_BLOCK_THRESHOLD = 0x1000; + + // header offsets + const NUM_BIG_BLOCK_DEPOT_BLOCKS_POS = 0x2c; + const ROOT_START_BLOCK_POS = 0x30; + const SMALL_BLOCK_DEPOT_BLOCK_POS = 0x3c; + const EXTENSION_BLOCK_POS = 0x44; + const NUM_EXTENSION_BLOCK_POS = 0x48; + const BIG_BLOCK_DEPOT_BLOCKS_POS = 0x4c; + + // property storage offsets (directory offsets) + const SIZE_OF_NAME_POS = 0x40; + const TYPE_POS = 0x42; + const START_BLOCK_POS = 0x74; + const SIZE_POS = 0x78; + + + + public $wrkbook = null; + public $summaryInformation = null; + public $documentSummaryInformation = null; + + + /** + * Read the file + * + * @param $sFileName string Filename + * @throws PHPExcel_Reader_Exception + */ + public function read($sFileName) + { + // Check if file exists and is readable + if (!is_readable($sFileName)) { + throw new PHPExcel_Reader_Exception("Could not open " . $sFileName . " for reading! File does not exist, or it is not readable."); + } + + // Get the file identifier + // Don't bother reading the whole file until we know it's a valid OLE file + $this->data = file_get_contents($sFileName, false, null, 0, 8); + + // Check OLE identifier + if ($this->data != self::IDENTIFIER_OLE) { + throw new PHPExcel_Reader_Exception('The filename ' . $sFileName . ' is not recognised as an OLE file'); + } + + // Get the file data + $this->data = file_get_contents($sFileName); + + // Total number of sectors used for the SAT + $this->numBigBlockDepotBlocks = self::getInt4d($this->data, self::NUM_BIG_BLOCK_DEPOT_BLOCKS_POS); + + // SecID of the first sector of the directory stream + $this->rootStartBlock = self::getInt4d($this->data, self::ROOT_START_BLOCK_POS); + + // SecID of the first sector of the SSAT (or -2 if not extant) + $this->sbdStartBlock = self::getInt4d($this->data, self::SMALL_BLOCK_DEPOT_BLOCK_POS); + + // SecID of the first sector of the MSAT (or -2 if no additional sectors are used) + $this->extensionBlock = self::getInt4d($this->data, self::EXTENSION_BLOCK_POS); + + // Total number of sectors used by MSAT + $this->numExtensionBlocks = self::getInt4d($this->data, self::NUM_EXTENSION_BLOCK_POS); + + $bigBlockDepotBlocks = array(); + $pos = self::BIG_BLOCK_DEPOT_BLOCKS_POS; + + $bbdBlocks = $this->numBigBlockDepotBlocks; + + if ($this->numExtensionBlocks != 0) { + $bbdBlocks = (self::BIG_BLOCK_SIZE - self::BIG_BLOCK_DEPOT_BLOCKS_POS)/4; + } + + for ($i = 0; $i < $bbdBlocks; ++$i) { + $bigBlockDepotBlocks[$i] = self::getInt4d($this->data, $pos); + $pos += 4; + } + + for ($j = 0; $j < $this->numExtensionBlocks; ++$j) { + $pos = ($this->extensionBlock + 1) * self::BIG_BLOCK_SIZE; + $blocksToRead = min($this->numBigBlockDepotBlocks - $bbdBlocks, self::BIG_BLOCK_SIZE / 4 - 1); + + for ($i = $bbdBlocks; $i < $bbdBlocks + $blocksToRead; ++$i) { + $bigBlockDepotBlocks[$i] = self::getInt4d($this->data, $pos); + $pos += 4; + } + + $bbdBlocks += $blocksToRead; + if ($bbdBlocks < $this->numBigBlockDepotBlocks) { + $this->extensionBlock = self::getInt4d($this->data, $pos); + } + } + + $pos = 0; + $this->bigBlockChain = ''; + $bbs = self::BIG_BLOCK_SIZE / 4; + for ($i = 0; $i < $this->numBigBlockDepotBlocks; ++$i) { + $pos = ($bigBlockDepotBlocks[$i] + 1) * self::BIG_BLOCK_SIZE; + + $this->bigBlockChain .= substr($this->data, $pos, 4*$bbs); + $pos += 4*$bbs; + } + + $pos = 0; + $sbdBlock = $this->sbdStartBlock; + $this->smallBlockChain = ''; + while ($sbdBlock != -2) { + $pos = ($sbdBlock + 1) * self::BIG_BLOCK_SIZE; + + $this->smallBlockChain .= substr($this->data, $pos, 4*$bbs); + $pos += 4*$bbs; + + $sbdBlock = self::getInt4d($this->bigBlockChain, $sbdBlock*4); + } + + // read the directory stream + $block = $this->rootStartBlock; + $this->entry = $this->_readData($block); + + $this->readPropertySets(); + } + + /** + * Extract binary stream data + * + * @return string + */ + public function getStream($stream) + { + if ($stream === null) { + return null; + } + + $streamData = ''; + + if ($this->props[$stream]['size'] < self::SMALL_BLOCK_THRESHOLD) { + $rootdata = $this->_readData($this->props[$this->rootentry]['startBlock']); + + $block = $this->props[$stream]['startBlock']; + + while ($block != -2) { + $pos = $block * self::SMALL_BLOCK_SIZE; + $streamData .= substr($rootdata, $pos, self::SMALL_BLOCK_SIZE); + + $block = self::getInt4d($this->smallBlockChain, $block*4); + } + + return $streamData; + } else { + $numBlocks = $this->props[$stream]['size'] / self::BIG_BLOCK_SIZE; + if ($this->props[$stream]['size'] % self::BIG_BLOCK_SIZE != 0) { + ++$numBlocks; + } + + if ($numBlocks == 0) { + return ''; + } + + $block = $this->props[$stream]['startBlock']; + + while ($block != -2) { + $pos = ($block + 1) * self::BIG_BLOCK_SIZE; + $streamData .= substr($this->data, $pos, self::BIG_BLOCK_SIZE); + $block = self::getInt4d($this->bigBlockChain, $block*4); + } + + return $streamData; + } + } + + /** + * Read a standard stream (by joining sectors using information from SAT) + * + * @param int $bl Sector ID where the stream starts + * @return string Data for standard stream + */ + private function _readData($bl) + { + $block = $bl; + $data = ''; + + while ($block != -2) { + $pos = ($block + 1) * self::BIG_BLOCK_SIZE; + $data .= substr($this->data, $pos, self::BIG_BLOCK_SIZE); + $block = self::getInt4d($this->bigBlockChain, $block*4); + } + return $data; + } + + /** + * Read entries in the directory stream. + */ + private function readPropertySets() + { + $offset = 0; + + // loop through entires, each entry is 128 bytes + $entryLen = strlen($this->entry); + while ($offset < $entryLen) { + // entry data (128 bytes) + $d = substr($this->entry, $offset, self::PROPERTY_STORAGE_BLOCK_SIZE); + + // size in bytes of name + $nameSize = ord($d[self::SIZE_OF_NAME_POS]) | (ord($d[self::SIZE_OF_NAME_POS+1]) << 8); + + // type of entry + $type = ord($d[self::TYPE_POS]); + + // sectorID of first sector or short sector, if this entry refers to a stream (the case with workbook) + // sectorID of first sector of the short-stream container stream, if this entry is root entry + $startBlock = self::getInt4d($d, self::START_BLOCK_POS); + + $size = self::getInt4d($d, self::SIZE_POS); + + $name = str_replace("\x00", "", substr($d, 0, $nameSize)); + + $this->props[] = array( + 'name' => $name, + 'type' => $type, + 'startBlock' => $startBlock, + 'size' => $size + ); + + // tmp helper to simplify checks + $upName = strtoupper($name); + + // Workbook directory entry (BIFF5 uses Book, BIFF8 uses Workbook) + if (($upName === 'WORKBOOK') || ($upName === 'BOOK')) { + $this->wrkbook = count($this->props) - 1; + } elseif ($upName === 'ROOT ENTRY' || $upName === 'R') { + // Root entry + $this->rootentry = count($this->props) - 1; + } + + // Summary information + if ($name == chr(5) . 'SummaryInformation') { +// echo 'Summary Information<br />'; + $this->summaryInformation = count($this->props) - 1; + } + + // Additional Document Summary information + if ($name == chr(5) . 'DocumentSummaryInformation') { +// echo 'Document Summary Information<br />'; + $this->documentSummaryInformation = count($this->props) - 1; + } + + $offset += self::PROPERTY_STORAGE_BLOCK_SIZE; + } + } + + /** + * Read 4 bytes of data at specified position + * + * @param string $data + * @param int $pos + * @return int + */ + private static function getInt4d($data, $pos) + { + // FIX: represent numbers correctly on 64-bit system + // http://sourceforge.net/tracker/index.php?func=detail&aid=1487372&group_id=99160&atid=623334 + // Hacked by Andreas Rehm 2006 to ensure correct result of the <<24 block on 32 and 64bit systems + $_or_24 = ord($data[$pos + 3]); + if ($_or_24 >= 128) { + // negative number + $_ord_24 = -abs((256 - $_or_24) << 24); + } else { + $_ord_24 = ($_or_24 & 127) << 24; + } + return ord($data[$pos]) | (ord($data[$pos + 1]) << 8) | (ord($data[$pos + 2]) << 16) | $_ord_24; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/gnu-lgpl.txt b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/gnu-lgpl.txt new file mode 100644 index 0000000..cbee875 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/gnu-lgpl.txt @@ -0,0 +1,504 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + <one line to give the library's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + <signature of Ty Coon>, 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php new file mode 100644 index 0000000..a5a9b0a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php @@ -0,0 +1,5173 @@ +<?php +// -------------------------------------------------------------------------------- +// PhpConcept Library - Zip Module 2.8.2 +// -------------------------------------------------------------------------------- +// License GNU/LGPL - Vincent Blavet - August 2009 +// http://www.phpconcept.net +// -------------------------------------------------------------------------------- +// +// Presentation : +// PclZip is a PHP library that manage ZIP archives. +// So far tests show that archives generated by PclZip are readable by +// WinZip application and other tools. +// +// Description : +// See readme.txt and http://www.phpconcept.net +// +// Warning : +// This library and the associated files are non commercial, non professional +// work. +// It should not have unexpected results. However if any damage is caused by +// this software the author can not be responsible. +// The use of this software is at the risk of the user. +// +// -------------------------------------------------------------------------------- +// $Id: pclzip.lib.php,v 1.60 2009/09/30 21:01:04 vblavet Exp $ +// -------------------------------------------------------------------------------- + +// ----- Constants +if (!defined('PCLZIP_READ_BLOCK_SIZE')) { + define('PCLZIP_READ_BLOCK_SIZE', 2048); +} + +// ----- File list separator +// In version 1.x of PclZip, the separator for file list is a space +// (which is not a very smart choice, specifically for windows paths !). +// A better separator should be a comma (,). This constant gives you the +// abilty to change that. +// However notice that changing this value, may have impact on existing +// scripts, using space separated filenames. +// Recommanded values for compatibility with older versions : +//define('PCLZIP_SEPARATOR', ' '); +// Recommanded values for smart separation of filenames. +if (!defined('PCLZIP_SEPARATOR')) { + define('PCLZIP_SEPARATOR', ','); +} + +// ----- Error configuration +// 0 : PclZip Class integrated error handling +// 1 : PclError external library error handling. By enabling this +// you must ensure that you have included PclError library. +// [2,...] : reserved for futur use +if (!defined('PCLZIP_ERROR_EXTERNAL')) { + define('PCLZIP_ERROR_EXTERNAL', 0); +} + +// ----- Optional static temporary directory +// By default temporary files are generated in the script current +// path. +// If defined : +// - MUST BE terminated by a '/'. +// - MUST be a valid, already created directory +// Samples : +// define('PCLZIP_TEMPORARY_DIR', '/temp/'); +// define('PCLZIP_TEMPORARY_DIR', 'C:/Temp/'); +if (!defined('PCLZIP_TEMPORARY_DIR')) { + define('PCLZIP_TEMPORARY_DIR', ''); +} + +// ----- Optional threshold ratio for use of temporary files +// Pclzip sense the size of the file to add/extract and decide to +// use or not temporary file. The algorythm is looking for +// memory_limit of PHP and apply a ratio. +// threshold = memory_limit * ratio. +// Recommended values are under 0.5. Default 0.47. +// Samples : +// define('PCLZIP_TEMPORARY_FILE_RATIO', 0.5); +if (!defined('PCLZIP_TEMPORARY_FILE_RATIO')) { + define('PCLZIP_TEMPORARY_FILE_RATIO', 0.47); +} + +// -------------------------------------------------------------------------------- +// ***** UNDER THIS LINE NOTHING NEEDS TO BE MODIFIED ***** +// -------------------------------------------------------------------------------- + +// ----- Global variables +$g_pclzip_version = "2.8.2"; + +// ----- Error codes +// -1 : Unable to open file in binary write mode +// -2 : Unable to open file in binary read mode +// -3 : Invalid parameters +// -4 : File does not exist +// -5 : Filename is too long (max. 255) +// -6 : Not a valid zip file +// -7 : Invalid extracted file size +// -8 : Unable to create directory +// -9 : Invalid archive extension +// -10 : Invalid archive format +// -11 : Unable to delete file (unlink) +// -12 : Unable to rename file (rename) +// -13 : Invalid header checksum +// -14 : Invalid archive size +define('PCLZIP_ERR_USER_ABORTED', 2); +define('PCLZIP_ERR_NO_ERROR', 0); +define('PCLZIP_ERR_WRITE_OPEN_FAIL', -1); +define('PCLZIP_ERR_READ_OPEN_FAIL', -2); +define('PCLZIP_ERR_INVALID_PARAMETER', -3); +define('PCLZIP_ERR_MISSING_FILE', -4); +define('PCLZIP_ERR_FILENAME_TOO_LONG', -5); +define('PCLZIP_ERR_INVALID_ZIP', -6); +define('PCLZIP_ERR_BAD_EXTRACTED_FILE', -7); +define('PCLZIP_ERR_DIR_CREATE_FAIL', -8); +define('PCLZIP_ERR_BAD_EXTENSION', -9); +define('PCLZIP_ERR_BAD_FORMAT', -10); +define('PCLZIP_ERR_DELETE_FILE_FAIL', -11); +define('PCLZIP_ERR_RENAME_FILE_FAIL', -12); +define('PCLZIP_ERR_BAD_CHECKSUM', -13); +define('PCLZIP_ERR_INVALID_ARCHIVE_ZIP', -14); +define('PCLZIP_ERR_MISSING_OPTION_VALUE', -15); +define('PCLZIP_ERR_INVALID_OPTION_VALUE', -16); +define('PCLZIP_ERR_ALREADY_A_DIRECTORY', -17); +define('PCLZIP_ERR_UNSUPPORTED_COMPRESSION', -18); +define('PCLZIP_ERR_UNSUPPORTED_ENCRYPTION', -19); +define('PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE', -20); +define('PCLZIP_ERR_DIRECTORY_RESTRICTION', -21); + +// ----- Options values +define('PCLZIP_OPT_PATH', 77001); +define('PCLZIP_OPT_ADD_PATH', 77002); +define('PCLZIP_OPT_REMOVE_PATH', 77003); +define('PCLZIP_OPT_REMOVE_ALL_PATH', 77004); +define('PCLZIP_OPT_SET_CHMOD', 77005); +define('PCLZIP_OPT_EXTRACT_AS_STRING', 77006); +define('PCLZIP_OPT_NO_COMPRESSION', 77007); +define('PCLZIP_OPT_BY_NAME', 77008); +define('PCLZIP_OPT_BY_INDEX', 77009); +define('PCLZIP_OPT_BY_EREG', 77010); +define('PCLZIP_OPT_BY_PREG', 77011); +define('PCLZIP_OPT_COMMENT', 77012); +define('PCLZIP_OPT_ADD_COMMENT', 77013); +define('PCLZIP_OPT_PREPEND_COMMENT', 77014); +define('PCLZIP_OPT_EXTRACT_IN_OUTPUT', 77015); +define('PCLZIP_OPT_REPLACE_NEWER', 77016); +define('PCLZIP_OPT_STOP_ON_ERROR', 77017); +// Having big trouble with crypt. Need to multiply 2 long int +// which is not correctly supported by PHP ... +//define('PCLZIP_OPT_CRYPT', 77018); +define('PCLZIP_OPT_EXTRACT_DIR_RESTRICTION', 77019); +define('PCLZIP_OPT_TEMP_FILE_THRESHOLD', 77020); +define('PCLZIP_OPT_ADD_TEMP_FILE_THRESHOLD', 77020); // alias +define('PCLZIP_OPT_TEMP_FILE_ON', 77021); +define('PCLZIP_OPT_ADD_TEMP_FILE_ON', 77021); // alias +define('PCLZIP_OPT_TEMP_FILE_OFF', 77022); +define('PCLZIP_OPT_ADD_TEMP_FILE_OFF', 77022); // alias + +// ----- File description attributes +define('PCLZIP_ATT_FILE_NAME', 79001); +define('PCLZIP_ATT_FILE_NEW_SHORT_NAME', 79002); +define('PCLZIP_ATT_FILE_NEW_FULL_NAME', 79003); +define('PCLZIP_ATT_FILE_MTIME', 79004); +define('PCLZIP_ATT_FILE_CONTENT', 79005); +define('PCLZIP_ATT_FILE_COMMENT', 79006); + +// ----- Call backs values +define('PCLZIP_CB_PRE_EXTRACT', 78001); +define('PCLZIP_CB_POST_EXTRACT', 78002); +define('PCLZIP_CB_PRE_ADD', 78003); +define('PCLZIP_CB_POST_ADD', 78004); +/* For futur use +define('PCLZIP_CB_PRE_LIST', 78005); +define('PCLZIP_CB_POST_LIST', 78006); +define('PCLZIP_CB_PRE_DELETE', 78007); +define('PCLZIP_CB_POST_DELETE', 78008); +*/ + +// -------------------------------------------------------------------------------- +// Class : PclZip +// Description : +// PclZip is the class that represent a Zip archive. +// The public methods allow the manipulation of the archive. +// Attributes : +// Attributes must not be accessed directly. +// Methods : +// PclZip() : Object creator +// create() : Creates the Zip archive +// listContent() : List the content of the Zip archive +// extract() : Extract the content of the archive +// properties() : List the properties of the archive +// -------------------------------------------------------------------------------- +class PclZip +{ + // ----- Filename of the zip file + public $zipname = ''; + + // ----- File descriptor of the zip file + public $zip_fd = 0; + + // ----- Internal error handling + public $error_code = 1; + public $error_string = ''; + + // ----- Current status of the magic_quotes_runtime + // This value store the php configuration for magic_quotes + // The class can then disable the magic_quotes and reset it after + public $magic_quotes_status; + + // -------------------------------------------------------------------------------- + // Function : PclZip() + // Description : + // Creates a PclZip object and set the name of the associated Zip archive + // filename. + // Note that no real action is taken, if the archive does not exist it is not + // created. Use create() for that. + // -------------------------------------------------------------------------------- + public function __construct($p_zipname) + { + + // ----- Tests the zlib + if (!function_exists('gzopen')) { + die('Abort '.basename(__FILE__).' : Missing zlib extensions'); + } + + // ----- Set the attributes + $this->zipname = $p_zipname; + $this->zip_fd = 0; + $this->magic_quotes_status = -1; + + // ----- Return + return; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : + // create($p_filelist, $p_add_dir="", $p_remove_dir="") + // create($p_filelist, $p_option, $p_option_value, ...) + // Description : + // This method supports two different synopsis. The first one is historical. + // This method creates a Zip Archive. The Zip file is created in the + // filesystem. The files and directories indicated in $p_filelist + // are added in the archive. See the parameters description for the + // supported format of $p_filelist. + // When a directory is in the list, the directory and its content is added + // in the archive. + // In this synopsis, the function takes an optional variable list of + // options. See bellow the supported options. + // Parameters : + // $p_filelist : An array containing file or directory names, or + // a string containing one filename or one directory name, or + // a string containing a list of filenames and/or directory + // names separated by spaces. + // $p_add_dir : A path to add before the real path of the archived file, + // in order to have it memorized in the archive. + // $p_remove_dir : A path to remove from the real path of the file to archive, + // in order to have a shorter path memorized in the archive. + // When $p_add_dir and $p_remove_dir are set, $p_remove_dir + // is removed first, before $p_add_dir is added. + // Options : + // PCLZIP_OPT_ADD_PATH : + // PCLZIP_OPT_REMOVE_PATH : + // PCLZIP_OPT_REMOVE_ALL_PATH : + // PCLZIP_OPT_COMMENT : + // PCLZIP_CB_PRE_ADD : + // PCLZIP_CB_POST_ADD : + // Return Values : + // 0 on failure, + // The list of the added files, with a status of the add action. + // (see PclZip::listContent() for list entry format) + // -------------------------------------------------------------------------------- + public function create($p_filelist) + { + $v_result=1; + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Set default values + $v_options = array(); + $v_options[PCLZIP_OPT_NO_COMPRESSION] = false; + + // ----- Look for variable options arguments + $v_size = func_num_args(); + + // ----- Look for arguments + if ($v_size > 1) { + // ----- Get the arguments + $v_arg_list = func_get_args(); + + // ----- Remove from the options list the first argument + array_shift($v_arg_list); + $v_size--; + + // ----- Look for first arg + if ((is_integer($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { + // ----- Parse the options + $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, array ( + PCLZIP_OPT_REMOVE_PATH => 'optional', + PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', + PCLZIP_OPT_ADD_PATH => 'optional', + PCLZIP_CB_PRE_ADD => 'optional', + PCLZIP_CB_POST_ADD => 'optional', + PCLZIP_OPT_NO_COMPRESSION => 'optional', + PCLZIP_OPT_COMMENT => 'optional', + PCLZIP_OPT_TEMP_FILE_THRESHOLD => 'optional', + PCLZIP_OPT_TEMP_FILE_ON => 'optional', + PCLZIP_OPT_TEMP_FILE_OFF => 'optional' + //, PCLZIP_OPT_CRYPT => 'optional' + )); + if ($v_result != 1) { + return 0; + } + } else { + // ----- Look for 2 args + // Here we need to support the first historic synopsis of the + // method. + // ----- Get the first argument + $v_options[PCLZIP_OPT_ADD_PATH] = $v_arg_list[0]; + + // ----- Look for the optional second argument + if ($v_size == 2) { + $v_options[PCLZIP_OPT_REMOVE_PATH] = $v_arg_list[1]; + } elseif ($v_size > 2) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid number / type of arguments"); + return 0; + } + } + } + + // ----- Look for default option values + $this->privOptionDefaultThreshold($v_options); + + // ----- Init + $v_string_list = array(); + $v_att_list = array(); + $v_filedescr_list = array(); + $p_result_list = array(); + + // ----- Look if the $p_filelist is really an array + if (is_array($p_filelist)) { + // ----- Look if the first element is also an array + // This will mean that this is a file description entry + if (isset($p_filelist[0]) && is_array($p_filelist[0])) { + $v_att_list = $p_filelist; + } else { + // ----- The list is a list of string names + $v_string_list = $p_filelist; + } + } elseif (is_string($p_filelist)) { + // ----- Look if the $p_filelist is a string + // ----- Create a list from the string + $v_string_list = explode(PCLZIP_SEPARATOR, $p_filelist); + } else { + // ----- Invalid variable type for $p_filelist + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid variable type p_filelist"); + return 0; + } + + // ----- Reformat the string list + if (sizeof($v_string_list) != 0) { + foreach ($v_string_list as $v_string) { + if ($v_string != '') { + $v_att_list[][PCLZIP_ATT_FILE_NAME] = $v_string; + } else { + } + } + } + + // ----- For each file in the list check the attributes + $v_supported_attributes = array( + PCLZIP_ATT_FILE_NAME => 'mandatory', + PCLZIP_ATT_FILE_NEW_SHORT_NAME => 'optional', + PCLZIP_ATT_FILE_NEW_FULL_NAME => 'optional', + PCLZIP_ATT_FILE_MTIME => 'optional', + PCLZIP_ATT_FILE_CONTENT => 'optional', + PCLZIP_ATT_FILE_COMMENT => 'optional' + ); + foreach ($v_att_list as $v_entry) { + $v_result = $this->privFileDescrParseAtt($v_entry, $v_filedescr_list[], $v_options, $v_supported_attributes); + if ($v_result != 1) { + return 0; + } + } + + // ----- Expand the filelist (expand directories) + $v_result = $this->privFileDescrExpand($v_filedescr_list, $v_options); + if ($v_result != 1) { + return 0; + } + + // ----- Call the create fct + $v_result = $this->privCreate($v_filedescr_list, $p_result_list, $v_options); + if ($v_result != 1) { + return 0; + } + + // ----- Return + return $p_result_list; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : + // add($p_filelist, $p_add_dir="", $p_remove_dir="") + // add($p_filelist, $p_option, $p_option_value, ...) + // Description : + // This method supports two synopsis. The first one is historical. + // This methods add the list of files in an existing archive. + // If a file with the same name already exists, it is added at the end of the + // archive, the first one is still present. + // If the archive does not exist, it is created. + // Parameters : + // $p_filelist : An array containing file or directory names, or + // a string containing one filename or one directory name, or + // a string containing a list of filenames and/or directory + // names separated by spaces. + // $p_add_dir : A path to add before the real path of the archived file, + // in order to have it memorized in the archive. + // $p_remove_dir : A path to remove from the real path of the file to archive, + // in order to have a shorter path memorized in the archive. + // When $p_add_dir and $p_remove_dir are set, $p_remove_dir + // is removed first, before $p_add_dir is added. + // Options : + // PCLZIP_OPT_ADD_PATH : + // PCLZIP_OPT_REMOVE_PATH : + // PCLZIP_OPT_REMOVE_ALL_PATH : + // PCLZIP_OPT_COMMENT : + // PCLZIP_OPT_ADD_COMMENT : + // PCLZIP_OPT_PREPEND_COMMENT : + // PCLZIP_CB_PRE_ADD : + // PCLZIP_CB_POST_ADD : + // Return Values : + // 0 on failure, + // The list of the added files, with a status of the add action. + // (see PclZip::listContent() for list entry format) + // -------------------------------------------------------------------------------- + public function add($p_filelist) + { + $v_result=1; + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Set default values + $v_options = array(); + $v_options[PCLZIP_OPT_NO_COMPRESSION] = false; + + // ----- Look for variable options arguments + $v_size = func_num_args(); + + // ----- Look for arguments + if ($v_size > 1) { + // ----- Get the arguments + $v_arg_list = func_get_args(); + + // ----- Remove form the options list the first argument + array_shift($v_arg_list); + $v_size--; + + // ----- Look for first arg + if ((is_integer($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { + // ----- Parse the options + $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, array ( + PCLZIP_OPT_REMOVE_PATH => 'optional', + PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', + PCLZIP_OPT_ADD_PATH => 'optional', + PCLZIP_CB_PRE_ADD => 'optional', + PCLZIP_CB_POST_ADD => 'optional', + PCLZIP_OPT_NO_COMPRESSION => 'optional', + PCLZIP_OPT_COMMENT => 'optional', + PCLZIP_OPT_ADD_COMMENT => 'optional', + PCLZIP_OPT_PREPEND_COMMENT => 'optional', + PCLZIP_OPT_TEMP_FILE_THRESHOLD => 'optional', + PCLZIP_OPT_TEMP_FILE_ON => 'optional', + PCLZIP_OPT_TEMP_FILE_OFF => 'optional' + //, PCLZIP_OPT_CRYPT => 'optional' + )); + if ($v_result != 1) { + return 0; + } + } else { + // ----- Look for 2 args + // Here we need to support the first historic synopsis of the + // method. + // ----- Get the first argument + $v_options[PCLZIP_OPT_ADD_PATH] = $v_add_path = $v_arg_list[0]; + + // ----- Look for the optional second argument + if ($v_size == 2) { + $v_options[PCLZIP_OPT_REMOVE_PATH] = $v_arg_list[1]; + } elseif ($v_size > 2) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid number / type of arguments"); + + // ----- Return + return 0; + } + } + } + + // ----- Look for default option values + $this->privOptionDefaultThreshold($v_options); + + // ----- Init + $v_string_list = array(); + $v_att_list = array(); + $v_filedescr_list = array(); + $p_result_list = array(); + + // ----- Look if the $p_filelist is really an array + if (is_array($p_filelist)) { + // ----- Look if the first element is also an array + // This will mean that this is a file description entry + if (isset($p_filelist[0]) && is_array($p_filelist[0])) { + $v_att_list = $p_filelist; + } else { + // ----- The list is a list of string names + $v_string_list = $p_filelist; + } + } elseif (is_string($p_filelist)) { + // ----- Look if the $p_filelist is a string + // ----- Create a list from the string + $v_string_list = explode(PCLZIP_SEPARATOR, $p_filelist); + } else { + // ----- Invalid variable type for $p_filelist + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid variable type '".gettype($p_filelist)."' for p_filelist"); + return 0; + } + + // ----- Reformat the string list + if (sizeof($v_string_list) != 0) { + foreach ($v_string_list as $v_string) { + $v_att_list[][PCLZIP_ATT_FILE_NAME] = $v_string; + } + } + + // ----- For each file in the list check the attributes + $v_supported_attributes = array( + PCLZIP_ATT_FILE_NAME => 'mandatory', + PCLZIP_ATT_FILE_NEW_SHORT_NAME => 'optional', + PCLZIP_ATT_FILE_NEW_FULL_NAME => 'optional', + PCLZIP_ATT_FILE_MTIME => 'optional', + PCLZIP_ATT_FILE_CONTENT => 'optional', + PCLZIP_ATT_FILE_COMMENT => 'optional', + ); + foreach ($v_att_list as $v_entry) { + $v_result = $this->privFileDescrParseAtt($v_entry, $v_filedescr_list[], $v_options, $v_supported_attributes); + if ($v_result != 1) { + return 0; + } + } + + // ----- Expand the filelist (expand directories) + $v_result = $this->privFileDescrExpand($v_filedescr_list, $v_options); + if ($v_result != 1) { + return 0; + } + + // ----- Call the create fct + $v_result = $this->privAdd($v_filedescr_list, $p_result_list, $v_options); + if ($v_result != 1) { + return 0; + } + + // ----- Return + return $p_result_list; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : listContent() + // Description : + // This public method, gives the list of the files and directories, with their + // properties. + // The properties of each entries in the list are (used also in other functions) : + // filename : Name of the file. For a create or add action it is the filename + // given by the user. For an extract function it is the filename + // of the extracted file. + // stored_filename : Name of the file / directory stored in the archive. + // size : Size of the stored file. + // compressed_size : Size of the file's data compressed in the archive + // (without the headers overhead) + // mtime : Last known modification date of the file (UNIX timestamp) + // comment : Comment associated with the file + // folder : true | false + // index : index of the file in the archive + // status : status of the action (depending of the action) : + // Values are : + // ok : OK ! + // filtered : the file / dir is not extracted (filtered by user) + // already_a_directory : the file can not be extracted because a + // directory with the same name already exists + // write_protected : the file can not be extracted because a file + // with the same name already exists and is + // write protected + // newer_exist : the file was not extracted because a newer file exists + // path_creation_fail : the file is not extracted because the folder + // does not exist and can not be created + // write_error : the file was not extracted because there was a + // error while writing the file + // read_error : the file was not extracted because there was a error + // while reading the file + // invalid_header : the file was not extracted because of an archive + // format error (bad file header) + // Note that each time a method can continue operating when there + // is an action error on a file, the error is only logged in the file status. + // Return Values : + // 0 on an unrecoverable failure, + // The list of the files in the archive. + // -------------------------------------------------------------------------------- + public function listContent() + { + $v_result=1; + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Check archive + if (!$this->privCheckFormat()) { + return(0); + } + + // ----- Call the extracting fct + $p_list = array(); + if (($v_result = $this->privList($p_list)) != 1) { + unset($p_list); + return(0); + } + + // ----- Return + return $p_list; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : + // extract($p_path="./", $p_remove_path="") + // extract([$p_option, $p_option_value, ...]) + // Description : + // This method supports two synopsis. The first one is historical. + // This method extract all the files / directories from the archive to the + // folder indicated in $p_path. + // If you want to ignore the 'root' part of path of the memorized files + // you can indicate this in the optional $p_remove_path parameter. + // By default, if a newer file with the same name already exists, the + // file is not extracted. + // + // If both PCLZIP_OPT_PATH and PCLZIP_OPT_ADD_PATH aoptions + // are used, the path indicated in PCLZIP_OPT_ADD_PATH is append + // at the end of the path value of PCLZIP_OPT_PATH. + // Parameters : + // $p_path : Path where the files and directories are to be extracted + // $p_remove_path : First part ('root' part) of the memorized path + // (if any similar) to remove while extracting. + // Options : + // PCLZIP_OPT_PATH : + // PCLZIP_OPT_ADD_PATH : + // PCLZIP_OPT_REMOVE_PATH : + // PCLZIP_OPT_REMOVE_ALL_PATH : + // PCLZIP_CB_PRE_EXTRACT : + // PCLZIP_CB_POST_EXTRACT : + // Return Values : + // 0 or a negative value on failure, + // The list of the extracted files, with a status of the action. + // (see PclZip::listContent() for list entry format) + // -------------------------------------------------------------------------------- + public function extract() + { + $v_result=1; + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Check archive + if (!$this->privCheckFormat()) { + return(0); + } + + // ----- Set default values + $v_options = array(); + // $v_path = "./"; + $v_path = ''; + $v_remove_path = ""; + $v_remove_all_path = false; + + // ----- Look for variable options arguments + $v_size = func_num_args(); + + // ----- Default values for option + $v_options[PCLZIP_OPT_EXTRACT_AS_STRING] = false; + + // ----- Look for arguments + if ($v_size > 0) { + // ----- Get the arguments + $v_arg_list = func_get_args(); + + // ----- Look for first arg + if ((is_integer($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { + // ----- Parse the options + $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, array ( + PCLZIP_OPT_PATH => 'optional', + PCLZIP_OPT_REMOVE_PATH => 'optional', + PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', + PCLZIP_OPT_ADD_PATH => 'optional', + PCLZIP_CB_PRE_EXTRACT => 'optional', + PCLZIP_CB_POST_EXTRACT => 'optional', + PCLZIP_OPT_SET_CHMOD => 'optional', + PCLZIP_OPT_BY_NAME => 'optional', + PCLZIP_OPT_BY_EREG => 'optional', + PCLZIP_OPT_BY_PREG => 'optional', + PCLZIP_OPT_BY_INDEX => 'optional', + PCLZIP_OPT_EXTRACT_AS_STRING => 'optional', + PCLZIP_OPT_EXTRACT_IN_OUTPUT => 'optional', + PCLZIP_OPT_REPLACE_NEWER => 'optional', + PCLZIP_OPT_STOP_ON_ERROR => 'optional', + PCLZIP_OPT_EXTRACT_DIR_RESTRICTION => 'optional', + PCLZIP_OPT_TEMP_FILE_THRESHOLD => 'optional', + PCLZIP_OPT_TEMP_FILE_ON => 'optional', + PCLZIP_OPT_TEMP_FILE_OFF => 'optional' + )); + if ($v_result != 1) { + return 0; + } + + // ----- Set the arguments + if (isset($v_options[PCLZIP_OPT_PATH])) { + $v_path = $v_options[PCLZIP_OPT_PATH]; + } + if (isset($v_options[PCLZIP_OPT_REMOVE_PATH])) { + $v_remove_path = $v_options[PCLZIP_OPT_REMOVE_PATH]; + } + if (isset($v_options[PCLZIP_OPT_REMOVE_ALL_PATH])) { + $v_remove_all_path = $v_options[PCLZIP_OPT_REMOVE_ALL_PATH]; + } + if (isset($v_options[PCLZIP_OPT_ADD_PATH])) { + // ----- Check for '/' in last path char + if ((strlen($v_path) > 0) && (substr($v_path, -1) != '/')) { + $v_path .= '/'; + } + $v_path .= $v_options[PCLZIP_OPT_ADD_PATH]; + } + } else { + // ----- Look for 2 args + // Here we need to support the first historic synopsis of the + // method. + // ----- Get the first argument + $v_path = $v_arg_list[0]; + + // ----- Look for the optional second argument + if ($v_size == 2) { + $v_remove_path = $v_arg_list[1]; + } elseif ($v_size > 2) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid number / type of arguments"); + + // ----- Return + return 0; + } + } + } + + // ----- Look for default option values + $this->privOptionDefaultThreshold($v_options); + + // ----- Trace + + // ----- Call the extracting fct + $p_list = array(); + $v_result = $this->privExtractByRule($p_list, $v_path, $v_remove_path, $v_remove_all_path, $v_options); + if ($v_result < 1) { + unset($p_list); + return(0); + } + + // ----- Return + return $p_list; + } + // -------------------------------------------------------------------------------- + + + // -------------------------------------------------------------------------------- + // Function : + // extractByIndex($p_index, $p_path="./", $p_remove_path="") + // extractByIndex($p_index, [$p_option, $p_option_value, ...]) + // Description : + // This method supports two synopsis. The first one is historical. + // This method is doing a partial extract of the archive. + // The extracted files or folders are identified by their index in the + // archive (from 0 to n). + // Note that if the index identify a folder, only the folder entry is + // extracted, not all the files included in the archive. + // Parameters : + // $p_index : A single index (integer) or a string of indexes of files to + // extract. The form of the string is "0,4-6,8-12" with only numbers + // and '-' for range or ',' to separate ranges. No spaces or ';' + // are allowed. + // $p_path : Path where the files and directories are to be extracted + // $p_remove_path : First part ('root' part) of the memorized path + // (if any similar) to remove while extracting. + // Options : + // PCLZIP_OPT_PATH : + // PCLZIP_OPT_ADD_PATH : + // PCLZIP_OPT_REMOVE_PATH : + // PCLZIP_OPT_REMOVE_ALL_PATH : + // PCLZIP_OPT_EXTRACT_AS_STRING : The files are extracted as strings and + // not as files. + // The resulting content is in a new field 'content' in the file + // structure. + // This option must be used alone (any other options are ignored). + // PCLZIP_CB_PRE_EXTRACT : + // PCLZIP_CB_POST_EXTRACT : + // Return Values : + // 0 on failure, + // The list of the extracted files, with a status of the action. + // (see PclZip::listContent() for list entry format) + // -------------------------------------------------------------------------------- + //function extractByIndex($p_index, options...) + public function extractByIndex($p_index) + { + $v_result=1; + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Check archive + if (!$this->privCheckFormat()) { + return(0); + } + + // ----- Set default values + $v_options = array(); + // $v_path = "./"; + $v_path = ''; + $v_remove_path = ""; + $v_remove_all_path = false; + + // ----- Look for variable options arguments + $v_size = func_num_args(); + + // ----- Default values for option + $v_options[PCLZIP_OPT_EXTRACT_AS_STRING] = false; + + // ----- Look for arguments + if ($v_size > 1) { + // ----- Get the arguments + $v_arg_list = func_get_args(); + + // ----- Remove form the options list the first argument + array_shift($v_arg_list); + $v_size--; + + // ----- Look for first arg + if ((is_integer($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { + // ----- Parse the options + $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, array( + PCLZIP_OPT_PATH => 'optional', + PCLZIP_OPT_REMOVE_PATH => 'optional', + PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', + PCLZIP_OPT_EXTRACT_AS_STRING => 'optional', + PCLZIP_OPT_ADD_PATH => 'optional', + PCLZIP_CB_PRE_EXTRACT => 'optional', + PCLZIP_CB_POST_EXTRACT => 'optional', + PCLZIP_OPT_SET_CHMOD => 'optional', + PCLZIP_OPT_REPLACE_NEWER => 'optional', + PCLZIP_OPT_STOP_ON_ERROR => 'optional', + PCLZIP_OPT_EXTRACT_DIR_RESTRICTION => 'optional', + PCLZIP_OPT_TEMP_FILE_THRESHOLD => 'optional', + PCLZIP_OPT_TEMP_FILE_ON => 'optional', + PCLZIP_OPT_TEMP_FILE_OFF => 'optional' + )); + if ($v_result != 1) { + return 0; + } + + // ----- Set the arguments + if (isset($v_options[PCLZIP_OPT_PATH])) { + $v_path = $v_options[PCLZIP_OPT_PATH]; + } + if (isset($v_options[PCLZIP_OPT_REMOVE_PATH])) { + $v_remove_path = $v_options[PCLZIP_OPT_REMOVE_PATH]; + } + if (isset($v_options[PCLZIP_OPT_REMOVE_ALL_PATH])) { + $v_remove_all_path = $v_options[PCLZIP_OPT_REMOVE_ALL_PATH]; + } + if (isset($v_options[PCLZIP_OPT_ADD_PATH])) { + // ----- Check for '/' in last path char + if ((strlen($v_path) > 0) && (substr($v_path, -1) != '/')) { + $v_path .= '/'; + } + $v_path .= $v_options[PCLZIP_OPT_ADD_PATH]; + } + if (!isset($v_options[PCLZIP_OPT_EXTRACT_AS_STRING])) { + $v_options[PCLZIP_OPT_EXTRACT_AS_STRING] = false; + } else { + } + } else { + // ----- Look for 2 args + // Here we need to support the first historic synopsis of the + // method. + + // ----- Get the first argument + $v_path = $v_arg_list[0]; + + // ----- Look for the optional second argument + if ($v_size == 2) { + $v_remove_path = $v_arg_list[1]; + } elseif ($v_size > 2) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid number / type of arguments"); + + // ----- Return + return 0; + } + } + } + + // ----- Trace + + // ----- Trick + // Here I want to reuse extractByRule(), so I need to parse the $p_index + // with privParseOptions() + $v_arg_trick = array (PCLZIP_OPT_BY_INDEX, $p_index); + $v_options_trick = array(); + $v_result = $this->privParseOptions($v_arg_trick, sizeof($v_arg_trick), $v_options_trick, array (PCLZIP_OPT_BY_INDEX => 'optional')); + if ($v_result != 1) { + return 0; + } + $v_options[PCLZIP_OPT_BY_INDEX] = $v_options_trick[PCLZIP_OPT_BY_INDEX]; + + // ----- Look for default option values + $this->privOptionDefaultThreshold($v_options); + + // ----- Call the extracting fct + if (($v_result = $this->privExtractByRule($p_list, $v_path, $v_remove_path, $v_remove_all_path, $v_options)) < 1) { + return(0); + } + + // ----- Return + return $p_list; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : + // delete([$p_option, $p_option_value, ...]) + // Description : + // This method removes files from the archive. + // If no parameters are given, then all the archive is emptied. + // Parameters : + // None or optional arguments. + // Options : + // PCLZIP_OPT_BY_INDEX : + // PCLZIP_OPT_BY_NAME : + // PCLZIP_OPT_BY_EREG : + // PCLZIP_OPT_BY_PREG : + // Return Values : + // 0 on failure, + // The list of the files which are still present in the archive. + // (see PclZip::listContent() for list entry format) + // -------------------------------------------------------------------------------- + public function delete() + { + $v_result=1; + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Check archive + if (!$this->privCheckFormat()) { + return(0); + } + + // ----- Set default values + $v_options = array(); + + // ----- Look for variable options arguments + $v_size = func_num_args(); + + // ----- Look for arguments + if ($v_size > 0) { + // ----- Get the arguments + $v_arg_list = func_get_args(); + + // ----- Parse the options + $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, array ( + PCLZIP_OPT_BY_NAME => 'optional', + PCLZIP_OPT_BY_EREG => 'optional', + PCLZIP_OPT_BY_PREG => 'optional', + PCLZIP_OPT_BY_INDEX => 'optional' + )); + if ($v_result != 1) { + return 0; + } + } + + // ----- Magic quotes trick + $this->privDisableMagicQuotes(); + + // ----- Call the delete fct + $v_list = array(); + if (($v_result = $this->privDeleteByRule($v_list, $v_options)) != 1) { + $this->privSwapBackMagicQuotes(); + unset($v_list); + return(0); + } + + // ----- Magic quotes trick + $this->privSwapBackMagicQuotes(); + + // ----- Return + return $v_list; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : deleteByIndex() + // Description : + // ***** Deprecated ***** + // delete(PCLZIP_OPT_BY_INDEX, $p_index) should be prefered. + // -------------------------------------------------------------------------------- + public function deleteByIndex($p_index) + { + + $p_list = $this->delete(PCLZIP_OPT_BY_INDEX, $p_index); + + // ----- Return + return $p_list; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : properties() + // Description : + // This method gives the properties of the archive. + // The properties are : + // nb : Number of files in the archive + // comment : Comment associated with the archive file + // status : not_exist, ok + // Parameters : + // None + // Return Values : + // 0 on failure, + // An array with the archive properties. + // -------------------------------------------------------------------------------- + public function properties() + { + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Magic quotes trick + $this->privDisableMagicQuotes(); + + // ----- Check archive + if (!$this->privCheckFormat()) { + $this->privSwapBackMagicQuotes(); + return(0); + } + + // ----- Default properties + $v_prop = array(); + $v_prop['comment'] = ''; + $v_prop['nb'] = 0; + $v_prop['status'] = 'not_exist'; + + // ----- Look if file exists + if (@is_file($this->zipname)) { + // ----- Open the zip file + if (($this->zip_fd = @fopen($this->zipname, 'rb')) == 0) { + $this->privSwapBackMagicQuotes(); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive \''.$this->zipname.'\' in binary read mode'); + + // ----- Return + return 0; + } + + // ----- Read the central directory informations + $v_central_dir = array(); + if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) { + $this->privSwapBackMagicQuotes(); + return 0; + } + + // ----- Close the zip file + $this->privCloseFd(); + + // ----- Set the user attributes + $v_prop['comment'] = $v_central_dir['comment']; + $v_prop['nb'] = $v_central_dir['entries']; + $v_prop['status'] = 'ok'; + } + + // ----- Magic quotes trick + $this->privSwapBackMagicQuotes(); + + // ----- Return + return $v_prop; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : duplicate() + // Description : + // This method creates an archive by copying the content of an other one. If + // the archive already exist, it is replaced by the new one without any warning. + // Parameters : + // $p_archive : The filename of a valid archive, or + // a valid PclZip object. + // Return Values : + // 1 on success. + // 0 or a negative value on error (error code). + // -------------------------------------------------------------------------------- + public function duplicate($p_archive) + { + $v_result = 1; + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Look if the $p_archive is a PclZip object + if ((is_object($p_archive)) && (get_class($p_archive) == 'pclzip')) { + // ----- Duplicate the archive + $v_result = $this->privDuplicate($p_archive->zipname); + } elseif (is_string($p_archive)) { + // ----- Look if the $p_archive is a string (so a filename) + // ----- Check that $p_archive is a valid zip file + // TBC : Should also check the archive format + if (!is_file($p_archive)) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_FILE, "No file with filename '".$p_archive."'"); + $v_result = PCLZIP_ERR_MISSING_FILE; + } else { + // ----- Duplicate the archive + $v_result = $this->privDuplicate($p_archive); + } + } else { + // ----- Invalid variable + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid variable type p_archive_to_add"); + $v_result = PCLZIP_ERR_INVALID_PARAMETER; + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : merge() + // Description : + // This method merge the $p_archive_to_add archive at the end of the current + // one ($this). + // If the archive ($this) does not exist, the merge becomes a duplicate. + // If the $p_archive_to_add archive does not exist, the merge is a success. + // Parameters : + // $p_archive_to_add : It can be directly the filename of a valid zip archive, + // or a PclZip object archive. + // Return Values : + // 1 on success, + // 0 or negative values on error (see below). + // -------------------------------------------------------------------------------- + public function merge($p_archive_to_add) + { + $v_result = 1; + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Check archive + if (!$this->privCheckFormat()) { + return(0); + } + + // ----- Look if the $p_archive_to_add is a PclZip object + if ((is_object($p_archive_to_add)) && (get_class($p_archive_to_add) == 'pclzip')) { + // ----- Merge the archive + $v_result = $this->privMerge($p_archive_to_add); + } elseif (is_string($p_archive_to_add)) { + // ----- Look if the $p_archive_to_add is a string (so a filename) + // ----- Create a temporary archive + $v_object_archive = new PclZip($p_archive_to_add); + + // ----- Merge the archive + $v_result = $this->privMerge($v_object_archive); + } else { + // ----- Invalid variable + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid variable type p_archive_to_add"); + $v_result = PCLZIP_ERR_INVALID_PARAMETER; + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + + + // -------------------------------------------------------------------------------- + // Function : errorCode() + // Description : + // Parameters : + // -------------------------------------------------------------------------------- + public function errorCode() + { + if (PCLZIP_ERROR_EXTERNAL == 1) { + return(PclErrorCode()); + } else { + return($this->error_code); + } + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : errorName() + // Description : + // Parameters : + // -------------------------------------------------------------------------------- + public function errorName($p_with_code = false) + { + $v_name = array( + PCLZIP_ERR_NO_ERROR => 'PCLZIP_ERR_NO_ERROR', + PCLZIP_ERR_WRITE_OPEN_FAIL => 'PCLZIP_ERR_WRITE_OPEN_FAIL', + PCLZIP_ERR_READ_OPEN_FAIL => 'PCLZIP_ERR_READ_OPEN_FAIL', + PCLZIP_ERR_INVALID_PARAMETER => 'PCLZIP_ERR_INVALID_PARAMETER', + PCLZIP_ERR_MISSING_FILE => 'PCLZIP_ERR_MISSING_FILE', + PCLZIP_ERR_FILENAME_TOO_LONG => 'PCLZIP_ERR_FILENAME_TOO_LONG', + PCLZIP_ERR_INVALID_ZIP => 'PCLZIP_ERR_INVALID_ZIP', + PCLZIP_ERR_BAD_EXTRACTED_FILE => 'PCLZIP_ERR_BAD_EXTRACTED_FILE', + PCLZIP_ERR_DIR_CREATE_FAIL => 'PCLZIP_ERR_DIR_CREATE_FAIL', + PCLZIP_ERR_BAD_EXTENSION => 'PCLZIP_ERR_BAD_EXTENSION', + PCLZIP_ERR_BAD_FORMAT => 'PCLZIP_ERR_BAD_FORMAT', + PCLZIP_ERR_DELETE_FILE_FAIL => 'PCLZIP_ERR_DELETE_FILE_FAIL', + PCLZIP_ERR_RENAME_FILE_FAIL => 'PCLZIP_ERR_RENAME_FILE_FAIL', + PCLZIP_ERR_BAD_CHECKSUM => 'PCLZIP_ERR_BAD_CHECKSUM', + PCLZIP_ERR_INVALID_ARCHIVE_ZIP => 'PCLZIP_ERR_INVALID_ARCHIVE_ZIP', + PCLZIP_ERR_MISSING_OPTION_VALUE => 'PCLZIP_ERR_MISSING_OPTION_VALUE', + PCLZIP_ERR_INVALID_OPTION_VALUE => 'PCLZIP_ERR_INVALID_OPTION_VALUE', + PCLZIP_ERR_UNSUPPORTED_COMPRESSION => 'PCLZIP_ERR_UNSUPPORTED_COMPRESSION', + PCLZIP_ERR_UNSUPPORTED_ENCRYPTION => 'PCLZIP_ERR_UNSUPPORTED_ENCRYPTION', + PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE => 'PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE', + PCLZIP_ERR_DIRECTORY_RESTRICTION => 'PCLZIP_ERR_DIRECTORY_RESTRICTION', + ); + + if (isset($v_name[$this->error_code])) { + $v_value = $v_name[$this->error_code]; + } else { + $v_value = 'NoName'; + } + + if ($p_with_code) { + return($v_value.' ('.$this->error_code.')'); + } else { + return($v_value); + } + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : errorInfo() + // Description : + // Parameters : + // -------------------------------------------------------------------------------- + public function errorInfo($p_full = false) + { + if (PCLZIP_ERROR_EXTERNAL == 1) { + return(PclErrorString()); + } else { + if ($p_full) { + return($this->errorName(true)." : ".$this->error_string); + } else { + return($this->error_string." [code ".$this->error_code."]"); + } + } + } + // -------------------------------------------------------------------------------- + + + // -------------------------------------------------------------------------------- + // ***** UNDER THIS LINE ARE DEFINED PRIVATE INTERNAL FUNCTIONS ***** + // ***** ***** + // ***** THESES FUNCTIONS MUST NOT BE USED DIRECTLY ***** + // -------------------------------------------------------------------------------- + + + + // -------------------------------------------------------------------------------- + // Function : privCheckFormat() + // Description : + // This method check that the archive exists and is a valid zip archive. + // Several level of check exists. (futur) + // Parameters : + // $p_level : Level of check. Default 0. + // 0 : Check the first bytes (magic codes) (default value)) + // 1 : 0 + Check the central directory (futur) + // 2 : 1 + Check each file header (futur) + // Return Values : + // true on success, + // false on error, the error code is set. + // -------------------------------------------------------------------------------- + public function privCheckFormat($p_level = 0) + { + $v_result = true; + + // ----- Reset the file system cache + clearstatcache(); + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Look if the file exits + if (!is_file($this->zipname)) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_FILE, "Missing archive file '".$this->zipname."'"); + return(false); + } + + // ----- Check that the file is readeable + if (!is_readable($this->zipname)) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, "Unable to read archive '".$this->zipname."'"); + return(false); + } + + // ----- Check the magic code + // TBC + + // ----- Check the central header + // TBC + + // ----- Check each file header + // TBC + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privParseOptions() + // Description : + // This internal methods reads the variable list of arguments ($p_options_list, + // $p_size) and generate an array with the options and values ($v_result_list). + // $v_requested_options contains the options that can be present and those that + // must be present. + // $v_requested_options is an array, with the option value as key, and 'optional', + // or 'mandatory' as value. + // Parameters : + // See above. + // Return Values : + // 1 on success. + // 0 on failure. + // -------------------------------------------------------------------------------- + public function privParseOptions(&$p_options_list, $p_size, &$v_result_list, $v_requested_options = false) + { + $v_result=1; + + // ----- Read the options + $i=0; + while ($i<$p_size) { + // ----- Check if the option is supported + if (!isset($v_requested_options[$p_options_list[$i]])) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid optional parameter '".$p_options_list[$i]."' for this method"); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Look for next option + switch ($p_options_list[$i]) { + // ----- Look for options that request a path value + case PCLZIP_OPT_PATH: + case PCLZIP_OPT_REMOVE_PATH: + case PCLZIP_OPT_ADD_PATH: + // ----- Check the number of parameters + if (($i+1) >= $p_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Get the value + $v_result_list[$p_options_list[$i]] = PclZipUtilTranslateWinPath($p_options_list[$i+1], false); + $i++; + break; + + case PCLZIP_OPT_TEMP_FILE_THRESHOLD: + // ----- Check the number of parameters + if (($i+1) >= $p_size) { + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + return PclZip::errorCode(); + } + + // ----- Check for incompatible options + if (isset($v_result_list[PCLZIP_OPT_TEMP_FILE_OFF])) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Option '".PclZipUtilOptionText($p_options_list[$i])."' can not be used with option 'PCLZIP_OPT_TEMP_FILE_OFF'"); + return PclZip::errorCode(); + } + + // ----- Check the value + $v_value = $p_options_list[$i+1]; + if ((!is_integer($v_value)) || ($v_value<0)) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Integer expected for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + return PclZip::errorCode(); + } + + // ----- Get the value (and convert it in bytes) + $v_result_list[$p_options_list[$i]] = $v_value*1048576; + $i++; + break; + + case PCLZIP_OPT_TEMP_FILE_ON: + // ----- Check for incompatible options + if (isset($v_result_list[PCLZIP_OPT_TEMP_FILE_OFF])) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Option '".PclZipUtilOptionText($p_options_list[$i])."' can not be used with option 'PCLZIP_OPT_TEMP_FILE_OFF'"); + return PclZip::errorCode(); + } + + $v_result_list[$p_options_list[$i]] = true; + break; + + case PCLZIP_OPT_TEMP_FILE_OFF: + // ----- Check for incompatible options + if (isset($v_result_list[PCLZIP_OPT_TEMP_FILE_ON])) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Option '".PclZipUtilOptionText($p_options_list[$i])."' can not be used with option 'PCLZIP_OPT_TEMP_FILE_ON'"); + return PclZip::errorCode(); + } + // ----- Check for incompatible options + if (isset($v_result_list[PCLZIP_OPT_TEMP_FILE_THRESHOLD])) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Option '".PclZipUtilOptionText($p_options_list[$i])."' can not be used with option 'PCLZIP_OPT_TEMP_FILE_THRESHOLD'"); + return PclZip::errorCode(); + } + $v_result_list[$p_options_list[$i]] = true; + break; + + case PCLZIP_OPT_EXTRACT_DIR_RESTRICTION: + // ----- Check the number of parameters + if (($i+1) >= $p_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + // ----- Return + return PclZip::errorCode(); + } + + // ----- Get the value + if (is_string($p_options_list[$i+1]) && ($p_options_list[$i+1] != '')) { + $v_result_list[$p_options_list[$i]] = PclZipUtilTranslateWinPath($p_options_list[$i+1], false); + $i++; + } else { + } + break; + // ----- Look for options that request an array of string for value + case PCLZIP_OPT_BY_NAME: + // ----- Check the number of parameters + if (($i+1) >= $p_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + // ----- Return + return PclZip::errorCode(); + } + + // ----- Get the value + if (is_string($p_options_list[$i+1])) { + $v_result_list[$p_options_list[$i]][0] = $p_options_list[$i+1]; + } elseif (is_array($p_options_list[$i+1])) { + $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; + } else { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Wrong parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + // ----- Return + return PclZip::errorCode(); + } + $i++; + break; + // ----- Look for options that request an EREG or PREG expression + case PCLZIP_OPT_BY_EREG: + // ereg() is deprecated starting with PHP 5.3. Move PCLZIP_OPT_BY_EREG + // to PCLZIP_OPT_BY_PREG + $p_options_list[$i] = PCLZIP_OPT_BY_PREG; + case PCLZIP_OPT_BY_PREG: + //case PCLZIP_OPT_CRYPT : + // ----- Check the number of parameters + if (($i+1) >= $p_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + // ----- Return + return PclZip::errorCode(); + } + + // ----- Get the value + if (is_string($p_options_list[$i+1])) { + $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; + } else { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Wrong parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + // ----- Return + return PclZip::errorCode(); + } + $i++; + break; + + // ----- Look for options that takes a string + case PCLZIP_OPT_COMMENT: + case PCLZIP_OPT_ADD_COMMENT: + case PCLZIP_OPT_PREPEND_COMMENT: + // ----- Check the number of parameters + if (($i+1) >= $p_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Get the value + if (is_string($p_options_list[$i+1])) { + $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; + } else { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Wrong parameter value for option '" .PclZipUtilOptionText($p_options_list[$i]) ."'"); + + // ----- Return + return PclZip::errorCode(); + } + $i++; + break; + + // ----- Look for options that request an array of index + case PCLZIP_OPT_BY_INDEX: + // ----- Check the number of parameters + if (($i+1) >= $p_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Get the value + $v_work_list = array(); + if (is_string($p_options_list[$i+1])) { + // ----- Remove spaces + $p_options_list[$i+1] = strtr($p_options_list[$i+1], ' ', ''); + + // ----- Parse items + $v_work_list = explode(",", $p_options_list[$i+1]); + } elseif (is_integer($p_options_list[$i+1])) { + $v_work_list[0] = $p_options_list[$i+1].'-'.$p_options_list[$i+1]; + } elseif (is_array($p_options_list[$i+1])) { + $v_work_list = $p_options_list[$i+1]; + } else { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Value must be integer, string or array for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Reduce the index list + // each index item in the list must be a couple with a start and + // an end value : [0,3], [5-5], [8-10], ... + // ----- Check the format of each item + $v_sort_flag=false; + $v_sort_value=0; + for ($j=0; $j<sizeof($v_work_list); $j++) { + // ----- Explode the item + $v_item_list = explode("-", $v_work_list[$j]); + $v_size_item_list = sizeof($v_item_list); + + // ----- TBC : Here we might check that each item is a + // real integer ... + + // ----- Look for single value + if ($v_size_item_list == 1) { + // ----- Set the option value + $v_result_list[$p_options_list[$i]][$j]['start'] = $v_item_list[0]; + $v_result_list[$p_options_list[$i]][$j]['end'] = $v_item_list[0]; + } elseif ($v_size_item_list == 2) { + // ----- Set the option value + $v_result_list[$p_options_list[$i]][$j]['start'] = $v_item_list[0]; + $v_result_list[$p_options_list[$i]][$j]['end'] = $v_item_list[1]; + } else { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Too many values in index range for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + return PclZip::errorCode(); + } + + + // ----- Look for list sort + if ($v_result_list[$p_options_list[$i]][$j]['start'] < $v_sort_value) { + $v_sort_flag=true; + + // ----- TBC : An automatic sort should be writen ... + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Invalid order of index range for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + return PclZip::errorCode(); + } + $v_sort_value = $v_result_list[$p_options_list[$i]][$j]['start']; + } + + // ----- Sort the items + if ($v_sort_flag) { + // TBC : To Be Completed + } + // ----- Next option + $i++; + break; + // ----- Look for options that request no value + case PCLZIP_OPT_REMOVE_ALL_PATH: + case PCLZIP_OPT_EXTRACT_AS_STRING: + case PCLZIP_OPT_NO_COMPRESSION: + case PCLZIP_OPT_EXTRACT_IN_OUTPUT: + case PCLZIP_OPT_REPLACE_NEWER: + case PCLZIP_OPT_STOP_ON_ERROR: + $v_result_list[$p_options_list[$i]] = true; + break; + // ----- Look for options that request an octal value + case PCLZIP_OPT_SET_CHMOD: + // ----- Check the number of parameters + if (($i+1) >= $p_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + // ----- Return + return PclZip::errorCode(); + } + // ----- Get the value + $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; + $i++; + break; + + // ----- Look for options that request a call-back + case PCLZIP_CB_PRE_EXTRACT: + case PCLZIP_CB_POST_EXTRACT: + case PCLZIP_CB_PRE_ADD: + case PCLZIP_CB_POST_ADD: + /* for futur use + case PCLZIP_CB_PRE_DELETE : + case PCLZIP_CB_POST_DELETE : + case PCLZIP_CB_PRE_LIST : + case PCLZIP_CB_POST_LIST : + */ + // ----- Check the number of parameters + if (($i+1) >= $p_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + // ----- Return + return PclZip::errorCode(); + } + + // ----- Get the value + $v_function_name = $p_options_list[$i+1]; + + // ----- Check that the value is a valid existing function + if (!function_exists($v_function_name)) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Function '".$v_function_name."()' is not an existing function for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + // ----- Return + return PclZip::errorCode(); + } + + // ----- Set the attribute + $v_result_list[$p_options_list[$i]] = $v_function_name; + $i++; + break; + default: + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Unknown parameter '" .$p_options_list[$i]."'"); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Next options + $i++; + } + + // ----- Look for mandatory options + if ($v_requested_options !== false) { + for ($key=reset($v_requested_options); $key=key($v_requested_options); $key=next($v_requested_options)) { + // ----- Look for mandatory option + if ($v_requested_options[$key] == 'mandatory') { + // ----- Look if present + if (!isset($v_result_list[$key])) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Missing mandatory parameter ".PclZipUtilOptionText($key)."(".$key.")"); + + // ----- Return + return PclZip::errorCode(); + } + } + } + } + + // ----- Look for default values + if (!isset($v_result_list[PCLZIP_OPT_TEMP_FILE_THRESHOLD])) { + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privOptionDefaultThreshold() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privOptionDefaultThreshold(&$p_options) + { + $v_result=1; + + if (isset($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD]) || isset($p_options[PCLZIP_OPT_TEMP_FILE_OFF])) { + return $v_result; + } + + // ----- Get 'memory_limit' configuration value + $v_memory_limit = ini_get('memory_limit'); + $v_memory_limit = trim($v_memory_limit); + $last = strtolower(substr($v_memory_limit, -1)); + + if ($last == 'g') { + //$v_memory_limit = $v_memory_limit*1024*1024*1024; + $v_memory_limit = $v_memory_limit*1073741824; + } + if ($last == 'm') { + //$v_memory_limit = $v_memory_limit*1024*1024; + $v_memory_limit = $v_memory_limit*1048576; + } + if ($last == 'k') { + $v_memory_limit = $v_memory_limit*1024; + } + + $p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD] = floor($v_memory_limit*PCLZIP_TEMPORARY_FILE_RATIO); + + // ----- Sanity check : No threshold if value lower than 1M + if ($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD] < 1048576) { + unset($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD]); + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privFileDescrParseAtt() + // Description : + // Parameters : + // Return Values : + // 1 on success. + // 0 on failure. + // -------------------------------------------------------------------------------- + public function privFileDescrParseAtt(&$p_file_list, &$p_filedescr, $v_options, $v_requested_options = false) + { + $v_result=1; + + // ----- For each file in the list check the attributes + foreach ($p_file_list as $v_key => $v_value) { + // ----- Check if the option is supported + if (!isset($v_requested_options[$v_key])) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid file attribute '".$v_key."' for this file"); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Look for attribute + switch ($v_key) { + case PCLZIP_ATT_FILE_NAME: + if (!is_string($v_value)) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid type ".gettype($v_value).". String expected for attribute '".PclZipUtilOptionText($v_key)."'"); + return PclZip::errorCode(); + } + + $p_filedescr['filename'] = PclZipUtilPathReduction($v_value); + + if ($p_filedescr['filename'] == '') { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid empty filename for attribute '".PclZipUtilOptionText($v_key)."'"); + return PclZip::errorCode(); + } + break; + case PCLZIP_ATT_FILE_NEW_SHORT_NAME: + if (!is_string($v_value)) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid type ".gettype($v_value).". String expected for attribute '".PclZipUtilOptionText($v_key)."'"); + return PclZip::errorCode(); + } + + $p_filedescr['new_short_name'] = PclZipUtilPathReduction($v_value); + + if ($p_filedescr['new_short_name'] == '') { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid empty short filename for attribute '".PclZipUtilOptionText($v_key)."'"); + return PclZip::errorCode(); + } + break; + case PCLZIP_ATT_FILE_NEW_FULL_NAME: + if (!is_string($v_value)) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid type ".gettype($v_value).". String expected for attribute '".PclZipUtilOptionText($v_key)."'"); + return PclZip::errorCode(); + } + + $p_filedescr['new_full_name'] = PclZipUtilPathReduction($v_value); + + if ($p_filedescr['new_full_name'] == '') { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid empty full filename for attribute '".PclZipUtilOptionText($v_key)."'"); + return PclZip::errorCode(); + } + break; + // ----- Look for options that takes a string + case PCLZIP_ATT_FILE_COMMENT: + if (!is_string($v_value)) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid type ".gettype($v_value).". String expected for attribute '".PclZipUtilOptionText($v_key)."'"); + return PclZip::errorCode(); + } + $p_filedescr['comment'] = $v_value; + break; + case PCLZIP_ATT_FILE_MTIME: + if (!is_integer($v_value)) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid type ".gettype($v_value).". Integer expected for attribute '".PclZipUtilOptionText($v_key)."'"); + return PclZip::errorCode(); + } + $p_filedescr['mtime'] = $v_value; + break; + case PCLZIP_ATT_FILE_CONTENT: + $p_filedescr['content'] = $v_value; + break; + default: + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Unknown parameter '".$v_key."'"); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Look for mandatory options + if ($v_requested_options !== false) { + for ($key = reset($v_requested_options); $key = key($v_requested_options); $key = next($v_requested_options)) { + // ----- Look for mandatory option + if ($v_requested_options[$key] == 'mandatory') { + // ----- Look if present + if (!isset($p_file_list[$key])) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Missing mandatory parameter ".PclZipUtilOptionText($key)."(".$key.")"); + return PclZip::errorCode(); + } + } + } + } + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privFileDescrExpand() + // Description : + // This method look for each item of the list to see if its a file, a folder + // or a string to be added as file. For any other type of files (link, other) + // just ignore the item. + // Then prepare the information that will be stored for that file. + // When its a folder, expand the folder with all the files that are in that + // folder (recursively). + // Parameters : + // Return Values : + // 1 on success. + // 0 on failure. + // -------------------------------------------------------------------------------- + public function privFileDescrExpand(&$p_filedescr_list, &$p_options) + { + $v_result=1; + + // ----- Create a result list + $v_result_list = array(); + + // ----- Look each entry + for ($i=0; $i<sizeof($p_filedescr_list); $i++) { + // ----- Get filedescr + $v_descr = $p_filedescr_list[$i]; + + // ----- Reduce the filename + $v_descr['filename'] = PclZipUtilTranslateWinPath($v_descr['filename'], false); + $v_descr['filename'] = PclZipUtilPathReduction($v_descr['filename']); + + // ----- Look for real file or folder + if (file_exists($v_descr['filename'])) { + if (@is_file($v_descr['filename'])) { + $v_descr['type'] = 'file'; + } elseif (@is_dir($v_descr['filename'])) { + $v_descr['type'] = 'folder'; + } elseif (@is_link($v_descr['filename'])) { + // skip + continue; + } else { + // skip + continue; + } + } elseif (isset($v_descr['content'])) { + // ----- Look for string added as file + $v_descr['type'] = 'virtual_file'; + } else { + // ----- Missing file + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_FILE, "File '".$v_descr['filename']."' does not exist"); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Calculate the stored filename + $this->privCalculateStoredFilename($v_descr, $p_options); + + // ----- Add the descriptor in result list + $v_result_list[sizeof($v_result_list)] = $v_descr; + + // ----- Look for folder + if ($v_descr['type'] == 'folder') { + // ----- List of items in folder + $v_dirlist_descr = array(); + $v_dirlist_nb = 0; + if ($v_folder_handler = @opendir($v_descr['filename'])) { + while (($v_item_handler = @readdir($v_folder_handler)) !== false) { + // ----- Skip '.' and '..' + if (($v_item_handler == '.') || ($v_item_handler == '..')) { + continue; + } + + // ----- Compose the full filename + $v_dirlist_descr[$v_dirlist_nb]['filename'] = $v_descr['filename'].'/'.$v_item_handler; + + // ----- Look for different stored filename + // Because the name of the folder was changed, the name of the + // files/sub-folders also change + if (($v_descr['stored_filename'] != $v_descr['filename']) + && (!isset($p_options[PCLZIP_OPT_REMOVE_ALL_PATH]))) { + if ($v_descr['stored_filename'] != '') { + $v_dirlist_descr[$v_dirlist_nb]['new_full_name'] = $v_descr['stored_filename'].'/'.$v_item_handler; + } else { + $v_dirlist_descr[$v_dirlist_nb]['new_full_name'] = $v_item_handler; + } + } + $v_dirlist_nb++; + } + + @closedir($v_folder_handler); + } else { + // TBC : unable to open folder in read mode + } + + // ----- Expand each element of the list + if ($v_dirlist_nb != 0) { + // ----- Expand + if (($v_result = $this->privFileDescrExpand($v_dirlist_descr, $p_options)) != 1) { + return $v_result; + } + + // ----- Concat the resulting list + $v_result_list = array_merge($v_result_list, $v_dirlist_descr); + } + + // ----- Free local array + unset($v_dirlist_descr); + } + } + + // ----- Get the result list + $p_filedescr_list = $v_result_list; + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privCreate() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privCreate($p_filedescr_list, &$p_result_list, &$p_options) + { + $v_result=1; + $v_list_detail = array(); + + // ----- Magic quotes trick + $this->privDisableMagicQuotes(); + + // ----- Open the file in write mode + if (($v_result = $this->privOpenFd('wb')) != 1) { + // ----- Return + return $v_result; + } + + // ----- Add the list of files + $v_result = $this->privAddList($p_filedescr_list, $p_result_list, $p_options); + + // ----- Close + $this->privCloseFd(); + + // ----- Magic quotes trick + $this->privSwapBackMagicQuotes(); + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privAdd() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privAdd($p_filedescr_list, &$p_result_list, &$p_options) + { + $v_result=1; + $v_list_detail = array(); + + // ----- Look if the archive exists or is empty + if ((!is_file($this->zipname)) || (filesize($this->zipname) == 0)) { + // ----- Do a create + $v_result = $this->privCreate($p_filedescr_list, $p_result_list, $p_options); + + // ----- Return + return $v_result; + } + // ----- Magic quotes trick + $this->privDisableMagicQuotes(); + + // ----- Open the zip file + if (($v_result=$this->privOpenFd('rb')) != 1) { + // ----- Magic quotes trick + $this->privSwapBackMagicQuotes(); + + // ----- Return + return $v_result; + } + + // ----- Read the central directory informations + $v_central_dir = array(); + if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) { + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + return $v_result; + } + + // ----- Go to beginning of File + @rewind($this->zip_fd); + + // ----- Creates a temporay file + $v_zip_temp_name = PCLZIP_TEMPORARY_DIR.uniqid('pclzip-').'.tmp'; + + // ----- Open the temporary file in write mode + if (($v_zip_temp_fd = @fopen($v_zip_temp_name, 'wb')) == 0) { + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_zip_temp_name.'\' in binary write mode'); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Copy the files from the archive to the temporary file + // TBC : Here I should better append the file and go back to erase the central dir + $v_size = $v_central_dir['offset']; + while ($v_size != 0) { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + $v_buffer = fread($this->zip_fd, $v_read_size); + @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Swap the file descriptor + // Here is a trick : I swap the temporary fd with the zip fd, in order to use + // the following methods on the temporary fil and not the real archive + $v_swap = $this->zip_fd; + $this->zip_fd = $v_zip_temp_fd; + $v_zip_temp_fd = $v_swap; + + // ----- Add the files + $v_header_list = array(); + if (($v_result = $this->privAddFileList($p_filedescr_list, $v_header_list, $p_options)) != 1) { + fclose($v_zip_temp_fd); + $this->privCloseFd(); + @unlink($v_zip_temp_name); + $this->privSwapBackMagicQuotes(); + + // ----- Return + return $v_result; + } + + // ----- Store the offset of the central dir + $v_offset = @ftell($this->zip_fd); + + // ----- Copy the block of file headers from the old archive + $v_size = $v_central_dir['size']; + while ($v_size != 0) { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + $v_buffer = @fread($v_zip_temp_fd, $v_read_size); + @fwrite($this->zip_fd, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Create the Central Dir files header + for ($i=0, $v_count=0; $i<sizeof($v_header_list); $i++) { + // ----- Create the file header + if ($v_header_list[$i]['status'] == 'ok') { + if (($v_result = $this->privWriteCentralFileHeader($v_header_list[$i])) != 1) { + fclose($v_zip_temp_fd); + $this->privCloseFd(); + @unlink($v_zip_temp_name); + $this->privSwapBackMagicQuotes(); + + // ----- Return + return $v_result; + } + $v_count++; + } + + // ----- Transform the header to a 'usable' info + $this->privConvertHeader2FileInfo($v_header_list[$i], $p_result_list[$i]); + } + + // ----- Zip file comment + $v_comment = $v_central_dir['comment']; + if (isset($p_options[PCLZIP_OPT_COMMENT])) { + $v_comment = $p_options[PCLZIP_OPT_COMMENT]; + } + if (isset($p_options[PCLZIP_OPT_ADD_COMMENT])) { + $v_comment = $v_comment.$p_options[PCLZIP_OPT_ADD_COMMENT]; + } + if (isset($p_options[PCLZIP_OPT_PREPEND_COMMENT])) { + $v_comment = $p_options[PCLZIP_OPT_PREPEND_COMMENT].$v_comment; + } + + // ----- Calculate the size of the central header + $v_size = @ftell($this->zip_fd)-$v_offset; + + // ----- Create the central dir footer + if (($v_result = $this->privWriteCentralHeader($v_count+$v_central_dir['entries'], $v_size, $v_offset, $v_comment)) != 1) { + // ----- Reset the file list + unset($v_header_list); + $this->privSwapBackMagicQuotes(); + + // ----- Return + return $v_result; + } + + // ----- Swap back the file descriptor + $v_swap = $this->zip_fd; + $this->zip_fd = $v_zip_temp_fd; + $v_zip_temp_fd = $v_swap; + + // ----- Close + $this->privCloseFd(); + + // ----- Close the temporary file + @fclose($v_zip_temp_fd); + + // ----- Magic quotes trick + $this->privSwapBackMagicQuotes(); + + // ----- Delete the zip file + // TBC : I should test the result ... + @unlink($this->zipname); + + // ----- Rename the temporary file + // TBC : I should test the result ... + //@rename($v_zip_temp_name, $this->zipname); + PclZipUtilRename($v_zip_temp_name, $this->zipname); + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privOpenFd() + // Description : + // Parameters : + // -------------------------------------------------------------------------------- + public function privOpenFd($p_mode) + { + $v_result=1; + + // ----- Look if already open + if ($this->zip_fd != 0) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Zip file \''.$this->zipname.'\' already open'); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Open the zip file + if (($this->zip_fd = @fopen($this->zipname, $p_mode)) == 0) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive \''.$this->zipname.'\' in '.$p_mode.' mode'); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privCloseFd() + // Description : + // Parameters : + // -------------------------------------------------------------------------------- + public function privCloseFd() + { + $v_result=1; + + if ($this->zip_fd != 0) { + @fclose($this->zip_fd); + } + $this->zip_fd = 0; + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privAddList() + // Description : + // $p_add_dir and $p_remove_dir will give the ability to memorize a path which is + // different from the real path of the file. This is usefull if you want to have PclTar + // running in any directory, and memorize relative path from an other directory. + // Parameters : + // $p_list : An array containing the file or directory names to add in the tar + // $p_result_list : list of added files with their properties (specially the status field) + // $p_add_dir : Path to add in the filename path archived + // $p_remove_dir : Path to remove in the filename path archived + // Return Values : + // -------------------------------------------------------------------------------- + // public function privAddList($p_list, &$p_result_list, $p_add_dir, $p_remove_dir, $p_remove_all_dir, &$p_options) + public function privAddList($p_filedescr_list, &$p_result_list, &$p_options) + { + $v_result=1; + + // ----- Add the files + $v_header_list = array(); + if (($v_result = $this->privAddFileList($p_filedescr_list, $v_header_list, $p_options)) != 1) { + // ----- Return + return $v_result; + } + + // ----- Store the offset of the central dir + $v_offset = @ftell($this->zip_fd); + + // ----- Create the Central Dir files header + for ($i=0, $v_count=0; $i<sizeof($v_header_list); $i++) { + // ----- Create the file header + if ($v_header_list[$i]['status'] == 'ok') { + if (($v_result = $this->privWriteCentralFileHeader($v_header_list[$i])) != 1) { + // ----- Return + return $v_result; + } + $v_count++; + } + + // ----- Transform the header to a 'usable' info + $this->privConvertHeader2FileInfo($v_header_list[$i], $p_result_list[$i]); + } + + // ----- Zip file comment + $v_comment = ''; + if (isset($p_options[PCLZIP_OPT_COMMENT])) { + $v_comment = $p_options[PCLZIP_OPT_COMMENT]; + } + + // ----- Calculate the size of the central header + $v_size = @ftell($this->zip_fd)-$v_offset; + + // ----- Create the central dir footer + if (($v_result = $this->privWriteCentralHeader($v_count, $v_size, $v_offset, $v_comment)) != 1) { + // ----- Reset the file list + unset($v_header_list); + + // ----- Return + return $v_result; + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privAddFileList() + // Description : + // Parameters : + // $p_filedescr_list : An array containing the file description + // or directory names to add in the zip + // $p_result_list : list of added files with their properties (specially the status field) + // Return Values : + // -------------------------------------------------------------------------------- + public function privAddFileList($p_filedescr_list, &$p_result_list, &$p_options) + { + $v_result=1; + $v_header = array(); + + // ----- Recuperate the current number of elt in list + $v_nb = sizeof($p_result_list); + + // ----- Loop on the files + for ($j=0; ($j<sizeof($p_filedescr_list)) && ($v_result==1); $j++) { + // ----- Format the filename + $p_filedescr_list[$j]['filename'] = PclZipUtilTranslateWinPath($p_filedescr_list[$j]['filename'], false); + + // ----- Skip empty file names + // TBC : Can this be possible ? not checked in DescrParseAtt ? + if ($p_filedescr_list[$j]['filename'] == "") { + continue; + } + + // ----- Check the filename + if (($p_filedescr_list[$j]['type'] != 'virtual_file') && (!file_exists($p_filedescr_list[$j]['filename']))) { + PclZip::privErrorLog(PCLZIP_ERR_MISSING_FILE, "File '".$p_filedescr_list[$j]['filename']."' does not exist"); + return PclZip::errorCode(); + } + + // ----- Look if it is a file or a dir with no all path remove option + // or a dir with all its path removed + // if ( (is_file($p_filedescr_list[$j]['filename'])) + // || ( is_dir($p_filedescr_list[$j]['filename']) + if (($p_filedescr_list[$j]['type'] == 'file') || ($p_filedescr_list[$j]['type'] == 'virtual_file') || (($p_filedescr_list[$j]['type'] == 'folder') && (!isset($p_options[PCLZIP_OPT_REMOVE_ALL_PATH]) || !$p_options[PCLZIP_OPT_REMOVE_ALL_PATH]))) { + // ----- Add the file + $v_result = $this->privAddFile($p_filedescr_list[$j], $v_header, $p_options); + if ($v_result != 1) { + return $v_result; + } + + // ----- Store the file infos + $p_result_list[$v_nb++] = $v_header; + } + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privAddFile() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privAddFile($p_filedescr, &$p_header, &$p_options) + { + $v_result=1; + + // ----- Working variable + $p_filename = $p_filedescr['filename']; + + // TBC : Already done in the fileAtt check ... ? + if ($p_filename == "") { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid file list parameter (invalid or empty list)"); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Look for a stored different filename + /* TBC : Removed + if (isset($p_filedescr['stored_filename'])) { + $v_stored_filename = $p_filedescr['stored_filename']; + } + else { + $v_stored_filename = $p_filedescr['stored_filename']; + } + */ + + // ----- Set the file properties + clearstatcache(); + $p_header['version'] = 20; + $p_header['version_extracted'] = 10; + $p_header['flag'] = 0; + $p_header['compression'] = 0; + $p_header['crc'] = 0; + $p_header['compressed_size'] = 0; + $p_header['filename_len'] = strlen($p_filename); + $p_header['extra_len'] = 0; + $p_header['disk'] = 0; + $p_header['internal'] = 0; + $p_header['offset'] = 0; + $p_header['filename'] = $p_filename; + // TBC : Removed $p_header['stored_filename'] = $v_stored_filename; + $p_header['stored_filename'] = $p_filedescr['stored_filename']; + $p_header['extra'] = ''; + $p_header['status'] = 'ok'; + $p_header['index'] = -1; + + // ----- Look for regular file + if ($p_filedescr['type']=='file') { + $p_header['external'] = 0x00000000; + $p_header['size'] = filesize($p_filename); + } elseif ($p_filedescr['type']=='folder') { + // ----- Look for regular folder + $p_header['external'] = 0x00000010; + $p_header['mtime'] = filemtime($p_filename); + $p_header['size'] = filesize($p_filename); + } elseif ($p_filedescr['type'] == 'virtual_file') { + // ----- Look for virtual file + $p_header['external'] = 0x00000000; + $p_header['size'] = strlen($p_filedescr['content']); + } + + // ----- Look for filetime + if (isset($p_filedescr['mtime'])) { + $p_header['mtime'] = $p_filedescr['mtime']; + } elseif ($p_filedescr['type'] == 'virtual_file') { + $p_header['mtime'] = time(); + } else { + $p_header['mtime'] = filemtime($p_filename); + } + + // ------ Look for file comment + if (isset($p_filedescr['comment'])) { + $p_header['comment_len'] = strlen($p_filedescr['comment']); + $p_header['comment'] = $p_filedescr['comment']; + } else { + $p_header['comment_len'] = 0; + $p_header['comment'] = ''; + } + + // ----- Look for pre-add callback + if (isset($p_options[PCLZIP_CB_PRE_ADD])) { + // ----- Generate a local information + $v_local_header = array(); + $this->privConvertHeader2FileInfo($p_header, $v_local_header); + + // ----- Call the callback + // Here I do not use call_user_func() because I need to send a reference to the + // header. + // eval('$v_result = '.$p_options[PCLZIP_CB_PRE_ADD].'(PCLZIP_CB_PRE_ADD, $v_local_header);'); + $v_result = $p_options[PCLZIP_CB_PRE_ADD](PCLZIP_CB_PRE_ADD, $v_local_header); + if ($v_result == 0) { + // ----- Change the file status + $p_header['status'] = "skipped"; + $v_result = 1; + } + + // ----- Update the informations + // Only some fields can be modified + if ($p_header['stored_filename'] != $v_local_header['stored_filename']) { + $p_header['stored_filename'] = PclZipUtilPathReduction($v_local_header['stored_filename']); + } + } + + // ----- Look for empty stored filename + if ($p_header['stored_filename'] == "") { + $p_header['status'] = "filtered"; + } + + // ----- Check the path length + if (strlen($p_header['stored_filename']) > 0xFF) { + $p_header['status'] = 'filename_too_long'; + } + + // ----- Look if no error, or file not skipped + if ($p_header['status'] == 'ok') { + // ----- Look for a file + if ($p_filedescr['type'] == 'file') { + // ----- Look for using temporary file to zip + if ((!isset($p_options[PCLZIP_OPT_TEMP_FILE_OFF])) && (isset($p_options[PCLZIP_OPT_TEMP_FILE_ON]) || (isset($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD]) && ($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD] <= $p_header['size'])))) { + $v_result = $this->privAddFileUsingTempFile($p_filedescr, $p_header, $p_options); + if ($v_result < PCLZIP_ERR_NO_ERROR) { + return $v_result; + } + } else { + // ----- Use "in memory" zip algo + // ----- Open the source file + if (($v_file = @fopen($p_filename, "rb")) == 0) { + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, "Unable to open file '$p_filename' in binary read mode"); + return PclZip::errorCode(); + } + + // ----- Read the file content + $v_content = @fread($v_file, $p_header['size']); + + // ----- Close the file + @fclose($v_file); + + // ----- Calculate the CRC + $p_header['crc'] = @crc32($v_content); + + // ----- Look for no compression + if ($p_options[PCLZIP_OPT_NO_COMPRESSION]) { + // ----- Set header parameters + $p_header['compressed_size'] = $p_header['size']; + $p_header['compression'] = 0; + } else { + // ----- Look for normal compression + // ----- Compress the content + $v_content = @gzdeflate($v_content); + + // ----- Set header parameters + $p_header['compressed_size'] = strlen($v_content); + $p_header['compression'] = 8; + } + + // ----- Call the header generation + if (($v_result = $this->privWriteFileHeader($p_header)) != 1) { + @fclose($v_file); + return $v_result; + } + + // ----- Write the compressed (or not) content + @fwrite($this->zip_fd, $v_content, $p_header['compressed_size']); + } + } elseif ($p_filedescr['type'] == 'virtual_file') { + // ----- Look for a virtual file (a file from string) + $v_content = $p_filedescr['content']; + + // ----- Calculate the CRC + $p_header['crc'] = @crc32($v_content); + + // ----- Look for no compression + if ($p_options[PCLZIP_OPT_NO_COMPRESSION]) { + // ----- Set header parameters + $p_header['compressed_size'] = $p_header['size']; + $p_header['compression'] = 0; + } else { + // ----- Look for normal compression + // ----- Compress the content + $v_content = @gzdeflate($v_content); + + // ----- Set header parameters + $p_header['compressed_size'] = strlen($v_content); + $p_header['compression'] = 8; + } + + // ----- Call the header generation + if (($v_result = $this->privWriteFileHeader($p_header)) != 1) { + @fclose($v_file); + return $v_result; + } + + // ----- Write the compressed (or not) content + @fwrite($this->zip_fd, $v_content, $p_header['compressed_size']); + } elseif ($p_filedescr['type'] == 'folder') { + // ----- Look for a directory + // ----- Look for directory last '/' + if (@substr($p_header['stored_filename'], -1) != '/') { + $p_header['stored_filename'] .= '/'; + } + + // ----- Set the file properties + $p_header['size'] = 0; + //$p_header['external'] = 0x41FF0010; // Value for a folder : to be checked + $p_header['external'] = 0x00000010; // Value for a folder : to be checked + + // ----- Call the header generation + if (($v_result = $this->privWriteFileHeader($p_header)) != 1) { + return $v_result; + } + } + } + + // ----- Look for post-add callback + if (isset($p_options[PCLZIP_CB_POST_ADD])) { + // ----- Generate a local information + $v_local_header = array(); + $this->privConvertHeader2FileInfo($p_header, $v_local_header); + + // ----- Call the callback + // Here I do not use call_user_func() because I need to send a reference to the + // header. + // eval('$v_result = '.$p_options[PCLZIP_CB_POST_ADD].'(PCLZIP_CB_POST_ADD, $v_local_header);'); + $v_result = $p_options[PCLZIP_CB_POST_ADD](PCLZIP_CB_POST_ADD, $v_local_header); + if ($v_result == 0) { + // ----- Ignored + $v_result = 1; + } + + // ----- Update the informations + // Nothing can be modified + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privAddFileUsingTempFile() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privAddFileUsingTempFile($p_filedescr, &$p_header, &$p_options) + { + $v_result=PCLZIP_ERR_NO_ERROR; + + // ----- Working variable + $p_filename = $p_filedescr['filename']; + + + // ----- Open the source file + if (($v_file = @fopen($p_filename, "rb")) == 0) { + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, "Unable to open file '$p_filename' in binary read mode"); + return PclZip::errorCode(); + } + + // ----- Creates a compressed temporary file + $v_gzip_temp_name = PCLZIP_TEMPORARY_DIR.uniqid('pclzip-').'.gz'; + if (($v_file_compressed = @gzopen($v_gzip_temp_name, "wb")) == 0) { + fclose($v_file); + PclZip::privErrorLog(PCLZIP_ERR_WRITE_OPEN_FAIL, 'Unable to open temporary file \''.$v_gzip_temp_name.'\' in binary write mode'); + return PclZip::errorCode(); + } + + // ----- Read the file by PCLZIP_READ_BLOCK_SIZE octets blocks + $v_size = filesize($p_filename); + while ($v_size != 0) { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + $v_buffer = @fread($v_file, $v_read_size); + //$v_binary_data = pack('a'.$v_read_size, $v_buffer); + @gzputs($v_file_compressed, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Close the file + @fclose($v_file); + @gzclose($v_file_compressed); + + // ----- Check the minimum file size + if (filesize($v_gzip_temp_name) < 18) { + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'gzip temporary file \''.$v_gzip_temp_name.'\' has invalid filesize - should be minimum 18 bytes'); + return PclZip::errorCode(); + } + + // ----- Extract the compressed attributes + if (($v_file_compressed = @fopen($v_gzip_temp_name, "rb")) == 0) { + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_gzip_temp_name.'\' in binary read mode'); + return PclZip::errorCode(); + } + + // ----- Read the gzip file header + $v_binary_data = @fread($v_file_compressed, 10); + $v_data_header = unpack('a1id1/a1id2/a1cm/a1flag/Vmtime/a1xfl/a1os', $v_binary_data); + + // ----- Check some parameters + $v_data_header['os'] = bin2hex($v_data_header['os']); + + // ----- Read the gzip file footer + @fseek($v_file_compressed, filesize($v_gzip_temp_name)-8); + $v_binary_data = @fread($v_file_compressed, 8); + $v_data_footer = unpack('Vcrc/Vcompressed_size', $v_binary_data); + + // ----- Set the attributes + $p_header['compression'] = ord($v_data_header['cm']); + //$p_header['mtime'] = $v_data_header['mtime']; + $p_header['crc'] = $v_data_footer['crc']; + $p_header['compressed_size'] = filesize($v_gzip_temp_name)-18; + + // ----- Close the file + @fclose($v_file_compressed); + + // ----- Call the header generation + if (($v_result = $this->privWriteFileHeader($p_header)) != 1) { + return $v_result; + } + + // ----- Add the compressed data + if (($v_file_compressed = @fopen($v_gzip_temp_name, "rb")) == 0) { + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_gzip_temp_name.'\' in binary read mode'); + return PclZip::errorCode(); + } + + // ----- Read the file by PCLZIP_READ_BLOCK_SIZE octets blocks + fseek($v_file_compressed, 10); + $v_size = $p_header['compressed_size']; + while ($v_size != 0) { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + $v_buffer = @fread($v_file_compressed, $v_read_size); + //$v_binary_data = pack('a'.$v_read_size, $v_buffer); + @fwrite($this->zip_fd, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Close the file + @fclose($v_file_compressed); + + // ----- Unlink the temporary file + @unlink($v_gzip_temp_name); + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privCalculateStoredFilename() + // Description : + // Based on file descriptor properties and global options, this method + // calculate the filename that will be stored in the archive. + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privCalculateStoredFilename(&$p_filedescr, &$p_options) + { + $v_result=1; + + // ----- Working variables + $p_filename = $p_filedescr['filename']; + if (isset($p_options[PCLZIP_OPT_ADD_PATH])) { + $p_add_dir = $p_options[PCLZIP_OPT_ADD_PATH]; + } else { + $p_add_dir = ''; + } + if (isset($p_options[PCLZIP_OPT_REMOVE_PATH])) { + $p_remove_dir = $p_options[PCLZIP_OPT_REMOVE_PATH]; + } else { + $p_remove_dir = ''; + } + if (isset($p_options[PCLZIP_OPT_REMOVE_ALL_PATH])) { + $p_remove_all_dir = $p_options[PCLZIP_OPT_REMOVE_ALL_PATH]; + } else { + $p_remove_all_dir = 0; + } + + // ----- Look for full name change + if (isset($p_filedescr['new_full_name'])) { + // ----- Remove drive letter if any + $v_stored_filename = PclZipUtilTranslateWinPath($p_filedescr['new_full_name']); + } else { + // ----- Look for path and/or short name change + // ----- Look for short name change + // Its when we cahnge just the filename but not the path + if (isset($p_filedescr['new_short_name'])) { + $v_path_info = pathinfo($p_filename); + $v_dir = ''; + if ($v_path_info['dirname'] != '') { + $v_dir = $v_path_info['dirname'].'/'; + } + $v_stored_filename = $v_dir.$p_filedescr['new_short_name']; + } else { + // ----- Calculate the stored filename + $v_stored_filename = $p_filename; + } + + // ----- Look for all path to remove + if ($p_remove_all_dir) { + $v_stored_filename = basename($p_filename); + } elseif ($p_remove_dir != "") { + // ----- Look for partial path remove + if (substr($p_remove_dir, -1) != '/') { + $p_remove_dir .= "/"; + } + + if ((substr($p_filename, 0, 2) == "./") || (substr($p_remove_dir, 0, 2) == "./")) { + if ((substr($p_filename, 0, 2) == "./") && (substr($p_remove_dir, 0, 2) != "./")) { + $p_remove_dir = "./".$p_remove_dir; + } + if ((substr($p_filename, 0, 2) != "./") && (substr($p_remove_dir, 0, 2) == "./")) { + $p_remove_dir = substr($p_remove_dir, 2); + } + } + + $v_compare = PclZipUtilPathInclusion($p_remove_dir, $v_stored_filename); + if ($v_compare > 0) { + if ($v_compare == 2) { + $v_stored_filename = ""; + } else { + $v_stored_filename = substr($v_stored_filename, strlen($p_remove_dir)); + } + } + } + + // ----- Remove drive letter if any + $v_stored_filename = PclZipUtilTranslateWinPath($v_stored_filename); + + // ----- Look for path to add + if ($p_add_dir != "") { + if (substr($p_add_dir, -1) == "/") { + $v_stored_filename = $p_add_dir.$v_stored_filename; + } else { + $v_stored_filename = $p_add_dir."/".$v_stored_filename; + } + } + } + + // ----- Filename (reduce the path of stored name) + $v_stored_filename = PclZipUtilPathReduction($v_stored_filename); + $p_filedescr['stored_filename'] = $v_stored_filename; + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privWriteFileHeader() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privWriteFileHeader(&$p_header) + { + $v_result=1; + + // ----- Store the offset position of the file + $p_header['offset'] = ftell($this->zip_fd); + + // ----- Transform UNIX mtime to DOS format mdate/mtime + $v_date = getdate($p_header['mtime']); + $v_mtime = ($v_date['hours']<<11) + ($v_date['minutes']<<5) + $v_date['seconds']/2; + $v_mdate = (($v_date['year']-1980)<<9) + ($v_date['mon']<<5) + $v_date['mday']; + + // ----- Packed data + $v_binary_data = pack("VvvvvvVVVvv", 0x04034b50, $p_header['version_extracted'], $p_header['flag'], $p_header['compression'], $v_mtime, $v_mdate, $p_header['crc'], $p_header['compressed_size'], $p_header['size'], strlen($p_header['stored_filename']), $p_header['extra_len']); + + // ----- Write the first 148 bytes of the header in the archive + fputs($this->zip_fd, $v_binary_data, 30); + + // ----- Write the variable fields + if (strlen($p_header['stored_filename']) != 0) { + fputs($this->zip_fd, $p_header['stored_filename'], strlen($p_header['stored_filename'])); + } + if ($p_header['extra_len'] != 0) { + fputs($this->zip_fd, $p_header['extra'], $p_header['extra_len']); + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privWriteCentralFileHeader() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privWriteCentralFileHeader(&$p_header) + { + $v_result=1; + + // TBC + //for(reset($p_header); $key = key($p_header); next($p_header)) { + //} + + // ----- Transform UNIX mtime to DOS format mdate/mtime + $v_date = getdate($p_header['mtime']); + $v_mtime = ($v_date['hours']<<11) + ($v_date['minutes']<<5) + $v_date['seconds']/2; + $v_mdate = (($v_date['year']-1980)<<9) + ($v_date['mon']<<5) + $v_date['mday']; + + + // ----- Packed data + $v_binary_data = pack("VvvvvvvVVVvvvvvVV", 0x02014b50, $p_header['version'], $p_header['version_extracted'], $p_header['flag'], $p_header['compression'], $v_mtime, $v_mdate, $p_header['crc'], $p_header['compressed_size'], $p_header['size'], strlen($p_header['stored_filename']), $p_header['extra_len'], $p_header['comment_len'], $p_header['disk'], $p_header['internal'], $p_header['external'], $p_header['offset']); + + // ----- Write the 42 bytes of the header in the zip file + fputs($this->zip_fd, $v_binary_data, 46); + + // ----- Write the variable fields + if (strlen($p_header['stored_filename']) != 0) { + fputs($this->zip_fd, $p_header['stored_filename'], strlen($p_header['stored_filename'])); + } + if ($p_header['extra_len'] != 0) { + fputs($this->zip_fd, $p_header['extra'], $p_header['extra_len']); + } + if ($p_header['comment_len'] != 0) { + fputs($this->zip_fd, $p_header['comment'], $p_header['comment_len']); + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privWriteCentralHeader() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privWriteCentralHeader($p_nb_entries, $p_size, $p_offset, $p_comment) + { + $v_result = 1; + + // ----- Packed data + $v_binary_data = pack("VvvvvVVv", 0x06054b50, 0, 0, $p_nb_entries, $p_nb_entries, $p_size, $p_offset, strlen($p_comment)); + + // ----- Write the 22 bytes of the header in the zip file + fputs($this->zip_fd, $v_binary_data, 22); + + // ----- Write the variable fields + if (strlen($p_comment) != 0) { + fputs($this->zip_fd, $p_comment, strlen($p_comment)); + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privList() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privList(&$p_list) + { + $v_result = 1; + + // ----- Magic quotes trick + $this->privDisableMagicQuotes(); + + // ----- Open the zip file + if (($this->zip_fd = @fopen($this->zipname, 'rb')) == 0) { + // ----- Magic quotes trick + $this->privSwapBackMagicQuotes(); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive \''.$this->zipname.'\' in binary read mode'); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Read the central directory informations + $v_central_dir = array(); + if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) { + $this->privSwapBackMagicQuotes(); + return $v_result; + } + + // ----- Go to beginning of Central Dir + @rewind($this->zip_fd); + if (@fseek($this->zip_fd, $v_central_dir['offset'])) { + $this->privSwapBackMagicQuotes(); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ARCHIVE_ZIP, 'Invalid archive size'); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Read each entry + for ($i=0; $i<$v_central_dir['entries']; $i++) { + // ----- Read the file header + if (($v_result = $this->privReadCentralFileHeader($v_header)) != 1) { + $this->privSwapBackMagicQuotes(); + return $v_result; + } + $v_header['index'] = $i; + + // ----- Get the only interesting attributes + $this->privConvertHeader2FileInfo($v_header, $p_list[$i]); + unset($v_header); + } + + // ----- Close the zip file + $this->privCloseFd(); + + // ----- Magic quotes trick + $this->privSwapBackMagicQuotes(); + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privConvertHeader2FileInfo() + // Description : + // This function takes the file informations from the central directory + // entries and extract the interesting parameters that will be given back. + // The resulting file infos are set in the array $p_info + // $p_info['filename'] : Filename with full path. Given by user (add), + // extracted in the filesystem (extract). + // $p_info['stored_filename'] : Stored filename in the archive. + // $p_info['size'] = Size of the file. + // $p_info['compressed_size'] = Compressed size of the file. + // $p_info['mtime'] = Last modification date of the file. + // $p_info['comment'] = Comment associated with the file. + // $p_info['folder'] = true/false : indicates if the entry is a folder or not. + // $p_info['status'] = status of the action on the file. + // $p_info['crc'] = CRC of the file content. + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privConvertHeader2FileInfo($p_header, &$p_info) + { + $v_result=1; + + // ----- Get the interesting attributes + $v_temp_path = PclZipUtilPathReduction($p_header['filename']); + $p_info['filename'] = $v_temp_path; + $v_temp_path = PclZipUtilPathReduction($p_header['stored_filename']); + $p_info['stored_filename'] = $v_temp_path; + $p_info['size'] = $p_header['size']; + $p_info['compressed_size'] = $p_header['compressed_size']; + $p_info['mtime'] = $p_header['mtime']; + $p_info['comment'] = $p_header['comment']; + $p_info['folder'] = (($p_header['external']&0x00000010)==0x00000010); + $p_info['index'] = $p_header['index']; + $p_info['status'] = $p_header['status']; + $p_info['crc'] = $p_header['crc']; + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privExtractByRule() + // Description : + // Extract a file or directory depending of rules (by index, by name, ...) + // Parameters : + // $p_file_list : An array where will be placed the properties of each + // extracted file + // $p_path : Path to add while writing the extracted files + // $p_remove_path : Path to remove (from the file memorized path) while writing the + // extracted files. If the path does not match the file path, + // the file is extracted with its memorized path. + // $p_remove_path does not apply to 'list' mode. + // $p_path and $p_remove_path are commulative. + // Return Values : + // 1 on success,0 or less on error (see error code list) + // -------------------------------------------------------------------------------- + public function privExtractByRule(&$p_file_list, $p_path, $p_remove_path, $p_remove_all_path, &$p_options) + { + $v_result=1; + + // ----- Magic quotes trick + $this->privDisableMagicQuotes(); + + // ----- Check the path + if (($p_path == "") || ((substr($p_path, 0, 1) != "/") && (substr($p_path, 0, 3) != "../") && (substr($p_path, 1, 2)!=":/"))) { + $p_path = "./".$p_path; + } + + // ----- Reduce the path last (and duplicated) '/' + if (($p_path != "./") && ($p_path != "/")) { + // ----- Look for the path end '/' + while (substr($p_path, -1) == "/") { + $p_path = substr($p_path, 0, strlen($p_path)-1); + } + } + + // ----- Look for path to remove format (should end by /) + if (($p_remove_path != "") && (substr($p_remove_path, -1) != '/')) { + $p_remove_path .= '/'; + } + $p_remove_path_size = strlen($p_remove_path); + + // ----- Open the zip file + if (($v_result = $this->privOpenFd('rb')) != 1) { + $this->privSwapBackMagicQuotes(); + return $v_result; + } + + // ----- Read the central directory informations + $v_central_dir = array(); + if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) { + // ----- Close the zip file + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + + return $v_result; + } + + // ----- Start at beginning of Central Dir + $v_pos_entry = $v_central_dir['offset']; + + // ----- Read each entry + $j_start = 0; + for ($i=0, $v_nb_extracted=0; $i<$v_central_dir['entries']; $i++) { + // ----- Read next Central dir entry + @rewind($this->zip_fd); + if (@fseek($this->zip_fd, $v_pos_entry)) { + // ----- Close the zip file + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ARCHIVE_ZIP, 'Invalid archive size'); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Read the file header + $v_header = array(); + if (($v_result = $this->privReadCentralFileHeader($v_header)) != 1) { + // ----- Close the zip file + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + + return $v_result; + } + + // ----- Store the index + $v_header['index'] = $i; + + // ----- Store the file position + $v_pos_entry = ftell($this->zip_fd); + + // ----- Look for the specific extract rules + $v_extract = false; + + // ----- Look for extract by name rule + if ((isset($p_options[PCLZIP_OPT_BY_NAME])) && ($p_options[PCLZIP_OPT_BY_NAME] != 0)) { + // ----- Look if the filename is in the list + for ($j=0; ($j<sizeof($p_options[PCLZIP_OPT_BY_NAME])) && (!$v_extract); $j++) { + // ----- Look for a directory + if (substr($p_options[PCLZIP_OPT_BY_NAME][$j], -1) == "/") { + // ----- Look if the directory is in the filename path + if ((strlen($v_header['stored_filename']) > strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) && (substr($v_header['stored_filename'], 0, strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) == $p_options[PCLZIP_OPT_BY_NAME][$j])) { + $v_extract = true; + } + } elseif ($v_header['stored_filename'] == $p_options[PCLZIP_OPT_BY_NAME][$j]) { + // ----- Look for a filename + $v_extract = true; + } + } + } elseif ((isset($p_options[PCLZIP_OPT_BY_PREG])) && ($p_options[PCLZIP_OPT_BY_PREG] != "")) { + // ----- Look for extract by preg rule + if (preg_match($p_options[PCLZIP_OPT_BY_PREG], $v_header['stored_filename'])) { + $v_extract = true; + } + } elseif ((isset($p_options[PCLZIP_OPT_BY_INDEX])) && ($p_options[PCLZIP_OPT_BY_INDEX] != 0)) { + // ----- Look for extract by index rule + // ----- Look if the index is in the list + for ($j=$j_start; ($j<sizeof($p_options[PCLZIP_OPT_BY_INDEX])) && (!$v_extract); $j++) { + if (($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['start']) && ($i<=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end'])) { + $v_extract = true; + } + if ($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end']) { + $j_start = $j+1; + } + + if ($p_options[PCLZIP_OPT_BY_INDEX][$j]['start']>$i) { + break; + } + } + } else { + // ----- Look for no rule, which means extract all the archive + $v_extract = true; + } + + // ----- Check compression method + if (($v_extract) && (($v_header['compression'] != 8) && ($v_header['compression'] != 0))) { + $v_header['status'] = 'unsupported_compression'; + + // ----- Look for PCLZIP_OPT_STOP_ON_ERROR + if ((isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) && ($p_options[PCLZIP_OPT_STOP_ON_ERROR] === true)) { + $this->privSwapBackMagicQuotes(); + + PclZip::privErrorLog(PCLZIP_ERR_UNSUPPORTED_COMPRESSION, "Filename '".$v_header['stored_filename']."' is compressed by an unsupported compression method (".$v_header['compression'].") "); + + return PclZip::errorCode(); + } + } + + // ----- Check encrypted files + if (($v_extract) && (($v_header['flag'] & 1) == 1)) { + $v_header['status'] = 'unsupported_encryption'; + // ----- Look for PCLZIP_OPT_STOP_ON_ERROR + if ((isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) && ($p_options[PCLZIP_OPT_STOP_ON_ERROR] === true)) { + $this->privSwapBackMagicQuotes(); + + PclZip::privErrorLog(PCLZIP_ERR_UNSUPPORTED_ENCRYPTION, "Unsupported encryption for filename '".$v_header['stored_filename']."'"); + + return PclZip::errorCode(); + } + } + + // ----- Look for real extraction + if (($v_extract) && ($v_header['status'] != 'ok')) { + $v_result = $this->privConvertHeader2FileInfo($v_header, $p_file_list[$v_nb_extracted++]); + if ($v_result != 1) { + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + return $v_result; + } + + $v_extract = false; + } + + // ----- Look for real extraction + if ($v_extract) { + // ----- Go to the file position + @rewind($this->zip_fd); + if (@fseek($this->zip_fd, $v_header['offset'])) { + // ----- Close the zip file + $this->privCloseFd(); + + $this->privSwapBackMagicQuotes(); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ARCHIVE_ZIP, 'Invalid archive size'); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Look for extraction as string + if ($p_options[PCLZIP_OPT_EXTRACT_AS_STRING]) { + $v_string = ''; + + // ----- Extracting the file + $v_result1 = $this->privExtractFileAsString($v_header, $v_string, $p_options); + if ($v_result1 < 1) { + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + return $v_result1; + } + + // ----- Get the only interesting attributes + if (($v_result = $this->privConvertHeader2FileInfo($v_header, $p_file_list[$v_nb_extracted])) != 1) { + // ----- Close the zip file + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + + return $v_result; + } + + // ----- Set the file content + $p_file_list[$v_nb_extracted]['content'] = $v_string; + + // ----- Next extracted file + $v_nb_extracted++; + + // ----- Look for user callback abort + if ($v_result1 == 2) { + break; + } + } elseif ((isset($p_options[PCLZIP_OPT_EXTRACT_IN_OUTPUT])) && ($p_options[PCLZIP_OPT_EXTRACT_IN_OUTPUT])) { + // ----- Look for extraction in standard output + // ----- Extracting the file in standard output + $v_result1 = $this->privExtractFileInOutput($v_header, $p_options); + if ($v_result1 < 1) { + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + return $v_result1; + } + + // ----- Get the only interesting attributes + if (($v_result = $this->privConvertHeader2FileInfo($v_header, $p_file_list[$v_nb_extracted++])) != 1) { + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + return $v_result; + } + + // ----- Look for user callback abort + if ($v_result1 == 2) { + break; + } + } else { + // ----- Look for normal extraction + // ----- Extracting the file + $v_result1 = $this->privExtractFile($v_header, $p_path, $p_remove_path, $p_remove_all_path, $p_options); + if ($v_result1 < 1) { + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + return $v_result1; + } + + // ----- Get the only interesting attributes + if (($v_result = $this->privConvertHeader2FileInfo($v_header, $p_file_list[$v_nb_extracted++])) != 1) { + // ----- Close the zip file + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + + return $v_result; + } + + // ----- Look for user callback abort + if ($v_result1 == 2) { + break; + } + } + } + } + + // ----- Close the zip file + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privExtractFile() + // Description : + // Parameters : + // Return Values : + // + // 1 : ... ? + // PCLZIP_ERR_USER_ABORTED(2) : User ask for extraction stop in callback + // -------------------------------------------------------------------------------- + public function privExtractFile(&$p_entry, $p_path, $p_remove_path, $p_remove_all_path, &$p_options) + { + $v_result=1; + + // ----- Read the file header + if (($v_result = $this->privReadFileHeader($v_header)) != 1) { + // ----- Return + return $v_result; + } + + + // ----- Check that the file header is coherent with $p_entry info + if ($this->privCheckFileHeaders($v_header, $p_entry) != 1) { + // TBC + } + + // ----- Look for all path to remove + if ($p_remove_all_path == true) { + // ----- Look for folder entry that not need to be extracted + if (($p_entry['external']&0x00000010)==0x00000010) { + $p_entry['status'] = "filtered"; + + return $v_result; + } + + // ----- Get the basename of the path + $p_entry['filename'] = basename($p_entry['filename']); + } elseif ($p_remove_path != "") { + // ----- Look for path to remove + if (PclZipUtilPathInclusion($p_remove_path, $p_entry['filename']) == 2) { + // ----- Change the file status + $p_entry['status'] = "filtered"; + + // ----- Return + return $v_result; + } + + $p_remove_path_size = strlen($p_remove_path); + if (substr($p_entry['filename'], 0, $p_remove_path_size) == $p_remove_path) { + // ----- Remove the path + $p_entry['filename'] = substr($p_entry['filename'], $p_remove_path_size); + } + } + + // ----- Add the path + if ($p_path != '') { + $p_entry['filename'] = $p_path."/".$p_entry['filename']; + } + + // ----- Check a base_dir_restriction + if (isset($p_options[PCLZIP_OPT_EXTRACT_DIR_RESTRICTION])) { + $v_inclusion = PclZipUtilPathInclusion($p_options[PCLZIP_OPT_EXTRACT_DIR_RESTRICTION], $p_entry['filename']); + if ($v_inclusion == 0) { + PclZip::privErrorLog(PCLZIP_ERR_DIRECTORY_RESTRICTION, "Filename '".$p_entry['filename']."' is outside PCLZIP_OPT_EXTRACT_DIR_RESTRICTION"); + + return PclZip::errorCode(); + } + } + + // ----- Look for pre-extract callback + if (isset($p_options[PCLZIP_CB_PRE_EXTRACT])) { + // ----- Generate a local information + $v_local_header = array(); + $this->privConvertHeader2FileInfo($p_entry, $v_local_header); + + // ----- Call the callback + // Here I do not use call_user_func() because I need to send a reference to the + // header. + // eval('$v_result = '.$p_options[PCLZIP_CB_PRE_EXTRACT].'(PCLZIP_CB_PRE_EXTRACT, $v_local_header);'); + $v_result = $p_options[PCLZIP_CB_PRE_EXTRACT](PCLZIP_CB_PRE_EXTRACT, $v_local_header); + if ($v_result == 0) { + // ----- Change the file status + $p_entry['status'] = "skipped"; + $v_result = 1; + } + + // ----- Look for abort result + if ($v_result == 2) { + // ----- This status is internal and will be changed in 'skipped' + $p_entry['status'] = "aborted"; + $v_result = PCLZIP_ERR_USER_ABORTED; + } + + // ----- Update the informations + // Only some fields can be modified + $p_entry['filename'] = $v_local_header['filename']; + } + + // ----- Look if extraction should be done + if ($p_entry['status'] == 'ok') { + // ----- Look for specific actions while the file exist + if (file_exists($p_entry['filename'])) { + // ----- Look if file is a directory + if (is_dir($p_entry['filename'])) { + // ----- Change the file status + $p_entry['status'] = "already_a_directory"; + + // ----- Look for PCLZIP_OPT_STOP_ON_ERROR + // For historical reason first PclZip implementation does not stop + // when this kind of error occurs. + if ((isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { + PclZip::privErrorLog(PCLZIP_ERR_ALREADY_A_DIRECTORY, "Filename '".$p_entry['filename']."' is already used by an existing directory"); + return PclZip::errorCode(); + } + } elseif (!is_writeable($p_entry['filename'])) { + // ----- Look if file is write protected + // ----- Change the file status + $p_entry['status'] = "write_protected"; + + // ----- Look for PCLZIP_OPT_STOP_ON_ERROR + // For historical reason first PclZip implementation does not stop + // when this kind of error occurs. + if ((isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) && ($p_options[PCLZIP_OPT_STOP_ON_ERROR] === true)) { + PclZip::privErrorLog(PCLZIP_ERR_WRITE_OPEN_FAIL, "Filename '".$p_entry['filename']."' exists and is write protected"); + return PclZip::errorCode(); + } + } elseif (filemtime($p_entry['filename']) > $p_entry['mtime']) { + // ----- Look if the extracted file is older + // ----- Change the file status + if ((isset($p_options[PCLZIP_OPT_REPLACE_NEWER])) && ($p_options[PCLZIP_OPT_REPLACE_NEWER] === true)) { + } else { + $p_entry['status'] = "newer_exist"; + + // ----- Look for PCLZIP_OPT_STOP_ON_ERROR + // For historical reason first PclZip implementation does not stop + // when this kind of error occurs. + if ((isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) && ($p_options[PCLZIP_OPT_STOP_ON_ERROR] === true)) { + PclZip::privErrorLog(PCLZIP_ERR_WRITE_OPEN_FAIL, "Newer version of '".$p_entry['filename']."' exists and option PCLZIP_OPT_REPLACE_NEWER is not selected"); + return PclZip::errorCode(); + } + } + } else { + } + } else { + // ----- Check the directory availability and create it if necessary + if ((($p_entry['external']&0x00000010)==0x00000010) || (substr($p_entry['filename'], -1) == '/')) { + $v_dir_to_check = $p_entry['filename']; + } elseif (!strstr($p_entry['filename'], "/")) { + $v_dir_to_check = ""; + } else { + $v_dir_to_check = dirname($p_entry['filename']); + } + + if (($v_result = $this->privDirCheck($v_dir_to_check, (($p_entry['external']&0x00000010)==0x00000010))) != 1) { + // ----- Change the file status + $p_entry['status'] = "path_creation_fail"; + + // ----- Return + //return $v_result; + $v_result = 1; + } + } + } + + // ----- Look if extraction should be done + if ($p_entry['status'] == 'ok') { + // ----- Do the extraction (if not a folder) + if (!(($p_entry['external']&0x00000010) == 0x00000010)) { + // ----- Look for not compressed file + if ($p_entry['compression'] == 0) { + // ----- Opening destination file + if (($v_dest_file = @fopen($p_entry['filename'], 'wb')) == 0) { + // ----- Change the file status + $p_entry['status'] = "write_error"; + + // ----- Return + return $v_result; + } + + // ----- Read the file by PCLZIP_READ_BLOCK_SIZE octets blocks + $v_size = $p_entry['compressed_size']; + while ($v_size != 0) { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + $v_buffer = @fread($this->zip_fd, $v_read_size); + /* Try to speed up the code + $v_binary_data = pack('a'.$v_read_size, $v_buffer); + @fwrite($v_dest_file, $v_binary_data, $v_read_size); + */ + @fwrite($v_dest_file, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Closing the destination file + fclose($v_dest_file); + + // ----- Change the file mtime + touch($p_entry['filename'], $p_entry['mtime']); + } else { + // ----- TBC + // Need to be finished + if (($p_entry['flag'] & 1) == 1) { + PclZip::privErrorLog(PCLZIP_ERR_UNSUPPORTED_ENCRYPTION, 'File \''.$p_entry['filename'].'\' is encrypted. Encrypted files are not supported.'); + return PclZip::errorCode(); + } + + // ----- Look for using temporary file to unzip + if ((!isset($p_options[PCLZIP_OPT_TEMP_FILE_OFF])) && (isset($p_options[PCLZIP_OPT_TEMP_FILE_ON]) || (isset($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD]) && ($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD] <= $p_entry['size'])))) { + $v_result = $this->privExtractFileUsingTempFile($p_entry, $p_options); + if ($v_result < PCLZIP_ERR_NO_ERROR) { + return $v_result; + } + } else { + // ----- Look for extract in memory + // ----- Read the compressed file in a buffer (one shot) + $v_buffer = @fread($this->zip_fd, $p_entry['compressed_size']); + + // ----- Decompress the file + $v_file_content = @gzinflate($v_buffer); + unset($v_buffer); + if ($v_file_content === false) { + // ----- Change the file status + // TBC + $p_entry['status'] = "error"; + + return $v_result; + } + + // ----- Opening destination file + if (($v_dest_file = @fopen($p_entry['filename'], 'wb')) == 0) { + // ----- Change the file status + $p_entry['status'] = "write_error"; + + return $v_result; + } + + // ----- Write the uncompressed data + @fwrite($v_dest_file, $v_file_content, $p_entry['size']); + unset($v_file_content); + + // ----- Closing the destination file + @fclose($v_dest_file); + } + + // ----- Change the file mtime + @touch($p_entry['filename'], $p_entry['mtime']); + } + + // ----- Look for chmod option + if (isset($p_options[PCLZIP_OPT_SET_CHMOD])) { + // ----- Change the mode of the file + @chmod($p_entry['filename'], $p_options[PCLZIP_OPT_SET_CHMOD]); + } + } + } + + // ----- Change abort status + if ($p_entry['status'] == "aborted") { + $p_entry['status'] = "skipped"; + } elseif (isset($p_options[PCLZIP_CB_POST_EXTRACT])) { + // ----- Look for post-extract callback + // ----- Generate a local information + $v_local_header = array(); + $this->privConvertHeader2FileInfo($p_entry, $v_local_header); + + // ----- Call the callback + // Here I do not use call_user_func() because I need to send a reference to the + // header. + // eval('$v_result = '.$p_options[PCLZIP_CB_POST_EXTRACT].'(PCLZIP_CB_POST_EXTRACT, $v_local_header);'); + $v_result = $p_options[PCLZIP_CB_POST_EXTRACT](PCLZIP_CB_POST_EXTRACT, $v_local_header); + + // ----- Look for abort result + if ($v_result == 2) { + $v_result = PCLZIP_ERR_USER_ABORTED; + } + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privExtractFileUsingTempFile() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privExtractFileUsingTempFile(&$p_entry, &$p_options) + { + $v_result=1; + + // ----- Creates a temporary file + $v_gzip_temp_name = PCLZIP_TEMPORARY_DIR.uniqid('pclzip-').'.gz'; + if (($v_dest_file = @fopen($v_gzip_temp_name, "wb")) == 0) { + fclose($v_file); + PclZip::privErrorLog(PCLZIP_ERR_WRITE_OPEN_FAIL, 'Unable to open temporary file \''.$v_gzip_temp_name.'\' in binary write mode'); + return PclZip::errorCode(); + } + + // ----- Write gz file format header + $v_binary_data = pack('va1a1Va1a1', 0x8b1f, Chr($p_entry['compression']), Chr(0x00), time(), Chr(0x00), Chr(3)); + @fwrite($v_dest_file, $v_binary_data, 10); + + // ----- Read the file by PCLZIP_READ_BLOCK_SIZE octets blocks + $v_size = $p_entry['compressed_size']; + while ($v_size != 0) { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + $v_buffer = @fread($this->zip_fd, $v_read_size); + //$v_binary_data = pack('a'.$v_read_size, $v_buffer); + @fwrite($v_dest_file, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Write gz file format footer + $v_binary_data = pack('VV', $p_entry['crc'], $p_entry['size']); + @fwrite($v_dest_file, $v_binary_data, 8); + + // ----- Close the temporary file + @fclose($v_dest_file); + + // ----- Opening destination file + if (($v_dest_file = @fopen($p_entry['filename'], 'wb')) == 0) { + $p_entry['status'] = "write_error"; + return $v_result; + } + + // ----- Open the temporary gz file + if (($v_src_file = @gzopen($v_gzip_temp_name, 'rb')) == 0) { + @fclose($v_dest_file); + $p_entry['status'] = "read_error"; + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_gzip_temp_name.'\' in binary read mode'); + return PclZip::errorCode(); + } + + // ----- Read the file by PCLZIP_READ_BLOCK_SIZE octets blocks + $v_size = $p_entry['size']; + while ($v_size != 0) { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + $v_buffer = @gzread($v_src_file, $v_read_size); + //$v_binary_data = pack('a'.$v_read_size, $v_buffer); + @fwrite($v_dest_file, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + @fclose($v_dest_file); + @gzclose($v_src_file); + + // ----- Delete the temporary file + @unlink($v_gzip_temp_name); + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privExtractFileInOutput() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privExtractFileInOutput(&$p_entry, &$p_options) + { + $v_result=1; + + // ----- Read the file header + if (($v_result = $this->privReadFileHeader($v_header)) != 1) { + return $v_result; + } + + // ----- Check that the file header is coherent with $p_entry info + if ($this->privCheckFileHeaders($v_header, $p_entry) != 1) { + // TBC + } + + // ----- Look for pre-extract callback + if (isset($p_options[PCLZIP_CB_PRE_EXTRACT])) { + // ----- Generate a local information + $v_local_header = array(); + $this->privConvertHeader2FileInfo($p_entry, $v_local_header); + + // ----- Call the callback + // Here I do not use call_user_func() because I need to send a reference to the + // header. + // eval('$v_result = '.$p_options[PCLZIP_CB_PRE_EXTRACT].'(PCLZIP_CB_PRE_EXTRACT, $v_local_header);'); + $v_result = $p_options[PCLZIP_CB_PRE_EXTRACT](PCLZIP_CB_PRE_EXTRACT, $v_local_header); + if ($v_result == 0) { + // ----- Change the file status + $p_entry['status'] = "skipped"; + $v_result = 1; + } + + // ----- Look for abort result + if ($v_result == 2) { + // ----- This status is internal and will be changed in 'skipped' + $p_entry['status'] = "aborted"; + $v_result = PCLZIP_ERR_USER_ABORTED; + } + + // ----- Update the informations + // Only some fields can be modified + $p_entry['filename'] = $v_local_header['filename']; + } + + // ----- Trace + + // ----- Look if extraction should be done + if ($p_entry['status'] == 'ok') { + // ----- Do the extraction (if not a folder) + if (!(($p_entry['external']&0x00000010)==0x00000010)) { + // ----- Look for not compressed file + if ($p_entry['compressed_size'] == $p_entry['size']) { + // ----- Read the file in a buffer (one shot) + $v_buffer = @fread($this->zip_fd, $p_entry['compressed_size']); + + // ----- Send the file to the output + echo $v_buffer; + unset($v_buffer); + } else { + // ----- Read the compressed file in a buffer (one shot) + $v_buffer = @fread($this->zip_fd, $p_entry['compressed_size']); + + // ----- Decompress the file + $v_file_content = gzinflate($v_buffer); + unset($v_buffer); + + // ----- Send the file to the output + echo $v_file_content; + unset($v_file_content); + } + } + } + + // ----- Change abort status + if ($p_entry['status'] == "aborted") { + $p_entry['status'] = "skipped"; + } elseif (isset($p_options[PCLZIP_CB_POST_EXTRACT])) { + // ----- Look for post-extract callback + + // ----- Generate a local information + $v_local_header = array(); + $this->privConvertHeader2FileInfo($p_entry, $v_local_header); + + // ----- Call the callback + // Here I do not use call_user_func() because I need to send a reference to the + // header. + // eval('$v_result = '.$p_options[PCLZIP_CB_POST_EXTRACT].'(PCLZIP_CB_POST_EXTRACT, $v_local_header);'); + $v_result = $p_options[PCLZIP_CB_POST_EXTRACT](PCLZIP_CB_POST_EXTRACT, $v_local_header); + + // ----- Look for abort result + if ($v_result == 2) { + $v_result = PCLZIP_ERR_USER_ABORTED; + } + } + + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privExtractFileAsString() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privExtractFileAsString(&$p_entry, &$p_string, &$p_options) + { + $v_result=1; + + // ----- Read the file header + $v_header = array(); + if (($v_result = $this->privReadFileHeader($v_header)) != 1) { + // ----- Return + return $v_result; + } + + // ----- Check that the file header is coherent with $p_entry info + if ($this->privCheckFileHeaders($v_header, $p_entry) != 1) { + // TBC + } + + // ----- Look for pre-extract callback + if (isset($p_options[PCLZIP_CB_PRE_EXTRACT])) { + // ----- Generate a local information + $v_local_header = array(); + $this->privConvertHeader2FileInfo($p_entry, $v_local_header); + + // ----- Call the callback + // Here I do not use call_user_func() because I need to send a reference to the + // header. + // eval('$v_result = '.$p_options[PCLZIP_CB_PRE_EXTRACT].'(PCLZIP_CB_PRE_EXTRACT, $v_local_header);'); + $v_result = $p_options[PCLZIP_CB_PRE_EXTRACT](PCLZIP_CB_PRE_EXTRACT, $v_local_header); + if ($v_result == 0) { + // ----- Change the file status + $p_entry['status'] = "skipped"; + $v_result = 1; + } + + // ----- Look for abort result + if ($v_result == 2) { + // ----- This status is internal and will be changed in 'skipped' + $p_entry['status'] = "aborted"; + $v_result = PCLZIP_ERR_USER_ABORTED; + } + + // ----- Update the informations + // Only some fields can be modified + $p_entry['filename'] = $v_local_header['filename']; + } + + // ----- Look if extraction should be done + if ($p_entry['status'] == 'ok') { + // ----- Do the extraction (if not a folder) + if (!(($p_entry['external']&0x00000010)==0x00000010)) { + // ----- Look for not compressed file + // if ($p_entry['compressed_size'] == $p_entry['size']) + if ($p_entry['compression'] == 0) { + // ----- Reading the file + $p_string = @fread($this->zip_fd, $p_entry['compressed_size']); + } else { + // ----- Reading the file + $v_data = @fread($this->zip_fd, $p_entry['compressed_size']); + + // ----- Decompress the file + if (($p_string = @gzinflate($v_data)) === false) { + // TBC + } + } + // ----- Trace + } else { + // TBC : error : can not extract a folder in a string + } + } + + // ----- Change abort status + if ($p_entry['status'] == "aborted") { + $p_entry['status'] = "skipped"; + } elseif (isset($p_options[PCLZIP_CB_POST_EXTRACT])) { + // ----- Look for post-extract callback + // ----- Generate a local information + $v_local_header = array(); + $this->privConvertHeader2FileInfo($p_entry, $v_local_header); + + // ----- Swap the content to header + $v_local_header['content'] = $p_string; + $p_string = ''; + + // ----- Call the callback + // Here I do not use call_user_func() because I need to send a reference to the + // header. + // eval('$v_result = '.$p_options[PCLZIP_CB_POST_EXTRACT].'(PCLZIP_CB_POST_EXTRACT, $v_local_header);'); + $v_result = $p_options[PCLZIP_CB_POST_EXTRACT](PCLZIP_CB_POST_EXTRACT, $v_local_header); + + // ----- Swap back the content to header + $p_string = $v_local_header['content']; + unset($v_local_header['content']); + + // ----- Look for abort result + if ($v_result == 2) { + $v_result = PCLZIP_ERR_USER_ABORTED; + } + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privReadFileHeader() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privReadFileHeader(&$p_header) + { + $v_result=1; + + // ----- Read the 4 bytes signature + $v_binary_data = @fread($this->zip_fd, 4); + $v_data = unpack('Vid', $v_binary_data); + + // ----- Check signature + if ($v_data['id'] != 0x04034b50) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Invalid archive structure'); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Read the first 42 bytes of the header + $v_binary_data = fread($this->zip_fd, 26); + + // ----- Look for invalid block size + if (strlen($v_binary_data) != 26) { + $p_header['filename'] = ""; + $p_header['status'] = "invalid_header"; + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, "Invalid block size : ".strlen($v_binary_data)); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Extract the values + $v_data = unpack('vversion/vflag/vcompression/vmtime/vmdate/Vcrc/Vcompressed_size/Vsize/vfilename_len/vextra_len', $v_binary_data); + + // ----- Get filename + $p_header['filename'] = fread($this->zip_fd, $v_data['filename_len']); + + // ----- Get extra_fields + if ($v_data['extra_len'] != 0) { + $p_header['extra'] = fread($this->zip_fd, $v_data['extra_len']); + } else { + $p_header['extra'] = ''; + } + + // ----- Extract properties + $p_header['version_extracted'] = $v_data['version']; + $p_header['compression'] = $v_data['compression']; + $p_header['size'] = $v_data['size']; + $p_header['compressed_size'] = $v_data['compressed_size']; + $p_header['crc'] = $v_data['crc']; + $p_header['flag'] = $v_data['flag']; + $p_header['filename_len'] = $v_data['filename_len']; + + // ----- Recuperate date in UNIX format + $p_header['mdate'] = $v_data['mdate']; + $p_header['mtime'] = $v_data['mtime']; + if ($p_header['mdate'] && $p_header['mtime']) { + // ----- Extract time + $v_hour = ($p_header['mtime'] & 0xF800) >> 11; + $v_minute = ($p_header['mtime'] & 0x07E0) >> 5; + $v_seconde = ($p_header['mtime'] & 0x001F)*2; + + // ----- Extract date + $v_year = (($p_header['mdate'] & 0xFE00) >> 9) + 1980; + $v_month = ($p_header['mdate'] & 0x01E0) >> 5; + $v_day = $p_header['mdate'] & 0x001F; + + // ----- Get UNIX date format + $p_header['mtime'] = @mktime($v_hour, $v_minute, $v_seconde, $v_month, $v_day, $v_year); + + } else { + $p_header['mtime'] = time(); + } + + // TBC + //for(reset($v_data); $key = key($v_data); next($v_data)) { + //} + + // ----- Set the stored filename + $p_header['stored_filename'] = $p_header['filename']; + + // ----- Set the status field + $p_header['status'] = "ok"; + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privReadCentralFileHeader() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privReadCentralFileHeader(&$p_header) + { + $v_result = 1; + + // ----- Read the 4 bytes signature + $v_binary_data = @fread($this->zip_fd, 4); + $v_data = unpack('Vid', $v_binary_data); + + // ----- Check signature + if ($v_data['id'] != 0x02014b50) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Invalid archive structure'); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Read the first 42 bytes of the header + $v_binary_data = fread($this->zip_fd, 42); + + // ----- Look for invalid block size + if (strlen($v_binary_data) != 42) { + $p_header['filename'] = ""; + $p_header['status'] = "invalid_header"; + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, "Invalid block size : ".strlen($v_binary_data)); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Extract the values + $p_header = unpack('vversion/vversion_extracted/vflag/vcompression/vmtime/vmdate/Vcrc/Vcompressed_size/Vsize/vfilename_len/vextra_len/vcomment_len/vdisk/vinternal/Vexternal/Voffset', $v_binary_data); + + // ----- Get filename + if ($p_header['filename_len'] != 0) { + $p_header['filename'] = fread($this->zip_fd, $p_header['filename_len']); + } else { + $p_header['filename'] = ''; + } + + // ----- Get extra + if ($p_header['extra_len'] != 0) { + $p_header['extra'] = fread($this->zip_fd, $p_header['extra_len']); + } else { + $p_header['extra'] = ''; + } + + // ----- Get comment + if ($p_header['comment_len'] != 0) { + $p_header['comment'] = fread($this->zip_fd, $p_header['comment_len']); + } else { + $p_header['comment'] = ''; + } + + // ----- Extract properties + + // ----- Recuperate date in UNIX format + //if ($p_header['mdate'] && $p_header['mtime']) + // TBC : bug : this was ignoring time with 0/0/0 + if (1) { + // ----- Extract time + $v_hour = ($p_header['mtime'] & 0xF800) >> 11; + $v_minute = ($p_header['mtime'] & 0x07E0) >> 5; + $v_seconde = ($p_header['mtime'] & 0x001F)*2; + + // ----- Extract date + $v_year = (($p_header['mdate'] & 0xFE00) >> 9) + 1980; + $v_month = ($p_header['mdate'] & 0x01E0) >> 5; + $v_day = $p_header['mdate'] & 0x001F; + + // ----- Get UNIX date format + $p_header['mtime'] = @mktime($v_hour, $v_minute, $v_seconde, $v_month, $v_day, $v_year); + + } else { + $p_header['mtime'] = time(); + } + + // ----- Set the stored filename + $p_header['stored_filename'] = $p_header['filename']; + + // ----- Set default status to ok + $p_header['status'] = 'ok'; + + // ----- Look if it is a directory + if (substr($p_header['filename'], -1) == '/') { + //$p_header['external'] = 0x41FF0010; + $p_header['external'] = 0x00000010; + } + + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privCheckFileHeaders() + // Description : + // Parameters : + // Return Values : + // 1 on success, + // 0 on error; + // -------------------------------------------------------------------------------- + public function privCheckFileHeaders(&$p_local_header, &$p_central_header) + { + $v_result=1; + + // ----- Check the static values + // TBC + if ($p_local_header['filename'] != $p_central_header['filename']) { + } + if ($p_local_header['version_extracted'] != $p_central_header['version_extracted']) { + } + if ($p_local_header['flag'] != $p_central_header['flag']) { + } + if ($p_local_header['compression'] != $p_central_header['compression']) { + } + if ($p_local_header['mtime'] != $p_central_header['mtime']) { + } + if ($p_local_header['filename_len'] != $p_central_header['filename_len']) { + } + + // ----- Look for flag bit 3 + if (($p_local_header['flag'] & 8) == 8) { + $p_local_header['size'] = $p_central_header['size']; + $p_local_header['compressed_size'] = $p_central_header['compressed_size']; + $p_local_header['crc'] = $p_central_header['crc']; + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privReadEndCentralDir() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privReadEndCentralDir(&$p_central_dir) + { + $v_result=1; + + // ----- Go to the end of the zip file + $v_size = filesize($this->zipname); + @fseek($this->zip_fd, $v_size); + if (@ftell($this->zip_fd) != $v_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Unable to go to the end of the archive \''.$this->zipname.'\''); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- First try : look if this is an archive with no commentaries (most of the time) + // in this case the end of central dir is at 22 bytes of the file end + $v_found = 0; + if ($v_size > 26) { + @fseek($this->zip_fd, $v_size-22); + if (($v_pos = @ftell($this->zip_fd)) != ($v_size-22)) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Unable to seek back to the middle of the archive \''.$this->zipname.'\''); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Read for bytes + $v_binary_data = @fread($this->zip_fd, 4); + $v_data = @unpack('Vid', $v_binary_data); + + // ----- Check signature + if ($v_data['id'] == 0x06054b50) { + $v_found = 1; + } + + $v_pos = ftell($this->zip_fd); + } + + // ----- Go back to the maximum possible size of the Central Dir End Record + if (!$v_found) { + $v_maximum_size = 65557; // 0xFFFF + 22; + if ($v_maximum_size > $v_size) { + $v_maximum_size = $v_size; + } + @fseek($this->zip_fd, $v_size-$v_maximum_size); + if (@ftell($this->zip_fd) != ($v_size-$v_maximum_size)) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Unable to seek back to the middle of the archive \''.$this->zipname.'\''); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Read byte per byte in order to find the signature + $v_pos = ftell($this->zip_fd); + $v_bytes = 0x00000000; + while ($v_pos < $v_size) { + // ----- Read a byte + $v_byte = @fread($this->zip_fd, 1); + + // ----- Add the byte + //$v_bytes = ($v_bytes << 8) | Ord($v_byte); + // Note we mask the old value down such that once shifted we can never end up with more than a 32bit number + // Otherwise on systems where we have 64bit integers the check below for the magic number will fail. + $v_bytes = (($v_bytes & 0xFFFFFF) << 8) | Ord($v_byte); + + // ----- Compare the bytes + if ($v_bytes == 0x504b0506) { + $v_pos++; + break; + } + + $v_pos++; + } + + // ----- Look if not found end of central dir + if ($v_pos == $v_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, "Unable to find End of Central Dir Record signature"); + + // ----- Return + return PclZip::errorCode(); + } + } + + // ----- Read the first 18 bytes of the header + $v_binary_data = fread($this->zip_fd, 18); + + // ----- Look for invalid block size + if (strlen($v_binary_data) != 18) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, "Invalid End of Central Dir Record size : ".strlen($v_binary_data)); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Extract the values + $v_data = unpack('vdisk/vdisk_start/vdisk_entries/ventries/Vsize/Voffset/vcomment_size', $v_binary_data); + + // ----- Check the global size + if (($v_pos + $v_data['comment_size'] + 18) != $v_size) { + // ----- Removed in release 2.2 see readme file + // The check of the file size is a little too strict. + // Some bugs where found when a zip is encrypted/decrypted with 'crypt'. + // While decrypted, zip has training 0 bytes + if (0) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'The central dir is not at the end of the archive. Some trailing bytes exists after the archive.'); + + // ----- Return + return PclZip::errorCode(); + } + } + + // ----- Get comment + if ($v_data['comment_size'] != 0) { + $p_central_dir['comment'] = fread($this->zip_fd, $v_data['comment_size']); + } else { + $p_central_dir['comment'] = ''; + } + + $p_central_dir['entries'] = $v_data['entries']; + $p_central_dir['disk_entries'] = $v_data['disk_entries']; + $p_central_dir['offset'] = $v_data['offset']; + $p_central_dir['size'] = $v_data['size']; + $p_central_dir['disk'] = $v_data['disk']; + $p_central_dir['disk_start'] = $v_data['disk_start']; + + // TBC + //for(reset($p_central_dir); $key = key($p_central_dir); next($p_central_dir)) { + //} + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privDeleteByRule() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privDeleteByRule(&$p_result_list, &$p_options) + { + $v_result=1; + $v_list_detail = array(); + + // ----- Open the zip file + if (($v_result=$this->privOpenFd('rb')) != 1) { + // ----- Return + return $v_result; + } + + // ----- Read the central directory informations + $v_central_dir = array(); + if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) { + $this->privCloseFd(); + return $v_result; + } + + // ----- Go to beginning of File + @rewind($this->zip_fd); + + // ----- Scan all the files + // ----- Start at beginning of Central Dir + $v_pos_entry = $v_central_dir['offset']; + @rewind($this->zip_fd); + if (@fseek($this->zip_fd, $v_pos_entry)) { + // ----- Close the zip file + $this->privCloseFd(); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ARCHIVE_ZIP, 'Invalid archive size'); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Read each entry + $v_header_list = array(); + $j_start = 0; + for ($i=0, $v_nb_extracted=0; $i<$v_central_dir['entries']; $i++) { + // ----- Read the file header + $v_header_list[$v_nb_extracted] = array(); + if (($v_result = $this->privReadCentralFileHeader($v_header_list[$v_nb_extracted])) != 1) { + // ----- Close the zip file + $this->privCloseFd(); + + return $v_result; + } + + + // ----- Store the index + $v_header_list[$v_nb_extracted]['index'] = $i; + + // ----- Look for the specific extract rules + $v_found = false; + + // ----- Look for extract by name rule + if ((isset($p_options[PCLZIP_OPT_BY_NAME])) && ($p_options[PCLZIP_OPT_BY_NAME] != 0)) { + // ----- Look if the filename is in the list + for ($j=0; ($j<sizeof($p_options[PCLZIP_OPT_BY_NAME])) && (!$v_found); $j++) { + // ----- Look for a directory + if (substr($p_options[PCLZIP_OPT_BY_NAME][$j], -1) == "/") { + // ----- Look if the directory is in the filename path + if ((strlen($v_header_list[$v_nb_extracted]['stored_filename']) > strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) && (substr($v_header_list[$v_nb_extracted]['stored_filename'], 0, strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) == $p_options[PCLZIP_OPT_BY_NAME][$j])) { + $v_found = true; + } elseif ((($v_header_list[$v_nb_extracted]['external']&0x00000010)==0x00000010) /* Indicates a folder */ && ($v_header_list[$v_nb_extracted]['stored_filename'].'/' == $p_options[PCLZIP_OPT_BY_NAME][$j])) { + $v_found = true; + } + } elseif ($v_header_list[$v_nb_extracted]['stored_filename'] == $p_options[PCLZIP_OPT_BY_NAME][$j]) { + // ----- Look for a filename + $v_found = true; + } + } + } elseif ((isset($p_options[PCLZIP_OPT_BY_PREG])) && ($p_options[PCLZIP_OPT_BY_PREG] != "")) { + // ----- Look for extract by preg rule + if (preg_match($p_options[PCLZIP_OPT_BY_PREG], $v_header_list[$v_nb_extracted]['stored_filename'])) { + $v_found = true; + } + } elseif ((isset($p_options[PCLZIP_OPT_BY_INDEX])) && ($p_options[PCLZIP_OPT_BY_INDEX] != 0)) { + // ----- Look for extract by index rule + // ----- Look if the index is in the list + for ($j=$j_start; ($j<sizeof($p_options[PCLZIP_OPT_BY_INDEX])) && (!$v_found); $j++) { + if (($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['start']) && ($i<=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end'])) { + $v_found = true; + } + if ($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end']) { + $j_start = $j+1; + } + if ($p_options[PCLZIP_OPT_BY_INDEX][$j]['start']>$i) { + break; + } + } + } else { + $v_found = true; + } + + // ----- Look for deletion + if ($v_found) { + unset($v_header_list[$v_nb_extracted]); + } else { + $v_nb_extracted++; + } + } + + // ----- Look if something need to be deleted + if ($v_nb_extracted > 0) { + // ----- Creates a temporay file + $v_zip_temp_name = PCLZIP_TEMPORARY_DIR.uniqid('pclzip-').'.tmp'; + + // ----- Creates a temporary zip archive + $v_temp_zip = new PclZip($v_zip_temp_name); + + // ----- Open the temporary zip file in write mode + if (($v_result = $v_temp_zip->privOpenFd('wb')) != 1) { + $this->privCloseFd(); + + // ----- Return + return $v_result; + } + + // ----- Look which file need to be kept + for ($i=0; $i<sizeof($v_header_list); $i++) { + // ----- Calculate the position of the header + @rewind($this->zip_fd); + if (@fseek($this->zip_fd, $v_header_list[$i]['offset'])) { + // ----- Close the zip file + $this->privCloseFd(); + $v_temp_zip->privCloseFd(); + @unlink($v_zip_temp_name); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ARCHIVE_ZIP, 'Invalid archive size'); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Read the file header + $v_local_header = array(); + if (($v_result = $this->privReadFileHeader($v_local_header)) != 1) { + // ----- Close the zip file + $this->privCloseFd(); + $v_temp_zip->privCloseFd(); + @unlink($v_zip_temp_name); + + // ----- Return + return $v_result; + } + + // ----- Check that local file header is same as central file header + if ($this->privCheckFileHeaders($v_local_header, $v_header_list[$i]) != 1) { + // TBC + } + unset($v_local_header); + + // ----- Write the file header + if (($v_result = $v_temp_zip->privWriteFileHeader($v_header_list[$i])) != 1) { + // ----- Close the zip file + $this->privCloseFd(); + $v_temp_zip->privCloseFd(); + @unlink($v_zip_temp_name); + + // ----- Return + return $v_result; + } + + // ----- Read/write the data block + if (($v_result = PclZipUtilCopyBlock($this->zip_fd, $v_temp_zip->zip_fd, $v_header_list[$i]['compressed_size'])) != 1) { + // ----- Close the zip file + $this->privCloseFd(); + $v_temp_zip->privCloseFd(); + @unlink($v_zip_temp_name); + + // ----- Return + return $v_result; + } + } + + // ----- Store the offset of the central dir + $v_offset = @ftell($v_temp_zip->zip_fd); + + // ----- Re-Create the Central Dir files header + for ($i=0; $i<sizeof($v_header_list); $i++) { + // ----- Create the file header + if (($v_result = $v_temp_zip->privWriteCentralFileHeader($v_header_list[$i])) != 1) { + $v_temp_zip->privCloseFd(); + $this->privCloseFd(); + @unlink($v_zip_temp_name); + + // ----- Return + return $v_result; + } + + // ----- Transform the header to a 'usable' info + $v_temp_zip->privConvertHeader2FileInfo($v_header_list[$i], $p_result_list[$i]); + } + + + // ----- Zip file comment + $v_comment = ''; + if (isset($p_options[PCLZIP_OPT_COMMENT])) { + $v_comment = $p_options[PCLZIP_OPT_COMMENT]; + } + + // ----- Calculate the size of the central header + $v_size = @ftell($v_temp_zip->zip_fd)-$v_offset; + + // ----- Create the central dir footer + if (($v_result = $v_temp_zip->privWriteCentralHeader(sizeof($v_header_list), $v_size, $v_offset, $v_comment)) != 1) { + // ----- Reset the file list + unset($v_header_list); + $v_temp_zip->privCloseFd(); + $this->privCloseFd(); + @unlink($v_zip_temp_name); + + // ----- Return + return $v_result; + } + + // ----- Close + $v_temp_zip->privCloseFd(); + $this->privCloseFd(); + + // ----- Delete the zip file + // TBC : I should test the result ... + @unlink($this->zipname); + + // ----- Rename the temporary file + // TBC : I should test the result ... + //@rename($v_zip_temp_name, $this->zipname); + PclZipUtilRename($v_zip_temp_name, $this->zipname); + + // ----- Destroy the temporary archive + unset($v_temp_zip); + } elseif ($v_central_dir['entries'] != 0) { + // ----- Remove every files : reset the file + $this->privCloseFd(); + + if (($v_result = $this->privOpenFd('wb')) != 1) { + return $v_result; + } + + if (($v_result = $this->privWriteCentralHeader(0, 0, 0, '')) != 1) { + return $v_result; + } + + $this->privCloseFd(); + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privDirCheck() + // Description : + // Check if a directory exists, if not it creates it and all the parents directory + // which may be useful. + // Parameters : + // $p_dir : Directory path to check. + // Return Values : + // 1 : OK + // -1 : Unable to create directory + // -------------------------------------------------------------------------------- + public function privDirCheck($p_dir, $p_is_dir = false) + { + $v_result = 1; + + // ----- Remove the final '/' + if (($p_is_dir) && (substr($p_dir, -1)=='/')) { + $p_dir = substr($p_dir, 0, strlen($p_dir)-1); + } + + // ----- Check the directory availability + if ((is_dir($p_dir)) || ($p_dir == "")) { + return 1; + } + + // ----- Extract parent directory + $p_parent_dir = dirname($p_dir); + + // ----- Just a check + if ($p_parent_dir != $p_dir) { + // ----- Look for parent directory + if ($p_parent_dir != "") { + if (($v_result = $this->privDirCheck($p_parent_dir)) != 1) { + return $v_result; + } + } + } + + // ----- Create the directory + if (!@mkdir($p_dir, 0777)) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_DIR_CREATE_FAIL, "Unable to create directory '$p_dir'"); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privMerge() + // Description : + // If $p_archive_to_add does not exist, the function exit with a success result. + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privMerge(&$p_archive_to_add) + { + $v_result=1; + + // ----- Look if the archive_to_add exists + if (!is_file($p_archive_to_add->zipname)) { + // ----- Nothing to merge, so merge is a success + $v_result = 1; + + // ----- Return + return $v_result; + } + + // ----- Look if the archive exists + if (!is_file($this->zipname)) { + // ----- Do a duplicate + $v_result = $this->privDuplicate($p_archive_to_add->zipname); + + // ----- Return + return $v_result; + } + + // ----- Open the zip file + if (($v_result=$this->privOpenFd('rb')) != 1) { + // ----- Return + return $v_result; + } + + // ----- Read the central directory informations + $v_central_dir = array(); + if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) { + $this->privCloseFd(); + return $v_result; + } + + // ----- Go to beginning of File + @rewind($this->zip_fd); + + // ----- Open the archive_to_add file + if (($v_result=$p_archive_to_add->privOpenFd('rb')) != 1) { + $this->privCloseFd(); + + // ----- Return + return $v_result; + } + + // ----- Read the central directory informations + $v_central_dir_to_add = array(); + if (($v_result = $p_archive_to_add->privReadEndCentralDir($v_central_dir_to_add)) != 1) { + $this->privCloseFd(); + $p_archive_to_add->privCloseFd(); + + return $v_result; + } + + // ----- Go to beginning of File + @rewind($p_archive_to_add->zip_fd); + + // ----- Creates a temporay file + $v_zip_temp_name = PCLZIP_TEMPORARY_DIR.uniqid('pclzip-').'.tmp'; + + // ----- Open the temporary file in write mode + if (($v_zip_temp_fd = @fopen($v_zip_temp_name, 'wb')) == 0) { + $this->privCloseFd(); + $p_archive_to_add->privCloseFd(); + + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_zip_temp_name.'\' in binary write mode'); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Copy the files from the archive to the temporary file + // TBC : Here I should better append the file and go back to erase the central dir + $v_size = $v_central_dir['offset']; + while ($v_size != 0) { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + $v_buffer = fread($this->zip_fd, $v_read_size); + @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Copy the files from the archive_to_add into the temporary file + $v_size = $v_central_dir_to_add['offset']; + while ($v_size != 0) { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + $v_buffer = fread($p_archive_to_add->zip_fd, $v_read_size); + @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Store the offset of the central dir + $v_offset = @ftell($v_zip_temp_fd); + + // ----- Copy the block of file headers from the old archive + $v_size = $v_central_dir['size']; + while ($v_size != 0) { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + $v_buffer = @fread($this->zip_fd, $v_read_size); + @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Copy the block of file headers from the archive_to_add + $v_size = $v_central_dir_to_add['size']; + while ($v_size != 0) { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + $v_buffer = @fread($p_archive_to_add->zip_fd, $v_read_size); + @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Merge the file comments + $v_comment = $v_central_dir['comment'].' '.$v_central_dir_to_add['comment']; + + // ----- Calculate the size of the (new) central header + $v_size = @ftell($v_zip_temp_fd)-$v_offset; + + // ----- Swap the file descriptor + // Here is a trick : I swap the temporary fd with the zip fd, in order to use + // the following methods on the temporary fil and not the real archive fd + $v_swap = $this->zip_fd; + $this->zip_fd = $v_zip_temp_fd; + $v_zip_temp_fd = $v_swap; + + // ----- Create the central dir footer + if (($v_result = $this->privWriteCentralHeader($v_central_dir['entries']+$v_central_dir_to_add['entries'], $v_size, $v_offset, $v_comment)) != 1) { + $this->privCloseFd(); + $p_archive_to_add->privCloseFd(); + @fclose($v_zip_temp_fd); + $this->zip_fd = null; + + // ----- Reset the file list + unset($v_header_list); + + // ----- Return + return $v_result; + } + + // ----- Swap back the file descriptor + $v_swap = $this->zip_fd; + $this->zip_fd = $v_zip_temp_fd; + $v_zip_temp_fd = $v_swap; + + // ----- Close + $this->privCloseFd(); + $p_archive_to_add->privCloseFd(); + + // ----- Close the temporary file + @fclose($v_zip_temp_fd); + + // ----- Delete the zip file + // TBC : I should test the result ... + @unlink($this->zipname); + + // ----- Rename the temporary file + // TBC : I should test the result ... + //@rename($v_zip_temp_name, $this->zipname); + PclZipUtilRename($v_zip_temp_name, $this->zipname); + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privDuplicate() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privDuplicate($p_archive_filename) + { + $v_result=1; + + // ----- Look if the $p_archive_filename exists + if (!is_file($p_archive_filename)) { + // ----- Nothing to duplicate, so duplicate is a success. + $v_result = 1; + + // ----- Return + return $v_result; + } + + // ----- Open the zip file + if (($v_result=$this->privOpenFd('wb')) != 1) { + // ----- Return + return $v_result; + } + + // ----- Open the temporary file in write mode + if (($v_zip_temp_fd = @fopen($p_archive_filename, 'rb')) == 0) { + $this->privCloseFd(); + + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive file \''.$p_archive_filename.'\' in binary write mode'); + + // ----- Return + return PclZip::errorCode(); + } + + // ----- Copy the files from the archive to the temporary file + // TBC : Here I should better append the file and go back to erase the central dir + $v_size = filesize($p_archive_filename); + while ($v_size != 0) { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + $v_buffer = fread($v_zip_temp_fd, $v_read_size); + @fwrite($this->zip_fd, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Close + $this->privCloseFd(); + + // ----- Close the temporary file + @fclose($v_zip_temp_fd); + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privErrorLog() + // Description : + // Parameters : + // -------------------------------------------------------------------------------- + public function privErrorLog($p_error_code = 0, $p_error_string = '') + { + if (PCLZIP_ERROR_EXTERNAL == 1) { + PclError($p_error_code, $p_error_string); + } else { + $this->error_code = $p_error_code; + $this->error_string = $p_error_string; + } + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privErrorReset() + // Description : + // Parameters : + // -------------------------------------------------------------------------------- + public function privErrorReset() + { + if (PCLZIP_ERROR_EXTERNAL == 1) { + PclErrorReset(); + } else { + $this->error_code = 0; + $this->error_string = ''; + } + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privDisableMagicQuotes() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privDisableMagicQuotes() + { + $v_result=1; + + // ----- Look if function exists + if ((!function_exists("get_magic_quotes_runtime")) || (!function_exists("set_magic_quotes_runtime"))) { + return $v_result; + } + + // ----- Look if already done + if ($this->magic_quotes_status != -1) { + return $v_result; + } + + // ----- Get and memorize the magic_quote value + $this->magic_quotes_status = @get_magic_quotes_runtime(); + + // ----- Disable magic_quotes + if ($this->magic_quotes_status == 1) { + @set_magic_quotes_runtime(0); + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privSwapBackMagicQuotes() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + public function privSwapBackMagicQuotes() + { + $v_result=1; + + // ----- Look if function exists + if ((!function_exists("get_magic_quotes_runtime")) || (!function_exists("set_magic_quotes_runtime"))) { + return $v_result; + } + + // ----- Look if something to do + if ($this->magic_quotes_status != -1) { + return $v_result; + } + + // ----- Swap back magic_quotes + if ($this->magic_quotes_status == 1) { + @set_magic_quotes_runtime($this->magic_quotes_status); + } + + // ----- Return + return $v_result; + } + // -------------------------------------------------------------------------------- +} +// End of class +// -------------------------------------------------------------------------------- + +// -------------------------------------------------------------------------------- +// Function : PclZipUtilPathReduction() +// Description : +// Parameters : +// Return Values : +// -------------------------------------------------------------------------------- +function PclZipUtilPathReduction($p_dir) +{ + $v_result = ""; + + // ----- Look for not empty path + if ($p_dir != "") { + // ----- Explode path by directory names + $v_list = explode("/", $p_dir); + + // ----- Study directories from last to first + $v_skip = 0; + for ($i=sizeof($v_list)-1; $i>=0; $i--) { + // ----- Look for current path + if ($v_list[$i] == ".") { + // ----- Ignore this directory + // Should be the first $i=0, but no check is done + } elseif ($v_list[$i] == "..") { + $v_skip++; + } elseif ($v_list[$i] == "") { + // ----- First '/' i.e. root slash + if ($i == 0) { + $v_result = "/".$v_result; + if ($v_skip > 0) { + // ----- It is an invalid path, so the path is not modified + // TBC + $v_result = $p_dir; + $v_skip = 0; + } + } elseif ($i == (sizeof($v_list)-1)) { + // ----- Last '/' i.e. indicates a directory + $v_result = $v_list[$i]; + } else { + // ----- Double '/' inside the path + // ----- Ignore only the double '//' in path, + // but not the first and last '/' + } + } else { + // ----- Look for item to skip + if ($v_skip > 0) { + $v_skip--; + } else { + $v_result = $v_list[$i].($i!=(sizeof($v_list)-1)?"/".$v_result:""); + } + } + } + + // ----- Look for skip + if ($v_skip > 0) { + while ($v_skip > 0) { + $v_result = '../'.$v_result; + $v_skip--; + } + } + } + + // ----- Return + return $v_result; +} +// -------------------------------------------------------------------------------- + +// -------------------------------------------------------------------------------- +// Function : PclZipUtilPathInclusion() +// Description : +// This function indicates if the path $p_path is under the $p_dir tree. Or, +// said in an other way, if the file or sub-dir $p_path is inside the dir +// $p_dir. +// The function indicates also if the path is exactly the same as the dir. +// This function supports path with duplicated '/' like '//', but does not +// support '.' or '..' statements. +// Parameters : +// Return Values : +// 0 if $p_path is not inside directory $p_dir +// 1 if $p_path is inside directory $p_dir +// 2 if $p_path is exactly the same as $p_dir +// -------------------------------------------------------------------------------- +function PclZipUtilPathInclusion($p_dir, $p_path) +{ + $v_result = 1; + + // ----- Look for path beginning by ./ + if (($p_dir == '.') || ((strlen($p_dir) >=2) && (substr($p_dir, 0, 2) == './'))) { + $p_dir = PclZipUtilTranslateWinPath(getcwd(), false).'/'.substr($p_dir, 1); + } + if (($p_path == '.') || ((strlen($p_path) >=2) && (substr($p_path, 0, 2) == './'))) { + $p_path = PclZipUtilTranslateWinPath(getcwd(), false).'/'.substr($p_path, 1); + } + + // ----- Explode dir and path by directory separator + $v_list_dir = explode("/", $p_dir); + $v_list_dir_size = sizeof($v_list_dir); + $v_list_path = explode("/", $p_path); + $v_list_path_size = sizeof($v_list_path); + + // ----- Study directories paths + $i = 0; + $j = 0; + while (($i < $v_list_dir_size) && ($j < $v_list_path_size) && ($v_result)) { + // ----- Look for empty dir (path reduction) + if ($v_list_dir[$i] == '') { + $i++; + continue; + } + if ($v_list_path[$j] == '') { + $j++; + continue; + } + + // ----- Compare the items + if (($v_list_dir[$i] != $v_list_path[$j]) && ($v_list_dir[$i] != '') && ($v_list_path[$j] != '')) { + $v_result = 0; + } + + // ----- Next items + $i++; + $j++; + } + + // ----- Look if everything seems to be the same + if ($v_result) { + // ----- Skip all the empty items + while (($j < $v_list_path_size) && ($v_list_path[$j] == '')) { + $j++; + } + while (($i < $v_list_dir_size) && ($v_list_dir[$i] == '')) { + $i++; + } + + if (($i >= $v_list_dir_size) && ($j >= $v_list_path_size)) { + // ----- There are exactly the same + $v_result = 2; + } elseif ($i < $v_list_dir_size) { + // ----- The path is shorter than the dir + $v_result = 0; + } + } + + // ----- Return + return $v_result; +} +// -------------------------------------------------------------------------------- + +// -------------------------------------------------------------------------------- +// Function : PclZipUtilCopyBlock() +// Description : +// Parameters : +// $p_mode : read/write compression mode +// 0 : src & dest normal +// 1 : src gzip, dest normal +// 2 : src normal, dest gzip +// 3 : src & dest gzip +// Return Values : +// -------------------------------------------------------------------------------- +function PclZipUtilCopyBlock($p_src, $p_dest, $p_size, $p_mode = 0) +{ + $v_result = 1; + + if ($p_mode==0) { + while ($p_size != 0) { + $v_read_size = ($p_size < PCLZIP_READ_BLOCK_SIZE ? $p_size : PCLZIP_READ_BLOCK_SIZE); + $v_buffer = @fread($p_src, $v_read_size); + @fwrite($p_dest, $v_buffer, $v_read_size); + $p_size -= $v_read_size; + } + } elseif ($p_mode==1) { + while ($p_size != 0) { + $v_read_size = ($p_size < PCLZIP_READ_BLOCK_SIZE ? $p_size : PCLZIP_READ_BLOCK_SIZE); + $v_buffer = @gzread($p_src, $v_read_size); + @fwrite($p_dest, $v_buffer, $v_read_size); + $p_size -= $v_read_size; + } + } elseif ($p_mode==2) { + while ($p_size != 0) { + $v_read_size = ($p_size < PCLZIP_READ_BLOCK_SIZE ? $p_size : PCLZIP_READ_BLOCK_SIZE); + $v_buffer = @fread($p_src, $v_read_size); + @gzwrite($p_dest, $v_buffer, $v_read_size); + $p_size -= $v_read_size; + } + } elseif ($p_mode==3) { + while ($p_size != 0) { + $v_read_size = ($p_size < PCLZIP_READ_BLOCK_SIZE ? $p_size : PCLZIP_READ_BLOCK_SIZE); + $v_buffer = @gzread($p_src, $v_read_size); + @gzwrite($p_dest, $v_buffer, $v_read_size); + $p_size -= $v_read_size; + } + } + + // ----- Return + return $v_result; +} +// -------------------------------------------------------------------------------- + +// -------------------------------------------------------------------------------- +// Function : PclZipUtilRename() +// Description : +// This function tries to do a simple rename() function. If it fails, it +// tries to copy the $p_src file in a new $p_dest file and then unlink the +// first one. +// Parameters : +// $p_src : Old filename +// $p_dest : New filename +// Return Values : +// 1 on success, 0 on failure. +// -------------------------------------------------------------------------------- +function PclZipUtilRename($p_src, $p_dest) +{ + $v_result = 1; + + // ----- Try to rename the files + if (!@rename($p_src, $p_dest)) { + // ----- Try to copy & unlink the src + if (!@copy($p_src, $p_dest)) { + $v_result = 0; + } elseif (!@unlink($p_src)) { + $v_result = 0; + } + } + + // ----- Return + return $v_result; +} +// -------------------------------------------------------------------------------- + +// -------------------------------------------------------------------------------- +// Function : PclZipUtilOptionText() +// Description : +// Translate option value in text. Mainly for debug purpose. +// Parameters : +// $p_option : the option value. +// Return Values : +// The option text value. +// -------------------------------------------------------------------------------- +function PclZipUtilOptionText($p_option) +{ + $v_list = get_defined_constants(); + for (reset($v_list); $v_key = key($v_list); next($v_list)) { + $v_prefix = substr($v_key, 0, 10); + if ((($v_prefix == 'PCLZIP_OPT') || ($v_prefix == 'PCLZIP_CB_') || ($v_prefix == 'PCLZIP_ATT')) && ($v_list[$v_key] == $p_option)) { + return $v_key; + } + } + + $v_result = 'Unknown'; + + return $v_result; +} +// -------------------------------------------------------------------------------- + +// -------------------------------------------------------------------------------- +// Function : PclZipUtilTranslateWinPath() +// Description : +// Translate windows path by replacing '\' by '/' and optionally removing +// drive letter. +// Parameters : +// $p_path : path to translate. +// $p_remove_disk_letter : true | false +// Return Values : +// The path translated. +// -------------------------------------------------------------------------------- +function PclZipUtilTranslateWinPath($p_path, $p_remove_disk_letter = true) +{ + if (stristr(php_uname(), 'windows')) { + // ----- Look for potential disk letter + if (($p_remove_disk_letter) && (($v_position = strpos($p_path, ':')) != false)) { + $p_path = substr($p_path, $v_position+1); + } + // ----- Change potential windows directory separator + if ((strpos($p_path, '\\') > 0) || (substr($p_path, 0, 1) == '\\')) { + $p_path = strtr($p_path, '\\', '/'); + } + } + return $p_path; +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/readme.txt b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/readme.txt new file mode 100644 index 0000000..6ed8839 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/readme.txt @@ -0,0 +1,421 @@ +// -------------------------------------------------------------------------------- +// PclZip 2.8.2 - readme.txt +// -------------------------------------------------------------------------------- +// License GNU/LGPL - August 2009 +// Vincent Blavet - vincent@phpconcept.net +// http://www.phpconcept.net +// -------------------------------------------------------------------------------- +// $Id: readme.txt,v 1.60 2009/09/30 20:35:21 vblavet Exp $ +// -------------------------------------------------------------------------------- + + + +0 - Sommaire +============ + 1 - Introduction + 2 - What's new + 3 - Corrected bugs + 4 - Known bugs or limitations + 5 - License + 6 - Warning + 7 - Documentation + 8 - Author + 9 - Contribute + +1 - Introduction +================ + + PclZip is a library that allow you to manage a Zip archive. + + Full documentation about PclZip can be found here : http://www.phpconcept.net/pclzip + +2 - What's new +============== + + Version 2.8.2 : + - PCLZIP_CB_PRE_EXTRACT and PCLZIP_CB_POST_EXTRACT are now supported with + extraction as a string (PCLZIP_OPT_EXTRACT_AS_STRING). The string + can also be modified in the post-extract call back. + **Bugs correction : + - PCLZIP_OPT_REMOVE_ALL_PATH was not working correctly + - Remove use of eval() and do direct call to callback functions + - Correct support of 64bits systems (Thanks to WordPress team) + + Version 2.8.1 : + - Move option PCLZIP_OPT_BY_EREG to PCLZIP_OPT_BY_PREG because ereg() is + deprecated in PHP 5.3. When using option PCLZIP_OPT_BY_EREG, PclZip will + automatically replace it by PCLZIP_OPT_BY_PREG. + + Version 2.8 : + - Improve extraction of zip archive for large files by using temporary files + This feature is working like the one defined in r2.7. + Options are renamed : PCLZIP_OPT_TEMP_FILE_ON, PCLZIP_OPT_TEMP_FILE_OFF, + PCLZIP_OPT_TEMP_FILE_THRESHOLD + - Add a ratio constant PCLZIP_TEMPORARY_FILE_RATIO to configure the auto + sense of temporary file use. + - Bug correction : Reduce filepath in returned file list to remove ennoying + './/' preambule in file path. + + Version 2.7 : + - Improve creation of zip archive for large files : + PclZip will now autosense the configured memory and use temporary files + when large file is suspected. + This feature can also ne triggered by manual options in create() and add() + methods. 'PCLZIP_OPT_ADD_TEMP_FILE_ON' force the use of temporary files, + 'PCLZIP_OPT_ADD_TEMP_FILE_OFF' disable the autosense technic, + 'PCLZIP_OPT_ADD_TEMP_FILE_THRESHOLD' allow for configuration of a size + threshold to use temporary files. + Using "temporary files" rather than "memory" might take more time, but + might give the ability to zip very large files : + Tested on my win laptop with a 88Mo file : + Zip "in-memory" : 18sec (max_execution_time=30, memory_limit=180Mo) + Zip "tmporary-files" : 23sec (max_execution_time=30, memory_limit=30Mo) + - Replace use of mktime() by time() to limit the E_STRICT error messages. + - Bug correction : When adding files with full windows path (drive letter) + PclZip is now working. Before, if the drive letter is not the default + path, PclZip was not able to add the file. + + Version 2.6 : + - Code optimisation + - New attributes PCLZIP_ATT_FILE_COMMENT gives the ability to + add a comment for a specific file. (Don't really know if this is usefull) + - New attribute PCLZIP_ATT_FILE_CONTENT gives the ability to add a string + as a file. + - New attribute PCLZIP_ATT_FILE_MTIME modify the timestamp associated with + a file. + - Correct a bug. Files archived with a timestamp with 0h0m0s were extracted + with current time + - Add CRC value in the informations returned back for each file after an + action. + - Add missing closedir() statement. + - When adding a folder, and removing the path of this folder, files were + incorrectly added with a '/' at the beginning. Which means files are + related to root in unix systems. Corrected. + - Add conditional if before constant definition. This will allow users + to redefine constants without changing the file, and then improve + upgrade of pclzip code for new versions. + + Version 2.5 : + - Introduce the ability to add file/folder with individual properties (file descriptor). + This gives for example the ability to change the filename of a zipped file. + . Able to add files individually + . Able to change full name + . Able to change short name + . Compatible with global options + - New attributes : PCLZIP_ATT_FILE_NAME, PCLZIP_ATT_FILE_NEW_SHORT_NAME, PCLZIP_ATT_FILE_NEW_FULL_NAME + - New error code : PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE + - Add a security control feature. PclZip can extract any file in any folder + of a system. People may use this to upload a zip file and try to override + a system file. The PCLZIP_OPT_EXTRACT_DIR_RESTRICTION will give the + ability to forgive any directory transversal behavior. + - New PCLZIP_OPT_EXTRACT_DIR_RESTRICTION : check extraction path + - New error code : PCLZIP_ERR_DIRECTORY_RESTRICTION + - Modification in PclZipUtilPathInclusion() : dir and path beginning with ./ will be prepend + by current path (getcwd()) + + Version 2.4 : + - Code improvment : try to speed up the code by removing unusefull call to pack() + - Correct bug in delete() : delete() should be called with no argument. This was not + the case in 2.3. This is corrected in 2.4. + - Correct a bug in path_inclusion function. When the path has several '../../', the + result was bad. + - Add a check for magic_quotes_runtime configuration. If enabled, PclZip will + disable it while working and det it back to its original value. + This resolve a lots of bad formated archive errors. + - Bug correction : PclZip now correctly unzip file in some specific situation, + when compressed content has same size as uncompressed content. + - Bug correction : When selecting option 'PCLZIP_OPT_REMOVE_ALL_PATH', + directories are not any more created. + - Code improvment : correct unclosed opendir(), better handling of . and .. in + loops. + + + Version 2.3 : + - Correct a bug with PHP5 : affecting the value 0xFE49FFE0 to a variable does not + give the same result in PHP4 and PHP5 .... + + Version 2.2 : + - Try development of PCLZIP_OPT_CRYPT ..... + However this becomes to a stop. To crypt/decrypt I need to multiply 2 long integers, + the result (greater than a long) is not supported by PHP. Even the use of bcmath + functions does not help. I did not find yet a solution ...; + - Add missing '/' at end of directory entries + - Check is a file is encrypted or not. Returns status 'unsupported_encryption' and/or + error code PCLZIP_ERR_UNSUPPORTED_ENCRYPTION. + - Corrected : Bad "version need to extract" field in local file header + - Add private method privCheckFileHeaders() in order to check local and central + file headers. PclZip is now supporting purpose bit flag bit 3. Purpose bit flag bit 3 gives + the ability to have a local file header without size, compressed size and crc filled. + - Add a generic status 'error' for file status + - Add control of compression type. PclZip only support deflate compression method. + Before v2.2, PclZip does not check the compression method used in an archive while + extracting. With v2.2 PclZip returns a new error status for a file using an unsupported + compression method. New status is "unsupported_compression". New error code is + PCLZIP_ERR_UNSUPPORTED_COMPRESSION. + - Add optional attribute PCLZIP_OPT_STOP_ON_ERROR. This will stop the extract of files + when errors like 'a folder with same name exists' or 'a newer file exists' or + 'a write protected file' exists, rather than set a status for the concerning file + and resume the extract of the zip. + - Add optional attribute PCLZIP_OPT_REPLACE_NEWER. This will force, during an extract' the + replacement of the file, even if a newer version of the file exists. + Note that today if a file with the same name already exists but is older it will be + replaced by the extracted one. + - Improve PclZipUtilOption() + - Support of zip archive with trailing bytes. Before 2.2, PclZip checks that the central + directory structure is the last data in the archive. Crypt encryption/decryption of + zip archive put trailing 0 bytes after decryption. PclZip is now supporting this. + + Version 2.1 : + - Add the ability to abort the extraction by using a user callback function. + The user can now return the value '2' in its callback which indicates to stop the + extraction. For a pre call-back extract is stopped before the extration of the current + file. For a post call back, the extraction is stopped after. + - Add the ability to extract a file (or several files) directly in the standard output. + This is done by the new parameter PCLZIP_OPT_EXTRACT_IN_OUTPUT with method extract(). + - Add support for parameters PCLZIP_OPT_COMMENT, PCLZIP_OPT_ADD_COMMENT, + PCLZIP_OPT_PREPEND_COMMENT. This will create, replace, add, or prepend comments + in the zip archive. + - When merging two archives, the comments are not any more lost, but merged, with a + blank space separator. + - Corrected bug : Files are not deleted when all files are asked to be deleted. + - Corrected bug : Folders with name '0' made PclZip to abort the create or add feature. + + + Version 2.0 : + ***** Warning : Some new features may break the backward compatibility for your scripts. + Please carefully read the readme file. + - Add the ability to delete by Index, name and regular expression. This feature is + performed by the method delete(), which uses the optional parameters + PCLZIP_OPT_BY_INDEX, PCLZIP_OPT_BY_NAME, PCLZIP_OPT_BY_EREG or PCLZIP_OPT_BY_PREG. + - Add the ability to extract by regular expression. To extract by regexp you must use the method + extract(), with the option PCLZIP_OPT_BY_EREG or PCLZIP_OPT_BY_PREG + (depending if you want to use ereg() or preg_match() syntax) followed by the + regular expression pattern. + - Add the ability to extract by index, directly with the extract() method. This is a + code improvment of the extractByIndex() method. + - Add the ability to extract by name. To extract by name you must use the method + extract(), with the option PCLZIP_OPT_BY_NAME followed by the filename to + extract or an array of filenames to extract. To extract all a folder, use the folder + name rather than the filename with a '/' at the end. + - Add the ability to add files without compression. This is done with a new attribute + which is PCLZIP_OPT_NO_COMPRESSION. + - Add the attribute PCLZIP_OPT_EXTRACT_AS_STRING, which allow to extract a file directly + in a string without using any file (or temporary file). + - Add constant PCLZIP_SEPARATOR for static configuration of filename separators in a single string. + The default separator is now a comma (,) and not any more a blank space. + THIS BREAK THE BACKWARD COMPATIBILITY : Please check if this may have an impact with + your script. + - Improve algorythm performance by removing the use of temporary files when adding or + extracting files in an archive. + - Add (correct) detection of empty filename zipping. This can occurs when the removed + path is the same + as a zipped dir. The dir is not zipped (['status'] = filtered), only its content. + - Add better support for windows paths (thanks for help from manus@manusfreedom.com). + - Corrected bug : When the archive file already exists with size=0, the add() method + fails. Corrected in 2.0. + - Remove the use of OS_WINDOWS constant. Use php_uname() function rather. + - Control the order of index ranges in extract by index feature. + - Change the internal management of folders (better handling of internal flag). + + + Version 1.3 : + - Removing the double include check. This is now done by include_once() and require_once() + PHP directives. + - Changing the error handling mecanism : Remove the use of an external error library. + The former PclError...() functions are replaced by internal equivalent methods. + By changing the environment variable PCLZIP_ERROR_EXTERNAL you can still use the former library. + Introducing the use of constants for error codes rather than integer values. This will help + in futur improvment. + Introduction of error handling functions like errorCode(), errorName() and errorInfo(). + - Remove the deprecated use of calling function with arguments passed by reference. + - Add the calling of extract(), extractByIndex(), create() and add() functions + with variable options rather than fixed arguments. + - Add the ability to remove all the file path while extracting or adding, + without any need to specify the path to remove. + This is available for extract(), extractByIndex(), create() and add() functionS by using + the new variable options parameters : + - PCLZIP_OPT_REMOVE_ALL_PATH : by indicating this option while calling the fct. + - Ability to change the mode of a file after the extraction (chmod()). + This is available for extract() and extractByIndex() functionS by using + the new variable options parameters. + - PCLZIP_OPT_SET_CHMOD : by setting the value of this option. + - Ability to definition call-back options. These call-back will be called during the adding, + or the extracting of file (extract(), extractByIndex(), create() and add() functions) : + - PCLZIP_CB_PRE_EXTRACT : will be called before each extraction of a file. The user + can trigerred the change the filename of the extracted file. The user can triggered the + skip of the extraction. This is adding a 'skipped' status in the file list result value. + - PCLZIP_CB_POST_EXTRACT : will be called after each extraction of a file. + Nothing can be triggered from that point. + - PCLZIP_CB_PRE_ADD : will be called before each add of a file. The user + can trigerred the change the stored filename of the added file. The user can triggered the + skip of the add. This is adding a 'skipped' status in the file list result value. + - PCLZIP_CB_POST_ADD : will be called after each add of a file. + Nothing can be triggered from that point. + - Two status are added in the file list returned as function result : skipped & filename_too_long + 'skipped' is used when a call-back function ask for skipping the file. + 'filename_too_long' is used while adding a file with a too long filename to archive (the file is + not added) + - Adding the function PclZipUtilPathInclusion(), that check the inclusion of a path into + a directory. + - Add a check of the presence of the archive file before some actions (like list, ...) + - Add the initialisation of field "index" in header array. This means that by + default index will be -1 when not explicitly set by the methods. + + Version 1.2 : + - Adding a duplicate function. + - Adding a merge function. The merge function is a "quick merge" function, + it just append the content of an archive at the end of the first one. There + is no check for duplicate files or more recent files. + - Improve the search of the central directory end. + + Version 1.1.2 : + + - Changing the license of PclZip. PclZip is now released under the GNU / LGPL license + (see License section). + - Adding the optional support of a static temporary directory. You will need to configure + the constant PCLZIP_TEMPORARY_DIR if you want to use this feature. + - Improving the rename() function. In some cases rename() does not work (different + Filesystems), so it will be replaced by a copy() + unlink() functions. + + Version 1.1.1 : + + - Maintenance release, no new feature. + + Version 1.1 : + + - New method Add() : adding files in the archive + - New method ExtractByIndex() : partial extract of the archive, files are identified by + their index in the archive + - New method DeleteByIndex() : delete some files/folder entries from the archive, + files are identified by their index in the archive. + - Adding a test of the zlib extension presence. If not present abort the script. + + Version 1.0.1 : + + - No new feature + + +3 - Corrected bugs +================== + + Corrected in Version 2.0 : + - Corrected : During an extraction, if a call-back fucntion is used and try to skip + a file, all the extraction process is stopped. + + Corrected in Version 1.3 : + - Corrected : Support of static synopsis for method extract() is broken. + - Corrected : invalid size of archive content field (0xFF) should be (0xFFFF). + - Corrected : When an extract is done with a remove_path parameter, the entry for + the directory with exactly the same path is not skipped/filtered. + - Corrected : extractByIndex() and deleteByIndex() were not managing index in the + right way. For example indexes '1,3-5,11' will only extract files 1 and 11. This + is due to a sort of the index resulting table that puts 11 before 3-5 (sort on + string and not interger). The sort is temporarilly removed, this means that + you must provide a sorted list of index ranges. + + Corrected in Version 1.2 : + + - Nothing. + + Corrected in Version 1.1.2 : + + - Corrected : Winzip is unable to delete or add new files in a PclZip created archives. + + Corrected in Version 1.1.1 : + + - Corrected : When archived file is not compressed (0% compression), the + extract method fails. + + Corrected in Version 1.1 : + + - Corrected : Adding a complete tree of folder may result in a bad archive + creation. + + Corrected in Version 1.0.1 : + + - Corrected : Error while compressing files greater than PCLZIP_READ_BLOCK_SIZE (default=1024). + + +4 - Known bugs or limitations +============================= + + Please publish bugs reports in SourceForge : + http://sourceforge.net/tracker/?group_id=40254&atid=427564 + + In Version 2.x : + - PclZip does only support file uncompressed or compressed with deflate (compression method 8) + - PclZip does not support password protected zip archive + - Some concern were seen when changing mtime of a file while archiving. + Seems to be linked to Daylight Saving Time (PclTest_changing_mtime). + + In Version 1.2 : + + - merge() methods does not check for duplicate files or last date of modifications. + + In Version 1.1 : + + - Limitation : Using 'extract' fields in the file header in the zip archive is not supported. + - WinZip is unable to delete a single file in a PclZip created archive. It is also unable to + add a file in a PclZip created archive. (Corrected in v.1.2) + + In Version 1.0.1 : + + - Adding a complete tree of folder may result in a bad archive + creation. (Corrected in V.1.1). + - Path given to methods must be in the unix format (/) and not the Windows format (\). + Workaround : Use only / directory separators. + - PclZip is using temporary files that are sometime the name of the file with a .tmp or .gz + added suffix. Files with these names may already exist and may be overwritten. + Workaround : none. + - PclZip does not check if the zlib extension is present. If it is absent, the zip + file is not created and the lib abort without warning. + Workaround : enable the zlib extension on the php install + + In Version 1.0 : + + - Error while compressing files greater than PCLZIP_READ_BLOCK_SIZE (default=1024). + (Corrected in v.1.0.1) + - Limitation : Multi-disk zip archive are not supported. + + +5 - License +=========== + + Since version 1.1.2, PclZip Library is released under GNU/LGPL license. + This library is free, so you can use it at no cost. + + HOWEVER, if you release a script, an application, a library or any kind of + code using PclZip library (or a part of it), YOU MUST : + - Indicate in the documentation (or a readme file), that your work + uses PclZip Library, and make a reference to the author and the web site + http://www.phpconcept.net + - Gives the ability to the final user to update the PclZip libary. + + I will also appreciate that you send me a mail (vincent@phpconcept.net), just to + be aware that someone is using PclZip. + + For more information about GNU/LGPL license : http://www.gnu.org + +6 - Warning +================= + + This library and the associated files are non commercial, non professional work. + It should not have unexpected results. However if any damage is caused by this software + the author can not be responsible. + The use of this software is at the risk of the user. + +7 - Documentation +================= + PclZip User Manuel is available in English on PhpConcept : http://www.phpconcept.net/pclzip/man/en/index.php + A Russian translation was done by Feskov Kuzma : http://php.russofile.ru/ru/authors/unsort/zip/ + +8 - Author +========== + + This software was written by Vincent Blavet (vincent@phpconcept.net) on its leasure time. + +9 - Contribute +============== + If you want to contribute to the development of PclZip, please contact vincent@phpconcept.net. + If you can help in financing PhpConcept hosting service, please go to + http://www.phpconcept.net/soutien.php diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PasswordHasher.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PasswordHasher.php new file mode 100644 index 0000000..946742b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PasswordHasher.php @@ -0,0 +1,67 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + + +/** + * PHPExcel_Shared_PasswordHasher + * + * @category PHPExcel + * @package PHPExcel_Shared + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + */ +class PHPExcel_Shared_PasswordHasher +{ + /** + * Create a password hash from a given string. + * + * This method is based on the algorithm provided by + * Daniel Rentz of OpenOffice and the PEAR package + * Spreadsheet_Excel_Writer by Xavier Noguer <xnoguer@rezebra.com>. + * + * @param string $pPassword Password to hash + * @return string Hashed password + */ + public static function hashPassword($pPassword = '') + { + $password = 0x0000; + $charPos = 1; // char position + + // split the plain text password in its component characters + $chars = preg_split('//', $pPassword, -1, PREG_SPLIT_NO_EMPTY); + foreach ($chars as $char) { + $value = ord($char) << $charPos++; // shifted ASCII value + $rotated_bits = $value >> 15; // rotated bits beyond bit 15 + $value &= 0x7fff; // first 15 bits + $password ^= ($value | $rotated_bits); + } + + $password ^= strlen($pPassword); + $password ^= 0xCE4B; + + return(strtoupper(dechex($password))); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/String.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/String.php new file mode 100644 index 0000000..fa1a64e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/String.php @@ -0,0 +1,819 @@ +<?php + +/** + * PHPExcel_Shared_String + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_String +{ + /** Constants */ + /** Regular Expressions */ + // Fraction + const STRING_REGEXP_FRACTION = '(-?)(\d+)\s+(\d+\/\d+)'; + + + /** + * Control characters array + * + * @var string[] + */ + private static $controlCharacters = array(); + + /** + * SYLK Characters array + * + * $var array + */ + private static $SYLKCharacters = array(); + + /** + * Decimal separator + * + * @var string + */ + private static $decimalSeparator; + + /** + * Thousands separator + * + * @var string + */ + private static $thousandsSeparator; + + /** + * Currency code + * + * @var string + */ + private static $currencyCode; + + /** + * Is mbstring extension avalable? + * + * @var boolean + */ + private static $isMbstringEnabled; + + /** + * Is iconv extension avalable? + * + * @var boolean + */ + private static $isIconvEnabled; + + /** + * Build control characters array + */ + private static function buildControlCharacters() + { + for ($i = 0; $i <= 31; ++$i) { + if ($i != 9 && $i != 10 && $i != 13) { + $find = '_x' . sprintf('%04s', strtoupper(dechex($i))) . '_'; + $replace = chr($i); + self::$controlCharacters[$find] = $replace; + } + } + } + + /** + * Build SYLK characters array + */ + private static function buildSYLKCharacters() + { + self::$SYLKCharacters = array( + "\x1B 0" => chr(0), + "\x1B 1" => chr(1), + "\x1B 2" => chr(2), + "\x1B 3" => chr(3), + "\x1B 4" => chr(4), + "\x1B 5" => chr(5), + "\x1B 6" => chr(6), + "\x1B 7" => chr(7), + "\x1B 8" => chr(8), + "\x1B 9" => chr(9), + "\x1B :" => chr(10), + "\x1B ;" => chr(11), + "\x1B <" => chr(12), + "\x1B :" => chr(13), + "\x1B >" => chr(14), + "\x1B ?" => chr(15), + "\x1B!0" => chr(16), + "\x1B!1" => chr(17), + "\x1B!2" => chr(18), + "\x1B!3" => chr(19), + "\x1B!4" => chr(20), + "\x1B!5" => chr(21), + "\x1B!6" => chr(22), + "\x1B!7" => chr(23), + "\x1B!8" => chr(24), + "\x1B!9" => chr(25), + "\x1B!:" => chr(26), + "\x1B!;" => chr(27), + "\x1B!<" => chr(28), + "\x1B!=" => chr(29), + "\x1B!>" => chr(30), + "\x1B!?" => chr(31), + "\x1B'?" => chr(127), + "\x1B(0" => '€', // 128 in CP1252 + "\x1B(2" => '‚', // 130 in CP1252 + "\x1B(3" => 'Æ’', // 131 in CP1252 + "\x1B(4" => '„', // 132 in CP1252 + "\x1B(5" => '…', // 133 in CP1252 + "\x1B(6" => '†', // 134 in CP1252 + "\x1B(7" => '‡', // 135 in CP1252 + "\x1B(8" => 'ˆ', // 136 in CP1252 + "\x1B(9" => '‰', // 137 in CP1252 + "\x1B(:" => 'Å ', // 138 in CP1252 + "\x1B(;" => '‹', // 139 in CP1252 + "\x1BNj" => 'Å’', // 140 in CP1252 + "\x1B(>" => 'Ž', // 142 in CP1252 + "\x1B)1" => '‘', // 145 in CP1252 + "\x1B)2" => '’', // 146 in CP1252 + "\x1B)3" => '“', // 147 in CP1252 + "\x1B)4" => 'â€', // 148 in CP1252 + "\x1B)5" => '•', // 149 in CP1252 + "\x1B)6" => '–', // 150 in CP1252 + "\x1B)7" => '—', // 151 in CP1252 + "\x1B)8" => 'Ëœ', // 152 in CP1252 + "\x1B)9" => 'â„¢', // 153 in CP1252 + "\x1B):" => 'Å¡', // 154 in CP1252 + "\x1B);" => '›', // 155 in CP1252 + "\x1BNz" => 'Å“', // 156 in CP1252 + "\x1B)>" => 'ž', // 158 in CP1252 + "\x1B)?" => 'Ÿ', // 159 in CP1252 + "\x1B*0" => ' ', // 160 in CP1252 + "\x1BN!" => '¡', // 161 in CP1252 + "\x1BN\"" => '¢', // 162 in CP1252 + "\x1BN#" => '£', // 163 in CP1252 + "\x1BN(" => '¤', // 164 in CP1252 + "\x1BN%" => 'Â¥', // 165 in CP1252 + "\x1B*6" => '¦', // 166 in CP1252 + "\x1BN'" => '§', // 167 in CP1252 + "\x1BNH " => '¨', // 168 in CP1252 + "\x1BNS" => '©', // 169 in CP1252 + "\x1BNc" => 'ª', // 170 in CP1252 + "\x1BN+" => '«', // 171 in CP1252 + "\x1B*<" => '¬', // 172 in CP1252 + "\x1B*=" => '­', // 173 in CP1252 + "\x1BNR" => '®', // 174 in CP1252 + "\x1B*?" => '¯', // 175 in CP1252 + "\x1BN0" => '°', // 176 in CP1252 + "\x1BN1" => '±', // 177 in CP1252 + "\x1BN2" => '²', // 178 in CP1252 + "\x1BN3" => '³', // 179 in CP1252 + "\x1BNB " => '´', // 180 in CP1252 + "\x1BN5" => 'µ', // 181 in CP1252 + "\x1BN6" => '¶', // 182 in CP1252 + "\x1BN7" => '·', // 183 in CP1252 + "\x1B+8" => '¸', // 184 in CP1252 + "\x1BNQ" => '¹', // 185 in CP1252 + "\x1BNk" => 'º', // 186 in CP1252 + "\x1BN;" => '»', // 187 in CP1252 + "\x1BN<" => '¼', // 188 in CP1252 + "\x1BN=" => '½', // 189 in CP1252 + "\x1BN>" => '¾', // 190 in CP1252 + "\x1BN?" => '¿', // 191 in CP1252 + "\x1BNAA" => 'À', // 192 in CP1252 + "\x1BNBA" => 'Ã', // 193 in CP1252 + "\x1BNCA" => 'Â', // 194 in CP1252 + "\x1BNDA" => 'Ã', // 195 in CP1252 + "\x1BNHA" => 'Ä', // 196 in CP1252 + "\x1BNJA" => 'Ã…', // 197 in CP1252 + "\x1BNa" => 'Æ', // 198 in CP1252 + "\x1BNKC" => 'Ç', // 199 in CP1252 + "\x1BNAE" => 'È', // 200 in CP1252 + "\x1BNBE" => 'É', // 201 in CP1252 + "\x1BNCE" => 'Ê', // 202 in CP1252 + "\x1BNHE" => 'Ë', // 203 in CP1252 + "\x1BNAI" => 'ÃŒ', // 204 in CP1252 + "\x1BNBI" => 'Ã', // 205 in CP1252 + "\x1BNCI" => 'ÃŽ', // 206 in CP1252 + "\x1BNHI" => 'Ã', // 207 in CP1252 + "\x1BNb" => 'Ã', // 208 in CP1252 + "\x1BNDN" => 'Ñ', // 209 in CP1252 + "\x1BNAO" => 'Ã’', // 210 in CP1252 + "\x1BNBO" => 'Ó', // 211 in CP1252 + "\x1BNCO" => 'Ô', // 212 in CP1252 + "\x1BNDO" => 'Õ', // 213 in CP1252 + "\x1BNHO" => 'Ö', // 214 in CP1252 + "\x1B-7" => '×', // 215 in CP1252 + "\x1BNi" => 'Ø', // 216 in CP1252 + "\x1BNAU" => 'Ù', // 217 in CP1252 + "\x1BNBU" => 'Ú', // 218 in CP1252 + "\x1BNCU" => 'Û', // 219 in CP1252 + "\x1BNHU" => 'Ü', // 220 in CP1252 + "\x1B-=" => 'Ã', // 221 in CP1252 + "\x1BNl" => 'Þ', // 222 in CP1252 + "\x1BN{" => 'ß', // 223 in CP1252 + "\x1BNAa" => 'à', // 224 in CP1252 + "\x1BNBa" => 'á', // 225 in CP1252 + "\x1BNCa" => 'â', // 226 in CP1252 + "\x1BNDa" => 'ã', // 227 in CP1252 + "\x1BNHa" => 'ä', // 228 in CP1252 + "\x1BNJa" => 'Ã¥', // 229 in CP1252 + "\x1BNq" => 'æ', // 230 in CP1252 + "\x1BNKc" => 'ç', // 231 in CP1252 + "\x1BNAe" => 'è', // 232 in CP1252 + "\x1BNBe" => 'é', // 233 in CP1252 + "\x1BNCe" => 'ê', // 234 in CP1252 + "\x1BNHe" => 'ë', // 235 in CP1252 + "\x1BNAi" => 'ì', // 236 in CP1252 + "\x1BNBi" => 'í', // 237 in CP1252 + "\x1BNCi" => 'î', // 238 in CP1252 + "\x1BNHi" => 'ï', // 239 in CP1252 + "\x1BNs" => 'ð', // 240 in CP1252 + "\x1BNDn" => 'ñ', // 241 in CP1252 + "\x1BNAo" => 'ò', // 242 in CP1252 + "\x1BNBo" => 'ó', // 243 in CP1252 + "\x1BNCo" => 'ô', // 244 in CP1252 + "\x1BNDo" => 'õ', // 245 in CP1252 + "\x1BNHo" => 'ö', // 246 in CP1252 + "\x1B/7" => '÷', // 247 in CP1252 + "\x1BNy" => 'ø', // 248 in CP1252 + "\x1BNAu" => 'ù', // 249 in CP1252 + "\x1BNBu" => 'ú', // 250 in CP1252 + "\x1BNCu" => 'û', // 251 in CP1252 + "\x1BNHu" => 'ü', // 252 in CP1252 + "\x1B/=" => 'ý', // 253 in CP1252 + "\x1BN|" => 'þ', // 254 in CP1252 + "\x1BNHy" => 'ÿ', // 255 in CP1252 + ); + } + + /** + * Get whether mbstring extension is available + * + * @return boolean + */ + public static function getIsMbstringEnabled() + { + if (isset(self::$isMbstringEnabled)) { + return self::$isMbstringEnabled; + } + + self::$isMbstringEnabled = function_exists('mb_convert_encoding') ? + true : false; + + return self::$isMbstringEnabled; + } + + /** + * Get whether iconv extension is available + * + * @return boolean + */ + public static function getIsIconvEnabled() + { + if (isset(self::$isIconvEnabled)) { + return self::$isIconvEnabled; + } + + // Fail if iconv doesn't exist + if (!function_exists('iconv')) { + self::$isIconvEnabled = false; + return false; + } + + // Sometimes iconv is not working, and e.g. iconv('UTF-8', 'UTF-16LE', 'x') just returns false, + if (!@iconv('UTF-8', 'UTF-16LE', 'x')) { + self::$isIconvEnabled = false; + return false; + } + + // Sometimes iconv_substr('A', 0, 1, 'UTF-8') just returns false in PHP 5.2.0 + // we cannot use iconv in that case either (http://bugs.php.net/bug.php?id=37773) + if (!@iconv_substr('A', 0, 1, 'UTF-8')) { + self::$isIconvEnabled = false; + return false; + } + + // CUSTOM: IBM AIX iconv() does not work + if (defined('PHP_OS') && @stristr(PHP_OS, 'AIX') && defined('ICONV_IMPL') && (@strcasecmp(ICONV_IMPL, 'unknown') == 0) && defined('ICONV_VERSION') && (@strcasecmp(ICONV_VERSION, 'unknown') == 0)) { + self::$isIconvEnabled = false; + return false; + } + + // If we reach here no problems were detected with iconv + self::$isIconvEnabled = true; + return true; + } + + public static function buildCharacterSets() + { + if (empty(self::$controlCharacters)) { + self::buildControlCharacters(); + } + if (empty(self::$SYLKCharacters)) { + self::buildSYLKCharacters(); + } + } + + /** + * Convert from OpenXML escaped control character to PHP control character + * + * Excel 2007 team: + * ---------------- + * That's correct, control characters are stored directly in the shared-strings table. + * We do encode characters that cannot be represented in XML using the following escape sequence: + * _xHHHH_ where H represents a hexadecimal character in the character's value... + * So you could end up with something like _x0008_ in a string (either in a cell value (<v>) + * element or in the shared string <t> element. + * + * @param string $value Value to unescape + * @return string + */ + public static function ControlCharacterOOXML2PHP($value = '') + { + return str_replace(array_keys(self::$controlCharacters), array_values(self::$controlCharacters), $value); + } + + /** + * Convert from PHP control character to OpenXML escaped control character + * + * Excel 2007 team: + * ---------------- + * That's correct, control characters are stored directly in the shared-strings table. + * We do encode characters that cannot be represented in XML using the following escape sequence: + * _xHHHH_ where H represents a hexadecimal character in the character's value... + * So you could end up with something like _x0008_ in a string (either in a cell value (<v>) + * element or in the shared string <t> element. + * + * @param string $value Value to escape + * @return string + */ + public static function ControlCharacterPHP2OOXML($value = '') + { + return str_replace(array_values(self::$controlCharacters), array_keys(self::$controlCharacters), $value); + } + + /** + * Try to sanitize UTF8, stripping invalid byte sequences. Not perfect. Does not surrogate characters. + * + * @param string $value + * @return string + */ + public static function SanitizeUTF8($value) + { + if (self::getIsIconvEnabled()) { + $value = @iconv('UTF-8', 'UTF-8', $value); + return $value; + } + + if (self::getIsMbstringEnabled()) { + $value = mb_convert_encoding($value, 'UTF-8', 'UTF-8'); + return $value; + } + + // else, no conversion + return $value; + } + + /** + * Check if a string contains UTF8 data + * + * @param string $value + * @return boolean + */ + public static function IsUTF8($value = '') + { + return $value === '' || preg_match('/^./su', $value) === 1; + } + + /** + * Formats a numeric value as a string for output in various output writers forcing + * point as decimal separator in case locale is other than English. + * + * @param mixed $value + * @return string + */ + public static function FormatNumber($value) + { + if (is_float($value)) { + return str_replace(',', '.', $value); + } + return (string) $value; + } + + /** + * Converts a UTF-8 string into BIFF8 Unicode string data (8-bit string length) + * Writes the string using uncompressed notation, no rich text, no Asian phonetics + * If mbstring extension is not available, ASCII is assumed, and compressed notation is used + * although this will give wrong results for non-ASCII strings + * see OpenOffice.org's Documentation of the Microsoft Excel File Format, sect. 2.5.3 + * + * @param string $value UTF-8 encoded string + * @param mixed[] $arrcRuns Details of rich text runs in $value + * @return string + */ + public static function UTF8toBIFF8UnicodeShort($value, $arrcRuns = array()) + { + // character count + $ln = self::CountCharacters($value, 'UTF-8'); + // option flags + if (empty($arrcRuns)) { + $opt = (self::getIsIconvEnabled() || self::getIsMbstringEnabled()) ? + 0x0001 : 0x0000; + $data = pack('CC', $ln, $opt); + // characters + $data .= self::ConvertEncoding($value, 'UTF-16LE', 'UTF-8'); + } else { + $data = pack('vC', $ln, 0x09); + $data .= pack('v', count($arrcRuns)); + // characters + $data .= self::ConvertEncoding($value, 'UTF-16LE', 'UTF-8'); + foreach ($arrcRuns as $cRun) { + $data .= pack('v', $cRun['strlen']); + $data .= pack('v', $cRun['fontidx']); + } + } + return $data; + } + + /** + * Converts a UTF-8 string into BIFF8 Unicode string data (16-bit string length) + * Writes the string using uncompressed notation, no rich text, no Asian phonetics + * If mbstring extension is not available, ASCII is assumed, and compressed notation is used + * although this will give wrong results for non-ASCII strings + * see OpenOffice.org's Documentation of the Microsoft Excel File Format, sect. 2.5.3 + * + * @param string $value UTF-8 encoded string + * @return string + */ + public static function UTF8toBIFF8UnicodeLong($value) + { + // character count + $ln = self::CountCharacters($value, 'UTF-8'); + + // option flags + $opt = (self::getIsIconvEnabled() || self::getIsMbstringEnabled()) ? + 0x0001 : 0x0000; + + // characters + $chars = self::ConvertEncoding($value, 'UTF-16LE', 'UTF-8'); + + $data = pack('vC', $ln, $opt) . $chars; + return $data; + } + + /** + * Convert string from one encoding to another. First try mbstring, then iconv, finally strlen + * + * @param string $value + * @param string $to Encoding to convert to, e.g. 'UTF-8' + * @param string $from Encoding to convert from, e.g. 'UTF-16LE' + * @return string + */ + public static function ConvertEncoding($value, $to, $from) + { + if (self::getIsIconvEnabled()) { + return iconv($from, $to, $value); + } + + if (self::getIsMbstringEnabled()) { + return mb_convert_encoding($value, $to, $from); + } + + if ($from == 'UTF-16LE') { + return self::utf16_decode($value, false); + } elseif ($from == 'UTF-16BE') { + return self::utf16_decode($value); + } + // else, no conversion + return $value; + } + + /** + * Decode UTF-16 encoded strings. + * + * Can handle both BOM'ed data and un-BOM'ed data. + * Assumes Big-Endian byte order if no BOM is available. + * This function was taken from http://php.net/manual/en/function.utf8-decode.php + * and $bom_be parameter added. + * + * @param string $str UTF-16 encoded data to decode. + * @return string UTF-8 / ISO encoded data. + * @access public + * @version 0.2 / 2010-05-13 + * @author Rasmus Andersson {@link http://rasmusandersson.se/} + * @author vadik56 + */ + public static function utf16_decode($str, $bom_be = true) + { + if (strlen($str) < 2) { + return $str; + } + $c0 = ord($str{0}); + $c1 = ord($str{1}); + if ($c0 == 0xfe && $c1 == 0xff) { + $str = substr($str, 2); + } elseif ($c0 == 0xff && $c1 == 0xfe) { + $str = substr($str, 2); + $bom_be = false; + } + $len = strlen($str); + $newstr = ''; + for ($i=0; $i<$len; $i+=2) { + if ($bom_be) { + $val = ord($str{$i}) << 4; + $val += ord($str{$i+1}); + } else { + $val = ord($str{$i+1}) << 4; + $val += ord($str{$i}); + } + $newstr .= ($val == 0x228) ? "\n" : chr($val); + } + return $newstr; + } + + /** + * Get character count. First try mbstring, then iconv, finally strlen + * + * @param string $value + * @param string $enc Encoding + * @return int Character count + */ + public static function CountCharacters($value, $enc = 'UTF-8') + { + if (self::getIsMbstringEnabled()) { + return mb_strlen($value, $enc); + } + + if (self::getIsIconvEnabled()) { + return iconv_strlen($value, $enc); + } + + // else strlen + return strlen($value); + } + + /** + * Get a substring of a UTF-8 encoded string. First try mbstring, then iconv, finally strlen + * + * @param string $pValue UTF-8 encoded string + * @param int $pStart Start offset + * @param int $pLength Maximum number of characters in substring + * @return string + */ + public static function Substring($pValue = '', $pStart = 0, $pLength = 0) + { + if (self::getIsMbstringEnabled()) { + return mb_substr($pValue, $pStart, $pLength, 'UTF-8'); + } + + if (self::getIsIconvEnabled()) { + return iconv_substr($pValue, $pStart, $pLength, 'UTF-8'); + } + + // else substr + return substr($pValue, $pStart, $pLength); + } + + /** + * Convert a UTF-8 encoded string to upper case + * + * @param string $pValue UTF-8 encoded string + * @return string + */ + public static function StrToUpper($pValue = '') + { + if (function_exists('mb_convert_case')) { + return mb_convert_case($pValue, MB_CASE_UPPER, "UTF-8"); + } + return strtoupper($pValue); + } + + /** + * Convert a UTF-8 encoded string to lower case + * + * @param string $pValue UTF-8 encoded string + * @return string + */ + public static function StrToLower($pValue = '') + { + if (function_exists('mb_convert_case')) { + return mb_convert_case($pValue, MB_CASE_LOWER, "UTF-8"); + } + return strtolower($pValue); + } + + /** + * Convert a UTF-8 encoded string to title/proper case + * (uppercase every first character in each word, lower case all other characters) + * + * @param string $pValue UTF-8 encoded string + * @return string + */ + public static function StrToTitle($pValue = '') + { + if (function_exists('mb_convert_case')) { + return mb_convert_case($pValue, MB_CASE_TITLE, "UTF-8"); + } + return ucwords($pValue); + } + + public static function mb_is_upper($char) + { + return mb_strtolower($char, "UTF-8") != $char; + } + + public static function mb_str_split($string) + { + # Split at all position not after the start: ^ + # and not before the end: $ + return preg_split('/(?<!^)(?!$)/u', $string); + } + + /** + * Reverse the case of a string, so that all uppercase characters become lowercase + * and all lowercase characters become uppercase + * + * @param string $pValue UTF-8 encoded string + * @return string + */ + public static function StrCaseReverse($pValue = '') + { + if (self::getIsMbstringEnabled()) { + $characters = self::mb_str_split($pValue); + foreach ($characters as &$character) { + if (self::mb_is_upper($character)) { + $character = mb_strtolower($character, 'UTF-8'); + } else { + $character = mb_strtoupper($character, 'UTF-8'); + } + } + return implode('', $characters); + } + return strtolower($pValue) ^ strtoupper($pValue) ^ $pValue; + } + + /** + * Identify whether a string contains a fractional numeric value, + * and convert it to a numeric if it is + * + * @param string &$operand string value to test + * @return boolean + */ + public static function convertToNumberIfFraction(&$operand) + { + if (preg_match('/^'.self::STRING_REGEXP_FRACTION.'$/i', $operand, $match)) { + $sign = ($match[1] == '-') ? '-' : '+'; + $fractionFormula = '='.$sign.$match[2].$sign.$match[3]; + $operand = PHPExcel_Calculation::getInstance()->_calculateFormulaValue($fractionFormula); + return true; + } + return false; + } // function convertToNumberIfFraction() + + /** + * Get the decimal separator. If it has not yet been set explicitly, try to obtain number + * formatting information from locale. + * + * @return string + */ + public static function getDecimalSeparator() + { + if (!isset(self::$decimalSeparator)) { + $localeconv = localeconv(); + self::$decimalSeparator = ($localeconv['decimal_point'] != '') + ? $localeconv['decimal_point'] : $localeconv['mon_decimal_point']; + + if (self::$decimalSeparator == '') { + // Default to . + self::$decimalSeparator = '.'; + } + } + return self::$decimalSeparator; + } + + /** + * Set the decimal separator. Only used by PHPExcel_Style_NumberFormat::toFormattedString() + * to format output by PHPExcel_Writer_HTML and PHPExcel_Writer_PDF + * + * @param string $pValue Character for decimal separator + */ + public static function setDecimalSeparator($pValue = '.') + { + self::$decimalSeparator = $pValue; + } + + /** + * Get the thousands separator. If it has not yet been set explicitly, try to obtain number + * formatting information from locale. + * + * @return string + */ + public static function getThousandsSeparator() + { + if (!isset(self::$thousandsSeparator)) { + $localeconv = localeconv(); + self::$thousandsSeparator = ($localeconv['thousands_sep'] != '') + ? $localeconv['thousands_sep'] : $localeconv['mon_thousands_sep']; + + if (self::$thousandsSeparator == '') { + // Default to . + self::$thousandsSeparator = ','; + } + } + return self::$thousandsSeparator; + } + + /** + * Set the thousands separator. Only used by PHPExcel_Style_NumberFormat::toFormattedString() + * to format output by PHPExcel_Writer_HTML and PHPExcel_Writer_PDF + * + * @param string $pValue Character for thousands separator + */ + public static function setThousandsSeparator($pValue = ',') + { + self::$thousandsSeparator = $pValue; + } + + /** + * Get the currency code. If it has not yet been set explicitly, try to obtain the + * symbol information from locale. + * + * @return string + */ + public static function getCurrencyCode() + { + if (!isset(self::$currencyCode)) { + $localeconv = localeconv(); + self::$currencyCode = ($localeconv['currency_symbol'] != '') + ? $localeconv['currency_symbol'] : $localeconv['int_curr_symbol']; + + if (self::$currencyCode == '') { + // Default to $ + self::$currencyCode = '$'; + } + } + return self::$currencyCode; + } + + /** + * Set the currency code. Only used by PHPExcel_Style_NumberFormat::toFormattedString() + * to format output by PHPExcel_Writer_HTML and PHPExcel_Writer_PDF + * + * @param string $pValue Character for currency code + */ + public static function setCurrencyCode($pValue = '$') + { + self::$currencyCode = $pValue; + } + + /** + * Convert SYLK encoded string to UTF-8 + * + * @param string $pValue + * @return string UTF-8 encoded string + */ + public static function SYLKtoUTF8($pValue = '') + { + // If there is no escape character in the string there is nothing to do + if (strpos($pValue, '') === false) { + return $pValue; + } + + foreach (self::$SYLKCharacters as $k => $v) { + $pValue = str_replace($k, $v, $pValue); + } + + return $pValue; + } + + /** + * Retrieve any leading numeric part of a string, or return the full string if no leading numeric + * (handles basic integer or float, but not exponent or non decimal) + * + * @param string $value + * @return mixed string or only the leading numeric part of the string + */ + public static function testStringAsNumeric($value) + { + if (is_numeric($value)) { + return $value; + } + $v = floatval($value); + return (is_numeric(substr($value, 0, strlen($v)))) ? $v : $value; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/TimeZone.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/TimeZone.php new file mode 100644 index 0000000..73373e0 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/TimeZone.php @@ -0,0 +1,144 @@ +<?php + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + + +/** + * PHPExcel_Shared_TimeZone + * + * @category PHPExcel + * @package PHPExcel_Shared + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + */ +class PHPExcel_Shared_TimeZone +{ + /* + * Default Timezone used for date/time conversions + * + * @private + * @var string + */ + protected static $timezone = 'UTC'; + + /** + * Validate a Timezone name + * + * @param string $timezone Time zone (e.g. 'Europe/London') + * @return boolean Success or failure + */ + public static function _validateTimeZone($timezone) + { + if (in_array($timezone, DateTimeZone::listIdentifiers())) { + return true; + } + return false; + } + + /** + * Set the Default Timezone used for date/time conversions + * + * @param string $timezone Time zone (e.g. 'Europe/London') + * @return boolean Success or failure + */ + public static function setTimeZone($timezone) + { + if (self::_validateTimezone($timezone)) { + self::$timezone = $timezone; + return true; + } + return false; + } + + + /** + * Return the Default Timezone used for date/time conversions + * + * @return string Timezone (e.g. 'Europe/London') + */ + public static function getTimeZone() + { + return self::$timezone; + } + + + /** + * Return the Timezone transition for the specified timezone and timestamp + * + * @param DateTimeZone $objTimezone The timezone for finding the transitions + * @param integer $timestamp PHP date/time value for finding the current transition + * @return array The current transition details + */ + private static function getTimezoneTransitions($objTimezone, $timestamp) + { + $allTransitions = $objTimezone->getTransitions(); + $transitions = array(); + foreach ($allTransitions as $key => $transition) { + if ($transition['ts'] > $timestamp) { + $transitions[] = ($key > 0) ? $allTransitions[$key - 1] : $transition; + break; + } + if (empty($transitions)) { + $transitions[] = end($allTransitions); + } + } + + return $transitions; + } + + /** + * Return the Timezone offset used for date/time conversions to/from UST + * This requires both the timezone and the calculated date/time to allow for local DST + * + * @param string $timezone The timezone for finding the adjustment to UST + * @param integer $timestamp PHP date/time value + * @return integer Number of seconds for timezone adjustment + * @throws PHPExcel_Exception + */ + public static function getTimeZoneAdjustment($timezone, $timestamp) + { + if ($timezone !== null) { + if (!self::_validateTimezone($timezone)) { + throw new PHPExcel_Exception("Invalid timezone " . $timezone); + } + } else { + $timezone = self::$timezone; + } + + if ($timezone == 'UST') { + return 0; + } + + $objTimezone = new DateTimeZone($timezone); + if (version_compare(PHP_VERSION, '5.3.0') >= 0) { + $transitions = $objTimezone->getTransitions($timestamp, $timestamp); + } else { + $transitions = self::getTimezoneTransitions($objTimezone, $timestamp); + } + + return (count($transitions) > 0) ? $transitions[0]['offset'] : 0; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/XMLWriter.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/XMLWriter.php new file mode 100644 index 0000000..1dc119b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/XMLWriter.php @@ -0,0 +1,124 @@ +<?php + +if (!defined('DATE_W3C')) { + define('DATE_W3C', 'Y-m-d\TH:i:sP'); +} + +if (!defined('DEBUGMODE_ENABLED')) { + define('DEBUGMODE_ENABLED', false); +} + +/** + * PHPExcel_Shared_XMLWriter + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_XMLWriter extends XMLWriter +{ + /** Temporary storage method */ + const STORAGE_MEMORY = 1; + const STORAGE_DISK = 2; + + /** + * Temporary filename + * + * @var string + */ + private $tempFileName = ''; + + /** + * Create a new PHPExcel_Shared_XMLWriter instance + * + * @param int $pTemporaryStorage Temporary storage location + * @param string $pTemporaryStorageFolder Temporary storage folder + */ + public function __construct($pTemporaryStorage = self::STORAGE_MEMORY, $pTemporaryStorageFolder = null) + { + // Open temporary storage + if ($pTemporaryStorage == self::STORAGE_MEMORY) { + $this->openMemory(); + } else { + // Create temporary filename + if ($pTemporaryStorageFolder === null) { + $pTemporaryStorageFolder = PHPExcel_Shared_File::sys_get_temp_dir(); + } + $this->tempFileName = @tempnam($pTemporaryStorageFolder, 'xml'); + + // Open storage + if ($this->openUri($this->tempFileName) === false) { + // Fallback to memory... + $this->openMemory(); + } + } + + // Set default values + if (DEBUGMODE_ENABLED) { + $this->setIndent(true); + } + } + + /** + * Destructor + */ + public function __destruct() + { + // Unlink temporary files + if ($this->tempFileName != '') { + @unlink($this->tempFileName); + } + } + + /** + * Get written data + * + * @return $data + */ + public function getData() + { + if ($this->tempFileName == '') { + return $this->outputMemory(true); + } else { + $this->flush(); + return file_get_contents($this->tempFileName); + } + } + + /** + * Fallback method for writeRaw, introduced in PHP 5.2 + * + * @param string $text + * @return string + */ + public function writeRawData($text) + { + if (is_array($text)) { + $text = implode("\n", $text); + } + + if (method_exists($this, 'writeRaw')) { + return $this->writeRaw(htmlspecialchars($text)); + } + + return $this->text($text); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/ZipArchive.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/ZipArchive.php new file mode 100644 index 0000000..9eac8ca --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/ZipArchive.php @@ -0,0 +1,163 @@ +<?php + +if (!defined('PCLZIP_TEMPORARY_DIR')) { + define('PCLZIP_TEMPORARY_DIR', PHPExcel_Shared_File::sys_get_temp_dir() . DIRECTORY_SEPARATOR); +} +require_once PHPEXCEL_ROOT . 'PHPExcel/Shared/PCLZip/pclzip.lib.php'; + +/** + * PHPExcel_Shared_ZipArchive + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_ZipArchive + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_ZipArchive +{ + + /** constants */ + const OVERWRITE = 'OVERWRITE'; + const CREATE = 'CREATE'; + + + /** + * Temporary storage directory + * + * @var string + */ + private $tempDir; + + /** + * Zip Archive Stream Handle + * + * @var string + */ + private $zip; + + + /** + * Open a new zip archive + * + * @param string $fileName Filename for the zip archive + * @return boolean + */ + public function open($fileName) + { + $this->tempDir = PHPExcel_Shared_File::sys_get_temp_dir(); + $this->zip = new PclZip($fileName); + + return true; + } + + + /** + * Close this zip archive + * + */ + public function close() + { + } + + + /** + * Add a new file to the zip archive from a string of raw data. + * + * @param string $localname Directory/Name of the file to add to the zip archive + * @param string $contents String of data to add to the zip archive + */ + public function addFromString($localname, $contents) + { + $filenameParts = pathinfo($localname); + + $handle = fopen($this->tempDir.'/'.$filenameParts["basename"], "wb"); + fwrite($handle, $contents); + fclose($handle); + + $res = $this->zip->add($this->tempDir.'/'.$filenameParts["basename"], PCLZIP_OPT_REMOVE_PATH, $this->tempDir, PCLZIP_OPT_ADD_PATH, $filenameParts["dirname"]); + if ($res == 0) { + throw new PHPExcel_Writer_Exception("Error zipping files : " . $this->zip->errorInfo(true)); + } + + unlink($this->tempDir.'/'.$filenameParts["basename"]); + } + + /** + * Find if given fileName exist in archive (Emulate ZipArchive locateName()) + * + * @param string $fileName Filename for the file in zip archive + * @return boolean + */ + public function locateName($fileName) + { + $fileName = strtolower($fileName); + + $list = $this->zip->listContent(); + $listCount = count($list); + $index = -1; + for ($i = 0; $i < $listCount; ++$i) { + if (strtolower($list[$i]["filename"]) == $fileName || + strtolower($list[$i]["stored_filename"]) == $fileName) { + $index = $i; + break; + } + } + return ($index > -1) ? $index : false; + } + + /** + * Extract file from archive by given fileName (Emulate ZipArchive getFromName()) + * + * @param string $fileName Filename for the file in zip archive + * @return string $contents File string contents + */ + public function getFromName($fileName) + { + $index = $this->locateName($fileName); + + if ($index !== false) { + $extracted = $this->getFromIndex($index); + } else { + $fileName = substr($fileName, 1); + $index = $this->locateName($fileName); + if ($index === false) { + return false; + } + $extracted = $this->zip->getFromIndex($index); + } + + $contents = $extracted; + if ((is_array($extracted)) && ($extracted != 0)) { + $contents = $extracted[0]["content"]; + } + + return $contents; + } + + public function getFromIndex($index) { + $extracted = $this->zip->extractByIndex($index, PCLZIP_OPT_EXTRACT_AS_STRING); + $contents = ''; + if ((is_array($extracted)) && ($extracted != 0)) { + $contents = $extracted[0]["content"]; + } + + return $contents; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/ZipStreamWrapper.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/ZipStreamWrapper.php new file mode 100644 index 0000000..2e0324c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/ZipStreamWrapper.php @@ -0,0 +1,200 @@ +<?php + +/** + * PHPExcel_Shared_ZipStreamWrapper + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Shared_ZipStreamWrapper +{ + /** + * Internal ZipAcrhive + * + * @var ZipArchive + */ + private $archive; + + /** + * Filename in ZipAcrhive + * + * @var string + */ + private $fileNameInArchive = ''; + + /** + * Position in file + * + * @var int + */ + private $position = 0; + + /** + * Data + * + * @var mixed + */ + private $data = ''; + + /** + * Register wrapper + */ + public static function register() + { + @stream_wrapper_unregister('zip'); + @stream_wrapper_register('zip', __CLASS__); + } + + /** + * Implements support for fopen(). + * + * @param string $path resource name including scheme, e.g. + * @param string $mode only "r" is supported + * @param int $options mask of STREAM_REPORT_ERRORS and STREAM_USE_PATH + * @param string &$openedPath absolute path of the opened stream (out parameter) + * @return bool true on success + */ + public function stream_open($path, $mode, $options, &$opened_path) + { + // Check for mode + if ($mode{0} != 'r') { + throw new PHPExcel_Reader_Exception('Mode ' . $mode . ' is not supported. Only read mode is supported.'); + } + + $pos = strrpos($path, '#'); + $url['host'] = substr($path, 6, $pos - 6); // 6: strlen('zip://') + $url['fragment'] = substr($path, $pos + 1); + + // Open archive + $this->archive = new ZipArchive(); + $this->archive->open($url['host']); + + $this->fileNameInArchive = $url['fragment']; + $this->position = 0; + $this->data = $this->archive->getFromName($this->fileNameInArchive); + + return true; + } + + /** + * Implements support for fstat(). + * + * @return boolean + */ + public function statName() + { + return $this->fileNameInArchive; + } + + /** + * Implements support for fstat(). + * + * @return boolean + */ + public function url_stat() + { + return $this->statName($this->fileNameInArchive); + } + + /** + * Implements support for fstat(). + * + * @return boolean + */ + public function stream_stat() + { + return $this->archive->statName($this->fileNameInArchive); + } + + /** + * Implements support for fread(), fgets() etc. + * + * @param int $count maximum number of bytes to read + * @return string + */ + public function stream_read($count) + { + $ret = substr($this->data, $this->position, $count); + $this->position += strlen($ret); + return $ret; + } + + /** + * Returns the position of the file pointer, i.e. its offset into the file + * stream. Implements support for ftell(). + * + * @return int + */ + public function stream_tell() + { + return $this->position; + } + + /** + * EOF stream + * + * @return bool + */ + public function stream_eof() + { + return $this->position >= strlen($this->data); + } + + /** + * Seek stream + * + * @param int $offset byte offset + * @param int $whence SEEK_SET, SEEK_CUR or SEEK_END + * @return bool + */ + public function stream_seek($offset, $whence) + { + switch ($whence) { + case SEEK_SET: + if ($offset < strlen($this->data) && $offset >= 0) { + $this->position = $offset; + return true; + } else { + return false; + } + break; + case SEEK_CUR: + if ($offset >= 0) { + $this->position += $offset; + return true; + } else { + return false; + } + break; + case SEEK_END: + if (strlen($this->data) + $offset >= 0) { + $this->position = strlen($this->data) + $offset; + return true; + } else { + return false; + } + break; + default: + return false; + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/bestFitClass.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/bestFitClass.php new file mode 100644 index 0000000..2de029f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/bestFitClass.php @@ -0,0 +1,425 @@ +<?php + +/** + * PHPExcel_Best_Fit + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_Trend + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Best_Fit +{ + /** + * Indicator flag for a calculation error + * + * @var boolean + **/ + protected $error = false; + + /** + * Algorithm type to use for best-fit + * + * @var string + **/ + protected $bestFitType = 'undetermined'; + + /** + * Number of entries in the sets of x- and y-value arrays + * + * @var int + **/ + protected $valueCount = 0; + + /** + * X-value dataseries of values + * + * @var float[] + **/ + protected $xValues = array(); + + /** + * Y-value dataseries of values + * + * @var float[] + **/ + protected $yValues = array(); + + /** + * Flag indicating whether values should be adjusted to Y=0 + * + * @var boolean + **/ + protected $adjustToZero = false; + + /** + * Y-value series of best-fit values + * + * @var float[] + **/ + protected $yBestFitValues = array(); + + protected $goodnessOfFit = 1; + + protected $stdevOfResiduals = 0; + + protected $covariance = 0; + + protected $correlation = 0; + + protected $SSRegression = 0; + + protected $SSResiduals = 0; + + protected $DFResiduals = 0; + + protected $f = 0; + + protected $slope = 0; + + protected $slopeSE = 0; + + protected $intersect = 0; + + protected $intersectSE = 0; + + protected $xOffset = 0; + + protected $yOffset = 0; + + + public function getError() + { + return $this->error; + } + + + public function getBestFitType() + { + return $this->bestFitType; + } + + /** + * Return the Y-Value for a specified value of X + * + * @param float $xValue X-Value + * @return float Y-Value + */ + public function getValueOfYForX($xValue) + { + return false; + } + + /** + * Return the X-Value for a specified value of Y + * + * @param float $yValue Y-Value + * @return float X-Value + */ + public function getValueOfXForY($yValue) + { + return false; + } + + /** + * Return the original set of X-Values + * + * @return float[] X-Values + */ + public function getXValues() + { + return $this->xValues; + } + + /** + * Return the Equation of the best-fit line + * + * @param int $dp Number of places of decimal precision to display + * @return string + */ + public function getEquation($dp = 0) + { + return false; + } + + /** + * Return the Slope of the line + * + * @param int $dp Number of places of decimal precision to display + * @return string + */ + public function getSlope($dp = 0) + { + if ($dp != 0) { + return round($this->slope, $dp); + } + return $this->slope; + } + + /** + * Return the standard error of the Slope + * + * @param int $dp Number of places of decimal precision to display + * @return string + */ + public function getSlopeSE($dp = 0) + { + if ($dp != 0) { + return round($this->slopeSE, $dp); + } + return $this->slopeSE; + } + + /** + * Return the Value of X where it intersects Y = 0 + * + * @param int $dp Number of places of decimal precision to display + * @return string + */ + public function getIntersect($dp = 0) + { + if ($dp != 0) { + return round($this->intersect, $dp); + } + return $this->intersect; + } + + /** + * Return the standard error of the Intersect + * + * @param int $dp Number of places of decimal precision to display + * @return string + */ + public function getIntersectSE($dp = 0) + { + if ($dp != 0) { + return round($this->intersectSE, $dp); + } + return $this->intersectSE; + } + + /** + * Return the goodness of fit for this regression + * + * @param int $dp Number of places of decimal precision to return + * @return float + */ + public function getGoodnessOfFit($dp = 0) + { + if ($dp != 0) { + return round($this->goodnessOfFit, $dp); + } + return $this->goodnessOfFit; + } + + public function getGoodnessOfFitPercent($dp = 0) + { + if ($dp != 0) { + return round($this->goodnessOfFit * 100, $dp); + } + return $this->goodnessOfFit * 100; + } + + /** + * Return the standard deviation of the residuals for this regression + * + * @param int $dp Number of places of decimal precision to return + * @return float + */ + public function getStdevOfResiduals($dp = 0) + { + if ($dp != 0) { + return round($this->stdevOfResiduals, $dp); + } + return $this->stdevOfResiduals; + } + + public function getSSRegression($dp = 0) + { + if ($dp != 0) { + return round($this->SSRegression, $dp); + } + return $this->SSRegression; + } + + public function getSSResiduals($dp = 0) + { + if ($dp != 0) { + return round($this->SSResiduals, $dp); + } + return $this->SSResiduals; + } + + public function getDFResiduals($dp = 0) + { + if ($dp != 0) { + return round($this->DFResiduals, $dp); + } + return $this->DFResiduals; + } + + public function getF($dp = 0) + { + if ($dp != 0) { + return round($this->f, $dp); + } + return $this->f; + } + + public function getCovariance($dp = 0) + { + if ($dp != 0) { + return round($this->covariance, $dp); + } + return $this->covariance; + } + + public function getCorrelation($dp = 0) + { + if ($dp != 0) { + return round($this->correlation, $dp); + } + return $this->correlation; + } + + public function getYBestFitValues() + { + return $this->yBestFitValues; + } + + protected function calculateGoodnessOfFit($sumX, $sumY, $sumX2, $sumY2, $sumXY, $meanX, $meanY, $const) + { + $SSres = $SScov = $SScor = $SStot = $SSsex = 0.0; + foreach ($this->xValues as $xKey => $xValue) { + $bestFitY = $this->yBestFitValues[$xKey] = $this->getValueOfYForX($xValue); + + $SSres += ($this->yValues[$xKey] - $bestFitY) * ($this->yValues[$xKey] - $bestFitY); + if ($const) { + $SStot += ($this->yValues[$xKey] - $meanY) * ($this->yValues[$xKey] - $meanY); + } else { + $SStot += $this->yValues[$xKey] * $this->yValues[$xKey]; + } + $SScov += ($this->xValues[$xKey] - $meanX) * ($this->yValues[$xKey] - $meanY); + if ($const) { + $SSsex += ($this->xValues[$xKey] - $meanX) * ($this->xValues[$xKey] - $meanX); + } else { + $SSsex += $this->xValues[$xKey] * $this->xValues[$xKey]; + } + } + + $this->SSResiduals = $SSres; + $this->DFResiduals = $this->valueCount - 1 - $const; + + if ($this->DFResiduals == 0.0) { + $this->stdevOfResiduals = 0.0; + } else { + $this->stdevOfResiduals = sqrt($SSres / $this->DFResiduals); + } + if (($SStot == 0.0) || ($SSres == $SStot)) { + $this->goodnessOfFit = 1; + } else { + $this->goodnessOfFit = 1 - ($SSres / $SStot); + } + + $this->SSRegression = $this->goodnessOfFit * $SStot; + $this->covariance = $SScov / $this->valueCount; + $this->correlation = ($this->valueCount * $sumXY - $sumX * $sumY) / sqrt(($this->valueCount * $sumX2 - pow($sumX, 2)) * ($this->valueCount * $sumY2 - pow($sumY, 2))); + $this->slopeSE = $this->stdevOfResiduals / sqrt($SSsex); + $this->intersectSE = $this->stdevOfResiduals * sqrt(1 / ($this->valueCount - ($sumX * $sumX) / $sumX2)); + if ($this->SSResiduals != 0.0) { + if ($this->DFResiduals == 0.0) { + $this->f = 0.0; + } else { + $this->f = $this->SSRegression / ($this->SSResiduals / $this->DFResiduals); + } + } else { + if ($this->DFResiduals == 0.0) { + $this->f = 0.0; + } else { + $this->f = $this->SSRegression / $this->DFResiduals; + } + } + } + + protected function leastSquareFit($yValues, $xValues, $const) + { + // calculate sums + $x_sum = array_sum($xValues); + $y_sum = array_sum($yValues); + $meanX = $x_sum / $this->valueCount; + $meanY = $y_sum / $this->valueCount; + $mBase = $mDivisor = $xx_sum = $xy_sum = $yy_sum = 0.0; + for ($i = 0; $i < $this->valueCount; ++$i) { + $xy_sum += $xValues[$i] * $yValues[$i]; + $xx_sum += $xValues[$i] * $xValues[$i]; + $yy_sum += $yValues[$i] * $yValues[$i]; + + if ($const) { + $mBase += ($xValues[$i] - $meanX) * ($yValues[$i] - $meanY); + $mDivisor += ($xValues[$i] - $meanX) * ($xValues[$i] - $meanX); + } else { + $mBase += $xValues[$i] * $yValues[$i]; + $mDivisor += $xValues[$i] * $xValues[$i]; + } + } + + // calculate slope +// $this->slope = (($this->valueCount * $xy_sum) - ($x_sum * $y_sum)) / (($this->valueCount * $xx_sum) - ($x_sum * $x_sum)); + $this->slope = $mBase / $mDivisor; + + // calculate intersect +// $this->intersect = ($y_sum - ($this->slope * $x_sum)) / $this->valueCount; + if ($const) { + $this->intersect = $meanY - ($this->slope * $meanX); + } else { + $this->intersect = 0; + } + + $this->calculateGoodnessOfFit($x_sum, $y_sum, $xx_sum, $yy_sum, $xy_sum, $meanX, $meanY, $const); + } + + /** + * Define the regression + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + * @param boolean $const + */ + public function __construct($yValues, $xValues = array(), $const = true) + { + // Calculate number of points + $nY = count($yValues); + $nX = count($xValues); + + // Define X Values if necessary + if ($nX == 0) { + $xValues = range(1, $nY); + $nX = $nY; + } elseif ($nY != $nX) { + // Ensure both arrays of points are the same size + $this->error = true; + return false; + } + + $this->valueCount = $nY; + $this->xValues = $xValues; + $this->yValues = $yValues; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/exponentialBestFitClass.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/exponentialBestFitClass.php new file mode 100644 index 0000000..4448735 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/exponentialBestFitClass.php @@ -0,0 +1,138 @@ +<?php + +require_once(PHPEXCEL_ROOT . 'PHPExcel/Shared/trend/bestFitClass.php'); + +/** + * PHPExcel_Exponential_Best_Fit + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_Trend + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Exponential_Best_Fit extends PHPExcel_Best_Fit +{ + /** + * Algorithm type to use for best-fit + * (Name of this trend class) + * + * @var string + **/ + protected $bestFitType = 'exponential'; + + /** + * Return the Y-Value for a specified value of X + * + * @param float $xValue X-Value + * @return float Y-Value + **/ + public function getValueOfYForX($xValue) + { + return $this->getIntersect() * pow($this->getSlope(), ($xValue - $this->xOffset)); + } + + /** + * Return the X-Value for a specified value of Y + * + * @param float $yValue Y-Value + * @return float X-Value + **/ + public function getValueOfXForY($yValue) + { + return log(($yValue + $this->yOffset) / $this->getIntersect()) / log($this->getSlope()); + } + + /** + * Return the Equation of the best-fit line + * + * @param int $dp Number of places of decimal precision to display + * @return string + **/ + public function getEquation($dp = 0) + { + $slope = $this->getSlope($dp); + $intersect = $this->getIntersect($dp); + + return 'Y = ' . $intersect . ' * ' . $slope . '^X'; + } + + /** + * Return the Slope of the line + * + * @param int $dp Number of places of decimal precision to display + * @return string + **/ + public function getSlope($dp = 0) + { + if ($dp != 0) { + return round(exp($this->_slope), $dp); + } + return exp($this->_slope); + } + + /** + * Return the Value of X where it intersects Y = 0 + * + * @param int $dp Number of places of decimal precision to display + * @return string + **/ + public function getIntersect($dp = 0) + { + if ($dp != 0) { + return round(exp($this->intersect), $dp); + } + return exp($this->intersect); + } + + /** + * Execute the regression and calculate the goodness of fit for a set of X and Y data values + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + * @param boolean $const + */ + private function exponentialRegression($yValues, $xValues, $const) + { + foreach ($yValues as &$value) { + if ($value < 0.0) { + $value = 0 - log(abs($value)); + } elseif ($value > 0.0) { + $value = log($value); + } + } + unset($value); + + $this->leastSquareFit($yValues, $xValues, $const); + } + + /** + * Define the regression and calculate the goodness of fit for a set of X and Y data values + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + * @param boolean $const + */ + public function __construct($yValues, $xValues = array(), $const = true) + { + if (parent::__construct($yValues, $xValues) !== false) { + $this->exponentialRegression($yValues, $xValues, $const); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/linearBestFitClass.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/linearBestFitClass.php new file mode 100644 index 0000000..76b55b3 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/linearBestFitClass.php @@ -0,0 +1,102 @@ +<?php + +require_once(PHPEXCEL_ROOT . 'PHPExcel/Shared/trend/bestFitClass.php'); + +/** + * PHPExcel_Linear_Best_Fit + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_Trend + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Linear_Best_Fit extends PHPExcel_Best_Fit +{ + /** + * Algorithm type to use for best-fit + * (Name of this trend class) + * + * @var string + **/ + protected $bestFitType = 'linear'; + + /** + * Return the Y-Value for a specified value of X + * + * @param float $xValue X-Value + * @return float Y-Value + **/ + public function getValueOfYForX($xValue) + { + return $this->getIntersect() + $this->getSlope() * $xValue; + } + + /** + * Return the X-Value for a specified value of Y + * + * @param float $yValue Y-Value + * @return float X-Value + **/ + public function getValueOfXForY($yValue) + { + return ($yValue - $this->getIntersect()) / $this->getSlope(); + } + + + /** + * Return the Equation of the best-fit line + * + * @param int $dp Number of places of decimal precision to display + * @return string + **/ + public function getEquation($dp = 0) + { + $slope = $this->getSlope($dp); + $intersect = $this->getIntersect($dp); + + return 'Y = ' . $intersect . ' + ' . $slope . ' * X'; + } + + /** + * Execute the regression and calculate the goodness of fit for a set of X and Y data values + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + * @param boolean $const + */ + private function linearRegression($yValues, $xValues, $const) + { + $this->leastSquareFit($yValues, $xValues, $const); + } + + /** + * Define the regression and calculate the goodness of fit for a set of X and Y data values + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + * @param boolean $const + */ + public function __construct($yValues, $xValues = array(), $const = true) + { + if (parent::__construct($yValues, $xValues) !== false) { + $this->linearRegression($yValues, $xValues, $const); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/logarithmicBestFitClass.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/logarithmicBestFitClass.php new file mode 100644 index 0000000..221c538 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/logarithmicBestFitClass.php @@ -0,0 +1,110 @@ +<?php + +require_once(PHPEXCEL_ROOT . 'PHPExcel/Shared/trend/bestFitClass.php'); + +/** + * PHPExcel_Logarithmic_Best_Fit + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_Trend + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Logarithmic_Best_Fit extends PHPExcel_Best_Fit +{ + /** + * Algorithm type to use for best-fit + * (Name of this trend class) + * + * @var string + **/ + protected $bestFitType = 'logarithmic'; + + /** + * Return the Y-Value for a specified value of X + * + * @param float $xValue X-Value + * @return float Y-Value + **/ + public function getValueOfYForX($xValue) + { + return $this->getIntersect() + $this->getSlope() * log($xValue - $this->xOffset); + } + + /** + * Return the X-Value for a specified value of Y + * + * @param float $yValue Y-Value + * @return float X-Value + **/ + public function getValueOfXForY($yValue) + { + return exp(($yValue - $this->getIntersect()) / $this->getSlope()); + } + + /** + * Return the Equation of the best-fit line + * + * @param int $dp Number of places of decimal precision to display + * @return string + **/ + public function getEquation($dp = 0) + { + $slope = $this->getSlope($dp); + $intersect = $this->getIntersect($dp); + + return 'Y = '.$intersect.' + '.$slope.' * log(X)'; + } + + /** + * Execute the regression and calculate the goodness of fit for a set of X and Y data values + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + * @param boolean $const + */ + private function logarithmicRegression($yValues, $xValues, $const) + { + foreach ($xValues as &$value) { + if ($value < 0.0) { + $value = 0 - log(abs($value)); + } elseif ($value > 0.0) { + $value = log($value); + } + } + unset($value); + + $this->leastSquareFit($yValues, $xValues, $const); + } + + /** + * Define the regression and calculate the goodness of fit for a set of X and Y data values + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + * @param boolean $const + */ + public function __construct($yValues, $xValues = array(), $const = true) + { + if (parent::__construct($yValues, $xValues) !== false) { + $this->logarithmicRegression($yValues, $xValues, $const); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/polynomialBestFitClass.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/polynomialBestFitClass.php new file mode 100644 index 0000000..8a882b7 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/polynomialBestFitClass.php @@ -0,0 +1,222 @@ +<?php + +require_once PHPEXCEL_ROOT . 'PHPExcel/Shared/trend/bestFitClass.php'; +require_once PHPEXCEL_ROOT . 'PHPExcel/Shared/JAMA/Matrix.php'; + +/** + * PHPExcel_Polynomial_Best_Fit + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_Trend + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Polynomial_Best_Fit extends PHPExcel_Best_Fit +{ + /** + * Algorithm type to use for best-fit + * (Name of this trend class) + * + * @var string + **/ + protected $bestFitType = 'polynomial'; + + /** + * Polynomial order + * + * @protected + * @var int + **/ + protected $order = 0; + + + /** + * Return the order of this polynomial + * + * @return int + **/ + public function getOrder() + { + return $this->order; + } + + + /** + * Return the Y-Value for a specified value of X + * + * @param float $xValue X-Value + * @return float Y-Value + **/ + public function getValueOfYForX($xValue) + { + $retVal = $this->getIntersect(); + $slope = $this->getSlope(); + foreach ($slope as $key => $value) { + if ($value != 0.0) { + $retVal += $value * pow($xValue, $key + 1); + } + } + return $retVal; + } + + + /** + * Return the X-Value for a specified value of Y + * + * @param float $yValue Y-Value + * @return float X-Value + **/ + public function getValueOfXForY($yValue) + { + return ($yValue - $this->getIntersect()) / $this->getSlope(); + } + + + /** + * Return the Equation of the best-fit line + * + * @param int $dp Number of places of decimal precision to display + * @return string + **/ + public function getEquation($dp = 0) + { + $slope = $this->getSlope($dp); + $intersect = $this->getIntersect($dp); + + $equation = 'Y = ' . $intersect; + foreach ($slope as $key => $value) { + if ($value != 0.0) { + $equation .= ' + ' . $value . ' * X'; + if ($key > 0) { + $equation .= '^' . ($key + 1); + } + } + } + return $equation; + } + + + /** + * Return the Slope of the line + * + * @param int $dp Number of places of decimal precision to display + * @return string + **/ + public function getSlope($dp = 0) + { + if ($dp != 0) { + $coefficients = array(); + foreach ($this->_slope as $coefficient) { + $coefficients[] = round($coefficient, $dp); + } + return $coefficients; + } + return $this->_slope; + } + + + public function getCoefficients($dp = 0) + { + return array_merge(array($this->getIntersect($dp)), $this->getSlope($dp)); + } + + + /** + * Execute the regression and calculate the goodness of fit for a set of X and Y data values + * + * @param int $order Order of Polynomial for this regression + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + * @param boolean $const + */ + private function polynomialRegression($order, $yValues, $xValues, $const) + { + // calculate sums + $x_sum = array_sum($xValues); + $y_sum = array_sum($yValues); + $xx_sum = $xy_sum = 0; + for ($i = 0; $i < $this->valueCount; ++$i) { + $xy_sum += $xValues[$i] * $yValues[$i]; + $xx_sum += $xValues[$i] * $xValues[$i]; + $yy_sum += $yValues[$i] * $yValues[$i]; + } + /* + * This routine uses logic from the PHP port of polyfit version 0.1 + * written by Michael Bommarito and Paul Meagher + * + * The function fits a polynomial function of order $order through + * a series of x-y data points using least squares. + * + */ + for ($i = 0; $i < $this->valueCount; ++$i) { + for ($j = 0; $j <= $order; ++$j) { + $A[$i][$j] = pow($xValues[$i], $j); + } + } + for ($i=0; $i < $this->valueCount; ++$i) { + $B[$i] = array($yValues[$i]); + } + $matrixA = new Matrix($A); + $matrixB = new Matrix($B); + $C = $matrixA->solve($matrixB); + + $coefficients = array(); + for ($i = 0; $i < $C->m; ++$i) { + $r = $C->get($i, 0); + if (abs($r) <= pow(10, -9)) { + $r = 0; + } + $coefficients[] = $r; + } + + $this->intersect = array_shift($coefficients); + $this->_slope = $coefficients; + + $this->calculateGoodnessOfFit($x_sum, $y_sum, $xx_sum, $yy_sum, $xy_sum); + foreach ($this->xValues as $xKey => $xValue) { + $this->yBestFitValues[$xKey] = $this->getValueOfYForX($xValue); + } + } + + + /** + * Define the regression and calculate the goodness of fit for a set of X and Y data values + * + * @param int $order Order of Polynomial for this regression + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + * @param boolean $const + */ + public function __construct($order, $yValues, $xValues = array(), $const = true) + { + if (parent::__construct($yValues, $xValues) !== false) { + if ($order < $this->valueCount) { + $this->bestFitType .= '_'.$order; + $this->order = $order; + $this->polynomialRegression($order, $yValues, $xValues, $const); + if (($this->getGoodnessOfFit() < 0.0) || ($this->getGoodnessOfFit() > 1.0)) { + $this->_error = true; + } + } else { + $this->_error = true; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/powerBestFitClass.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/powerBestFitClass.php new file mode 100644 index 0000000..77c4734 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/powerBestFitClass.php @@ -0,0 +1,138 @@ +<?php + +require_once PHPEXCEL_ROOT . 'PHPExcel/Shared/trend/bestFitClass.php'; + +/** + * PHPExcel_Power_Best_Fit + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_Trend + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Power_Best_Fit extends PHPExcel_Best_Fit +{ + /** + * Algorithm type to use for best-fit + * (Name of this trend class) + * + * @var string + **/ + protected $bestFitType = 'power'; + + + /** + * Return the Y-Value for a specified value of X + * + * @param float $xValue X-Value + * @return float Y-Value + **/ + public function getValueOfYForX($xValue) + { + return $this->getIntersect() * pow(($xValue - $this->xOffset), $this->getSlope()); + } + + + /** + * Return the X-Value for a specified value of Y + * + * @param float $yValue Y-Value + * @return float X-Value + **/ + public function getValueOfXForY($yValue) + { + return pow((($yValue + $this->yOffset) / $this->getIntersect()), (1 / $this->getSlope())); + } + + + /** + * Return the Equation of the best-fit line + * + * @param int $dp Number of places of decimal precision to display + * @return string + **/ + public function getEquation($dp = 0) + { + $slope = $this->getSlope($dp); + $intersect = $this->getIntersect($dp); + + return 'Y = ' . $intersect . ' * X^' . $slope; + } + + + /** + * Return the Value of X where it intersects Y = 0 + * + * @param int $dp Number of places of decimal precision to display + * @return string + **/ + public function getIntersect($dp = 0) + { + if ($dp != 0) { + return round(exp($this->intersect), $dp); + } + return exp($this->intersect); + } + + + /** + * Execute the regression and calculate the goodness of fit for a set of X and Y data values + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + * @param boolean $const + */ + private function powerRegression($yValues, $xValues, $const) + { + foreach ($xValues as &$value) { + if ($value < 0.0) { + $value = 0 - log(abs($value)); + } elseif ($value > 0.0) { + $value = log($value); + } + } + unset($value); + foreach ($yValues as &$value) { + if ($value < 0.0) { + $value = 0 - log(abs($value)); + } elseif ($value > 0.0) { + $value = log($value); + } + } + unset($value); + + $this->leastSquareFit($yValues, $xValues, $const); + } + + + /** + * Define the regression and calculate the goodness of fit for a set of X and Y data values + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + * @param boolean $const + */ + public function __construct($yValues, $xValues = array(), $const = true) + { + if (parent::__construct($yValues, $xValues) !== false) { + $this->powerRegression($yValues, $xValues, $const); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/trendClass.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/trendClass.php new file mode 100644 index 0000000..715cd41 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/trendClass.php @@ -0,0 +1,147 @@ +<?php + +require_once PHPEXCEL_ROOT . 'PHPExcel/Shared/trend/linearBestFitClass.php'; +require_once PHPEXCEL_ROOT . 'PHPExcel/Shared/trend/logarithmicBestFitClass.php'; +require_once PHPEXCEL_ROOT . 'PHPExcel/Shared/trend/exponentialBestFitClass.php'; +require_once PHPEXCEL_ROOT . 'PHPExcel/Shared/trend/powerBestFitClass.php'; +require_once PHPEXCEL_ROOT . 'PHPExcel/Shared/trend/polynomialBestFitClass.php'; + +/** + * PHPExcel_trendClass + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Shared_Trend + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class trendClass +{ + const TREND_LINEAR = 'Linear'; + const TREND_LOGARITHMIC = 'Logarithmic'; + const TREND_EXPONENTIAL = 'Exponential'; + const TREND_POWER = 'Power'; + const TREND_POLYNOMIAL_2 = 'Polynomial_2'; + const TREND_POLYNOMIAL_3 = 'Polynomial_3'; + const TREND_POLYNOMIAL_4 = 'Polynomial_4'; + const TREND_POLYNOMIAL_5 = 'Polynomial_5'; + const TREND_POLYNOMIAL_6 = 'Polynomial_6'; + const TREND_BEST_FIT = 'Bestfit'; + const TREND_BEST_FIT_NO_POLY = 'Bestfit_no_Polynomials'; + + /** + * Names of the best-fit trend analysis methods + * + * @var string[] + **/ + private static $trendTypes = array( + self::TREND_LINEAR, + self::TREND_LOGARITHMIC, + self::TREND_EXPONENTIAL, + self::TREND_POWER + ); + + /** + * Names of the best-fit trend polynomial orders + * + * @var string[] + **/ + private static $trendTypePolynomialOrders = array( + self::TREND_POLYNOMIAL_2, + self::TREND_POLYNOMIAL_3, + self::TREND_POLYNOMIAL_4, + self::TREND_POLYNOMIAL_5, + self::TREND_POLYNOMIAL_6 + ); + + /** + * Cached results for each method when trying to identify which provides the best fit + * + * @var PHPExcel_Best_Fit[] + **/ + private static $trendCache = array(); + + + public static function calculate($trendType = self::TREND_BEST_FIT, $yValues, $xValues = array(), $const = true) + { + // Calculate number of points in each dataset + $nY = count($yValues); + $nX = count($xValues); + + // Define X Values if necessary + if ($nX == 0) { + $xValues = range(1, $nY); + $nX = $nY; + } elseif ($nY != $nX) { + // Ensure both arrays of points are the same size + trigger_error("trend(): Number of elements in coordinate arrays do not match.", E_USER_ERROR); + } + + $key = md5($trendType.$const.serialize($yValues).serialize($xValues)); + // Determine which trend method has been requested + switch ($trendType) { + // Instantiate and return the class for the requested trend method + case self::TREND_LINEAR: + case self::TREND_LOGARITHMIC: + case self::TREND_EXPONENTIAL: + case self::TREND_POWER: + if (!isset(self::$trendCache[$key])) { + $className = 'PHPExcel_'.$trendType.'_Best_Fit'; + self::$trendCache[$key] = new $className($yValues, $xValues, $const); + } + return self::$trendCache[$key]; + case self::TREND_POLYNOMIAL_2: + case self::TREND_POLYNOMIAL_3: + case self::TREND_POLYNOMIAL_4: + case self::TREND_POLYNOMIAL_5: + case self::TREND_POLYNOMIAL_6: + if (!isset(self::$trendCache[$key])) { + $order = substr($trendType, -1); + self::$trendCache[$key] = new PHPExcel_Polynomial_Best_Fit($order, $yValues, $xValues, $const); + } + return self::$trendCache[$key]; + case self::TREND_BEST_FIT: + case self::TREND_BEST_FIT_NO_POLY: + // If the request is to determine the best fit regression, then we test each trend line in turn + // Start by generating an instance of each available trend method + foreach (self::$trendTypes as $trendMethod) { + $className = 'PHPExcel_'.$trendMethod.'BestFit'; + $bestFit[$trendMethod] = new $className($yValues, $xValues, $const); + $bestFitValue[$trendMethod] = $bestFit[$trendMethod]->getGoodnessOfFit(); + } + if ($trendType != self::TREND_BEST_FIT_NO_POLY) { + foreach (self::$trendTypePolynomialOrders as $trendMethod) { + $order = substr($trendMethod, -1); + $bestFit[$trendMethod] = new PHPExcel_Polynomial_Best_Fit($order, $yValues, $xValues, $const); + if ($bestFit[$trendMethod]->getError()) { + unset($bestFit[$trendMethod]); + } else { + $bestFitValue[$trendMethod] = $bestFit[$trendMethod]->getGoodnessOfFit(); + } + } + } + // Determine which of our trend lines is the best fit, and then we return the instance of that trend class + arsort($bestFitValue); + $bestFitType = key($bestFitValue); + return $bestFit[$bestFitType]; + default: + return false; + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style.php new file mode 100644 index 0000000..6b952ef --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style.php @@ -0,0 +1,644 @@ +<?php + +/** + * PHPExcel_Style + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Style + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Style extends PHPExcel_Style_Supervisor implements PHPExcel_IComparable +{ + /** + * Font + * + * @var PHPExcel_Style_Font + */ + protected $font; + + /** + * Fill + * + * @var PHPExcel_Style_Fill + */ + protected $fill; + + /** + * Borders + * + * @var PHPExcel_Style_Borders + */ + protected $borders; + + /** + * Alignment + * + * @var PHPExcel_Style_Alignment + */ + protected $alignment; + + /** + * Number Format + * + * @var PHPExcel_Style_NumberFormat + */ + protected $numberFormat; + + /** + * Conditional styles + * + * @var PHPExcel_Style_Conditional[] + */ + protected $conditionalStyles; + + /** + * Protection + * + * @var PHPExcel_Style_Protection + */ + protected $protection; + + /** + * Index of style in collection. Only used for real style. + * + * @var int + */ + protected $index; + + /** + * Use Quote Prefix when displaying in cell editor. Only used for real style. + * + * @var boolean + */ + protected $quotePrefix = false; + + /** + * Create a new PHPExcel_Style + * + * @param boolean $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + * @param boolean $isConditional Flag indicating if this is a conditional style or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false, $isConditional = false) + { + // Supervisor? + $this->isSupervisor = $isSupervisor; + + // Initialise values + $this->conditionalStyles = array(); + $this->font = new PHPExcel_Style_Font($isSupervisor, $isConditional); + $this->fill = new PHPExcel_Style_Fill($isSupervisor, $isConditional); + $this->borders = new PHPExcel_Style_Borders($isSupervisor, $isConditional); + $this->alignment = new PHPExcel_Style_Alignment($isSupervisor, $isConditional); + $this->numberFormat = new PHPExcel_Style_NumberFormat($isSupervisor, $isConditional); + $this->protection = new PHPExcel_Style_Protection($isSupervisor, $isConditional); + + // bind parent if we are a supervisor + if ($isSupervisor) { + $this->font->bindParent($this); + $this->fill->bindParent($this); + $this->borders->bindParent($this); + $this->alignment->bindParent($this); + $this->numberFormat->bindParent($this); + $this->protection->bindParent($this); + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor + * + * @return PHPExcel_Style + */ + public function getSharedComponent() + { + $activeSheet = $this->getActiveSheet(); + $selectedCell = $this->getActiveCell(); // e.g. 'A1' + + if ($activeSheet->cellExists($selectedCell)) { + $xfIndex = $activeSheet->getCell($selectedCell)->getXfIndex(); + } else { + $xfIndex = 0; + } + + return $this->parent->getCellXfByIndex($xfIndex); + } + + /** + * Get parent. Only used for style supervisor + * + * @return PHPExcel + */ + public function getParent() + { + return $this->parent; + } + + /** + * Build style array from subcomponents + * + * @param array $array + * @return array + */ + public function getStyleArray($array) + { + return array('quotePrefix' => $array); + } + + /** + * Apply styles from array + * + * <code> + * $objPHPExcel->getActiveSheet()->getStyle('B2')->applyFromArray( + * array( + * 'font' => array( + * 'name' => 'Arial', + * 'bold' => true, + * 'italic' => false, + * 'underline' => PHPExcel_Style_Font::UNDERLINE_DOUBLE, + * 'strike' => false, + * 'color' => array( + * 'rgb' => '808080' + * ) + * ), + * 'borders' => array( + * 'bottom' => array( + * 'style' => PHPExcel_Style_Border::BORDER_DASHDOT, + * 'color' => array( + * 'rgb' => '808080' + * ) + * ), + * 'top' => array( + * 'style' => PHPExcel_Style_Border::BORDER_DASHDOT, + * 'color' => array( + * 'rgb' => '808080' + * ) + * ) + * ), + * 'quotePrefix' => true + * ) + * ); + * </code> + * + * @param array $pStyles Array containing style information + * @param boolean $pAdvanced Advanced mode for setting borders. + * @throws PHPExcel_Exception + * @return PHPExcel_Style + */ + public function applyFromArray($pStyles = null, $pAdvanced = true) + { + if (is_array($pStyles)) { + if ($this->isSupervisor) { + $pRange = $this->getSelectedCells(); + + // Uppercase coordinate + $pRange = strtoupper($pRange); + + // Is it a cell range or a single cell? + if (strpos($pRange, ':') === false) { + $rangeA = $pRange; + $rangeB = $pRange; + } else { + list($rangeA, $rangeB) = explode(':', $pRange); + } + + // Calculate range outer borders + $rangeStart = PHPExcel_Cell::coordinateFromString($rangeA); + $rangeEnd = PHPExcel_Cell::coordinateFromString($rangeB); + + // Translate column into index + $rangeStart[0] = PHPExcel_Cell::columnIndexFromString($rangeStart[0]) - 1; + $rangeEnd[0] = PHPExcel_Cell::columnIndexFromString($rangeEnd[0]) - 1; + + // Make sure we can loop upwards on rows and columns + if ($rangeStart[0] > $rangeEnd[0] && $rangeStart[1] > $rangeEnd[1]) { + $tmp = $rangeStart; + $rangeStart = $rangeEnd; + $rangeEnd = $tmp; + } + + // ADVANCED MODE: + if ($pAdvanced && isset($pStyles['borders'])) { + // 'allborders' is a shorthand property for 'outline' and 'inside' and + // it applies to components that have not been set explicitly + if (isset($pStyles['borders']['allborders'])) { + foreach (array('outline', 'inside') as $component) { + if (!isset($pStyles['borders'][$component])) { + $pStyles['borders'][$component] = $pStyles['borders']['allborders']; + } + } + unset($pStyles['borders']['allborders']); // not needed any more + } + // 'outline' is a shorthand property for 'top', 'right', 'bottom', 'left' + // it applies to components that have not been set explicitly + if (isset($pStyles['borders']['outline'])) { + foreach (array('top', 'right', 'bottom', 'left') as $component) { + if (!isset($pStyles['borders'][$component])) { + $pStyles['borders'][$component] = $pStyles['borders']['outline']; + } + } + unset($pStyles['borders']['outline']); // not needed any more + } + // 'inside' is a shorthand property for 'vertical' and 'horizontal' + // it applies to components that have not been set explicitly + if (isset($pStyles['borders']['inside'])) { + foreach (array('vertical', 'horizontal') as $component) { + if (!isset($pStyles['borders'][$component])) { + $pStyles['borders'][$component] = $pStyles['borders']['inside']; + } + } + unset($pStyles['borders']['inside']); // not needed any more + } + // width and height characteristics of selection, 1, 2, or 3 (for 3 or more) + $xMax = min($rangeEnd[0] - $rangeStart[0] + 1, 3); + $yMax = min($rangeEnd[1] - $rangeStart[1] + 1, 3); + + // loop through up to 3 x 3 = 9 regions + for ($x = 1; $x <= $xMax; ++$x) { + // start column index for region + $colStart = ($x == 3) ? + PHPExcel_Cell::stringFromColumnIndex($rangeEnd[0]) + : PHPExcel_Cell::stringFromColumnIndex($rangeStart[0] + $x - 1); + // end column index for region + $colEnd = ($x == 1) ? + PHPExcel_Cell::stringFromColumnIndex($rangeStart[0]) + : PHPExcel_Cell::stringFromColumnIndex($rangeEnd[0] - $xMax + $x); + + for ($y = 1; $y <= $yMax; ++$y) { + // which edges are touching the region + $edges = array(); + if ($x == 1) { + // are we at left edge + $edges[] = 'left'; + } + if ($x == $xMax) { + // are we at right edge + $edges[] = 'right'; + } + if ($y == 1) { + // are we at top edge? + $edges[] = 'top'; + } + if ($y == $yMax) { + // are we at bottom edge? + $edges[] = 'bottom'; + } + + // start row index for region + $rowStart = ($y == 3) ? + $rangeEnd[1] : $rangeStart[1] + $y - 1; + + // end row index for region + $rowEnd = ($y == 1) ? + $rangeStart[1] : $rangeEnd[1] - $yMax + $y; + + // build range for region + $range = $colStart . $rowStart . ':' . $colEnd . $rowEnd; + + // retrieve relevant style array for region + $regionStyles = $pStyles; + unset($regionStyles['borders']['inside']); + + // what are the inner edges of the region when looking at the selection + $innerEdges = array_diff(array('top', 'right', 'bottom', 'left'), $edges); + + // inner edges that are not touching the region should take the 'inside' border properties if they have been set + foreach ($innerEdges as $innerEdge) { + switch ($innerEdge) { + case 'top': + case 'bottom': + // should pick up 'horizontal' border property if set + if (isset($pStyles['borders']['horizontal'])) { + $regionStyles['borders'][$innerEdge] = $pStyles['borders']['horizontal']; + } else { + unset($regionStyles['borders'][$innerEdge]); + } + break; + case 'left': + case 'right': + // should pick up 'vertical' border property if set + if (isset($pStyles['borders']['vertical'])) { + $regionStyles['borders'][$innerEdge] = $pStyles['borders']['vertical']; + } else { + unset($regionStyles['borders'][$innerEdge]); + } + break; + } + } + + // apply region style to region by calling applyFromArray() in simple mode + $this->getActiveSheet()->getStyle($range)->applyFromArray($regionStyles, false); + } + } + return $this; + } + + // SIMPLE MODE: + // Selection type, inspect + if (preg_match('/^[A-Z]+1:[A-Z]+1048576$/', $pRange)) { + $selectionType = 'COLUMN'; + } elseif (preg_match('/^A[0-9]+:XFD[0-9]+$/', $pRange)) { + $selectionType = 'ROW'; + } else { + $selectionType = 'CELL'; + } + + // First loop through columns, rows, or cells to find out which styles are affected by this operation + switch ($selectionType) { + case 'COLUMN': + $oldXfIndexes = array(); + for ($col = $rangeStart[0]; $col <= $rangeEnd[0]; ++$col) { + $oldXfIndexes[$this->getActiveSheet()->getColumnDimensionByColumn($col)->getXfIndex()] = true; + } + break; + case 'ROW': + $oldXfIndexes = array(); + for ($row = $rangeStart[1]; $row <= $rangeEnd[1]; ++$row) { + if ($this->getActiveSheet()->getRowDimension($row)->getXfIndex() == null) { + $oldXfIndexes[0] = true; // row without explicit style should be formatted based on default style + } else { + $oldXfIndexes[$this->getActiveSheet()->getRowDimension($row)->getXfIndex()] = true; + } + } + break; + case 'CELL': + $oldXfIndexes = array(); + for ($col = $rangeStart[0]; $col <= $rangeEnd[0]; ++$col) { + for ($row = $rangeStart[1]; $row <= $rangeEnd[1]; ++$row) { + $oldXfIndexes[$this->getActiveSheet()->getCellByColumnAndRow($col, $row)->getXfIndex()] = true; + } + } + break; + } + + // clone each of the affected styles, apply the style array, and add the new styles to the workbook + $workbook = $this->getActiveSheet()->getParent(); + foreach ($oldXfIndexes as $oldXfIndex => $dummy) { + $style = $workbook->getCellXfByIndex($oldXfIndex); + $newStyle = clone $style; + $newStyle->applyFromArray($pStyles); + + if ($existingStyle = $workbook->getCellXfByHashCode($newStyle->getHashCode())) { + // there is already such cell Xf in our collection + $newXfIndexes[$oldXfIndex] = $existingStyle->getIndex(); + } else { + // we don't have such a cell Xf, need to add + $workbook->addCellXf($newStyle); + $newXfIndexes[$oldXfIndex] = $newStyle->getIndex(); + } + } + + // Loop through columns, rows, or cells again and update the XF index + switch ($selectionType) { + case 'COLUMN': + for ($col = $rangeStart[0]; $col <= $rangeEnd[0]; ++$col) { + $columnDimension = $this->getActiveSheet()->getColumnDimensionByColumn($col); + $oldXfIndex = $columnDimension->getXfIndex(); + $columnDimension->setXfIndex($newXfIndexes[$oldXfIndex]); + } + break; + + case 'ROW': + for ($row = $rangeStart[1]; $row <= $rangeEnd[1]; ++$row) { + $rowDimension = $this->getActiveSheet()->getRowDimension($row); + $oldXfIndex = $rowDimension->getXfIndex() === null ? + 0 : $rowDimension->getXfIndex(); // row without explicit style should be formatted based on default style + $rowDimension->setXfIndex($newXfIndexes[$oldXfIndex]); + } + break; + + case 'CELL': + for ($col = $rangeStart[0]; $col <= $rangeEnd[0]; ++$col) { + for ($row = $rangeStart[1]; $row <= $rangeEnd[1]; ++$row) { + $cell = $this->getActiveSheet()->getCellByColumnAndRow($col, $row); + $oldXfIndex = $cell->getXfIndex(); + $cell->setXfIndex($newXfIndexes[$oldXfIndex]); + } + } + break; + } + + } else { + // not a supervisor, just apply the style array directly on style object + if (array_key_exists('fill', $pStyles)) { + $this->getFill()->applyFromArray($pStyles['fill']); + } + if (array_key_exists('font', $pStyles)) { + $this->getFont()->applyFromArray($pStyles['font']); + } + if (array_key_exists('borders', $pStyles)) { + $this->getBorders()->applyFromArray($pStyles['borders']); + } + if (array_key_exists('alignment', $pStyles)) { + $this->getAlignment()->applyFromArray($pStyles['alignment']); + } + if (array_key_exists('numberformat', $pStyles)) { + $this->getNumberFormat()->applyFromArray($pStyles['numberformat']); + } + if (array_key_exists('protection', $pStyles)) { + $this->getProtection()->applyFromArray($pStyles['protection']); + } + if (array_key_exists('quotePrefix', $pStyles)) { + $this->quotePrefix = $pStyles['quotePrefix']; + } + } + } else { + throw new PHPExcel_Exception("Invalid style array passed."); + } + return $this; + } + + /** + * Get Fill + * + * @return PHPExcel_Style_Fill + */ + public function getFill() + { + return $this->fill; + } + + /** + * Get Font + * + * @return PHPExcel_Style_Font + */ + public function getFont() + { + return $this->font; + } + + /** + * Set font + * + * @param PHPExcel_Style_Font $font + * @return PHPExcel_Style + */ + public function setFont(PHPExcel_Style_Font $font) + { + $this->font = $font; + return $this; + } + + /** + * Get Borders + * + * @return PHPExcel_Style_Borders + */ + public function getBorders() + { + return $this->borders; + } + + /** + * Get Alignment + * + * @return PHPExcel_Style_Alignment + */ + public function getAlignment() + { + return $this->alignment; + } + + /** + * Get Number Format + * + * @return PHPExcel_Style_NumberFormat + */ + public function getNumberFormat() + { + return $this->numberFormat; + } + + /** + * Get Conditional Styles. Only used on supervisor. + * + * @return PHPExcel_Style_Conditional[] + */ + public function getConditionalStyles() + { + return $this->getActiveSheet()->getConditionalStyles($this->getActiveCell()); + } + + /** + * Set Conditional Styles. Only used on supervisor. + * + * @param PHPExcel_Style_Conditional[] $pValue Array of condtional styles + * @return PHPExcel_Style + */ + public function setConditionalStyles($pValue = null) + { + if (is_array($pValue)) { + $this->getActiveSheet()->setConditionalStyles($this->getSelectedCells(), $pValue); + } + return $this; + } + + /** + * Get Protection + * + * @return PHPExcel_Style_Protection + */ + public function getProtection() + { + return $this->protection; + } + + /** + * Get quote prefix + * + * @return boolean + */ + public function getQuotePrefix() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getQuotePrefix(); + } + return $this->quotePrefix; + } + + /** + * Set quote prefix + * + * @param boolean $pValue + */ + public function setQuotePrefix($pValue) + { + if ($pValue == '') { + $pValue = false; + } + if ($this->isSupervisor) { + $styleArray = array('quotePrefix' => $pValue); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->quotePrefix = (boolean) $pValue; + } + return $this; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + $hashConditionals = ''; + foreach ($this->conditionalStyles as $conditional) { + $hashConditionals .= $conditional->getHashCode(); + } + + return md5( + $this->fill->getHashCode() . + $this->font->getHashCode() . + $this->borders->getHashCode() . + $this->alignment->getHashCode() . + $this->numberFormat->getHashCode() . + $hashConditionals . + $this->protection->getHashCode() . + ($this->quotePrefix ? 't' : 'f') . + __CLASS__ + ); + } + + /** + * Get own index in style collection + * + * @return int + */ + public function getIndex() + { + return $this->index; + } + + /** + * Set own index in style collection + * + * @param int $pValue + */ + public function setIndex($pValue) + { + $this->index = $pValue; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Alignment.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Alignment.php new file mode 100644 index 0000000..bfc4947 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Alignment.php @@ -0,0 +1,464 @@ +<?php +/** + * PHPExcel_Style_Alignment + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Style + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Style_Alignment extends PHPExcel_Style_Supervisor implements PHPExcel_IComparable +{ + /* Horizontal alignment styles */ + const HORIZONTAL_GENERAL = 'general'; + const HORIZONTAL_LEFT = 'left'; + const HORIZONTAL_RIGHT = 'right'; + const HORIZONTAL_CENTER = 'center'; + const HORIZONTAL_CENTER_CONTINUOUS = 'centerContinuous'; + const HORIZONTAL_JUSTIFY = 'justify'; + const HORIZONTAL_FILL = 'fill'; + const HORIZONTAL_DISTRIBUTED = 'distributed'; // Excel2007 only + + /* Vertical alignment styles */ + const VERTICAL_BOTTOM = 'bottom'; + const VERTICAL_TOP = 'top'; + const VERTICAL_CENTER = 'center'; + const VERTICAL_JUSTIFY = 'justify'; + const VERTICAL_DISTRIBUTED = 'distributed'; // Excel2007 only + + /* Read order */ + const READORDER_CONTEXT = 0; + const READORDER_LTR = 1; + const READORDER_RTL = 2; + + /** + * Horizontal alignment + * + * @var string + */ + protected $horizontal = PHPExcel_Style_Alignment::HORIZONTAL_GENERAL; + + /** + * Vertical alignment + * + * @var string + */ + protected $vertical = PHPExcel_Style_Alignment::VERTICAL_BOTTOM; + + /** + * Text rotation + * + * @var integer + */ + protected $textRotation = 0; + + /** + * Wrap text + * + * @var boolean + */ + protected $wrapText = false; + + /** + * Shrink to fit + * + * @var boolean + */ + protected $shrinkToFit = false; + + /** + * Indent - only possible with horizontal alignment left and right + * + * @var integer + */ + protected $indent = 0; + + /** + * Read order + * + * @var integer + */ + protected $readorder = 0; + + /** + * Create a new PHPExcel_Style_Alignment + * + * @param boolean $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + * @param boolean $isConditional Flag indicating if this is a conditional style or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false, $isConditional = false) + { + // Supervisor? + parent::__construct($isSupervisor); + + if ($isConditional) { + $this->horizontal = null; + $this->vertical = null; + $this->textRotation = null; + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor + * + * @return PHPExcel_Style_Alignment + */ + public function getSharedComponent() + { + return $this->parent->getSharedComponent()->getAlignment(); + } + + /** + * Build style array from subcomponents + * + * @param array $array + * @return array + */ + public function getStyleArray($array) + { + return array('alignment' => $array); + } + + /** + * Apply styles from array + * + * <code> + * $objPHPExcel->getActiveSheet()->getStyle('B2')->getAlignment()->applyFromArray( + * array( + * 'horizontal' => PHPExcel_Style_Alignment::HORIZONTAL_CENTER, + * 'vertical' => PHPExcel_Style_Alignment::VERTICAL_CENTER, + * 'rotation' => 0, + * 'wrap' => TRUE + * ) + * ); + * </code> + * + * @param array $pStyles Array containing style information + * @throws PHPExcel_Exception + * @return PHPExcel_Style_Alignment + */ + public function applyFromArray($pStyles = null) + { + if (is_array($pStyles)) { + if ($this->isSupervisor) { + $this->getActiveSheet()->getStyle($this->getSelectedCells()) + ->applyFromArray($this->getStyleArray($pStyles)); + } else { + if (isset($pStyles['horizontal'])) { + $this->setHorizontal($pStyles['horizontal']); + } + if (isset($pStyles['vertical'])) { + $this->setVertical($pStyles['vertical']); + } + if (isset($pStyles['rotation'])) { + $this->setTextRotation($pStyles['rotation']); + } + if (isset($pStyles['wrap'])) { + $this->setWrapText($pStyles['wrap']); + } + if (isset($pStyles['shrinkToFit'])) { + $this->setShrinkToFit($pStyles['shrinkToFit']); + } + if (isset($pStyles['indent'])) { + $this->setIndent($pStyles['indent']); + } + if (isset($pStyles['readorder'])) { + $this->setReadorder($pStyles['readorder']); + } + } + } else { + throw new PHPExcel_Exception("Invalid style array passed."); + } + return $this; + } + + /** + * Get Horizontal + * + * @return string + */ + public function getHorizontal() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHorizontal(); + } + return $this->horizontal; + } + + /** + * Set Horizontal + * + * @param string $pValue + * @return PHPExcel_Style_Alignment + */ + public function setHorizontal($pValue = PHPExcel_Style_Alignment::HORIZONTAL_GENERAL) + { + if ($pValue == '') { + $pValue = PHPExcel_Style_Alignment::HORIZONTAL_GENERAL; + } + + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('horizontal' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->horizontal = $pValue; + } + return $this; + } + + /** + * Get Vertical + * + * @return string + */ + public function getVertical() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getVertical(); + } + return $this->vertical; + } + + /** + * Set Vertical + * + * @param string $pValue + * @return PHPExcel_Style_Alignment + */ + public function setVertical($pValue = PHPExcel_Style_Alignment::VERTICAL_BOTTOM) + { + if ($pValue == '') { + $pValue = PHPExcel_Style_Alignment::VERTICAL_BOTTOM; + } + + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('vertical' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->vertical = $pValue; + } + return $this; + } + + /** + * Get TextRotation + * + * @return int + */ + public function getTextRotation() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getTextRotation(); + } + return $this->textRotation; + } + + /** + * Set TextRotation + * + * @param int $pValue + * @throws PHPExcel_Exception + * @return PHPExcel_Style_Alignment + */ + public function setTextRotation($pValue = 0) + { + // Excel2007 value 255 => PHPExcel value -165 + if ($pValue == 255) { + $pValue = -165; + } + + // Set rotation + if (($pValue >= -90 && $pValue <= 90) || $pValue == -165) { + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('rotation' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->textRotation = $pValue; + } + } else { + throw new PHPExcel_Exception("Text rotation should be a value between -90 and 90."); + } + + return $this; + } + + /** + * Get Wrap Text + * + * @return boolean + */ + public function getWrapText() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getWrapText(); + } + return $this->wrapText; + } + + /** + * Set Wrap Text + * + * @param boolean $pValue + * @return PHPExcel_Style_Alignment + */ + public function setWrapText($pValue = false) + { + if ($pValue == '') { + $pValue = false; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('wrap' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->wrapText = $pValue; + } + return $this; + } + + /** + * Get Shrink to fit + * + * @return boolean + */ + public function getShrinkToFit() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getShrinkToFit(); + } + return $this->shrinkToFit; + } + + /** + * Set Shrink to fit + * + * @param boolean $pValue + * @return PHPExcel_Style_Alignment + */ + public function setShrinkToFit($pValue = false) + { + if ($pValue == '') { + $pValue = false; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('shrinkToFit' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->shrinkToFit = $pValue; + } + return $this; + } + + /** + * Get indent + * + * @return int + */ + public function getIndent() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getIndent(); + } + return $this->indent; + } + + /** + * Set indent + * + * @param int $pValue + * @return PHPExcel_Style_Alignment + */ + public function setIndent($pValue = 0) + { + if ($pValue > 0) { + if ($this->getHorizontal() != self::HORIZONTAL_GENERAL && + $this->getHorizontal() != self::HORIZONTAL_LEFT && + $this->getHorizontal() != self::HORIZONTAL_RIGHT) { + $pValue = 0; // indent not supported + } + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('indent' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->indent = $pValue; + } + return $this; + } + + /** + * Get read order + * + * @return integer + */ + public function getReadorder() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getReadorder(); + } + return $this->readorder; + } + + /** + * Set read order + * + * @param int $pValue + * @return PHPExcel_Style_Alignment + */ + public function setReadorder($pValue = 0) + { + if ($pValue < 0 || $pValue > 2) { + $pValue = 0; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('readorder' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->readorder = $pValue; + } + return $this; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHashCode(); + } + return md5( + $this->horizontal . + $this->vertical . + $this->textRotation . + ($this->wrapText ? 't' : 'f') . + ($this->shrinkToFit ? 't' : 'f') . + $this->indent . + $this->readorder . + __CLASS__ + ); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Border.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Border.php new file mode 100644 index 0000000..55efc50 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Border.php @@ -0,0 +1,282 @@ +<?php + +/** + * PHPExcel_Style_Border + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Style + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Style_Border extends PHPExcel_Style_Supervisor implements PHPExcel_IComparable +{ + /* Border style */ + const BORDER_NONE = 'none'; + const BORDER_DASHDOT = 'dashDot'; + const BORDER_DASHDOTDOT = 'dashDotDot'; + const BORDER_DASHED = 'dashed'; + const BORDER_DOTTED = 'dotted'; + const BORDER_DOUBLE = 'double'; + const BORDER_HAIR = 'hair'; + const BORDER_MEDIUM = 'medium'; + const BORDER_MEDIUMDASHDOT = 'mediumDashDot'; + const BORDER_MEDIUMDASHDOTDOT = 'mediumDashDotDot'; + const BORDER_MEDIUMDASHED = 'mediumDashed'; + const BORDER_SLANTDASHDOT = 'slantDashDot'; + const BORDER_THICK = 'thick'; + const BORDER_THIN = 'thin'; + + /** + * Border style + * + * @var string + */ + protected $borderStyle = PHPExcel_Style_Border::BORDER_NONE; + + /** + * Border color + * + * @var PHPExcel_Style_Color + */ + protected $color; + + /** + * Parent property name + * + * @var string + */ + protected $parentPropertyName; + + /** + * Create a new PHPExcel_Style_Border + * + * @param boolean $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + * @param boolean $isConditional Flag indicating if this is a conditional style or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false, $isConditional = false) + { + // Supervisor? + parent::__construct($isSupervisor); + + // Initialise values + $this->color = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor); + + // bind parent if we are a supervisor + if ($isSupervisor) { + $this->color->bindParent($this, 'color'); + } + } + + /** + * Bind parent. Only used for supervisor + * + * @param PHPExcel_Style_Borders $parent + * @param string $parentPropertyName + * @return PHPExcel_Style_Border + */ + public function bindParent($parent, $parentPropertyName = null) + { + $this->parent = $parent; + $this->parentPropertyName = $parentPropertyName; + return $this; + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor + * + * @return PHPExcel_Style_Border + * @throws PHPExcel_Exception + */ + public function getSharedComponent() + { + switch ($this->parentPropertyName) { + case 'allBorders': + case 'horizontal': + case 'inside': + case 'outline': + case 'vertical': + throw new PHPExcel_Exception('Cannot get shared component for a pseudo-border.'); + break; + case 'bottom': + return $this->parent->getSharedComponent()->getBottom(); + case 'diagonal': + return $this->parent->getSharedComponent()->getDiagonal(); + case 'left': + return $this->parent->getSharedComponent()->getLeft(); + case 'right': + return $this->parent->getSharedComponent()->getRight(); + case 'top': + return $this->parent->getSharedComponent()->getTop(); + } + } + + /** + * Build style array from subcomponents + * + * @param array $array + * @return array + */ + public function getStyleArray($array) + { + switch ($this->parentPropertyName) { + case 'allBorders': + case 'bottom': + case 'diagonal': + case 'horizontal': + case 'inside': + case 'left': + case 'outline': + case 'right': + case 'top': + case 'vertical': + $key = strtolower('vertical'); + break; + } + return $this->parent->getStyleArray(array($key => $array)); + } + + /** + * Apply styles from array + * + * <code> + * $objPHPExcel->getActiveSheet()->getStyle('B2')->getBorders()->getTop()->applyFromArray( + * array( + * 'style' => PHPExcel_Style_Border::BORDER_DASHDOT, + * 'color' => array( + * 'rgb' => '808080' + * ) + * ) + * ); + * </code> + * + * @param array $pStyles Array containing style information + * @throws PHPExcel_Exception + * @return PHPExcel_Style_Border + */ + public function applyFromArray($pStyles = null) + { + if (is_array($pStyles)) { + if ($this->isSupervisor) { + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($this->getStyleArray($pStyles)); + } else { + if (isset($pStyles['style'])) { + $this->setBorderStyle($pStyles['style']); + } + if (isset($pStyles['color'])) { + $this->getColor()->applyFromArray($pStyles['color']); + } + } + } else { + throw new PHPExcel_Exception("Invalid style array passed."); + } + return $this; + } + + /** + * Get Border style + * + * @return string + */ + public function getBorderStyle() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getBorderStyle(); + } + return $this->borderStyle; + } + + /** + * Set Border style + * + * @param string|boolean $pValue + * When passing a boolean, FALSE equates PHPExcel_Style_Border::BORDER_NONE + * and TRUE to PHPExcel_Style_Border::BORDER_MEDIUM + * @return PHPExcel_Style_Border + */ + public function setBorderStyle($pValue = PHPExcel_Style_Border::BORDER_NONE) + { + + if (empty($pValue)) { + $pValue = PHPExcel_Style_Border::BORDER_NONE; + } elseif (is_bool($pValue) && $pValue) { + $pValue = PHPExcel_Style_Border::BORDER_MEDIUM; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('style' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->borderStyle = $pValue; + } + return $this; + } + + /** + * Get Border Color + * + * @return PHPExcel_Style_Color + */ + public function getColor() + { + return $this->color; + } + + /** + * Set Border Color + * + * @param PHPExcel_Style_Color $pValue + * @throws PHPExcel_Exception + * @return PHPExcel_Style_Border + */ + public function setColor(PHPExcel_Style_Color $pValue = null) + { + // make sure parameter is a real color and not a supervisor + $color = $pValue->getIsSupervisor() ? $pValue->getSharedComponent() : $pValue; + + if ($this->isSupervisor) { + $styleArray = $this->getColor()->getStyleArray(array('argb' => $color->getARGB())); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->color = $color; + } + return $this; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHashCode(); + } + return md5( + $this->borderStyle . + $this->color->getHashCode() . + __CLASS__ + ); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Borders.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Borders.php new file mode 100644 index 0000000..27c40a4 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Borders.php @@ -0,0 +1,429 @@ +<?php + +/** + * PHPExcel_Style_Borders + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Style + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Style_Borders extends PHPExcel_Style_Supervisor implements PHPExcel_IComparable +{ + /* Diagonal directions */ + const DIAGONAL_NONE = 0; + const DIAGONAL_UP = 1; + const DIAGONAL_DOWN = 2; + const DIAGONAL_BOTH = 3; + + /** + * Left + * + * @var PHPExcel_Style_Border + */ + protected $left; + + /** + * Right + * + * @var PHPExcel_Style_Border + */ + protected $right; + + /** + * Top + * + * @var PHPExcel_Style_Border + */ + protected $top; + + /** + * Bottom + * + * @var PHPExcel_Style_Border + */ + protected $bottom; + + /** + * Diagonal + * + * @var PHPExcel_Style_Border + */ + protected $diagonal; + + /** + * DiagonalDirection + * + * @var int + */ + protected $diagonalDirection; + + /** + * All borders psedo-border. Only applies to supervisor. + * + * @var PHPExcel_Style_Border + */ + protected $allBorders; + + /** + * Outline psedo-border. Only applies to supervisor. + * + * @var PHPExcel_Style_Border + */ + protected $outline; + + /** + * Inside psedo-border. Only applies to supervisor. + * + * @var PHPExcel_Style_Border + */ + protected $inside; + + /** + * Vertical pseudo-border. Only applies to supervisor. + * + * @var PHPExcel_Style_Border + */ + protected $vertical; + + /** + * Horizontal pseudo-border. Only applies to supervisor. + * + * @var PHPExcel_Style_Border + */ + protected $horizontal; + + /** + * Create a new PHPExcel_Style_Borders + * + * @param boolean $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + * @param boolean $isConditional Flag indicating if this is a conditional style or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false, $isConditional = false) + { + // Supervisor? + parent::__construct($isSupervisor); + + // Initialise values + $this->left = new PHPExcel_Style_Border($isSupervisor, $isConditional); + $this->right = new PHPExcel_Style_Border($isSupervisor, $isConditional); + $this->top = new PHPExcel_Style_Border($isSupervisor, $isConditional); + $this->bottom = new PHPExcel_Style_Border($isSupervisor, $isConditional); + $this->diagonal = new PHPExcel_Style_Border($isSupervisor, $isConditional); + $this->diagonalDirection = PHPExcel_Style_Borders::DIAGONAL_NONE; + + // Specially for supervisor + if ($isSupervisor) { + // Initialize pseudo-borders + $this->allBorders = new PHPExcel_Style_Border(true); + $this->outline = new PHPExcel_Style_Border(true); + $this->inside = new PHPExcel_Style_Border(true); + $this->vertical = new PHPExcel_Style_Border(true); + $this->horizontal = new PHPExcel_Style_Border(true); + + // bind parent if we are a supervisor + $this->left->bindParent($this, 'left'); + $this->right->bindParent($this, 'right'); + $this->top->bindParent($this, 'top'); + $this->bottom->bindParent($this, 'bottom'); + $this->diagonal->bindParent($this, 'diagonal'); + $this->allBorders->bindParent($this, 'allBorders'); + $this->outline->bindParent($this, 'outline'); + $this->inside->bindParent($this, 'inside'); + $this->vertical->bindParent($this, 'vertical'); + $this->horizontal->bindParent($this, 'horizontal'); + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor + * + * @return PHPExcel_Style_Borders + */ + public function getSharedComponent() + { + return $this->parent->getSharedComponent()->getBorders(); + } + + /** + * Build style array from subcomponents + * + * @param array $array + * @return array + */ + public function getStyleArray($array) + { + return array('borders' => $array); + } + + /** + * Apply styles from array + * + * <code> + * $objPHPExcel->getActiveSheet()->getStyle('B2')->getBorders()->applyFromArray( + * array( + * 'bottom' => array( + * 'style' => PHPExcel_Style_Border::BORDER_DASHDOT, + * 'color' => array( + * 'rgb' => '808080' + * ) + * ), + * 'top' => array( + * 'style' => PHPExcel_Style_Border::BORDER_DASHDOT, + * 'color' => array( + * 'rgb' => '808080' + * ) + * ) + * ) + * ); + * </code> + * <code> + * $objPHPExcel->getActiveSheet()->getStyle('B2')->getBorders()->applyFromArray( + * array( + * 'allborders' => array( + * 'style' => PHPExcel_Style_Border::BORDER_DASHDOT, + * 'color' => array( + * 'rgb' => '808080' + * ) + * ) + * ) + * ); + * </code> + * + * @param array $pStyles Array containing style information + * @throws PHPExcel_Exception + * @return PHPExcel_Style_Borders + */ + public function applyFromArray($pStyles = null) + { + if (is_array($pStyles)) { + if ($this->isSupervisor) { + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($this->getStyleArray($pStyles)); + } else { + if (array_key_exists('left', $pStyles)) { + $this->getLeft()->applyFromArray($pStyles['left']); + } + if (array_key_exists('right', $pStyles)) { + $this->getRight()->applyFromArray($pStyles['right']); + } + if (array_key_exists('top', $pStyles)) { + $this->getTop()->applyFromArray($pStyles['top']); + } + if (array_key_exists('bottom', $pStyles)) { + $this->getBottom()->applyFromArray($pStyles['bottom']); + } + if (array_key_exists('diagonal', $pStyles)) { + $this->getDiagonal()->applyFromArray($pStyles['diagonal']); + } + if (array_key_exists('diagonaldirection', $pStyles)) { + $this->setDiagonalDirection($pStyles['diagonaldirection']); + } + if (array_key_exists('allborders', $pStyles)) { + $this->getLeft()->applyFromArray($pStyles['allborders']); + $this->getRight()->applyFromArray($pStyles['allborders']); + $this->getTop()->applyFromArray($pStyles['allborders']); + $this->getBottom()->applyFromArray($pStyles['allborders']); + } + } + } else { + throw new PHPExcel_Exception("Invalid style array passed."); + } + return $this; + } + + /** + * Get Left + * + * @return PHPExcel_Style_Border + */ + public function getLeft() + { + return $this->left; + } + + /** + * Get Right + * + * @return PHPExcel_Style_Border + */ + public function getRight() + { + return $this->right; + } + + /** + * Get Top + * + * @return PHPExcel_Style_Border + */ + public function getTop() + { + return $this->top; + } + + /** + * Get Bottom + * + * @return PHPExcel_Style_Border + */ + public function getBottom() + { + return $this->bottom; + } + + /** + * Get Diagonal + * + * @return PHPExcel_Style_Border + */ + public function getDiagonal() + { + return $this->diagonal; + } + + /** + * Get AllBorders (pseudo-border). Only applies to supervisor. + * + * @return PHPExcel_Style_Border + * @throws PHPExcel_Exception + */ + public function getAllBorders() + { + if (!$this->isSupervisor) { + throw new PHPExcel_Exception('Can only get pseudo-border for supervisor.'); + } + return $this->allBorders; + } + + /** + * Get Outline (pseudo-border). Only applies to supervisor. + * + * @return boolean + * @throws PHPExcel_Exception + */ + public function getOutline() + { + if (!$this->isSupervisor) { + throw new PHPExcel_Exception('Can only get pseudo-border for supervisor.'); + } + return $this->outline; + } + + /** + * Get Inside (pseudo-border). Only applies to supervisor. + * + * @return boolean + * @throws PHPExcel_Exception + */ + public function getInside() + { + if (!$this->isSupervisor) { + throw new PHPExcel_Exception('Can only get pseudo-border for supervisor.'); + } + return $this->inside; + } + + /** + * Get Vertical (pseudo-border). Only applies to supervisor. + * + * @return PHPExcel_Style_Border + * @throws PHPExcel_Exception + */ + public function getVertical() + { + if (!$this->isSupervisor) { + throw new PHPExcel_Exception('Can only get pseudo-border for supervisor.'); + } + return $this->vertical; + } + + /** + * Get Horizontal (pseudo-border). Only applies to supervisor. + * + * @return PHPExcel_Style_Border + * @throws PHPExcel_Exception + */ + public function getHorizontal() + { + if (!$this->isSupervisor) { + throw new PHPExcel_Exception('Can only get pseudo-border for supervisor.'); + } + return $this->horizontal; + } + + /** + * Get DiagonalDirection + * + * @return int + */ + public function getDiagonalDirection() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getDiagonalDirection(); + } + return $this->diagonalDirection; + } + + /** + * Set DiagonalDirection + * + * @param int $pValue + * @return PHPExcel_Style_Borders + */ + public function setDiagonalDirection($pValue = PHPExcel_Style_Borders::DIAGONAL_NONE) + { + if ($pValue == '') { + $pValue = PHPExcel_Style_Borders::DIAGONAL_NONE; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('diagonaldirection' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->diagonalDirection = $pValue; + } + return $this; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHashcode(); + } + return md5( + $this->getLeft()->getHashCode() . + $this->getRight()->getHashCode() . + $this->getTop()->getHashCode() . + $this->getBottom()->getHashCode() . + $this->getDiagonal()->getHashCode() . + $this->getDiagonalDirection() . + __CLASS__ + ); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Color.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Color.php new file mode 100644 index 0000000..9c7790f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Color.php @@ -0,0 +1,443 @@ +<?php + +/** + * PHPExcel_Style_Color + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Style + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Style_Color extends PHPExcel_Style_Supervisor implements PHPExcel_IComparable +{ + /* Colors */ + const COLOR_BLACK = 'FF000000'; + const COLOR_WHITE = 'FFFFFFFF'; + const COLOR_RED = 'FFFF0000'; + const COLOR_DARKRED = 'FF800000'; + const COLOR_BLUE = 'FF0000FF'; + const COLOR_DARKBLUE = 'FF000080'; + const COLOR_GREEN = 'FF00FF00'; + const COLOR_DARKGREEN = 'FF008000'; + const COLOR_YELLOW = 'FFFFFF00'; + const COLOR_DARKYELLOW = 'FF808000'; + + /** + * Indexed colors array + * + * @var array + */ + protected static $indexedColors; + + /** + * ARGB - Alpha RGB + * + * @var string + */ + protected $argb = null; + + /** + * Parent property name + * + * @var string + */ + protected $parentPropertyName; + + + /** + * Create a new PHPExcel_Style_Color + * + * @param string $pARGB ARGB value for the colour + * @param boolean $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + * @param boolean $isConditional Flag indicating if this is a conditional style or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($pARGB = PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor = false, $isConditional = false) + { + // Supervisor? + parent::__construct($isSupervisor); + + // Initialise values + if (!$isConditional) { + $this->argb = $pARGB; + } + } + + /** + * Bind parent. Only used for supervisor + * + * @param mixed $parent + * @param string $parentPropertyName + * @return PHPExcel_Style_Color + */ + public function bindParent($parent, $parentPropertyName = null) + { + $this->parent = $parent; + $this->parentPropertyName = $parentPropertyName; + return $this; + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor + * + * @return PHPExcel_Style_Color + */ + public function getSharedComponent() + { + switch ($this->parentPropertyName) { + case 'endColor': + return $this->parent->getSharedComponent()->getEndColor(); + case 'color': + return $this->parent->getSharedComponent()->getColor(); + case 'startColor': + return $this->parent->getSharedComponent()->getStartColor(); + } + } + + /** + * Build style array from subcomponents + * + * @param array $array + * @return array + */ + public function getStyleArray($array) + { + switch ($this->parentPropertyName) { + case 'endColor': + $key = 'endcolor'; + break; + case 'color': + $key = 'color'; + break; + case 'startColor': + $key = 'startcolor'; + break; + + } + return $this->parent->getStyleArray(array($key => $array)); + } + + /** + * Apply styles from array + * + * <code> + * $objPHPExcel->getActiveSheet()->getStyle('B2')->getFont()->getColor()->applyFromArray( array('rgb' => '808080') ); + * </code> + * + * @param array $pStyles Array containing style information + * @throws PHPExcel_Exception + * @return PHPExcel_Style_Color + */ + public function applyFromArray($pStyles = null) + { + if (is_array($pStyles)) { + if ($this->isSupervisor) { + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($this->getStyleArray($pStyles)); + } else { + if (array_key_exists('rgb', $pStyles)) { + $this->setRGB($pStyles['rgb']); + } + if (array_key_exists('argb', $pStyles)) { + $this->setARGB($pStyles['argb']); + } + } + } else { + throw new PHPExcel_Exception("Invalid style array passed."); + } + return $this; + } + + /** + * Get ARGB + * + * @return string + */ + public function getARGB() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getARGB(); + } + return $this->argb; + } + + /** + * Set ARGB + * + * @param string $pValue + * @return PHPExcel_Style_Color + */ + public function setARGB($pValue = PHPExcel_Style_Color::COLOR_BLACK) + { + if ($pValue == '') { + $pValue = PHPExcel_Style_Color::COLOR_BLACK; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('argb' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->argb = $pValue; + } + return $this; + } + + /** + * Get RGB + * + * @return string + */ + public function getRGB() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getRGB(); + } + return substr($this->argb, 2); + } + + /** + * Set RGB + * + * @param string $pValue RGB value + * @return PHPExcel_Style_Color + */ + public function setRGB($pValue = '000000') + { + if ($pValue == '') { + $pValue = '000000'; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('argb' => 'FF' . $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->argb = 'FF' . $pValue; + } + return $this; + } + + /** + * Get a specified colour component of an RGB value + * + * @private + * @param string $RGB The colour as an RGB value (e.g. FF00CCCC or CCDDEE + * @param int $offset Position within the RGB value to extract + * @param boolean $hex Flag indicating whether the component should be returned as a hex or a + * decimal value + * @return string The extracted colour component + */ + private static function getColourComponent($RGB, $offset, $hex = true) + { + $colour = substr($RGB, $offset, 2); + if (!$hex) { + $colour = hexdec($colour); + } + return $colour; + } + + /** + * Get the red colour component of an RGB value + * + * @param string $RGB The colour as an RGB value (e.g. FF00CCCC or CCDDEE + * @param boolean $hex Flag indicating whether the component should be returned as a hex or a + * decimal value + * @return string The red colour component + */ + public static function getRed($RGB, $hex = true) + { + return self::getColourComponent($RGB, strlen($RGB) - 6, $hex); + } + + /** + * Get the green colour component of an RGB value + * + * @param string $RGB The colour as an RGB value (e.g. FF00CCCC or CCDDEE + * @param boolean $hex Flag indicating whether the component should be returned as a hex or a + * decimal value + * @return string The green colour component + */ + public static function getGreen($RGB, $hex = true) + { + return self::getColourComponent($RGB, strlen($RGB) - 4, $hex); + } + + /** + * Get the blue colour component of an RGB value + * + * @param string $RGB The colour as an RGB value (e.g. FF00CCCC or CCDDEE + * @param boolean $hex Flag indicating whether the component should be returned as a hex or a + * decimal value + * @return string The blue colour component + */ + public static function getBlue($RGB, $hex = true) + { + return self::getColourComponent($RGB, strlen($RGB) - 2, $hex); + } + + /** + * Adjust the brightness of a color + * + * @param string $hex The colour as an RGBA or RGB value (e.g. FF00CCCC or CCDDEE) + * @param float $adjustPercentage The percentage by which to adjust the colour as a float from -1 to 1 + * @return string The adjusted colour as an RGBA or RGB value (e.g. FF00CCCC or CCDDEE) + */ + public static function changeBrightness($hex, $adjustPercentage) + { + $rgba = (strlen($hex) == 8); + + $red = self::getRed($hex, false); + $green = self::getGreen($hex, false); + $blue = self::getBlue($hex, false); + if ($adjustPercentage > 0) { + $red += (255 - $red) * $adjustPercentage; + $green += (255 - $green) * $adjustPercentage; + $blue += (255 - $blue) * $adjustPercentage; + } else { + $red += $red * $adjustPercentage; + $green += $green * $adjustPercentage; + $blue += $blue * $adjustPercentage; + } + + if ($red < 0) { + $red = 0; + } elseif ($red > 255) { + $red = 255; + } + if ($green < 0) { + $green = 0; + } elseif ($green > 255) { + $green = 255; + } + if ($blue < 0) { + $blue = 0; + } elseif ($blue > 255) { + $blue = 255; + } + + $rgb = strtoupper( + str_pad(dechex($red), 2, '0', 0) . + str_pad(dechex($green), 2, '0', 0) . + str_pad(dechex($blue), 2, '0', 0) + ); + return (($rgba) ? 'FF' : '') . $rgb; + } + + /** + * Get indexed color + * + * @param int $pIndex Index entry point into the colour array + * @param boolean $background Flag to indicate whether default background or foreground colour + * should be returned if the indexed colour doesn't exist + * @return PHPExcel_Style_Color + */ + public static function indexedColor($pIndex, $background = false) + { + // Clean parameter + $pIndex = intval($pIndex); + + // Indexed colors + if (is_null(self::$indexedColors)) { + self::$indexedColors = array( + 1 => 'FF000000', // System Colour #1 - Black + 2 => 'FFFFFFFF', // System Colour #2 - White + 3 => 'FFFF0000', // System Colour #3 - Red + 4 => 'FF00FF00', // System Colour #4 - Green + 5 => 'FF0000FF', // System Colour #5 - Blue + 6 => 'FFFFFF00', // System Colour #6 - Yellow + 7 => 'FFFF00FF', // System Colour #7- Magenta + 8 => 'FF00FFFF', // System Colour #8- Cyan + 9 => 'FF800000', // Standard Colour #9 + 10 => 'FF008000', // Standard Colour #10 + 11 => 'FF000080', // Standard Colour #11 + 12 => 'FF808000', // Standard Colour #12 + 13 => 'FF800080', // Standard Colour #13 + 14 => 'FF008080', // Standard Colour #14 + 15 => 'FFC0C0C0', // Standard Colour #15 + 16 => 'FF808080', // Standard Colour #16 + 17 => 'FF9999FF', // Chart Fill Colour #17 + 18 => 'FF993366', // Chart Fill Colour #18 + 19 => 'FFFFFFCC', // Chart Fill Colour #19 + 20 => 'FFCCFFFF', // Chart Fill Colour #20 + 21 => 'FF660066', // Chart Fill Colour #21 + 22 => 'FFFF8080', // Chart Fill Colour #22 + 23 => 'FF0066CC', // Chart Fill Colour #23 + 24 => 'FFCCCCFF', // Chart Fill Colour #24 + 25 => 'FF000080', // Chart Line Colour #25 + 26 => 'FFFF00FF', // Chart Line Colour #26 + 27 => 'FFFFFF00', // Chart Line Colour #27 + 28 => 'FF00FFFF', // Chart Line Colour #28 + 29 => 'FF800080', // Chart Line Colour #29 + 30 => 'FF800000', // Chart Line Colour #30 + 31 => 'FF008080', // Chart Line Colour #31 + 32 => 'FF0000FF', // Chart Line Colour #32 + 33 => 'FF00CCFF', // Standard Colour #33 + 34 => 'FFCCFFFF', // Standard Colour #34 + 35 => 'FFCCFFCC', // Standard Colour #35 + 36 => 'FFFFFF99', // Standard Colour #36 + 37 => 'FF99CCFF', // Standard Colour #37 + 38 => 'FFFF99CC', // Standard Colour #38 + 39 => 'FFCC99FF', // Standard Colour #39 + 40 => 'FFFFCC99', // Standard Colour #40 + 41 => 'FF3366FF', // Standard Colour #41 + 42 => 'FF33CCCC', // Standard Colour #42 + 43 => 'FF99CC00', // Standard Colour #43 + 44 => 'FFFFCC00', // Standard Colour #44 + 45 => 'FFFF9900', // Standard Colour #45 + 46 => 'FFFF6600', // Standard Colour #46 + 47 => 'FF666699', // Standard Colour #47 + 48 => 'FF969696', // Standard Colour #48 + 49 => 'FF003366', // Standard Colour #49 + 50 => 'FF339966', // Standard Colour #50 + 51 => 'FF003300', // Standard Colour #51 + 52 => 'FF333300', // Standard Colour #52 + 53 => 'FF993300', // Standard Colour #53 + 54 => 'FF993366', // Standard Colour #54 + 55 => 'FF333399', // Standard Colour #55 + 56 => 'FF333333' // Standard Colour #56 + ); + } + + if (array_key_exists($pIndex, self::$indexedColors)) { + return new PHPExcel_Style_Color(self::$indexedColors[$pIndex]); + } + + if ($background) { + return new PHPExcel_Style_Color(self::COLOR_WHITE); + } + return new PHPExcel_Style_Color(self::COLOR_BLACK); + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHashCode(); + } + return md5( + $this->argb . + __CLASS__ + ); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Conditional.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Conditional.php new file mode 100644 index 0000000..331362b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Conditional.php @@ -0,0 +1,293 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Style + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + + +/** + * PHPExcel_Style_Conditional + * + * @category PHPExcel + * @package PHPExcel_Style + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + */ +class PHPExcel_Style_Conditional implements PHPExcel_IComparable +{ + /* Condition types */ + const CONDITION_NONE = 'none'; + const CONDITION_CELLIS = 'cellIs'; + const CONDITION_CONTAINSTEXT = 'containsText'; + const CONDITION_EXPRESSION = 'expression'; + + /* Operator types */ + const OPERATOR_NONE = ''; + const OPERATOR_BEGINSWITH = 'beginsWith'; + const OPERATOR_ENDSWITH = 'endsWith'; + const OPERATOR_EQUAL = 'equal'; + const OPERATOR_GREATERTHAN = 'greaterThan'; + const OPERATOR_GREATERTHANOREQUAL = 'greaterThanOrEqual'; + const OPERATOR_LESSTHAN = 'lessThan'; + const OPERATOR_LESSTHANOREQUAL = 'lessThanOrEqual'; + const OPERATOR_NOTEQUAL = 'notEqual'; + const OPERATOR_CONTAINSTEXT = 'containsText'; + const OPERATOR_NOTCONTAINS = 'notContains'; + const OPERATOR_BETWEEN = 'between'; + + /** + * Condition type + * + * @var int + */ + private $conditionType; + + /** + * Operator type + * + * @var int + */ + private $operatorType; + + /** + * Text + * + * @var string + */ + private $text; + + /** + * Condition + * + * @var string[] + */ + private $condition = array(); + + /** + * Style + * + * @var PHPExcel_Style + */ + private $style; + + /** + * Create a new PHPExcel_Style_Conditional + */ + public function __construct() + { + // Initialise values + $this->conditionType = PHPExcel_Style_Conditional::CONDITION_NONE; + $this->operatorType = PHPExcel_Style_Conditional::OPERATOR_NONE; + $this->text = null; + $this->condition = array(); + $this->style = new PHPExcel_Style(false, true); + } + + /** + * Get Condition type + * + * @return string + */ + public function getConditionType() + { + return $this->conditionType; + } + + /** + * Set Condition type + * + * @param string $pValue PHPExcel_Style_Conditional condition type + * @return PHPExcel_Style_Conditional + */ + public function setConditionType($pValue = PHPExcel_Style_Conditional::CONDITION_NONE) + { + $this->conditionType = $pValue; + return $this; + } + + /** + * Get Operator type + * + * @return string + */ + public function getOperatorType() + { + return $this->operatorType; + } + + /** + * Set Operator type + * + * @param string $pValue PHPExcel_Style_Conditional operator type + * @return PHPExcel_Style_Conditional + */ + public function setOperatorType($pValue = PHPExcel_Style_Conditional::OPERATOR_NONE) + { + $this->operatorType = $pValue; + return $this; + } + + /** + * Get text + * + * @return string + */ + public function getText() + { + return $this->text; + } + + /** + * Set text + * + * @param string $value + * @return PHPExcel_Style_Conditional + */ + public function setText($value = null) + { + $this->text = $value; + return $this; + } + + /** + * Get Condition + * + * @deprecated Deprecated, use getConditions instead + * @return string + */ + public function getCondition() + { + if (isset($this->condition[0])) { + return $this->condition[0]; + } + + return ''; + } + + /** + * Set Condition + * + * @deprecated Deprecated, use setConditions instead + * @param string $pValue Condition + * @return PHPExcel_Style_Conditional + */ + public function setCondition($pValue = '') + { + if (!is_array($pValue)) { + $pValue = array($pValue); + } + + return $this->setConditions($pValue); + } + + /** + * Get Conditions + * + * @return string[] + */ + public function getConditions() + { + return $this->condition; + } + + /** + * Set Conditions + * + * @param string[] $pValue Condition + * @return PHPExcel_Style_Conditional + */ + public function setConditions($pValue) + { + if (!is_array($pValue)) { + $pValue = array($pValue); + } + $this->condition = $pValue; + return $this; + } + + /** + * Add Condition + * + * @param string $pValue Condition + * @return PHPExcel_Style_Conditional + */ + public function addCondition($pValue = '') + { + $this->condition[] = $pValue; + return $this; + } + + /** + * Get Style + * + * @return PHPExcel_Style + */ + public function getStyle() + { + return $this->style; + } + + /** + * Set Style + * + * @param PHPExcel_Style $pValue + * @throws PHPExcel_Exception + * @return PHPExcel_Style_Conditional + */ + public function setStyle(PHPExcel_Style $pValue = null) + { + $this->style = $pValue; + return $this; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->conditionType . + $this->operatorType . + implode(';', $this->condition) . + $this->style->getHashCode() . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Fill.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Fill.php new file mode 100644 index 0000000..26343ff --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Fill.php @@ -0,0 +1,322 @@ +<?php + +/** + * PHPExcel_Style_Fill + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Style + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Style_Fill extends PHPExcel_Style_Supervisor implements PHPExcel_IComparable +{ + /* Fill types */ + const FILL_NONE = 'none'; + const FILL_SOLID = 'solid'; + const FILL_GRADIENT_LINEAR = 'linear'; + const FILL_GRADIENT_PATH = 'path'; + const FILL_PATTERN_DARKDOWN = 'darkDown'; + const FILL_PATTERN_DARKGRAY = 'darkGray'; + const FILL_PATTERN_DARKGRID = 'darkGrid'; + const FILL_PATTERN_DARKHORIZONTAL = 'darkHorizontal'; + const FILL_PATTERN_DARKTRELLIS = 'darkTrellis'; + const FILL_PATTERN_DARKUP = 'darkUp'; + const FILL_PATTERN_DARKVERTICAL = 'darkVertical'; + const FILL_PATTERN_GRAY0625 = 'gray0625'; + const FILL_PATTERN_GRAY125 = 'gray125'; + const FILL_PATTERN_LIGHTDOWN = 'lightDown'; + const FILL_PATTERN_LIGHTGRAY = 'lightGray'; + const FILL_PATTERN_LIGHTGRID = 'lightGrid'; + const FILL_PATTERN_LIGHTHORIZONTAL = 'lightHorizontal'; + const FILL_PATTERN_LIGHTTRELLIS = 'lightTrellis'; + const FILL_PATTERN_LIGHTUP = 'lightUp'; + const FILL_PATTERN_LIGHTVERTICAL = 'lightVertical'; + const FILL_PATTERN_MEDIUMGRAY = 'mediumGray'; + + /** + * Fill type + * + * @var string + */ + protected $fillType = PHPExcel_Style_Fill::FILL_NONE; + + /** + * Rotation + * + * @var double + */ + protected $rotation = 0; + + /** + * Start color + * + * @var PHPExcel_Style_Color + */ + protected $startColor; + + /** + * End color + * + * @var PHPExcel_Style_Color + */ + protected $endColor; + + /** + * Create a new PHPExcel_Style_Fill + * + * @param boolean $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + * @param boolean $isConditional Flag indicating if this is a conditional style or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false, $isConditional = false) + { + // Supervisor? + parent::__construct($isSupervisor); + + // Initialise values + if ($isConditional) { + $this->fillType = null; + } + $this->startColor = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_WHITE, $isSupervisor, $isConditional); + $this->endColor = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor, $isConditional); + + // bind parent if we are a supervisor + if ($isSupervisor) { + $this->startColor->bindParent($this, 'startColor'); + $this->endColor->bindParent($this, 'endColor'); + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor + * + * @return PHPExcel_Style_Fill + */ + public function getSharedComponent() + { + return $this->parent->getSharedComponent()->getFill(); + } + + /** + * Build style array from subcomponents + * + * @param array $array + * @return array + */ + public function getStyleArray($array) + { + return array('fill' => $array); + } + + /** + * Apply styles from array + * + * <code> + * $objPHPExcel->getActiveSheet()->getStyle('B2')->getFill()->applyFromArray( + * array( + * 'type' => PHPExcel_Style_Fill::FILL_GRADIENT_LINEAR, + * 'rotation' => 0, + * 'startcolor' => array( + * 'rgb' => '000000' + * ), + * 'endcolor' => array( + * 'argb' => 'FFFFFFFF' + * ) + * ) + * ); + * </code> + * + * @param array $pStyles Array containing style information + * @throws PHPExcel_Exception + * @return PHPExcel_Style_Fill + */ + public function applyFromArray($pStyles = null) + { + if (is_array($pStyles)) { + if ($this->isSupervisor) { + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($this->getStyleArray($pStyles)); + } else { + if (array_key_exists('type', $pStyles)) { + $this->setFillType($pStyles['type']); + } + if (array_key_exists('rotation', $pStyles)) { + $this->setRotation($pStyles['rotation']); + } + if (array_key_exists('startcolor', $pStyles)) { + $this->getStartColor()->applyFromArray($pStyles['startcolor']); + } + if (array_key_exists('endcolor', $pStyles)) { + $this->getEndColor()->applyFromArray($pStyles['endcolor']); + } + if (array_key_exists('color', $pStyles)) { + $this->getStartColor()->applyFromArray($pStyles['color']); + } + } + } else { + throw new PHPExcel_Exception("Invalid style array passed."); + } + return $this; + } + + /** + * Get Fill Type + * + * @return string + */ + public function getFillType() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getFillType(); + } + return $this->fillType; + } + + /** + * Set Fill Type + * + * @param string $pValue PHPExcel_Style_Fill fill type + * @return PHPExcel_Style_Fill + */ + public function setFillType($pValue = PHPExcel_Style_Fill::FILL_NONE) + { + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('type' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->fillType = $pValue; + } + return $this; + } + + /** + * Get Rotation + * + * @return double + */ + public function getRotation() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getRotation(); + } + return $this->rotation; + } + + /** + * Set Rotation + * + * @param double $pValue + * @return PHPExcel_Style_Fill + */ + public function setRotation($pValue = 0) + { + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('rotation' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->rotation = $pValue; + } + return $this; + } + + /** + * Get Start Color + * + * @return PHPExcel_Style_Color + */ + public function getStartColor() + { + return $this->startColor; + } + + /** + * Set Start Color + * + * @param PHPExcel_Style_Color $pValue + * @throws PHPExcel_Exception + * @return PHPExcel_Style_Fill + */ + public function setStartColor(PHPExcel_Style_Color $pValue = null) + { + // make sure parameter is a real color and not a supervisor + $color = $pValue->getIsSupervisor() ? $pValue->getSharedComponent() : $pValue; + + if ($this->isSupervisor) { + $styleArray = $this->getStartColor()->getStyleArray(array('argb' => $color->getARGB())); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->startColor = $color; + } + return $this; + } + + /** + * Get End Color + * + * @return PHPExcel_Style_Color + */ + public function getEndColor() + { + return $this->endColor; + } + + /** + * Set End Color + * + * @param PHPExcel_Style_Color $pValue + * @throws PHPExcel_Exception + * @return PHPExcel_Style_Fill + */ + public function setEndColor(PHPExcel_Style_Color $pValue = null) + { + // make sure parameter is a real color and not a supervisor + $color = $pValue->getIsSupervisor() ? $pValue->getSharedComponent() : $pValue; + + if ($this->isSupervisor) { + $styleArray = $this->getEndColor()->getStyleArray(array('argb' => $color->getARGB())); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->endColor = $color; + } + return $this; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHashCode(); + } + return md5( + $this->getFillType() . + $this->getRotation() . + $this->getStartColor()->getHashCode() . + $this->getEndColor()->getHashCode() . + __CLASS__ + ); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Font.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Font.php new file mode 100644 index 0000000..9566e1d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Font.php @@ -0,0 +1,543 @@ +<?php + +/** + * PHPExcel_Style_Font + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Style + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Style_Font extends PHPExcel_Style_Supervisor implements PHPExcel_IComparable +{ + /* Underline types */ + const UNDERLINE_NONE = 'none'; + const UNDERLINE_DOUBLE = 'double'; + const UNDERLINE_DOUBLEACCOUNTING = 'doubleAccounting'; + const UNDERLINE_SINGLE = 'single'; + const UNDERLINE_SINGLEACCOUNTING = 'singleAccounting'; + + /** + * Font Name + * + * @var string + */ + protected $name = 'Calibri'; + + /** + * Font Size + * + * @var float + */ + protected $size = 11; + + /** + * Bold + * + * @var boolean + */ + protected $bold = false; + + /** + * Italic + * + * @var boolean + */ + protected $italic = false; + + /** + * Superscript + * + * @var boolean + */ + protected $superScript = false; + + /** + * Subscript + * + * @var boolean + */ + protected $subScript = false; + + /** + * Underline + * + * @var string + */ + protected $underline = self::UNDERLINE_NONE; + + /** + * Strikethrough + * + * @var boolean + */ + protected $strikethrough = false; + + /** + * Foreground color + * + * @var PHPExcel_Style_Color + */ + protected $color; + + /** + * Create a new PHPExcel_Style_Font + * + * @param boolean $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + * @param boolean $isConditional Flag indicating if this is a conditional style or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false, $isConditional = false) + { + // Supervisor? + parent::__construct($isSupervisor); + + // Initialise values + if ($isConditional) { + $this->name = null; + $this->size = null; + $this->bold = null; + $this->italic = null; + $this->superScript = null; + $this->subScript = null; + $this->underline = null; + $this->strikethrough = null; + $this->color = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor, $isConditional); + } else { + $this->color = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor); + } + // bind parent if we are a supervisor + if ($isSupervisor) { + $this->color->bindParent($this, 'color'); + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor + * + * @return PHPExcel_Style_Font + */ + public function getSharedComponent() + { + return $this->parent->getSharedComponent()->getFont(); + } + + /** + * Build style array from subcomponents + * + * @param array $array + * @return array + */ + public function getStyleArray($array) + { + return array('font' => $array); + } + + /** + * Apply styles from array + * + * <code> + * $objPHPExcel->getActiveSheet()->getStyle('B2')->getFont()->applyFromArray( + * array( + * 'name' => 'Arial', + * 'bold' => TRUE, + * 'italic' => FALSE, + * 'underline' => PHPExcel_Style_Font::UNDERLINE_DOUBLE, + * 'strike' => FALSE, + * 'color' => array( + * 'rgb' => '808080' + * ) + * ) + * ); + * </code> + * + * @param array $pStyles Array containing style information + * @throws PHPExcel_Exception + * @return PHPExcel_Style_Font + */ + public function applyFromArray($pStyles = null) + { + if (is_array($pStyles)) { + if ($this->isSupervisor) { + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($this->getStyleArray($pStyles)); + } else { + if (array_key_exists('name', $pStyles)) { + $this->setName($pStyles['name']); + } + if (array_key_exists('bold', $pStyles)) { + $this->setBold($pStyles['bold']); + } + if (array_key_exists('italic', $pStyles)) { + $this->setItalic($pStyles['italic']); + } + if (array_key_exists('superScript', $pStyles)) { + $this->setSuperScript($pStyles['superScript']); + } + if (array_key_exists('subScript', $pStyles)) { + $this->setSubScript($pStyles['subScript']); + } + if (array_key_exists('underline', $pStyles)) { + $this->setUnderline($pStyles['underline']); + } + if (array_key_exists('strike', $pStyles)) { + $this->setStrikethrough($pStyles['strike']); + } + if (array_key_exists('color', $pStyles)) { + $this->getColor()->applyFromArray($pStyles['color']); + } + if (array_key_exists('size', $pStyles)) { + $this->setSize($pStyles['size']); + } + } + } else { + throw new PHPExcel_Exception("Invalid style array passed."); + } + return $this; + } + + /** + * Get Name + * + * @return string + */ + public function getName() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getName(); + } + return $this->name; + } + + /** + * Set Name + * + * @param string $pValue + * @return PHPExcel_Style_Font + */ + public function setName($pValue = 'Calibri') + { + if ($pValue == '') { + $pValue = 'Calibri'; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('name' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->name = $pValue; + } + return $this; + } + + /** + * Get Size + * + * @return double + */ + public function getSize() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getSize(); + } + return $this->size; + } + + /** + * Set Size + * + * @param double $pValue + * @return PHPExcel_Style_Font + */ + public function setSize($pValue = 10) + { + if ($pValue == '') { + $pValue = 10; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('size' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->size = $pValue; + } + return $this; + } + + /** + * Get Bold + * + * @return boolean + */ + public function getBold() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getBold(); + } + return $this->bold; + } + + /** + * Set Bold + * + * @param boolean $pValue + * @return PHPExcel_Style_Font + */ + public function setBold($pValue = false) + { + if ($pValue == '') { + $pValue = false; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('bold' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->bold = $pValue; + } + return $this; + } + + /** + * Get Italic + * + * @return boolean + */ + public function getItalic() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getItalic(); + } + return $this->italic; + } + + /** + * Set Italic + * + * @param boolean $pValue + * @return PHPExcel_Style_Font + */ + public function setItalic($pValue = false) + { + if ($pValue == '') { + $pValue = false; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('italic' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->italic = $pValue; + } + return $this; + } + + /** + * Get SuperScript + * + * @return boolean + */ + public function getSuperScript() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getSuperScript(); + } + return $this->superScript; + } + + /** + * Set SuperScript + * + * @param boolean $pValue + * @return PHPExcel_Style_Font + */ + public function setSuperScript($pValue = false) + { + if ($pValue == '') { + $pValue = false; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('superScript' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->superScript = $pValue; + $this->subScript = !$pValue; + } + return $this; + } + + /** + * Get SubScript + * + * @return boolean + */ + public function getSubScript() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getSubScript(); + } + return $this->subScript; + } + + /** + * Set SubScript + * + * @param boolean $pValue + * @return PHPExcel_Style_Font + */ + public function setSubScript($pValue = false) + { + if ($pValue == '') { + $pValue = false; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('subScript' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->subScript = $pValue; + $this->superScript = !$pValue; + } + return $this; + } + + /** + * Get Underline + * + * @return string + */ + public function getUnderline() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getUnderline(); + } + return $this->underline; + } + + /** + * Set Underline + * + * @param string|boolean $pValue PHPExcel_Style_Font underline type + * If a boolean is passed, then TRUE equates to UNDERLINE_SINGLE, + * false equates to UNDERLINE_NONE + * @return PHPExcel_Style_Font + */ + public function setUnderline($pValue = self::UNDERLINE_NONE) + { + if (is_bool($pValue)) { + $pValue = ($pValue) ? self::UNDERLINE_SINGLE : self::UNDERLINE_NONE; + } elseif ($pValue == '') { + $pValue = self::UNDERLINE_NONE; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('underline' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->underline = $pValue; + } + return $this; + } + + /** + * Get Strikethrough + * + * @return boolean + */ + public function getStrikethrough() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getStrikethrough(); + } + return $this->strikethrough; + } + + /** + * Set Strikethrough + * + * @param boolean $pValue + * @return PHPExcel_Style_Font + */ + public function setStrikethrough($pValue = false) + { + if ($pValue == '') { + $pValue = false; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('strike' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->strikethrough = $pValue; + } + return $this; + } + + /** + * Get Color + * + * @return PHPExcel_Style_Color + */ + public function getColor() + { + return $this->color; + } + + /** + * Set Color + * + * @param PHPExcel_Style_Color $pValue + * @throws PHPExcel_Exception + * @return PHPExcel_Style_Font + */ + public function setColor(PHPExcel_Style_Color $pValue = null) + { + // make sure parameter is a real color and not a supervisor + $color = $pValue->getIsSupervisor() ? $pValue->getSharedComponent() : $pValue; + + if ($this->isSupervisor) { + $styleArray = $this->getColor()->getStyleArray(array('argb' => $color->getARGB())); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->color = $color; + } + return $this; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHashCode(); + } + return md5( + $this->name . + $this->size . + ($this->bold ? 't' : 'f') . + ($this->italic ? 't' : 'f') . + ($this->superScript ? 't' : 'f') . + ($this->subScript ? 't' : 'f') . + $this->underline . + ($this->strikethrough ? 't' : 'f') . + $this->color->getHashCode() . + __CLASS__ + ); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/NumberFormat.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/NumberFormat.php new file mode 100644 index 0000000..1b72cda --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/NumberFormat.php @@ -0,0 +1,751 @@ +<?php + +/** + * PHPExcel_Style_NumberFormat + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Style + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Style_NumberFormat extends PHPExcel_Style_Supervisor implements PHPExcel_IComparable +{ + /* Pre-defined formats */ + const FORMAT_GENERAL = 'General'; + + const FORMAT_TEXT = '@'; + + const FORMAT_NUMBER = '0'; + const FORMAT_NUMBER_00 = '0.00'; + const FORMAT_NUMBER_COMMA_SEPARATED1 = '#,##0.00'; + const FORMAT_NUMBER_COMMA_SEPARATED2 = '#,##0.00_-'; + + const FORMAT_PERCENTAGE = '0%'; + const FORMAT_PERCENTAGE_00 = '0.00%'; + + const FORMAT_DATE_YYYYMMDD2 = 'yyyy-mm-dd'; + const FORMAT_DATE_YYYYMMDD = 'yy-mm-dd'; + const FORMAT_DATE_DDMMYYYY = 'dd/mm/yy'; + const FORMAT_DATE_DMYSLASH = 'd/m/y'; + const FORMAT_DATE_DMYMINUS = 'd-m-y'; + const FORMAT_DATE_DMMINUS = 'd-m'; + const FORMAT_DATE_MYMINUS = 'm-y'; + const FORMAT_DATE_XLSX14 = 'mm-dd-yy'; + const FORMAT_DATE_XLSX15 = 'd-mmm-yy'; + const FORMAT_DATE_XLSX16 = 'd-mmm'; + const FORMAT_DATE_XLSX17 = 'mmm-yy'; + const FORMAT_DATE_XLSX22 = 'm/d/yy h:mm'; + const FORMAT_DATE_DATETIME = 'd/m/y h:mm'; + const FORMAT_DATE_TIME1 = 'h:mm AM/PM'; + const FORMAT_DATE_TIME2 = 'h:mm:ss AM/PM'; + const FORMAT_DATE_TIME3 = 'h:mm'; + const FORMAT_DATE_TIME4 = 'h:mm:ss'; + const FORMAT_DATE_TIME5 = 'mm:ss'; + const FORMAT_DATE_TIME6 = 'h:mm:ss'; + const FORMAT_DATE_TIME7 = 'i:s.S'; + const FORMAT_DATE_TIME8 = 'h:mm:ss;@'; + const FORMAT_DATE_YYYYMMDDSLASH = 'yy/mm/dd;@'; + + const FORMAT_CURRENCY_USD_SIMPLE = '"$"#,##0.00_-'; + const FORMAT_CURRENCY_USD = '$#,##0_-'; + const FORMAT_CURRENCY_EUR_SIMPLE = '[$EUR ]#,##0.00_-'; + + /** + * Excel built-in number formats + * + * @var array + */ + protected static $builtInFormats; + + /** + * Excel built-in number formats (flipped, for faster lookups) + * + * @var array + */ + protected static $flippedBuiltInFormats; + + /** + * Format Code + * + * @var string + */ + protected $formatCode = PHPExcel_Style_NumberFormat::FORMAT_GENERAL; + + /** + * Built-in format Code + * + * @var string + */ + protected $builtInFormatCode = 0; + + /** + * Create a new PHPExcel_Style_NumberFormat + * + * @param boolean $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + * @param boolean $isConditional Flag indicating if this is a conditional style or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false, $isConditional = false) + { + // Supervisor? + parent::__construct($isSupervisor); + + if ($isConditional) { + $this->formatCode = null; + $this->builtInFormatCode = false; + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor + * + * @return PHPExcel_Style_NumberFormat + */ + public function getSharedComponent() + { + return $this->parent->getSharedComponent()->getNumberFormat(); + } + + /** + * Build style array from subcomponents + * + * @param array $array + * @return array + */ + public function getStyleArray($array) + { + return array('numberformat' => $array); + } + + /** + * Apply styles from array + * + * <code> + * $objPHPExcel->getActiveSheet()->getStyle('B2')->getNumberFormat()->applyFromArray( + * array( + * 'code' => PHPExcel_Style_NumberFormat::FORMAT_CURRENCY_EUR_SIMPLE + * ) + * ); + * </code> + * + * @param array $pStyles Array containing style information + * @throws PHPExcel_Exception + * @return PHPExcel_Style_NumberFormat + */ + public function applyFromArray($pStyles = null) + { + if (is_array($pStyles)) { + if ($this->isSupervisor) { + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($this->getStyleArray($pStyles)); + } else { + if (array_key_exists('code', $pStyles)) { + $this->setFormatCode($pStyles['code']); + } + } + } else { + throw new PHPExcel_Exception("Invalid style array passed."); + } + return $this; + } + + /** + * Get Format Code + * + * @return string + */ + public function getFormatCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getFormatCode(); + } + if ($this->builtInFormatCode !== false) { + return self::builtInFormatCode($this->builtInFormatCode); + } + return $this->formatCode; + } + + /** + * Set Format Code + * + * @param string $pValue + * @return PHPExcel_Style_NumberFormat + */ + public function setFormatCode($pValue = PHPExcel_Style_NumberFormat::FORMAT_GENERAL) + { + if ($pValue == '') { + $pValue = PHPExcel_Style_NumberFormat::FORMAT_GENERAL; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('code' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->formatCode = $pValue; + $this->builtInFormatCode = self::builtInFormatCodeIndex($pValue); + } + return $this; + } + + /** + * Get Built-In Format Code + * + * @return int + */ + public function getBuiltInFormatCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getBuiltInFormatCode(); + } + return $this->builtInFormatCode; + } + + /** + * Set Built-In Format Code + * + * @param int $pValue + * @return PHPExcel_Style_NumberFormat + */ + public function setBuiltInFormatCode($pValue = 0) + { + + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('code' => self::builtInFormatCode($pValue))); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->builtInFormatCode = $pValue; + $this->formatCode = self::builtInFormatCode($pValue); + } + return $this; + } + + /** + * Fill built-in format codes + */ + private static function fillBuiltInFormatCodes() + { + // [MS-OI29500: Microsoft Office Implementation Information for ISO/IEC-29500 Standard Compliance] + // 18.8.30. numFmt (Number Format) + // + // The ECMA standard defines built-in format IDs + // 14: "mm-dd-yy" + // 22: "m/d/yy h:mm" + // 37: "#,##0 ;(#,##0)" + // 38: "#,##0 ;[Red](#,##0)" + // 39: "#,##0.00;(#,##0.00)" + // 40: "#,##0.00;[Red](#,##0.00)" + // 47: "mmss.0" + // KOR fmt 55: "yyyy-mm-dd" + // Excel defines built-in format IDs + // 14: "m/d/yyyy" + // 22: "m/d/yyyy h:mm" + // 37: "#,##0_);(#,##0)" + // 38: "#,##0_);[Red](#,##0)" + // 39: "#,##0.00_);(#,##0.00)" + // 40: "#,##0.00_);[Red](#,##0.00)" + // 47: "mm:ss.0" + // KOR fmt 55: "yyyy/mm/dd" + + // Built-in format codes + if (is_null(self::$builtInFormats)) { + self::$builtInFormats = array(); + + // General + self::$builtInFormats[0] = PHPExcel_Style_NumberFormat::FORMAT_GENERAL; + self::$builtInFormats[1] = '0'; + self::$builtInFormats[2] = '0.00'; + self::$builtInFormats[3] = '#,##0'; + self::$builtInFormats[4] = '#,##0.00'; + + self::$builtInFormats[9] = '0%'; + self::$builtInFormats[10] = '0.00%'; + self::$builtInFormats[11] = '0.00E+00'; + self::$builtInFormats[12] = '# ?/?'; + self::$builtInFormats[13] = '# ??/??'; + self::$builtInFormats[14] = 'm/d/yyyy'; // Despite ECMA 'mm-dd-yy'; + self::$builtInFormats[15] = 'd-mmm-yy'; + self::$builtInFormats[16] = 'd-mmm'; + self::$builtInFormats[17] = 'mmm-yy'; + self::$builtInFormats[18] = 'h:mm AM/PM'; + self::$builtInFormats[19] = 'h:mm:ss AM/PM'; + self::$builtInFormats[20] = 'h:mm'; + self::$builtInFormats[21] = 'h:mm:ss'; + self::$builtInFormats[22] = 'm/d/yyyy h:mm'; // Despite ECMA 'm/d/yy h:mm'; + + self::$builtInFormats[37] = '#,##0_);(#,##0)'; // Despite ECMA '#,##0 ;(#,##0)'; + self::$builtInFormats[38] = '#,##0_);[Red](#,##0)'; // Despite ECMA '#,##0 ;[Red](#,##0)'; + self::$builtInFormats[39] = '#,##0.00_);(#,##0.00)'; // Despite ECMA '#,##0.00;(#,##0.00)'; + self::$builtInFormats[40] = '#,##0.00_);[Red](#,##0.00)'; // Despite ECMA '#,##0.00;[Red](#,##0.00)'; + + self::$builtInFormats[44] = '_("$"* #,##0.00_);_("$"* \(#,##0.00\);_("$"* "-"??_);_(@_)'; + self::$builtInFormats[45] = 'mm:ss'; + self::$builtInFormats[46] = '[h]:mm:ss'; + self::$builtInFormats[47] = 'mm:ss.0'; // Despite ECMA 'mmss.0'; + self::$builtInFormats[48] = '##0.0E+0'; + self::$builtInFormats[49] = '@'; + + // CHT + self::$builtInFormats[27] = '[$-404]e/m/d'; + self::$builtInFormats[30] = 'm/d/yy'; + self::$builtInFormats[36] = '[$-404]e/m/d'; + self::$builtInFormats[50] = '[$-404]e/m/d'; + self::$builtInFormats[57] = '[$-404]e/m/d'; + + // THA + self::$builtInFormats[59] = 't0'; + self::$builtInFormats[60] = 't0.00'; + self::$builtInFormats[61] = 't#,##0'; + self::$builtInFormats[62] = 't#,##0.00'; + self::$builtInFormats[67] = 't0%'; + self::$builtInFormats[68] = 't0.00%'; + self::$builtInFormats[69] = 't# ?/?'; + self::$builtInFormats[70] = 't# ??/??'; + + // Flip array (for faster lookups) + self::$flippedBuiltInFormats = array_flip(self::$builtInFormats); + } + } + + /** + * Get built-in format code + * + * @param int $pIndex + * @return string + */ + public static function builtInFormatCode($pIndex) + { + // Clean parameter + $pIndex = intval($pIndex); + + // Ensure built-in format codes are available + self::fillBuiltInFormatCodes(); + // Lookup format code + if (isset(self::$builtInFormats[$pIndex])) { + return self::$builtInFormats[$pIndex]; + } + + return ''; + } + + /** + * Get built-in format code index + * + * @param string $formatCode + * @return int|boolean + */ + public static function builtInFormatCodeIndex($formatCode) + { + // Ensure built-in format codes are available + self::fillBuiltInFormatCodes(); + + // Lookup format code + if (isset(self::$flippedBuiltInFormats[$formatCode])) { + return self::$flippedBuiltInFormats[$formatCode]; + } + + return false; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHashCode(); + } + return md5( + $this->formatCode . + $this->builtInFormatCode . + __CLASS__ + ); + } + + /** + * Search/replace values to convert Excel date/time format masks to PHP format masks + * + * @var array + */ + private static $dateFormatReplacements = array( + // first remove escapes related to non-format characters + '\\' => '', + // 12-hour suffix + 'am/pm' => 'A', + // 4-digit year + 'e' => 'Y', + 'yyyy' => 'Y', + // 2-digit year + 'yy' => 'y', + // first letter of month - no php equivalent + 'mmmmm' => 'M', + // full month name + 'mmmm' => 'F', + // short month name + 'mmm' => 'M', + // mm is minutes if time, but can also be month w/leading zero + // so we try to identify times be the inclusion of a : separator in the mask + // It isn't perfect, but the best way I know how + ':mm' => ':i', + 'mm:' => 'i:', + // month leading zero + 'mm' => 'm', + // month no leading zero + 'm' => 'n', + // full day of week name + 'dddd' => 'l', + // short day of week name + 'ddd' => 'D', + // days leading zero + 'dd' => 'd', + // days no leading zero + 'd' => 'j', + // seconds + 'ss' => 's', + // fractional seconds - no php equivalent + '.s' => '' + ); + /** + * Search/replace values to convert Excel date/time format masks hours to PHP format masks (24 hr clock) + * + * @var array + */ + private static $dateFormatReplacements24 = array( + 'hh' => 'H', + 'h' => 'G' + ); + /** + * Search/replace values to convert Excel date/time format masks hours to PHP format masks (12 hr clock) + * + * @var array + */ + private static $dateFormatReplacements12 = array( + 'hh' => 'h', + 'h' => 'g' + ); + + private static function setLowercaseCallback($matches) { + return mb_strtolower($matches[0]); + } + + private static function escapeQuotesCallback($matches) { + return '\\' . implode('\\', str_split($matches[1])); + } + + private static function formatAsDate(&$value, &$format) + { + // strip off first part containing e.g. [$-F800] or [$USD-409] + // general syntax: [$<Currency string>-<language info>] + // language info is in hexadecimal + $format = preg_replace('/^(\[\$[A-Z]*-[0-9A-F]*\])/i', '', $format); + + // OpenOffice.org uses upper-case number formats, e.g. 'YYYY', convert to lower-case; + // but we don't want to change any quoted strings + $format = preg_replace_callback('/(?:^|")([^"]*)(?:$|")/', array('self', 'setLowercaseCallback'), $format); + + // Only process the non-quoted blocks for date format characters + $blocks = explode('"', $format); + foreach($blocks as $key => &$block) { + if ($key % 2 == 0) { + $block = strtr($block, self::$dateFormatReplacements); + if (!strpos($block, 'A')) { + // 24-hour time format + $block = strtr($block, self::$dateFormatReplacements24); + } else { + // 12-hour time format + $block = strtr($block, self::$dateFormatReplacements12); + } + } + } + $format = implode('"', $blocks); + + // escape any quoted characters so that DateTime format() will render them correctly + $format = preg_replace_callback('/"(.*)"/U', array('self', 'escapeQuotesCallback'), $format); + + $dateObj = PHPExcel_Shared_Date::ExcelToPHPObject($value); + $value = $dateObj->format($format); + } + + private static function formatAsPercentage(&$value, &$format) + { + if ($format === self::FORMAT_PERCENTAGE) { + $value = round((100 * $value), 0) . '%'; + } else { + if (preg_match('/\.[#0]+/i', $format, $m)) { + $s = substr($m[0], 0, 1) . (strlen($m[0]) - 1); + $format = str_replace($m[0], $s, $format); + } + if (preg_match('/^[#0]+/', $format, $m)) { + $format = str_replace($m[0], strlen($m[0]), $format); + } + $format = '%' . str_replace('%', 'f%%', $format); + + $value = sprintf($format, 100 * $value); + } + } + + private static function formatAsFraction(&$value, &$format) + { + $sign = ($value < 0) ? '-' : ''; + + $integerPart = floor(abs($value)); + $decimalPart = trim(fmod(abs($value), 1), '0.'); + $decimalLength = strlen($decimalPart); + $decimalDivisor = pow(10, $decimalLength); + + $GCD = PHPExcel_Calculation_MathTrig::GCD($decimalPart, $decimalDivisor); + + $adjustedDecimalPart = $decimalPart/$GCD; + $adjustedDecimalDivisor = $decimalDivisor/$GCD; + + if ((strpos($format, '0') !== false) || (strpos($format, '#') !== false) || (substr($format, 0, 3) == '? ?')) { + if ($integerPart == 0) { + $integerPart = ''; + } + $value = "$sign$integerPart $adjustedDecimalPart/$adjustedDecimalDivisor"; + } else { + $adjustedDecimalPart += $integerPart * $adjustedDecimalDivisor; + $value = "$sign$adjustedDecimalPart/$adjustedDecimalDivisor"; + } + } + + private static function complexNumberFormatMask($number, $mask, $level = 0) + { + $sign = ($number < 0.0); + $number = abs($number); + if (strpos($mask, '.') !== false) { + $numbers = explode('.', $number . '.0'); + $masks = explode('.', $mask . '.0'); + $result1 = self::complexNumberFormatMask($numbers[0], $masks[0], 1); + $result2 = strrev(self::complexNumberFormatMask(strrev($numbers[1]), strrev($masks[1]), 1)); + return (($sign) ? '-' : '') . $result1 . '.' . $result2; + } + + $r = preg_match_all('/0+/', $mask, $result, PREG_OFFSET_CAPTURE); + if ($r > 1) { + $result = array_reverse($result[0]); + + foreach ($result as $block) { + $divisor = 1 . $block[0]; + $size = strlen($block[0]); + $offset = $block[1]; + + $blockValue = sprintf( + '%0' . $size . 'd', + fmod($number, $divisor) + ); + $number = floor($number / $divisor); + $mask = substr_replace($mask, $blockValue, $offset, $size); + } + if ($number > 0) { + $mask = substr_replace($mask, $number, $offset, 0); + } + $result = $mask; + } else { + $result = $number; + } + + return (($sign) ? '-' : '') . $result; + } + + /** + * Convert a value in a pre-defined format to a PHP string + * + * @param mixed $value Value to format + * @param string $format Format code + * @param array $callBack Callback function for additional formatting of string + * @return string Formatted string + */ + public static function toFormattedString($value = '0', $format = PHPExcel_Style_NumberFormat::FORMAT_GENERAL, $callBack = null) + { + // For now we do not treat strings although section 4 of a format code affects strings + if (!is_numeric($value)) { + return $value; + } + + // For 'General' format code, we just pass the value although this is not entirely the way Excel does it, + // it seems to round numbers to a total of 10 digits. + if (($format === PHPExcel_Style_NumberFormat::FORMAT_GENERAL) || ($format === PHPExcel_Style_NumberFormat::FORMAT_TEXT)) { + return $value; + } + + // Convert any other escaped characters to quoted strings, e.g. (\T to "T") + $format = preg_replace('/(\\\(.))(?=(?:[^"]|"[^"]*")*$)/u', '"${2}"', $format); + + // Get the sections, there can be up to four sections, separated with a semi-colon (but only if not a quoted literal) + $sections = preg_split('/(;)(?=(?:[^"]|"[^"]*")*$)/u', $format); + + // Extract the relevant section depending on whether number is positive, negative, or zero? + // Text not supported yet. + // Here is how the sections apply to various values in Excel: + // 1 section: [POSITIVE/NEGATIVE/ZERO/TEXT] + // 2 sections: [POSITIVE/ZERO/TEXT] [NEGATIVE] + // 3 sections: [POSITIVE/TEXT] [NEGATIVE] [ZERO] + // 4 sections: [POSITIVE] [NEGATIVE] [ZERO] [TEXT] + switch (count($sections)) { + case 1: + $format = $sections[0]; + break; + case 2: + $format = ($value >= 0) ? $sections[0] : $sections[1]; + $value = abs($value); // Use the absolute value + break; + case 3: + $format = ($value > 0) ? + $sections[0] : ( ($value < 0) ? + $sections[1] : $sections[2]); + $value = abs($value); // Use the absolute value + break; + case 4: + $format = ($value > 0) ? + $sections[0] : ( ($value < 0) ? + $sections[1] : $sections[2]); + $value = abs($value); // Use the absolute value + break; + default: + // something is wrong, just use first section + $format = $sections[0]; + break; + } + + // In Excel formats, "_" is used to add spacing, + // The following character indicates the size of the spacing, which we can't do in HTML, so we just use a standard space + $format = preg_replace('/_./', ' ', $format); + + // Save format with color information for later use below + $formatColor = $format; + + // Strip color information + $color_regex = '/^\\[[a-zA-Z]+\\]/'; + $format = preg_replace($color_regex, '', $format); + + // Let's begin inspecting the format and converting the value to a formatted string + + // Check for date/time characters (not inside quotes) + if (preg_match('/(\[\$[A-Z]*-[0-9A-F]*\])*[hmsdy](?=(?:[^"]|"[^"]*")*$)/miu', $format, $matches)) { + // datetime format + self::formatAsDate($value, $format); + } elseif (preg_match('/%$/', $format)) { + // % number format + self::formatAsPercentage($value, $format); + } else { + if ($format === self::FORMAT_CURRENCY_EUR_SIMPLE) { + $value = 'EUR ' . sprintf('%1.2f', $value); + } else { + // Some non-number strings are quoted, so we'll get rid of the quotes, likewise any positional * symbols + $format = str_replace(array('"', '*'), '', $format); + + // Find out if we need thousands separator + // This is indicated by a comma enclosed by a digit placeholder: + // #,# or 0,0 + $useThousands = preg_match('/(#,#|0,0)/', $format); + if ($useThousands) { + $format = preg_replace('/0,0/', '00', $format); + $format = preg_replace('/#,#/', '##', $format); + } + + // Scale thousands, millions,... + // This is indicated by a number of commas after a digit placeholder: + // #, or 0.0,, + $scale = 1; // same as no scale + $matches = array(); + if (preg_match('/(#|0)(,+)/', $format, $matches)) { + $scale = pow(1000, strlen($matches[2])); + + // strip the commas + $format = preg_replace('/0,+/', '0', $format); + $format = preg_replace('/#,+/', '#', $format); + } + + if (preg_match('/#?.*\?\/\?/', $format, $m)) { + //echo 'Format mask is fractional '.$format.' <br />'; + if ($value != (int)$value) { + self::formatAsFraction($value, $format); + } + + } else { + // Handle the number itself + + // scale number + $value = $value / $scale; + + // Strip # + $format = preg_replace('/\\#/', '0', $format); + + $n = "/\[[^\]]+\]/"; + $m = preg_replace($n, '', $format); + $number_regex = "/(0+)(\.?)(0*)/"; + if (preg_match($number_regex, $m, $matches)) { + $left = $matches[1]; + $dec = $matches[2]; + $right = $matches[3]; + + // minimun width of formatted number (including dot) + $minWidth = strlen($left) + strlen($dec) + strlen($right); + if ($useThousands) { + $value = number_format( + $value, + strlen($right), + PHPExcel_Shared_String::getDecimalSeparator(), + PHPExcel_Shared_String::getThousandsSeparator() + ); + $value = preg_replace($number_regex, $value, $format); + } else { + if (preg_match('/[0#]E[+-]0/i', $format)) { + // Scientific format + $value = sprintf('%5.2E', $value); + } elseif (preg_match('/0([^\d\.]+)0/', $format)) { + $value = self::complexNumberFormatMask($value, $format); + } else { + $sprintf_pattern = "%0$minWidth." . strlen($right) . "f"; + $value = sprintf($sprintf_pattern, $value); + $value = preg_replace($number_regex, $value, $format); + } + } + } + } + if (preg_match('/\[\$(.*)\]/u', $format, $m)) { + // Currency or Accounting + $currencyFormat = $m[0]; + $currencyCode = $m[1]; + list($currencyCode) = explode('-', $currencyCode); + if ($currencyCode == '') { + $currencyCode = PHPExcel_Shared_String::getCurrencyCode(); + } + $value = preg_replace('/\[\$([^\]]*)\]/u', $currencyCode, $value); + } + } + } + + // Escape any escaped slashes to a single slash + $format = preg_replace("/\\\\/u", '\\', $format); + + // Additional formatting provided by callback function + if ($callBack !== null) { + list($writerInstance, $function) = $callBack; + $value = $writerInstance->$function($value, $formatColor); + } + + return $value; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Protection.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Protection.php new file mode 100644 index 0000000..d5568f6 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Protection.php @@ -0,0 +1,204 @@ +<?php + +/** + * PHPExcel_Style_Protection + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Style + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Style_Protection extends PHPExcel_Style_Supervisor implements PHPExcel_IComparable +{ + /** Protection styles */ + const PROTECTION_INHERIT = 'inherit'; + const PROTECTION_PROTECTED = 'protected'; + const PROTECTION_UNPROTECTED = 'unprotected'; + + /** + * Locked + * + * @var string + */ + protected $locked; + + /** + * Hidden + * + * @var string + */ + protected $hidden; + + /** + * Create a new PHPExcel_Style_Protection + * + * @param boolean $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + * @param boolean $isConditional Flag indicating if this is a conditional style or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false, $isConditional = false) + { + // Supervisor? + parent::__construct($isSupervisor); + + // Initialise values + if (!$isConditional) { + $this->locked = self::PROTECTION_INHERIT; + $this->hidden = self::PROTECTION_INHERIT; + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor + * + * @return PHPExcel_Style_Protection + */ + public function getSharedComponent() + { + return $this->parent->getSharedComponent()->getProtection(); + } + + /** + * Build style array from subcomponents + * + * @param array $array + * @return array + */ + public function getStyleArray($array) + { + return array('protection' => $array); + } + + /** + * Apply styles from array + * + * <code> + * $objPHPExcel->getActiveSheet()->getStyle('B2')->getLocked()->applyFromArray( + * array( + * 'locked' => TRUE, + * 'hidden' => FALSE + * ) + * ); + * </code> + * + * @param array $pStyles Array containing style information + * @throws PHPExcel_Exception + * @return PHPExcel_Style_Protection + */ + public function applyFromArray($pStyles = null) + { + if (is_array($pStyles)) { + if ($this->isSupervisor) { + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($this->getStyleArray($pStyles)); + } else { + if (isset($pStyles['locked'])) { + $this->setLocked($pStyles['locked']); + } + if (isset($pStyles['hidden'])) { + $this->setHidden($pStyles['hidden']); + } + } + } else { + throw new PHPExcel_Exception("Invalid style array passed."); + } + return $this; + } + + /** + * Get locked + * + * @return string + */ + public function getLocked() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getLocked(); + } + return $this->locked; + } + + /** + * Set locked + * + * @param string $pValue + * @return PHPExcel_Style_Protection + */ + public function setLocked($pValue = self::PROTECTION_INHERIT) + { + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('locked' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->locked = $pValue; + } + return $this; + } + + /** + * Get hidden + * + * @return string + */ + public function getHidden() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHidden(); + } + return $this->hidden; + } + + /** + * Set hidden + * + * @param string $pValue + * @return PHPExcel_Style_Protection + */ + public function setHidden($pValue = self::PROTECTION_INHERIT) + { + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(array('hidden' => $pValue)); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->hidden = $pValue; + } + return $this; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHashCode(); + } + return md5( + $this->locked . + $this->hidden . + __CLASS__ + ); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Supervisor.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Supervisor.php new file mode 100644 index 0000000..a90e1c6 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Supervisor.php @@ -0,0 +1,125 @@ +<?php + +/** + * PHPExcel_Style_Supervisor + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Style + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +abstract class PHPExcel_Style_Supervisor +{ + /** + * Supervisor? + * + * @var boolean + */ + protected $isSupervisor; + + /** + * Parent. Only used for supervisor + * + * @var PHPExcel_Style + */ + protected $parent; + + /** + * Create a new PHPExcel_Style_Alignment + * + * @param boolean $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false) + { + // Supervisor? + $this->isSupervisor = $isSupervisor; + } + + /** + * Bind parent. Only used for supervisor + * + * @param PHPExcel $parent + * @return PHPExcel_Style_Supervisor + */ + public function bindParent($parent, $parentPropertyName = null) + { + $this->parent = $parent; + return $this; + } + + /** + * Is this a supervisor or a cell style component? + * + * @return boolean + */ + public function getIsSupervisor() + { + return $this->isSupervisor; + } + + /** + * Get the currently active sheet. Only used for supervisor + * + * @return PHPExcel_Worksheet + */ + public function getActiveSheet() + { + return $this->parent->getActiveSheet(); + } + + /** + * Get the currently active cell coordinate in currently active sheet. + * Only used for supervisor + * + * @return string E.g. 'A1' + */ + public function getSelectedCells() + { + return $this->getActiveSheet()->getSelectedCells(); + } + + /** + * Get the currently active cell coordinate in currently active sheet. + * Only used for supervisor + * + * @return string E.g. 'A1' + */ + public function getActiveCell() + { + return $this->getActiveSheet()->getActiveCell(); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if ((is_object($value)) && ($key != 'parent')) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php new file mode 100644 index 0000000..483aa00 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php @@ -0,0 +1,2968 @@ +<?php + +/** + * PHPExcel_Worksheet + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet implements PHPExcel_IComparable +{ + /* Break types */ + const BREAK_NONE = 0; + const BREAK_ROW = 1; + const BREAK_COLUMN = 2; + + /* Sheet state */ + const SHEETSTATE_VISIBLE = 'visible'; + const SHEETSTATE_HIDDEN = 'hidden'; + const SHEETSTATE_VERYHIDDEN = 'veryHidden'; + + /** + * Invalid characters in sheet title + * + * @var array + */ + private static $invalidCharacters = array('*', ':', '/', '\\', '?', '[', ']'); + + /** + * Parent spreadsheet + * + * @var PHPExcel + */ + private $parent; + + /** + * Cacheable collection of cells + * + * @var PHPExcel_CachedObjectStorage_xxx + */ + private $cellCollection; + + /** + * Collection of row dimensions + * + * @var PHPExcel_Worksheet_RowDimension[] + */ + private $rowDimensions = array(); + + /** + * Default row dimension + * + * @var PHPExcel_Worksheet_RowDimension + */ + private $defaultRowDimension; + + /** + * Collection of column dimensions + * + * @var PHPExcel_Worksheet_ColumnDimension[] + */ + private $columnDimensions = array(); + + /** + * Default column dimension + * + * @var PHPExcel_Worksheet_ColumnDimension + */ + private $defaultColumnDimension = null; + + /** + * Collection of drawings + * + * @var PHPExcel_Worksheet_BaseDrawing[] + */ + private $drawingCollection = null; + + /** + * Collection of Chart objects + * + * @var PHPExcel_Chart[] + */ + private $chartCollection = array(); + + /** + * Worksheet title + * + * @var string + */ + private $title; + + /** + * Sheet state + * + * @var string + */ + private $sheetState; + + /** + * Page setup + * + * @var PHPExcel_Worksheet_PageSetup + */ + private $pageSetup; + + /** + * Page margins + * + * @var PHPExcel_Worksheet_PageMargins + */ + private $pageMargins; + + /** + * Page header/footer + * + * @var PHPExcel_Worksheet_HeaderFooter + */ + private $headerFooter; + + /** + * Sheet view + * + * @var PHPExcel_Worksheet_SheetView + */ + private $sheetView; + + /** + * Protection + * + * @var PHPExcel_Worksheet_Protection + */ + private $protection; + + /** + * Collection of styles + * + * @var PHPExcel_Style[] + */ + private $styles = array(); + + /** + * Conditional styles. Indexed by cell coordinate, e.g. 'A1' + * + * @var array + */ + private $conditionalStylesCollection = array(); + + /** + * Is the current cell collection sorted already? + * + * @var boolean + */ + private $cellCollectionIsSorted = false; + + /** + * Collection of breaks + * + * @var array + */ + private $breaks = array(); + + /** + * Collection of merged cell ranges + * + * @var array + */ + private $mergeCells = array(); + + /** + * Collection of protected cell ranges + * + * @var array + */ + private $protectedCells = array(); + + /** + * Autofilter Range and selection + * + * @var PHPExcel_Worksheet_AutoFilter + */ + private $autoFilter; + + /** + * Freeze pane + * + * @var string + */ + private $freezePane = ''; + + /** + * Show gridlines? + * + * @var boolean + */ + private $showGridlines = true; + + /** + * Print gridlines? + * + * @var boolean + */ + private $printGridlines = false; + + /** + * Show row and column headers? + * + * @var boolean + */ + private $showRowColHeaders = true; + + /** + * Show summary below? (Row/Column outline) + * + * @var boolean + */ + private $showSummaryBelow = true; + + /** + * Show summary right? (Row/Column outline) + * + * @var boolean + */ + private $showSummaryRight = true; + + /** + * Collection of comments + * + * @var PHPExcel_Comment[] + */ + private $comments = array(); + + /** + * Active cell. (Only one!) + * + * @var string + */ + private $activeCell = 'A1'; + + /** + * Selected cells + * + * @var string + */ + private $selectedCells = 'A1'; + + /** + * Cached highest column + * + * @var string + */ + private $cachedHighestColumn = 'A'; + + /** + * Cached highest row + * + * @var int + */ + private $cachedHighestRow = 1; + + /** + * Right-to-left? + * + * @var boolean + */ + private $rightToLeft = false; + + /** + * Hyperlinks. Indexed by cell coordinate, e.g. 'A1' + * + * @var array + */ + private $hyperlinkCollection = array(); + + /** + * Data validation objects. Indexed by cell coordinate, e.g. 'A1' + * + * @var array + */ + private $dataValidationCollection = array(); + + /** + * Tab color + * + * @var PHPExcel_Style_Color + */ + private $tabColor; + + /** + * Dirty flag + * + * @var boolean + */ + private $dirty = true; + + /** + * Hash + * + * @var string + */ + private $hash; + + /** + * CodeName + * + * @var string + */ + private $codeName = null; + + /** + * Create a new worksheet + * + * @param PHPExcel $pParent + * @param string $pTitle + */ + public function __construct(PHPExcel $pParent = null, $pTitle = 'Worksheet') + { + // Set parent and title + $this->parent = $pParent; + $this->setTitle($pTitle, false); + // setTitle can change $pTitle + $this->setCodeName($this->getTitle()); + $this->setSheetState(PHPExcel_Worksheet::SHEETSTATE_VISIBLE); + + $this->cellCollection = PHPExcel_CachedObjectStorageFactory::getInstance($this); + // Set page setup + $this->pageSetup = new PHPExcel_Worksheet_PageSetup(); + // Set page margins + $this->pageMargins = new PHPExcel_Worksheet_PageMargins(); + // Set page header/footer + $this->headerFooter = new PHPExcel_Worksheet_HeaderFooter(); + // Set sheet view + $this->sheetView = new PHPExcel_Worksheet_SheetView(); + // Drawing collection + $this->drawingCollection = new ArrayObject(); + // Chart collection + $this->chartCollection = new ArrayObject(); + // Protection + $this->protection = new PHPExcel_Worksheet_Protection(); + // Default row dimension + $this->defaultRowDimension = new PHPExcel_Worksheet_RowDimension(null); + // Default column dimension + $this->defaultColumnDimension = new PHPExcel_Worksheet_ColumnDimension(null); + $this->autoFilter = new PHPExcel_Worksheet_AutoFilter(null, $this); + } + + + /** + * Disconnect all cells from this PHPExcel_Worksheet object, + * typically so that the worksheet object can be unset + * + */ + public function disconnectCells() + { + if ($this->cellCollection !== null) { + $this->cellCollection->unsetWorksheetCells(); + $this->cellCollection = null; + } + // detach ourself from the workbook, so that it can then delete this worksheet successfully + $this->parent = null; + } + + /** + * Code to execute when this worksheet is unset() + * + */ + public function __destruct() + { + PHPExcel_Calculation::getInstance($this->parent)->clearCalculationCacheForWorksheet($this->title); + + $this->disconnectCells(); + } + + /** + * Return the cache controller for the cell collection + * + * @return PHPExcel_CachedObjectStorage_xxx + */ + public function getCellCacheController() + { + return $this->cellCollection; + } + + + /** + * Get array of invalid characters for sheet title + * + * @return array + */ + public static function getInvalidCharacters() + { + return self::$invalidCharacters; + } + + /** + * Check sheet code name for valid Excel syntax + * + * @param string $pValue The string to check + * @return string The valid string + * @throws Exception + */ + private static function checkSheetCodeName($pValue) + { + $CharCount = PHPExcel_Shared_String::CountCharacters($pValue); + if ($CharCount == 0) { + throw new PHPExcel_Exception('Sheet code name cannot be empty.'); + } + // Some of the printable ASCII characters are invalid: * : / \ ? [ ] and first and last characters cannot be a "'" + if ((str_replace(self::$invalidCharacters, '', $pValue) !== $pValue) || + (PHPExcel_Shared_String::Substring($pValue, -1, 1)=='\'') || + (PHPExcel_Shared_String::Substring($pValue, 0, 1)=='\'')) { + throw new PHPExcel_Exception('Invalid character found in sheet code name'); + } + + // Maximum 31 characters allowed for sheet title + if ($CharCount > 31) { + throw new PHPExcel_Exception('Maximum 31 characters allowed in sheet code name.'); + } + + return $pValue; + } + + /** + * Check sheet title for valid Excel syntax + * + * @param string $pValue The string to check + * @return string The valid string + * @throws PHPExcel_Exception + */ + private static function checkSheetTitle($pValue) + { + // Some of the printable ASCII characters are invalid: * : / \ ? [ ] + if (str_replace(self::$invalidCharacters, '', $pValue) !== $pValue) { + throw new PHPExcel_Exception('Invalid character found in sheet title'); + } + + // Maximum 31 characters allowed for sheet title + if (PHPExcel_Shared_String::CountCharacters($pValue) > 31) { + throw new PHPExcel_Exception('Maximum 31 characters allowed in sheet title.'); + } + + return $pValue; + } + + /** + * Get collection of cells + * + * @param boolean $pSorted Also sort the cell collection? + * @return PHPExcel_Cell[] + */ + public function getCellCollection($pSorted = true) + { + if ($pSorted) { + // Re-order cell collection + return $this->sortCellCollection(); + } + if ($this->cellCollection !== null) { + return $this->cellCollection->getCellList(); + } + return array(); + } + + /** + * Sort collection of cells + * + * @return PHPExcel_Worksheet + */ + public function sortCellCollection() + { + if ($this->cellCollection !== null) { + return $this->cellCollection->getSortedCellList(); + } + return array(); + } + + /** + * Get collection of row dimensions + * + * @return PHPExcel_Worksheet_RowDimension[] + */ + public function getRowDimensions() + { + return $this->rowDimensions; + } + + /** + * Get default row dimension + * + * @return PHPExcel_Worksheet_RowDimension + */ + public function getDefaultRowDimension() + { + return $this->defaultRowDimension; + } + + /** + * Get collection of column dimensions + * + * @return PHPExcel_Worksheet_ColumnDimension[] + */ + public function getColumnDimensions() + { + return $this->columnDimensions; + } + + /** + * Get default column dimension + * + * @return PHPExcel_Worksheet_ColumnDimension + */ + public function getDefaultColumnDimension() + { + return $this->defaultColumnDimension; + } + + /** + * Get collection of drawings + * + * @return PHPExcel_Worksheet_BaseDrawing[] + */ + public function getDrawingCollection() + { + return $this->drawingCollection; + } + + /** + * Get collection of charts + * + * @return PHPExcel_Chart[] + */ + public function getChartCollection() + { + return $this->chartCollection; + } + + /** + * Add chart + * + * @param PHPExcel_Chart $pChart + * @param int|null $iChartIndex Index where chart should go (0,1,..., or null for last) + * @return PHPExcel_Chart + */ + public function addChart(PHPExcel_Chart $pChart = null, $iChartIndex = null) + { + $pChart->setWorksheet($this); + if (is_null($iChartIndex)) { + $this->chartCollection[] = $pChart; + } else { + // Insert the chart at the requested index + array_splice($this->chartCollection, $iChartIndex, 0, array($pChart)); + } + + return $pChart; + } + + /** + * Return the count of charts on this worksheet + * + * @return int The number of charts + */ + public function getChartCount() + { + return count($this->chartCollection); + } + + /** + * Get a chart by its index position + * + * @param string $index Chart index position + * @return false|PHPExcel_Chart + * @throws PHPExcel_Exception + */ + public function getChartByIndex($index = null) + { + $chartCount = count($this->chartCollection); + if ($chartCount == 0) { + return false; + } + if (is_null($index)) { + $index = --$chartCount; + } + if (!isset($this->chartCollection[$index])) { + return false; + } + + return $this->chartCollection[$index]; + } + + /** + * Return an array of the names of charts on this worksheet + * + * @return string[] The names of charts + * @throws PHPExcel_Exception + */ + public function getChartNames() + { + $chartNames = array(); + foreach ($this->chartCollection as $chart) { + $chartNames[] = $chart->getName(); + } + return $chartNames; + } + + /** + * Get a chart by name + * + * @param string $chartName Chart name + * @return false|PHPExcel_Chart + * @throws PHPExcel_Exception + */ + public function getChartByName($chartName = '') + { + $chartCount = count($this->chartCollection); + if ($chartCount == 0) { + return false; + } + foreach ($this->chartCollection as $index => $chart) { + if ($chart->getName() == $chartName) { + return $this->chartCollection[$index]; + } + } + return false; + } + + /** + * Refresh column dimensions + * + * @return PHPExcel_Worksheet + */ + public function refreshColumnDimensions() + { + $currentColumnDimensions = $this->getColumnDimensions(); + $newColumnDimensions = array(); + + foreach ($currentColumnDimensions as $objColumnDimension) { + $newColumnDimensions[$objColumnDimension->getColumnIndex()] = $objColumnDimension; + } + + $this->columnDimensions = $newColumnDimensions; + + return $this; + } + + /** + * Refresh row dimensions + * + * @return PHPExcel_Worksheet + */ + public function refreshRowDimensions() + { + $currentRowDimensions = $this->getRowDimensions(); + $newRowDimensions = array(); + + foreach ($currentRowDimensions as $objRowDimension) { + $newRowDimensions[$objRowDimension->getRowIndex()] = $objRowDimension; + } + + $this->rowDimensions = $newRowDimensions; + + return $this; + } + + /** + * Calculate worksheet dimension + * + * @return string String containing the dimension of this worksheet + */ + public function calculateWorksheetDimension() + { + // Return + return 'A1' . ':' . $this->getHighestColumn() . $this->getHighestRow(); + } + + /** + * Calculate worksheet data dimension + * + * @return string String containing the dimension of this worksheet that actually contain data + */ + public function calculateWorksheetDataDimension() + { + // Return + return 'A1' . ':' . $this->getHighestDataColumn() . $this->getHighestDataRow(); + } + + /** + * Calculate widths for auto-size columns + * + * @param boolean $calculateMergeCells Calculate merge cell width + * @return PHPExcel_Worksheet; + */ + public function calculateColumnWidths($calculateMergeCells = false) + { + // initialize $autoSizes array + $autoSizes = array(); + foreach ($this->getColumnDimensions() as $colDimension) { + if ($colDimension->getAutoSize()) { + $autoSizes[$colDimension->getColumnIndex()] = -1; + } + } + + // There is only something to do if there are some auto-size columns + if (!empty($autoSizes)) { + // build list of cells references that participate in a merge + $isMergeCell = array(); + foreach ($this->getMergeCells() as $cells) { + foreach (PHPExcel_Cell::extractAllCellReferencesInRange($cells) as $cellReference) { + $isMergeCell[$cellReference] = true; + } + } + + // loop through all cells in the worksheet + foreach ($this->getCellCollection(false) as $cellID) { + $cell = $this->getCell($cellID, false); + if ($cell !== null && isset($autoSizes[$this->cellCollection->getCurrentColumn()])) { + // Determine width if cell does not participate in a merge + if (!isset($isMergeCell[$this->cellCollection->getCurrentAddress()])) { + // Calculated value + // To formatted string + $cellValue = PHPExcel_Style_NumberFormat::toFormattedString( + $cell->getCalculatedValue(), + $this->getParent()->getCellXfByIndex($cell->getXfIndex())->getNumberFormat()->getFormatCode() + ); + + $autoSizes[$this->cellCollection->getCurrentColumn()] = max( + (float) $autoSizes[$this->cellCollection->getCurrentColumn()], + (float)PHPExcel_Shared_Font::calculateColumnWidth( + $this->getParent()->getCellXfByIndex($cell->getXfIndex())->getFont(), + $cellValue, + $this->getParent()->getCellXfByIndex($cell->getXfIndex())->getAlignment()->getTextRotation(), + $this->getDefaultStyle()->getFont() + ) + ); + } + } + } + + // adjust column widths + foreach ($autoSizes as $columnIndex => $width) { + if ($width == -1) { + $width = $this->getDefaultColumnDimension()->getWidth(); + } + $this->getColumnDimension($columnIndex)->setWidth($width); + } + } + + return $this; + } + + /** + * Get parent + * + * @return PHPExcel + */ + public function getParent() + { + return $this->parent; + } + + /** + * Re-bind parent + * + * @param PHPExcel $parent + * @return PHPExcel_Worksheet + */ + public function rebindParent(PHPExcel $parent) + { + if ($this->parent !== null) { + $namedRanges = $this->parent->getNamedRanges(); + foreach ($namedRanges as $namedRange) { + $parent->addNamedRange($namedRange); + } + + $this->parent->removeSheetByIndex( + $this->parent->getIndex($this) + ); + } + $this->parent = $parent; + + return $this; + } + + /** + * Get title + * + * @return string + */ + public function getTitle() + { + return $this->title; + } + + /** + * Set title + * + * @param string $pValue String containing the dimension of this worksheet + * @param string $updateFormulaCellReferences boolean Flag indicating whether cell references in formulae should + * be updated to reflect the new sheet name. + * This should be left as the default true, unless you are + * certain that no formula cells on any worksheet contain + * references to this worksheet + * @return PHPExcel_Worksheet + */ + public function setTitle($pValue = 'Worksheet', $updateFormulaCellReferences = true) + { + // Is this a 'rename' or not? + if ($this->getTitle() == $pValue) { + return $this; + } + + // Syntax check + self::checkSheetTitle($pValue); + + // Old title + $oldTitle = $this->getTitle(); + + if ($this->parent) { + // Is there already such sheet name? + if ($this->parent->sheetNameExists($pValue)) { + // Use name, but append with lowest possible integer + + if (PHPExcel_Shared_String::CountCharacters($pValue) > 29) { + $pValue = PHPExcel_Shared_String::Substring($pValue, 0, 29); + } + $i = 1; + while ($this->parent->sheetNameExists($pValue . ' ' . $i)) { + ++$i; + if ($i == 10) { + if (PHPExcel_Shared_String::CountCharacters($pValue) > 28) { + $pValue = PHPExcel_Shared_String::Substring($pValue, 0, 28); + } + } elseif ($i == 100) { + if (PHPExcel_Shared_String::CountCharacters($pValue) > 27) { + $pValue = PHPExcel_Shared_String::Substring($pValue, 0, 27); + } + } + } + + $altTitle = $pValue . ' ' . $i; + return $this->setTitle($altTitle, $updateFormulaCellReferences); + } + } + + // Set title + $this->title = $pValue; + $this->dirty = true; + + if ($this->parent && $this->parent->getCalculationEngine()) { + // New title + $newTitle = $this->getTitle(); + $this->parent->getCalculationEngine() + ->renameCalculationCacheForWorksheet($oldTitle, $newTitle); + if ($updateFormulaCellReferences) { + PHPExcel_ReferenceHelper::getInstance()->updateNamedFormulas($this->parent, $oldTitle, $newTitle); + } + } + + return $this; + } + + /** + * Get sheet state + * + * @return string Sheet state (visible, hidden, veryHidden) + */ + public function getSheetState() + { + return $this->sheetState; + } + + /** + * Set sheet state + * + * @param string $value Sheet state (visible, hidden, veryHidden) + * @return PHPExcel_Worksheet + */ + public function setSheetState($value = PHPExcel_Worksheet::SHEETSTATE_VISIBLE) + { + $this->sheetState = $value; + return $this; + } + + /** + * Get page setup + * + * @return PHPExcel_Worksheet_PageSetup + */ + public function getPageSetup() + { + return $this->pageSetup; + } + + /** + * Set page setup + * + * @param PHPExcel_Worksheet_PageSetup $pValue + * @return PHPExcel_Worksheet + */ + public function setPageSetup(PHPExcel_Worksheet_PageSetup $pValue) + { + $this->pageSetup = $pValue; + return $this; + } + + /** + * Get page margins + * + * @return PHPExcel_Worksheet_PageMargins + */ + public function getPageMargins() + { + return $this->pageMargins; + } + + /** + * Set page margins + * + * @param PHPExcel_Worksheet_PageMargins $pValue + * @return PHPExcel_Worksheet + */ + public function setPageMargins(PHPExcel_Worksheet_PageMargins $pValue) + { + $this->pageMargins = $pValue; + return $this; + } + + /** + * Get page header/footer + * + * @return PHPExcel_Worksheet_HeaderFooter + */ + public function getHeaderFooter() + { + return $this->headerFooter; + } + + /** + * Set page header/footer + * + * @param PHPExcel_Worksheet_HeaderFooter $pValue + * @return PHPExcel_Worksheet + */ + public function setHeaderFooter(PHPExcel_Worksheet_HeaderFooter $pValue) + { + $this->headerFooter = $pValue; + return $this; + } + + /** + * Get sheet view + * + * @return PHPExcel_Worksheet_SheetView + */ + public function getSheetView() + { + return $this->sheetView; + } + + /** + * Set sheet view + * + * @param PHPExcel_Worksheet_SheetView $pValue + * @return PHPExcel_Worksheet + */ + public function setSheetView(PHPExcel_Worksheet_SheetView $pValue) + { + $this->sheetView = $pValue; + return $this; + } + + /** + * Get Protection + * + * @return PHPExcel_Worksheet_Protection + */ + public function getProtection() + { + return $this->protection; + } + + /** + * Set Protection + * + * @param PHPExcel_Worksheet_Protection $pValue + * @return PHPExcel_Worksheet + */ + public function setProtection(PHPExcel_Worksheet_Protection $pValue) + { + $this->protection = $pValue; + $this->dirty = true; + + return $this; + } + + /** + * Get highest worksheet column + * + * @param string $row Return the data highest column for the specified row, + * or the highest column of any row if no row number is passed + * @return string Highest column name + */ + public function getHighestColumn($row = null) + { + if ($row == null) { + return $this->cachedHighestColumn; + } + return $this->getHighestDataColumn($row); + } + + /** + * Get highest worksheet column that contains data + * + * @param string $row Return the highest data column for the specified row, + * or the highest data column of any row if no row number is passed + * @return string Highest column name that contains data + */ + public function getHighestDataColumn($row = null) + { + return $this->cellCollection->getHighestColumn($row); + } + + /** + * Get highest worksheet row + * + * @param string $column Return the highest data row for the specified column, + * or the highest row of any column if no column letter is passed + * @return int Highest row number + */ + public function getHighestRow($column = null) + { + if ($column == null) { + return $this->cachedHighestRow; + } + return $this->getHighestDataRow($column); + } + + /** + * Get highest worksheet row that contains data + * + * @param string $column Return the highest data row for the specified column, + * or the highest data row of any column if no column letter is passed + * @return string Highest row number that contains data + */ + public function getHighestDataRow($column = null) + { + return $this->cellCollection->getHighestRow($column); + } + + /** + * Get highest worksheet column and highest row that have cell records + * + * @return array Highest column name and highest row number + */ + public function getHighestRowAndColumn() + { + return $this->cellCollection->getHighestRowAndColumn(); + } + + /** + * Set a cell value + * + * @param string $pCoordinate Coordinate of the cell + * @param mixed $pValue Value of the cell + * @param bool $returnCell Return the worksheet (false, default) or the cell (true) + * @return PHPExcel_Worksheet|PHPExcel_Cell Depending on the last parameter being specified + */ + public function setCellValue($pCoordinate = 'A1', $pValue = null, $returnCell = false) + { + $cell = $this->getCell(strtoupper($pCoordinate))->setValue($pValue); + return ($returnCell) ? $cell : $this; + } + + /** + * Set a cell value by using numeric cell coordinates + * + * @param string $pColumn Numeric column coordinate of the cell (A = 0) + * @param string $pRow Numeric row coordinate of the cell + * @param mixed $pValue Value of the cell + * @param bool $returnCell Return the worksheet (false, default) or the cell (true) + * @return PHPExcel_Worksheet|PHPExcel_Cell Depending on the last parameter being specified + */ + public function setCellValueByColumnAndRow($pColumn = 0, $pRow = 1, $pValue = null, $returnCell = false) + { + $cell = $this->getCellByColumnAndRow($pColumn, $pRow)->setValue($pValue); + return ($returnCell) ? $cell : $this; + } + + /** + * Set a cell value + * + * @param string $pCoordinate Coordinate of the cell + * @param mixed $pValue Value of the cell + * @param string $pDataType Explicit data type + * @param bool $returnCell Return the worksheet (false, default) or the cell (true) + * @return PHPExcel_Worksheet|PHPExcel_Cell Depending on the last parameter being specified + */ + public function setCellValueExplicit($pCoordinate = 'A1', $pValue = null, $pDataType = PHPExcel_Cell_DataType::TYPE_STRING, $returnCell = false) + { + // Set value + $cell = $this->getCell(strtoupper($pCoordinate))->setValueExplicit($pValue, $pDataType); + return ($returnCell) ? $cell : $this; + } + + /** + * Set a cell value by using numeric cell coordinates + * + * @param string $pColumn Numeric column coordinate of the cell + * @param string $pRow Numeric row coordinate of the cell + * @param mixed $pValue Value of the cell + * @param string $pDataType Explicit data type + * @param bool $returnCell Return the worksheet (false, default) or the cell (true) + * @return PHPExcel_Worksheet|PHPExcel_Cell Depending on the last parameter being specified + */ + public function setCellValueExplicitByColumnAndRow($pColumn = 0, $pRow = 1, $pValue = null, $pDataType = PHPExcel_Cell_DataType::TYPE_STRING, $returnCell = false) + { + $cell = $this->getCellByColumnAndRow($pColumn, $pRow)->setValueExplicit($pValue, $pDataType); + return ($returnCell) ? $cell : $this; + } + + /** + * Get cell at a specific coordinate + * + * @param string $pCoordinate Coordinate of the cell + * @param boolean $createIfNotExists Flag indicating whether a new cell should be created if it doesn't + * already exist, or a null should be returned instead + * @throws PHPExcel_Exception + * @return null|PHPExcel_Cell Cell that was found/created or null + */ + public function getCell($pCoordinate = 'A1', $createIfNotExists = true) + { + // Check cell collection + if ($this->cellCollection->isDataSet(strtoupper($pCoordinate))) { + return $this->cellCollection->getCacheData($pCoordinate); + } + + // Worksheet reference? + if (strpos($pCoordinate, '!') !== false) { + $worksheetReference = PHPExcel_Worksheet::extractSheetTitle($pCoordinate, true); + return $this->parent->getSheetByName($worksheetReference[0])->getCell(strtoupper($worksheetReference[1]), $createIfNotExists); + } + + // Named range? + if ((!preg_match('/^'.PHPExcel_Calculation::CALCULATION_REGEXP_CELLREF.'$/i', $pCoordinate, $matches)) && + (preg_match('/^'.PHPExcel_Calculation::CALCULATION_REGEXP_NAMEDRANGE.'$/i', $pCoordinate, $matches))) { + $namedRange = PHPExcel_NamedRange::resolveRange($pCoordinate, $this); + if ($namedRange !== null) { + $pCoordinate = $namedRange->getRange(); + return $namedRange->getWorksheet()->getCell($pCoordinate, $createIfNotExists); + } + } + + // Uppercase coordinate + $pCoordinate = strtoupper($pCoordinate); + + if (strpos($pCoordinate, ':') !== false || strpos($pCoordinate, ',') !== false) { + throw new PHPExcel_Exception('Cell coordinate can not be a range of cells.'); + } elseif (strpos($pCoordinate, '$') !== false) { + throw new PHPExcel_Exception('Cell coordinate must not be absolute.'); + } + + // Create new cell object, if required + return $createIfNotExists ? $this->createNewCell($pCoordinate) : null; + } + + /** + * Get cell at a specific coordinate by using numeric cell coordinates + * + * @param string $pColumn Numeric column coordinate of the cell (starting from 0) + * @param string $pRow Numeric row coordinate of the cell + * @param boolean $createIfNotExists Flag indicating whether a new cell should be created if it doesn't + * already exist, or a null should be returned instead + * @return null|PHPExcel_Cell Cell that was found/created or null + */ + public function getCellByColumnAndRow($pColumn = 0, $pRow = 1, $createIfNotExists = true) + { + $columnLetter = PHPExcel_Cell::stringFromColumnIndex($pColumn); + $coordinate = $columnLetter . $pRow; + + if ($this->cellCollection->isDataSet($coordinate)) { + return $this->cellCollection->getCacheData($coordinate); + } + + // Create new cell object, if required + return $createIfNotExists ? $this->createNewCell($coordinate) : null; + } + + /** + * Create a new cell at the specified coordinate + * + * @param string $pCoordinate Coordinate of the cell + * @return PHPExcel_Cell Cell that was created + */ + private function createNewCell($pCoordinate) + { + $cell = $this->cellCollection->addCacheData( + $pCoordinate, + new PHPExcel_Cell(null, PHPExcel_Cell_DataType::TYPE_NULL, $this) + ); + $this->cellCollectionIsSorted = false; + + // Coordinates + $aCoordinates = PHPExcel_Cell::coordinateFromString($pCoordinate); + if (PHPExcel_Cell::columnIndexFromString($this->cachedHighestColumn) < PHPExcel_Cell::columnIndexFromString($aCoordinates[0])) { + $this->cachedHighestColumn = $aCoordinates[0]; + } + $this->cachedHighestRow = max($this->cachedHighestRow, $aCoordinates[1]); + + // Cell needs appropriate xfIndex from dimensions records + // but don't create dimension records if they don't already exist + $rowDimension = $this->getRowDimension($aCoordinates[1], false); + $columnDimension = $this->getColumnDimension($aCoordinates[0], false); + + if ($rowDimension !== null && $rowDimension->getXfIndex() > 0) { + // then there is a row dimension with explicit style, assign it to the cell + $cell->setXfIndex($rowDimension->getXfIndex()); + } elseif ($columnDimension !== null && $columnDimension->getXfIndex() > 0) { + // then there is a column dimension, assign it to the cell + $cell->setXfIndex($columnDimension->getXfIndex()); + } + + return $cell; + } + + /** + * Does the cell at a specific coordinate exist? + * + * @param string $pCoordinate Coordinate of the cell + * @throws PHPExcel_Exception + * @return boolean + */ + public function cellExists($pCoordinate = 'A1') + { + // Worksheet reference? + if (strpos($pCoordinate, '!') !== false) { + $worksheetReference = PHPExcel_Worksheet::extractSheetTitle($pCoordinate, true); + return $this->parent->getSheetByName($worksheetReference[0])->cellExists(strtoupper($worksheetReference[1])); + } + + // Named range? + if ((!preg_match('/^'.PHPExcel_Calculation::CALCULATION_REGEXP_CELLREF.'$/i', $pCoordinate, $matches)) && + (preg_match('/^'.PHPExcel_Calculation::CALCULATION_REGEXP_NAMEDRANGE.'$/i', $pCoordinate, $matches))) { + $namedRange = PHPExcel_NamedRange::resolveRange($pCoordinate, $this); + if ($namedRange !== null) { + $pCoordinate = $namedRange->getRange(); + if ($this->getHashCode() != $namedRange->getWorksheet()->getHashCode()) { + if (!$namedRange->getLocalOnly()) { + return $namedRange->getWorksheet()->cellExists($pCoordinate); + } else { + throw new PHPExcel_Exception('Named range ' . $namedRange->getName() . ' is not accessible from within sheet ' . $this->getTitle()); + } + } + } else { + return false; + } + } + + // Uppercase coordinate + $pCoordinate = strtoupper($pCoordinate); + + if (strpos($pCoordinate, ':') !== false || strpos($pCoordinate, ',') !== false) { + throw new PHPExcel_Exception('Cell coordinate can not be a range of cells.'); + } elseif (strpos($pCoordinate, '$') !== false) { + throw new PHPExcel_Exception('Cell coordinate must not be absolute.'); + } else { + // Coordinates + $aCoordinates = PHPExcel_Cell::coordinateFromString($pCoordinate); + + // Cell exists? + return $this->cellCollection->isDataSet($pCoordinate); + } + } + + /** + * Cell at a specific coordinate by using numeric cell coordinates exists? + * + * @param string $pColumn Numeric column coordinate of the cell + * @param string $pRow Numeric row coordinate of the cell + * @return boolean + */ + public function cellExistsByColumnAndRow($pColumn = 0, $pRow = 1) + { + return $this->cellExists(PHPExcel_Cell::stringFromColumnIndex($pColumn) . $pRow); + } + + /** + * Get row dimension at a specific row + * + * @param int $pRow Numeric index of the row + * @return PHPExcel_Worksheet_RowDimension + */ + public function getRowDimension($pRow = 1, $create = true) + { + // Found + $found = null; + + // Get row dimension + if (!isset($this->rowDimensions[$pRow])) { + if (!$create) { + return null; + } + $this->rowDimensions[$pRow] = new PHPExcel_Worksheet_RowDimension($pRow); + + $this->cachedHighestRow = max($this->cachedHighestRow, $pRow); + } + return $this->rowDimensions[$pRow]; + } + + /** + * Get column dimension at a specific column + * + * @param string $pColumn String index of the column + * @return PHPExcel_Worksheet_ColumnDimension + */ + public function getColumnDimension($pColumn = 'A', $create = true) + { + // Uppercase coordinate + $pColumn = strtoupper($pColumn); + + // Fetch dimensions + if (!isset($this->columnDimensions[$pColumn])) { + if (!$create) { + return null; + } + $this->columnDimensions[$pColumn] = new PHPExcel_Worksheet_ColumnDimension($pColumn); + + if (PHPExcel_Cell::columnIndexFromString($this->cachedHighestColumn) < PHPExcel_Cell::columnIndexFromString($pColumn)) { + $this->cachedHighestColumn = $pColumn; + } + } + return $this->columnDimensions[$pColumn]; + } + + /** + * Get column dimension at a specific column by using numeric cell coordinates + * + * @param string $pColumn Numeric column coordinate of the cell + * @return PHPExcel_Worksheet_ColumnDimension + */ + public function getColumnDimensionByColumn($pColumn = 0) + { + return $this->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($pColumn)); + } + + /** + * Get styles + * + * @return PHPExcel_Style[] + */ + public function getStyles() + { + return $this->styles; + } + + /** + * Get default style of workbook. + * + * @deprecated + * @return PHPExcel_Style + * @throws PHPExcel_Exception + */ + public function getDefaultStyle() + { + return $this->parent->getDefaultStyle(); + } + + /** + * Set default style - should only be used by PHPExcel_IReader implementations! + * + * @deprecated + * @param PHPExcel_Style $pValue + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function setDefaultStyle(PHPExcel_Style $pValue) + { + $this->parent->getDefaultStyle()->applyFromArray(array( + 'font' => array( + 'name' => $pValue->getFont()->getName(), + 'size' => $pValue->getFont()->getSize(), + ), + )); + return $this; + } + + /** + * Get style for cell + * + * @param string $pCellCoordinate Cell coordinate (or range) to get style for + * @return PHPExcel_Style + * @throws PHPExcel_Exception + */ + public function getStyle($pCellCoordinate = 'A1') + { + // set this sheet as active + $this->parent->setActiveSheetIndex($this->parent->getIndex($this)); + + // set cell coordinate as active + $this->setSelectedCells(strtoupper($pCellCoordinate)); + + return $this->parent->getCellXfSupervisor(); + } + + /** + * Get conditional styles for a cell + * + * @param string $pCoordinate + * @return PHPExcel_Style_Conditional[] + */ + public function getConditionalStyles($pCoordinate = 'A1') + { + $pCoordinate = strtoupper($pCoordinate); + if (!isset($this->conditionalStylesCollection[$pCoordinate])) { + $this->conditionalStylesCollection[$pCoordinate] = array(); + } + return $this->conditionalStylesCollection[$pCoordinate]; + } + + /** + * Do conditional styles exist for this cell? + * + * @param string $pCoordinate + * @return boolean + */ + public function conditionalStylesExists($pCoordinate = 'A1') + { + if (isset($this->conditionalStylesCollection[strtoupper($pCoordinate)])) { + return true; + } + return false; + } + + /** + * Removes conditional styles for a cell + * + * @param string $pCoordinate + * @return PHPExcel_Worksheet + */ + public function removeConditionalStyles($pCoordinate = 'A1') + { + unset($this->conditionalStylesCollection[strtoupper($pCoordinate)]); + return $this; + } + + /** + * Get collection of conditional styles + * + * @return array + */ + public function getConditionalStylesCollection() + { + return $this->conditionalStylesCollection; + } + + /** + * Set conditional styles + * + * @param $pCoordinate string E.g. 'A1' + * @param $pValue PHPExcel_Style_Conditional[] + * @return PHPExcel_Worksheet + */ + public function setConditionalStyles($pCoordinate = 'A1', $pValue) + { + $this->conditionalStylesCollection[strtoupper($pCoordinate)] = $pValue; + return $this; + } + + /** + * Get style for cell by using numeric cell coordinates + * + * @param int $pColumn Numeric column coordinate of the cell + * @param int $pRow Numeric row coordinate of the cell + * @param int pColumn2 Numeric column coordinate of the range cell + * @param int pRow2 Numeric row coordinate of the range cell + * @return PHPExcel_Style + */ + public function getStyleByColumnAndRow($pColumn = 0, $pRow = 1, $pColumn2 = null, $pRow2 = null) + { + if (!is_null($pColumn2) && !is_null($pRow2)) { + $cellRange = PHPExcel_Cell::stringFromColumnIndex($pColumn) . $pRow . ':' . PHPExcel_Cell::stringFromColumnIndex($pColumn2) . $pRow2; + return $this->getStyle($cellRange); + } + + return $this->getStyle(PHPExcel_Cell::stringFromColumnIndex($pColumn) . $pRow); + } + + /** + * Set shared cell style to a range of cells + * + * Please note that this will overwrite existing cell styles for cells in range! + * + * @deprecated + * @param PHPExcel_Style $pSharedCellStyle Cell style to share + * @param string $pRange Range of cells (i.e. "A1:B10"), or just one cell (i.e. "A1") + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function setSharedStyle(PHPExcel_Style $pSharedCellStyle = null, $pRange = '') + { + $this->duplicateStyle($pSharedCellStyle, $pRange); + return $this; + } + + /** + * Duplicate cell style to a range of cells + * + * Please note that this will overwrite existing cell styles for cells in range! + * + * @param PHPExcel_Style $pCellStyle Cell style to duplicate + * @param string $pRange Range of cells (i.e. "A1:B10"), or just one cell (i.e. "A1") + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function duplicateStyle(PHPExcel_Style $pCellStyle = null, $pRange = '') + { + // make sure we have a real style and not supervisor + $style = $pCellStyle->getIsSupervisor() ? $pCellStyle->getSharedComponent() : $pCellStyle; + + // Add the style to the workbook if necessary + $workbook = $this->parent; + if ($existingStyle = $this->parent->getCellXfByHashCode($pCellStyle->getHashCode())) { + // there is already such cell Xf in our collection + $xfIndex = $existingStyle->getIndex(); + } else { + // we don't have such a cell Xf, need to add + $workbook->addCellXf($pCellStyle); + $xfIndex = $pCellStyle->getIndex(); + } + + // Calculate range outer borders + list($rangeStart, $rangeEnd) = PHPExcel_Cell::rangeBoundaries($pRange . ':' . $pRange); + + // Make sure we can loop upwards on rows and columns + if ($rangeStart[0] > $rangeEnd[0] && $rangeStart[1] > $rangeEnd[1]) { + $tmp = $rangeStart; + $rangeStart = $rangeEnd; + $rangeEnd = $tmp; + } + + // Loop through cells and apply styles + for ($col = $rangeStart[0]; $col <= $rangeEnd[0]; ++$col) { + for ($row = $rangeStart[1]; $row <= $rangeEnd[1]; ++$row) { + $this->getCell(PHPExcel_Cell::stringFromColumnIndex($col - 1) . $row)->setXfIndex($xfIndex); + } + } + + return $this; + } + + /** + * Duplicate conditional style to a range of cells + * + * Please note that this will overwrite existing cell styles for cells in range! + * + * @param array of PHPExcel_Style_Conditional $pCellStyle Cell style to duplicate + * @param string $pRange Range of cells (i.e. "A1:B10"), or just one cell (i.e. "A1") + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function duplicateConditionalStyle(array $pCellStyle = null, $pRange = '') + { + foreach ($pCellStyle as $cellStyle) { + if (!($cellStyle instanceof PHPExcel_Style_Conditional)) { + throw new PHPExcel_Exception('Style is not a conditional style'); + } + } + + // Calculate range outer borders + list($rangeStart, $rangeEnd) = PHPExcel_Cell::rangeBoundaries($pRange . ':' . $pRange); + + // Make sure we can loop upwards on rows and columns + if ($rangeStart[0] > $rangeEnd[0] && $rangeStart[1] > $rangeEnd[1]) { + $tmp = $rangeStart; + $rangeStart = $rangeEnd; + $rangeEnd = $tmp; + } + + // Loop through cells and apply styles + for ($col = $rangeStart[0]; $col <= $rangeEnd[0]; ++$col) { + for ($row = $rangeStart[1]; $row <= $rangeEnd[1]; ++$row) { + $this->setConditionalStyles(PHPExcel_Cell::stringFromColumnIndex($col - 1) . $row, $pCellStyle); + } + } + + return $this; + } + + /** + * Duplicate cell style array to a range of cells + * + * Please note that this will overwrite existing cell styles for cells in range, + * if they are in the styles array. For example, if you decide to set a range of + * cells to font bold, only include font bold in the styles array. + * + * @deprecated + * @param array $pStyles Array containing style information + * @param string $pRange Range of cells (i.e. "A1:B10"), or just one cell (i.e. "A1") + * @param boolean $pAdvanced Advanced mode for setting borders. + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function duplicateStyleArray($pStyles = null, $pRange = '', $pAdvanced = true) + { + $this->getStyle($pRange)->applyFromArray($pStyles, $pAdvanced); + return $this; + } + + /** + * Set break on a cell + * + * @param string $pCell Cell coordinate (e.g. A1) + * @param int $pBreak Break type (type of PHPExcel_Worksheet::BREAK_*) + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function setBreak($pCell = 'A1', $pBreak = PHPExcel_Worksheet::BREAK_NONE) + { + // Uppercase coordinate + $pCell = strtoupper($pCell); + + if ($pCell != '') { + if ($pBreak == PHPExcel_Worksheet::BREAK_NONE) { + if (isset($this->breaks[$pCell])) { + unset($this->breaks[$pCell]); + } + } else { + $this->breaks[$pCell] = $pBreak; + } + } else { + throw new PHPExcel_Exception('No cell coordinate specified.'); + } + + return $this; + } + + /** + * Set break on a cell by using numeric cell coordinates + * + * @param integer $pColumn Numeric column coordinate of the cell + * @param integer $pRow Numeric row coordinate of the cell + * @param integer $pBreak Break type (type of PHPExcel_Worksheet::BREAK_*) + * @return PHPExcel_Worksheet + */ + public function setBreakByColumnAndRow($pColumn = 0, $pRow = 1, $pBreak = PHPExcel_Worksheet::BREAK_NONE) + { + return $this->setBreak(PHPExcel_Cell::stringFromColumnIndex($pColumn) . $pRow, $pBreak); + } + + /** + * Get breaks + * + * @return array[] + */ + public function getBreaks() + { + return $this->breaks; + } + + /** + * Set merge on a cell range + * + * @param string $pRange Cell range (e.g. A1:E1) + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function mergeCells($pRange = 'A1:A1') + { + // Uppercase coordinate + $pRange = strtoupper($pRange); + + if (strpos($pRange, ':') !== false) { + $this->mergeCells[$pRange] = $pRange; + + // make sure cells are created + + // get the cells in the range + $aReferences = PHPExcel_Cell::extractAllCellReferencesInRange($pRange); + + // create upper left cell if it does not already exist + $upperLeft = $aReferences[0]; + if (!$this->cellExists($upperLeft)) { + $this->getCell($upperLeft)->setValueExplicit(null, PHPExcel_Cell_DataType::TYPE_NULL); + } + + // Blank out the rest of the cells in the range (if they exist) + $count = count($aReferences); + for ($i = 1; $i < $count; $i++) { + if ($this->cellExists($aReferences[$i])) { + $this->getCell($aReferences[$i])->setValueExplicit(null, PHPExcel_Cell_DataType::TYPE_NULL); + } + } + } else { + throw new PHPExcel_Exception('Merge must be set on a range of cells.'); + } + + return $this; + } + + /** + * Set merge on a cell range by using numeric cell coordinates + * + * @param int $pColumn1 Numeric column coordinate of the first cell + * @param int $pRow1 Numeric row coordinate of the first cell + * @param int $pColumn2 Numeric column coordinate of the last cell + * @param int $pRow2 Numeric row coordinate of the last cell + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function mergeCellsByColumnAndRow($pColumn1 = 0, $pRow1 = 1, $pColumn2 = 0, $pRow2 = 1) + { + $cellRange = PHPExcel_Cell::stringFromColumnIndex($pColumn1) . $pRow1 . ':' . PHPExcel_Cell::stringFromColumnIndex($pColumn2) . $pRow2; + return $this->mergeCells($cellRange); + } + + /** + * Remove merge on a cell range + * + * @param string $pRange Cell range (e.g. A1:E1) + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function unmergeCells($pRange = 'A1:A1') + { + // Uppercase coordinate + $pRange = strtoupper($pRange); + + if (strpos($pRange, ':') !== false) { + if (isset($this->mergeCells[$pRange])) { + unset($this->mergeCells[$pRange]); + } else { + throw new PHPExcel_Exception('Cell range ' . $pRange . ' not known as merged.'); + } + } else { + throw new PHPExcel_Exception('Merge can only be removed from a range of cells.'); + } + + return $this; + } + + /** + * Remove merge on a cell range by using numeric cell coordinates + * + * @param int $pColumn1 Numeric column coordinate of the first cell + * @param int $pRow1 Numeric row coordinate of the first cell + * @param int $pColumn2 Numeric column coordinate of the last cell + * @param int $pRow2 Numeric row coordinate of the last cell + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function unmergeCellsByColumnAndRow($pColumn1 = 0, $pRow1 = 1, $pColumn2 = 0, $pRow2 = 1) + { + $cellRange = PHPExcel_Cell::stringFromColumnIndex($pColumn1) . $pRow1 . ':' . PHPExcel_Cell::stringFromColumnIndex($pColumn2) . $pRow2; + return $this->unmergeCells($cellRange); + } + + /** + * Get merge cells array. + * + * @return array[] + */ + public function getMergeCells() + { + return $this->mergeCells; + } + + /** + * Set merge cells array for the entire sheet. Use instead mergeCells() to merge + * a single cell range. + * + * @param array + */ + public function setMergeCells($pValue = array()) + { + $this->mergeCells = $pValue; + return $this; + } + + /** + * Set protection on a cell range + * + * @param string $pRange Cell (e.g. A1) or cell range (e.g. A1:E1) + * @param string $pPassword Password to unlock the protection + * @param boolean $pAlreadyHashed If the password has already been hashed, set this to true + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function protectCells($pRange = 'A1', $pPassword = '', $pAlreadyHashed = false) + { + // Uppercase coordinate + $pRange = strtoupper($pRange); + + if (!$pAlreadyHashed) { + $pPassword = PHPExcel_Shared_PasswordHasher::hashPassword($pPassword); + } + $this->protectedCells[$pRange] = $pPassword; + + return $this; + } + + /** + * Set protection on a cell range by using numeric cell coordinates + * + * @param int $pColumn1 Numeric column coordinate of the first cell + * @param int $pRow1 Numeric row coordinate of the first cell + * @param int $pColumn2 Numeric column coordinate of the last cell + * @param int $pRow2 Numeric row coordinate of the last cell + * @param string $pPassword Password to unlock the protection + * @param boolean $pAlreadyHashed If the password has already been hashed, set this to true + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function protectCellsByColumnAndRow($pColumn1 = 0, $pRow1 = 1, $pColumn2 = 0, $pRow2 = 1, $pPassword = '', $pAlreadyHashed = false) + { + $cellRange = PHPExcel_Cell::stringFromColumnIndex($pColumn1) . $pRow1 . ':' . PHPExcel_Cell::stringFromColumnIndex($pColumn2) . $pRow2; + return $this->protectCells($cellRange, $pPassword, $pAlreadyHashed); + } + + /** + * Remove protection on a cell range + * + * @param string $pRange Cell (e.g. A1) or cell range (e.g. A1:E1) + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function unprotectCells($pRange = 'A1') + { + // Uppercase coordinate + $pRange = strtoupper($pRange); + + if (isset($this->protectedCells[$pRange])) { + unset($this->protectedCells[$pRange]); + } else { + throw new PHPExcel_Exception('Cell range ' . $pRange . ' not known as protected.'); + } + return $this; + } + + /** + * Remove protection on a cell range by using numeric cell coordinates + * + * @param int $pColumn1 Numeric column coordinate of the first cell + * @param int $pRow1 Numeric row coordinate of the first cell + * @param int $pColumn2 Numeric column coordinate of the last cell + * @param int $pRow2 Numeric row coordinate of the last cell + * @param string $pPassword Password to unlock the protection + * @param boolean $pAlreadyHashed If the password has already been hashed, set this to true + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function unprotectCellsByColumnAndRow($pColumn1 = 0, $pRow1 = 1, $pColumn2 = 0, $pRow2 = 1, $pPassword = '', $pAlreadyHashed = false) + { + $cellRange = PHPExcel_Cell::stringFromColumnIndex($pColumn1) . $pRow1 . ':' . PHPExcel_Cell::stringFromColumnIndex($pColumn2) . $pRow2; + return $this->unprotectCells($cellRange, $pPassword, $pAlreadyHashed); + } + + /** + * Get protected cells + * + * @return array[] + */ + public function getProtectedCells() + { + return $this->protectedCells; + } + + /** + * Get Autofilter + * + * @return PHPExcel_Worksheet_AutoFilter + */ + public function getAutoFilter() + { + return $this->autoFilter; + } + + /** + * Set AutoFilter + * + * @param PHPExcel_Worksheet_AutoFilter|string $pValue + * A simple string containing a Cell range like 'A1:E10' is permitted for backward compatibility + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function setAutoFilter($pValue) + { + $pRange = strtoupper($pValue); + if (is_string($pValue)) { + $this->autoFilter->setRange($pValue); + } elseif (is_object($pValue) && ($pValue instanceof PHPExcel_Worksheet_AutoFilter)) { + $this->autoFilter = $pValue; + } + return $this; + } + + /** + * Set Autofilter Range by using numeric cell coordinates + * + * @param integer $pColumn1 Numeric column coordinate of the first cell + * @param integer $pRow1 Numeric row coordinate of the first cell + * @param integer $pColumn2 Numeric column coordinate of the second cell + * @param integer $pRow2 Numeric row coordinate of the second cell + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function setAutoFilterByColumnAndRow($pColumn1 = 0, $pRow1 = 1, $pColumn2 = 0, $pRow2 = 1) + { + return $this->setAutoFilter( + PHPExcel_Cell::stringFromColumnIndex($pColumn1) . $pRow1 + . ':' . + PHPExcel_Cell::stringFromColumnIndex($pColumn2) . $pRow2 + ); + } + + /** + * Remove autofilter + * + * @return PHPExcel_Worksheet + */ + public function removeAutoFilter() + { + $this->autoFilter->setRange(null); + return $this; + } + + /** + * Get Freeze Pane + * + * @return string + */ + public function getFreezePane() + { + return $this->freezePane; + } + + /** + * Freeze Pane + * + * @param string $pCell Cell (i.e. A2) + * Examples: + * A2 will freeze the rows above cell A2 (i.e row 1) + * B1 will freeze the columns to the left of cell B1 (i.e column A) + * B2 will freeze the rows above and to the left of cell A2 + * (i.e row 1 and column A) + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function freezePane($pCell = '') + { + // Uppercase coordinate + $pCell = strtoupper($pCell); + if (strpos($pCell, ':') === false && strpos($pCell, ',') === false) { + $this->freezePane = $pCell; + } else { + throw new PHPExcel_Exception('Freeze pane can not be set on a range of cells.'); + } + return $this; + } + + /** + * Freeze Pane by using numeric cell coordinates + * + * @param int $pColumn Numeric column coordinate of the cell + * @param int $pRow Numeric row coordinate of the cell + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function freezePaneByColumnAndRow($pColumn = 0, $pRow = 1) + { + return $this->freezePane(PHPExcel_Cell::stringFromColumnIndex($pColumn) . $pRow); + } + + /** + * Unfreeze Pane + * + * @return PHPExcel_Worksheet + */ + public function unfreezePane() + { + return $this->freezePane(''); + } + + /** + * Insert a new row, updating all possible related data + * + * @param int $pBefore Insert before this one + * @param int $pNumRows Number of rows to insert + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function insertNewRowBefore($pBefore = 1, $pNumRows = 1) + { + if ($pBefore >= 1) { + $objReferenceHelper = PHPExcel_ReferenceHelper::getInstance(); + $objReferenceHelper->insertNewBefore('A' . $pBefore, 0, $pNumRows, $this); + } else { + throw new PHPExcel_Exception("Rows can only be inserted before at least row 1."); + } + return $this; + } + + /** + * Insert a new column, updating all possible related data + * + * @param int $pBefore Insert before this one + * @param int $pNumCols Number of columns to insert + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function insertNewColumnBefore($pBefore = 'A', $pNumCols = 1) + { + if (!is_numeric($pBefore)) { + $objReferenceHelper = PHPExcel_ReferenceHelper::getInstance(); + $objReferenceHelper->insertNewBefore($pBefore . '1', $pNumCols, 0, $this); + } else { + throw new PHPExcel_Exception("Column references should not be numeric."); + } + return $this; + } + + /** + * Insert a new column, updating all possible related data + * + * @param int $pBefore Insert before this one (numeric column coordinate of the cell) + * @param int $pNumCols Number of columns to insert + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function insertNewColumnBeforeByIndex($pBefore = 0, $pNumCols = 1) + { + if ($pBefore >= 0) { + return $this->insertNewColumnBefore(PHPExcel_Cell::stringFromColumnIndex($pBefore), $pNumCols); + } else { + throw new PHPExcel_Exception("Columns can only be inserted before at least column A (0)."); + } + } + + /** + * Delete a row, updating all possible related data + * + * @param int $pRow Remove starting with this one + * @param int $pNumRows Number of rows to remove + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function removeRow($pRow = 1, $pNumRows = 1) + { + if ($pRow >= 1) { + $highestRow = $this->getHighestDataRow(); + $objReferenceHelper = PHPExcel_ReferenceHelper::getInstance(); + $objReferenceHelper->insertNewBefore('A' . ($pRow + $pNumRows), 0, -$pNumRows, $this); + for ($r = 0; $r < $pNumRows; ++$r) { + $this->getCellCacheController()->removeRow($highestRow); + --$highestRow; + } + } else { + throw new PHPExcel_Exception("Rows to be deleted should at least start from row 1."); + } + return $this; + } + + /** + * Remove a column, updating all possible related data + * + * @param string $pColumn Remove starting with this one + * @param int $pNumCols Number of columns to remove + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function removeColumn($pColumn = 'A', $pNumCols = 1) + { + if (!is_numeric($pColumn)) { + $highestColumn = $this->getHighestDataColumn(); + $pColumn = PHPExcel_Cell::stringFromColumnIndex(PHPExcel_Cell::columnIndexFromString($pColumn) - 1 + $pNumCols); + $objReferenceHelper = PHPExcel_ReferenceHelper::getInstance(); + $objReferenceHelper->insertNewBefore($pColumn . '1', -$pNumCols, 0, $this); + for ($c = 0; $c < $pNumCols; ++$c) { + $this->getCellCacheController()->removeColumn($highestColumn); + $highestColumn = PHPExcel_Cell::stringFromColumnIndex(PHPExcel_Cell::columnIndexFromString($highestColumn) - 2); + } + } else { + throw new PHPExcel_Exception("Column references should not be numeric."); + } + return $this; + } + + /** + * Remove a column, updating all possible related data + * + * @param int $pColumn Remove starting with this one (numeric column coordinate of the cell) + * @param int $pNumCols Number of columns to remove + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function removeColumnByIndex($pColumn = 0, $pNumCols = 1) + { + if ($pColumn >= 0) { + return $this->removeColumn(PHPExcel_Cell::stringFromColumnIndex($pColumn), $pNumCols); + } else { + throw new PHPExcel_Exception("Columns to be deleted should at least start from column 0"); + } + } + + /** + * Show gridlines? + * + * @return boolean + */ + public function getShowGridlines() + { + return $this->showGridlines; + } + + /** + * Set show gridlines + * + * @param boolean $pValue Show gridlines (true/false) + * @return PHPExcel_Worksheet + */ + public function setShowGridlines($pValue = false) + { + $this->showGridlines = $pValue; + return $this; + } + + /** + * Print gridlines? + * + * @return boolean + */ + public function getPrintGridlines() + { + return $this->printGridlines; + } + + /** + * Set print gridlines + * + * @param boolean $pValue Print gridlines (true/false) + * @return PHPExcel_Worksheet + */ + public function setPrintGridlines($pValue = false) + { + $this->printGridlines = $pValue; + return $this; + } + + /** + * Show row and column headers? + * + * @return boolean + */ + public function getShowRowColHeaders() + { + return $this->showRowColHeaders; + } + + /** + * Set show row and column headers + * + * @param boolean $pValue Show row and column headers (true/false) + * @return PHPExcel_Worksheet + */ + public function setShowRowColHeaders($pValue = false) + { + $this->showRowColHeaders = $pValue; + return $this; + } + + /** + * Show summary below? (Row/Column outlining) + * + * @return boolean + */ + public function getShowSummaryBelow() + { + return $this->showSummaryBelow; + } + + /** + * Set show summary below + * + * @param boolean $pValue Show summary below (true/false) + * @return PHPExcel_Worksheet + */ + public function setShowSummaryBelow($pValue = true) + { + $this->showSummaryBelow = $pValue; + return $this; + } + + /** + * Show summary right? (Row/Column outlining) + * + * @return boolean + */ + public function getShowSummaryRight() + { + return $this->showSummaryRight; + } + + /** + * Set show summary right + * + * @param boolean $pValue Show summary right (true/false) + * @return PHPExcel_Worksheet + */ + public function setShowSummaryRight($pValue = true) + { + $this->showSummaryRight = $pValue; + return $this; + } + + /** + * Get comments + * + * @return PHPExcel_Comment[] + */ + public function getComments() + { + return $this->comments; + } + + /** + * Set comments array for the entire sheet. + * + * @param array of PHPExcel_Comment + * @return PHPExcel_Worksheet + */ + public function setComments($pValue = array()) + { + $this->comments = $pValue; + + return $this; + } + + /** + * Get comment for cell + * + * @param string $pCellCoordinate Cell coordinate to get comment for + * @return PHPExcel_Comment + * @throws PHPExcel_Exception + */ + public function getComment($pCellCoordinate = 'A1') + { + // Uppercase coordinate + $pCellCoordinate = strtoupper($pCellCoordinate); + + if (strpos($pCellCoordinate, ':') !== false || strpos($pCellCoordinate, ',') !== false) { + throw new PHPExcel_Exception('Cell coordinate string can not be a range of cells.'); + } elseif (strpos($pCellCoordinate, '$') !== false) { + throw new PHPExcel_Exception('Cell coordinate string must not be absolute.'); + } elseif ($pCellCoordinate == '') { + throw new PHPExcel_Exception('Cell coordinate can not be zero-length string.'); + } else { + // Check if we already have a comment for this cell. + // If not, create a new comment. + if (isset($this->comments[$pCellCoordinate])) { + return $this->comments[$pCellCoordinate]; + } else { + $newComment = new PHPExcel_Comment(); + $this->comments[$pCellCoordinate] = $newComment; + return $newComment; + } + } + } + + /** + * Get comment for cell by using numeric cell coordinates + * + * @param int $pColumn Numeric column coordinate of the cell + * @param int $pRow Numeric row coordinate of the cell + * @return PHPExcel_Comment + */ + public function getCommentByColumnAndRow($pColumn = 0, $pRow = 1) + { + return $this->getComment(PHPExcel_Cell::stringFromColumnIndex($pColumn) . $pRow); + } + + /** + * Get selected cell + * + * @deprecated + * @return string + */ + public function getSelectedCell() + { + return $this->getSelectedCells(); + } + + /** + * Get active cell + * + * @return string Example: 'A1' + */ + public function getActiveCell() + { + return $this->activeCell; + } + + /** + * Get selected cells + * + * @return string + */ + public function getSelectedCells() + { + return $this->selectedCells; + } + + /** + * Selected cell + * + * @param string $pCoordinate Cell (i.e. A1) + * @return PHPExcel_Worksheet + */ + public function setSelectedCell($pCoordinate = 'A1') + { + return $this->setSelectedCells($pCoordinate); + } + + /** + * Select a range of cells. + * + * @param string $pCoordinate Cell range, examples: 'A1', 'B2:G5', 'A:C', '3:6' + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function setSelectedCells($pCoordinate = 'A1') + { + // Uppercase coordinate + $pCoordinate = strtoupper($pCoordinate); + + // Convert 'A' to 'A:A' + $pCoordinate = preg_replace('/^([A-Z]+)$/', '${1}:${1}', $pCoordinate); + + // Convert '1' to '1:1' + $pCoordinate = preg_replace('/^([0-9]+)$/', '${1}:${1}', $pCoordinate); + + // Convert 'A:C' to 'A1:C1048576' + $pCoordinate = preg_replace('/^([A-Z]+):([A-Z]+)$/', '${1}1:${2}1048576', $pCoordinate); + + // Convert '1:3' to 'A1:XFD3' + $pCoordinate = preg_replace('/^([0-9]+):([0-9]+)$/', 'A${1}:XFD${2}', $pCoordinate); + + if (strpos($pCoordinate, ':') !== false || strpos($pCoordinate, ',') !== false) { + list($first, ) = PHPExcel_Cell::splitRange($pCoordinate); + $this->activeCell = $first[0]; + } else { + $this->activeCell = $pCoordinate; + } + $this->selectedCells = $pCoordinate; + return $this; + } + + /** + * Selected cell by using numeric cell coordinates + * + * @param int $pColumn Numeric column coordinate of the cell + * @param int $pRow Numeric row coordinate of the cell + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function setSelectedCellByColumnAndRow($pColumn = 0, $pRow = 1) + { + return $this->setSelectedCells(PHPExcel_Cell::stringFromColumnIndex($pColumn) . $pRow); + } + + /** + * Get right-to-left + * + * @return boolean + */ + public function getRightToLeft() + { + return $this->rightToLeft; + } + + /** + * Set right-to-left + * + * @param boolean $value Right-to-left true/false + * @return PHPExcel_Worksheet + */ + public function setRightToLeft($value = false) + { + $this->rightToLeft = $value; + return $this; + } + + /** + * Fill worksheet from values in array + * + * @param array $source Source array + * @param mixed $nullValue Value in source array that stands for blank cell + * @param string $startCell Insert array starting from this cell address as the top left coordinate + * @param boolean $strictNullComparison Apply strict comparison when testing for null values in the array + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet + */ + public function fromArray($source = null, $nullValue = null, $startCell = 'A1', $strictNullComparison = false) + { + if (is_array($source)) { + // Convert a 1-D array to 2-D (for ease of looping) + if (!is_array(end($source))) { + $source = array($source); + } + + // start coordinate + list ($startColumn, $startRow) = PHPExcel_Cell::coordinateFromString($startCell); + + // Loop through $source + foreach ($source as $rowData) { + $currentColumn = $startColumn; + foreach ($rowData as $cellValue) { + if ($strictNullComparison) { + if ($cellValue !== $nullValue) { + // Set cell value + $this->getCell($currentColumn . $startRow)->setValue($cellValue); + } + } else { + if ($cellValue != $nullValue) { + // Set cell value + $this->getCell($currentColumn . $startRow)->setValue($cellValue); + } + } + ++$currentColumn; + } + ++$startRow; + } + } else { + throw new PHPExcel_Exception("Parameter \$source should be an array."); + } + return $this; + } + + /** + * Create array from a range of cells + * + * @param string $pRange Range of cells (i.e. "A1:B10"), or just one cell (i.e. "A1") + * @param mixed $nullValue Value returned in the array entry if a cell doesn't exist + * @param boolean $calculateFormulas Should formulas be calculated? + * @param boolean $formatData Should formatting be applied to cell values? + * @param boolean $returnCellRef False - Return a simple array of rows and columns indexed by number counting from zero + * True - Return rows and columns indexed by their actual row and column IDs + * @return array + */ + public function rangeToArray($pRange = 'A1', $nullValue = null, $calculateFormulas = true, $formatData = true, $returnCellRef = false) + { + // Returnvalue + $returnValue = array(); + // Identify the range that we need to extract from the worksheet + list($rangeStart, $rangeEnd) = PHPExcel_Cell::rangeBoundaries($pRange); + $minCol = PHPExcel_Cell::stringFromColumnIndex($rangeStart[0] -1); + $minRow = $rangeStart[1]; + $maxCol = PHPExcel_Cell::stringFromColumnIndex($rangeEnd[0] -1); + $maxRow = $rangeEnd[1]; + + $maxCol++; + // Loop through rows + $r = -1; + for ($row = $minRow; $row <= $maxRow; ++$row) { + $rRef = ($returnCellRef) ? $row : ++$r; + $c = -1; + // Loop through columns in the current row + for ($col = $minCol; $col != $maxCol; ++$col) { + $cRef = ($returnCellRef) ? $col : ++$c; + // Using getCell() will create a new cell if it doesn't already exist. We don't want that to happen + // so we test and retrieve directly against cellCollection + if ($this->cellCollection->isDataSet($col.$row)) { + // Cell exists + $cell = $this->cellCollection->getCacheData($col.$row); + if ($cell->getValue() !== null) { + if ($cell->getValue() instanceof PHPExcel_RichText) { + $returnValue[$rRef][$cRef] = $cell->getValue()->getPlainText(); + } else { + if ($calculateFormulas) { + $returnValue[$rRef][$cRef] = $cell->getCalculatedValue(); + } else { + $returnValue[$rRef][$cRef] = $cell->getValue(); + } + } + + if ($formatData) { + $style = $this->parent->getCellXfByIndex($cell->getXfIndex()); + $returnValue[$rRef][$cRef] = PHPExcel_Style_NumberFormat::toFormattedString( + $returnValue[$rRef][$cRef], + ($style && $style->getNumberFormat()) ? $style->getNumberFormat()->getFormatCode() : PHPExcel_Style_NumberFormat::FORMAT_GENERAL + ); + } + } else { + // Cell holds a NULL + $returnValue[$rRef][$cRef] = $nullValue; + } + } else { + // Cell doesn't exist + $returnValue[$rRef][$cRef] = $nullValue; + } + } + } + + // Return + return $returnValue; + } + + + /** + * Create array from a range of cells + * + * @param string $pNamedRange Name of the Named Range + * @param mixed $nullValue Value returned in the array entry if a cell doesn't exist + * @param boolean $calculateFormulas Should formulas be calculated? + * @param boolean $formatData Should formatting be applied to cell values? + * @param boolean $returnCellRef False - Return a simple array of rows and columns indexed by number counting from zero + * True - Return rows and columns indexed by their actual row and column IDs + * @return array + * @throws PHPExcel_Exception + */ + public function namedRangeToArray($pNamedRange = '', $nullValue = null, $calculateFormulas = true, $formatData = true, $returnCellRef = false) + { + $namedRange = PHPExcel_NamedRange::resolveRange($pNamedRange, $this); + if ($namedRange !== null) { + $pWorkSheet = $namedRange->getWorksheet(); + $pCellRange = $namedRange->getRange(); + + return $pWorkSheet->rangeToArray($pCellRange, $nullValue, $calculateFormulas, $formatData, $returnCellRef); + } + + throw new PHPExcel_Exception('Named Range '.$pNamedRange.' does not exist.'); + } + + + /** + * Create array from worksheet + * + * @param mixed $nullValue Value returned in the array entry if a cell doesn't exist + * @param boolean $calculateFormulas Should formulas be calculated? + * @param boolean $formatData Should formatting be applied to cell values? + * @param boolean $returnCellRef False - Return a simple array of rows and columns indexed by number counting from zero + * True - Return rows and columns indexed by their actual row and column IDs + * @return array + */ + public function toArray($nullValue = null, $calculateFormulas = true, $formatData = true, $returnCellRef = false) + { + // Garbage collect... + $this->garbageCollect(); + + // Identify the range that we need to extract from the worksheet + $maxCol = $this->getHighestColumn(); + $maxRow = $this->getHighestRow(); + // Return + return $this->rangeToArray('A1:'.$maxCol.$maxRow, $nullValue, $calculateFormulas, $formatData, $returnCellRef); + } + + /** + * Get row iterator + * + * @param integer $startRow The row number at which to start iterating + * @param integer $endRow The row number at which to stop iterating + * + * @return PHPExcel_Worksheet_RowIterator + */ + public function getRowIterator($startRow = 1, $endRow = null) + { + return new PHPExcel_Worksheet_RowIterator($this, $startRow, $endRow); + } + + /** + * Get column iterator + * + * @param string $startColumn The column address at which to start iterating + * @param string $endColumn The column address at which to stop iterating + * + * @return PHPExcel_Worksheet_ColumnIterator + */ + public function getColumnIterator($startColumn = 'A', $endColumn = null) + { + return new PHPExcel_Worksheet_ColumnIterator($this, $startColumn, $endColumn); + } + + /** + * Run PHPExcel garabage collector. + * + * @return PHPExcel_Worksheet + */ + public function garbageCollect() + { + // Flush cache + $this->cellCollection->getCacheData('A1'); + // Build a reference table from images +// $imageCoordinates = array(); +// $iterator = $this->getDrawingCollection()->getIterator(); +// while ($iterator->valid()) { +// $imageCoordinates[$iterator->current()->getCoordinates()] = true; +// +// $iterator->next(); +// } +// + // Lookup highest column and highest row if cells are cleaned + $colRow = $this->cellCollection->getHighestRowAndColumn(); + $highestRow = $colRow['row']; + $highestColumn = PHPExcel_Cell::columnIndexFromString($colRow['column']); + + // Loop through column dimensions + foreach ($this->columnDimensions as $dimension) { + $highestColumn = max($highestColumn, PHPExcel_Cell::columnIndexFromString($dimension->getColumnIndex())); + } + + // Loop through row dimensions + foreach ($this->rowDimensions as $dimension) { + $highestRow = max($highestRow, $dimension->getRowIndex()); + } + + // Cache values + if ($highestColumn < 0) { + $this->cachedHighestColumn = 'A'; + } else { + $this->cachedHighestColumn = PHPExcel_Cell::stringFromColumnIndex(--$highestColumn); + } + $this->cachedHighestRow = $highestRow; + + // Return + return $this; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->dirty) { + $this->hash = md5($this->title . $this->autoFilter . ($this->protection->isProtectionEnabled() ? 't' : 'f') . __CLASS__); + $this->dirty = false; + } + return $this->hash; + } + + /** + * Extract worksheet title from range. + * + * Example: extractSheetTitle("testSheet!A1") ==> 'A1' + * Example: extractSheetTitle("'testSheet 1'!A1", true) ==> array('testSheet 1', 'A1'); + * + * @param string $pRange Range to extract title from + * @param bool $returnRange Return range? (see example) + * @return mixed + */ + public static function extractSheetTitle($pRange, $returnRange = false) + { + // Sheet title included? + if (($sep = strpos($pRange, '!')) === false) { + return ''; + } + + if ($returnRange) { + return array(trim(substr($pRange, 0, $sep), "'"), substr($pRange, $sep + 1)); + } + + return substr($pRange, $sep + 1); + } + + /** + * Get hyperlink + * + * @param string $pCellCoordinate Cell coordinate to get hyperlink for + */ + public function getHyperlink($pCellCoordinate = 'A1') + { + // return hyperlink if we already have one + if (isset($this->hyperlinkCollection[$pCellCoordinate])) { + return $this->hyperlinkCollection[$pCellCoordinate]; + } + + // else create hyperlink + $this->hyperlinkCollection[$pCellCoordinate] = new PHPExcel_Cell_Hyperlink(); + return $this->hyperlinkCollection[$pCellCoordinate]; + } + + /** + * Set hyperlnk + * + * @param string $pCellCoordinate Cell coordinate to insert hyperlink + * @param PHPExcel_Cell_Hyperlink $pHyperlink + * @return PHPExcel_Worksheet + */ + public function setHyperlink($pCellCoordinate = 'A1', PHPExcel_Cell_Hyperlink $pHyperlink = null) + { + if ($pHyperlink === null) { + unset($this->hyperlinkCollection[$pCellCoordinate]); + } else { + $this->hyperlinkCollection[$pCellCoordinate] = $pHyperlink; + } + return $this; + } + + /** + * Hyperlink at a specific coordinate exists? + * + * @param string $pCoordinate + * @return boolean + */ + public function hyperlinkExists($pCoordinate = 'A1') + { + return isset($this->hyperlinkCollection[$pCoordinate]); + } + + /** + * Get collection of hyperlinks + * + * @return PHPExcel_Cell_Hyperlink[] + */ + public function getHyperlinkCollection() + { + return $this->hyperlinkCollection; + } + + /** + * Get data validation + * + * @param string $pCellCoordinate Cell coordinate to get data validation for + */ + public function getDataValidation($pCellCoordinate = 'A1') + { + // return data validation if we already have one + if (isset($this->dataValidationCollection[$pCellCoordinate])) { + return $this->dataValidationCollection[$pCellCoordinate]; + } + + // else create data validation + $this->dataValidationCollection[$pCellCoordinate] = new PHPExcel_Cell_DataValidation(); + return $this->dataValidationCollection[$pCellCoordinate]; + } + + /** + * Set data validation + * + * @param string $pCellCoordinate Cell coordinate to insert data validation + * @param PHPExcel_Cell_DataValidation $pDataValidation + * @return PHPExcel_Worksheet + */ + public function setDataValidation($pCellCoordinate = 'A1', PHPExcel_Cell_DataValidation $pDataValidation = null) + { + if ($pDataValidation === null) { + unset($this->dataValidationCollection[$pCellCoordinate]); + } else { + $this->dataValidationCollection[$pCellCoordinate] = $pDataValidation; + } + return $this; + } + + /** + * Data validation at a specific coordinate exists? + * + * @param string $pCoordinate + * @return boolean + */ + public function dataValidationExists($pCoordinate = 'A1') + { + return isset($this->dataValidationCollection[$pCoordinate]); + } + + /** + * Get collection of data validations + * + * @return PHPExcel_Cell_DataValidation[] + */ + public function getDataValidationCollection() + { + return $this->dataValidationCollection; + } + + /** + * Accepts a range, returning it as a range that falls within the current highest row and column of the worksheet + * + * @param string $range + * @return string Adjusted range value + */ + public function shrinkRangeToFit($range) + { + $maxCol = $this->getHighestColumn(); + $maxRow = $this->getHighestRow(); + $maxCol = PHPExcel_Cell::columnIndexFromString($maxCol); + + $rangeBlocks = explode(' ', $range); + foreach ($rangeBlocks as &$rangeSet) { + $rangeBoundaries = PHPExcel_Cell::getRangeBoundaries($rangeSet); + + if (PHPExcel_Cell::columnIndexFromString($rangeBoundaries[0][0]) > $maxCol) { + $rangeBoundaries[0][0] = PHPExcel_Cell::stringFromColumnIndex($maxCol); + } + if ($rangeBoundaries[0][1] > $maxRow) { + $rangeBoundaries[0][1] = $maxRow; + } + if (PHPExcel_Cell::columnIndexFromString($rangeBoundaries[1][0]) > $maxCol) { + $rangeBoundaries[1][0] = PHPExcel_Cell::stringFromColumnIndex($maxCol); + } + if ($rangeBoundaries[1][1] > $maxRow) { + $rangeBoundaries[1][1] = $maxRow; + } + $rangeSet = $rangeBoundaries[0][0].$rangeBoundaries[0][1].':'.$rangeBoundaries[1][0].$rangeBoundaries[1][1]; + } + unset($rangeSet); + $stRange = implode(' ', $rangeBlocks); + + return $stRange; + } + + /** + * Get tab color + * + * @return PHPExcel_Style_Color + */ + public function getTabColor() + { + if ($this->tabColor === null) { + $this->tabColor = new PHPExcel_Style_Color(); + } + return $this->tabColor; + } + + /** + * Reset tab color + * + * @return PHPExcel_Worksheet + */ + public function resetTabColor() + { + $this->tabColor = null; + unset($this->tabColor); + + return $this; + } + + /** + * Tab color set? + * + * @return boolean + */ + public function isTabColorSet() + { + return ($this->tabColor !== null); + } + + /** + * Copy worksheet (!= clone!) + * + * @return PHPExcel_Worksheet + */ + public function copy() + { + $copied = clone $this; + + return $copied; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + foreach ($this as $key => $val) { + if ($key == 'parent') { + continue; + } + + if (is_object($val) || (is_array($val))) { + if ($key == 'cellCollection') { + $newCollection = clone $this->cellCollection; + $newCollection->copyCellCollection($this); + $this->cellCollection = $newCollection; + } elseif ($key == 'drawingCollection') { + $newCollection = clone $this->drawingCollection; + $this->drawingCollection = $newCollection; + } elseif (($key == 'autoFilter') && ($this->autoFilter instanceof PHPExcel_Worksheet_AutoFilter)) { + $newAutoFilter = clone $this->autoFilter; + $this->autoFilter = $newAutoFilter; + $this->autoFilter->setParent($this); + } else { + $this->{$key} = unserialize(serialize($val)); + } + } + } + } +/** + * Define the code name of the sheet + * + * @param null|string Same rule as Title minus space not allowed (but, like Excel, change silently space to underscore) + * @return objWorksheet + * @throws PHPExcel_Exception + */ + public function setCodeName($pValue = null) + { + // Is this a 'rename' or not? + if ($this->getCodeName() == $pValue) { + return $this; + } + $pValue = str_replace(' ', '_', $pValue);//Excel does this automatically without flinching, we are doing the same + // Syntax check + // throw an exception if not valid + self::checkSheetCodeName($pValue); + + // We use the same code that setTitle to find a valid codeName else not using a space (Excel don't like) but a '_' + + if ($this->getParent()) { + // Is there already such sheet name? + if ($this->getParent()->sheetCodeNameExists($pValue)) { + // Use name, but append with lowest possible integer + + if (PHPExcel_Shared_String::CountCharacters($pValue) > 29) { + $pValue = PHPExcel_Shared_String::Substring($pValue, 0, 29); + } + $i = 1; + while ($this->getParent()->sheetCodeNameExists($pValue . '_' . $i)) { + ++$i; + if ($i == 10) { + if (PHPExcel_Shared_String::CountCharacters($pValue) > 28) { + $pValue = PHPExcel_Shared_String::Substring($pValue, 0, 28); + } + } elseif ($i == 100) { + if (PHPExcel_Shared_String::CountCharacters($pValue) > 27) { + $pValue = PHPExcel_Shared_String::Substring($pValue, 0, 27); + } + } + } + + $pValue = $pValue . '_' . $i;// ok, we have a valid name + //codeName is'nt used in formula : no need to call for an update + //return $this->setTitle($altTitle, $updateFormulaCellReferences); + } + } + + $this->codeName=$pValue; + return $this; + } + /** + * Return the code name of the sheet + * + * @return null|string + */ + public function getCodeName() + { + return $this->codeName; + } + /** + * Sheet has a code name ? + * @return boolean + */ + public function hasCodeName() + { + return !(is_null($this->codeName)); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter.php new file mode 100644 index 0000000..6ec8a44 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter.php @@ -0,0 +1,846 @@ +<?php + +/** + * PHPExcel_Worksheet_AutoFilter + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_AutoFilter +{ + /** + * Autofilter Worksheet + * + * @var PHPExcel_Worksheet + */ + private $workSheet; + + + /** + * Autofilter Range + * + * @var string + */ + private $range = ''; + + + /** + * Autofilter Column Ruleset + * + * @var array of PHPExcel_Worksheet_AutoFilter_Column + */ + private $columns = array(); + + + /** + * Create a new PHPExcel_Worksheet_AutoFilter + * + * @param string $pRange Cell range (i.e. A1:E10) + * @param PHPExcel_Worksheet $pSheet + */ + public function __construct($pRange = '', PHPExcel_Worksheet $pSheet = null) + { + $this->range = $pRange; + $this->workSheet = $pSheet; + } + + /** + * Get AutoFilter Parent Worksheet + * + * @return PHPExcel_Worksheet + */ + public function getParent() + { + return $this->workSheet; + } + + /** + * Set AutoFilter Parent Worksheet + * + * @param PHPExcel_Worksheet $pSheet + * @return PHPExcel_Worksheet_AutoFilter + */ + public function setParent(PHPExcel_Worksheet $pSheet = null) + { + $this->workSheet = $pSheet; + + return $this; + } + + /** + * Get AutoFilter Range + * + * @return string + */ + public function getRange() + { + return $this->range; + } + + /** + * Set AutoFilter Range + * + * @param string $pRange Cell range (i.e. A1:E10) + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_AutoFilter + */ + public function setRange($pRange = '') + { + // Uppercase coordinate + $cellAddress = explode('!', strtoupper($pRange)); + if (count($cellAddress) > 1) { + list($worksheet, $pRange) = $cellAddress; + } + + if (strpos($pRange, ':') !== false) { + $this->range = $pRange; + } elseif (empty($pRange)) { + $this->range = ''; + } else { + throw new PHPExcel_Exception('Autofilter must be set on a range of cells.'); + } + + if (empty($pRange)) { + // Discard all column rules + $this->columns = array(); + } else { + // Discard any column rules that are no longer valid within this range + list($rangeStart, $rangeEnd) = PHPExcel_Cell::rangeBoundaries($this->range); + foreach ($this->columns as $key => $value) { + $colIndex = PHPExcel_Cell::columnIndexFromString($key); + if (($rangeStart[0] > $colIndex) || ($rangeEnd[0] < $colIndex)) { + unset($this->columns[$key]); + } + } + } + + return $this; + } + + /** + * Get all AutoFilter Columns + * + * @throws PHPExcel_Exception + * @return array of PHPExcel_Worksheet_AutoFilter_Column + */ + public function getColumns() + { + return $this->columns; + } + + /** + * Validate that the specified column is in the AutoFilter range + * + * @param string $column Column name (e.g. A) + * @throws PHPExcel_Exception + * @return integer The column offset within the autofilter range + */ + public function testColumnInRange($column) + { + if (empty($this->range)) { + throw new PHPExcel_Exception("No autofilter range is defined."); + } + + $columnIndex = PHPExcel_Cell::columnIndexFromString($column); + list($rangeStart, $rangeEnd) = PHPExcel_Cell::rangeBoundaries($this->range); + if (($rangeStart[0] > $columnIndex) || ($rangeEnd[0] < $columnIndex)) { + throw new PHPExcel_Exception("Column is outside of current autofilter range."); + } + + return $columnIndex - $rangeStart[0]; + } + + /** + * Get a specified AutoFilter Column Offset within the defined AutoFilter range + * + * @param string $pColumn Column name (e.g. A) + * @throws PHPExcel_Exception + * @return integer The offset of the specified column within the autofilter range + */ + public function getColumnOffset($pColumn) + { + return $this->testColumnInRange($pColumn); + } + + /** + * Get a specified AutoFilter Column + * + * @param string $pColumn Column name (e.g. A) + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_AutoFilter_Column + */ + public function getColumn($pColumn) + { + $this->testColumnInRange($pColumn); + + if (!isset($this->columns[$pColumn])) { + $this->columns[$pColumn] = new PHPExcel_Worksheet_AutoFilter_Column($pColumn, $this); + } + + return $this->columns[$pColumn]; + } + + /** + * Get a specified AutoFilter Column by it's offset + * + * @param integer $pColumnOffset Column offset within range (starting from 0) + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_AutoFilter_Column + */ + public function getColumnByOffset($pColumnOffset = 0) + { + list($rangeStart, $rangeEnd) = PHPExcel_Cell::rangeBoundaries($this->range); + $pColumn = PHPExcel_Cell::stringFromColumnIndex($rangeStart[0] + $pColumnOffset - 1); + + return $this->getColumn($pColumn); + } + + /** + * Set AutoFilter + * + * @param PHPExcel_Worksheet_AutoFilter_Column|string $pColumn + * A simple string containing a Column ID like 'A' is permitted + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_AutoFilter + */ + public function setColumn($pColumn) + { + if ((is_string($pColumn)) && (!empty($pColumn))) { + $column = $pColumn; + } elseif (is_object($pColumn) && ($pColumn instanceof PHPExcel_Worksheet_AutoFilter_Column)) { + $column = $pColumn->getColumnIndex(); + } else { + throw new PHPExcel_Exception("Column is not within the autofilter range."); + } + $this->testColumnInRange($column); + + if (is_string($pColumn)) { + $this->columns[$pColumn] = new PHPExcel_Worksheet_AutoFilter_Column($pColumn, $this); + } elseif (is_object($pColumn) && ($pColumn instanceof PHPExcel_Worksheet_AutoFilter_Column)) { + $pColumn->setParent($this); + $this->columns[$column] = $pColumn; + } + ksort($this->columns); + + return $this; + } + + /** + * Clear a specified AutoFilter Column + * + * @param string $pColumn Column name (e.g. A) + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_AutoFilter + */ + public function clearColumn($pColumn) + { + $this->testColumnInRange($pColumn); + + if (isset($this->columns[$pColumn])) { + unset($this->columns[$pColumn]); + } + + return $this; + } + + /** + * Shift an AutoFilter Column Rule to a different column + * + * Note: This method bypasses validation of the destination column to ensure it is within this AutoFilter range. + * Nor does it verify whether any column rule already exists at $toColumn, but will simply overrideany existing value. + * Use with caution. + * + * @param string $fromColumn Column name (e.g. A) + * @param string $toColumn Column name (e.g. B) + * @return PHPExcel_Worksheet_AutoFilter + */ + public function shiftColumn($fromColumn = null, $toColumn = null) + { + $fromColumn = strtoupper($fromColumn); + $toColumn = strtoupper($toColumn); + + if (($fromColumn !== null) && (isset($this->columns[$fromColumn])) && ($toColumn !== null)) { + $this->columns[$fromColumn]->setParent(); + $this->columns[$fromColumn]->setColumnIndex($toColumn); + $this->columns[$toColumn] = $this->columns[$fromColumn]; + $this->columns[$toColumn]->setParent($this); + unset($this->columns[$fromColumn]); + + ksort($this->columns); + } + + return $this; + } + + + /** + * Test if cell value is in the defined set of values + * + * @param mixed $cellValue + * @param mixed[] $dataSet + * @return boolean + */ + private static function filterTestInSimpleDataSet($cellValue, $dataSet) + { + $dataSetValues = $dataSet['filterValues']; + $blanks = $dataSet['blanks']; + if (($cellValue == '') || ($cellValue === null)) { + return $blanks; + } + return in_array($cellValue, $dataSetValues); + } + + /** + * Test if cell value is in the defined set of Excel date values + * + * @param mixed $cellValue + * @param mixed[] $dataSet + * @return boolean + */ + private static function filterTestInDateGroupSet($cellValue, $dataSet) + { + $dateSet = $dataSet['filterValues']; + $blanks = $dataSet['blanks']; + if (($cellValue == '') || ($cellValue === null)) { + return $blanks; + } + + if (is_numeric($cellValue)) { + $dateValue = PHPExcel_Shared_Date::ExcelToPHP($cellValue); + if ($cellValue < 1) { + // Just the time part + $dtVal = date('His', $dateValue); + $dateSet = $dateSet['time']; + } elseif ($cellValue == floor($cellValue)) { + // Just the date part + $dtVal = date('Ymd', $dateValue); + $dateSet = $dateSet['date']; + } else { + // date and time parts + $dtVal = date('YmdHis', $dateValue); + $dateSet = $dateSet['dateTime']; + } + foreach ($dateSet as $dateValue) { + // Use of substr to extract value at the appropriate group level + if (substr($dtVal, 0, strlen($dateValue)) == $dateValue) { + return true; + } + } + } + return false; + } + + /** + * Test if cell value is within a set of values defined by a ruleset + * + * @param mixed $cellValue + * @param mixed[] $ruleSet + * @return boolean + */ + private static function filterTestInCustomDataSet($cellValue, $ruleSet) + { + $dataSet = $ruleSet['filterRules']; + $join = $ruleSet['join']; + $customRuleForBlanks = isset($ruleSet['customRuleForBlanks']) ? $ruleSet['customRuleForBlanks'] : false; + + if (!$customRuleForBlanks) { + // Blank cells are always ignored, so return a FALSE + if (($cellValue == '') || ($cellValue === null)) { + return false; + } + } + $returnVal = ($join == PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_COLUMN_JOIN_AND); + foreach ($dataSet as $rule) { + if (is_numeric($rule['value'])) { + // Numeric values are tested using the appropriate operator + switch ($rule['operator']) { + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL: + $retVal = ($cellValue == $rule['value']); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_NOTEQUAL: + $retVal = ($cellValue != $rule['value']); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_GREATERTHAN: + $retVal = ($cellValue > $rule['value']); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_GREATERTHANOREQUAL: + $retVal = ($cellValue >= $rule['value']); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_LESSTHAN: + $retVal = ($cellValue < $rule['value']); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_LESSTHANOREQUAL: + $retVal = ($cellValue <= $rule['value']); + break; + } + } elseif ($rule['value'] == '') { + switch ($rule['operator']) { + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL: + $retVal = (($cellValue == '') || ($cellValue === null)); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_NOTEQUAL: + $retVal = (($cellValue != '') && ($cellValue !== null)); + break; + default: + $retVal = true; + break; + } + } else { + // String values are always tested for equality, factoring in for wildcards (hence a regexp test) + $retVal = preg_match('/^'.$rule['value'].'$/i', $cellValue); + } + // If there are multiple conditions, then we need to test both using the appropriate join operator + switch ($join) { + case PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_COLUMN_JOIN_OR: + $returnVal = $returnVal || $retVal; + // Break as soon as we have a TRUE match for OR joins, + // to avoid unnecessary additional code execution + if ($returnVal) { + return $returnVal; + } + break; + case PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_COLUMN_JOIN_AND: + $returnVal = $returnVal && $retVal; + break; + } + } + + return $returnVal; + } + + /** + * Test if cell date value is matches a set of values defined by a set of months + * + * @param mixed $cellValue + * @param mixed[] $monthSet + * @return boolean + */ + private static function filterTestInPeriodDateSet($cellValue, $monthSet) + { + // Blank cells are always ignored, so return a FALSE + if (($cellValue == '') || ($cellValue === null)) { + return false; + } + + if (is_numeric($cellValue)) { + $dateValue = date('m', PHPExcel_Shared_Date::ExcelToPHP($cellValue)); + if (in_array($dateValue, $monthSet)) { + return true; + } + } + + return false; + } + + /** + * Search/Replace arrays to convert Excel wildcard syntax to a regexp syntax for preg_matching + * + * @var array + */ + private static $fromReplace = array('\*', '\?', '~~', '~.*', '~.?'); + private static $toReplace = array('.*', '.', '~', '\*', '\?'); + + + /** + * Convert a dynamic rule daterange to a custom filter range expression for ease of calculation + * + * @param string $dynamicRuleType + * @param PHPExcel_Worksheet_AutoFilter_Column &$filterColumn + * @return mixed[] + */ + private function dynamicFilterDateRange($dynamicRuleType, &$filterColumn) + { + $rDateType = PHPExcel_Calculation_Functions::getReturnDateType(); + PHPExcel_Calculation_Functions::setReturnDateType(PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC); + $val = $maxVal = null; + + $ruleValues = array(); + $baseDate = PHPExcel_Calculation_DateTime::DATENOW(); + // Calculate start/end dates for the required date range based on current date + switch ($dynamicRuleType) { + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_LASTWEEK: + $baseDate = strtotime('-7 days', $baseDate); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_NEXTWEEK: + $baseDate = strtotime('-7 days', $baseDate); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_LASTMONTH: + $baseDate = strtotime('-1 month', gmmktime(0, 0, 0, 1, date('m', $baseDate), date('Y', $baseDate))); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_NEXTMONTH: + $baseDate = strtotime('+1 month', gmmktime(0, 0, 0, 1, date('m', $baseDate), date('Y', $baseDate))); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_LASTQUARTER: + $baseDate = strtotime('-3 month', gmmktime(0, 0, 0, 1, date('m', $baseDate), date('Y', $baseDate))); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_NEXTQUARTER: + $baseDate = strtotime('+3 month', gmmktime(0, 0, 0, 1, date('m', $baseDate), date('Y', $baseDate))); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_LASTYEAR: + $baseDate = strtotime('-1 year', gmmktime(0, 0, 0, 1, date('m', $baseDate), date('Y', $baseDate))); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_NEXTYEAR: + $baseDate = strtotime('+1 year', gmmktime(0, 0, 0, 1, date('m', $baseDate), date('Y', $baseDate))); + break; + } + + switch ($dynamicRuleType) { + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_TODAY: + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_YESTERDAY: + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_TOMORROW: + $maxVal = (int) PHPExcel_Shared_Date::PHPtoExcel(strtotime('+1 day', $baseDate)); + $val = (int) PHPExcel_Shared_Date::PHPToExcel($baseDate); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_YEARTODATE: + $maxVal = (int) PHPExcel_Shared_Date::PHPtoExcel(strtotime('+1 day', $baseDate)); + $val = (int) PHPExcel_Shared_Date::PHPToExcel(gmmktime(0, 0, 0, 1, 1, date('Y', $baseDate))); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_THISYEAR: + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_LASTYEAR: + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_NEXTYEAR: + $maxVal = (int) PHPExcel_Shared_Date::PHPToExcel(gmmktime(0, 0, 0, 31, 12, date('Y', $baseDate))); + ++$maxVal; + $val = (int) PHPExcel_Shared_Date::PHPToExcel(gmmktime(0, 0, 0, 1, 1, date('Y', $baseDate))); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_THISQUARTER: + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_LASTQUARTER: + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_NEXTQUARTER: + $thisMonth = date('m', $baseDate); + $thisQuarter = floor(--$thisMonth / 3); + $maxVal = (int) PHPExcel_Shared_Date::PHPtoExcel(gmmktime(0, 0, 0, date('t', $baseDate), (1+$thisQuarter)*3, date('Y', $baseDate))); + ++$maxVal; + $val = (int) PHPExcel_Shared_Date::PHPToExcel(gmmktime(0, 0, 0, 1, 1+$thisQuarter*3, date('Y', $baseDate))); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_THISMONTH: + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_LASTMONTH: + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_NEXTMONTH: + $maxVal = (int) PHPExcel_Shared_Date::PHPtoExcel(gmmktime(0, 0, 0, date('t', $baseDate), date('m', $baseDate), date('Y', $baseDate))); + ++$maxVal; + $val = (int) PHPExcel_Shared_Date::PHPToExcel(gmmktime(0, 0, 0, 1, date('m', $baseDate), date('Y', $baseDate))); + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_THISWEEK: + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_LASTWEEK: + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_NEXTWEEK: + $dayOfWeek = date('w', $baseDate); + $val = (int) PHPExcel_Shared_Date::PHPToExcel($baseDate) - $dayOfWeek; + $maxVal = $val + 7; + break; + } + + switch ($dynamicRuleType) { + // Adjust Today dates for Yesterday and Tomorrow + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_YESTERDAY: + --$maxVal; + --$val; + break; + case PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_TOMORROW: + ++$maxVal; + ++$val; + break; + } + + // Set the filter column rule attributes ready for writing + $filterColumn->setAttributes(array('val' => $val, 'maxVal' => $maxVal)); + + // Set the rules for identifying rows for hide/show + $ruleValues[] = array('operator' => PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_GREATERTHANOREQUAL, 'value' => $val); + $ruleValues[] = array('operator' => PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_LESSTHAN, 'value' => $maxVal); + PHPExcel_Calculation_Functions::setReturnDateType($rDateType); + + return array('method' => 'filterTestInCustomDataSet', 'arguments' => array('filterRules' => $ruleValues, 'join' => PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_COLUMN_JOIN_AND)); + } + + private function calculateTopTenValue($columnID, $startRow, $endRow, $ruleType, $ruleValue) + { + $range = $columnID.$startRow.':'.$columnID.$endRow; + $dataValues = PHPExcel_Calculation_Functions::flattenArray($this->workSheet->rangeToArray($range, null, true, false)); + + $dataValues = array_filter($dataValues); + if ($ruleType == PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_TOP) { + rsort($dataValues); + } else { + sort($dataValues); + } + + return array_pop(array_slice($dataValues, 0, $ruleValue)); + } + + /** + * Apply the AutoFilter rules to the AutoFilter Range + * + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_AutoFilter + */ + public function showHideRows() + { + list($rangeStart, $rangeEnd) = PHPExcel_Cell::rangeBoundaries($this->range); + + // The heading row should always be visible +// echo 'AutoFilter Heading Row ', $rangeStart[1],' is always SHOWN',PHP_EOL; + $this->workSheet->getRowDimension($rangeStart[1])->setVisible(true); + + $columnFilterTests = array(); + foreach ($this->columns as $columnID => $filterColumn) { + $rules = $filterColumn->getRules(); + switch ($filterColumn->getFilterType()) { + case PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_FILTER: + $ruleValues = array(); + // Build a list of the filter value selections + foreach ($rules as $rule) { + $ruleType = $rule->getRuleType(); + $ruleValues[] = $rule->getValue(); + } + // Test if we want to include blanks in our filter criteria + $blanks = false; + $ruleDataSet = array_filter($ruleValues); + if (count($ruleValues) != count($ruleDataSet)) { + $blanks = true; + } + if ($ruleType == PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_FILTER) { + // Filter on absolute values + $columnFilterTests[$columnID] = array( + 'method' => 'filterTestInSimpleDataSet', + 'arguments' => array('filterValues' => $ruleDataSet, 'blanks' => $blanks) + ); + } else { + // Filter on date group values + $arguments = array( + 'date' => array(), + 'time' => array(), + 'dateTime' => array(), + ); + foreach ($ruleDataSet as $ruleValue) { + $date = $time = ''; + if ((isset($ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_YEAR])) && + ($ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_YEAR] !== '')) { + $date .= sprintf('%04d', $ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_YEAR]); + } + if ((isset($ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_MONTH])) && + ($ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_MONTH] != '')) { + $date .= sprintf('%02d', $ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_MONTH]); + } + if ((isset($ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_DAY])) && + ($ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_DAY] !== '')) { + $date .= sprintf('%02d', $ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_DAY]); + } + if ((isset($ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_HOUR])) && + ($ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_HOUR] !== '')) { + $time .= sprintf('%02d', $ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_HOUR]); + } + if ((isset($ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_MINUTE])) && + ($ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_MINUTE] !== '')) { + $time .= sprintf('%02d', $ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_MINUTE]); + } + if ((isset($ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_SECOND])) && + ($ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_SECOND] !== '')) { + $time .= sprintf('%02d', $ruleValue[PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP_SECOND]); + } + $dateTime = $date . $time; + $arguments['date'][] = $date; + $arguments['time'][] = $time; + $arguments['dateTime'][] = $dateTime; + } + // Remove empty elements + $arguments['date'] = array_filter($arguments['date']); + $arguments['time'] = array_filter($arguments['time']); + $arguments['dateTime'] = array_filter($arguments['dateTime']); + $columnFilterTests[$columnID] = array( + 'method' => 'filterTestInDateGroupSet', + 'arguments' => array('filterValues' => $arguments, 'blanks' => $blanks) + ); + } + break; + case PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_CUSTOMFILTER: + $customRuleForBlanks = false; + $ruleValues = array(); + // Build a list of the filter value selections + foreach ($rules as $rule) { + $ruleType = $rule->getRuleType(); + $ruleValue = $rule->getValue(); + if (!is_numeric($ruleValue)) { + // Convert to a regexp allowing for regexp reserved characters, wildcards and escaped wildcards + $ruleValue = preg_quote($ruleValue); + $ruleValue = str_replace(self::$fromReplace, self::$toReplace, $ruleValue); + if (trim($ruleValue) == '') { + $customRuleForBlanks = true; + $ruleValue = trim($ruleValue); + } + } + $ruleValues[] = array('operator' => $rule->getOperator(), 'value' => $ruleValue); + } + $join = $filterColumn->getJoin(); + $columnFilterTests[$columnID] = array( + 'method' => 'filterTestInCustomDataSet', + 'arguments' => array('filterRules' => $ruleValues, 'join' => $join, 'customRuleForBlanks' => $customRuleForBlanks) + ); + break; + case PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_DYNAMICFILTER: + $ruleValues = array(); + foreach ($rules as $rule) { + // We should only ever have one Dynamic Filter Rule anyway + $dynamicRuleType = $rule->getGrouping(); + if (($dynamicRuleType == PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_ABOVEAVERAGE) || + ($dynamicRuleType == PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_BELOWAVERAGE)) { + // Number (Average) based + // Calculate the average + $averageFormula = '=AVERAGE('.$columnID.($rangeStart[1]+1).':'.$columnID.$rangeEnd[1].')'; + $average = PHPExcel_Calculation::getInstance()->calculateFormula($averageFormula, null, $this->workSheet->getCell('A1')); + // Set above/below rule based on greaterThan or LessTan + $operator = ($dynamicRuleType === PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_ABOVEAVERAGE) + ? PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_GREATERTHAN + : PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_LESSTHAN; + $ruleValues[] = array('operator' => $operator, + 'value' => $average + ); + $columnFilterTests[$columnID] = array( + 'method' => 'filterTestInCustomDataSet', + 'arguments' => array('filterRules' => $ruleValues, 'join' => PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_COLUMN_JOIN_OR) + ); + } else { + // Date based + if ($dynamicRuleType{0} == 'M' || $dynamicRuleType{0} == 'Q') { + // Month or Quarter + sscanf($dynamicRuleType, '%[A-Z]%d', $periodType, $period); + if ($periodType == 'M') { + $ruleValues = array($period); + } else { + --$period; + $periodEnd = (1+$period)*3; + $periodStart = 1+$period*3; + $ruleValues = range($periodStart, $periodEnd); + } + $columnFilterTests[$columnID] = array( + 'method' => 'filterTestInPeriodDateSet', + 'arguments' => $ruleValues + ); + $filterColumn->setAttributes(array()); + } else { + // Date Range + $columnFilterTests[$columnID] = $this->dynamicFilterDateRange($dynamicRuleType, $filterColumn); + break; + } + } + } + break; + case PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_TOPTENFILTER: + $ruleValues = array(); + $dataRowCount = $rangeEnd[1] - $rangeStart[1]; + foreach ($rules as $rule) { + // We should only ever have one Dynamic Filter Rule anyway + $toptenRuleType = $rule->getGrouping(); + $ruleValue = $rule->getValue(); + $ruleOperator = $rule->getOperator(); + } + if ($ruleOperator === PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_PERCENT) { + $ruleValue = floor($ruleValue * ($dataRowCount / 100)); + } + if ($ruleValue < 1) { + $ruleValue = 1; + } + if ($ruleValue > 500) { + $ruleValue = 500; + } + + $maxVal = $this->calculateTopTenValue($columnID, $rangeStart[1]+1, $rangeEnd[1], $toptenRuleType, $ruleValue); + + $operator = ($toptenRuleType == PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_TOP) + ? PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_GREATERTHANOREQUAL + : PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_LESSTHANOREQUAL; + $ruleValues[] = array('operator' => $operator, 'value' => $maxVal); + $columnFilterTests[$columnID] = array( + 'method' => 'filterTestInCustomDataSet', + 'arguments' => array('filterRules' => $ruleValues, 'join' => PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_COLUMN_JOIN_OR) + ); + $filterColumn->setAttributes(array('maxVal' => $maxVal)); + break; + } + } + +// echo 'Column Filter Test CRITERIA',PHP_EOL; +// var_dump($columnFilterTests); +// + // Execute the column tests for each row in the autoFilter range to determine show/hide, + for ($row = $rangeStart[1]+1; $row <= $rangeEnd[1]; ++$row) { +// echo 'Testing Row = ', $row,PHP_EOL; + $result = true; + foreach ($columnFilterTests as $columnID => $columnFilterTest) { +// echo 'Testing cell ', $columnID.$row,PHP_EOL; + $cellValue = $this->workSheet->getCell($columnID.$row)->getCalculatedValue(); +// echo 'Value is ', $cellValue,PHP_EOL; + // Execute the filter test + $result = $result && + call_user_func_array( + array('PHPExcel_Worksheet_AutoFilter', $columnFilterTest['method']), + array($cellValue, $columnFilterTest['arguments']) + ); +// echo (($result) ? 'VALID' : 'INVALID'),PHP_EOL; + // If filter test has resulted in FALSE, exit the loop straightaway rather than running any more tests + if (!$result) { + break; + } + } + // Set show/hide for the row based on the result of the autoFilter result +// echo (($result) ? 'SHOW' : 'HIDE'),PHP_EOL; + $this->workSheet->getRowDimension($row)->setVisible($result); + } + + return $this; + } + + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + if ($key == 'workSheet') { + // Detach from worksheet + $this->{$key} = null; + } else { + $this->{$key} = clone $value; + } + } elseif ((is_array($value)) && ($key == 'columns')) { + // The columns array of PHPExcel_Worksheet_AutoFilter objects + $this->{$key} = array(); + foreach ($value as $k => $v) { + $this->{$key}[$k] = clone $v; + // attach the new cloned Column to this new cloned Autofilter object + $this->{$key}[$k]->setParent($this); + } + } else { + $this->{$key} = $value; + } + } + } + + /** + * toString method replicates previous behavior by returning the range if object is + * referenced as a property of its parent. + */ + public function __toString() + { + return (string) $this->range; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column.php new file mode 100644 index 0000000..d64fd81 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column.php @@ -0,0 +1,405 @@ +<?php + +/** + * PHPExcel_Worksheet_AutoFilter_Column + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_AutoFilter_Column +{ + const AUTOFILTER_FILTERTYPE_FILTER = 'filters'; + const AUTOFILTER_FILTERTYPE_CUSTOMFILTER = 'customFilters'; + // Supports no more than 2 rules, with an And/Or join criteria + // if more than 1 rule is defined + const AUTOFILTER_FILTERTYPE_DYNAMICFILTER = 'dynamicFilter'; + // Even though the filter rule is constant, the filtered data can vary + // e.g. filtered by date = TODAY + const AUTOFILTER_FILTERTYPE_TOPTENFILTER = 'top10'; + + /** + * Types of autofilter rules + * + * @var string[] + */ + private static $filterTypes = array( + // Currently we're not handling + // colorFilter + // extLst + // iconFilter + self::AUTOFILTER_FILTERTYPE_FILTER, + self::AUTOFILTER_FILTERTYPE_CUSTOMFILTER, + self::AUTOFILTER_FILTERTYPE_DYNAMICFILTER, + self::AUTOFILTER_FILTERTYPE_TOPTENFILTER, + ); + + /* Multiple Rule Connections */ + const AUTOFILTER_COLUMN_JOIN_AND = 'and'; + const AUTOFILTER_COLUMN_JOIN_OR = 'or'; + + /** + * Join options for autofilter rules + * + * @var string[] + */ + private static $ruleJoins = array( + self::AUTOFILTER_COLUMN_JOIN_AND, + self::AUTOFILTER_COLUMN_JOIN_OR, + ); + + /** + * Autofilter + * + * @var PHPExcel_Worksheet_AutoFilter + */ + private $parent; + + + /** + * Autofilter Column Index + * + * @var string + */ + private $columnIndex = ''; + + + /** + * Autofilter Column Filter Type + * + * @var string + */ + private $filterType = self::AUTOFILTER_FILTERTYPE_FILTER; + + + /** + * Autofilter Multiple Rules And/Or + * + * @var string + */ + private $join = self::AUTOFILTER_COLUMN_JOIN_OR; + + + /** + * Autofilter Column Rules + * + * @var array of PHPExcel_Worksheet_AutoFilter_Column_Rule + */ + private $ruleset = array(); + + + /** + * Autofilter Column Dynamic Attributes + * + * @var array of mixed + */ + private $attributes = array(); + + + /** + * Create a new PHPExcel_Worksheet_AutoFilter_Column + * + * @param string $pColumn Column (e.g. A) + * @param PHPExcel_Worksheet_AutoFilter $pParent Autofilter for this column + */ + public function __construct($pColumn, PHPExcel_Worksheet_AutoFilter $pParent = null) + { + $this->columnIndex = $pColumn; + $this->parent = $pParent; + } + + /** + * Get AutoFilter Column Index + * + * @return string + */ + public function getColumnIndex() + { + return $this->columnIndex; + } + + /** + * Set AutoFilter Column Index + * + * @param string $pColumn Column (e.g. A) + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_AutoFilter_Column + */ + public function setColumnIndex($pColumn) + { + // Uppercase coordinate + $pColumn = strtoupper($pColumn); + if ($this->parent !== null) { + $this->parent->testColumnInRange($pColumn); + } + + $this->columnIndex = $pColumn; + + return $this; + } + + /** + * Get this Column's AutoFilter Parent + * + * @return PHPExcel_Worksheet_AutoFilter + */ + public function getParent() + { + return $this->parent; + } + + /** + * Set this Column's AutoFilter Parent + * + * @param PHPExcel_Worksheet_AutoFilter + * @return PHPExcel_Worksheet_AutoFilter_Column + */ + public function setParent(PHPExcel_Worksheet_AutoFilter $pParent = null) + { + $this->parent = $pParent; + + return $this; + } + + /** + * Get AutoFilter Type + * + * @return string + */ + public function getFilterType() + { + return $this->filterType; + } + + /** + * Set AutoFilter Type + * + * @param string $pFilterType + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_AutoFilter_Column + */ + public function setFilterType($pFilterType = self::AUTOFILTER_FILTERTYPE_FILTER) + { + if (!in_array($pFilterType, self::$filterTypes)) { + throw new PHPExcel_Exception('Invalid filter type for column AutoFilter.'); + } + + $this->filterType = $pFilterType; + + return $this; + } + + /** + * Get AutoFilter Multiple Rules And/Or Join + * + * @return string + */ + public function getJoin() + { + return $this->join; + } + + /** + * Set AutoFilter Multiple Rules And/Or + * + * @param string $pJoin And/Or + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_AutoFilter_Column + */ + public function setJoin($pJoin = self::AUTOFILTER_COLUMN_JOIN_OR) + { + // Lowercase And/Or + $pJoin = strtolower($pJoin); + if (!in_array($pJoin, self::$ruleJoins)) { + throw new PHPExcel_Exception('Invalid rule connection for column AutoFilter.'); + } + + $this->join = $pJoin; + + return $this; + } + + /** + * Set AutoFilter Attributes + * + * @param string[] $pAttributes + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_AutoFilter_Column + */ + public function setAttributes($pAttributes = array()) + { + $this->attributes = $pAttributes; + + return $this; + } + + /** + * Set An AutoFilter Attribute + * + * @param string $pName Attribute Name + * @param string $pValue Attribute Value + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_AutoFilter_Column + */ + public function setAttribute($pName, $pValue) + { + $this->attributes[$pName] = $pValue; + + return $this; + } + + /** + * Get AutoFilter Column Attributes + * + * @return string + */ + public function getAttributes() + { + return $this->attributes; + } + + /** + * Get specific AutoFilter Column Attribute + * + * @param string $pName Attribute Name + * @return string + */ + public function getAttribute($pName) + { + if (isset($this->attributes[$pName])) { + return $this->attributes[$pName]; + } + return null; + } + + /** + * Get all AutoFilter Column Rules + * + * @throws PHPExcel_Exception + * @return array of PHPExcel_Worksheet_AutoFilter_Column_Rule + */ + public function getRules() + { + return $this->ruleset; + } + + /** + * Get a specified AutoFilter Column Rule + * + * @param integer $pIndex Rule index in the ruleset array + * @return PHPExcel_Worksheet_AutoFilter_Column_Rule + */ + public function getRule($pIndex) + { + if (!isset($this->ruleset[$pIndex])) { + $this->ruleset[$pIndex] = new PHPExcel_Worksheet_AutoFilter_Column_Rule($this); + } + return $this->ruleset[$pIndex]; + } + + /** + * Create a new AutoFilter Column Rule in the ruleset + * + * @return PHPExcel_Worksheet_AutoFilter_Column_Rule + */ + public function createRule() + { + $this->ruleset[] = new PHPExcel_Worksheet_AutoFilter_Column_Rule($this); + + return end($this->ruleset); + } + + /** + * Add a new AutoFilter Column Rule to the ruleset + * + * @param PHPExcel_Worksheet_AutoFilter_Column_Rule $pRule + * @param boolean $returnRule Flag indicating whether the rule object or the column object should be returned + * @return PHPExcel_Worksheet_AutoFilter_Column|PHPExcel_Worksheet_AutoFilter_Column_Rule + */ + public function addRule(PHPExcel_Worksheet_AutoFilter_Column_Rule $pRule, $returnRule = true) + { + $pRule->setParent($this); + $this->ruleset[] = $pRule; + + return ($returnRule) ? $pRule : $this; + } + + /** + * Delete a specified AutoFilter Column Rule + * If the number of rules is reduced to 1, then we reset And/Or logic to Or + * + * @param integer $pIndex Rule index in the ruleset array + * @return PHPExcel_Worksheet_AutoFilter_Column + */ + public function deleteRule($pIndex) + { + if (isset($this->ruleset[$pIndex])) { + unset($this->ruleset[$pIndex]); + // If we've just deleted down to a single rule, then reset And/Or joining to Or + if (count($this->ruleset) <= 1) { + $this->setJoin(self::AUTOFILTER_COLUMN_JOIN_OR); + } + } + + return $this; + } + + /** + * Delete all AutoFilter Column Rules + * + * @return PHPExcel_Worksheet_AutoFilter_Column + */ + public function clearRules() + { + $this->ruleset = array(); + $this->setJoin(self::AUTOFILTER_COLUMN_JOIN_OR); + + return $this; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + if ($key == 'parent') { + // Detach from autofilter parent + $this->$key = null; + } else { + $this->$key = clone $value; + } + } elseif ((is_array($value)) && ($key == 'ruleset')) { + // The columns array of PHPExcel_Worksheet_AutoFilter objects + $this->$key = array(); + foreach ($value as $k => $v) { + $this->$key[$k] = clone $v; + // attach the new cloned Rule to this new cloned Autofilter Cloned object + $this->$key[$k]->setParent($this); + } + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column/Rule.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column/Rule.php new file mode 100644 index 0000000..39ad18b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column/Rule.php @@ -0,0 +1,468 @@ +<?php + +/** + * PHPExcel_Worksheet_AutoFilter_Column_Rule + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_AutoFilter_Column_Rule +{ + const AUTOFILTER_RULETYPE_FILTER = 'filter'; + const AUTOFILTER_RULETYPE_DATEGROUP = 'dateGroupItem'; + const AUTOFILTER_RULETYPE_CUSTOMFILTER = 'customFilter'; + const AUTOFILTER_RULETYPE_DYNAMICFILTER = 'dynamicFilter'; + const AUTOFILTER_RULETYPE_TOPTENFILTER = 'top10Filter'; + + private static $ruleTypes = array( + // Currently we're not handling + // colorFilter + // extLst + // iconFilter + self::AUTOFILTER_RULETYPE_FILTER, + self::AUTOFILTER_RULETYPE_DATEGROUP, + self::AUTOFILTER_RULETYPE_CUSTOMFILTER, + self::AUTOFILTER_RULETYPE_DYNAMICFILTER, + self::AUTOFILTER_RULETYPE_TOPTENFILTER, + ); + + const AUTOFILTER_RULETYPE_DATEGROUP_YEAR = 'year'; + const AUTOFILTER_RULETYPE_DATEGROUP_MONTH = 'month'; + const AUTOFILTER_RULETYPE_DATEGROUP_DAY = 'day'; + const AUTOFILTER_RULETYPE_DATEGROUP_HOUR = 'hour'; + const AUTOFILTER_RULETYPE_DATEGROUP_MINUTE = 'minute'; + const AUTOFILTER_RULETYPE_DATEGROUP_SECOND = 'second'; + + private static $dateTimeGroups = array( + self::AUTOFILTER_RULETYPE_DATEGROUP_YEAR, + self::AUTOFILTER_RULETYPE_DATEGROUP_MONTH, + self::AUTOFILTER_RULETYPE_DATEGROUP_DAY, + self::AUTOFILTER_RULETYPE_DATEGROUP_HOUR, + self::AUTOFILTER_RULETYPE_DATEGROUP_MINUTE, + self::AUTOFILTER_RULETYPE_DATEGROUP_SECOND, + ); + + const AUTOFILTER_RULETYPE_DYNAMIC_YESTERDAY = 'yesterday'; + const AUTOFILTER_RULETYPE_DYNAMIC_TODAY = 'today'; + const AUTOFILTER_RULETYPE_DYNAMIC_TOMORROW = 'tomorrow'; + const AUTOFILTER_RULETYPE_DYNAMIC_YEARTODATE = 'yearToDate'; + const AUTOFILTER_RULETYPE_DYNAMIC_THISYEAR = 'thisYear'; + const AUTOFILTER_RULETYPE_DYNAMIC_THISQUARTER = 'thisQuarter'; + const AUTOFILTER_RULETYPE_DYNAMIC_THISMONTH = 'thisMonth'; + const AUTOFILTER_RULETYPE_DYNAMIC_THISWEEK = 'thisWeek'; + const AUTOFILTER_RULETYPE_DYNAMIC_LASTYEAR = 'lastYear'; + const AUTOFILTER_RULETYPE_DYNAMIC_LASTQUARTER = 'lastQuarter'; + const AUTOFILTER_RULETYPE_DYNAMIC_LASTMONTH = 'lastMonth'; + const AUTOFILTER_RULETYPE_DYNAMIC_LASTWEEK = 'lastWeek'; + const AUTOFILTER_RULETYPE_DYNAMIC_NEXTYEAR = 'nextYear'; + const AUTOFILTER_RULETYPE_DYNAMIC_NEXTQUARTER = 'nextQuarter'; + const AUTOFILTER_RULETYPE_DYNAMIC_NEXTMONTH = 'nextMonth'; + const AUTOFILTER_RULETYPE_DYNAMIC_NEXTWEEK = 'nextWeek'; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_1 = 'M1'; + const AUTOFILTER_RULETYPE_DYNAMIC_JANUARY = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_1; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_2 = 'M2'; + const AUTOFILTER_RULETYPE_DYNAMIC_FEBRUARY = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_2; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_3 = 'M3'; + const AUTOFILTER_RULETYPE_DYNAMIC_MARCH = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_3; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_4 = 'M4'; + const AUTOFILTER_RULETYPE_DYNAMIC_APRIL = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_4; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_5 = 'M5'; + const AUTOFILTER_RULETYPE_DYNAMIC_MAY = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_5; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_6 = 'M6'; + const AUTOFILTER_RULETYPE_DYNAMIC_JUNE = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_6; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_7 = 'M7'; + const AUTOFILTER_RULETYPE_DYNAMIC_JULY = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_7; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_8 = 'M8'; + const AUTOFILTER_RULETYPE_DYNAMIC_AUGUST = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_8; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_9 = 'M9'; + const AUTOFILTER_RULETYPE_DYNAMIC_SEPTEMBER = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_9; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_10 = 'M10'; + const AUTOFILTER_RULETYPE_DYNAMIC_OCTOBER = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_10; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_11 = 'M11'; + const AUTOFILTER_RULETYPE_DYNAMIC_NOVEMBER = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_11; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_12 = 'M12'; + const AUTOFILTER_RULETYPE_DYNAMIC_DECEMBER = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_12; + const AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_1 = 'Q1'; + const AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_2 = 'Q2'; + const AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_3 = 'Q3'; + const AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_4 = 'Q4'; + const AUTOFILTER_RULETYPE_DYNAMIC_ABOVEAVERAGE = 'aboveAverage'; + const AUTOFILTER_RULETYPE_DYNAMIC_BELOWAVERAGE = 'belowAverage'; + + private static $dynamicTypes = array( + self::AUTOFILTER_RULETYPE_DYNAMIC_YESTERDAY, + self::AUTOFILTER_RULETYPE_DYNAMIC_TODAY, + self::AUTOFILTER_RULETYPE_DYNAMIC_TOMORROW, + self::AUTOFILTER_RULETYPE_DYNAMIC_YEARTODATE, + self::AUTOFILTER_RULETYPE_DYNAMIC_THISYEAR, + self::AUTOFILTER_RULETYPE_DYNAMIC_THISQUARTER, + self::AUTOFILTER_RULETYPE_DYNAMIC_THISMONTH, + self::AUTOFILTER_RULETYPE_DYNAMIC_THISWEEK, + self::AUTOFILTER_RULETYPE_DYNAMIC_LASTYEAR, + self::AUTOFILTER_RULETYPE_DYNAMIC_LASTQUARTER, + self::AUTOFILTER_RULETYPE_DYNAMIC_LASTMONTH, + self::AUTOFILTER_RULETYPE_DYNAMIC_LASTWEEK, + self::AUTOFILTER_RULETYPE_DYNAMIC_NEXTYEAR, + self::AUTOFILTER_RULETYPE_DYNAMIC_NEXTQUARTER, + self::AUTOFILTER_RULETYPE_DYNAMIC_NEXTMONTH, + self::AUTOFILTER_RULETYPE_DYNAMIC_NEXTWEEK, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_1, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_2, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_3, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_4, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_5, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_6, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_7, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_8, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_9, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_10, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_11, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_12, + self::AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_1, + self::AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_2, + self::AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_3, + self::AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_4, + self::AUTOFILTER_RULETYPE_DYNAMIC_ABOVEAVERAGE, + self::AUTOFILTER_RULETYPE_DYNAMIC_BELOWAVERAGE, + ); + + /* + * The only valid filter rule operators for filter and customFilter types are: + * <xsd:enumeration value="equal"/> + * <xsd:enumeration value="lessThan"/> + * <xsd:enumeration value="lessThanOrEqual"/> + * <xsd:enumeration value="notEqual"/> + * <xsd:enumeration value="greaterThanOrEqual"/> + * <xsd:enumeration value="greaterThan"/> + */ + const AUTOFILTER_COLUMN_RULE_EQUAL = 'equal'; + const AUTOFILTER_COLUMN_RULE_NOTEQUAL = 'notEqual'; + const AUTOFILTER_COLUMN_RULE_GREATERTHAN = 'greaterThan'; + const AUTOFILTER_COLUMN_RULE_GREATERTHANOREQUAL = 'greaterThanOrEqual'; + const AUTOFILTER_COLUMN_RULE_LESSTHAN = 'lessThan'; + const AUTOFILTER_COLUMN_RULE_LESSTHANOREQUAL = 'lessThanOrEqual'; + + private static $operators = array( + self::AUTOFILTER_COLUMN_RULE_EQUAL, + self::AUTOFILTER_COLUMN_RULE_NOTEQUAL, + self::AUTOFILTER_COLUMN_RULE_GREATERTHAN, + self::AUTOFILTER_COLUMN_RULE_GREATERTHANOREQUAL, + self::AUTOFILTER_COLUMN_RULE_LESSTHAN, + self::AUTOFILTER_COLUMN_RULE_LESSTHANOREQUAL, + ); + + const AUTOFILTER_COLUMN_RULE_TOPTEN_BY_VALUE = 'byValue'; + const AUTOFILTER_COLUMN_RULE_TOPTEN_PERCENT = 'byPercent'; + + private static $topTenValue = array( + self::AUTOFILTER_COLUMN_RULE_TOPTEN_BY_VALUE, + self::AUTOFILTER_COLUMN_RULE_TOPTEN_PERCENT, + ); + + const AUTOFILTER_COLUMN_RULE_TOPTEN_TOP = 'top'; + const AUTOFILTER_COLUMN_RULE_TOPTEN_BOTTOM = 'bottom'; + + private static $topTenType = array( + self::AUTOFILTER_COLUMN_RULE_TOPTEN_TOP, + self::AUTOFILTER_COLUMN_RULE_TOPTEN_BOTTOM, + ); + + + /* Rule Operators (Numeric, Boolean etc) */ +// const AUTOFILTER_COLUMN_RULE_BETWEEN = 'between'; // greaterThanOrEqual 1 && lessThanOrEqual 2 + /* Rule Operators (Numeric Special) which are translated to standard numeric operators with calculated values */ +// const AUTOFILTER_COLUMN_RULE_TOPTEN = 'topTen'; // greaterThan calculated value +// const AUTOFILTER_COLUMN_RULE_TOPTENPERCENT = 'topTenPercent'; // greaterThan calculated value +// const AUTOFILTER_COLUMN_RULE_ABOVEAVERAGE = 'aboveAverage'; // Value is calculated as the average +// const AUTOFILTER_COLUMN_RULE_BELOWAVERAGE = 'belowAverage'; // Value is calculated as the average + /* Rule Operators (String) which are set as wild-carded values */ +// const AUTOFILTER_COLUMN_RULE_BEGINSWITH = 'beginsWith'; // A* +// const AUTOFILTER_COLUMN_RULE_ENDSWITH = 'endsWith'; // *Z +// const AUTOFILTER_COLUMN_RULE_CONTAINS = 'contains'; // *B* +// const AUTOFILTER_COLUMN_RULE_DOESNTCONTAIN = 'notEqual'; // notEqual *B* + /* Rule Operators (Date Special) which are translated to standard numeric operators with calculated values */ +// const AUTOFILTER_COLUMN_RULE_BEFORE = 'lessThan'; +// const AUTOFILTER_COLUMN_RULE_AFTER = 'greaterThan'; +// const AUTOFILTER_COLUMN_RULE_YESTERDAY = 'yesterday'; +// const AUTOFILTER_COLUMN_RULE_TODAY = 'today'; +// const AUTOFILTER_COLUMN_RULE_TOMORROW = 'tomorrow'; +// const AUTOFILTER_COLUMN_RULE_LASTWEEK = 'lastWeek'; +// const AUTOFILTER_COLUMN_RULE_THISWEEK = 'thisWeek'; +// const AUTOFILTER_COLUMN_RULE_NEXTWEEK = 'nextWeek'; +// const AUTOFILTER_COLUMN_RULE_LASTMONTH = 'lastMonth'; +// const AUTOFILTER_COLUMN_RULE_THISMONTH = 'thisMonth'; +// const AUTOFILTER_COLUMN_RULE_NEXTMONTH = 'nextMonth'; +// const AUTOFILTER_COLUMN_RULE_LASTQUARTER = 'lastQuarter'; +// const AUTOFILTER_COLUMN_RULE_THISQUARTER = 'thisQuarter'; +// const AUTOFILTER_COLUMN_RULE_NEXTQUARTER = 'nextQuarter'; +// const AUTOFILTER_COLUMN_RULE_LASTYEAR = 'lastYear'; +// const AUTOFILTER_COLUMN_RULE_THISYEAR = 'thisYear'; +// const AUTOFILTER_COLUMN_RULE_NEXTYEAR = 'nextYear'; +// const AUTOFILTER_COLUMN_RULE_YEARTODATE = 'yearToDate'; // <dynamicFilter val="40909" type="yearToDate" maxVal="41113"/> +// const AUTOFILTER_COLUMN_RULE_ALLDATESINMONTH = 'allDatesInMonth'; // <dynamicFilter type="M2"/> for Month/February +// const AUTOFILTER_COLUMN_RULE_ALLDATESINQUARTER = 'allDatesInQuarter'; // <dynamicFilter type="Q2"/> for Quarter 2 + + /** + * Autofilter Column + * + * @var PHPExcel_Worksheet_AutoFilter_Column + */ + private $parent = null; + + + /** + * Autofilter Rule Type + * + * @var string + */ + private $ruleType = self::AUTOFILTER_RULETYPE_FILTER; + + + /** + * Autofilter Rule Value + * + * @var string + */ + private $value = ''; + + /** + * Autofilter Rule Operator + * + * @var string + */ + private $operator = self::AUTOFILTER_COLUMN_RULE_EQUAL; + + /** + * DateTimeGrouping Group Value + * + * @var string + */ + private $grouping = ''; + + + /** + * Create a new PHPExcel_Worksheet_AutoFilter_Column_Rule + * + * @param PHPExcel_Worksheet_AutoFilter_Column $pParent + */ + public function __construct(PHPExcel_Worksheet_AutoFilter_Column $pParent = null) + { + $this->parent = $pParent; + } + + /** + * Get AutoFilter Rule Type + * + * @return string + */ + public function getRuleType() + { + return $this->ruleType; + } + + /** + * Set AutoFilter Rule Type + * + * @param string $pRuleType + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_AutoFilter_Column + */ + public function setRuleType($pRuleType = self::AUTOFILTER_RULETYPE_FILTER) + { + if (!in_array($pRuleType, self::$ruleTypes)) { + throw new PHPExcel_Exception('Invalid rule type for column AutoFilter Rule.'); + } + + $this->ruleType = $pRuleType; + + return $this; + } + + /** + * Get AutoFilter Rule Value + * + * @return string + */ + public function getValue() + { + return $this->value; + } + + /** + * Set AutoFilter Rule Value + * + * @param string|string[] $pValue + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_AutoFilter_Column_Rule + */ + public function setValue($pValue = '') + { + if (is_array($pValue)) { + $grouping = -1; + foreach ($pValue as $key => $value) { + // Validate array entries + if (!in_array($key, self::$dateTimeGroups)) { + // Remove any invalid entries from the value array + unset($pValue[$key]); + } else { + // Work out what the dateTime grouping will be + $grouping = max($grouping, array_search($key, self::$dateTimeGroups)); + } + } + if (count($pValue) == 0) { + throw new PHPExcel_Exception('Invalid rule value for column AutoFilter Rule.'); + } + // Set the dateTime grouping that we've anticipated + $this->setGrouping(self::$dateTimeGroups[$grouping]); + } + $this->value = $pValue; + + return $this; + } + + /** + * Get AutoFilter Rule Operator + * + * @return string + */ + public function getOperator() + { + return $this->operator; + } + + /** + * Set AutoFilter Rule Operator + * + * @param string $pOperator + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_AutoFilter_Column_Rule + */ + public function setOperator($pOperator = self::AUTOFILTER_COLUMN_RULE_EQUAL) + { + if (empty($pOperator)) { + $pOperator = self::AUTOFILTER_COLUMN_RULE_EQUAL; + } + if ((!in_array($pOperator, self::$operators)) && + (!in_array($pOperator, self::$topTenValue))) { + throw new PHPExcel_Exception('Invalid operator for column AutoFilter Rule.'); + } + $this->operator = $pOperator; + + return $this; + } + + /** + * Get AutoFilter Rule Grouping + * + * @return string + */ + public function getGrouping() + { + return $this->grouping; + } + + /** + * Set AutoFilter Rule Grouping + * + * @param string $pGrouping + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_AutoFilter_Column_Rule + */ + public function setGrouping($pGrouping = null) + { + if (($pGrouping !== null) && + (!in_array($pGrouping, self::$dateTimeGroups)) && + (!in_array($pGrouping, self::$dynamicTypes)) && + (!in_array($pGrouping, self::$topTenType))) { + throw new PHPExcel_Exception('Invalid rule type for column AutoFilter Rule.'); + } + $this->grouping = $pGrouping; + + return $this; + } + + /** + * Set AutoFilter Rule + * + * @param string $pOperator + * @param string|string[] $pValue + * @param string $pGrouping + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_AutoFilter_Column_Rule + */ + public function setRule($pOperator = self::AUTOFILTER_COLUMN_RULE_EQUAL, $pValue = '', $pGrouping = null) + { + $this->setOperator($pOperator); + $this->setValue($pValue); + // Only set grouping if it's been passed in as a user-supplied argument, + // otherwise we're calculating it when we setValue() and don't want to overwrite that + // If the user supplies an argumnet for grouping, then on their own head be it + if ($pGrouping !== null) { + $this->setGrouping($pGrouping); + } + + return $this; + } + + /** + * Get this Rule's AutoFilter Column Parent + * + * @return PHPExcel_Worksheet_AutoFilter_Column + */ + public function getParent() + { + return $this->parent; + } + + /** + * Set this Rule's AutoFilter Column Parent + * + * @param PHPExcel_Worksheet_AutoFilter_Column + * @return PHPExcel_Worksheet_AutoFilter_Column_Rule + */ + public function setParent(PHPExcel_Worksheet_AutoFilter_Column $pParent = null) + { + $this->parent = $pParent; + + return $this; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + if ($key == 'parent') { + // Detach from autofilter column parent + $this->$key = null; + } else { + $this->$key = clone $value; + } + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/BaseDrawing.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/BaseDrawing.php new file mode 100644 index 0000000..9ad15c7 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/BaseDrawing.php @@ -0,0 +1,507 @@ +<?php + +/** + * PHPExcel_Worksheet_BaseDrawing + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_BaseDrawing implements PHPExcel_IComparable +{ + /** + * Image counter + * + * @var int + */ + private static $imageCounter = 0; + + /** + * Image index + * + * @var int + */ + private $imageIndex = 0; + + /** + * Name + * + * @var string + */ + protected $name; + + /** + * Description + * + * @var string + */ + protected $description; + + /** + * Worksheet + * + * @var PHPExcel_Worksheet + */ + protected $worksheet; + + /** + * Coordinates + * + * @var string + */ + protected $coordinates; + + /** + * Offset X + * + * @var int + */ + protected $offsetX; + + /** + * Offset Y + * + * @var int + */ + protected $offsetY; + + /** + * Width + * + * @var int + */ + protected $width; + + /** + * Height + * + * @var int + */ + protected $height; + + /** + * Proportional resize + * + * @var boolean + */ + protected $resizeProportional; + + /** + * Rotation + * + * @var int + */ + protected $rotation; + + /** + * Shadow + * + * @var PHPExcel_Worksheet_Drawing_Shadow + */ + protected $shadow; + + /** + * Create a new PHPExcel_Worksheet_BaseDrawing + */ + public function __construct() + { + // Initialise values + $this->name = ''; + $this->description = ''; + $this->worksheet = null; + $this->coordinates = 'A1'; + $this->offsetX = 0; + $this->offsetY = 0; + $this->width = 0; + $this->height = 0; + $this->resizeProportional = true; + $this->rotation = 0; + $this->shadow = new PHPExcel_Worksheet_Drawing_Shadow(); + + // Set image index + self::$imageCounter++; + $this->imageIndex = self::$imageCounter; + } + + /** + * Get image index + * + * @return int + */ + public function getImageIndex() + { + return $this->imageIndex; + } + + /** + * Get Name + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Set Name + * + * @param string $pValue + * @return PHPExcel_Worksheet_BaseDrawing + */ + public function setName($pValue = '') + { + $this->name = $pValue; + return $this; + } + + /** + * Get Description + * + * @return string + */ + public function getDescription() + { + return $this->description; + } + + /** + * Set Description + * + * @param string $pValue + * @return PHPExcel_Worksheet_BaseDrawing + */ + public function setDescription($pValue = '') + { + $this->description = $pValue; + return $this; + } + + /** + * Get Worksheet + * + * @return PHPExcel_Worksheet + */ + public function getWorksheet() + { + return $this->worksheet; + } + + /** + * Set Worksheet + * + * @param PHPExcel_Worksheet $pValue + * @param bool $pOverrideOld If a Worksheet has already been assigned, overwrite it and remove image from old Worksheet? + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_BaseDrawing + */ + public function setWorksheet(PHPExcel_Worksheet $pValue = null, $pOverrideOld = false) + { + if (is_null($this->worksheet)) { + // Add drawing to PHPExcel_Worksheet + $this->worksheet = $pValue; + $this->worksheet->getCell($this->coordinates); + $this->worksheet->getDrawingCollection()->append($this); + } else { + if ($pOverrideOld) { + // Remove drawing from old PHPExcel_Worksheet + $iterator = $this->worksheet->getDrawingCollection()->getIterator(); + + while ($iterator->valid()) { + if ($iterator->current()->getHashCode() == $this->getHashCode()) { + $this->worksheet->getDrawingCollection()->offsetUnset($iterator->key()); + $this->worksheet = null; + break; + } + } + + // Set new PHPExcel_Worksheet + $this->setWorksheet($pValue); + } else { + throw new PHPExcel_Exception("A PHPExcel_Worksheet has already been assigned. Drawings can only exist on one PHPExcel_Worksheet."); + } + } + return $this; + } + + /** + * Get Coordinates + * + * @return string + */ + public function getCoordinates() + { + return $this->coordinates; + } + + /** + * Set Coordinates + * + * @param string $pValue + * @return PHPExcel_Worksheet_BaseDrawing + */ + public function setCoordinates($pValue = 'A1') + { + $this->coordinates = $pValue; + return $this; + } + + /** + * Get OffsetX + * + * @return int + */ + public function getOffsetX() + { + return $this->offsetX; + } + + /** + * Set OffsetX + * + * @param int $pValue + * @return PHPExcel_Worksheet_BaseDrawing + */ + public function setOffsetX($pValue = 0) + { + $this->offsetX = $pValue; + return $this; + } + + /** + * Get OffsetY + * + * @return int + */ + public function getOffsetY() + { + return $this->offsetY; + } + + /** + * Set OffsetY + * + * @param int $pValue + * @return PHPExcel_Worksheet_BaseDrawing + */ + public function setOffsetY($pValue = 0) + { + $this->offsetY = $pValue; + return $this; + } + + /** + * Get Width + * + * @return int + */ + public function getWidth() + { + return $this->width; + } + + /** + * Set Width + * + * @param int $pValue + * @return PHPExcel_Worksheet_BaseDrawing + */ + public function setWidth($pValue = 0) + { + // Resize proportional? + if ($this->resizeProportional && $pValue != 0) { + $ratio = $this->height / ($this->width != 0 ? $this->width : 1); + $this->height = round($ratio * $pValue); + } + + // Set width + $this->width = $pValue; + + return $this; + } + + /** + * Get Height + * + * @return int + */ + public function getHeight() + { + return $this->height; + } + + /** + * Set Height + * + * @param int $pValue + * @return PHPExcel_Worksheet_BaseDrawing + */ + public function setHeight($pValue = 0) + { + // Resize proportional? + if ($this->resizeProportional && $pValue != 0) { + $ratio = $this->width / ($this->height != 0 ? $this->height : 1); + $this->width = round($ratio * $pValue); + } + + // Set height + $this->height = $pValue; + + return $this; + } + + /** + * Set width and height with proportional resize + * Example: + * <code> + * $objDrawing->setResizeProportional(true); + * $objDrawing->setWidthAndHeight(160,120); + * </code> + * + * @author Vincent@luo MSN:kele_100@hotmail.com + * @param int $width + * @param int $height + * @return PHPExcel_Worksheet_BaseDrawing + */ + public function setWidthAndHeight($width = 0, $height = 0) + { + $xratio = $width / ($this->width != 0 ? $this->width : 1); + $yratio = $height / ($this->height != 0 ? $this->height : 1); + if ($this->resizeProportional && !($width == 0 || $height == 0)) { + if (($xratio * $this->height) < $height) { + $this->height = ceil($xratio * $this->height); + $this->width = $width; + } else { + $this->width = ceil($yratio * $this->width); + $this->height = $height; + } + } else { + $this->width = $width; + $this->height = $height; + } + + return $this; + } + + /** + * Get ResizeProportional + * + * @return boolean + */ + public function getResizeProportional() + { + return $this->resizeProportional; + } + + /** + * Set ResizeProportional + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_BaseDrawing + */ + public function setResizeProportional($pValue = true) + { + $this->resizeProportional = $pValue; + return $this; + } + + /** + * Get Rotation + * + * @return int + */ + public function getRotation() + { + return $this->rotation; + } + + /** + * Set Rotation + * + * @param int $pValue + * @return PHPExcel_Worksheet_BaseDrawing + */ + public function setRotation($pValue = 0) + { + $this->rotation = $pValue; + return $this; + } + + /** + * Get Shadow + * + * @return PHPExcel_Worksheet_Drawing_Shadow + */ + public function getShadow() + { + return $this->shadow; + } + + /** + * Set Shadow + * + * @param PHPExcel_Worksheet_Drawing_Shadow $pValue + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_BaseDrawing + */ + public function setShadow(PHPExcel_Worksheet_Drawing_Shadow $pValue = null) + { + $this->shadow = $pValue; + return $this; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->name . + $this->description . + $this->worksheet->getHashCode() . + $this->coordinates . + $this->offsetX . + $this->offsetY . + $this->width . + $this->height . + $this->rotation . + $this->shadow->getHashCode() . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/CellIterator.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/CellIterator.php new file mode 100644 index 0000000..53cf7bf --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/CellIterator.php @@ -0,0 +1,88 @@ +<?php + +/** + * PHPExcel_Worksheet_CellIterator + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +abstract class PHPExcel_Worksheet_CellIterator +{ + /** + * PHPExcel_Worksheet to iterate + * + * @var PHPExcel_Worksheet + */ + protected $subject; + + /** + * Current iterator position + * + * @var mixed + */ + protected $position = null; + + /** + * Iterate only existing cells + * + * @var boolean + */ + protected $onlyExistingCells = false; + + /** + * Destructor + */ + public function __destruct() + { + unset($this->subject); + } + + /** + * Get loop only existing cells + * + * @return boolean + */ + public function getIterateOnlyExistingCells() + { + return $this->onlyExistingCells; + } + + /** + * Validate start/end values for "IterateOnlyExistingCells" mode, and adjust if necessary + * + * @throws PHPExcel_Exception + */ + abstract protected function adjustForExistingOnlyRange(); + + /** + * Set the iterator to loop only existing cells + * + * @param boolean $value + * @throws PHPExcel_Exception + */ + public function setIterateOnlyExistingCells($value = true) + { + $this->onlyExistingCells = (boolean) $value; + + $this->adjustForExistingOnlyRange(); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Column.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Column.php new file mode 100644 index 0000000..6d3f36d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Column.php @@ -0,0 +1,86 @@ +<?php + +/** + * PHPExcel_Worksheet_Column + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_Column +{ + /** + * PHPExcel_Worksheet + * + * @var PHPExcel_Worksheet + */ + private $parent; + + /** + * Column index + * + * @var string + */ + private $columnIndex; + + /** + * Create a new column + * + * @param PHPExcel_Worksheet $parent + * @param string $columnIndex + */ + public function __construct(PHPExcel_Worksheet $parent = null, $columnIndex = 'A') + { + // Set parent and column index + $this->parent = $parent; + $this->columnIndex = $columnIndex; + } + + /** + * Destructor + */ + public function __destruct() + { + unset($this->parent); + } + + /** + * Get column index + * + * @return string + */ + public function getColumnIndex() + { + return $this->columnIndex; + } + + /** + * Get cell iterator + * + * @param integer $startRow The row number at which to start iterating + * @param integer $endRow Optionally, the row number at which to stop iterating + * @return PHPExcel_Worksheet_CellIterator + */ + public function getCellIterator($startRow = 1, $endRow = null) + { + return new PHPExcel_Worksheet_ColumnCellIterator($this->parent, $this->columnIndex, $startRow, $endRow); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnCellIterator.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnCellIterator.php new file mode 100644 index 0000000..7b8c219 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnCellIterator.php @@ -0,0 +1,216 @@ +<?php + +/** + * PHPExcel_Worksheet_ColumnCellIterator + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_ColumnCellIterator extends PHPExcel_Worksheet_CellIterator implements Iterator +{ + /** + * Column index + * + * @var string + */ + protected $columnIndex; + + /** + * Start position + * + * @var int + */ + protected $startRow = 1; + + /** + * End position + * + * @var int + */ + protected $endRow = 1; + + /** + * Create a new row iterator + * + * @param PHPExcel_Worksheet $subject The worksheet to iterate over + * @param string $columnIndex The column that we want to iterate + * @param integer $startRow The row number at which to start iterating + * @param integer $endRow Optionally, the row number at which to stop iterating + */ + public function __construct(PHPExcel_Worksheet $subject = null, $columnIndex = 'A', $startRow = 1, $endRow = null) + { + // Set subject + $this->subject = $subject; + $this->columnIndex = PHPExcel_Cell::columnIndexFromString($columnIndex) - 1; + $this->resetEnd($endRow); + $this->resetStart($startRow); + } + + /** + * Destructor + */ + public function __destruct() + { + unset($this->subject); + } + + /** + * (Re)Set the start row and the current row pointer + * + * @param integer $startRow The row number at which to start iterating + * @return PHPExcel_Worksheet_ColumnCellIterator + * @throws PHPExcel_Exception + */ + public function resetStart($startRow = 1) + { + $this->startRow = $startRow; + $this->adjustForExistingOnlyRange(); + $this->seek($startRow); + + return $this; + } + + /** + * (Re)Set the end row + * + * @param integer $endRow The row number at which to stop iterating + * @return PHPExcel_Worksheet_ColumnCellIterator + * @throws PHPExcel_Exception + */ + public function resetEnd($endRow = null) + { + $this->endRow = ($endRow) ? $endRow : $this->subject->getHighestRow(); + $this->adjustForExistingOnlyRange(); + + return $this; + } + + /** + * Set the row pointer to the selected row + * + * @param integer $row The row number to set the current pointer at + * @return PHPExcel_Worksheet_ColumnCellIterator + * @throws PHPExcel_Exception + */ + public function seek($row = 1) + { + if (($row < $this->startRow) || ($row > $this->endRow)) { + throw new PHPExcel_Exception("Row $row is out of range ({$this->startRow} - {$this->endRow})"); + } elseif ($this->onlyExistingCells && !($this->subject->cellExistsByColumnAndRow($this->columnIndex, $row))) { + throw new PHPExcel_Exception('In "IterateOnlyExistingCells" mode and Cell does not exist'); + } + $this->position = $row; + + return $this; + } + + /** + * Rewind the iterator to the starting row + */ + public function rewind() + { + $this->position = $this->startRow; + } + + /** + * Return the current cell in this worksheet column + * + * @return PHPExcel_Worksheet_Row + */ + public function current() + { + return $this->subject->getCellByColumnAndRow($this->columnIndex, $this->position); + } + + /** + * Return the current iterator key + * + * @return int + */ + public function key() + { + return $this->position; + } + + /** + * Set the iterator to its next value + */ + public function next() + { + do { + ++$this->position; + } while (($this->onlyExistingCells) && + (!$this->subject->cellExistsByColumnAndRow($this->columnIndex, $this->position)) && + ($this->position <= $this->endRow)); + } + + /** + * Set the iterator to its previous value + */ + public function prev() + { + if ($this->position <= $this->startRow) { + throw new PHPExcel_Exception("Row is already at the beginning of range ({$this->startRow} - {$this->endRow})"); + } + + do { + --$this->position; + } while (($this->onlyExistingCells) && + (!$this->subject->cellExistsByColumnAndRow($this->columnIndex, $this->position)) && + ($this->position >= $this->startRow)); + } + + /** + * Indicate if more rows exist in the worksheet range of rows that we're iterating + * + * @return boolean + */ + public function valid() + { + return $this->position <= $this->endRow; + } + + /** + * Validate start/end values for "IterateOnlyExistingCells" mode, and adjust if necessary + * + * @throws PHPExcel_Exception + */ + protected function adjustForExistingOnlyRange() + { + if ($this->onlyExistingCells) { + while ((!$this->subject->cellExistsByColumnAndRow($this->columnIndex, $this->startRow)) && + ($this->startRow <= $this->endRow)) { + ++$this->startRow; + } + if ($this->startRow > $this->endRow) { + throw new PHPExcel_Exception('No cells exist within the specified range'); + } + while ((!$this->subject->cellExistsByColumnAndRow($this->columnIndex, $this->endRow)) && + ($this->endRow >= $this->startRow)) { + --$this->endRow; + } + if ($this->endRow < $this->startRow) { + throw new PHPExcel_Exception('No cells exist within the specified range'); + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnDimension.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnDimension.php new file mode 100644 index 0000000..405b825 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnDimension.php @@ -0,0 +1,132 @@ +<?php + +/** + * PHPExcel_Worksheet_ColumnDimension + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_ColumnDimension extends PHPExcel_Worksheet_Dimension +{ + /** + * Column index + * + * @var int + */ + private $columnIndex; + + /** + * Column width + * + * When this is set to a negative value, the column width should be ignored by IWriter + * + * @var double + */ + private $width = -1; + + /** + * Auto size? + * + * @var bool + */ + private $autoSize = false; + + /** + * Create a new PHPExcel_Worksheet_ColumnDimension + * + * @param string $pIndex Character column index + */ + public function __construct($pIndex = 'A') + { + // Initialise values + $this->columnIndex = $pIndex; + + // set dimension as unformatted by default + parent::__construct(0); + } + + /** + * Get ColumnIndex + * + * @return string + */ + public function getColumnIndex() + { + return $this->columnIndex; + } + + /** + * Set ColumnIndex + * + * @param string $pValue + * @return PHPExcel_Worksheet_ColumnDimension + */ + public function setColumnIndex($pValue) + { + $this->columnIndex = $pValue; + return $this; + } + + /** + * Get Width + * + * @return double + */ + public function getWidth() + { + return $this->width; + } + + /** + * Set Width + * + * @param double $pValue + * @return PHPExcel_Worksheet_ColumnDimension + */ + public function setWidth($pValue = -1) + { + $this->width = $pValue; + return $this; + } + + /** + * Get Auto Size + * + * @return bool + */ + public function getAutoSize() + { + return $this->autoSize; + } + + /** + * Set Auto Size + * + * @param bool $pValue + * @return PHPExcel_Worksheet_ColumnDimension + */ + public function setAutoSize($pValue = false) + { + $this->autoSize = $pValue; + return $this; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnIterator.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnIterator.php new file mode 100644 index 0000000..0db3e53 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnIterator.php @@ -0,0 +1,201 @@ +<?php + +/** + * PHPExcel_Worksheet_ColumnIterator + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_ColumnIterator implements Iterator +{ + /** + * PHPExcel_Worksheet to iterate + * + * @var PHPExcel_Worksheet + */ + private $subject; + + /** + * Current iterator position + * + * @var int + */ + private $position = 0; + + /** + * Start position + * + * @var int + */ + private $startColumn = 0; + + + /** + * End position + * + * @var int + */ + private $endColumn = 0; + + + /** + * Create a new column iterator + * + * @param PHPExcel_Worksheet $subject The worksheet to iterate over + * @param string $startColumn The column address at which to start iterating + * @param string $endColumn Optionally, the column address at which to stop iterating + */ + public function __construct(PHPExcel_Worksheet $subject = null, $startColumn = 'A', $endColumn = null) + { + // Set subject + $this->subject = $subject; + $this->resetEnd($endColumn); + $this->resetStart($startColumn); + } + + /** + * Destructor + */ + public function __destruct() + { + unset($this->subject); + } + + /** + * (Re)Set the start column and the current column pointer + * + * @param integer $startColumn The column address at which to start iterating + * @return PHPExcel_Worksheet_ColumnIterator + * @throws PHPExcel_Exception + */ + public function resetStart($startColumn = 'A') + { + $startColumnIndex = PHPExcel_Cell::columnIndexFromString($startColumn) - 1; + if ($startColumnIndex > PHPExcel_Cell::columnIndexFromString($this->subject->getHighestColumn()) - 1) { + throw new PHPExcel_Exception("Start column ({$startColumn}) is beyond highest column ({$this->subject->getHighestColumn()})"); + } + + $this->startColumn = $startColumnIndex; + if ($this->endColumn < $this->startColumn) { + $this->endColumn = $this->startColumn; + } + $this->seek($startColumn); + + return $this; + } + + /** + * (Re)Set the end column + * + * @param string $endColumn The column address at which to stop iterating + * @return PHPExcel_Worksheet_ColumnIterator + */ + public function resetEnd($endColumn = null) + { + $endColumn = ($endColumn) ? $endColumn : $this->subject->getHighestColumn(); + $this->endColumn = PHPExcel_Cell::columnIndexFromString($endColumn) - 1; + + return $this; + } + + /** + * Set the column pointer to the selected column + * + * @param string $column The column address to set the current pointer at + * @return PHPExcel_Worksheet_ColumnIterator + * @throws PHPExcel_Exception + */ + public function seek($column = 'A') + { + $column = PHPExcel_Cell::columnIndexFromString($column) - 1; + if (($column < $this->startColumn) || ($column > $this->endColumn)) { + throw new PHPExcel_Exception("Column $column is out of range ({$this->startColumn} - {$this->endColumn})"); + } + $this->position = $column; + + return $this; + } + + /** + * Rewind the iterator to the starting column + */ + public function rewind() + { + $this->position = $this->startColumn; + } + + /** + * Return the current column in this worksheet + * + * @return PHPExcel_Worksheet_Column + */ + public function current() + { + return new PHPExcel_Worksheet_Column($this->subject, PHPExcel_Cell::stringFromColumnIndex($this->position)); + } + + /** + * Return the current iterator key + * + * @return string + */ + public function key() + { + return PHPExcel_Cell::stringFromColumnIndex($this->position); + } + + /** + * Set the iterator to its next value + */ + public function next() + { + ++$this->position; + } + + /** + * Set the iterator to its previous value + * + * @throws PHPExcel_Exception + */ + public function prev() + { + if ($this->position <= $this->startColumn) { + throw new PHPExcel_Exception( + "Column is already at the beginning of range (" . + PHPExcel_Cell::stringFromColumnIndex($this->endColumn) . " - " . + PHPExcel_Cell::stringFromColumnIndex($this->endColumn) . ")" + ); + } + + --$this->position; + } + + /** + * Indicate if more columns exist in the worksheet range of columns that we're iterating + * + * @return boolean + */ + public function valid() + { + return $this->position <= $this->endColumn; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Dimension.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Dimension.php new file mode 100644 index 0000000..84f692c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Dimension.php @@ -0,0 +1,178 @@ +<?php + +/** + * PHPExcel_Worksheet_Dimension + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +abstract class PHPExcel_Worksheet_Dimension +{ + /** + * Visible? + * + * @var bool + */ + private $visible = true; + + /** + * Outline level + * + * @var int + */ + private $outlineLevel = 0; + + /** + * Collapsed + * + * @var bool + */ + private $collapsed = false; + + /** + * Index to cellXf. Null value means row has no explicit cellXf format. + * + * @var int|null + */ + private $xfIndex; + + /** + * Create a new PHPExcel_Worksheet_Dimension + * + * @param int $pIndex Numeric row index + */ + public function __construct($initialValue = null) + { + // set dimension as unformatted by default + $this->xfIndex = $initialValue; + } + + /** + * Get Visible + * + * @return bool + */ + public function getVisible() + { + return $this->visible; + } + + /** + * Set Visible + * + * @param bool $pValue + * @return PHPExcel_Worksheet_Dimension + */ + public function setVisible($pValue = true) + { + $this->visible = $pValue; + return $this; + } + + /** + * Get Outline Level + * + * @return int + */ + public function getOutlineLevel() + { + return $this->outlineLevel; + } + + /** + * Set Outline Level + * + * Value must be between 0 and 7 + * + * @param int $pValue + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_Dimension + */ + public function setOutlineLevel($pValue) + { + if ($pValue < 0 || $pValue > 7) { + throw new PHPExcel_Exception("Outline level must range between 0 and 7."); + } + + $this->outlineLevel = $pValue; + return $this; + } + + /** + * Get Collapsed + * + * @return bool + */ + public function getCollapsed() + { + return $this->collapsed; + } + + /** + * Set Collapsed + * + * @param bool $pValue + * @return PHPExcel_Worksheet_Dimension + */ + public function setCollapsed($pValue = true) + { + $this->collapsed = $pValue; + return $this; + } + + /** + * Get index to cellXf + * + * @return int + */ + public function getXfIndex() + { + return $this->xfIndex; + } + + /** + * Set index to cellXf + * + * @param int $pValue + * @return PHPExcel_Worksheet_Dimension + */ + public function setXfIndex($pValue = 0) + { + $this->xfIndex = $pValue; + return $this; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing.php new file mode 100644 index 0000000..e39d3eb --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing.php @@ -0,0 +1,147 @@ +<?php + +/** + * PHPExcel_Worksheet_Drawing + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet_Drawing + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_Drawing extends PHPExcel_Worksheet_BaseDrawing implements PHPExcel_IComparable +{ + /** + * Path + * + * @var string + */ + private $path; + + /** + * Create a new PHPExcel_Worksheet_Drawing + */ + public function __construct() + { + // Initialise values + $this->path = ''; + + // Initialize parent + parent::__construct(); + } + + /** + * Get Filename + * + * @return string + */ + public function getFilename() + { + return basename($this->path); + } + + /** + * Get indexed filename (using image index) + * + * @return string + */ + public function getIndexedFilename() + { + $fileName = $this->getFilename(); + $fileName = str_replace(' ', '_', $fileName); + return str_replace('.' . $this->getExtension(), '', $fileName) . $this->getImageIndex() . '.' . $this->getExtension(); + } + + /** + * Get Extension + * + * @return string + */ + public function getExtension() + { + $exploded = explode(".", basename($this->path)); + return $exploded[count($exploded) - 1]; + } + + /** + * Get Path + * + * @return string + */ + public function getPath() + { + return $this->path; + } + + /** + * Set Path + * + * @param string $pValue File path + * @param boolean $pVerifyFile Verify file + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_Drawing + */ + public function setPath($pValue = '', $pVerifyFile = true) + { + if ($pVerifyFile) { + if (file_exists($pValue)) { + $this->path = $pValue; + + if ($this->width == 0 && $this->height == 0) { + // Get width/height + list($this->width, $this->height) = getimagesize($pValue); + } + } else { + throw new PHPExcel_Exception("File $pValue not found!"); + } + } else { + $this->path = $pValue; + } + return $this; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->path . + parent::getHashCode() . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing/Shadow.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing/Shadow.php new file mode 100644 index 0000000..84db91d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing/Shadow.php @@ -0,0 +1,296 @@ +<?php + +/** + * PHPExcel_Worksheet_Drawing_Shadow + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet_Drawing + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_Drawing_Shadow implements PHPExcel_IComparable +{ + /* Shadow alignment */ + const SHADOW_BOTTOM = 'b'; + const SHADOW_BOTTOM_LEFT = 'bl'; + const SHADOW_BOTTOM_RIGHT = 'br'; + const SHADOW_CENTER = 'ctr'; + const SHADOW_LEFT = 'l'; + const SHADOW_TOP = 't'; + const SHADOW_TOP_LEFT = 'tl'; + const SHADOW_TOP_RIGHT = 'tr'; + + /** + * Visible + * + * @var boolean + */ + private $visible; + + /** + * Blur radius + * + * Defaults to 6 + * + * @var int + */ + private $blurRadius; + + /** + * Shadow distance + * + * Defaults to 2 + * + * @var int + */ + private $distance; + + /** + * Shadow direction (in degrees) + * + * @var int + */ + private $direction; + + /** + * Shadow alignment + * + * @var int + */ + private $alignment; + + /** + * Color + * + * @var PHPExcel_Style_Color + */ + private $color; + + /** + * Alpha + * + * @var int + */ + private $alpha; + + /** + * Create a new PHPExcel_Worksheet_Drawing_Shadow + */ + public function __construct() + { + // Initialise values + $this->visible = false; + $this->blurRadius = 6; + $this->distance = 2; + $this->direction = 0; + $this->alignment = PHPExcel_Worksheet_Drawing_Shadow::SHADOW_BOTTOM_RIGHT; + $this->color = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK); + $this->alpha = 50; + } + + /** + * Get Visible + * + * @return boolean + */ + public function getVisible() + { + return $this->visible; + } + + /** + * Set Visible + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Drawing_Shadow + */ + public function setVisible($pValue = false) + { + $this->visible = $pValue; + return $this; + } + + /** + * Get Blur radius + * + * @return int + */ + public function getBlurRadius() + { + return $this->blurRadius; + } + + /** + * Set Blur radius + * + * @param int $pValue + * @return PHPExcel_Worksheet_Drawing_Shadow + */ + public function setBlurRadius($pValue = 6) + { + $this->blurRadius = $pValue; + return $this; + } + + /** + * Get Shadow distance + * + * @return int + */ + public function getDistance() + { + return $this->distance; + } + + /** + * Set Shadow distance + * + * @param int $pValue + * @return PHPExcel_Worksheet_Drawing_Shadow + */ + public function setDistance($pValue = 2) + { + $this->distance = $pValue; + return $this; + } + + /** + * Get Shadow direction (in degrees) + * + * @return int + */ + public function getDirection() + { + return $this->direction; + } + + /** + * Set Shadow direction (in degrees) + * + * @param int $pValue + * @return PHPExcel_Worksheet_Drawing_Shadow + */ + public function setDirection($pValue = 0) + { + $this->direction = $pValue; + return $this; + } + + /** + * Get Shadow alignment + * + * @return int + */ + public function getAlignment() + { + return $this->alignment; + } + + /** + * Set Shadow alignment + * + * @param int $pValue + * @return PHPExcel_Worksheet_Drawing_Shadow + */ + public function setAlignment($pValue = 0) + { + $this->alignment = $pValue; + return $this; + } + + /** + * Get Color + * + * @return PHPExcel_Style_Color + */ + public function getColor() + { + return $this->color; + } + + /** + * Set Color + * + * @param PHPExcel_Style_Color $pValue + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_Drawing_Shadow + */ + public function setColor(PHPExcel_Style_Color $pValue = null) + { + $this->color = $pValue; + return $this; + } + + /** + * Get Alpha + * + * @return int + */ + public function getAlpha() + { + return $this->alpha; + } + + /** + * Set Alpha + * + * @param int $pValue + * @return PHPExcel_Worksheet_Drawing_Shadow + */ + public function setAlpha($pValue = 0) + { + $this->alpha = $pValue; + return $this; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + ($this->visible ? 't' : 'f') . + $this->blurRadius . + $this->distance . + $this->direction . + $this->alignment . + $this->color->getHashCode() . + $this->alpha . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooter.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooter.php new file mode 100644 index 0000000..3a88923 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooter.php @@ -0,0 +1,494 @@ +<?php +/** + * PHPExcel_Worksheet_HeaderFooter + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not,241 write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + * + * <code> + * Header/Footer Formatting Syntax taken from Office Open XML Part 4 - Markup Language Reference, page 1970: + * + * There are a number of formatting codes that can be written inline with the actual header / footer text, which + * affect the formatting in the header or footer. + * + * Example: This example shows the text "Center Bold Header" on the first line (center section), and the date on + * the second line (center section). + * &CCenter &"-,Bold"Bold&"-,Regular"Header_x000A_&D + * + * General Rules: + * There is no required order in which these codes must appear. + * + * The first occurrence of the following codes turns the formatting ON, the second occurrence turns it OFF again: + * - strikethrough + * - superscript + * - subscript + * Superscript and subscript cannot both be ON at same time. Whichever comes first wins and the other is ignored, + * while the first is ON. + * &L - code for "left section" (there are three header / footer locations, "left", "center", and "right"). When + * two or more occurrences of this section marker exist, the contents from all markers are concatenated, in the + * order of appearance, and placed into the left section. + * &P - code for "current page #" + * &N - code for "total pages" + * &font size - code for "text font size", where font size is a font size in points. + * &K - code for "text font color" + * RGB Color is specified as RRGGBB + * Theme Color is specifed as TTSNN where TT is the theme color Id, S is either "+" or "-" of the tint/shade + * value, NN is the tint/shade value. + * &S - code for "text strikethrough" on / off + * &X - code for "text super script" on / off + * &Y - code for "text subscript" on / off + * &C - code for "center section". When two or more occurrences of this section marker exist, the contents + * from all markers are concatenated, in the order of appearance, and placed into the center section. + * + * &D - code for "date" + * &T - code for "time" + * &G - code for "picture as background" + * &U - code for "text single underline" + * &E - code for "double underline" + * &R - code for "right section". When two or more occurrences of this section marker exist, the contents + * from all markers are concatenated, in the order of appearance, and placed into the right section. + * &Z - code for "this workbook's file path" + * &F - code for "this workbook's file name" + * &A - code for "sheet tab name" + * &+ - code for add to page #. + * &- - code for subtract from page #. + * &"font name,font type" - code for "text font name" and "text font type", where font name and font type + * are strings specifying the name and type of the font, separated by a comma. When a hyphen appears in font + * name, it means "none specified". Both of font name and font type can be localized values. + * &"-,Bold" - code for "bold font style" + * &B - also means "bold font style". + * &"-,Regular" - code for "regular font style" + * &"-,Italic" - code for "italic font style" + * &I - also means "italic font style" + * &"-,Bold Italic" code for "bold italic font style" + * &O - code for "outline style" + * &H - code for "shadow style" + * </code> + * + */ +class PHPExcel_Worksheet_HeaderFooter +{ + /* Header/footer image location */ + const IMAGE_HEADER_LEFT = 'LH'; + const IMAGE_HEADER_CENTER = 'CH'; + const IMAGE_HEADER_RIGHT = 'RH'; + const IMAGE_FOOTER_LEFT = 'LF'; + const IMAGE_FOOTER_CENTER = 'CF'; + const IMAGE_FOOTER_RIGHT = 'RF'; + + /** + * OddHeader + * + * @var string + */ + private $oddHeader = ''; + + /** + * OddFooter + * + * @var string + */ + private $oddFooter = ''; + + /** + * EvenHeader + * + * @var string + */ + private $evenHeader = ''; + + /** + * EvenFooter + * + * @var string + */ + private $evenFooter = ''; + + /** + * FirstHeader + * + * @var string + */ + private $firstHeader = ''; + + /** + * FirstFooter + * + * @var string + */ + private $firstFooter = ''; + + /** + * Different header for Odd/Even, defaults to false + * + * @var boolean + */ + private $differentOddEven = false; + + /** + * Different header for first page, defaults to false + * + * @var boolean + */ + private $differentFirst = false; + + /** + * Scale with document, defaults to true + * + * @var boolean + */ + private $scaleWithDocument = true; + + /** + * Align with margins, defaults to true + * + * @var boolean + */ + private $alignWithMargins = true; + + /** + * Header/footer images + * + * @var PHPExcel_Worksheet_HeaderFooterDrawing[] + */ + private $headerFooterImages = array(); + + /** + * Create a new PHPExcel_Worksheet_HeaderFooter + */ + public function __construct() + { + } + + /** + * Get OddHeader + * + * @return string + */ + public function getOddHeader() + { + return $this->oddHeader; + } + + /** + * Set OddHeader + * + * @param string $pValue + * @return PHPExcel_Worksheet_HeaderFooter + */ + public function setOddHeader($pValue) + { + $this->oddHeader = $pValue; + return $this; + } + + /** + * Get OddFooter + * + * @return string + */ + public function getOddFooter() + { + return $this->oddFooter; + } + + /** + * Set OddFooter + * + * @param string $pValue + * @return PHPExcel_Worksheet_HeaderFooter + */ + public function setOddFooter($pValue) + { + $this->oddFooter = $pValue; + return $this; + } + + /** + * Get EvenHeader + * + * @return string + */ + public function getEvenHeader() + { + return $this->evenHeader; + } + + /** + * Set EvenHeader + * + * @param string $pValue + * @return PHPExcel_Worksheet_HeaderFooter + */ + public function setEvenHeader($pValue) + { + $this->evenHeader = $pValue; + return $this; + } + + /** + * Get EvenFooter + * + * @return string + */ + public function getEvenFooter() + { + return $this->evenFooter; + } + + /** + * Set EvenFooter + * + * @param string $pValue + * @return PHPExcel_Worksheet_HeaderFooter + */ + public function setEvenFooter($pValue) + { + $this->evenFooter = $pValue; + return $this; + } + + /** + * Get FirstHeader + * + * @return string + */ + public function getFirstHeader() + { + return $this->firstHeader; + } + + /** + * Set FirstHeader + * + * @param string $pValue + * @return PHPExcel_Worksheet_HeaderFooter + */ + public function setFirstHeader($pValue) + { + $this->firstHeader = $pValue; + return $this; + } + + /** + * Get FirstFooter + * + * @return string + */ + public function getFirstFooter() + { + return $this->firstFooter; + } + + /** + * Set FirstFooter + * + * @param string $pValue + * @return PHPExcel_Worksheet_HeaderFooter + */ + public function setFirstFooter($pValue) + { + $this->firstFooter = $pValue; + return $this; + } + + /** + * Get DifferentOddEven + * + * @return boolean + */ + public function getDifferentOddEven() + { + return $this->differentOddEven; + } + + /** + * Set DifferentOddEven + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_HeaderFooter + */ + public function setDifferentOddEven($pValue = false) + { + $this->differentOddEven = $pValue; + return $this; + } + + /** + * Get DifferentFirst + * + * @return boolean + */ + public function getDifferentFirst() + { + return $this->differentFirst; + } + + /** + * Set DifferentFirst + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_HeaderFooter + */ + public function setDifferentFirst($pValue = false) + { + $this->differentFirst = $pValue; + return $this; + } + + /** + * Get ScaleWithDocument + * + * @return boolean + */ + public function getScaleWithDocument() + { + return $this->scaleWithDocument; + } + + /** + * Set ScaleWithDocument + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_HeaderFooter + */ + public function setScaleWithDocument($pValue = true) + { + $this->scaleWithDocument = $pValue; + return $this; + } + + /** + * Get AlignWithMargins + * + * @return boolean + */ + public function getAlignWithMargins() + { + return $this->alignWithMargins; + } + + /** + * Set AlignWithMargins + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_HeaderFooter + */ + public function setAlignWithMargins($pValue = true) + { + $this->alignWithMargins = $pValue; + return $this; + } + + /** + * Add header/footer image + * + * @param PHPExcel_Worksheet_HeaderFooterDrawing $image + * @param string $location + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_HeaderFooter + */ + public function addImage(PHPExcel_Worksheet_HeaderFooterDrawing $image = null, $location = self::IMAGE_HEADER_LEFT) + { + $this->headerFooterImages[$location] = $image; + return $this; + } + + /** + * Remove header/footer image + * + * @param string $location + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_HeaderFooter + */ + public function removeImage($location = self::IMAGE_HEADER_LEFT) + { + if (isset($this->headerFooterImages[$location])) { + unset($this->headerFooterImages[$location]); + } + return $this; + } + + /** + * Set header/footer images + * + * @param PHPExcel_Worksheet_HeaderFooterDrawing[] $images + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_HeaderFooter + */ + public function setImages($images) + { + if (!is_array($images)) { + throw new PHPExcel_Exception('Invalid parameter!'); + } + + $this->headerFooterImages = $images; + return $this; + } + + /** + * Get header/footer images + * + * @return PHPExcel_Worksheet_HeaderFooterDrawing[] + */ + public function getImages() + { + // Sort array + $images = array(); + if (isset($this->headerFooterImages[self::IMAGE_HEADER_LEFT])) { + $images[self::IMAGE_HEADER_LEFT] = $this->headerFooterImages[self::IMAGE_HEADER_LEFT]; + } + if (isset($this->headerFooterImages[self::IMAGE_HEADER_CENTER])) { + $images[self::IMAGE_HEADER_CENTER] = $this->headerFooterImages[self::IMAGE_HEADER_CENTER]; + } + if (isset($this->headerFooterImages[self::IMAGE_HEADER_RIGHT])) { + $images[self::IMAGE_HEADER_RIGHT] = $this->headerFooterImages[self::IMAGE_HEADER_RIGHT]; + } + if (isset($this->headerFooterImages[self::IMAGE_FOOTER_LEFT])) { + $images[self::IMAGE_FOOTER_LEFT] = $this->headerFooterImages[self::IMAGE_FOOTER_LEFT]; + } + if (isset($this->headerFooterImages[self::IMAGE_FOOTER_CENTER])) { + $images[self::IMAGE_FOOTER_CENTER] = $this->headerFooterImages[self::IMAGE_FOOTER_CENTER]; + } + if (isset($this->headerFooterImages[self::IMAGE_FOOTER_RIGHT])) { + $images[self::IMAGE_FOOTER_RIGHT] = $this->headerFooterImages[self::IMAGE_FOOTER_RIGHT]; + } + $this->headerFooterImages = $images; + + return $this->headerFooterImages; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooterDrawing.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooterDrawing.php new file mode 100644 index 0000000..a491f4b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooterDrawing.php @@ -0,0 +1,361 @@ +<?php + +/** + * PHPExcel_Worksheet_HeaderFooterDrawing + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_HeaderFooterDrawing extends PHPExcel_Worksheet_Drawing implements PHPExcel_IComparable +{ + /** + * Path + * + * @var string + */ + private $path; + + /** + * Name + * + * @var string + */ + protected $name; + + /** + * Offset X + * + * @var int + */ + protected $offsetX; + + /** + * Offset Y + * + * @var int + */ + protected $offsetY; + + /** + * Width + * + * @var int + */ + protected $width; + + /** + * Height + * + * @var int + */ + protected $height; + + /** + * Proportional resize + * + * @var boolean + */ + protected $resizeProportional; + + /** + * Create a new PHPExcel_Worksheet_HeaderFooterDrawing + */ + public function __construct() + { + // Initialise values + $this->path = ''; + $this->name = ''; + $this->offsetX = 0; + $this->offsetY = 0; + $this->width = 0; + $this->height = 0; + $this->resizeProportional = true; + } + + /** + * Get Name + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Set Name + * + * @param string $pValue + * @return PHPExcel_Worksheet_HeaderFooterDrawing + */ + public function setName($pValue = '') + { + $this->name = $pValue; + return $this; + } + + /** + * Get OffsetX + * + * @return int + */ + public function getOffsetX() + { + return $this->offsetX; + } + + /** + * Set OffsetX + * + * @param int $pValue + * @return PHPExcel_Worksheet_HeaderFooterDrawing + */ + public function setOffsetX($pValue = 0) + { + $this->offsetX = $pValue; + return $this; + } + + /** + * Get OffsetY + * + * @return int + */ + public function getOffsetY() + { + return $this->offsetY; + } + + /** + * Set OffsetY + * + * @param int $pValue + * @return PHPExcel_Worksheet_HeaderFooterDrawing + */ + public function setOffsetY($pValue = 0) + { + $this->offsetY = $pValue; + return $this; + } + + /** + * Get Width + * + * @return int + */ + public function getWidth() + { + return $this->width; + } + + /** + * Set Width + * + * @param int $pValue + * @return PHPExcel_Worksheet_HeaderFooterDrawing + */ + public function setWidth($pValue = 0) + { + // Resize proportional? + if ($this->resizeProportional && $pValue != 0) { + $ratio = $this->width / $this->height; + $this->height = round($ratio * $pValue); + } + + // Set width + $this->width = $pValue; + + return $this; + } + + /** + * Get Height + * + * @return int + */ + public function getHeight() + { + return $this->height; + } + + /** + * Set Height + * + * @param int $pValue + * @return PHPExcel_Worksheet_HeaderFooterDrawing + */ + public function setHeight($pValue = 0) + { + // Resize proportional? + if ($this->resizeProportional && $pValue != 0) { + $ratio = $this->width / $this->height; + $this->width = round($ratio * $pValue); + } + + // Set height + $this->height = $pValue; + + return $this; + } + + /** + * Set width and height with proportional resize + * Example: + * <code> + * $objDrawing->setResizeProportional(true); + * $objDrawing->setWidthAndHeight(160,120); + * </code> + * + * @author Vincent@luo MSN:kele_100@hotmail.com + * @param int $width + * @param int $height + * @return PHPExcel_Worksheet_HeaderFooterDrawing + */ + public function setWidthAndHeight($width = 0, $height = 0) + { + $xratio = $width / $this->width; + $yratio = $height / $this->height; + if ($this->resizeProportional && !($width == 0 || $height == 0)) { + if (($xratio * $this->height) < $height) { + $this->height = ceil($xratio * $this->height); + $this->width = $width; + } else { + $this->width = ceil($yratio * $this->width); + $this->height = $height; + } + } + return $this; + } + + /** + * Get ResizeProportional + * + * @return boolean + */ + public function getResizeProportional() + { + return $this->resizeProportional; + } + + /** + * Set ResizeProportional + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_HeaderFooterDrawing + */ + public function setResizeProportional($pValue = true) + { + $this->resizeProportional = $pValue; + return $this; + } + + /** + * Get Filename + * + * @return string + */ + public function getFilename() + { + return basename($this->path); + } + + /** + * Get Extension + * + * @return string + */ + public function getExtension() + { + $parts = explode(".", basename($this->path)); + return end($parts); + } + + /** + * Get Path + * + * @return string + */ + public function getPath() + { + return $this->path; + } + + /** + * Set Path + * + * @param string $pValue File path + * @param boolean $pVerifyFile Verify file + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_HeaderFooterDrawing + */ + public function setPath($pValue = '', $pVerifyFile = true) + { + if ($pVerifyFile) { + if (file_exists($pValue)) { + $this->path = $pValue; + + if ($this->width == 0 && $this->height == 0) { + // Get width/height + list($this->width, $this->height) = getimagesize($pValue); + } + } else { + throw new PHPExcel_Exception("File $pValue not found!"); + } + } else { + $this->path = $pValue; + } + return $this; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->path . + $this->name . + $this->offsetX . + $this->offsetY . + $this->width . + $this->height . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/MemoryDrawing.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/MemoryDrawing.php new file mode 100644 index 0000000..438ed2c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/MemoryDrawing.php @@ -0,0 +1,201 @@ +<?php + +/** + * PHPExcel_Worksheet_MemoryDrawing + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_MemoryDrawing extends PHPExcel_Worksheet_BaseDrawing implements PHPExcel_IComparable +{ + /* Rendering functions */ + const RENDERING_DEFAULT = 'imagepng'; + const RENDERING_PNG = 'imagepng'; + const RENDERING_GIF = 'imagegif'; + const RENDERING_JPEG = 'imagejpeg'; + + /* MIME types */ + const MIMETYPE_DEFAULT = 'image/png'; + const MIMETYPE_PNG = 'image/png'; + const MIMETYPE_GIF = 'image/gif'; + const MIMETYPE_JPEG = 'image/jpeg'; + + /** + * Image resource + * + * @var resource + */ + private $imageResource; + + /** + * Rendering function + * + * @var string + */ + private $renderingFunction; + + /** + * Mime type + * + * @var string + */ + private $mimeType; + + /** + * Unique name + * + * @var string + */ + private $uniqueName; + + /** + * Create a new PHPExcel_Worksheet_MemoryDrawing + */ + public function __construct() + { + // Initialise values + $this->imageResource = null; + $this->renderingFunction = self::RENDERING_DEFAULT; + $this->mimeType = self::MIMETYPE_DEFAULT; + $this->uniqueName = md5(rand(0, 9999). time() . rand(0, 9999)); + + // Initialize parent + parent::__construct(); + } + + /** + * Get image resource + * + * @return resource + */ + public function getImageResource() + { + return $this->imageResource; + } + + /** + * Set image resource + * + * @param $value resource + * @return PHPExcel_Worksheet_MemoryDrawing + */ + public function setImageResource($value = null) + { + $this->imageResource = $value; + + if (!is_null($this->imageResource)) { + // Get width/height + $this->width = imagesx($this->imageResource); + $this->height = imagesy($this->imageResource); + } + return $this; + } + + /** + * Get rendering function + * + * @return string + */ + public function getRenderingFunction() + { + return $this->renderingFunction; + } + + /** + * Set rendering function + * + * @param string $value + * @return PHPExcel_Worksheet_MemoryDrawing + */ + public function setRenderingFunction($value = PHPExcel_Worksheet_MemoryDrawing::RENDERING_DEFAULT) + { + $this->renderingFunction = $value; + return $this; + } + + /** + * Get mime type + * + * @return string + */ + public function getMimeType() + { + return $this->mimeType; + } + + /** + * Set mime type + * + * @param string $value + * @return PHPExcel_Worksheet_MemoryDrawing + */ + public function setMimeType($value = PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_DEFAULT) + { + $this->mimeType = $value; + return $this; + } + + /** + * Get indexed filename (using image index) + * + * @return string + */ + public function getIndexedFilename() + { + $extension = strtolower($this->getMimeType()); + $extension = explode('/', $extension); + $extension = $extension[1]; + + return $this->uniqueName . $this->getImageIndex() . '.' . $extension; + } + + /** + * Get hash code + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->renderingFunction . + $this->mimeType . + $this->uniqueName . + parent::getHashCode() . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/PageMargins.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/PageMargins.php new file mode 100644 index 0000000..70f5ee0 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/PageMargins.php @@ -0,0 +1,233 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + + +/** + * PHPExcel_Worksheet_PageMargins + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + */ +class PHPExcel_Worksheet_PageMargins +{ + /** + * Left + * + * @var double + */ + private $left = 0.7; + + /** + * Right + * + * @var double + */ + private $right = 0.7; + + /** + * Top + * + * @var double + */ + private $top = 0.75; + + /** + * Bottom + * + * @var double + */ + private $bottom = 0.75; + + /** + * Header + * + * @var double + */ + private $header = 0.3; + + /** + * Footer + * + * @var double + */ + private $footer = 0.3; + + /** + * Create a new PHPExcel_Worksheet_PageMargins + */ + public function __construct() + { + } + + /** + * Get Left + * + * @return double + */ + public function getLeft() + { + return $this->left; + } + + /** + * Set Left + * + * @param double $pValue + * @return PHPExcel_Worksheet_PageMargins + */ + public function setLeft($pValue) + { + $this->left = $pValue; + return $this; + } + + /** + * Get Right + * + * @return double + */ + public function getRight() + { + return $this->right; + } + + /** + * Set Right + * + * @param double $pValue + * @return PHPExcel_Worksheet_PageMargins + */ + public function setRight($pValue) + { + $this->right = $pValue; + return $this; + } + + /** + * Get Top + * + * @return double + */ + public function getTop() + { + return $this->top; + } + + /** + * Set Top + * + * @param double $pValue + * @return PHPExcel_Worksheet_PageMargins + */ + public function setTop($pValue) + { + $this->top = $pValue; + return $this; + } + + /** + * Get Bottom + * + * @return double + */ + public function getBottom() + { + return $this->bottom; + } + + /** + * Set Bottom + * + * @param double $pValue + * @return PHPExcel_Worksheet_PageMargins + */ + public function setBottom($pValue) + { + $this->bottom = $pValue; + return $this; + } + + /** + * Get Header + * + * @return double + */ + public function getHeader() + { + return $this->header; + } + + /** + * Set Header + * + * @param double $pValue + * @return PHPExcel_Worksheet_PageMargins + */ + public function setHeader($pValue) + { + $this->header = $pValue; + return $this; + } + + /** + * Get Footer + * + * @return double + */ + public function getFooter() + { + return $this->footer; + } + + /** + * Set Footer + * + * @param double $pValue + * @return PHPExcel_Worksheet_PageMargins + */ + public function setFooter($pValue) + { + $this->footer = $pValue; + return $this; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/PageSetup.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/PageSetup.php new file mode 100644 index 0000000..c67053e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/PageSetup.php @@ -0,0 +1,839 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + + +/** + * PHPExcel_Worksheet_PageSetup + * + * <code> + * Paper size taken from Office Open XML Part 4 - Markup Language Reference, page 1988: + * + * 1 = Letter paper (8.5 in. by 11 in.) + * 2 = Letter small paper (8.5 in. by 11 in.) + * 3 = Tabloid paper (11 in. by 17 in.) + * 4 = Ledger paper (17 in. by 11 in.) + * 5 = Legal paper (8.5 in. by 14 in.) + * 6 = Statement paper (5.5 in. by 8.5 in.) + * 7 = Executive paper (7.25 in. by 10.5 in.) + * 8 = A3 paper (297 mm by 420 mm) + * 9 = A4 paper (210 mm by 297 mm) + * 10 = A4 small paper (210 mm by 297 mm) + * 11 = A5 paper (148 mm by 210 mm) + * 12 = B4 paper (250 mm by 353 mm) + * 13 = B5 paper (176 mm by 250 mm) + * 14 = Folio paper (8.5 in. by 13 in.) + * 15 = Quarto paper (215 mm by 275 mm) + * 16 = Standard paper (10 in. by 14 in.) + * 17 = Standard paper (11 in. by 17 in.) + * 18 = Note paper (8.5 in. by 11 in.) + * 19 = #9 envelope (3.875 in. by 8.875 in.) + * 20 = #10 envelope (4.125 in. by 9.5 in.) + * 21 = #11 envelope (4.5 in. by 10.375 in.) + * 22 = #12 envelope (4.75 in. by 11 in.) + * 23 = #14 envelope (5 in. by 11.5 in.) + * 24 = C paper (17 in. by 22 in.) + * 25 = D paper (22 in. by 34 in.) + * 26 = E paper (34 in. by 44 in.) + * 27 = DL envelope (110 mm by 220 mm) + * 28 = C5 envelope (162 mm by 229 mm) + * 29 = C3 envelope (324 mm by 458 mm) + * 30 = C4 envelope (229 mm by 324 mm) + * 31 = C6 envelope (114 mm by 162 mm) + * 32 = C65 envelope (114 mm by 229 mm) + * 33 = B4 envelope (250 mm by 353 mm) + * 34 = B5 envelope (176 mm by 250 mm) + * 35 = B6 envelope (176 mm by 125 mm) + * 36 = Italy envelope (110 mm by 230 mm) + * 37 = Monarch envelope (3.875 in. by 7.5 in.). + * 38 = 6 3/4 envelope (3.625 in. by 6.5 in.) + * 39 = US standard fanfold (14.875 in. by 11 in.) + * 40 = German standard fanfold (8.5 in. by 12 in.) + * 41 = German legal fanfold (8.5 in. by 13 in.) + * 42 = ISO B4 (250 mm by 353 mm) + * 43 = Japanese double postcard (200 mm by 148 mm) + * 44 = Standard paper (9 in. by 11 in.) + * 45 = Standard paper (10 in. by 11 in.) + * 46 = Standard paper (15 in. by 11 in.) + * 47 = Invite envelope (220 mm by 220 mm) + * 50 = Letter extra paper (9.275 in. by 12 in.) + * 51 = Legal extra paper (9.275 in. by 15 in.) + * 52 = Tabloid extra paper (11.69 in. by 18 in.) + * 53 = A4 extra paper (236 mm by 322 mm) + * 54 = Letter transverse paper (8.275 in. by 11 in.) + * 55 = A4 transverse paper (210 mm by 297 mm) + * 56 = Letter extra transverse paper (9.275 in. by 12 in.) + * 57 = SuperA/SuperA/A4 paper (227 mm by 356 mm) + * 58 = SuperB/SuperB/A3 paper (305 mm by 487 mm) + * 59 = Letter plus paper (8.5 in. by 12.69 in.) + * 60 = A4 plus paper (210 mm by 330 mm) + * 61 = A5 transverse paper (148 mm by 210 mm) + * 62 = JIS B5 transverse paper (182 mm by 257 mm) + * 63 = A3 extra paper (322 mm by 445 mm) + * 64 = A5 extra paper (174 mm by 235 mm) + * 65 = ISO B5 extra paper (201 mm by 276 mm) + * 66 = A2 paper (420 mm by 594 mm) + * 67 = A3 transverse paper (297 mm by 420 mm) + * 68 = A3 extra transverse paper (322 mm by 445 mm) + * </code> + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + */ +class PHPExcel_Worksheet_PageSetup +{ + /* Paper size */ + const PAPERSIZE_LETTER = 1; + const PAPERSIZE_LETTER_SMALL = 2; + const PAPERSIZE_TABLOID = 3; + const PAPERSIZE_LEDGER = 4; + const PAPERSIZE_LEGAL = 5; + const PAPERSIZE_STATEMENT = 6; + const PAPERSIZE_EXECUTIVE = 7; + const PAPERSIZE_A3 = 8; + const PAPERSIZE_A4 = 9; + const PAPERSIZE_A4_SMALL = 10; + const PAPERSIZE_A5 = 11; + const PAPERSIZE_B4 = 12; + const PAPERSIZE_B5 = 13; + const PAPERSIZE_FOLIO = 14; + const PAPERSIZE_QUARTO = 15; + const PAPERSIZE_STANDARD_1 = 16; + const PAPERSIZE_STANDARD_2 = 17; + const PAPERSIZE_NOTE = 18; + const PAPERSIZE_NO9_ENVELOPE = 19; + const PAPERSIZE_NO10_ENVELOPE = 20; + const PAPERSIZE_NO11_ENVELOPE = 21; + const PAPERSIZE_NO12_ENVELOPE = 22; + const PAPERSIZE_NO14_ENVELOPE = 23; + const PAPERSIZE_C = 24; + const PAPERSIZE_D = 25; + const PAPERSIZE_E = 26; + const PAPERSIZE_DL_ENVELOPE = 27; + const PAPERSIZE_C5_ENVELOPE = 28; + const PAPERSIZE_C3_ENVELOPE = 29; + const PAPERSIZE_C4_ENVELOPE = 30; + const PAPERSIZE_C6_ENVELOPE = 31; + const PAPERSIZE_C65_ENVELOPE = 32; + const PAPERSIZE_B4_ENVELOPE = 33; + const PAPERSIZE_B5_ENVELOPE = 34; + const PAPERSIZE_B6_ENVELOPE = 35; + const PAPERSIZE_ITALY_ENVELOPE = 36; + const PAPERSIZE_MONARCH_ENVELOPE = 37; + const PAPERSIZE_6_3_4_ENVELOPE = 38; + const PAPERSIZE_US_STANDARD_FANFOLD = 39; + const PAPERSIZE_GERMAN_STANDARD_FANFOLD = 40; + const PAPERSIZE_GERMAN_LEGAL_FANFOLD = 41; + const PAPERSIZE_ISO_B4 = 42; + const PAPERSIZE_JAPANESE_DOUBLE_POSTCARD = 43; + const PAPERSIZE_STANDARD_PAPER_1 = 44; + const PAPERSIZE_STANDARD_PAPER_2 = 45; + const PAPERSIZE_STANDARD_PAPER_3 = 46; + const PAPERSIZE_INVITE_ENVELOPE = 47; + const PAPERSIZE_LETTER_EXTRA_PAPER = 48; + const PAPERSIZE_LEGAL_EXTRA_PAPER = 49; + const PAPERSIZE_TABLOID_EXTRA_PAPER = 50; + const PAPERSIZE_A4_EXTRA_PAPER = 51; + const PAPERSIZE_LETTER_TRANSVERSE_PAPER = 52; + const PAPERSIZE_A4_TRANSVERSE_PAPER = 53; + const PAPERSIZE_LETTER_EXTRA_TRANSVERSE_PAPER = 54; + const PAPERSIZE_SUPERA_SUPERA_A4_PAPER = 55; + const PAPERSIZE_SUPERB_SUPERB_A3_PAPER = 56; + const PAPERSIZE_LETTER_PLUS_PAPER = 57; + const PAPERSIZE_A4_PLUS_PAPER = 58; + const PAPERSIZE_A5_TRANSVERSE_PAPER = 59; + const PAPERSIZE_JIS_B5_TRANSVERSE_PAPER = 60; + const PAPERSIZE_A3_EXTRA_PAPER = 61; + const PAPERSIZE_A5_EXTRA_PAPER = 62; + const PAPERSIZE_ISO_B5_EXTRA_PAPER = 63; + const PAPERSIZE_A2_PAPER = 64; + const PAPERSIZE_A3_TRANSVERSE_PAPER = 65; + const PAPERSIZE_A3_EXTRA_TRANSVERSE_PAPER = 66; + + /* Page orientation */ + const ORIENTATION_DEFAULT = 'default'; + const ORIENTATION_LANDSCAPE = 'landscape'; + const ORIENTATION_PORTRAIT = 'portrait'; + + /* Print Range Set Method */ + const SETPRINTRANGE_OVERWRITE = 'O'; + const SETPRINTRANGE_INSERT = 'I'; + + + /** + * Paper size + * + * @var int + */ + private $paperSize = PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER; + + /** + * Orientation + * + * @var string + */ + private $orientation = PHPExcel_Worksheet_PageSetup::ORIENTATION_DEFAULT; + + /** + * Scale (Print Scale) + * + * Print scaling. Valid values range from 10 to 400 + * This setting is overridden when fitToWidth and/or fitToHeight are in use + * + * @var int? + */ + private $scale = 100; + + /** + * Fit To Page + * Whether scale or fitToWith / fitToHeight applies + * + * @var boolean + */ + private $fitToPage = false; + + /** + * Fit To Height + * Number of vertical pages to fit on + * + * @var int? + */ + private $fitToHeight = 1; + + /** + * Fit To Width + * Number of horizontal pages to fit on + * + * @var int? + */ + private $fitToWidth = 1; + + /** + * Columns to repeat at left + * + * @var array Containing start column and end column, empty array if option unset + */ + private $columnsToRepeatAtLeft = array('', ''); + + /** + * Rows to repeat at top + * + * @var array Containing start row number and end row number, empty array if option unset + */ + private $rowsToRepeatAtTop = array(0, 0); + + /** + * Center page horizontally + * + * @var boolean + */ + private $horizontalCentered = false; + + /** + * Center page vertically + * + * @var boolean + */ + private $verticalCentered = false; + + /** + * Print area + * + * @var string + */ + private $printArea = null; + + /** + * First page number + * + * @var int + */ + private $firstPageNumber = null; + + /** + * Create a new PHPExcel_Worksheet_PageSetup + */ + public function __construct() + { + } + + /** + * Get Paper Size + * + * @return int + */ + public function getPaperSize() + { + return $this->paperSize; + } + + /** + * Set Paper Size + * + * @param int $pValue + * @return PHPExcel_Worksheet_PageSetup + */ + public function setPaperSize($pValue = PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER) + { + $this->paperSize = $pValue; + return $this; + } + + /** + * Get Orientation + * + * @return string + */ + public function getOrientation() + { + return $this->orientation; + } + + /** + * Set Orientation + * + * @param string $pValue + * @return PHPExcel_Worksheet_PageSetup + */ + public function setOrientation($pValue = PHPExcel_Worksheet_PageSetup::ORIENTATION_DEFAULT) + { + $this->orientation = $pValue; + return $this; + } + + /** + * Get Scale + * + * @return int? + */ + public function getScale() + { + return $this->scale; + } + + /** + * Set Scale + * + * Print scaling. Valid values range from 10 to 400 + * This setting is overridden when fitToWidth and/or fitToHeight are in use + * + * @param int? $pValue + * @param boolean $pUpdate Update fitToPage so scaling applies rather than fitToHeight / fitToWidth + * @return PHPExcel_Worksheet_PageSetup + * @throws PHPExcel_Exception + */ + public function setScale($pValue = 100, $pUpdate = true) + { + // Microsoft Office Excel 2007 only allows setting a scale between 10 and 400 via the user interface, + // but it is apparently still able to handle any scale >= 0, where 0 results in 100 + if (($pValue >= 0) || is_null($pValue)) { + $this->scale = $pValue; + if ($pUpdate) { + $this->fitToPage = false; + } + } else { + throw new PHPExcel_Exception("Scale must not be negative"); + } + return $this; + } + + /** + * Get Fit To Page + * + * @return boolean + */ + public function getFitToPage() + { + return $this->fitToPage; + } + + /** + * Set Fit To Page + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_PageSetup + */ + public function setFitToPage($pValue = true) + { + $this->fitToPage = $pValue; + return $this; + } + + /** + * Get Fit To Height + * + * @return int? + */ + public function getFitToHeight() + { + return $this->fitToHeight; + } + + /** + * Set Fit To Height + * + * @param int? $pValue + * @param boolean $pUpdate Update fitToPage so it applies rather than scaling + * @return PHPExcel_Worksheet_PageSetup + */ + public function setFitToHeight($pValue = 1, $pUpdate = true) + { + $this->fitToHeight = $pValue; + if ($pUpdate) { + $this->fitToPage = true; + } + return $this; + } + + /** + * Get Fit To Width + * + * @return int? + */ + public function getFitToWidth() + { + return $this->fitToWidth; + } + + /** + * Set Fit To Width + * + * @param int? $pValue + * @param boolean $pUpdate Update fitToPage so it applies rather than scaling + * @return PHPExcel_Worksheet_PageSetup + */ + public function setFitToWidth($pValue = 1, $pUpdate = true) + { + $this->fitToWidth = $pValue; + if ($pUpdate) { + $this->fitToPage = true; + } + return $this; + } + + /** + * Is Columns to repeat at left set? + * + * @return boolean + */ + public function isColumnsToRepeatAtLeftSet() + { + if (is_array($this->columnsToRepeatAtLeft)) { + if ($this->columnsToRepeatAtLeft[0] != '' && $this->columnsToRepeatAtLeft[1] != '') { + return true; + } + } + + return false; + } + + /** + * Get Columns to repeat at left + * + * @return array Containing start column and end column, empty array if option unset + */ + public function getColumnsToRepeatAtLeft() + { + return $this->columnsToRepeatAtLeft; + } + + /** + * Set Columns to repeat at left + * + * @param array $pValue Containing start column and end column, empty array if option unset + * @return PHPExcel_Worksheet_PageSetup + */ + public function setColumnsToRepeatAtLeft($pValue = null) + { + if (is_array($pValue)) { + $this->columnsToRepeatAtLeft = $pValue; + } + return $this; + } + + /** + * Set Columns to repeat at left by start and end + * + * @param string $pStart + * @param string $pEnd + * @return PHPExcel_Worksheet_PageSetup + */ + public function setColumnsToRepeatAtLeftByStartAndEnd($pStart = 'A', $pEnd = 'A') + { + $this->columnsToRepeatAtLeft = array($pStart, $pEnd); + return $this; + } + + /** + * Is Rows to repeat at top set? + * + * @return boolean + */ + public function isRowsToRepeatAtTopSet() + { + if (is_array($this->rowsToRepeatAtTop)) { + if ($this->rowsToRepeatAtTop[0] != 0 && $this->rowsToRepeatAtTop[1] != 0) { + return true; + } + } + + return false; + } + + /** + * Get Rows to repeat at top + * + * @return array Containing start column and end column, empty array if option unset + */ + public function getRowsToRepeatAtTop() + { + return $this->rowsToRepeatAtTop; + } + + /** + * Set Rows to repeat at top + * + * @param array $pValue Containing start column and end column, empty array if option unset + * @return PHPExcel_Worksheet_PageSetup + */ + public function setRowsToRepeatAtTop($pValue = null) + { + if (is_array($pValue)) { + $this->rowsToRepeatAtTop = $pValue; + } + return $this; + } + + /** + * Set Rows to repeat at top by start and end + * + * @param int $pStart + * @param int $pEnd + * @return PHPExcel_Worksheet_PageSetup + */ + public function setRowsToRepeatAtTopByStartAndEnd($pStart = 1, $pEnd = 1) + { + $this->rowsToRepeatAtTop = array($pStart, $pEnd); + return $this; + } + + /** + * Get center page horizontally + * + * @return bool + */ + public function getHorizontalCentered() + { + return $this->horizontalCentered; + } + + /** + * Set center page horizontally + * + * @param bool $value + * @return PHPExcel_Worksheet_PageSetup + */ + public function setHorizontalCentered($value = false) + { + $this->horizontalCentered = $value; + return $this; + } + + /** + * Get center page vertically + * + * @return bool + */ + public function getVerticalCentered() + { + return $this->verticalCentered; + } + + /** + * Set center page vertically + * + * @param bool $value + * @return PHPExcel_Worksheet_PageSetup + */ + public function setVerticalCentered($value = false) + { + $this->verticalCentered = $value; + return $this; + } + + /** + * Get print area + * + * @param int $index Identifier for a specific print area range if several ranges have been set + * Default behaviour, or a index value of 0, will return all ranges as a comma-separated string + * Otherwise, the specific range identified by the value of $index will be returned + * Print areas are numbered from 1 + * @throws PHPExcel_Exception + * @return string + */ + public function getPrintArea($index = 0) + { + if ($index == 0) { + return $this->printArea; + } + $printAreas = explode(',', $this->printArea); + if (isset($printAreas[$index-1])) { + return $printAreas[$index-1]; + } + throw new PHPExcel_Exception("Requested Print Area does not exist"); + } + + /** + * Is print area set? + * + * @param int $index Identifier for a specific print area range if several ranges have been set + * Default behaviour, or an index value of 0, will identify whether any print range is set + * Otherwise, existence of the range identified by the value of $index will be returned + * Print areas are numbered from 1 + * @return boolean + */ + public function isPrintAreaSet($index = 0) + { + if ($index == 0) { + return !is_null($this->printArea); + } + $printAreas = explode(',', $this->printArea); + return isset($printAreas[$index-1]); + } + + /** + * Clear a print area + * + * @param int $index Identifier for a specific print area range if several ranges have been set + * Default behaviour, or an index value of 0, will clear all print ranges that are set + * Otherwise, the range identified by the value of $index will be removed from the series + * Print areas are numbered from 1 + * @return PHPExcel_Worksheet_PageSetup + */ + public function clearPrintArea($index = 0) + { + if ($index == 0) { + $this->printArea = null; + } else { + $printAreas = explode(',', $this->printArea); + if (isset($printAreas[$index-1])) { + unset($printAreas[$index-1]); + $this->printArea = implode(',', $printAreas); + } + } + + return $this; + } + + /** + * Set print area. e.g. 'A1:D10' or 'A1:D10,G5:M20' + * + * @param string $value + * @param int $index Identifier for a specific print area range allowing several ranges to be set + * When the method is "O"verwrite, then a positive integer index will overwrite that indexed + * entry in the print areas list; a negative index value will identify which entry to + * overwrite working bacward through the print area to the list, with the last entry as -1. + * Specifying an index value of 0, will overwrite <b>all</b> existing print ranges. + * When the method is "I"nsert, then a positive index will insert after that indexed entry in + * the print areas list, while a negative index will insert before the indexed entry. + * Specifying an index value of 0, will always append the new print range at the end of the + * list. + * Print areas are numbered from 1 + * @param string $method Determines the method used when setting multiple print areas + * Default behaviour, or the "O" method, overwrites existing print area + * The "I" method, inserts the new print area before any specified index, or at the end of the list + * @return PHPExcel_Worksheet_PageSetup + * @throws PHPExcel_Exception + */ + public function setPrintArea($value, $index = 0, $method = self::SETPRINTRANGE_OVERWRITE) + { + if (strpos($value, '!') !== false) { + throw new PHPExcel_Exception('Cell coordinate must not specify a worksheet.'); + } elseif (strpos($value, ':') === false) { + throw new PHPExcel_Exception('Cell coordinate must be a range of cells.'); + } elseif (strpos($value, '$') !== false) { + throw new PHPExcel_Exception('Cell coordinate must not be absolute.'); + } + $value = strtoupper($value); + + if ($method == self::SETPRINTRANGE_OVERWRITE) { + if ($index == 0) { + $this->printArea = $value; + } else { + $printAreas = explode(',', $this->printArea); + if ($index < 0) { + $index = count($printAreas) - abs($index) + 1; + } + if (($index <= 0) || ($index > count($printAreas))) { + throw new PHPExcel_Exception('Invalid index for setting print range.'); + } + $printAreas[$index-1] = $value; + $this->printArea = implode(',', $printAreas); + } + } elseif ($method == self::SETPRINTRANGE_INSERT) { + if ($index == 0) { + $this->printArea .= ($this->printArea == '') ? $value : ','.$value; + } else { + $printAreas = explode(',', $this->printArea); + if ($index < 0) { + $index = abs($index) - 1; + } + if ($index > count($printAreas)) { + throw new PHPExcel_Exception('Invalid index for setting print range.'); + } + $printAreas = array_merge(array_slice($printAreas, 0, $index), array($value), array_slice($printAreas, $index)); + $this->printArea = implode(',', $printAreas); + } + } else { + throw new PHPExcel_Exception('Invalid method for setting print range.'); + } + + return $this; + } + + /** + * Add a new print area (e.g. 'A1:D10' or 'A1:D10,G5:M20') to the list of print areas + * + * @param string $value + * @param int $index Identifier for a specific print area range allowing several ranges to be set + * A positive index will insert after that indexed entry in the print areas list, while a + * negative index will insert before the indexed entry. + * Specifying an index value of 0, will always append the new print range at the end of the + * list. + * Print areas are numbered from 1 + * @return PHPExcel_Worksheet_PageSetup + * @throws PHPExcel_Exception + */ + public function addPrintArea($value, $index = -1) + { + return $this->setPrintArea($value, $index, self::SETPRINTRANGE_INSERT); + } + + /** + * Set print area + * + * @param int $column1 Column 1 + * @param int $row1 Row 1 + * @param int $column2 Column 2 + * @param int $row2 Row 2 + * @param int $index Identifier for a specific print area range allowing several ranges to be set + * When the method is "O"verwrite, then a positive integer index will overwrite that indexed + * entry in the print areas list; a negative index value will identify which entry to + * overwrite working bacward through the print area to the list, with the last entry as -1. + * Specifying an index value of 0, will overwrite <b>all</b> existing print ranges. + * When the method is "I"nsert, then a positive index will insert after that indexed entry in + * the print areas list, while a negative index will insert before the indexed entry. + * Specifying an index value of 0, will always append the new print range at the end of the + * list. + * Print areas are numbered from 1 + * @param string $method Determines the method used when setting multiple print areas + * Default behaviour, or the "O" method, overwrites existing print area + * The "I" method, inserts the new print area before any specified index, or at the end of the list + * @return PHPExcel_Worksheet_PageSetup + * @throws PHPExcel_Exception + */ + public function setPrintAreaByColumnAndRow($column1, $row1, $column2, $row2, $index = 0, $method = self::SETPRINTRANGE_OVERWRITE) + { + return $this->setPrintArea( + PHPExcel_Cell::stringFromColumnIndex($column1) . $row1 . ':' . PHPExcel_Cell::stringFromColumnIndex($column2) . $row2, + $index, + $method + ); + } + + /** + * Add a new print area to the list of print areas + * + * @param int $column1 Start Column for the print area + * @param int $row1 Start Row for the print area + * @param int $column2 End Column for the print area + * @param int $row2 End Row for the print area + * @param int $index Identifier for a specific print area range allowing several ranges to be set + * A positive index will insert after that indexed entry in the print areas list, while a + * negative index will insert before the indexed entry. + * Specifying an index value of 0, will always append the new print range at the end of the + * list. + * Print areas are numbered from 1 + * @return PHPExcel_Worksheet_PageSetup + * @throws PHPExcel_Exception + */ + public function addPrintAreaByColumnAndRow($column1, $row1, $column2, $row2, $index = -1) + { + return $this->setPrintArea( + PHPExcel_Cell::stringFromColumnIndex($column1) . $row1 . ':' . PHPExcel_Cell::stringFromColumnIndex($column2) . $row2, + $index, + self::SETPRINTRANGE_INSERT + ); + } + + /** + * Get first page number + * + * @return int + */ + public function getFirstPageNumber() + { + return $this->firstPageNumber; + } + + /** + * Set first page number + * + * @param int $value + * @return PHPExcel_Worksheet_HeaderFooter + */ + public function setFirstPageNumber($value = null) + { + $this->firstPageNumber = $value; + return $this; + } + + /** + * Reset first page number + * + * @return PHPExcel_Worksheet_HeaderFooter + */ + public function resetFirstPageNumber() + { + return $this->setFirstPageNumber(null); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Protection.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Protection.php new file mode 100644 index 0000000..00633ee --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Protection.php @@ -0,0 +1,581 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + + +/** + * PHPExcel_Worksheet_Protection + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + */ +class PHPExcel_Worksheet_Protection +{ + /** + * Sheet + * + * @var boolean + */ + private $sheet = false; + + /** + * Objects + * + * @var boolean + */ + private $objects = false; + + /** + * Scenarios + * + * @var boolean + */ + private $scenarios = false; + + /** + * Format cells + * + * @var boolean + */ + private $formatCells = false; + + /** + * Format columns + * + * @var boolean + */ + private $formatColumns = false; + + /** + * Format rows + * + * @var boolean + */ + private $formatRows = false; + + /** + * Insert columns + * + * @var boolean + */ + private $insertColumns = false; + + /** + * Insert rows + * + * @var boolean + */ + private $insertRows = false; + + /** + * Insert hyperlinks + * + * @var boolean + */ + private $insertHyperlinks = false; + + /** + * Delete columns + * + * @var boolean + */ + private $deleteColumns = false; + + /** + * Delete rows + * + * @var boolean + */ + private $deleteRows = false; + + /** + * Select locked cells + * + * @var boolean + */ + private $selectLockedCells = false; + + /** + * Sort + * + * @var boolean + */ + private $sort = false; + + /** + * AutoFilter + * + * @var boolean + */ + private $autoFilter = false; + + /** + * Pivot tables + * + * @var boolean + */ + private $pivotTables = false; + + /** + * Select unlocked cells + * + * @var boolean + */ + private $selectUnlockedCells = false; + + /** + * Password + * + * @var string + */ + private $password = ''; + + /** + * Create a new PHPExcel_Worksheet_Protection + */ + public function __construct() + { + } + + /** + * Is some sort of protection enabled? + * + * @return boolean + */ + public function isProtectionEnabled() + { + return $this->sheet || + $this->objects || + $this->scenarios || + $this->formatCells || + $this->formatColumns || + $this->formatRows || + $this->insertColumns || + $this->insertRows || + $this->insertHyperlinks || + $this->deleteColumns || + $this->deleteRows || + $this->selectLockedCells || + $this->sort || + $this->autoFilter || + $this->pivotTables || + $this->selectUnlockedCells; + } + + /** + * Get Sheet + * + * @return boolean + */ + public function getSheet() + { + return $this->sheet; + } + + /** + * Set Sheet + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Protection + */ + public function setSheet($pValue = false) + { + $this->sheet = $pValue; + return $this; + } + + /** + * Get Objects + * + * @return boolean + */ + public function getObjects() + { + return $this->objects; + } + + /** + * Set Objects + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Protection + */ + public function setObjects($pValue = false) + { + $this->objects = $pValue; + return $this; + } + + /** + * Get Scenarios + * + * @return boolean + */ + public function getScenarios() + { + return $this->scenarios; + } + + /** + * Set Scenarios + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Protection + */ + public function setScenarios($pValue = false) + { + $this->scenarios = $pValue; + return $this; + } + + /** + * Get FormatCells + * + * @return boolean + */ + public function getFormatCells() + { + return $this->formatCells; + } + + /** + * Set FormatCells + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Protection + */ + public function setFormatCells($pValue = false) + { + $this->formatCells = $pValue; + return $this; + } + + /** + * Get FormatColumns + * + * @return boolean + */ + public function getFormatColumns() + { + return $this->formatColumns; + } + + /** + * Set FormatColumns + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Protection + */ + public function setFormatColumns($pValue = false) + { + $this->formatColumns = $pValue; + return $this; + } + + /** + * Get FormatRows + * + * @return boolean + */ + public function getFormatRows() + { + return $this->formatRows; + } + + /** + * Set FormatRows + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Protection + */ + public function setFormatRows($pValue = false) + { + $this->formatRows = $pValue; + return $this; + } + + /** + * Get InsertColumns + * + * @return boolean + */ + public function getInsertColumns() + { + return $this->insertColumns; + } + + /** + * Set InsertColumns + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Protection + */ + public function setInsertColumns($pValue = false) + { + $this->insertColumns = $pValue; + return $this; + } + + /** + * Get InsertRows + * + * @return boolean + */ + public function getInsertRows() + { + return $this->insertRows; + } + + /** + * Set InsertRows + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Protection + */ + public function setInsertRows($pValue = false) + { + $this->insertRows = $pValue; + return $this; + } + + /** + * Get InsertHyperlinks + * + * @return boolean + */ + public function getInsertHyperlinks() + { + return $this->insertHyperlinks; + } + + /** + * Set InsertHyperlinks + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Protection + */ + public function setInsertHyperlinks($pValue = false) + { + $this->insertHyperlinks = $pValue; + return $this; + } + + /** + * Get DeleteColumns + * + * @return boolean + */ + public function getDeleteColumns() + { + return $this->deleteColumns; + } + + /** + * Set DeleteColumns + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Protection + */ + public function setDeleteColumns($pValue = false) + { + $this->deleteColumns = $pValue; + return $this; + } + + /** + * Get DeleteRows + * + * @return boolean + */ + public function getDeleteRows() + { + return $this->deleteRows; + } + + /** + * Set DeleteRows + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Protection + */ + public function setDeleteRows($pValue = false) + { + $this->deleteRows = $pValue; + return $this; + } + + /** + * Get SelectLockedCells + * + * @return boolean + */ + public function getSelectLockedCells() + { + return $this->selectLockedCells; + } + + /** + * Set SelectLockedCells + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Protection + */ + public function setSelectLockedCells($pValue = false) + { + $this->selectLockedCells = $pValue; + return $this; + } + + /** + * Get Sort + * + * @return boolean + */ + public function getSort() + { + return $this->sort; + } + + /** + * Set Sort + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Protection + */ + public function setSort($pValue = false) + { + $this->sort = $pValue; + return $this; + } + + /** + * Get AutoFilter + * + * @return boolean + */ + public function getAutoFilter() + { + return $this->autoFilter; + } + + /** + * Set AutoFilter + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Protection + */ + public function setAutoFilter($pValue = false) + { + $this->autoFilter = $pValue; + return $this; + } + + /** + * Get PivotTables + * + * @return boolean + */ + public function getPivotTables() + { + return $this->pivotTables; + } + + /** + * Set PivotTables + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Protection + */ + public function setPivotTables($pValue = false) + { + $this->pivotTables = $pValue; + return $this; + } + + /** + * Get SelectUnlockedCells + * + * @return boolean + */ + public function getSelectUnlockedCells() + { + return $this->selectUnlockedCells; + } + + /** + * Set SelectUnlockedCells + * + * @param boolean $pValue + * @return PHPExcel_Worksheet_Protection + */ + public function setSelectUnlockedCells($pValue = false) + { + $this->selectUnlockedCells = $pValue; + return $this; + } + + /** + * Get Password (hashed) + * + * @return string + */ + public function getPassword() + { + return $this->password; + } + + /** + * Set Password + * + * @param string $pValue + * @param boolean $pAlreadyHashed If the password has already been hashed, set this to true + * @return PHPExcel_Worksheet_Protection + */ + public function setPassword($pValue = '', $pAlreadyHashed = false) + { + if (!$pAlreadyHashed) { + $pValue = PHPExcel_Shared_PasswordHasher::hashPassword($pValue); + } + $this->password = $pValue; + return $this; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Row.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Row.php new file mode 100644 index 0000000..4f6034f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Row.php @@ -0,0 +1,86 @@ +<?php + +/** + * PHPExcel_Worksheet_Row + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_Row +{ + /** + * PHPExcel_Worksheet + * + * @var PHPExcel_Worksheet + */ + private $parent; + + /** + * Row index + * + * @var int + */ + private $rowIndex = 0; + + /** + * Create a new row + * + * @param PHPExcel_Worksheet $parent + * @param int $rowIndex + */ + public function __construct(PHPExcel_Worksheet $parent = null, $rowIndex = 1) + { + // Set parent and row index + $this->parent = $parent; + $this->rowIndex = $rowIndex; + } + + /** + * Destructor + */ + public function __destruct() + { + unset($this->parent); + } + + /** + * Get row index + * + * @return int + */ + public function getRowIndex() + { + return $this->rowIndex; + } + + /** + * Get cell iterator + * + * @param string $startColumn The column address at which to start iterating + * @param string $endColumn Optionally, the column address at which to stop iterating + * @return PHPExcel_Worksheet_CellIterator + */ + public function getCellIterator($startColumn = 'A', $endColumn = null) + { + return new PHPExcel_Worksheet_RowCellIterator($this->parent, $this->rowIndex, $startColumn, $endColumn); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowCellIterator.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowCellIterator.php new file mode 100644 index 0000000..90eb9c9 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowCellIterator.php @@ -0,0 +1,225 @@ +<?php + +/** + * PHPExcel_Worksheet_RowCellIterator + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_RowCellIterator extends PHPExcel_Worksheet_CellIterator implements Iterator +{ + /** + * Row index + * + * @var int + */ + protected $rowIndex; + + /** + * Start position + * + * @var int + */ + protected $startColumn = 0; + + /** + * End position + * + * @var int + */ + protected $endColumn = 0; + + /** + * Create a new column iterator + * + * @param PHPExcel_Worksheet $subject The worksheet to iterate over + * @param integer $rowIndex The row that we want to iterate + * @param string $startColumn The column address at which to start iterating + * @param string $endColumn Optionally, the column address at which to stop iterating + */ + public function __construct(PHPExcel_Worksheet $subject = null, $rowIndex = 1, $startColumn = 'A', $endColumn = null) + { + // Set subject and row index + $this->subject = $subject; + $this->rowIndex = $rowIndex; + $this->resetEnd($endColumn); + $this->resetStart($startColumn); + } + + /** + * Destructor + */ + public function __destruct() + { + unset($this->subject); + } + + /** + * (Re)Set the start column and the current column pointer + * + * @param integer $startColumn The column address at which to start iterating + * @return PHPExcel_Worksheet_RowCellIterator + * @throws PHPExcel_Exception + */ + public function resetStart($startColumn = 'A') + { + $startColumnIndex = PHPExcel_Cell::columnIndexFromString($startColumn) - 1; + $this->startColumn = $startColumnIndex; + $this->adjustForExistingOnlyRange(); + $this->seek(PHPExcel_Cell::stringFromColumnIndex($this->startColumn)); + + return $this; + } + + /** + * (Re)Set the end column + * + * @param string $endColumn The column address at which to stop iterating + * @return PHPExcel_Worksheet_RowCellIterator + * @throws PHPExcel_Exception + */ + public function resetEnd($endColumn = null) + { + $endColumn = ($endColumn) ? $endColumn : $this->subject->getHighestColumn(); + $this->endColumn = PHPExcel_Cell::columnIndexFromString($endColumn) - 1; + $this->adjustForExistingOnlyRange(); + + return $this; + } + + /** + * Set the column pointer to the selected column + * + * @param string $column The column address to set the current pointer at + * @return PHPExcel_Worksheet_RowCellIterator + * @throws PHPExcel_Exception + */ + public function seek($column = 'A') + { + $column = PHPExcel_Cell::columnIndexFromString($column) - 1; + if (($column < $this->startColumn) || ($column > $this->endColumn)) { + throw new PHPExcel_Exception("Column $column is out of range ({$this->startColumn} - {$this->endColumn})"); + } elseif ($this->onlyExistingCells && !($this->subject->cellExistsByColumnAndRow($column, $this->rowIndex))) { + throw new PHPExcel_Exception('In "IterateOnlyExistingCells" mode and Cell does not exist'); + } + $this->position = $column; + + return $this; + } + + /** + * Rewind the iterator to the starting column + */ + public function rewind() + { + $this->position = $this->startColumn; + } + + /** + * Return the current cell in this worksheet row + * + * @return PHPExcel_Cell + */ + public function current() + { + return $this->subject->getCellByColumnAndRow($this->position, $this->rowIndex); + } + + /** + * Return the current iterator key + * + * @return string + */ + public function key() + { + return PHPExcel_Cell::stringFromColumnIndex($this->position); + } + + /** + * Set the iterator to its next value + */ + public function next() + { + do { + ++$this->position; + } while (($this->onlyExistingCells) && + (!$this->subject->cellExistsByColumnAndRow($this->position, $this->rowIndex)) && + ($this->position <= $this->endColumn)); + } + + /** + * Set the iterator to its previous value + * + * @throws PHPExcel_Exception + */ + public function prev() + { + if ($this->position <= $this->startColumn) { + throw new PHPExcel_Exception( + "Column is already at the beginning of range (" . + PHPExcel_Cell::stringFromColumnIndex($this->endColumn) . " - " . + PHPExcel_Cell::stringFromColumnIndex($this->endColumn) . ")" + ); + } + + do { + --$this->position; + } while (($this->onlyExistingCells) && + (!$this->subject->cellExistsByColumnAndRow($this->position, $this->rowIndex)) && + ($this->position >= $this->startColumn)); + } + + /** + * Indicate if more columns exist in the worksheet range of columns that we're iterating + * + * @return boolean + */ + public function valid() + { + return $this->position <= $this->endColumn; + } + + /** + * Validate start/end values for "IterateOnlyExistingCells" mode, and adjust if necessary + * + * @throws PHPExcel_Exception + */ + protected function adjustForExistingOnlyRange() + { + if ($this->onlyExistingCells) { + while ((!$this->subject->cellExistsByColumnAndRow($this->startColumn, $this->rowIndex)) && + ($this->startColumn <= $this->endColumn)) { + ++$this->startColumn; + } + if ($this->startColumn > $this->endColumn) { + throw new PHPExcel_Exception('No cells exist within the specified range'); + } + while ((!$this->subject->cellExistsByColumnAndRow($this->endColumn, $this->rowIndex)) && + ($this->endColumn >= $this->startColumn)) { + --$this->endColumn; + } + if ($this->endColumn < $this->startColumn) { + throw new PHPExcel_Exception('No cells exist within the specified range'); + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowDimension.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowDimension.php new file mode 100644 index 0000000..c147486 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowDimension.php @@ -0,0 +1,132 @@ +<?php + +/** + * PHPExcel_Worksheet_RowDimension + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_RowDimension extends PHPExcel_Worksheet_Dimension +{ + /** + * Row index + * + * @var int + */ + private $rowIndex; + + /** + * Row height (in pt) + * + * When this is set to a negative value, the row height should be ignored by IWriter + * + * @var double + */ + private $height = -1; + + /** + * ZeroHeight for Row? + * + * @var bool + */ + private $zeroHeight = false; + + /** + * Create a new PHPExcel_Worksheet_RowDimension + * + * @param int $pIndex Numeric row index + */ + public function __construct($pIndex = 0) + { + // Initialise values + $this->rowIndex = $pIndex; + + // set dimension as unformatted by default + parent::__construct(null); + } + + /** + * Get Row Index + * + * @return int + */ + public function getRowIndex() + { + return $this->rowIndex; + } + + /** + * Set Row Index + * + * @param int $pValue + * @return PHPExcel_Worksheet_RowDimension + */ + public function setRowIndex($pValue) + { + $this->rowIndex = $pValue; + return $this; + } + + /** + * Get Row Height + * + * @return double + */ + public function getRowHeight() + { + return $this->height; + } + + /** + * Set Row Height + * + * @param double $pValue + * @return PHPExcel_Worksheet_RowDimension + */ + public function setRowHeight($pValue = -1) + { + $this->height = $pValue; + return $this; + } + + /** + * Get ZeroHeight + * + * @return bool + */ + public function getZeroHeight() + { + return $this->zeroHeight; + } + + /** + * Set ZeroHeight + * + * @param bool $pValue + * @return PHPExcel_Worksheet_RowDimension + */ + public function setZeroHeight($pValue = false) + { + $this->zeroHeight = $pValue; + return $this; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowIterator.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowIterator.php new file mode 100644 index 0000000..9ddb3e0 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowIterator.php @@ -0,0 +1,192 @@ +<?php + +/** + * PHPExcel_Worksheet_RowIterator + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_RowIterator implements Iterator +{ + /** + * PHPExcel_Worksheet to iterate + * + * @var PHPExcel_Worksheet + */ + private $subject; + + /** + * Current iterator position + * + * @var int + */ + private $position = 1; + + /** + * Start position + * + * @var int + */ + private $startRow = 1; + + + /** + * End position + * + * @var int + */ + private $endRow = 1; + + + /** + * Create a new row iterator + * + * @param PHPExcel_Worksheet $subject The worksheet to iterate over + * @param integer $startRow The row number at which to start iterating + * @param integer $endRow Optionally, the row number at which to stop iterating + */ + public function __construct(PHPExcel_Worksheet $subject, $startRow = 1, $endRow = null) + { + // Set subject + $this->subject = $subject; + $this->resetEnd($endRow); + $this->resetStart($startRow); + } + + /** + * Destructor + */ + public function __destruct() + { + unset($this->subject); + } + + /** + * (Re)Set the start row and the current row pointer + * + * @param integer $startRow The row number at which to start iterating + * @return PHPExcel_Worksheet_RowIterator + * @throws PHPExcel_Exception + */ + public function resetStart($startRow = 1) + { + if ($startRow > $this->subject->getHighestRow()) { + throw new PHPExcel_Exception("Start row ({$startRow}) is beyond highest row ({$this->subject->getHighestRow()})"); + } + + $this->startRow = $startRow; + if ($this->endRow < $this->startRow) { + $this->endRow = $this->startRow; + } + $this->seek($startRow); + + return $this; + } + + /** + * (Re)Set the end row + * + * @param integer $endRow The row number at which to stop iterating + * @return PHPExcel_Worksheet_RowIterator + */ + public function resetEnd($endRow = null) + { + $this->endRow = ($endRow) ? $endRow : $this->subject->getHighestRow(); + + return $this; + } + + /** + * Set the row pointer to the selected row + * + * @param integer $row The row number to set the current pointer at + * @return PHPExcel_Worksheet_RowIterator + * @throws PHPExcel_Exception + */ + public function seek($row = 1) + { + if (($row < $this->startRow) || ($row > $this->endRow)) { + throw new PHPExcel_Exception("Row $row is out of range ({$this->startRow} - {$this->endRow})"); + } + $this->position = $row; + + return $this; + } + + /** + * Rewind the iterator to the starting row + */ + public function rewind() + { + $this->position = $this->startRow; + } + + /** + * Return the current row in this worksheet + * + * @return PHPExcel_Worksheet_Row + */ + public function current() + { + return new PHPExcel_Worksheet_Row($this->subject, $this->position); + } + + /** + * Return the current iterator key + * + * @return int + */ + public function key() + { + return $this->position; + } + + /** + * Set the iterator to its next value + */ + public function next() + { + ++$this->position; + } + + /** + * Set the iterator to its previous value + */ + public function prev() + { + if ($this->position <= $this->startRow) { + throw new PHPExcel_Exception("Row is already at the beginning of range ({$this->startRow} - {$this->endRow})"); + } + + --$this->position; + } + + /** + * Indicate if more rows exist in the worksheet range of rows that we're iterating + * + * @return boolean + */ + public function valid() + { + return $this->position <= $this->endRow; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/SheetView.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/SheetView.php new file mode 100644 index 0000000..5aaef3b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/SheetView.php @@ -0,0 +1,187 @@ +<?php + +/** + * PHPExcel_Worksheet_SheetView + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Worksheet + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Worksheet_SheetView +{ + + /* Sheet View types */ + const SHEETVIEW_NORMAL = 'normal'; + const SHEETVIEW_PAGE_LAYOUT = 'pageLayout'; + const SHEETVIEW_PAGE_BREAK_PREVIEW = 'pageBreakPreview'; + + private static $sheetViewTypes = array( + self::SHEETVIEW_NORMAL, + self::SHEETVIEW_PAGE_LAYOUT, + self::SHEETVIEW_PAGE_BREAK_PREVIEW, + ); + + /** + * ZoomScale + * + * Valid values range from 10 to 400. + * + * @var int + */ + private $zoomScale = 100; + + /** + * ZoomScaleNormal + * + * Valid values range from 10 to 400. + * + * @var int + */ + private $zoomScaleNormal = 100; + + /** + * View + * + * Valid values range from 10 to 400. + * + * @var string + */ + private $sheetviewType = self::SHEETVIEW_NORMAL; + + /** + * Create a new PHPExcel_Worksheet_SheetView + */ + public function __construct() + { + } + + /** + * Get ZoomScale + * + * @return int + */ + public function getZoomScale() + { + return $this->zoomScale; + } + + /** + * Set ZoomScale + * + * Valid values range from 10 to 400. + * + * @param int $pValue + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_SheetView + */ + public function setZoomScale($pValue = 100) + { + // Microsoft Office Excel 2007 only allows setting a scale between 10 and 400 via the user interface, + // but it is apparently still able to handle any scale >= 1 + if (($pValue >= 1) || is_null($pValue)) { + $this->zoomScale = $pValue; + } else { + throw new PHPExcel_Exception("Scale must be greater than or equal to 1."); + } + return $this; + } + + /** + * Get ZoomScaleNormal + * + * @return int + */ + public function getZoomScaleNormal() + { + return $this->zoomScaleNormal; + } + + /** + * Set ZoomScale + * + * Valid values range from 10 to 400. + * + * @param int $pValue + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_SheetView + */ + public function setZoomScaleNormal($pValue = 100) + { + if (($pValue >= 1) || is_null($pValue)) { + $this->zoomScaleNormal = $pValue; + } else { + throw new PHPExcel_Exception("Scale must be greater than or equal to 1."); + } + return $this; + } + + /** + * Get View + * + * @return string + */ + public function getView() + { + return $this->sheetviewType; + } + + /** + * Set View + * + * Valid values are + * 'normal' self::SHEETVIEW_NORMAL + * 'pageLayout' self::SHEETVIEW_PAGE_LAYOUT + * 'pageBreakPreview' self::SHEETVIEW_PAGE_BREAK_PREVIEW + * + * @param string $pValue + * @throws PHPExcel_Exception + * @return PHPExcel_Worksheet_SheetView + */ + public function setView($pValue = null) + { + // MS Excel 2007 allows setting the view to 'normal', 'pageLayout' or 'pageBreakPreview' via the user interface + if ($pValue === null) { + $pValue = self::SHEETVIEW_NORMAL; + } + if (in_array($pValue, self::$sheetViewTypes)) { + $this->sheetviewType = $pValue; + } else { + throw new PHPExcel_Exception("Invalid sheetview layout type."); + } + + return $this; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/WorksheetIterator.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/WorksheetIterator.php new file mode 100644 index 0000000..cb1b281 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/WorksheetIterator.php @@ -0,0 +1,108 @@ +<?php + +/** + * PHPExcel_WorksheetIterator + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_WorksheetIterator implements Iterator +{ + /** + * Spreadsheet to iterate + * + * @var PHPExcel + */ + private $subject; + + /** + * Current iterator position + * + * @var int + */ + private $position = 0; + + /** + * Create a new worksheet iterator + * + * @param PHPExcel $subject + */ + public function __construct(PHPExcel $subject = null) + { + // Set subject + $this->subject = $subject; + } + + /** + * Destructor + */ + public function __destruct() + { + unset($this->subject); + } + + /** + * Rewind iterator + */ + public function rewind() + { + $this->position = 0; + } + + /** + * Current PHPExcel_Worksheet + * + * @return PHPExcel_Worksheet + */ + public function current() + { + return $this->subject->getSheet($this->position); + } + + /** + * Current key + * + * @return int + */ + public function key() + { + return $this->position; + } + + /** + * Next value + */ + public function next() + { + ++$this->position; + } + + /** + * More PHPExcel_Worksheet instances available? + * + * @return boolean + */ + public function valid() + { + return $this->position < $this->subject->getSheetCount(); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Abstract.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Abstract.php new file mode 100644 index 0000000..2a797a9 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Abstract.php @@ -0,0 +1,157 @@ +<?php + +/** + * PHPExcel_Writer_Abstract + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +abstract class PHPExcel_Writer_Abstract implements PHPExcel_Writer_IWriter +{ + /** + * Write charts that are defined in the workbook? + * Identifies whether the Writer should write definitions for any charts that exist in the PHPExcel object; + * + * @var boolean + */ + protected $includeCharts = false; + + /** + * Pre-calculate formulas + * Forces PHPExcel to recalculate all formulae in a workbook when saving, so that the pre-calculated values are + * immediately available to MS Excel or other office spreadsheet viewer when opening the file + * + * @var boolean + */ + protected $preCalculateFormulas = true; + + /** + * Use disk caching where possible? + * + * @var boolean + */ + protected $_useDiskCaching = false; + + /** + * Disk caching directory + * + * @var string + */ + protected $_diskCachingDirectory = './'; + + /** + * Write charts in workbook? + * If this is true, then the Writer will write definitions for any charts that exist in the PHPExcel object. + * If false (the default) it will ignore any charts defined in the PHPExcel object. + * + * @return boolean + */ + public function getIncludeCharts() + { + return $this->includeCharts; + } + + /** + * Set write charts in workbook + * Set to true, to advise the Writer to include any charts that exist in the PHPExcel object. + * Set to false (the default) to ignore charts. + * + * @param boolean $pValue + * @return PHPExcel_Writer_IWriter + */ + public function setIncludeCharts($pValue = false) + { + $this->includeCharts = (boolean) $pValue; + return $this; + } + + /** + * Get Pre-Calculate Formulas flag + * If this is true (the default), then the writer will recalculate all formulae in a workbook when saving, + * so that the pre-calculated values are immediately available to MS Excel or other office spreadsheet + * viewer when opening the file + * If false, then formulae are not calculated on save. This is faster for saving in PHPExcel, but slower + * when opening the resulting file in MS Excel, because Excel has to recalculate the formulae itself + * + * @return boolean + */ + public function getPreCalculateFormulas() + { + return $this->preCalculateFormulas; + } + + /** + * Set Pre-Calculate Formulas + * Set to true (the default) to advise the Writer to calculate all formulae on save + * Set to false to prevent precalculation of formulae on save. + * + * @param boolean $pValue Pre-Calculate Formulas? + * @return PHPExcel_Writer_IWriter + */ + public function setPreCalculateFormulas($pValue = true) + { + $this->preCalculateFormulas = (boolean) $pValue; + return $this; + } + + /** + * Get use disk caching where possible? + * + * @return boolean + */ + public function getUseDiskCaching() + { + return $this->_useDiskCaching; + } + + /** + * Set use disk caching where possible? + * + * @param boolean $pValue + * @param string $pDirectory Disk caching directory + * @throws PHPExcel_Writer_Exception when directory does not exist + * @return PHPExcel_Writer_Excel2007 + */ + public function setUseDiskCaching($pValue = false, $pDirectory = null) + { + $this->_useDiskCaching = $pValue; + + if ($pDirectory !== null) { + if (is_dir($pDirectory)) { + $this->_diskCachingDirectory = $pDirectory; + } else { + throw new PHPExcel_Writer_Exception("Directory does not exist: $pDirectory"); + } + } + return $this; + } + + /** + * Get disk caching directory + * + * @return string + */ + public function getDiskCachingDirectory() + { + return $this->_diskCachingDirectory; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/CSV.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/CSV.php new file mode 100644 index 0000000..e59c301 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/CSV.php @@ -0,0 +1,352 @@ +<?php + +/** + * PHPExcel_Writer_CSV + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_CSV + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_CSV extends PHPExcel_Writer_Abstract implements PHPExcel_Writer_IWriter +{ + /** + * PHPExcel object + * + * @var PHPExcel + */ + private $phpExcel; + + /** + * Delimiter + * + * @var string + */ + private $delimiter = ','; + + /** + * Enclosure + * + * @var string + */ + private $enclosure = '"'; + + /** + * Line ending + * + * @var string + */ + private $lineEnding = PHP_EOL; + + /** + * Sheet index to write + * + * @var int + */ + private $sheetIndex = 0; + + /** + * Whether to write a BOM (for UTF8). + * + * @var boolean + */ + private $useBOM = false; + + /** + * Whether to write a Separator line as the first line of the file + * sep=x + * + * @var boolean + */ + private $includeSeparatorLine = false; + + /** + * Whether to write a fully Excel compatible CSV file. + * + * @var boolean + */ + private $excelCompatibility = false; + + /** + * Create a new PHPExcel_Writer_CSV + * + * @param PHPExcel $phpExcel PHPExcel object + */ + public function __construct(PHPExcel $phpExcel) + { + $this->phpExcel = $phpExcel; + } + + /** + * Save PHPExcel to file + * + * @param string $pFilename + * @throws PHPExcel_Writer_Exception + */ + public function save($pFilename = null) + { + // Fetch sheet + $sheet = $this->phpExcel->getSheet($this->sheetIndex); + + $saveDebugLog = PHPExcel_Calculation::getInstance($this->phpExcel)->getDebugLog()->getWriteDebugLog(); + PHPExcel_Calculation::getInstance($this->phpExcel)->getDebugLog()->setWriteDebugLog(false); + $saveArrayReturnType = PHPExcel_Calculation::getArrayReturnType(); + PHPExcel_Calculation::setArrayReturnType(PHPExcel_Calculation::RETURN_ARRAY_AS_VALUE); + + // Open file + $fileHandle = fopen($pFilename, 'wb+'); + if ($fileHandle === false) { + throw new PHPExcel_Writer_Exception("Could not open file $pFilename for writing."); + } + + if ($this->excelCompatibility) { + $this->setUseBOM(true); // Enforce UTF-8 BOM Header + $this->setIncludeSeparatorLine(true); // Set separator line + $this->setEnclosure('"'); // Set enclosure to " + $this->setDelimiter(";"); // Set delimiter to a semi-colon + $this->setLineEnding("\r\n"); + } + if ($this->useBOM) { + // Write the UTF-8 BOM code if required + fwrite($fileHandle, "\xEF\xBB\xBF"); + } + if ($this->includeSeparatorLine) { + // Write the separator line if required + fwrite($fileHandle, 'sep=' . $this->getDelimiter() . $this->lineEnding); + } + + // Identify the range that we need to extract from the worksheet + $maxCol = $sheet->getHighestDataColumn(); + $maxRow = $sheet->getHighestDataRow(); + + // Write rows to file + for ($row = 1; $row <= $maxRow; ++$row) { + // Convert the row to an array... + $cellsArray = $sheet->rangeToArray('A'.$row.':'.$maxCol.$row, '', $this->preCalculateFormulas); + // ... and write to the file + $this->writeLine($fileHandle, $cellsArray[0]); + } + + // Close file + fclose($fileHandle); + + PHPExcel_Calculation::setArrayReturnType($saveArrayReturnType); + PHPExcel_Calculation::getInstance($this->phpExcel)->getDebugLog()->setWriteDebugLog($saveDebugLog); + } + + /** + * Get delimiter + * + * @return string + */ + public function getDelimiter() + { + return $this->delimiter; + } + + /** + * Set delimiter + * + * @param string $pValue Delimiter, defaults to , + * @return PHPExcel_Writer_CSV + */ + public function setDelimiter($pValue = ',') + { + $this->delimiter = $pValue; + return $this; + } + + /** + * Get enclosure + * + * @return string + */ + public function getEnclosure() + { + return $this->enclosure; + } + + /** + * Set enclosure + * + * @param string $pValue Enclosure, defaults to " + * @return PHPExcel_Writer_CSV + */ + public function setEnclosure($pValue = '"') + { + if ($pValue == '') { + $pValue = null; + } + $this->enclosure = $pValue; + return $this; + } + + /** + * Get line ending + * + * @return string + */ + public function getLineEnding() + { + return $this->lineEnding; + } + + /** + * Set line ending + * + * @param string $pValue Line ending, defaults to OS line ending (PHP_EOL) + * @return PHPExcel_Writer_CSV + */ + public function setLineEnding($pValue = PHP_EOL) + { + $this->lineEnding = $pValue; + return $this; + } + + /** + * Get whether BOM should be used + * + * @return boolean + */ + public function getUseBOM() + { + return $this->useBOM; + } + + /** + * Set whether BOM should be used + * + * @param boolean $pValue Use UTF-8 byte-order mark? Defaults to false + * @return PHPExcel_Writer_CSV + */ + public function setUseBOM($pValue = false) + { + $this->useBOM = $pValue; + return $this; + } + + /** + * Get whether a separator line should be included + * + * @return boolean + */ + public function getIncludeSeparatorLine() + { + return $this->includeSeparatorLine; + } + + /** + * Set whether a separator line should be included as the first line of the file + * + * @param boolean $pValue Use separator line? Defaults to false + * @return PHPExcel_Writer_CSV + */ + public function setIncludeSeparatorLine($pValue = false) + { + $this->includeSeparatorLine = $pValue; + return $this; + } + + /** + * Get whether the file should be saved with full Excel Compatibility + * + * @return boolean + */ + public function getExcelCompatibility() + { + return $this->excelCompatibility; + } + + /** + * Set whether the file should be saved with full Excel Compatibility + * + * @param boolean $pValue Set the file to be written as a fully Excel compatible csv file + * Note that this overrides other settings such as useBOM, enclosure and delimiter + * @return PHPExcel_Writer_CSV + */ + public function setExcelCompatibility($pValue = false) + { + $this->excelCompatibility = $pValue; + return $this; + } + + /** + * Get sheet index + * + * @return int + */ + public function getSheetIndex() + { + return $this->sheetIndex; + } + + /** + * Set sheet index + * + * @param int $pValue Sheet index + * @return PHPExcel_Writer_CSV + */ + public function setSheetIndex($pValue = 0) + { + $this->sheetIndex = $pValue; + return $this; + } + + /** + * Write line to CSV file + * + * @param mixed $pFileHandle PHP filehandle + * @param array $pValues Array containing values in a row + * @throws PHPExcel_Writer_Exception + */ + private function writeLine($pFileHandle = null, $pValues = null) + { + if (is_array($pValues)) { + // No leading delimiter + $writeDelimiter = false; + + // Build the line + $line = ''; + + foreach ($pValues as $element) { + // Escape enclosures + $element = str_replace($this->enclosure, $this->enclosure . $this->enclosure, $element); + + // Add delimiter + if ($writeDelimiter) { + $line .= $this->delimiter; + } else { + $writeDelimiter = true; + } + + // Add enclosed string + $line .= $this->enclosure . $element . $this->enclosure; + } + + // Add line ending + $line .= $this->lineEnding; + + // Write to file + fwrite($pFileHandle, $line); + } else { + throw new PHPExcel_Writer_Exception("Invalid data row passed to CSV writer."); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007.php new file mode 100644 index 0000000..11d354b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007.php @@ -0,0 +1,533 @@ +<?php + +/** + * PHPExcel_Writer_Excel2007 + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_Excel2007 extends PHPExcel_Writer_Abstract implements PHPExcel_Writer_IWriter +{ + /** + * Pre-calculate formulas + * Forces PHPExcel to recalculate all formulae in a workbook when saving, so that the pre-calculated values are + * immediately available to MS Excel or other office spreadsheet viewer when opening the file + * + * Overrides the default TRUE for this specific writer for performance reasons + * + * @var boolean + */ + protected $preCalculateFormulas = false; + + /** + * Office2003 compatibility + * + * @var boolean + */ + private $office2003compatibility = false; + + /** + * Private writer parts + * + * @var PHPExcel_Writer_Excel2007_WriterPart[] + */ + private $writerParts = array(); + + /** + * Private PHPExcel + * + * @var PHPExcel + */ + private $spreadSheet; + + /** + * Private string table + * + * @var string[] + */ + private $stringTable = array(); + + /** + * Private unique PHPExcel_Style_Conditional HashTable + * + * @var PHPExcel_HashTable + */ + private $stylesConditionalHashTable; + + /** + * Private unique PHPExcel_Style HashTable + * + * @var PHPExcel_HashTable + */ + private $styleHashTable; + + /** + * Private unique PHPExcel_Style_Fill HashTable + * + * @var PHPExcel_HashTable + */ + private $fillHashTable; + + /** + * Private unique PHPExcel_Style_Font HashTable + * + * @var PHPExcel_HashTable + */ + private $fontHashTable; + + /** + * Private unique PHPExcel_Style_Borders HashTable + * + * @var PHPExcel_HashTable + */ + private $bordersHashTable ; + + /** + * Private unique PHPExcel_Style_NumberFormat HashTable + * + * @var PHPExcel_HashTable + */ + private $numFmtHashTable; + + /** + * Private unique PHPExcel_Worksheet_BaseDrawing HashTable + * + * @var PHPExcel_HashTable + */ + private $drawingHashTable; + + /** + * Create a new PHPExcel_Writer_Excel2007 + * + * @param PHPExcel $pPHPExcel + */ + public function __construct(PHPExcel $pPHPExcel = null) + { + // Assign PHPExcel + $this->setPHPExcel($pPHPExcel); + + $writerPartsArray = array( 'stringtable' => 'PHPExcel_Writer_Excel2007_StringTable', + 'contenttypes' => 'PHPExcel_Writer_Excel2007_ContentTypes', + 'docprops' => 'PHPExcel_Writer_Excel2007_DocProps', + 'rels' => 'PHPExcel_Writer_Excel2007_Rels', + 'theme' => 'PHPExcel_Writer_Excel2007_Theme', + 'style' => 'PHPExcel_Writer_Excel2007_Style', + 'workbook' => 'PHPExcel_Writer_Excel2007_Workbook', + 'worksheet' => 'PHPExcel_Writer_Excel2007_Worksheet', + 'drawing' => 'PHPExcel_Writer_Excel2007_Drawing', + 'comments' => 'PHPExcel_Writer_Excel2007_Comments', + 'chart' => 'PHPExcel_Writer_Excel2007_Chart', + 'relsvba' => 'PHPExcel_Writer_Excel2007_RelsVBA', + 'relsribbonobjects' => 'PHPExcel_Writer_Excel2007_RelsRibbon' + ); + + // Initialise writer parts + // and Assign their parent IWriters + foreach ($writerPartsArray as $writer => $class) { + $this->writerParts[$writer] = new $class($this); + } + + $hashTablesArray = array( 'stylesConditionalHashTable', 'fillHashTable', 'fontHashTable', + 'bordersHashTable', 'numFmtHashTable', 'drawingHashTable', + 'styleHashTable' + ); + + // Set HashTable variables + foreach ($hashTablesArray as $tableName) { + $this->$tableName = new PHPExcel_HashTable(); + } + } + + /** + * Get writer part + * + * @param string $pPartName Writer part name + * @return PHPExcel_Writer_Excel2007_WriterPart + */ + public function getWriterPart($pPartName = '') + { + if ($pPartName != '' && isset($this->writerParts[strtolower($pPartName)])) { + return $this->writerParts[strtolower($pPartName)]; + } else { + return null; + } + } + + /** + * Save PHPExcel to file + * + * @param string $pFilename + * @throws PHPExcel_Writer_Exception + */ + public function save($pFilename = null) + { + if ($this->spreadSheet !== null) { + // garbage collect + $this->spreadSheet->garbageCollect(); + + // If $pFilename is php://output or php://stdout, make it a temporary file... + $originalFilename = $pFilename; + if (strtolower($pFilename) == 'php://output' || strtolower($pFilename) == 'php://stdout') { + $pFilename = @tempnam(PHPExcel_Shared_File::sys_get_temp_dir(), 'phpxltmp'); + if ($pFilename == '') { + $pFilename = $originalFilename; + } + } + + $saveDebugLog = PHPExcel_Calculation::getInstance($this->spreadSheet)->getDebugLog()->getWriteDebugLog(); + PHPExcel_Calculation::getInstance($this->spreadSheet)->getDebugLog()->setWriteDebugLog(false); + $saveDateReturnType = PHPExcel_Calculation_Functions::getReturnDateType(); + PHPExcel_Calculation_Functions::setReturnDateType(PHPExcel_Calculation_Functions::RETURNDATE_EXCEL); + + // Create string lookup table + $this->stringTable = array(); + for ($i = 0; $i < $this->spreadSheet->getSheetCount(); ++$i) { + $this->stringTable = $this->getWriterPart('StringTable')->createStringTable($this->spreadSheet->getSheet($i), $this->stringTable); + } + + // Create styles dictionaries + $this->styleHashTable->addFromSource($this->getWriterPart('Style')->allStyles($this->spreadSheet)); + $this->stylesConditionalHashTable->addFromSource($this->getWriterPart('Style')->allConditionalStyles($this->spreadSheet)); + $this->fillHashTable->addFromSource($this->getWriterPart('Style')->allFills($this->spreadSheet)); + $this->fontHashTable->addFromSource($this->getWriterPart('Style')->allFonts($this->spreadSheet)); + $this->bordersHashTable->addFromSource($this->getWriterPart('Style')->allBorders($this->spreadSheet)); + $this->numFmtHashTable->addFromSource($this->getWriterPart('Style')->allNumberFormats($this->spreadSheet)); + + // Create drawing dictionary + $this->drawingHashTable->addFromSource($this->getWriterPart('Drawing')->allDrawings($this->spreadSheet)); + + // Create new ZIP file and open it for writing + $zipClass = PHPExcel_Settings::getZipClass(); + $objZip = new $zipClass(); + + // Retrieve OVERWRITE and CREATE constants from the instantiated zip class + // This method of accessing constant values from a dynamic class should work with all appropriate versions of PHP + $ro = new ReflectionObject($objZip); + $zipOverWrite = $ro->getConstant('OVERWRITE'); + $zipCreate = $ro->getConstant('CREATE'); + + if (file_exists($pFilename)) { + unlink($pFilename); + } + // Try opening the ZIP file + if ($objZip->open($pFilename, $zipOverWrite) !== true) { + if ($objZip->open($pFilename, $zipCreate) !== true) { + throw new PHPExcel_Writer_Exception("Could not open " . $pFilename . " for writing."); + } + } + + // Add [Content_Types].xml to ZIP file + $objZip->addFromString('[Content_Types].xml', $this->getWriterPart('ContentTypes')->writeContentTypes($this->spreadSheet, $this->includeCharts)); + + //if hasMacros, add the vbaProject.bin file, Certificate file(if exists) + if ($this->spreadSheet->hasMacros()) { + $macrosCode=$this->spreadSheet->getMacrosCode(); + if (!is_null($macrosCode)) {// we have the code ? + $objZip->addFromString('xl/vbaProject.bin', $macrosCode);//allways in 'xl', allways named vbaProject.bin + if ($this->spreadSheet->hasMacrosCertificate()) {//signed macros ? + // Yes : add the certificate file and the related rels file + $objZip->addFromString('xl/vbaProjectSignature.bin', $this->spreadSheet->getMacrosCertificate()); + $objZip->addFromString('xl/_rels/vbaProject.bin.rels', $this->getWriterPart('RelsVBA')->writeVBARelationships($this->spreadSheet)); + } + } + } + //a custom UI in this workbook ? add it ("base" xml and additional objects (pictures) and rels) + if ($this->spreadSheet->hasRibbon()) { + $tmpRibbonTarget=$this->spreadSheet->getRibbonXMLData('target'); + $objZip->addFromString($tmpRibbonTarget, $this->spreadSheet->getRibbonXMLData('data')); + if ($this->spreadSheet->hasRibbonBinObjects()) { + $tmpRootPath=dirname($tmpRibbonTarget).'/'; + $ribbonBinObjects=$this->spreadSheet->getRibbonBinObjects('data');//the files to write + foreach ($ribbonBinObjects as $aPath => $aContent) { + $objZip->addFromString($tmpRootPath.$aPath, $aContent); + } + //the rels for files + $objZip->addFromString($tmpRootPath.'_rels/'.basename($tmpRibbonTarget).'.rels', $this->getWriterPart('RelsRibbonObjects')->writeRibbonRelationships($this->spreadSheet)); + } + } + + // Add relationships to ZIP file + $objZip->addFromString('_rels/.rels', $this->getWriterPart('Rels')->writeRelationships($this->spreadSheet)); + $objZip->addFromString('xl/_rels/workbook.xml.rels', $this->getWriterPart('Rels')->writeWorkbookRelationships($this->spreadSheet)); + + // Add document properties to ZIP file + $objZip->addFromString('docProps/app.xml', $this->getWriterPart('DocProps')->writeDocPropsApp($this->spreadSheet)); + $objZip->addFromString('docProps/core.xml', $this->getWriterPart('DocProps')->writeDocPropsCore($this->spreadSheet)); + $customPropertiesPart = $this->getWriterPart('DocProps')->writeDocPropsCustom($this->spreadSheet); + if ($customPropertiesPart !== null) { + $objZip->addFromString('docProps/custom.xml', $customPropertiesPart); + } + + // Add theme to ZIP file + $objZip->addFromString('xl/theme/theme1.xml', $this->getWriterPart('Theme')->writeTheme($this->spreadSheet)); + + // Add string table to ZIP file + $objZip->addFromString('xl/sharedStrings.xml', $this->getWriterPart('StringTable')->writeStringTable($this->stringTable)); + + // Add styles to ZIP file + $objZip->addFromString('xl/styles.xml', $this->getWriterPart('Style')->writeStyles($this->spreadSheet)); + + // Add workbook to ZIP file + $objZip->addFromString('xl/workbook.xml', $this->getWriterPart('Workbook')->writeWorkbook($this->spreadSheet, $this->preCalculateFormulas)); + + $chartCount = 0; + // Add worksheets + for ($i = 0; $i < $this->spreadSheet->getSheetCount(); ++$i) { + $objZip->addFromString('xl/worksheets/sheet' . ($i + 1) . '.xml', $this->getWriterPart('Worksheet')->writeWorksheet($this->spreadSheet->getSheet($i), $this->stringTable, $this->includeCharts)); + if ($this->includeCharts) { + $charts = $this->spreadSheet->getSheet($i)->getChartCollection(); + if (count($charts) > 0) { + foreach ($charts as $chart) { + $objZip->addFromString('xl/charts/chart' . ($chartCount + 1) . '.xml', $this->getWriterPart('Chart')->writeChart($chart, $this->preCalculateFormulas)); + $chartCount++; + } + } + } + } + + $chartRef1 = $chartRef2 = 0; + // Add worksheet relationships (drawings, ...) + for ($i = 0; $i < $this->spreadSheet->getSheetCount(); ++$i) { + // Add relationships + $objZip->addFromString('xl/worksheets/_rels/sheet' . ($i + 1) . '.xml.rels', $this->getWriterPart('Rels')->writeWorksheetRelationships($this->spreadSheet->getSheet($i), ($i + 1), $this->includeCharts)); + + $drawings = $this->spreadSheet->getSheet($i)->getDrawingCollection(); + $drawingCount = count($drawings); + if ($this->includeCharts) { + $chartCount = $this->spreadSheet->getSheet($i)->getChartCount(); + } + + // Add drawing and image relationship parts + if (($drawingCount > 0) || ($chartCount > 0)) { + // Drawing relationships + $objZip->addFromString('xl/drawings/_rels/drawing' . ($i + 1) . '.xml.rels', $this->getWriterPart('Rels')->writeDrawingRelationships($this->spreadSheet->getSheet($i), $chartRef1, $this->includeCharts)); + + // Drawings + $objZip->addFromString('xl/drawings/drawing' . ($i + 1) . '.xml', $this->getWriterPart('Drawing')->writeDrawings($this->spreadSheet->getSheet($i), $chartRef2, $this->includeCharts)); + } + + // Add comment relationship parts + if (count($this->spreadSheet->getSheet($i)->getComments()) > 0) { + // VML Comments + $objZip->addFromString('xl/drawings/vmlDrawing' . ($i + 1) . '.vml', $this->getWriterPart('Comments')->writeVMLComments($this->spreadSheet->getSheet($i))); + + // Comments + $objZip->addFromString('xl/comments' . ($i + 1) . '.xml', $this->getWriterPart('Comments')->writeComments($this->spreadSheet->getSheet($i))); + } + + // Add header/footer relationship parts + if (count($this->spreadSheet->getSheet($i)->getHeaderFooter()->getImages()) > 0) { + // VML Drawings + $objZip->addFromString('xl/drawings/vmlDrawingHF' . ($i + 1) . '.vml', $this->getWriterPart('Drawing')->writeVMLHeaderFooterImages($this->spreadSheet->getSheet($i))); + + // VML Drawing relationships + $objZip->addFromString('xl/drawings/_rels/vmlDrawingHF' . ($i + 1) . '.vml.rels', $this->getWriterPart('Rels')->writeHeaderFooterDrawingRelationships($this->spreadSheet->getSheet($i))); + + // Media + foreach ($this->spreadSheet->getSheet($i)->getHeaderFooter()->getImages() as $image) { + $objZip->addFromString('xl/media/' . $image->getIndexedFilename(), file_get_contents($image->getPath())); + } + } + } + + // Add media + for ($i = 0; $i < $this->getDrawingHashTable()->count(); ++$i) { + if ($this->getDrawingHashTable()->getByIndex($i) instanceof PHPExcel_Worksheet_Drawing) { + $imageContents = null; + $imagePath = $this->getDrawingHashTable()->getByIndex($i)->getPath(); + if (strpos($imagePath, 'zip://') !== false) { + $imagePath = substr($imagePath, 6); + $imagePathSplitted = explode('#', $imagePath); + + $imageZip = new ZipArchive(); + $imageZip->open($imagePathSplitted[0]); + $imageContents = $imageZip->getFromName($imagePathSplitted[1]); + $imageZip->close(); + unset($imageZip); + } else { + $imageContents = file_get_contents($imagePath); + } + + $objZip->addFromString('xl/media/' . str_replace(' ', '_', $this->getDrawingHashTable()->getByIndex($i)->getIndexedFilename()), $imageContents); + } elseif ($this->getDrawingHashTable()->getByIndex($i) instanceof PHPExcel_Worksheet_MemoryDrawing) { + ob_start(); + call_user_func( + $this->getDrawingHashTable()->getByIndex($i)->getRenderingFunction(), + $this->getDrawingHashTable()->getByIndex($i)->getImageResource() + ); + $imageContents = ob_get_contents(); + ob_end_clean(); + + $objZip->addFromString('xl/media/' . str_replace(' ', '_', $this->getDrawingHashTable()->getByIndex($i)->getIndexedFilename()), $imageContents); + } + } + + PHPExcel_Calculation_Functions::setReturnDateType($saveDateReturnType); + PHPExcel_Calculation::getInstance($this->spreadSheet)->getDebugLog()->setWriteDebugLog($saveDebugLog); + + // Close file + if ($objZip->close() === false) { + throw new PHPExcel_Writer_Exception("Could not close zip file $pFilename."); + } + + // If a temporary file was used, copy it to the correct file stream + if ($originalFilename != $pFilename) { + if (copy($pFilename, $originalFilename) === false) { + throw new PHPExcel_Writer_Exception("Could not copy temporary zip file $pFilename to $originalFilename."); + } + @unlink($pFilename); + } + } else { + throw new PHPExcel_Writer_Exception("PHPExcel object unassigned."); + } + } + + /** + * Get PHPExcel object + * + * @return PHPExcel + * @throws PHPExcel_Writer_Exception + */ + public function getPHPExcel() + { + if ($this->spreadSheet !== null) { + return $this->spreadSheet; + } else { + throw new PHPExcel_Writer_Exception("No PHPExcel object assigned."); + } + } + + /** + * Set PHPExcel object + * + * @param PHPExcel $pPHPExcel PHPExcel object + * @throws PHPExcel_Writer_Exception + * @return PHPExcel_Writer_Excel2007 + */ + public function setPHPExcel(PHPExcel $pPHPExcel = null) + { + $this->spreadSheet = $pPHPExcel; + return $this; + } + + /** + * Get string table + * + * @return string[] + */ + public function getStringTable() + { + return $this->stringTable; + } + + /** + * Get PHPExcel_Style HashTable + * + * @return PHPExcel_HashTable + */ + public function getStyleHashTable() + { + return $this->styleHashTable; + } + + /** + * Get PHPExcel_Style_Conditional HashTable + * + * @return PHPExcel_HashTable + */ + public function getStylesConditionalHashTable() + { + return $this->stylesConditionalHashTable; + } + + /** + * Get PHPExcel_Style_Fill HashTable + * + * @return PHPExcel_HashTable + */ + public function getFillHashTable() + { + return $this->fillHashTable; + } + + /** + * Get PHPExcel_Style_Font HashTable + * + * @return PHPExcel_HashTable + */ + public function getFontHashTable() + { + return $this->fontHashTable; + } + + /** + * Get PHPExcel_Style_Borders HashTable + * + * @return PHPExcel_HashTable + */ + public function getBordersHashTable() + { + return $this->bordersHashTable; + } + + /** + * Get PHPExcel_Style_NumberFormat HashTable + * + * @return PHPExcel_HashTable + */ + public function getNumFmtHashTable() + { + return $this->numFmtHashTable; + } + + /** + * Get PHPExcel_Worksheet_BaseDrawing HashTable + * + * @return PHPExcel_HashTable + */ + public function getDrawingHashTable() + { + return $this->drawingHashTable; + } + + /** + * Get Office2003 compatibility + * + * @return boolean + */ + public function getOffice2003Compatibility() + { + return $this->office2003compatibility; + } + + /** + * Set Office2003 compatibility + * + * @param boolean $pValue Office2003 compatibility? + * @return PHPExcel_Writer_Excel2007 + */ + public function setOffice2003Compatibility($pValue = false) + { + $this->office2003compatibility = $pValue; + return $this; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Chart.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Chart.php new file mode 100644 index 0000000..92fa215 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Chart.php @@ -0,0 +1,1520 @@ +<?php + +/** + * PHPExcel_Writer_Excel2007_Chart + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_Excel2007_Chart extends PHPExcel_Writer_Excel2007_WriterPart +{ + protected $calculateCellValues; + + /** + * Write charts to XML format + * + * @param PHPExcel_Chart $pChart + * + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeChart(PHPExcel_Chart $pChart = null, $calculateCellValues = true) + { + $this->calculateCellValues = $calculateCellValues; + + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + // Ensure that data series values are up-to-date before we save + if ($this->calculateCellValues) { + $pChart->refresh(); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // c:chartSpace + $objWriter->startElement('c:chartSpace'); + $objWriter->writeAttribute('xmlns:c', 'http://schemas.openxmlformats.org/drawingml/2006/chart'); + $objWriter->writeAttribute('xmlns:a', 'http://schemas.openxmlformats.org/drawingml/2006/main'); + $objWriter->writeAttribute('xmlns:r', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships'); + + $objWriter->startElement('c:date1904'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + $objWriter->startElement('c:lang'); + $objWriter->writeAttribute('val', "en-GB"); + $objWriter->endElement(); + $objWriter->startElement('c:roundedCorners'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + + $this->writeAlternateContent($objWriter); + + $objWriter->startElement('c:chart'); + + $this->writeTitle($pChart->getTitle(), $objWriter); + + $objWriter->startElement('c:autoTitleDeleted'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + + $this->writePlotArea($pChart->getPlotArea(), $pChart->getXAxisLabel(), $pChart->getYAxisLabel(), $objWriter, $pChart->getWorksheet(), $pChart->getChartAxisX(), $pChart->getChartAxisY(), $pChart->getMajorGridlines(), $pChart->getMinorGridlines()); + + $this->writeLegend($pChart->getLegend(), $objWriter); + + $objWriter->startElement('c:plotVisOnly'); + $objWriter->writeAttribute('val', 1); + $objWriter->endElement(); + + $objWriter->startElement('c:dispBlanksAs'); + $objWriter->writeAttribute('val', "gap"); + $objWriter->endElement(); + + $objWriter->startElement('c:showDLblsOverMax'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + + $objWriter->endElement(); + + $this->writePrintSettings($objWriter); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write Chart Title + * + * @param PHPExcel_Chart_Title $title + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * + * @throws PHPExcel_Writer_Exception + */ + private function writeTitle(PHPExcel_Chart_Title $title = null, $objWriter) + { + if (is_null($title)) { + return; + } + + $objWriter->startElement('c:title'); + $objWriter->startElement('c:tx'); + $objWriter->startElement('c:rich'); + + $objWriter->startElement('a:bodyPr'); + $objWriter->endElement(); + + $objWriter->startElement('a:lstStyle'); + $objWriter->endElement(); + + $objWriter->startElement('a:p'); + + $caption = $title->getCaption(); + if ((is_array($caption)) && (count($caption) > 0)) { + $caption = $caption[0]; + } + $this->getParentWriter()->getWriterPart('stringtable')->writeRichTextForCharts($objWriter, $caption, 'a'); + + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + + $this->writeLayout($title->getLayout(), $objWriter); + + $objWriter->startElement('c:overlay'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write Chart Legend + * + * @param PHPExcel_Chart_Legend $legend + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * + * @throws PHPExcel_Writer_Exception + */ + private function writeLegend(PHPExcel_Chart_Legend $legend = null, $objWriter) + { + if (is_null($legend)) { + return; + } + + $objWriter->startElement('c:legend'); + + $objWriter->startElement('c:legendPos'); + $objWriter->writeAttribute('val', $legend->getPosition()); + $objWriter->endElement(); + + $this->writeLayout($legend->getLayout(), $objWriter); + + $objWriter->startElement('c:overlay'); + $objWriter->writeAttribute('val', ($legend->getOverlay()) ? '1' : '0'); + $objWriter->endElement(); + + $objWriter->startElement('c:txPr'); + $objWriter->startElement('a:bodyPr'); + $objWriter->endElement(); + + $objWriter->startElement('a:lstStyle'); + $objWriter->endElement(); + + $objWriter->startElement('a:p'); + $objWriter->startElement('a:pPr'); + $objWriter->writeAttribute('rtl', 0); + + $objWriter->startElement('a:defRPr'); + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->startElement('a:endParaRPr'); + $objWriter->writeAttribute('lang', "en-US"); + $objWriter->endElement(); + + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write Chart Plot Area + * + * @param PHPExcel_Chart_PlotArea $plotArea + * @param PHPExcel_Chart_Title $xAxisLabel + * @param PHPExcel_Chart_Title $yAxisLabel + * @param PHPExcel_Chart_Axis $xAxis + * @param PHPExcel_Chart_Axis $yAxis + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * + * @throws PHPExcel_Writer_Exception + */ + private function writePlotArea(PHPExcel_Chart_PlotArea $plotArea, PHPExcel_Chart_Title $xAxisLabel = null, PHPExcel_Chart_Title $yAxisLabel = null, $objWriter, PHPExcel_Worksheet $pSheet, PHPExcel_Chart_Axis $xAxis, PHPExcel_Chart_Axis $yAxis, PHPExcel_Chart_GridLines $majorGridlines, PHPExcel_Chart_GridLines $minorGridlines) + { + if (is_null($plotArea)) { + return; + } + + $id1 = $id2 = 0; + $this->_seriesIndex = 0; + $objWriter->startElement('c:plotArea'); + + $layout = $plotArea->getLayout(); + + $this->writeLayout($layout, $objWriter); + + $chartTypes = self::getChartType($plotArea); + $catIsMultiLevelSeries = $valIsMultiLevelSeries = false; + $plotGroupingType = ''; + foreach ($chartTypes as $chartType) { + $objWriter->startElement('c:' . $chartType); + + $groupCount = $plotArea->getPlotGroupCount(); + for ($i = 0; $i < $groupCount; ++$i) { + $plotGroup = $plotArea->getPlotGroupByIndex($i); + $groupType = $plotGroup->getPlotType(); + if ($groupType == $chartType) { + $plotStyle = $plotGroup->getPlotStyle(); + if ($groupType === PHPExcel_Chart_DataSeries::TYPE_RADARCHART) { + $objWriter->startElement('c:radarStyle'); + $objWriter->writeAttribute('val', $plotStyle); + $objWriter->endElement(); + } elseif ($groupType === PHPExcel_Chart_DataSeries::TYPE_SCATTERCHART) { + $objWriter->startElement('c:scatterStyle'); + $objWriter->writeAttribute('val', $plotStyle); + $objWriter->endElement(); + } + + $this->writePlotGroup($plotGroup, $chartType, $objWriter, $catIsMultiLevelSeries, $valIsMultiLevelSeries, $plotGroupingType, $pSheet); + } + } + + $this->writeDataLabels($objWriter, $layout); + + if ($chartType === PHPExcel_Chart_DataSeries::TYPE_LINECHART) { + // Line only, Line3D can't be smoothed + + $objWriter->startElement('c:smooth'); + $objWriter->writeAttribute('val', (integer) $plotGroup->getSmoothLine()); + $objWriter->endElement(); + } elseif (($chartType === PHPExcel_Chart_DataSeries::TYPE_BARCHART) ||($chartType === PHPExcel_Chart_DataSeries::TYPE_BARCHART_3D)) { + $objWriter->startElement('c:gapWidth'); + $objWriter->writeAttribute('val', 150); + $objWriter->endElement(); + + if ($plotGroupingType == 'percentStacked' || $plotGroupingType == 'stacked') { + $objWriter->startElement('c:overlap'); + $objWriter->writeAttribute('val', 100); + $objWriter->endElement(); + } + } elseif ($chartType === PHPExcel_Chart_DataSeries::TYPE_BUBBLECHART) { + $objWriter->startElement('c:bubbleScale'); + $objWriter->writeAttribute('val', 25); + $objWriter->endElement(); + + $objWriter->startElement('c:showNegBubbles'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + } elseif ($chartType === PHPExcel_Chart_DataSeries::TYPE_STOCKCHART) { + $objWriter->startElement('c:hiLowLines'); + $objWriter->endElement(); + + $objWriter->startElement('c:upDownBars'); + + $objWriter->startElement('c:gapWidth'); + $objWriter->writeAttribute('val', 300); + $objWriter->endElement(); + + $objWriter->startElement('c:upBars'); + $objWriter->endElement(); + + $objWriter->startElement('c:downBars'); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + // Generate 2 unique numbers to use for axId values + // $id1 = $id2 = rand(10000000,99999999); + // do { + // $id2 = rand(10000000,99999999); + // } while ($id1 == $id2); + $id1 = '75091328'; + $id2 = '75089408'; + + if (($chartType !== PHPExcel_Chart_DataSeries::TYPE_PIECHART) && ($chartType !== PHPExcel_Chart_DataSeries::TYPE_PIECHART_3D) && ($chartType !== PHPExcel_Chart_DataSeries::TYPE_DONUTCHART)) { + $objWriter->startElement('c:axId'); + $objWriter->writeAttribute('val', $id1); + $objWriter->endElement(); + $objWriter->startElement('c:axId'); + $objWriter->writeAttribute('val', $id2); + $objWriter->endElement(); + } else { + $objWriter->startElement('c:firstSliceAng'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + + if ($chartType === PHPExcel_Chart_DataSeries::TYPE_DONUTCHART) { + $objWriter->startElement('c:holeSize'); + $objWriter->writeAttribute('val', 50); + $objWriter->endElement(); + } + } + + $objWriter->endElement(); + } + + if (($chartType !== PHPExcel_Chart_DataSeries::TYPE_PIECHART) && ($chartType !== PHPExcel_Chart_DataSeries::TYPE_PIECHART_3D) && ($chartType !== PHPExcel_Chart_DataSeries::TYPE_DONUTCHART)) { + if ($chartType === PHPExcel_Chart_DataSeries::TYPE_BUBBLECHART) { + $this->writeValueAxis($objWriter, $plotArea, $xAxisLabel, $chartType, $id1, $id2, $catIsMultiLevelSeries, $xAxis, $yAxis, $majorGridlines, $minorGridlines); + } else { + $this->writeCategoryAxis($objWriter, $plotArea, $xAxisLabel, $chartType, $id1, $id2, $catIsMultiLevelSeries, $xAxis, $yAxis); + } + + $this->writeValueAxis($objWriter, $plotArea, $yAxisLabel, $chartType, $id1, $id2, $valIsMultiLevelSeries, $xAxis, $yAxis, $majorGridlines, $minorGridlines); + } + + $objWriter->endElement(); + } + + /** + * Write Data Labels + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Chart_Layout $chartLayout Chart layout + * + * @throws PHPExcel_Writer_Exception + */ + private function writeDataLabels($objWriter, $chartLayout) + { + $objWriter->startElement('c:dLbls'); + + $objWriter->startElement('c:showLegendKey'); + $showLegendKey = (empty($chartLayout)) ? 0 : $chartLayout->getShowLegendKey(); + $objWriter->writeAttribute('val', ((empty($showLegendKey)) ? 0 : 1)); + $objWriter->endElement(); + + $objWriter->startElement('c:showVal'); + $showVal = (empty($chartLayout)) ? 0 : $chartLayout->getShowVal(); + $objWriter->writeAttribute('val', ((empty($showVal)) ? 0 : 1)); + $objWriter->endElement(); + + $objWriter->startElement('c:showCatName'); + $showCatName = (empty($chartLayout)) ? 0 : $chartLayout->getShowCatName(); + $objWriter->writeAttribute('val', ((empty($showCatName)) ? 0 : 1)); + $objWriter->endElement(); + + $objWriter->startElement('c:showSerName'); + $showSerName = (empty($chartLayout)) ? 0 : $chartLayout->getShowSerName(); + $objWriter->writeAttribute('val', ((empty($showSerName)) ? 0 : 1)); + $objWriter->endElement(); + + $objWriter->startElement('c:showPercent'); + $showPercent = (empty($chartLayout)) ? 0 : $chartLayout->getShowPercent(); + $objWriter->writeAttribute('val', ((empty($showPercent)) ? 0 : 1)); + $objWriter->endElement(); + + $objWriter->startElement('c:showBubbleSize'); + $showBubbleSize = (empty($chartLayout)) ? 0 : $chartLayout->getShowBubbleSize(); + $objWriter->writeAttribute('val', ((empty($showBubbleSize)) ? 0 : 1)); + $objWriter->endElement(); + + $objWriter->startElement('c:showLeaderLines'); + $showLeaderLines = (empty($chartLayout)) ? 1 : $chartLayout->getShowLeaderLines(); + $objWriter->writeAttribute('val', ((empty($showLeaderLines)) ? 0 : 1)); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write Category Axis + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Chart_PlotArea $plotArea + * @param PHPExcel_Chart_Title $xAxisLabel + * @param string $groupType Chart type + * @param string $id1 + * @param string $id2 + * @param boolean $isMultiLevelSeries + * + * @throws PHPExcel_Writer_Exception + */ + private function writeCategoryAxis($objWriter, PHPExcel_Chart_PlotArea $plotArea, $xAxisLabel, $groupType, $id1, $id2, $isMultiLevelSeries, $xAxis, $yAxis) + { + $objWriter->startElement('c:catAx'); + + if ($id1 > 0) { + $objWriter->startElement('c:axId'); + $objWriter->writeAttribute('val', $id1); + $objWriter->endElement(); + } + + $objWriter->startElement('c:scaling'); + $objWriter->startElement('c:orientation'); + $objWriter->writeAttribute('val', $yAxis->getAxisOptionsProperty('orientation')); + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->startElement('c:delete'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + + $objWriter->startElement('c:axPos'); + $objWriter->writeAttribute('val', "b"); + $objWriter->endElement(); + + if (!is_null($xAxisLabel)) { + $objWriter->startElement('c:title'); + $objWriter->startElement('c:tx'); + $objWriter->startElement('c:rich'); + + $objWriter->startElement('a:bodyPr'); + $objWriter->endElement(); + + $objWriter->startElement('a:lstStyle'); + $objWriter->endElement(); + + $objWriter->startElement('a:p'); + $objWriter->startElement('a:r'); + + $caption = $xAxisLabel->getCaption(); + if (is_array($caption)) { + $caption = $caption[0]; + } + $objWriter->startElement('a:t'); + // $objWriter->writeAttribute('xml:space', 'preserve'); + $objWriter->writeRawData(PHPExcel_Shared_String::ControlCharacterPHP2OOXML($caption)); + $objWriter->endElement(); + + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + + $layout = $xAxisLabel->getLayout(); + $this->writeLayout($layout, $objWriter); + + $objWriter->startElement('c:overlay'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + $objWriter->startElement('c:numFmt'); + $objWriter->writeAttribute('formatCode', $yAxis->getAxisNumberFormat()); + $objWriter->writeAttribute('sourceLinked', $yAxis->getAxisNumberSourceLinked()); + $objWriter->endElement(); + + $objWriter->startElement('c:majorTickMark'); + $objWriter->writeAttribute('val', $yAxis->getAxisOptionsProperty('major_tick_mark')); + $objWriter->endElement(); + + $objWriter->startElement('c:minorTickMark'); + $objWriter->writeAttribute('val', $yAxis->getAxisOptionsProperty('minor_tick_mark')); + $objWriter->endElement(); + + $objWriter->startElement('c:tickLblPos'); + $objWriter->writeAttribute('val', $yAxis->getAxisOptionsProperty('axis_labels')); + $objWriter->endElement(); + + if ($id2 > 0) { + $objWriter->startElement('c:crossAx'); + $objWriter->writeAttribute('val', $id2); + $objWriter->endElement(); + + $objWriter->startElement('c:crosses'); + $objWriter->writeAttribute('val', $yAxis->getAxisOptionsProperty('horizontal_crosses')); + $objWriter->endElement(); + } + + $objWriter->startElement('c:auto'); + $objWriter->writeAttribute('val', 1); + $objWriter->endElement(); + + $objWriter->startElement('c:lblAlgn'); + $objWriter->writeAttribute('val', "ctr"); + $objWriter->endElement(); + + $objWriter->startElement('c:lblOffset'); + $objWriter->writeAttribute('val', 100); + $objWriter->endElement(); + + if ($isMultiLevelSeries) { + $objWriter->startElement('c:noMultiLvlLbl'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + } + $objWriter->endElement(); + } + + /** + * Write Value Axis + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Chart_PlotArea $plotArea + * @param PHPExcel_Chart_Title $yAxisLabel + * @param string $groupType Chart type + * @param string $id1 + * @param string $id2 + * @param boolean $isMultiLevelSeries + * + * @throws PHPExcel_Writer_Exception + */ + private function writeValueAxis($objWriter, PHPExcel_Chart_PlotArea $plotArea, $yAxisLabel, $groupType, $id1, $id2, $isMultiLevelSeries, $xAxis, $yAxis, $majorGridlines, $minorGridlines) + { + $objWriter->startElement('c:valAx'); + + if ($id2 > 0) { + $objWriter->startElement('c:axId'); + $objWriter->writeAttribute('val', $id2); + $objWriter->endElement(); + } + + $objWriter->startElement('c:scaling'); + + if (!is_null($xAxis->getAxisOptionsProperty('maximum'))) { + $objWriter->startElement('c:max'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('maximum')); + $objWriter->endElement(); + } + + if (!is_null($xAxis->getAxisOptionsProperty('minimum'))) { + $objWriter->startElement('c:min'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('minimum')); + $objWriter->endElement(); + } + + $objWriter->startElement('c:orientation'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('orientation')); + + + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->startElement('c:delete'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + + $objWriter->startElement('c:axPos'); + $objWriter->writeAttribute('val', "l"); + $objWriter->endElement(); + + $objWriter->startElement('c:majorGridlines'); + $objWriter->startElement('c:spPr'); + + if (!is_null($majorGridlines->getLineColorProperty('value'))) { + $objWriter->startElement('a:ln'); + $objWriter->writeAttribute('w', $majorGridlines->getLineStyleProperty('width')); + $objWriter->startElement('a:solidFill'); + $objWriter->startElement("a:{$majorGridlines->getLineColorProperty('type')}"); + $objWriter->writeAttribute('val', $majorGridlines->getLineColorProperty('value')); + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', $majorGridlines->getLineColorProperty('alpha')); + $objWriter->endElement(); //end alpha + $objWriter->endElement(); //end srgbClr + $objWriter->endElement(); //end solidFill + + $objWriter->startElement('a:prstDash'); + $objWriter->writeAttribute('val', $majorGridlines->getLineStyleProperty('dash')); + $objWriter->endElement(); + + if ($majorGridlines->getLineStyleProperty('join') == 'miter') { + $objWriter->startElement('a:miter'); + $objWriter->writeAttribute('lim', '800000'); + $objWriter->endElement(); + } else { + $objWriter->startElement('a:bevel'); + $objWriter->endElement(); + } + + if (!is_null($majorGridlines->getLineStyleProperty(array('arrow', 'head', 'type')))) { + $objWriter->startElement('a:headEnd'); + $objWriter->writeAttribute('type', $majorGridlines->getLineStyleProperty(array('arrow', 'head', 'type'))); + $objWriter->writeAttribute('w', $majorGridlines->getLineStyleArrowParameters('head', 'w')); + $objWriter->writeAttribute('len', $majorGridlines->getLineStyleArrowParameters('head', 'len')); + $objWriter->endElement(); + } + + if (!is_null($majorGridlines->getLineStyleProperty(array('arrow', 'end', 'type')))) { + $objWriter->startElement('a:tailEnd'); + $objWriter->writeAttribute('type', $majorGridlines->getLineStyleProperty(array('arrow', 'end', 'type'))); + $objWriter->writeAttribute('w', $majorGridlines->getLineStyleArrowParameters('end', 'w')); + $objWriter->writeAttribute('len', $majorGridlines->getLineStyleArrowParameters('end', 'len')); + $objWriter->endElement(); + } + $objWriter->endElement(); //end ln + } + $objWriter->startElement('a:effectLst'); + + if (!is_null($majorGridlines->getGlowSize())) { + $objWriter->startElement('a:glow'); + $objWriter->writeAttribute('rad', $majorGridlines->getGlowSize()); + $objWriter->startElement("a:{$majorGridlines->getGlowColor('type')}"); + $objWriter->writeAttribute('val', $majorGridlines->getGlowColor('value')); + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', $majorGridlines->getGlowColor('alpha')); + $objWriter->endElement(); //end alpha + $objWriter->endElement(); //end schemeClr + $objWriter->endElement(); //end glow + } + + if (!is_null($majorGridlines->getShadowProperty('presets'))) { + $objWriter->startElement("a:{$majorGridlines->getShadowProperty('effect')}"); + if (!is_null($majorGridlines->getShadowProperty('blur'))) { + $objWriter->writeAttribute('blurRad', $majorGridlines->getShadowProperty('blur')); + } + if (!is_null($majorGridlines->getShadowProperty('distance'))) { + $objWriter->writeAttribute('dist', $majorGridlines->getShadowProperty('distance')); + } + if (!is_null($majorGridlines->getShadowProperty('direction'))) { + $objWriter->writeAttribute('dir', $majorGridlines->getShadowProperty('direction')); + } + if (!is_null($majorGridlines->getShadowProperty('algn'))) { + $objWriter->writeAttribute('algn', $majorGridlines->getShadowProperty('algn')); + } + if (!is_null($majorGridlines->getShadowProperty(array('size', 'sx')))) { + $objWriter->writeAttribute('sx', $majorGridlines->getShadowProperty(array('size', 'sx'))); + } + if (!is_null($majorGridlines->getShadowProperty(array('size', 'sy')))) { + $objWriter->writeAttribute('sy', $majorGridlines->getShadowProperty(array('size', 'sy'))); + } + if (!is_null($majorGridlines->getShadowProperty(array('size', 'kx')))) { + $objWriter->writeAttribute('kx', $majorGridlines->getShadowProperty(array('size', 'kx'))); + } + if (!is_null($majorGridlines->getShadowProperty('rotWithShape'))) { + $objWriter->writeAttribute('rotWithShape', $majorGridlines->getShadowProperty('rotWithShape')); + } + $objWriter->startElement("a:{$majorGridlines->getShadowProperty(array('color', 'type'))}"); + $objWriter->writeAttribute('val', $majorGridlines->getShadowProperty(array('color', 'value'))); + + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', $majorGridlines->getShadowProperty(array('color', 'alpha'))); + $objWriter->endElement(); //end alpha + + $objWriter->endElement(); //end color:type + $objWriter->endElement(); //end shadow + } + + if (!is_null($majorGridlines->getSoftEdgesSize())) { + $objWriter->startElement('a:softEdge'); + $objWriter->writeAttribute('rad', $majorGridlines->getSoftEdgesSize()); + $objWriter->endElement(); //end softEdge + } + + $objWriter->endElement(); //end effectLst + $objWriter->endElement(); //end spPr + $objWriter->endElement(); //end majorGridLines + + if ($minorGridlines->getObjectState()) { + $objWriter->startElement('c:minorGridlines'); + $objWriter->startElement('c:spPr'); + + if (!is_null($minorGridlines->getLineColorProperty('value'))) { + $objWriter->startElement('a:ln'); + $objWriter->writeAttribute('w', $minorGridlines->getLineStyleProperty('width')); + $objWriter->startElement('a:solidFill'); + $objWriter->startElement("a:{$minorGridlines->getLineColorProperty('type')}"); + $objWriter->writeAttribute('val', $minorGridlines->getLineColorProperty('value')); + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', $minorGridlines->getLineColorProperty('alpha')); + $objWriter->endElement(); //end alpha + $objWriter->endElement(); //end srgbClr + $objWriter->endElement(); //end solidFill + + $objWriter->startElement('a:prstDash'); + $objWriter->writeAttribute('val', $minorGridlines->getLineStyleProperty('dash')); + $objWriter->endElement(); + + if ($minorGridlines->getLineStyleProperty('join') == 'miter') { + $objWriter->startElement('a:miter'); + $objWriter->writeAttribute('lim', '800000'); + $objWriter->endElement(); + } else { + $objWriter->startElement('a:bevel'); + $objWriter->endElement(); + } + + if (!is_null($minorGridlines->getLineStyleProperty(array('arrow', 'head', 'type')))) { + $objWriter->startElement('a:headEnd'); + $objWriter->writeAttribute('type', $minorGridlines->getLineStyleProperty(array('arrow', 'head', 'type'))); + $objWriter->writeAttribute('w', $minorGridlines->getLineStyleArrowParameters('head', 'w')); + $objWriter->writeAttribute('len', $minorGridlines->getLineStyleArrowParameters('head', 'len')); + $objWriter->endElement(); + } + + if (!is_null($minorGridlines->getLineStyleProperty(array('arrow', 'end', 'type')))) { + $objWriter->startElement('a:tailEnd'); + $objWriter->writeAttribute('type', $minorGridlines->getLineStyleProperty(array('arrow', 'end', 'type'))); + $objWriter->writeAttribute('w', $minorGridlines->getLineStyleArrowParameters('end', 'w')); + $objWriter->writeAttribute('len', $minorGridlines->getLineStyleArrowParameters('end', 'len')); + $objWriter->endElement(); + } + $objWriter->endElement(); //end ln + } + + $objWriter->startElement('a:effectLst'); + + if (!is_null($minorGridlines->getGlowSize())) { + $objWriter->startElement('a:glow'); + $objWriter->writeAttribute('rad', $minorGridlines->getGlowSize()); + $objWriter->startElement("a:{$minorGridlines->getGlowColor('type')}"); + $objWriter->writeAttribute('val', $minorGridlines->getGlowColor('value')); + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', $minorGridlines->getGlowColor('alpha')); + $objWriter->endElement(); //end alpha + $objWriter->endElement(); //end schemeClr + $objWriter->endElement(); //end glow + } + + if (!is_null($minorGridlines->getShadowProperty('presets'))) { + $objWriter->startElement("a:{$minorGridlines->getShadowProperty('effect')}"); + if (!is_null($minorGridlines->getShadowProperty('blur'))) { + $objWriter->writeAttribute('blurRad', $minorGridlines->getShadowProperty('blur')); + } + if (!is_null($minorGridlines->getShadowProperty('distance'))) { + $objWriter->writeAttribute('dist', $minorGridlines->getShadowProperty('distance')); + } + if (!is_null($minorGridlines->getShadowProperty('direction'))) { + $objWriter->writeAttribute('dir', $minorGridlines->getShadowProperty('direction')); + } + if (!is_null($minorGridlines->getShadowProperty('algn'))) { + $objWriter->writeAttribute('algn', $minorGridlines->getShadowProperty('algn')); + } + if (!is_null($minorGridlines->getShadowProperty(array('size', 'sx')))) { + $objWriter->writeAttribute('sx', $minorGridlines->getShadowProperty(array('size', 'sx'))); + } + if (!is_null($minorGridlines->getShadowProperty(array('size', 'sy')))) { + $objWriter->writeAttribute('sy', $minorGridlines->getShadowProperty(array('size', 'sy'))); + } + if (!is_null($minorGridlines->getShadowProperty(array('size', 'kx')))) { + $objWriter->writeAttribute('kx', $minorGridlines->getShadowProperty(array('size', 'kx'))); + } + if (!is_null($minorGridlines->getShadowProperty('rotWithShape'))) { + $objWriter->writeAttribute('rotWithShape', $minorGridlines->getShadowProperty('rotWithShape')); + } + $objWriter->startElement("a:{$minorGridlines->getShadowProperty(array('color', 'type'))}"); + $objWriter->writeAttribute('val', $minorGridlines->getShadowProperty(array('color', 'value'))); + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', $minorGridlines->getShadowProperty(array('color', 'alpha'))); + $objWriter->endElement(); //end alpha + $objWriter->endElement(); //end color:type + $objWriter->endElement(); //end shadow + } + + if (!is_null($minorGridlines->getSoftEdgesSize())) { + $objWriter->startElement('a:softEdge'); + $objWriter->writeAttribute('rad', $minorGridlines->getSoftEdgesSize()); + $objWriter->endElement(); //end softEdge + } + + $objWriter->endElement(); //end effectLst + $objWriter->endElement(); //end spPr + $objWriter->endElement(); //end minorGridLines + } + + if (!is_null($yAxisLabel)) { + $objWriter->startElement('c:title'); + $objWriter->startElement('c:tx'); + $objWriter->startElement('c:rich'); + + $objWriter->startElement('a:bodyPr'); + $objWriter->endElement(); + + $objWriter->startElement('a:lstStyle'); + $objWriter->endElement(); + + $objWriter->startElement('a:p'); + $objWriter->startElement('a:r'); + + $caption = $yAxisLabel->getCaption(); + if (is_array($caption)) { + $caption = $caption[0]; + } + + $objWriter->startElement('a:t'); + // $objWriter->writeAttribute('xml:space', 'preserve'); + $objWriter->writeRawData(PHPExcel_Shared_String::ControlCharacterPHP2OOXML($caption)); + $objWriter->endElement(); + + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + + if ($groupType !== PHPExcel_Chart_DataSeries::TYPE_BUBBLECHART) { + $layout = $yAxisLabel->getLayout(); + $this->writeLayout($layout, $objWriter); + } + + $objWriter->startElement('c:overlay'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + $objWriter->startElement('c:numFmt'); + $objWriter->writeAttribute('formatCode', $xAxis->getAxisNumberFormat()); + $objWriter->writeAttribute('sourceLinked', $xAxis->getAxisNumberSourceLinked()); + $objWriter->endElement(); + + $objWriter->startElement('c:majorTickMark'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('major_tick_mark')); + $objWriter->endElement(); + + $objWriter->startElement('c:minorTickMark'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('minor_tick_mark')); + $objWriter->endElement(); + + $objWriter->startElement('c:tickLblPos'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('axis_labels')); + $objWriter->endElement(); + + $objWriter->startElement('c:spPr'); + + if (!is_null($xAxis->getFillProperty('value'))) { + $objWriter->startElement('a:solidFill'); + $objWriter->startElement("a:" . $xAxis->getFillProperty('type')); + $objWriter->writeAttribute('val', $xAxis->getFillProperty('value')); + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', $xAxis->getFillProperty('alpha')); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + } + + $objWriter->startElement('a:ln'); + + $objWriter->writeAttribute('w', $xAxis->getLineStyleProperty('width')); + $objWriter->writeAttribute('cap', $xAxis->getLineStyleProperty('cap')); + $objWriter->writeAttribute('cmpd', $xAxis->getLineStyleProperty('compound')); + + if (!is_null($xAxis->getLineProperty('value'))) { + $objWriter->startElement('a:solidFill'); + $objWriter->startElement("a:" . $xAxis->getLineProperty('type')); + $objWriter->writeAttribute('val', $xAxis->getLineProperty('value')); + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', $xAxis->getLineProperty('alpha')); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + } + + $objWriter->startElement('a:prstDash'); + $objWriter->writeAttribute('val', $xAxis->getLineStyleProperty('dash')); + $objWriter->endElement(); + + if ($xAxis->getLineStyleProperty('join') == 'miter') { + $objWriter->startElement('a:miter'); + $objWriter->writeAttribute('lim', '800000'); + $objWriter->endElement(); + } else { + $objWriter->startElement('a:bevel'); + $objWriter->endElement(); + } + + if (!is_null($xAxis->getLineStyleProperty(array('arrow', 'head', 'type')))) { + $objWriter->startElement('a:headEnd'); + $objWriter->writeAttribute('type', $xAxis->getLineStyleProperty(array('arrow', 'head', 'type'))); + $objWriter->writeAttribute('w', $xAxis->getLineStyleArrowWidth('head')); + $objWriter->writeAttribute('len', $xAxis->getLineStyleArrowLength('head')); + $objWriter->endElement(); + } + + if (!is_null($xAxis->getLineStyleProperty(array('arrow', 'end', 'type')))) { + $objWriter->startElement('a:tailEnd'); + $objWriter->writeAttribute('type', $xAxis->getLineStyleProperty(array('arrow', 'end', 'type'))); + $objWriter->writeAttribute('w', $xAxis->getLineStyleArrowWidth('end')); + $objWriter->writeAttribute('len', $xAxis->getLineStyleArrowLength('end')); + $objWriter->endElement(); + } + + $objWriter->endElement(); + + $objWriter->startElement('a:effectLst'); + + if (!is_null($xAxis->getGlowProperty('size'))) { + $objWriter->startElement('a:glow'); + $objWriter->writeAttribute('rad', $xAxis->getGlowProperty('size')); + $objWriter->startElement("a:{$xAxis->getGlowProperty(array('color','type'))}"); + $objWriter->writeAttribute('val', $xAxis->getGlowProperty(array('color','value'))); + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', $xAxis->getGlowProperty(array('color','alpha'))); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + } + + if (!is_null($xAxis->getShadowProperty('presets'))) { + $objWriter->startElement("a:{$xAxis->getShadowProperty('effect')}"); + + if (!is_null($xAxis->getShadowProperty('blur'))) { + $objWriter->writeAttribute('blurRad', $xAxis->getShadowProperty('blur')); + } + if (!is_null($xAxis->getShadowProperty('distance'))) { + $objWriter->writeAttribute('dist', $xAxis->getShadowProperty('distance')); + } + if (!is_null($xAxis->getShadowProperty('direction'))) { + $objWriter->writeAttribute('dir', $xAxis->getShadowProperty('direction')); + } + if (!is_null($xAxis->getShadowProperty('algn'))) { + $objWriter->writeAttribute('algn', $xAxis->getShadowProperty('algn')); + } + if (!is_null($xAxis->getShadowProperty(array('size','sx')))) { + $objWriter->writeAttribute('sx', $xAxis->getShadowProperty(array('size','sx'))); + } + if (!is_null($xAxis->getShadowProperty(array('size','sy')))) { + $objWriter->writeAttribute('sy', $xAxis->getShadowProperty(array('size','sy'))); + } + if (!is_null($xAxis->getShadowProperty(array('size','kx')))) { + $objWriter->writeAttribute('kx', $xAxis->getShadowProperty(array('size','kx'))); + } + if (!is_null($xAxis->getShadowProperty('rotWithShape'))) { + $objWriter->writeAttribute('rotWithShape', $xAxis->getShadowProperty('rotWithShape')); + } + + $objWriter->startElement("a:{$xAxis->getShadowProperty(array('color','type'))}"); + $objWriter->writeAttribute('val', $xAxis->getShadowProperty(array('color','value'))); + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', $xAxis->getShadowProperty(array('color','alpha'))); + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + if (!is_null($xAxis->getSoftEdgesSize())) { + $objWriter->startElement('a:softEdge'); + $objWriter->writeAttribute('rad', $xAxis->getSoftEdgesSize()); + $objWriter->endElement(); + } + + $objWriter->endElement(); //effectList + $objWriter->endElement(); //end spPr + + if ($id1 > 0) { + $objWriter->startElement('c:crossAx'); + $objWriter->writeAttribute('val', $id2); + $objWriter->endElement(); + + if (!is_null($xAxis->getAxisOptionsProperty('horizontal_crosses_value'))) { + $objWriter->startElement('c:crossesAt'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('horizontal_crosses_value')); + $objWriter->endElement(); + } else { + $objWriter->startElement('c:crosses'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('horizontal_crosses')); + $objWriter->endElement(); + } + + $objWriter->startElement('c:crossBetween'); + $objWriter->writeAttribute('val', "midCat"); + $objWriter->endElement(); + + if (!is_null($xAxis->getAxisOptionsProperty('major_unit'))) { + $objWriter->startElement('c:majorUnit'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('major_unit')); + $objWriter->endElement(); + } + + if (!is_null($xAxis->getAxisOptionsProperty('minor_unit'))) { + $objWriter->startElement('c:minorUnit'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('minor_unit')); + $objWriter->endElement(); + } + } + + if ($isMultiLevelSeries) { + if ($groupType !== PHPExcel_Chart_DataSeries::TYPE_BUBBLECHART) { + $objWriter->startElement('c:noMultiLvlLbl'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + } + } + + $objWriter->endElement(); + } + + /** + * Get the data series type(s) for a chart plot series + * + * @param PHPExcel_Chart_PlotArea $plotArea + * + * @return string|array + * @throws PHPExcel_Writer_Exception + */ + private static function getChartType($plotArea) + { + $groupCount = $plotArea->getPlotGroupCount(); + + if ($groupCount == 1) { + $chartType = array($plotArea->getPlotGroupByIndex(0)->getPlotType()); + } else { + $chartTypes = array(); + for ($i = 0; $i < $groupCount; ++$i) { + $chartTypes[] = $plotArea->getPlotGroupByIndex($i)->getPlotType(); + } + $chartType = array_unique($chartTypes); + if (count($chartTypes) == 0) { + throw new PHPExcel_Writer_Exception('Chart is not yet implemented'); + } + } + + return $chartType; + } + + /** + * Write Plot Group (series of related plots) + * + * @param PHPExcel_Chart_DataSeries $plotGroup + * @param string $groupType Type of plot for dataseries + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param boolean &$catIsMultiLevelSeries Is category a multi-series category + * @param boolean &$valIsMultiLevelSeries Is value set a multi-series set + * @param string &$plotGroupingType Type of grouping for multi-series values + * @param PHPExcel_Worksheet $pSheet + * + * @throws PHPExcel_Writer_Exception + */ + private function writePlotGroup($plotGroup, $groupType, $objWriter, &$catIsMultiLevelSeries, &$valIsMultiLevelSeries, &$plotGroupingType, PHPExcel_Worksheet $pSheet) + { + if (is_null($plotGroup)) { + return; + } + + if (($groupType == PHPExcel_Chart_DataSeries::TYPE_BARCHART) || ($groupType == PHPExcel_Chart_DataSeries::TYPE_BARCHART_3D)) { + $objWriter->startElement('c:barDir'); + $objWriter->writeAttribute('val', $plotGroup->getPlotDirection()); + $objWriter->endElement(); + } + + if (!is_null($plotGroup->getPlotGrouping())) { + $plotGroupingType = $plotGroup->getPlotGrouping(); + $objWriter->startElement('c:grouping'); + $objWriter->writeAttribute('val', $plotGroupingType); + $objWriter->endElement(); + } + + // Get these details before the loop, because we can use the count to check for varyColors + $plotSeriesOrder = $plotGroup->getPlotOrder(); + $plotSeriesCount = count($plotSeriesOrder); + + if (($groupType !== PHPExcel_Chart_DataSeries::TYPE_RADARCHART) && ($groupType !== PHPExcel_Chart_DataSeries::TYPE_STOCKCHART)) { + if ($groupType !== PHPExcel_Chart_DataSeries::TYPE_LINECHART) { + if (($groupType == PHPExcel_Chart_DataSeries::TYPE_PIECHART) || ($groupType == PHPExcel_Chart_DataSeries::TYPE_PIECHART_3D) || ($groupType == PHPExcel_Chart_DataSeries::TYPE_DONUTCHART) || ($plotSeriesCount > 1)) { + $objWriter->startElement('c:varyColors'); + $objWriter->writeAttribute('val', 1); + $objWriter->endElement(); + } else { + $objWriter->startElement('c:varyColors'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + } + } + } + + foreach ($plotSeriesOrder as $plotSeriesIdx => $plotSeriesRef) { + $objWriter->startElement('c:ser'); + + $objWriter->startElement('c:idx'); + $objWriter->writeAttribute('val', $this->_seriesIndex + $plotSeriesIdx); + $objWriter->endElement(); + + $objWriter->startElement('c:order'); + $objWriter->writeAttribute('val', $this->_seriesIndex + $plotSeriesRef); + $objWriter->endElement(); + + if (($groupType == PHPExcel_Chart_DataSeries::TYPE_PIECHART) || ($groupType == PHPExcel_Chart_DataSeries::TYPE_PIECHART_3D) || ($groupType == PHPExcel_Chart_DataSeries::TYPE_DONUTCHART)) { + $objWriter->startElement('c:dPt'); + $objWriter->startElement('c:idx'); + $objWriter->writeAttribute('val', 3); + $objWriter->endElement(); + + $objWriter->startElement('c:bubble3D'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + + $objWriter->startElement('c:spPr'); + $objWriter->startElement('a:solidFill'); + $objWriter->startElement('a:srgbClr'); + $objWriter->writeAttribute('val', 'FF9900'); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + } + + // Labels + $plotSeriesLabel = $plotGroup->getPlotLabelByIndex($plotSeriesRef); + if ($plotSeriesLabel && ($plotSeriesLabel->getPointCount() > 0)) { + $objWriter->startElement('c:tx'); + $objWriter->startElement('c:strRef'); + $this->writePlotSeriesLabel($plotSeriesLabel, $objWriter); + $objWriter->endElement(); + $objWriter->endElement(); + } + + // Formatting for the points + if (($groupType == PHPExcel_Chart_DataSeries::TYPE_LINECHART) || ($groupType == PHPExcel_Chart_DataSeries::TYPE_STOCKCHART)) { + $objWriter->startElement('c:spPr'); + $objWriter->startElement('a:ln'); + $objWriter->writeAttribute('w', 12700); + if ($groupType == PHPExcel_Chart_DataSeries::TYPE_STOCKCHART) { + $objWriter->startElement('a:noFill'); + $objWriter->endElement(); + } + $objWriter->endElement(); + $objWriter->endElement(); + } + + $plotSeriesValues = $plotGroup->getPlotValuesByIndex($plotSeriesRef); + if ($plotSeriesValues) { + $plotSeriesMarker = $plotSeriesValues->getPointMarker(); + if ($plotSeriesMarker) { + $objWriter->startElement('c:marker'); + $objWriter->startElement('c:symbol'); + $objWriter->writeAttribute('val', $plotSeriesMarker); + $objWriter->endElement(); + + if ($plotSeriesMarker !== 'none') { + $objWriter->startElement('c:size'); + $objWriter->writeAttribute('val', 3); + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + } + + if (($groupType === PHPExcel_Chart_DataSeries::TYPE_BARCHART) || ($groupType === PHPExcel_Chart_DataSeries::TYPE_BARCHART_3D) || ($groupType === PHPExcel_Chart_DataSeries::TYPE_BUBBLECHART)) { + $objWriter->startElement('c:invertIfNegative'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + } + + // Category Labels + $plotSeriesCategory = $plotGroup->getPlotCategoryByIndex($plotSeriesRef); + if ($plotSeriesCategory && ($plotSeriesCategory->getPointCount() > 0)) { + $catIsMultiLevelSeries = $catIsMultiLevelSeries || $plotSeriesCategory->isMultiLevelSeries(); + + if (($groupType == PHPExcel_Chart_DataSeries::TYPE_PIECHART) || ($groupType == PHPExcel_Chart_DataSeries::TYPE_PIECHART_3D) || ($groupType == PHPExcel_Chart_DataSeries::TYPE_DONUTCHART)) { + if (!is_null($plotGroup->getPlotStyle())) { + $plotStyle = $plotGroup->getPlotStyle(); + if ($plotStyle) { + $objWriter->startElement('c:explosion'); + $objWriter->writeAttribute('val', 25); + $objWriter->endElement(); + } + } + } + + if (($groupType === PHPExcel_Chart_DataSeries::TYPE_BUBBLECHART) || ($groupType === PHPExcel_Chart_DataSeries::TYPE_SCATTERCHART)) { + $objWriter->startElement('c:xVal'); + } else { + $objWriter->startElement('c:cat'); + } + + $this->writePlotSeriesValues($plotSeriesCategory, $objWriter, $groupType, 'str', $pSheet); + $objWriter->endElement(); + } + + // Values + if ($plotSeriesValues) { + $valIsMultiLevelSeries = $valIsMultiLevelSeries || $plotSeriesValues->isMultiLevelSeries(); + + if (($groupType === PHPExcel_Chart_DataSeries::TYPE_BUBBLECHART) || ($groupType === PHPExcel_Chart_DataSeries::TYPE_SCATTERCHART)) { + $objWriter->startElement('c:yVal'); + } else { + $objWriter->startElement('c:val'); + } + + $this->writePlotSeriesValues($plotSeriesValues, $objWriter, $groupType, 'num', $pSheet); + $objWriter->endElement(); + } + + if ($groupType === PHPExcel_Chart_DataSeries::TYPE_BUBBLECHART) { + $this->writeBubbles($plotSeriesValues, $objWriter, $pSheet); + } + + $objWriter->endElement(); + } + + $this->_seriesIndex += $plotSeriesIdx + 1; + } + + /** + * Write Plot Series Label + * + * @param PHPExcel_Chart_DataSeriesValues $plotSeriesLabel + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * + * @throws PHPExcel_Writer_Exception + */ + private function writePlotSeriesLabel($plotSeriesLabel, $objWriter) + { + if (is_null($plotSeriesLabel)) { + return; + } + + $objWriter->startElement('c:f'); + $objWriter->writeRawData($plotSeriesLabel->getDataSource()); + $objWriter->endElement(); + + $objWriter->startElement('c:strCache'); + $objWriter->startElement('c:ptCount'); + $objWriter->writeAttribute('val', $plotSeriesLabel->getPointCount()); + $objWriter->endElement(); + + foreach ($plotSeriesLabel->getDataValues() as $plotLabelKey => $plotLabelValue) { + $objWriter->startElement('c:pt'); + $objWriter->writeAttribute('idx', $plotLabelKey); + + $objWriter->startElement('c:v'); + $objWriter->writeRawData($plotLabelValue); + $objWriter->endElement(); + $objWriter->endElement(); + } + $objWriter->endElement(); + } + + /** + * Write Plot Series Values + * + * @param PHPExcel_Chart_DataSeriesValues $plotSeriesValues + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param string $groupType Type of plot for dataseries + * @param string $dataType Datatype of series values + * @param PHPExcel_Worksheet $pSheet + * + * @throws PHPExcel_Writer_Exception + */ + private function writePlotSeriesValues($plotSeriesValues, $objWriter, $groupType, $dataType = 'str', PHPExcel_Worksheet $pSheet) + { + if (is_null($plotSeriesValues)) { + return; + } + + if ($plotSeriesValues->isMultiLevelSeries()) { + $levelCount = $plotSeriesValues->multiLevelCount(); + + $objWriter->startElement('c:multiLvlStrRef'); + + $objWriter->startElement('c:f'); + $objWriter->writeRawData($plotSeriesValues->getDataSource()); + $objWriter->endElement(); + + $objWriter->startElement('c:multiLvlStrCache'); + + $objWriter->startElement('c:ptCount'); + $objWriter->writeAttribute('val', $plotSeriesValues->getPointCount()); + $objWriter->endElement(); + + for ($level = 0; $level < $levelCount; ++$level) { + $objWriter->startElement('c:lvl'); + + foreach ($plotSeriesValues->getDataValues() as $plotSeriesKey => $plotSeriesValue) { + if (isset($plotSeriesValue[$level])) { + $objWriter->startElement('c:pt'); + $objWriter->writeAttribute('idx', $plotSeriesKey); + + $objWriter->startElement('c:v'); + $objWriter->writeRawData($plotSeriesValue[$level]); + $objWriter->endElement(); + $objWriter->endElement(); + } + } + + $objWriter->endElement(); + } + + $objWriter->endElement(); + + $objWriter->endElement(); + } else { + $objWriter->startElement('c:' . $dataType . 'Ref'); + + $objWriter->startElement('c:f'); + $objWriter->writeRawData($plotSeriesValues->getDataSource()); + $objWriter->endElement(); + + $objWriter->startElement('c:' . $dataType . 'Cache'); + + if (($groupType != PHPExcel_Chart_DataSeries::TYPE_PIECHART) && ($groupType != PHPExcel_Chart_DataSeries::TYPE_PIECHART_3D) && ($groupType != PHPExcel_Chart_DataSeries::TYPE_DONUTCHART)) { + if (($plotSeriesValues->getFormatCode() !== null) && ($plotSeriesValues->getFormatCode() !== '')) { + $objWriter->startElement('c:formatCode'); + $objWriter->writeRawData($plotSeriesValues->getFormatCode()); + $objWriter->endElement(); + } + } + + $objWriter->startElement('c:ptCount'); + $objWriter->writeAttribute('val', $plotSeriesValues->getPointCount()); + $objWriter->endElement(); + + $dataValues = $plotSeriesValues->getDataValues(); + if (!empty($dataValues)) { + if (is_array($dataValues)) { + foreach ($dataValues as $plotSeriesKey => $plotSeriesValue) { + $objWriter->startElement('c:pt'); + $objWriter->writeAttribute('idx', $plotSeriesKey); + + $objWriter->startElement('c:v'); + $objWriter->writeRawData($plotSeriesValue); + $objWriter->endElement(); + $objWriter->endElement(); + } + } + } + + $objWriter->endElement(); + + $objWriter->endElement(); + } + } + + /** + * Write Bubble Chart Details + * + * @param PHPExcel_Chart_DataSeriesValues $plotSeriesValues + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * + * @throws PHPExcel_Writer_Exception + */ + private function writeBubbles($plotSeriesValues, $objWriter, PHPExcel_Worksheet $pSheet) + { + if (is_null($plotSeriesValues)) { + return; + } + + $objWriter->startElement('c:bubbleSize'); + $objWriter->startElement('c:numLit'); + + $objWriter->startElement('c:formatCode'); + $objWriter->writeRawData('General'); + $objWriter->endElement(); + + $objWriter->startElement('c:ptCount'); + $objWriter->writeAttribute('val', $plotSeriesValues->getPointCount()); + $objWriter->endElement(); + + $dataValues = $plotSeriesValues->getDataValues(); + if (!empty($dataValues)) { + if (is_array($dataValues)) { + foreach ($dataValues as $plotSeriesKey => $plotSeriesValue) { + $objWriter->startElement('c:pt'); + $objWriter->writeAttribute('idx', $plotSeriesKey); + $objWriter->startElement('c:v'); + $objWriter->writeRawData(1); + $objWriter->endElement(); + $objWriter->endElement(); + } + } + } + + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->startElement('c:bubble3D'); + $objWriter->writeAttribute('val', 0); + $objWriter->endElement(); + } + + /** + * Write Layout + * + * @param PHPExcel_Chart_Layout $layout + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * + * @throws PHPExcel_Writer_Exception + */ + private function writeLayout(PHPExcel_Chart_Layout $layout = null, $objWriter) + { + $objWriter->startElement('c:layout'); + + if (!is_null($layout)) { + $objWriter->startElement('c:manualLayout'); + + $layoutTarget = $layout->getLayoutTarget(); + if (!is_null($layoutTarget)) { + $objWriter->startElement('c:layoutTarget'); + $objWriter->writeAttribute('val', $layoutTarget); + $objWriter->endElement(); + } + + $xMode = $layout->getXMode(); + if (!is_null($xMode)) { + $objWriter->startElement('c:xMode'); + $objWriter->writeAttribute('val', $xMode); + $objWriter->endElement(); + } + + $yMode = $layout->getYMode(); + if (!is_null($yMode)) { + $objWriter->startElement('c:yMode'); + $objWriter->writeAttribute('val', $yMode); + $objWriter->endElement(); + } + + $x = $layout->getXPosition(); + if (!is_null($x)) { + $objWriter->startElement('c:x'); + $objWriter->writeAttribute('val', $x); + $objWriter->endElement(); + } + + $y = $layout->getYPosition(); + if (!is_null($y)) { + $objWriter->startElement('c:y'); + $objWriter->writeAttribute('val', $y); + $objWriter->endElement(); + } + + $w = $layout->getWidth(); + if (!is_null($w)) { + $objWriter->startElement('c:w'); + $objWriter->writeAttribute('val', $w); + $objWriter->endElement(); + } + + $h = $layout->getHeight(); + if (!is_null($h)) { + $objWriter->startElement('c:h'); + $objWriter->writeAttribute('val', $h); + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + + /** + * Write Alternate Content block + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * + * @throws PHPExcel_Writer_Exception + */ + private function writeAlternateContent($objWriter) + { + $objWriter->startElement('mc:AlternateContent'); + $objWriter->writeAttribute('xmlns:mc', 'http://schemas.openxmlformats.org/markup-compatibility/2006'); + + $objWriter->startElement('mc:Choice'); + $objWriter->writeAttribute('xmlns:c14', 'http://schemas.microsoft.com/office/drawing/2007/8/2/chart'); + $objWriter->writeAttribute('Requires', 'c14'); + + $objWriter->startElement('c14:style'); + $objWriter->writeAttribute('val', '102'); + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->startElement('mc:Fallback'); + $objWriter->startElement('c:style'); + $objWriter->writeAttribute('val', '2'); + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write Printer Settings + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * + * @throws PHPExcel_Writer_Exception + */ + private function writePrintSettings($objWriter) + { + $objWriter->startElement('c:printSettings'); + + $objWriter->startElement('c:headerFooter'); + $objWriter->endElement(); + + $objWriter->startElement('c:pageMargins'); + $objWriter->writeAttribute('footer', 0.3); + $objWriter->writeAttribute('header', 0.3); + $objWriter->writeAttribute('r', 0.7); + $objWriter->writeAttribute('l', 0.7); + $objWriter->writeAttribute('t', 0.75); + $objWriter->writeAttribute('b', 0.75); + $objWriter->endElement(); + + $objWriter->startElement('c:pageSetup'); + $objWriter->writeAttribute('orientation', "portrait"); + $objWriter->endElement(); + + $objWriter->endElement(); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Comments.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Comments.php new file mode 100644 index 0000000..7139f6c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Comments.php @@ -0,0 +1,260 @@ +<?php + +/** + * PHPExcel_Writer_Excel2007_Comments + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_Excel2007_Comments extends PHPExcel_Writer_Excel2007_WriterPart +{ + /** + * Write comments to XML format + * + * @param PHPExcel_Worksheet $pWorksheet + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeComments(PHPExcel_Worksheet $pWorksheet = null) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Comments cache + $comments = $pWorksheet->getComments(); + + // Authors cache + $authors = array(); + $authorId = 0; + foreach ($comments as $comment) { + if (!isset($authors[$comment->getAuthor()])) { + $authors[$comment->getAuthor()] = $authorId++; + } + } + + // comments + $objWriter->startElement('comments'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'); + + // Loop through authors + $objWriter->startElement('authors'); + foreach ($authors as $author => $index) { + $objWriter->writeElement('author', $author); + } + $objWriter->endElement(); + + // Loop through comments + $objWriter->startElement('commentList'); + foreach ($comments as $key => $value) { + $this->writeComment($objWriter, $key, $value, $authors); + } + $objWriter->endElement(); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write comment to XML format + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param string $pCellReference Cell reference + * @param PHPExcel_Comment $pComment Comment + * @param array $pAuthors Array of authors + * @throws PHPExcel_Writer_Exception + */ + private function writeComment(PHPExcel_Shared_XMLWriter $objWriter = null, $pCellReference = 'A1', PHPExcel_Comment $pComment = null, $pAuthors = null) + { + // comment + $objWriter->startElement('comment'); + $objWriter->writeAttribute('ref', $pCellReference); + $objWriter->writeAttribute('authorId', $pAuthors[$pComment->getAuthor()]); + + // text + $objWriter->startElement('text'); + $this->getParentWriter()->getWriterPart('stringtable')->writeRichText($objWriter, $pComment->getText()); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write VML comments to XML format + * + * @param PHPExcel_Worksheet $pWorksheet + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeVMLComments(PHPExcel_Worksheet $pWorksheet = null) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Comments cache + $comments = $pWorksheet->getComments(); + + // xml + $objWriter->startElement('xml'); + $objWriter->writeAttribute('xmlns:v', 'urn:schemas-microsoft-com:vml'); + $objWriter->writeAttribute('xmlns:o', 'urn:schemas-microsoft-com:office:office'); + $objWriter->writeAttribute('xmlns:x', 'urn:schemas-microsoft-com:office:excel'); + + // o:shapelayout + $objWriter->startElement('o:shapelayout'); + $objWriter->writeAttribute('v:ext', 'edit'); + + // o:idmap + $objWriter->startElement('o:idmap'); + $objWriter->writeAttribute('v:ext', 'edit'); + $objWriter->writeAttribute('data', '1'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // v:shapetype + $objWriter->startElement('v:shapetype'); + $objWriter->writeAttribute('id', '_x0000_t202'); + $objWriter->writeAttribute('coordsize', '21600,21600'); + $objWriter->writeAttribute('o:spt', '202'); + $objWriter->writeAttribute('path', 'm,l,21600r21600,l21600,xe'); + + // v:stroke + $objWriter->startElement('v:stroke'); + $objWriter->writeAttribute('joinstyle', 'miter'); + $objWriter->endElement(); + + // v:path + $objWriter->startElement('v:path'); + $objWriter->writeAttribute('gradientshapeok', 't'); + $objWriter->writeAttribute('o:connecttype', 'rect'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // Loop through comments + foreach ($comments as $key => $value) { + $this->writeVMLComment($objWriter, $key, $value); + } + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write VML comment to XML format + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param string $pCellReference Cell reference + * @param PHPExcel_Comment $pComment Comment + * @throws PHPExcel_Writer_Exception + */ + private function writeVMLComment(PHPExcel_Shared_XMLWriter $objWriter = null, $pCellReference = 'A1', PHPExcel_Comment $pComment = null) + { + // Metadata + list($column, $row) = PHPExcel_Cell::coordinateFromString($pCellReference); + $column = PHPExcel_Cell::columnIndexFromString($column); + $id = 1024 + $column + $row; + $id = substr($id, 0, 4); + + // v:shape + $objWriter->startElement('v:shape'); + $objWriter->writeAttribute('id', '_x0000_s' . $id); + $objWriter->writeAttribute('type', '#_x0000_t202'); + $objWriter->writeAttribute('style', 'position:absolute;margin-left:' . $pComment->getMarginLeft() . ';margin-top:' . $pComment->getMarginTop() . ';width:' . $pComment->getWidth() . ';height:' . $pComment->getHeight() . ';z-index:1;visibility:' . ($pComment->getVisible() ? 'visible' : 'hidden')); + $objWriter->writeAttribute('fillcolor', '#' . $pComment->getFillColor()->getRGB()); + $objWriter->writeAttribute('o:insetmode', 'auto'); + + // v:fill + $objWriter->startElement('v:fill'); + $objWriter->writeAttribute('color2', '#' . $pComment->getFillColor()->getRGB()); + $objWriter->endElement(); + + // v:shadow + $objWriter->startElement('v:shadow'); + $objWriter->writeAttribute('on', 't'); + $objWriter->writeAttribute('color', 'black'); + $objWriter->writeAttribute('obscured', 't'); + $objWriter->endElement(); + + // v:path + $objWriter->startElement('v:path'); + $objWriter->writeAttribute('o:connecttype', 'none'); + $objWriter->endElement(); + + // v:textbox + $objWriter->startElement('v:textbox'); + $objWriter->writeAttribute('style', 'mso-direction-alt:auto'); + + // div + $objWriter->startElement('div'); + $objWriter->writeAttribute('style', 'text-align:left'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // x:ClientData + $objWriter->startElement('x:ClientData'); + $objWriter->writeAttribute('ObjectType', 'Note'); + + // x:MoveWithCells + $objWriter->writeElement('x:MoveWithCells', ''); + + // x:SizeWithCells + $objWriter->writeElement('x:SizeWithCells', ''); + + // x:Anchor + //$objWriter->writeElement('x:Anchor', $column . ', 15, ' . ($row - 2) . ', 10, ' . ($column + 4) . ', 15, ' . ($row + 5) . ', 18'); + + // x:AutoFill + $objWriter->writeElement('x:AutoFill', 'False'); + + // x:Row + $objWriter->writeElement('x:Row', ($row - 1)); + + // x:Column + $objWriter->writeElement('x:Column', ($column - 1)); + + $objWriter->endElement(); + + $objWriter->endElement(); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/ContentTypes.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/ContentTypes.php new file mode 100644 index 0000000..0d91189 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/ContentTypes.php @@ -0,0 +1,240 @@ +<?php + +/** + * PHPExcel_Writer_Excel2007_ContentTypes + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_Excel2007_ContentTypes extends PHPExcel_Writer_Excel2007_WriterPart +{ + /** + * Write content types to XML format + * + * @param PHPExcel $pPHPExcel + * @param boolean $includeCharts Flag indicating if we should include drawing details for charts + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeContentTypes(PHPExcel $pPHPExcel = null, $includeCharts = false) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Types + $objWriter->startElement('Types'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/content-types'); + + // Theme + $this->writeOverrideContentType($objWriter, '/xl/theme/theme1.xml', 'application/vnd.openxmlformats-officedocument.theme+xml'); + + // Styles + $this->writeOverrideContentType($objWriter, '/xl/styles.xml', 'application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml'); + + // Rels + $this->writeDefaultContentType($objWriter, 'rels', 'application/vnd.openxmlformats-package.relationships+xml'); + + // XML + $this->writeDefaultContentType($objWriter, 'xml', 'application/xml'); + + // VML + $this->writeDefaultContentType($objWriter, 'vml', 'application/vnd.openxmlformats-officedocument.vmlDrawing'); + + // Workbook + if ($pPHPExcel->hasMacros()) { //Macros in workbook ? + // Yes : not standard content but "macroEnabled" + $this->writeOverrideContentType($objWriter, '/xl/workbook.xml', 'application/vnd.ms-excel.sheet.macroEnabled.main+xml'); + //... and define a new type for the VBA project + $this->writeDefaultContentType($objWriter, 'bin', 'application/vnd.ms-office.vbaProject'); + if ($pPHPExcel->hasMacrosCertificate()) {// signed macros ? + // Yes : add needed information + $this->writeOverrideContentType($objWriter, '/xl/vbaProjectSignature.bin', 'application/vnd.ms-office.vbaProjectSignature'); + } + } else {// no macros in workbook, so standard type + $this->writeOverrideContentType($objWriter, '/xl/workbook.xml', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml'); + } + + // DocProps + $this->writeOverrideContentType($objWriter, '/docProps/app.xml', 'application/vnd.openxmlformats-officedocument.extended-properties+xml'); + + $this->writeOverrideContentType($objWriter, '/docProps/core.xml', 'application/vnd.openxmlformats-package.core-properties+xml'); + + $customPropertyList = $pPHPExcel->getProperties()->getCustomProperties(); + if (!empty($customPropertyList)) { + $this->writeOverrideContentType($objWriter, '/docProps/custom.xml', 'application/vnd.openxmlformats-officedocument.custom-properties+xml'); + } + + // Worksheets + $sheetCount = $pPHPExcel->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + $this->writeOverrideContentType($objWriter, '/xl/worksheets/sheet' . ($i + 1) . '.xml', 'application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml'); + } + + // Shared strings + $this->writeOverrideContentType($objWriter, '/xl/sharedStrings.xml', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml'); + + // Add worksheet relationship content types + $chart = 1; + for ($i = 0; $i < $sheetCount; ++$i) { + $drawings = $pPHPExcel->getSheet($i)->getDrawingCollection(); + $drawingCount = count($drawings); + $chartCount = ($includeCharts) ? $pPHPExcel->getSheet($i)->getChartCount() : 0; + + // We need a drawing relationship for the worksheet if we have either drawings or charts + if (($drawingCount > 0) || ($chartCount > 0)) { + $this->writeOverrideContentType($objWriter, '/xl/drawings/drawing' . ($i + 1) . '.xml', 'application/vnd.openxmlformats-officedocument.drawing+xml'); + } + + // If we have charts, then we need a chart relationship for every individual chart + if ($chartCount > 0) { + for ($c = 0; $c < $chartCount; ++$c) { + $this->writeOverrideContentType($objWriter, '/xl/charts/chart' . $chart++ . '.xml', 'application/vnd.openxmlformats-officedocument.drawingml.chart+xml'); + } + } + } + + // Comments + for ($i = 0; $i < $sheetCount; ++$i) { + if (count($pPHPExcel->getSheet($i)->getComments()) > 0) { + $this->writeOverrideContentType($objWriter, '/xl/comments' . ($i + 1) . '.xml', 'application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml'); + } + } + + // Add media content-types + $aMediaContentTypes = array(); + $mediaCount = $this->getParentWriter()->getDrawingHashTable()->count(); + for ($i = 0; $i < $mediaCount; ++$i) { + $extension = ''; + $mimeType = ''; + + if ($this->getParentWriter()->getDrawingHashTable()->getByIndex($i) instanceof PHPExcel_Worksheet_Drawing) { + $extension = strtolower($this->getParentWriter()->getDrawingHashTable()->getByIndex($i)->getExtension()); + $mimeType = $this->getImageMimeType($this->getParentWriter()->getDrawingHashTable()->getByIndex($i)->getPath()); + } elseif ($this->getParentWriter()->getDrawingHashTable()->getByIndex($i) instanceof PHPExcel_Worksheet_MemoryDrawing) { + $extension = strtolower($this->getParentWriter()->getDrawingHashTable()->getByIndex($i)->getMimeType()); + $extension = explode('/', $extension); + $extension = $extension[1]; + + $mimeType = $this->getParentWriter()->getDrawingHashTable()->getByIndex($i)->getMimeType(); + } + + if (!isset( $aMediaContentTypes[$extension])) { + $aMediaContentTypes[$extension] = $mimeType; + + $this->writeDefaultContentType($objWriter, $extension, $mimeType); + } + } + if ($pPHPExcel->hasRibbonBinObjects()) { + // Some additional objects in the ribbon ? + // we need to write "Extension" but not already write for media content + $tabRibbonTypes=array_diff($pPHPExcel->getRibbonBinObjects('types'), array_keys($aMediaContentTypes)); + foreach ($tabRibbonTypes as $aRibbonType) { + $mimeType='image/.'.$aRibbonType;//we wrote $mimeType like customUI Editor + $this->writeDefaultContentType($objWriter, $aRibbonType, $mimeType); + } + } + $sheetCount = $pPHPExcel->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + if (count($pPHPExcel->getSheet()->getHeaderFooter()->getImages()) > 0) { + foreach ($pPHPExcel->getSheet()->getHeaderFooter()->getImages() as $image) { + if (!isset( $aMediaContentTypes[strtolower($image->getExtension())])) { + $aMediaContentTypes[strtolower($image->getExtension())] = $this->getImageMimeType($image->getPath()); + + $this->writeDefaultContentType($objWriter, strtolower($image->getExtension()), $aMediaContentTypes[strtolower($image->getExtension())]); + } + } + } + } + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Get image mime type + * + * @param string $pFile Filename + * @return string Mime Type + * @throws PHPExcel_Writer_Exception + */ + private function getImageMimeType($pFile = '') + { + if (PHPExcel_Shared_File::file_exists($pFile)) { + $image = getimagesize($pFile); + return image_type_to_mime_type($image[2]); + } else { + throw new PHPExcel_Writer_Exception("File $pFile does not exist"); + } + } + + /** + * Write Default content type + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param string $pPartname Part name + * @param string $pContentType Content type + * @throws PHPExcel_Writer_Exception + */ + private function writeDefaultContentType(PHPExcel_Shared_XMLWriter $objWriter = null, $pPartname = '', $pContentType = '') + { + if ($pPartname != '' && $pContentType != '') { + // Write content type + $objWriter->startElement('Default'); + $objWriter->writeAttribute('Extension', $pPartname); + $objWriter->writeAttribute('ContentType', $pContentType); + $objWriter->endElement(); + } else { + throw new PHPExcel_Writer_Exception("Invalid parameters passed."); + } + } + + /** + * Write Override content type + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param string $pPartname Part name + * @param string $pContentType Content type + * @throws PHPExcel_Writer_Exception + */ + private function writeOverrideContentType(PHPExcel_Shared_XMLWriter $objWriter = null, $pPartname = '', $pContentType = '') + { + if ($pPartname != '' && $pContentType != '') { + // Write content type + $objWriter->startElement('Override'); + $objWriter->writeAttribute('PartName', $pPartname); + $objWriter->writeAttribute('ContentType', $pContentType); + $objWriter->endElement(); + } else { + throw new PHPExcel_Writer_Exception("Invalid parameters passed."); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/DocProps.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/DocProps.php new file mode 100644 index 0000000..fef3d93 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/DocProps.php @@ -0,0 +1,262 @@ +<?php + +/** + * PHPExcel_Writer_Excel2007_DocProps + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_Excel2007_DocProps extends PHPExcel_Writer_Excel2007_WriterPart +{ + /** + * Write docProps/app.xml to XML format + * + * @param PHPExcel $pPHPExcel + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeDocPropsApp(PHPExcel $pPHPExcel = null) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Properties + $objWriter->startElement('Properties'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/officeDocument/2006/extended-properties'); + $objWriter->writeAttribute('xmlns:vt', 'http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes'); + + // Application + $objWriter->writeElement('Application', 'Microsoft Excel'); + + // DocSecurity + $objWriter->writeElement('DocSecurity', '0'); + + // ScaleCrop + $objWriter->writeElement('ScaleCrop', 'false'); + + // HeadingPairs + $objWriter->startElement('HeadingPairs'); + + // Vector + $objWriter->startElement('vt:vector'); + $objWriter->writeAttribute('size', '2'); + $objWriter->writeAttribute('baseType', 'variant'); + + // Variant + $objWriter->startElement('vt:variant'); + $objWriter->writeElement('vt:lpstr', 'Worksheets'); + $objWriter->endElement(); + + // Variant + $objWriter->startElement('vt:variant'); + $objWriter->writeElement('vt:i4', $pPHPExcel->getSheetCount()); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // TitlesOfParts + $objWriter->startElement('TitlesOfParts'); + + // Vector + $objWriter->startElement('vt:vector'); + $objWriter->writeAttribute('size', $pPHPExcel->getSheetCount()); + $objWriter->writeAttribute('baseType', 'lpstr'); + + $sheetCount = $pPHPExcel->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + $objWriter->writeElement('vt:lpstr', $pPHPExcel->getSheet($i)->getTitle()); + } + + $objWriter->endElement(); + + $objWriter->endElement(); + + // Company + $objWriter->writeElement('Company', $pPHPExcel->getProperties()->getCompany()); + + // Company + $objWriter->writeElement('Manager', $pPHPExcel->getProperties()->getManager()); + + // LinksUpToDate + $objWriter->writeElement('LinksUpToDate', 'false'); + + // SharedDoc + $objWriter->writeElement('SharedDoc', 'false'); + + // HyperlinksChanged + $objWriter->writeElement('HyperlinksChanged', 'false'); + + // AppVersion + $objWriter->writeElement('AppVersion', '12.0000'); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write docProps/core.xml to XML format + * + * @param PHPExcel $pPHPExcel + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeDocPropsCore(PHPExcel $pPHPExcel = null) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // cp:coreProperties + $objWriter->startElement('cp:coreProperties'); + $objWriter->writeAttribute('xmlns:cp', 'http://schemas.openxmlformats.org/package/2006/metadata/core-properties'); + $objWriter->writeAttribute('xmlns:dc', 'http://purl.org/dc/elements/1.1/'); + $objWriter->writeAttribute('xmlns:dcterms', 'http://purl.org/dc/terms/'); + $objWriter->writeAttribute('xmlns:dcmitype', 'http://purl.org/dc/dcmitype/'); + $objWriter->writeAttribute('xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance'); + + // dc:creator + $objWriter->writeElement('dc:creator', $pPHPExcel->getProperties()->getCreator()); + + // cp:lastModifiedBy + $objWriter->writeElement('cp:lastModifiedBy', $pPHPExcel->getProperties()->getLastModifiedBy()); + + // dcterms:created + $objWriter->startElement('dcterms:created'); + $objWriter->writeAttribute('xsi:type', 'dcterms:W3CDTF'); + $objWriter->writeRawData(date(DATE_W3C, $pPHPExcel->getProperties()->getCreated())); + $objWriter->endElement(); + + // dcterms:modified + $objWriter->startElement('dcterms:modified'); + $objWriter->writeAttribute('xsi:type', 'dcterms:W3CDTF'); + $objWriter->writeRawData(date(DATE_W3C, $pPHPExcel->getProperties()->getModified())); + $objWriter->endElement(); + + // dc:title + $objWriter->writeElement('dc:title', $pPHPExcel->getProperties()->getTitle()); + + // dc:description + $objWriter->writeElement('dc:description', $pPHPExcel->getProperties()->getDescription()); + + // dc:subject + $objWriter->writeElement('dc:subject', $pPHPExcel->getProperties()->getSubject()); + + // cp:keywords + $objWriter->writeElement('cp:keywords', $pPHPExcel->getProperties()->getKeywords()); + + // cp:category + $objWriter->writeElement('cp:category', $pPHPExcel->getProperties()->getCategory()); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write docProps/custom.xml to XML format + * + * @param PHPExcel $pPHPExcel + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeDocPropsCustom(PHPExcel $pPHPExcel = null) + { + $customPropertyList = $pPHPExcel->getProperties()->getCustomProperties(); + if (empty($customPropertyList)) { + return; + } + + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // cp:coreProperties + $objWriter->startElement('Properties'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/officeDocument/2006/custom-properties'); + $objWriter->writeAttribute('xmlns:vt', 'http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes'); + + + foreach ($customPropertyList as $key => $customProperty) { + $propertyValue = $pPHPExcel->getProperties()->getCustomPropertyValue($customProperty); + $propertyType = $pPHPExcel->getProperties()->getCustomPropertyType($customProperty); + + $objWriter->startElement('property'); + $objWriter->writeAttribute('fmtid', '{D5CDD505-2E9C-101B-9397-08002B2CF9AE}'); + $objWriter->writeAttribute('pid', $key+2); + $objWriter->writeAttribute('name', $customProperty); + + switch ($propertyType) { + case 'i': + $objWriter->writeElement('vt:i4', $propertyValue); + break; + case 'f': + $objWriter->writeElement('vt:r8', $propertyValue); + break; + case 'b': + $objWriter->writeElement('vt:bool', ($propertyValue) ? 'true' : 'false'); + break; + case 'd': + $objWriter->startElement('vt:filetime'); + $objWriter->writeRawData(date(DATE_W3C, $propertyValue)); + $objWriter->endElement(); + break; + default: + $objWriter->writeElement('vt:lpwstr', $propertyValue); + break; + } + + $objWriter->endElement(); + } + + + $objWriter->endElement(); + + return $objWriter->getData(); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Drawing.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Drawing.php new file mode 100644 index 0000000..2814388 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Drawing.php @@ -0,0 +1,589 @@ +<?php + +/** + * PHPExcel_Writer_Excel2007_Drawing + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_Excel2007_Drawing extends PHPExcel_Writer_Excel2007_WriterPart +{ + /** + * Write drawings to XML format + * + * @param PHPExcel_Worksheet $pWorksheet + * @param int &$chartRef Chart ID + * @param boolean $includeCharts Flag indicating if we should include drawing details for charts + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeDrawings(PHPExcel_Worksheet $pWorksheet = null, &$chartRef, $includeCharts = false) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // xdr:wsDr + $objWriter->startElement('xdr:wsDr'); + $objWriter->writeAttribute('xmlns:xdr', 'http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing'); + $objWriter->writeAttribute('xmlns:a', 'http://schemas.openxmlformats.org/drawingml/2006/main'); + + // Loop through images and write drawings + $i = 1; + $iterator = $pWorksheet->getDrawingCollection()->getIterator(); + while ($iterator->valid()) { + $this->writeDrawing($objWriter, $iterator->current(), $i); + + $iterator->next(); + ++$i; + } + + if ($includeCharts) { + $chartCount = $pWorksheet->getChartCount(); + // Loop through charts and write the chart position + if ($chartCount > 0) { + for ($c = 0; $c < $chartCount; ++$c) { + $this->writeChart($objWriter, $pWorksheet->getChartByIndex($c), $c+$i); + } + } + } + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write drawings to XML format + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Chart $pChart + * @param int $pRelationId + * @throws PHPExcel_Writer_Exception + */ + public function writeChart(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Chart $pChart = null, $pRelationId = -1) + { + $tl = $pChart->getTopLeftPosition(); + $tl['colRow'] = PHPExcel_Cell::coordinateFromString($tl['cell']); + $br = $pChart->getBottomRightPosition(); + $br['colRow'] = PHPExcel_Cell::coordinateFromString($br['cell']); + + $objWriter->startElement('xdr:twoCellAnchor'); + + $objWriter->startElement('xdr:from'); + $objWriter->writeElement('xdr:col', PHPExcel_Cell::columnIndexFromString($tl['colRow'][0]) - 1); + $objWriter->writeElement('xdr:colOff', PHPExcel_Shared_Drawing::pixelsToEMU($tl['xOffset'])); + $objWriter->writeElement('xdr:row', $tl['colRow'][1] - 1); + $objWriter->writeElement('xdr:rowOff', PHPExcel_Shared_Drawing::pixelsToEMU($tl['yOffset'])); + $objWriter->endElement(); + $objWriter->startElement('xdr:to'); + $objWriter->writeElement('xdr:col', PHPExcel_Cell::columnIndexFromString($br['colRow'][0]) - 1); + $objWriter->writeElement('xdr:colOff', PHPExcel_Shared_Drawing::pixelsToEMU($br['xOffset'])); + $objWriter->writeElement('xdr:row', $br['colRow'][1] - 1); + $objWriter->writeElement('xdr:rowOff', PHPExcel_Shared_Drawing::pixelsToEMU($br['yOffset'])); + $objWriter->endElement(); + + $objWriter->startElement('xdr:graphicFrame'); + $objWriter->writeAttribute('macro', ''); + $objWriter->startElement('xdr:nvGraphicFramePr'); + $objWriter->startElement('xdr:cNvPr'); + $objWriter->writeAttribute('name', 'Chart '.$pRelationId); + $objWriter->writeAttribute('id', 1025 * $pRelationId); + $objWriter->endElement(); + $objWriter->startElement('xdr:cNvGraphicFramePr'); + $objWriter->startElement('a:graphicFrameLocks'); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->startElement('xdr:xfrm'); + $objWriter->startElement('a:off'); + $objWriter->writeAttribute('x', '0'); + $objWriter->writeAttribute('y', '0'); + $objWriter->endElement(); + $objWriter->startElement('a:ext'); + $objWriter->writeAttribute('cx', '0'); + $objWriter->writeAttribute('cy', '0'); + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->startElement('a:graphic'); + $objWriter->startElement('a:graphicData'); + $objWriter->writeAttribute('uri', 'http://schemas.openxmlformats.org/drawingml/2006/chart'); + $objWriter->startElement('c:chart'); + $objWriter->writeAttribute('xmlns:c', 'http://schemas.openxmlformats.org/drawingml/2006/chart'); + $objWriter->writeAttribute('xmlns:r', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships'); + $objWriter->writeAttribute('r:id', 'rId'.$pRelationId); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->startElement('xdr:clientData'); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write drawings to XML format + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet_BaseDrawing $pDrawing + * @param int $pRelationId + * @throws PHPExcel_Writer_Exception + */ + public function writeDrawing(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet_BaseDrawing $pDrawing = null, $pRelationId = -1) + { + if ($pRelationId >= 0) { + // xdr:oneCellAnchor + $objWriter->startElement('xdr:oneCellAnchor'); + // Image location + $aCoordinates = PHPExcel_Cell::coordinateFromString($pDrawing->getCoordinates()); + $aCoordinates[0] = PHPExcel_Cell::columnIndexFromString($aCoordinates[0]); + + // xdr:from + $objWriter->startElement('xdr:from'); + $objWriter->writeElement('xdr:col', $aCoordinates[0] - 1); + $objWriter->writeElement('xdr:colOff', PHPExcel_Shared_Drawing::pixelsToEMU($pDrawing->getOffsetX())); + $objWriter->writeElement('xdr:row', $aCoordinates[1] - 1); + $objWriter->writeElement('xdr:rowOff', PHPExcel_Shared_Drawing::pixelsToEMU($pDrawing->getOffsetY())); + $objWriter->endElement(); + + // xdr:ext + $objWriter->startElement('xdr:ext'); + $objWriter->writeAttribute('cx', PHPExcel_Shared_Drawing::pixelsToEMU($pDrawing->getWidth())); + $objWriter->writeAttribute('cy', PHPExcel_Shared_Drawing::pixelsToEMU($pDrawing->getHeight())); + $objWriter->endElement(); + + // xdr:pic + $objWriter->startElement('xdr:pic'); + + // xdr:nvPicPr + $objWriter->startElement('xdr:nvPicPr'); + + // xdr:cNvPr + $objWriter->startElement('xdr:cNvPr'); + $objWriter->writeAttribute('id', $pRelationId); + $objWriter->writeAttribute('name', $pDrawing->getName()); + $objWriter->writeAttribute('descr', $pDrawing->getDescription()); + $objWriter->endElement(); + + // xdr:cNvPicPr + $objWriter->startElement('xdr:cNvPicPr'); + + // a:picLocks + $objWriter->startElement('a:picLocks'); + $objWriter->writeAttribute('noChangeAspect', '1'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // xdr:blipFill + $objWriter->startElement('xdr:blipFill'); + + // a:blip + $objWriter->startElement('a:blip'); + $objWriter->writeAttribute('xmlns:r', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships'); + $objWriter->writeAttribute('r:embed', 'rId' . $pRelationId); + $objWriter->endElement(); + + // a:stretch + $objWriter->startElement('a:stretch'); + $objWriter->writeElement('a:fillRect', null); + $objWriter->endElement(); + + $objWriter->endElement(); + + // xdr:spPr + $objWriter->startElement('xdr:spPr'); + + // a:xfrm + $objWriter->startElement('a:xfrm'); + $objWriter->writeAttribute('rot', PHPExcel_Shared_Drawing::degreesToAngle($pDrawing->getRotation())); + $objWriter->endElement(); + + // a:prstGeom + $objWriter->startElement('a:prstGeom'); + $objWriter->writeAttribute('prst', 'rect'); + + // a:avLst + $objWriter->writeElement('a:avLst', null); + + $objWriter->endElement(); + +// // a:solidFill +// $objWriter->startElement('a:solidFill'); + +// // a:srgbClr +// $objWriter->startElement('a:srgbClr'); +// $objWriter->writeAttribute('val', 'FFFFFF'); + +///* SHADE +// // a:shade +// $objWriter->startElement('a:shade'); +// $objWriter->writeAttribute('val', '85000'); +// $objWriter->endElement(); +//*/ + +// $objWriter->endElement(); + +// $objWriter->endElement(); +/* + // a:ln + $objWriter->startElement('a:ln'); + $objWriter->writeAttribute('w', '88900'); + $objWriter->writeAttribute('cap', 'sq'); + + // a:solidFill + $objWriter->startElement('a:solidFill'); + + // a:srgbClr + $objWriter->startElement('a:srgbClr'); + $objWriter->writeAttribute('val', 'FFFFFF'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:miter + $objWriter->startElement('a:miter'); + $objWriter->writeAttribute('lim', '800000'); + $objWriter->endElement(); + + $objWriter->endElement(); +*/ + + if ($pDrawing->getShadow()->getVisible()) { + // a:effectLst + $objWriter->startElement('a:effectLst'); + + // a:outerShdw + $objWriter->startElement('a:outerShdw'); + $objWriter->writeAttribute('blurRad', PHPExcel_Shared_Drawing::pixelsToEMU($pDrawing->getShadow()->getBlurRadius())); + $objWriter->writeAttribute('dist', PHPExcel_Shared_Drawing::pixelsToEMU($pDrawing->getShadow()->getDistance())); + $objWriter->writeAttribute('dir', PHPExcel_Shared_Drawing::degreesToAngle($pDrawing->getShadow()->getDirection())); + $objWriter->writeAttribute('algn', $pDrawing->getShadow()->getAlignment()); + $objWriter->writeAttribute('rotWithShape', '0'); + + // a:srgbClr + $objWriter->startElement('a:srgbClr'); + $objWriter->writeAttribute('val', $pDrawing->getShadow()->getColor()->getRGB()); + + // a:alpha + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', $pDrawing->getShadow()->getAlpha() * 1000); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + } +/* + + // a:scene3d + $objWriter->startElement('a:scene3d'); + + // a:camera + $objWriter->startElement('a:camera'); + $objWriter->writeAttribute('prst', 'orthographicFront'); + $objWriter->endElement(); + + // a:lightRig + $objWriter->startElement('a:lightRig'); + $objWriter->writeAttribute('rig', 'twoPt'); + $objWriter->writeAttribute('dir', 't'); + + // a:rot + $objWriter->startElement('a:rot'); + $objWriter->writeAttribute('lat', '0'); + $objWriter->writeAttribute('lon', '0'); + $objWriter->writeAttribute('rev', '0'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); +*/ +/* + // a:sp3d + $objWriter->startElement('a:sp3d'); + + // a:bevelT + $objWriter->startElement('a:bevelT'); + $objWriter->writeAttribute('w', '25400'); + $objWriter->writeAttribute('h', '19050'); + $objWriter->endElement(); + + // a:contourClr + $objWriter->startElement('a:contourClr'); + + // a:srgbClr + $objWriter->startElement('a:srgbClr'); + $objWriter->writeAttribute('val', 'FFFFFF'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); +*/ + $objWriter->endElement(); + + $objWriter->endElement(); + + // xdr:clientData + $objWriter->writeElement('xdr:clientData', null); + + $objWriter->endElement(); + } else { + throw new PHPExcel_Writer_Exception("Invalid parameters passed."); + } + } + + /** + * Write VML header/footer images to XML format + * + * @param PHPExcel_Worksheet $pWorksheet + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeVMLHeaderFooterImages(PHPExcel_Worksheet $pWorksheet = null) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Header/footer images + $images = $pWorksheet->getHeaderFooter()->getImages(); + + // xml + $objWriter->startElement('xml'); + $objWriter->writeAttribute('xmlns:v', 'urn:schemas-microsoft-com:vml'); + $objWriter->writeAttribute('xmlns:o', 'urn:schemas-microsoft-com:office:office'); + $objWriter->writeAttribute('xmlns:x', 'urn:schemas-microsoft-com:office:excel'); + + // o:shapelayout + $objWriter->startElement('o:shapelayout'); + $objWriter->writeAttribute('v:ext', 'edit'); + + // o:idmap + $objWriter->startElement('o:idmap'); + $objWriter->writeAttribute('v:ext', 'edit'); + $objWriter->writeAttribute('data', '1'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // v:shapetype + $objWriter->startElement('v:shapetype'); + $objWriter->writeAttribute('id', '_x0000_t75'); + $objWriter->writeAttribute('coordsize', '21600,21600'); + $objWriter->writeAttribute('o:spt', '75'); + $objWriter->writeAttribute('o:preferrelative', 't'); + $objWriter->writeAttribute('path', 'm@4@5l@4@11@9@11@9@5xe'); + $objWriter->writeAttribute('filled', 'f'); + $objWriter->writeAttribute('stroked', 'f'); + + // v:stroke + $objWriter->startElement('v:stroke'); + $objWriter->writeAttribute('joinstyle', 'miter'); + $objWriter->endElement(); + + // v:formulas + $objWriter->startElement('v:formulas'); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'if lineDrawn pixelLineWidth 0'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'sum @0 1 0'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'sum 0 0 @1'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'prod @2 1 2'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'prod @3 21600 pixelWidth'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'prod @3 21600 pixelHeight'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'sum @0 0 1'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'prod @6 1 2'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'prod @7 21600 pixelWidth'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'sum @8 21600 0'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'prod @7 21600 pixelHeight'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'sum @10 21600 0'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // v:path + $objWriter->startElement('v:path'); + $objWriter->writeAttribute('o:extrusionok', 'f'); + $objWriter->writeAttribute('gradientshapeok', 't'); + $objWriter->writeAttribute('o:connecttype', 'rect'); + $objWriter->endElement(); + + // o:lock + $objWriter->startElement('o:lock'); + $objWriter->writeAttribute('v:ext', 'edit'); + $objWriter->writeAttribute('aspectratio', 't'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // Loop through images + foreach ($images as $key => $value) { + $this->writeVMLHeaderFooterImage($objWriter, $key, $value); + } + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write VML comment to XML format + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param string $pReference Reference + * @param PHPExcel_Worksheet_HeaderFooterDrawing $pImage Image + * @throws PHPExcel_Writer_Exception + */ + private function writeVMLHeaderFooterImage(PHPExcel_Shared_XMLWriter $objWriter = null, $pReference = '', PHPExcel_Worksheet_HeaderFooterDrawing $pImage = null) + { + // Calculate object id + preg_match('{(\d+)}', md5($pReference), $m); + $id = 1500 + (substr($m[1], 0, 2) * 1); + + // Calculate offset + $width = $pImage->getWidth(); + $height = $pImage->getHeight(); + $marginLeft = $pImage->getOffsetX(); + $marginTop = $pImage->getOffsetY(); + + // v:shape + $objWriter->startElement('v:shape'); + $objWriter->writeAttribute('id', $pReference); + $objWriter->writeAttribute('o:spid', '_x0000_s' . $id); + $objWriter->writeAttribute('type', '#_x0000_t75'); + $objWriter->writeAttribute('style', "position:absolute;margin-left:{$marginLeft}px;margin-top:{$marginTop}px;width:{$width}px;height:{$height}px;z-index:1"); + + // v:imagedata + $objWriter->startElement('v:imagedata'); + $objWriter->writeAttribute('o:relid', 'rId' . $pReference); + $objWriter->writeAttribute('o:title', $pImage->getName()); + $objWriter->endElement(); + + // o:lock + $objWriter->startElement('o:lock'); + $objWriter->writeAttribute('v:ext', 'edit'); + $objWriter->writeAttribute('rotation', 't'); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + + /** + * Get an array of all drawings + * + * @param PHPExcel $pPHPExcel + * @return PHPExcel_Worksheet_Drawing[] All drawings in PHPExcel + * @throws PHPExcel_Writer_Exception + */ + public function allDrawings(PHPExcel $pPHPExcel = null) + { + // Get an array of all drawings + $aDrawings = array(); + + // Loop through PHPExcel + $sheetCount = $pPHPExcel->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + // Loop through images and add to array + $iterator = $pPHPExcel->getSheet($i)->getDrawingCollection()->getIterator(); + while ($iterator->valid()) { + $aDrawings[] = $iterator->current(); + + $iterator->next(); + } + } + + return $aDrawings; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Rels.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Rels.php new file mode 100644 index 0000000..14ff337 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Rels.php @@ -0,0 +1,424 @@ +<?php + +/** + * PHPExcel_Writer_Excel2007_Rels + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_Excel2007_Rels extends PHPExcel_Writer_Excel2007_WriterPart +{ + /** + * Write relationships to XML format + * + * @param PHPExcel $pPHPExcel + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeRelationships(PHPExcel $pPHPExcel = null) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Relationships + $objWriter->startElement('Relationships'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships'); + + $customPropertyList = $pPHPExcel->getProperties()->getCustomProperties(); + if (!empty($customPropertyList)) { + // Relationship docProps/app.xml + $this->writeRelationship( + $objWriter, + 4, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties', + 'docProps/custom.xml' + ); + + } + + // Relationship docProps/app.xml + $this->writeRelationship( + $objWriter, + 3, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties', + 'docProps/app.xml' + ); + + // Relationship docProps/core.xml + $this->writeRelationship( + $objWriter, + 2, + 'http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties', + 'docProps/core.xml' + ); + + // Relationship xl/workbook.xml + $this->writeRelationship( + $objWriter, + 1, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument', + 'xl/workbook.xml' + ); + // a custom UI in workbook ? + if ($pPHPExcel->hasRibbon()) { + $this->writeRelationShip( + $objWriter, + 5, + 'http://schemas.microsoft.com/office/2006/relationships/ui/extensibility', + $pPHPExcel->getRibbonXMLData('target') + ); + } + + $objWriter->endElement(); + + return $objWriter->getData(); + } + + /** + * Write workbook relationships to XML format + * + * @param PHPExcel $pPHPExcel + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeWorkbookRelationships(PHPExcel $pPHPExcel = null) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Relationships + $objWriter->startElement('Relationships'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships'); + + // Relationship styles.xml + $this->writeRelationship( + $objWriter, + 1, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles', + 'styles.xml' + ); + + // Relationship theme/theme1.xml + $this->writeRelationship( + $objWriter, + 2, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme', + 'theme/theme1.xml' + ); + + // Relationship sharedStrings.xml + $this->writeRelationship( + $objWriter, + 3, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings', + 'sharedStrings.xml' + ); + + // Relationships with sheets + $sheetCount = $pPHPExcel->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + $this->writeRelationship( + $objWriter, + ($i + 1 + 3), + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet', + 'worksheets/sheet' . ($i + 1) . '.xml' + ); + } + // Relationships for vbaProject if needed + // id : just after the last sheet + if ($pPHPExcel->hasMacros()) { + $this->writeRelationShip( + $objWriter, + ($i + 1 + 3), + 'http://schemas.microsoft.com/office/2006/relationships/vbaProject', + 'vbaProject.bin' + ); + ++$i;//increment i if needed for an another relation + } + + $objWriter->endElement(); + + return $objWriter->getData(); + } + + /** + * Write worksheet relationships to XML format + * + * Numbering is as follows: + * rId1 - Drawings + * rId_hyperlink_x - Hyperlinks + * + * @param PHPExcel_Worksheet $pWorksheet + * @param int $pWorksheetId + * @param boolean $includeCharts Flag indicating if we should write charts + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeWorksheetRelationships(PHPExcel_Worksheet $pWorksheet = null, $pWorksheetId = 1, $includeCharts = false) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Relationships + $objWriter->startElement('Relationships'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships'); + + // Write drawing relationships? + $d = 0; + if ($includeCharts) { + $charts = $pWorksheet->getChartCollection(); + } else { + $charts = array(); + } + if (($pWorksheet->getDrawingCollection()->count() > 0) || + (count($charts) > 0)) { + $this->writeRelationship( + $objWriter, + ++$d, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/drawing', + '../drawings/drawing' . $pWorksheetId . '.xml' + ); + } + + // Write chart relationships? +// $chartCount = 0; +// $charts = $pWorksheet->getChartCollection(); +// echo 'Chart Rels: ' , count($charts) , '<br />'; +// if (count($charts) > 0) { +// foreach ($charts as $chart) { +// $this->writeRelationship( +// $objWriter, +// ++$d, +// 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart', +// '../charts/chart' . ++$chartCount . '.xml' +// ); +// } +// } +// + // Write hyperlink relationships? + $i = 1; + foreach ($pWorksheet->getHyperlinkCollection() as $hyperlink) { + if (!$hyperlink->isInternal()) { + $this->writeRelationship( + $objWriter, + '_hyperlink_' . $i, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink', + $hyperlink->getUrl(), + 'External' + ); + + ++$i; + } + } + + // Write comments relationship? + $i = 1; + if (count($pWorksheet->getComments()) > 0) { + $this->writeRelationship( + $objWriter, + '_comments_vml' . $i, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing', + '../drawings/vmlDrawing' . $pWorksheetId . '.vml' + ); + + $this->writeRelationship( + $objWriter, + '_comments' . $i, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments', + '../comments' . $pWorksheetId . '.xml' + ); + } + + // Write header/footer relationship? + $i = 1; + if (count($pWorksheet->getHeaderFooter()->getImages()) > 0) { + $this->writeRelationship( + $objWriter, + '_headerfooter_vml' . $i, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing', + '../drawings/vmlDrawingHF' . $pWorksheetId . '.vml' + ); + } + + $objWriter->endElement(); + + return $objWriter->getData(); + } + + /** + * Write drawing relationships to XML format + * + * @param PHPExcel_Worksheet $pWorksheet + * @param int &$chartRef Chart ID + * @param boolean $includeCharts Flag indicating if we should write charts + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeDrawingRelationships(PHPExcel_Worksheet $pWorksheet = null, &$chartRef, $includeCharts = false) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Relationships + $objWriter->startElement('Relationships'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships'); + + // Loop through images and write relationships + $i = 1; + $iterator = $pWorksheet->getDrawingCollection()->getIterator(); + while ($iterator->valid()) { + if ($iterator->current() instanceof PHPExcel_Worksheet_Drawing + || $iterator->current() instanceof PHPExcel_Worksheet_MemoryDrawing) { + // Write relationship for image drawing + $this->writeRelationship( + $objWriter, + $i, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image', + '../media/' . str_replace(' ', '', $iterator->current()->getIndexedFilename()) + ); + } + + $iterator->next(); + ++$i; + } + + if ($includeCharts) { + // Loop through charts and write relationships + $chartCount = $pWorksheet->getChartCount(); + if ($chartCount > 0) { + for ($c = 0; $c < $chartCount; ++$c) { + $this->writeRelationship( + $objWriter, + $i++, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart', + '../charts/chart' . ++$chartRef . '.xml' + ); + } + } + } + + $objWriter->endElement(); + + return $objWriter->getData(); + } + + /** + * Write header/footer drawing relationships to XML format + * + * @param PHPExcel_Worksheet $pWorksheet + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeHeaderFooterDrawingRelationships(PHPExcel_Worksheet $pWorksheet = null) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Relationships + $objWriter->startElement('Relationships'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships'); + + // Loop through images and write relationships + foreach ($pWorksheet->getHeaderFooter()->getImages() as $key => $value) { + // Write relationship for image drawing + $this->writeRelationship( + $objWriter, + $key, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image', + '../media/' . $value->getIndexedFilename() + ); + } + + $objWriter->endElement(); + + return $objWriter->getData(); + } + + /** + * Write Override content type + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param int $pId Relationship ID. rId will be prepended! + * @param string $pType Relationship type + * @param string $pTarget Relationship target + * @param string $pTargetMode Relationship target mode + * @throws PHPExcel_Writer_Exception + */ + private function writeRelationship(PHPExcel_Shared_XMLWriter $objWriter = null, $pId = 1, $pType = '', $pTarget = '', $pTargetMode = '') + { + if ($pType != '' && $pTarget != '') { + // Write relationship + $objWriter->startElement('Relationship'); + $objWriter->writeAttribute('Id', 'rId' . $pId); + $objWriter->writeAttribute('Type', $pType); + $objWriter->writeAttribute('Target', $pTarget); + + if ($pTargetMode != '') { + $objWriter->writeAttribute('TargetMode', $pTargetMode); + } + + $objWriter->endElement(); + } else { + throw new PHPExcel_Writer_Exception("Invalid parameters passed."); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/RelsRibbon.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/RelsRibbon.php new file mode 100644 index 0000000..5a4a9fc --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/RelsRibbon.php @@ -0,0 +1,67 @@ +<?php + +/** + * PHPExcel_Writer_Excel2007_RelsRibbon + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_Excel2007_RelsRibbon extends PHPExcel_Writer_Excel2007_WriterPart +{ + /** + * Write relationships for additional objects of custom UI (ribbon) + * + * @param PHPExcel $pPHPExcel + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeRibbonRelationships(PHPExcel $pPHPExcel = null) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Relationships + $objWriter->startElement('Relationships'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships'); + $localRels = $pPHPExcel->getRibbonBinObjects('names'); + if (is_array($localRels)) { + foreach ($localRels as $aId => $aTarget) { + $objWriter->startElement('Relationship'); + $objWriter->writeAttribute('Id', $aId); + $objWriter->writeAttribute('Type', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image'); + $objWriter->writeAttribute('Target', $aTarget); + $objWriter->endElement(); + } + } + $objWriter->endElement(); + + return $objWriter->getData(); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/RelsVBA.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/RelsVBA.php new file mode 100644 index 0000000..bee0e64 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/RelsVBA.php @@ -0,0 +1,63 @@ +<?php + +/** + * PHPExcel_Writer_Excel2007_RelsVBA + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_Excel2007_RelsVBA extends PHPExcel_Writer_Excel2007_WriterPart +{ + /** + * Write relationships for a signed VBA Project + * + * @param PHPExcel $pPHPExcel + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeVBARelationships(PHPExcel $pPHPExcel = null) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Relationships + $objWriter->startElement('Relationships'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships'); + $objWriter->startElement('Relationship'); + $objWriter->writeAttribute('Id', 'rId1'); + $objWriter->writeAttribute('Type', 'http://schemas.microsoft.com/office/2006/relationships/vbaProjectSignature'); + $objWriter->writeAttribute('Target', 'vbaProjectSignature.bin'); + $objWriter->endElement(); + $objWriter->endElement(); + + return $objWriter->getData(); + + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/StringTable.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/StringTable.php new file mode 100644 index 0000000..fccec66 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/StringTable.php @@ -0,0 +1,313 @@ +<?php + +/** + * PHPExcel_Writer_Excel2007_StringTable + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_Excel2007_StringTable extends PHPExcel_Writer_Excel2007_WriterPart +{ + /** + * Create worksheet stringtable + * + * @param PHPExcel_Worksheet $pSheet Worksheet + * @param string[] $pExistingTable Existing table to eventually merge with + * @return string[] String table for worksheet + * @throws PHPExcel_Writer_Exception + */ + public function createStringTable($pSheet = null, $pExistingTable = null) + { + if ($pSheet !== null) { + // Create string lookup table + $aStringTable = array(); + $cellCollection = null; + $aFlippedStringTable = null; // For faster lookup + + // Is an existing table given? + if (($pExistingTable !== null) && is_array($pExistingTable)) { + $aStringTable = $pExistingTable; + } + + // Fill index array + $aFlippedStringTable = $this->flipStringTable($aStringTable); + + // Loop through cells + foreach ($pSheet->getCellCollection() as $cellID) { + $cell = $pSheet->getCell($cellID); + $cellValue = $cell->getValue(); + if (!is_object($cellValue) && + ($cellValue !== null) && + $cellValue !== '' && + !isset($aFlippedStringTable[$cellValue]) && + ($cell->getDataType() == PHPExcel_Cell_DataType::TYPE_STRING || $cell->getDataType() == PHPExcel_Cell_DataType::TYPE_STRING2 || $cell->getDataType() == PHPExcel_Cell_DataType::TYPE_NULL)) { + $aStringTable[] = $cellValue; + $aFlippedStringTable[$cellValue] = true; + } elseif ($cellValue instanceof PHPExcel_RichText && + ($cellValue !== null) && + !isset($aFlippedStringTable[$cellValue->getHashCode()])) { + $aStringTable[] = $cellValue; + $aFlippedStringTable[$cellValue->getHashCode()] = true; + } + } + + return $aStringTable; + } else { + throw new PHPExcel_Writer_Exception("Invalid PHPExcel_Worksheet object passed."); + } + } + + /** + * Write string table to XML format + * + * @param string[] $pStringTable + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeStringTable($pStringTable = null) + { + if ($pStringTable !== null) { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // String table + $objWriter->startElement('sst'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'); + $objWriter->writeAttribute('uniqueCount', count($pStringTable)); + + // Loop through string table + foreach ($pStringTable as $textElement) { + $objWriter->startElement('si'); + + if (! $textElement instanceof PHPExcel_RichText) { + $textToWrite = PHPExcel_Shared_String::ControlCharacterPHP2OOXML($textElement); + $objWriter->startElement('t'); + if ($textToWrite !== trim($textToWrite)) { + $objWriter->writeAttribute('xml:space', 'preserve'); + } + $objWriter->writeRawData($textToWrite); + $objWriter->endElement(); + } elseif ($textElement instanceof PHPExcel_RichText) { + $this->writeRichText($objWriter, $textElement); + } + + $objWriter->endElement(); + } + + $objWriter->endElement(); + + return $objWriter->getData(); + } else { + throw new PHPExcel_Writer_Exception("Invalid string table array passed."); + } + } + + /** + * Write Rich Text + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_RichText $pRichText Rich text + * @param string $prefix Optional Namespace prefix + * @throws PHPExcel_Writer_Exception + */ + public function writeRichText(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_RichText $pRichText = null, $prefix = null) + { + if ($prefix !== null) { + $prefix .= ':'; + } + + // Loop through rich text elements + $elements = $pRichText->getRichTextElements(); + foreach ($elements as $element) { + // r + $objWriter->startElement($prefix.'r'); + + // rPr + if ($element instanceof PHPExcel_RichText_Run) { + // rPr + $objWriter->startElement($prefix.'rPr'); + + // rFont + $objWriter->startElement($prefix.'rFont'); + $objWriter->writeAttribute('val', $element->getFont()->getName()); + $objWriter->endElement(); + + // Bold + $objWriter->startElement($prefix.'b'); + $objWriter->writeAttribute('val', ($element->getFont()->getBold() ? 'true' : 'false')); + $objWriter->endElement(); + + // Italic + $objWriter->startElement($prefix.'i'); + $objWriter->writeAttribute('val', ($element->getFont()->getItalic() ? 'true' : 'false')); + $objWriter->endElement(); + + // Superscript / subscript + if ($element->getFont()->getSuperScript() || $element->getFont()->getSubScript()) { + $objWriter->startElement($prefix.'vertAlign'); + if ($element->getFont()->getSuperScript()) { + $objWriter->writeAttribute('val', 'superscript'); + } elseif ($element->getFont()->getSubScript()) { + $objWriter->writeAttribute('val', 'subscript'); + } + $objWriter->endElement(); + } + + // Strikethrough + $objWriter->startElement($prefix.'strike'); + $objWriter->writeAttribute('val', ($element->getFont()->getStrikethrough() ? 'true' : 'false')); + $objWriter->endElement(); + + // Color + $objWriter->startElement($prefix.'color'); + $objWriter->writeAttribute('rgb', $element->getFont()->getColor()->getARGB()); + $objWriter->endElement(); + + // Size + $objWriter->startElement($prefix.'sz'); + $objWriter->writeAttribute('val', $element->getFont()->getSize()); + $objWriter->endElement(); + + // Underline + $objWriter->startElement($prefix.'u'); + $objWriter->writeAttribute('val', $element->getFont()->getUnderline()); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + // t + $objWriter->startElement($prefix.'t'); + $objWriter->writeAttribute('xml:space', 'preserve'); + $objWriter->writeRawData(PHPExcel_Shared_String::ControlCharacterPHP2OOXML($element->getText())); + $objWriter->endElement(); + + $objWriter->endElement(); + } + } + + /** + * Write Rich Text + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param string|PHPExcel_RichText $pRichText text string or Rich text + * @param string $prefix Optional Namespace prefix + * @throws PHPExcel_Writer_Exception + */ + public function writeRichTextForCharts(PHPExcel_Shared_XMLWriter $objWriter = null, $pRichText = null, $prefix = null) + { + if (!$pRichText instanceof PHPExcel_RichText) { + $textRun = $pRichText; + $pRichText = new PHPExcel_RichText(); + $pRichText->createTextRun($textRun); + } + + if ($prefix !== null) { + $prefix .= ':'; + } + + // Loop through rich text elements + $elements = $pRichText->getRichTextElements(); + foreach ($elements as $element) { + // r + $objWriter->startElement($prefix.'r'); + + // rPr + $objWriter->startElement($prefix.'rPr'); + + // Bold + $objWriter->writeAttribute('b', ($element->getFont()->getBold() ? 1 : 0)); + // Italic + $objWriter->writeAttribute('i', ($element->getFont()->getItalic() ? 1 : 0)); + // Underline + $underlineType = $element->getFont()->getUnderline(); + switch ($underlineType) { + case 'single': + $underlineType = 'sng'; + break; + case 'double': + $underlineType = 'dbl'; + break; + } + $objWriter->writeAttribute('u', $underlineType); + // Strikethrough + $objWriter->writeAttribute('strike', ($element->getFont()->getStrikethrough() ? 'sngStrike' : 'noStrike')); + + // rFont + $objWriter->startElement($prefix.'latin'); + $objWriter->writeAttribute('typeface', $element->getFont()->getName()); + $objWriter->endElement(); + + // Superscript / subscript +// if ($element->getFont()->getSuperScript() || $element->getFont()->getSubScript()) { +// $objWriter->startElement($prefix.'vertAlign'); +// if ($element->getFont()->getSuperScript()) { +// $objWriter->writeAttribute('val', 'superscript'); +// } elseif ($element->getFont()->getSubScript()) { +// $objWriter->writeAttribute('val', 'subscript'); +// } +// $objWriter->endElement(); +// } +// + $objWriter->endElement(); + + // t + $objWriter->startElement($prefix.'t'); +// $objWriter->writeAttribute('xml:space', 'preserve'); // Excel2010 accepts, Excel2007 complains + $objWriter->writeRawData(PHPExcel_Shared_String::ControlCharacterPHP2OOXML($element->getText())); + $objWriter->endElement(); + + $objWriter->endElement(); + } + } + + /** + * Flip string table (for index searching) + * + * @param array $stringTable Stringtable + * @return array + */ + public function flipStringTable($stringTable = array()) + { + // Return value + $returnValue = array(); + + // Loop through stringtable and add flipped items to $returnValue + foreach ($stringTable as $key => $value) { + if (! $value instanceof PHPExcel_RichText) { + $returnValue[$value] = $key; + } elseif ($value instanceof PHPExcel_RichText) { + $returnValue[$value->getHashCode()] = $key; + } + } + + return $returnValue; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Style.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Style.php new file mode 100644 index 0000000..d3f0af7 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Style.php @@ -0,0 +1,696 @@ +<?php + +/** + * PHPExcel_Writer_Excel2007_Style + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_Excel2007_Style extends PHPExcel_Writer_Excel2007_WriterPart +{ + /** + * Write styles to XML format + * + * @param PHPExcel $pPHPExcel + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeStyles(PHPExcel $pPHPExcel = null) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // styleSheet + $objWriter->startElement('styleSheet'); + $objWriter->writeAttribute('xml:space', 'preserve'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'); + + // numFmts + $objWriter->startElement('numFmts'); + $objWriter->writeAttribute('count', $this->getParentWriter()->getNumFmtHashTable()->count()); + + // numFmt + for ($i = 0; $i < $this->getParentWriter()->getNumFmtHashTable()->count(); ++$i) { + $this->writeNumFmt($objWriter, $this->getParentWriter()->getNumFmtHashTable()->getByIndex($i), $i); + } + + $objWriter->endElement(); + + // fonts + $objWriter->startElement('fonts'); + $objWriter->writeAttribute('count', $this->getParentWriter()->getFontHashTable()->count()); + + // font + for ($i = 0; $i < $this->getParentWriter()->getFontHashTable()->count(); ++$i) { + $this->writeFont($objWriter, $this->getParentWriter()->getFontHashTable()->getByIndex($i)); + } + + $objWriter->endElement(); + + // fills + $objWriter->startElement('fills'); + $objWriter->writeAttribute('count', $this->getParentWriter()->getFillHashTable()->count()); + + // fill + for ($i = 0; $i < $this->getParentWriter()->getFillHashTable()->count(); ++$i) { + $this->writeFill($objWriter, $this->getParentWriter()->getFillHashTable()->getByIndex($i)); + } + + $objWriter->endElement(); + + // borders + $objWriter->startElement('borders'); + $objWriter->writeAttribute('count', $this->getParentWriter()->getBordersHashTable()->count()); + + // border + for ($i = 0; $i < $this->getParentWriter()->getBordersHashTable()->count(); ++$i) { + $this->writeBorder($objWriter, $this->getParentWriter()->getBordersHashTable()->getByIndex($i)); + } + + $objWriter->endElement(); + + // cellStyleXfs + $objWriter->startElement('cellStyleXfs'); + $objWriter->writeAttribute('count', 1); + + // xf + $objWriter->startElement('xf'); + $objWriter->writeAttribute('numFmtId', 0); + $objWriter->writeAttribute('fontId', 0); + $objWriter->writeAttribute('fillId', 0); + $objWriter->writeAttribute('borderId', 0); + $objWriter->endElement(); + + $objWriter->endElement(); + + // cellXfs + $objWriter->startElement('cellXfs'); + $objWriter->writeAttribute('count', count($pPHPExcel->getCellXfCollection())); + + // xf + foreach ($pPHPExcel->getCellXfCollection() as $cellXf) { + $this->writeCellStyleXf($objWriter, $cellXf, $pPHPExcel); + } + + $objWriter->endElement(); + + // cellStyles + $objWriter->startElement('cellStyles'); + $objWriter->writeAttribute('count', 1); + + // cellStyle + $objWriter->startElement('cellStyle'); + $objWriter->writeAttribute('name', 'Normal'); + $objWriter->writeAttribute('xfId', 0); + $objWriter->writeAttribute('builtinId', 0); + $objWriter->endElement(); + + $objWriter->endElement(); + + // dxfs + $objWriter->startElement('dxfs'); + $objWriter->writeAttribute('count', $this->getParentWriter()->getStylesConditionalHashTable()->count()); + + // dxf + for ($i = 0; $i < $this->getParentWriter()->getStylesConditionalHashTable()->count(); ++$i) { + $this->writeCellStyleDxf($objWriter, $this->getParentWriter()->getStylesConditionalHashTable()->getByIndex($i)->getStyle()); + } + + $objWriter->endElement(); + + // tableStyles + $objWriter->startElement('tableStyles'); + $objWriter->writeAttribute('defaultTableStyle', 'TableStyleMedium9'); + $objWriter->writeAttribute('defaultPivotStyle', 'PivotTableStyle1'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write Fill + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Style_Fill $pFill Fill style + * @throws PHPExcel_Writer_Exception + */ + private function writeFill(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Style_Fill $pFill = null) + { + // Check if this is a pattern type or gradient type + if ($pFill->getFillType() === PHPExcel_Style_Fill::FILL_GRADIENT_LINEAR || + $pFill->getFillType() === PHPExcel_Style_Fill::FILL_GRADIENT_PATH) { + // Gradient fill + $this->writeGradientFill($objWriter, $pFill); + } elseif ($pFill->getFillType() !== null) { + // Pattern fill + $this->writePatternFill($objWriter, $pFill); + } + } + + /** + * Write Gradient Fill + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Style_Fill $pFill Fill style + * @throws PHPExcel_Writer_Exception + */ + private function writeGradientFill(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Style_Fill $pFill = null) + { + // fill + $objWriter->startElement('fill'); + + // gradientFill + $objWriter->startElement('gradientFill'); + $objWriter->writeAttribute('type', $pFill->getFillType()); + $objWriter->writeAttribute('degree', $pFill->getRotation()); + + // stop + $objWriter->startElement('stop'); + $objWriter->writeAttribute('position', '0'); + + // color + $objWriter->startElement('color'); + $objWriter->writeAttribute('rgb', $pFill->getStartColor()->getARGB()); + $objWriter->endElement(); + + $objWriter->endElement(); + + // stop + $objWriter->startElement('stop'); + $objWriter->writeAttribute('position', '1'); + + // color + $objWriter->startElement('color'); + $objWriter->writeAttribute('rgb', $pFill->getEndColor()->getARGB()); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write Pattern Fill + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Style_Fill $pFill Fill style + * @throws PHPExcel_Writer_Exception + */ + private function writePatternFill(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Style_Fill $pFill = null) + { + // fill + $objWriter->startElement('fill'); + + // patternFill + $objWriter->startElement('patternFill'); + $objWriter->writeAttribute('patternType', $pFill->getFillType()); + + if ($pFill->getFillType() !== PHPExcel_Style_Fill::FILL_NONE) { + // fgColor + if ($pFill->getStartColor()->getARGB()) { + $objWriter->startElement('fgColor'); + $objWriter->writeAttribute('rgb', $pFill->getStartColor()->getARGB()); + $objWriter->endElement(); + } + } + if ($pFill->getFillType() !== PHPExcel_Style_Fill::FILL_NONE) { + // bgColor + if ($pFill->getEndColor()->getARGB()) { + $objWriter->startElement('bgColor'); + $objWriter->writeAttribute('rgb', $pFill->getEndColor()->getARGB()); + $objWriter->endElement(); + } + } + + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write Font + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Style_Font $pFont Font style + * @throws PHPExcel_Writer_Exception + */ + private function writeFont(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Style_Font $pFont = null) + { + // font + $objWriter->startElement('font'); + // Weird! The order of these elements actually makes a difference when opening Excel2007 + // files in Excel2003 with the compatibility pack. It's not documented behaviour, + // and makes for a real WTF! + + // Bold. We explicitly write this element also when false (like MS Office Excel 2007 does + // for conditional formatting). Otherwise it will apparently not be picked up in conditional + // formatting style dialog + if ($pFont->getBold() !== null) { + $objWriter->startElement('b'); + $objWriter->writeAttribute('val', $pFont->getBold() ? '1' : '0'); + $objWriter->endElement(); + } + + // Italic + if ($pFont->getItalic() !== null) { + $objWriter->startElement('i'); + $objWriter->writeAttribute('val', $pFont->getItalic() ? '1' : '0'); + $objWriter->endElement(); + } + + // Strikethrough + if ($pFont->getStrikethrough() !== null) { + $objWriter->startElement('strike'); + $objWriter->writeAttribute('val', $pFont->getStrikethrough() ? '1' : '0'); + $objWriter->endElement(); + } + + // Underline + if ($pFont->getUnderline() !== null) { + $objWriter->startElement('u'); + $objWriter->writeAttribute('val', $pFont->getUnderline()); + $objWriter->endElement(); + } + + // Superscript / subscript + if ($pFont->getSuperScript() === true || $pFont->getSubScript() === true) { + $objWriter->startElement('vertAlign'); + if ($pFont->getSuperScript() === true) { + $objWriter->writeAttribute('val', 'superscript'); + } elseif ($pFont->getSubScript() === true) { + $objWriter->writeAttribute('val', 'subscript'); + } + $objWriter->endElement(); + } + + // Size + if ($pFont->getSize() !== null) { + $objWriter->startElement('sz'); + $objWriter->writeAttribute('val', $pFont->getSize()); + $objWriter->endElement(); + } + + // Foreground color + if ($pFont->getColor()->getARGB() !== null) { + $objWriter->startElement('color'); + $objWriter->writeAttribute('rgb', $pFont->getColor()->getARGB()); + $objWriter->endElement(); + } + + // Name + if ($pFont->getName() !== null) { + $objWriter->startElement('name'); + $objWriter->writeAttribute('val', $pFont->getName()); + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + + /** + * Write Border + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Style_Borders $pBorders Borders style + * @throws PHPExcel_Writer_Exception + */ + private function writeBorder(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Style_Borders $pBorders = null) + { + // Write border + $objWriter->startElement('border'); + // Diagonal? + switch ($pBorders->getDiagonalDirection()) { + case PHPExcel_Style_Borders::DIAGONAL_UP: + $objWriter->writeAttribute('diagonalUp', 'true'); + $objWriter->writeAttribute('diagonalDown', 'false'); + break; + case PHPExcel_Style_Borders::DIAGONAL_DOWN: + $objWriter->writeAttribute('diagonalUp', 'false'); + $objWriter->writeAttribute('diagonalDown', 'true'); + break; + case PHPExcel_Style_Borders::DIAGONAL_BOTH: + $objWriter->writeAttribute('diagonalUp', 'true'); + $objWriter->writeAttribute('diagonalDown', 'true'); + break; + } + + // BorderPr + $this->writeBorderPr($objWriter, 'left', $pBorders->getLeft()); + $this->writeBorderPr($objWriter, 'right', $pBorders->getRight()); + $this->writeBorderPr($objWriter, 'top', $pBorders->getTop()); + $this->writeBorderPr($objWriter, 'bottom', $pBorders->getBottom()); + $this->writeBorderPr($objWriter, 'diagonal', $pBorders->getDiagonal()); + $objWriter->endElement(); + } + + /** + * Write Cell Style Xf + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Style $pStyle Style + * @param PHPExcel $pPHPExcel Workbook + * @throws PHPExcel_Writer_Exception + */ + private function writeCellStyleXf(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Style $pStyle = null, PHPExcel $pPHPExcel = null) + { + // xf + $objWriter->startElement('xf'); + $objWriter->writeAttribute('xfId', 0); + $objWriter->writeAttribute('fontId', (int)$this->getParentWriter()->getFontHashTable()->getIndexForHashCode($pStyle->getFont()->getHashCode())); + if ($pStyle->getQuotePrefix()) { + $objWriter->writeAttribute('quotePrefix', 1); + } + + if ($pStyle->getNumberFormat()->getBuiltInFormatCode() === false) { + $objWriter->writeAttribute('numFmtId', (int)($this->getParentWriter()->getNumFmtHashTable()->getIndexForHashCode($pStyle->getNumberFormat()->getHashCode()) + 164)); + } else { + $objWriter->writeAttribute('numFmtId', (int)$pStyle->getNumberFormat()->getBuiltInFormatCode()); + } + + $objWriter->writeAttribute('fillId', (int)$this->getParentWriter()->getFillHashTable()->getIndexForHashCode($pStyle->getFill()->getHashCode())); + $objWriter->writeAttribute('borderId', (int)$this->getParentWriter()->getBordersHashTable()->getIndexForHashCode($pStyle->getBorders()->getHashCode())); + + // Apply styles? + $objWriter->writeAttribute('applyFont', ($pPHPExcel->getDefaultStyle()->getFont()->getHashCode() != $pStyle->getFont()->getHashCode()) ? '1' : '0'); + $objWriter->writeAttribute('applyNumberFormat', ($pPHPExcel->getDefaultStyle()->getNumberFormat()->getHashCode() != $pStyle->getNumberFormat()->getHashCode()) ? '1' : '0'); + $objWriter->writeAttribute('applyFill', ($pPHPExcel->getDefaultStyle()->getFill()->getHashCode() != $pStyle->getFill()->getHashCode()) ? '1' : '0'); + $objWriter->writeAttribute('applyBorder', ($pPHPExcel->getDefaultStyle()->getBorders()->getHashCode() != $pStyle->getBorders()->getHashCode()) ? '1' : '0'); + $objWriter->writeAttribute('applyAlignment', ($pPHPExcel->getDefaultStyle()->getAlignment()->getHashCode() != $pStyle->getAlignment()->getHashCode()) ? '1' : '0'); + if ($pStyle->getProtection()->getLocked() != PHPExcel_Style_Protection::PROTECTION_INHERIT || $pStyle->getProtection()->getHidden() != PHPExcel_Style_Protection::PROTECTION_INHERIT) { + $objWriter->writeAttribute('applyProtection', 'true'); + } + + // alignment + $objWriter->startElement('alignment'); + $objWriter->writeAttribute('horizontal', $pStyle->getAlignment()->getHorizontal()); + $objWriter->writeAttribute('vertical', $pStyle->getAlignment()->getVertical()); + + $textRotation = 0; + if ($pStyle->getAlignment()->getTextRotation() >= 0) { + $textRotation = $pStyle->getAlignment()->getTextRotation(); + } elseif ($pStyle->getAlignment()->getTextRotation() < 0) { + $textRotation = 90 - $pStyle->getAlignment()->getTextRotation(); + } + $objWriter->writeAttribute('textRotation', $textRotation); + + $objWriter->writeAttribute('wrapText', ($pStyle->getAlignment()->getWrapText() ? 'true' : 'false')); + $objWriter->writeAttribute('shrinkToFit', ($pStyle->getAlignment()->getShrinkToFit() ? 'true' : 'false')); + + if ($pStyle->getAlignment()->getIndent() > 0) { + $objWriter->writeAttribute('indent', $pStyle->getAlignment()->getIndent()); + } + if ($pStyle->getAlignment()->getReadorder() > 0) { + $objWriter->writeAttribute('readingOrder', $pStyle->getAlignment()->getReadorder()); + } + $objWriter->endElement(); + + // protection + if ($pStyle->getProtection()->getLocked() != PHPExcel_Style_Protection::PROTECTION_INHERIT || $pStyle->getProtection()->getHidden() != PHPExcel_Style_Protection::PROTECTION_INHERIT) { + $objWriter->startElement('protection'); + if ($pStyle->getProtection()->getLocked() != PHPExcel_Style_Protection::PROTECTION_INHERIT) { + $objWriter->writeAttribute('locked', ($pStyle->getProtection()->getLocked() == PHPExcel_Style_Protection::PROTECTION_PROTECTED ? 'true' : 'false')); + } + if ($pStyle->getProtection()->getHidden() != PHPExcel_Style_Protection::PROTECTION_INHERIT) { + $objWriter->writeAttribute('hidden', ($pStyle->getProtection()->getHidden() == PHPExcel_Style_Protection::PROTECTION_PROTECTED ? 'true' : 'false')); + } + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + + /** + * Write Cell Style Dxf + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Style $pStyle Style + * @throws PHPExcel_Writer_Exception + */ + private function writeCellStyleDxf(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Style $pStyle = null) + { + // dxf + $objWriter->startElement('dxf'); + + // font + $this->writeFont($objWriter, $pStyle->getFont()); + + // numFmt + $this->writeNumFmt($objWriter, $pStyle->getNumberFormat()); + + // fill + $this->writeFill($objWriter, $pStyle->getFill()); + + // alignment + $objWriter->startElement('alignment'); + if ($pStyle->getAlignment()->getHorizontal() !== null) { + $objWriter->writeAttribute('horizontal', $pStyle->getAlignment()->getHorizontal()); + } + if ($pStyle->getAlignment()->getVertical() !== null) { + $objWriter->writeAttribute('vertical', $pStyle->getAlignment()->getVertical()); + } + + if ($pStyle->getAlignment()->getTextRotation() !== null) { + $textRotation = 0; + if ($pStyle->getAlignment()->getTextRotation() >= 0) { + $textRotation = $pStyle->getAlignment()->getTextRotation(); + } elseif ($pStyle->getAlignment()->getTextRotation() < 0) { + $textRotation = 90 - $pStyle->getAlignment()->getTextRotation(); + } + $objWriter->writeAttribute('textRotation', $textRotation); + } + $objWriter->endElement(); + + // border + $this->writeBorder($objWriter, $pStyle->getBorders()); + + // protection + if (($pStyle->getProtection()->getLocked() !== null) || ($pStyle->getProtection()->getHidden() !== null)) { + if ($pStyle->getProtection()->getLocked() !== PHPExcel_Style_Protection::PROTECTION_INHERIT || + $pStyle->getProtection()->getHidden() !== PHPExcel_Style_Protection::PROTECTION_INHERIT) { + $objWriter->startElement('protection'); + if (($pStyle->getProtection()->getLocked() !== null) && + ($pStyle->getProtection()->getLocked() !== PHPExcel_Style_Protection::PROTECTION_INHERIT)) { + $objWriter->writeAttribute('locked', ($pStyle->getProtection()->getLocked() == PHPExcel_Style_Protection::PROTECTION_PROTECTED ? 'true' : 'false')); + } + if (($pStyle->getProtection()->getHidden() !== null) && + ($pStyle->getProtection()->getHidden() !== PHPExcel_Style_Protection::PROTECTION_INHERIT)) { + $objWriter->writeAttribute('hidden', ($pStyle->getProtection()->getHidden() == PHPExcel_Style_Protection::PROTECTION_PROTECTED ? 'true' : 'false')); + } + $objWriter->endElement(); + } + } + + $objWriter->endElement(); + } + + /** + * Write BorderPr + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param string $pName Element name + * @param PHPExcel_Style_Border $pBorder Border style + * @throws PHPExcel_Writer_Exception + */ + private function writeBorderPr(PHPExcel_Shared_XMLWriter $objWriter = null, $pName = 'left', PHPExcel_Style_Border $pBorder = null) + { + // Write BorderPr + if ($pBorder->getBorderStyle() != PHPExcel_Style_Border::BORDER_NONE) { + $objWriter->startElement($pName); + $objWriter->writeAttribute('style', $pBorder->getBorderStyle()); + + // color + $objWriter->startElement('color'); + $objWriter->writeAttribute('rgb', $pBorder->getColor()->getARGB()); + $objWriter->endElement(); + + $objWriter->endElement(); + } + } + + /** + * Write NumberFormat + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Style_NumberFormat $pNumberFormat Number Format + * @param int $pId Number Format identifier + * @throws PHPExcel_Writer_Exception + */ + private function writeNumFmt(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Style_NumberFormat $pNumberFormat = null, $pId = 0) + { + // Translate formatcode + $formatCode = $pNumberFormat->getFormatCode(); + + // numFmt + if ($formatCode !== null) { + $objWriter->startElement('numFmt'); + $objWriter->writeAttribute('numFmtId', ($pId + 164)); + $objWriter->writeAttribute('formatCode', $formatCode); + $objWriter->endElement(); + } + } + + /** + * Get an array of all styles + * + * @param PHPExcel $pPHPExcel + * @return PHPExcel_Style[] All styles in PHPExcel + * @throws PHPExcel_Writer_Exception + */ + public function allStyles(PHPExcel $pPHPExcel = null) + { + return $pPHPExcel->getCellXfCollection(); + } + + /** + * Get an array of all conditional styles + * + * @param PHPExcel $pPHPExcel + * @return PHPExcel_Style_Conditional[] All conditional styles in PHPExcel + * @throws PHPExcel_Writer_Exception + */ + public function allConditionalStyles(PHPExcel $pPHPExcel = null) + { + // Get an array of all styles + $aStyles = array(); + + $sheetCount = $pPHPExcel->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + foreach ($pPHPExcel->getSheet($i)->getConditionalStylesCollection() as $conditionalStyles) { + foreach ($conditionalStyles as $conditionalStyle) { + $aStyles[] = $conditionalStyle; + } + } + } + + return $aStyles; + } + + /** + * Get an array of all fills + * + * @param PHPExcel $pPHPExcel + * @return PHPExcel_Style_Fill[] All fills in PHPExcel + * @throws PHPExcel_Writer_Exception + */ + public function allFills(PHPExcel $pPHPExcel = null) + { + // Get an array of unique fills + $aFills = array(); + + // Two first fills are predefined + $fill0 = new PHPExcel_Style_Fill(); + $fill0->setFillType(PHPExcel_Style_Fill::FILL_NONE); + $aFills[] = $fill0; + + $fill1 = new PHPExcel_Style_Fill(); + $fill1->setFillType(PHPExcel_Style_Fill::FILL_PATTERN_GRAY125); + $aFills[] = $fill1; + // The remaining fills + $aStyles = $this->allStyles($pPHPExcel); + foreach ($aStyles as $style) { + if (!array_key_exists($style->getFill()->getHashCode(), $aFills)) { + $aFills[ $style->getFill()->getHashCode() ] = $style->getFill(); + } + } + + return $aFills; + } + + /** + * Get an array of all fonts + * + * @param PHPExcel $pPHPExcel + * @return PHPExcel_Style_Font[] All fonts in PHPExcel + * @throws PHPExcel_Writer_Exception + */ + public function allFonts(PHPExcel $pPHPExcel = null) + { + // Get an array of unique fonts + $aFonts = array(); + $aStyles = $this->allStyles($pPHPExcel); + + foreach ($aStyles as $style) { + if (!array_key_exists($style->getFont()->getHashCode(), $aFonts)) { + $aFonts[ $style->getFont()->getHashCode() ] = $style->getFont(); + } + } + + return $aFonts; + } + + /** + * Get an array of all borders + * + * @param PHPExcel $pPHPExcel + * @return PHPExcel_Style_Borders[] All borders in PHPExcel + * @throws PHPExcel_Writer_Exception + */ + public function allBorders(PHPExcel $pPHPExcel = null) + { + // Get an array of unique borders + $aBorders = array(); + $aStyles = $this->allStyles($pPHPExcel); + + foreach ($aStyles as $style) { + if (!array_key_exists($style->getBorders()->getHashCode(), $aBorders)) { + $aBorders[ $style->getBorders()->getHashCode() ] = $style->getBorders(); + } + } + + return $aBorders; + } + + /** + * Get an array of all number formats + * + * @param PHPExcel $pPHPExcel + * @return PHPExcel_Style_NumberFormat[] All number formats in PHPExcel + * @throws PHPExcel_Writer_Exception + */ + public function allNumberFormats(PHPExcel $pPHPExcel = null) + { + // Get an array of unique number formats + $aNumFmts = array(); + $aStyles = $this->allStyles($pPHPExcel); + + foreach ($aStyles as $style) { + if ($style->getNumberFormat()->getBuiltInFormatCode() === false && !array_key_exists($style->getNumberFormat()->getHashCode(), $aNumFmts)) { + $aNumFmts[ $style->getNumberFormat()->getHashCode() ] = $style->getNumberFormat(); + } + } + + return $aNumFmts; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Theme.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Theme.php new file mode 100644 index 0000000..223e402 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Theme.php @@ -0,0 +1,869 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + + +/** + * PHPExcel_Writer_Excel2007_Theme + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + */ +class PHPExcel_Writer_Excel2007_Theme extends PHPExcel_Writer_Excel2007_WriterPart +{ + /** + * Map of Major fonts to write + * @static array of string + * + */ + private static $majorFonts = array( + 'Jpan' => 'ï¼­ï¼³ Pゴシック', + 'Hang' => 'ë§‘ì€ ê³ ë”•', + 'Hans' => '宋体', + 'Hant' => '新細明體', + 'Arab' => 'Times New Roman', + 'Hebr' => 'Times New Roman', + 'Thai' => 'Tahoma', + 'Ethi' => 'Nyala', + 'Beng' => 'Vrinda', + 'Gujr' => 'Shruti', + 'Khmr' => 'MoolBoran', + 'Knda' => 'Tunga', + 'Guru' => 'Raavi', + 'Cans' => 'Euphemia', + 'Cher' => 'Plantagenet Cherokee', + 'Yiii' => 'Microsoft Yi Baiti', + 'Tibt' => 'Microsoft Himalaya', + 'Thaa' => 'MV Boli', + 'Deva' => 'Mangal', + 'Telu' => 'Gautami', + 'Taml' => 'Latha', + 'Syrc' => 'Estrangelo Edessa', + 'Orya' => 'Kalinga', + 'Mlym' => 'Kartika', + 'Laoo' => 'DokChampa', + 'Sinh' => 'Iskoola Pota', + 'Mong' => 'Mongolian Baiti', + 'Viet' => 'Times New Roman', + 'Uigh' => 'Microsoft Uighur', + 'Geor' => 'Sylfaen', + ); + + /** + * Map of Minor fonts to write + * @static array of string + * + */ + private static $minorFonts = array( + 'Jpan' => 'ï¼­ï¼³ Pゴシック', + 'Hang' => 'ë§‘ì€ ê³ ë”•', + 'Hans' => '宋体', + 'Hant' => '新細明體', + 'Arab' => 'Arial', + 'Hebr' => 'Arial', + 'Thai' => 'Tahoma', + 'Ethi' => 'Nyala', + 'Beng' => 'Vrinda', + 'Gujr' => 'Shruti', + 'Khmr' => 'DaunPenh', + 'Knda' => 'Tunga', + 'Guru' => 'Raavi', + 'Cans' => 'Euphemia', + 'Cher' => 'Plantagenet Cherokee', + 'Yiii' => 'Microsoft Yi Baiti', + 'Tibt' => 'Microsoft Himalaya', + 'Thaa' => 'MV Boli', + 'Deva' => 'Mangal', + 'Telu' => 'Gautami', + 'Taml' => 'Latha', + 'Syrc' => 'Estrangelo Edessa', + 'Orya' => 'Kalinga', + 'Mlym' => 'Kartika', + 'Laoo' => 'DokChampa', + 'Sinh' => 'Iskoola Pota', + 'Mong' => 'Mongolian Baiti', + 'Viet' => 'Arial', + 'Uigh' => 'Microsoft Uighur', + 'Geor' => 'Sylfaen', + ); + + /** + * Map of core colours + * @static array of string + * + */ + private static $colourScheme = array( + 'dk2' => '1F497D', + 'lt2' => 'EEECE1', + 'accent1' => '4F81BD', + 'accent2' => 'C0504D', + 'accent3' => '9BBB59', + 'accent4' => '8064A2', + 'accent5' => '4BACC6', + 'accent6' => 'F79646', + 'hlink' => '0000FF', + 'folHlink' => '800080', + ); + + /** + * Write theme to XML format + * + * @param PHPExcel $pPHPExcel + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeTheme(PHPExcel $pPHPExcel = null) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // a:theme + $objWriter->startElement('a:theme'); + $objWriter->writeAttribute('xmlns:a', 'http://schemas.openxmlformats.org/drawingml/2006/main'); + $objWriter->writeAttribute('name', 'Office Theme'); + + // a:themeElements + $objWriter->startElement('a:themeElements'); + + // a:clrScheme + $objWriter->startElement('a:clrScheme'); + $objWriter->writeAttribute('name', 'Office'); + + // a:dk1 + $objWriter->startElement('a:dk1'); + + // a:sysClr + $objWriter->startElement('a:sysClr'); + $objWriter->writeAttribute('val', 'windowText'); + $objWriter->writeAttribute('lastClr', '000000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:lt1 + $objWriter->startElement('a:lt1'); + + // a:sysClr + $objWriter->startElement('a:sysClr'); + $objWriter->writeAttribute('val', 'window'); + $objWriter->writeAttribute('lastClr', 'FFFFFF'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:dk2 + $this->writeColourScheme($objWriter); + + $objWriter->endElement(); + + // a:fontScheme + $objWriter->startElement('a:fontScheme'); + $objWriter->writeAttribute('name', 'Office'); + + // a:majorFont + $objWriter->startElement('a:majorFont'); + $this->writeFonts($objWriter, 'Cambria', self::$majorFonts); + $objWriter->endElement(); + + // a:minorFont + $objWriter->startElement('a:minorFont'); + $this->writeFonts($objWriter, 'Calibri', self::$minorFonts); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:fmtScheme + $objWriter->startElement('a:fmtScheme'); + $objWriter->writeAttribute('name', 'Office'); + + // a:fillStyleLst + $objWriter->startElement('a:fillStyleLst'); + + // a:solidFill + $objWriter->startElement('a:solidFill'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gradFill + $objWriter->startElement('a:gradFill'); + $objWriter->writeAttribute('rotWithShape', '1'); + + // a:gsLst + $objWriter->startElement('a:gsLst'); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '0'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:tint + $objWriter->startElement('a:tint'); + $objWriter->writeAttribute('val', '50000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '300000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '35000'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:tint + $objWriter->startElement('a:tint'); + $objWriter->writeAttribute('val', '37000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '300000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '100000'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:tint + $objWriter->startElement('a:tint'); + $objWriter->writeAttribute('val', '15000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '350000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:lin + $objWriter->startElement('a:lin'); + $objWriter->writeAttribute('ang', '16200000'); + $objWriter->writeAttribute('scaled', '1'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gradFill + $objWriter->startElement('a:gradFill'); + $objWriter->writeAttribute('rotWithShape', '1'); + + // a:gsLst + $objWriter->startElement('a:gsLst'); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '0'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:shade + $objWriter->startElement('a:shade'); + $objWriter->writeAttribute('val', '51000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '130000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '80000'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:shade + $objWriter->startElement('a:shade'); + $objWriter->writeAttribute('val', '93000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '130000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '100000'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:shade + $objWriter->startElement('a:shade'); + $objWriter->writeAttribute('val', '94000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '135000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:lin + $objWriter->startElement('a:lin'); + $objWriter->writeAttribute('ang', '16200000'); + $objWriter->writeAttribute('scaled', '0'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:lnStyleLst + $objWriter->startElement('a:lnStyleLst'); + + // a:ln + $objWriter->startElement('a:ln'); + $objWriter->writeAttribute('w', '9525'); + $objWriter->writeAttribute('cap', 'flat'); + $objWriter->writeAttribute('cmpd', 'sng'); + $objWriter->writeAttribute('algn', 'ctr'); + + // a:solidFill + $objWriter->startElement('a:solidFill'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:shade + $objWriter->startElement('a:shade'); + $objWriter->writeAttribute('val', '95000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '105000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:prstDash + $objWriter->startElement('a:prstDash'); + $objWriter->writeAttribute('val', 'solid'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:ln + $objWriter->startElement('a:ln'); + $objWriter->writeAttribute('w', '25400'); + $objWriter->writeAttribute('cap', 'flat'); + $objWriter->writeAttribute('cmpd', 'sng'); + $objWriter->writeAttribute('algn', 'ctr'); + + // a:solidFill + $objWriter->startElement('a:solidFill'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:prstDash + $objWriter->startElement('a:prstDash'); + $objWriter->writeAttribute('val', 'solid'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:ln + $objWriter->startElement('a:ln'); + $objWriter->writeAttribute('w', '38100'); + $objWriter->writeAttribute('cap', 'flat'); + $objWriter->writeAttribute('cmpd', 'sng'); + $objWriter->writeAttribute('algn', 'ctr'); + + // a:solidFill + $objWriter->startElement('a:solidFill'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:prstDash + $objWriter->startElement('a:prstDash'); + $objWriter->writeAttribute('val', 'solid'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + + + // a:effectStyleLst + $objWriter->startElement('a:effectStyleLst'); + + // a:effectStyle + $objWriter->startElement('a:effectStyle'); + + // a:effectLst + $objWriter->startElement('a:effectLst'); + + // a:outerShdw + $objWriter->startElement('a:outerShdw'); + $objWriter->writeAttribute('blurRad', '40000'); + $objWriter->writeAttribute('dist', '20000'); + $objWriter->writeAttribute('dir', '5400000'); + $objWriter->writeAttribute('rotWithShape', '0'); + + // a:srgbClr + $objWriter->startElement('a:srgbClr'); + $objWriter->writeAttribute('val', '000000'); + + // a:alpha + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', '38000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:effectStyle + $objWriter->startElement('a:effectStyle'); + + // a:effectLst + $objWriter->startElement('a:effectLst'); + + // a:outerShdw + $objWriter->startElement('a:outerShdw'); + $objWriter->writeAttribute('blurRad', '40000'); + $objWriter->writeAttribute('dist', '23000'); + $objWriter->writeAttribute('dir', '5400000'); + $objWriter->writeAttribute('rotWithShape', '0'); + + // a:srgbClr + $objWriter->startElement('a:srgbClr'); + $objWriter->writeAttribute('val', '000000'); + + // a:alpha + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', '35000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:effectStyle + $objWriter->startElement('a:effectStyle'); + + // a:effectLst + $objWriter->startElement('a:effectLst'); + + // a:outerShdw + $objWriter->startElement('a:outerShdw'); + $objWriter->writeAttribute('blurRad', '40000'); + $objWriter->writeAttribute('dist', '23000'); + $objWriter->writeAttribute('dir', '5400000'); + $objWriter->writeAttribute('rotWithShape', '0'); + + // a:srgbClr + $objWriter->startElement('a:srgbClr'); + $objWriter->writeAttribute('val', '000000'); + + // a:alpha + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', '35000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:scene3d + $objWriter->startElement('a:scene3d'); + + // a:camera + $objWriter->startElement('a:camera'); + $objWriter->writeAttribute('prst', 'orthographicFront'); + + // a:rot + $objWriter->startElement('a:rot'); + $objWriter->writeAttribute('lat', '0'); + $objWriter->writeAttribute('lon', '0'); + $objWriter->writeAttribute('rev', '0'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:lightRig + $objWriter->startElement('a:lightRig'); + $objWriter->writeAttribute('rig', 'threePt'); + $objWriter->writeAttribute('dir', 't'); + + // a:rot + $objWriter->startElement('a:rot'); + $objWriter->writeAttribute('lat', '0'); + $objWriter->writeAttribute('lon', '0'); + $objWriter->writeAttribute('rev', '1200000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:sp3d + $objWriter->startElement('a:sp3d'); + + // a:bevelT + $objWriter->startElement('a:bevelT'); + $objWriter->writeAttribute('w', '63500'); + $objWriter->writeAttribute('h', '25400'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:bgFillStyleLst + $objWriter->startElement('a:bgFillStyleLst'); + + // a:solidFill + $objWriter->startElement('a:solidFill'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gradFill + $objWriter->startElement('a:gradFill'); + $objWriter->writeAttribute('rotWithShape', '1'); + + // a:gsLst + $objWriter->startElement('a:gsLst'); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '0'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:tint + $objWriter->startElement('a:tint'); + $objWriter->writeAttribute('val', '40000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '350000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '40000'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:tint + $objWriter->startElement('a:tint'); + $objWriter->writeAttribute('val', '45000'); + $objWriter->endElement(); + + // a:shade + $objWriter->startElement('a:shade'); + $objWriter->writeAttribute('val', '99000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '350000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '100000'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:shade + $objWriter->startElement('a:shade'); + $objWriter->writeAttribute('val', '20000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '255000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:path + $objWriter->startElement('a:path'); + $objWriter->writeAttribute('path', 'circle'); + + // a:fillToRect + $objWriter->startElement('a:fillToRect'); + $objWriter->writeAttribute('l', '50000'); + $objWriter->writeAttribute('t', '-80000'); + $objWriter->writeAttribute('r', '50000'); + $objWriter->writeAttribute('b', '180000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gradFill + $objWriter->startElement('a:gradFill'); + $objWriter->writeAttribute('rotWithShape', '1'); + + // a:gsLst + $objWriter->startElement('a:gsLst'); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '0'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:tint + $objWriter->startElement('a:tint'); + $objWriter->writeAttribute('val', '80000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '300000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '100000'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:shade + $objWriter->startElement('a:shade'); + $objWriter->writeAttribute('val', '30000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '200000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:path + $objWriter->startElement('a:path'); + $objWriter->writeAttribute('path', 'circle'); + + // a:fillToRect + $objWriter->startElement('a:fillToRect'); + $objWriter->writeAttribute('l', '50000'); + $objWriter->writeAttribute('t', '50000'); + $objWriter->writeAttribute('r', '50000'); + $objWriter->writeAttribute('b', '50000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:objectDefaults + $objWriter->writeElement('a:objectDefaults', null); + + // a:extraClrSchemeLst + $objWriter->writeElement('a:extraClrSchemeLst', null); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write fonts to XML format + * + * @param PHPExcel_Shared_XMLWriter $objWriter + * @param string $latinFont + * @param array of string $fontSet + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + private function writeFonts($objWriter, $latinFont, $fontSet) + { + // a:latin + $objWriter->startElement('a:latin'); + $objWriter->writeAttribute('typeface', $latinFont); + $objWriter->endElement(); + + // a:ea + $objWriter->startElement('a:ea'); + $objWriter->writeAttribute('typeface', ''); + $objWriter->endElement(); + + // a:cs + $objWriter->startElement('a:cs'); + $objWriter->writeAttribute('typeface', ''); + $objWriter->endElement(); + + foreach ($fontSet as $fontScript => $typeface) { + $objWriter->startElement('a:font'); + $objWriter->writeAttribute('script', $fontScript); + $objWriter->writeAttribute('typeface', $typeface); + $objWriter->endElement(); + } + } + + /** + * Write colour scheme to XML format + * + * @param PHPExcel_Shared_XMLWriter $objWriter + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + private function writeColourScheme($objWriter) + { + foreach (self::$colourScheme as $colourName => $colourValue) { + $objWriter->startElement('a:'.$colourName); + + $objWriter->startElement('a:srgbClr'); + $objWriter->writeAttribute('val', $colourValue); + $objWriter->endElement(); + + $objWriter->endElement(); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Workbook.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Workbook.php new file mode 100644 index 0000000..87c877e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Workbook.php @@ -0,0 +1,448 @@ +<?php + +/** + * PHPExcel_Writer_Excel2007_Workbook + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_Excel2007_Workbook extends PHPExcel_Writer_Excel2007_WriterPart +{ + /** + * Write workbook to XML format + * + * @param PHPExcel $pPHPExcel + * @param boolean $recalcRequired Indicate whether formulas should be recalculated before writing + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeWorkbook(PHPExcel $pPHPExcel = null, $recalcRequired = false) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // workbook + $objWriter->startElement('workbook'); + $objWriter->writeAttribute('xml:space', 'preserve'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'); + $objWriter->writeAttribute('xmlns:r', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships'); + + // fileVersion + $this->writeFileVersion($objWriter); + + // workbookPr + $this->writeWorkbookPr($objWriter); + + // workbookProtection + $this->writeWorkbookProtection($objWriter, $pPHPExcel); + + // bookViews + if ($this->getParentWriter()->getOffice2003Compatibility() === false) { + $this->writeBookViews($objWriter, $pPHPExcel); + } + + // sheets + $this->writeSheets($objWriter, $pPHPExcel); + + // definedNames + $this->writeDefinedNames($objWriter, $pPHPExcel); + + // calcPr + $this->writeCalcPr($objWriter, $recalcRequired); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write file version + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @throws PHPExcel_Writer_Exception + */ + private function writeFileVersion(PHPExcel_Shared_XMLWriter $objWriter = null) + { + $objWriter->startElement('fileVersion'); + $objWriter->writeAttribute('appName', 'xl'); + $objWriter->writeAttribute('lastEdited', '4'); + $objWriter->writeAttribute('lowestEdited', '4'); + $objWriter->writeAttribute('rupBuild', '4505'); + $objWriter->endElement(); + } + + /** + * Write WorkbookPr + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @throws PHPExcel_Writer_Exception + */ + private function writeWorkbookPr(PHPExcel_Shared_XMLWriter $objWriter = null) + { + $objWriter->startElement('workbookPr'); + + if (PHPExcel_Shared_Date::getExcelCalendar() == PHPExcel_Shared_Date::CALENDAR_MAC_1904) { + $objWriter->writeAttribute('date1904', '1'); + } + + $objWriter->writeAttribute('codeName', 'ThisWorkbook'); + + $objWriter->endElement(); + } + + /** + * Write BookViews + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel $pPHPExcel + * @throws PHPExcel_Writer_Exception + */ + private function writeBookViews(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel $pPHPExcel = null) + { + // bookViews + $objWriter->startElement('bookViews'); + + // workbookView + $objWriter->startElement('workbookView'); + + $objWriter->writeAttribute('activeTab', $pPHPExcel->getActiveSheetIndex()); + $objWriter->writeAttribute('autoFilterDateGrouping', '1'); + $objWriter->writeAttribute('firstSheet', '0'); + $objWriter->writeAttribute('minimized', '0'); + $objWriter->writeAttribute('showHorizontalScroll', '1'); + $objWriter->writeAttribute('showSheetTabs', '1'); + $objWriter->writeAttribute('showVerticalScroll', '1'); + $objWriter->writeAttribute('tabRatio', '600'); + $objWriter->writeAttribute('visibility', 'visible'); + + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write WorkbookProtection + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel $pPHPExcel + * @throws PHPExcel_Writer_Exception + */ + private function writeWorkbookProtection(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel $pPHPExcel = null) + { + if ($pPHPExcel->getSecurity()->isSecurityEnabled()) { + $objWriter->startElement('workbookProtection'); + $objWriter->writeAttribute('lockRevision', ($pPHPExcel->getSecurity()->getLockRevision() ? 'true' : 'false')); + $objWriter->writeAttribute('lockStructure', ($pPHPExcel->getSecurity()->getLockStructure() ? 'true' : 'false')); + $objWriter->writeAttribute('lockWindows', ($pPHPExcel->getSecurity()->getLockWindows() ? 'true' : 'false')); + + if ($pPHPExcel->getSecurity()->getRevisionsPassword() != '') { + $objWriter->writeAttribute('revisionsPassword', $pPHPExcel->getSecurity()->getRevisionsPassword()); + } + + if ($pPHPExcel->getSecurity()->getWorkbookPassword() != '') { + $objWriter->writeAttribute('workbookPassword', $pPHPExcel->getSecurity()->getWorkbookPassword()); + } + + $objWriter->endElement(); + } + } + + /** + * Write calcPr + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param boolean $recalcRequired Indicate whether formulas should be recalculated before writing + * @throws PHPExcel_Writer_Exception + */ + private function writeCalcPr(PHPExcel_Shared_XMLWriter $objWriter = null, $recalcRequired = true) + { + $objWriter->startElement('calcPr'); + + // Set the calcid to a higher value than Excel itself will use, otherwise Excel will always recalc + // If MS Excel does do a recalc, then users opening a file in MS Excel will be prompted to save on exit + // because the file has changed + $objWriter->writeAttribute('calcId', '999999'); + $objWriter->writeAttribute('calcMode', 'auto'); + // fullCalcOnLoad isn't needed if we've recalculating for the save + $objWriter->writeAttribute('calcCompleted', ($recalcRequired) ? 1 : 0); + $objWriter->writeAttribute('fullCalcOnLoad', ($recalcRequired) ? 0 : 1); + + $objWriter->endElement(); + } + + /** + * Write sheets + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel $pPHPExcel + * @throws PHPExcel_Writer_Exception + */ + private function writeSheets(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel $pPHPExcel = null) + { + // Write sheets + $objWriter->startElement('sheets'); + $sheetCount = $pPHPExcel->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + // sheet + $this->writeSheet( + $objWriter, + $pPHPExcel->getSheet($i)->getTitle(), + ($i + 1), + ($i + 1 + 3), + $pPHPExcel->getSheet($i)->getSheetState() + ); + } + + $objWriter->endElement(); + } + + /** + * Write sheet + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param string $pSheetname Sheet name + * @param int $pSheetId Sheet id + * @param int $pRelId Relationship ID + * @param string $sheetState Sheet state (visible, hidden, veryHidden) + * @throws PHPExcel_Writer_Exception + */ + private function writeSheet(PHPExcel_Shared_XMLWriter $objWriter = null, $pSheetname = '', $pSheetId = 1, $pRelId = 1, $sheetState = 'visible') + { + if ($pSheetname != '') { + // Write sheet + $objWriter->startElement('sheet'); + $objWriter->writeAttribute('name', $pSheetname); + $objWriter->writeAttribute('sheetId', $pSheetId); + if ($sheetState != 'visible' && $sheetState != '') { + $objWriter->writeAttribute('state', $sheetState); + } + $objWriter->writeAttribute('r:id', 'rId' . $pRelId); + $objWriter->endElement(); + } else { + throw new PHPExcel_Writer_Exception("Invalid parameters passed."); + } + } + + /** + * Write Defined Names + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel $pPHPExcel + * @throws PHPExcel_Writer_Exception + */ + private function writeDefinedNames(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel $pPHPExcel = null) + { + // Write defined names + $objWriter->startElement('definedNames'); + + // Named ranges + if (count($pPHPExcel->getNamedRanges()) > 0) { + // Named ranges + $this->writeNamedRanges($objWriter, $pPHPExcel); + } + + // Other defined names + $sheetCount = $pPHPExcel->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + // definedName for autoFilter + $this->writeDefinedNameForAutofilter($objWriter, $pPHPExcel->getSheet($i), $i); + + // definedName for Print_Titles + $this->writeDefinedNameForPrintTitles($objWriter, $pPHPExcel->getSheet($i), $i); + + // definedName for Print_Area + $this->writeDefinedNameForPrintArea($objWriter, $pPHPExcel->getSheet($i), $i); + } + + $objWriter->endElement(); + } + + /** + * Write named ranges + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel $pPHPExcel + * @throws PHPExcel_Writer_Exception + */ + private function writeNamedRanges(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel $pPHPExcel) + { + // Loop named ranges + $namedRanges = $pPHPExcel->getNamedRanges(); + foreach ($namedRanges as $namedRange) { + $this->writeDefinedNameForNamedRange($objWriter, $namedRange); + } + } + + /** + * Write Defined Name for named range + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_NamedRange $pNamedRange + * @throws PHPExcel_Writer_Exception + */ + private function writeDefinedNameForNamedRange(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_NamedRange $pNamedRange) + { + // definedName for named range + $objWriter->startElement('definedName'); + $objWriter->writeAttribute('name', $pNamedRange->getName()); + if ($pNamedRange->getLocalOnly()) { + $objWriter->writeAttribute('localSheetId', $pNamedRange->getScope()->getParent()->getIndex($pNamedRange->getScope())); + } + + // Create absolute coordinate and write as raw text + $range = PHPExcel_Cell::splitRange($pNamedRange->getRange()); + for ($i = 0; $i < count($range); $i++) { + $range[$i][0] = '\'' . str_replace("'", "''", $pNamedRange->getWorksheet()->getTitle()) . '\'!' . PHPExcel_Cell::absoluteReference($range[$i][0]); + if (isset($range[$i][1])) { + $range[$i][1] = PHPExcel_Cell::absoluteReference($range[$i][1]); + } + } + $range = PHPExcel_Cell::buildRange($range); + + $objWriter->writeRawData($range); + + $objWriter->endElement(); + } + + /** + * Write Defined Name for autoFilter + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet + * @param int $pSheetId + * @throws PHPExcel_Writer_Exception + */ + private function writeDefinedNameForAutofilter(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null, $pSheetId = 0) + { + // definedName for autoFilter + $autoFilterRange = $pSheet->getAutoFilter()->getRange(); + if (!empty($autoFilterRange)) { + $objWriter->startElement('definedName'); + $objWriter->writeAttribute('name', '_xlnm._FilterDatabase'); + $objWriter->writeAttribute('localSheetId', $pSheetId); + $objWriter->writeAttribute('hidden', '1'); + + // Create absolute coordinate and write as raw text + $range = PHPExcel_Cell::splitRange($autoFilterRange); + $range = $range[0]; + // Strip any worksheet ref so we can make the cell ref absolute + if (strpos($range[0], '!') !== false) { + list($ws, $range[0]) = explode('!', $range[0]); + } + + $range[0] = PHPExcel_Cell::absoluteCoordinate($range[0]); + $range[1] = PHPExcel_Cell::absoluteCoordinate($range[1]); + $range = implode(':', $range); + + $objWriter->writeRawData('\'' . str_replace("'", "''", $pSheet->getTitle()) . '\'!' . $range); + + $objWriter->endElement(); + } + } + + /** + * Write Defined Name for PrintTitles + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet + * @param int $pSheetId + * @throws PHPExcel_Writer_Exception + */ + private function writeDefinedNameForPrintTitles(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null, $pSheetId = 0) + { + // definedName for PrintTitles + if ($pSheet->getPageSetup()->isColumnsToRepeatAtLeftSet() || $pSheet->getPageSetup()->isRowsToRepeatAtTopSet()) { + $objWriter->startElement('definedName'); + $objWriter->writeAttribute('name', '_xlnm.Print_Titles'); + $objWriter->writeAttribute('localSheetId', $pSheetId); + + // Setting string + $settingString = ''; + + // Columns to repeat + if ($pSheet->getPageSetup()->isColumnsToRepeatAtLeftSet()) { + $repeat = $pSheet->getPageSetup()->getColumnsToRepeatAtLeft(); + + $settingString .= '\'' . str_replace("'", "''", $pSheet->getTitle()) . '\'!$' . $repeat[0] . ':$' . $repeat[1]; + } + + // Rows to repeat + if ($pSheet->getPageSetup()->isRowsToRepeatAtTopSet()) { + if ($pSheet->getPageSetup()->isColumnsToRepeatAtLeftSet()) { + $settingString .= ','; + } + + $repeat = $pSheet->getPageSetup()->getRowsToRepeatAtTop(); + + $settingString .= '\'' . str_replace("'", "''", $pSheet->getTitle()) . '\'!$' . $repeat[0] . ':$' . $repeat[1]; + } + + $objWriter->writeRawData($settingString); + + $objWriter->endElement(); + } + } + + /** + * Write Defined Name for PrintTitles + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet + * @param int $pSheetId + * @throws PHPExcel_Writer_Exception + */ + private function writeDefinedNameForPrintArea(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null, $pSheetId = 0) + { + // definedName for PrintArea + if ($pSheet->getPageSetup()->isPrintAreaSet()) { + $objWriter->startElement('definedName'); + $objWriter->writeAttribute('name', '_xlnm.Print_Area'); + $objWriter->writeAttribute('localSheetId', $pSheetId); + + // Setting string + $settingString = ''; + + // Print area + $printArea = PHPExcel_Cell::splitRange($pSheet->getPageSetup()->getPrintArea()); + + $chunks = array(); + foreach ($printArea as $printAreaRect) { + $printAreaRect[0] = PHPExcel_Cell::absoluteReference($printAreaRect[0]); + $printAreaRect[1] = PHPExcel_Cell::absoluteReference($printAreaRect[1]); + $chunks[] = '\'' . str_replace("'", "''", $pSheet->getTitle()) . '\'!' . implode(':', $printAreaRect); + } + + $objWriter->writeRawData(implode(',', $chunks)); + + $objWriter->endElement(); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Worksheet.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Worksheet.php new file mode 100644 index 0000000..c211403 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Worksheet.php @@ -0,0 +1,1219 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + + +/** + * PHPExcel_Writer_Excel2007_Worksheet + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + */ +class PHPExcel_Writer_Excel2007_Worksheet extends PHPExcel_Writer_Excel2007_WriterPart +{ + /** + * Write worksheet to XML format + * + * @param PHPExcel_Worksheet $pSheet + * @param string[] $pStringTable + * @param boolean $includeCharts Flag indicating if we should write charts + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeWorksheet($pSheet = null, $pStringTable = null, $includeCharts = false) + { + if (!is_null($pSheet)) { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Worksheet + $objWriter->startElement('worksheet'); + $objWriter->writeAttribute('xml:space', 'preserve'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'); + $objWriter->writeAttribute('xmlns:r', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships'); + + // sheetPr + $this->writeSheetPr($objWriter, $pSheet); + + // Dimension + $this->writeDimension($objWriter, $pSheet); + + // sheetViews + $this->writeSheetViews($objWriter, $pSheet); + + // sheetFormatPr + $this->writeSheetFormatPr($objWriter, $pSheet); + + // cols + $this->writeCols($objWriter, $pSheet); + + // sheetData + $this->writeSheetData($objWriter, $pSheet, $pStringTable); + + // sheetProtection + $this->writeSheetProtection($objWriter, $pSheet); + + // protectedRanges + $this->writeProtectedRanges($objWriter, $pSheet); + + // autoFilter + $this->writeAutoFilter($objWriter, $pSheet); + + // mergeCells + $this->writeMergeCells($objWriter, $pSheet); + + // conditionalFormatting + $this->writeConditionalFormatting($objWriter, $pSheet); + + // dataValidations + $this->writeDataValidations($objWriter, $pSheet); + + // hyperlinks + $this->writeHyperlinks($objWriter, $pSheet); + + // Print options + $this->writePrintOptions($objWriter, $pSheet); + + // Page margins + $this->writePageMargins($objWriter, $pSheet); + + // Page setup + $this->writePageSetup($objWriter, $pSheet); + + // Header / footer + $this->writeHeaderFooter($objWriter, $pSheet); + + // Breaks + $this->writeBreaks($objWriter, $pSheet); + + // Drawings and/or Charts + $this->writeDrawings($objWriter, $pSheet, $includeCharts); + + // LegacyDrawing + $this->writeLegacyDrawing($objWriter, $pSheet); + + // LegacyDrawingHF + $this->writeLegacyDrawingHF($objWriter, $pSheet); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } else { + throw new PHPExcel_Writer_Exception("Invalid PHPExcel_Worksheet object passed."); + } + } + + /** + * Write SheetPr + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writeSheetPr(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + // sheetPr + $objWriter->startElement('sheetPr'); + //$objWriter->writeAttribute('codeName', $pSheet->getTitle()); + if ($pSheet->getParent()->hasMacros()) {//if the workbook have macros, we need to have codeName for the sheet + if ($pSheet->hasCodeName()==false) { + $pSheet->setCodeName($pSheet->getTitle()); + } + $objWriter->writeAttribute('codeName', $pSheet->getCodeName()); + } + $autoFilterRange = $pSheet->getAutoFilter()->getRange(); + if (!empty($autoFilterRange)) { + $objWriter->writeAttribute('filterMode', 1); + $pSheet->getAutoFilter()->showHideRows(); + } + + // tabColor + if ($pSheet->isTabColorSet()) { + $objWriter->startElement('tabColor'); + $objWriter->writeAttribute('rgb', $pSheet->getTabColor()->getARGB()); + $objWriter->endElement(); + } + + // outlinePr + $objWriter->startElement('outlinePr'); + $objWriter->writeAttribute('summaryBelow', ($pSheet->getShowSummaryBelow() ? '1' : '0')); + $objWriter->writeAttribute('summaryRight', ($pSheet->getShowSummaryRight() ? '1' : '0')); + $objWriter->endElement(); + + // pageSetUpPr + if ($pSheet->getPageSetup()->getFitToPage()) { + $objWriter->startElement('pageSetUpPr'); + $objWriter->writeAttribute('fitToPage', '1'); + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + + /** + * Write Dimension + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writeDimension(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + // dimension + $objWriter->startElement('dimension'); + $objWriter->writeAttribute('ref', $pSheet->calculateWorksheetDimension()); + $objWriter->endElement(); + } + + /** + * Write SheetViews + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writeSheetViews(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + // sheetViews + $objWriter->startElement('sheetViews'); + + // Sheet selected? + $sheetSelected = false; + if ($this->getParentWriter()->getPHPExcel()->getIndex($pSheet) == $this->getParentWriter()->getPHPExcel()->getActiveSheetIndex()) { + $sheetSelected = true; + } + + // sheetView + $objWriter->startElement('sheetView'); + $objWriter->writeAttribute('tabSelected', $sheetSelected ? '1' : '0'); + $objWriter->writeAttribute('workbookViewId', '0'); + + // Zoom scales + if ($pSheet->getSheetView()->getZoomScale() != 100) { + $objWriter->writeAttribute('zoomScale', $pSheet->getSheetView()->getZoomScale()); + } + if ($pSheet->getSheetView()->getZoomScaleNormal() != 100) { + $objWriter->writeAttribute('zoomScaleNormal', $pSheet->getSheetView()->getZoomScaleNormal()); + } + + // View Layout Type + if ($pSheet->getSheetView()->getView() !== PHPExcel_Worksheet_SheetView::SHEETVIEW_NORMAL) { + $objWriter->writeAttribute('view', $pSheet->getSheetView()->getView()); + } + + // Gridlines + if ($pSheet->getShowGridlines()) { + $objWriter->writeAttribute('showGridLines', 'true'); + } else { + $objWriter->writeAttribute('showGridLines', 'false'); + } + + // Row and column headers + if ($pSheet->getShowRowColHeaders()) { + $objWriter->writeAttribute('showRowColHeaders', '1'); + } else { + $objWriter->writeAttribute('showRowColHeaders', '0'); + } + + // Right-to-left + if ($pSheet->getRightToLeft()) { + $objWriter->writeAttribute('rightToLeft', 'true'); + } + + $activeCell = $pSheet->getActiveCell(); + + // Pane + $pane = ''; + $topLeftCell = $pSheet->getFreezePane(); + if (($topLeftCell != '') && ($topLeftCell != 'A1')) { + $activeCell = empty($activeCell) ? $topLeftCell : $activeCell; + // Calculate freeze coordinates + $xSplit = $ySplit = 0; + + list($xSplit, $ySplit) = PHPExcel_Cell::coordinateFromString($topLeftCell); + $xSplit = PHPExcel_Cell::columnIndexFromString($xSplit); + + // pane + $pane = 'topRight'; + $objWriter->startElement('pane'); + if ($xSplit > 1) { + $objWriter->writeAttribute('xSplit', $xSplit - 1); + } + if ($ySplit > 1) { + $objWriter->writeAttribute('ySplit', $ySplit - 1); + $pane = ($xSplit > 1) ? 'bottomRight' : 'bottomLeft'; + } + $objWriter->writeAttribute('topLeftCell', $topLeftCell); + $objWriter->writeAttribute('activePane', $pane); + $objWriter->writeAttribute('state', 'frozen'); + $objWriter->endElement(); + + if (($xSplit > 1) && ($ySplit > 1)) { + // Write additional selections if more than two panes (ie both an X and a Y split) + $objWriter->startElement('selection'); + $objWriter->writeAttribute('pane', 'topRight'); + $objWriter->endElement(); + $objWriter->startElement('selection'); + $objWriter->writeAttribute('pane', 'bottomLeft'); + $objWriter->endElement(); + } + } + + // Selection +// if ($pane != '') { + // Only need to write selection element if we have a split pane + // We cheat a little by over-riding the active cell selection, setting it to the split cell + $objWriter->startElement('selection'); + if ($pane != '') { + $objWriter->writeAttribute('pane', $pane); + } + $objWriter->writeAttribute('activeCell', $activeCell); + $objWriter->writeAttribute('sqref', $activeCell); + $objWriter->endElement(); +// } + + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write SheetFormatPr + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writeSheetFormatPr(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + // sheetFormatPr + $objWriter->startElement('sheetFormatPr'); + + // Default row height + if ($pSheet->getDefaultRowDimension()->getRowHeight() >= 0) { + $objWriter->writeAttribute('customHeight', 'true'); + $objWriter->writeAttribute('defaultRowHeight', PHPExcel_Shared_String::FormatNumber($pSheet->getDefaultRowDimension()->getRowHeight())); + } else { + $objWriter->writeAttribute('defaultRowHeight', '14.4'); + } + + // Set Zero Height row + if ((string)$pSheet->getDefaultRowDimension()->getZeroHeight() == '1' || + strtolower((string)$pSheet->getDefaultRowDimension()->getZeroHeight()) == 'true') { + $objWriter->writeAttribute('zeroHeight', '1'); + } + + // Default column width + if ($pSheet->getDefaultColumnDimension()->getWidth() >= 0) { + $objWriter->writeAttribute('defaultColWidth', PHPExcel_Shared_String::FormatNumber($pSheet->getDefaultColumnDimension()->getWidth())); + } + + // Outline level - row + $outlineLevelRow = 0; + foreach ($pSheet->getRowDimensions() as $dimension) { + if ($dimension->getOutlineLevel() > $outlineLevelRow) { + $outlineLevelRow = $dimension->getOutlineLevel(); + } + } + $objWriter->writeAttribute('outlineLevelRow', (int)$outlineLevelRow); + + // Outline level - column + $outlineLevelCol = 0; + foreach ($pSheet->getColumnDimensions() as $dimension) { + if ($dimension->getOutlineLevel() > $outlineLevelCol) { + $outlineLevelCol = $dimension->getOutlineLevel(); + } + } + $objWriter->writeAttribute('outlineLevelCol', (int)$outlineLevelCol); + + $objWriter->endElement(); + } + + /** + * Write Cols + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writeCols(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + // cols + if (count($pSheet->getColumnDimensions()) > 0) { + $objWriter->startElement('cols'); + + $pSheet->calculateColumnWidths(); + + // Loop through column dimensions + foreach ($pSheet->getColumnDimensions() as $colDimension) { + // col + $objWriter->startElement('col'); + $objWriter->writeAttribute('min', PHPExcel_Cell::columnIndexFromString($colDimension->getColumnIndex())); + $objWriter->writeAttribute('max', PHPExcel_Cell::columnIndexFromString($colDimension->getColumnIndex())); + + if ($colDimension->getWidth() < 0) { + // No width set, apply default of 10 + $objWriter->writeAttribute('width', '9.10'); + } else { + // Width set + $objWriter->writeAttribute('width', PHPExcel_Shared_String::FormatNumber($colDimension->getWidth())); + } + + // Column visibility + if ($colDimension->getVisible() == false) { + $objWriter->writeAttribute('hidden', 'true'); + } + + // Auto size? + if ($colDimension->getAutoSize()) { + $objWriter->writeAttribute('bestFit', 'true'); + } + + // Custom width? + if ($colDimension->getWidth() != $pSheet->getDefaultColumnDimension()->getWidth()) { + $objWriter->writeAttribute('customWidth', 'true'); + } + + // Collapsed + if ($colDimension->getCollapsed() == true) { + $objWriter->writeAttribute('collapsed', 'true'); + } + + // Outline level + if ($colDimension->getOutlineLevel() > 0) { + $objWriter->writeAttribute('outlineLevel', $colDimension->getOutlineLevel()); + } + + // Style + $objWriter->writeAttribute('style', $colDimension->getXfIndex()); + + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + } + + /** + * Write SheetProtection + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writeSheetProtection(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + // sheetProtection + $objWriter->startElement('sheetProtection'); + + if ($pSheet->getProtection()->getPassword() != '') { + $objWriter->writeAttribute('password', $pSheet->getProtection()->getPassword()); + } + + $objWriter->writeAttribute('sheet', ($pSheet->getProtection()->getSheet() ? 'true' : 'false')); + $objWriter->writeAttribute('objects', ($pSheet->getProtection()->getObjects() ? 'true' : 'false')); + $objWriter->writeAttribute('scenarios', ($pSheet->getProtection()->getScenarios() ? 'true' : 'false')); + $objWriter->writeAttribute('formatCells', ($pSheet->getProtection()->getFormatCells() ? 'true' : 'false')); + $objWriter->writeAttribute('formatColumns', ($pSheet->getProtection()->getFormatColumns() ? 'true' : 'false')); + $objWriter->writeAttribute('formatRows', ($pSheet->getProtection()->getFormatRows() ? 'true' : 'false')); + $objWriter->writeAttribute('insertColumns', ($pSheet->getProtection()->getInsertColumns() ? 'true' : 'false')); + $objWriter->writeAttribute('insertRows', ($pSheet->getProtection()->getInsertRows() ? 'true' : 'false')); + $objWriter->writeAttribute('insertHyperlinks', ($pSheet->getProtection()->getInsertHyperlinks() ? 'true' : 'false')); + $objWriter->writeAttribute('deleteColumns', ($pSheet->getProtection()->getDeleteColumns() ? 'true' : 'false')); + $objWriter->writeAttribute('deleteRows', ($pSheet->getProtection()->getDeleteRows() ? 'true' : 'false')); + $objWriter->writeAttribute('selectLockedCells', ($pSheet->getProtection()->getSelectLockedCells() ? 'true' : 'false')); + $objWriter->writeAttribute('sort', ($pSheet->getProtection()->getSort() ? 'true' : 'false')); + $objWriter->writeAttribute('autoFilter', ($pSheet->getProtection()->getAutoFilter() ? 'true' : 'false')); + $objWriter->writeAttribute('pivotTables', ($pSheet->getProtection()->getPivotTables() ? 'true' : 'false')); + $objWriter->writeAttribute('selectUnlockedCells', ($pSheet->getProtection()->getSelectUnlockedCells() ? 'true' : 'false')); + $objWriter->endElement(); + } + + /** + * Write ConditionalFormatting + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writeConditionalFormatting(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + // Conditional id + $id = 1; + + // Loop through styles in the current worksheet + foreach ($pSheet->getConditionalStylesCollection() as $cellCoordinate => $conditionalStyles) { + foreach ($conditionalStyles as $conditional) { + // WHY was this again? + // if ($this->getParentWriter()->getStylesConditionalHashTable()->getIndexForHashCode($conditional->getHashCode()) == '') { + // continue; + // } + if ($conditional->getConditionType() != PHPExcel_Style_Conditional::CONDITION_NONE) { + // conditionalFormatting + $objWriter->startElement('conditionalFormatting'); + $objWriter->writeAttribute('sqref', $cellCoordinate); + + // cfRule + $objWriter->startElement('cfRule'); + $objWriter->writeAttribute('type', $conditional->getConditionType()); + $objWriter->writeAttribute('dxfId', $this->getParentWriter()->getStylesConditionalHashTable()->getIndexForHashCode($conditional->getHashCode())); + $objWriter->writeAttribute('priority', $id++); + + if (($conditional->getConditionType() == PHPExcel_Style_Conditional::CONDITION_CELLIS || $conditional->getConditionType() == PHPExcel_Style_Conditional::CONDITION_CONTAINSTEXT) + && $conditional->getOperatorType() != PHPExcel_Style_Conditional::OPERATOR_NONE) { + $objWriter->writeAttribute('operator', $conditional->getOperatorType()); + } + + if ($conditional->getConditionType() == PHPExcel_Style_Conditional::CONDITION_CONTAINSTEXT + && !is_null($conditional->getText())) { + $objWriter->writeAttribute('text', $conditional->getText()); + } + + if ($conditional->getConditionType() == PHPExcel_Style_Conditional::CONDITION_CONTAINSTEXT + && $conditional->getOperatorType() == PHPExcel_Style_Conditional::OPERATOR_CONTAINSTEXT + && !is_null($conditional->getText())) { + $objWriter->writeElement('formula', 'NOT(ISERROR(SEARCH("' . $conditional->getText() . '",' . $cellCoordinate . ')))'); + } elseif ($conditional->getConditionType() == PHPExcel_Style_Conditional::CONDITION_CONTAINSTEXT + && $conditional->getOperatorType() == PHPExcel_Style_Conditional::OPERATOR_BEGINSWITH + && !is_null($conditional->getText())) { + $objWriter->writeElement('formula', 'LEFT(' . $cellCoordinate . ',' . strlen($conditional->getText()) . ')="' . $conditional->getText() . '"'); + } elseif ($conditional->getConditionType() == PHPExcel_Style_Conditional::CONDITION_CONTAINSTEXT + && $conditional->getOperatorType() == PHPExcel_Style_Conditional::OPERATOR_ENDSWITH + && !is_null($conditional->getText())) { + $objWriter->writeElement('formula', 'RIGHT(' . $cellCoordinate . ',' . strlen($conditional->getText()) . ')="' . $conditional->getText() . '"'); + } elseif ($conditional->getConditionType() == PHPExcel_Style_Conditional::CONDITION_CONTAINSTEXT + && $conditional->getOperatorType() == PHPExcel_Style_Conditional::OPERATOR_NOTCONTAINS + && !is_null($conditional->getText())) { + $objWriter->writeElement('formula', 'ISERROR(SEARCH("' . $conditional->getText() . '",' . $cellCoordinate . '))'); + } elseif ($conditional->getConditionType() == PHPExcel_Style_Conditional::CONDITION_CELLIS + || $conditional->getConditionType() == PHPExcel_Style_Conditional::CONDITION_CONTAINSTEXT + || $conditional->getConditionType() == PHPExcel_Style_Conditional::CONDITION_EXPRESSION) { + foreach ($conditional->getConditions() as $formula) { + // Formula + $objWriter->writeElement('formula', $formula); + } + } + + $objWriter->endElement(); + + $objWriter->endElement(); + } + } + } + } + + /** + * Write DataValidations + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writeDataValidations(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + // Datavalidation collection + $dataValidationCollection = $pSheet->getDataValidationCollection(); + + // Write data validations? + if (!empty($dataValidationCollection)) { + $objWriter->startElement('dataValidations'); + $objWriter->writeAttribute('count', count($dataValidationCollection)); + + foreach ($dataValidationCollection as $coordinate => $dv) { + $objWriter->startElement('dataValidation'); + + if ($dv->getType() != '') { + $objWriter->writeAttribute('type', $dv->getType()); + } + + if ($dv->getErrorStyle() != '') { + $objWriter->writeAttribute('errorStyle', $dv->getErrorStyle()); + } + + if ($dv->getOperator() != '') { + $objWriter->writeAttribute('operator', $dv->getOperator()); + } + + $objWriter->writeAttribute('allowBlank', ($dv->getAllowBlank() ? '1' : '0')); + $objWriter->writeAttribute('showDropDown', (!$dv->getShowDropDown() ? '1' : '0')); + $objWriter->writeAttribute('showInputMessage', ($dv->getShowInputMessage() ? '1' : '0')); + $objWriter->writeAttribute('showErrorMessage', ($dv->getShowErrorMessage() ? '1' : '0')); + + if ($dv->getErrorTitle() !== '') { + $objWriter->writeAttribute('errorTitle', $dv->getErrorTitle()); + } + if ($dv->getError() !== '') { + $objWriter->writeAttribute('error', $dv->getError()); + } + if ($dv->getPromptTitle() !== '') { + $objWriter->writeAttribute('promptTitle', $dv->getPromptTitle()); + } + if ($dv->getPrompt() !== '') { + $objWriter->writeAttribute('prompt', $dv->getPrompt()); + } + + $objWriter->writeAttribute('sqref', $coordinate); + + if ($dv->getFormula1() !== '') { + $objWriter->writeElement('formula1', $dv->getFormula1()); + } + if ($dv->getFormula2() !== '') { + $objWriter->writeElement('formula2', $dv->getFormula2()); + } + + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + } + + /** + * Write Hyperlinks + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writeHyperlinks(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + // Hyperlink collection + $hyperlinkCollection = $pSheet->getHyperlinkCollection(); + + // Relation ID + $relationId = 1; + + // Write hyperlinks? + if (!empty($hyperlinkCollection)) { + $objWriter->startElement('hyperlinks'); + + foreach ($hyperlinkCollection as $coordinate => $hyperlink) { + $objWriter->startElement('hyperlink'); + + $objWriter->writeAttribute('ref', $coordinate); + if (!$hyperlink->isInternal()) { + $objWriter->writeAttribute('r:id', 'rId_hyperlink_' . $relationId); + ++$relationId; + } else { + $objWriter->writeAttribute('location', str_replace('sheet://', '', $hyperlink->getUrl())); + } + + if ($hyperlink->getTooltip() != '') { + $objWriter->writeAttribute('tooltip', $hyperlink->getTooltip()); + } + + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + } + + /** + * Write ProtectedRanges + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writeProtectedRanges(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + if (count($pSheet->getProtectedCells()) > 0) { + // protectedRanges + $objWriter->startElement('protectedRanges'); + + // Loop protectedRanges + foreach ($pSheet->getProtectedCells() as $protectedCell => $passwordHash) { + // protectedRange + $objWriter->startElement('protectedRange'); + $objWriter->writeAttribute('name', 'p' . md5($protectedCell)); + $objWriter->writeAttribute('sqref', $protectedCell); + if (!empty($passwordHash)) { + $objWriter->writeAttribute('password', $passwordHash); + } + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + } + + /** + * Write MergeCells + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writeMergeCells(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + if (count($pSheet->getMergeCells()) > 0) { + // mergeCells + $objWriter->startElement('mergeCells'); + + // Loop mergeCells + foreach ($pSheet->getMergeCells() as $mergeCell) { + // mergeCell + $objWriter->startElement('mergeCell'); + $objWriter->writeAttribute('ref', $mergeCell); + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + } + + /** + * Write PrintOptions + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writePrintOptions(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + // printOptions + $objWriter->startElement('printOptions'); + + $objWriter->writeAttribute('gridLines', ($pSheet->getPrintGridlines() ? 'true': 'false')); + $objWriter->writeAttribute('gridLinesSet', 'true'); + + if ($pSheet->getPageSetup()->getHorizontalCentered()) { + $objWriter->writeAttribute('horizontalCentered', 'true'); + } + + if ($pSheet->getPageSetup()->getVerticalCentered()) { + $objWriter->writeAttribute('verticalCentered', 'true'); + } + + $objWriter->endElement(); + } + + /** + * Write PageMargins + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writePageMargins(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + // pageMargins + $objWriter->startElement('pageMargins'); + $objWriter->writeAttribute('left', PHPExcel_Shared_String::FormatNumber($pSheet->getPageMargins()->getLeft())); + $objWriter->writeAttribute('right', PHPExcel_Shared_String::FormatNumber($pSheet->getPageMargins()->getRight())); + $objWriter->writeAttribute('top', PHPExcel_Shared_String::FormatNumber($pSheet->getPageMargins()->getTop())); + $objWriter->writeAttribute('bottom', PHPExcel_Shared_String::FormatNumber($pSheet->getPageMargins()->getBottom())); + $objWriter->writeAttribute('header', PHPExcel_Shared_String::FormatNumber($pSheet->getPageMargins()->getHeader())); + $objWriter->writeAttribute('footer', PHPExcel_Shared_String::FormatNumber($pSheet->getPageMargins()->getFooter())); + $objWriter->endElement(); + } + + /** + * Write AutoFilter + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writeAutoFilter(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + $autoFilterRange = $pSheet->getAutoFilter()->getRange(); + if (!empty($autoFilterRange)) { + // autoFilter + $objWriter->startElement('autoFilter'); + + // Strip any worksheet reference from the filter coordinates + $range = PHPExcel_Cell::splitRange($autoFilterRange); + $range = $range[0]; + // Strip any worksheet ref + if (strpos($range[0], '!') !== false) { + list($ws, $range[0]) = explode('!', $range[0]); + } + $range = implode(':', $range); + + $objWriter->writeAttribute('ref', str_replace('$', '', $range)); + + $columns = $pSheet->getAutoFilter()->getColumns(); + if (count($columns > 0)) { + foreach ($columns as $columnID => $column) { + $rules = $column->getRules(); + if (count($rules) > 0) { + $objWriter->startElement('filterColumn'); + $objWriter->writeAttribute('colId', $pSheet->getAutoFilter()->getColumnOffset($columnID)); + + $objWriter->startElement($column->getFilterType()); + if ($column->getJoin() == PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_COLUMN_JOIN_AND) { + $objWriter->writeAttribute('and', 1); + } + + foreach ($rules as $rule) { + if (($column->getFilterType() === PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_FILTER) && + ($rule->getOperator() === PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL) && + ($rule->getValue() === '')) { + // Filter rule for Blanks + $objWriter->writeAttribute('blank', 1); + } elseif ($rule->getRuleType() === PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMICFILTER) { + // Dynamic Filter Rule + $objWriter->writeAttribute('type', $rule->getGrouping()); + $val = $column->getAttribute('val'); + if ($val !== null) { + $objWriter->writeAttribute('val', $val); + } + $maxVal = $column->getAttribute('maxVal'); + if ($maxVal !== null) { + $objWriter->writeAttribute('maxVal', $maxVal); + } + } elseif ($rule->getRuleType() === PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_TOPTENFILTER) { + // Top 10 Filter Rule + $objWriter->writeAttribute('val', $rule->getValue()); + $objWriter->writeAttribute('percent', (($rule->getOperator() === PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_PERCENT) ? '1' : '0')); + $objWriter->writeAttribute('top', (($rule->getGrouping() === PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_TOP) ? '1': '0')); + } else { + // Filter, DateGroupItem or CustomFilter + $objWriter->startElement($rule->getRuleType()); + + if ($rule->getOperator() !== PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL) { + $objWriter->writeAttribute('operator', $rule->getOperator()); + } + if ($rule->getRuleType() === PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP) { + // Date Group filters + foreach ($rule->getValue() as $key => $value) { + if ($value > '') { + $objWriter->writeAttribute($key, $value); + } + } + $objWriter->writeAttribute('dateTimeGrouping', $rule->getGrouping()); + } else { + $objWriter->writeAttribute('val', $rule->getValue()); + } + + $objWriter->endElement(); + } + } + + $objWriter->endElement(); + + $objWriter->endElement(); + } + } + } + $objWriter->endElement(); + } + } + + /** + * Write PageSetup + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writePageSetup(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + // pageSetup + $objWriter->startElement('pageSetup'); + $objWriter->writeAttribute('paperSize', $pSheet->getPageSetup()->getPaperSize()); + $objWriter->writeAttribute('orientation', $pSheet->getPageSetup()->getOrientation()); + + if (!is_null($pSheet->getPageSetup()->getScale())) { + $objWriter->writeAttribute('scale', $pSheet->getPageSetup()->getScale()); + } + if (!is_null($pSheet->getPageSetup()->getFitToHeight())) { + $objWriter->writeAttribute('fitToHeight', $pSheet->getPageSetup()->getFitToHeight()); + } else { + $objWriter->writeAttribute('fitToHeight', '0'); + } + if (!is_null($pSheet->getPageSetup()->getFitToWidth())) { + $objWriter->writeAttribute('fitToWidth', $pSheet->getPageSetup()->getFitToWidth()); + } else { + $objWriter->writeAttribute('fitToWidth', '0'); + } + if (!is_null($pSheet->getPageSetup()->getFirstPageNumber())) { + $objWriter->writeAttribute('firstPageNumber', $pSheet->getPageSetup()->getFirstPageNumber()); + $objWriter->writeAttribute('useFirstPageNumber', '1'); + } + + $objWriter->endElement(); + } + + /** + * Write Header / Footer + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writeHeaderFooter(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + // headerFooter + $objWriter->startElement('headerFooter'); + $objWriter->writeAttribute('differentOddEven', ($pSheet->getHeaderFooter()->getDifferentOddEven() ? 'true' : 'false')); + $objWriter->writeAttribute('differentFirst', ($pSheet->getHeaderFooter()->getDifferentFirst() ? 'true' : 'false')); + $objWriter->writeAttribute('scaleWithDoc', ($pSheet->getHeaderFooter()->getScaleWithDocument() ? 'true' : 'false')); + $objWriter->writeAttribute('alignWithMargins', ($pSheet->getHeaderFooter()->getAlignWithMargins() ? 'true' : 'false')); + + $objWriter->writeElement('oddHeader', $pSheet->getHeaderFooter()->getOddHeader()); + $objWriter->writeElement('oddFooter', $pSheet->getHeaderFooter()->getOddFooter()); + $objWriter->writeElement('evenHeader', $pSheet->getHeaderFooter()->getEvenHeader()); + $objWriter->writeElement('evenFooter', $pSheet->getHeaderFooter()->getEvenFooter()); + $objWriter->writeElement('firstHeader', $pSheet->getHeaderFooter()->getFirstHeader()); + $objWriter->writeElement('firstFooter', $pSheet->getHeaderFooter()->getFirstFooter()); + $objWriter->endElement(); + } + + /** + * Write Breaks + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writeBreaks(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + // Get row and column breaks + $aRowBreaks = array(); + $aColumnBreaks = array(); + foreach ($pSheet->getBreaks() as $cell => $breakType) { + if ($breakType == PHPExcel_Worksheet::BREAK_ROW) { + $aRowBreaks[] = $cell; + } elseif ($breakType == PHPExcel_Worksheet::BREAK_COLUMN) { + $aColumnBreaks[] = $cell; + } + } + + // rowBreaks + if (!empty($aRowBreaks)) { + $objWriter->startElement('rowBreaks'); + $objWriter->writeAttribute('count', count($aRowBreaks)); + $objWriter->writeAttribute('manualBreakCount', count($aRowBreaks)); + + foreach ($aRowBreaks as $cell) { + $coords = PHPExcel_Cell::coordinateFromString($cell); + + $objWriter->startElement('brk'); + $objWriter->writeAttribute('id', $coords[1]); + $objWriter->writeAttribute('man', '1'); + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + + // Second, write column breaks + if (!empty($aColumnBreaks)) { + $objWriter->startElement('colBreaks'); + $objWriter->writeAttribute('count', count($aColumnBreaks)); + $objWriter->writeAttribute('manualBreakCount', count($aColumnBreaks)); + + foreach ($aColumnBreaks as $cell) { + $coords = PHPExcel_Cell::coordinateFromString($cell); + + $objWriter->startElement('brk'); + $objWriter->writeAttribute('id', PHPExcel_Cell::columnIndexFromString($coords[0]) - 1); + $objWriter->writeAttribute('man', '1'); + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + } + + /** + * Write SheetData + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @param string[] $pStringTable String table + * @throws PHPExcel_Writer_Exception + */ + private function writeSheetData(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null, $pStringTable = null) + { + if (is_array($pStringTable)) { + // Flipped stringtable, for faster index searching + $aFlippedStringTable = $this->getParentWriter()->getWriterPart('stringtable')->flipStringTable($pStringTable); + + // sheetData + $objWriter->startElement('sheetData'); + + // Get column count + $colCount = PHPExcel_Cell::columnIndexFromString($pSheet->getHighestColumn()); + + // Highest row number + $highestRow = $pSheet->getHighestRow(); + + // Loop through cells + $cellsByRow = array(); + foreach ($pSheet->getCellCollection() as $cellID) { + $cellAddress = PHPExcel_Cell::coordinateFromString($cellID); + $cellsByRow[$cellAddress[1]][] = $cellID; + } + + $currentRow = 0; + while ($currentRow++ < $highestRow) { + // Get row dimension + $rowDimension = $pSheet->getRowDimension($currentRow); + + // Write current row? + $writeCurrentRow = isset($cellsByRow[$currentRow]) || $rowDimension->getRowHeight() >= 0 || $rowDimension->getVisible() == false || $rowDimension->getCollapsed() == true || $rowDimension->getOutlineLevel() > 0 || $rowDimension->getXfIndex() !== null; + + if ($writeCurrentRow) { + // Start a new row + $objWriter->startElement('row'); + $objWriter->writeAttribute('r', $currentRow); + $objWriter->writeAttribute('spans', '1:' . $colCount); + + // Row dimensions + if ($rowDimension->getRowHeight() >= 0) { + $objWriter->writeAttribute('customHeight', '1'); + $objWriter->writeAttribute('ht', PHPExcel_Shared_String::FormatNumber($rowDimension->getRowHeight())); + } + + // Row visibility + if ($rowDimension->getVisible() == false) { + $objWriter->writeAttribute('hidden', 'true'); + } + + // Collapsed + if ($rowDimension->getCollapsed() == true) { + $objWriter->writeAttribute('collapsed', 'true'); + } + + // Outline level + if ($rowDimension->getOutlineLevel() > 0) { + $objWriter->writeAttribute('outlineLevel', $rowDimension->getOutlineLevel()); + } + + // Style + if ($rowDimension->getXfIndex() !== null) { + $objWriter->writeAttribute('s', $rowDimension->getXfIndex()); + $objWriter->writeAttribute('customFormat', '1'); + } + + // Write cells + if (isset($cellsByRow[$currentRow])) { + foreach ($cellsByRow[$currentRow] as $cellAddress) { + // Write cell + $this->writeCell($objWriter, $pSheet, $cellAddress, $pStringTable, $aFlippedStringTable); + } + } + + // End row + $objWriter->endElement(); + } + } + + $objWriter->endElement(); + } else { + throw new PHPExcel_Writer_Exception("Invalid parameters passed."); + } + } + + /** + * Write Cell + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @param PHPExcel_Cell $pCellAddress Cell Address + * @param string[] $pStringTable String table + * @param string[] $pFlippedStringTable String table (flipped), for faster index searching + * @throws PHPExcel_Writer_Exception + */ + private function writeCell(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null, $pCellAddress = null, $pStringTable = null, $pFlippedStringTable = null) + { + if (is_array($pStringTable) && is_array($pFlippedStringTable)) { + // Cell + $pCell = $pSheet->getCell($pCellAddress); + $objWriter->startElement('c'); + $objWriter->writeAttribute('r', $pCellAddress); + + // Sheet styles + if ($pCell->getXfIndex() != '') { + $objWriter->writeAttribute('s', $pCell->getXfIndex()); + } + + // If cell value is supplied, write cell value + $cellValue = $pCell->getValue(); + if (is_object($cellValue) || $cellValue !== '') { + // Map type + $mappedType = $pCell->getDataType(); + + // Write data type depending on its type + switch (strtolower($mappedType)) { + case 'inlinestr': // Inline string + case 's': // String + case 'b': // Boolean + $objWriter->writeAttribute('t', $mappedType); + break; + case 'f': // Formula + $calculatedValue = ($this->getParentWriter()->getPreCalculateFormulas()) ? + $pCell->getCalculatedValue() : + $cellValue; + if (is_string($calculatedValue)) { + $objWriter->writeAttribute('t', 'str'); + } + break; + case 'e': // Error + $objWriter->writeAttribute('t', $mappedType); + } + + // Write data depending on its type + switch (strtolower($mappedType)) { + case 'inlinestr': // Inline string + if (! $cellValue instanceof PHPExcel_RichText) { + $objWriter->writeElement('t', PHPExcel_Shared_String::ControlCharacterPHP2OOXML(htmlspecialchars($cellValue))); + } elseif ($cellValue instanceof PHPExcel_RichText) { + $objWriter->startElement('is'); + $this->getParentWriter()->getWriterPart('stringtable')->writeRichText($objWriter, $cellValue); + $objWriter->endElement(); + } + + break; + case 's': // String + if (! $cellValue instanceof PHPExcel_RichText) { + if (isset($pFlippedStringTable[$cellValue])) { + $objWriter->writeElement('v', $pFlippedStringTable[$cellValue]); + } + } elseif ($cellValue instanceof PHPExcel_RichText) { + $objWriter->writeElement('v', $pFlippedStringTable[$cellValue->getHashCode()]); + } + + break; + case 'f': // Formula + $attributes = $pCell->getFormulaAttributes(); + if ($attributes['t'] == 'array') { + $objWriter->startElement('f'); + $objWriter->writeAttribute('t', 'array'); + $objWriter->writeAttribute('ref', $pCellAddress); + $objWriter->writeAttribute('aca', '1'); + $objWriter->writeAttribute('ca', '1'); + $objWriter->text(substr($cellValue, 1)); + $objWriter->endElement(); + } else { + $objWriter->writeElement('f', substr($cellValue, 1)); + } + if ($this->getParentWriter()->getOffice2003Compatibility() === false) { + if ($this->getParentWriter()->getPreCalculateFormulas()) { +// $calculatedValue = $pCell->getCalculatedValue(); + if (!is_array($calculatedValue) && substr($calculatedValue, 0, 1) != '#') { + $objWriter->writeElement('v', PHPExcel_Shared_String::FormatNumber($calculatedValue)); + } else { + $objWriter->writeElement('v', '0'); + } + } else { + $objWriter->writeElement('v', '0'); + } + } + break; + case 'n': // Numeric + // force point as decimal separator in case current locale uses comma + $objWriter->writeElement('v', str_replace(',', '.', $cellValue)); + break; + case 'b': // Boolean + $objWriter->writeElement('v', ($cellValue ? '1' : '0')); + break; + case 'e': // Error + if (substr($cellValue, 0, 1) == '=') { + $objWriter->writeElement('f', substr($cellValue, 1)); + $objWriter->writeElement('v', substr($cellValue, 1)); + } else { + $objWriter->writeElement('v', $cellValue); + } + + break; + } + } + + $objWriter->endElement(); + } else { + throw new PHPExcel_Writer_Exception("Invalid parameters passed."); + } + } + + /** + * Write Drawings + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @param boolean $includeCharts Flag indicating if we should include drawing details for charts + * @throws PHPExcel_Writer_Exception + */ + private function writeDrawings(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null, $includeCharts = false) + { + $chartCount = ($includeCharts) ? $pSheet->getChartCollection()->count() : 0; + // If sheet contains drawings, add the relationships + if (($pSheet->getDrawingCollection()->count() > 0) || + ($chartCount > 0)) { + $objWriter->startElement('drawing'); + $objWriter->writeAttribute('r:id', 'rId1'); + $objWriter->endElement(); + } + } + + /** + * Write LegacyDrawing + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writeLegacyDrawing(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + // If sheet contains comments, add the relationships + if (count($pSheet->getComments()) > 0) { + $objWriter->startElement('legacyDrawing'); + $objWriter->writeAttribute('r:id', 'rId_comments_vml1'); + $objWriter->endElement(); + } + } + + /** + * Write LegacyDrawingHF + * + * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer + * @param PHPExcel_Worksheet $pSheet Worksheet + * @throws PHPExcel_Writer_Exception + */ + private function writeLegacyDrawingHF(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Worksheet $pSheet = null) + { + // If sheet contains images, add the relationships + if (count($pSheet->getHeaderFooter()->getImages()) > 0) { + $objWriter->startElement('legacyDrawingHF'); + $objWriter->writeAttribute('r:id', 'rId_headerfooter_vml1'); + $objWriter->endElement(); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/WriterPart.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/WriterPart.php new file mode 100644 index 0000000..806ebe5 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/WriterPart.php @@ -0,0 +1,75 @@ +<?php + +/** + * PHPExcel_Writer_Excel2007_WriterPart + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel2007 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +abstract class PHPExcel_Writer_Excel2007_WriterPart +{ + /** + * Parent IWriter object + * + * @var PHPExcel_Writer_IWriter + */ + private $parentWriter; + + /** + * Set parent IWriter object + * + * @param PHPExcel_Writer_IWriter $pWriter + * @throws PHPExcel_Writer_Exception + */ + public function setParentWriter(PHPExcel_Writer_IWriter $pWriter = null) + { + $this->parentWriter = $pWriter; + } + + /** + * Get parent IWriter object + * + * @return PHPExcel_Writer_IWriter + * @throws PHPExcel_Writer_Exception + */ + public function getParentWriter() + { + if (!is_null($this->parentWriter)) { + return $this->parentWriter; + } else { + throw new PHPExcel_Writer_Exception("No parent PHPExcel_Writer_IWriter assigned."); + } + } + + /** + * Set parent IWriter object + * + * @param PHPExcel_Writer_IWriter $pWriter + * @throws PHPExcel_Writer_Exception + */ + public function __construct(PHPExcel_Writer_IWriter $pWriter = null) + { + if (!is_null($pWriter)) { + $this->parentWriter = $pWriter; + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5.php new file mode 100644 index 0000000..2dede81 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5.php @@ -0,0 +1,904 @@ +<?php + +/** + * PHPExcel_Writer_Excel5 + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel5 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_Excel5 extends PHPExcel_Writer_Abstract implements PHPExcel_Writer_IWriter +{ + /** + * PHPExcel object + * + * @var PHPExcel + */ + private $phpExcel; + + /** + * Total number of shared strings in workbook + * + * @var int + */ + private $strTotal = 0; + + /** + * Number of unique shared strings in workbook + * + * @var int + */ + private $strUnique = 0; + + /** + * Array of unique shared strings in workbook + * + * @var array + */ + private $strTable = array(); + + /** + * Color cache. Mapping between RGB value and color index. + * + * @var array + */ + private $colors; + + /** + * Formula parser + * + * @var PHPExcel_Writer_Excel5_Parser + */ + private $parser; + + /** + * Identifier clusters for drawings. Used in MSODRAWINGGROUP record. + * + * @var array + */ + private $IDCLs; + + /** + * Basic OLE object summary information + * + * @var array + */ + private $summaryInformation; + + /** + * Extended OLE object document summary information + * + * @var array + */ + private $documentSummaryInformation; + + /** + * Create a new PHPExcel_Writer_Excel5 + * + * @param PHPExcel $phpExcel PHPExcel object + */ + public function __construct(PHPExcel $phpExcel) + { + $this->phpExcel = $phpExcel; + + $this->parser = new PHPExcel_Writer_Excel5_Parser(); + } + + /** + * Save PHPExcel to file + * + * @param string $pFilename + * @throws PHPExcel_Writer_Exception + */ + public function save($pFilename = null) + { + + // garbage collect + $this->phpExcel->garbageCollect(); + + $saveDebugLog = PHPExcel_Calculation::getInstance($this->phpExcel)->getDebugLog()->getWriteDebugLog(); + PHPExcel_Calculation::getInstance($this->phpExcel)->getDebugLog()->setWriteDebugLog(false); + $saveDateReturnType = PHPExcel_Calculation_Functions::getReturnDateType(); + PHPExcel_Calculation_Functions::setReturnDateType(PHPExcel_Calculation_Functions::RETURNDATE_EXCEL); + + // initialize colors array + $this->colors = array(); + + // Initialise workbook writer + $this->writerWorkbook = new PHPExcel_Writer_Excel5_Workbook($this->phpExcel, $this->strTotal, $this->strUnique, $this->strTable, $this->colors, $this->parser); + + // Initialise worksheet writers + $countSheets = $this->phpExcel->getSheetCount(); + for ($i = 0; $i < $countSheets; ++$i) { + $this->writerWorksheets[$i] = new PHPExcel_Writer_Excel5_Worksheet($this->strTotal, $this->strUnique, $this->strTable, $this->colors, $this->parser, $this->preCalculateFormulas, $this->phpExcel->getSheet($i)); + } + + // build Escher objects. Escher objects for workbooks needs to be build before Escher object for workbook. + $this->buildWorksheetEschers(); + $this->buildWorkbookEscher(); + + // add 15 identical cell style Xfs + // for now, we use the first cellXf instead of cellStyleXf + $cellXfCollection = $this->phpExcel->getCellXfCollection(); + for ($i = 0; $i < 15; ++$i) { + $this->writerWorkbook->addXfWriter($cellXfCollection[0], true); + } + + // add all the cell Xfs + foreach ($this->phpExcel->getCellXfCollection() as $style) { + $this->writerWorkbook->addXfWriter($style, false); + } + + // add fonts from rich text eleemnts + for ($i = 0; $i < $countSheets; ++$i) { + foreach ($this->writerWorksheets[$i]->phpSheet->getCellCollection() as $cellID) { + $cell = $this->writerWorksheets[$i]->phpSheet->getCell($cellID); + $cVal = $cell->getValue(); + if ($cVal instanceof PHPExcel_RichText) { + $elements = $cVal->getRichTextElements(); + foreach ($elements as $element) { + if ($element instanceof PHPExcel_RichText_Run) { + $font = $element->getFont(); + $this->writerWorksheets[$i]->fontHashIndex[$font->getHashCode()] = $this->writerWorkbook->addFont($font); + } + } + } + } + } + + // initialize OLE file + $workbookStreamName = 'Workbook'; + $OLE = new PHPExcel_Shared_OLE_PPS_File(PHPExcel_Shared_OLE::Asc2Ucs($workbookStreamName)); + + // Write the worksheet streams before the global workbook stream, + // because the byte sizes of these are needed in the global workbook stream + $worksheetSizes = array(); + for ($i = 0; $i < $countSheets; ++$i) { + $this->writerWorksheets[$i]->close(); + $worksheetSizes[] = $this->writerWorksheets[$i]->_datasize; + } + + // add binary data for global workbook stream + $OLE->append($this->writerWorkbook->writeWorkbook($worksheetSizes)); + + // add binary data for sheet streams + for ($i = 0; $i < $countSheets; ++$i) { + $OLE->append($this->writerWorksheets[$i]->getData()); + } + + $this->documentSummaryInformation = $this->writeDocumentSummaryInformation(); + // initialize OLE Document Summary Information + if (isset($this->documentSummaryInformation) && !empty($this->documentSummaryInformation)) { + $OLE_DocumentSummaryInformation = new PHPExcel_Shared_OLE_PPS_File(PHPExcel_Shared_OLE::Asc2Ucs(chr(5) . 'DocumentSummaryInformation')); + $OLE_DocumentSummaryInformation->append($this->documentSummaryInformation); + } + + $this->summaryInformation = $this->writeSummaryInformation(); + // initialize OLE Summary Information + if (isset($this->summaryInformation) && !empty($this->summaryInformation)) { + $OLE_SummaryInformation = new PHPExcel_Shared_OLE_PPS_File(PHPExcel_Shared_OLE::Asc2Ucs(chr(5) . 'SummaryInformation')); + $OLE_SummaryInformation->append($this->summaryInformation); + } + + // define OLE Parts + $arrRootData = array($OLE); + // initialize OLE Properties file + if (isset($OLE_SummaryInformation)) { + $arrRootData[] = $OLE_SummaryInformation; + } + // initialize OLE Extended Properties file + if (isset($OLE_DocumentSummaryInformation)) { + $arrRootData[] = $OLE_DocumentSummaryInformation; + } + + $root = new PHPExcel_Shared_OLE_PPS_Root(time(), time(), $arrRootData); + // save the OLE file + $res = $root->save($pFilename); + + PHPExcel_Calculation_Functions::setReturnDateType($saveDateReturnType); + PHPExcel_Calculation::getInstance($this->phpExcel)->getDebugLog()->setWriteDebugLog($saveDebugLog); + } + + /** + * Set temporary storage directory + * + * @deprecated + * @param string $pValue Temporary storage directory + * @throws PHPExcel_Writer_Exception when directory does not exist + * @return PHPExcel_Writer_Excel5 + */ + public function setTempDir($pValue = '') + { + return $this; + } + + /** + * Build the Worksheet Escher objects + * + */ + private function buildWorksheetEschers() + { + // 1-based index to BstoreContainer + $blipIndex = 0; + $lastReducedSpId = 0; + $lastSpId = 0; + + foreach ($this->phpExcel->getAllsheets() as $sheet) { + // sheet index + $sheetIndex = $sheet->getParent()->getIndex($sheet); + + $escher = null; + + // check if there are any shapes for this sheet + $filterRange = $sheet->getAutoFilter()->getRange(); + if (count($sheet->getDrawingCollection()) == 0 && empty($filterRange)) { + continue; + } + + // create intermediate Escher object + $escher = new PHPExcel_Shared_Escher(); + + // dgContainer + $dgContainer = new PHPExcel_Shared_Escher_DgContainer(); + + // set the drawing index (we use sheet index + 1) + $dgId = $sheet->getParent()->getIndex($sheet) + 1; + $dgContainer->setDgId($dgId); + $escher->setDgContainer($dgContainer); + + // spgrContainer + $spgrContainer = new PHPExcel_Shared_Escher_DgContainer_SpgrContainer(); + $dgContainer->setSpgrContainer($spgrContainer); + + // add one shape which is the group shape + $spContainer = new PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer(); + $spContainer->setSpgr(true); + $spContainer->setSpType(0); + $spContainer->setSpId(($sheet->getParent()->getIndex($sheet) + 1) << 10); + $spgrContainer->addChild($spContainer); + + // add the shapes + + $countShapes[$sheetIndex] = 0; // count number of shapes (minus group shape), in sheet + + foreach ($sheet->getDrawingCollection() as $drawing) { + ++$blipIndex; + + ++$countShapes[$sheetIndex]; + + // add the shape + $spContainer = new PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer(); + + // set the shape type + $spContainer->setSpType(0x004B); + // set the shape flag + $spContainer->setSpFlag(0x02); + + // set the shape index (we combine 1-based sheet index and $countShapes to create unique shape index) + $reducedSpId = $countShapes[$sheetIndex]; + $spId = $reducedSpId + | ($sheet->getParent()->getIndex($sheet) + 1) << 10; + $spContainer->setSpId($spId); + + // keep track of last reducedSpId + $lastReducedSpId = $reducedSpId; + + // keep track of last spId + $lastSpId = $spId; + + // set the BLIP index + $spContainer->setOPT(0x4104, $blipIndex); + + // set coordinates and offsets, client anchor + $coordinates = $drawing->getCoordinates(); + $offsetX = $drawing->getOffsetX(); + $offsetY = $drawing->getOffsetY(); + $width = $drawing->getWidth(); + $height = $drawing->getHeight(); + + $twoAnchor = PHPExcel_Shared_Excel5::oneAnchor2twoAnchor($sheet, $coordinates, $offsetX, $offsetY, $width, $height); + + $spContainer->setStartCoordinates($twoAnchor['startCoordinates']); + $spContainer->setStartOffsetX($twoAnchor['startOffsetX']); + $spContainer->setStartOffsetY($twoAnchor['startOffsetY']); + $spContainer->setEndCoordinates($twoAnchor['endCoordinates']); + $spContainer->setEndOffsetX($twoAnchor['endOffsetX']); + $spContainer->setEndOffsetY($twoAnchor['endOffsetY']); + + $spgrContainer->addChild($spContainer); + } + + // AutoFilters + if (!empty($filterRange)) { + $rangeBounds = PHPExcel_Cell::rangeBoundaries($filterRange); + $iNumColStart = $rangeBounds[0][0]; + $iNumColEnd = $rangeBounds[1][0]; + + $iInc = $iNumColStart; + while ($iInc <= $iNumColEnd) { + ++$countShapes[$sheetIndex]; + + // create an Drawing Object for the dropdown + $oDrawing = new PHPExcel_Worksheet_BaseDrawing(); + // get the coordinates of drawing + $cDrawing = PHPExcel_Cell::stringFromColumnIndex($iInc - 1) . $rangeBounds[0][1]; + $oDrawing->setCoordinates($cDrawing); + $oDrawing->setWorksheet($sheet); + + // add the shape + $spContainer = new PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer(); + // set the shape type + $spContainer->setSpType(0x00C9); + // set the shape flag + $spContainer->setSpFlag(0x01); + + // set the shape index (we combine 1-based sheet index and $countShapes to create unique shape index) + $reducedSpId = $countShapes[$sheetIndex]; + $spId = $reducedSpId + | ($sheet->getParent()->getIndex($sheet) + 1) << 10; + $spContainer->setSpId($spId); + + // keep track of last reducedSpId + $lastReducedSpId = $reducedSpId; + + // keep track of last spId + $lastSpId = $spId; + + $spContainer->setOPT(0x007F, 0x01040104); // Protection -> fLockAgainstGrouping + $spContainer->setOPT(0x00BF, 0x00080008); // Text -> fFitTextToShape + $spContainer->setOPT(0x01BF, 0x00010000); // Fill Style -> fNoFillHitTest + $spContainer->setOPT(0x01FF, 0x00080000); // Line Style -> fNoLineDrawDash + $spContainer->setOPT(0x03BF, 0x000A0000); // Group Shape -> fPrint + + // set coordinates and offsets, client anchor + $endCoordinates = PHPExcel_Cell::stringFromColumnIndex(PHPExcel_Cell::stringFromColumnIndex($iInc - 1)); + $endCoordinates .= $rangeBounds[0][1] + 1; + + $spContainer->setStartCoordinates($cDrawing); + $spContainer->setStartOffsetX(0); + $spContainer->setStartOffsetY(0); + $spContainer->setEndCoordinates($endCoordinates); + $spContainer->setEndOffsetX(0); + $spContainer->setEndOffsetY(0); + + $spgrContainer->addChild($spContainer); + $iInc++; + } + } + + // identifier clusters, used for workbook Escher object + $this->IDCLs[$dgId] = $lastReducedSpId; + + // set last shape index + $dgContainer->setLastSpId($lastSpId); + + // set the Escher object + $this->writerWorksheets[$sheetIndex]->setEscher($escher); + } + } + + /** + * Build the Escher object corresponding to the MSODRAWINGGROUP record + */ + private function buildWorkbookEscher() + { + $escher = null; + + // any drawings in this workbook? + $found = false; + foreach ($this->phpExcel->getAllSheets() as $sheet) { + if (count($sheet->getDrawingCollection()) > 0) { + $found = true; + break; + } + } + + // nothing to do if there are no drawings + if (!$found) { + return; + } + + // if we reach here, then there are drawings in the workbook + $escher = new PHPExcel_Shared_Escher(); + + // dggContainer + $dggContainer = new PHPExcel_Shared_Escher_DggContainer(); + $escher->setDggContainer($dggContainer); + + // set IDCLs (identifier clusters) + $dggContainer->setIDCLs($this->IDCLs); + + // this loop is for determining maximum shape identifier of all drawing + $spIdMax = 0; + $totalCountShapes = 0; + $countDrawings = 0; + + foreach ($this->phpExcel->getAllsheets() as $sheet) { + $sheetCountShapes = 0; // count number of shapes (minus group shape), in sheet + + if (count($sheet->getDrawingCollection()) > 0) { + ++$countDrawings; + + foreach ($sheet->getDrawingCollection() as $drawing) { + ++$sheetCountShapes; + ++$totalCountShapes; + + $spId = $sheetCountShapes | ($this->phpExcel->getIndex($sheet) + 1) << 10; + $spIdMax = max($spId, $spIdMax); + } + } + } + + $dggContainer->setSpIdMax($spIdMax + 1); + $dggContainer->setCDgSaved($countDrawings); + $dggContainer->setCSpSaved($totalCountShapes + $countDrawings); // total number of shapes incl. one group shapes per drawing + + // bstoreContainer + $bstoreContainer = new PHPExcel_Shared_Escher_DggContainer_BstoreContainer(); + $dggContainer->setBstoreContainer($bstoreContainer); + + // the BSE's (all the images) + foreach ($this->phpExcel->getAllsheets() as $sheet) { + foreach ($sheet->getDrawingCollection() as $drawing) { + if ($drawing instanceof PHPExcel_Worksheet_Drawing) { + $filename = $drawing->getPath(); + + list($imagesx, $imagesy, $imageFormat) = getimagesize($filename); + + switch ($imageFormat) { + case 1: // GIF, not supported by BIFF8, we convert to PNG + $blipType = PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE::BLIPTYPE_PNG; + ob_start(); + imagepng(imagecreatefromgif($filename)); + $blipData = ob_get_contents(); + ob_end_clean(); + break; + case 2: // JPEG + $blipType = PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE::BLIPTYPE_JPEG; + $blipData = file_get_contents($filename); + break; + case 3: // PNG + $blipType = PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE::BLIPTYPE_PNG; + $blipData = file_get_contents($filename); + break; + case 6: // Windows DIB (BMP), we convert to PNG + $blipType = PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE::BLIPTYPE_PNG; + ob_start(); + imagepng(PHPExcel_Shared_Drawing::imagecreatefrombmp($filename)); + $blipData = ob_get_contents(); + ob_end_clean(); + break; + default: + continue 2; + } + + $blip = new PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE_Blip(); + $blip->setData($blipData); + + $BSE = new PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE(); + $BSE->setBlipType($blipType); + $BSE->setBlip($blip); + + $bstoreContainer->addBSE($BSE); + } elseif ($drawing instanceof PHPExcel_Worksheet_MemoryDrawing) { + switch ($drawing->getRenderingFunction()) { + case PHPExcel_Worksheet_MemoryDrawing::RENDERING_JPEG: + $blipType = PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE::BLIPTYPE_JPEG; + $renderingFunction = 'imagejpeg'; + break; + case PHPExcel_Worksheet_MemoryDrawing::RENDERING_GIF: + case PHPExcel_Worksheet_MemoryDrawing::RENDERING_PNG: + case PHPExcel_Worksheet_MemoryDrawing::RENDERING_DEFAULT: + $blipType = PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE::BLIPTYPE_PNG; + $renderingFunction = 'imagepng'; + break; + } + + ob_start(); + call_user_func($renderingFunction, $drawing->getImageResource()); + $blipData = ob_get_contents(); + ob_end_clean(); + + $blip = new PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE_Blip(); + $blip->setData($blipData); + + $BSE = new PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE(); + $BSE->setBlipType($blipType); + $BSE->setBlip($blip); + + $bstoreContainer->addBSE($BSE); + } + } + } + + // Set the Escher object + $this->writerWorkbook->setEscher($escher); + } + + /** + * Build the OLE Part for DocumentSummary Information + * @return string + */ + private function writeDocumentSummaryInformation() + { + // offset: 0; size: 2; must be 0xFE 0xFF (UTF-16 LE byte order mark) + $data = pack('v', 0xFFFE); + // offset: 2; size: 2; + $data .= pack('v', 0x0000); + // offset: 4; size: 2; OS version + $data .= pack('v', 0x0106); + // offset: 6; size: 2; OS indicator + $data .= pack('v', 0x0002); + // offset: 8; size: 16 + $data .= pack('VVVV', 0x00, 0x00, 0x00, 0x00); + // offset: 24; size: 4; section count + $data .= pack('V', 0x0001); + + // offset: 28; size: 16; first section's class id: 02 d5 cd d5 9c 2e 1b 10 93 97 08 00 2b 2c f9 ae + $data .= pack('vvvvvvvv', 0xD502, 0xD5CD, 0x2E9C, 0x101B, 0x9793, 0x0008, 0x2C2B, 0xAEF9); + // offset: 44; size: 4; offset of the start + $data .= pack('V', 0x30); + + // SECTION + $dataSection = array(); + $dataSection_NumProps = 0; + $dataSection_Summary = ''; + $dataSection_Content = ''; + + // GKPIDDSI_CODEPAGE: CodePage + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x01), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x02), // 2 byte signed integer + 'data' => array('data' => 1252)); + $dataSection_NumProps++; + + // GKPIDDSI_CATEGORY : Category + if ($this->phpExcel->getProperties()->getCategory()) { + $dataProp = $this->phpExcel->getProperties()->getCategory(); + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x02), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x1E), + 'data' => array('data' => $dataProp, 'length' => strlen($dataProp))); + $dataSection_NumProps++; + } + // GKPIDDSI_VERSION :Version of the application that wrote the property storage + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x17), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x03), + 'data' => array('pack' => 'V', 'data' => 0x000C0000)); + $dataSection_NumProps++; + // GKPIDDSI_SCALE : FALSE + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x0B), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x0B), + 'data' => array('data' => false)); + $dataSection_NumProps++; + // GKPIDDSI_LINKSDIRTY : True if any of the values for the linked properties have changed outside of the application + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x10), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x0B), + 'data' => array('data' => false)); + $dataSection_NumProps++; + // GKPIDDSI_SHAREDOC : FALSE + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x13), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x0B), + 'data' => array('data' => false)); + $dataSection_NumProps++; + // GKPIDDSI_HYPERLINKSCHANGED : True if any of the values for the _PID_LINKS (hyperlink text) have changed outside of the application + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x16), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x0B), + 'data' => array('data' => false)); + $dataSection_NumProps++; + + // GKPIDDSI_DOCSPARTS + // MS-OSHARED p75 (2.3.3.2.2.1) + // Structure is VtVecUnalignedLpstrValue (2.3.3.1.9) + // cElements + $dataProp = pack('v', 0x0001); + $dataProp .= pack('v', 0x0000); + // array of UnalignedLpstr + // cch + $dataProp .= pack('v', 0x000A); + $dataProp .= pack('v', 0x0000); + // value + $dataProp .= 'Worksheet'.chr(0); + + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x0D), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x101E), + 'data' => array('data' => $dataProp, 'length' => strlen($dataProp))); + $dataSection_NumProps++; + + // GKPIDDSI_HEADINGPAIR + // VtVecHeadingPairValue + // cElements + $dataProp = pack('v', 0x0002); + $dataProp .= pack('v', 0x0000); + // Array of vtHeadingPair + // vtUnalignedString - headingString + // stringType + $dataProp .= pack('v', 0x001E); + // padding + $dataProp .= pack('v', 0x0000); + // UnalignedLpstr + // cch + $dataProp .= pack('v', 0x0013); + $dataProp .= pack('v', 0x0000); + // value + $dataProp .= 'Feuilles de calcul'; + // vtUnalignedString - headingParts + // wType : 0x0003 = 32 bit signed integer + $dataProp .= pack('v', 0x0300); + // padding + $dataProp .= pack('v', 0x0000); + // value + $dataProp .= pack('v', 0x0100); + $dataProp .= pack('v', 0x0000); + $dataProp .= pack('v', 0x0000); + $dataProp .= pack('v', 0x0000); + + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x0C), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x100C), + 'data' => array('data' => $dataProp, 'length' => strlen($dataProp))); + $dataSection_NumProps++; + + // 4 Section Length + // 4 Property count + // 8 * $dataSection_NumProps (8 = ID (4) + OffSet(4)) + $dataSection_Content_Offset = 8 + $dataSection_NumProps * 8; + foreach ($dataSection as $dataProp) { + // Summary + $dataSection_Summary .= pack($dataProp['summary']['pack'], $dataProp['summary']['data']); + // Offset + $dataSection_Summary .= pack($dataProp['offset']['pack'], $dataSection_Content_Offset); + // DataType + $dataSection_Content .= pack($dataProp['type']['pack'], $dataProp['type']['data']); + // Data + if ($dataProp['type']['data'] == 0x02) { // 2 byte signed integer + $dataSection_Content .= pack('V', $dataProp['data']['data']); + + $dataSection_Content_Offset += 4 + 4; + } elseif ($dataProp['type']['data'] == 0x03) { // 4 byte signed integer + $dataSection_Content .= pack('V', $dataProp['data']['data']); + + $dataSection_Content_Offset += 4 + 4; + } elseif ($dataProp['type']['data'] == 0x0B) { // Boolean + if ($dataProp['data']['data'] == false) { + $dataSection_Content .= pack('V', 0x0000); + } else { + $dataSection_Content .= pack('V', 0x0001); + } + $dataSection_Content_Offset += 4 + 4; + } elseif ($dataProp['type']['data'] == 0x1E) { // null-terminated string prepended by dword string length + // Null-terminated string + $dataProp['data']['data'] .= chr(0); + $dataProp['data']['length'] += 1; + // Complete the string with null string for being a %4 + $dataProp['data']['length'] = $dataProp['data']['length'] + ((4 - $dataProp['data']['length'] % 4)==4 ? 0 : (4 - $dataProp['data']['length'] % 4)); + $dataProp['data']['data'] = str_pad($dataProp['data']['data'], $dataProp['data']['length'], chr(0), STR_PAD_RIGHT); + + $dataSection_Content .= pack('V', $dataProp['data']['length']); + $dataSection_Content .= $dataProp['data']['data']; + + $dataSection_Content_Offset += 4 + 4 + strlen($dataProp['data']['data']); + } elseif ($dataProp['type']['data'] == 0x40) { // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601) + $dataSection_Content .= $dataProp['data']['data']; + + $dataSection_Content_Offset += 4 + 8; + } else { + // Data Type Not Used at the moment + $dataSection_Content .= $dataProp['data']['data']; + + $dataSection_Content_Offset += 4 + $dataProp['data']['length']; + } + } + // Now $dataSection_Content_Offset contains the size of the content + + // section header + // offset: $secOffset; size: 4; section length + // + x Size of the content (summary + content) + $data .= pack('V', $dataSection_Content_Offset); + // offset: $secOffset+4; size: 4; property count + $data .= pack('V', $dataSection_NumProps); + // Section Summary + $data .= $dataSection_Summary; + // Section Content + $data .= $dataSection_Content; + + return $data; + } + + /** + * Build the OLE Part for Summary Information + * @return string + */ + private function writeSummaryInformation() + { + // offset: 0; size: 2; must be 0xFE 0xFF (UTF-16 LE byte order mark) + $data = pack('v', 0xFFFE); + // offset: 2; size: 2; + $data .= pack('v', 0x0000); + // offset: 4; size: 2; OS version + $data .= pack('v', 0x0106); + // offset: 6; size: 2; OS indicator + $data .= pack('v', 0x0002); + // offset: 8; size: 16 + $data .= pack('VVVV', 0x00, 0x00, 0x00, 0x00); + // offset: 24; size: 4; section count + $data .= pack('V', 0x0001); + + // offset: 28; size: 16; first section's class id: e0 85 9f f2 f9 4f 68 10 ab 91 08 00 2b 27 b3 d9 + $data .= pack('vvvvvvvv', 0x85E0, 0xF29F, 0x4FF9, 0x1068, 0x91AB, 0x0008, 0x272B, 0xD9B3); + // offset: 44; size: 4; offset of the start + $data .= pack('V', 0x30); + + // SECTION + $dataSection = array(); + $dataSection_NumProps = 0; + $dataSection_Summary = ''; + $dataSection_Content = ''; + + // CodePage : CP-1252 + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x01), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x02), // 2 byte signed integer + 'data' => array('data' => 1252)); + $dataSection_NumProps++; + + // Title + if ($this->phpExcel->getProperties()->getTitle()) { + $dataProp = $this->phpExcel->getProperties()->getTitle(); + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x02), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x1E), // null-terminated string prepended by dword string length + 'data' => array('data' => $dataProp, 'length' => strlen($dataProp))); + $dataSection_NumProps++; + } + // Subject + if ($this->phpExcel->getProperties()->getSubject()) { + $dataProp = $this->phpExcel->getProperties()->getSubject(); + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x03), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x1E), // null-terminated string prepended by dword string length + 'data' => array('data' => $dataProp, 'length' => strlen($dataProp))); + $dataSection_NumProps++; + } + // Author (Creator) + if ($this->phpExcel->getProperties()->getCreator()) { + $dataProp = $this->phpExcel->getProperties()->getCreator(); + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x04), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x1E), // null-terminated string prepended by dword string length + 'data' => array('data' => $dataProp, 'length' => strlen($dataProp))); + $dataSection_NumProps++; + } + // Keywords + if ($this->phpExcel->getProperties()->getKeywords()) { + $dataProp = $this->phpExcel->getProperties()->getKeywords(); + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x05), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x1E), // null-terminated string prepended by dword string length + 'data' => array('data' => $dataProp, 'length' => strlen($dataProp))); + $dataSection_NumProps++; + } + // Comments (Description) + if ($this->phpExcel->getProperties()->getDescription()) { + $dataProp = $this->phpExcel->getProperties()->getDescription(); + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x06), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x1E), // null-terminated string prepended by dword string length + 'data' => array('data' => $dataProp, 'length' => strlen($dataProp))); + $dataSection_NumProps++; + } + // Last Saved By (LastModifiedBy) + if ($this->phpExcel->getProperties()->getLastModifiedBy()) { + $dataProp = $this->phpExcel->getProperties()->getLastModifiedBy(); + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x08), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x1E), // null-terminated string prepended by dword string length + 'data' => array('data' => $dataProp, 'length' => strlen($dataProp))); + $dataSection_NumProps++; + } + // Created Date/Time + if ($this->phpExcel->getProperties()->getCreated()) { + $dataProp = $this->phpExcel->getProperties()->getCreated(); + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x0C), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x40), // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601) + 'data' => array('data' => PHPExcel_Shared_OLE::LocalDate2OLE($dataProp))); + $dataSection_NumProps++; + } + // Modified Date/Time + if ($this->phpExcel->getProperties()->getModified()) { + $dataProp = $this->phpExcel->getProperties()->getModified(); + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x0D), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x40), // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601) + 'data' => array('data' => PHPExcel_Shared_OLE::LocalDate2OLE($dataProp))); + $dataSection_NumProps++; + } + // Security + $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x13), + 'offset' => array('pack' => 'V'), + 'type' => array('pack' => 'V', 'data' => 0x03), // 4 byte signed integer + 'data' => array('data' => 0x00)); + $dataSection_NumProps++; + + + // 4 Section Length + // 4 Property count + // 8 * $dataSection_NumProps (8 = ID (4) + OffSet(4)) + $dataSection_Content_Offset = 8 + $dataSection_NumProps * 8; + foreach ($dataSection as $dataProp) { + // Summary + $dataSection_Summary .= pack($dataProp['summary']['pack'], $dataProp['summary']['data']); + // Offset + $dataSection_Summary .= pack($dataProp['offset']['pack'], $dataSection_Content_Offset); + // DataType + $dataSection_Content .= pack($dataProp['type']['pack'], $dataProp['type']['data']); + // Data + if ($dataProp['type']['data'] == 0x02) { // 2 byte signed integer + $dataSection_Content .= pack('V', $dataProp['data']['data']); + + $dataSection_Content_Offset += 4 + 4; + } elseif ($dataProp['type']['data'] == 0x03) { // 4 byte signed integer + $dataSection_Content .= pack('V', $dataProp['data']['data']); + + $dataSection_Content_Offset += 4 + 4; + } elseif ($dataProp['type']['data'] == 0x1E) { // null-terminated string prepended by dword string length + // Null-terminated string + $dataProp['data']['data'] .= chr(0); + $dataProp['data']['length'] += 1; + // Complete the string with null string for being a %4 + $dataProp['data']['length'] = $dataProp['data']['length'] + ((4 - $dataProp['data']['length'] % 4)==4 ? 0 : (4 - $dataProp['data']['length'] % 4)); + $dataProp['data']['data'] = str_pad($dataProp['data']['data'], $dataProp['data']['length'], chr(0), STR_PAD_RIGHT); + + $dataSection_Content .= pack('V', $dataProp['data']['length']); + $dataSection_Content .= $dataProp['data']['data']; + + $dataSection_Content_Offset += 4 + 4 + strlen($dataProp['data']['data']); + } elseif ($dataProp['type']['data'] == 0x40) { // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601) + $dataSection_Content .= $dataProp['data']['data']; + + $dataSection_Content_Offset += 4 + 8; + } else { + // Data Type Not Used at the moment + } + } + // Now $dataSection_Content_Offset contains the size of the content + + // section header + // offset: $secOffset; size: 4; section length + // + x Size of the content (summary + content) + $data .= pack('V', $dataSection_Content_Offset); + // offset: $secOffset+4; size: 4; property count + $data .= pack('V', $dataSection_NumProps); + // Section Summary + $data .= $dataSection_Summary; + // Section Content + $data .= $dataSection_Content; + + return $data; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/BIFFwriter.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/BIFFwriter.php new file mode 100644 index 0000000..a795752 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/BIFFwriter.php @@ -0,0 +1,246 @@ +<?php + +/** + * PHPExcel_Writer_Excel5_BIFFwriter + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel5 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +// Original file header of PEAR::Spreadsheet_Excel_Writer_BIFFwriter (used as the base for this class): +// ----------------------------------------------------------------------------------------- +// * Module written/ported by Xavier Noguer <xnoguer@rezebra.com> +// * +// * The majority of this is _NOT_ my code. I simply ported it from the +// * PERL Spreadsheet::WriteExcel module. +// * +// * The author of the Spreadsheet::WriteExcel module is John McNamara +// * <jmcnamara@cpan.org> +// * +// * I _DO_ maintain this code, and John McNamara has nothing to do with the +// * porting of this code to PHP. Any questions directly related to this +// * class library should be directed to me. +// * +// * License Information: +// * +// * Spreadsheet_Excel_Writer: A library for generating Excel Spreadsheets +// * Copyright (c) 2002-2003 Xavier Noguer xnoguer@rezebra.com +// * +// * This library is free software; you can redistribute it and/or +// * modify it under the terms of the GNU Lesser General Public +// * License as published by the Free Software Foundation; either +// * version 2.1 of the License, or (at your option) any later version. +// * +// * This library is distributed in the hope that it will be useful, +// * but WITHOUT ANY WARRANTY; without even the implied warranty of +// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// * Lesser General Public License for more details. +// * +// * You should have received a copy of the GNU Lesser General Public +// * License along with this library; if not, write to the Free Software +// * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// */ +class PHPExcel_Writer_Excel5_BIFFwriter +{ + /** + * The byte order of this architecture. 0 => little endian, 1 => big endian + * @var integer + */ + private static $byteOrder; + + /** + * The string containing the data of the BIFF stream + * @var string + */ + public $_data; + + /** + * The size of the data in bytes. Should be the same as strlen($this->_data) + * @var integer + */ + public $_datasize; + + /** + * The maximum length for a BIFF record (excluding record header and length field). See addContinue() + * @var integer + * @see addContinue() + */ + private $limit = 8224; + + /** + * Constructor + */ + public function __construct() + { + $this->_data = ''; + $this->_datasize = 0; +// $this->limit = 8224; + } + + /** + * Determine the byte order and store it as class data to avoid + * recalculating it for each call to new(). + * + * @return int + */ + public static function getByteOrder() + { + if (!isset(self::$byteOrder)) { + // Check if "pack" gives the required IEEE 64bit float + $teststr = pack("d", 1.2345); + $number = pack("C8", 0x8D, 0x97, 0x6E, 0x12, 0x83, 0xC0, 0xF3, 0x3F); + if ($number == $teststr) { + $byte_order = 0; // Little Endian + } elseif ($number == strrev($teststr)) { + $byte_order = 1; // Big Endian + } else { + // Give up. I'll fix this in a later version. + throw new PHPExcel_Writer_Exception("Required floating point format not supported on this platform."); + } + self::$byteOrder = $byte_order; + } + + return self::$byteOrder; + } + + /** + * General storage function + * + * @param string $data binary data to append + * @access private + */ + protected function append($data) + { + if (strlen($data) - 4 > $this->limit) { + $data = $this->addContinue($data); + } + $this->_data .= $data; + $this->_datasize += strlen($data); + } + + /** + * General storage function like append, but returns string instead of modifying $this->_data + * + * @param string $data binary data to write + * @return string + */ + public function writeData($data) + { + if (strlen($data) - 4 > $this->limit) { + $data = $this->addContinue($data); + } + $this->_datasize += strlen($data); + + return $data; + } + + /** + * Writes Excel BOF record to indicate the beginning of a stream or + * sub-stream in the BIFF file. + * + * @param integer $type Type of BIFF file to write: 0x0005 Workbook, + * 0x0010 Worksheet. + * @access private + */ + protected function storeBof($type) + { + $record = 0x0809; // Record identifier (BIFF5-BIFF8) + $length = 0x0010; + + // by inspection of real files, MS Office Excel 2007 writes the following + $unknown = pack("VV", 0x000100D1, 0x00000406); + + $build = 0x0DBB; // Excel 97 + $year = 0x07CC; // Excel 97 + + $version = 0x0600; // BIFF8 + + $header = pack("vv", $record, $length); + $data = pack("vvvv", $version, $type, $build, $year); + $this->append($header . $data . $unknown); + } + + /** + * Writes Excel EOF record to indicate the end of a BIFF stream. + * + * @access private + */ + protected function storeEof() + { + $record = 0x000A; // Record identifier + $length = 0x0000; // Number of bytes to follow + + $header = pack("vv", $record, $length); + $this->append($header); + } + + /** + * Writes Excel EOF record to indicate the end of a BIFF stream. + * + * @access private + */ + public function writeEof() + { + $record = 0x000A; // Record identifier + $length = 0x0000; // Number of bytes to follow + $header = pack("vv", $record, $length); + return $this->writeData($header); + } + + /** + * Excel limits the size of BIFF records. In Excel 5 the limit is 2084 bytes. In + * Excel 97 the limit is 8228 bytes. Records that are longer than these limits + * must be split up into CONTINUE blocks. + * + * This function takes a long BIFF record and inserts CONTINUE records as + * necessary. + * + * @param string $data The original binary data to be written + * @return string A very convenient string of continue blocks + * @access private + */ + private function addContinue($data) + { + $limit = $this->limit; + $record = 0x003C; // Record identifier + + // The first 2080/8224 bytes remain intact. However, we have to change + // the length field of the record. + $tmp = substr($data, 0, 2) . pack("v", $limit) . substr($data, 4, $limit); + + $header = pack("vv", $record, $limit); // Headers for continue records + + // Retrieve chunks of 2080/8224 bytes +4 for the header. + $data_length = strlen($data); + for ($i = $limit + 4; $i < ($data_length - $limit); $i += $limit) { + $tmp .= $header; + $tmp .= substr($data, $i, $limit); + } + + // Retrieve the last chunk of data + $header = pack("vv", $record, strlen($data) - $i); + $tmp .= $header; + $tmp .= substr($data, $i, strlen($data) - $i); + + return $tmp; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Escher.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Escher.php new file mode 100644 index 0000000..c37fda9 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Escher.php @@ -0,0 +1,523 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel5 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + + +/** + * PHPExcel_Shared_Escher_DggContainer_BstoreContainer + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel5 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + */ +class PHPExcel_Writer_Excel5_Escher +{ + /** + * The object we are writing + */ + private $object; + + /** + * The written binary data + */ + private $data; + + /** + * Shape offsets. Positions in binary stream where a new shape record begins + * + * @var array + */ + private $spOffsets; + + /** + * Shape types. + * + * @var array + */ + private $spTypes; + + /** + * Constructor + * + * @param mixed + */ + public function __construct($object) + { + $this->object = $object; + } + + /** + * Process the object to be written + */ + public function close() + { + // initialize + $this->data = ''; + + switch (get_class($this->object)) { + case 'PHPExcel_Shared_Escher': + if ($dggContainer = $this->object->getDggContainer()) { + $writer = new PHPExcel_Writer_Excel5_Escher($dggContainer); + $this->data = $writer->close(); + } elseif ($dgContainer = $this->object->getDgContainer()) { + $writer = new PHPExcel_Writer_Excel5_Escher($dgContainer); + $this->data = $writer->close(); + $this->spOffsets = $writer->getSpOffsets(); + $this->spTypes = $writer->getSpTypes(); + } + break; + case 'PHPExcel_Shared_Escher_DggContainer': + // this is a container record + + // initialize + $innerData = ''; + + // write the dgg + $recVer = 0x0; + $recInstance = 0x0000; + $recType = 0xF006; + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + // dgg data + $dggData = + pack( + 'VVVV', + $this->object->getSpIdMax(), // maximum shape identifier increased by one + $this->object->getCDgSaved() + 1, // number of file identifier clusters increased by one + $this->object->getCSpSaved(), + $this->object->getCDgSaved() // count total number of drawings saved + ); + + // add file identifier clusters (one per drawing) + $IDCLs = $this->object->getIDCLs(); + + foreach ($IDCLs as $dgId => $maxReducedSpId) { + $dggData .= pack('VV', $dgId, $maxReducedSpId + 1); + } + + $header = pack('vvV', $recVerInstance, $recType, strlen($dggData)); + $innerData .= $header . $dggData; + + // write the bstoreContainer + if ($bstoreContainer = $this->object->getBstoreContainer()) { + $writer = new PHPExcel_Writer_Excel5_Escher($bstoreContainer); + $innerData .= $writer->close(); + } + + // write the record + $recVer = 0xF; + $recInstance = 0x0000; + $recType = 0xF000; + $length = strlen($innerData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $this->data = $header . $innerData; + break; + case 'PHPExcel_Shared_Escher_DggContainer_BstoreContainer': + // this is a container record + + // initialize + $innerData = ''; + + // treat the inner data + if ($BSECollection = $this->object->getBSECollection()) { + foreach ($BSECollection as $BSE) { + $writer = new PHPExcel_Writer_Excel5_Escher($BSE); + $innerData .= $writer->close(); + } + } + + // write the record + $recVer = 0xF; + $recInstance = count($this->object->getBSECollection()); + $recType = 0xF001; + $length = strlen($innerData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $this->data = $header . $innerData; + break; + case 'PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE': + // this is a semi-container record + + // initialize + $innerData = ''; + + // here we treat the inner data + if ($blip = $this->object->getBlip()) { + $writer = new PHPExcel_Writer_Excel5_Escher($blip); + $innerData .= $writer->close(); + } + + // initialize + $data = ''; + + $btWin32 = $this->object->getBlipType(); + $btMacOS = $this->object->getBlipType(); + $data .= pack('CC', $btWin32, $btMacOS); + + $rgbUid = pack('VVVV', 0, 0, 0, 0); // todo + $data .= $rgbUid; + + $tag = 0; + $size = strlen($innerData); + $cRef = 1; + $foDelay = 0; //todo + $unused1 = 0x0; + $cbName = 0x0; + $unused2 = 0x0; + $unused3 = 0x0; + $data .= pack('vVVVCCCC', $tag, $size, $cRef, $foDelay, $unused1, $cbName, $unused2, $unused3); + + $data .= $innerData; + + // write the record + $recVer = 0x2; + $recInstance = $this->object->getBlipType(); + $recType = 0xF007; + $length = strlen($data); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $this->data = $header; + + $this->data .= $data; + break; + case 'PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE_Blip': + // this is an atom record + + // write the record + switch ($this->object->getParent()->getBlipType()) { + case PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE::BLIPTYPE_JPEG: + // initialize + $innerData = ''; + + $rgbUid1 = pack('VVVV', 0, 0, 0, 0); // todo + $innerData .= $rgbUid1; + + $tag = 0xFF; // todo + $innerData .= pack('C', $tag); + + $innerData .= $this->object->getData(); + + $recVer = 0x0; + $recInstance = 0x46A; + $recType = 0xF01D; + $length = strlen($innerData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $this->data = $header; + + $this->data .= $innerData; + break; + + case PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE::BLIPTYPE_PNG: + // initialize + $innerData = ''; + + $rgbUid1 = pack('VVVV', 0, 0, 0, 0); // todo + $innerData .= $rgbUid1; + + $tag = 0xFF; // todo + $innerData .= pack('C', $tag); + + $innerData .= $this->object->getData(); + + $recVer = 0x0; + $recInstance = 0x6E0; + $recType = 0xF01E; + $length = strlen($innerData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $this->data = $header; + + $this->data .= $innerData; + break; + } + break; + case 'PHPExcel_Shared_Escher_DgContainer': + // this is a container record + + // initialize + $innerData = ''; + + // write the dg + $recVer = 0x0; + $recInstance = $this->object->getDgId(); + $recType = 0xF008; + $length = 8; + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + // number of shapes in this drawing (including group shape) + $countShapes = count($this->object->getSpgrContainer()->getChildren()); + $innerData .= $header . pack('VV', $countShapes, $this->object->getLastSpId()); + //$innerData .= $header . pack('VV', 0, 0); + + // write the spgrContainer + if ($spgrContainer = $this->object->getSpgrContainer()) { + $writer = new PHPExcel_Writer_Excel5_Escher($spgrContainer); + $innerData .= $writer->close(); + + // get the shape offsets relative to the spgrContainer record + $spOffsets = $writer->getSpOffsets(); + $spTypes = $writer->getSpTypes(); + + // save the shape offsets relative to dgContainer + foreach ($spOffsets as & $spOffset) { + $spOffset += 24; // add length of dgContainer header data (8 bytes) plus dg data (16 bytes) + } + + $this->spOffsets = $spOffsets; + $this->spTypes = $spTypes; + } + + // write the record + $recVer = 0xF; + $recInstance = 0x0000; + $recType = 0xF002; + $length = strlen($innerData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $this->data = $header . $innerData; + break; + case 'PHPExcel_Shared_Escher_DgContainer_SpgrContainer': + // this is a container record + + // initialize + $innerData = ''; + + // initialize spape offsets + $totalSize = 8; + $spOffsets = array(); + $spTypes = array(); + + // treat the inner data + foreach ($this->object->getChildren() as $spContainer) { + $writer = new PHPExcel_Writer_Excel5_Escher($spContainer); + $spData = $writer->close(); + $innerData .= $spData; + + // save the shape offsets (where new shape records begin) + $totalSize += strlen($spData); + $spOffsets[] = $totalSize; + + $spTypes = array_merge($spTypes, $writer->getSpTypes()); + } + + // write the record + $recVer = 0xF; + $recInstance = 0x0000; + $recType = 0xF003; + $length = strlen($innerData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $this->data = $header . $innerData; + $this->spOffsets = $spOffsets; + $this->spTypes = $spTypes; + break; + case 'PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer': + // initialize + $data = ''; + + // build the data + + // write group shape record, if necessary? + if ($this->object->getSpgr()) { + $recVer = 0x1; + $recInstance = 0x0000; + $recType = 0xF009; + $length = 0x00000010; + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $data .= $header . pack('VVVV', 0, 0, 0, 0); + } + $this->spTypes[] = ($this->object->getSpType()); + + // write the shape record + $recVer = 0x2; + $recInstance = $this->object->getSpType(); // shape type + $recType = 0xF00A; + $length = 0x00000008; + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $data .= $header . pack('VV', $this->object->getSpId(), $this->object->getSpgr() ? 0x0005 : 0x0A00); + + + // the options + if ($this->object->getOPTCollection()) { + $optData = ''; + + $recVer = 0x3; + $recInstance = count($this->object->getOPTCollection()); + $recType = 0xF00B; + foreach ($this->object->getOPTCollection() as $property => $value) { + $optData .= pack('vV', $property, $value); + } + $length = strlen($optData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + $data .= $header . $optData; + } + + // the client anchor + if ($this->object->getStartCoordinates()) { + $clientAnchorData = ''; + + $recVer = 0x0; + $recInstance = 0x0; + $recType = 0xF010; + + // start coordinates + list($column, $row) = PHPExcel_Cell::coordinateFromString($this->object->getStartCoordinates()); + $c1 = PHPExcel_Cell::columnIndexFromString($column) - 1; + $r1 = $row - 1; + + // start offsetX + $startOffsetX = $this->object->getStartOffsetX(); + + // start offsetY + $startOffsetY = $this->object->getStartOffsetY(); + + // end coordinates + list($column, $row) = PHPExcel_Cell::coordinateFromString($this->object->getEndCoordinates()); + $c2 = PHPExcel_Cell::columnIndexFromString($column) - 1; + $r2 = $row - 1; + + // end offsetX + $endOffsetX = $this->object->getEndOffsetX(); + + // end offsetY + $endOffsetY = $this->object->getEndOffsetY(); + + $clientAnchorData = pack('vvvvvvvvv', $this->object->getSpFlag(), $c1, $startOffsetX, $r1, $startOffsetY, $c2, $endOffsetX, $r2, $endOffsetY); + + $length = strlen($clientAnchorData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + $data .= $header . $clientAnchorData; + } + + // the client data, just empty for now + if (!$this->object->getSpgr()) { + $clientDataData = ''; + + $recVer = 0x0; + $recInstance = 0x0; + $recType = 0xF011; + + $length = strlen($clientDataData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + $data .= $header . $clientDataData; + } + + // write the record + $recVer = 0xF; + $recInstance = 0x0000; + $recType = 0xF004; + $length = strlen($data); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $this->data = $header . $data; + break; + } + + return $this->data; + } + + /** + * Gets the shape offsets + * + * @return array + */ + public function getSpOffsets() + { + return $this->spOffsets; + } + + /** + * Gets the shape types + * + * @return array + */ + public function getSpTypes() + { + return $this->spTypes; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Font.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Font.php new file mode 100644 index 0000000..ed85ff4 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Font.php @@ -0,0 +1,166 @@ +<?php + +/** + * PHPExcel_Writer_Excel5_Font + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel5 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_Excel5_Font +{ + /** + * Color index + * + * @var int + */ + private $colorIndex; + + /** + * Font + * + * @var PHPExcel_Style_Font + */ + private $font; + + /** + * Constructor + * + * @param PHPExcel_Style_Font $font + */ + public function __construct(PHPExcel_Style_Font $font = null) + { + $this->colorIndex = 0x7FFF; + $this->font = $font; + } + + /** + * Set the color index + * + * @param int $colorIndex + */ + public function setColorIndex($colorIndex) + { + $this->colorIndex = $colorIndex; + } + + /** + * Get font record data + * + * @return string + */ + public function writeFont() + { + $font_outline = 0; + $font_shadow = 0; + + $icv = $this->colorIndex; // Index to color palette + if ($this->font->getSuperScript()) { + $sss = 1; + } elseif ($this->font->getSubScript()) { + $sss = 2; + } else { + $sss = 0; + } + $bFamily = 0; // Font family + $bCharSet = PHPExcel_Shared_Font::getCharsetFromFontName($this->font->getName()); // Character set + + $record = 0x31; // Record identifier + $reserved = 0x00; // Reserved + $grbit = 0x00; // Font attributes + if ($this->font->getItalic()) { + $grbit |= 0x02; + } + if ($this->font->getStrikethrough()) { + $grbit |= 0x08; + } + if ($font_outline) { + $grbit |= 0x10; + } + if ($font_shadow) { + $grbit |= 0x20; + } + + $data = pack( + "vvvvvCCCC", + // Fontsize (in twips) + $this->font->getSize() * 20, + $grbit, + // Colour + $icv, + // Font weight + self::mapBold($this->font->getBold()), + // Superscript/Subscript + $sss, + self::mapUnderline($this->font->getUnderline()), + $bFamily, + $bCharSet, + $reserved + ); + $data .= PHPExcel_Shared_String::UTF8toBIFF8UnicodeShort($this->font->getName()); + + $length = strlen($data); + $header = pack("vv", $record, $length); + + return($header . $data); + } + + /** + * Map to BIFF5-BIFF8 codes for bold + * + * @param boolean $bold + * @return int + */ + private static function mapBold($bold) + { + if ($bold) { + return 0x2BC; // 700 = Bold font weight + } + return 0x190; // 400 = Normal font weight + } + + /** + * Map of BIFF2-BIFF8 codes for underline styles + * @static array of int + * + */ + private static $mapUnderline = array( + PHPExcel_Style_Font::UNDERLINE_NONE => 0x00, + PHPExcel_Style_Font::UNDERLINE_SINGLE => 0x01, + PHPExcel_Style_Font::UNDERLINE_DOUBLE => 0x02, + PHPExcel_Style_Font::UNDERLINE_SINGLEACCOUNTING => 0x21, + PHPExcel_Style_Font::UNDERLINE_DOUBLEACCOUNTING => 0x22, + ); + + /** + * Map underline + * + * @param string + * @return int + */ + private static function mapUnderline($underline) + { + if (isset(self::$mapUnderline[$underline])) { + return self::$mapUnderline[$underline]; + } + return 0x00; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Parser.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Parser.php new file mode 100644 index 0000000..0cf1c1d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Parser.php @@ -0,0 +1,1531 @@ +<?php + +/** + * PHPExcel_Writer_Excel5_Parser + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel5 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +// Original file header of PEAR::Spreadsheet_Excel_Writer_Parser (used as the base for this class): +// ----------------------------------------------------------------------------------------- +// * Class for parsing Excel formulas +// * +// * License Information: +// * +// * Spreadsheet_Excel_Writer: A library for generating Excel Spreadsheets +// * Copyright (c) 2002-2003 Xavier Noguer xnoguer@rezebra.com +// * +// * This library is free software; you can redistribute it and/or +// * modify it under the terms of the GNU Lesser General Public +// * License as published by the Free Software Foundation; either +// * version 2.1 of the License, or (at your option) any later version. +// * +// * This library is distributed in the hope that it will be useful, +// * but WITHOUT ANY WARRANTY; without even the implied warranty of +// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// * Lesser General Public License for more details. +// * +// * You should have received a copy of the GNU Lesser General Public +// * License along with this library; if not, write to the Free Software +// * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// */ +class PHPExcel_Writer_Excel5_Parser +{ + /** Constants */ + // Sheet title in unquoted form + // Invalid sheet title characters cannot occur in the sheet title: + // *:/\?[] + // Moreover, there are valid sheet title characters that cannot occur in unquoted form (there may be more?) + // +-% '^&<>=,;#()"{} + const REGEX_SHEET_TITLE_UNQUOTED = '[^\*\:\/\\\\\?\[\]\+\-\% \\\'\^\&\<\>\=\,\;\#\(\)\"\{\}]+'; + + // Sheet title in quoted form (without surrounding quotes) + // Invalid sheet title characters cannot occur in the sheet title: + // *:/\?[] (usual invalid sheet title characters) + // Single quote is represented as a pair '' + const REGEX_SHEET_TITLE_QUOTED = '(([^\*\:\/\\\\\?\[\]\\\'])+|(\\\'\\\')+)+'; + + /** + * The index of the character we are currently looking at + * @var integer + */ + public $currentCharacter; + + /** + * The token we are working on. + * @var string + */ + public $currentToken; + + /** + * The formula to parse + * @var string + */ + private $formula; + + /** + * The character ahead of the current char + * @var string + */ + public $lookAhead; + + /** + * The parse tree to be generated + * @var string + */ + private $parseTree; + + /** + * Array of external sheets + * @var array + */ + private $externalSheets; + + /** + * Array of sheet references in the form of REF structures + * @var array + */ + public $references; + + /** + * The class constructor + * + */ + public function __construct() + { + $this->currentCharacter = 0; + $this->currentToken = ''; // The token we are working on. + $this->formula = ''; // The formula to parse. + $this->lookAhead = ''; // The character ahead of the current char. + $this->parseTree = ''; // The parse tree to be generated. + $this->initializeHashes(); // Initialize the hashes: ptg's and function's ptg's + $this->externalSheets = array(); + $this->references = array(); + } + + /** + * Initialize the ptg and function hashes. + * + * @access private + */ + private function initializeHashes() + { + // The Excel ptg indices + $this->ptg = array( + 'ptgExp' => 0x01, + 'ptgTbl' => 0x02, + 'ptgAdd' => 0x03, + 'ptgSub' => 0x04, + 'ptgMul' => 0x05, + 'ptgDiv' => 0x06, + 'ptgPower' => 0x07, + 'ptgConcat' => 0x08, + 'ptgLT' => 0x09, + 'ptgLE' => 0x0A, + 'ptgEQ' => 0x0B, + 'ptgGE' => 0x0C, + 'ptgGT' => 0x0D, + 'ptgNE' => 0x0E, + 'ptgIsect' => 0x0F, + 'ptgUnion' => 0x10, + 'ptgRange' => 0x11, + 'ptgUplus' => 0x12, + 'ptgUminus' => 0x13, + 'ptgPercent' => 0x14, + 'ptgParen' => 0x15, + 'ptgMissArg' => 0x16, + 'ptgStr' => 0x17, + 'ptgAttr' => 0x19, + 'ptgSheet' => 0x1A, + 'ptgEndSheet' => 0x1B, + 'ptgErr' => 0x1C, + 'ptgBool' => 0x1D, + 'ptgInt' => 0x1E, + 'ptgNum' => 0x1F, + 'ptgArray' => 0x20, + 'ptgFunc' => 0x21, + 'ptgFuncVar' => 0x22, + 'ptgName' => 0x23, + 'ptgRef' => 0x24, + 'ptgArea' => 0x25, + 'ptgMemArea' => 0x26, + 'ptgMemErr' => 0x27, + 'ptgMemNoMem' => 0x28, + 'ptgMemFunc' => 0x29, + 'ptgRefErr' => 0x2A, + 'ptgAreaErr' => 0x2B, + 'ptgRefN' => 0x2C, + 'ptgAreaN' => 0x2D, + 'ptgMemAreaN' => 0x2E, + 'ptgMemNoMemN' => 0x2F, + 'ptgNameX' => 0x39, + 'ptgRef3d' => 0x3A, + 'ptgArea3d' => 0x3B, + 'ptgRefErr3d' => 0x3C, + 'ptgAreaErr3d' => 0x3D, + 'ptgArrayV' => 0x40, + 'ptgFuncV' => 0x41, + 'ptgFuncVarV' => 0x42, + 'ptgNameV' => 0x43, + 'ptgRefV' => 0x44, + 'ptgAreaV' => 0x45, + 'ptgMemAreaV' => 0x46, + 'ptgMemErrV' => 0x47, + 'ptgMemNoMemV' => 0x48, + 'ptgMemFuncV' => 0x49, + 'ptgRefErrV' => 0x4A, + 'ptgAreaErrV' => 0x4B, + 'ptgRefNV' => 0x4C, + 'ptgAreaNV' => 0x4D, + 'ptgMemAreaNV' => 0x4E, + 'ptgMemNoMemN' => 0x4F, + 'ptgFuncCEV' => 0x58, + 'ptgNameXV' => 0x59, + 'ptgRef3dV' => 0x5A, + 'ptgArea3dV' => 0x5B, + 'ptgRefErr3dV' => 0x5C, + 'ptgAreaErr3d' => 0x5D, + 'ptgArrayA' => 0x60, + 'ptgFuncA' => 0x61, + 'ptgFuncVarA' => 0x62, + 'ptgNameA' => 0x63, + 'ptgRefA' => 0x64, + 'ptgAreaA' => 0x65, + 'ptgMemAreaA' => 0x66, + 'ptgMemErrA' => 0x67, + 'ptgMemNoMemA' => 0x68, + 'ptgMemFuncA' => 0x69, + 'ptgRefErrA' => 0x6A, + 'ptgAreaErrA' => 0x6B, + 'ptgRefNA' => 0x6C, + 'ptgAreaNA' => 0x6D, + 'ptgMemAreaNA' => 0x6E, + 'ptgMemNoMemN' => 0x6F, + 'ptgFuncCEA' => 0x78, + 'ptgNameXA' => 0x79, + 'ptgRef3dA' => 0x7A, + 'ptgArea3dA' => 0x7B, + 'ptgRefErr3dA' => 0x7C, + 'ptgAreaErr3d' => 0x7D + ); + + // Thanks to Michael Meeks and Gnumeric for the initial arg values. + // + // The following hash was generated by "function_locale.pl" in the distro. + // Refer to function_locale.pl for non-English function names. + // + // The array elements are as follow: + // ptg: The Excel function ptg code. + // args: The number of arguments that the function takes: + // >=0 is a fixed number of arguments. + // -1 is a variable number of arguments. + // class: The reference, value or array class of the function args. + // vol: The function is volatile. + // + $this->functions = array( + // function ptg args class vol + 'COUNT' => array( 0, -1, 0, 0 ), + 'IF' => array( 1, -1, 1, 0 ), + 'ISNA' => array( 2, 1, 1, 0 ), + 'ISERROR' => array( 3, 1, 1, 0 ), + 'SUM' => array( 4, -1, 0, 0 ), + 'AVERAGE' => array( 5, -1, 0, 0 ), + 'MIN' => array( 6, -1, 0, 0 ), + 'MAX' => array( 7, -1, 0, 0 ), + 'ROW' => array( 8, -1, 0, 0 ), + 'COLUMN' => array( 9, -1, 0, 0 ), + 'NA' => array( 10, 0, 0, 0 ), + 'NPV' => array( 11, -1, 1, 0 ), + 'STDEV' => array( 12, -1, 0, 0 ), + 'DOLLAR' => array( 13, -1, 1, 0 ), + 'FIXED' => array( 14, -1, 1, 0 ), + 'SIN' => array( 15, 1, 1, 0 ), + 'COS' => array( 16, 1, 1, 0 ), + 'TAN' => array( 17, 1, 1, 0 ), + 'ATAN' => array( 18, 1, 1, 0 ), + 'PI' => array( 19, 0, 1, 0 ), + 'SQRT' => array( 20, 1, 1, 0 ), + 'EXP' => array( 21, 1, 1, 0 ), + 'LN' => array( 22, 1, 1, 0 ), + 'LOG10' => array( 23, 1, 1, 0 ), + 'ABS' => array( 24, 1, 1, 0 ), + 'INT' => array( 25, 1, 1, 0 ), + 'SIGN' => array( 26, 1, 1, 0 ), + 'ROUND' => array( 27, 2, 1, 0 ), + 'LOOKUP' => array( 28, -1, 0, 0 ), + 'INDEX' => array( 29, -1, 0, 1 ), + 'REPT' => array( 30, 2, 1, 0 ), + 'MID' => array( 31, 3, 1, 0 ), + 'LEN' => array( 32, 1, 1, 0 ), + 'VALUE' => array( 33, 1, 1, 0 ), + 'TRUE' => array( 34, 0, 1, 0 ), + 'FALSE' => array( 35, 0, 1, 0 ), + 'AND' => array( 36, -1, 0, 0 ), + 'OR' => array( 37, -1, 0, 0 ), + 'NOT' => array( 38, 1, 1, 0 ), + 'MOD' => array( 39, 2, 1, 0 ), + 'DCOUNT' => array( 40, 3, 0, 0 ), + 'DSUM' => array( 41, 3, 0, 0 ), + 'DAVERAGE' => array( 42, 3, 0, 0 ), + 'DMIN' => array( 43, 3, 0, 0 ), + 'DMAX' => array( 44, 3, 0, 0 ), + 'DSTDEV' => array( 45, 3, 0, 0 ), + 'VAR' => array( 46, -1, 0, 0 ), + 'DVAR' => array( 47, 3, 0, 0 ), + 'TEXT' => array( 48, 2, 1, 0 ), + 'LINEST' => array( 49, -1, 0, 0 ), + 'TREND' => array( 50, -1, 0, 0 ), + 'LOGEST' => array( 51, -1, 0, 0 ), + 'GROWTH' => array( 52, -1, 0, 0 ), + 'PV' => array( 56, -1, 1, 0 ), + 'FV' => array( 57, -1, 1, 0 ), + 'NPER' => array( 58, -1, 1, 0 ), + 'PMT' => array( 59, -1, 1, 0 ), + 'RATE' => array( 60, -1, 1, 0 ), + 'MIRR' => array( 61, 3, 0, 0 ), + 'IRR' => array( 62, -1, 0, 0 ), + 'RAND' => array( 63, 0, 1, 1 ), + 'MATCH' => array( 64, -1, 0, 0 ), + 'DATE' => array( 65, 3, 1, 0 ), + 'TIME' => array( 66, 3, 1, 0 ), + 'DAY' => array( 67, 1, 1, 0 ), + 'MONTH' => array( 68, 1, 1, 0 ), + 'YEAR' => array( 69, 1, 1, 0 ), + 'WEEKDAY' => array( 70, -1, 1, 0 ), + 'HOUR' => array( 71, 1, 1, 0 ), + 'MINUTE' => array( 72, 1, 1, 0 ), + 'SECOND' => array( 73, 1, 1, 0 ), + 'NOW' => array( 74, 0, 1, 1 ), + 'AREAS' => array( 75, 1, 0, 1 ), + 'ROWS' => array( 76, 1, 0, 1 ), + 'COLUMNS' => array( 77, 1, 0, 1 ), + 'OFFSET' => array( 78, -1, 0, 1 ), + 'SEARCH' => array( 82, -1, 1, 0 ), + 'TRANSPOSE' => array( 83, 1, 1, 0 ), + 'TYPE' => array( 86, 1, 1, 0 ), + 'ATAN2' => array( 97, 2, 1, 0 ), + 'ASIN' => array( 98, 1, 1, 0 ), + 'ACOS' => array( 99, 1, 1, 0 ), + 'CHOOSE' => array( 100, -1, 1, 0 ), + 'HLOOKUP' => array( 101, -1, 0, 0 ), + 'VLOOKUP' => array( 102, -1, 0, 0 ), + 'ISREF' => array( 105, 1, 0, 0 ), + 'LOG' => array( 109, -1, 1, 0 ), + 'CHAR' => array( 111, 1, 1, 0 ), + 'LOWER' => array( 112, 1, 1, 0 ), + 'UPPER' => array( 113, 1, 1, 0 ), + 'PROPER' => array( 114, 1, 1, 0 ), + 'LEFT' => array( 115, -1, 1, 0 ), + 'RIGHT' => array( 116, -1, 1, 0 ), + 'EXACT' => array( 117, 2, 1, 0 ), + 'TRIM' => array( 118, 1, 1, 0 ), + 'REPLACE' => array( 119, 4, 1, 0 ), + 'SUBSTITUTE' => array( 120, -1, 1, 0 ), + 'CODE' => array( 121, 1, 1, 0 ), + 'FIND' => array( 124, -1, 1, 0 ), + 'CELL' => array( 125, -1, 0, 1 ), + 'ISERR' => array( 126, 1, 1, 0 ), + 'ISTEXT' => array( 127, 1, 1, 0 ), + 'ISNUMBER' => array( 128, 1, 1, 0 ), + 'ISBLANK' => array( 129, 1, 1, 0 ), + 'T' => array( 130, 1, 0, 0 ), + 'N' => array( 131, 1, 0, 0 ), + 'DATEVALUE' => array( 140, 1, 1, 0 ), + 'TIMEVALUE' => array( 141, 1, 1, 0 ), + 'SLN' => array( 142, 3, 1, 0 ), + 'SYD' => array( 143, 4, 1, 0 ), + 'DDB' => array( 144, -1, 1, 0 ), + 'INDIRECT' => array( 148, -1, 1, 1 ), + 'CALL' => array( 150, -1, 1, 0 ), + 'CLEAN' => array( 162, 1, 1, 0 ), + 'MDETERM' => array( 163, 1, 2, 0 ), + 'MINVERSE' => array( 164, 1, 2, 0 ), + 'MMULT' => array( 165, 2, 2, 0 ), + 'IPMT' => array( 167, -1, 1, 0 ), + 'PPMT' => array( 168, -1, 1, 0 ), + 'COUNTA' => array( 169, -1, 0, 0 ), + 'PRODUCT' => array( 183, -1, 0, 0 ), + 'FACT' => array( 184, 1, 1, 0 ), + 'DPRODUCT' => array( 189, 3, 0, 0 ), + 'ISNONTEXT' => array( 190, 1, 1, 0 ), + 'STDEVP' => array( 193, -1, 0, 0 ), + 'VARP' => array( 194, -1, 0, 0 ), + 'DSTDEVP' => array( 195, 3, 0, 0 ), + 'DVARP' => array( 196, 3, 0, 0 ), + 'TRUNC' => array( 197, -1, 1, 0 ), + 'ISLOGICAL' => array( 198, 1, 1, 0 ), + 'DCOUNTA' => array( 199, 3, 0, 0 ), + 'USDOLLAR' => array( 204, -1, 1, 0 ), + 'FINDB' => array( 205, -1, 1, 0 ), + 'SEARCHB' => array( 206, -1, 1, 0 ), + 'REPLACEB' => array( 207, 4, 1, 0 ), + 'LEFTB' => array( 208, -1, 1, 0 ), + 'RIGHTB' => array( 209, -1, 1, 0 ), + 'MIDB' => array( 210, 3, 1, 0 ), + 'LENB' => array( 211, 1, 1, 0 ), + 'ROUNDUP' => array( 212, 2, 1, 0 ), + 'ROUNDDOWN' => array( 213, 2, 1, 0 ), + 'ASC' => array( 214, 1, 1, 0 ), + 'DBCS' => array( 215, 1, 1, 0 ), + 'RANK' => array( 216, -1, 0, 0 ), + 'ADDRESS' => array( 219, -1, 1, 0 ), + 'DAYS360' => array( 220, -1, 1, 0 ), + 'TODAY' => array( 221, 0, 1, 1 ), + 'VDB' => array( 222, -1, 1, 0 ), + 'MEDIAN' => array( 227, -1, 0, 0 ), + 'SUMPRODUCT' => array( 228, -1, 2, 0 ), + 'SINH' => array( 229, 1, 1, 0 ), + 'COSH' => array( 230, 1, 1, 0 ), + 'TANH' => array( 231, 1, 1, 0 ), + 'ASINH' => array( 232, 1, 1, 0 ), + 'ACOSH' => array( 233, 1, 1, 0 ), + 'ATANH' => array( 234, 1, 1, 0 ), + 'DGET' => array( 235, 3, 0, 0 ), + 'INFO' => array( 244, 1, 1, 1 ), + 'DB' => array( 247, -1, 1, 0 ), + 'FREQUENCY' => array( 252, 2, 0, 0 ), + 'ERROR.TYPE' => array( 261, 1, 1, 0 ), + 'REGISTER.ID' => array( 267, -1, 1, 0 ), + 'AVEDEV' => array( 269, -1, 0, 0 ), + 'BETADIST' => array( 270, -1, 1, 0 ), + 'GAMMALN' => array( 271, 1, 1, 0 ), + 'BETAINV' => array( 272, -1, 1, 0 ), + 'BINOMDIST' => array( 273, 4, 1, 0 ), + 'CHIDIST' => array( 274, 2, 1, 0 ), + 'CHIINV' => array( 275, 2, 1, 0 ), + 'COMBIN' => array( 276, 2, 1, 0 ), + 'CONFIDENCE' => array( 277, 3, 1, 0 ), + 'CRITBINOM' => array( 278, 3, 1, 0 ), + 'EVEN' => array( 279, 1, 1, 0 ), + 'EXPONDIST' => array( 280, 3, 1, 0 ), + 'FDIST' => array( 281, 3, 1, 0 ), + 'FINV' => array( 282, 3, 1, 0 ), + 'FISHER' => array( 283, 1, 1, 0 ), + 'FISHERINV' => array( 284, 1, 1, 0 ), + 'FLOOR' => array( 285, 2, 1, 0 ), + 'GAMMADIST' => array( 286, 4, 1, 0 ), + 'GAMMAINV' => array( 287, 3, 1, 0 ), + 'CEILING' => array( 288, 2, 1, 0 ), + 'HYPGEOMDIST' => array( 289, 4, 1, 0 ), + 'LOGNORMDIST' => array( 290, 3, 1, 0 ), + 'LOGINV' => array( 291, 3, 1, 0 ), + 'NEGBINOMDIST' => array( 292, 3, 1, 0 ), + 'NORMDIST' => array( 293, 4, 1, 0 ), + 'NORMSDIST' => array( 294, 1, 1, 0 ), + 'NORMINV' => array( 295, 3, 1, 0 ), + 'NORMSINV' => array( 296, 1, 1, 0 ), + 'STANDARDIZE' => array( 297, 3, 1, 0 ), + 'ODD' => array( 298, 1, 1, 0 ), + 'PERMUT' => array( 299, 2, 1, 0 ), + 'POISSON' => array( 300, 3, 1, 0 ), + 'TDIST' => array( 301, 3, 1, 0 ), + 'WEIBULL' => array( 302, 4, 1, 0 ), + 'SUMXMY2' => array( 303, 2, 2, 0 ), + 'SUMX2MY2' => array( 304, 2, 2, 0 ), + 'SUMX2PY2' => array( 305, 2, 2, 0 ), + 'CHITEST' => array( 306, 2, 2, 0 ), + 'CORREL' => array( 307, 2, 2, 0 ), + 'COVAR' => array( 308, 2, 2, 0 ), + 'FORECAST' => array( 309, 3, 2, 0 ), + 'FTEST' => array( 310, 2, 2, 0 ), + 'INTERCEPT' => array( 311, 2, 2, 0 ), + 'PEARSON' => array( 312, 2, 2, 0 ), + 'RSQ' => array( 313, 2, 2, 0 ), + 'STEYX' => array( 314, 2, 2, 0 ), + 'SLOPE' => array( 315, 2, 2, 0 ), + 'TTEST' => array( 316, 4, 2, 0 ), + 'PROB' => array( 317, -1, 2, 0 ), + 'DEVSQ' => array( 318, -1, 0, 0 ), + 'GEOMEAN' => array( 319, -1, 0, 0 ), + 'HARMEAN' => array( 320, -1, 0, 0 ), + 'SUMSQ' => array( 321, -1, 0, 0 ), + 'KURT' => array( 322, -1, 0, 0 ), + 'SKEW' => array( 323, -1, 0, 0 ), + 'ZTEST' => array( 324, -1, 0, 0 ), + 'LARGE' => array( 325, 2, 0, 0 ), + 'SMALL' => array( 326, 2, 0, 0 ), + 'QUARTILE' => array( 327, 2, 0, 0 ), + 'PERCENTILE' => array( 328, 2, 0, 0 ), + 'PERCENTRANK' => array( 329, -1, 0, 0 ), + 'MODE' => array( 330, -1, 2, 0 ), + 'TRIMMEAN' => array( 331, 2, 0, 0 ), + 'TINV' => array( 332, 2, 1, 0 ), + 'CONCATENATE' => array( 336, -1, 1, 0 ), + 'POWER' => array( 337, 2, 1, 0 ), + 'RADIANS' => array( 342, 1, 1, 0 ), + 'DEGREES' => array( 343, 1, 1, 0 ), + 'SUBTOTAL' => array( 344, -1, 0, 0 ), + 'SUMIF' => array( 345, -1, 0, 0 ), + 'COUNTIF' => array( 346, 2, 0, 0 ), + 'COUNTBLANK' => array( 347, 1, 0, 0 ), + 'ISPMT' => array( 350, 4, 1, 0 ), + 'DATEDIF' => array( 351, 3, 1, 0 ), + 'DATESTRING' => array( 352, 1, 1, 0 ), + 'NUMBERSTRING' => array( 353, 2, 1, 0 ), + 'ROMAN' => array( 354, -1, 1, 0 ), + 'GETPIVOTDATA' => array( 358, -1, 0, 0 ), + 'HYPERLINK' => array( 359, -1, 1, 0 ), + 'PHONETIC' => array( 360, 1, 0, 0 ), + 'AVERAGEA' => array( 361, -1, 0, 0 ), + 'MAXA' => array( 362, -1, 0, 0 ), + 'MINA' => array( 363, -1, 0, 0 ), + 'STDEVPA' => array( 364, -1, 0, 0 ), + 'VARPA' => array( 365, -1, 0, 0 ), + 'STDEVA' => array( 366, -1, 0, 0 ), + 'VARA' => array( 367, -1, 0, 0 ), + 'BAHTTEXT' => array( 368, 1, 0, 0 ), + ); + } + + /** + * Convert a token to the proper ptg value. + * + * @access private + * @param mixed $token The token to convert. + * @return mixed the converted token on success + */ + private function convert($token) + { + if (preg_match("/\"([^\"]|\"\"){0,255}\"/", $token)) { + return $this->convertString($token); + + } elseif (is_numeric($token)) { + return $this->convertNumber($token); + + // match references like A1 or $A$1 + } elseif (preg_match('/^\$?([A-Ia-i]?[A-Za-z])\$?(\d+)$/', $token)) { + return $this->convertRef2d($token); + + // match external references like Sheet1!A1 or Sheet1:Sheet2!A1 or Sheet1!$A$1 or Sheet1:Sheet2!$A$1 + } elseif (preg_match("/^" . self::REGEX_SHEET_TITLE_UNQUOTED . "(\:" . self::REGEX_SHEET_TITLE_UNQUOTED . ")?\!\\$?[A-Ia-i]?[A-Za-z]\\$?(\d+)$/u", $token)) { + return $this->convertRef3d($token); + + // match external references like 'Sheet1'!A1 or 'Sheet1:Sheet2'!A1 or 'Sheet1'!$A$1 or 'Sheet1:Sheet2'!$A$1 + } elseif (preg_match("/^'" . self::REGEX_SHEET_TITLE_QUOTED . "(\:" . self::REGEX_SHEET_TITLE_QUOTED . ")?'\!\\$?[A-Ia-i]?[A-Za-z]\\$?(\d+)$/u", $token)) { + return $this->convertRef3d($token); + + // match ranges like A1:B2 or $A$1:$B$2 + } elseif (preg_match('/^(\$)?[A-Ia-i]?[A-Za-z](\$)?(\d+)\:(\$)?[A-Ia-i]?[A-Za-z](\$)?(\d+)$/', $token)) { + return $this->convertRange2d($token); + + // match external ranges like Sheet1!A1:B2 or Sheet1:Sheet2!A1:B2 or Sheet1!$A$1:$B$2 or Sheet1:Sheet2!$A$1:$B$2 + } elseif (preg_match("/^" . self::REGEX_SHEET_TITLE_UNQUOTED . "(\:" . self::REGEX_SHEET_TITLE_UNQUOTED . ")?\!\\$?([A-Ia-i]?[A-Za-z])?\\$?(\d+)\:\\$?([A-Ia-i]?[A-Za-z])?\\$?(\d+)$/u", $token)) { + return $this->convertRange3d($token); + + // match external ranges like 'Sheet1'!A1:B2 or 'Sheet1:Sheet2'!A1:B2 or 'Sheet1'!$A$1:$B$2 or 'Sheet1:Sheet2'!$A$1:$B$2 + } elseif (preg_match("/^'" . self::REGEX_SHEET_TITLE_QUOTED . "(\:" . self::REGEX_SHEET_TITLE_QUOTED . ")?'\!\\$?([A-Ia-i]?[A-Za-z])?\\$?(\d+)\:\\$?([A-Ia-i]?[A-Za-z])?\\$?(\d+)$/u", $token)) { + return $this->convertRange3d($token); + + // operators (including parentheses) + } elseif (isset($this->ptg[$token])) { + return pack("C", $this->ptg[$token]); + + // match error codes + } elseif (preg_match("/^#[A-Z0\/]{3,5}[!?]{1}$/", $token) or $token == '#N/A') { + return $this->convertError($token); + + // commented so argument number can be processed correctly. See toReversePolish(). + /*elseif (preg_match("/[A-Z0-9\xc0-\xdc\.]+/", $token)) + { + return($this->convertFunction($token, $this->_func_args)); + }*/ + + // if it's an argument, ignore the token (the argument remains) + } elseif ($token == 'arg') { + return ''; + } + + // TODO: use real error codes + throw new PHPExcel_Writer_Exception("Unknown token $token"); + } + + /** + * Convert a number token to ptgInt or ptgNum + * + * @access private + * @param mixed $num an integer or double for conversion to its ptg value + */ + private function convertNumber($num) + { + // Integer in the range 0..2**16-1 + if ((preg_match("/^\d+$/", $num)) and ($num <= 65535)) { + return pack("Cv", $this->ptg['ptgInt'], $num); + } else { // A float + if (PHPExcel_Writer_Excel5_BIFFwriter::getByteOrder()) { // if it's Big Endian + $num = strrev($num); + } + return pack("Cd", $this->ptg['ptgNum'], $num); + } + } + + /** + * Convert a string token to ptgStr + * + * @access private + * @param string $string A string for conversion to its ptg value. + * @return mixed the converted token on success + */ + private function convertString($string) + { + // chop away beggining and ending quotes + $string = substr($string, 1, strlen($string) - 2); + if (strlen($string) > 255) { + throw new PHPExcel_Writer_Exception("String is too long"); + } + + return pack('C', $this->ptg['ptgStr']) . PHPExcel_Shared_String::UTF8toBIFF8UnicodeShort($string); + } + + /** + * Convert a function to a ptgFunc or ptgFuncVarV depending on the number of + * args that it takes. + * + * @access private + * @param string $token The name of the function for convertion to ptg value. + * @param integer $num_args The number of arguments the function receives. + * @return string The packed ptg for the function + */ + private function convertFunction($token, $num_args) + { + $args = $this->functions[$token][1]; +// $volatile = $this->functions[$token][3]; + + // Fixed number of args eg. TIME($i, $j, $k). + if ($args >= 0) { + return pack("Cv", $this->ptg['ptgFuncV'], $this->functions[$token][0]); + } + // Variable number of args eg. SUM($i, $j, $k, ..). + if ($args == -1) { + return pack("CCv", $this->ptg['ptgFuncVarV'], $num_args, $this->functions[$token][0]); + } + } + + /** + * Convert an Excel range such as A1:D4 to a ptgRefV. + * + * @access private + * @param string $range An Excel range in the A1:A2 + * @param int $class + */ + private function convertRange2d($range, $class = 0) + { + + // TODO: possible class value 0,1,2 check Formula.pm + // Split the range into 2 cell refs + if (preg_match('/^(\$)?([A-Ia-i]?[A-Za-z])(\$)?(\d+)\:(\$)?([A-Ia-i]?[A-Za-z])(\$)?(\d+)$/', $range)) { + list($cell1, $cell2) = explode(':', $range); + } else { + // TODO: use real error codes + throw new PHPExcel_Writer_Exception("Unknown range separator"); + } + + // Convert the cell references + list($row1, $col1) = $this->cellToPackedRowcol($cell1); + list($row2, $col2) = $this->cellToPackedRowcol($cell2); + + // The ptg value depends on the class of the ptg. + if ($class == 0) { + $ptgArea = pack("C", $this->ptg['ptgArea']); + } elseif ($class == 1) { + $ptgArea = pack("C", $this->ptg['ptgAreaV']); + } elseif ($class == 2) { + $ptgArea = pack("C", $this->ptg['ptgAreaA']); + } else { + // TODO: use real error codes + throw new PHPExcel_Writer_Exception("Unknown class $class"); + } + return $ptgArea . $row1 . $row2 . $col1. $col2; + } + + /** + * Convert an Excel 3d range such as "Sheet1!A1:D4" or "Sheet1:Sheet2!A1:D4" to + * a ptgArea3d. + * + * @access private + * @param string $token An Excel range in the Sheet1!A1:A2 format. + * @return mixed The packed ptgArea3d token on success. + */ + private function convertRange3d($token) + { +// $class = 0; // formulas like Sheet1!$A$1:$A$2 in list type data validation need this class (0x3B) + + // Split the ref at the ! symbol + list($ext_ref, $range) = explode('!', $token); + + // Convert the external reference part (different for BIFF8) + $ext_ref = $this->getRefIndex($ext_ref); + + // Split the range into 2 cell refs + list($cell1, $cell2) = explode(':', $range); + + // Convert the cell references + if (preg_match("/^(\\$)?[A-Ia-i]?[A-Za-z](\\$)?(\d+)$/", $cell1)) { + list($row1, $col1) = $this->cellToPackedRowcol($cell1); + list($row2, $col2) = $this->cellToPackedRowcol($cell2); + } else { // It's a rows range (like 26:27) + list($row1, $col1, $row2, $col2) = $this->rangeToPackedRange($cell1.':'.$cell2); + } + + // The ptg value depends on the class of the ptg. +// if ($class == 0) { + $ptgArea = pack("C", $this->ptg['ptgArea3d']); +// } elseif ($class == 1) { +// $ptgArea = pack("C", $this->ptg['ptgArea3dV']); +// } elseif ($class == 2) { +// $ptgArea = pack("C", $this->ptg['ptgArea3dA']); +// } else { +// throw new PHPExcel_Writer_Exception("Unknown class $class"); +// } + + return $ptgArea . $ext_ref . $row1 . $row2 . $col1. $col2; + } + + /** + * Convert an Excel reference such as A1, $B2, C$3 or $D$4 to a ptgRefV. + * + * @access private + * @param string $cell An Excel cell reference + * @return string The cell in packed() format with the corresponding ptg + */ + private function convertRef2d($cell) + { +// $class = 2; // as far as I know, this is magick. + + // Convert the cell reference + $cell_array = $this->cellToPackedRowcol($cell); + list($row, $col) = $cell_array; + + // The ptg value depends on the class of the ptg. +// if ($class == 0) { +// $ptgRef = pack("C", $this->ptg['ptgRef']); +// } elseif ($class == 1) { +// $ptgRef = pack("C", $this->ptg['ptgRefV']); +// } elseif ($class == 2) { + $ptgRef = pack("C", $this->ptg['ptgRefA']); +// } else { +// // TODO: use real error codes +// throw new PHPExcel_Writer_Exception("Unknown class $class"); +// } + return $ptgRef.$row.$col; + } + + /** + * Convert an Excel 3d reference such as "Sheet1!A1" or "Sheet1:Sheet2!A1" to a + * ptgRef3d. + * + * @access private + * @param string $cell An Excel cell reference + * @return mixed The packed ptgRef3d token on success. + */ + private function convertRef3d($cell) + { +// $class = 2; // as far as I know, this is magick. + + // Split the ref at the ! symbol + list($ext_ref, $cell) = explode('!', $cell); + + // Convert the external reference part (different for BIFF8) + $ext_ref = $this->getRefIndex($ext_ref); + + // Convert the cell reference part + list($row, $col) = $this->cellToPackedRowcol($cell); + + // The ptg value depends on the class of the ptg. +// if ($class == 0) { +// $ptgRef = pack("C", $this->ptg['ptgRef3d']); +// } elseif ($class == 1) { +// $ptgRef = pack("C", $this->ptg['ptgRef3dV']); +// } elseif ($class == 2) { + $ptgRef = pack("C", $this->ptg['ptgRef3dA']); +// } else { +// throw new PHPExcel_Writer_Exception("Unknown class $class"); +// } + + return $ptgRef . $ext_ref. $row . $col; + } + + /** + * Convert an error code to a ptgErr + * + * @access private + * @param string $errorCode The error code for conversion to its ptg value + * @return string The error code ptgErr + */ + private function convertError($errorCode) + { + switch ($errorCode) { + case '#NULL!': + return pack("C", 0x00); + case '#DIV/0!': + return pack("C", 0x07); + case '#VALUE!': + return pack("C", 0x0F); + case '#REF!': + return pack("C", 0x17); + case '#NAME?': + return pack("C", 0x1D); + case '#NUM!': + return pack("C", 0x24); + case '#N/A': + return pack("C", 0x2A); + } + return pack("C", 0xFF); + } + + /** + * Convert the sheet name part of an external reference, for example "Sheet1" or + * "Sheet1:Sheet2", to a packed structure. + * + * @access private + * @param string $ext_ref The name of the external reference + * @return string The reference index in packed() format + */ + private function packExtRef($ext_ref) + { + $ext_ref = preg_replace("/^'/", '', $ext_ref); // Remove leading ' if any. + $ext_ref = preg_replace("/'$/", '', $ext_ref); // Remove trailing ' if any. + + // Check if there is a sheet range eg., Sheet1:Sheet2. + if (preg_match("/:/", $ext_ref)) { + list($sheet_name1, $sheet_name2) = explode(':', $ext_ref); + + $sheet1 = $this->getSheetIndex($sheet_name1); + if ($sheet1 == -1) { + throw new PHPExcel_Writer_Exception("Unknown sheet name $sheet_name1 in formula"); + } + $sheet2 = $this->getSheetIndex($sheet_name2); + if ($sheet2 == -1) { + throw new PHPExcel_Writer_Exception("Unknown sheet name $sheet_name2 in formula"); + } + + // Reverse max and min sheet numbers if necessary + if ($sheet1 > $sheet2) { + list($sheet1, $sheet2) = array($sheet2, $sheet1); + } + } else { // Single sheet name only. + $sheet1 = $this->getSheetIndex($ext_ref); + if ($sheet1 == -1) { + throw new PHPExcel_Writer_Exception("Unknown sheet name $ext_ref in formula"); + } + $sheet2 = $sheet1; + } + + // References are stored relative to 0xFFFF. + $offset = -1 - $sheet1; + + return pack('vdvv', $offset, 0x00, $sheet1, $sheet2); + } + + /** + * Look up the REF index that corresponds to an external sheet name + * (or range). If it doesn't exist yet add it to the workbook's references + * array. It assumes all sheet names given must exist. + * + * @access private + * @param string $ext_ref The name of the external reference + * @return mixed The reference index in packed() format on success + */ + private function getRefIndex($ext_ref) + { + $ext_ref = preg_replace("/^'/", '', $ext_ref); // Remove leading ' if any. + $ext_ref = preg_replace("/'$/", '', $ext_ref); // Remove trailing ' if any. + $ext_ref = str_replace('\'\'', '\'', $ext_ref); // Replace escaped '' with ' + + // Check if there is a sheet range eg., Sheet1:Sheet2. + if (preg_match("/:/", $ext_ref)) { + list($sheet_name1, $sheet_name2) = explode(':', $ext_ref); + + $sheet1 = $this->getSheetIndex($sheet_name1); + if ($sheet1 == -1) { + throw new PHPExcel_Writer_Exception("Unknown sheet name $sheet_name1 in formula"); + } + $sheet2 = $this->getSheetIndex($sheet_name2); + if ($sheet2 == -1) { + throw new PHPExcel_Writer_Exception("Unknown sheet name $sheet_name2 in formula"); + } + + // Reverse max and min sheet numbers if necessary + if ($sheet1 > $sheet2) { + list($sheet1, $sheet2) = array($sheet2, $sheet1); + } + } else { // Single sheet name only. + $sheet1 = $this->getSheetIndex($ext_ref); + if ($sheet1 == -1) { + throw new PHPExcel_Writer_Exception("Unknown sheet name $ext_ref in formula"); + } + $sheet2 = $sheet1; + } + + // assume all references belong to this document + $supbook_index = 0x00; + $ref = pack('vvv', $supbook_index, $sheet1, $sheet2); + $totalreferences = count($this->references); + $index = -1; + for ($i = 0; $i < $totalreferences; ++$i) { + if ($ref == $this->references[$i]) { + $index = $i; + break; + } + } + // if REF was not found add it to references array + if ($index == -1) { + $this->references[$totalreferences] = $ref; + $index = $totalreferences; + } + + return pack('v', $index); + } + + /** + * Look up the index that corresponds to an external sheet name. The hash of + * sheet names is updated by the addworksheet() method of the + * PHPExcel_Writer_Excel5_Workbook class. + * + * @access private + * @param string $sheet_name Sheet name + * @return integer The sheet index, -1 if the sheet was not found + */ + private function getSheetIndex($sheet_name) + { + if (!isset($this->externalSheets[$sheet_name])) { + return -1; + } else { + return $this->externalSheets[$sheet_name]; + } + } + + /** + * This method is used to update the array of sheet names. It is + * called by the addWorksheet() method of the + * PHPExcel_Writer_Excel5_Workbook class. + * + * @access public + * @see PHPExcel_Writer_Excel5_Workbook::addWorksheet() + * @param string $name The name of the worksheet being added + * @param integer $index The index of the worksheet being added + */ + public function setExtSheet($name, $index) + { + $this->externalSheets[$name] = $index; + } + + /** + * pack() row and column into the required 3 or 4 byte format. + * + * @access private + * @param string $cell The Excel cell reference to be packed + * @return array Array containing the row and column in packed() format + */ + private function cellToPackedRowcol($cell) + { + $cell = strtoupper($cell); + list($row, $col, $row_rel, $col_rel) = $this->cellToRowcol($cell); + if ($col >= 256) { + throw new PHPExcel_Writer_Exception("Column in: $cell greater than 255"); + } + if ($row >= 65536) { + throw new PHPExcel_Writer_Exception("Row in: $cell greater than 65536 "); + } + + // Set the high bits to indicate if row or col are relative. + $col |= $col_rel << 14; + $col |= $row_rel << 15; + $col = pack('v', $col); + + $row = pack('v', $row); + + return array($row, $col); + } + + /** + * pack() row range into the required 3 or 4 byte format. + * Just using maximum col/rows, which is probably not the correct solution + * + * @access private + * @param string $range The Excel range to be packed + * @return array Array containing (row1,col1,row2,col2) in packed() format + */ + private function rangeToPackedRange($range) + { + preg_match('/(\$)?(\d+)\:(\$)?(\d+)/', $range, $match); + // return absolute rows if there is a $ in the ref + $row1_rel = empty($match[1]) ? 1 : 0; + $row1 = $match[2]; + $row2_rel = empty($match[3]) ? 1 : 0; + $row2 = $match[4]; + // Convert 1-index to zero-index + --$row1; + --$row2; + // Trick poor inocent Excel + $col1 = 0; + $col2 = 65535; // FIXME: maximum possible value for Excel 5 (change this!!!) + + // FIXME: this changes for BIFF8 + if (($row1 >= 65536) or ($row2 >= 65536)) { + throw new PHPExcel_Writer_Exception("Row in: $range greater than 65536 "); + } + + // Set the high bits to indicate if rows are relative. + $col1 |= $row1_rel << 15; + $col2 |= $row2_rel << 15; + $col1 = pack('v', $col1); + $col2 = pack('v', $col2); + + $row1 = pack('v', $row1); + $row2 = pack('v', $row2); + + return array($row1, $col1, $row2, $col2); + } + + /** + * Convert an Excel cell reference such as A1 or $B2 or C$3 or $D$4 to a zero + * indexed row and column number. Also returns two (0,1) values to indicate + * whether the row or column are relative references. + * + * @access private + * @param string $cell The Excel cell reference in A1 format. + * @return array + */ + private function cellToRowcol($cell) + { + preg_match('/(\$)?([A-I]?[A-Z])(\$)?(\d+)/', $cell, $match); + // return absolute column if there is a $ in the ref + $col_rel = empty($match[1]) ? 1 : 0; + $col_ref = $match[2]; + $row_rel = empty($match[3]) ? 1 : 0; + $row = $match[4]; + + // Convert base26 column string to a number. + $expn = strlen($col_ref) - 1; + $col = 0; + $col_ref_length = strlen($col_ref); + for ($i = 0; $i < $col_ref_length; ++$i) { + $col += (ord($col_ref{$i}) - 64) * pow(26, $expn); + --$expn; + } + + // Convert 1-index to zero-index + --$row; + --$col; + + return array($row, $col, $row_rel, $col_rel); + } + + /** + * Advance to the next valid token. + * + * @access private + */ + private function advance() + { + $i = $this->currentCharacter; + $formula_length = strlen($this->formula); + // eat up white spaces + if ($i < $formula_length) { + while ($this->formula{$i} == " ") { + ++$i; + } + + if ($i < ($formula_length - 1)) { + $this->lookAhead = $this->formula{$i+1}; + } + $token = ''; + } + + while ($i < $formula_length) { + $token .= $this->formula{$i}; + + if ($i < ($formula_length - 1)) { + $this->lookAhead = $this->formula{$i+1}; + } else { + $this->lookAhead = ''; + } + + if ($this->match($token) != '') { + //if ($i < strlen($this->formula) - 1) { + // $this->lookAhead = $this->formula{$i+1}; + //} + $this->currentCharacter = $i + 1; + $this->currentToken = $token; + return 1; + } + + if ($i < ($formula_length - 2)) { + $this->lookAhead = $this->formula{$i+2}; + } else { // if we run out of characters lookAhead becomes empty + $this->lookAhead = ''; + } + ++$i; + } + //die("Lexical error ".$this->currentCharacter); + } + + /** + * Checks if it's a valid token. + * + * @access private + * @param mixed $token The token to check. + * @return mixed The checked token or false on failure + */ + private function match($token) + { + switch ($token) { + case "+": + case "-": + case "*": + case "/": + case "(": + case ")": + case ",": + case ";": + case ">=": + case "<=": + case "=": + case "<>": + case "^": + case "&": + case "%": + return $token; + break; + case ">": + if ($this->lookAhead == '=') { // it's a GE token + break; + } + return $token; + break; + case "<": + // it's a LE or a NE token + if (($this->lookAhead == '=') or ($this->lookAhead == '>')) { + break; + } + return $token; + break; + default: + // if it's a reference A1 or $A$1 or $A1 or A$1 + if (preg_match('/^\$?[A-Ia-i]?[A-Za-z]\$?[0-9]+$/', $token) and !preg_match("/[0-9]/", $this->lookAhead) and ($this->lookAhead != ':') and ($this->lookAhead != '.') and ($this->lookAhead != '!')) { + return $token; + } elseif (preg_match("/^" . self::REGEX_SHEET_TITLE_UNQUOTED . "(\:" . self::REGEX_SHEET_TITLE_UNQUOTED . ")?\!\\$?[A-Ia-i]?[A-Za-z]\\$?[0-9]+$/u", $token) and !preg_match("/[0-9]/", $this->lookAhead) and ($this->lookAhead != ':') and ($this->lookAhead != '.')) { + // If it's an external reference (Sheet1!A1 or Sheet1:Sheet2!A1 or Sheet1!$A$1 or Sheet1:Sheet2!$A$1) + return $token; + } elseif (preg_match("/^'" . self::REGEX_SHEET_TITLE_QUOTED . "(\:" . self::REGEX_SHEET_TITLE_QUOTED . ")?'\!\\$?[A-Ia-i]?[A-Za-z]\\$?[0-9]+$/u", $token) and !preg_match("/[0-9]/", $this->lookAhead) and ($this->lookAhead != ':') and ($this->lookAhead != '.')) { + // If it's an external reference ('Sheet1'!A1 or 'Sheet1:Sheet2'!A1 or 'Sheet1'!$A$1 or 'Sheet1:Sheet2'!$A$1) + return $token; + } elseif (preg_match('/^(\$)?[A-Ia-i]?[A-Za-z](\$)?[0-9]+:(\$)?[A-Ia-i]?[A-Za-z](\$)?[0-9]+$/', $token) && !preg_match("/[0-9]/", $this->lookAhead)) { + // if it's a range A1:A2 or $A$1:$A$2 + return $token; + } elseif (preg_match("/^" . self::REGEX_SHEET_TITLE_UNQUOTED . "(\:" . self::REGEX_SHEET_TITLE_UNQUOTED . ")?\!\\$?([A-Ia-i]?[A-Za-z])?\\$?[0-9]+:\\$?([A-Ia-i]?[A-Za-z])?\\$?[0-9]+$/u", $token) and !preg_match("/[0-9]/", $this->lookAhead)) { + // If it's an external range like Sheet1!A1:B2 or Sheet1:Sheet2!A1:B2 or Sheet1!$A$1:$B$2 or Sheet1:Sheet2!$A$1:$B$2 + return $token; + } elseif (preg_match("/^'" . self::REGEX_SHEET_TITLE_QUOTED . "(\:" . self::REGEX_SHEET_TITLE_QUOTED . ")?'\!\\$?([A-Ia-i]?[A-Za-z])?\\$?[0-9]+:\\$?([A-Ia-i]?[A-Za-z])?\\$?[0-9]+$/u", $token) and !preg_match("/[0-9]/", $this->lookAhead)) { + // If it's an external range like 'Sheet1'!A1:B2 or 'Sheet1:Sheet2'!A1:B2 or 'Sheet1'!$A$1:$B$2 or 'Sheet1:Sheet2'!$A$1:$B$2 + return $token; + } elseif (is_numeric($token) and (!is_numeric($token.$this->lookAhead) or ($this->lookAhead == '')) and ($this->lookAhead != '!') and ($this->lookAhead != ':')) { + // If it's a number (check that it's not a sheet name or range) + return $token; + } elseif (preg_match("/\"([^\"]|\"\"){0,255}\"/", $token) and $this->lookAhead != '"' and (substr_count($token, '"')%2 == 0)) { + // If it's a string (of maximum 255 characters) + return $token; + } elseif (preg_match("/^#[A-Z0\/]{3,5}[!?]{1}$/", $token) or $token == '#N/A') { + // If it's an error code + return $token; + } elseif (preg_match("/^[A-Z0-9\xc0-\xdc\.]+$/i", $token) and ($this->lookAhead == "(")) { + // if it's a function call + return $token; + } elseif (substr($token, -1) == ')') { + // It's an argument of some description (e.g. a named range), + // precise nature yet to be determined + return $token; + } + return ''; + } + } + + /** + * The parsing method. It parses a formula. + * + * @access public + * @param string $formula The formula to parse, without the initial equal + * sign (=). + * @return mixed true on success + */ + public function parse($formula) + { + $this->currentCharacter = 0; + $this->formula = $formula; + $this->lookAhead = isset($formula{1}) ? $formula{1} : ''; + $this->advance(); + $this->parseTree = $this->condition(); + return true; + } + + /** + * It parses a condition. It assumes the following rule: + * Cond -> Expr [(">" | "<") Expr] + * + * @access private + * @return mixed The parsed ptg'd tree on success + */ + private function condition() + { + $result = $this->expression(); + if ($this->currentToken == "<") { + $this->advance(); + $result2 = $this->expression(); + $result = $this->createTree('ptgLT', $result, $result2); + } elseif ($this->currentToken == ">") { + $this->advance(); + $result2 = $this->expression(); + $result = $this->createTree('ptgGT', $result, $result2); + } elseif ($this->currentToken == "<=") { + $this->advance(); + $result2 = $this->expression(); + $result = $this->createTree('ptgLE', $result, $result2); + } elseif ($this->currentToken == ">=") { + $this->advance(); + $result2 = $this->expression(); + $result = $this->createTree('ptgGE', $result, $result2); + } elseif ($this->currentToken == "=") { + $this->advance(); + $result2 = $this->expression(); + $result = $this->createTree('ptgEQ', $result, $result2); + } elseif ($this->currentToken == "<>") { + $this->advance(); + $result2 = $this->expression(); + $result = $this->createTree('ptgNE', $result, $result2); + } elseif ($this->currentToken == "&") { + $this->advance(); + $result2 = $this->expression(); + $result = $this->createTree('ptgConcat', $result, $result2); + } + return $result; + } + + /** + * It parses a expression. It assumes the following rule: + * Expr -> Term [("+" | "-") Term] + * -> "string" + * -> "-" Term : Negative value + * -> "+" Term : Positive value + * -> Error code + * + * @access private + * @return mixed The parsed ptg'd tree on success + */ + private function expression() + { + // If it's a string return a string node + if (preg_match("/\"([^\"]|\"\"){0,255}\"/", $this->currentToken)) { + $tmp = str_replace('""', '"', $this->currentToken); + if (($tmp == '"') || ($tmp == '')) { + // Trap for "" that has been used for an empty string + $tmp = '""'; + } + $result = $this->createTree($tmp, '', ''); + $this->advance(); + return $result; + // If it's an error code + } elseif (preg_match("/^#[A-Z0\/]{3,5}[!?]{1}$/", $this->currentToken) or $this->currentToken == '#N/A') { + $result = $this->createTree($this->currentToken, 'ptgErr', ''); + $this->advance(); + return $result; + // If it's a negative value + } elseif ($this->currentToken == "-") { + // catch "-" Term + $this->advance(); + $result2 = $this->expression(); + $result = $this->createTree('ptgUminus', $result2, ''); + return $result; + // If it's a positive value + } elseif ($this->currentToken == "+") { + // catch "+" Term + $this->advance(); + $result2 = $this->expression(); + $result = $this->createTree('ptgUplus', $result2, ''); + return $result; + } + $result = $this->term(); + while (($this->currentToken == "+") or + ($this->currentToken == "-") or + ($this->currentToken == "^")) { + /**/ + if ($this->currentToken == "+") { + $this->advance(); + $result2 = $this->term(); + $result = $this->createTree('ptgAdd', $result, $result2); + } elseif ($this->currentToken == "-") { + $this->advance(); + $result2 = $this->term(); + $result = $this->createTree('ptgSub', $result, $result2); + } else { + $this->advance(); + $result2 = $this->term(); + $result = $this->createTree('ptgPower', $result, $result2); + } + } + return $result; + } + + /** + * This function just introduces a ptgParen element in the tree, so that Excel + * doesn't get confused when working with a parenthesized formula afterwards. + * + * @access private + * @see fact() + * @return array The parsed ptg'd tree + */ + private function parenthesizedExpression() + { + $result = $this->createTree('ptgParen', $this->expression(), ''); + return $result; + } + + /** + * It parses a term. It assumes the following rule: + * Term -> Fact [("*" | "/") Fact] + * + * @access private + * @return mixed The parsed ptg'd tree on success + */ + private function term() + { + $result = $this->fact(); + while (($this->currentToken == "*") or + ($this->currentToken == "/")) { + /**/ + if ($this->currentToken == "*") { + $this->advance(); + $result2 = $this->fact(); + $result = $this->createTree('ptgMul', $result, $result2); + } else { + $this->advance(); + $result2 = $this->fact(); + $result = $this->createTree('ptgDiv', $result, $result2); + } + } + return $result; + } + + /** + * It parses a factor. It assumes the following rule: + * Fact -> ( Expr ) + * | CellRef + * | CellRange + * | Number + * | Function + * + * @access private + * @return mixed The parsed ptg'd tree on success + */ + private function fact() + { + if ($this->currentToken == "(") { + $this->advance(); // eat the "(" + $result = $this->parenthesizedExpression(); + if ($this->currentToken != ")") { + throw new PHPExcel_Writer_Exception("')' token expected."); + } + $this->advance(); // eat the ")" + return $result; + } + // if it's a reference + if (preg_match('/^\$?[A-Ia-i]?[A-Za-z]\$?[0-9]+$/', $this->currentToken)) { + $result = $this->createTree($this->currentToken, '', ''); + $this->advance(); + return $result; + } elseif (preg_match("/^" . self::REGEX_SHEET_TITLE_UNQUOTED . "(\:" . self::REGEX_SHEET_TITLE_UNQUOTED . ")?\!\\$?[A-Ia-i]?[A-Za-z]\\$?[0-9]+$/u", $this->currentToken)) { + // If it's an external reference (Sheet1!A1 or Sheet1:Sheet2!A1 or Sheet1!$A$1 or Sheet1:Sheet2!$A$1) + $result = $this->createTree($this->currentToken, '', ''); + $this->advance(); + return $result; + } elseif (preg_match("/^'" . self::REGEX_SHEET_TITLE_QUOTED . "(\:" . self::REGEX_SHEET_TITLE_QUOTED . ")?'\!\\$?[A-Ia-i]?[A-Za-z]\\$?[0-9]+$/u", $this->currentToken)) { + // If it's an external reference ('Sheet1'!A1 or 'Sheet1:Sheet2'!A1 or 'Sheet1'!$A$1 or 'Sheet1:Sheet2'!$A$1) + $result = $this->createTree($this->currentToken, '', ''); + $this->advance(); + return $result; + } elseif (preg_match('/^(\$)?[A-Ia-i]?[A-Za-z](\$)?[0-9]+:(\$)?[A-Ia-i]?[A-Za-z](\$)?[0-9]+$/', $this->currentToken) or + preg_match('/^(\$)?[A-Ia-i]?[A-Za-z](\$)?[0-9]+\.\.(\$)?[A-Ia-i]?[A-Za-z](\$)?[0-9]+$/', $this->currentToken)) { + // if it's a range A1:B2 or $A$1:$B$2 + // must be an error? + $result = $this->createTree($this->currentToken, '', ''); + $this->advance(); + return $result; + } elseif (preg_match("/^" . self::REGEX_SHEET_TITLE_UNQUOTED . "(\:" . self::REGEX_SHEET_TITLE_UNQUOTED . ")?\!\\$?([A-Ia-i]?[A-Za-z])?\\$?[0-9]+:\\$?([A-Ia-i]?[A-Za-z])?\\$?[0-9]+$/u", $this->currentToken)) { + // If it's an external range (Sheet1!A1:B2 or Sheet1:Sheet2!A1:B2 or Sheet1!$A$1:$B$2 or Sheet1:Sheet2!$A$1:$B$2) + // must be an error? + //$result = $this->currentToken; + $result = $this->createTree($this->currentToken, '', ''); + $this->advance(); + return $result; + } elseif (preg_match("/^'" . self::REGEX_SHEET_TITLE_QUOTED . "(\:" . self::REGEX_SHEET_TITLE_QUOTED . ")?'\!\\$?([A-Ia-i]?[A-Za-z])?\\$?[0-9]+:\\$?([A-Ia-i]?[A-Za-z])?\\$?[0-9]+$/u", $this->currentToken)) { + // If it's an external range ('Sheet1'!A1:B2 or 'Sheet1'!A1:B2 or 'Sheet1'!$A$1:$B$2 or 'Sheet1'!$A$1:$B$2) + // must be an error? + //$result = $this->currentToken; + $result = $this->createTree($this->currentToken, '', ''); + $this->advance(); + return $result; + } elseif (is_numeric($this->currentToken)) { + // If it's a number or a percent + if ($this->lookAhead == '%') { + $result = $this->createTree('ptgPercent', $this->currentToken, ''); + $this->advance(); // Skip the percentage operator once we've pre-built that tree + } else { + $result = $this->createTree($this->currentToken, '', ''); + } + $this->advance(); + return $result; + } elseif (preg_match("/^[A-Z0-9\xc0-\xdc\.]+$/i", $this->currentToken)) { + // if it's a function call + $result = $this->func(); + return $result; + } + throw new PHPExcel_Writer_Exception("Syntax error: ".$this->currentToken.", lookahead: ".$this->lookAhead.", current char: ".$this->currentCharacter); + } + + /** + * It parses a function call. It assumes the following rule: + * Func -> ( Expr [,Expr]* ) + * + * @access private + * @return mixed The parsed ptg'd tree on success + */ + private function func() + { + $num_args = 0; // number of arguments received + $function = strtoupper($this->currentToken); + $result = ''; // initialize result + $this->advance(); + $this->advance(); // eat the "(" + while ($this->currentToken != ')') { + /**/ + if ($num_args > 0) { + if ($this->currentToken == "," || $this->currentToken == ";") { + $this->advance(); // eat the "," or ";" + } else { + throw new PHPExcel_Writer_Exception("Syntax error: comma expected in function $function, arg #{$num_args}"); + } + $result2 = $this->condition(); + $result = $this->createTree('arg', $result, $result2); + } else { // first argument + $result2 = $this->condition(); + $result = $this->createTree('arg', '', $result2); + } + ++$num_args; + } + if (!isset($this->functions[$function])) { + throw new PHPExcel_Writer_Exception("Function $function() doesn't exist"); + } + $args = $this->functions[$function][1]; + // If fixed number of args eg. TIME($i, $j, $k). Check that the number of args is valid. + if (($args >= 0) and ($args != $num_args)) { + throw new PHPExcel_Writer_Exception("Incorrect number of arguments in function $function() "); + } + + $result = $this->createTree($function, $result, $num_args); + $this->advance(); // eat the ")" + return $result; + } + + /** + * Creates a tree. In fact an array which may have one or two arrays (sub-trees) + * as elements. + * + * @access private + * @param mixed $value The value of this node. + * @param mixed $left The left array (sub-tree) or a final node. + * @param mixed $right The right array (sub-tree) or a final node. + * @return array A tree + */ + private function createTree($value, $left, $right) + { + return array('value' => $value, 'left' => $left, 'right' => $right); + } + + /** + * Builds a string containing the tree in reverse polish notation (What you + * would use in a HP calculator stack). + * The following tree: + * + * + + * / \ + * 2 3 + * + * produces: "23+" + * + * The following tree: + * + * + + * / \ + * 3 * + * / \ + * 6 A1 + * + * produces: "36A1*+" + * + * In fact all operands, functions, references, etc... are written as ptg's + * + * @access public + * @param array $tree The optional tree to convert. + * @return string The tree in reverse polish notation + */ + public function toReversePolish($tree = array()) + { + $polish = ""; // the string we are going to return + if (empty($tree)) { // If it's the first call use parseTree + $tree = $this->parseTree; + } + + if (is_array($tree['left'])) { + $converted_tree = $this->toReversePolish($tree['left']); + $polish .= $converted_tree; + } elseif ($tree['left'] != '') { // It's a final node + $converted_tree = $this->convert($tree['left']); + $polish .= $converted_tree; + } + if (is_array($tree['right'])) { + $converted_tree = $this->toReversePolish($tree['right']); + $polish .= $converted_tree; + } elseif ($tree['right'] != '') { // It's a final node + $converted_tree = $this->convert($tree['right']); + $polish .= $converted_tree; + } + // if it's a function convert it here (so we can set it's arguments) + if (preg_match("/^[A-Z0-9\xc0-\xdc\.]+$/", $tree['value']) and + !preg_match('/^([A-Ia-i]?[A-Za-z])(\d+)$/', $tree['value']) and + !preg_match("/^[A-Ia-i]?[A-Za-z](\d+)\.\.[A-Ia-i]?[A-Za-z](\d+)$/", $tree['value']) and + !is_numeric($tree['value']) and + !isset($this->ptg[$tree['value']])) { + // left subtree for a function is always an array. + if ($tree['left'] != '') { + $left_tree = $this->toReversePolish($tree['left']); + } else { + $left_tree = ''; + } + // add it's left subtree and return. + return $left_tree.$this->convertFunction($tree['value'], $tree['right']); + } else { + $converted_tree = $this->convert($tree['value']); + } + $polish .= $converted_tree; + return $polish; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Workbook.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Workbook.php new file mode 100644 index 0000000..8b06843 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Workbook.php @@ -0,0 +1,1444 @@ +<?php + +/** + * PHPExcel_Writer_Excel5_Workbook + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel5 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +// Original file header of PEAR::Spreadsheet_Excel_Writer_Workbook (used as the base for this class): +// ----------------------------------------------------------------------------------------- +// /* +// * Module written/ported by Xavier Noguer <xnoguer@rezebra.com> +// * +// * The majority of this is _NOT_ my code. I simply ported it from the +// * PERL Spreadsheet::WriteExcel module. +// * +// * The author of the Spreadsheet::WriteExcel module is John McNamara +// * <jmcnamara@cpan.org> +// * +// * I _DO_ maintain this code, and John McNamara has nothing to do with the +// * porting of this code to PHP. Any questions directly related to this +// * class library should be directed to me. +// * +// * License Information: +// * +// * Spreadsheet_Excel_Writer: A library for generating Excel Spreadsheets +// * Copyright (c) 2002-2003 Xavier Noguer xnoguer@rezebra.com +// * +// * This library is free software; you can redistribute it and/or +// * modify it under the terms of the GNU Lesser General Public +// * License as published by the Free Software Foundation; either +// * version 2.1 of the License, or (at your option) any later version. +// * +// * This library is distributed in the hope that it will be useful, +// * but WITHOUT ANY WARRANTY; without even the implied warranty of +// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// * Lesser General Public License for more details. +// * +// * You should have received a copy of the GNU Lesser General Public +// * License along with this library; if not, write to the Free Software +// * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// */ +class PHPExcel_Writer_Excel5_Workbook extends PHPExcel_Writer_Excel5_BIFFwriter +{ + /** + * Formula parser + * + * @var PHPExcel_Writer_Excel5_Parser + */ + private $parser; + + /** + * The BIFF file size for the workbook. + * @var integer + * @see calcSheetOffsets() + */ + private $biffSize; + + /** + * XF Writers + * @var PHPExcel_Writer_Excel5_Xf[] + */ + private $xfWriters = array(); + + /** + * Array containing the colour palette + * @var array + */ + private $palette; + + /** + * The codepage indicates the text encoding used for strings + * @var integer + */ + private $codepage; + + /** + * The country code used for localization + * @var integer + */ + private $countryCode; + + /** + * Workbook + * @var PHPExcel + */ + private $phpExcel; + + /** + * Fonts writers + * + * @var PHPExcel_Writer_Excel5_Font[] + */ + private $fontWriters = array(); + + /** + * Added fonts. Maps from font's hash => index in workbook + * + * @var array + */ + private $addedFonts = array(); + + /** + * Shared number formats + * + * @var array + */ + private $numberFormats = array(); + + /** + * Added number formats. Maps from numberFormat's hash => index in workbook + * + * @var array + */ + private $addedNumberFormats = array(); + + /** + * Sizes of the binary worksheet streams + * + * @var array + */ + private $worksheetSizes = array(); + + /** + * Offsets of the binary worksheet streams relative to the start of the global workbook stream + * + * @var array + */ + private $worksheetOffsets = array(); + + /** + * Total number of shared strings in workbook + * + * @var int + */ + private $stringTotal; + + /** + * Number of unique shared strings in workbook + * + * @var int + */ + private $stringUnique; + + /** + * Array of unique shared strings in workbook + * + * @var array + */ + private $stringTable; + + /** + * Color cache + */ + private $colors; + + /** + * Escher object corresponding to MSODRAWINGGROUP + * + * @var PHPExcel_Shared_Escher + */ + private $escher; + + + /** + * Class constructor + * + * @param PHPExcel $phpExcel The Workbook + * @param int &$str_total Total number of strings + * @param int &$str_unique Total number of unique strings + * @param array &$str_table String Table + * @param array &$colors Colour Table + * @param mixed $parser The formula parser created for the Workbook + */ + public function __construct(PHPExcel $phpExcel = null, &$str_total, &$str_unique, &$str_table, &$colors, $parser) + { + // It needs to call its parent's constructor explicitly + parent::__construct(); + + $this->parser = $parser; + $this->biffSize = 0; + $this->palette = array(); + $this->countryCode = -1; + + $this->stringTotal = &$str_total; + $this->stringUnique = &$str_unique; + $this->stringTable = &$str_table; + $this->colors = &$colors; + $this->setPaletteXl97(); + + $this->phpExcel = $phpExcel; + + // set BIFFwriter limit for CONTINUE records + // $this->_limit = 8224; + $this->codepage = 0x04B0; + + // Add empty sheets and Build color cache + $countSheets = $phpExcel->getSheetCount(); + for ($i = 0; $i < $countSheets; ++$i) { + $phpSheet = $phpExcel->getSheet($i); + + $this->parser->setExtSheet($phpSheet->getTitle(), $i); // Register worksheet name with parser + + $supbook_index = 0x00; + $ref = pack('vvv', $supbook_index, $i, $i); + $this->parser->references[] = $ref; // Register reference with parser + + // Sheet tab colors? + if ($phpSheet->isTabColorSet()) { + $this->addColor($phpSheet->getTabColor()->getRGB()); + } + } + + } + + /** + * Add a new XF writer + * + * @param PHPExcel_Style + * @param boolean Is it a style XF? + * @return int Index to XF record + */ + public function addXfWriter($style, $isStyleXf = false) + { + $xfWriter = new PHPExcel_Writer_Excel5_Xf($style); + $xfWriter->setIsStyleXf($isStyleXf); + + // Add the font if not already added + $fontIndex = $this->addFont($style->getFont()); + + // Assign the font index to the xf record + $xfWriter->setFontIndex($fontIndex); + + // Background colors, best to treat these after the font so black will come after white in custom palette + $xfWriter->setFgColor($this->addColor($style->getFill()->getStartColor()->getRGB())); + $xfWriter->setBgColor($this->addColor($style->getFill()->getEndColor()->getRGB())); + $xfWriter->setBottomColor($this->addColor($style->getBorders()->getBottom()->getColor()->getRGB())); + $xfWriter->setTopColor($this->addColor($style->getBorders()->getTop()->getColor()->getRGB())); + $xfWriter->setRightColor($this->addColor($style->getBorders()->getRight()->getColor()->getRGB())); + $xfWriter->setLeftColor($this->addColor($style->getBorders()->getLeft()->getColor()->getRGB())); + $xfWriter->setDiagColor($this->addColor($style->getBorders()->getDiagonal()->getColor()->getRGB())); + + // Add the number format if it is not a built-in one and not already added + if ($style->getNumberFormat()->getBuiltInFormatCode() === false) { + $numberFormatHashCode = $style->getNumberFormat()->getHashCode(); + + if (isset($this->addedNumberFormats[$numberFormatHashCode])) { + $numberFormatIndex = $this->addedNumberFormats[$numberFormatHashCode]; + } else { + $numberFormatIndex = 164 + count($this->numberFormats); + $this->numberFormats[$numberFormatIndex] = $style->getNumberFormat(); + $this->addedNumberFormats[$numberFormatHashCode] = $numberFormatIndex; + } + } else { + $numberFormatIndex = (int) $style->getNumberFormat()->getBuiltInFormatCode(); + } + + // Assign the number format index to xf record + $xfWriter->setNumberFormatIndex($numberFormatIndex); + + $this->xfWriters[] = $xfWriter; + + $xfIndex = count($this->xfWriters) - 1; + return $xfIndex; + } + + /** + * Add a font to added fonts + * + * @param PHPExcel_Style_Font $font + * @return int Index to FONT record + */ + public function addFont(PHPExcel_Style_Font $font) + { + $fontHashCode = $font->getHashCode(); + if (isset($this->addedFonts[$fontHashCode])) { + $fontIndex = $this->addedFonts[$fontHashCode]; + } else { + $countFonts = count($this->fontWriters); + $fontIndex = ($countFonts < 4) ? $countFonts : $countFonts + 1; + + $fontWriter = new PHPExcel_Writer_Excel5_Font($font); + $fontWriter->setColorIndex($this->addColor($font->getColor()->getRGB())); + $this->fontWriters[] = $fontWriter; + + $this->addedFonts[$fontHashCode] = $fontIndex; + } + return $fontIndex; + } + + /** + * Alter color palette adding a custom color + * + * @param string $rgb E.g. 'FF00AA' + * @return int Color index + */ + private function addColor($rgb) + { + if (!isset($this->colors[$rgb])) { + if (count($this->colors) < 57) { + // then we add a custom color altering the palette + $colorIndex = 8 + count($this->colors); + $this->palette[$colorIndex] = + array( + hexdec(substr($rgb, 0, 2)), + hexdec(substr($rgb, 2, 2)), + hexdec(substr($rgb, 4)), + 0 + ); + $this->colors[$rgb] = $colorIndex; + } else { + // no room for more custom colors, just map to black + $colorIndex = 0; + } + } else { + // fetch already added custom color + $colorIndex = $this->colors[$rgb]; + } + + return $colorIndex; + } + + /** + * Sets the colour palette to the Excel 97+ default. + * + * @access private + */ + private function setPaletteXl97() + { + $this->palette = array( + 0x08 => array(0x00, 0x00, 0x00, 0x00), + 0x09 => array(0xff, 0xff, 0xff, 0x00), + 0x0A => array(0xff, 0x00, 0x00, 0x00), + 0x0B => array(0x00, 0xff, 0x00, 0x00), + 0x0C => array(0x00, 0x00, 0xff, 0x00), + 0x0D => array(0xff, 0xff, 0x00, 0x00), + 0x0E => array(0xff, 0x00, 0xff, 0x00), + 0x0F => array(0x00, 0xff, 0xff, 0x00), + 0x10 => array(0x80, 0x00, 0x00, 0x00), + 0x11 => array(0x00, 0x80, 0x00, 0x00), + 0x12 => array(0x00, 0x00, 0x80, 0x00), + 0x13 => array(0x80, 0x80, 0x00, 0x00), + 0x14 => array(0x80, 0x00, 0x80, 0x00), + 0x15 => array(0x00, 0x80, 0x80, 0x00), + 0x16 => array(0xc0, 0xc0, 0xc0, 0x00), + 0x17 => array(0x80, 0x80, 0x80, 0x00), + 0x18 => array(0x99, 0x99, 0xff, 0x00), + 0x19 => array(0x99, 0x33, 0x66, 0x00), + 0x1A => array(0xff, 0xff, 0xcc, 0x00), + 0x1B => array(0xcc, 0xff, 0xff, 0x00), + 0x1C => array(0x66, 0x00, 0x66, 0x00), + 0x1D => array(0xff, 0x80, 0x80, 0x00), + 0x1E => array(0x00, 0x66, 0xcc, 0x00), + 0x1F => array(0xcc, 0xcc, 0xff, 0x00), + 0x20 => array(0x00, 0x00, 0x80, 0x00), + 0x21 => array(0xff, 0x00, 0xff, 0x00), + 0x22 => array(0xff, 0xff, 0x00, 0x00), + 0x23 => array(0x00, 0xff, 0xff, 0x00), + 0x24 => array(0x80, 0x00, 0x80, 0x00), + 0x25 => array(0x80, 0x00, 0x00, 0x00), + 0x26 => array(0x00, 0x80, 0x80, 0x00), + 0x27 => array(0x00, 0x00, 0xff, 0x00), + 0x28 => array(0x00, 0xcc, 0xff, 0x00), + 0x29 => array(0xcc, 0xff, 0xff, 0x00), + 0x2A => array(0xcc, 0xff, 0xcc, 0x00), + 0x2B => array(0xff, 0xff, 0x99, 0x00), + 0x2C => array(0x99, 0xcc, 0xff, 0x00), + 0x2D => array(0xff, 0x99, 0xcc, 0x00), + 0x2E => array(0xcc, 0x99, 0xff, 0x00), + 0x2F => array(0xff, 0xcc, 0x99, 0x00), + 0x30 => array(0x33, 0x66, 0xff, 0x00), + 0x31 => array(0x33, 0xcc, 0xcc, 0x00), + 0x32 => array(0x99, 0xcc, 0x00, 0x00), + 0x33 => array(0xff, 0xcc, 0x00, 0x00), + 0x34 => array(0xff, 0x99, 0x00, 0x00), + 0x35 => array(0xff, 0x66, 0x00, 0x00), + 0x36 => array(0x66, 0x66, 0x99, 0x00), + 0x37 => array(0x96, 0x96, 0x96, 0x00), + 0x38 => array(0x00, 0x33, 0x66, 0x00), + 0x39 => array(0x33, 0x99, 0x66, 0x00), + 0x3A => array(0x00, 0x33, 0x00, 0x00), + 0x3B => array(0x33, 0x33, 0x00, 0x00), + 0x3C => array(0x99, 0x33, 0x00, 0x00), + 0x3D => array(0x99, 0x33, 0x66, 0x00), + 0x3E => array(0x33, 0x33, 0x99, 0x00), + 0x3F => array(0x33, 0x33, 0x33, 0x00), + ); + } + + /** + * Assemble worksheets into a workbook and send the BIFF data to an OLE + * storage. + * + * @param array $pWorksheetSizes The sizes in bytes of the binary worksheet streams + * @return string Binary data for workbook stream + */ + public function writeWorkbook($pWorksheetSizes = null) + { + $this->worksheetSizes = $pWorksheetSizes; + + // Calculate the number of selected worksheet tabs and call the finalization + // methods for each worksheet + $total_worksheets = $this->phpExcel->getSheetCount(); + + // Add part 1 of the Workbook globals, what goes before the SHEET records + $this->storeBof(0x0005); + $this->writeCodepage(); + $this->writeWindow1(); + + $this->writeDateMode(); + $this->writeAllFonts(); + $this->writeAllNumberFormats(); + $this->writeAllXfs(); + $this->writeAllStyles(); + $this->writePalette(); + + // Prepare part 3 of the workbook global stream, what goes after the SHEET records + $part3 = ''; + if ($this->countryCode != -1) { + $part3 .= $this->writeCountry(); + } + $part3 .= $this->writeRecalcId(); + + $part3 .= $this->writeSupbookInternal(); + /* TODO: store external SUPBOOK records and XCT and CRN records + in case of external references for BIFF8 */ + $part3 .= $this->writeExternalsheetBiff8(); + $part3 .= $this->writeAllDefinedNamesBiff8(); + $part3 .= $this->writeMsoDrawingGroup(); + $part3 .= $this->writeSharedStringsTable(); + + $part3 .= $this->writeEof(); + + // Add part 2 of the Workbook globals, the SHEET records + $this->calcSheetOffsets(); + for ($i = 0; $i < $total_worksheets; ++$i) { + $this->writeBoundSheet($this->phpExcel->getSheet($i), $this->worksheetOffsets[$i]); + } + + // Add part 3 of the Workbook globals + $this->_data .= $part3; + + return $this->_data; + } + + /** + * Calculate offsets for Worksheet BOF records. + * + * @access private + */ + private function calcSheetOffsets() + { + $boundsheet_length = 10; // fixed length for a BOUNDSHEET record + + // size of Workbook globals part 1 + 3 + $offset = $this->_datasize; + + // add size of Workbook globals part 2, the length of the SHEET records + $total_worksheets = count($this->phpExcel->getAllSheets()); + foreach ($this->phpExcel->getWorksheetIterator() as $sheet) { + $offset += $boundsheet_length + strlen(PHPExcel_Shared_String::UTF8toBIFF8UnicodeShort($sheet->getTitle())); + } + + // add the sizes of each of the Sheet substreams, respectively + for ($i = 0; $i < $total_worksheets; ++$i) { + $this->worksheetOffsets[$i] = $offset; + $offset += $this->worksheetSizes[$i]; + } + $this->biffSize = $offset; + } + + /** + * Store the Excel FONT records. + */ + private function writeAllFonts() + { + foreach ($this->fontWriters as $fontWriter) { + $this->append($fontWriter->writeFont()); + } + } + + /** + * Store user defined numerical formats i.e. FORMAT records + */ + private function writeAllNumberFormats() + { + foreach ($this->numberFormats as $numberFormatIndex => $numberFormat) { + $this->writeNumberFormat($numberFormat->getFormatCode(), $numberFormatIndex); + } + } + + /** + * Write all XF records. + */ + private function writeAllXfs() + { + foreach ($this->xfWriters as $xfWriter) { + $this->append($xfWriter->writeXf()); + } + } + + /** + * Write all STYLE records. + */ + private function writeAllStyles() + { + $this->writeStyle(); + } + + /** + * Write the EXTERNCOUNT and EXTERNSHEET records. These are used as indexes for + * the NAME records. + */ + private function writeExternals() + { + $countSheets = $this->phpExcel->getSheetCount(); + // Create EXTERNCOUNT with number of worksheets + $this->writeExternalCount($countSheets); + + // Create EXTERNSHEET for each worksheet + for ($i = 0; $i < $countSheets; ++$i) { + $this->writeExternalSheet($this->phpExcel->getSheet($i)->getTitle()); + } + } + + /** + * Write the NAME record to define the print area and the repeat rows and cols. + */ + private function writeNames() + { + // total number of sheets + $total_worksheets = $this->phpExcel->getSheetCount(); + + // Create the print area NAME records + for ($i = 0; $i < $total_worksheets; ++$i) { + $sheetSetup = $this->phpExcel->getSheet($i)->getPageSetup(); + // Write a Name record if the print area has been defined + if ($sheetSetup->isPrintAreaSet()) { + // Print area + $printArea = PHPExcel_Cell::splitRange($sheetSetup->getPrintArea()); + $printArea = $printArea[0]; + $printArea[0] = PHPExcel_Cell::coordinateFromString($printArea[0]); + $printArea[1] = PHPExcel_Cell::coordinateFromString($printArea[1]); + + $print_rowmin = $printArea[0][1] - 1; + $print_rowmax = $printArea[1][1] - 1; + $print_colmin = PHPExcel_Cell::columnIndexFromString($printArea[0][0]) - 1; + $print_colmax = PHPExcel_Cell::columnIndexFromString($printArea[1][0]) - 1; + + $this->writeNameShort( + $i, // sheet index + 0x06, // NAME type + $print_rowmin, + $print_rowmax, + $print_colmin, + $print_colmax + ); + } + } + + // Create the print title NAME records + for ($i = 0; $i < $total_worksheets; ++$i) { + $sheetSetup = $this->phpExcel->getSheet($i)->getPageSetup(); + + // simultaneous repeatColumns repeatRows + if ($sheetSetup->isColumnsToRepeatAtLeftSet() && $sheetSetup->isRowsToRepeatAtTopSet()) { + $repeat = $sheetSetup->getColumnsToRepeatAtLeft(); + $colmin = PHPExcel_Cell::columnIndexFromString($repeat[0]) - 1; + $colmax = PHPExcel_Cell::columnIndexFromString($repeat[1]) - 1; + + $repeat = $sheetSetup->getRowsToRepeatAtTop(); + $rowmin = $repeat[0] - 1; + $rowmax = $repeat[1] - 1; + + $this->writeNameLong( + $i, // sheet index + 0x07, // NAME type + $rowmin, + $rowmax, + $colmin, + $colmax + ); + + // (exclusive) either repeatColumns or repeatRows + } elseif ($sheetSetup->isColumnsToRepeatAtLeftSet() || $sheetSetup->isRowsToRepeatAtTopSet()) { + // Columns to repeat + if ($sheetSetup->isColumnsToRepeatAtLeftSet()) { + $repeat = $sheetSetup->getColumnsToRepeatAtLeft(); + $colmin = PHPExcel_Cell::columnIndexFromString($repeat[0]) - 1; + $colmax = PHPExcel_Cell::columnIndexFromString($repeat[1]) - 1; + } else { + $colmin = 0; + $colmax = 255; + } + + // Rows to repeat + if ($sheetSetup->isRowsToRepeatAtTopSet()) { + $repeat = $sheetSetup->getRowsToRepeatAtTop(); + $rowmin = $repeat[0] - 1; + $rowmax = $repeat[1] - 1; + } else { + $rowmin = 0; + $rowmax = 65535; + } + + $this->writeNameShort( + $i, // sheet index + 0x07, // NAME type + $rowmin, + $rowmax, + $colmin, + $colmax + ); + } + } + } + + /** + * Writes all the DEFINEDNAME records (BIFF8). + * So far this is only used for repeating rows/columns (print titles) and print areas + */ + private function writeAllDefinedNamesBiff8() + { + $chunk = ''; + + // Named ranges + if (count($this->phpExcel->getNamedRanges()) > 0) { + // Loop named ranges + $namedRanges = $this->phpExcel->getNamedRanges(); + foreach ($namedRanges as $namedRange) { + // Create absolute coordinate + $range = PHPExcel_Cell::splitRange($namedRange->getRange()); + for ($i = 0; $i < count($range); $i++) { + $range[$i][0] = '\'' . str_replace("'", "''", $namedRange->getWorksheet()->getTitle()) . '\'!' . PHPExcel_Cell::absoluteCoordinate($range[$i][0]); + if (isset($range[$i][1])) { + $range[$i][1] = PHPExcel_Cell::absoluteCoordinate($range[$i][1]); + } + } + $range = PHPExcel_Cell::buildRange($range); // e.g. Sheet1!$A$1:$B$2 + + // parse formula + try { + $error = $this->parser->parse($range); + $formulaData = $this->parser->toReversePolish(); + + // make sure tRef3d is of type tRef3dR (0x3A) + if (isset($formulaData{0}) and ($formulaData{0} == "\x7A" or $formulaData{0} == "\x5A")) { + $formulaData = "\x3A" . substr($formulaData, 1); + } + + if ($namedRange->getLocalOnly()) { + // local scope + $scope = $this->phpExcel->getIndex($namedRange->getScope()) + 1; + } else { + // global scope + $scope = 0; + } + $chunk .= $this->writeData($this->writeDefinedNameBiff8($namedRange->getName(), $formulaData, $scope, false)); + + } catch (PHPExcel_Exception $e) { + // do nothing + } + } + } + + // total number of sheets + $total_worksheets = $this->phpExcel->getSheetCount(); + + // write the print titles (repeating rows, columns), if any + for ($i = 0; $i < $total_worksheets; ++$i) { + $sheetSetup = $this->phpExcel->getSheet($i)->getPageSetup(); + // simultaneous repeatColumns repeatRows + if ($sheetSetup->isColumnsToRepeatAtLeftSet() && $sheetSetup->isRowsToRepeatAtTopSet()) { + $repeat = $sheetSetup->getColumnsToRepeatAtLeft(); + $colmin = PHPExcel_Cell::columnIndexFromString($repeat[0]) - 1; + $colmax = PHPExcel_Cell::columnIndexFromString($repeat[1]) - 1; + + $repeat = $sheetSetup->getRowsToRepeatAtTop(); + $rowmin = $repeat[0] - 1; + $rowmax = $repeat[1] - 1; + + // construct formula data manually + $formulaData = pack('Cv', 0x29, 0x17); // tMemFunc + $formulaData .= pack('Cvvvvv', 0x3B, $i, 0, 65535, $colmin, $colmax); // tArea3d + $formulaData .= pack('Cvvvvv', 0x3B, $i, $rowmin, $rowmax, 0, 255); // tArea3d + $formulaData .= pack('C', 0x10); // tList + + // store the DEFINEDNAME record + $chunk .= $this->writeData($this->writeDefinedNameBiff8(pack('C', 0x07), $formulaData, $i + 1, true)); + + // (exclusive) either repeatColumns or repeatRows + } elseif ($sheetSetup->isColumnsToRepeatAtLeftSet() || $sheetSetup->isRowsToRepeatAtTopSet()) { + // Columns to repeat + if ($sheetSetup->isColumnsToRepeatAtLeftSet()) { + $repeat = $sheetSetup->getColumnsToRepeatAtLeft(); + $colmin = PHPExcel_Cell::columnIndexFromString($repeat[0]) - 1; + $colmax = PHPExcel_Cell::columnIndexFromString($repeat[1]) - 1; + } else { + $colmin = 0; + $colmax = 255; + } + // Rows to repeat + if ($sheetSetup->isRowsToRepeatAtTopSet()) { + $repeat = $sheetSetup->getRowsToRepeatAtTop(); + $rowmin = $repeat[0] - 1; + $rowmax = $repeat[1] - 1; + } else { + $rowmin = 0; + $rowmax = 65535; + } + + // construct formula data manually because parser does not recognize absolute 3d cell references + $formulaData = pack('Cvvvvv', 0x3B, $i, $rowmin, $rowmax, $colmin, $colmax); + + // store the DEFINEDNAME record + $chunk .= $this->writeData($this->writeDefinedNameBiff8(pack('C', 0x07), $formulaData, $i + 1, true)); + } + } + + // write the print areas, if any + for ($i = 0; $i < $total_worksheets; ++$i) { + $sheetSetup = $this->phpExcel->getSheet($i)->getPageSetup(); + if ($sheetSetup->isPrintAreaSet()) { + // Print area, e.g. A3:J6,H1:X20 + $printArea = PHPExcel_Cell::splitRange($sheetSetup->getPrintArea()); + $countPrintArea = count($printArea); + + $formulaData = ''; + for ($j = 0; $j < $countPrintArea; ++$j) { + $printAreaRect = $printArea[$j]; // e.g. A3:J6 + $printAreaRect[0] = PHPExcel_Cell::coordinateFromString($printAreaRect[0]); + $printAreaRect[1] = PHPExcel_Cell::coordinateFromString($printAreaRect[1]); + + $print_rowmin = $printAreaRect[0][1] - 1; + $print_rowmax = $printAreaRect[1][1] - 1; + $print_colmin = PHPExcel_Cell::columnIndexFromString($printAreaRect[0][0]) - 1; + $print_colmax = PHPExcel_Cell::columnIndexFromString($printAreaRect[1][0]) - 1; + + // construct formula data manually because parser does not recognize absolute 3d cell references + $formulaData .= pack('Cvvvvv', 0x3B, $i, $print_rowmin, $print_rowmax, $print_colmin, $print_colmax); + + if ($j > 0) { + $formulaData .= pack('C', 0x10); // list operator token ',' + } + } + + // store the DEFINEDNAME record + $chunk .= $this->writeData($this->writeDefinedNameBiff8(pack('C', 0x06), $formulaData, $i + 1, true)); + } + } + + // write autofilters, if any + for ($i = 0; $i < $total_worksheets; ++$i) { + $sheetAutoFilter = $this->phpExcel->getSheet($i)->getAutoFilter(); + $autoFilterRange = $sheetAutoFilter->getRange(); + if (!empty($autoFilterRange)) { + $rangeBounds = PHPExcel_Cell::rangeBoundaries($autoFilterRange); + + //Autofilter built in name + $name = pack('C', 0x0D); + + $chunk .= $this->writeData($this->writeShortNameBiff8($name, $i + 1, $rangeBounds, true)); + } + } + + return $chunk; + } + + /** + * Write a DEFINEDNAME record for BIFF8 using explicit binary formula data + * + * @param string $name The name in UTF-8 + * @param string $formulaData The binary formula data + * @param string $sheetIndex 1-based sheet index the defined name applies to. 0 = global + * @param boolean $isBuiltIn Built-in name? + * @return string Complete binary record data + */ + private function writeDefinedNameBiff8($name, $formulaData, $sheetIndex = 0, $isBuiltIn = false) + { + $record = 0x0018; + + // option flags + $options = $isBuiltIn ? 0x20 : 0x00; + + // length of the name, character count + $nlen = PHPExcel_Shared_String::CountCharacters($name); + + // name with stripped length field + $name = substr(PHPExcel_Shared_String::UTF8toBIFF8UnicodeLong($name), 2); + + // size of the formula (in bytes) + $sz = strlen($formulaData); + + // combine the parts + $data = pack('vCCvvvCCCC', $options, 0, $nlen, $sz, 0, $sheetIndex, 0, 0, 0, 0) + . $name . $formulaData; + $length = strlen($data); + + $header = pack('vv', $record, $length); + + return $header . $data; + } + + /** + * Write a short NAME record + * + * @param string $name + * @param string $sheetIndex 1-based sheet index the defined name applies to. 0 = global + * @param integer[][] $rangeBounds range boundaries + * @param boolean $isHidden + * @return string Complete binary record data + * */ + private function writeShortNameBiff8($name, $sheetIndex = 0, $rangeBounds, $isHidden = false) + { + $record = 0x0018; + + // option flags + $options = ($isHidden ? 0x21 : 0x00); + + $extra = pack( + 'Cvvvvv', + 0x3B, + $sheetIndex - 1, + $rangeBounds[0][1] - 1, + $rangeBounds[1][1] - 1, + $rangeBounds[0][0] - 1, + $rangeBounds[1][0] - 1 + ); + + // size of the formula (in bytes) + $sz = strlen($extra); + + // combine the parts + $data = pack('vCCvvvCCCCC', $options, 0, 1, $sz, 0, $sheetIndex, 0, 0, 0, 0, 0) + . $name . $extra; + $length = strlen($data); + + $header = pack('vv', $record, $length); + + return $header . $data; + } + + /** + * Stores the CODEPAGE biff record. + */ + private function writeCodepage() + { + $record = 0x0042; // Record identifier + $length = 0x0002; // Number of bytes to follow + $cv = $this->codepage; // The code page + + $header = pack('vv', $record, $length); + $data = pack('v', $cv); + + $this->append($header . $data); + } + + /** + * Write Excel BIFF WINDOW1 record. + */ + private function writeWindow1() + { + $record = 0x003D; // Record identifier + $length = 0x0012; // Number of bytes to follow + + $xWn = 0x0000; // Horizontal position of window + $yWn = 0x0000; // Vertical position of window + $dxWn = 0x25BC; // Width of window + $dyWn = 0x1572; // Height of window + + $grbit = 0x0038; // Option flags + + // not supported by PHPExcel, so there is only one selected sheet, the active + $ctabsel = 1; // Number of workbook tabs selected + + $wTabRatio = 0x0258; // Tab to scrollbar ratio + + // not supported by PHPExcel, set to 0 + $itabFirst = 0; // 1st displayed worksheet + $itabCur = $this->phpExcel->getActiveSheetIndex(); // Active worksheet + + $header = pack("vv", $record, $length); + $data = pack("vvvvvvvvv", $xWn, $yWn, $dxWn, $dyWn, $grbit, $itabCur, $itabFirst, $ctabsel, $wTabRatio); + $this->append($header . $data); + } + + /** + * Writes Excel BIFF BOUNDSHEET record. + * + * @param PHPExcel_Worksheet $sheet Worksheet name + * @param integer $offset Location of worksheet BOF + */ + private function writeBoundSheet($sheet, $offset) + { + $sheetname = $sheet->getTitle(); + $record = 0x0085; // Record identifier + + // sheet state + switch ($sheet->getSheetState()) { + case PHPExcel_Worksheet::SHEETSTATE_VISIBLE: + $ss = 0x00; + break; + case PHPExcel_Worksheet::SHEETSTATE_HIDDEN: + $ss = 0x01; + break; + case PHPExcel_Worksheet::SHEETSTATE_VERYHIDDEN: + $ss = 0x02; + break; + default: + $ss = 0x00; + break; + } + + // sheet type + $st = 0x00; + + $grbit = 0x0000; // Visibility and sheet type + + $data = pack("VCC", $offset, $ss, $st); + $data .= PHPExcel_Shared_String::UTF8toBIFF8UnicodeShort($sheetname); + + $length = strlen($data); + $header = pack("vv", $record, $length); + $this->append($header . $data); + } + + /** + * Write Internal SUPBOOK record + */ + private function writeSupbookInternal() + { + $record = 0x01AE; // Record identifier + $length = 0x0004; // Bytes to follow + + $header = pack("vv", $record, $length); + $data = pack("vv", $this->phpExcel->getSheetCount(), 0x0401); + return $this->writeData($header . $data); + } + + /** + * Writes the Excel BIFF EXTERNSHEET record. These references are used by + * formulas. + * + */ + private function writeExternalsheetBiff8() + { + $totalReferences = count($this->parser->references); + $record = 0x0017; // Record identifier + $length = 2 + 6 * $totalReferences; // Number of bytes to follow + + $supbook_index = 0; // FIXME: only using internal SUPBOOK record + $header = pack("vv", $record, $length); + $data = pack('v', $totalReferences); + for ($i = 0; $i < $totalReferences; ++$i) { + $data .= $this->parser->references[$i]; + } + return $this->writeData($header . $data); + } + + /** + * Write Excel BIFF STYLE records. + */ + private function writeStyle() + { + $record = 0x0293; // Record identifier + $length = 0x0004; // Bytes to follow + + $ixfe = 0x8000; // Index to cell style XF + $BuiltIn = 0x00; // Built-in style + $iLevel = 0xff; // Outline style level + + $header = pack("vv", $record, $length); + $data = pack("vCC", $ixfe, $BuiltIn, $iLevel); + $this->append($header . $data); + } + + /** + * Writes Excel FORMAT record for non "built-in" numerical formats. + * + * @param string $format Custom format string + * @param integer $ifmt Format index code + */ + private function writeNumberFormat($format, $ifmt) + { + $record = 0x041E; // Record identifier + + $numberFormatString = PHPExcel_Shared_String::UTF8toBIFF8UnicodeLong($format); + $length = 2 + strlen($numberFormatString); // Number of bytes to follow + + + $header = pack("vv", $record, $length); + $data = pack("v", $ifmt) . $numberFormatString; + $this->append($header . $data); + } + + /** + * Write DATEMODE record to indicate the date system in use (1904 or 1900). + */ + private function writeDateMode() + { + $record = 0x0022; // Record identifier + $length = 0x0002; // Bytes to follow + + $f1904 = (PHPExcel_Shared_Date::getExcelCalendar() == PHPExcel_Shared_Date::CALENDAR_MAC_1904) + ? 1 + : 0; // Flag for 1904 date system + + $header = pack("vv", $record, $length); + $data = pack("v", $f1904); + $this->append($header . $data); + } + + /** + * Write BIFF record EXTERNCOUNT to indicate the number of external sheet + * references in the workbook. + * + * Excel only stores references to external sheets that are used in NAME. + * The workbook NAME record is required to define the print area and the repeat + * rows and columns. + * + * A similar method is used in Worksheet.php for a slightly different purpose. + * + * @param integer $cxals Number of external references + */ + private function writeExternalCount($cxals) + { + $record = 0x0016; // Record identifier + $length = 0x0002; // Number of bytes to follow + + $header = pack("vv", $record, $length); + $data = pack("v", $cxals); + $this->append($header . $data); + } + + /** + * Writes the Excel BIFF EXTERNSHEET record. These references are used by + * formulas. NAME record is required to define the print area and the repeat + * rows and columns. + * + * A similar method is used in Worksheet.php for a slightly different purpose. + * + * @param string $sheetname Worksheet name + */ + private function writeExternalSheet($sheetname) + { + $record = 0x0017; // Record identifier + $length = 0x02 + strlen($sheetname); // Number of bytes to follow + + $cch = strlen($sheetname); // Length of sheet name + $rgch = 0x03; // Filename encoding + + $header = pack("vv", $record, $length); + $data = pack("CC", $cch, $rgch); + $this->append($header . $data . $sheetname); + } + + /** + * Store the NAME record in the short format that is used for storing the print + * area, repeat rows only and repeat columns only. + * + * @param integer $index Sheet index + * @param integer $type Built-in name type + * @param integer $rowmin Start row + * @param integer $rowmax End row + * @param integer $colmin Start colum + * @param integer $colmax End column + */ + private function writeNameShort($index, $type, $rowmin, $rowmax, $colmin, $colmax) + { + $record = 0x0018; // Record identifier + $length = 0x0024; // Number of bytes to follow + + $grbit = 0x0020; // Option flags + $chKey = 0x00; // Keyboard shortcut + $cch = 0x01; // Length of text name + $cce = 0x0015; // Length of text definition + $ixals = $index + 1; // Sheet index + $itab = $ixals; // Equal to ixals + $cchCustMenu = 0x00; // Length of cust menu text + $cchDescription = 0x00; // Length of description text + $cchHelptopic = 0x00; // Length of help topic text + $cchStatustext = 0x00; // Length of status bar text + $rgch = $type; // Built-in name type + + $unknown03 = 0x3b; + $unknown04 = 0xffff - $index; + $unknown05 = 0x0000; + $unknown06 = 0x0000; + $unknown07 = 0x1087; + $unknown08 = 0x8005; + + $header = pack("vv", $record, $length); + $data = pack("v", $grbit); + $data .= pack("C", $chKey); + $data .= pack("C", $cch); + $data .= pack("v", $cce); + $data .= pack("v", $ixals); + $data .= pack("v", $itab); + $data .= pack("C", $cchCustMenu); + $data .= pack("C", $cchDescription); + $data .= pack("C", $cchHelptopic); + $data .= pack("C", $cchStatustext); + $data .= pack("C", $rgch); + $data .= pack("C", $unknown03); + $data .= pack("v", $unknown04); + $data .= pack("v", $unknown05); + $data .= pack("v", $unknown06); + $data .= pack("v", $unknown07); + $data .= pack("v", $unknown08); + $data .= pack("v", $index); + $data .= pack("v", $index); + $data .= pack("v", $rowmin); + $data .= pack("v", $rowmax); + $data .= pack("C", $colmin); + $data .= pack("C", $colmax); + $this->append($header . $data); + } + + /** + * Store the NAME record in the long format that is used for storing the repeat + * rows and columns when both are specified. This shares a lot of code with + * writeNameShort() but we use a separate method to keep the code clean. + * Code abstraction for reuse can be carried too far, and I should know. ;-) + * + * @param integer $index Sheet index + * @param integer $type Built-in name type + * @param integer $rowmin Start row + * @param integer $rowmax End row + * @param integer $colmin Start colum + * @param integer $colmax End column + */ + private function writeNameLong($index, $type, $rowmin, $rowmax, $colmin, $colmax) + { + $record = 0x0018; // Record identifier + $length = 0x003d; // Number of bytes to follow + $grbit = 0x0020; // Option flags + $chKey = 0x00; // Keyboard shortcut + $cch = 0x01; // Length of text name + $cce = 0x002e; // Length of text definition + $ixals = $index + 1; // Sheet index + $itab = $ixals; // Equal to ixals + $cchCustMenu = 0x00; // Length of cust menu text + $cchDescription = 0x00; // Length of description text + $cchHelptopic = 0x00; // Length of help topic text + $cchStatustext = 0x00; // Length of status bar text + $rgch = $type; // Built-in name type + + $unknown01 = 0x29; + $unknown02 = 0x002b; + $unknown03 = 0x3b; + $unknown04 = 0xffff-$index; + $unknown05 = 0x0000; + $unknown06 = 0x0000; + $unknown07 = 0x1087; + $unknown08 = 0x8008; + + $header = pack("vv", $record, $length); + $data = pack("v", $grbit); + $data .= pack("C", $chKey); + $data .= pack("C", $cch); + $data .= pack("v", $cce); + $data .= pack("v", $ixals); + $data .= pack("v", $itab); + $data .= pack("C", $cchCustMenu); + $data .= pack("C", $cchDescription); + $data .= pack("C", $cchHelptopic); + $data .= pack("C", $cchStatustext); + $data .= pack("C", $rgch); + $data .= pack("C", $unknown01); + $data .= pack("v", $unknown02); + // Column definition + $data .= pack("C", $unknown03); + $data .= pack("v", $unknown04); + $data .= pack("v", $unknown05); + $data .= pack("v", $unknown06); + $data .= pack("v", $unknown07); + $data .= pack("v", $unknown08); + $data .= pack("v", $index); + $data .= pack("v", $index); + $data .= pack("v", 0x0000); + $data .= pack("v", 0x3fff); + $data .= pack("C", $colmin); + $data .= pack("C", $colmax); + // Row definition + $data .= pack("C", $unknown03); + $data .= pack("v", $unknown04); + $data .= pack("v", $unknown05); + $data .= pack("v", $unknown06); + $data .= pack("v", $unknown07); + $data .= pack("v", $unknown08); + $data .= pack("v", $index); + $data .= pack("v", $index); + $data .= pack("v", $rowmin); + $data .= pack("v", $rowmax); + $data .= pack("C", 0x00); + $data .= pack("C", 0xff); + // End of data + $data .= pack("C", 0x10); + $this->append($header . $data); + } + + /** + * Stores the COUNTRY record for localization + * + * @return string + */ + private function writeCountry() + { + $record = 0x008C; // Record identifier + $length = 4; // Number of bytes to follow + + $header = pack('vv', $record, $length); + /* using the same country code always for simplicity */ + $data = pack('vv', $this->countryCode, $this->countryCode); + //$this->append($header . $data); + return $this->writeData($header . $data); + } + + /** + * Write the RECALCID record + * + * @return string + */ + private function writeRecalcId() + { + $record = 0x01C1; // Record identifier + $length = 8; // Number of bytes to follow + + $header = pack('vv', $record, $length); + + // by inspection of real Excel files, MS Office Excel 2007 writes this + $data = pack('VV', 0x000001C1, 0x00001E667); + + return $this->writeData($header . $data); + } + + /** + * Stores the PALETTE biff record. + */ + private function writePalette() + { + $aref = $this->palette; + + $record = 0x0092; // Record identifier + $length = 2 + 4 * count($aref); // Number of bytes to follow + $ccv = count($aref); // Number of RGB values to follow + $data = ''; // The RGB data + + // Pack the RGB data + foreach ($aref as $color) { + foreach ($color as $byte) { + $data .= pack("C", $byte); + } + } + + $header = pack("vvv", $record, $length, $ccv); + $this->append($header . $data); + } + + /** + * Handling of the SST continue blocks is complicated by the need to include an + * additional continuation byte depending on whether the string is split between + * blocks or whether it starts at the beginning of the block. (There are also + * additional complications that will arise later when/if Rich Strings are + * supported). + * + * The Excel documentation says that the SST record should be followed by an + * EXTSST record. The EXTSST record is a hash table that is used to optimise + * access to SST. However, despite the documentation it doesn't seem to be + * required so we will ignore it. + * + * @return string Binary data + */ + private function writeSharedStringsTable() + { + // maximum size of record data (excluding record header) + $continue_limit = 8224; + + // initialize array of record data blocks + $recordDatas = array(); + + // start SST record data block with total number of strings, total number of unique strings + $recordData = pack("VV", $this->stringTotal, $this->stringUnique); + + // loop through all (unique) strings in shared strings table + foreach (array_keys($this->stringTable) as $string) { + // here $string is a BIFF8 encoded string + + // length = character count + $headerinfo = unpack("vlength/Cencoding", $string); + + // currently, this is always 1 = uncompressed + $encoding = $headerinfo["encoding"]; + + // initialize finished writing current $string + $finished = false; + + while ($finished === false) { + // normally, there will be only one cycle, but if string cannot immediately be written as is + // there will be need for more than one cylcle, if string longer than one record data block, there + // may be need for even more cycles + + if (strlen($recordData) + strlen($string) <= $continue_limit) { + // then we can write the string (or remainder of string) without any problems + $recordData .= $string; + + if (strlen($recordData) + strlen($string) == $continue_limit) { + // we close the record data block, and initialize a new one + $recordDatas[] = $recordData; + $recordData = ''; + } + + // we are finished writing this string + $finished = true; + } else { + // special treatment writing the string (or remainder of the string) + // If the string is very long it may need to be written in more than one CONTINUE record. + + // check how many bytes more there is room for in the current record + $space_remaining = $continue_limit - strlen($recordData); + + // minimum space needed + // uncompressed: 2 byte string length length field + 1 byte option flags + 2 byte character + // compressed: 2 byte string length length field + 1 byte option flags + 1 byte character + $min_space_needed = ($encoding == 1) ? 5 : 4; + + // We have two cases + // 1. space remaining is less than minimum space needed + // here we must waste the space remaining and move to next record data block + // 2. space remaining is greater than or equal to minimum space needed + // here we write as much as we can in the current block, then move to next record data block + + // 1. space remaining is less than minimum space needed + if ($space_remaining < $min_space_needed) { + // we close the block, store the block data + $recordDatas[] = $recordData; + + // and start new record data block where we start writing the string + $recordData = ''; + + // 2. space remaining is greater than or equal to minimum space needed + } else { + // initialize effective remaining space, for Unicode strings this may need to be reduced by 1, see below + $effective_space_remaining = $space_remaining; + + // for uncompressed strings, sometimes effective space remaining is reduced by 1 + if ($encoding == 1 && (strlen($string) - $space_remaining) % 2 == 1) { + --$effective_space_remaining; + } + + // one block fininshed, store the block data + $recordData .= substr($string, 0, $effective_space_remaining); + + $string = substr($string, $effective_space_remaining); // for next cycle in while loop + $recordDatas[] = $recordData; + + // start new record data block with the repeated option flags + $recordData = pack('C', $encoding); + } + } + } + } + + // Store the last record data block unless it is empty + // if there was no need for any continue records, this will be the for SST record data block itself + if (strlen($recordData) > 0) { + $recordDatas[] = $recordData; + } + + // combine into one chunk with all the blocks SST, CONTINUE,... + $chunk = ''; + foreach ($recordDatas as $i => $recordData) { + // first block should have the SST record header, remaing should have CONTINUE header + $record = ($i == 0) ? 0x00FC : 0x003C; + + $header = pack("vv", $record, strlen($recordData)); + $data = $header . $recordData; + + $chunk .= $this->writeData($data); + } + + return $chunk; + } + + /** + * Writes the MSODRAWINGGROUP record if needed. Possibly split using CONTINUE records. + */ + private function writeMsoDrawingGroup() + { + // write the Escher stream if necessary + if (isset($this->escher)) { + $writer = new PHPExcel_Writer_Excel5_Escher($this->escher); + $data = $writer->close(); + + $record = 0x00EB; + $length = strlen($data); + $header = pack("vv", $record, $length); + + return $this->writeData($header . $data); + } else { + return ''; + } + } + + /** + * Get Escher object + * + * @return PHPExcel_Shared_Escher + */ + public function getEscher() + { + return $this->escher; + } + + /** + * Set Escher object + * + * @param PHPExcel_Shared_Escher $pValue + */ + public function setEscher(PHPExcel_Shared_Escher $pValue = null) + { + $this->escher = $pValue; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Worksheet.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Worksheet.php new file mode 100644 index 0000000..be965e2 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Worksheet.php @@ -0,0 +1,4240 @@ +<?php + +/** + * PHPExcel_Writer_Excel5_Worksheet + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel5 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +// Original file header of PEAR::Spreadsheet_Excel_Writer_Worksheet (used as the base for this class): +// ----------------------------------------------------------------------------------------- +// /* +// * Module written/ported by Xavier Noguer <xnoguer@rezebra.com> +// * +// * The majority of this is _NOT_ my code. I simply ported it from the +// * PERL Spreadsheet::WriteExcel module. +// * +// * The author of the Spreadsheet::WriteExcel module is John McNamara +// * <jmcnamara@cpan.org> +// * +// * I _DO_ maintain this code, and John McNamara has nothing to do with the +// * porting of this code to PHP. Any questions directly related to this +// * class library should be directed to me. +// * +// * License Information: +// * +// * Spreadsheet_Excel_Writer: A library for generating Excel Spreadsheets +// * Copyright (c) 2002-2003 Xavier Noguer xnoguer@rezebra.com +// * +// * This library is free software; you can redistribute it and/or +// * modify it under the terms of the GNU Lesser General Public +// * License as published by the Free Software Foundation; either +// * version 2.1 of the License, or (at your option) any later version. +// * +// * This library is distributed in the hope that it will be useful, +// * but WITHOUT ANY WARRANTY; without even the implied warranty of +// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// * Lesser General Public License for more details. +// * +// * You should have received a copy of the GNU Lesser General Public +// * License along with this library; if not, write to the Free Software +// * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// */ +class PHPExcel_Writer_Excel5_Worksheet extends PHPExcel_Writer_Excel5_BIFFwriter +{ + /** + * Formula parser + * + * @var PHPExcel_Writer_Excel5_Parser + */ + private $parser; + + /** + * Maximum number of characters for a string (LABEL record in BIFF5) + * @var integer + */ + private $xlsStringMaxLength; + + /** + * Array containing format information for columns + * @var array + */ + private $columnInfo; + + /** + * Array containing the selected area for the worksheet + * @var array + */ + private $selection; + + /** + * The active pane for the worksheet + * @var integer + */ + private $activePane; + + /** + * Whether to use outline. + * @var integer + */ + private $outlineOn; + + /** + * Auto outline styles. + * @var bool + */ + private $outlineStyle; + + /** + * Whether to have outline summary below. + * @var bool + */ + private $outlineBelow; + + /** + * Whether to have outline summary at the right. + * @var bool + */ + private $outlineRight; + + /** + * Reference to the total number of strings in the workbook + * @var integer + */ + private $stringTotal; + + /** + * Reference to the number of unique strings in the workbook + * @var integer + */ + private $stringUnique; + + /** + * Reference to the array containing all the unique strings in the workbook + * @var array + */ + private $stringTable; + + /** + * Color cache + */ + private $colors; + + /** + * Index of first used row (at least 0) + * @var int + */ + private $firstRowIndex; + + /** + * Index of last used row. (no used rows means -1) + * @var int + */ + private $lastRowIndex; + + /** + * Index of first used column (at least 0) + * @var int + */ + private $firstColumnIndex; + + /** + * Index of last used column (no used columns means -1) + * @var int + */ + private $lastColumnIndex; + + /** + * Sheet object + * @var PHPExcel_Worksheet + */ + public $phpSheet; + + /** + * Count cell style Xfs + * + * @var int + */ + private $countCellStyleXfs; + + /** + * Escher object corresponding to MSODRAWING + * + * @var PHPExcel_Shared_Escher + */ + private $escher; + + /** + * Array of font hashes associated to FONT records index + * + * @var array + */ + public $fontHashIndex; + + /** + * Constructor + * + * @param int &$str_total Total number of strings + * @param int &$str_unique Total number of unique strings + * @param array &$str_table String Table + * @param array &$colors Colour Table + * @param mixed $parser The formula parser created for the Workbook + * @param boolean $preCalculateFormulas Flag indicating whether formulas should be calculated or just written + * @param string $phpSheet The worksheet to write + * @param PHPExcel_Worksheet $phpSheet + */ + public function __construct(&$str_total, &$str_unique, &$str_table, &$colors, $parser, $preCalculateFormulas, $phpSheet) + { + // It needs to call its parent's constructor explicitly + parent::__construct(); + + // change BIFFwriter limit for CONTINUE records +// $this->_limit = 8224; + + + $this->_preCalculateFormulas = $preCalculateFormulas; + $this->stringTotal = &$str_total; + $this->stringUnique = &$str_unique; + $this->stringTable = &$str_table; + $this->colors = &$colors; + $this->parser = $parser; + + $this->phpSheet = $phpSheet; + + //$this->ext_sheets = array(); + //$this->offset = 0; + $this->xlsStringMaxLength = 255; + $this->columnInfo = array(); + $this->selection = array(0,0,0,0); + $this->activePane = 3; + + $this->_print_headers = 0; + + $this->outlineStyle = 0; + $this->outlineBelow = 1; + $this->outlineRight = 1; + $this->outlineOn = 1; + + $this->fontHashIndex = array(); + + // calculate values for DIMENSIONS record + $minR = 1; + $minC = 'A'; + + $maxR = $this->phpSheet->getHighestRow(); + $maxC = $this->phpSheet->getHighestColumn(); + + // Determine lowest and highest column and row +// $this->firstRowIndex = ($minR > 65535) ? 65535 : $minR; + $this->lastRowIndex = ($maxR > 65535) ? 65535 : $maxR ; + + $this->firstColumnIndex = PHPExcel_Cell::columnIndexFromString($minC); + $this->lastColumnIndex = PHPExcel_Cell::columnIndexFromString($maxC); + +// if ($this->firstColumnIndex > 255) $this->firstColumnIndex = 255; + if ($this->lastColumnIndex > 255) { + $this->lastColumnIndex = 255; + } + + $this->countCellStyleXfs = count($phpSheet->getParent()->getCellStyleXfCollection()); + } + + /** + * Add data to the beginning of the workbook (note the reverse order) + * and to the end of the workbook. + * + * @access public + * @see PHPExcel_Writer_Excel5_Workbook::storeWorkbook() + */ + public function close() + { + $phpSheet = $this->phpSheet; + + $num_sheets = $phpSheet->getParent()->getSheetCount(); + + // Write BOF record + $this->storeBof(0x0010); + + // Write PRINTHEADERS + $this->writePrintHeaders(); + + // Write PRINTGRIDLINES + $this->writePrintGridlines(); + + // Write GRIDSET + $this->writeGridset(); + + // Calculate column widths + $phpSheet->calculateColumnWidths(); + + // Column dimensions + if (($defaultWidth = $phpSheet->getDefaultColumnDimension()->getWidth()) < 0) { + $defaultWidth = PHPExcel_Shared_Font::getDefaultColumnWidthByFont($phpSheet->getParent()->getDefaultStyle()->getFont()); + } + + $columnDimensions = $phpSheet->getColumnDimensions(); + $maxCol = $this->lastColumnIndex -1; + for ($i = 0; $i <= $maxCol; ++$i) { + $hidden = 0; + $level = 0; + $xfIndex = 15; // there are 15 cell style Xfs + + $width = $defaultWidth; + + $columnLetter = PHPExcel_Cell::stringFromColumnIndex($i); + if (isset($columnDimensions[$columnLetter])) { + $columnDimension = $columnDimensions[$columnLetter]; + if ($columnDimension->getWidth() >= 0) { + $width = $columnDimension->getWidth(); + } + $hidden = $columnDimension->getVisible() ? 0 : 1; + $level = $columnDimension->getOutlineLevel(); + $xfIndex = $columnDimension->getXfIndex() + 15; // there are 15 cell style Xfs + } + + // Components of columnInfo: + // $firstcol first column on the range + // $lastcol last column on the range + // $width width to set + // $xfIndex The optional cell style Xf index to apply to the columns + // $hidden The optional hidden atribute + // $level The optional outline level + $this->columnInfo[] = array($i, $i, $width, $xfIndex, $hidden, $level); + } + + // Write GUTS + $this->writeGuts(); + + // Write DEFAULTROWHEIGHT + $this->writeDefaultRowHeight(); + // Write WSBOOL + $this->writeWsbool(); + // Write horizontal and vertical page breaks + $this->writeBreaks(); + // Write page header + $this->writeHeader(); + // Write page footer + $this->writeFooter(); + // Write page horizontal centering + $this->writeHcenter(); + // Write page vertical centering + $this->writeVcenter(); + // Write left margin + $this->writeMarginLeft(); + // Write right margin + $this->writeMarginRight(); + // Write top margin + $this->writeMarginTop(); + // Write bottom margin + $this->writeMarginBottom(); + // Write page setup + $this->writeSetup(); + // Write sheet protection + $this->writeProtect(); + // Write SCENPROTECT + $this->writeScenProtect(); + // Write OBJECTPROTECT + $this->writeObjectProtect(); + // Write sheet password + $this->writePassword(); + // Write DEFCOLWIDTH record + $this->writeDefcol(); + + // Write the COLINFO records if they exist + if (!empty($this->columnInfo)) { + $colcount = count($this->columnInfo); + for ($i = 0; $i < $colcount; ++$i) { + $this->writeColinfo($this->columnInfo[$i]); + } + } + $autoFilterRange = $phpSheet->getAutoFilter()->getRange(); + if (!empty($autoFilterRange)) { + // Write AUTOFILTERINFO + $this->writeAutoFilterInfo(); + } + + // Write sheet dimensions + $this->writeDimensions(); + + // Row dimensions + foreach ($phpSheet->getRowDimensions() as $rowDimension) { + $xfIndex = $rowDimension->getXfIndex() + 15; // there are 15 cellXfs + $this->writeRow($rowDimension->getRowIndex() - 1, $rowDimension->getRowHeight(), $xfIndex, ($rowDimension->getVisible() ? '0' : '1'), $rowDimension->getOutlineLevel()); + } + + // Write Cells + foreach ($phpSheet->getCellCollection() as $cellID) { + $cell = $phpSheet->getCell($cellID); + $row = $cell->getRow() - 1; + $column = PHPExcel_Cell::columnIndexFromString($cell->getColumn()) - 1; + + // Don't break Excel! +// if ($row + 1 > 65536 or $column + 1 > 256) { + if ($row > 65535 || $column > 255) { + break; + } + + // Write cell value + $xfIndex = $cell->getXfIndex() + 15; // there are 15 cell style Xfs + + $cVal = $cell->getValue(); + if ($cVal instanceof PHPExcel_RichText) { + // $this->writeString($row, $column, $cVal->getPlainText(), $xfIndex); + $arrcRun = array(); + $str_len = PHPExcel_Shared_String::CountCharacters($cVal->getPlainText(), 'UTF-8'); + $str_pos = 0; + $elements = $cVal->getRichTextElements(); + foreach ($elements as $element) { + // FONT Index + if ($element instanceof PHPExcel_RichText_Run) { + $str_fontidx = $this->fontHashIndex[$element->getFont()->getHashCode()]; + } else { + $str_fontidx = 0; + } + $arrcRun[] = array('strlen' => $str_pos, 'fontidx' => $str_fontidx); + // Position FROM + $str_pos += PHPExcel_Shared_String::CountCharacters($element->getText(), 'UTF-8'); + } + $this->writeRichTextString($row, $column, $cVal->getPlainText(), $xfIndex, $arrcRun); + } else { + switch ($cell->getDatatype()) { + case PHPExcel_Cell_DataType::TYPE_STRING: + case PHPExcel_Cell_DataType::TYPE_NULL: + if ($cVal === '' || $cVal === null) { + $this->writeBlank($row, $column, $xfIndex); + } else { + $this->writeString($row, $column, $cVal, $xfIndex); + } + break; + + case PHPExcel_Cell_DataType::TYPE_NUMERIC: + $this->writeNumber($row, $column, $cVal, $xfIndex); + break; + + case PHPExcel_Cell_DataType::TYPE_FORMULA: + $calculatedValue = $this->_preCalculateFormulas ? + $cell->getCalculatedValue() : null; + $this->writeFormula($row, $column, $cVal, $xfIndex, $calculatedValue); + break; + + case PHPExcel_Cell_DataType::TYPE_BOOL: + $this->writeBoolErr($row, $column, $cVal, 0, $xfIndex); + break; + + case PHPExcel_Cell_DataType::TYPE_ERROR: + $this->writeBoolErr($row, $column, self::mapErrorCode($cVal), 1, $xfIndex); + break; + + } + } + } + + // Append + $this->writeMsoDrawing(); + + // Write WINDOW2 record + $this->writeWindow2(); + + // Write PLV record + $this->writePageLayoutView(); + + // Write ZOOM record + $this->writeZoom(); + if ($phpSheet->getFreezePane()) { + $this->writePanes(); + } + + // Write SELECTION record + $this->writeSelection(); + + // Write MergedCellsTable Record + $this->writeMergedCells(); + + // Hyperlinks + foreach ($phpSheet->getHyperLinkCollection() as $coordinate => $hyperlink) { + list($column, $row) = PHPExcel_Cell::coordinateFromString($coordinate); + + $url = $hyperlink->getUrl(); + + if (strpos($url, 'sheet://') !== false) { + // internal to current workbook + $url = str_replace('sheet://', 'internal:', $url); + + } elseif (preg_match('/^(http:|https:|ftp:|mailto:)/', $url)) { + // URL + // $url = $url; + + } else { + // external (local file) + $url = 'external:' . $url; + } + + $this->writeUrl($row - 1, PHPExcel_Cell::columnIndexFromString($column) - 1, $url); + } + + $this->writeDataValidity(); + $this->writeSheetLayout(); + + // Write SHEETPROTECTION record + $this->writeSheetProtection(); + $this->writeRangeProtection(); + + $arrConditionalStyles = $phpSheet->getConditionalStylesCollection(); + if (!empty($arrConditionalStyles)) { + $arrConditional = array(); + // @todo CFRule & CFHeader + // Write CFHEADER record + $this->writeCFHeader(); + // Write ConditionalFormattingTable records + foreach ($arrConditionalStyles as $cellCoordinate => $conditionalStyles) { + foreach ($conditionalStyles as $conditional) { + if ($conditional->getConditionType() == PHPExcel_Style_Conditional::CONDITION_EXPRESSION + || $conditional->getConditionType() == PHPExcel_Style_Conditional::CONDITION_CELLIS) { + if (!in_array($conditional->getHashCode(), $arrConditional)) { + $arrConditional[] = $conditional->getHashCode(); + // Write CFRULE record + $this->writeCFRule($conditional); + } + } + } + } + } + + $this->storeEof(); + } + + /** + * Write a cell range address in BIFF8 + * always fixed range + * See section 2.5.14 in OpenOffice.org's Documentation of the Microsoft Excel File Format + * + * @param string $range E.g. 'A1' or 'A1:B6' + * @return string Binary data + */ + private function writeBIFF8CellRangeAddressFixed($range = 'A1') + { + $explodes = explode(':', $range); + + // extract first cell, e.g. 'A1' + $firstCell = $explodes[0]; + + // extract last cell, e.g. 'B6' + if (count($explodes) == 1) { + $lastCell = $firstCell; + } else { + $lastCell = $explodes[1]; + } + + $firstCellCoordinates = PHPExcel_Cell::coordinateFromString($firstCell); // e.g. array(0, 1) + $lastCellCoordinates = PHPExcel_Cell::coordinateFromString($lastCell); // e.g. array(1, 6) + + return pack('vvvv', $firstCellCoordinates[1] - 1, $lastCellCoordinates[1] - 1, PHPExcel_Cell::columnIndexFromString($firstCellCoordinates[0]) - 1, PHPExcel_Cell::columnIndexFromString($lastCellCoordinates[0]) - 1); + } + + /** + * Retrieves data from memory in one chunk, or from disk in $buffer + * sized chunks. + * + * @return string The data + */ + public function getData() + { + $buffer = 4096; + + // Return data stored in memory + if (isset($this->_data)) { + $tmp = $this->_data; + unset($this->_data); + return $tmp; + } + // No data to return + return false; + } + + /** + * Set the option to print the row and column headers on the printed page. + * + * @access public + * @param integer $print Whether to print the headers or not. Defaults to 1 (print). + */ + public function printRowColHeaders($print = 1) + { + $this->_print_headers = $print; + } + + /** + * This method sets the properties for outlining and grouping. The defaults + * correspond to Excel's defaults. + * + * @param bool $visible + * @param bool $symbols_below + * @param bool $symbols_right + * @param bool $auto_style + */ + public function setOutline($visible = true, $symbols_below = true, $symbols_right = true, $auto_style = false) + { + $this->outlineOn = $visible; + $this->outlineBelow = $symbols_below; + $this->outlineRight = $symbols_right; + $this->outlineStyle = $auto_style; + + // Ensure this is a boolean vale for Window2 + if ($this->outlineOn) { + $this->outlineOn = 1; + } + } + + /** + * Write a double to the specified row and column (zero indexed). + * An integer can be written as a double. Excel will display an + * integer. $format is optional. + * + * Returns 0 : normal termination + * -2 : row or column out of range + * + * @param integer $row Zero indexed row + * @param integer $col Zero indexed column + * @param float $num The number to write + * @param mixed $xfIndex The optional XF format + * @return integer + */ + private function writeNumber($row, $col, $num, $xfIndex) + { + $record = 0x0203; // Record identifier + $length = 0x000E; // Number of bytes to follow + + $header = pack("vv", $record, $length); + $data = pack("vvv", $row, $col, $xfIndex); + $xl_double = pack("d", $num); + if (self::getByteOrder()) { // if it's Big Endian + $xl_double = strrev($xl_double); + } + + $this->append($header.$data.$xl_double); + return(0); + } + + /** + * Write a LABELSST record or a LABEL record. Which one depends on BIFF version + * + * @param int $row Row index (0-based) + * @param int $col Column index (0-based) + * @param string $str The string + * @param int $xfIndex Index to XF record + */ + private function writeString($row, $col, $str, $xfIndex) + { + $this->writeLabelSst($row, $col, $str, $xfIndex); + } + + /** + * Write a LABELSST record or a LABEL record. Which one depends on BIFF version + * It differs from writeString by the writing of rich text strings. + * @param int $row Row index (0-based) + * @param int $col Column index (0-based) + * @param string $str The string + * @param mixed $xfIndex The XF format index for the cell + * @param array $arrcRun Index to Font record and characters beginning + */ + private function writeRichTextString($row, $col, $str, $xfIndex, $arrcRun) + { + $record = 0x00FD; // Record identifier + $length = 0x000A; // Bytes to follow + $str = PHPExcel_Shared_String::UTF8toBIFF8UnicodeShort($str, $arrcRun); + + /* check if string is already present */ + if (!isset($this->stringTable[$str])) { + $this->stringTable[$str] = $this->stringUnique++; + } + $this->stringTotal++; + + $header = pack('vv', $record, $length); + $data = pack('vvvV', $row, $col, $xfIndex, $this->stringTable[$str]); + $this->append($header.$data); + } + + /** + * Write a string to the specified row and column (zero indexed). + * NOTE: there is an Excel 5 defined limit of 255 characters. + * $format is optional. + * Returns 0 : normal termination + * -2 : row or column out of range + * -3 : long string truncated to 255 chars + * + * @access public + * @param integer $row Zero indexed row + * @param integer $col Zero indexed column + * @param string $str The string to write + * @param mixed $xfIndex The XF format index for the cell + * @return integer + */ + private function writeLabel($row, $col, $str, $xfIndex) + { + $strlen = strlen($str); + $record = 0x0204; // Record identifier + $length = 0x0008 + $strlen; // Bytes to follow + + $str_error = 0; + + if ($strlen > $this->xlsStringMaxLength) { // LABEL must be < 255 chars + $str = substr($str, 0, $this->xlsStringMaxLength); + $length = 0x0008 + $this->xlsStringMaxLength; + $strlen = $this->xlsStringMaxLength; + $str_error = -3; + } + + $header = pack("vv", $record, $length); + $data = pack("vvvv", $row, $col, $xfIndex, $strlen); + $this->append($header . $data . $str); + return($str_error); + } + + /** + * Write a string to the specified row and column (zero indexed). + * This is the BIFF8 version (no 255 chars limit). + * $format is optional. + * Returns 0 : normal termination + * -2 : row or column out of range + * -3 : long string truncated to 255 chars + * + * @access public + * @param integer $row Zero indexed row + * @param integer $col Zero indexed column + * @param string $str The string to write + * @param mixed $xfIndex The XF format index for the cell + * @return integer + */ + private function writeLabelSst($row, $col, $str, $xfIndex) + { + $record = 0x00FD; // Record identifier + $length = 0x000A; // Bytes to follow + + $str = PHPExcel_Shared_String::UTF8toBIFF8UnicodeLong($str); + + /* check if string is already present */ + if (!isset($this->stringTable[$str])) { + $this->stringTable[$str] = $this->stringUnique++; + } + $this->stringTotal++; + + $header = pack('vv', $record, $length); + $data = pack('vvvV', $row, $col, $xfIndex, $this->stringTable[$str]); + $this->append($header.$data); + } + + /** + * Writes a note associated with the cell given by the row and column. + * NOTE records don't have a length limit. + * + * @param integer $row Zero indexed row + * @param integer $col Zero indexed column + * @param string $note The note to write + */ + private function writeNote($row, $col, $note) + { + $note_length = strlen($note); + $record = 0x001C; // Record identifier + $max_length = 2048; // Maximun length for a NOTE record + + // Length for this record is no more than 2048 + 6 + $length = 0x0006 + min($note_length, 2048); + $header = pack("vv", $record, $length); + $data = pack("vvv", $row, $col, $note_length); + $this->append($header . $data . substr($note, 0, 2048)); + + for ($i = $max_length; $i < $note_length; $i += $max_length) { + $chunk = substr($note, $i, $max_length); + $length = 0x0006 + strlen($chunk); + $header = pack("vv", $record, $length); + $data = pack("vvv", -1, 0, strlen($chunk)); + $this->append($header.$data.$chunk); + } + return(0); + } + + /** + * Write a blank cell to the specified row and column (zero indexed). + * A blank cell is used to specify formatting without adding a string + * or a number. + * + * A blank cell without a format serves no purpose. Therefore, we don't write + * a BLANK record unless a format is specified. + * + * Returns 0 : normal termination (including no format) + * -1 : insufficient number of arguments + * -2 : row or column out of range + * + * @param integer $row Zero indexed row + * @param integer $col Zero indexed column + * @param mixed $xfIndex The XF format index + */ + public function writeBlank($row, $col, $xfIndex) + { + $record = 0x0201; // Record identifier + $length = 0x0006; // Number of bytes to follow + + $header = pack("vv", $record, $length); + $data = pack("vvv", $row, $col, $xfIndex); + $this->append($header . $data); + return 0; + } + + /** + * Write a boolean or an error type to the specified row and column (zero indexed) + * + * @param int $row Row index (0-based) + * @param int $col Column index (0-based) + * @param int $value + * @param boolean $isError Error or Boolean? + * @param int $xfIndex + */ + private function writeBoolErr($row, $col, $value, $isError, $xfIndex) + { + $record = 0x0205; + $length = 8; + + $header = pack("vv", $record, $length); + $data = pack("vvvCC", $row, $col, $xfIndex, $value, $isError); + $this->append($header . $data); + return 0; + } + + /** + * Write a formula to the specified row and column (zero indexed). + * The textual representation of the formula is passed to the parser in + * Parser.php which returns a packed binary string. + * + * Returns 0 : normal termination + * -1 : formula errors (bad formula) + * -2 : row or column out of range + * + * @param integer $row Zero indexed row + * @param integer $col Zero indexed column + * @param string $formula The formula text string + * @param mixed $xfIndex The XF format index + * @param mixed $calculatedValue Calculated value + * @return integer + */ + private function writeFormula($row, $col, $formula, $xfIndex, $calculatedValue) + { + $record = 0x0006; // Record identifier + + // Initialize possible additional value for STRING record that should be written after the FORMULA record? + $stringValue = null; + + // calculated value + if (isset($calculatedValue)) { + // Since we can't yet get the data type of the calculated value, + // we use best effort to determine data type + if (is_bool($calculatedValue)) { + // Boolean value + $num = pack('CCCvCv', 0x01, 0x00, (int)$calculatedValue, 0x00, 0x00, 0xFFFF); + } elseif (is_int($calculatedValue) || is_float($calculatedValue)) { + // Numeric value + $num = pack('d', $calculatedValue); + } elseif (is_string($calculatedValue)) { + if (array_key_exists($calculatedValue, PHPExcel_Cell_DataType::getErrorCodes())) { + // Error value + $num = pack('CCCvCv', 0x02, 0x00, self::mapErrorCode($calculatedValue), 0x00, 0x00, 0xFFFF); + } elseif ($calculatedValue === '') { + // Empty string (and BIFF8) + $num = pack('CCCvCv', 0x03, 0x00, 0x00, 0x00, 0x00, 0xFFFF); + } else { + // Non-empty string value (or empty string BIFF5) + $stringValue = $calculatedValue; + $num = pack('CCCvCv', 0x00, 0x00, 0x00, 0x00, 0x00, 0xFFFF); + } + } else { + // We are really not supposed to reach here + $num = pack('d', 0x00); + } + } else { + $num = pack('d', 0x00); + } + + $grbit = 0x03; // Option flags + $unknown = 0x0000; // Must be zero + + // Strip the '=' or '@' sign at the beginning of the formula string + if ($formula{0} == '=') { + $formula = substr($formula, 1); + } else { + // Error handling + $this->writeString($row, $col, 'Unrecognised character for formula'); + return -1; + } + + // Parse the formula using the parser in Parser.php + try { + $error = $this->parser->parse($formula); + $formula = $this->parser->toReversePolish(); + + $formlen = strlen($formula); // Length of the binary string + $length = 0x16 + $formlen; // Length of the record data + + $header = pack("vv", $record, $length); + + $data = pack("vvv", $row, $col, $xfIndex) + . $num + . pack("vVv", $grbit, $unknown, $formlen); + $this->append($header . $data . $formula); + + // Append also a STRING record if necessary + if ($stringValue !== null) { + $this->writeStringRecord($stringValue); + } + + return 0; + + } catch (PHPExcel_Exception $e) { + // do nothing + } + + } + + /** + * Write a STRING record. This + * + * @param string $stringValue + */ + private function writeStringRecord($stringValue) + { + $record = 0x0207; // Record identifier + $data = PHPExcel_Shared_String::UTF8toBIFF8UnicodeLong($stringValue); + + $length = strlen($data); + $header = pack('vv', $record, $length); + + $this->append($header . $data); + } + + /** + * Write a hyperlink. + * This is comprised of two elements: the visible label and + * the invisible link. The visible label is the same as the link unless an + * alternative string is specified. The label is written using the + * writeString() method. Therefore the 255 characters string limit applies. + * $string and $format are optional. + * + * The hyperlink can be to a http, ftp, mail, internal sheet (not yet), or external + * directory url. + * + * Returns 0 : normal termination + * -2 : row or column out of range + * -3 : long string truncated to 255 chars + * + * @param integer $row Row + * @param integer $col Column + * @param string $url URL string + * @return integer + */ + private function writeUrl($row, $col, $url) + { + // Add start row and col to arg list + return($this->writeUrlRange($row, $col, $row, $col, $url)); + } + + /** + * This is the more general form of writeUrl(). It allows a hyperlink to be + * written to a range of cells. This function also decides the type of hyperlink + * to be written. These are either, Web (http, ftp, mailto), Internal + * (Sheet1!A1) or external ('c:\temp\foo.xls#Sheet1!A1'). + * + * @access private + * @see writeUrl() + * @param integer $row1 Start row + * @param integer $col1 Start column + * @param integer $row2 End row + * @param integer $col2 End column + * @param string $url URL string + * @return integer + */ + public function writeUrlRange($row1, $col1, $row2, $col2, $url) + { + // Check for internal/external sheet links or default to web link + if (preg_match('[^internal:]', $url)) { + return($this->writeUrlInternal($row1, $col1, $row2, $col2, $url)); + } + if (preg_match('[^external:]', $url)) { + return($this->writeUrlExternal($row1, $col1, $row2, $col2, $url)); + } + return($this->writeUrlWeb($row1, $col1, $row2, $col2, $url)); + } + + /** + * Used to write http, ftp and mailto hyperlinks. + * The link type ($options) is 0x03 is the same as absolute dir ref without + * sheet. However it is differentiated by the $unknown2 data stream. + * + * @access private + * @see writeUrl() + * @param integer $row1 Start row + * @param integer $col1 Start column + * @param integer $row2 End row + * @param integer $col2 End column + * @param string $url URL string + * @return integer + */ + public function writeUrlWeb($row1, $col1, $row2, $col2, $url) + { + $record = 0x01B8; // Record identifier + $length = 0x00000; // Bytes to follow + + // Pack the undocumented parts of the hyperlink stream + $unknown1 = pack("H*", "D0C9EA79F9BACE118C8200AA004BA90B02000000"); + $unknown2 = pack("H*", "E0C9EA79F9BACE118C8200AA004BA90B"); + + // Pack the option flags + $options = pack("V", 0x03); + + // Convert URL to a null terminated wchar string + $url = join("\0", preg_split("''", $url, -1, PREG_SPLIT_NO_EMPTY)); + $url = $url . "\0\0\0"; + + // Pack the length of the URL + $url_len = pack("V", strlen($url)); + + // Calculate the data length + $length = 0x34 + strlen($url); + + // Pack the header data + $header = pack("vv", $record, $length); + $data = pack("vvvv", $row1, $row2, $col1, $col2); + + // Write the packed data + $this->append($header . $data . + $unknown1 . $options . + $unknown2 . $url_len . $url); + return 0; + } + + /** + * Used to write internal reference hyperlinks such as "Sheet1!A1". + * + * @access private + * @see writeUrl() + * @param integer $row1 Start row + * @param integer $col1 Start column + * @param integer $row2 End row + * @param integer $col2 End column + * @param string $url URL string + * @return integer + */ + public function writeUrlInternal($row1, $col1, $row2, $col2, $url) + { + $record = 0x01B8; // Record identifier + $length = 0x00000; // Bytes to follow + + // Strip URL type + $url = preg_replace('/^internal:/', '', $url); + + // Pack the undocumented parts of the hyperlink stream + $unknown1 = pack("H*", "D0C9EA79F9BACE118C8200AA004BA90B02000000"); + + // Pack the option flags + $options = pack("V", 0x08); + + // Convert the URL type and to a null terminated wchar string + $url .= "\0"; + + // character count + $url_len = PHPExcel_Shared_String::CountCharacters($url); + $url_len = pack('V', $url_len); + + $url = PHPExcel_Shared_String::ConvertEncoding($url, 'UTF-16LE', 'UTF-8'); + + // Calculate the data length + $length = 0x24 + strlen($url); + + // Pack the header data + $header = pack("vv", $record, $length); + $data = pack("vvvv", $row1, $row2, $col1, $col2); + + // Write the packed data + $this->append($header . $data . + $unknown1 . $options . + $url_len . $url); + return 0; + } + + /** + * Write links to external directory names such as 'c:\foo.xls', + * c:\foo.xls#Sheet1!A1', '../../foo.xls'. and '../../foo.xls#Sheet1!A1'. + * + * Note: Excel writes some relative links with the $dir_long string. We ignore + * these cases for the sake of simpler code. + * + * @access private + * @see writeUrl() + * @param integer $row1 Start row + * @param integer $col1 Start column + * @param integer $row2 End row + * @param integer $col2 End column + * @param string $url URL string + * @return integer + */ + public function writeUrlExternal($row1, $col1, $row2, $col2, $url) + { + // Network drives are different. We will handle them separately + // MS/Novell network drives and shares start with \\ + if (preg_match('[^external:\\\\]', $url)) { + return; //($this->writeUrlExternal_net($row1, $col1, $row2, $col2, $url, $str, $format)); + } + + $record = 0x01B8; // Record identifier + $length = 0x00000; // Bytes to follow + + // Strip URL type and change Unix dir separator to Dos style (if needed) + // + $url = preg_replace('/^external:/', '', $url); + $url = preg_replace('/\//', "\\", $url); + + // Determine if the link is relative or absolute: + // relative if link contains no dir separator, "somefile.xls" + // relative if link starts with up-dir, "..\..\somefile.xls" + // otherwise, absolute + + $absolute = 0x00; // relative path + if (preg_match('/^[A-Z]:/', $url)) { + $absolute = 0x02; // absolute path on Windows, e.g. C:\... + } + $link_type = 0x01 | $absolute; + + // Determine if the link contains a sheet reference and change some of the + // parameters accordingly. + // Split the dir name and sheet name (if it exists) + $dir_long = $url; + if (preg_match("/\#/", $url)) { + $link_type |= 0x08; + } + + + // Pack the link type + $link_type = pack("V", $link_type); + + // Calculate the up-level dir count e.g.. (..\..\..\ == 3) + $up_count = preg_match_all("/\.\.\\\/", $dir_long, $useless); + $up_count = pack("v", $up_count); + + // Store the short dos dir name (null terminated) + $dir_short = preg_replace("/\.\.\\\/", '', $dir_long) . "\0"; + + // Store the long dir name as a wchar string (non-null terminated) + $dir_long = $dir_long . "\0"; + + // Pack the lengths of the dir strings + $dir_short_len = pack("V", strlen($dir_short)); + $dir_long_len = pack("V", strlen($dir_long)); + $stream_len = pack("V", 0); //strlen($dir_long) + 0x06); + + // Pack the undocumented parts of the hyperlink stream + $unknown1 = pack("H*", 'D0C9EA79F9BACE118C8200AA004BA90B02000000'); + $unknown2 = pack("H*", '0303000000000000C000000000000046'); + $unknown3 = pack("H*", 'FFFFADDE000000000000000000000000000000000000000'); + $unknown4 = pack("v", 0x03); + + // Pack the main data stream + $data = pack("vvvv", $row1, $row2, $col1, $col2) . + $unknown1 . + $link_type . + $unknown2 . + $up_count . + $dir_short_len. + $dir_short . + $unknown3 . + $stream_len ;/*. + $dir_long_len . + $unknown4 . + $dir_long . + $sheet_len . + $sheet ;*/ + + // Pack the header data + $length = strlen($data); + $header = pack("vv", $record, $length); + + // Write the packed data + $this->append($header. $data); + return 0; + } + + /** + * This method is used to set the height and format for a row. + * + * @param integer $row The row to set + * @param integer $height Height we are giving to the row. + * Use null to set XF without setting height + * @param integer $xfIndex The optional cell style Xf index to apply to the columns + * @param bool $hidden The optional hidden attribute + * @param integer $level The optional outline level for row, in range [0,7] + */ + private function writeRow($row, $height, $xfIndex, $hidden = false, $level = 0) + { + $record = 0x0208; // Record identifier + $length = 0x0010; // Number of bytes to follow + + $colMic = 0x0000; // First defined column + $colMac = 0x0000; // Last defined column + $irwMac = 0x0000; // Used by Excel to optimise loading + $reserved = 0x0000; // Reserved + $grbit = 0x0000; // Option flags + $ixfe = $xfIndex; + + if ($height < 0) { + $height = null; + } + + // Use writeRow($row, null, $XF) to set XF format without setting height + if ($height != null) { + $miyRw = $height * 20; // row height + } else { + $miyRw = 0xff; // default row height is 256 + } + + // Set the options flags. fUnsynced is used to show that the font and row + // heights are not compatible. This is usually the case for WriteExcel. + // The collapsed flag 0x10 doesn't seem to be used to indicate that a row + // is collapsed. Instead it is used to indicate that the previous row is + // collapsed. The zero height flag, 0x20, is used to collapse a row. + + $grbit |= $level; + if ($hidden) { + $grbit |= 0x0030; + } + if ($height !== null) { + $grbit |= 0x0040; // fUnsynced + } + if ($xfIndex !== 0xF) { + $grbit |= 0x0080; + } + $grbit |= 0x0100; + + $header = pack("vv", $record, $length); + $data = pack("vvvvvvvv", $row, $colMic, $colMac, $miyRw, $irwMac, $reserved, $grbit, $ixfe); + $this->append($header.$data); + } + + /** + * Writes Excel DIMENSIONS to define the area in which there is data. + */ + private function writeDimensions() + { + $record = 0x0200; // Record identifier + + $length = 0x000E; + $data = pack('VVvvv', $this->firstRowIndex, $this->lastRowIndex + 1, $this->firstColumnIndex, $this->lastColumnIndex + 1, 0x0000); // reserved + + $header = pack("vv", $record, $length); + $this->append($header.$data); + } + + /** + * Write BIFF record Window2. + */ + private function writeWindow2() + { + $record = 0x023E; // Record identifier + $length = 0x0012; + + $grbit = 0x00B6; // Option flags + $rwTop = 0x0000; // Top row visible in window + $colLeft = 0x0000; // Leftmost column visible in window + + + // The options flags that comprise $grbit + $fDspFmla = 0; // 0 - bit + $fDspGrid = $this->phpSheet->getShowGridlines() ? 1 : 0; // 1 + $fDspRwCol = $this->phpSheet->getShowRowColHeaders() ? 1 : 0; // 2 + $fFrozen = $this->phpSheet->getFreezePane() ? 1 : 0; // 3 + $fDspZeros = 1; // 4 + $fDefaultHdr = 1; // 5 + $fArabic = $this->phpSheet->getRightToLeft() ? 1 : 0; // 6 + $fDspGuts = $this->outlineOn; // 7 + $fFrozenNoSplit = 0; // 0 - bit + // no support in PHPExcel for selected sheet, therefore sheet is only selected if it is the active sheet + $fSelected = ($this->phpSheet === $this->phpSheet->getParent()->getActiveSheet()) ? 1 : 0; + $fPaged = 1; // 2 + $fPageBreakPreview = $this->phpSheet->getSheetView()->getView() === PHPExcel_Worksheet_SheetView::SHEETVIEW_PAGE_BREAK_PREVIEW; + + $grbit = $fDspFmla; + $grbit |= $fDspGrid << 1; + $grbit |= $fDspRwCol << 2; + $grbit |= $fFrozen << 3; + $grbit |= $fDspZeros << 4; + $grbit |= $fDefaultHdr << 5; + $grbit |= $fArabic << 6; + $grbit |= $fDspGuts << 7; + $grbit |= $fFrozenNoSplit << 8; + $grbit |= $fSelected << 9; + $grbit |= $fPaged << 10; + $grbit |= $fPageBreakPreview << 11; + + $header = pack("vv", $record, $length); + $data = pack("vvv", $grbit, $rwTop, $colLeft); + + // FIXME !!! + $rgbHdr = 0x0040; // Row/column heading and gridline color index + $zoom_factor_page_break = ($fPageBreakPreview ? $this->phpSheet->getSheetView()->getZoomScale() : 0x0000); + $zoom_factor_normal = $this->phpSheet->getSheetView()->getZoomScaleNormal(); + + $data .= pack("vvvvV", $rgbHdr, 0x0000, $zoom_factor_page_break, $zoom_factor_normal, 0x00000000); + + $this->append($header.$data); + } + + /** + * Write BIFF record DEFAULTROWHEIGHT. + */ + private function writeDefaultRowHeight() + { + $defaultRowHeight = $this->phpSheet->getDefaultRowDimension()->getRowHeight(); + + if ($defaultRowHeight < 0) { + return; + } + + // convert to twips + $defaultRowHeight = (int) 20 * $defaultRowHeight; + + $record = 0x0225; // Record identifier + $length = 0x0004; // Number of bytes to follow + + $header = pack("vv", $record, $length); + $data = pack("vv", 1, $defaultRowHeight); + $this->append($header . $data); + } + + /** + * Write BIFF record DEFCOLWIDTH if COLINFO records are in use. + */ + private function writeDefcol() + { + $defaultColWidth = 8; + + $record = 0x0055; // Record identifier + $length = 0x0002; // Number of bytes to follow + + $header = pack("vv", $record, $length); + $data = pack("v", $defaultColWidth); + $this->append($header . $data); + } + + /** + * Write BIFF record COLINFO to define column widths + * + * Note: The SDK says the record length is 0x0B but Excel writes a 0x0C + * length record. + * + * @param array $col_array This is the only parameter received and is composed of the following: + * 0 => First formatted column, + * 1 => Last formatted column, + * 2 => Col width (8.43 is Excel default), + * 3 => The optional XF format of the column, + * 4 => Option flags. + * 5 => Optional outline level + */ + private function writeColinfo($col_array) + { + if (isset($col_array[0])) { + $colFirst = $col_array[0]; + } + if (isset($col_array[1])) { + $colLast = $col_array[1]; + } + if (isset($col_array[2])) { + $coldx = $col_array[2]; + } else { + $coldx = 8.43; + } + if (isset($col_array[3])) { + $xfIndex = $col_array[3]; + } else { + $xfIndex = 15; + } + if (isset($col_array[4])) { + $grbit = $col_array[4]; + } else { + $grbit = 0; + } + if (isset($col_array[5])) { + $level = $col_array[5]; + } else { + $level = 0; + } + $record = 0x007D; // Record identifier + $length = 0x000C; // Number of bytes to follow + + $coldx *= 256; // Convert to units of 1/256 of a char + + $ixfe = $xfIndex; + $reserved = 0x0000; // Reserved + + $level = max(0, min($level, 7)); + $grbit |= $level << 8; + + $header = pack("vv", $record, $length); + $data = pack("vvvvvv", $colFirst, $colLast, $coldx, $ixfe, $grbit, $reserved); + $this->append($header.$data); + } + + /** + * Write BIFF record SELECTION. + */ + private function writeSelection() + { + // look up the selected cell range + $selectedCells = $this->phpSheet->getSelectedCells(); + $selectedCells = PHPExcel_Cell::splitRange($this->phpSheet->getSelectedCells()); + $selectedCells = $selectedCells[0]; + if (count($selectedCells) == 2) { + list($first, $last) = $selectedCells; + } else { + $first = $selectedCells[0]; + $last = $selectedCells[0]; + } + + list($colFirst, $rwFirst) = PHPExcel_Cell::coordinateFromString($first); + $colFirst = PHPExcel_Cell::columnIndexFromString($colFirst) - 1; // base 0 column index + --$rwFirst; // base 0 row index + + list($colLast, $rwLast) = PHPExcel_Cell::coordinateFromString($last); + $colLast = PHPExcel_Cell::columnIndexFromString($colLast) - 1; // base 0 column index + --$rwLast; // base 0 row index + + // make sure we are not out of bounds + $colFirst = min($colFirst, 255); + $colLast = min($colLast, 255); + + $rwFirst = min($rwFirst, 65535); + $rwLast = min($rwLast, 65535); + + $record = 0x001D; // Record identifier + $length = 0x000F; // Number of bytes to follow + + $pnn = $this->activePane; // Pane position + $rwAct = $rwFirst; // Active row + $colAct = $colFirst; // Active column + $irefAct = 0; // Active cell ref + $cref = 1; // Number of refs + + if (!isset($rwLast)) { + $rwLast = $rwFirst; // Last row in reference + } + if (!isset($colLast)) { + $colLast = $colFirst; // Last col in reference + } + + // Swap last row/col for first row/col as necessary + if ($rwFirst > $rwLast) { + list($rwFirst, $rwLast) = array($rwLast, $rwFirst); + } + + if ($colFirst > $colLast) { + list($colFirst, $colLast) = array($colLast, $colFirst); + } + + $header = pack("vv", $record, $length); + $data = pack("CvvvvvvCC", $pnn, $rwAct, $colAct, $irefAct, $cref, $rwFirst, $rwLast, $colFirst, $colLast); + $this->append($header . $data); + } + + /** + * Store the MERGEDCELLS records for all ranges of merged cells + */ + private function writeMergedCells() + { + $mergeCells = $this->phpSheet->getMergeCells(); + $countMergeCells = count($mergeCells); + + if ($countMergeCells == 0) { + return; + } + + // maximum allowed number of merged cells per record + $maxCountMergeCellsPerRecord = 1027; + + // record identifier + $record = 0x00E5; + + // counter for total number of merged cells treated so far by the writer + $i = 0; + + // counter for number of merged cells written in record currently being written + $j = 0; + + // initialize record data + $recordData = ''; + + // loop through the merged cells + foreach ($mergeCells as $mergeCell) { + ++$i; + ++$j; + + // extract the row and column indexes + $range = PHPExcel_Cell::splitRange($mergeCell); + list($first, $last) = $range[0]; + list($firstColumn, $firstRow) = PHPExcel_Cell::coordinateFromString($first); + list($lastColumn, $lastRow) = PHPExcel_Cell::coordinateFromString($last); + + $recordData .= pack('vvvv', $firstRow - 1, $lastRow - 1, PHPExcel_Cell::columnIndexFromString($firstColumn) - 1, PHPExcel_Cell::columnIndexFromString($lastColumn) - 1); + + // flush record if we have reached limit for number of merged cells, or reached final merged cell + if ($j == $maxCountMergeCellsPerRecord or $i == $countMergeCells) { + $recordData = pack('v', $j) . $recordData; + $length = strlen($recordData); + $header = pack('vv', $record, $length); + $this->append($header . $recordData); + + // initialize for next record, if any + $recordData = ''; + $j = 0; + } + } + } + + /** + * Write SHEETLAYOUT record + */ + private function writeSheetLayout() + { + if (!$this->phpSheet->isTabColorSet()) { + return; + } + + $recordData = pack( + 'vvVVVvv', + 0x0862, + 0x0000, // unused + 0x00000000, // unused + 0x00000000, // unused + 0x00000014, // size of record data + $this->colors[$this->phpSheet->getTabColor()->getRGB()], // color index + 0x0000 // unused + ); + + $length = strlen($recordData); + + $record = 0x0862; // Record identifier + $header = pack('vv', $record, $length); + $this->append($header . $recordData); + } + + /** + * Write SHEETPROTECTION + */ + private function writeSheetProtection() + { + // record identifier + $record = 0x0867; + + // prepare options + $options = (int) !$this->phpSheet->getProtection()->getObjects() + | (int) !$this->phpSheet->getProtection()->getScenarios() << 1 + | (int) !$this->phpSheet->getProtection()->getFormatCells() << 2 + | (int) !$this->phpSheet->getProtection()->getFormatColumns() << 3 + | (int) !$this->phpSheet->getProtection()->getFormatRows() << 4 + | (int) !$this->phpSheet->getProtection()->getInsertColumns() << 5 + | (int) !$this->phpSheet->getProtection()->getInsertRows() << 6 + | (int) !$this->phpSheet->getProtection()->getInsertHyperlinks() << 7 + | (int) !$this->phpSheet->getProtection()->getDeleteColumns() << 8 + | (int) !$this->phpSheet->getProtection()->getDeleteRows() << 9 + | (int) !$this->phpSheet->getProtection()->getSelectLockedCells() << 10 + | (int) !$this->phpSheet->getProtection()->getSort() << 11 + | (int) !$this->phpSheet->getProtection()->getAutoFilter() << 12 + | (int) !$this->phpSheet->getProtection()->getPivotTables() << 13 + | (int) !$this->phpSheet->getProtection()->getSelectUnlockedCells() << 14 ; + + // record data + $recordData = pack( + 'vVVCVVvv', + 0x0867, // repeated record identifier + 0x0000, // not used + 0x0000, // not used + 0x00, // not used + 0x01000200, // unknown data + 0xFFFFFFFF, // unknown data + $options, // options + 0x0000 // not used + ); + + $length = strlen($recordData); + $header = pack('vv', $record, $length); + + $this->append($header . $recordData); + } + + /** + * Write BIFF record RANGEPROTECTION + * + * Openoffice.org's Documentaion of the Microsoft Excel File Format uses term RANGEPROTECTION for these records + * Microsoft Office Excel 97-2007 Binary File Format Specification uses term FEAT for these records + */ + private function writeRangeProtection() + { + foreach ($this->phpSheet->getProtectedCells() as $range => $password) { + // number of ranges, e.g. 'A1:B3 C20:D25' + $cellRanges = explode(' ', $range); + $cref = count($cellRanges); + + $recordData = pack( + 'vvVVvCVvVv', + 0x0868, + 0x00, + 0x0000, + 0x0000, + 0x02, + 0x0, + 0x0000, + $cref, + 0x0000, + 0x00 + ); + + foreach ($cellRanges as $cellRange) { + $recordData .= $this->writeBIFF8CellRangeAddressFixed($cellRange); + } + + // the rgbFeat structure + $recordData .= pack( + 'VV', + 0x0000, + hexdec($password) + ); + + $recordData .= PHPExcel_Shared_String::UTF8toBIFF8UnicodeLong('p' . md5($recordData)); + + $length = strlen($recordData); + + $record = 0x0868; // Record identifier + $header = pack("vv", $record, $length); + $this->append($header . $recordData); + } + } + + /** + * Write BIFF record EXTERNCOUNT to indicate the number of external sheet + * references in a worksheet. + * + * Excel only stores references to external sheets that are used in formulas. + * For simplicity we store references to all the sheets in the workbook + * regardless of whether they are used or not. This reduces the overall + * complexity and eliminates the need for a two way dialogue between the formula + * parser the worksheet objects. + * + * @param integer $count The number of external sheet references in this worksheet + */ + private function writeExterncount($count) + { + $record = 0x0016; // Record identifier + $length = 0x0002; // Number of bytes to follow + + $header = pack("vv", $record, $length); + $data = pack("v", $count); + $this->append($header . $data); + } + + /** + * Writes the Excel BIFF EXTERNSHEET record. These references are used by + * formulas. A formula references a sheet name via an index. Since we store a + * reference to all of the external worksheets the EXTERNSHEET index is the same + * as the worksheet index. + * + * @param string $sheetname The name of a external worksheet + */ + private function writeExternsheet($sheetname) + { + $record = 0x0017; // Record identifier + + // References to the current sheet are encoded differently to references to + // external sheets. + // + if ($this->phpSheet->getTitle() == $sheetname) { + $sheetname = ''; + $length = 0x02; // The following 2 bytes + $cch = 1; // The following byte + $rgch = 0x02; // Self reference + } else { + $length = 0x02 + strlen($sheetname); + $cch = strlen($sheetname); + $rgch = 0x03; // Reference to a sheet in the current workbook + } + + $header = pack("vv", $record, $length); + $data = pack("CC", $cch, $rgch); + $this->append($header . $data . $sheetname); + } + + /** + * Writes the Excel BIFF PANE record. + * The panes can either be frozen or thawed (unfrozen). + * Frozen panes are specified in terms of an integer number of rows and columns. + * Thawed panes are specified in terms of Excel's units for rows and columns. + */ + private function writePanes() + { + $panes = array(); + if ($freezePane = $this->phpSheet->getFreezePane()) { + list($column, $row) = PHPExcel_Cell::coordinateFromString($freezePane); + $panes[0] = $row - 1; + $panes[1] = PHPExcel_Cell::columnIndexFromString($column) - 1; + } else { + // thaw panes + return; + } + + $y = isset($panes[0]) ? $panes[0] : null; + $x = isset($panes[1]) ? $panes[1] : null; + $rwTop = isset($panes[2]) ? $panes[2] : null; + $colLeft = isset($panes[3]) ? $panes[3] : null; + if (count($panes) > 4) { // if Active pane was received + $pnnAct = $panes[4]; + } else { + $pnnAct = null; + } + $record = 0x0041; // Record identifier + $length = 0x000A; // Number of bytes to follow + + // Code specific to frozen or thawed panes. + if ($this->phpSheet->getFreezePane()) { + // Set default values for $rwTop and $colLeft + if (!isset($rwTop)) { + $rwTop = $y; + } + if (!isset($colLeft)) { + $colLeft = $x; + } + } else { + // Set default values for $rwTop and $colLeft + if (!isset($rwTop)) { + $rwTop = 0; + } + if (!isset($colLeft)) { + $colLeft = 0; + } + + // Convert Excel's row and column units to the internal units. + // The default row height is 12.75 + // The default column width is 8.43 + // The following slope and intersection values were interpolated. + // + $y = 20*$y + 255; + $x = 113.879*$x + 390; + } + + + // Determine which pane should be active. There is also the undocumented + // option to override this should it be necessary: may be removed later. + // + if (!isset($pnnAct)) { + if ($x != 0 && $y != 0) { + $pnnAct = 0; // Bottom right + } + if ($x != 0 && $y == 0) { + $pnnAct = 1; // Top right + } + if ($x == 0 && $y != 0) { + $pnnAct = 2; // Bottom left + } + if ($x == 0 && $y == 0) { + $pnnAct = 3; // Top left + } + } + + $this->activePane = $pnnAct; // Used in writeSelection + + $header = pack("vv", $record, $length); + $data = pack("vvvvv", $x, $y, $rwTop, $colLeft, $pnnAct); + $this->append($header . $data); + } + + /** + * Store the page setup SETUP BIFF record. + */ + private function writeSetup() + { + $record = 0x00A1; // Record identifier + $length = 0x0022; // Number of bytes to follow + + $iPaperSize = $this->phpSheet->getPageSetup()->getPaperSize(); // Paper size + + $iScale = $this->phpSheet->getPageSetup()->getScale() ? + $this->phpSheet->getPageSetup()->getScale() : 100; // Print scaling factor + + $iPageStart = 0x01; // Starting page number + $iFitWidth = (int) $this->phpSheet->getPageSetup()->getFitToWidth(); // Fit to number of pages wide + $iFitHeight = (int) $this->phpSheet->getPageSetup()->getFitToHeight(); // Fit to number of pages high + $grbit = 0x00; // Option flags + $iRes = 0x0258; // Print resolution + $iVRes = 0x0258; // Vertical print resolution + + $numHdr = $this->phpSheet->getPageMargins()->getHeader(); // Header Margin + + $numFtr = $this->phpSheet->getPageMargins()->getFooter(); // Footer Margin + $iCopies = 0x01; // Number of copies + + $fLeftToRight = 0x0; // Print over then down + + // Page orientation + $fLandscape = ($this->phpSheet->getPageSetup()->getOrientation() == PHPExcel_Worksheet_PageSetup::ORIENTATION_LANDSCAPE) ? + 0x0 : 0x1; + + $fNoPls = 0x0; // Setup not read from printer + $fNoColor = 0x0; // Print black and white + $fDraft = 0x0; // Print draft quality + $fNotes = 0x0; // Print notes + $fNoOrient = 0x0; // Orientation not set + $fUsePage = 0x0; // Use custom starting page + + $grbit = $fLeftToRight; + $grbit |= $fLandscape << 1; + $grbit |= $fNoPls << 2; + $grbit |= $fNoColor << 3; + $grbit |= $fDraft << 4; + $grbit |= $fNotes << 5; + $grbit |= $fNoOrient << 6; + $grbit |= $fUsePage << 7; + + $numHdr = pack("d", $numHdr); + $numFtr = pack("d", $numFtr); + if (self::getByteOrder()) { // if it's Big Endian + $numHdr = strrev($numHdr); + $numFtr = strrev($numFtr); + } + + $header = pack("vv", $record, $length); + $data1 = pack("vvvvvvvv", $iPaperSize, $iScale, $iPageStart, $iFitWidth, $iFitHeight, $grbit, $iRes, $iVRes); + $data2 = $numHdr.$numFtr; + $data3 = pack("v", $iCopies); + $this->append($header . $data1 . $data2 . $data3); + } + + /** + * Store the header caption BIFF record. + */ + private function writeHeader() + { + $record = 0x0014; // Record identifier + + /* removing for now + // need to fix character count (multibyte!) + if (strlen($this->phpSheet->getHeaderFooter()->getOddHeader()) <= 255) { + $str = $this->phpSheet->getHeaderFooter()->getOddHeader(); // header string + } else { + $str = ''; + } + */ + + $recordData = PHPExcel_Shared_String::UTF8toBIFF8UnicodeLong($this->phpSheet->getHeaderFooter()->getOddHeader()); + $length = strlen($recordData); + + $header = pack("vv", $record, $length); + + $this->append($header . $recordData); + } + + /** + * Store the footer caption BIFF record. + */ + private function writeFooter() + { + $record = 0x0015; // Record identifier + + /* removing for now + // need to fix character count (multibyte!) + if (strlen($this->phpSheet->getHeaderFooter()->getOddFooter()) <= 255) { + $str = $this->phpSheet->getHeaderFooter()->getOddFooter(); + } else { + $str = ''; + } + */ + + $recordData = PHPExcel_Shared_String::UTF8toBIFF8UnicodeLong($this->phpSheet->getHeaderFooter()->getOddFooter()); + $length = strlen($recordData); + + $header = pack("vv", $record, $length); + + $this->append($header . $recordData); + } + + /** + * Store the horizontal centering HCENTER BIFF record. + * + * @access private + */ + private function writeHcenter() + { + $record = 0x0083; // Record identifier + $length = 0x0002; // Bytes to follow + + $fHCenter = $this->phpSheet->getPageSetup()->getHorizontalCentered() ? 1 : 0; // Horizontal centering + + $header = pack("vv", $record, $length); + $data = pack("v", $fHCenter); + + $this->append($header.$data); + } + + /** + * Store the vertical centering VCENTER BIFF record. + */ + private function writeVcenter() + { + $record = 0x0084; // Record identifier + $length = 0x0002; // Bytes to follow + + $fVCenter = $this->phpSheet->getPageSetup()->getVerticalCentered() ? 1 : 0; // Horizontal centering + + $header = pack("vv", $record, $length); + $data = pack("v", $fVCenter); + $this->append($header . $data); + } + + /** + * Store the LEFTMARGIN BIFF record. + */ + private function writeMarginLeft() + { + $record = 0x0026; // Record identifier + $length = 0x0008; // Bytes to follow + + $margin = $this->phpSheet->getPageMargins()->getLeft(); // Margin in inches + + $header = pack("vv", $record, $length); + $data = pack("d", $margin); + if (self::getByteOrder()) { // if it's Big Endian + $data = strrev($data); + } + + $this->append($header . $data); + } + + /** + * Store the RIGHTMARGIN BIFF record. + */ + private function writeMarginRight() + { + $record = 0x0027; // Record identifier + $length = 0x0008; // Bytes to follow + + $margin = $this->phpSheet->getPageMargins()->getRight(); // Margin in inches + + $header = pack("vv", $record, $length); + $data = pack("d", $margin); + if (self::getByteOrder()) { // if it's Big Endian + $data = strrev($data); + } + + $this->append($header . $data); + } + + /** + * Store the TOPMARGIN BIFF record. + */ + private function writeMarginTop() + { + $record = 0x0028; // Record identifier + $length = 0x0008; // Bytes to follow + + $margin = $this->phpSheet->getPageMargins()->getTop(); // Margin in inches + + $header = pack("vv", $record, $length); + $data = pack("d", $margin); + if (self::getByteOrder()) { // if it's Big Endian + $data = strrev($data); + } + + $this->append($header . $data); + } + + /** + * Store the BOTTOMMARGIN BIFF record. + */ + private function writeMarginBottom() + { + $record = 0x0029; // Record identifier + $length = 0x0008; // Bytes to follow + + $margin = $this->phpSheet->getPageMargins()->getBottom(); // Margin in inches + + $header = pack("vv", $record, $length); + $data = pack("d", $margin); + if (self::getByteOrder()) { // if it's Big Endian + $data = strrev($data); + } + + $this->append($header . $data); + } + + /** + * Write the PRINTHEADERS BIFF record. + */ + private function writePrintHeaders() + { + $record = 0x002a; // Record identifier + $length = 0x0002; // Bytes to follow + + $fPrintRwCol = $this->_print_headers; // Boolean flag + + $header = pack("vv", $record, $length); + $data = pack("v", $fPrintRwCol); + $this->append($header . $data); + } + + /** + * Write the PRINTGRIDLINES BIFF record. Must be used in conjunction with the + * GRIDSET record. + */ + private function writePrintGridlines() + { + $record = 0x002b; // Record identifier + $length = 0x0002; // Bytes to follow + + $fPrintGrid = $this->phpSheet->getPrintGridlines() ? 1 : 0; // Boolean flag + + $header = pack("vv", $record, $length); + $data = pack("v", $fPrintGrid); + $this->append($header . $data); + } + + /** + * Write the GRIDSET BIFF record. Must be used in conjunction with the + * PRINTGRIDLINES record. + */ + private function writeGridset() + { + $record = 0x0082; // Record identifier + $length = 0x0002; // Bytes to follow + + $fGridSet = !$this->phpSheet->getPrintGridlines(); // Boolean flag + + $header = pack("vv", $record, $length); + $data = pack("v", $fGridSet); + $this->append($header . $data); + } + + /** + * Write the AUTOFILTERINFO BIFF record. This is used to configure the number of autofilter select used in the sheet. + */ + private function writeAutoFilterInfo() + { + $record = 0x009D; // Record identifier + $length = 0x0002; // Bytes to follow + + $rangeBounds = PHPExcel_Cell::rangeBoundaries($this->phpSheet->getAutoFilter()->getRange()); + $iNumFilters = 1 + $rangeBounds[1][0] - $rangeBounds[0][0]; + + $header = pack("vv", $record, $length); + $data = pack("v", $iNumFilters); + $this->append($header . $data); + } + + /** + * Write the GUTS BIFF record. This is used to configure the gutter margins + * where Excel outline symbols are displayed. The visibility of the gutters is + * controlled by a flag in WSBOOL. + * + * @see writeWsbool() + */ + private function writeGuts() + { + $record = 0x0080; // Record identifier + $length = 0x0008; // Bytes to follow + + $dxRwGut = 0x0000; // Size of row gutter + $dxColGut = 0x0000; // Size of col gutter + + // determine maximum row outline level + $maxRowOutlineLevel = 0; + foreach ($this->phpSheet->getRowDimensions() as $rowDimension) { + $maxRowOutlineLevel = max($maxRowOutlineLevel, $rowDimension->getOutlineLevel()); + } + + $col_level = 0; + + // Calculate the maximum column outline level. The equivalent calculation + // for the row outline level is carried out in writeRow(). + $colcount = count($this->columnInfo); + for ($i = 0; $i < $colcount; ++$i) { + $col_level = max($this->columnInfo[$i][5], $col_level); + } + + // Set the limits for the outline levels (0 <= x <= 7). + $col_level = max(0, min($col_level, 7)); + + // The displayed level is one greater than the max outline levels + if ($maxRowOutlineLevel) { + ++$maxRowOutlineLevel; + } + if ($col_level) { + ++$col_level; + } + + $header = pack("vv", $record, $length); + $data = pack("vvvv", $dxRwGut, $dxColGut, $maxRowOutlineLevel, $col_level); + + $this->append($header.$data); + } + + /** + * Write the WSBOOL BIFF record, mainly for fit-to-page. Used in conjunction + * with the SETUP record. + */ + private function writeWsbool() + { + $record = 0x0081; // Record identifier + $length = 0x0002; // Bytes to follow + $grbit = 0x0000; + + // The only option that is of interest is the flag for fit to page. So we + // set all the options in one go. + // + // Set the option flags + $grbit |= 0x0001; // Auto page breaks visible + if ($this->outlineStyle) { + $grbit |= 0x0020; // Auto outline styles + } + if ($this->phpSheet->getShowSummaryBelow()) { + $grbit |= 0x0040; // Outline summary below + } + if ($this->phpSheet->getShowSummaryRight()) { + $grbit |= 0x0080; // Outline summary right + } + if ($this->phpSheet->getPageSetup()->getFitToPage()) { + $grbit |= 0x0100; // Page setup fit to page + } + if ($this->outlineOn) { + $grbit |= 0x0400; // Outline symbols displayed + } + + $header = pack("vv", $record, $length); + $data = pack("v", $grbit); + $this->append($header . $data); + } + + /** + * Write the HORIZONTALPAGEBREAKS and VERTICALPAGEBREAKS BIFF records. + */ + private function writeBreaks() + { + // initialize + $vbreaks = array(); + $hbreaks = array(); + + foreach ($this->phpSheet->getBreaks() as $cell => $breakType) { + // Fetch coordinates + $coordinates = PHPExcel_Cell::coordinateFromString($cell); + + // Decide what to do by the type of break + switch ($breakType) { + case PHPExcel_Worksheet::BREAK_COLUMN: + // Add to list of vertical breaks + $vbreaks[] = PHPExcel_Cell::columnIndexFromString($coordinates[0]) - 1; + break; + case PHPExcel_Worksheet::BREAK_ROW: + // Add to list of horizontal breaks + $hbreaks[] = $coordinates[1]; + break; + case PHPExcel_Worksheet::BREAK_NONE: + default: + // Nothing to do + break; + } + } + + //horizontal page breaks + if (!empty($hbreaks)) { + // Sort and filter array of page breaks + sort($hbreaks, SORT_NUMERIC); + if ($hbreaks[0] == 0) { // don't use first break if it's 0 + array_shift($hbreaks); + } + + $record = 0x001b; // Record identifier + $cbrk = count($hbreaks); // Number of page breaks + $length = 2 + 6 * $cbrk; // Bytes to follow + + $header = pack("vv", $record, $length); + $data = pack("v", $cbrk); + + // Append each page break + foreach ($hbreaks as $hbreak) { + $data .= pack("vvv", $hbreak, 0x0000, 0x00ff); + } + + $this->append($header . $data); + } + + // vertical page breaks + if (!empty($vbreaks)) { + // 1000 vertical pagebreaks appears to be an internal Excel 5 limit. + // It is slightly higher in Excel 97/200, approx. 1026 + $vbreaks = array_slice($vbreaks, 0, 1000); + + // Sort and filter array of page breaks + sort($vbreaks, SORT_NUMERIC); + if ($vbreaks[0] == 0) { // don't use first break if it's 0 + array_shift($vbreaks); + } + + $record = 0x001a; // Record identifier + $cbrk = count($vbreaks); // Number of page breaks + $length = 2 + 6 * $cbrk; // Bytes to follow + + $header = pack("vv", $record, $length); + $data = pack("v", $cbrk); + + // Append each page break + foreach ($vbreaks as $vbreak) { + $data .= pack("vvv", $vbreak, 0x0000, 0xffff); + } + + $this->append($header . $data); + } + } + + /** + * Set the Biff PROTECT record to indicate that the worksheet is protected. + */ + private function writeProtect() + { + // Exit unless sheet protection has been specified + if (!$this->phpSheet->getProtection()->getSheet()) { + return; + } + + $record = 0x0012; // Record identifier + $length = 0x0002; // Bytes to follow + + $fLock = 1; // Worksheet is protected + + $header = pack("vv", $record, $length); + $data = pack("v", $fLock); + + $this->append($header.$data); + } + + /** + * Write SCENPROTECT + */ + private function writeScenProtect() + { + // Exit if sheet protection is not active + if (!$this->phpSheet->getProtection()->getSheet()) { + return; + } + + // Exit if scenarios are not protected + if (!$this->phpSheet->getProtection()->getScenarios()) { + return; + } + + $record = 0x00DD; // Record identifier + $length = 0x0002; // Bytes to follow + + $header = pack('vv', $record, $length); + $data = pack('v', 1); + + $this->append($header . $data); + } + + /** + * Write OBJECTPROTECT + */ + private function writeObjectProtect() + { + // Exit if sheet protection is not active + if (!$this->phpSheet->getProtection()->getSheet()) { + return; + } + + // Exit if objects are not protected + if (!$this->phpSheet->getProtection()->getObjects()) { + return; + } + + $record = 0x0063; // Record identifier + $length = 0x0002; // Bytes to follow + + $header = pack('vv', $record, $length); + $data = pack('v', 1); + + $this->append($header . $data); + } + + /** + * Write the worksheet PASSWORD record. + */ + private function writePassword() + { + // Exit unless sheet protection and password have been specified + if (!$this->phpSheet->getProtection()->getSheet() || !$this->phpSheet->getProtection()->getPassword()) { + return; + } + + $record = 0x0013; // Record identifier + $length = 0x0002; // Bytes to follow + + $wPassword = hexdec($this->phpSheet->getProtection()->getPassword()); // Encoded password + + $header = pack("vv", $record, $length); + $data = pack("v", $wPassword); + + $this->append($header . $data); + } + + /** + * Insert a 24bit bitmap image in a worksheet. + * + * @access public + * @param integer $row The row we are going to insert the bitmap into + * @param integer $col The column we are going to insert the bitmap into + * @param mixed $bitmap The bitmap filename or GD-image resource + * @param integer $x The horizontal position (offset) of the image inside the cell. + * @param integer $y The vertical position (offset) of the image inside the cell. + * @param float $scale_x The horizontal scale + * @param float $scale_y The vertical scale + */ + public function insertBitmap($row, $col, $bitmap, $x = 0, $y = 0, $scale_x = 1, $scale_y = 1) + { + $bitmap_array = (is_resource($bitmap) ? $this->processBitmapGd($bitmap) : $this->processBitmap($bitmap)); + list($width, $height, $size, $data) = $bitmap_array; //$this->processBitmap($bitmap); + + // Scale the frame of the image. + $width *= $scale_x; + $height *= $scale_y; + + // Calculate the vertices of the image and write the OBJ record + $this->positionImage($col, $row, $x, $y, $width, $height); + + // Write the IMDATA record to store the bitmap data + $record = 0x007f; + $length = 8 + $size; + $cf = 0x09; + $env = 0x01; + $lcb = $size; + + $header = pack("vvvvV", $record, $length, $cf, $env, $lcb); + $this->append($header.$data); + } + + /** + * Calculate the vertices that define the position of the image as required by + * the OBJ record. + * + * +------------+------------+ + * | A | B | + * +-----+------------+------------+ + * | |(x1,y1) | | + * | 1 |(A1)._______|______ | + * | | | | | + * | | | | | + * +-----+----| BITMAP |-----+ + * | | | | | + * | 2 | |______________. | + * | | | (B2)| + * | | | (x2,y2)| + * +---- +------------+------------+ + * + * Example of a bitmap that covers some of the area from cell A1 to cell B2. + * + * Based on the width and height of the bitmap we need to calculate 8 vars: + * $col_start, $row_start, $col_end, $row_end, $x1, $y1, $x2, $y2. + * The width and height of the cells are also variable and have to be taken into + * account. + * The values of $col_start and $row_start are passed in from the calling + * function. The values of $col_end and $row_end are calculated by subtracting + * the width and height of the bitmap from the width and height of the + * underlying cells. + * The vertices are expressed as a percentage of the underlying cell width as + * follows (rhs values are in pixels): + * + * x1 = X / W *1024 + * y1 = Y / H *256 + * x2 = (X-1) / W *1024 + * y2 = (Y-1) / H *256 + * + * Where: X is distance from the left side of the underlying cell + * Y is distance from the top of the underlying cell + * W is the width of the cell + * H is the height of the cell + * The SDK incorrectly states that the height should be expressed as a + * percentage of 1024. + * + * @access private + * @param integer $col_start Col containing upper left corner of object + * @param integer $row_start Row containing top left corner of object + * @param integer $x1 Distance to left side of object + * @param integer $y1 Distance to top of object + * @param integer $width Width of image frame + * @param integer $height Height of image frame + */ + public function positionImage($col_start, $row_start, $x1, $y1, $width, $height) + { + // Initialise end cell to the same as the start cell + $col_end = $col_start; // Col containing lower right corner of object + $row_end = $row_start; // Row containing bottom right corner of object + + // Zero the specified offset if greater than the cell dimensions + if ($x1 >= PHPExcel_Shared_Excel5::sizeCol($this->phpSheet, PHPExcel_Cell::stringFromColumnIndex($col_start))) { + $x1 = 0; + } + if ($y1 >= PHPExcel_Shared_Excel5::sizeRow($this->phpSheet, $row_start + 1)) { + $y1 = 0; + } + + $width = $width + $x1 -1; + $height = $height + $y1 -1; + + // Subtract the underlying cell widths to find the end cell of the image + while ($width >= PHPExcel_Shared_Excel5::sizeCol($this->phpSheet, PHPExcel_Cell::stringFromColumnIndex($col_end))) { + $width -= PHPExcel_Shared_Excel5::sizeCol($this->phpSheet, PHPExcel_Cell::stringFromColumnIndex($col_end)); + ++$col_end; + } + + // Subtract the underlying cell heights to find the end cell of the image + while ($height >= PHPExcel_Shared_Excel5::sizeRow($this->phpSheet, $row_end + 1)) { + $height -= PHPExcel_Shared_Excel5::sizeRow($this->phpSheet, $row_end + 1); + ++$row_end; + } + + // Bitmap isn't allowed to start or finish in a hidden cell, i.e. a cell + // with zero eight or width. + // + if (PHPExcel_Shared_Excel5::sizeCol($this->phpSheet, PHPExcel_Cell::stringFromColumnIndex($col_start)) == 0) { + return; + } + if (PHPExcel_Shared_Excel5::sizeCol($this->phpSheet, PHPExcel_Cell::stringFromColumnIndex($col_end)) == 0) { + return; + } + if (PHPExcel_Shared_Excel5::sizeRow($this->phpSheet, $row_start + 1) == 0) { + return; + } + if (PHPExcel_Shared_Excel5::sizeRow($this->phpSheet, $row_end + 1) == 0) { + return; + } + + // Convert the pixel values to the percentage value expected by Excel + $x1 = $x1 / PHPExcel_Shared_Excel5::sizeCol($this->phpSheet, PHPExcel_Cell::stringFromColumnIndex($col_start)) * 1024; + $y1 = $y1 / PHPExcel_Shared_Excel5::sizeRow($this->phpSheet, $row_start + 1) * 256; + $x2 = $width / PHPExcel_Shared_Excel5::sizeCol($this->phpSheet, PHPExcel_Cell::stringFromColumnIndex($col_end)) * 1024; // Distance to right side of object + $y2 = $height / PHPExcel_Shared_Excel5::sizeRow($this->phpSheet, $row_end + 1) * 256; // Distance to bottom of object + + $this->writeObjPicture($col_start, $x1, $row_start, $y1, $col_end, $x2, $row_end, $y2); + } + + /** + * Store the OBJ record that precedes an IMDATA record. This could be generalise + * to support other Excel objects. + * + * @param integer $colL Column containing upper left corner of object + * @param integer $dxL Distance from left side of cell + * @param integer $rwT Row containing top left corner of object + * @param integer $dyT Distance from top of cell + * @param integer $colR Column containing lower right corner of object + * @param integer $dxR Distance from right of cell + * @param integer $rwB Row containing bottom right corner of object + * @param integer $dyB Distance from bottom of cell + */ + private function writeObjPicture($colL, $dxL, $rwT, $dyT, $colR, $dxR, $rwB, $dyB) + { + $record = 0x005d; // Record identifier + $length = 0x003c; // Bytes to follow + + $cObj = 0x0001; // Count of objects in file (set to 1) + $OT = 0x0008; // Object type. 8 = Picture + $id = 0x0001; // Object ID + $grbit = 0x0614; // Option flags + + $cbMacro = 0x0000; // Length of FMLA structure + $Reserved1 = 0x0000; // Reserved + $Reserved2 = 0x0000; // Reserved + + $icvBack = 0x09; // Background colour + $icvFore = 0x09; // Foreground colour + $fls = 0x00; // Fill pattern + $fAuto = 0x00; // Automatic fill + $icv = 0x08; // Line colour + $lns = 0xff; // Line style + $lnw = 0x01; // Line weight + $fAutoB = 0x00; // Automatic border + $frs = 0x0000; // Frame style + $cf = 0x0009; // Image format, 9 = bitmap + $Reserved3 = 0x0000; // Reserved + $cbPictFmla = 0x0000; // Length of FMLA structure + $Reserved4 = 0x0000; // Reserved + $grbit2 = 0x0001; // Option flags + $Reserved5 = 0x0000; // Reserved + + + $header = pack("vv", $record, $length); + $data = pack("V", $cObj); + $data .= pack("v", $OT); + $data .= pack("v", $id); + $data .= pack("v", $grbit); + $data .= pack("v", $colL); + $data .= pack("v", $dxL); + $data .= pack("v", $rwT); + $data .= pack("v", $dyT); + $data .= pack("v", $colR); + $data .= pack("v", $dxR); + $data .= pack("v", $rwB); + $data .= pack("v", $dyB); + $data .= pack("v", $cbMacro); + $data .= pack("V", $Reserved1); + $data .= pack("v", $Reserved2); + $data .= pack("C", $icvBack); + $data .= pack("C", $icvFore); + $data .= pack("C", $fls); + $data .= pack("C", $fAuto); + $data .= pack("C", $icv); + $data .= pack("C", $lns); + $data .= pack("C", $lnw); + $data .= pack("C", $fAutoB); + $data .= pack("v", $frs); + $data .= pack("V", $cf); + $data .= pack("v", $Reserved3); + $data .= pack("v", $cbPictFmla); + $data .= pack("v", $Reserved4); + $data .= pack("v", $grbit2); + $data .= pack("V", $Reserved5); + + $this->append($header . $data); + } + + /** + * Convert a GD-image into the internal format. + * + * @access private + * @param resource $image The image to process + * @return array Array with data and properties of the bitmap + */ + public function processBitmapGd($image) + { + $width = imagesx($image); + $height = imagesy($image); + + $data = pack("Vvvvv", 0x000c, $width, $height, 0x01, 0x18); + for ($j=$height; $j--;) { + for ($i=0; $i < $width; ++$i) { + $color = imagecolorsforindex($image, imagecolorat($image, $i, $j)); + foreach (array("red", "green", "blue") as $key) { + $color[$key] = $color[$key] + round((255 - $color[$key]) * $color["alpha"] / 127); + } + $data .= chr($color["blue"]) . chr($color["green"]) . chr($color["red"]); + } + if (3*$width % 4) { + $data .= str_repeat("\x00", 4 - 3*$width % 4); + } + } + + return array($width, $height, strlen($data), $data); + } + + /** + * Convert a 24 bit bitmap into the modified internal format used by Windows. + * This is described in BITMAPCOREHEADER and BITMAPCOREINFO structures in the + * MSDN library. + * + * @access private + * @param string $bitmap The bitmap to process + * @return array Array with data and properties of the bitmap + */ + public function processBitmap($bitmap) + { + // Open file. + $bmp_fd = @fopen($bitmap, "rb"); + if (!$bmp_fd) { + throw new PHPExcel_Writer_Exception("Couldn't import $bitmap"); + } + + // Slurp the file into a string. + $data = fread($bmp_fd, filesize($bitmap)); + + // Check that the file is big enough to be a bitmap. + if (strlen($data) <= 0x36) { + throw new PHPExcel_Writer_Exception("$bitmap doesn't contain enough data.\n"); + } + + // The first 2 bytes are used to identify the bitmap. + $identity = unpack("A2ident", $data); + if ($identity['ident'] != "BM") { + throw new PHPExcel_Writer_Exception("$bitmap doesn't appear to be a valid bitmap image.\n"); + } + + // Remove bitmap data: ID. + $data = substr($data, 2); + + // Read and remove the bitmap size. This is more reliable than reading + // the data size at offset 0x22. + // + $size_array = unpack("Vsa", substr($data, 0, 4)); + $size = $size_array['sa']; + $data = substr($data, 4); + $size -= 0x36; // Subtract size of bitmap header. + $size += 0x0C; // Add size of BIFF header. + + // Remove bitmap data: reserved, offset, header length. + $data = substr($data, 12); + + // Read and remove the bitmap width and height. Verify the sizes. + $width_and_height = unpack("V2", substr($data, 0, 8)); + $width = $width_and_height[1]; + $height = $width_and_height[2]; + $data = substr($data, 8); + if ($width > 0xFFFF) { + throw new PHPExcel_Writer_Exception("$bitmap: largest image width supported is 65k.\n"); + } + if ($height > 0xFFFF) { + throw new PHPExcel_Writer_Exception("$bitmap: largest image height supported is 65k.\n"); + } + + // Read and remove the bitmap planes and bpp data. Verify them. + $planes_and_bitcount = unpack("v2", substr($data, 0, 4)); + $data = substr($data, 4); + if ($planes_and_bitcount[2] != 24) { // Bitcount + throw new PHPExcel_Writer_Exception("$bitmap isn't a 24bit true color bitmap.\n"); + } + if ($planes_and_bitcount[1] != 1) { + throw new PHPExcel_Writer_Exception("$bitmap: only 1 plane supported in bitmap image.\n"); + } + + // Read and remove the bitmap compression. Verify compression. + $compression = unpack("Vcomp", substr($data, 0, 4)); + $data = substr($data, 4); + + //$compression = 0; + if ($compression['comp'] != 0) { + throw new PHPExcel_Writer_Exception("$bitmap: compression not supported in bitmap image.\n"); + } + + // Remove bitmap data: data size, hres, vres, colours, imp. colours. + $data = substr($data, 20); + + // Add the BITMAPCOREHEADER data + $header = pack("Vvvvv", 0x000c, $width, $height, 0x01, 0x18); + $data = $header . $data; + + return (array($width, $height, $size, $data)); + } + + /** + * Store the window zoom factor. This should be a reduced fraction but for + * simplicity we will store all fractions with a numerator of 100. + */ + private function writeZoom() + { + // If scale is 100 we don't need to write a record + if ($this->phpSheet->getSheetView()->getZoomScale() == 100) { + return; + } + + $record = 0x00A0; // Record identifier + $length = 0x0004; // Bytes to follow + + $header = pack("vv", $record, $length); + $data = pack("vv", $this->phpSheet->getSheetView()->getZoomScale(), 100); + $this->append($header . $data); + } + + /** + * Get Escher object + * + * @return PHPExcel_Shared_Escher + */ + public function getEscher() + { + return $this->escher; + } + + /** + * Set Escher object + * + * @param PHPExcel_Shared_Escher $pValue + */ + public function setEscher(PHPExcel_Shared_Escher $pValue = null) + { + $this->escher = $pValue; + } + + /** + * Write MSODRAWING record + */ + private function writeMsoDrawing() + { + // write the Escher stream if necessary + if (isset($this->escher)) { + $writer = new PHPExcel_Writer_Excel5_Escher($this->escher); + $data = $writer->close(); + $spOffsets = $writer->getSpOffsets(); + $spTypes = $writer->getSpTypes(); + // write the neccesary MSODRAWING, OBJ records + + // split the Escher stream + $spOffsets[0] = 0; + $nm = count($spOffsets) - 1; // number of shapes excluding first shape + for ($i = 1; $i <= $nm; ++$i) { + // MSODRAWING record + $record = 0x00EC; // Record identifier + + // chunk of Escher stream for one shape + $dataChunk = substr($data, $spOffsets[$i -1], $spOffsets[$i] - $spOffsets[$i - 1]); + + $length = strlen($dataChunk); + $header = pack("vv", $record, $length); + + $this->append($header . $dataChunk); + + // OBJ record + $record = 0x005D; // record identifier + $objData = ''; + + // ftCmo + if ($spTypes[$i] == 0x00C9) { + // Add ftCmo (common object data) subobject + $objData .= + pack( + 'vvvvvVVV', + 0x0015, // 0x0015 = ftCmo + 0x0012, // length of ftCmo data + 0x0014, // object type, 0x0014 = filter + $i, // object id number, Excel seems to use 1-based index, local for the sheet + 0x2101, // option flags, 0x2001 is what OpenOffice.org uses + 0, // reserved + 0, // reserved + 0 // reserved + ); + + // Add ftSbs Scroll bar subobject + $objData .= pack('vv', 0x00C, 0x0014); + $objData .= pack('H*', '0000000000000000640001000A00000010000100'); + // Add ftLbsData (List box data) subobject + $objData .= pack('vv', 0x0013, 0x1FEE); + $objData .= pack('H*', '00000000010001030000020008005700'); + } else { + // Add ftCmo (common object data) subobject + $objData .= + pack( + 'vvvvvVVV', + 0x0015, // 0x0015 = ftCmo + 0x0012, // length of ftCmo data + 0x0008, // object type, 0x0008 = picture + $i, // object id number, Excel seems to use 1-based index, local for the sheet + 0x6011, // option flags, 0x6011 is what OpenOffice.org uses + 0, // reserved + 0, // reserved + 0 // reserved + ); + } + + // ftEnd + $objData .= + pack( + 'vv', + 0x0000, // 0x0000 = ftEnd + 0x0000 // length of ftEnd data + ); + + $length = strlen($objData); + $header = pack('vv', $record, $length); + $this->append($header . $objData); + } + } + } + + /** + * Store the DATAVALIDATIONS and DATAVALIDATION records. + */ + private function writeDataValidity() + { + // Datavalidation collection + $dataValidationCollection = $this->phpSheet->getDataValidationCollection(); + + // Write data validations? + if (!empty($dataValidationCollection)) { + // DATAVALIDATIONS record + $record = 0x01B2; // Record identifier + $length = 0x0012; // Bytes to follow + + $grbit = 0x0000; // Prompt box at cell, no cached validity data at DV records + $horPos = 0x00000000; // Horizontal position of prompt box, if fixed position + $verPos = 0x00000000; // Vertical position of prompt box, if fixed position + $objId = 0xFFFFFFFF; // Object identifier of drop down arrow object, or -1 if not visible + + $header = pack('vv', $record, $length); + $data = pack('vVVVV', $grbit, $horPos, $verPos, $objId, count($dataValidationCollection)); + $this->append($header.$data); + + // DATAVALIDATION records + $record = 0x01BE; // Record identifier + + foreach ($dataValidationCollection as $cellCoordinate => $dataValidation) { + // initialize record data + $data = ''; + + // options + $options = 0x00000000; + + // data type + $type = $dataValidation->getType(); + switch ($type) { + case PHPExcel_Cell_DataValidation::TYPE_NONE: + $type = 0x00; + break; + case PHPExcel_Cell_DataValidation::TYPE_WHOLE: + $type = 0x01; + break; + case PHPExcel_Cell_DataValidation::TYPE_DECIMAL: + $type = 0x02; + break; + case PHPExcel_Cell_DataValidation::TYPE_LIST: + $type = 0x03; + break; + case PHPExcel_Cell_DataValidation::TYPE_DATE: + $type = 0x04; + break; + case PHPExcel_Cell_DataValidation::TYPE_TIME: + $type = 0x05; + break; + case PHPExcel_Cell_DataValidation::TYPE_TEXTLENGTH: + $type = 0x06; + break; + case PHPExcel_Cell_DataValidation::TYPE_CUSTOM: + $type = 0x07; + break; + } + $options |= $type << 0; + + // error style + $errorStyle = $dataValidation->getType(); + switch ($errorStyle) { + case PHPExcel_Cell_DataValidation::STYLE_STOP: + $errorStyle = 0x00; + break; + case PHPExcel_Cell_DataValidation::STYLE_WARNING: + $errorStyle = 0x01; + break; + case PHPExcel_Cell_DataValidation::STYLE_INFORMATION: + $errorStyle = 0x02; + break; + } + $options |= $errorStyle << 4; + + // explicit formula? + if ($type == 0x03 && preg_match('/^\".*\"$/', $dataValidation->getFormula1())) { + $options |= 0x01 << 7; + } + + // empty cells allowed + $options |= $dataValidation->getAllowBlank() << 8; + + // show drop down + $options |= (!$dataValidation->getShowDropDown()) << 9; + + // show input message + $options |= $dataValidation->getShowInputMessage() << 18; + + // show error message + $options |= $dataValidation->getShowErrorMessage() << 19; + + // condition operator + $operator = $dataValidation->getOperator(); + switch ($operator) { + case PHPExcel_Cell_DataValidation::OPERATOR_BETWEEN: + $operator = 0x00; + break; + case PHPExcel_Cell_DataValidation::OPERATOR_NOTBETWEEN: + $operator = 0x01; + break; + case PHPExcel_Cell_DataValidation::OPERATOR_EQUAL: + $operator = 0x02; + break; + case PHPExcel_Cell_DataValidation::OPERATOR_NOTEQUAL: + $operator = 0x03; + break; + case PHPExcel_Cell_DataValidation::OPERATOR_GREATERTHAN: + $operator = 0x04; + break; + case PHPExcel_Cell_DataValidation::OPERATOR_LESSTHAN: + $operator = 0x05; + break; + case PHPExcel_Cell_DataValidation::OPERATOR_GREATERTHANOREQUAL: + $operator = 0x06; + break; + case PHPExcel_Cell_DataValidation::OPERATOR_LESSTHANOREQUAL: + $operator = 0x07; + break; + } + $options |= $operator << 20; + + $data = pack('V', $options); + + // prompt title + $promptTitle = $dataValidation->getPromptTitle() !== '' ? + $dataValidation->getPromptTitle() : chr(0); + $data .= PHPExcel_Shared_String::UTF8toBIFF8UnicodeLong($promptTitle); + + // error title + $errorTitle = $dataValidation->getErrorTitle() !== '' ? + $dataValidation->getErrorTitle() : chr(0); + $data .= PHPExcel_Shared_String::UTF8toBIFF8UnicodeLong($errorTitle); + + // prompt text + $prompt = $dataValidation->getPrompt() !== '' ? + $dataValidation->getPrompt() : chr(0); + $data .= PHPExcel_Shared_String::UTF8toBIFF8UnicodeLong($prompt); + + // error text + $error = $dataValidation->getError() !== '' ? + $dataValidation->getError() : chr(0); + $data .= PHPExcel_Shared_String::UTF8toBIFF8UnicodeLong($error); + + // formula 1 + try { + $formula1 = $dataValidation->getFormula1(); + if ($type == 0x03) { // list type + $formula1 = str_replace(',', chr(0), $formula1); + } + $this->parser->parse($formula1); + $formula1 = $this->parser->toReversePolish(); + $sz1 = strlen($formula1); + } catch (PHPExcel_Exception $e) { + $sz1 = 0; + $formula1 = ''; + } + $data .= pack('vv', $sz1, 0x0000); + $data .= $formula1; + + // formula 2 + try { + $formula2 = $dataValidation->getFormula2(); + if ($formula2 === '') { + throw new PHPExcel_Writer_Exception('No formula2'); + } + $this->parser->parse($formula2); + $formula2 = $this->parser->toReversePolish(); + $sz2 = strlen($formula2); + } catch (PHPExcel_Exception $e) { + $sz2 = 0; + $formula2 = ''; + } + $data .= pack('vv', $sz2, 0x0000); + $data .= $formula2; + + // cell range address list + $data .= pack('v', 0x0001); + $data .= $this->writeBIFF8CellRangeAddressFixed($cellCoordinate); + + $length = strlen($data); + $header = pack("vv", $record, $length); + + $this->append($header . $data); + } + } + } + + /** + * Map Error code + * + * @param string $errorCode + * @return int + */ + private static function mapErrorCode($errorCode) + { + switch ($errorCode) { + case '#NULL!': + return 0x00; + case '#DIV/0!': + return 0x07; + case '#VALUE!': + return 0x0F; + case '#REF!': + return 0x17; + case '#NAME?': + return 0x1D; + case '#NUM!': + return 0x24; + case '#N/A': + return 0x2A; + } + + return 0; + } + + /** + * Write PLV Record + */ + private function writePageLayoutView() + { + $record = 0x088B; // Record identifier + $length = 0x0010; // Bytes to follow + + $rt = 0x088B; // 2 + $grbitFrt = 0x0000; // 2 + $reserved = 0x0000000000000000; // 8 + $wScalvePLV = $this->phpSheet->getSheetView()->getZoomScale(); // 2 + + // The options flags that comprise $grbit + if ($this->phpSheet->getSheetView()->getView() == PHPExcel_Worksheet_SheetView::SHEETVIEW_PAGE_LAYOUT) { + $fPageLayoutView = 1; + } else { + $fPageLayoutView = 0; + } + $fRulerVisible = 0; + $fWhitespaceHidden = 0; + + $grbit = $fPageLayoutView; // 2 + $grbit |= $fRulerVisible << 1; + $grbit |= $fWhitespaceHidden << 3; + + $header = pack("vv", $record, $length); + $data = pack("vvVVvv", $rt, $grbitFrt, 0x00000000, 0x00000000, $wScalvePLV, $grbit); + $this->append($header . $data); + } + + /** + * Write CFRule Record + * @param PHPExcel_Style_Conditional $conditional + */ + private function writeCFRule(PHPExcel_Style_Conditional $conditional) + { + $record = 0x01B1; // Record identifier + + // $type : Type of the CF + // $operatorType : Comparison operator + if ($conditional->getConditionType() == PHPExcel_Style_Conditional::CONDITION_EXPRESSION) { + $type = 0x02; + $operatorType = 0x00; + } elseif ($conditional->getConditionType() == PHPExcel_Style_Conditional::CONDITION_CELLIS) { + $type = 0x01; + + switch ($conditional->getOperatorType()) { + case PHPExcel_Style_Conditional::OPERATOR_NONE: + $operatorType = 0x00; + break; + case PHPExcel_Style_Conditional::OPERATOR_EQUAL: + $operatorType = 0x03; + break; + case PHPExcel_Style_Conditional::OPERATOR_GREATERTHAN: + $operatorType = 0x05; + break; + case PHPExcel_Style_Conditional::OPERATOR_GREATERTHANOREQUAL: + $operatorType = 0x07; + break; + case PHPExcel_Style_Conditional::OPERATOR_LESSTHAN: + $operatorType = 0x06; + break; + case PHPExcel_Style_Conditional::OPERATOR_LESSTHANOREQUAL: + $operatorType = 0x08; + break; + case PHPExcel_Style_Conditional::OPERATOR_NOTEQUAL: + $operatorType = 0x04; + break; + case PHPExcel_Style_Conditional::OPERATOR_BETWEEN: + $operatorType = 0x01; + break; + // not OPERATOR_NOTBETWEEN 0x02 + } + } + + // $szValue1 : size of the formula data for first value or formula + // $szValue2 : size of the formula data for second value or formula + $arrConditions = $conditional->getConditions(); + $numConditions = sizeof($arrConditions); + if ($numConditions == 1) { + $szValue1 = ($arrConditions[0] <= 65535 ? 3 : 0x0000); + $szValue2 = 0x0000; + $operand1 = pack('Cv', 0x1E, $arrConditions[0]); + $operand2 = null; + } elseif ($numConditions == 2 && ($conditional->getOperatorType() == PHPExcel_Style_Conditional::OPERATOR_BETWEEN)) { + $szValue1 = ($arrConditions[0] <= 65535 ? 3 : 0x0000); + $szValue2 = ($arrConditions[1] <= 65535 ? 3 : 0x0000); + $operand1 = pack('Cv', 0x1E, $arrConditions[0]); + $operand2 = pack('Cv', 0x1E, $arrConditions[1]); + } else { + $szValue1 = 0x0000; + $szValue2 = 0x0000; + $operand1 = null; + $operand2 = null; + } + + // $flags : Option flags + // Alignment + $bAlignHz = ($conditional->getStyle()->getAlignment()->getHorizontal() == null ? 1 : 0); + $bAlignVt = ($conditional->getStyle()->getAlignment()->getVertical() == null ? 1 : 0); + $bAlignWrapTx = ($conditional->getStyle()->getAlignment()->getWrapText() == false ? 1 : 0); + $bTxRotation = ($conditional->getStyle()->getAlignment()->getTextRotation() == null ? 1 : 0); + $bIndent = ($conditional->getStyle()->getAlignment()->getIndent() == 0 ? 1 : 0); + $bShrinkToFit = ($conditional->getStyle()->getAlignment()->getShrinkToFit() == false ? 1 : 0); + if ($bAlignHz == 0 || $bAlignVt == 0 || $bAlignWrapTx == 0 || $bTxRotation == 0 || $bIndent == 0 || $bShrinkToFit == 0) { + $bFormatAlign = 1; + } else { + $bFormatAlign = 0; + } + // Protection + $bProtLocked = ($conditional->getStyle()->getProtection()->getLocked() == null ? 1 : 0); + $bProtHidden = ($conditional->getStyle()->getProtection()->getHidden() == null ? 1 : 0); + if ($bProtLocked == 0 || $bProtHidden == 0) { + $bFormatProt = 1; + } else { + $bFormatProt = 0; + } + // Border + $bBorderLeft = ($conditional->getStyle()->getBorders()->getLeft()->getColor()->getARGB() == PHPExcel_Style_Color::COLOR_BLACK + && $conditional->getStyle()->getBorders()->getLeft()->getBorderStyle() == PHPExcel_Style_Border::BORDER_NONE ? 1 : 0); + $bBorderRight = ($conditional->getStyle()->getBorders()->getRight()->getColor()->getARGB() == PHPExcel_Style_Color::COLOR_BLACK + && $conditional->getStyle()->getBorders()->getRight()->getBorderStyle() == PHPExcel_Style_Border::BORDER_NONE ? 1 : 0); + $bBorderTop = ($conditional->getStyle()->getBorders()->getTop()->getColor()->getARGB() == PHPExcel_Style_Color::COLOR_BLACK + && $conditional->getStyle()->getBorders()->getTop()->getBorderStyle() == PHPExcel_Style_Border::BORDER_NONE ? 1 : 0); + $bBorderBottom = ($conditional->getStyle()->getBorders()->getBottom()->getColor()->getARGB() == PHPExcel_Style_Color::COLOR_BLACK + && $conditional->getStyle()->getBorders()->getBottom()->getBorderStyle() == PHPExcel_Style_Border::BORDER_NONE ? 1 : 0); + if ($bBorderLeft == 0 || $bBorderRight == 0 || $bBorderTop == 0 || $bBorderBottom == 0) { + $bFormatBorder = 1; + } else { + $bFormatBorder = 0; + } + // Pattern + $bFillStyle = ($conditional->getStyle()->getFill()->getFillType() == null ? 0 : 1); + $bFillColor = ($conditional->getStyle()->getFill()->getStartColor()->getARGB() == null ? 0 : 1); + $bFillColorBg = ($conditional->getStyle()->getFill()->getEndColor()->getARGB() == null ? 0 : 1); + if ($bFillStyle == 0 || $bFillColor == 0 || $bFillColorBg == 0) { + $bFormatFill = 1; + } else { + $bFormatFill = 0; + } + // Font + if ($conditional->getStyle()->getFont()->getName() != null + || $conditional->getStyle()->getFont()->getSize() != null + || $conditional->getStyle()->getFont()->getBold() != null + || $conditional->getStyle()->getFont()->getItalic() != null + || $conditional->getStyle()->getFont()->getSuperScript() != null + || $conditional->getStyle()->getFont()->getSubScript() != null + || $conditional->getStyle()->getFont()->getUnderline() != null + || $conditional->getStyle()->getFont()->getStrikethrough() != null + || $conditional->getStyle()->getFont()->getColor()->getARGB() != null) { + $bFormatFont = 1; + } else { + $bFormatFont = 0; + } + // Alignment + $flags = 0; + $flags |= (1 == $bAlignHz ? 0x00000001 : 0); + $flags |= (1 == $bAlignVt ? 0x00000002 : 0); + $flags |= (1 == $bAlignWrapTx ? 0x00000004 : 0); + $flags |= (1 == $bTxRotation ? 0x00000008 : 0); + // Justify last line flag + $flags |= (1 == 1 ? 0x00000010 : 0); + $flags |= (1 == $bIndent ? 0x00000020 : 0); + $flags |= (1 == $bShrinkToFit ? 0x00000040 : 0); + // Default + $flags |= (1 == 1 ? 0x00000080 : 0); + // Protection + $flags |= (1 == $bProtLocked ? 0x00000100 : 0); + $flags |= (1 == $bProtHidden ? 0x00000200 : 0); + // Border + $flags |= (1 == $bBorderLeft ? 0x00000400 : 0); + $flags |= (1 == $bBorderRight ? 0x00000800 : 0); + $flags |= (1 == $bBorderTop ? 0x00001000 : 0); + $flags |= (1 == $bBorderBottom ? 0x00002000 : 0); + $flags |= (1 == 1 ? 0x00004000 : 0); // Top left to Bottom right border + $flags |= (1 == 1 ? 0x00008000 : 0); // Bottom left to Top right border + // Pattern + $flags |= (1 == $bFillStyle ? 0x00010000 : 0); + $flags |= (1 == $bFillColor ? 0x00020000 : 0); + $flags |= (1 == $bFillColorBg ? 0x00040000 : 0); + $flags |= (1 == 1 ? 0x00380000 : 0); + // Font + $flags |= (1 == $bFormatFont ? 0x04000000 : 0); + // Alignment: + $flags |= (1 == $bFormatAlign ? 0x08000000 : 0); + // Border + $flags |= (1 == $bFormatBorder ? 0x10000000 : 0); + // Pattern + $flags |= (1 == $bFormatFill ? 0x20000000 : 0); + // Protection + $flags |= (1 == $bFormatProt ? 0x40000000 : 0); + // Text direction + $flags |= (1 == 0 ? 0x80000000 : 0); + + // Data Blocks + if ($bFormatFont == 1) { + // Font Name + if ($conditional->getStyle()->getFont()->getName() == null) { + $dataBlockFont = pack('VVVVVVVV', 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000); + $dataBlockFont .= pack('VVVVVVVV', 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000); + } else { + $dataBlockFont = PHPExcel_Shared_String::UTF8toBIFF8UnicodeLong($conditional->getStyle()->getFont()->getName()); + } + // Font Size + if ($conditional->getStyle()->getFont()->getSize() == null) { + $dataBlockFont .= pack('V', 20 * 11); + } else { + $dataBlockFont .= pack('V', 20 * $conditional->getStyle()->getFont()->getSize()); + } + // Font Options + $dataBlockFont .= pack('V', 0); + // Font weight + if ($conditional->getStyle()->getFont()->getBold() == true) { + $dataBlockFont .= pack('v', 0x02BC); + } else { + $dataBlockFont .= pack('v', 0x0190); + } + // Escapement type + if ($conditional->getStyle()->getFont()->getSubScript() == true) { + $dataBlockFont .= pack('v', 0x02); + $fontEscapement = 0; + } elseif ($conditional->getStyle()->getFont()->getSuperScript() == true) { + $dataBlockFont .= pack('v', 0x01); + $fontEscapement = 0; + } else { + $dataBlockFont .= pack('v', 0x00); + $fontEscapement = 1; + } + // Underline type + switch ($conditional->getStyle()->getFont()->getUnderline()) { + case PHPExcel_Style_Font::UNDERLINE_NONE: + $dataBlockFont .= pack('C', 0x00); + $fontUnderline = 0; + break; + case PHPExcel_Style_Font::UNDERLINE_DOUBLE: + $dataBlockFont .= pack('C', 0x02); + $fontUnderline = 0; + break; + case PHPExcel_Style_Font::UNDERLINE_DOUBLEACCOUNTING: + $dataBlockFont .= pack('C', 0x22); + $fontUnderline = 0; + break; + case PHPExcel_Style_Font::UNDERLINE_SINGLE: + $dataBlockFont .= pack('C', 0x01); + $fontUnderline = 0; + break; + case PHPExcel_Style_Font::UNDERLINE_SINGLEACCOUNTING: + $dataBlockFont .= pack('C', 0x21); + $fontUnderline = 0; + break; + default: $dataBlockFont .= pack('C', 0x00); + $fontUnderline = 1; + break; + } + // Not used (3) + $dataBlockFont .= pack('vC', 0x0000, 0x00); + // Font color index + switch ($conditional->getStyle()->getFont()->getColor()->getRGB()) { + case '000000': + $colorIdx = 0x08; + break; + case 'FFFFFF': + $colorIdx = 0x09; + break; + case 'FF0000': + $colorIdx = 0x0A; + break; + case '00FF00': + $colorIdx = 0x0B; + break; + case '0000FF': + $colorIdx = 0x0C; + break; + case 'FFFF00': + $colorIdx = 0x0D; + break; + case 'FF00FF': + $colorIdx = 0x0E; + break; + case '00FFFF': + $colorIdx = 0x0F; + break; + case '800000': + $colorIdx = 0x10; + break; + case '008000': + $colorIdx = 0x11; + break; + case '000080': + $colorIdx = 0x12; + break; + case '808000': + $colorIdx = 0x13; + break; + case '800080': + $colorIdx = 0x14; + break; + case '008080': + $colorIdx = 0x15; + break; + case 'C0C0C0': + $colorIdx = 0x16; + break; + case '808080': + $colorIdx = 0x17; + break; + case '9999FF': + $colorIdx = 0x18; + break; + case '993366': + $colorIdx = 0x19; + break; + case 'FFFFCC': + $colorIdx = 0x1A; + break; + case 'CCFFFF': + $colorIdx = 0x1B; + break; + case '660066': + $colorIdx = 0x1C; + break; + case 'FF8080': + $colorIdx = 0x1D; + break; + case '0066CC': + $colorIdx = 0x1E; + break; + case 'CCCCFF': + $colorIdx = 0x1F; + break; + case '000080': + $colorIdx = 0x20; + break; + case 'FF00FF': + $colorIdx = 0x21; + break; + case 'FFFF00': + $colorIdx = 0x22; + break; + case '00FFFF': + $colorIdx = 0x23; + break; + case '800080': + $colorIdx = 0x24; + break; + case '800000': + $colorIdx = 0x25; + break; + case '008080': + $colorIdx = 0x26; + break; + case '0000FF': + $colorIdx = 0x27; + break; + case '00CCFF': + $colorIdx = 0x28; + break; + case 'CCFFFF': + $colorIdx = 0x29; + break; + case 'CCFFCC': + $colorIdx = 0x2A; + break; + case 'FFFF99': + $colorIdx = 0x2B; + break; + case '99CCFF': + $colorIdx = 0x2C; + break; + case 'FF99CC': + $colorIdx = 0x2D; + break; + case 'CC99FF': + $colorIdx = 0x2E; + break; + case 'FFCC99': + $colorIdx = 0x2F; + break; + case '3366FF': + $colorIdx = 0x30; + break; + case '33CCCC': + $colorIdx = 0x31; + break; + case '99CC00': + $colorIdx = 0x32; + break; + case 'FFCC00': + $colorIdx = 0x33; + break; + case 'FF9900': + $colorIdx = 0x34; + break; + case 'FF6600': + $colorIdx = 0x35; + break; + case '666699': + $colorIdx = 0x36; + break; + case '969696': + $colorIdx = 0x37; + break; + case '003366': + $colorIdx = 0x38; + break; + case '339966': + $colorIdx = 0x39; + break; + case '003300': + $colorIdx = 0x3A; + break; + case '333300': + $colorIdx = 0x3B; + break; + case '993300': + $colorIdx = 0x3C; + break; + case '993366': + $colorIdx = 0x3D; + break; + case '333399': + $colorIdx = 0x3E; + break; + case '333333': + $colorIdx = 0x3F; + break; + default: + $colorIdx = 0x00; + break; + } + $dataBlockFont .= pack('V', $colorIdx); + // Not used (4) + $dataBlockFont .= pack('V', 0x00000000); + // Options flags for modified font attributes + $optionsFlags = 0; + $optionsFlagsBold = ($conditional->getStyle()->getFont()->getBold() == null ? 1 : 0); + $optionsFlags |= (1 == $optionsFlagsBold ? 0x00000002 : 0); + $optionsFlags |= (1 == 1 ? 0x00000008 : 0); + $optionsFlags |= (1 == 1 ? 0x00000010 : 0); + $optionsFlags |= (1 == 0 ? 0x00000020 : 0); + $optionsFlags |= (1 == 1 ? 0x00000080 : 0); + $dataBlockFont .= pack('V', $optionsFlags); + // Escapement type + $dataBlockFont .= pack('V', $fontEscapement); + // Underline type + $dataBlockFont .= pack('V', $fontUnderline); + // Always + $dataBlockFont .= pack('V', 0x00000000); + // Always + $dataBlockFont .= pack('V', 0x00000000); + // Not used (8) + $dataBlockFont .= pack('VV', 0x00000000, 0x00000000); + // Always + $dataBlockFont .= pack('v', 0x0001); + } + if ($bFormatAlign == 1) { + $blockAlign = 0; + // Alignment and text break + switch ($conditional->getStyle()->getAlignment()->getHorizontal()) { + case PHPExcel_Style_Alignment::HORIZONTAL_GENERAL: + $blockAlign = 0; + break; + case PHPExcel_Style_Alignment::HORIZONTAL_LEFT: + $blockAlign = 1; + break; + case PHPExcel_Style_Alignment::HORIZONTAL_RIGHT: + $blockAlign = 3; + break; + case PHPExcel_Style_Alignment::HORIZONTAL_CENTER: + $blockAlign = 2; + break; + case PHPExcel_Style_Alignment::HORIZONTAL_CENTER_CONTINUOUS: + $blockAlign = 6; + break; + case PHPExcel_Style_Alignment::HORIZONTAL_JUSTIFY: + $blockAlign = 5; + break; + } + if ($conditional->getStyle()->getAlignment()->getWrapText() == true) { + $blockAlign |= 1 << 3; + } else { + $blockAlign |= 0 << 3; + } + switch ($conditional->getStyle()->getAlignment()->getVertical()) { + case PHPExcel_Style_Alignment::VERTICAL_BOTTOM: + $blockAlign = 2 << 4; + break; + case PHPExcel_Style_Alignment::VERTICAL_TOP: + $blockAlign = 0 << 4; + break; + case PHPExcel_Style_Alignment::VERTICAL_CENTER: + $blockAlign = 1 << 4; + break; + case PHPExcel_Style_Alignment::VERTICAL_JUSTIFY: + $blockAlign = 3 << 4; + break; + } + $blockAlign |= 0 << 7; + + // Text rotation angle + $blockRotation = $conditional->getStyle()->getAlignment()->getTextRotation(); + + // Indentation + $blockIndent = $conditional->getStyle()->getAlignment()->getIndent(); + if ($conditional->getStyle()->getAlignment()->getShrinkToFit() == true) { + $blockIndent |= 1 << 4; + } else { + $blockIndent |= 0 << 4; + } + $blockIndent |= 0 << 6; + + // Relative indentation + $blockIndentRelative = 255; + + $dataBlockAlign = pack('CCvvv', $blockAlign, $blockRotation, $blockIndent, $blockIndentRelative, 0x0000); + } + if ($bFormatBorder == 1) { + $blockLineStyle = 0; + switch ($conditional->getStyle()->getBorders()->getLeft()->getBorderStyle()) { + case PHPExcel_Style_Border::BORDER_NONE: + $blockLineStyle |= 0x00; + break; + case PHPExcel_Style_Border::BORDER_THIN: + $blockLineStyle |= 0x01; + break; + case PHPExcel_Style_Border::BORDER_MEDIUM: + $blockLineStyle |= 0x02; + break; + case PHPExcel_Style_Border::BORDER_DASHED: + $blockLineStyle |= 0x03; + break; + case PHPExcel_Style_Border::BORDER_DOTTED: + $blockLineStyle |= 0x04; + break; + case PHPExcel_Style_Border::BORDER_THICK: + $blockLineStyle |= 0x05; + break; + case PHPExcel_Style_Border::BORDER_DOUBLE: + $blockLineStyle |= 0x06; + break; + case PHPExcel_Style_Border::BORDER_HAIR: + $blockLineStyle |= 0x07; + break; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHED: + $blockLineStyle |= 0x08; + break; + case PHPExcel_Style_Border::BORDER_DASHDOT: + $blockLineStyle |= 0x09; + break; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHDOT: + $blockLineStyle |= 0x0A; + break; + case PHPExcel_Style_Border::BORDER_DASHDOTDOT: + $blockLineStyle |= 0x0B; + break; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHDOTDOT: + $blockLineStyle |= 0x0C; + break; + case PHPExcel_Style_Border::BORDER_SLANTDASHDOT: + $blockLineStyle |= 0x0D; + break; + } + switch ($conditional->getStyle()->getBorders()->getRight()->getBorderStyle()) { + case PHPExcel_Style_Border::BORDER_NONE: + $blockLineStyle |= 0x00 << 4; + break; + case PHPExcel_Style_Border::BORDER_THIN: + $blockLineStyle |= 0x01 << 4; + break; + case PHPExcel_Style_Border::BORDER_MEDIUM: + $blockLineStyle |= 0x02 << 4; + break; + case PHPExcel_Style_Border::BORDER_DASHED: + $blockLineStyle |= 0x03 << 4; + break; + case PHPExcel_Style_Border::BORDER_DOTTED: + $blockLineStyle |= 0x04 << 4; + break; + case PHPExcel_Style_Border::BORDER_THICK: + $blockLineStyle |= 0x05 << 4; + break; + case PHPExcel_Style_Border::BORDER_DOUBLE: + $blockLineStyle |= 0x06 << 4; + break; + case PHPExcel_Style_Border::BORDER_HAIR: + $blockLineStyle |= 0x07 << 4; + break; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHED: + $blockLineStyle |= 0x08 << 4; + break; + case PHPExcel_Style_Border::BORDER_DASHDOT: + $blockLineStyle |= 0x09 << 4; + break; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHDOT: + $blockLineStyle |= 0x0A << 4; + break; + case PHPExcel_Style_Border::BORDER_DASHDOTDOT: + $blockLineStyle |= 0x0B << 4; + break; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHDOTDOT: + $blockLineStyle |= 0x0C << 4; + break; + case PHPExcel_Style_Border::BORDER_SLANTDASHDOT: + $blockLineStyle |= 0x0D << 4; + break; + } + switch ($conditional->getStyle()->getBorders()->getTop()->getBorderStyle()) { + case PHPExcel_Style_Border::BORDER_NONE: + $blockLineStyle |= 0x00 << 8; + break; + case PHPExcel_Style_Border::BORDER_THIN: + $blockLineStyle |= 0x01 << 8; + break; + case PHPExcel_Style_Border::BORDER_MEDIUM: + $blockLineStyle |= 0x02 << 8; + break; + case PHPExcel_Style_Border::BORDER_DASHED: + $blockLineStyle |= 0x03 << 8; + break; + case PHPExcel_Style_Border::BORDER_DOTTED: + $blockLineStyle |= 0x04 << 8; + break; + case PHPExcel_Style_Border::BORDER_THICK: + $blockLineStyle |= 0x05 << 8; + break; + case PHPExcel_Style_Border::BORDER_DOUBLE: + $blockLineStyle |= 0x06 << 8; + break; + case PHPExcel_Style_Border::BORDER_HAIR: + $blockLineStyle |= 0x07 << 8; + break; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHED: + $blockLineStyle |= 0x08 << 8; + break; + case PHPExcel_Style_Border::BORDER_DASHDOT: + $blockLineStyle |= 0x09 << 8; + break; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHDOT: + $blockLineStyle |= 0x0A << 8; + break; + case PHPExcel_Style_Border::BORDER_DASHDOTDOT: + $blockLineStyle |= 0x0B << 8; + break; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHDOTDOT: + $blockLineStyle |= 0x0C << 8; + break; + case PHPExcel_Style_Border::BORDER_SLANTDASHDOT: + $blockLineStyle |= 0x0D << 8; + break; + } + switch ($conditional->getStyle()->getBorders()->getBottom()->getBorderStyle()) { + case PHPExcel_Style_Border::BORDER_NONE: + $blockLineStyle |= 0x00 << 12; + break; + case PHPExcel_Style_Border::BORDER_THIN: + $blockLineStyle |= 0x01 << 12; + break; + case PHPExcel_Style_Border::BORDER_MEDIUM: + $blockLineStyle |= 0x02 << 12; + break; + case PHPExcel_Style_Border::BORDER_DASHED: + $blockLineStyle |= 0x03 << 12; + break; + case PHPExcel_Style_Border::BORDER_DOTTED: + $blockLineStyle |= 0x04 << 12; + break; + case PHPExcel_Style_Border::BORDER_THICK: + $blockLineStyle |= 0x05 << 12; + break; + case PHPExcel_Style_Border::BORDER_DOUBLE: + $blockLineStyle |= 0x06 << 12; + break; + case PHPExcel_Style_Border::BORDER_HAIR: + $blockLineStyle |= 0x07 << 12; + break; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHED: + $blockLineStyle |= 0x08 << 12; + break; + case PHPExcel_Style_Border::BORDER_DASHDOT: + $blockLineStyle |= 0x09 << 12; + break; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHDOT: + $blockLineStyle |= 0x0A << 12; + break; + case PHPExcel_Style_Border::BORDER_DASHDOTDOT: + $blockLineStyle |= 0x0B << 12; + break; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHDOTDOT: + $blockLineStyle |= 0x0C << 12; + break; + case PHPExcel_Style_Border::BORDER_SLANTDASHDOT: + $blockLineStyle |= 0x0D << 12; + break; + } + //@todo writeCFRule() => $blockLineStyle => Index Color for left line + //@todo writeCFRule() => $blockLineStyle => Index Color for right line + //@todo writeCFRule() => $blockLineStyle => Top-left to bottom-right on/off + //@todo writeCFRule() => $blockLineStyle => Bottom-left to top-right on/off + $blockColor = 0; + //@todo writeCFRule() => $blockColor => Index Color for top line + //@todo writeCFRule() => $blockColor => Index Color for bottom line + //@todo writeCFRule() => $blockColor => Index Color for diagonal line + switch ($conditional->getStyle()->getBorders()->getDiagonal()->getBorderStyle()) { + case PHPExcel_Style_Border::BORDER_NONE: + $blockColor |= 0x00 << 21; + break; + case PHPExcel_Style_Border::BORDER_THIN: + $blockColor |= 0x01 << 21; + break; + case PHPExcel_Style_Border::BORDER_MEDIUM: + $blockColor |= 0x02 << 21; + break; + case PHPExcel_Style_Border::BORDER_DASHED: + $blockColor |= 0x03 << 21; + break; + case PHPExcel_Style_Border::BORDER_DOTTED: + $blockColor |= 0x04 << 21; + break; + case PHPExcel_Style_Border::BORDER_THICK: + $blockColor |= 0x05 << 21; + break; + case PHPExcel_Style_Border::BORDER_DOUBLE: + $blockColor |= 0x06 << 21; + break; + case PHPExcel_Style_Border::BORDER_HAIR: + $blockColor |= 0x07 << 21; + break; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHED: + $blockColor |= 0x08 << 21; + break; + case PHPExcel_Style_Border::BORDER_DASHDOT: + $blockColor |= 0x09 << 21; + break; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHDOT: + $blockColor |= 0x0A << 21; + break; + case PHPExcel_Style_Border::BORDER_DASHDOTDOT: + $blockColor |= 0x0B << 21; + break; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHDOTDOT: + $blockColor |= 0x0C << 21; + break; + case PHPExcel_Style_Border::BORDER_SLANTDASHDOT: + $blockColor |= 0x0D << 21; + break; + } + $dataBlockBorder = pack('vv', $blockLineStyle, $blockColor); + } + if ($bFormatFill == 1) { + // Fill Patern Style + $blockFillPatternStyle = 0; + switch ($conditional->getStyle()->getFill()->getFillType()) { + case PHPExcel_Style_Fill::FILL_NONE: + $blockFillPatternStyle = 0x00; + break; + case PHPExcel_Style_Fill::FILL_SOLID: + $blockFillPatternStyle = 0x01; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_MEDIUMGRAY: + $blockFillPatternStyle = 0x02; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_DARKGRAY: + $blockFillPatternStyle = 0x03; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_LIGHTGRAY: + $blockFillPatternStyle = 0x04; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_DARKHORIZONTAL: + $blockFillPatternStyle = 0x05; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_DARKVERTICAL: + $blockFillPatternStyle = 0x06; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_DARKDOWN: + $blockFillPatternStyle = 0x07; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_DARKUP: + $blockFillPatternStyle = 0x08; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_DARKGRID: + $blockFillPatternStyle = 0x09; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_DARKTRELLIS: + $blockFillPatternStyle = 0x0A; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_LIGHTHORIZONTAL: + $blockFillPatternStyle = 0x0B; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_LIGHTVERTICAL: + $blockFillPatternStyle = 0x0C; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_LIGHTDOWN: + $blockFillPatternStyle = 0x0D; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_LIGHTUP: + $blockFillPatternStyle = 0x0E; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_LIGHTGRID: + $blockFillPatternStyle = 0x0F; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_LIGHTTRELLIS: + $blockFillPatternStyle = 0x10; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_GRAY125: + $blockFillPatternStyle = 0x11; + break; + case PHPExcel_Style_Fill::FILL_PATTERN_GRAY0625: + $blockFillPatternStyle = 0x12; + break; + case PHPExcel_Style_Fill::FILL_GRADIENT_LINEAR: + $blockFillPatternStyle = 0x00; + break; // does not exist in BIFF8 + case PHPExcel_Style_Fill::FILL_GRADIENT_PATH: + $blockFillPatternStyle = 0x00; + break; // does not exist in BIFF8 + default: + $blockFillPatternStyle = 0x00; + break; + } + // Color + switch ($conditional->getStyle()->getFill()->getStartColor()->getRGB()) { + case '000000': + $colorIdxBg = 0x08; + break; + case 'FFFFFF': + $colorIdxBg = 0x09; + break; + case 'FF0000': + $colorIdxBg = 0x0A; + break; + case '00FF00': + $colorIdxBg = 0x0B; + break; + case '0000FF': + $colorIdxBg = 0x0C; + break; + case 'FFFF00': + $colorIdxBg = 0x0D; + break; + case 'FF00FF': + $colorIdxBg = 0x0E; + break; + case '00FFFF': + $colorIdxBg = 0x0F; + break; + case '800000': + $colorIdxBg = 0x10; + break; + case '008000': + $colorIdxBg = 0x11; + break; + case '000080': + $colorIdxBg = 0x12; + break; + case '808000': + $colorIdxBg = 0x13; + break; + case '800080': + $colorIdxBg = 0x14; + break; + case '008080': + $colorIdxBg = 0x15; + break; + case 'C0C0C0': + $colorIdxBg = 0x16; + break; + case '808080': + $colorIdxBg = 0x17; + break; + case '9999FF': + $colorIdxBg = 0x18; + break; + case '993366': + $colorIdxBg = 0x19; + break; + case 'FFFFCC': + $colorIdxBg = 0x1A; + break; + case 'CCFFFF': + $colorIdxBg = 0x1B; + break; + case '660066': + $colorIdxBg = 0x1C; + break; + case 'FF8080': + $colorIdxBg = 0x1D; + break; + case '0066CC': + $colorIdxBg = 0x1E; + break; + case 'CCCCFF': + $colorIdxBg = 0x1F; + break; + case '000080': + $colorIdxBg = 0x20; + break; + case 'FF00FF': + $colorIdxBg = 0x21; + break; + case 'FFFF00': + $colorIdxBg = 0x22; + break; + case '00FFFF': + $colorIdxBg = 0x23; + break; + case '800080': + $colorIdxBg = 0x24; + break; + case '800000': + $colorIdxBg = 0x25; + break; + case '008080': + $colorIdxBg = 0x26; + break; + case '0000FF': + $colorIdxBg = 0x27; + break; + case '00CCFF': + $colorIdxBg = 0x28; + break; + case 'CCFFFF': + $colorIdxBg = 0x29; + break; + case 'CCFFCC': + $colorIdxBg = 0x2A; + break; + case 'FFFF99': + $colorIdxBg = 0x2B; + break; + case '99CCFF': + $colorIdxBg = 0x2C; + break; + case 'FF99CC': + $colorIdxBg = 0x2D; + break; + case 'CC99FF': + $colorIdxBg = 0x2E; + break; + case 'FFCC99': + $colorIdxBg = 0x2F; + break; + case '3366FF': + $colorIdxBg = 0x30; + break; + case '33CCCC': + $colorIdxBg = 0x31; + break; + case '99CC00': + $colorIdxBg = 0x32; + break; + case 'FFCC00': + $colorIdxBg = 0x33; + break; + case 'FF9900': + $colorIdxBg = 0x34; + break; + case 'FF6600': + $colorIdxBg = 0x35; + break; + case '666699': + $colorIdxBg = 0x36; + break; + case '969696': + $colorIdxBg = 0x37; + break; + case '003366': + $colorIdxBg = 0x38; + break; + case '339966': + $colorIdxBg = 0x39; + break; + case '003300': + $colorIdxBg = 0x3A; + break; + case '333300': + $colorIdxBg = 0x3B; + break; + case '993300': + $colorIdxBg = 0x3C; + break; + case '993366': + $colorIdxBg = 0x3D; + break; + case '333399': + $colorIdxBg = 0x3E; + break; + case '333333': + $colorIdxBg = 0x3F; + break; + default: + $colorIdxBg = 0x41; + break; + } + // Fg Color + switch ($conditional->getStyle()->getFill()->getEndColor()->getRGB()) { + case '000000': + $colorIdxFg = 0x08; + break; + case 'FFFFFF': + $colorIdxFg = 0x09; + break; + case 'FF0000': + $colorIdxFg = 0x0A; + break; + case '00FF00': + $colorIdxFg = 0x0B; + break; + case '0000FF': + $colorIdxFg = 0x0C; + break; + case 'FFFF00': + $colorIdxFg = 0x0D; + break; + case 'FF00FF': + $colorIdxFg = 0x0E; + break; + case '00FFFF': + $colorIdxFg = 0x0F; + break; + case '800000': + $colorIdxFg = 0x10; + break; + case '008000': + $colorIdxFg = 0x11; + break; + case '000080': + $colorIdxFg = 0x12; + break; + case '808000': + $colorIdxFg = 0x13; + break; + case '800080': + $colorIdxFg = 0x14; + break; + case '008080': + $colorIdxFg = 0x15; + break; + case 'C0C0C0': + $colorIdxFg = 0x16; + break; + case '808080': + $colorIdxFg = 0x17; + break; + case '9999FF': + $colorIdxFg = 0x18; + break; + case '993366': + $colorIdxFg = 0x19; + break; + case 'FFFFCC': + $colorIdxFg = 0x1A; + break; + case 'CCFFFF': + $colorIdxFg = 0x1B; + break; + case '660066': + $colorIdxFg = 0x1C; + break; + case 'FF8080': + $colorIdxFg = 0x1D; + break; + case '0066CC': + $colorIdxFg = 0x1E; + break; + case 'CCCCFF': + $colorIdxFg = 0x1F; + break; + case '000080': + $colorIdxFg = 0x20; + break; + case 'FF00FF': + $colorIdxFg = 0x21; + break; + case 'FFFF00': + $colorIdxFg = 0x22; + break; + case '00FFFF': + $colorIdxFg = 0x23; + break; + case '800080': + $colorIdxFg = 0x24; + break; + case '800000': + $colorIdxFg = 0x25; + break; + case '008080': + $colorIdxFg = 0x26; + break; + case '0000FF': + $colorIdxFg = 0x27; + break; + case '00CCFF': + $colorIdxFg = 0x28; + break; + case 'CCFFFF': + $colorIdxFg = 0x29; + break; + case 'CCFFCC': + $colorIdxFg = 0x2A; + break; + case 'FFFF99': + $colorIdxFg = 0x2B; + break; + case '99CCFF': + $colorIdxFg = 0x2C; + break; + case 'FF99CC': + $colorIdxFg = 0x2D; + break; + case 'CC99FF': + $colorIdxFg = 0x2E; + break; + case 'FFCC99': + $colorIdxFg = 0x2F; + break; + case '3366FF': + $colorIdxFg = 0x30; + break; + case '33CCCC': + $colorIdxFg = 0x31; + break; + case '99CC00': + $colorIdxFg = 0x32; + break; + case 'FFCC00': + $colorIdxFg = 0x33; + break; + case 'FF9900': + $colorIdxFg = 0x34; + break; + case 'FF6600': + $colorIdxFg = 0x35; + break; + case '666699': + $colorIdxFg = 0x36; + break; + case '969696': + $colorIdxFg = 0x37; + break; + case '003366': + $colorIdxFg = 0x38; + break; + case '339966': + $colorIdxFg = 0x39; + break; + case '003300': + $colorIdxFg = 0x3A; + break; + case '333300': + $colorIdxFg = 0x3B; + break; + case '993300': + $colorIdxFg = 0x3C; + break; + case '993366': + $colorIdxFg = 0x3D; + break; + case '333399': + $colorIdxFg = 0x3E; + break; + case '333333': + $colorIdxFg = 0x3F; + break; + default: + $colorIdxFg = 0x40; + break; + } + $dataBlockFill = pack('v', $blockFillPatternStyle); + $dataBlockFill .= pack('v', $colorIdxFg | ($colorIdxBg << 7)); + } + if ($bFormatProt == 1) { + $dataBlockProtection = 0; + if ($conditional->getStyle()->getProtection()->getLocked() == PHPExcel_Style_Protection::PROTECTION_PROTECTED) { + $dataBlockProtection = 1; + } + if ($conditional->getStyle()->getProtection()->getHidden() == PHPExcel_Style_Protection::PROTECTION_PROTECTED) { + $dataBlockProtection = 1 << 1; + } + } + + $data = pack('CCvvVv', $type, $operatorType, $szValue1, $szValue2, $flags, 0x0000); + if ($bFormatFont == 1) { // Block Formatting : OK + $data .= $dataBlockFont; + } + if ($bFormatAlign == 1) { + $data .= $dataBlockAlign; + } + if ($bFormatBorder == 1) { + $data .= $dataBlockBorder; + } + if ($bFormatFill == 1) { // Block Formatting : OK + $data .= $dataBlockFill; + } + if ($bFormatProt == 1) { + $data .= $dataBlockProtection; + } + if (!is_null($operand1)) { + $data .= $operand1; + } + if (!is_null($operand2)) { + $data .= $operand2; + } + $header = pack('vv', $record, strlen($data)); + $this->append($header . $data); + } + + /** + * Write CFHeader record + */ + private function writeCFHeader() + { + $record = 0x01B0; // Record identifier + $length = 0x0016; // Bytes to follow + + $numColumnMin = null; + $numColumnMax = null; + $numRowMin = null; + $numRowMax = null; + $arrConditional = array(); + foreach ($this->phpSheet->getConditionalStylesCollection() as $cellCoordinate => $conditionalStyles) { + foreach ($conditionalStyles as $conditional) { + if ($conditional->getConditionType() == PHPExcel_Style_Conditional::CONDITION_EXPRESSION + || $conditional->getConditionType() == PHPExcel_Style_Conditional::CONDITION_CELLIS) { + if (!in_array($conditional->getHashCode(), $arrConditional)) { + $arrConditional[] = $conditional->getHashCode(); + } + // Cells + $arrCoord = PHPExcel_Cell::coordinateFromString($cellCoordinate); + if (!is_numeric($arrCoord[0])) { + $arrCoord[0] = PHPExcel_Cell::columnIndexFromString($arrCoord[0]); + } + if (is_null($numColumnMin) || ($numColumnMin > $arrCoord[0])) { + $numColumnMin = $arrCoord[0]; + } + if (is_null($numColumnMax) || ($numColumnMax < $arrCoord[0])) { + $numColumnMax = $arrCoord[0]; + } + if (is_null($numRowMin) || ($numRowMin > $arrCoord[1])) { + $numRowMin = $arrCoord[1]; + } + if (is_null($numRowMax) || ($numRowMax < $arrCoord[1])) { + $numRowMax = $arrCoord[1]; + } + } + } + } + $needRedraw = 1; + $cellRange = pack('vvvv', $numRowMin-1, $numRowMax-1, $numColumnMin-1, $numColumnMax-1); + + $header = pack('vv', $record, $length); + $data = pack('vv', count($arrConditional), $needRedraw); + $data .= $cellRange; + $data .= pack('v', 0x0001); + $data .= $cellRange; + $this->append($header . $data); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Xf.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Xf.php new file mode 100644 index 0000000..e41589a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Xf.php @@ -0,0 +1,557 @@ +<?php + +/** + * PHPExcel_Writer_Excel5_Xf + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_Excel5 + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +// Original file header of PEAR::Spreadsheet_Excel_Writer_Format (used as the base for this class): +// ----------------------------------------------------------------------------------------- +// /* +// * Module written/ported by Xavier Noguer <xnoguer@rezebra.com> +// * +// * The majority of this is _NOT_ my code. I simply ported it from the +// * PERL Spreadsheet::WriteExcel module. +// * +// * The author of the Spreadsheet::WriteExcel module is John McNamara +// * <jmcnamara@cpan.org> +// * +// * I _DO_ maintain this code, and John McNamara has nothing to do with the +// * porting of this code to PHP. Any questions directly related to this +// * class library should be directed to me. +// * +// * License Information: +// * +// * Spreadsheet_Excel_Writer: A library for generating Excel Spreadsheets +// * Copyright (c) 2002-2003 Xavier Noguer xnoguer@rezebra.com +// * +// * This library is free software; you can redistribute it and/or +// * modify it under the terms of the GNU Lesser General Public +// * License as published by the Free Software Foundation; either +// * version 2.1 of the License, or (at your option) any later version. +// * +// * This library is distributed in the hope that it will be useful, +// * but WITHOUT ANY WARRANTY; without even the implied warranty of +// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// * Lesser General Public License for more details. +// * +// * You should have received a copy of the GNU Lesser General Public +// * License along with this library; if not, write to the Free Software +// * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// */ +class PHPExcel_Writer_Excel5_Xf +{ + /** + * Style XF or a cell XF ? + * + * @var boolean + */ + private $isStyleXf; + + /** + * Index to the FONT record. Index 4 does not exist + * @var integer + */ + private $fontIndex; + + /** + * An index (2 bytes) to a FORMAT record (number format). + * @var integer + */ + private $numberFormatIndex; + + /** + * 1 bit, apparently not used. + * @var integer + */ + private $textJustLast; + + /** + * The cell's foreground color. + * @var integer + */ + private $foregroundColor; + + /** + * The cell's background color. + * @var integer + */ + private $backgroundColor; + + /** + * Color of the bottom border of the cell. + * @var integer + */ + private $bottomBorderColor; + + /** + * Color of the top border of the cell. + * @var integer + */ + private $topBorderColor; + + /** + * Color of the left border of the cell. + * @var integer + */ + private $leftBorderColor; + + /** + * Color of the right border of the cell. + * @var integer + */ + private $rightBorderColor; + + /** + * Constructor + * + * @access public + * @param PHPExcel_Style The XF format + */ + public function __construct(PHPExcel_Style $style = null) + { + $this->isStyleXf = false; + $this->fontIndex = 0; + + $this->numberFormatIndex = 0; + + $this->textJustLast = 0; + + $this->foregroundColor = 0x40; + $this->backgroundColor = 0x41; + + $this->_diag = 0; + + $this->bottomBorderColor = 0x40; + $this->topBorderColor = 0x40; + $this->leftBorderColor = 0x40; + $this->rightBorderColor = 0x40; + $this->_diag_color = 0x40; + $this->_style = $style; + + } + + + /** + * Generate an Excel BIFF XF record (style or cell). + * + * @return string The XF record + */ + public function writeXf() + { + // Set the type of the XF record and some of the attributes. + if ($this->isStyleXf) { + $style = 0xFFF5; + } else { + $style = self::mapLocked($this->_style->getProtection()->getLocked()); + $style |= self::mapHidden($this->_style->getProtection()->getHidden()) << 1; + } + + // Flags to indicate if attributes have been set. + $atr_num = ($this->numberFormatIndex != 0)?1:0; + $atr_fnt = ($this->fontIndex != 0)?1:0; + $atr_alc = ((int) $this->_style->getAlignment()->getWrapText()) ? 1 : 0; + $atr_bdr = (self::mapBorderStyle($this->_style->getBorders()->getBottom()->getBorderStyle()) || + self::mapBorderStyle($this->_style->getBorders()->getTop()->getBorderStyle()) || + self::mapBorderStyle($this->_style->getBorders()->getLeft()->getBorderStyle()) || + self::mapBorderStyle($this->_style->getBorders()->getRight()->getBorderStyle()))?1:0; + $atr_pat = (($this->foregroundColor != 0x40) || + ($this->backgroundColor != 0x41) || + self::mapFillType($this->_style->getFill()->getFillType()))?1:0; + $atr_prot = self::mapLocked($this->_style->getProtection()->getLocked()) + | self::mapHidden($this->_style->getProtection()->getHidden()); + + // Zero the default border colour if the border has not been set. + if (self::mapBorderStyle($this->_style->getBorders()->getBottom()->getBorderStyle()) == 0) { + $this->bottomBorderColor = 0; + } + if (self::mapBorderStyle($this->_style->getBorders()->getTop()->getBorderStyle()) == 0) { + $this->topBorderColor = 0; + } + if (self::mapBorderStyle($this->_style->getBorders()->getRight()->getBorderStyle()) == 0) { + $this->rightBorderColor = 0; + } + if (self::mapBorderStyle($this->_style->getBorders()->getLeft()->getBorderStyle()) == 0) { + $this->leftBorderColor = 0; + } + if (self::mapBorderStyle($this->_style->getBorders()->getDiagonal()->getBorderStyle()) == 0) { + $this->_diag_color = 0; + } + + $record = 0x00E0; // Record identifier + $length = 0x0014; // Number of bytes to follow + + $ifnt = $this->fontIndex; // Index to FONT record + $ifmt = $this->numberFormatIndex; // Index to FORMAT record + + $align = $this->mapHAlign($this->_style->getAlignment()->getHorizontal()); // Alignment + $align |= (int) $this->_style->getAlignment()->getWrapText() << 3; + $align |= self::mapVAlign($this->_style->getAlignment()->getVertical()) << 4; + $align |= $this->textJustLast << 7; + + $used_attrib = $atr_num << 2; + $used_attrib |= $atr_fnt << 3; + $used_attrib |= $atr_alc << 4; + $used_attrib |= $atr_bdr << 5; + $used_attrib |= $atr_pat << 6; + $used_attrib |= $atr_prot << 7; + + $icv = $this->foregroundColor; // fg and bg pattern colors + $icv |= $this->backgroundColor << 7; + + $border1 = self::mapBorderStyle($this->_style->getBorders()->getLeft()->getBorderStyle()); // Border line style and color + $border1 |= self::mapBorderStyle($this->_style->getBorders()->getRight()->getBorderStyle()) << 4; + $border1 |= self::mapBorderStyle($this->_style->getBorders()->getTop()->getBorderStyle()) << 8; + $border1 |= self::mapBorderStyle($this->_style->getBorders()->getBottom()->getBorderStyle()) << 12; + $border1 |= $this->leftBorderColor << 16; + $border1 |= $this->rightBorderColor << 23; + + $diagonalDirection = $this->_style->getBorders()->getDiagonalDirection(); + $diag_tl_to_rb = $diagonalDirection == PHPExcel_Style_Borders::DIAGONAL_BOTH + || $diagonalDirection == PHPExcel_Style_Borders::DIAGONAL_DOWN; + $diag_tr_to_lb = $diagonalDirection == PHPExcel_Style_Borders::DIAGONAL_BOTH + || $diagonalDirection == PHPExcel_Style_Borders::DIAGONAL_UP; + $border1 |= $diag_tl_to_rb << 30; + $border1 |= $diag_tr_to_lb << 31; + + $border2 = $this->topBorderColor; // Border color + $border2 |= $this->bottomBorderColor << 7; + $border2 |= $this->_diag_color << 14; + $border2 |= self::mapBorderStyle($this->_style->getBorders()->getDiagonal()->getBorderStyle()) << 21; + $border2 |= self::mapFillType($this->_style->getFill()->getFillType()) << 26; + + $header = pack("vv", $record, $length); + + //BIFF8 options: identation, shrinkToFit and text direction + $biff8_options = $this->_style->getAlignment()->getIndent(); + $biff8_options |= (int) $this->_style->getAlignment()->getShrinkToFit() << 4; + + $data = pack("vvvC", $ifnt, $ifmt, $style, $align); + $data .= pack("CCC", self::mapTextRotation($this->_style->getAlignment()->getTextRotation()), $biff8_options, $used_attrib); + $data .= pack("VVv", $border1, $border2, $icv); + + return($header . $data); + } + + /** + * Is this a style XF ? + * + * @param boolean $value + */ + public function setIsStyleXf($value) + { + $this->isStyleXf = $value; + } + + /** + * Sets the cell's bottom border color + * + * @access public + * @param int $colorIndex Color index + */ + public function setBottomColor($colorIndex) + { + $this->bottomBorderColor = $colorIndex; + } + + /** + * Sets the cell's top border color + * + * @access public + * @param int $colorIndex Color index + */ + public function setTopColor($colorIndex) + { + $this->topBorderColor = $colorIndex; + } + + /** + * Sets the cell's left border color + * + * @access public + * @param int $colorIndex Color index + */ + public function setLeftColor($colorIndex) + { + $this->leftBorderColor = $colorIndex; + } + + /** + * Sets the cell's right border color + * + * @access public + * @param int $colorIndex Color index + */ + public function setRightColor($colorIndex) + { + $this->rightBorderColor = $colorIndex; + } + + /** + * Sets the cell's diagonal border color + * + * @access public + * @param int $colorIndex Color index + */ + public function setDiagColor($colorIndex) + { + $this->_diag_color = $colorIndex; + } + + + /** + * Sets the cell's foreground color + * + * @access public + * @param int $colorIndex Color index + */ + public function setFgColor($colorIndex) + { + $this->foregroundColor = $colorIndex; + } + + /** + * Sets the cell's background color + * + * @access public + * @param int $colorIndex Color index + */ + public function setBgColor($colorIndex) + { + $this->backgroundColor = $colorIndex; + } + + /** + * Sets the index to the number format record + * It can be date, time, currency, etc... + * + * @access public + * @param integer $numberFormatIndex Index to format record + */ + public function setNumberFormatIndex($numberFormatIndex) + { + $this->numberFormatIndex = $numberFormatIndex; + } + + /** + * Set the font index. + * + * @param int $value Font index, note that value 4 does not exist + */ + public function setFontIndex($value) + { + $this->fontIndex = $value; + } + + /** + * Map of BIFF2-BIFF8 codes for border styles + * @static array of int + * + */ + private static $mapBorderStyles = array( + PHPExcel_Style_Border::BORDER_NONE => 0x00, + PHPExcel_Style_Border::BORDER_THIN => 0x01, + PHPExcel_Style_Border::BORDER_MEDIUM => 0x02, + PHPExcel_Style_Border::BORDER_DASHED => 0x03, + PHPExcel_Style_Border::BORDER_DOTTED => 0x04, + PHPExcel_Style_Border::BORDER_THICK => 0x05, + PHPExcel_Style_Border::BORDER_DOUBLE => 0x06, + PHPExcel_Style_Border::BORDER_HAIR => 0x07, + PHPExcel_Style_Border::BORDER_MEDIUMDASHED => 0x08, + PHPExcel_Style_Border::BORDER_DASHDOT => 0x09, + PHPExcel_Style_Border::BORDER_MEDIUMDASHDOT => 0x0A, + PHPExcel_Style_Border::BORDER_DASHDOTDOT => 0x0B, + PHPExcel_Style_Border::BORDER_MEDIUMDASHDOTDOT => 0x0C, + PHPExcel_Style_Border::BORDER_SLANTDASHDOT => 0x0D, + ); + + /** + * Map border style + * + * @param string $borderStyle + * @return int + */ + private static function mapBorderStyle($borderStyle) + { + if (isset(self::$mapBorderStyles[$borderStyle])) { + return self::$mapBorderStyles[$borderStyle]; + } + return 0x00; + } + + /** + * Map of BIFF2-BIFF8 codes for fill types + * @static array of int + * + */ + private static $mapFillTypes = array( + PHPExcel_Style_Fill::FILL_NONE => 0x00, + PHPExcel_Style_Fill::FILL_SOLID => 0x01, + PHPExcel_Style_Fill::FILL_PATTERN_MEDIUMGRAY => 0x02, + PHPExcel_Style_Fill::FILL_PATTERN_DARKGRAY => 0x03, + PHPExcel_Style_Fill::FILL_PATTERN_LIGHTGRAY => 0x04, + PHPExcel_Style_Fill::FILL_PATTERN_DARKHORIZONTAL => 0x05, + PHPExcel_Style_Fill::FILL_PATTERN_DARKVERTICAL => 0x06, + PHPExcel_Style_Fill::FILL_PATTERN_DARKDOWN => 0x07, + PHPExcel_Style_Fill::FILL_PATTERN_DARKUP => 0x08, + PHPExcel_Style_Fill::FILL_PATTERN_DARKGRID => 0x09, + PHPExcel_Style_Fill::FILL_PATTERN_DARKTRELLIS => 0x0A, + PHPExcel_Style_Fill::FILL_PATTERN_LIGHTHORIZONTAL => 0x0B, + PHPExcel_Style_Fill::FILL_PATTERN_LIGHTVERTICAL => 0x0C, + PHPExcel_Style_Fill::FILL_PATTERN_LIGHTDOWN => 0x0D, + PHPExcel_Style_Fill::FILL_PATTERN_LIGHTUP => 0x0E, + PHPExcel_Style_Fill::FILL_PATTERN_LIGHTGRID => 0x0F, + PHPExcel_Style_Fill::FILL_PATTERN_LIGHTTRELLIS => 0x10, + PHPExcel_Style_Fill::FILL_PATTERN_GRAY125 => 0x11, + PHPExcel_Style_Fill::FILL_PATTERN_GRAY0625 => 0x12, + PHPExcel_Style_Fill::FILL_GRADIENT_LINEAR => 0x00, // does not exist in BIFF8 + PHPExcel_Style_Fill::FILL_GRADIENT_PATH => 0x00, // does not exist in BIFF8 + ); + + /** + * Map fill type + * + * @param string $fillType + * @return int + */ + private static function mapFillType($fillType) + { + if (isset(self::$mapFillTypes[$fillType])) { + return self::$mapFillTypes[$fillType]; + } + return 0x00; + } + + /** + * Map of BIFF2-BIFF8 codes for horizontal alignment + * @static array of int + * + */ + private static $mapHAlignments = array( + PHPExcel_Style_Alignment::HORIZONTAL_GENERAL => 0, + PHPExcel_Style_Alignment::HORIZONTAL_LEFT => 1, + PHPExcel_Style_Alignment::HORIZONTAL_CENTER => 2, + PHPExcel_Style_Alignment::HORIZONTAL_RIGHT => 3, + PHPExcel_Style_Alignment::HORIZONTAL_FILL => 4, + PHPExcel_Style_Alignment::HORIZONTAL_JUSTIFY => 5, + PHPExcel_Style_Alignment::HORIZONTAL_CENTER_CONTINUOUS => 6, + ); + + /** + * Map to BIFF2-BIFF8 codes for horizontal alignment + * + * @param string $hAlign + * @return int + */ + private function mapHAlign($hAlign) + { + if (isset(self::$mapHAlignments[$hAlign])) { + return self::$mapHAlignments[$hAlign]; + } + return 0; + } + + /** + * Map of BIFF2-BIFF8 codes for vertical alignment + * @static array of int + * + */ + private static $mapVAlignments = array( + PHPExcel_Style_Alignment::VERTICAL_TOP => 0, + PHPExcel_Style_Alignment::VERTICAL_CENTER => 1, + PHPExcel_Style_Alignment::VERTICAL_BOTTOM => 2, + PHPExcel_Style_Alignment::VERTICAL_JUSTIFY => 3, + ); + + /** + * Map to BIFF2-BIFF8 codes for vertical alignment + * + * @param string $vAlign + * @return int + */ + private static function mapVAlign($vAlign) + { + if (isset(self::$mapVAlignments[$vAlign])) { + return self::$mapVAlignments[$vAlign]; + } + return 2; + } + + /** + * Map to BIFF8 codes for text rotation angle + * + * @param int $textRotation + * @return int + */ + private static function mapTextRotation($textRotation) + { + if ($textRotation >= 0) { + return $textRotation; + } elseif ($textRotation == -165) { + return 255; + } elseif ($textRotation < 0) { + return 90 - $textRotation; + } + } + + /** + * Map locked + * + * @param string + * @return int + */ + private static function mapLocked($locked) + { + switch ($locked) { + case PHPExcel_Style_Protection::PROTECTION_INHERIT: + return 1; + case PHPExcel_Style_Protection::PROTECTION_PROTECTED: + return 1; + case PHPExcel_Style_Protection::PROTECTION_UNPROTECTED: + return 0; + default: + return 1; + } + } + + /** + * Map hidden + * + * @param string + * @return int + */ + private static function mapHidden($hidden) + { + switch ($hidden) { + case PHPExcel_Style_Protection::PROTECTION_INHERIT: + return 0; + case PHPExcel_Style_Protection::PROTECTION_PROTECTED: + return 1; + case PHPExcel_Style_Protection::PROTECTION_UNPROTECTED: + return 0; + default: + return 0; + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Exception.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Exception.php new file mode 100644 index 0000000..bfa0056 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Exception.php @@ -0,0 +1,46 @@ +<?php + +/** + * PHPExcel_Writer_Exception + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_Exception extends PHPExcel_Exception +{ + /** + * Error handler callback + * + * @param mixed $code + * @param mixed $string + * @param mixed $file + * @param mixed $line + * @param mixed $context + */ + public static function errorHandlerCallback($code, $string, $file, $line, $context) + { + $e = new self($string, $code); + $e->line = $line; + $e->file = $file; + throw $e; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/HTML.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/HTML.php new file mode 100644 index 0000000..31d7c63 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/HTML.php @@ -0,0 +1,1612 @@ +<?php + +/** + * PHPExcel_Writer_HTML + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_HTML + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_HTML extends PHPExcel_Writer_Abstract implements PHPExcel_Writer_IWriter +{ + /** + * PHPExcel object + * + * @var PHPExcel + */ + protected $phpExcel; + + /** + * Sheet index to write + * + * @var int + */ + private $sheetIndex = 0; + + /** + * Images root + * + * @var string + */ + private $imagesRoot = '.'; + + /** + * embed images, or link to images + * + * @var boolean + */ + private $embedImages = false; + + /** + * Use inline CSS? + * + * @var boolean + */ + private $useInlineCss = false; + + /** + * Array of CSS styles + * + * @var array + */ + private $cssStyles; + + /** + * Array of column widths in points + * + * @var array + */ + private $columnWidths; + + /** + * Default font + * + * @var PHPExcel_Style_Font + */ + private $defaultFont; + + /** + * Flag whether spans have been calculated + * + * @var boolean + */ + private $spansAreCalculated = false; + + /** + * Excel cells that should not be written as HTML cells + * + * @var array + */ + private $isSpannedCell = array(); + + /** + * Excel cells that are upper-left corner in a cell merge + * + * @var array + */ + private $isBaseCell = array(); + + /** + * Excel rows that should not be written as HTML rows + * + * @var array + */ + private $isSpannedRow = array(); + + /** + * Is the current writer creating PDF? + * + * @var boolean + */ + protected $isPdf = false; + + /** + * Generate the Navigation block + * + * @var boolean + */ + private $generateSheetNavigationBlock = true; + + /** + * Create a new PHPExcel_Writer_HTML + * + * @param PHPExcel $phpExcel PHPExcel object + */ + public function __construct(PHPExcel $phpExcel) + { + $this->phpExcel = $phpExcel; + $this->defaultFont = $this->phpExcel->getDefaultStyle()->getFont(); + } + + /** + * Save PHPExcel to file + * + * @param string $pFilename + * @throws PHPExcel_Writer_Exception + */ + public function save($pFilename = null) + { + // garbage collect + $this->phpExcel->garbageCollect(); + + $saveDebugLog = PHPExcel_Calculation::getInstance($this->phpExcel)->getDebugLog()->getWriteDebugLog(); + PHPExcel_Calculation::getInstance($this->phpExcel)->getDebugLog()->setWriteDebugLog(false); + $saveArrayReturnType = PHPExcel_Calculation::getArrayReturnType(); + PHPExcel_Calculation::setArrayReturnType(PHPExcel_Calculation::RETURN_ARRAY_AS_VALUE); + + // Build CSS + $this->buildCSS(!$this->useInlineCss); + + // Open file + $fileHandle = fopen($pFilename, 'wb+'); + if ($fileHandle === false) { + throw new PHPExcel_Writer_Exception("Could not open file $pFilename for writing."); + } + + // Write headers + fwrite($fileHandle, $this->generateHTMLHeader(!$this->useInlineCss)); + + // Write navigation (tabs) + if ((!$this->isPdf) && ($this->generateSheetNavigationBlock)) { + fwrite($fileHandle, $this->generateNavigation()); + } + + // Write data + fwrite($fileHandle, $this->generateSheetData()); + + // Write footer + fwrite($fileHandle, $this->generateHTMLFooter()); + + // Close file + fclose($fileHandle); + + PHPExcel_Calculation::setArrayReturnType($saveArrayReturnType); + PHPExcel_Calculation::getInstance($this->phpExcel)->getDebugLog()->setWriteDebugLog($saveDebugLog); + } + + /** + * Map VAlign + * + * @param string $vAlign Vertical alignment + * @return string + */ + private function mapVAlign($vAlign) + { + switch ($vAlign) { + case PHPExcel_Style_Alignment::VERTICAL_BOTTOM: + return 'bottom'; + case PHPExcel_Style_Alignment::VERTICAL_TOP: + return 'top'; + case PHPExcel_Style_Alignment::VERTICAL_CENTER: + case PHPExcel_Style_Alignment::VERTICAL_JUSTIFY: + return 'middle'; + default: + return 'baseline'; + } + } + + /** + * Map HAlign + * + * @param string $hAlign Horizontal alignment + * @return string|false + */ + private function mapHAlign($hAlign) + { + switch ($hAlign) { + case PHPExcel_Style_Alignment::HORIZONTAL_GENERAL: + return false; + case PHPExcel_Style_Alignment::HORIZONTAL_LEFT: + return 'left'; + case PHPExcel_Style_Alignment::HORIZONTAL_RIGHT: + return 'right'; + case PHPExcel_Style_Alignment::HORIZONTAL_CENTER: + case PHPExcel_Style_Alignment::HORIZONTAL_CENTER_CONTINUOUS: + return 'center'; + case PHPExcel_Style_Alignment::HORIZONTAL_JUSTIFY: + return 'justify'; + default: + return false; + } + } + + /** + * Map border style + * + * @param int $borderStyle Sheet index + * @return string + */ + private function mapBorderStyle($borderStyle) + { + switch ($borderStyle) { + case PHPExcel_Style_Border::BORDER_NONE: + return 'none'; + case PHPExcel_Style_Border::BORDER_DASHDOT: + return '1px dashed'; + case PHPExcel_Style_Border::BORDER_DASHDOTDOT: + return '1px dotted'; + case PHPExcel_Style_Border::BORDER_DASHED: + return '1px dashed'; + case PHPExcel_Style_Border::BORDER_DOTTED: + return '1px dotted'; + case PHPExcel_Style_Border::BORDER_DOUBLE: + return '3px double'; + case PHPExcel_Style_Border::BORDER_HAIR: + return '1px solid'; + case PHPExcel_Style_Border::BORDER_MEDIUM: + return '2px solid'; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHDOT: + return '2px dashed'; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHDOTDOT: + return '2px dotted'; + case PHPExcel_Style_Border::BORDER_MEDIUMDASHED: + return '2px dashed'; + case PHPExcel_Style_Border::BORDER_SLANTDASHDOT: + return '2px dashed'; + case PHPExcel_Style_Border::BORDER_THICK: + return '3px solid'; + case PHPExcel_Style_Border::BORDER_THIN: + return '1px solid'; + default: + // map others to thin + return '1px solid'; + } + } + + /** + * Get sheet index + * + * @return int + */ + public function getSheetIndex() + { + return $this->sheetIndex; + } + + /** + * Set sheet index + * + * @param int $pValue Sheet index + * @return PHPExcel_Writer_HTML + */ + public function setSheetIndex($pValue = 0) + { + $this->sheetIndex = $pValue; + return $this; + } + + /** + * Get sheet index + * + * @return boolean + */ + public function getGenerateSheetNavigationBlock() + { + return $this->generateSheetNavigationBlock; + } + + /** + * Set sheet index + * + * @param boolean $pValue Flag indicating whether the sheet navigation block should be generated or not + * @return PHPExcel_Writer_HTML + */ + public function setGenerateSheetNavigationBlock($pValue = true) + { + $this->generateSheetNavigationBlock = (bool) $pValue; + return $this; + } + + /** + * Write all sheets (resets sheetIndex to NULL) + */ + public function writeAllSheets() + { + $this->sheetIndex = null; + return $this; + } + + /** + * Generate HTML header + * + * @param boolean $pIncludeStyles Include styles? + * @return string + * @throws PHPExcel_Writer_Exception + */ + public function generateHTMLHeader($pIncludeStyles = false) + { + // PHPExcel object known? + if (is_null($this->phpExcel)) { + throw new PHPExcel_Writer_Exception('Internal PHPExcel object not set to an instance of an object.'); + } + + // Construct HTML + $properties = $this->phpExcel->getProperties(); + $html = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">' . PHP_EOL; + $html .= '<!-- Generated by PHPExcel - http://www.phpexcel.net -->' . PHP_EOL; + $html .= '<html>' . PHP_EOL; + $html .= ' <head>' . PHP_EOL; + $html .= ' <meta http-equiv="Content-Type" content="text/html; charset=utf-8">' . PHP_EOL; + if ($properties->getTitle() > '') { + $html .= ' <title>' . htmlspecialchars($properties->getTitle()) . '</title>' . PHP_EOL; + } + if ($properties->getCreator() > '') { + $html .= ' <meta name="author" content="' . htmlspecialchars($properties->getCreator()) . '" />' . PHP_EOL; + } + if ($properties->getTitle() > '') { + $html .= ' <meta name="title" content="' . htmlspecialchars($properties->getTitle()) . '" />' . PHP_EOL; + } + if ($properties->getDescription() > '') { + $html .= ' <meta name="description" content="' . htmlspecialchars($properties->getDescription()) . '" />' . PHP_EOL; + } + if ($properties->getSubject() > '') { + $html .= ' <meta name="subject" content="' . htmlspecialchars($properties->getSubject()) . '" />' . PHP_EOL; + } + if ($properties->getKeywords() > '') { + $html .= ' <meta name="keywords" content="' . htmlspecialchars($properties->getKeywords()) . '" />' . PHP_EOL; + } + if ($properties->getCategory() > '') { + $html .= ' <meta name="category" content="' . htmlspecialchars($properties->getCategory()) . '" />' . PHP_EOL; + } + if ($properties->getCompany() > '') { + $html .= ' <meta name="company" content="' . htmlspecialchars($properties->getCompany()) . '" />' . PHP_EOL; + } + if ($properties->getManager() > '') { + $html .= ' <meta name="manager" content="' . htmlspecialchars($properties->getManager()) . '" />' . PHP_EOL; + } + + if ($pIncludeStyles) { + $html .= $this->generateStyles(true); + } + + $html .= ' </head>' . PHP_EOL; + $html .= '' . PHP_EOL; + $html .= ' <body>' . PHP_EOL; + + return $html; + } + + /** + * Generate sheet data + * + * @return string + * @throws PHPExcel_Writer_Exception + */ + public function generateSheetData() + { + // PHPExcel object known? + if (is_null($this->phpExcel)) { + throw new PHPExcel_Writer_Exception('Internal PHPExcel object not set to an instance of an object.'); + } + + // Ensure that Spans have been calculated? + if ($this->sheetIndex !== null || !$this->spansAreCalculated) { + $this->calculateSpans(); + } + + // Fetch sheets + $sheets = array(); + if (is_null($this->sheetIndex)) { + $sheets = $this->phpExcel->getAllSheets(); + } else { + $sheets[] = $this->phpExcel->getSheet($this->sheetIndex); + } + + // Construct HTML + $html = ''; + + // Loop all sheets + $sheetId = 0; + foreach ($sheets as $sheet) { + // Write table header + $html .= $this->generateTableHeader($sheet); + + // Get worksheet dimension + $dimension = explode(':', $sheet->calculateWorksheetDimension()); + $dimension[0] = PHPExcel_Cell::coordinateFromString($dimension[0]); + $dimension[0][0] = PHPExcel_Cell::columnIndexFromString($dimension[0][0]) - 1; + $dimension[1] = PHPExcel_Cell::coordinateFromString($dimension[1]); + $dimension[1][0] = PHPExcel_Cell::columnIndexFromString($dimension[1][0]) - 1; + + // row min,max + $rowMin = $dimension[0][1]; + $rowMax = $dimension[1][1]; + + // calculate start of <tbody>, <thead> + $tbodyStart = $rowMin; + $theadStart = $theadEnd = 0; // default: no <thead> no </thead> + if ($sheet->getPageSetup()->isRowsToRepeatAtTopSet()) { + $rowsToRepeatAtTop = $sheet->getPageSetup()->getRowsToRepeatAtTop(); + + // we can only support repeating rows that start at top row + if ($rowsToRepeatAtTop[0] == 1) { + $theadStart = $rowsToRepeatAtTop[0]; + $theadEnd = $rowsToRepeatAtTop[1]; + $tbodyStart = $rowsToRepeatAtTop[1] + 1; + } + } + + // Loop through cells + $row = $rowMin-1; + while ($row++ < $rowMax) { + // <thead> ? + if ($row == $theadStart) { + $html .= ' <thead>' . PHP_EOL; + $cellType = 'th'; + } + + // <tbody> ? + if ($row == $tbodyStart) { + $html .= ' <tbody>' . PHP_EOL; + $cellType = 'td'; + } + + // Write row if there are HTML table cells in it + if (!isset($this->isSpannedRow[$sheet->getParent()->getIndex($sheet)][$row])) { + // Start a new rowData + $rowData = array(); + // Loop through columns + $column = $dimension[0][0] - 1; + while ($column++ < $dimension[1][0]) { + // Cell exists? + if ($sheet->cellExistsByColumnAndRow($column, $row)) { + $rowData[$column] = PHPExcel_Cell::stringFromColumnIndex($column) . $row; + } else { + $rowData[$column] = ''; + } + } + $html .= $this->generateRow($sheet, $rowData, $row - 1, $cellType); + } + + // </thead> ? + if ($row == $theadEnd) { + $html .= ' </thead>' . PHP_EOL; + } + } + $html .= $this->extendRowsForChartsAndImages($sheet, $row); + + // Close table body. + $html .= ' </tbody>' . PHP_EOL; + + // Write table footer + $html .= $this->generateTableFooter(); + + // Writing PDF? + if ($this->isPdf) { + if (is_null($this->sheetIndex) && $sheetId + 1 < $this->phpExcel->getSheetCount()) { + $html .= '<div style="page-break-before:always" />'; + } + } + + // Next sheet + ++$sheetId; + } + + return $html; + } + + /** + * Generate sheet tabs + * + * @return string + * @throws PHPExcel_Writer_Exception + */ + public function generateNavigation() + { + // PHPExcel object known? + if (is_null($this->phpExcel)) { + throw new PHPExcel_Writer_Exception('Internal PHPExcel object not set to an instance of an object.'); + } + + // Fetch sheets + $sheets = array(); + if (is_null($this->sheetIndex)) { + $sheets = $this->phpExcel->getAllSheets(); + } else { + $sheets[] = $this->phpExcel->getSheet($this->sheetIndex); + } + + // Construct HTML + $html = ''; + + // Only if there are more than 1 sheets + if (count($sheets) > 1) { + // Loop all sheets + $sheetId = 0; + + $html .= '<ul class="navigation">' . PHP_EOL; + + foreach ($sheets as $sheet) { + $html .= ' <li class="sheet' . $sheetId . '"><a href="#sheet' . $sheetId . '">' . $sheet->getTitle() . '</a></li>' . PHP_EOL; + ++$sheetId; + } + + $html .= '</ul>' . PHP_EOL; + } + + return $html; + } + + private function extendRowsForChartsAndImages(PHPExcel_Worksheet $pSheet, $row) + { + $rowMax = $row; + $colMax = 'A'; + if ($this->includeCharts) { + foreach ($pSheet->getChartCollection() as $chart) { + if ($chart instanceof PHPExcel_Chart) { + $chartCoordinates = $chart->getTopLeftPosition(); + $chartTL = PHPExcel_Cell::coordinateFromString($chartCoordinates['cell']); + $chartCol = PHPExcel_Cell::columnIndexFromString($chartTL[0]); + if ($chartTL[1] > $rowMax) { + $rowMax = $chartTL[1]; + if ($chartCol > PHPExcel_Cell::columnIndexFromString($colMax)) { + $colMax = $chartTL[0]; + } + } + } + } + } + + foreach ($pSheet->getDrawingCollection() as $drawing) { + if ($drawing instanceof PHPExcel_Worksheet_Drawing) { + $imageTL = PHPExcel_Cell::coordinateFromString($drawing->getCoordinates()); + $imageCol = PHPExcel_Cell::columnIndexFromString($imageTL[0]); + if ($imageTL[1] > $rowMax) { + $rowMax = $imageTL[1]; + if ($imageCol > PHPExcel_Cell::columnIndexFromString($colMax)) { + $colMax = $imageTL[0]; + } + } + } + } + + $html = ''; + $colMax++; + while ($row <= $rowMax) { + $html .= '<tr>'; + for ($col = 'A'; $col != $colMax; ++$col) { + $html .= '<td>'; + $html .= $this->writeImageInCell($pSheet, $col.$row); + if ($this->includeCharts) { + $html .= $this->writeChartInCell($pSheet, $col.$row); + } + $html .= '</td>'; + } + ++$row; + $html .= '</tr>'; + } + return $html; + } + + + /** + * Generate image tag in cell + * + * @param PHPExcel_Worksheet $pSheet PHPExcel_Worksheet + * @param string $coordinates Cell coordinates + * @return string + * @throws PHPExcel_Writer_Exception + */ + private function writeImageInCell(PHPExcel_Worksheet $pSheet, $coordinates) + { + // Construct HTML + $html = ''; + + // Write images + foreach ($pSheet->getDrawingCollection() as $drawing) { + if ($drawing instanceof PHPExcel_Worksheet_Drawing) { + if ($drawing->getCoordinates() == $coordinates) { + $filename = $drawing->getPath(); + + // Strip off eventual '.' + if (substr($filename, 0, 1) == '.') { + $filename = substr($filename, 1); + } + + // Prepend images root + $filename = $this->getImagesRoot() . $filename; + + // Strip off eventual '.' + if (substr($filename, 0, 1) == '.' && substr($filename, 0, 2) != './') { + $filename = substr($filename, 1); + } + + // Convert UTF8 data to PCDATA + $filename = htmlspecialchars($filename); + + $html .= PHP_EOL; + if ((!$this->embedImages) || ($this->isPdf)) { + $imageData = $filename; + } else { + $imageDetails = getimagesize($filename); + if ($fp = fopen($filename, "rb", 0)) { + $picture = fread($fp, filesize($filename)); + fclose($fp); + // base64 encode the binary data, then break it + // into chunks according to RFC 2045 semantics + $base64 = chunk_split(base64_encode($picture)); + $imageData = 'data:'.$imageDetails['mime'].';base64,' . $base64; + } else { + $imageData = $filename; + } + } + + $html .= '<div style="position: relative;">'; + $html .= '<img style="position: absolute; z-index: 1; left: ' . + $drawing->getOffsetX() . 'px; top: ' . $drawing->getOffsetY() . 'px; width: ' . + $drawing->getWidth() . 'px; height: ' . $drawing->getHeight() . 'px;" src="' . + $imageData . '" border="0" />'; + $html .= '</div>'; + } + } elseif ($drawing instanceof PHPExcel_Worksheet_MemoryDrawing) { + if ($drawing->getCoordinates() != $coordinates) { + continue; + } + ob_start(); // Let's start output buffering. + imagepng($drawing->getImageResource()); // This will normally output the image, but because of ob_start(), it won't. + $contents = ob_get_contents(); // Instead, output above is saved to $contents + ob_end_clean(); // End the output buffer. + + $dataUri = "data:image/jpeg;base64," . base64_encode($contents); + + // Because of the nature of tables, width is more important than height. + // max-width: 100% ensures that image doesnt overflow containing cell + // width: X sets width of supplied image. + // As a result, images bigger than cell will be contained and images smaller will not get stretched + $html .= '<img src="'.$dataUri.'" style="max-width:100%;width:'.$drawing->getWidth().'px;" />'; + } + } + + return $html; + } + + /** + * Generate chart tag in cell + * + * @param PHPExcel_Worksheet $pSheet PHPExcel_Worksheet + * @param string $coordinates Cell coordinates + * @return string + * @throws PHPExcel_Writer_Exception + */ + private function writeChartInCell(PHPExcel_Worksheet $pSheet, $coordinates) + { + // Construct HTML + $html = ''; + + // Write charts + foreach ($pSheet->getChartCollection() as $chart) { + if ($chart instanceof PHPExcel_Chart) { + $chartCoordinates = $chart->getTopLeftPosition(); + if ($chartCoordinates['cell'] == $coordinates) { + $chartFileName = PHPExcel_Shared_File::sys_get_temp_dir().'/'.uniqid().'.png'; + if (!$chart->render($chartFileName)) { + return; + } + + $html .= PHP_EOL; + $imageDetails = getimagesize($chartFileName); + if ($fp = fopen($chartFileName, "rb", 0)) { + $picture = fread($fp, filesize($chartFileName)); + fclose($fp); + // base64 encode the binary data, then break it + // into chunks according to RFC 2045 semantics + $base64 = chunk_split(base64_encode($picture)); + $imageData = 'data:'.$imageDetails['mime'].';base64,' . $base64; + + $html .= '<div style="position: relative;">'; + $html .= '<img style="position: absolute; z-index: 1; left: ' . $chartCoordinates['xOffset'] . 'px; top: ' . $chartCoordinates['yOffset'] . 'px; width: ' . $imageDetails[0] . 'px; height: ' . $imageDetails[1] . 'px;" src="' . $imageData . '" border="0" />' . PHP_EOL; + $html .= '</div>'; + + unlink($chartFileName); + } + } + } + } + + // Return + return $html; + } + + /** + * Generate CSS styles + * + * @param boolean $generateSurroundingHTML Generate surrounding HTML tags? (&lt;style&gt; and &lt;/style&gt;) + * @return string + * @throws PHPExcel_Writer_Exception + */ + public function generateStyles($generateSurroundingHTML = true) + { + // PHPExcel object known? + if (is_null($this->phpExcel)) { + throw new PHPExcel_Writer_Exception('Internal PHPExcel object not set to an instance of an object.'); + } + + // Build CSS + $css = $this->buildCSS($generateSurroundingHTML); + + // Construct HTML + $html = ''; + + // Start styles + if ($generateSurroundingHTML) { + $html .= ' <style type="text/css">' . PHP_EOL; + $html .= ' html { ' . $this->assembleCSS($css['html']) . ' }' . PHP_EOL; + } + + // Write all other styles + foreach ($css as $styleName => $styleDefinition) { + if ($styleName != 'html') { + $html .= ' ' . $styleName . ' { ' . $this->assembleCSS($styleDefinition) . ' }' . PHP_EOL; + } + } + + // End styles + if ($generateSurroundingHTML) { + $html .= ' </style>' . PHP_EOL; + } + + // Return + return $html; + } + + /** + * Build CSS styles + * + * @param boolean $generateSurroundingHTML Generate surrounding HTML style? (html { }) + * @return array + * @throws PHPExcel_Writer_Exception + */ + public function buildCSS($generateSurroundingHTML = true) + { + // PHPExcel object known? + if (is_null($this->phpExcel)) { + throw new PHPExcel_Writer_Exception('Internal PHPExcel object not set to an instance of an object.'); + } + + // Cached? + if (!is_null($this->cssStyles)) { + return $this->cssStyles; + } + + // Ensure that spans have been calculated + if (!$this->spansAreCalculated) { + $this->calculateSpans(); + } + + // Construct CSS + $css = array(); + + // Start styles + if ($generateSurroundingHTML) { + // html { } + $css['html']['font-family'] = 'Calibri, Arial, Helvetica, sans-serif'; + $css['html']['font-size'] = '11pt'; + $css['html']['background-color'] = 'white'; + } + + + // table { } + $css['table']['border-collapse'] = 'collapse'; + if (!$this->isPdf) { + $css['table']['page-break-after'] = 'always'; + } + + // .gridlines td { } + $css['.gridlines td']['border'] = '1px dotted black'; + $css['.gridlines th']['border'] = '1px dotted black'; + + // .b {} + $css['.b']['text-align'] = 'center'; // BOOL + + // .e {} + $css['.e']['text-align'] = 'center'; // ERROR + + // .f {} + $css['.f']['text-align'] = 'right'; // FORMULA + + // .inlineStr {} + $css['.inlineStr']['text-align'] = 'left'; // INLINE + + // .n {} + $css['.n']['text-align'] = 'right'; // NUMERIC + + // .s {} + $css['.s']['text-align'] = 'left'; // STRING + + // Calculate cell style hashes + foreach ($this->phpExcel->getCellXfCollection() as $index => $style) { + $css['td.style' . $index] = $this->createCSSStyle($style); + $css['th.style' . $index] = $this->createCSSStyle($style); + } + + // Fetch sheets + $sheets = array(); + if (is_null($this->sheetIndex)) { + $sheets = $this->phpExcel->getAllSheets(); + } else { + $sheets[] = $this->phpExcel->getSheet($this->sheetIndex); + } + + // Build styles per sheet + foreach ($sheets as $sheet) { + // Calculate hash code + $sheetIndex = $sheet->getParent()->getIndex($sheet); + + // Build styles + // Calculate column widths + $sheet->calculateColumnWidths(); + + // col elements, initialize + $highestColumnIndex = PHPExcel_Cell::columnIndexFromString($sheet->getHighestColumn()) - 1; + $column = -1; + while ($column++ < $highestColumnIndex) { + $this->columnWidths[$sheetIndex][$column] = 42; // approximation + $css['table.sheet' . $sheetIndex . ' col.col' . $column]['width'] = '42pt'; + } + + // col elements, loop through columnDimensions and set width + foreach ($sheet->getColumnDimensions() as $columnDimension) { + if (($width = PHPExcel_Shared_Drawing::cellDimensionToPixels($columnDimension->getWidth(), $this->defaultFont)) >= 0) { + $width = PHPExcel_Shared_Drawing::pixelsToPoints($width); + $column = PHPExcel_Cell::columnIndexFromString($columnDimension->getColumnIndex()) - 1; + $this->columnWidths[$sheetIndex][$column] = $width; + $css['table.sheet' . $sheetIndex . ' col.col' . $column]['width'] = $width . 'pt'; + + if ($columnDimension->getVisible() === false) { + $css['table.sheet' . $sheetIndex . ' col.col' . $column]['visibility'] = 'collapse'; + $css['table.sheet' . $sheetIndex . ' col.col' . $column]['*display'] = 'none'; // target IE6+7 + } + } + } + + // Default row height + $rowDimension = $sheet->getDefaultRowDimension(); + + // table.sheetN tr { } + $css['table.sheet' . $sheetIndex . ' tr'] = array(); + + if ($rowDimension->getRowHeight() == -1) { + $pt_height = PHPExcel_Shared_Font::getDefaultRowHeightByFont($this->phpExcel->getDefaultStyle()->getFont()); + } else { + $pt_height = $rowDimension->getRowHeight(); + } + $css['table.sheet' . $sheetIndex . ' tr']['height'] = $pt_height . 'pt'; + if ($rowDimension->getVisible() === false) { + $css['table.sheet' . $sheetIndex . ' tr']['display'] = 'none'; + $css['table.sheet' . $sheetIndex . ' tr']['visibility'] = 'hidden'; + } + + // Calculate row heights + foreach ($sheet->getRowDimensions() as $rowDimension) { + $row = $rowDimension->getRowIndex() - 1; + + // table.sheetN tr.rowYYYYYY { } + $css['table.sheet' . $sheetIndex . ' tr.row' . $row] = array(); + + if ($rowDimension->getRowHeight() == -1) { + $pt_height = PHPExcel_Shared_Font::getDefaultRowHeightByFont($this->phpExcel->getDefaultStyle()->getFont()); + } else { + $pt_height = $rowDimension->getRowHeight(); + } + $css['table.sheet' . $sheetIndex . ' tr.row' . $row]['height'] = $pt_height . 'pt'; + if ($rowDimension->getVisible() === false) { + $css['table.sheet' . $sheetIndex . ' tr.row' . $row]['display'] = 'none'; + $css['table.sheet' . $sheetIndex . ' tr.row' . $row]['visibility'] = 'hidden'; + } + } + } + + // Cache + if (is_null($this->cssStyles)) { + $this->cssStyles = $css; + } + + // Return + return $css; + } + + /** + * Create CSS style + * + * @param PHPExcel_Style $pStyle PHPExcel_Style + * @return array + */ + private function createCSSStyle(PHPExcel_Style $pStyle) + { + // Construct CSS + $css = ''; + + // Create CSS + $css = array_merge( + $this->createCSSStyleAlignment($pStyle->getAlignment()), + $this->createCSSStyleBorders($pStyle->getBorders()), + $this->createCSSStyleFont($pStyle->getFont()), + $this->createCSSStyleFill($pStyle->getFill()) + ); + + // Return + return $css; + } + + /** + * Create CSS style (PHPExcel_Style_Alignment) + * + * @param PHPExcel_Style_Alignment $pStyle PHPExcel_Style_Alignment + * @return array + */ + private function createCSSStyleAlignment(PHPExcel_Style_Alignment $pStyle) + { + // Construct CSS + $css = array(); + + // Create CSS + $css['vertical-align'] = $this->mapVAlign($pStyle->getVertical()); + if ($textAlign = $this->mapHAlign($pStyle->getHorizontal())) { + $css['text-align'] = $textAlign; + if (in_array($textAlign, array('left', 'right'))) { + $css['padding-'.$textAlign] = (string)((int)$pStyle->getIndent() * 9).'px'; + } + } + + return $css; + } + + /** + * Create CSS style (PHPExcel_Style_Font) + * + * @param PHPExcel_Style_Font $pStyle PHPExcel_Style_Font + * @return array + */ + private function createCSSStyleFont(PHPExcel_Style_Font $pStyle) + { + // Construct CSS + $css = array(); + + // Create CSS + if ($pStyle->getBold()) { + $css['font-weight'] = 'bold'; + } + if ($pStyle->getUnderline() != PHPExcel_Style_Font::UNDERLINE_NONE && $pStyle->getStrikethrough()) { + $css['text-decoration'] = 'underline line-through'; + } elseif ($pStyle->getUnderline() != PHPExcel_Style_Font::UNDERLINE_NONE) { + $css['text-decoration'] = 'underline'; + } elseif ($pStyle->getStrikethrough()) { + $css['text-decoration'] = 'line-through'; + } + if ($pStyle->getItalic()) { + $css['font-style'] = 'italic'; + } + + $css['color'] = '#' . $pStyle->getColor()->getRGB(); + $css['font-family'] = '\'' . $pStyle->getName() . '\''; + $css['font-size'] = $pStyle->getSize() . 'pt'; + + return $css; + } + + /** + * Create CSS style (PHPExcel_Style_Borders) + * + * @param PHPExcel_Style_Borders $pStyle PHPExcel_Style_Borders + * @return array + */ + private function createCSSStyleBorders(PHPExcel_Style_Borders $pStyle) + { + // Construct CSS + $css = array(); + + // Create CSS + $css['border-bottom'] = $this->createCSSStyleBorder($pStyle->getBottom()); + $css['border-top'] = $this->createCSSStyleBorder($pStyle->getTop()); + $css['border-left'] = $this->createCSSStyleBorder($pStyle->getLeft()); + $css['border-right'] = $this->createCSSStyleBorder($pStyle->getRight()); + + return $css; + } + + /** + * Create CSS style (PHPExcel_Style_Border) + * + * @param PHPExcel_Style_Border $pStyle PHPExcel_Style_Border + * @return string + */ + private function createCSSStyleBorder(PHPExcel_Style_Border $pStyle) + { + // Create CSS +// $css = $this->mapBorderStyle($pStyle->getBorderStyle()) . ' #' . $pStyle->getColor()->getRGB(); + // Create CSS - add !important to non-none border styles for merged cells + $borderStyle = $this->mapBorderStyle($pStyle->getBorderStyle()); + $css = $borderStyle . ' #' . $pStyle->getColor()->getRGB() . (($borderStyle == 'none') ? '' : ' !important'); + + return $css; + } + + /** + * Create CSS style (PHPExcel_Style_Fill) + * + * @param PHPExcel_Style_Fill $pStyle PHPExcel_Style_Fill + * @return array + */ + private function createCSSStyleFill(PHPExcel_Style_Fill $pStyle) + { + // Construct HTML + $css = array(); + + // Create CSS + $value = $pStyle->getFillType() == PHPExcel_Style_Fill::FILL_NONE ? + 'white' : '#' . $pStyle->getStartColor()->getRGB(); + $css['background-color'] = $value; + + return $css; + } + + /** + * Generate HTML footer + */ + public function generateHTMLFooter() + { + // Construct HTML + $html = ''; + $html .= ' </body>' . PHP_EOL; + $html .= '</html>' . PHP_EOL; + + return $html; + } + + /** + * Generate table header + * + * @param PHPExcel_Worksheet $pSheet The worksheet for the table we are writing + * @return string + * @throws PHPExcel_Writer_Exception + */ + private function generateTableHeader($pSheet) + { + $sheetIndex = $pSheet->getParent()->getIndex($pSheet); + + // Construct HTML + $html = ''; + $html .= $this->setMargins($pSheet); + + if (!$this->useInlineCss) { + $gridlines = $pSheet->getShowGridlines() ? ' gridlines' : ''; + $html .= ' <table border="0" cellpadding="0" cellspacing="0" id="sheet' . $sheetIndex . '" class="sheet' . $sheetIndex . $gridlines . '">' . PHP_EOL; + } else { + $style = isset($this->cssStyles['table']) ? + $this->assembleCSS($this->cssStyles['table']) : ''; + + if ($this->isPdf && $pSheet->getShowGridlines()) { + $html .= ' <table border="1" cellpadding="1" id="sheet' . $sheetIndex . '" cellspacing="1" style="' . $style . '">' . PHP_EOL; + } else { + $html .= ' <table border="0" cellpadding="1" id="sheet' . $sheetIndex . '" cellspacing="0" style="' . $style . '">' . PHP_EOL; + } + } + + // Write <col> elements + $highestColumnIndex = PHPExcel_Cell::columnIndexFromString($pSheet->getHighestColumn()) - 1; + $i = -1; + while ($i++ < $highestColumnIndex) { + if (!$this->isPdf) { + if (!$this->useInlineCss) { + $html .= ' <col class="col' . $i . '">' . PHP_EOL; + } else { + $style = isset($this->cssStyles['table.sheet' . $sheetIndex . ' col.col' . $i]) ? + $this->assembleCSS($this->cssStyles['table.sheet' . $sheetIndex . ' col.col' . $i]) : ''; + $html .= ' <col style="' . $style . '">' . PHP_EOL; + } + } + } + + return $html; + } + + /** + * Generate table footer + * + * @throws PHPExcel_Writer_Exception + */ + private function generateTableFooter() + { + $html = ' </table>' . PHP_EOL; + + return $html; + } + + /** + * Generate row + * + * @param PHPExcel_Worksheet $pSheet PHPExcel_Worksheet + * @param array $pValues Array containing cells in a row + * @param int $pRow Row number (0-based) + * @return string + * @throws PHPExcel_Writer_Exception + */ + private function generateRow(PHPExcel_Worksheet $pSheet, $pValues = null, $pRow = 0, $cellType = 'td') + { + if (is_array($pValues)) { + // Construct HTML + $html = ''; + + // Sheet index + $sheetIndex = $pSheet->getParent()->getIndex($pSheet); + + // DomPDF and breaks + if ($this->isPdf && count($pSheet->getBreaks()) > 0) { + $breaks = $pSheet->getBreaks(); + + // check if a break is needed before this row + if (isset($breaks['A' . $pRow])) { + // close table: </table> + $html .= $this->generateTableFooter(); + + // insert page break + $html .= '<div style="page-break-before:always" />'; + + // open table again: <table> + <col> etc. + $html .= $this->generateTableHeader($pSheet); + } + } + + // Write row start + if (!$this->useInlineCss) { + $html .= ' <tr class="row' . $pRow . '">' . PHP_EOL; + } else { + $style = isset($this->cssStyles['table.sheet' . $sheetIndex . ' tr.row' . $pRow]) + ? $this->assembleCSS($this->cssStyles['table.sheet' . $sheetIndex . ' tr.row' . $pRow]) : ''; + + $html .= ' <tr style="' . $style . '">' . PHP_EOL; + } + + // Write cells + $colNum = 0; + foreach ($pValues as $cellAddress) { + $cell = ($cellAddress > '') ? $pSheet->getCell($cellAddress) : ''; + $coordinate = PHPExcel_Cell::stringFromColumnIndex($colNum) . ($pRow + 1); + if (!$this->useInlineCss) { + $cssClass = ''; + $cssClass = 'column' . $colNum; + } else { + $cssClass = array(); + if ($cellType == 'th') { + if (isset($this->cssStyles['table.sheet' . $sheetIndex . ' th.column' . $colNum])) { + $this->cssStyles['table.sheet' . $sheetIndex . ' th.column' . $colNum]; + } + } else { + if (isset($this->cssStyles['table.sheet' . $sheetIndex . ' td.column' . $colNum])) { + $this->cssStyles['table.sheet' . $sheetIndex . ' td.column' . $colNum]; + } + } + } + $colSpan = 1; + $rowSpan = 1; + + // initialize + $cellData = '&nbsp;'; + + // PHPExcel_Cell + if ($cell instanceof PHPExcel_Cell) { + $cellData = ''; + if (is_null($cell->getParent())) { + $cell->attach($pSheet); + } + // Value + if ($cell->getValue() instanceof PHPExcel_RichText) { + // Loop through rich text elements + $elements = $cell->getValue()->getRichTextElements(); + foreach ($elements as $element) { + // Rich text start? + if ($element instanceof PHPExcel_RichText_Run) { + $cellData .= '<span style="' . $this->assembleCSS($this->createCSSStyleFont($element->getFont())) . '">'; + + if ($element->getFont()->getSuperScript()) { + $cellData .= '<sup>'; + } elseif ($element->getFont()->getSubScript()) { + $cellData .= '<sub>'; + } + } + + // Convert UTF8 data to PCDATA + $cellText = $element->getText(); + $cellData .= htmlspecialchars($cellText); + + if ($element instanceof PHPExcel_RichText_Run) { + if ($element->getFont()->getSuperScript()) { + $cellData .= '</sup>'; + } elseif ($element->getFont()->getSubScript()) { + $cellData .= '</sub>'; + } + + $cellData .= '</span>'; + } + } + } else { + if ($this->preCalculateFormulas) { + $cellData = PHPExcel_Style_NumberFormat::toFormattedString( + $cell->getCalculatedValue(), + $pSheet->getParent()->getCellXfByIndex($cell->getXfIndex())->getNumberFormat()->getFormatCode(), + array($this, 'formatColor') + ); + } else { + $cellData = PHPExcel_Style_NumberFormat::toFormattedString( + $cell->getValue(), + $pSheet->getParent()->getCellXfByIndex($cell->getXfIndex())->getNumberFormat()->getFormatCode(), + array($this, 'formatColor') + ); + } + $cellData = htmlspecialchars($cellData); + if ($pSheet->getParent()->getCellXfByIndex($cell->getXfIndex())->getFont()->getSuperScript()) { + $cellData = '<sup>'.$cellData.'</sup>'; + } elseif ($pSheet->getParent()->getCellXfByIndex($cell->getXfIndex())->getFont()->getSubScript()) { + $cellData = '<sub>'.$cellData.'</sub>'; + } + } + + // Converts the cell content so that spaces occuring at beginning of each new line are replaced by &nbsp; + // Example: " Hello\n to the world" is converted to "&nbsp;&nbsp;Hello\n&nbsp;to the world" + $cellData = preg_replace("/(?m)(?:^|\\G) /", '&nbsp;', $cellData); + + // convert newline "\n" to '<br>' + $cellData = nl2br($cellData); + + // Extend CSS class? + if (!$this->useInlineCss) { + $cssClass .= ' style' . $cell->getXfIndex(); + $cssClass .= ' ' . $cell->getDataType(); + } else { + if ($cellType == 'th') { + if (isset($this->cssStyles['th.style' . $cell->getXfIndex()])) { + $cssClass = array_merge($cssClass, $this->cssStyles['th.style' . $cell->getXfIndex()]); + } + } else { + if (isset($this->cssStyles['td.style' . $cell->getXfIndex()])) { + $cssClass = array_merge($cssClass, $this->cssStyles['td.style' . $cell->getXfIndex()]); + } + } + + // General horizontal alignment: Actual horizontal alignment depends on dataType + $sharedStyle = $pSheet->getParent()->getCellXfByIndex($cell->getXfIndex()); + if ($sharedStyle->getAlignment()->getHorizontal() == PHPExcel_Style_Alignment::HORIZONTAL_GENERAL + && isset($this->cssStyles['.' . $cell->getDataType()]['text-align'])) { + $cssClass['text-align'] = $this->cssStyles['.' . $cell->getDataType()]['text-align']; + } + } + } + + // Hyperlink? + if ($pSheet->hyperlinkExists($coordinate) && !$pSheet->getHyperlink($coordinate)->isInternal()) { + $cellData = '<a href="' . htmlspecialchars($pSheet->getHyperlink($coordinate)->getUrl()) . '" title="' . htmlspecialchars($pSheet->getHyperlink($coordinate)->getTooltip()) . '">' . $cellData . '</a>'; + } + + // Should the cell be written or is it swallowed by a rowspan or colspan? + $writeCell = !(isset($this->isSpannedCell[$pSheet->getParent()->getIndex($pSheet)][$pRow + 1][$colNum]) + && $this->isSpannedCell[$pSheet->getParent()->getIndex($pSheet)][$pRow + 1][$colNum]); + + // Colspan and Rowspan + $colspan = 1; + $rowspan = 1; + if (isset($this->isBaseCell[$pSheet->getParent()->getIndex($pSheet)][$pRow + 1][$colNum])) { + $spans = $this->isBaseCell[$pSheet->getParent()->getIndex($pSheet)][$pRow + 1][$colNum]; + $rowSpan = $spans['rowspan']; + $colSpan = $spans['colspan']; + + // Also apply style from last cell in merge to fix borders - + // relies on !important for non-none border declarations in createCSSStyleBorder + $endCellCoord = PHPExcel_Cell::stringFromColumnIndex($colNum + $colSpan - 1) . ($pRow + $rowSpan); + if (!$this->useInlineCss) { + $cssClass .= ' style' . $pSheet->getCell($endCellCoord)->getXfIndex(); + } + } + + // Write + if ($writeCell) { + // Column start + $html .= ' <' . $cellType; + if (!$this->useInlineCss) { + $html .= ' class="' . $cssClass . '"'; + } else { + //** Necessary redundant code for the sake of PHPExcel_Writer_PDF ** + // We must explicitly write the width of the <td> element because TCPDF + // does not recognize e.g. <col style="width:42pt"> + $width = 0; + $i = $colNum - 1; + $e = $colNum + $colSpan - 1; + while ($i++ < $e) { + if (isset($this->columnWidths[$sheetIndex][$i])) { + $width += $this->columnWidths[$sheetIndex][$i]; + } + } + $cssClass['width'] = $width . 'pt'; + + // We must also explicitly write the height of the <td> element because TCPDF + // does not recognize e.g. <tr style="height:50pt"> + if (isset($this->cssStyles['table.sheet' . $sheetIndex . ' tr.row' . $pRow]['height'])) { + $height = $this->cssStyles['table.sheet' . $sheetIndex . ' tr.row' . $pRow]['height']; + $cssClass['height'] = $height; + } + //** end of redundant code ** + + $html .= ' style="' . $this->assembleCSS($cssClass) . '"'; + } + if ($colSpan > 1) { + $html .= ' colspan="' . $colSpan . '"'; + } + if ($rowSpan > 1) { + $html .= ' rowspan="' . $rowSpan . '"'; + } + $html .= '>'; + + // Image? + $html .= $this->writeImageInCell($pSheet, $coordinate); + + // Chart? + if ($this->includeCharts) { + $html .= $this->writeChartInCell($pSheet, $coordinate); + } + + // Cell data + $html .= $cellData; + + // Column end + $html .= '</'.$cellType.'>' . PHP_EOL; + } + + // Next column + ++$colNum; + } + + // Write row end + $html .= ' </tr>' . PHP_EOL; + + // Return + return $html; + } else { + throw new PHPExcel_Writer_Exception("Invalid parameters passed."); + } + } + + /** + * Takes array where of CSS properties / values and converts to CSS string + * + * @param array + * @return string + */ + private function assembleCSS($pValue = array()) + { + $pairs = array(); + foreach ($pValue as $property => $value) { + $pairs[] = $property . ':' . $value; + } + $string = implode('; ', $pairs); + + return $string; + } + + /** + * Get images root + * + * @return string + */ + public function getImagesRoot() + { + return $this->imagesRoot; + } + + /** + * Set images root + * + * @param string $pValue + * @return PHPExcel_Writer_HTML + */ + public function setImagesRoot($pValue = '.') + { + $this->imagesRoot = $pValue; + return $this; + } + + /** + * Get embed images + * + * @return boolean + */ + public function getEmbedImages() + { + return $this->embedImages; + } + + /** + * Set embed images + * + * @param boolean $pValue + * @return PHPExcel_Writer_HTML + */ + public function setEmbedImages($pValue = '.') + { + $this->embedImages = $pValue; + return $this; + } + + /** + * Get use inline CSS? + * + * @return boolean + */ + public function getUseInlineCss() + { + return $this->useInlineCss; + } + + /** + * Set use inline CSS? + * + * @param boolean $pValue + * @return PHPExcel_Writer_HTML + */ + public function setUseInlineCss($pValue = false) + { + $this->useInlineCss = $pValue; + return $this; + } + + /** + * Add color to formatted string as inline style + * + * @param string $pValue Plain formatted value without color + * @param string $pFormat Format code + * @return string + */ + public function formatColor($pValue, $pFormat) + { + // Color information, e.g. [Red] is always at the beginning + $color = null; // initialize + $matches = array(); + + $color_regex = '/^\\[[a-zA-Z]+\\]/'; + if (preg_match($color_regex, $pFormat, $matches)) { + $color = str_replace('[', '', $matches[0]); + $color = str_replace(']', '', $color); + $color = strtolower($color); + } + + // convert to PCDATA + $value = htmlspecialchars($pValue); + + // color span tag + if ($color !== null) { + $value = '<span style="color:' . $color . '">' . $value . '</span>'; + } + + return $value; + } + + /** + * Calculate information about HTML colspan and rowspan which is not always the same as Excel's + */ + private function calculateSpans() + { + // Identify all cells that should be omitted in HTML due to cell merge. + // In HTML only the upper-left cell should be written and it should have + // appropriate rowspan / colspan attribute + $sheetIndexes = $this->sheetIndex !== null ? + array($this->sheetIndex) : range(0, $this->phpExcel->getSheetCount() - 1); + + foreach ($sheetIndexes as $sheetIndex) { + $sheet = $this->phpExcel->getSheet($sheetIndex); + + $candidateSpannedRow = array(); + + // loop through all Excel merged cells + foreach ($sheet->getMergeCells() as $cells) { + list($cells,) = PHPExcel_Cell::splitRange($cells); + $first = $cells[0]; + $last = $cells[1]; + + list($fc, $fr) = PHPExcel_Cell::coordinateFromString($first); + $fc = PHPExcel_Cell::columnIndexFromString($fc) - 1; + + list($lc, $lr) = PHPExcel_Cell::coordinateFromString($last); + $lc = PHPExcel_Cell::columnIndexFromString($lc) - 1; + + // loop through the individual cells in the individual merge + $r = $fr - 1; + while ($r++ < $lr) { + // also, flag this row as a HTML row that is candidate to be omitted + $candidateSpannedRow[$r] = $r; + + $c = $fc - 1; + while ($c++ < $lc) { + if (!($c == $fc && $r == $fr)) { + // not the upper-left cell (should not be written in HTML) + $this->isSpannedCell[$sheetIndex][$r][$c] = array( + 'baseCell' => array($fr, $fc), + ); + } else { + // upper-left is the base cell that should hold the colspan/rowspan attribute + $this->isBaseCell[$sheetIndex][$r][$c] = array( + 'xlrowspan' => $lr - $fr + 1, // Excel rowspan + 'rowspan' => $lr - $fr + 1, // HTML rowspan, value may change + 'xlcolspan' => $lc - $fc + 1, // Excel colspan + 'colspan' => $lc - $fc + 1, // HTML colspan, value may change + ); + } + } + } + } + + // Identify which rows should be omitted in HTML. These are the rows where all the cells + // participate in a merge and the where base cells are somewhere above. + $countColumns = PHPExcel_Cell::columnIndexFromString($sheet->getHighestColumn()); + foreach ($candidateSpannedRow as $rowIndex) { + if (isset($this->isSpannedCell[$sheetIndex][$rowIndex])) { + if (count($this->isSpannedCell[$sheetIndex][$rowIndex]) == $countColumns) { + $this->isSpannedRow[$sheetIndex][$rowIndex] = $rowIndex; + }; + } + } + + // For each of the omitted rows we found above, the affected rowspans should be subtracted by 1 + if (isset($this->isSpannedRow[$sheetIndex])) { + foreach ($this->isSpannedRow[$sheetIndex] as $rowIndex) { + $adjustedBaseCells = array(); + $c = -1; + $e = $countColumns - 1; + while ($c++ < $e) { + $baseCell = $this->isSpannedCell[$sheetIndex][$rowIndex][$c]['baseCell']; + + if (!in_array($baseCell, $adjustedBaseCells)) { + // subtract rowspan by 1 + --$this->isBaseCell[$sheetIndex][ $baseCell[0] ][ $baseCell[1] ]['rowspan']; + $adjustedBaseCells[] = $baseCell; + } + } + } + } + + // TODO: Same for columns + } + + // We have calculated the spans + $this->spansAreCalculated = true; + } + + private function setMargins(PHPExcel_Worksheet $pSheet) + { + $htmlPage = '@page { '; + $htmlBody = 'body { '; + + $left = PHPExcel_Shared_String::FormatNumber($pSheet->getPageMargins()->getLeft()) . 'in; '; + $htmlPage .= 'margin-left: ' . $left; + $htmlBody .= 'margin-left: ' . $left; + $right = PHPExcel_Shared_String::FormatNumber($pSheet->getPageMargins()->getRight()) . 'in; '; + $htmlPage .= 'margin-right: ' . $right; + $htmlBody .= 'margin-right: ' . $right; + $top = PHPExcel_Shared_String::FormatNumber($pSheet->getPageMargins()->getTop()) . 'in; '; + $htmlPage .= 'margin-top: ' . $top; + $htmlBody .= 'margin-top: ' . $top; + $bottom = PHPExcel_Shared_String::FormatNumber($pSheet->getPageMargins()->getBottom()) . 'in; '; + $htmlPage .= 'margin-bottom: ' . $bottom; + $htmlBody .= 'margin-bottom: ' . $bottom; + + $htmlPage .= "}\n"; + $htmlBody .= "}\n"; + + return "<style>\n" . $htmlPage . $htmlBody . "</style>\n"; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/IWriter.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/IWriter.php new file mode 100644 index 0000000..c7cfe74 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/IWriter.php @@ -0,0 +1,37 @@ +<?php + +/** + * PHPExcel_Writer_IWriter + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +interface PHPExcel_Writer_IWriter +{ + /** + * Save PHPExcel to file + * + * @param string $pFilename Name of the file to save + * @throws PHPExcel_Writer_Exception + */ + public function save($pFilename = null); +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument.php new file mode 100644 index 0000000..912ba9d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument.php @@ -0,0 +1,190 @@ +<?php + +/** + * PHPExcel_Writer_OpenDocument + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_OpenDocument + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_OpenDocument extends PHPExcel_Writer_Abstract implements PHPExcel_Writer_IWriter +{ + /** + * Private writer parts + * + * @var PHPExcel_Writer_OpenDocument_WriterPart[] + */ + private $writerParts = array(); + + /** + * Private PHPExcel + * + * @var PHPExcel + */ + private $spreadSheet; + + /** + * Create a new PHPExcel_Writer_OpenDocument + * + * @param PHPExcel $pPHPExcel + */ + public function __construct(PHPExcel $pPHPExcel = null) + { + $this->setPHPExcel($pPHPExcel); + + $writerPartsArray = array( + 'content' => 'PHPExcel_Writer_OpenDocument_Content', + 'meta' => 'PHPExcel_Writer_OpenDocument_Meta', + 'meta_inf' => 'PHPExcel_Writer_OpenDocument_MetaInf', + 'mimetype' => 'PHPExcel_Writer_OpenDocument_Mimetype', + 'settings' => 'PHPExcel_Writer_OpenDocument_Settings', + 'styles' => 'PHPExcel_Writer_OpenDocument_Styles', + 'thumbnails' => 'PHPExcel_Writer_OpenDocument_Thumbnails' + ); + + foreach ($writerPartsArray as $writer => $class) { + $this->writerParts[$writer] = new $class($this); + } + } + + /** + * Get writer part + * + * @param string $pPartName Writer part name + * @return PHPExcel_Writer_Excel2007_WriterPart + */ + public function getWriterPart($pPartName = '') + { + if ($pPartName != '' && isset($this->writerParts[strtolower($pPartName)])) { + return $this->writerParts[strtolower($pPartName)]; + } else { + return null; + } + } + + /** + * Save PHPExcel to file + * + * @param string $pFilename + * @throws PHPExcel_Writer_Exception + */ + public function save($pFilename = null) + { + if (!$this->spreadSheet) { + throw new PHPExcel_Writer_Exception('PHPExcel object unassigned.'); + } + + // garbage collect + $this->spreadSheet->garbageCollect(); + + // If $pFilename is php://output or php://stdout, make it a temporary file... + $originalFilename = $pFilename; + if (strtolower($pFilename) == 'php://output' || strtolower($pFilename) == 'php://stdout') { + $pFilename = @tempnam(PHPExcel_Shared_File::sys_get_temp_dir(), 'phpxltmp'); + if ($pFilename == '') { + $pFilename = $originalFilename; + } + } + + $objZip = $this->createZip($pFilename); + + $objZip->addFromString('META-INF/manifest.xml', $this->getWriterPart('meta_inf')->writeManifest()); + $objZip->addFromString('Thumbnails/thumbnail.png', $this->getWriterPart('thumbnails')->writeThumbnail()); + $objZip->addFromString('content.xml', $this->getWriterPart('content')->write()); + $objZip->addFromString('meta.xml', $this->getWriterPart('meta')->write()); + $objZip->addFromString('mimetype', $this->getWriterPart('mimetype')->write()); + $objZip->addFromString('settings.xml', $this->getWriterPart('settings')->write()); + $objZip->addFromString('styles.xml', $this->getWriterPart('styles')->write()); + + // Close file + if ($objZip->close() === false) { + throw new PHPExcel_Writer_Exception("Could not close zip file $pFilename."); + } + + // If a temporary file was used, copy it to the correct file stream + if ($originalFilename != $pFilename) { + if (copy($pFilename, $originalFilename) === false) { + throw new PHPExcel_Writer_Exception("Could not copy temporary zip file $pFilename to $originalFilename."); + } + @unlink($pFilename); + } + } + + /** + * Create zip object + * + * @param string $pFilename + * @throws PHPExcel_Writer_Exception + * @return ZipArchive + */ + private function createZip($pFilename) + { + // Create new ZIP file and open it for writing + $zipClass = PHPExcel_Settings::getZipClass(); + $objZip = new $zipClass(); + + // Retrieve OVERWRITE and CREATE constants from the instantiated zip class + // This method of accessing constant values from a dynamic class should work with all appropriate versions of PHP + $ro = new ReflectionObject($objZip); + $zipOverWrite = $ro->getConstant('OVERWRITE'); + $zipCreate = $ro->getConstant('CREATE'); + + if (file_exists($pFilename)) { + unlink($pFilename); + } + // Try opening the ZIP file + if ($objZip->open($pFilename, $zipOverWrite) !== true) { + if ($objZip->open($pFilename, $zipCreate) !== true) { + throw new PHPExcel_Writer_Exception("Could not open $pFilename for writing."); + } + } + + return $objZip; + } + + /** + * Get PHPExcel object + * + * @return PHPExcel + * @throws PHPExcel_Writer_Exception + */ + public function getPHPExcel() + { + if ($this->spreadSheet !== null) { + return $this->spreadSheet; + } else { + throw new PHPExcel_Writer_Exception('No PHPExcel assigned.'); + } + } + + /** + * Set PHPExcel object + * + * @param PHPExcel $pPHPExcel PHPExcel object + * @throws PHPExcel_Writer_Exception + * @return PHPExcel_Writer_Excel2007 + */ + public function setPHPExcel(PHPExcel $pPHPExcel = null) + { + $this->spreadSheet = $pPHPExcel; + return $this; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Cell/Comment.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Cell/Comment.php new file mode 100644 index 0000000..f1e98a1 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Cell/Comment.php @@ -0,0 +1,63 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_OpenDocument + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + + +/** + * PHPExcel_Writer_OpenDocument_Cell_Comment + * + * @category PHPExcel + * @package PHPExcel_Writer_OpenDocument + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @author Alexander Pervakov <frost-nzcr4@jagmort.com> + */ +class PHPExcel_Writer_OpenDocument_Cell_Comment +{ + public static function write(PHPExcel_Shared_XMLWriter $objWriter, PHPExcel_Cell $cell) + { + $comments = $cell->getWorksheet()->getComments(); + if (!isset($comments[$cell->getCoordinate()])) { + return; + } + $comment = $comments[$cell->getCoordinate()]; + + $objWriter->startElement('office:annotation'); + //$objWriter->writeAttribute('draw:style-name', 'gr1'); + //$objWriter->writeAttribute('draw:text-style-name', 'P1'); + $objWriter->writeAttribute('svg:width', $comment->getWidth()); + $objWriter->writeAttribute('svg:height', $comment->getHeight()); + $objWriter->writeAttribute('svg:x', $comment->getMarginLeft()); + $objWriter->writeAttribute('svg:y', $comment->getMarginTop()); + //$objWriter->writeAttribute('draw:caption-point-x', $comment->getMarginLeft()); + //$objWriter->writeAttribute('draw:caption-point-y', $comment->getMarginTop()); + $objWriter->writeElement('dc:creator', $comment->getAuthor()); + // TODO: Not realized in PHPExcel_Comment yet. + //$objWriter->writeElement('dc:date', $comment->getDate()); + $objWriter->writeElement('text:p', $comment->getText()->getPlainText()); + //$objWriter->writeAttribute('draw:text-style-name', 'P1'); + $objWriter->endElement(); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Content.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Content.php new file mode 100644 index 0000000..a34b167 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Content.php @@ -0,0 +1,272 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_OpenDocument + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + + +/** + * PHPExcel_Writer_OpenDocument_Content + * + * @category PHPExcel + * @package PHPExcel_Writer_OpenDocument + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @author Alexander Pervakov <frost-nzcr4@jagmort.com> + */ +class PHPExcel_Writer_OpenDocument_Content extends PHPExcel_Writer_OpenDocument_WriterPart +{ + const NUMBER_COLS_REPEATED_MAX = 1024; + const NUMBER_ROWS_REPEATED_MAX = 1048576; + + /** + * Write content.xml to XML format + * + * @param PHPExcel $pPHPExcel + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function write(PHPExcel $pPHPExcel = null) + { + if (!$pPHPExcel) { + $pPHPExcel = $this->getParentWriter()->getPHPExcel(); /* @var $pPHPExcel PHPExcel */ + } + + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8'); + + // Content + $objWriter->startElement('office:document-content'); + $objWriter->writeAttribute('xmlns:office', 'urn:oasis:names:tc:opendocument:xmlns:office:1.0'); + $objWriter->writeAttribute('xmlns:style', 'urn:oasis:names:tc:opendocument:xmlns:style:1.0'); + $objWriter->writeAttribute('xmlns:text', 'urn:oasis:names:tc:opendocument:xmlns:text:1.0'); + $objWriter->writeAttribute('xmlns:table', 'urn:oasis:names:tc:opendocument:xmlns:table:1.0'); + $objWriter->writeAttribute('xmlns:draw', 'urn:oasis:names:tc:opendocument:xmlns:drawing:1.0'); + $objWriter->writeAttribute('xmlns:fo', 'urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0'); + $objWriter->writeAttribute('xmlns:xlink', 'http://www.w3.org/1999/xlink'); + $objWriter->writeAttribute('xmlns:dc', 'http://purl.org/dc/elements/1.1/'); + $objWriter->writeAttribute('xmlns:meta', 'urn:oasis:names:tc:opendocument:xmlns:meta:1.0'); + $objWriter->writeAttribute('xmlns:number', 'urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0'); + $objWriter->writeAttribute('xmlns:presentation', 'urn:oasis:names:tc:opendocument:xmlns:presentation:1.0'); + $objWriter->writeAttribute('xmlns:svg', 'urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0'); + $objWriter->writeAttribute('xmlns:chart', 'urn:oasis:names:tc:opendocument:xmlns:chart:1.0'); + $objWriter->writeAttribute('xmlns:dr3d', 'urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0'); + $objWriter->writeAttribute('xmlns:math', 'http://www.w3.org/1998/Math/MathML'); + $objWriter->writeAttribute('xmlns:form', 'urn:oasis:names:tc:opendocument:xmlns:form:1.0'); + $objWriter->writeAttribute('xmlns:script', 'urn:oasis:names:tc:opendocument:xmlns:script:1.0'); + $objWriter->writeAttribute('xmlns:ooo', 'http://openoffice.org/2004/office'); + $objWriter->writeAttribute('xmlns:ooow', 'http://openoffice.org/2004/writer'); + $objWriter->writeAttribute('xmlns:oooc', 'http://openoffice.org/2004/calc'); + $objWriter->writeAttribute('xmlns:dom', 'http://www.w3.org/2001/xml-events'); + $objWriter->writeAttribute('xmlns:xforms', 'http://www.w3.org/2002/xforms'); + $objWriter->writeAttribute('xmlns:xsd', 'http://www.w3.org/2001/XMLSchema'); + $objWriter->writeAttribute('xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance'); + $objWriter->writeAttribute('xmlns:rpt', 'http://openoffice.org/2005/report'); + $objWriter->writeAttribute('xmlns:of', 'urn:oasis:names:tc:opendocument:xmlns:of:1.2'); + $objWriter->writeAttribute('xmlns:xhtml', 'http://www.w3.org/1999/xhtml'); + $objWriter->writeAttribute('xmlns:grddl', 'http://www.w3.org/2003/g/data-view#'); + $objWriter->writeAttribute('xmlns:tableooo', 'http://openoffice.org/2009/table'); + $objWriter->writeAttribute('xmlns:field', 'urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0'); + $objWriter->writeAttribute('xmlns:formx', 'urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0'); + $objWriter->writeAttribute('xmlns:css3t', 'http://www.w3.org/TR/css3-text/'); + $objWriter->writeAttribute('office:version', '1.2'); + + $objWriter->writeElement('office:scripts'); + $objWriter->writeElement('office:font-face-decls'); + $objWriter->writeElement('office:automatic-styles'); + + $objWriter->startElement('office:body'); + $objWriter->startElement('office:spreadsheet'); + $objWriter->writeElement('table:calculation-settings'); + $this->writeSheets($objWriter); + $objWriter->writeElement('table:named-expressions'); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + + return $objWriter->getData(); + } + + /** + * Write sheets + * + * @param PHPExcel_Shared_XMLWriter $objWriter + */ + private function writeSheets(PHPExcel_Shared_XMLWriter $objWriter) + { + $pPHPExcel = $this->getParentWriter()->getPHPExcel(); /* @var $pPHPExcel PHPExcel */ + + $sheet_count = $pPHPExcel->getSheetCount(); + for ($i = 0; $i < $sheet_count; $i++) { + //$this->getWriterPart('Worksheet')->writeWorksheet()); + $objWriter->startElement('table:table'); + $objWriter->writeAttribute('table:name', $pPHPExcel->getSheet($i)->getTitle()); + $objWriter->writeElement('office:forms'); + $objWriter->startElement('table:table-column'); + $objWriter->writeAttribute('table:number-columns-repeated', self::NUMBER_COLS_REPEATED_MAX); + $objWriter->endElement(); + $this->writeRows($objWriter, $pPHPExcel->getSheet($i)); + $objWriter->endElement(); + } + } + + /** + * Write rows of the specified sheet + * + * @param PHPExcel_Shared_XMLWriter $objWriter + * @param PHPExcel_Worksheet $sheet + */ + private function writeRows(PHPExcel_Shared_XMLWriter $objWriter, PHPExcel_Worksheet $sheet) + { + $number_rows_repeated = self::NUMBER_ROWS_REPEATED_MAX; + $span_row = 0; + $rows = $sheet->getRowIterator(); + while ($rows->valid()) { + $number_rows_repeated--; + $row = $rows->current(); + if ($row->getCellIterator()->valid()) { + if ($span_row) { + $objWriter->startElement('table:table-row'); + if ($span_row > 1) { + $objWriter->writeAttribute('table:number-rows-repeated', $span_row); + } + $objWriter->startElement('table:table-cell'); + $objWriter->writeAttribute('table:number-columns-repeated', self::NUMBER_COLS_REPEATED_MAX); + $objWriter->endElement(); + $objWriter->endElement(); + $span_row = 0; + } + $objWriter->startElement('table:table-row'); + $this->writeCells($objWriter, $row); + $objWriter->endElement(); + } else { + $span_row++; + } + $rows->next(); + } + } + + /** + * Write cells of the specified row + * + * @param PHPExcel_Shared_XMLWriter $objWriter + * @param PHPExcel_Worksheet_Row $row + * @throws PHPExcel_Writer_Exception + */ + private function writeCells(PHPExcel_Shared_XMLWriter $objWriter, PHPExcel_Worksheet_Row $row) + { + $number_cols_repeated = self::NUMBER_COLS_REPEATED_MAX; + $prev_column = -1; + $cells = $row->getCellIterator(); + while ($cells->valid()) { + $cell = $cells->current(); + $column = PHPExcel_Cell::columnIndexFromString($cell->getColumn()) - 1; + + $this->writeCellSpan($objWriter, $column, $prev_column); + $objWriter->startElement('table:table-cell'); + + switch ($cell->getDataType()) { + case PHPExcel_Cell_DataType::TYPE_BOOL: + $objWriter->writeAttribute('office:value-type', 'boolean'); + $objWriter->writeAttribute('office:value', $cell->getValue()); + $objWriter->writeElement('text:p', $cell->getValue()); + break; + + case PHPExcel_Cell_DataType::TYPE_ERROR: + throw new PHPExcel_Writer_Exception('Writing of error not implemented yet.'); + break; + + case PHPExcel_Cell_DataType::TYPE_FORMULA: + try { + $formula_value = $cell->getCalculatedValue(); + } catch (Exception $e) { + $formula_value = $cell->getValue(); + } + $objWriter->writeAttribute('table:formula', 'of:' . $cell->getValue()); + if (is_numeric($formula_value)) { + $objWriter->writeAttribute('office:value-type', 'float'); + } else { + $objWriter->writeAttribute('office:value-type', 'string'); + } + $objWriter->writeAttribute('office:value', $formula_value); + $objWriter->writeElement('text:p', $formula_value); + break; + + case PHPExcel_Cell_DataType::TYPE_INLINE: + throw new PHPExcel_Writer_Exception('Writing of inline not implemented yet.'); + break; + + case PHPExcel_Cell_DataType::TYPE_NUMERIC: + $objWriter->writeAttribute('office:value-type', 'float'); + $objWriter->writeAttribute('office:value', $cell->getValue()); + $objWriter->writeElement('text:p', $cell->getValue()); + break; + + case PHPExcel_Cell_DataType::TYPE_STRING: + $objWriter->writeAttribute('office:value-type', 'string'); + $objWriter->writeElement('text:p', $cell->getValue()); + break; + } + PHPExcel_Writer_OpenDocument_Cell_Comment::write($objWriter, $cell); + $objWriter->endElement(); + $prev_column = $column; + $cells->next(); + } + $number_cols_repeated = $number_cols_repeated - $prev_column - 1; + if ($number_cols_repeated > 0) { + if ($number_cols_repeated > 1) { + $objWriter->startElement('table:table-cell'); + $objWriter->writeAttribute('table:number-columns-repeated', $number_cols_repeated); + $objWriter->endElement(); + } else { + $objWriter->writeElement('table:table-cell'); + } + } + } + + /** + * Write span + * + * @param PHPExcel_Shared_XMLWriter $objWriter + * @param integer $curColumn + * @param integer $prevColumn + */ + private function writeCellSpan(PHPExcel_Shared_XMLWriter $objWriter, $curColumn, $prevColumn) + { + $diff = $curColumn - $prevColumn - 1; + if (1 === $diff) { + $objWriter->writeElement('table:table-cell'); + } elseif ($diff > 1) { + $objWriter->startElement('table:table-cell'); + $objWriter->writeAttribute('table:number-columns-repeated', $diff); + $objWriter->endElement(); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Meta.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Meta.php new file mode 100644 index 0000000..1a5c5fd --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Meta.php @@ -0,0 +1,95 @@ +<?php + +/** + * PHPExcel_Writer_OpenDocument_Meta + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_OpenDocument + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_OpenDocument_Meta extends PHPExcel_Writer_OpenDocument_WriterPart +{ + /** + * Write meta.xml to XML format + * + * @param PHPExcel $pPHPExcel + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function write(PHPExcel $pPHPExcel = null) + { + if (!$pPHPExcel) { + $pPHPExcel = $this->getParentWriter()->getPHPExcel(); + } + + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8'); + + // Meta + $objWriter->startElement('office:document-meta'); + + $objWriter->writeAttribute('xmlns:office', 'urn:oasis:names:tc:opendocument:xmlns:office:1.0'); + $objWriter->writeAttribute('xmlns:xlink', 'http://www.w3.org/1999/xlink'); + $objWriter->writeAttribute('xmlns:dc', 'http://purl.org/dc/elements/1.1/'); + $objWriter->writeAttribute('xmlns:meta', 'urn:oasis:names:tc:opendocument:xmlns:meta:1.0'); + $objWriter->writeAttribute('xmlns:ooo', 'http://openoffice.org/2004/office'); + $objWriter->writeAttribute('xmlns:grddl', 'http://www.w3.org/2003/g/data-view#'); + $objWriter->writeAttribute('office:version', '1.2'); + + $objWriter->startElement('office:meta'); + + $objWriter->writeElement('meta:initial-creator', $pPHPExcel->getProperties()->getCreator()); + $objWriter->writeElement('dc:creator', $pPHPExcel->getProperties()->getCreator()); + $objWriter->writeElement('meta:creation-date', date(DATE_W3C, $pPHPExcel->getProperties()->getCreated())); + $objWriter->writeElement('dc:date', date(DATE_W3C, $pPHPExcel->getProperties()->getCreated())); + $objWriter->writeElement('dc:title', $pPHPExcel->getProperties()->getTitle()); + $objWriter->writeElement('dc:description', $pPHPExcel->getProperties()->getDescription()); + $objWriter->writeElement('dc:subject', $pPHPExcel->getProperties()->getSubject()); + $keywords = explode(' ', $pPHPExcel->getProperties()->getKeywords()); + foreach ($keywords as $keyword) { + $objWriter->writeElement('meta:keyword', $keyword); + } + + //<meta:document-statistic meta:table-count="XXX" meta:cell-count="XXX" meta:object-count="XXX"/> + $objWriter->startElement('meta:user-defined'); + $objWriter->writeAttribute('meta:name', 'Company'); + $objWriter->writeRaw($pPHPExcel->getProperties()->getCompany()); + $objWriter->endElement(); + + $objWriter->startElement('meta:user-defined'); + $objWriter->writeAttribute('meta:name', 'category'); + $objWriter->writeRaw($pPHPExcel->getProperties()->getCategory()); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + return $objWriter->getData(); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/MetaInf.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/MetaInf.php new file mode 100644 index 0000000..c43b723 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/MetaInf.php @@ -0,0 +1,87 @@ +<?php + +/** + * PHPExcel_Writer_OpenDocument_MetaInf + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_OpenDocument + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_OpenDocument_MetaInf extends PHPExcel_Writer_OpenDocument_WriterPart +{ + /** + * Write META-INF/manifest.xml to XML format + * + * @param PHPExcel $pPHPExcel + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeManifest(PHPExcel $pPHPExcel = null) + { + if (!$pPHPExcel) { + $pPHPExcel = $this->getParentWriter()->getPHPExcel(); + } + + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8'); + + // Manifest + $objWriter->startElement('manifest:manifest'); + $objWriter->writeAttribute('xmlns:manifest', 'urn:oasis:names:tc:opendocument:xmlns:manifest:1.0'); + $objWriter->writeAttribute('manifest:version', '1.2'); + + $objWriter->startElement('manifest:file-entry'); + $objWriter->writeAttribute('manifest:full-path', '/'); + $objWriter->writeAttribute('manifest:version', '1.2'); + $objWriter->writeAttribute('manifest:media-type', 'application/vnd.oasis.opendocument.spreadsheet'); + $objWriter->endElement(); + $objWriter->startElement('manifest:file-entry'); + $objWriter->writeAttribute('manifest:full-path', 'meta.xml'); + $objWriter->writeAttribute('manifest:media-type', 'text/xml'); + $objWriter->endElement(); + $objWriter->startElement('manifest:file-entry'); + $objWriter->writeAttribute('manifest:full-path', 'settings.xml'); + $objWriter->writeAttribute('manifest:media-type', 'text/xml'); + $objWriter->endElement(); + $objWriter->startElement('manifest:file-entry'); + $objWriter->writeAttribute('manifest:full-path', 'content.xml'); + $objWriter->writeAttribute('manifest:media-type', 'text/xml'); + $objWriter->endElement(); + $objWriter->startElement('manifest:file-entry'); + $objWriter->writeAttribute('manifest:full-path', 'Thumbnails/thumbnail.png'); + $objWriter->writeAttribute('manifest:media-type', 'image/png'); + $objWriter->endElement(); + $objWriter->startElement('manifest:file-entry'); + $objWriter->writeAttribute('manifest:full-path', 'styles.xml'); + $objWriter->writeAttribute('manifest:media-type', 'text/xml'); + $objWriter->endElement(); + $objWriter->endElement(); + + return $objWriter->getData(); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Mimetype.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Mimetype.php new file mode 100644 index 0000000..d51a8b9 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Mimetype.php @@ -0,0 +1,41 @@ +<?php + +/** + * PHPExcel + * + * PHPExcel_Writer_OpenDocument_Mimetype + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_OpenDocument + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_OpenDocument_Mimetype extends PHPExcel_Writer_OpenDocument_WriterPart +{ + /** + * Write mimetype to plain text format + * + * @param PHPExcel $pPHPExcel + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function write(PHPExcel $pPHPExcel = null) + { + return 'application/vnd.oasis.opendocument.spreadsheet'; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Settings.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Settings.php new file mode 100644 index 0000000..84161b6 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Settings.php @@ -0,0 +1,76 @@ +<?php + +/** + * PHPExcel_Writer_OpenDocument_Settings + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_OpenDocument + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_OpenDocument_Settings extends PHPExcel_Writer_OpenDocument_WriterPart +{ + /** + * Write settings.xml to XML format + * + * @param PHPExcel $pPHPExcel + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function write(PHPExcel $pPHPExcel = null) + { + if (!$pPHPExcel) { + $pPHPExcel = $this->getParentWriter()->getPHPExcel(); + } + + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8'); + + // Settings + $objWriter->startElement('office:document-settings'); + $objWriter->writeAttribute('xmlns:office', 'urn:oasis:names:tc:opendocument:xmlns:office:1.0'); + $objWriter->writeAttribute('xmlns:xlink', 'http://www.w3.org/1999/xlink'); + $objWriter->writeAttribute('xmlns:config', 'urn:oasis:names:tc:opendocument:xmlns:config:1.0'); + $objWriter->writeAttribute('xmlns:ooo', 'http://openoffice.org/2004/office'); + $objWriter->writeAttribute('office:version', '1.2'); + + $objWriter->startElement('office:settings'); + $objWriter->startElement('config:config-item-set'); + $objWriter->writeAttribute('config:name', 'ooo:view-settings'); + $objWriter->startElement('config:config-item-map-indexed'); + $objWriter->writeAttribute('config:name', 'Views'); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->startElement('config:config-item-set'); + $objWriter->writeAttribute('config:name', 'ooo:configuration-settings'); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + + return $objWriter->getData(); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Styles.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Styles.php new file mode 100644 index 0000000..cc6e25b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Styles.php @@ -0,0 +1,92 @@ +<?php + +/** + * PHPExcel_Writer_OpenDocument_Styles + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_OpenDocument + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_OpenDocument_Styles extends PHPExcel_Writer_OpenDocument_WriterPart +{ + /** + * Write styles.xml to XML format + * + * @param PHPExcel $pPHPExcel + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function write(PHPExcel $pPHPExcel = null) + { + if (!$pPHPExcel) { + $pPHPExcel = $this->getParentWriter()->getPHPExcel(); + } + + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8'); + + // Content + $objWriter->startElement('office:document-styles'); + $objWriter->writeAttribute('xmlns:office', 'urn:oasis:names:tc:opendocument:xmlns:office:1.0'); + $objWriter->writeAttribute('xmlns:style', 'urn:oasis:names:tc:opendocument:xmlns:style:1.0'); + $objWriter->writeAttribute('xmlns:text', 'urn:oasis:names:tc:opendocument:xmlns:text:1.0'); + $objWriter->writeAttribute('xmlns:table', 'urn:oasis:names:tc:opendocument:xmlns:table:1.0'); + $objWriter->writeAttribute('xmlns:draw', 'urn:oasis:names:tc:opendocument:xmlns:drawing:1.0'); + $objWriter->writeAttribute('xmlns:fo', 'urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0'); + $objWriter->writeAttribute('xmlns:xlink', 'http://www.w3.org/1999/xlink'); + $objWriter->writeAttribute('xmlns:dc', 'http://purl.org/dc/elements/1.1/'); + $objWriter->writeAttribute('xmlns:meta', 'urn:oasis:names:tc:opendocument:xmlns:meta:1.0'); + $objWriter->writeAttribute('xmlns:number', 'urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0'); + $objWriter->writeAttribute('xmlns:presentation', 'urn:oasis:names:tc:opendocument:xmlns:presentation:1.0'); + $objWriter->writeAttribute('xmlns:svg', 'urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0'); + $objWriter->writeAttribute('xmlns:chart', 'urn:oasis:names:tc:opendocument:xmlns:chart:1.0'); + $objWriter->writeAttribute('xmlns:dr3d', 'urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0'); + $objWriter->writeAttribute('xmlns:math', 'http://www.w3.org/1998/Math/MathML'); + $objWriter->writeAttribute('xmlns:form', 'urn:oasis:names:tc:opendocument:xmlns:form:1.0'); + $objWriter->writeAttribute('xmlns:script', 'urn:oasis:names:tc:opendocument:xmlns:script:1.0'); + $objWriter->writeAttribute('xmlns:ooo', 'http://openoffice.org/2004/office'); + $objWriter->writeAttribute('xmlns:ooow', 'http://openoffice.org/2004/writer'); + $objWriter->writeAttribute('xmlns:oooc', 'http://openoffice.org/2004/calc'); + $objWriter->writeAttribute('xmlns:dom', 'http://www.w3.org/2001/xml-events'); + $objWriter->writeAttribute('xmlns:rpt', 'http://openoffice.org/2005/report'); + $objWriter->writeAttribute('xmlns:of', 'urn:oasis:names:tc:opendocument:xmlns:of:1.2'); + $objWriter->writeAttribute('xmlns:xhtml', 'http://www.w3.org/1999/xhtml'); + $objWriter->writeAttribute('xmlns:grddl', 'http://www.w3.org/2003/g/data-view#'); + $objWriter->writeAttribute('xmlns:tableooo', 'http://openoffice.org/2009/table'); + $objWriter->writeAttribute('xmlns:css3t', 'http://www.w3.org/TR/css3-text/'); + $objWriter->writeAttribute('office:version', '1.2'); + + $objWriter->writeElement('office:font-face-decls'); + $objWriter->writeElement('office:styles'); + $objWriter->writeElement('office:automatic-styles'); + $objWriter->writeElement('office:master-styles'); + $objWriter->endElement(); + + return $objWriter->getData(); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Thumbnails.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Thumbnails.php new file mode 100644 index 0000000..54247ae --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Thumbnails.php @@ -0,0 +1,41 @@ +<?php + +/** + * PHPExcel_Writer_OpenDocument_Thumbnails + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_OpenDocument + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_OpenDocument_Thumbnails extends PHPExcel_Writer_OpenDocument_WriterPart +{ + /** + * Write Thumbnails/thumbnail.png to PNG format + * + * @param PHPExcel $pPHPExcel + * @return string XML Output + * @throws PHPExcel_Writer_Exception + */ + public function writeThumbnail(PHPExcel $pPHPExcel = null) + { + return ''; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/WriterPart.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/WriterPart.php new file mode 100644 index 0000000..562787a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/WriterPart.php @@ -0,0 +1,30 @@ +<?php + +/** + * PHPExcel_Writer_OpenDocument_WriterPart + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_OpenDocument + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +abstract class PHPExcel_Writer_OpenDocument_WriterPart extends PHPExcel_Writer_Excel2007_WriterPart +{ +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF.php new file mode 100644 index 0000000..579edfa --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF.php @@ -0,0 +1,89 @@ +<?php + +/** + * PHPExcel_Writer_PDF + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_PDF + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_PDF implements PHPExcel_Writer_IWriter +{ + + /** + * The wrapper for the requested PDF rendering engine + * + * @var PHPExcel_Writer_PDF_Core + */ + private $renderer = null; + + /** + * Instantiate a new renderer of the configured type within this container class + * + * @param PHPExcel $phpExcel PHPExcel object + * @throws PHPExcel_Writer_Exception when PDF library is not configured + */ + public function __construct(PHPExcel $phpExcel) + { + $pdfLibraryName = PHPExcel_Settings::getPdfRendererName(); + if (is_null($pdfLibraryName)) { + throw new PHPExcel_Writer_Exception("PDF Rendering library has not been defined."); + } + + $pdfLibraryPath = PHPExcel_Settings::getPdfRendererPath(); + if (is_null($pdfLibraryName)) { + throw new PHPExcel_Writer_Exception("PDF Rendering library path has not been defined."); + } + $includePath = str_replace('\\', '/', get_include_path()); + $rendererPath = str_replace('\\', '/', $pdfLibraryPath); + if (strpos($rendererPath, $includePath) === false) { + set_include_path(get_include_path() . PATH_SEPARATOR . $pdfLibraryPath); + } + + $rendererName = 'PHPExcel_Writer_PDF_' . $pdfLibraryName; + $this->renderer = new $rendererName($phpExcel); + } + + + /** + * Magic method to handle direct calls to the configured PDF renderer wrapper class. + * + * @param string $name Renderer library method name + * @param mixed[] $arguments Array of arguments to pass to the renderer method + * @return mixed Returned data from the PDF renderer wrapper method + */ + public function __call($name, $arguments) + { + if ($this->renderer === null) { + throw new PHPExcel_Writer_Exception("PDF Rendering library has not been defined."); + } + + return call_user_func_array(array($this->renderer, $name), $arguments); + } + + /** + * {@inheritdoc} + */ + public function save($pFilename = null) + { + $this->renderer->save($pFilename); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/Core.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/Core.php new file mode 100644 index 0000000..4fed84a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/Core.php @@ -0,0 +1,355 @@ +<?php + +/** + * PHPExcel_Writer_PDF_Core + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_PDF + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +abstract class PHPExcel_Writer_PDF_Core extends PHPExcel_Writer_HTML +{ + /** + * Temporary storage directory + * + * @var string + */ + protected $tempDir = ''; + + /** + * Font + * + * @var string + */ + protected $font = 'freesans'; + + /** + * Orientation (Over-ride) + * + * @var string + */ + protected $orientation; + + /** + * Paper size (Over-ride) + * + * @var int + */ + protected $paperSize; + + + /** + * Temporary storage for Save Array Return type + * + * @var string + */ + private $saveArrayReturnType; + + /** + * Paper Sizes xRef List + * + * @var array + */ + protected static $paperSizes = array( + PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER + => 'LETTER', // (8.5 in. by 11 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER_SMALL + => 'LETTER', // (8.5 in. by 11 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_TABLOID + => array(792.00, 1224.00), // (11 in. by 17 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_LEDGER + => array(1224.00, 792.00), // (17 in. by 11 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_LEGAL + => 'LEGAL', // (8.5 in. by 14 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_STATEMENT + => array(396.00, 612.00), // (5.5 in. by 8.5 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_EXECUTIVE + => 'EXECUTIVE', // (7.25 in. by 10.5 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_A3 + => 'A3', // (297 mm by 420 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4 + => 'A4', // (210 mm by 297 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4_SMALL + => 'A4', // (210 mm by 297 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_A5 + => 'A5', // (148 mm by 210 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_B4 + => 'B4', // (250 mm by 353 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_B5 + => 'B5', // (176 mm by 250 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_FOLIO + => 'FOLIO', // (8.5 in. by 13 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_QUARTO + => array(609.45, 779.53), // (215 mm by 275 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_STANDARD_1 + => array(720.00, 1008.00), // (10 in. by 14 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_STANDARD_2 + => array(792.00, 1224.00), // (11 in. by 17 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_NOTE + => 'LETTER', // (8.5 in. by 11 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_NO9_ENVELOPE + => array(279.00, 639.00), // (3.875 in. by 8.875 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_NO10_ENVELOPE + => array(297.00, 684.00), // (4.125 in. by 9.5 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_NO11_ENVELOPE + => array(324.00, 747.00), // (4.5 in. by 10.375 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_NO12_ENVELOPE + => array(342.00, 792.00), // (4.75 in. by 11 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_NO14_ENVELOPE + => array(360.00, 828.00), // (5 in. by 11.5 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_C + => array(1224.00, 1584.00), // (17 in. by 22 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_D + => array(1584.00, 2448.00), // (22 in. by 34 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_E + => array(2448.00, 3168.00), // (34 in. by 44 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_DL_ENVELOPE + => array(311.81, 623.62), // (110 mm by 220 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_C5_ENVELOPE + => 'C5', // (162 mm by 229 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_C3_ENVELOPE + => 'C3', // (324 mm by 458 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_C4_ENVELOPE + => 'C4', // (229 mm by 324 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_C6_ENVELOPE + => 'C6', // (114 mm by 162 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_C65_ENVELOPE + => array(323.15, 649.13), // (114 mm by 229 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_B4_ENVELOPE + => 'B4', // (250 mm by 353 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_B5_ENVELOPE + => 'B5', // (176 mm by 250 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_B6_ENVELOPE + => array(498.90, 354.33), // (176 mm by 125 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_ITALY_ENVELOPE + => array(311.81, 651.97), // (110 mm by 230 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_MONARCH_ENVELOPE + => array(279.00, 540.00), // (3.875 in. by 7.5 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_6_3_4_ENVELOPE + => array(261.00, 468.00), // (3.625 in. by 6.5 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_US_STANDARD_FANFOLD + => array(1071.00, 792.00), // (14.875 in. by 11 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_GERMAN_STANDARD_FANFOLD + => array(612.00, 864.00), // (8.5 in. by 12 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_GERMAN_LEGAL_FANFOLD + => 'FOLIO', // (8.5 in. by 13 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_ISO_B4 + => 'B4', // (250 mm by 353 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_JAPANESE_DOUBLE_POSTCARD + => array(566.93, 419.53), // (200 mm by 148 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_STANDARD_PAPER_1 + => array(648.00, 792.00), // (9 in. by 11 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_STANDARD_PAPER_2 + => array(720.00, 792.00), // (10 in. by 11 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_STANDARD_PAPER_3 + => array(1080.00, 792.00), // (15 in. by 11 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_INVITE_ENVELOPE + => array(623.62, 623.62), // (220 mm by 220 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER_EXTRA_PAPER + => array(667.80, 864.00), // (9.275 in. by 12 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_LEGAL_EXTRA_PAPER + => array(667.80, 1080.00), // (9.275 in. by 15 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_TABLOID_EXTRA_PAPER + => array(841.68, 1296.00), // (11.69 in. by 18 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4_EXTRA_PAPER + => array(668.98, 912.76), // (236 mm by 322 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER_TRANSVERSE_PAPER + => array(595.80, 792.00), // (8.275 in. by 11 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4_TRANSVERSE_PAPER + => 'A4', // (210 mm by 297 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER_EXTRA_TRANSVERSE_PAPER + => array(667.80, 864.00), // (9.275 in. by 12 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_SUPERA_SUPERA_A4_PAPER + => array(643.46, 1009.13), // (227 mm by 356 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_SUPERB_SUPERB_A3_PAPER + => array(864.57, 1380.47), // (305 mm by 487 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER_PLUS_PAPER + => array(612.00, 913.68), // (8.5 in. by 12.69 in.) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4_PLUS_PAPER + => array(595.28, 935.43), // (210 mm by 330 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_A5_TRANSVERSE_PAPER + => 'A5', // (148 mm by 210 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_JIS_B5_TRANSVERSE_PAPER + => array(515.91, 728.50), // (182 mm by 257 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_A3_EXTRA_PAPER + => array(912.76, 1261.42), // (322 mm by 445 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_A5_EXTRA_PAPER + => array(493.23, 666.14), // (174 mm by 235 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_ISO_B5_EXTRA_PAPER + => array(569.76, 782.36), // (201 mm by 276 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_A2_PAPER + => 'A2', // (420 mm by 594 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_A3_TRANSVERSE_PAPER + => 'A3', // (297 mm by 420 mm) + PHPExcel_Worksheet_PageSetup::PAPERSIZE_A3_EXTRA_TRANSVERSE_PAPER + => array(912.76, 1261.42) // (322 mm by 445 mm) + ); + + /** + * Create a new PHPExcel_Writer_PDF + * + * @param PHPExcel $phpExcel PHPExcel object + */ + public function __construct(PHPExcel $phpExcel) + { + parent::__construct($phpExcel); + $this->setUseInlineCss(true); + $this->tempDir = PHPExcel_Shared_File::sys_get_temp_dir(); + } + + /** + * Get Font + * + * @return string + */ + public function getFont() + { + return $this->font; + } + + /** + * Set font. Examples: + * 'arialunicid0-chinese-simplified' + * 'arialunicid0-chinese-traditional' + * 'arialunicid0-korean' + * 'arialunicid0-japanese' + * + * @param string $fontName + */ + public function setFont($fontName) + { + $this->font = $fontName; + return $this; + } + + /** + * Get Paper Size + * + * @return int + */ + public function getPaperSize() + { + return $this->paperSize; + } + + /** + * Set Paper Size + * + * @param string $pValue Paper size + * @return PHPExcel_Writer_PDF + */ + public function setPaperSize($pValue = PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER) + { + $this->paperSize = $pValue; + return $this; + } + + /** + * Get Orientation + * + * @return string + */ + public function getOrientation() + { + return $this->orientation; + } + + /** + * Set Orientation + * + * @param string $pValue Page orientation + * @return PHPExcel_Writer_PDF + */ + public function setOrientation($pValue = PHPExcel_Worksheet_PageSetup::ORIENTATION_DEFAULT) + { + $this->orientation = $pValue; + return $this; + } + + /** + * Get temporary storage directory + * + * @return string + */ + public function getTempDir() + { + return $this->tempDir; + } + + /** + * Set temporary storage directory + * + * @param string $pValue Temporary storage directory + * @throws PHPExcel_Writer_Exception when directory does not exist + * @return PHPExcel_Writer_PDF + */ + public function setTempDir($pValue = '') + { + if (is_dir($pValue)) { + $this->tempDir = $pValue; + } else { + throw new PHPExcel_Writer_Exception("Directory does not exist: $pValue"); + } + return $this; + } + + /** + * Save PHPExcel to PDF file, pre-save + * + * @param string $pFilename Name of the file to save as + * @throws PHPExcel_Writer_Exception + */ + protected function prepareForSave($pFilename = null) + { + // garbage collect + $this->phpExcel->garbageCollect(); + + $this->saveArrayReturnType = PHPExcel_Calculation::getArrayReturnType(); + PHPExcel_Calculation::setArrayReturnType(PHPExcel_Calculation::RETURN_ARRAY_AS_VALUE); + + // Open file + $fileHandle = fopen($pFilename, 'w'); + if ($fileHandle === false) { + throw new PHPExcel_Writer_Exception("Could not open file $pFilename for writing."); + } + + // Set PDF + $this->isPdf = true; + // Build CSS + $this->buildCSS(true); + + return $fileHandle; + } + + /** + * Save PHPExcel to PDF file, post-save + * + * @param resource $fileHandle + * @throws PHPExcel_Writer_Exception + */ + protected function restoreStateAfterSave($fileHandle) + { + // Close file + fclose($fileHandle); + + PHPExcel_Calculation::setArrayReturnType($this->saveArrayReturnType); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/DomPDF.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/DomPDF.php new file mode 100644 index 0000000..83761ac --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/DomPDF.php @@ -0,0 +1,108 @@ +<?php + +/** Require DomPDF library */ +$pdfRendererClassFile = PHPExcel_Settings::getPdfRendererPath() . '/dompdf_config.inc.php'; +if (file_exists($pdfRendererClassFile)) { + require_once $pdfRendererClassFile; +} else { + throw new PHPExcel_Writer_Exception('Unable to load PDF Rendering library'); +} + +/** + * PHPExcel_Writer_PDF_DomPDF + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_PDF + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_PDF_DomPDF extends PHPExcel_Writer_PDF_Core implements PHPExcel_Writer_IWriter +{ + /** + * Create a new PHPExcel_Writer_PDF + * + * @param PHPExcel $phpExcel PHPExcel object + */ + public function __construct(PHPExcel $phpExcel) + { + parent::__construct($phpExcel); + } + + /** + * Save PHPExcel to file + * + * @param string $pFilename Name of the file to save as + * @throws PHPExcel_Writer_Exception + */ + public function save($pFilename = null) + { + $fileHandle = parent::prepareForSave($pFilename); + + // Default PDF paper size + $paperSize = 'LETTER'; // Letter (8.5 in. by 11 in.) + + // Check for paper size and page orientation + if (is_null($this->getSheetIndex())) { + $orientation = ($this->phpExcel->getSheet(0)->getPageSetup()->getOrientation() + == PHPExcel_Worksheet_PageSetup::ORIENTATION_LANDSCAPE) ? 'L' : 'P'; + $printPaperSize = $this->phpExcel->getSheet(0)->getPageSetup()->getPaperSize(); + $printMargins = $this->phpExcel->getSheet(0)->getPageMargins(); + } else { + $orientation = ($this->phpExcel->getSheet($this->getSheetIndex())->getPageSetup()->getOrientation() + == PHPExcel_Worksheet_PageSetup::ORIENTATION_LANDSCAPE) ? 'L' : 'P'; + $printPaperSize = $this->phpExcel->getSheet($this->getSheetIndex())->getPageSetup()->getPaperSize(); + $printMargins = $this->phpExcel->getSheet($this->getSheetIndex())->getPageMargins(); + } + + $orientation = ($orientation == 'L') ? 'landscape' : 'portrait'; + + // Override Page Orientation + if (!is_null($this->getOrientation())) { + $orientation = ($this->getOrientation() == PHPExcel_Worksheet_PageSetup::ORIENTATION_DEFAULT) + ? PHPExcel_Worksheet_PageSetup::ORIENTATION_PORTRAIT + : $this->getOrientation(); + } + // Override Paper Size + if (!is_null($this->getPaperSize())) { + $printPaperSize = $this->getPaperSize(); + } + + if (isset(self::$paperSizes[$printPaperSize])) { + $paperSize = self::$paperSizes[$printPaperSize]; + } + + + // Create PDF + $pdf = new DOMPDF(); + $pdf->set_paper(strtolower($paperSize), $orientation); + + $pdf->load_html( + $this->generateHTMLHeader(false) . + $this->generateSheetData() . + $this->generateHTMLFooter() + ); + $pdf->render(); + + // Write to file + fwrite($fileHandle, $pdf->output()); + + parent::restoreStateAfterSave($fileHandle); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/mPDF.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/mPDF.php new file mode 100644 index 0000000..e4e6057 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/mPDF.php @@ -0,0 +1,118 @@ +<?php + +/** Require mPDF library */ +$pdfRendererClassFile = PHPExcel_Settings::getPdfRendererPath() . '/mpdf.php'; +if (file_exists($pdfRendererClassFile)) { + require_once $pdfRendererClassFile; +} else { + throw new PHPExcel_Writer_Exception('Unable to load PDF Rendering library'); +} + +/** + * PHPExcel_Writer_PDF_mPDF + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_PDF + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_PDF_mPDF extends PHPExcel_Writer_PDF_Core implements PHPExcel_Writer_IWriter +{ + /** + * Create a new PHPExcel_Writer_PDF + * + * @param PHPExcel $phpExcel PHPExcel object + */ + public function __construct(PHPExcel $phpExcel) + { + parent::__construct($phpExcel); + } + + /** + * Save PHPExcel to file + * + * @param string $pFilename Name of the file to save as + * @throws PHPExcel_Writer_Exception + */ + public function save($pFilename = null) + { + $fileHandle = parent::prepareForSave($pFilename); + + // Default PDF paper size + $paperSize = 'LETTER'; // Letter (8.5 in. by 11 in.) + + // Check for paper size and page orientation + if (is_null($this->getSheetIndex())) { + $orientation = ($this->phpExcel->getSheet(0)->getPageSetup()->getOrientation() + == PHPExcel_Worksheet_PageSetup::ORIENTATION_LANDSCAPE) ? 'L' : 'P'; + $printPaperSize = $this->phpExcel->getSheet(0)->getPageSetup()->getPaperSize(); + $printMargins = $this->phpExcel->getSheet(0)->getPageMargins(); + } else { + $orientation = ($this->phpExcel->getSheet($this->getSheetIndex())->getPageSetup()->getOrientation() + == PHPExcel_Worksheet_PageSetup::ORIENTATION_LANDSCAPE) ? 'L' : 'P'; + $printPaperSize = $this->phpExcel->getSheet($this->getSheetIndex())->getPageSetup()->getPaperSize(); + $printMargins = $this->phpExcel->getSheet($this->getSheetIndex())->getPageMargins(); + } + $this->setOrientation($orientation); + + // Override Page Orientation + if (!is_null($this->getOrientation())) { + $orientation = ($this->getOrientation() == PHPExcel_Worksheet_PageSetup::ORIENTATION_DEFAULT) + ? PHPExcel_Worksheet_PageSetup::ORIENTATION_PORTRAIT + : $this->getOrientation(); + } + $orientation = strtoupper($orientation); + + // Override Paper Size + if (!is_null($this->getPaperSize())) { + $printPaperSize = $this->getPaperSize(); + } + + if (isset(self::$paperSizes[$printPaperSize])) { + $paperSize = self::$paperSizes[$printPaperSize]; + } + + + // Create PDF + $pdf = new mpdf(); + $ortmp = $orientation; + $pdf->_setPageSize(strtoupper($paperSize), $ortmp); + $pdf->DefOrientation = $orientation; + $pdf->AddPage($orientation); + + // Document info + $pdf->SetTitle($this->phpExcel->getProperties()->getTitle()); + $pdf->SetAuthor($this->phpExcel->getProperties()->getCreator()); + $pdf->SetSubject($this->phpExcel->getProperties()->getSubject()); + $pdf->SetKeywords($this->phpExcel->getProperties()->getKeywords()); + $pdf->SetCreator($this->phpExcel->getProperties()->getCreator()); + + $pdf->WriteHTML( + $this->generateHTMLHeader(false) . + $this->generateSheetData() . + $this->generateHTMLFooter() + ); + + // Write to file + fwrite($fileHandle, $pdf->Output('', 'S')); + + parent::restoreStateAfterSave($fileHandle); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/tcPDF.php b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/tcPDF.php new file mode 100644 index 0000000..dea33a3 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/tcPDF.php @@ -0,0 +1,123 @@ +<?php + +/** Require tcPDF library */ +$pdfRendererClassFile = PHPExcel_Settings::getPdfRendererPath() . '/tcpdf.php'; +if (file_exists($pdfRendererClassFile)) { + $k_path_url = PHPExcel_Settings::getPdfRendererPath(); + require_once $pdfRendererClassFile; +} else { + throw new PHPExcel_Writer_Exception('Unable to load PDF Rendering library'); +} + +/** + * PHPExcel_Writer_PDF_tcPDF + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel_Writer_PDF + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ +class PHPExcel_Writer_PDF_tcPDF extends PHPExcel_Writer_PDF_Core implements PHPExcel_Writer_IWriter +{ + /** + * Create a new PHPExcel_Writer_PDF + * + * @param PHPExcel $phpExcel PHPExcel object + */ + public function __construct(PHPExcel $phpExcel) + { + parent::__construct($phpExcel); + } + + /** + * Save PHPExcel to file + * + * @param string $pFilename Name of the file to save as + * @throws PHPExcel_Writer_Exception + */ + public function save($pFilename = null) + { + $fileHandle = parent::prepareForSave($pFilename); + + // Default PDF paper size + $paperSize = 'LETTER'; // Letter (8.5 in. by 11 in.) + + // Check for paper size and page orientation + if (is_null($this->getSheetIndex())) { + $orientation = ($this->phpExcel->getSheet(0)->getPageSetup()->getOrientation() + == PHPExcel_Worksheet_PageSetup::ORIENTATION_LANDSCAPE) ? 'L' : 'P'; + $printPaperSize = $this->phpExcel->getSheet(0)->getPageSetup()->getPaperSize(); + $printMargins = $this->phpExcel->getSheet(0)->getPageMargins(); + } else { + $orientation = ($this->phpExcel->getSheet($this->getSheetIndex())->getPageSetup()->getOrientation() + == PHPExcel_Worksheet_PageSetup::ORIENTATION_LANDSCAPE) ? 'L' : 'P'; + $printPaperSize = $this->phpExcel->getSheet($this->getSheetIndex())->getPageSetup()->getPaperSize(); + $printMargins = $this->phpExcel->getSheet($this->getSheetIndex())->getPageMargins(); + } + + // Override Page Orientation + if (!is_null($this->getOrientation())) { + $orientation = ($this->getOrientation() == PHPExcel_Worksheet_PageSetup::ORIENTATION_LANDSCAPE) + ? 'L' + : 'P'; + } + // Override Paper Size + if (!is_null($this->getPaperSize())) { + $printPaperSize = $this->getPaperSize(); + } + + if (isset(self::$paperSizes[$printPaperSize])) { + $paperSize = self::$paperSizes[$printPaperSize]; + } + + + // Create PDF + $pdf = new TCPDF($orientation, 'pt', $paperSize); + $pdf->setFontSubsetting(false); + // Set margins, converting inches to points (using 72 dpi) + $pdf->SetMargins($printMargins->getLeft() * 72, $printMargins->getTop() * 72, $printMargins->getRight() * 72); + $pdf->SetAutoPageBreak(true, $printMargins->getBottom() * 72); + + $pdf->setPrintHeader(false); + $pdf->setPrintFooter(false); + + $pdf->AddPage(); + + // Set the appropriate font + $pdf->SetFont($this->getFont()); + $pdf->writeHTML( + $this->generateHTMLHeader(false) . + $this->generateSheetData() . + $this->generateHTMLFooter() + ); + + // Document info + $pdf->SetTitle($this->phpExcel->getProperties()->getTitle()); + $pdf->SetAuthor($this->phpExcel->getProperties()->getCreator()); + $pdf->SetSubject($this->phpExcel->getProperties()->getSubject()); + $pdf->SetKeywords($this->phpExcel->getProperties()->getKeywords()); + $pdf->SetCreator($this->phpExcel->getProperties()->getCreator()); + + // Write to file + fwrite($fileHandle, $pdf->output($pFilename, 'S')); + + parent::restoreStateAfterSave($fileHandle); + } +} diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/bg/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/bg/config new file mode 100644 index 0000000..4cecddb --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/bg/config @@ -0,0 +1,49 @@ +## +## PHPExcel +## + +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = лв + + +## +## Excel Error Codes (For future use) + +## +NULL = #ПРÐЗÐО! +DIV0 = #ДЕЛ/0! +VALUE = #СТОЙÐОСТ! +REF = #РЕФ! +NAME = #ИМЕ? +NUM = #ЧИСЛО! +NA = #Ð/Д diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/cs/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/cs/config new file mode 100644 index 0000000..42cdf32 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/cs/config @@ -0,0 +1,47 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = KÄ + + +## +## Excel Error Codes (For future use) +## +NULL = #NULL! +DIV0 = #DIV/0! +VALUE = #HODNOTA! +REF = #REF! +NAME = #NÃZEV? +NUM = #NUM! +NA = #N/A diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/cs/functions b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/cs/functions new file mode 100644 index 0000000..c0a3cbb --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/cs/functions @@ -0,0 +1,438 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Calculation +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## Data in this file derived from http://www.piuha.fi/excel-function-name-translation/ +## +## + + +## +## Add-in and Automation functions Funkce doplňků a automatizace +## +GETPIVOTDATA = ZÃSKATKONTDATA ## Vrátí data uložená v kontingenÄní tabulce. Pomocí funkce ZÃSKATKONTDATA můžete naÄíst souhrnná data z kontingenÄní tabulky, pokud jsou tato data v kontingenÄní sestavÄ› zobrazena. + + +## +## Cube functions Funkce pro práci s krychlemi +## +CUBEKPIMEMBER = CUBEKPIMEMBER ## Vrátí název, vlastnost a velikost klíÄového ukazatele výkonu (KUV) a zobrazí v buňce název a vlastnost. KlíÄový ukazatel výkonu je kvantifikovatelná veliÄina, například hrubý mÄ›síÄní zisk nebo Ätvrtletní obrat na zamÄ›stnance, která se používá pro sledování výkonnosti organizace. +CUBEMEMBER = CUBEMEMBER ## Vrátí Älen nebo n-tici v hierarchii krychle. Slouží k ověření, zda v krychli existuje Älen nebo n-tice. +CUBEMEMBERPROPERTY = CUBEMEMBERPROPERTY ## Vrátí hodnotu vlastnosti Älena v krychli. Slouží k ověření, zda v krychli existuje Älen s daným názvem, a k vrácení konkrétní vlastnosti tohoto Älena. +CUBERANKEDMEMBER = CUBERANKEDMEMBER ## Vrátí n-tý nebo poÅ™adový Älen sady. Použijte ji pro vrácení jednoho nebo více prvků sady, například obchodníka s nejvyšším obratem nebo deseti nejlepších studentů. +CUBESET = CUBESET ## Definuje vypoÄtenou sadu Älenů nebo n-tic odesláním výrazu sady do krychle na serveru, který vytvoří sadu a potom ji vrátí do aplikace Microsoft Office Excel. +CUBESETCOUNT = CUBESETCOUNT ## Vrátí poÄet položek v množinÄ› +CUBEVALUE = CUBEVALUE ## Vrátí úhrnnou hodnotu z krychle. + + +## +## Database functions Funkce databáze +## +DAVERAGE = DPRÅ®MÄšR ## Vrátí průmÄ›r vybraných položek databáze. +DCOUNT = DPOÄŒET ## SpoÄítá buňky databáze obsahující Äísla. +DCOUNTA = DPOÄŒET2 ## SpoÄítá buňky databáze, které nejsou prázdné. +DGET = DZÃSKAT ## Extrahuje z databáze jeden záznam splňující zadaná kritéria. +DMAX = DMAX ## Vrátí maximální hodnotu z vybraných položek databáze. +DMIN = DMIN ## Vrátí minimální hodnotu z vybraných položek databáze. +DPRODUCT = DSOUÄŒIN ## Vynásobí hodnoty urÄitého pole záznamů v databázi, které splňují daná kritéria. +DSTDEV = DSMODCH.VÃBÄšR ## Odhadne smÄ›rodatnou odchylku výbÄ›ru vybraných položek databáze. +DSTDEVP = DSMODCH ## VypoÄte smÄ›rodatnou odchylku základního souboru vybraných položek databáze. +DSUM = DSUMA ## SeÄte Äísla ve sloupcovém poli záznamů databáze, která splňují daná kritéria. +DVAR = DVAR.VÃBÄšR ## Odhadne rozptyl výbÄ›ru vybraných položek databáze. +DVARP = DVAR ## VypoÄte rozptyl základního souboru vybraných položek databáze. + + +## +## Date and time functions Funkce data a Äasu +## +DATE = DATUM ## Vrátí poÅ™adové Äíslo urÄitého data. +DATEVALUE = DATUMHODN ## PÅ™evede datum ve formÄ› textu na poÅ™adové Äíslo. +DAY = DEN ## PÅ™evede poÅ™adové Äíslo na den v mÄ›síci. +DAYS360 = ROK360 ## Vrátí poÄet dní mezi dvÄ›ma daty na základÄ› roku s 360 dny. +EDATE = EDATE ## Vrátí poÅ™adové Äíslo data, které oznaÄuje urÄený poÄet mÄ›síců pÅ™ed nebo po poÄáteÄním datu. +EOMONTH = EOMONTH ## Vrátí poÅ™adové Äíslo posledního dne mÄ›síce pÅ™ed nebo po zadaném poÄtu mÄ›síců. +HOUR = HODINA ## PÅ™evede poÅ™adové Äíslo na hodinu. +MINUTE = MINUTA ## PÅ™evede poÅ™adové Äíslo na minutu. +MONTH = MÄšSÃC ## PÅ™evede poÅ™adové Äíslo na mÄ›síc. +NETWORKDAYS = NETWORKDAYS ## Vrátí poÄet celých pracovních dní mezi dvÄ›ma daty. +NOW = NYNà ## Vrátí poÅ™adové Äíslo aktuálního data a Äasu. +SECOND = SEKUNDA ## PÅ™evede poÅ™adové Äíslo na sekundu. +TIME = ÄŒAS ## Vrátí poÅ™adové Äíslo urÄitého Äasu. +TIMEVALUE = ÄŒASHODN ## PÅ™evede Äas ve formÄ› textu na poÅ™adové Äíslo. +TODAY = DNES ## Vrátí poÅ™adové Äíslo dneÅ¡ního data. +WEEKDAY = DENTÃDNE ## PÅ™evede poÅ™adové Äíslo na den v týdnu. +WEEKNUM = WEEKNUM ## PÅ™evede poÅ™adové Äíslo na Äíslo pÅ™edstavující Äíselnou pozici týdne v roce. +WORKDAY = WORKDAY ## Vrátí poÅ™adové Äíslo data pÅ™ed nebo po zadaném poÄtu pracovních dní. +YEAR = ROK ## PÅ™evede poÅ™adové Äíslo na rok. +YEARFRAC = YEARFRAC ## Vrátí Äást roku vyjádÅ™enou zlomkem a pÅ™edstavující poÄet celých dní mezi poÄáteÄním a koncovým datem. + + +## +## Engineering functions Inženýrské funkce (Technické funkce) +## +BESSELI = BESSELI ## Vrátí modifikovanou Besselovu funkci In(x). +BESSELJ = BESSELJ ## Vrátí modifikovanou Besselovu funkci Jn(x). +BESSELK = BESSELK ## Vrátí modifikovanou Besselovu funkci Kn(x). +BESSELY = BESSELY ## Vrátí Besselovu funkci Yn(x). +BIN2DEC = BIN2DEC ## PÅ™evede binární Äíslo na desítkové. +BIN2HEX = BIN2HEX ## PÅ™evede binární Äíslo na Å¡estnáctkové. +BIN2OCT = BIN2OCT ## PÅ™evede binární Äíslo na osmiÄkové. +COMPLEX = COMPLEX ## PÅ™evede reálnou a imaginární Äást na komplexní Äíslo. +CONVERT = CONVERT ## PÅ™evede Äíslo do jiného jednotkového mÄ›rného systému. +DEC2BIN = DEC2BIN ## PÅ™evede desítkového Äísla na dvojkové +DEC2HEX = DEC2HEX ## PÅ™evede desítkové Äíslo na Å¡estnáctkové. +DEC2OCT = DEC2OCT ## PÅ™evede desítkové Äíslo na osmiÄkové. +DELTA = DELTA ## Testuje rovnost dvou hodnot. +ERF = ERF ## Vrátí chybovou funkci. +ERFC = ERFC ## Vrátí doplňkovou chybovou funkci. +GESTEP = GESTEP ## Testuje, zda je Äíslo vÄ›tší než mezní hodnota. +HEX2BIN = HEX2BIN ## PÅ™evede Å¡estnáctkové Äíslo na binární. +HEX2DEC = HEX2DEC ## PÅ™evede Å¡estnáctkové Äíslo na desítkové. +HEX2OCT = HEX2OCT ## PÅ™evede Å¡estnáctkové Äíslo na osmiÄkové. +IMABS = IMABS ## Vrátí absolutní hodnotu (modul) komplexního Äísla. +IMAGINARY = IMAGINARY ## Vrátí imaginární Äást komplexního Äísla. +IMARGUMENT = IMARGUMENT ## Vrátí argument théta, úhel vyjádÅ™ený v radiánech. +IMCONJUGATE = IMCONJUGATE ## Vrátí komplexnÄ› sdružené Äíslo ke komplexnímu Äíslu. +IMCOS = IMCOS ## Vrátí kosinus komplexního Äísla. +IMDIV = IMDIV ## Vrátí podíl dvou komplexních Äísel. +IMEXP = IMEXP ## Vrátí exponenciální tvar komplexního Äísla. +IMLN = IMLN ## Vrátí pÅ™irozený logaritmus komplexního Äísla. +IMLOG10 = IMLOG10 ## Vrátí dekadický logaritmus komplexního Äísla. +IMLOG2 = IMLOG2 ## Vrátí logaritmus komplexního Äísla pÅ™i základu 2. +IMPOWER = IMPOWER ## Vrátí komplexní Äíslo umocnÄ›né na celé Äíslo. +IMPRODUCT = IMPRODUCT ## Vrátí souÄin komplexních Äísel. +IMREAL = IMREAL ## Vrátí reálnou Äást komplexního Äísla. +IMSIN = IMSIN ## Vrátí sinus komplexního Äísla. +IMSQRT = IMSQRT ## Vrátí druhou odmocninu komplexního Äísla. +IMSUB = IMSUB ## Vrátí rozdíl mezi dvÄ›ma komplexními Äísly. +IMSUM = IMSUM ## Vrátí souÄet dvou komplexních Äísel. +OCT2BIN = OCT2BIN ## PÅ™evede osmiÄkové Äíslo na binární. +OCT2DEC = OCT2DEC ## PÅ™evede osmiÄkové Äíslo na desítkové. +OCT2HEX = OCT2HEX ## PÅ™evede osmiÄkové Äíslo na Å¡estnáctkové. + + +## +## Financial functions FinanÄní funkce +## +ACCRINT = ACCRINT ## Vrátí nahromadÄ›ný úrok z cenného papíru, ze kterého je úrok placen v pravidelných termínech. +ACCRINTM = ACCRINTM ## Vrátí nahromadÄ›ný úrok z cenného papíru, ze kterého je úrok placen k datu splatnosti. +AMORDEGRC = AMORDEGRC ## Vrátí lineární amortizaci v každém úÄetním období pomocí koeficientu amortizace. +AMORLINC = AMORLINC ## Vrátí lineární amortizaci v každém úÄetním období. +COUPDAYBS = COUPDAYBS ## Vrátí poÄet dnů od zaÄátku období placení kupónů do data splatnosti. +COUPDAYS = COUPDAYS ## Vrátí poÄet dnů v období placení kupónů, které obsahuje den zúÄtování. +COUPDAYSNC = COUPDAYSNC ## Vrátí poÄet dnů od data zúÄtování do následujícího data placení kupónu. +COUPNCD = COUPNCD ## Vrátí následující datum placení kupónu po datu zúÄtování. +COUPNUM = COUPNUM ## Vrátí poÄet kupónů splatných mezi datem zúÄtování a datem splatnosti. +COUPPCD = COUPPCD ## Vrátí pÅ™edchozí datum placení kupónu pÅ™ed datem zúÄtování. +CUMIPMT = CUMIPMT ## Vrátí kumulativní úrok splacený mezi dvÄ›ma obdobími. +CUMPRINC = CUMPRINC ## Vrátí kumulativní jistinu splacenou mezi dvÄ›ma obdobími půjÄky. +DB = ODPIS.ZRYCH ## Vrátí odpis aktiva za urÄité období pomocí degresivní metody odpisu s pevným zůstatkem. +DDB = ODPIS.ZRYCH2 ## Vrátí odpis aktiva za urÄité období pomocí dvojité degresivní metody odpisu nebo jiné metody, kterou zadáte. +DISC = DISC ## Vrátí diskontní sazbu cenného papíru. +DOLLARDE = DOLLARDE ## PÅ™evede Äástku v korunách vyjádÅ™enou zlomkem na Äástku v korunách vyjádÅ™enou desetinným Äíslem. +DOLLARFR = DOLLARFR ## PÅ™evede Äástku v korunách vyjádÅ™enou desetinným Äíslem na Äástku v korunách vyjádÅ™enou zlomkem. +DURATION = DURATION ## Vrátí roÄní dobu cenného papíru s pravidelnými úrokovými sazbami. +EFFECT = EFFECT ## Vrátí efektivní roÄní úrokovou sazbu. +FV = BUDHODNOTA ## Vrátí budoucí hodnotu investice. +FVSCHEDULE = FVSCHEDULE ## Vrátí budoucí hodnotu poÄáteÄní jistiny po použití série sazeb složitého úroku. +INTRATE = INTRATE ## Vrátí úrokovou sazbu plnÄ› investovaného cenného papíru. +IPMT = PLATBA.ÚROK ## Vrátí výšku úroku investice za dané období. +IRR = MÃRA.VÃNOSNOSTI ## Vrátí vnitÅ™ní výnosové procento série peněžních toků. +ISPMT = ISPMT ## VypoÄte výši úroku z investice zaplaceného bÄ›hem urÄitého období. +MDURATION = MDURATION ## Vrátí Macauleyho modifikovanou dobu cenného papíru o nominální hodnotÄ› 100 KÄ. +MIRR = MOD.MÃRA.VÃNOSNOSTI ## Vrátí vnitÅ™ní sazbu výnosu, pÅ™iÄemž kladné a záporné hodnoty peněžních prostÅ™edků jsou financovány podle různých sazeb. +NOMINAL = NOMINAL ## Vrátí nominální roÄní úrokovou sazbu. +NPER = POÄŒET.OBDOBà ## Vrátí poÄet období pro investici. +NPV = ÄŒISTÃ.SOUÄŒHODNOTA ## Vrátí Äistou souÄasnou hodnotu investice vypoÄítanou na základÄ› série pravidelných peněžních toků a diskontní sazby. +ODDFPRICE = ODDFPRICE ## Vrátí cenu cenného papíru o nominální hodnotÄ› 100 KÄ s odliÅ¡ným prvním obdobím. +ODDFYIELD = ODDFYIELD ## Vrátí výnos cenného papíru s odliÅ¡ným prvním obdobím. +ODDLPRICE = ODDLPRICE ## Vrátí cenu cenného papíru o nominální hodnotÄ› 100 KÄ s odliÅ¡ným posledním obdobím. +ODDLYIELD = ODDLYIELD ## Vrátí výnos cenného papíru s odliÅ¡ným posledním obdobím. +PMT = PLATBA ## Vrátí hodnotu pravidelné splátky anuity. +PPMT = PLATBA.ZÃKLAD ## Vrátí hodnotu splátky jistiny pro zadanou investici za dané období. +PRICE = PRICE ## Vrátí cenu cenného papíru o nominální hodnotÄ› 100 KÄ, ze kterého je úrok placen v pravidelných termínech. +PRICEDISC = PRICEDISC ## Vrátí cenu diskontního cenného papíru o nominální hodnotÄ› 100 KÄ. +PRICEMAT = PRICEMAT ## Vrátí cenu cenného papíru o nominální hodnotÄ› 100 KÄ, ze kterého je úrok placen k datu splatnosti. +PV = SOUÄŒHODNOTA ## Vrátí souÄasnou hodnotu investice. +RATE = ÚROKOVÃ.MÃRA ## Vrátí úrokovou sazbu vztaženou na období anuity. +RECEIVED = RECEIVED ## Vrátí Äástku obdrženou k datu splatnosti plnÄ› investovaného cenného papíru. +SLN = ODPIS.LIN ## Vrátí přímé odpisy aktiva pro jedno období. +SYD = ODPIS.NELIN ## Vrátí smÄ›rné Äíslo roÄních odpisů aktiva pro zadané období. +TBILLEQ = TBILLEQ ## Vrátí výnos smÄ›nky státní pokladny ekvivalentní výnosu obligace. +TBILLPRICE = TBILLPRICE ## Vrátí cenu smÄ›nky státní pokladny o nominální hodnotÄ› 100 KÄ. +TBILLYIELD = TBILLYIELD ## Vrátí výnos smÄ›nky státní pokladny. +VDB = ODPIS.ZA.INT ## Vrátí odpis aktiva pro urÄité období nebo Äást období pomocí degresivní metody odpisu. +XIRR = XIRR ## Vrátí vnitÅ™ní výnosnost pro harmonogram peněžních toků, který nemusí být nutnÄ› periodický. +XNPV = XNPV ## Vrátí Äistou souÄasnou hodnotu pro harmonogram peněžních toků, který nemusí být nutnÄ› periodický. +YIELD = YIELD ## Vrátí výnos cenného papíru, ze kterého je úrok placen v pravidelných termínech. +YIELDDISC = YIELDDISC ## Vrátí roÄní výnos diskontního cenného papíru, například smÄ›nky státní pokladny. +YIELDMAT = YIELDMAT ## Vrátí roÄní výnos cenného papíru, ze kterého je úrok placen k datu splatnosti. + + +## +## Information functions InformaÄní funkce +## +CELL = POLÃÄŒKO ## Vrátí informace o formátování, umístÄ›ní nebo obsahu buňky. +ERROR.TYPE = CHYBA.TYP ## Vrátí Äíslo odpovídající typu chyby. +INFO = O.PROSTŘEDà ## Vrátí informace o aktuálním pracovním prostÅ™edí. +ISBLANK = JE.PRÃZDNÉ ## Vrátí hodnotu PRAVDA, pokud se argument hodnota odkazuje na prázdnou buňku. +ISERR = JE.CHYBA ## Vrátí hodnotu PRAVDA, pokud je argument hodnota libovolná chybová hodnota (kromÄ› #N/A). +ISERROR = JE.CHYBHODN ## Vrátí hodnotu PRAVDA, pokud je argument hodnota libovolná chybová hodnota. +ISEVEN = ISEVEN ## Vrátí hodnotu PRAVDA, pokud je Äíslo sudé. +ISLOGICAL = JE.LOGHODN ## Vrátí hodnotu PRAVDA, pokud je argument hodnota logická hodnota. +ISNA = JE.NEDEF ## Vrátí hodnotu PRAVDA, pokud je argument hodnota chybová hodnota #N/A. +ISNONTEXT = JE.NETEXT ## Vrátí hodnotu PRAVDA, pokud argument hodnota není text. +ISNUMBER = JE.ÄŒÃSLO ## Vrátí hodnotu PRAVDA, pokud je argument hodnota Äíslo. +ISODD = ISODD ## Vrátí hodnotu PRAVDA, pokud je Äíslo liché. +ISREF = JE.ODKAZ ## Vrátí hodnotu PRAVDA, pokud je argument hodnota odkaz. +ISTEXT = JE.TEXT ## Vrátí hodnotu PRAVDA, pokud je argument hodnota text. +N = N ## Vrátí hodnotu pÅ™evedenou na Äíslo. +NA = NEDEF ## Vrátí chybovou hodnotu #N/A. +TYPE = TYP ## Vrátí Äíslo oznaÄující datový typ hodnoty. + + +## +## Logical functions Logické funkce +## +AND = A ## Vrátí hodnotu PRAVDA, mají-li vÅ¡echny argumenty hodnotu PRAVDA. +FALSE = NEPRAVDA ## Vrátí logickou hodnotu NEPRAVDA. +IF = KDYŽ ## UrÄí, který logický test má probÄ›hnout. +IFERROR = IFERROR ## Pokud je vzorec vyhodnocen jako chyba, vrátí zadanou hodnotu. V opaÄném případÄ› vrátí výsledek vzorce. +NOT = NE ## Provede logickou negaci argumentu funkce. +OR = NEBO ## Vrátí hodnotu PRAVDA, je-li alespoň jeden argument roven hodnotÄ› PRAVDA. +TRUE = PRAVDA ## Vrátí logickou hodnotu PRAVDA. + + +## +## Lookup and reference functions Vyhledávací funkce +## +ADDRESS = ODKAZ ## Vrátí textový odkaz na jednu buňku listu. +AREAS = POÄŒET.BLOKÅ® ## Vrátí poÄet oblastí v odkazu. +CHOOSE = ZVOLIT ## Zvolí hodnotu ze seznamu hodnot. +COLUMN = SLOUPEC ## Vrátí Äíslo sloupce odkazu. +COLUMNS = SLOUPCE ## Vrátí poÄet sloupců v odkazu. +HLOOKUP = VVYHLEDAT ## Prohledá horní řádek matice a vrátí hodnotu urÄené buňky. +HYPERLINK = HYPERTEXTOVÃ.ODKAZ ## Vytvoří zástupce nebo odkaz, který otevÅ™e dokument uložený na síťovém serveru, v síti intranet nebo Internet. +INDEX = INDEX ## Pomocí rejstříku zvolí hodnotu z odkazu nebo matice. +INDIRECT = NEPŘÃMÃ.ODKAZ ## Vrátí odkaz urÄený textovou hodnotou. +LOOKUP = VYHLEDAT ## Vyhledá hodnoty ve vektoru nebo matici. +MATCH = POZVYHLEDAT ## Vyhledá hodnoty v odkazu nebo matici. +OFFSET = POSUN ## Vrátí posun odkazu od zadaného odkazu. +ROW = ŘÃDEK ## Vrátí Äíslo řádku odkazu. +ROWS = ŘÃDKY ## Vrátí poÄet řádků v odkazu. +RTD = RTD ## NaÄte data reálného Äasu z programu, který podporuje automatizaci modelu COM (Automatizace: Způsob práce s objekty urÄité aplikace z jiné aplikace nebo nástroje pro vývoj. Automatizace (dříve nazývaná automatizace OLE) je poÄítaÄovým standardem a je funkcí modelu COM (Component Object Model).). +TRANSPOSE = TRANSPOZICE ## Vrátí transponovanou matici. +VLOOKUP = SVYHLEDAT ## Prohledá první sloupec matice, pÅ™esune kurzor v řádku a vrátí hodnotu buňky. + + +## +## Math and trigonometry functions Matematické a trigonometrické funkce +## +ABS = ABS ## Vrátí absolutní hodnotu Äísla. +ACOS = ARCCOS ## Vrátí arkuskosinus Äísla. +ACOSH = ARCCOSH ## Vrátí hyperbolický arkuskosinus Äísla. +ASIN = ARCSIN ## Vrátí arkussinus Äísla. +ASINH = ARCSINH ## Vrátí hyperbolický arkussinus Äísla. +ATAN = ARCTG ## Vrátí arkustangens Äísla. +ATAN2 = ARCTG2 ## Vrátí arkustangens x-ové a y-ové souÅ™adnice. +ATANH = ARCTGH ## Vrátí hyperbolický arkustangens Äísla. +CEILING = ZAOKR.NAHORU ## Zaokrouhlí Äíslo na nejbližší celé Äíslo nebo na nejbližší násobek zadané hodnoty. +COMBIN = KOMBINACE ## Vrátí poÄet kombinací pro daný poÄet položek. +COS = COS ## Vrátí kosinus Äísla. +COSH = COSH ## Vrátí hyperbolický kosinus Äísla. +DEGREES = DEGREES ## PÅ™evede radiány na stupnÄ›. +EVEN = ZAOKROUHLIT.NA.SUDÉ ## Zaokrouhlí Äíslo nahoru na nejbližší celé sudé Äíslo. +EXP = EXP ## Vrátí základ pÅ™irozeného logaritmu e umocnÄ›ný na zadané Äíslo. +FACT = FAKTORIÃL ## Vrátí faktoriál Äísla. +FACTDOUBLE = FACTDOUBLE ## Vrátí dvojitý faktoriál Äísla. +FLOOR = ZAOKR.DOLÅ® ## Zaokrouhlí Äíslo dolů, smÄ›rem k nule. +GCD = GCD ## Vrátí nejvÄ›tší spoleÄný dÄ›litel. +INT = CELÃ.ÄŒÃST ## Zaokrouhlí Äíslo dolů na nejbližší celé Äíslo. +LCM = LCM ## Vrátí nejmenší spoleÄný násobek. +LN = LN ## Vrátí pÅ™irozený logaritmus Äísla. +LOG = LOGZ ## Vrátí logaritmus Äísla pÅ™i zadaném základu. +LOG10 = LOG ## Vrátí dekadický logaritmus Äísla. +MDETERM = DETERMINANT ## Vrátí determinant matice. +MINVERSE = INVERZE ## Vrátí inverzní matici. +MMULT = SOUÄŒIN.MATIC ## Vrátí souÄin dvou matic. +MOD = MOD ## Vrátí zbytek po dÄ›lení. +MROUND = MROUND ## Vrátí Äíslo zaokrouhlené na požadovaný násobek. +MULTINOMIAL = MULTINOMIAL ## Vrátí mnohoÄlen z množiny Äísel. +ODD = ZAOKROUHLIT.NA.LICHÉ ## Zaokrouhlí Äíslo nahoru na nejbližší celé liché Äíslo. +PI = PI ## Vrátí hodnotu Äísla pí. +POWER = POWER ## Umocní Äíslo na zadanou mocninu. +PRODUCT = SOUÄŒIN ## Vynásobí argumenty funkce. +QUOTIENT = QUOTIENT ## Vrátí celou Äást dÄ›lení. +RADIANS = RADIANS ## PÅ™evede stupnÄ› na radiány. +RAND = NÃHÄŒÃSLO ## Vrátí náhodné Äíslo mezi 0 a 1. +RANDBETWEEN = RANDBETWEEN ## Vrátí náhodné Äíslo mezi zadanými Äísly. +ROMAN = ROMAN ## PÅ™evede arabskou Äíslici na římskou ve formátu textu. +ROUND = ZAOKROUHLIT ## Zaokrouhlí Äíslo na zadaný poÄet Äíslic. +ROUNDDOWN = ROUNDDOWN ## Zaokrouhlí Äíslo dolů, smÄ›rem k nule. +ROUNDUP = ROUNDUP ## Zaokrouhlí Äíslo nahoru, smÄ›rem od nuly. +SERIESSUM = SERIESSUM ## Vrátí souÄet mocninné Å™ady urÄené podle vzorce. +SIGN = SIGN ## Vrátí znaménko Äísla. +SIN = SIN ## Vrátí sinus daného úhlu. +SINH = SINH ## Vrátí hyperbolický sinus Äísla. +SQRT = ODMOCNINA ## Vrátí kladnou druhou odmocninu. +SQRTPI = SQRTPI ## Vrátí druhou odmocninu výrazu (Äíslo * pí). +SUBTOTAL = SUBTOTAL ## Vrátí souhrn v seznamu nebo databázi. +SUM = SUMA ## SeÄte argumenty funkce. +SUMIF = SUMIF ## SeÄte buňky vybrané podle zadaných kritérií. +SUMIFS = SUMIFS ## SeÄte buňky urÄené více zadanými podmínkami. +SUMPRODUCT = SOUÄŒIN.SKALÃRNà ## Vrátí souÄet souÄinů odpovídajících prvků matic. +SUMSQ = SUMA.ÄŒTVERCÅ® ## Vrátí souÄet Ätverců argumentů. +SUMX2MY2 = SUMX2MY2 ## Vrátí souÄet rozdílu Ätverců odpovídajících hodnot ve dvou maticích. +SUMX2PY2 = SUMX2PY2 ## Vrátí souÄet souÄtu Ätverců odpovídajících hodnot ve dvou maticích. +SUMXMY2 = SUMXMY2 ## Vrátí souÄet Ätverců rozdílů odpovídajících hodnot ve dvou maticích. +TAN = TGTG ## Vrátí tangens Äísla. +TANH = TGH ## Vrátí hyperbolický tangens Äísla. +TRUNC = USEKNOUT ## Zkrátí Äíslo na celé Äíslo. + + +## +## Statistical functions Statistické funkce +## +AVEDEV = PRÅ®MODCHYLKA ## Vrátí průmÄ›rnou hodnotu absolutních odchylek datových bodů od jejich stÅ™ední hodnoty. +AVERAGE = PRÅ®MÄšR ## Vrátí průmÄ›rnou hodnotu argumentů. +AVERAGEA = AVERAGEA ## Vrátí průmÄ›rnou hodnotu argumentů vÄetnÄ› Äísel, textu a logických hodnot. +AVERAGEIF = AVERAGEIF ## Vrátí průmÄ›rnou hodnotu (aritmetický průmÄ›r) vÅ¡ech bunÄ›k v oblasti, které vyhovují přísluÅ¡né podmínce. +AVERAGEIFS = AVERAGEIFS ## Vrátí průmÄ›rnou hodnotu (aritmetický průmÄ›r) vÅ¡ech bunÄ›k vyhovujících nÄ›kolika podmínkám. +BETADIST = BETADIST ## Vrátí hodnotu souÄtového rozdÄ›lení beta. +BETAINV = BETAINV ## Vrátí inverzní hodnotu souÄtového rozdÄ›lení pro zadané rozdÄ›lení beta. +BINOMDIST = BINOMDIST ## Vrátí hodnotu binomického rozdÄ›lení pravdÄ›podobnosti jednotlivých veliÄin. +CHIDIST = CHIDIST ## Vrátí jednostrannou pravdÄ›podobnost rozdÄ›lení chí-kvadrát. +CHIINV = CHIINV ## Vrátí hodnotu funkce inverzní k distribuÄní funkci jednostranné pravdÄ›podobnosti rozdÄ›lení chí-kvadrát. +CHITEST = CHITEST ## Vrátí test nezávislosti. +CONFIDENCE = CONFIDENCE ## Vrátí interval spolehlivosti pro stÅ™ední hodnotu základního souboru. +CORREL = CORREL ## Vrátí korelaÄní koeficient mezi dvÄ›ma množinami dat. +COUNT = POÄŒET ## Vrátí poÄet Äísel v seznamu argumentů. +COUNTA = POÄŒET2 ## Vrátí poÄet hodnot v seznamu argumentů. +COUNTBLANK = COUNTBLANK ## SpoÄítá poÄet prázdných bunÄ›k v oblasti. +COUNTIF = COUNTIF ## SpoÄítá buňky v oblasti, které odpovídají zadaným kritériím. +COUNTIFS = COUNTIFS ## SpoÄítá buňky v oblasti, které odpovídají více kritériím. +COVAR = COVAR ## Vrátí hodnotu kovariance, průmÄ›rnou hodnotu souÄinů párových odchylek +CRITBINOM = CRITBINOM ## Vrátí nejmenší hodnotu, pro kterou má souÄtové binomické rozdÄ›lení hodnotu vÄ›tší nebo rovnu hodnotÄ› kritéria. +DEVSQ = DEVSQ ## Vrátí souÄet Ätverců odchylek. +EXPONDIST = EXPONDIST ## Vrátí hodnotu exponenciálního rozdÄ›lení. +FDIST = FDIST ## Vrátí hodnotu rozdÄ›lení pravdÄ›podobnosti F. +FINV = FINV ## Vrátí hodnotu inverzní funkce k distribuÄní funkci rozdÄ›lení F. +FISHER = FISHER ## Vrátí hodnotu Fisherovy transformace. +FISHERINV = FISHERINV ## Vrátí hodnotu inverzní funkce k FisherovÄ› transformaci. +FORECAST = FORECAST ## Vrátí hodnotu lineárního trendu. +FREQUENCY = ÄŒETNOSTI ## Vrátí Äetnost rozdÄ›lení jako svislou matici. +FTEST = FTEST ## Vrátí výsledek F-testu. +GAMMADIST = GAMMADIST ## Vrátí hodnotu rozdÄ›lení gama. +GAMMAINV = GAMMAINV ## Vrátí hodnotu inverzní funkce k distribuÄní funkci souÄtového rozdÄ›lení gama. +GAMMALN = GAMMALN ## Vrátí pÅ™irozený logaritmus funkce gama, Γ(x). +GEOMEAN = GEOMEAN ## Vrátí geometrický průmÄ›r. +GROWTH = LOGLINTREND ## Vrátí hodnoty exponenciálního trendu. +HARMEAN = HARMEAN ## Vrátí harmonický průmÄ›r. +HYPGEOMDIST = HYPGEOMDIST ## Vrátí hodnotu hypergeometrického rozdÄ›lení. +INTERCEPT = INTERCEPT ## Vrátí úsek lineární regresní Äáry. +KURT = KURT ## Vrátí hodnotu excesu množiny dat. +LARGE = LARGE ## Vrátí k-tou nejvÄ›tší hodnotu množiny dat. +LINEST = LINREGRESE ## Vrátí parametry lineárního trendu. +LOGEST = LOGLINREGRESE ## Vrátí parametry exponenciálního trendu. +LOGINV = LOGINV ## Vrátí inverzní funkci k distribuÄní funkci logaritmicko-normálního rozdÄ›lení. +LOGNORMDIST = LOGNORMDIST ## Vrátí hodnotu souÄtového logaritmicko-normálního rozdÄ›lení. +MAX = MAX ## Vrátí maximální hodnotu seznamu argumentů. +MAXA = MAXA ## Vrátí maximální hodnotu seznamu argumentů vÄetnÄ› Äísel, textu a logických hodnot. +MEDIAN = MEDIAN ## Vrátí stÅ™ední hodnotu zadaných Äísel. +MIN = MIN ## Vrátí minimální hodnotu seznamu argumentů. +MINA = MINA ## Vrátí nejmenší hodnotu v seznamu argumentů vÄetnÄ› Äísel, textu a logických hodnot. +MODE = MODE ## Vrátí hodnotu, která se v množinÄ› dat vyskytuje nejÄastÄ›ji. +NEGBINOMDIST = NEGBINOMDIST ## Vrátí hodnotu negativního binomického rozdÄ›lení. +NORMDIST = NORMDIST ## Vrátí hodnotu normálního souÄtového rozdÄ›lení. +NORMINV = NORMINV ## Vrátí inverzní funkci k funkci normálního souÄtového rozdÄ›lení. +NORMSDIST = NORMSDIST ## Vrátí hodnotu standardního normálního souÄtového rozdÄ›lení. +NORMSINV = NORMSINV ## Vrátí inverzní funkci k funkci standardního normálního souÄtového rozdÄ›lení. +PEARSON = PEARSON ## Vrátí Pearsonův výsledný momentový korelaÄní koeficient. +PERCENTILE = PERCENTIL ## Vrátí hodnotu k-tého percentilu hodnot v oblasti. +PERCENTRANK = PERCENTRANK ## Vrátí poÅ™adí hodnoty v množinÄ› dat vyjádÅ™ené procentuální Äástí množiny dat. +PERMUT = PERMUTACE ## Vrátí poÄet permutací pro zadaný poÄet objektů. +POISSON = POISSON ## Vrátí hodnotu distribuÄní funkce Poissonova rozdÄ›lení. +PROB = PROB ## Vrátí pravdÄ›podobnost výskytu hodnot v oblasti mezi dvÄ›ma mezními hodnotami. +QUARTILE = QUARTIL ## Vrátí hodnotu kvartilu množiny dat. +RANK = RANK ## Vrátí poÅ™adí Äísla v seznamu Äísel. +RSQ = RKQ ## Vrátí druhou mocninu Pearsonova výsledného momentového korelaÄního koeficientu. +SKEW = SKEW ## Vrátí zeÅ¡ikmení rozdÄ›lení. +SLOPE = SLOPE ## Vrátí smÄ›rnici lineární regresní Äáry. +SMALL = SMALL ## Vrátí k-tou nejmenší hodnotu množiny dat. +STANDARDIZE = STANDARDIZE ## Vrátí normalizovanou hodnotu. +STDEV = SMODCH.VÃBÄšR ## VypoÄte smÄ›rodatnou odchylku výbÄ›ru. +STDEVA = STDEVA ## VypoÄte smÄ›rodatnou odchylku výbÄ›ru vÄetnÄ› Äísel, textu a logických hodnot. +STDEVP = SMODCH ## VypoÄte smÄ›rodatnou odchylku základního souboru. +STDEVPA = STDEVPA ## VypoÄte smÄ›rodatnou odchylku základního souboru vÄetnÄ› Äísel, textu a logických hodnot. +STEYX = STEYX ## Vrátí standardní chybu pÅ™edpovÄ›zené hodnoty y pro každou hodnotu x v regresi. +TDIST = TDIST ## Vrátí hodnotu Studentova t-rozdÄ›lení. +TINV = TINV ## Vrátí inverzní funkci k distribuÄní funkci Studentova t-rozdÄ›lení. +TREND = LINTREND ## Vrátí hodnoty lineárního trendu. +TRIMMEAN = TRIMMEAN ## Vrátí stÅ™ední hodnotu vnitÅ™ní Äásti množiny dat. +TTEST = TTEST ## Vrátí pravdÄ›podobnost spojenou se Studentovým t-testem. +VAR = VAR.VÃBÄšR ## VypoÄte rozptyl výbÄ›ru. +VARA = VARA ## VypoÄte rozptyl výbÄ›ru vÄetnÄ› Äísel, textu a logických hodnot. +VARP = VAR ## VypoÄte rozptyl základního souboru. +VARPA = VARPA ## VypoÄte rozptyl základního souboru vÄetnÄ› Äísel, textu a logických hodnot. +WEIBULL = WEIBULL ## Vrátí hodnotu Weibullova rozdÄ›lení. +ZTEST = ZTEST ## Vrátí jednostrannou P-hodnotu z-testu. + + +## +## Text functions Textové funkce +## +ASC = ASC ## ZmÄ›ní znaky s plnou šířkou (dvoubajtové)v Å™etÄ›zci znaků na znaky s poloviÄní šířkou (jednobajtové). +BAHTTEXT = BAHTTEXT ## PÅ™evede Äíslo na text ve formátu, mÄ›ny ß (baht). +CHAR = ZNAK ## Vrátí znak urÄený Äíslem kódu. +CLEAN = VYÄŒISTIT ## Odebere z textu vÅ¡echny netisknutelné znaky. +CODE = KÓD ## Vrátí Äíselný kód prvního znaku zadaného textového Å™etÄ›zce. +CONCATENATE = CONCATENATE ## Spojí nÄ›kolik textových položek do jedné. +DOLLAR = KÄŒ ## PÅ™evede Äíslo na text ve formátu mÄ›ny KÄ (Äeská koruna). +EXACT = STEJNÉ ## Zkontroluje, zda jsou dvÄ› textové hodnoty shodné. +FIND = NAJÃT ## Nalezne textovou hodnotu uvnitÅ™ jiné (rozliÅ¡uje malá a velká písmena). +FINDB = FINDB ## Nalezne textovou hodnotu uvnitÅ™ jiné (rozliÅ¡uje malá a velká písmena). +FIXED = ZAOKROUHLIT.NA.TEXT ## Zformátuje Äíslo jako text s pevným poÄtem desetinných míst. +JIS = JIS ## ZmÄ›ní znaky s poloviÄní šířkou (jednobajtové) v Å™etÄ›zci znaků na znaky s plnou šířkou (dvoubajtové). +LEFT = ZLEVA ## Vrátí první znaky textové hodnoty umístÄ›né nejvíce vlevo. +LEFTB = LEFTB ## Vrátí první znaky textové hodnoty umístÄ›né nejvíce vlevo. +LEN = DÉLKA ## Vrátí poÄet znaků textového Å™etÄ›zce. +LENB = LENB ## Vrátí poÄet znaků textového Å™etÄ›zce. +LOWER = MALà ## PÅ™evede text na malá písmena. +MID = ÄŒÃST ## Vrátí urÄitý poÄet znaků textového Å™etÄ›zce poÄínaje zadaným místem. +MIDB = MIDB ## Vrátí urÄitý poÄet znaků textového Å™etÄ›zce poÄínaje zadaným místem. +PHONETIC = ZVUKOVÉ ## Extrahuje fonetické znaky (furigana) z textového Å™etÄ›zce. +PROPER = VELKÃ2 ## PÅ™evede první písmeno každého slova textové hodnoty na velké. +REPLACE = NAHRADIT ## Nahradí znaky uvnitÅ™ textu. +REPLACEB = NAHRADITB ## Nahradí znaky uvnitÅ™ textu. +REPT = OPAKOVAT ## Zopakuje text podle zadaného poÄtu opakování. +RIGHT = ZPRAVA ## Vrátí první znaky textové hodnoty umístÄ›né nejvíce vpravo. +RIGHTB = RIGHTB ## Vrátí první znaky textové hodnoty umístÄ›né nejvíce vpravo. +SEARCH = HLEDAT ## Nalezne textovou hodnotu uvnitÅ™ jiné (malá a velká písmena nejsou rozliÅ¡ována). +SEARCHB = SEARCHB ## Nalezne textovou hodnotu uvnitÅ™ jiné (malá a velká písmena nejsou rozliÅ¡ována). +SUBSTITUTE = DOSADIT ## V textovém Å™etÄ›zci nahradí starý text novým. +T = T ## PÅ™evede argumenty na text. +TEXT = HODNOTA.NA.TEXT ## Zformátuje Äíslo a pÅ™evede ho na text. +TRIM = PROÄŒISTIT ## Odstraní z textu mezery. +UPPER = VELKà ## PÅ™evede text na velká písmena. +VALUE = HODNOTA ## PÅ™evede textový argument na Äíslo. diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/da/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/da/config new file mode 100644 index 0000000..ae59003 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/da/config @@ -0,0 +1,48 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = kr + + + +## +## Excel Error Codes (For future use) +## +NULL = #NUL! +DIV0 = #DIVISION/0! +VALUE = #VÆRDI! +REF = #REFERENCE! +NAME = #NAVN? +NUM = #NUM! +NA = #I/T diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/da/functions b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/da/functions new file mode 100644 index 0000000..26e0310 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/da/functions @@ -0,0 +1,438 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Calculation +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## Data in this file derived from http://www.piuha.fi/excel-function-name-translation/ +## +## + + +## +## Add-in and Automation functions Tilføjelsesprogram- og automatiseringsfunktioner +## +GETPIVOTDATA = HENTPIVOTDATA ## Returnerer data, der er lagret i en pivottabelrapport + + +## +## Cube functions Kubefunktioner +## +CUBEKPIMEMBER = KUBE.KPI.MEDLEM ## Returnerer navn, egenskab og mÃ¥l for en KPI-indikator og viser navnet og egenskaben i cellen. En KPI-indikator er en mÃ¥lbar størrelse, f.eks. bruttooverskud pr. mÃ¥ned eller personaleudskiftning pr. kvartal, der bruges til at overvÃ¥ge en organisations præstationer. +CUBEMEMBER = KUBE.MEDLEM ## Returnerer et medlem eller en tupel fra kubehierarkiet. Bruges til at validere, om et medlem eller en tupel findes i kuben. +CUBEMEMBERPROPERTY = KUBEMEDLEM.EGENSKAB ## Returnerer værdien af en egenskab for et medlem i kuben. Bruges til at validere, om et medlemsnavn findes i kuben, og returnere den angivne egenskab for medlemmet. +CUBERANKEDMEMBER = KUBEMEDLEM.RANG ## Returnerer det n'te eller rangordnede medlem i et sæt. Bruges til at returnere et eller flere elementer i et sæt, f.eks. topsælgere eller de 10 bedste elever. +CUBESET = KUBESÆT ## Definerer et beregnet sæt medlemmer eller tupler ved at sende et sætudtryk til kuben pÃ¥ serveren, som opretter sættet og returnerer det til Microsoft Office Excel. +CUBESETCOUNT = KUBESÆT.TÆL ## Returnerer antallet af elementer i et sæt. +CUBEVALUE = KUBEVÆRDI ## Returnerer en sammenlagt (aggregeret) værdi fra en kube. + + +## +## Database functions Databasefunktioner +## +DAVERAGE = DMIDDEL ## Returnerer gennemsnittet af markerede databaseposter +DCOUNT = DTÆL ## Tæller de celler, der indeholder tal, i en database +DCOUNTA = DTÆLV ## Tæller udfyldte celler i en database +DGET = DHENT ## Uddrager en enkelt post, der opfylder de angivne kriterier, fra en database +DMAX = DMAKS ## Returnerer den største værdi blandt markerede databaseposter +DMIN = DMIN ## Returnerer den mindste værdi blandt markerede databaseposter +DPRODUCT = DPRODUKT ## Ganger værdierne i et bestemt felt med poster, der opfylder kriterierne i en database +DSTDEV = DSTDAFV ## Beregner et skøn over standardafvigelsen baseret pÃ¥ en stikprøve af markerede databaseposter +DSTDEVP = DSTDAFVP ## Beregner standardafvigelsen baseret pÃ¥ hele populationen af markerede databaseposter +DSUM = DSUM ## Sammenlægger de tal i feltkolonnen i databasen, der opfylder kriterierne +DVAR = DVARIANS ## Beregner varians baseret pÃ¥ en stikprøve af markerede databaseposter +DVARP = DVARIANSP ## Beregner varians baseret pÃ¥ hele populationen af markerede databaseposter + + +## +## Date and time functions Dato- og klokkeslætsfunktioner +## +DATE = DATO ## Returnerer serienummeret for en bestemt dato +DATEVALUE = DATOVÆRDI ## Konverterer en dato i form af tekst til et serienummer +DAY = DAG ## Konverterer et serienummer til en dag i mÃ¥neden +DAYS360 = DAGE360 ## Beregner antallet af dage mellem to datoer pÃ¥ grundlag af et Ã¥r med 360 dage +EDATE = EDATO ## Returnerer serienummeret for den dato, der ligger det angivne antal mÃ¥neder før eller efter startdatoen +EOMONTH = SLUT.PÃ….MÃ…NED ## Returnerer serienummeret pÃ¥ den sidste dag i mÃ¥neden før eller efter et angivet antal mÃ¥neder +HOUR = TIME ## Konverterer et serienummer til en time +MINUTE = MINUT ## Konverterer et serienummer til et minut +MONTH = MÃ…NED ## Konverterer et serienummer til en mÃ¥ned +NETWORKDAYS = ANTAL.ARBEJDSDAGE ## Returnerer antallet af hele arbejdsdage mellem to datoer +NOW = NU ## Returnerer serienummeret for den aktuelle dato eller det aktuelle klokkeslæt +SECOND = SEKUND ## Konverterer et serienummer til et sekund +TIME = KLOKKESLÆT ## Returnerer serienummeret for et bestemt klokkeslæt +TIMEVALUE = TIDSVÆRDI ## Konverterer et klokkeslæt i form af tekst til et serienummer +TODAY = IDAG ## Returnerer serienummeret for dags dato +WEEKDAY = UGEDAG ## Konverterer et serienummer til en ugedag +WEEKNUM = UGE.NR ## Konverterer et serienummer til et tal, der angiver ugenummeret i Ã¥ret +WORKDAY = ARBEJDSDAG ## Returnerer serienummeret for dagen før eller efter det angivne antal arbejdsdage +YEAR = Ã…R ## Konverterer et serienummer til et Ã¥r +YEARFRAC = Ã…R.BRØK ## Returnerer Ã¥rsbrøken, der repræsenterer antallet af hele dage mellem startdato og slutdato + + +## +## Engineering functions Tekniske funktioner +## +BESSELI = BESSELI ## Returnerer den modificerede Bessel-funktion In(x) +BESSELJ = BESSELJ ## Returnerer Bessel-funktionen Jn(x) +BESSELK = BESSELK ## Returnerer den modificerede Bessel-funktion Kn(x) +BESSELY = BESSELY ## Returnerer Bessel-funktionen Yn(x) +BIN2DEC = BIN.TIL.DEC ## Konverterer et binært tal til et decimaltal +BIN2HEX = BIN.TIL.HEX ## Konverterer et binært tal til et heksadecimalt tal +BIN2OCT = BIN.TIL.OKT ## Konverterer et binært tal til et oktaltal. +COMPLEX = KOMPLEKS ## Konverterer reelle og imaginære koefficienter til et komplekst tal +CONVERT = KONVERTER ## Konverterer et tal fra én mÃ¥leenhed til en anden +DEC2BIN = DEC.TIL.BIN ## Konverterer et decimaltal til et binært tal +DEC2HEX = DEC.TIL.HEX ## Konverterer et decimaltal til et heksadecimalt tal +DEC2OCT = DEC.TIL.OKT ## Konverterer et decimaltal til et oktaltal +DELTA = DELTA ## Tester, om to værdier er ens +ERF = FEJLFUNK ## Returner fejlfunktionen +ERFC = FEJLFUNK.KOMP ## Returnerer den komplementære fejlfunktion +GESTEP = GETRIN ## Tester, om et tal er større end en grænseværdi +HEX2BIN = HEX.TIL.BIN ## Konverterer et heksadecimalt tal til et binært tal +HEX2DEC = HEX.TIL.DEC ## Konverterer et decimaltal til et heksadecimalt tal +HEX2OCT = HEX.TIL.OKT ## Konverterer et heksadecimalt tal til et oktaltal +IMABS = IMAGABS ## Returnerer den absolutte værdi (modulus) for et komplekst tal +IMAGINARY = IMAGINÆR ## Returnerer den imaginære koefficient for et komplekst tal +IMARGUMENT = IMAGARGUMENT ## Returnerer argumentet theta, en vinkel udtrykt i radianer +IMCONJUGATE = IMAGKONJUGERE ## Returnerer den komplekse konjugation af et komplekst tal +IMCOS = IMAGCOS ## Returnerer et komplekst tals cosinus +IMDIV = IMAGDIV ## Returnerer kvotienten for to komplekse tal +IMEXP = IMAGEKSP ## Returnerer et komplekst tals eksponentialfunktion +IMLN = IMAGLN ## Returnerer et komplekst tals naturlige logaritme +IMLOG10 = IMAGLOG10 ## Returnerer et komplekst tals sædvanlige logaritme (titalslogaritme) +IMLOG2 = IMAGLOG2 ## Returnerer et komplekst tals sædvanlige logaritme (totalslogaritme) +IMPOWER = IMAGPOTENS ## Returnerer et komplekst tal opløftet i en heltalspotens +IMPRODUCT = IMAGPRODUKT ## Returnerer produktet af komplekse tal +IMREAL = IMAGREELT ## Returnerer den reelle koefficient for et komplekst tal +IMSIN = IMAGSIN ## Returnerer et komplekst tals sinus +IMSQRT = IMAGKVROD ## Returnerer et komplekst tals kvadratrod +IMSUB = IMAGSUB ## Returnerer forskellen mellem to komplekse tal +IMSUM = IMAGSUM ## Returnerer summen af komplekse tal +OCT2BIN = OKT.TIL.BIN ## Konverterer et oktaltal til et binært tal +OCT2DEC = OKT.TIL.DEC ## Konverterer et oktaltal til et decimaltal +OCT2HEX = OKT.TIL.HEX ## Konverterer et oktaltal til et heksadecimalt tal + + +## +## Financial functions Finansielle funktioner +## +ACCRINT = PÃ…LØBRENTE ## Returnerer den pÃ¥løbne rente for et værdipapir med periodiske renteudbetalinger +ACCRINTM = PÃ…LØBRENTE.UDLØB ## Returnerer den pÃ¥løbne rente for et værdipapir, hvor renteudbetalingen finder sted ved papirets udløb +AMORDEGRC = AMORDEGRC ## Returnerer afskrivningsbeløbet for hver regnskabsperiode ved hjælp af en afskrivningskoefficient +AMORLINC = AMORLINC ## Returnerer afskrivningsbeløbet for hver regnskabsperiode +COUPDAYBS = KUPONDAGE.SA ## Returnerer antallet af dage fra starten af kuponperioden til afregningsdatoen +COUPDAYS = KUPONDAGE.A ## Returnerer antallet af dage fra begyndelsen af kuponperioden til afregningsdatoen +COUPDAYSNC = KUPONDAGE.ANK ## Returnerer antallet af dage i den kuponperiode, der indeholder afregningsdatoen +COUPNCD = KUPONDAG.NÆSTE ## Returnerer den næste kupondato efter afregningsdatoen +COUPNUM = KUPONBETALINGER ## Returnerer antallet af kuponudbetalinger mellem afregnings- og udløbsdatoen +COUPPCD = KUPONDAG.FORRIGE ## Returnerer den forrige kupondato før afregningsdatoen +CUMIPMT = AKKUM.RENTE ## Returnerer den akkumulerede rente, der betales pÃ¥ et lÃ¥n mellem to perioder +CUMPRINC = AKKUM.HOVEDSTOL ## Returnerer den akkumulerede nedbringelse af hovedstol mellem to perioder +DB = DB ## Returnerer afskrivningen pÃ¥ et aktiv i en angivet periode ved anvendelse af saldometoden +DDB = DSA ## Returnerer afskrivningsbeløbet for et aktiv over en bestemt periode ved anvendelse af dobbeltsaldometoden eller en anden afskrivningsmetode, som du angiver +DISC = DISKONTO ## Returnerer et værdipapirs diskonto +DOLLARDE = KR.DECIMAL ## Konverterer en kronepris udtrykt som brøk til en kronepris udtrykt som decimaltal +DOLLARFR = KR.BRØK ## Konverterer en kronepris udtrykt som decimaltal til en kronepris udtrykt som brøk +DURATION = VARIGHED ## Returnerer den Ã¥rlige løbetid for et værdipapir med periodiske renteudbetalinger +EFFECT = EFFEKTIV.RENTE ## Returnerer den Ã¥rlige effektive rente +FV = FV ## Returnerer fremtidsværdien af en investering +FVSCHEDULE = FVTABEL ## Returnerer den fremtidige værdi af en hovedstol, nÃ¥r der er tilskrevet rente og rentes rente efter forskellige rentesatser +INTRATE = RENTEFOD ## Returnerer renten pÃ¥ et fuldt ud investeret værdipapir +IPMT = R.YDELSE ## Returnerer renten fra en investering for en given periode +IRR = IA ## Returnerer den interne rente for en række pengestrømme +ISPMT = ISPMT ## Beregner den betalte rente i løbet af en bestemt investeringsperiode +MDURATION = MVARIGHED ## Returnerer Macauleys modificerede løbetid for et værdipapir med en formodet pari pÃ¥ kr. 100 +MIRR = MIA ## Returnerer den interne forrentning, hvor positive og negative pengestrømme finansieres til forskellig rente +NOMINAL = NOMINEL ## Returnerer den Ã¥rlige nominelle rente +NPER = NPER ## Returnerer antallet af perioder for en investering +NPV = NUTIDSVÆRDI ## Returnerer nettonutidsværdien for en investering baseret pÃ¥ en række periodiske pengestrømme og en diskonteringssats +ODDFPRICE = ULIGE.KURS.PÃ…LYDENDE ## Returnerer kursen pr. kr. 100 nominel værdi for et værdipapir med en ulige (kort eller lang) første periode +ODDFYIELD = ULIGE.FØRSTE.AFKAST ## Returnerer afkastet for et værdipapir med ulige første periode +ODDLPRICE = ULIGE.SIDSTE.KURS ## Returnerer kursen pr. kr. 100 nominel værdi for et værdipapir med ulige sidste periode +ODDLYIELD = ULIGE.SIDSTE.AFKAST ## Returnerer afkastet for et værdipapir med ulige sidste periode +PMT = YDELSE ## Returnerer renten fra en investering for en given periode +PPMT = H.YDELSE ## Returnerer ydelsen pÃ¥ hovedstolen for en investering i en given periode +PRICE = KURS ## Returnerer kursen pr. kr 100 nominel værdi for et værdipapir med periodiske renteudbetalinger +PRICEDISC = KURS.DISKONTO ## Returnerer kursen pr. kr 100 nominel værdi for et diskonteret værdipapir +PRICEMAT = KURS.UDLØB ## Returnerer kursen pr. kr 100 nominel værdi for et værdipapir, hvor renten udbetales ved papirets udløb +PV = NV ## Returnerer den nuværende værdi af en investering +RATE = RENTE ## Returnerer renten i hver periode for en annuitet +RECEIVED = MODTAGET.VED.UDLØB ## Returnerer det beløb, der modtages ved udløbet af et fuldt ud investeret værdipapir +SLN = LA ## Returnerer den lineære afskrivning for et aktiv i en enkelt periode +SYD = Ã…RSAFSKRIVNING ## Returnerer den Ã¥rlige afskrivning pÃ¥ et aktiv i en bestemt periode +TBILLEQ = STATSOBLIGATION ## Returnerer det obligationsækvivalente afkast for en statsobligation +TBILLPRICE = STATSOBLIGATION.KURS ## Returnerer kursen pr. kr 100 nominel værdi for en statsobligation +TBILLYIELD = STATSOBLIGATION.AFKAST ## Returnerer en afkastet pÃ¥ en statsobligation +VDB = VSA ## Returnerer afskrivningen pÃ¥ et aktiv i en angivet periode, herunder delperioder, ved brug af dobbeltsaldometoden +XIRR = INTERN.RENTE ## Returnerer den interne rente for en plan over pengestrømme, der ikke behøver at være periodiske +XNPV = NETTO.NUTIDSVÆRDI ## Returnerer nutidsværdien for en plan over pengestrømme, der ikke behøver at være periodiske +YIELD = AFKAST ## Returnerer afkastet for et værdipapir med periodiske renteudbetalinger +YIELDDISC = AFKAST.DISKONTO ## Returnerer det Ã¥rlige afkast for et diskonteret værdipapir, f.eks. en statsobligation +YIELDMAT = AFKAST.UDLØBSDATO ## Returnerer det Ã¥rlige afkast for et værdipapir, hvor renten udbetales ved papirets udløb + + +## +## Information functions Informationsfunktioner +## +CELL = CELLE ## Returnerer oplysninger om formatering, placering eller indhold af en celle +ERROR.TYPE = FEJLTYPE ## Returnerer et tal, der svarer til en fejltype +INFO = INFO ## Returnerer oplysninger om det aktuelle operativmiljø +ISBLANK = ER.TOM ## Returnerer SAND, hvis værdien er tom +ISERR = ER.FJL ## Returnerer SAND, hvis værdien er en fejlværdi undtagen #I/T +ISERROR = ER.FEJL ## Returnerer SAND, hvis værdien er en fejlværdi +ISEVEN = ER.LIGE ## Returnerer SAND, hvis tallet er lige +ISLOGICAL = ER.LOGISK ## Returnerer SAND, hvis værdien er en logisk værdi +ISNA = ER.IKKE.TILGÆNGELIG ## Returnerer SAND, hvis værdien er fejlværdien #I/T +ISNONTEXT = ER.IKKE.TEKST ## Returnerer SAND, hvis værdien ikke er tekst +ISNUMBER = ER.TAL ## Returnerer SAND, hvis værdien er et tal +ISODD = ER.ULIGE ## Returnerer SAND, hvis tallet er ulige +ISREF = ER.REFERENCE ## Returnerer SAND, hvis værdien er en reference +ISTEXT = ER.TEKST ## Returnerer SAND, hvis værdien er tekst +N = TAL ## Returnerer en værdi konverteret til et tal +NA = IKKE.TILGÆNGELIG ## Returnerer fejlværdien #I/T +TYPE = VÆRDITYPE ## Returnerer et tal, der angiver datatypen for en værdi + + +## +## Logical functions Logiske funktioner +## +AND = OG ## Returnerer SAND, hvis alle argumenterne er sande +FALSE = FALSK ## Returnerer den logiske værdi FALSK +IF = HVIS ## Angiver en logisk test, der skal udføres +IFERROR = HVIS.FEJL ## Returnerer en værdi, du angiver, hvis en formel evauleres som en fejl. Returnerer i modsat fald resultatet af formlen +NOT = IKKE ## Vender argumentets logik om +OR = ELLER ## Returneret værdien SAND, hvis mindst ét argument er sandt +TRUE = SAND ## Returnerer den logiske værdi SAND + + +## +## Lookup and reference functions Opslags- og referencefunktioner +## +ADDRESS = ADRESSE ## Returnerer en reference som tekst til en enkelt celle i et regneark +AREAS = OMRÃ…DER ## Returnerer antallet af omrÃ¥der i en reference +CHOOSE = VÆLG ## Vælger en værdi pÃ¥ en liste med værdier +COLUMN = KOLONNE ## Returnerer kolonnenummeret i en reference +COLUMNS = KOLONNER ## Returnerer antallet af kolonner i en reference +HLOOKUP = VOPSLAG ## Søger i den øverste række af en matrix og returnerer værdien af den angivne celle +HYPERLINK = HYPERLINK ## Opretter en genvej kaldet et hyperlink, der Ã¥bner et dokument, som er lagret pÃ¥ en netværksserver, pÃ¥ et intranet eller pÃ¥ internettet +INDEX = INDEKS ## Anvender et indeks til at vælge en værdi fra en reference eller en matrix +INDIRECT = INDIREKTE ## Returnerer en reference, der er angivet af en tekstværdi +LOOKUP = SLÃ….OP ## Søger værdier i en vektor eller en matrix +MATCH = SAMMENLIGN ## Søger værdier i en reference eller en matrix +OFFSET = FORSKYDNING ## Returnerer en reference forskudt i forhold til en given reference +ROW = RÆKKE ## Returnerer rækkenummeret for en reference +ROWS = RÆKKER ## Returnerer antallet af rækker i en reference +RTD = RTD ## Henter realtidsdata fra et program, der understøtter COM-automatisering (Automation: En metode til at arbejde med objekter fra et andet program eller udviklingsværktøj. Automation, som tidligere blev kaldt OLE Automation, er en industristandard og en funktion i COM (Component Object Model).) +TRANSPOSE = TRANSPONER ## Returnerer en transponeret matrix +VLOOKUP = LOPSLAG ## Søger i øverste række af en matrix og flytter pÃ¥ tværs af rækken for at returnere en celleværdi + + +## +## Math and trigonometry functions Matematiske og trigonometriske funktioner +## +ABS = ABS ## Returnerer den absolutte værdi af et tal +ACOS = ARCCOS ## Returnerer et tals arcus cosinus +ACOSH = ARCCOSH ## Returnerer den inverse hyperbolske cosinus af tal +ASIN = ARCSIN ## Returnerer et tals arcus sinus +ASINH = ARCSINH ## Returnerer den inverse hyperbolske sinus for tal +ATAN = ARCTAN ## Returnerer et tals arcus tangens +ATAN2 = ARCTAN2 ## Returnerer de angivne x- og y-koordinaters arcus tangens +ATANH = ARCTANH ## Returnerer et tals inverse hyperbolske tangens +CEILING = AFRUND.LOFT ## Afrunder et tal til nærmeste heltal eller til nærmeste multiplum af betydning +COMBIN = KOMBIN ## Returnerer antallet af kombinationer for et givet antal objekter +COS = COS ## Returnerer et tals cosinus +COSH = COSH ## Returnerer den inverse hyperbolske cosinus af et tal +DEGREES = GRADER ## Konverterer radianer til grader +EVEN = LIGE ## Runder et tal op til nærmeste lige heltal +EXP = EKSP ## Returnerer e opløftet til en potens af et angivet tal +FACT = FAKULTET ## Returnerer et tals fakultet +FACTDOUBLE = DOBBELT.FAKULTET ## Returnerer et tals dobbelte fakultet +FLOOR = AFRUND.GULV ## Runder et tal ned mod nul +GCD = STØRSTE.FÆLLES.DIVISOR ## Returnerer den største fælles divisor +INT = HELTAL ## Nedrunder et tal til det nærmeste heltal +LCM = MINDSTE.FÆLLES.MULTIPLUM ## Returnerer det mindste fælles multiplum +LN = LN ## Returnerer et tals naturlige logaritme +LOG = LOG ## Returnerer logaritmen for et tal pÃ¥ grundlag af et angivet grundtal +LOG10 = LOG10 ## Returnerer titalslogaritmen af et tal +MDETERM = MDETERM ## Returnerer determinanten for en matrix +MINVERSE = MINVERT ## Returnerer den inverse matrix for en matrix +MMULT = MPRODUKT ## Returnerer matrixproduktet af to matrixer +MOD = REST ## Returnerer restværdien fra division +MROUND = MAFRUND ## Returnerer et tal afrundet til det ønskede multiplum +MULTINOMIAL = MULTINOMIAL ## Returnerer et multinomialt talsæt +ODD = ULIGE ## Runder et tal op til nærmeste ulige heltal +PI = PI ## Returnerer værdien af pi +POWER = POTENS ## Returnerer resultatet af et tal opløftet til en potens +PRODUCT = PRODUKT ## Multiplicerer argumenterne +QUOTIENT = KVOTIENT ## Returnerer heltalsdelen ved division +RADIANS = RADIANER ## Konverterer grader til radianer +RAND = SLUMP ## Returnerer et tilfældigt tal mellem 0 og 1 +RANDBETWEEN = SLUMP.MELLEM ## Returnerer et tilfældigt tal mellem de tal, der angives +ROMAN = ROMERTAL ## Konverterer et arabertal til romertal som tekst +ROUND = AFRUND ## Afrunder et tal til et angivet antal decimaler +ROUNDDOWN = RUND.NED ## Runder et tal ned mod nul +ROUNDUP = RUND.OP ## Runder et tal op, væk fra 0 (nul) +SERIESSUM = SERIESUM ## Returnerer summen af en potensserie baseret pÃ¥ en formel +SIGN = FORTEGN ## Returnerer et tals fortegn +SIN = SIN ## Returnerer en given vinkels sinusværdi +SINH = SINH ## Returnerer den hyperbolske sinus af et tal +SQRT = KVROD ## Returnerer en positiv kvadratrod +SQRTPI = KVRODPI ## Returnerer kvadratroden af (tal * pi;) +SUBTOTAL = SUBTOTAL ## Returnerer en subtotal pÃ¥ en liste eller i en database +SUM = SUM ## Lægger argumenterne sammen +SUMIF = SUM.HVIS ## Lægger de celler sammen, der er specificeret af et givet kriterium. +SUMIFS = SUM.HVISER ## Lægger de celler i et omrÃ¥de sammen, der opfylder flere kriterier. +SUMPRODUCT = SUMPRODUKT ## Returnerer summen af produkter af ens matrixkomponenter +SUMSQ = SUMKV ## Returnerer summen af argumenternes kvadrater +SUMX2MY2 = SUMX2MY2 ## Returnerer summen af differensen mellem kvadrater af ens værdier i to matrixer +SUMX2PY2 = SUMX2PY2 ## Returnerer summen af summen af kvadrater af tilsvarende værdier i to matrixer +SUMXMY2 = SUMXMY2 ## Returnerer summen af kvadrater af differenser mellem ens værdier i to matrixer +TAN = TAN ## Returnerer et tals tangens +TANH = TANH ## Returnerer et tals hyperbolske tangens +TRUNC = AFKORT ## Afkorter et tal til et heltal + + +## +## Statistical functions Statistiske funktioner +## +AVEDEV = MAD ## Returnerer den gennemsnitlige numeriske afvigelse fra stikprøvens middelværdi +AVERAGE = MIDDEL ## Returnerer middelværdien af argumenterne +AVERAGEA = MIDDELV ## Returnerer middelværdien af argumenterne og medtager tal, tekst og logiske værdier +AVERAGEIF = MIDDEL.HVIS ## Returnerer gennemsnittet (den aritmetiske middelværdi) af alle de celler, der opfylder et givet kriterium, i et omrÃ¥de +AVERAGEIFS = MIDDEL.HVISER ## Returnerer gennemsnittet (den aritmetiske middelværdi) af alle de celler, der opfylder flere kriterier. +BETADIST = BETAFORDELING ## Returnerer den kumulative betafordelingsfunktion +BETAINV = BETAINV ## Returnerer den inverse kumulative fordelingsfunktion for en angivet betafordeling +BINOMDIST = BINOMIALFORDELING ## Returnerer punktsandsynligheden for binomialfordelingen +CHIDIST = CHIFORDELING ## Returnerer fraktilsandsynligheden for en chi2-fordeling +CHIINV = CHIINV ## Returnerer den inverse fraktilsandsynlighed for en chi2-fordeling +CHITEST = CHITEST ## Foretager en test for uafhængighed +CONFIDENCE = KONFIDENSINTERVAL ## Returnerer et konfidensinterval for en population +CORREL = KORRELATION ## Returnerer korrelationskoefficienten mellem to datasæt +COUNT = TÆL ## Tæller antallet af tal pÃ¥ en liste med argumenter +COUNTA = TÆLV ## Tæller antallet af værdier pÃ¥ en liste med argumenter +COUNTBLANK = ANTAL.BLANKE ## Tæller antallet af tomme celler i et omrÃ¥de +COUNTIF = TÆLHVIS ## Tæller antallet af celler, som opfylder de givne kriterier, i et omrÃ¥de +COUNTIFS = TÆL.HVISER ## Tæller antallet af de celler, som opfylder flere kriterier, i et omrÃ¥de +COVAR = KOVARIANS ## Beregner kovariansen mellem to stokastiske variabler +CRITBINOM = KRITBINOM ## Returnerer den mindste værdi for x, for hvilken det gælder, at fordelingsfunktionen er mindre end eller lig med kriterieværdien. +DEVSQ = SAK ## Returnerer summen af de kvadrerede afvigelser fra middelværdien +EXPONDIST = EKSPFORDELING ## Returnerer eksponentialfordelingen +FDIST = FFORDELING ## Returnerer fraktilsandsynligheden for F-fordelingen +FINV = FINV ## Returnerer den inverse fraktilsandsynlighed for F-fordelingen +FISHER = FISHER ## Returnerer Fisher-transformationen +FISHERINV = FISHERINV ## Returnerer den inverse Fisher-transformation +FORECAST = PROGNOSE ## Returnerer en prognoseværdi baseret pÃ¥ lineær tendens +FREQUENCY = FREKVENS ## Returnerer en frekvensfordeling i en søjlevektor +FTEST = FTEST ## Returnerer resultatet af en F-test til sammenligning af varians +GAMMADIST = GAMMAFORDELING ## Returnerer fordelingsfunktionen for gammafordelingen +GAMMAINV = GAMMAINV ## Returnerer den inverse fordelingsfunktion for gammafordelingen +GAMMALN = GAMMALN ## Returnerer den naturlige logaritme til gammafordelingen, G(x) +GEOMEAN = GEOMIDDELVÆRDI ## Returnerer det geometriske gennemsnit +GROWTH = FORØGELSE ## Returnerer værdier langs en eksponentiel tendens +HARMEAN = HARMIDDELVÆRDI ## Returnerer det harmoniske gennemsnit +HYPGEOMDIST = HYPGEOFORDELING ## Returnerer punktsandsynligheden i en hypergeometrisk fordeling +INTERCEPT = SKÆRING ## Returnerer afskæringsværdien pÃ¥ y-aksen i en lineær regression +KURT = TOPSTEJL ## Returnerer kurtosisværdien for en stokastisk variabel +LARGE = STOR ## Returnerer den k'te største værdi i et datasæt +LINEST = LINREGR ## Returnerer parameterestimaterne for en lineær tendens +LOGEST = LOGREGR ## Returnerer parameterestimaterne for en eksponentiel tendens +LOGINV = LOGINV ## Returnerer den inverse fordelingsfunktion for lognormalfordelingen +LOGNORMDIST = LOGNORMFORDELING ## Returnerer fordelingsfunktionen for lognormalfordelingen +MAX = MAKS ## Returnerer den maksimale værdi pÃ¥ en liste med argumenter. +MAXA = MAKSV ## Returnerer den maksimale værdi pÃ¥ en liste med argumenter og medtager tal, tekst og logiske værdier +MEDIAN = MEDIAN ## Returnerer medianen for de angivne tal +MIN = MIN ## Returnerer den mindste værdi pÃ¥ en liste med argumenter. +MINA = MINV ## Returnerer den mindste værdi pÃ¥ en liste med argumenter og medtager tal, tekst og logiske værdier +MODE = HYPPIGST ## Returnerer den hyppigste værdi i et datasæt +NEGBINOMDIST = NEGBINOMFORDELING ## Returnerer den negative binomialfordeling +NORMDIST = NORMFORDELING ## Returnerer fordelingsfunktionen for normalfordelingen +NORMINV = NORMINV ## Returnerer den inverse fordelingsfunktion for normalfordelingen +NORMSDIST = STANDARDNORMFORDELING ## Returnerer fordelingsfunktionen for standardnormalfordelingen +NORMSINV = STANDARDNORMINV ## Returnerer den inverse fordelingsfunktion for standardnormalfordelingen +PEARSON = PEARSON ## Returnerer Pearsons korrelationskoefficient +PERCENTILE = FRAKTIL ## Returnerer den k'te fraktil for datasættet +PERCENTRANK = PROCENTPLADS ## Returnerer den procentuelle rang for en given værdi i et datasæt +PERMUT = PERMUT ## Returnerer antallet af permutationer for et givet sæt objekter +POISSON = POISSON ## Returnerer fordelingsfunktionen for en Poisson-fordeling +PROB = SANDSYNLIGHED ## Returnerer intervalsandsynligheden +QUARTILE = KVARTIL ## Returnerer kvartilen i et givet datasæt +RANK = PLADS ## Returnerer rangen for et tal pÃ¥ en liste med tal +RSQ = FORKLARINGSGRAD ## Returnerer R2-værdien fra en simpel lineær regression +SKEW = SKÆVHED ## Returnerer skævheden for en stokastisk variabel +SLOPE = HÆLDNING ## Returnerer estimatet pÃ¥ hældningen fra en simpel lineær regression +SMALL = MINDSTE ## Returnerer den k'te mindste værdi i datasættet +STANDARDIZE = STANDARDISER ## Returnerer en standardiseret værdi +STDEV = STDAFV ## Estimerer standardafvigelsen pÃ¥ basis af en stikprøve +STDEVA = STDAFVV ## Beregner standardafvigelsen pÃ¥ basis af en prøve og medtager tal, tekst og logiske værdier +STDEVP = STDAFVP ## Beregner standardafvigelsen pÃ¥ basis af en hel population +STDEVPA = STDAFVPV ## Beregner standardafvigelsen pÃ¥ basis af en hel population og medtager tal, tekst og logiske værdier +STEYX = STFYX ## Returnerer standardafvigelsen for de estimerede y-værdier i den simple lineære regression +TDIST = TFORDELING ## Returnerer fordelingsfunktionen for Student's t-fordeling +TINV = TINV ## Returnerer den inverse fordelingsfunktion for Student's t-fordeling +TREND = TENDENS ## Returnerer værdi under antagelse af en lineær tendens +TRIMMEAN = TRIMMIDDELVÆRDI ## Returnerer den trimmede middelværdi for datasættet +TTEST = TTEST ## Returnerer den sandsynlighed, der er forbundet med Student's t-test +VAR = VARIANS ## Beregner variansen pÃ¥ basis af en prøve +VARA = VARIANSV ## Beregner variansen pÃ¥ basis af en prøve og medtager tal, tekst og logiske værdier +VARP = VARIANSP ## Beregner variansen pÃ¥ basis af hele populationen +VARPA = VARIANSPV ## Beregner variansen pÃ¥ basis af hele populationen og medtager tal, tekst og logiske værdier +WEIBULL = WEIBULL ## Returnerer fordelingsfunktionen for Weibull-fordelingen +ZTEST = ZTEST ## Returnerer sandsynlighedsværdien ved en en-sidet z-test + + +## +## Text functions Tekstfunktioner +## +ASC = ASC ## Ændrer engelske tegn i fuld bredde (dobbelt-byte) eller katakana i en tegnstreng til tegn i halv bredde (enkelt-byte) +BAHTTEXT = BAHTTEKST ## Konverterer et tal til tekst ved hjælp af valutaformatet ß (baht) +CHAR = TEGN ## Returnerer det tegn, der svarer til kodenummeret +CLEAN = RENS ## Fjerner alle tegn, der ikke kan udskrives, fra tekst +CODE = KODE ## Returnerer en numerisk kode for det første tegn i en tekststreng +CONCATENATE = SAMMENKÆDNING ## Sammenkæder adskillige tekstelementer til ét tekstelement +DOLLAR = KR ## Konverterer et tal til tekst ved hjælp af valutaformatet kr. (kroner) +EXACT = EKSAKT ## Kontrollerer, om to tekstværdier er identiske +FIND = FIND ## Søger efter en tekstværdi i en anden tekstværdi (der skelnes mellem store og smÃ¥ bogstaver) +FINDB = FINDB ## Søger efter en tekstværdi i en anden tekstværdi (der skelnes mellem store og smÃ¥ bogstaver) +FIXED = FAST ## Formaterer et tal som tekst med et fast antal decimaler +JIS = JIS ## Ændrer engelske tegn i halv bredde (enkelt-byte) eller katakana i en tegnstreng til tegn i fuld bredde (dobbelt-byte) +LEFT = VENSTRE ## Returnerer tegnet længst til venstre i en tekstværdi +LEFTB = VENSTREB ## Returnerer tegnet længst til venstre i en tekstværdi +LEN = LÆNGDE ## Returnerer antallet af tegn i en tekststreng +LENB = LÆNGDEB ## Returnerer antallet af tegn i en tekststreng +LOWER = SMÃ….BOGSTAVER ## Konverterer tekst til smÃ¥ bogstaver +MID = MIDT ## Returnerer et bestemt antal tegn fra en tekststreng fra og med den angivne startposition +MIDB = MIDTB ## Returnerer et bestemt antal tegn fra en tekststreng fra og med den angivne startposition +PHONETIC = FONETISK ## Uddrager de fonetiske (furigana) tegn fra en tekststreng +PROPER = STORT.FORBOGSTAV ## Konverterer første bogstav i hvert ord i teksten til stort bogstav +REPLACE = ERSTAT ## Erstatter tegn i tekst +REPLACEB = ERSTATB ## Erstatter tegn i tekst +REPT = GENTAG ## Gentager tekst et givet antal gange +RIGHT = HØJRE ## Returnerer tegnet længste til højre i en tekstværdi +RIGHTB = HØJREB ## Returnerer tegnet længste til højre i en tekstværdi +SEARCH = SØG ## Søger efter en tekstværdi i en anden tekstværdi (der skelnes ikke mellem store og smÃ¥ bogstaver) +SEARCHB = SØGB ## Søger efter en tekstværdi i en anden tekstværdi (der skelnes ikke mellem store og smÃ¥ bogstaver) +SUBSTITUTE = UDSKIFT ## Udskifter gammel tekst med ny tekst i en tekststreng +T = T ## Konverterer argumenterne til tekst +TEXT = TEKST ## Formaterer et tal og konverterer det til tekst +TRIM = FJERN.OVERFLØDIGE.BLANKE ## Fjerner mellemrum fra tekst +UPPER = STORE.BOGSTAVER ## Konverterer tekst til store bogstaver +VALUE = VÆRDI ## Konverterer et tekstargument til et tal diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/de/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/de/config new file mode 100644 index 0000000..aa0228e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/de/config @@ -0,0 +1,47 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = € + + +## +## Excel Error Codes (For future use) +## +NULL = #NULL! +DIV0 = #DIV/0! +VALUE = #WERT! +REF = #BEZUG! +NAME = #NAME? +NUM = #ZAHL! +NA = #NV diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/de/functions b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/de/functions new file mode 100644 index 0000000..3147f9c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/de/functions @@ -0,0 +1,438 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Calculation +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## Data in this file derived from http://www.piuha.fi/excel-function-name-translation/ +## +## + + +## +## Add-in and Automation functions Add-In- und Automatisierungsfunktionen +## +GETPIVOTDATA = PIVOTDATENZUORDNEN ## In einem PivotTable-Bericht gespeicherte Daten werden zurückgegeben. + + +## +## Cube functions Cubefunktionen +## +CUBEKPIMEMBER = CUBEKPIELEMENT ## Gibt Name, Eigenschaft und Measure eines Key Performance Indicators (KPI) zurück und zeigt den Namen und die Eigenschaft in der Zelle an. Ein KPI ist ein quantifizierbares Maß, wie z. B. der monatliche Bruttogewinn oder die vierteljährliche Mitarbeiterfluktuation, mit dessen Hilfe das Leistungsverhalten eines Unternehmens überwacht werden kann. +CUBEMEMBER = CUBEELEMENT ## Gibt ein Element oder ein Tuple in einer Cubehierarchie zurück. Wird verwendet, um zu überprüfen, ob das Element oder Tuple im Cube vorhanden ist. +CUBEMEMBERPROPERTY = CUBEELEMENTEIGENSCHAFT ## Gibt den Wert einer Elementeigenschaft im Cube zurück. Wird verwendet, um zu überprüfen, ob ein Elementname im Cube vorhanden ist, und um die für dieses Element angegebene Eigenschaft zurückzugeben. +CUBERANKEDMEMBER = CUBERANGELEMENT ## Gibt das n-te oder n-rangige Element in einer Menge zurück. Wird verwendet, um mindestens ein Element in einer Menge zurückzugeben, wie z. B. bester Vertriebsmitarbeiter oder 10 beste Kursteilnehmer. +CUBESET = CUBEMENGE ## Definiert eine berechnete Menge Elemente oder Tuples durch Senden eines Mengenausdrucks an den Cube auf dem Server, der die Menge erstellt und an Microsoft Office Excel zurückgibt. +CUBESETCOUNT = CUBEMENGENANZAHL ## Gibt die Anzahl der Elemente in einer Menge zurück. +CUBEVALUE = CUBEWERT ## Gibt einen Aggregatwert aus einem Cube zurück. + + +## +## Database functions Datenbankfunktionen +## +DAVERAGE = DBMITTELWERT ## Gibt den Mittelwert der ausgewählten Datenbankeinträge zurück +DCOUNT = DBANZAHL ## Zählt die Zellen mit Zahlen in einer Datenbank +DCOUNTA = DBANZAHL2 ## Zählt nicht leere Zellen in einer Datenbank +DGET = DBAUSZUG ## Extrahiert aus einer Datenbank einen einzelnen Datensatz, der den angegebenen Kriterien entspricht +DMAX = DBMAX ## Gibt den größten Wert aus ausgewählten Datenbankeinträgen zurück +DMIN = DBMIN ## Gibt den kleinsten Wert aus ausgewählten Datenbankeinträgen zurück +DPRODUCT = DBPRODUKT ## Multipliziert die Werte in einem bestimmten Feld mit Datensätzen, die den Kriterien in einer Datenbank entsprechen +DSTDEV = DBSTDABW ## Schätzt die Standardabweichung auf der Grundlage einer Stichprobe aus ausgewählten Datenbankeinträgen +DSTDEVP = DBSTDABWN ## Berechnet die Standardabweichung auf der Grundlage der Grundgesamtheit ausgewählter Datenbankeinträge +DSUM = DBSUMME ## Addiert die Zahlen in der Feldspalte mit Datensätzen in der Datenbank, die den Kriterien entsprechen +DVAR = DBVARIANZ ## Schätzt die Varianz auf der Grundlage ausgewählter Datenbankeinträge +DVARP = DBVARIANZEN ## Berechnet die Varianz auf der Grundlage der Grundgesamtheit ausgewählter Datenbankeinträge + + +## +## Date and time functions Datums- und Zeitfunktionen +## +DATE = DATUM ## Gibt die fortlaufende Zahl eines bestimmten Datums zurück +DATEVALUE = DATWERT ## Wandelt ein Datum in Form von Text in eine fortlaufende Zahl um +DAY = TAG ## Wandelt eine fortlaufende Zahl in den Tag des Monats um +DAYS360 = TAGE360 ## Berechnet die Anzahl der Tage zwischen zwei Datumsangaben ausgehend von einem Jahr, das 360 Tage hat +EDATE = EDATUM ## Gibt die fortlaufende Zahl des Datums zurück, bei dem es sich um die angegebene Anzahl von Monaten vor oder nach dem Anfangstermin handelt +EOMONTH = MONATSENDE ## Gibt die fortlaufende Zahl des letzten Tags des Monats vor oder nach einer festgelegten Anzahl von Monaten zurück +HOUR = STUNDE ## Wandelt eine fortlaufende Zahl in eine Stunde um +MINUTE = MINUTE ## Wandelt eine fortlaufende Zahl in eine Minute um +MONTH = MONAT ## Wandelt eine fortlaufende Zahl in einen Monat um +NETWORKDAYS = NETTOARBEITSTAGE ## Gibt die Anzahl von ganzen Arbeitstagen zwischen zwei Datumswerten zurück +NOW = JETZT ## Gibt die fortlaufende Zahl des aktuellen Datums und der aktuellen Uhrzeit zurück +SECOND = SEKUNDE ## Wandelt eine fortlaufende Zahl in eine Sekunde um +TIME = ZEIT ## Gibt die fortlaufende Zahl einer bestimmten Uhrzeit zurück +TIMEVALUE = ZEITWERT ## Wandelt eine Uhrzeit in Form von Text in eine fortlaufende Zahl um +TODAY = HEUTE ## Gibt die fortlaufende Zahl des heutigen Datums zurück +WEEKDAY = WOCHENTAG ## Wandelt eine fortlaufende Zahl in den Wochentag um +WEEKNUM = KALENDERWOCHE ## Wandelt eine fortlaufende Zahl in eine Zahl um, die angibt, in welche Woche eines Jahres das angegebene Datum fällt +WORKDAY = ARBEITSTAG ## Gibt die fortlaufende Zahl des Datums vor oder nach einer bestimmten Anzahl von Arbeitstagen zurück +YEAR = JAHR ## Wandelt eine fortlaufende Zahl in ein Jahr um +YEARFRAC = BRTEILJAHRE ## Gibt die Anzahl der ganzen Tage zwischen Ausgangsdatum und Enddatum in Bruchteilen von Jahren zurück + + +## +## Engineering functions Konstruktionsfunktionen +## +BESSELI = BESSELI ## Gibt die geänderte Besselfunktion In(x) zurück +BESSELJ = BESSELJ ## Gibt die Besselfunktion Jn(x) zurück +BESSELK = BESSELK ## Gibt die geänderte Besselfunktion Kn(x) zurück +BESSELY = BESSELY ## Gibt die Besselfunktion Yn(x) zurück +BIN2DEC = BININDEZ ## Wandelt eine binäre Zahl (Dualzahl) in eine dezimale Zahl um +BIN2HEX = BININHEX ## Wandelt eine binäre Zahl (Dualzahl) in eine hexadezimale Zahl um +BIN2OCT = BININOKT ## Wandelt eine binäre Zahl (Dualzahl) in eine oktale Zahl um +COMPLEX = KOMPLEXE ## Wandelt den Real- und Imaginärteil in eine komplexe Zahl um +CONVERT = UMWANDELN ## Wandelt eine Zahl von einem Maßsystem in ein anderes um +DEC2BIN = DEZINBIN ## Wandelt eine dezimale Zahl in eine binäre Zahl (Dualzahl) um +DEC2HEX = DEZINHEX ## Wandelt eine dezimale Zahl in eine hexadezimale Zahl um +DEC2OCT = DEZINOKT ## Wandelt eine dezimale Zahl in eine oktale Zahl um +DELTA = DELTA ## Überprüft, ob zwei Werte gleich sind +ERF = GAUSSFEHLER ## Gibt die Gauss'sche Fehlerfunktion zurück +ERFC = GAUSSFKOMPL ## Gibt das Komplement zur Gauss'schen Fehlerfunktion zurück +GESTEP = GGANZZAHL ## Überprüft, ob eine Zahl größer als ein gegebener Schwellenwert ist +HEX2BIN = HEXINBIN ## Wandelt eine hexadezimale Zahl in eine Binärzahl um +HEX2DEC = HEXINDEZ ## Wandelt eine hexadezimale Zahl in eine dezimale Zahl um +HEX2OCT = HEXINOKT ## Wandelt eine hexadezimale Zahl in eine Oktalzahl um +IMABS = IMABS ## Gibt den Absolutbetrag (Modulo) einer komplexen Zahl zurück +IMAGINARY = IMAGINÄRTEIL ## Gibt den Imaginärteil einer komplexen Zahl zurück +IMARGUMENT = IMARGUMENT ## Gibt das Argument Theta zurück, einen Winkel, der als Bogenmaß ausgedrückt wird +IMCONJUGATE = IMKONJUGIERTE ## Gibt die konjugierte komplexe Zahl zu einer komplexen Zahl zurück +IMCOS = IMCOS ## Gibt den Kosinus einer komplexen Zahl zurück +IMDIV = IMDIV ## Gibt den Quotienten zweier komplexer Zahlen zurück +IMEXP = IMEXP ## Gibt die algebraische Form einer in exponentieller Schreibweise vorliegenden komplexen Zahl zurück +IMLN = IMLN ## Gibt den natürlichen Logarithmus einer komplexen Zahl zurück +IMLOG10 = IMLOG10 ## Gibt den Logarithmus einer komplexen Zahl zur Basis 10 zurück +IMLOG2 = IMLOG2 ## Gibt den Logarithmus einer komplexen Zahl zur Basis 2 zurück +IMPOWER = IMAPOTENZ ## Potenziert eine komplexe Zahl mit einer ganzen Zahl +IMPRODUCT = IMPRODUKT ## Gibt das Produkt von komplexen Zahlen zurück +IMREAL = IMREALTEIL ## Gibt den Realteil einer komplexen Zahl zurück +IMSIN = IMSIN ## Gibt den Sinus einer komplexen Zahl zurück +IMSQRT = IMWURZEL ## Gibt die Quadratwurzel einer komplexen Zahl zurück +IMSUB = IMSUB ## Gibt die Differenz zwischen zwei komplexen Zahlen zurück +IMSUM = IMSUMME ## Gibt die Summe von komplexen Zahlen zurück +OCT2BIN = OKTINBIN ## Wandelt eine oktale Zahl in eine binäre Zahl (Dualzahl) um +OCT2DEC = OKTINDEZ ## Wandelt eine oktale Zahl in eine dezimale Zahl um +OCT2HEX = OKTINHEX ## Wandelt eine oktale Zahl in eine hexadezimale Zahl um + + +## +## Financial functions Finanzmathematische Funktionen +## +ACCRINT = AUFGELZINS ## Gibt die aufgelaufenen Zinsen (Stückzinsen) eines Wertpapiers mit periodischen Zinszahlungen zurück +ACCRINTM = AUFGELZINSF ## Gibt die aufgelaufenen Zinsen (Stückzinsen) eines Wertpapiers zurück, die bei Fälligkeit ausgezahlt werden +AMORDEGRC = AMORDEGRK ## Gibt die Abschreibung für die einzelnen Abschreibungszeiträume mithilfe eines Abschreibungskoeffizienten zurück +AMORLINC = AMORLINEARK ## Gibt die Abschreibung für die einzelnen Abschreibungszeiträume zurück +COUPDAYBS = ZINSTERMTAGVA ## Gibt die Anzahl der Tage vom Anfang des Zinstermins bis zum Abrechnungstermin zurück +COUPDAYS = ZINSTERMTAGE ## Gibt die Anzahl der Tage der Zinsperiode zurück, die den Abrechnungstermin einschließt +COUPDAYSNC = ZINSTERMTAGNZ ## Gibt die Anzahl der Tage vom Abrechnungstermin bis zum nächsten Zinstermin zurück +COUPNCD = ZINSTERMNZ ## Gibt das Datum des ersten Zinstermins nach dem Abrechnungstermin zurück +COUPNUM = ZINSTERMZAHL ## Gibt die Anzahl der Zinstermine zwischen Abrechnungs- und Fälligkeitsdatum zurück +COUPPCD = ZINSTERMVZ ## Gibt das Datum des letzten Zinstermins vor dem Abrechnungstermin zurück +CUMIPMT = KUMZINSZ ## Berechnet die kumulierten Zinsen, die zwischen zwei Perioden zu zahlen sind +CUMPRINC = KUMKAPITAL ## Berechnet die aufgelaufene Tilgung eines Darlehens, die zwischen zwei Perioden zu zahlen ist +DB = GDA2 ## Gibt die geometrisch-degressive Abschreibung eines Wirtschaftsguts für eine bestimmte Periode zurück +DDB = GDA ## Gibt die Abschreibung eines Anlageguts für einen angegebenen Zeitraum unter Verwendung der degressiven Doppelraten-Abschreibung oder eines anderen von Ihnen angegebenen Abschreibungsverfahrens zurück +DISC = DISAGIO ## Gibt den in Prozent ausgedrückten Abzinsungssatz eines Wertpapiers zurück +DOLLARDE = NOTIERUNGDEZ ## Wandelt eine Notierung, die als Dezimalbruch ausgedrückt wurde, in eine Dezimalzahl um +DOLLARFR = NOTIERUNGBRU ## Wandelt eine Notierung, die als Dezimalzahl ausgedrückt wurde, in einen Dezimalbruch um +DURATION = DURATION ## Gibt die jährliche Duration eines Wertpapiers mit periodischen Zinszahlungen zurück +EFFECT = EFFEKTIV ## Gibt die jährliche Effektivverzinsung zurück +FV = ZW ## Gibt den zukünftigen Wert (Endwert) einer Investition zurück +FVSCHEDULE = ZW2 ## Gibt den aufgezinsten Wert des Anfangskapitals für eine Reihe periodisch unterschiedlicher Zinssätze zurück +INTRATE = ZINSSATZ ## Gibt den Zinssatz eines voll investierten Wertpapiers zurück +IPMT = ZINSZ ## Gibt die Zinszahlung einer Investition für die angegebene Periode zurück +IRR = IKV ## Gibt den internen Zinsfuß einer Investition ohne Finanzierungskosten oder Reinvestitionsgewinne zurück +ISPMT = ISPMT ## Berechnet die während eines bestimmten Zeitraums für eine Investition gezahlten Zinsen +MDURATION = MDURATION ## Gibt die geänderte Dauer für ein Wertpapier mit einem angenommenen Nennwert von 100 € zurück +MIRR = QIKV ## Gibt den internen Zinsfuß zurück, wobei positive und negative Zahlungen zu unterschiedlichen Sätzen finanziert werden +NOMINAL = NOMINAL ## Gibt die jährliche Nominalverzinsung zurück +NPER = ZZR ## Gibt die Anzahl der Zahlungsperioden einer Investition zurück +NPV = NBW ## Gibt den Nettobarwert einer Investition auf Basis periodisch anfallender Zahlungen und eines Abzinsungsfaktors zurück +ODDFPRICE = UNREGER.KURS ## Gibt den Kurs pro 100 € Nennwert eines Wertpapiers mit einem unregelmäßigen ersten Zinstermin zurück +ODDFYIELD = UNREGER.REND ## Gibt die Rendite eines Wertpapiers mit einem unregelmäßigen ersten Zinstermin zurück +ODDLPRICE = UNREGLE.KURS ## Gibt den Kurs pro 100 € Nennwert eines Wertpapiers mit einem unregelmäßigen letzten Zinstermin zurück +ODDLYIELD = UNREGLE.REND ## Gibt die Rendite eines Wertpapiers mit einem unregelmäßigen letzten Zinstermin zurück +PMT = RMZ ## Gibt die periodische Zahlung für eine Annuität zurück +PPMT = KAPZ ## Gibt die Kapitalrückzahlung einer Investition für eine angegebene Periode zurück +PRICE = KURS ## Gibt den Kurs pro 100 € Nennwert eines Wertpapiers zurück, das periodisch Zinsen auszahlt +PRICEDISC = KURSDISAGIO ## Gibt den Kurs pro 100 € Nennwert eines unverzinslichen Wertpapiers zurück +PRICEMAT = KURSFÄLLIG ## Gibt den Kurs pro 100 € Nennwert eines Wertpapiers zurück, das Zinsen am Fälligkeitsdatum auszahlt +PV = BW ## Gibt den Barwert einer Investition zurück +RATE = ZINS ## Gibt den Zinssatz pro Zeitraum einer Annuität zurück +RECEIVED = AUSZAHLUNG ## Gibt den Auszahlungsbetrag eines voll investierten Wertpapiers am Fälligkeitstermin zurück +SLN = LIA ## Gibt die lineare Abschreibung eines Wirtschaftsguts pro Periode zurück +SYD = DIA ## Gibt die arithmetisch-degressive Abschreibung eines Wirtschaftsguts für eine bestimmte Periode zurück +TBILLEQ = TBILLÄQUIV ## Gibt die Rendite für ein Wertpapier zurück +TBILLPRICE = TBILLKURS ## Gibt den Kurs pro 100 € Nennwert eines Wertpapiers zurück +TBILLYIELD = TBILLRENDITE ## Gibt die Rendite für ein Wertpapier zurück +VDB = VDB ## Gibt die degressive Abschreibung eines Wirtschaftsguts für eine bestimmte Periode oder Teilperiode zurück +XIRR = XINTZINSFUSS ## Gibt den internen Zinsfuß einer Reihe nicht periodisch anfallender Zahlungen zurück +XNPV = XKAPITALWERT ## Gibt den Nettobarwert (Kapitalwert) einer Reihe nicht periodisch anfallender Zahlungen zurück +YIELD = RENDITE ## Gibt die Rendite eines Wertpapiers zurück, das periodisch Zinsen auszahlt +YIELDDISC = RENDITEDIS ## Gibt die jährliche Rendite eines unverzinslichen Wertpapiers zurück +YIELDMAT = RENDITEFÄLL ## Gibt die jährliche Rendite eines Wertpapiers zurück, das Zinsen am Fälligkeitsdatum auszahlt + + +## +## Information functions Informationsfunktionen +## +CELL = ZELLE ## Gibt Informationen zu Formatierung, Position oder Inhalt einer Zelle zurück +ERROR.TYPE = FEHLER.TYP ## Gibt eine Zahl zurück, die einem Fehlertyp entspricht +INFO = INFO ## Gibt Informationen zur aktuellen Betriebssystemumgebung zurück +ISBLANK = ISTLEER ## Gibt WAHR zurück, wenn der Wert leer ist +ISERR = ISTFEHL ## Gibt WAHR zurück, wenn der Wert ein beliebiger Fehlerwert außer #N/V ist +ISERROR = ISTFEHLER ## Gibt WAHR zurück, wenn der Wert ein beliebiger Fehlerwert ist +ISEVEN = ISTGERADE ## Gibt WAHR zurück, wenn es sich um eine gerade Zahl handelt +ISLOGICAL = ISTLOG ## Gibt WAHR zurück, wenn der Wert ein Wahrheitswert ist +ISNA = ISTNV ## Gibt WAHR zurück, wenn der Wert der Fehlerwert #N/V ist +ISNONTEXT = ISTKTEXT ## Gibt WAHR zurück, wenn der Wert ein Element ist, das keinen Text enthält +ISNUMBER = ISTZAHL ## Gibt WAHR zurück, wenn der Wert eine Zahl ist +ISODD = ISTUNGERADE ## Gibt WAHR zurück, wenn es sich um eine ungerade Zahl handelt +ISREF = ISTBEZUG ## Gibt WAHR zurück, wenn der Wert ein Bezug ist +ISTEXT = ISTTEXT ## Gibt WAHR zurück, wenn der Wert ein Element ist, das Text enthält +N = N ## Gibt den in eine Zahl umgewandelten Wert zurück +NA = NV ## Gibt den Fehlerwert #NV zurück +TYPE = TYP ## Gibt eine Zahl zurück, die den Datentyp des angegebenen Werts anzeigt + + +## +## Logical functions Logische Funktionen +## +AND = UND ## Gibt WAHR zurück, wenn alle zugehörigen Argumente WAHR sind +FALSE = FALSCH ## Gibt den Wahrheitswert FALSCH zurück +IF = WENN ## Gibt einen logischen Test zum Ausführen an +IFERROR = WENNFEHLER ## Gibt einen von Ihnen festgelegten Wert zurück, wenn die Auswertung der Formel zu einem Fehler führt; andernfalls wird das Ergebnis der Formel zurückgegeben +NOT = NICHT ## Kehrt den Wahrheitswert der zugehörigen Argumente um +OR = ODER ## Gibt WAHR zurück, wenn ein Argument WAHR ist +TRUE = WAHR ## Gibt den Wahrheitswert WAHR zurück + + +## +## Lookup and reference functions Nachschlage- und Verweisfunktionen +## +ADDRESS = ADRESSE ## Gibt einen Bezug auf eine einzelne Zelle in einem Tabellenblatt als Text zurück +AREAS = BEREICHE ## Gibt die Anzahl der innerhalb eines Bezugs aufgeführten Bereiche zurück +CHOOSE = WAHL ## Wählt einen Wert aus eine Liste mit Werten aus +COLUMN = SPALTE ## Gibt die Spaltennummer eines Bezugs zurück +COLUMNS = SPALTEN ## Gibt die Anzahl der Spalten in einem Bezug zurück +HLOOKUP = HVERWEIS ## Sucht in der obersten Zeile einer Matrix und gibt den Wert der angegebenen Zelle zurück +HYPERLINK = HYPERLINK ## Erstellt eine Verknüpfung, über die ein auf einem Netzwerkserver, in einem Intranet oder im Internet gespeichertes Dokument geöffnet wird +INDEX = INDEX ## Verwendet einen Index, um einen Wert aus einem Bezug oder einer Matrix auszuwählen +INDIRECT = INDIREKT ## Gibt einen Bezug zurück, der von einem Textwert angegeben wird +LOOKUP = LOOKUP ## Sucht Werte in einem Vektor oder einer Matrix +MATCH = VERGLEICH ## Sucht Werte in einem Bezug oder einer Matrix +OFFSET = BEREICH.VERSCHIEBEN ## Gibt einen Bezugoffset aus einem gegebenen Bezug zurück +ROW = ZEILE ## Gibt die Zeilennummer eines Bezugs zurück +ROWS = ZEILEN ## Gibt die Anzahl der Zeilen in einem Bezug zurück +RTD = RTD ## Ruft Echtzeitdaten von einem Programm ab, das die COM-Automatisierung (Automatisierung: Ein Verfahren, bei dem aus einer Anwendung oder einem Entwicklungstool heraus mit den Objekten einer anderen Anwendung gearbeitet wird. Die früher als OLE-Automatisierung bezeichnete Automatisierung ist ein Industriestandard und eine Funktion von COM (Component Object Model).) unterstützt +TRANSPOSE = MTRANS ## Gibt die transponierte Matrix einer Matrix zurück +VLOOKUP = SVERWEIS ## Sucht in der ersten Spalte einer Matrix und arbeitet sich durch die Zeile, um den Wert einer Zelle zurückzugeben + + +## +## Math and trigonometry functions Mathematische und trigonometrische Funktionen +## +ABS = ABS ## Gibt den Absolutwert einer Zahl zurück +ACOS = ARCCOS ## Gibt den Arkuskosinus einer Zahl zurück +ACOSH = ARCCOSHYP ## Gibt den umgekehrten hyperbolischen Kosinus einer Zahl zurück +ASIN = ARCSIN ## Gibt den Arkussinus einer Zahl zurück +ASINH = ARCSINHYP ## Gibt den umgekehrten hyperbolischen Sinus einer Zahl zurück +ATAN = ARCTAN ## Gibt den Arkustangens einer Zahl zurück +ATAN2 = ARCTAN2 ## Gibt den Arkustangens einer x- und einer y-Koordinate zurück +ATANH = ARCTANHYP ## Gibt den umgekehrten hyperbolischen Tangens einer Zahl zurück +CEILING = OBERGRENZE ## Rundet eine Zahl auf die nächste ganze Zahl oder das nächste Vielfache von Schritt +COMBIN = KOMBINATIONEN ## Gibt die Anzahl der Kombinationen für eine bestimmte Anzahl von Objekten zurück +COS = COS ## Gibt den Kosinus einer Zahl zurück +COSH = COSHYP ## Gibt den hyperbolischen Kosinus einer Zahl zurück +DEGREES = GRAD ## Wandelt Bogenmaß (Radiant) in Grad um +EVEN = GERADE ## Rundet eine Zahl auf die nächste gerade ganze Zahl auf +EXP = EXP ## Potenziert die Basis e mit der als Argument angegebenen Zahl +FACT = FAKULTÄT ## Gibt die Fakultät einer Zahl zurück +FACTDOUBLE = ZWEIFAKULTÄT ## Gibt die Fakultät zu Zahl mit Schrittlänge 2 zurück +FLOOR = UNTERGRENZE ## Rundet die Zahl auf Anzahl_Stellen ab +GCD = GGT ## Gibt den größten gemeinsamen Teiler zurück +INT = GANZZAHL ## Rundet eine Zahl auf die nächstkleinere ganze Zahl ab +LCM = KGV ## Gibt das kleinste gemeinsame Vielfache zurück +LN = LN ## Gibt den natürlichen Logarithmus einer Zahl zurück +LOG = LOG ## Gibt den Logarithmus einer Zahl zu der angegebenen Basis zurück +LOG10 = LOG10 ## Gibt den Logarithmus einer Zahl zur Basis 10 zurück +MDETERM = MDET ## Gibt die Determinante einer Matrix zurück +MINVERSE = MINV ## Gibt die inverse Matrix einer Matrix zurück +MMULT = MMULT ## Gibt das Produkt zweier Matrizen zurück +MOD = REST ## Gibt den Rest einer Division zurück +MROUND = VRUNDEN ## Gibt eine auf das gewünschte Vielfache gerundete Zahl zurück +MULTINOMIAL = POLYNOMIAL ## Gibt den Polynomialkoeffizienten einer Gruppe von Zahlen zurück +ODD = UNGERADE ## Rundet eine Zahl auf die nächste ungerade ganze Zahl auf +PI = PI ## Gibt den Wert Pi zurück +POWER = POTENZ ## Gibt als Ergebnis eine potenzierte Zahl zurück +PRODUCT = PRODUKT ## Multipliziert die zugehörigen Argumente +QUOTIENT = QUOTIENT ## Gibt den ganzzahligen Anteil einer Division zurück +RADIANS = BOGENMASS ## Wandelt Grad in Bogenmaß (Radiant) um +RAND = ZUFALLSZAHL ## Gibt eine Zufallszahl zwischen 0 und 1 zurück +RANDBETWEEN = ZUFALLSBEREICH ## Gibt eine Zufallszahl aus dem festgelegten Bereich zurück +ROMAN = RÖMISCH ## Wandelt eine arabische Zahl in eine römische Zahl als Text um +ROUND = RUNDEN ## Rundet eine Zahl auf eine bestimmte Anzahl von Dezimalstellen +ROUNDDOWN = ABRUNDEN ## Rundet die Zahl auf Anzahl_Stellen ab +ROUNDUP = AUFRUNDEN ## Rundet die Zahl auf Anzahl_Stellen auf +SERIESSUM = POTENZREIHE ## Gibt die Summe von Potenzen (zur Berechnung von Potenzreihen und dichotomen Wahrscheinlichkeiten) zurück +SIGN = VORZEICHEN ## Gibt das Vorzeichen einer Zahl zurück +SIN = SIN ## Gibt den Sinus einer Zahl zurück +SINH = SINHYP ## Gibt den hyperbolischen Sinus einer Zahl zurück +SQRT = WURZEL ## Gibt die Quadratwurzel einer Zahl zurück +SQRTPI = WURZELPI ## Gibt die Wurzel aus der mit Pi (pi) multiplizierten Zahl zurück +SUBTOTAL = TEILERGEBNIS ## Gibt ein Teilergebnis in einer Liste oder Datenbank zurück +SUM = SUMME ## Addiert die zugehörigen Argumente +SUMIF = SUMMEWENN ## Addiert Zahlen, die mit den Suchkriterien übereinstimmen +SUMIFS = SUMMEWENNS ## Die Zellen, die mehrere Kriterien erfüllen, werden in einem Bereich hinzugefügt +SUMPRODUCT = SUMMENPRODUKT ## Gibt die Summe der Produkte zusammengehöriger Matrixkomponenten zurück +SUMSQ = QUADRATESUMME ## Gibt die Summe der quadrierten Argumente zurück +SUMX2MY2 = SUMMEX2MY2 ## Gibt die Summe der Differenzen der Quadrate für zusammengehörige Komponenten zweier Matrizen zurück +SUMX2PY2 = SUMMEX2PY2 ## Gibt die Summe der Quadrate für zusammengehörige Komponenten zweier Matrizen zurück +SUMXMY2 = SUMMEXMY2 ## Gibt die Summe der quadrierten Differenzen für zusammengehörige Komponenten zweier Matrizen zurück +TAN = TAN ## Gibt den Tangens einer Zahl zurück +TANH = TANHYP ## Gibt den hyperbolischen Tangens einer Zahl zurück +TRUNC = KÜRZEN ## Schneidet die Kommastellen einer Zahl ab und gibt als Ergebnis eine ganze Zahl zurück + + +## +## Statistical functions Statistische Funktionen +## +AVEDEV = MITTELABW ## Gibt die durchschnittliche absolute Abweichung einer Reihe von Merkmalsausprägungen und ihrem Mittelwert zurück +AVERAGE = MITTELWERT ## Gibt den Mittelwert der zugehörigen Argumente zurück +AVERAGEA = MITTELWERTA ## Gibt den Mittelwert der zugehörigen Argumente, die Zahlen, Text und Wahrheitswerte enthalten, zurück +AVERAGEIF = MITTELWERTWENN ## Der Durchschnittswert (arithmetisches Mittel) für alle Zellen in einem Bereich, die einem angegebenen Kriterium entsprechen, wird zurückgegeben +AVERAGEIFS = MITTELWERTWENNS ## Gibt den Durchschnittswert (arithmetisches Mittel) aller Zellen zurück, die mehreren Kriterien entsprechen +BETADIST = BETAVERT ## Gibt die Werte der kumulierten Betaverteilungsfunktion zurück +BETAINV = BETAINV ## Gibt das Quantil der angegebenen Betaverteilung zurück +BINOMDIST = BINOMVERT ## Gibt Wahrscheinlichkeiten einer binomialverteilten Zufallsvariablen zurück +CHIDIST = CHIVERT ## Gibt Werte der Verteilungsfunktion (1-Alpha) einer Chi-Quadrat-verteilten Zufallsgröße zurück +CHIINV = CHIINV ## Gibt Quantile der Verteilungsfunktion (1-Alpha) der Chi-Quadrat-Verteilung zurück +CHITEST = CHITEST ## Gibt die Teststatistik eines Unabhängigkeitstests zurück +CONFIDENCE = KONFIDENZ ## Ermöglicht die Berechnung des 1-Alpha Konfidenzintervalls für den Erwartungswert einer Zufallsvariablen +CORREL = KORREL ## Gibt den Korrelationskoeffizienten zweier Reihen von Merkmalsausprägungen zurück +COUNT = ANZAHL ## Gibt die Anzahl der Zahlen in der Liste mit Argumenten an +COUNTA = ANZAHL2 ## Gibt die Anzahl der Werte in der Liste mit Argumenten an +COUNTBLANK = ANZAHLLEEREZELLEN ## Gibt die Anzahl der leeren Zellen in einem Bereich an +COUNTIF = ZÄHLENWENN ## Gibt die Anzahl der Zellen in einem Bereich an, deren Inhalte mit den Suchkriterien übereinstimmen +COUNTIFS = ZÄHLENWENNS ## Gibt die Anzahl der Zellen in einem Bereich an, deren Inhalte mit mehreren Suchkriterien übereinstimmen +COVAR = KOVAR ## Gibt die Kovarianz zurück, den Mittelwert der für alle Datenpunktpaare gebildeten Produkte der Abweichungen +CRITBINOM = KRITBINOM ## Gibt den kleinsten Wert zurück, für den die kumulierten Wahrscheinlichkeiten der Binomialverteilung kleiner oder gleich einer Grenzwahrscheinlichkeit sind +DEVSQ = SUMQUADABW ## Gibt die Summe der quadrierten Abweichungen der Datenpunkte von ihrem Stichprobenmittelwert zurück +EXPONDIST = EXPONVERT ## Gibt Wahrscheinlichkeiten einer exponential verteilten Zufallsvariablen zurück +FDIST = FVERT ## Gibt Werte der Verteilungsfunktion (1-Alpha) einer F-verteilten Zufallsvariablen zurück +FINV = FINV ## Gibt Quantile der F-Verteilung zurück +FISHER = FISHER ## Gibt die Fisher-Transformation zurück +FISHERINV = FISHERINV ## Gibt die Umkehrung der Fisher-Transformation zurück +FORECAST = PROGNOSE ## Gibt einen Wert zurück, der sich aus einem linearen Trend ergibt +FREQUENCY = HÄUFIGKEIT ## Gibt eine Häufigkeitsverteilung als vertikale Matrix zurück +FTEST = FTEST ## Gibt die Teststatistik eines F-Tests zurück +GAMMADIST = GAMMAVERT ## Gibt Wahrscheinlichkeiten einer gammaverteilten Zufallsvariablen zurück +GAMMAINV = GAMMAINV ## Gibt Quantile der Gammaverteilung zurück +GAMMALN = GAMMALN ## Gibt den natürlichen Logarithmus der Gammafunktion zurück, Γ(x) +GEOMEAN = GEOMITTEL ## Gibt das geometrische Mittel zurück +GROWTH = VARIATION ## Gibt Werte zurück, die sich aus einem exponentiellen Trend ergeben +HARMEAN = HARMITTEL ## Gibt das harmonische Mittel zurück +HYPGEOMDIST = HYPGEOMVERT ## Gibt Wahrscheinlichkeiten einer hypergeometrisch-verteilten Zufallsvariablen zurück +INTERCEPT = ACHSENABSCHNITT ## Gibt den Schnittpunkt der Regressionsgeraden zurück +KURT = KURT ## Gibt die Kurtosis (Exzess) einer Datengruppe zurück +LARGE = KGRÖSSTE ## Gibt den k-größten Wert einer Datengruppe zurück +LINEST = RGP ## Gibt die Parameter eines linearen Trends zurück +LOGEST = RKP ## Gibt die Parameter eines exponentiellen Trends zurück +LOGINV = LOGINV ## Gibt Quantile der Lognormalverteilung zurück +LOGNORMDIST = LOGNORMVERT ## Gibt Werte der Verteilungsfunktion einer lognormalverteilten Zufallsvariablen zurück +MAX = MAX ## Gibt den Maximalwert einer Liste mit Argumenten zurück +MAXA = MAXA ## Gibt den Maximalwert einer Liste mit Argumenten zurück, die Zahlen, Text und Wahrheitswerte enthalten +MEDIAN = MEDIAN ## Gibt den Median der angegebenen Zahlen zurück +MIN = MIN ## Gibt den Minimalwert einer Liste mit Argumenten zurück +MINA = MINA ## Gibt den kleinsten Wert einer Liste mit Argumenten zurück, die Zahlen, Text und Wahrheitswerte enthalten +MODE = MODALWERT ## Gibt den am häufigsten vorkommenden Wert in einer Datengruppe zurück +NEGBINOMDIST = NEGBINOMVERT ## Gibt Wahrscheinlichkeiten einer negativen, binominal verteilten Zufallsvariablen zurück +NORMDIST = NORMVERT ## Gibt Wahrscheinlichkeiten einer normal verteilten Zufallsvariablen zurück +NORMINV = NORMINV ## Gibt Quantile der Normalverteilung zurück +NORMSDIST = STANDNORMVERT ## Gibt Werte der Verteilungsfunktion einer standardnormalverteilten Zufallsvariablen zurück +NORMSINV = STANDNORMINV ## Gibt Quantile der Standardnormalverteilung zurück +PEARSON = PEARSON ## Gibt den Pearsonschen Korrelationskoeffizienten zurück +PERCENTILE = QUANTIL ## Gibt das Alpha-Quantil einer Gruppe von Daten zurück +PERCENTRANK = QUANTILSRANG ## Gibt den prozentualen Rang (Alpha) eines Werts in einer Datengruppe zurück +PERMUT = VARIATIONEN ## Gibt die Anzahl der Möglichkeiten zurück, um k Elemente aus einer Menge von n Elementen ohne Zurücklegen zu ziehen +POISSON = POISSON ## Gibt Wahrscheinlichkeiten einer poissonverteilten Zufallsvariablen zurück +PROB = WAHRSCHBEREICH ## Gibt die Wahrscheinlichkeit für ein von zwei Werten eingeschlossenes Intervall zurück +QUARTILE = QUARTILE ## Gibt die Quartile der Datengruppe zurück +RANK = RANG ## Gibt den Rang zurück, den eine Zahl innerhalb einer Liste von Zahlen einnimmt +RSQ = BESTIMMTHEITSMASS ## Gibt das Quadrat des Pearsonschen Korrelationskoeffizienten zurück +SKEW = SCHIEFE ## Gibt die Schiefe einer Verteilung zurück +SLOPE = STEIGUNG ## Gibt die Steigung der Regressionsgeraden zurück +SMALL = KKLEINSTE ## Gibt den k-kleinsten Wert einer Datengruppe zurück +STANDARDIZE = STANDARDISIERUNG ## Gibt den standardisierten Wert zurück +STDEV = STABW ## Schätzt die Standardabweichung ausgehend von einer Stichprobe +STDEVA = STABWA ## Schätzt die Standardabweichung ausgehend von einer Stichprobe, die Zahlen, Text und Wahrheitswerte enthält +STDEVP = STABWN ## Berechnet die Standardabweichung ausgehend von der Grundgesamtheit +STDEVPA = STABWNA ## Berechnet die Standardabweichung ausgehend von der Grundgesamtheit, die Zahlen, Text und Wahrheitswerte enthält +STEYX = STFEHLERYX ## Gibt den Standardfehler der geschätzten y-Werte für alle x-Werte der Regression zurück +TDIST = TVERT ## Gibt Werte der Verteilungsfunktion (1-Alpha) einer (Student) t-verteilten Zufallsvariablen zurück +TINV = TINV ## Gibt Quantile der t-Verteilung zurück +TREND = TREND ## Gibt Werte zurück, die sich aus einem linearen Trend ergeben +TRIMMEAN = GESTUTZTMITTEL ## Gibt den Mittelwert einer Datengruppe zurück, ohne die Randwerte zu berücksichtigen +TTEST = TTEST ## Gibt die Teststatistik eines Student'schen t-Tests zurück +VAR = VARIANZ ## Schätzt die Varianz ausgehend von einer Stichprobe +VARA = VARIANZA ## Schätzt die Varianz ausgehend von einer Stichprobe, die Zahlen, Text und Wahrheitswerte enthält +VARP = VARIANZEN ## Berechnet die Varianz ausgehend von der Grundgesamtheit +VARPA = VARIANZENA ## Berechnet die Varianz ausgehend von der Grundgesamtheit, die Zahlen, Text und Wahrheitswerte enthält +WEIBULL = WEIBULL ## Gibt Wahrscheinlichkeiten einer weibullverteilten Zufallsvariablen zurück +ZTEST = GTEST ## Gibt den einseitigen Wahrscheinlichkeitswert für einen Gausstest (Normalverteilung) zurück + + +## +## Text functions Textfunktionen +## +ASC = ASC ## Konvertiert DB-Text in einer Zeichenfolge (lateinische Buchstaben oder Katakana) in SB-Text +BAHTTEXT = BAHTTEXT ## Wandelt eine Zahl in Text im Währungsformat ß (Baht) um +CHAR = ZEICHEN ## Gibt das der Codezahl entsprechende Zeichen zurück +CLEAN = SÄUBERN ## Löscht alle nicht druckbaren Zeichen aus einem Text +CODE = CODE ## Gibt die Codezahl des ersten Zeichens in einem Text zurück +CONCATENATE = VERKETTEN ## Verknüpft mehrere Textelemente zu einem Textelement +DOLLAR = DM ## Wandelt eine Zahl in Text im Währungsformat € (Euro) um +EXACT = IDENTISCH ## Prüft, ob zwei Textwerte identisch sind +FIND = FINDEN ## Sucht nach einem Textwert, der in einem anderen Textwert enthalten ist (Groß-/Kleinschreibung wird unterschieden) +FINDB = FINDENB ## Sucht nach einem Textwert, der in einem anderen Textwert enthalten ist (Groß-/Kleinschreibung wird unterschieden) +FIXED = FEST ## Formatiert eine Zahl als Text mit einer festen Anzahl von Dezimalstellen +JIS = JIS ## Konvertiert SB-Text in einer Zeichenfolge (lateinische Buchstaben oder Katakana) in DB-Text +LEFT = LINKS ## Gibt die Zeichen ganz links in einem Textwert zurück +LEFTB = LINKSB ## Gibt die Zeichen ganz links in einem Textwert zurück +LEN = LÄNGE ## Gibt die Anzahl der Zeichen in einer Zeichenfolge zurück +LENB = LÄNGEB ## Gibt die Anzahl der Zeichen in einer Zeichenfolge zurück +LOWER = KLEIN ## Wandelt Text in Kleinbuchstaben um +MID = TEIL ## Gibt eine bestimmte Anzahl Zeichen aus einer Zeichenfolge ab der von Ihnen angegebenen Stelle zurück +MIDB = TEILB ## Gibt eine bestimmte Anzahl Zeichen aus einer Zeichenfolge ab der von Ihnen angegebenen Stelle zurück +PHONETIC = PHONETIC ## Extrahiert die phonetischen (Furigana-)Zeichen aus einer Textzeichenfolge +PROPER = GROSS2 ## Wandelt den ersten Buchstaben aller Wörter eines Textwerts in Großbuchstaben um +REPLACE = ERSETZEN ## Ersetzt Zeichen in Text +REPLACEB = ERSETZENB ## Ersetzt Zeichen in Text +REPT = WIEDERHOLEN ## Wiederholt einen Text so oft wie angegeben +RIGHT = RECHTS ## Gibt die Zeichen ganz rechts in einem Textwert zurück +RIGHTB = RECHTSB ## Gibt die Zeichen ganz rechts in einem Textwert zurück +SEARCH = SUCHEN ## Sucht nach einem Textwert, der in einem anderen Textwert enthalten ist (Groß-/Kleinschreibung wird nicht unterschieden) +SEARCHB = SUCHENB ## Sucht nach einem Textwert, der in einem anderen Textwert enthalten ist (Groß-/Kleinschreibung wird nicht unterschieden) +SUBSTITUTE = WECHSELN ## Ersetzt in einer Zeichenfolge neuen Text gegen alten +T = T ## Wandelt die zugehörigen Argumente in Text um +TEXT = TEXT ## Formatiert eine Zahl und wandelt sie in Text um +TRIM = GLÄTTEN ## Entfernt Leerzeichen aus Text +UPPER = GROSS ## Wandelt Text in Großbuchstaben um +VALUE = WERT ## Wandelt ein Textargument in eine Zahl um diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/en/uk/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/en/uk/config new file mode 100644 index 0000000..532080b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/en/uk/config @@ -0,0 +1,32 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +## +## (For future use) +## +currencySymbol = £ diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/es/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/es/config new file mode 100644 index 0000000..96cfa69 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/es/config @@ -0,0 +1,47 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = $ ## I'm surprised that the Excel Documentation suggests $ rather than € + + +## +## Excel Error Codes (For future use) +## +NULL = #¡NULO! +DIV0 = #¡DIV/0! +VALUE = #¡VALOR! +REF = #¡REF! +NAME = #¿NOMBRE? +NUM = #¡NÚM! +NA = #N/A diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/es/functions b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/es/functions new file mode 100644 index 0000000..4876269 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/es/functions @@ -0,0 +1,438 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Calculation +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## Data in this file derived from http://www.piuha.fi/excel-function-name-translation/ +## +## + + +## +## Add-in and Automation functions Funciones de complementos y automatización +## +GETPIVOTDATA = IMPORTARDATOSDINAMICOS ## Devuelve los datos almacenados en un informe de tabla dinámica. + + +## +## Cube functions Funciones de cubo +## +CUBEKPIMEMBER = MIEMBROKPICUBO ## Devuelve un nombre, propiedad y medida de indicador de rendimiento clave (KPI) y muestra el nombre y la propiedad en la celda. Un KPI es una medida cuantificable, como los beneficios brutos mensuales o la facturación trimestral por empleado, que se usa para supervisar el rendimiento de una organización. +CUBEMEMBER = MIEMBROCUBO ## Devuelve un miembro o tupla en una jerarquía de cubo. Se usa para validar la existencia del miembro o la tupla en el cubo. +CUBEMEMBERPROPERTY = PROPIEDADMIEMBROCUBO ## Devuelve el valor de una propiedad de miembro del cubo Se usa para validar la existencia de un nombre de miembro en el cubo y para devolver la propiedad especificada para este miembro. +CUBERANKEDMEMBER = MIEMBRORANGOCUBO ## Devuelve el miembro n, o clasificado, de un conjunto. Se usa para devolver uno o más elementos de un conjunto, por ejemplo, el representante con mejores ventas o los diez mejores alumnos. +CUBESET = CONJUNTOCUBO ## Define un conjunto calculado de miembros o tuplas mediante el envío de una expresión de conjunto al cubo en el servidor, lo que crea el conjunto y, después, devuelve dicho conjunto a Microsoft Office Excel. +CUBESETCOUNT = RECUENTOCONJUNTOCUBO ## Devuelve el número de elementos de un conjunto. +CUBEVALUE = VALORCUBO ## Devuelve un valor agregado de un cubo. + + +## +## Database functions Funciones de base de datos +## +DAVERAGE = BDPROMEDIO ## Devuelve el promedio de las entradas seleccionadas en la base de datos. +DCOUNT = BDCONTAR ## Cuenta el número de celdas que contienen números en una base de datos. +DCOUNTA = BDCONTARA ## Cuenta el número de celdas no vacías en una base de datos. +DGET = BDEXTRAER ## Extrae de una base de datos un único registro que cumple los criterios especificados. +DMAX = BDMAX ## Devuelve el valor máximo de las entradas seleccionadas de la base de datos. +DMIN = BDMIN ## Devuelve el valor mínimo de las entradas seleccionadas de la base de datos. +DPRODUCT = BDPRODUCTO ## Multiplica los valores de un campo concreto de registros de una base de datos que cumplen los criterios especificados. +DSTDEV = BDDESVEST ## Calcula la desviación estándar a partir de una muestra de entradas seleccionadas en la base de datos. +DSTDEVP = BDDESVESTP ## Calcula la desviación estándar en función de la población total de las entradas seleccionadas de la base de datos. +DSUM = BDSUMA ## Suma los números de la columna de campo de los registros de la base de datos que cumplen los criterios. +DVAR = BDVAR ## Calcula la varianza a partir de una muestra de entradas seleccionadas de la base de datos. +DVARP = BDVARP ## Calcula la varianza a partir de la población total de entradas seleccionadas de la base de datos. + + +## +## Date and time functions Funciones de fecha y hora +## +DATE = FECHA ## Devuelve el número de serie correspondiente a una fecha determinada. +DATEVALUE = FECHANUMERO ## Convierte una fecha con formato de texto en un valor de número de serie. +DAY = DIA ## Convierte un número de serie en un valor de día del mes. +DAYS360 = DIAS360 ## Calcula el número de días entre dos fechas a partir de un año de 360 días. +EDATE = FECHA.MES ## Devuelve el número de serie de la fecha equivalente al número indicado de meses anteriores o posteriores a la fecha inicial. +EOMONTH = FIN.MES ## Devuelve el número de serie correspondiente al último día del mes anterior o posterior a un número de meses especificado. +HOUR = HORA ## Convierte un número de serie en un valor de hora. +MINUTE = MINUTO ## Convierte un número de serie en un valor de minuto. +MONTH = MES ## Convierte un número de serie en un valor de mes. +NETWORKDAYS = DIAS.LAB ## Devuelve el número de todos los días laborables existentes entre dos fechas. +NOW = AHORA ## Devuelve el número de serie correspondiente a la fecha y hora actuales. +SECOND = SEGUNDO ## Convierte un número de serie en un valor de segundo. +TIME = HORA ## Devuelve el número de serie correspondiente a una hora determinada. +TIMEVALUE = HORANUMERO ## Convierte una hora con formato de texto en un valor de número de serie. +TODAY = HOY ## Devuelve el número de serie correspondiente al día actual. +WEEKDAY = DIASEM ## Convierte un número de serie en un valor de día de la semana. +WEEKNUM = NUM.DE.SEMANA ## Convierte un número de serie en un número que representa el lugar numérico correspondiente a una semana de un año. +WORKDAY = DIA.LAB ## Devuelve el número de serie de la fecha que tiene lugar antes o después de un número determinado de días laborables. +YEAR = AÑO ## Convierte un número de serie en un valor de año. +YEARFRAC = FRAC.AÑO ## Devuelve la fracción de año que representa el número total de días existentes entre el valor de fecha_inicial y el de fecha_final. + + +## +## Engineering functions Funciones de ingeniería +## +BESSELI = BESSELI ## Devuelve la función Bessel In(x) modificada. +BESSELJ = BESSELJ ## Devuelve la función Bessel Jn(x). +BESSELK = BESSELK ## Devuelve la función Bessel Kn(x) modificada. +BESSELY = BESSELY ## Devuelve la función Bessel Yn(x). +BIN2DEC = BIN.A.DEC ## Convierte un número binario en decimal. +BIN2HEX = BIN.A.HEX ## Convierte un número binario en hexadecimal. +BIN2OCT = BIN.A.OCT ## Convierte un número binario en octal. +COMPLEX = COMPLEJO ## Convierte coeficientes reales e imaginarios en un número complejo. +CONVERT = CONVERTIR ## Convierte un número de un sistema de medida a otro. +DEC2BIN = DEC.A.BIN ## Convierte un número decimal en binario. +DEC2HEX = DEC.A.HEX ## Convierte un número decimal en hexadecimal. +DEC2OCT = DEC.A.OCT ## Convierte un número decimal en octal. +DELTA = DELTA ## Comprueba si dos valores son iguales. +ERF = FUN.ERROR ## Devuelve la función de error. +ERFC = FUN.ERROR.COMPL ## Devuelve la función de error complementario. +GESTEP = MAYOR.O.IGUAL ## Comprueba si un número es mayor que un valor de umbral. +HEX2BIN = HEX.A.BIN ## Convierte un número hexadecimal en binario. +HEX2DEC = HEX.A.DEC ## Convierte un número hexadecimal en decimal. +HEX2OCT = HEX.A.OCT ## Convierte un número hexadecimal en octal. +IMABS = IM.ABS ## Devuelve el valor absoluto (módulo) de un número complejo. +IMAGINARY = IMAGINARIO ## Devuelve el coeficiente imaginario de un número complejo. +IMARGUMENT = IM.ANGULO ## Devuelve el argumento theta, un ángulo expresado en radianes. +IMCONJUGATE = IM.CONJUGADA ## Devuelve la conjugada compleja de un número complejo. +IMCOS = IM.COS ## Devuelve el coseno de un número complejo. +IMDIV = IM.DIV ## Devuelve el cociente de dos números complejos. +IMEXP = IM.EXP ## Devuelve el valor exponencial de un número complejo. +IMLN = IM.LN ## Devuelve el logaritmo natural (neperiano) de un número complejo. +IMLOG10 = IM.LOG10 ## Devuelve el logaritmo en base 10 de un número complejo. +IMLOG2 = IM.LOG2 ## Devuelve el logaritmo en base 2 de un número complejo. +IMPOWER = IM.POT ## Devuelve un número complejo elevado a una potencia entera. +IMPRODUCT = IM.PRODUCT ## Devuelve el producto de números complejos. +IMREAL = IM.REAL ## Devuelve el coeficiente real de un número complejo. +IMSIN = IM.SENO ## Devuelve el seno de un número complejo. +IMSQRT = IM.RAIZ2 ## Devuelve la raíz cuadrada de un número complejo. +IMSUB = IM.SUSTR ## Devuelve la diferencia entre dos números complejos. +IMSUM = IM.SUM ## Devuelve la suma de números complejos. +OCT2BIN = OCT.A.BIN ## Convierte un número octal en binario. +OCT2DEC = OCT.A.DEC ## Convierte un número octal en decimal. +OCT2HEX = OCT.A.HEX ## Convierte un número octal en hexadecimal. + + +## +## Financial functions Funciones financieras +## +ACCRINT = INT.ACUM ## Devuelve el interés acumulado de un valor bursátil con pagos de interés periódicos. +ACCRINTM = INT.ACUM.V ## Devuelve el interés acumulado de un valor bursátil con pagos de interés al vencimiento. +AMORDEGRC = AMORTIZ.PROGRE ## Devuelve la amortización de cada período contable mediante el uso de un coeficiente de amortización. +AMORLINC = AMORTIZ.LIN ## Devuelve la amortización de cada uno de los períodos contables. +COUPDAYBS = CUPON.DIAS.L1 ## Devuelve el número de días desde el principio del período de un cupón hasta la fecha de liquidación. +COUPDAYS = CUPON.DIAS ## Devuelve el número de días del período (entre dos cupones) donde se encuentra la fecha de liquidación. +COUPDAYSNC = CUPON.DIAS.L2 ## Devuelve el número de días desde la fecha de liquidación hasta la fecha del próximo cupón. +COUPNCD = CUPON.FECHA.L2 ## Devuelve la fecha del próximo cupón después de la fecha de liquidación. +COUPNUM = CUPON.NUM ## Devuelve el número de pagos de cupón entre la fecha de liquidación y la fecha de vencimiento. +COUPPCD = CUPON.FECHA.L1 ## Devuelve la fecha de cupón anterior a la fecha de liquidación. +CUMIPMT = PAGO.INT.ENTRE ## Devuelve el interés acumulado pagado entre dos períodos. +CUMPRINC = PAGO.PRINC.ENTRE ## Devuelve el capital acumulado pagado de un préstamo entre dos períodos. +DB = DB ## Devuelve la amortización de un bien durante un período específico a través del método de amortización de saldo fijo. +DDB = DDB ## Devuelve la amortización de un bien durante un período específico a través del método de amortización por doble disminución de saldo u otro método que se especifique. +DISC = TASA.DESC ## Devuelve la tasa de descuento de un valor bursátil. +DOLLARDE = MONEDA.DEC ## Convierte una cotización de un valor bursátil expresada en forma fraccionaria en una cotización de un valor bursátil expresada en forma decimal. +DOLLARFR = MONEDA.FRAC ## Convierte una cotización de un valor bursátil expresada en forma decimal en una cotización de un valor bursátil expresada en forma fraccionaria. +DURATION = DURACION ## Devuelve la duración anual de un valor bursátil con pagos de interés periódico. +EFFECT = INT.EFECTIVO ## Devuelve la tasa de interés anual efectiva. +FV = VF ## Devuelve el valor futuro de una inversión. +FVSCHEDULE = VF.PLAN ## Devuelve el valor futuro de un capital inicial después de aplicar una serie de tasas de interés compuesto. +INTRATE = TASA.INT ## Devuelve la tasa de interés para la inversión total de un valor bursátil. +IPMT = PAGOINT ## Devuelve el pago de intereses de una inversión durante un período determinado. +IRR = TIR ## Devuelve la tasa interna de retorno para una serie de flujos de efectivo periódicos. +ISPMT = INT.PAGO.DIR ## Calcula el interés pagado durante un período específico de una inversión. +MDURATION = DURACION.MODIF ## Devuelve la duración de Macauley modificada de un valor bursátil con un valor nominal supuesto de 100 $. +MIRR = TIRM ## Devuelve la tasa interna de retorno donde se financian flujos de efectivo positivos y negativos a tasas diferentes. +NOMINAL = TASA.NOMINAL ## Devuelve la tasa nominal de interés anual. +NPER = NPER ## Devuelve el número de períodos de una inversión. +NPV = VNA ## Devuelve el valor neto actual de una inversión en función de una serie de flujos periódicos de efectivo y una tasa de descuento. +ODDFPRICE = PRECIO.PER.IRREGULAR.1 ## Devuelve el precio por un valor nominal de 100 $ de un valor bursátil con un primer período impar. +ODDFYIELD = RENDTO.PER.IRREGULAR.1 ## Devuelve el rendimiento de un valor bursátil con un primer período impar. +ODDLPRICE = PRECIO.PER.IRREGULAR.2 ## Devuelve el precio por un valor nominal de 100 $ de un valor bursátil con un último período impar. +ODDLYIELD = RENDTO.PER.IRREGULAR.2 ## Devuelve el rendimiento de un valor bursátil con un último período impar. +PMT = PAGO ## Devuelve el pago periódico de una anualidad. +PPMT = PAGOPRIN ## Devuelve el pago de capital de una inversión durante un período determinado. +PRICE = PRECIO ## Devuelve el precio por un valor nominal de 100 $ de un valor bursátil que paga una tasa de interés periódico. +PRICEDISC = PRECIO.DESCUENTO ## Devuelve el precio por un valor nominal de 100 $ de un valor bursátil con descuento. +PRICEMAT = PRECIO.VENCIMIENTO ## Devuelve el precio por un valor nominal de 100 $ de un valor bursátil que paga interés a su vencimiento. +PV = VALACT ## Devuelve el valor actual de una inversión. +RATE = TASA ## Devuelve la tasa de interés por período de una anualidad. +RECEIVED = CANTIDAD.RECIBIDA ## Devuelve la cantidad recibida al vencimiento de un valor bursátil completamente invertido. +SLN = SLN ## Devuelve la amortización por método directo de un bien en un período dado. +SYD = SYD ## Devuelve la amortización por suma de dígitos de los años de un bien durante un período especificado. +TBILLEQ = LETRA.DE.TES.EQV.A.BONO ## Devuelve el rendimiento de un bono equivalente a una letra del Tesoro (de EE.UU.) +TBILLPRICE = LETRA.DE.TES.PRECIO ## Devuelve el precio por un valor nominal de 100 $ de una letra del Tesoro (de EE.UU.) +TBILLYIELD = LETRA.DE.TES.RENDTO ## Devuelve el rendimiento de una letra del Tesoro (de EE.UU.) +VDB = DVS ## Devuelve la amortización de un bien durante un período específico o parcial a través del método de cálculo del saldo en disminución. +XIRR = TIR.NO.PER ## Devuelve la tasa interna de retorno para un flujo de efectivo que no es necesariamente periódico. +XNPV = VNA.NO.PER ## Devuelve el valor neto actual para un flujo de efectivo que no es necesariamente periódico. +YIELD = RENDTO ## Devuelve el rendimiento de un valor bursátil que paga intereses periódicos. +YIELDDISC = RENDTO.DESC ## Devuelve el rendimiento anual de un valor bursátil con descuento; por ejemplo, una letra del Tesoro (de EE.UU.) +YIELDMAT = RENDTO.VENCTO ## Devuelve el rendimiento anual de un valor bursátil que paga intereses al vencimiento. + + +## +## Information functions Funciones de información +## +CELL = CELDA ## Devuelve información acerca del formato, la ubicación o el contenido de una celda. +ERROR.TYPE = TIPO.DE.ERROR ## Devuelve un número que corresponde a un tipo de error. +INFO = INFO ## Devuelve información acerca del entorno operativo en uso. +ISBLANK = ESBLANCO ## Devuelve VERDADERO si el valor está en blanco. +ISERR = ESERR ## Devuelve VERDADERO si el valor es cualquier valor de error excepto #N/A. +ISERROR = ESERROR ## Devuelve VERDADERO si el valor es cualquier valor de error. +ISEVEN = ES.PAR ## Devuelve VERDADERO si el número es par. +ISLOGICAL = ESLOGICO ## Devuelve VERDADERO si el valor es un valor lógico. +ISNA = ESNOD ## Devuelve VERDADERO si el valor es el valor de error #N/A. +ISNONTEXT = ESNOTEXTO ## Devuelve VERDADERO si el valor no es texto. +ISNUMBER = ESNUMERO ## Devuelve VERDADERO si el valor es un número. +ISODD = ES.IMPAR ## Devuelve VERDADERO si el número es impar. +ISREF = ESREF ## Devuelve VERDADERO si el valor es una referencia. +ISTEXT = ESTEXTO ## Devuelve VERDADERO si el valor es texto. +N = N ## Devuelve un valor convertido en un número. +NA = ND ## Devuelve el valor de error #N/A. +TYPE = TIPO ## Devuelve un número que indica el tipo de datos de un valor. + + +## +## Logical functions Funciones lógicas +## +AND = Y ## Devuelve VERDADERO si todos sus argumentos son VERDADERO. +FALSE = FALSO ## Devuelve el valor lógico FALSO. +IF = SI ## Especifica una prueba lógica que realizar. +IFERROR = SI.ERROR ## Devuelve un valor que se especifica si una fórmula lo evalúa como un error; de lo contrario, devuelve el resultado de la fórmula. +NOT = NO ## Invierte el valor lógico del argumento. +OR = O ## Devuelve VERDADERO si cualquier argumento es VERDADERO. +TRUE = VERDADERO ## Devuelve el valor lógico VERDADERO. + + +## +## Lookup and reference functions Funciones de búsqueda y referencia +## +ADDRESS = DIRECCION ## Devuelve una referencia como texto a una sola celda de una hoja de cálculo. +AREAS = AREAS ## Devuelve el número de áreas de una referencia. +CHOOSE = ELEGIR ## Elige un valor de una lista de valores. +COLUMN = COLUMNA ## Devuelve el número de columna de una referencia. +COLUMNS = COLUMNAS ## Devuelve el número de columnas de una referencia. +HLOOKUP = BUSCARH ## Busca en la fila superior de una matriz y devuelve el valor de la celda indicada. +HYPERLINK = HIPERVINCULO ## Crea un acceso directo o un salto que abre un documento almacenado en un servidor de red, en una intranet o en Internet. +INDEX = INDICE ## Usa un índice para elegir un valor de una referencia o matriz. +INDIRECT = INDIRECTO ## Devuelve una referencia indicada por un valor de texto. +LOOKUP = BUSCAR ## Busca valores de un vector o una matriz. +MATCH = COINCIDIR ## Busca valores de una referencia o matriz. +OFFSET = DESREF ## Devuelve un desplazamiento de referencia respecto a una referencia dada. +ROW = FILA ## Devuelve el número de fila de una referencia. +ROWS = FILAS ## Devuelve el número de filas de una referencia. +RTD = RDTR ## Recupera datos en tiempo real desde un programa compatible con la automatización COM (automatización: modo de trabajar con los objetos de una aplicación desde otra aplicación o herramienta de entorno. La automatización, antes denominada automatización OLE, es un estándar de la industria y una función del Modelo de objetos componentes (COM).). +TRANSPOSE = TRANSPONER ## Devuelve la transposición de una matriz. +VLOOKUP = BUSCARV ## Busca en la primera columna de una matriz y se mueve en horizontal por la fila para devolver el valor de una celda. + + +## +## Math and trigonometry functions Funciones matemáticas y trigonométricas +## +ABS = ABS ## Devuelve el valor absoluto de un número. +ACOS = ACOS ## Devuelve el arcocoseno de un número. +ACOSH = ACOSH ## Devuelve el coseno hiperbólico inverso de un número. +ASIN = ASENO ## Devuelve el arcoseno de un número. +ASINH = ASENOH ## Devuelve el seno hiperbólico inverso de un número. +ATAN = ATAN ## Devuelve la arcotangente de un número. +ATAN2 = ATAN2 ## Devuelve la arcotangente de las coordenadas "x" e "y". +ATANH = ATANH ## Devuelve la tangente hiperbólica inversa de un número. +CEILING = MULTIPLO.SUPERIOR ## Redondea un número al entero más próximo o al múltiplo significativo más cercano. +COMBIN = COMBINAT ## Devuelve el número de combinaciones para un número determinado de objetos. +COS = COS ## Devuelve el coseno de un número. +COSH = COSH ## Devuelve el coseno hiperbólico de un número. +DEGREES = GRADOS ## Convierte radianes en grados. +EVEN = REDONDEA.PAR ## Redondea un número hasta el entero par más próximo. +EXP = EXP ## Devuelve e elevado a la potencia de un número dado. +FACT = FACT ## Devuelve el factorial de un número. +FACTDOUBLE = FACT.DOBLE ## Devuelve el factorial doble de un número. +FLOOR = MULTIPLO.INFERIOR ## Redondea un número hacia abajo, en dirección hacia cero. +GCD = M.C.D ## Devuelve el máximo común divisor. +INT = ENTERO ## Redondea un número hacia abajo hasta el entero más próximo. +LCM = M.C.M ## Devuelve el mínimo común múltiplo. +LN = LN ## Devuelve el logaritmo natural (neperiano) de un número. +LOG = LOG ## Devuelve el logaritmo de un número en una base especificada. +LOG10 = LOG10 ## Devuelve el logaritmo en base 10 de un número. +MDETERM = MDETERM ## Devuelve la determinante matricial de una matriz. +MINVERSE = MINVERSA ## Devuelve la matriz inversa de una matriz. +MMULT = MMULT ## Devuelve el producto de matriz de dos matrices. +MOD = RESIDUO ## Devuelve el resto de la división. +MROUND = REDOND.MULT ## Devuelve un número redondeado al múltiplo deseado. +MULTINOMIAL = MULTINOMIAL ## Devuelve el polinomio de un conjunto de números. +ODD = REDONDEA.IMPAR ## Redondea un número hacia arriba hasta el entero impar más próximo. +PI = PI ## Devuelve el valor de pi. +POWER = POTENCIA ## Devuelve el resultado de elevar un número a una potencia. +PRODUCT = PRODUCTO ## Multiplica sus argumentos. +QUOTIENT = COCIENTE ## Devuelve la parte entera de una división. +RADIANS = RADIANES ## Convierte grados en radianes. +RAND = ALEATORIO ## Devuelve un número aleatorio entre 0 y 1. +RANDBETWEEN = ALEATORIO.ENTRE ## Devuelve un número aleatorio entre los números que especifique. +ROMAN = NUMERO.ROMANO ## Convierte un número arábigo en número romano, con formato de texto. +ROUND = REDONDEAR ## Redondea un número al número de decimales especificado. +ROUNDDOWN = REDONDEAR.MENOS ## Redondea un número hacia abajo, en dirección hacia cero. +ROUNDUP = REDONDEAR.MAS ## Redondea un número hacia arriba, en dirección contraria a cero. +SERIESSUM = SUMA.SERIES ## Devuelve la suma de una serie de potencias en función de la fórmula. +SIGN = SIGNO ## Devuelve el signo de un número. +SIN = SENO ## Devuelve el seno de un ángulo determinado. +SINH = SENOH ## Devuelve el seno hiperbólico de un número. +SQRT = RAIZ ## Devuelve la raíz cuadrada positiva de un número. +SQRTPI = RAIZ2PI ## Devuelve la raíz cuadrada de un número multiplicado por PI (número * pi). +SUBTOTAL = SUBTOTALES ## Devuelve un subtotal en una lista o base de datos. +SUM = SUMA ## Suma sus argumentos. +SUMIF = SUMAR.SI ## Suma las celdas especificadas que cumplen unos criterios determinados. +SUMIFS = SUMAR.SI.CONJUNTO ## Suma las celdas de un rango que cumplen varios criterios. +SUMPRODUCT = SUMAPRODUCTO ## Devuelve la suma de los productos de los correspondientes componentes de matriz. +SUMSQ = SUMA.CUADRADOS ## Devuelve la suma de los cuadrados de los argumentos. +SUMX2MY2 = SUMAX2MENOSY2 ## Devuelve la suma de la diferencia de los cuadrados de los valores correspondientes de dos matrices. +SUMX2PY2 = SUMAX2MASY2 ## Devuelve la suma de la suma de los cuadrados de los valores correspondientes de dos matrices. +SUMXMY2 = SUMAXMENOSY2 ## Devuelve la suma de los cuadrados de las diferencias de los valores correspondientes de dos matrices. +TAN = TAN ## Devuelve la tangente de un número. +TANH = TANH ## Devuelve la tangente hiperbólica de un número. +TRUNC = TRUNCAR ## Trunca un número a un entero. + + +## +## Statistical functions Funciones estadísticas +## +AVEDEV = DESVPROM ## Devuelve el promedio de las desviaciones absolutas de la media de los puntos de datos. +AVERAGE = PROMEDIO ## Devuelve el promedio de sus argumentos. +AVERAGEA = PROMEDIOA ## Devuelve el promedio de sus argumentos, incluidos números, texto y valores lógicos. +AVERAGEIF = PROMEDIO.SI ## Devuelve el promedio (media aritmética) de todas las celdas de un rango que cumplen unos criterios determinados. +AVERAGEIFS = PROMEDIO.SI.CONJUNTO ## Devuelve el promedio (media aritmética) de todas las celdas que cumplen múltiples criterios. +BETADIST = DISTR.BETA ## Devuelve la función de distribución beta acumulativa. +BETAINV = DISTR.BETA.INV ## Devuelve la función inversa de la función de distribución acumulativa de una distribución beta especificada. +BINOMDIST = DISTR.BINOM ## Devuelve la probabilidad de una variable aleatoria discreta siguiendo una distribución binomial. +CHIDIST = DISTR.CHI ## Devuelve la probabilidad de una variable aleatoria continua siguiendo una distribución chi cuadrado de una sola cola. +CHIINV = PRUEBA.CHI.INV ## Devuelve la función inversa de la probabilidad de una variable aleatoria continua siguiendo una distribución chi cuadrado de una sola cola. +CHITEST = PRUEBA.CHI ## Devuelve la prueba de independencia. +CONFIDENCE = INTERVALO.CONFIANZA ## Devuelve el intervalo de confianza de la media de una población. +CORREL = COEF.DE.CORREL ## Devuelve el coeficiente de correlación entre dos conjuntos de datos. +COUNT = CONTAR ## Cuenta cuántos números hay en la lista de argumentos. +COUNTA = CONTARA ## Cuenta cuántos valores hay en la lista de argumentos. +COUNTBLANK = CONTAR.BLANCO ## Cuenta el número de celdas en blanco de un rango. +COUNTIF = CONTAR.SI ## Cuenta el número de celdas, dentro del rango, que cumplen el criterio especificado. +COUNTIFS = CONTAR.SI.CONJUNTO ## Cuenta el número de celdas, dentro del rango, que cumplen varios criterios. +COVAR = COVAR ## Devuelve la covarianza, que es el promedio de los productos de las desviaciones para cada pareja de puntos de datos. +CRITBINOM = BINOM.CRIT ## Devuelve el menor valor cuya distribución binomial acumulativa es menor o igual a un valor de criterio. +DEVSQ = DESVIA2 ## Devuelve la suma de los cuadrados de las desviaciones. +EXPONDIST = DISTR.EXP ## Devuelve la distribución exponencial. +FDIST = DISTR.F ## Devuelve la distribución de probabilidad F. +FINV = DISTR.F.INV ## Devuelve la función inversa de la distribución de probabilidad F. +FISHER = FISHER ## Devuelve la transformación Fisher. +FISHERINV = PRUEBA.FISHER.INV ## Devuelve la función inversa de la transformación Fisher. +FORECAST = PRONOSTICO ## Devuelve un valor en una tendencia lineal. +FREQUENCY = FRECUENCIA ## Devuelve una distribución de frecuencia como una matriz vertical. +FTEST = PRUEBA.F ## Devuelve el resultado de una prueba F. +GAMMADIST = DISTR.GAMMA ## Devuelve la distribución gamma. +GAMMAINV = DISTR.GAMMA.INV ## Devuelve la función inversa de la distribución gamma acumulativa. +GAMMALN = GAMMA.LN ## Devuelve el logaritmo natural de la función gamma, G(x). +GEOMEAN = MEDIA.GEOM ## Devuelve la media geométrica. +GROWTH = CRECIMIENTO ## Devuelve valores en una tendencia exponencial. +HARMEAN = MEDIA.ARMO ## Devuelve la media armónica. +HYPGEOMDIST = DISTR.HIPERGEOM ## Devuelve la distribución hipergeométrica. +INTERCEPT = INTERSECCION.EJE ## Devuelve la intersección de la línea de regresión lineal. +KURT = CURTOSIS ## Devuelve la curtosis de un conjunto de datos. +LARGE = K.ESIMO.MAYOR ## Devuelve el k-ésimo mayor valor de un conjunto de datos. +LINEST = ESTIMACION.LINEAL ## Devuelve los parámetros de una tendencia lineal. +LOGEST = ESTIMACION.LOGARITMICA ## Devuelve los parámetros de una tendencia exponencial. +LOGINV = DISTR.LOG.INV ## Devuelve la función inversa de la distribución logarítmico-normal. +LOGNORMDIST = DISTR.LOG.NORM ## Devuelve la distribución logarítmico-normal acumulativa. +MAX = MAX ## Devuelve el valor máximo de una lista de argumentos. +MAXA = MAXA ## Devuelve el valor máximo de una lista de argumentos, incluidos números, texto y valores lógicos. +MEDIAN = MEDIANA ## Devuelve la mediana de los números dados. +MIN = MIN ## Devuelve el valor mínimo de una lista de argumentos. +MINA = MINA ## Devuelve el valor mínimo de una lista de argumentos, incluidos números, texto y valores lógicos. +MODE = MODA ## Devuelve el valor más común de un conjunto de datos. +NEGBINOMDIST = NEGBINOMDIST ## Devuelve la distribución binomial negativa. +NORMDIST = DISTR.NORM ## Devuelve la distribución normal acumulativa. +NORMINV = DISTR.NORM.INV ## Devuelve la función inversa de la distribución normal acumulativa. +NORMSDIST = DISTR.NORM.ESTAND ## Devuelve la distribución normal estándar acumulativa. +NORMSINV = DISTR.NORM.ESTAND.INV ## Devuelve la función inversa de la distribución normal estándar acumulativa. +PEARSON = PEARSON ## Devuelve el coeficiente de momento de correlación de producto Pearson. +PERCENTILE = PERCENTIL ## Devuelve el k-ésimo percentil de los valores de un rango. +PERCENTRANK = RANGO.PERCENTIL ## Devuelve el rango porcentual de un valor de un conjunto de datos. +PERMUT = PERMUTACIONES ## Devuelve el número de permutaciones de un número determinado de objetos. +POISSON = POISSON ## Devuelve la distribución de Poisson. +PROB = PROBABILIDAD ## Devuelve la probabilidad de que los valores de un rango se encuentren entre dos límites. +QUARTILE = CUARTIL ## Devuelve el cuartil de un conjunto de datos. +RANK = JERARQUIA ## Devuelve la jerarquía de un número en una lista de números. +RSQ = COEFICIENTE.R2 ## Devuelve el cuadrado del coeficiente de momento de correlación de producto Pearson. +SKEW = COEFICIENTE.ASIMETRIA ## Devuelve la asimetría de una distribución. +SLOPE = PENDIENTE ## Devuelve la pendiente de la línea de regresión lineal. +SMALL = K.ESIMO.MENOR ## Devuelve el k-ésimo menor valor de un conjunto de datos. +STANDARDIZE = NORMALIZACION ## Devuelve un valor normalizado. +STDEV = DESVEST ## Calcula la desviación estándar a partir de una muestra. +STDEVA = DESVESTA ## Calcula la desviación estándar a partir de una muestra, incluidos números, texto y valores lógicos. +STDEVP = DESVESTP ## Calcula la desviación estándar en función de toda la población. +STDEVPA = DESVESTPA ## Calcula la desviación estándar en función de toda la población, incluidos números, texto y valores lógicos. +STEYX = ERROR.TIPICO.XY ## Devuelve el error estándar del valor de "y" previsto para cada "x" de la regresión. +TDIST = DISTR.T ## Devuelve la distribución de t de Student. +TINV = DISTR.T.INV ## Devuelve la función inversa de la distribución de t de Student. +TREND = TENDENCIA ## Devuelve valores en una tendencia lineal. +TRIMMEAN = MEDIA.ACOTADA ## Devuelve la media del interior de un conjunto de datos. +TTEST = PRUEBA.T ## Devuelve la probabilidad asociada a una prueba t de Student. +VAR = VAR ## Calcula la varianza en función de una muestra. +VARA = VARA ## Calcula la varianza en función de una muestra, incluidos números, texto y valores lógicos. +VARP = VARP ## Calcula la varianza en función de toda la población. +VARPA = VARPA ## Calcula la varianza en función de toda la población, incluidos números, texto y valores lógicos. +WEIBULL = DIST.WEIBULL ## Devuelve la distribución de Weibull. +ZTEST = PRUEBA.Z ## Devuelve el valor de una probabilidad de una cola de una prueba z. + + +## +## Text functions Funciones de texto +## +ASC = ASC ## Convierte las letras inglesas o katakana de ancho completo (de dos bytes) dentro de una cadena de caracteres en caracteres de ancho medio (de un byte). +BAHTTEXT = TEXTOBAHT ## Convierte un número en texto, con el formato de moneda ß (Baht). +CHAR = CARACTER ## Devuelve el carácter especificado por el número de código. +CLEAN = LIMPIAR ## Quita del texto todos los caracteres no imprimibles. +CODE = CODIGO ## Devuelve un código numérico del primer carácter de una cadena de texto. +CONCATENATE = CONCATENAR ## Concatena varios elementos de texto en uno solo. +DOLLAR = MONEDA ## Convierte un número en texto, con el formato de moneda $ (dólar). +EXACT = IGUAL ## Comprueba si dos valores de texto son idénticos. +FIND = ENCONTRAR ## Busca un valor de texto dentro de otro (distingue mayúsculas de minúsculas). +FINDB = ENCONTRARB ## Busca un valor de texto dentro de otro (distingue mayúsculas de minúsculas). +FIXED = DECIMAL ## Da formato a un número como texto con un número fijo de decimales. +JIS = JIS ## Convierte las letras inglesas o katakana de ancho medio (de un byte) dentro de una cadena de caracteres en caracteres de ancho completo (de dos bytes). +LEFT = IZQUIERDA ## Devuelve los caracteres del lado izquierdo de un valor de texto. +LEFTB = IZQUIERDAB ## Devuelve los caracteres del lado izquierdo de un valor de texto. +LEN = LARGO ## Devuelve el número de caracteres de una cadena de texto. +LENB = LARGOB ## Devuelve el número de caracteres de una cadena de texto. +LOWER = MINUSC ## Pone el texto en minúsculas. +MID = EXTRAE ## Devuelve un número específico de caracteres de una cadena de texto que comienza en la posición que se especifique. +MIDB = EXTRAEB ## Devuelve un número específico de caracteres de una cadena de texto que comienza en la posición que se especifique. +PHONETIC = FONETICO ## Extrae los caracteres fonéticos (furigana) de una cadena de texto. +PROPER = NOMPROPIO ## Pone en mayúscula la primera letra de cada palabra de un valor de texto. +REPLACE = REEMPLAZAR ## Reemplaza caracteres de texto. +REPLACEB = REEMPLAZARB ## Reemplaza caracteres de texto. +REPT = REPETIR ## Repite el texto un número determinado de veces. +RIGHT = DERECHA ## Devuelve los caracteres del lado derecho de un valor de texto. +RIGHTB = DERECHAB ## Devuelve los caracteres del lado derecho de un valor de texto. +SEARCH = HALLAR ## Busca un valor de texto dentro de otro (no distingue mayúsculas de minúsculas). +SEARCHB = HALLARB ## Busca un valor de texto dentro de otro (no distingue mayúsculas de minúsculas). +SUBSTITUTE = SUSTITUIR ## Sustituye texto nuevo por texto antiguo en una cadena de texto. +T = T ## Convierte sus argumentos a texto. +TEXT = TEXTO ## Da formato a un número y lo convierte en texto. +TRIM = ESPACIOS ## Quita los espacios del texto. +UPPER = MAYUSC ## Pone el texto en mayúsculas. +VALUE = VALOR ## Convierte un argumento de texto en un número. diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fi/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fi/config new file mode 100644 index 0000000..498cf4c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fi/config @@ -0,0 +1,47 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = $ # Symbol not known, should it be a € (Euro)? + + +## +## Excel Error Codes (For future use) +## +NULL = #TYHJÄ! +DIV0 = #JAKO/0! +VALUE = #ARVO! +REF = #VIITTAUS! +NAME = #NIMI? +NUM = #LUKU! +NA = #PUUTTUU diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fi/functions b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fi/functions new file mode 100644 index 0000000..6a7c2b3 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fi/functions @@ -0,0 +1,438 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Calculation +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## Data in this file derived from http://www.piuha.fi/excel-function-name-translation/ +## +## + + +## +## Add-in and Automation functions Apuohjelma- ja automaatiofunktiot +## +GETPIVOTDATA = NOUDA.PIVOT.TIEDOT ## Palauttaa pivot-taulukkoraporttiin tallennettuja tietoja. + + +## +## Cube functions Kuutiofunktiot +## +CUBEKPIMEMBER = KUUTIOKPIJÄSEN ## Palauttaa suorituskykyilmaisimen (KPI) nimen, ominaisuuden sekä mitan ja näyttää nimen sekä ominaisuuden solussa. KPI on mitattavissa oleva suure, kuten kuukauden bruttotuotto tai vuosineljänneksen työntekijäkohtainen liikevaihto, joiden avulla tarkkaillaan organisaation suorituskykyä. +CUBEMEMBER = KUUTIONJÄSEN ## Palauttaa kuutiohierarkian jäsenen tai monikon. Tällä funktiolla voit tarkistaa, että jäsen tai monikko on olemassa kuutiossa. +CUBEMEMBERPROPERTY = KUUTIONJÄSENENOMINAISUUS ## Palauttaa kuution jäsenominaisuuden arvon. Tällä funktiolla voit tarkistaa, että nimi on olemassa kuutiossa, ja palauttaa tämän jäsenen määritetyn ominaisuuden. +CUBERANKEDMEMBER = KUUTIONLUOKITELTUJÄSEN ## Palauttaa joukon n:nnen jäsenen. Tällä funktiolla voit palauttaa joukosta elementtejä, kuten parhaan myyjän tai 10 parasta opiskelijaa. +CUBESET = KUUTIOJOUKKO ## Määrittää lasketun jäsen- tai monikkojoukon lähettämällä joukon lausekkeita palvelimessa olevalle kuutiolle. Palvelin luo joukon ja palauttaa sen Microsoft Office Excelille. +CUBESETCOUNT = KUUTIOJOUKKOJENMÄÄRÄ ## Palauttaa joukon kohteiden määrän. +CUBEVALUE = KUUTIONARVO ## Palauttaa koostetun arvon kuutiosta. + + +## +## Database functions Tietokantafunktiot +## +DAVERAGE = TKESKIARVO ## Palauttaa valittujen tietokantamerkintöjen keskiarvon. +DCOUNT = TLASKE ## Laskee tietokannan lukuja sisältävien solujen määrän. +DCOUNTA = TLASKEA ## Laskee tietokannan tietoja sisältävien solujen määrän. +DGET = TNOUDA ## Hakee määritettyjä ehtoja vastaavan tietueen tietokannasta. +DMAX = TMAKS ## Palauttaa suurimman arvon tietokannasta valittujen arvojen joukosta. +DMIN = TMIN ## Palauttaa pienimmän arvon tietokannasta valittujen arvojen joukosta. +DPRODUCT = TTULO ## Kertoo määritetyn ehdon täyttävien tietokannan tietueiden tietyssä kentässä olevat arvot. +DSTDEV = TKESKIHAJONTA ## Laskee keskihajonnan tietokannasta valituista arvoista muodostuvan otoksen perusteella. +DSTDEVP = TKESKIHAJONTAP ## Laskee keskihajonnan tietokannasta valittujen arvojen koko populaation perusteella. +DSUM = TSUMMA ## Lisää luvut määritetyn ehdon täyttävien tietokannan tietueiden kenttäsarakkeeseen. +DVAR = TVARIANSSI ## Laskee varianssin tietokannasta valittujen arvojen otoksen perusteella. +DVARP = TVARIANSSIP ## Laskee varianssin tietokannasta valittujen arvojen koko populaation perusteella. + + +## +## Date and time functions Päivämäärä- ja aikafunktiot +## +DATE = PÄIVÄYS ## Palauttaa annetun päivämäärän järjestysluvun. +DATEVALUE = PÄIVÄYSARVO ## Muuntaa tekstimuodossa olevan päivämäärän järjestysluvuksi. +DAY = PÄIVÄ ## Muuntaa järjestysluvun kuukauden päiväksi. +DAYS360 = PÄIVÄT360 ## Laskee kahden päivämäärän välisten päivien määrän käyttäen perustana 360-päiväistä vuotta. +EDATE = PÄIVÄ.KUUKAUSI ## Palauttaa järjestyslukuna päivämäärän, joka poikkeaa aloituspäivän päivämäärästä annetun kuukausimäärän verran joko eteen- tai taaksepäin. +EOMONTH = KUUKAUSI.LOPPU ## Palauttaa järjestyslukuna sen kuukauden viimeisen päivämäärän, joka poikkeaa annetun kuukausimäärän verran eteen- tai taaksepäin. +HOUR = TUNNIT ## Muuntaa järjestysluvun tunneiksi. +MINUTE = MINUUTIT ## Muuntaa järjestysluvun minuuteiksi. +MONTH = KUUKAUSI ## Muuntaa järjestysluvun kuukausiksi. +NETWORKDAYS = TYÖPÄIVÄT ## Palauttaa kahden päivämäärän välissä olevien täysien työpäivien määrän. +NOW = NYT ## Palauttaa kuluvan päivämäärän ja ajan järjestysnumeron. +SECOND = SEKUNNIT ## Muuntaa järjestysluvun sekunneiksi. +TIME = AIKA ## Palauttaa annetun kellonajan järjestysluvun. +TIMEVALUE = AIKA_ARVO ## Muuntaa tekstimuodossa olevan kellonajan järjestysluvuksi. +TODAY = TÄMÄ.PÄIVÄ ## Palauttaa kuluvan päivän päivämäärän järjestysluvun. +WEEKDAY = VIIKONPÄIVÄ ## Muuntaa järjestysluvun viikonpäiväksi. +WEEKNUM = VIIKKO.NRO ## Muuntaa järjestysluvun luvuksi, joka ilmaisee viikon järjestysluvun vuoden alusta laskettuna. +WORKDAY = TYÖPÄIVÄ ## Palauttaa järjestysluvun päivämäärälle, joka sijaitsee annettujen työpäivien verran eteen tai taaksepäin. +YEAR = VUOSI ## Muuntaa järjestysluvun vuosiksi. +YEARFRAC = VUOSI.OSA ## Palauttaa määritettyjen päivämäärien (aloituspäivä ja lopetuspäivä) välisen osan vuodesta. + + +## +## Engineering functions Tekniset funktiot +## +BESSELI = BESSELI ## Palauttaa muunnetun Bessel-funktion In(x). +BESSELJ = BESSELJ ## Palauttaa Bessel-funktion Jn(x). +BESSELK = BESSELK ## Palauttaa muunnetun Bessel-funktion Kn(x). +BESSELY = BESSELY ## Palauttaa Bessel-funktion Yn(x). +BIN2DEC = BINDES ## Muuntaa binaariluvun desimaaliluvuksi. +BIN2HEX = BINHEKSA ## Muuntaa binaariluvun heksadesimaaliluvuksi. +BIN2OCT = BINOKT ## Muuntaa binaariluvun oktaaliluvuksi. +COMPLEX = KOMPLEKSI ## Muuntaa reaali- ja imaginaariosien kertoimet kompleksiluvuksi. +CONVERT = MUUNNA ## Muuntaa luvun toisen mittajärjestelmän mukaiseksi. +DEC2BIN = DESBIN ## Muuntaa desimaaliluvun binaariluvuksi. +DEC2HEX = DESHEKSA ## Muuntaa kymmenjärjestelmän luvun heksadesimaaliluvuksi. +DEC2OCT = DESOKT ## Muuntaa kymmenjärjestelmän luvun oktaaliluvuksi. +DELTA = SAMA.ARVO ## Tarkistaa, ovatko kaksi arvoa yhtä suuria. +ERF = VIRHEFUNKTIO ## Palauttaa virhefunktion. +ERFC = VIRHEFUNKTIO.KOMPLEMENTTI ## Palauttaa komplementtivirhefunktion. +GESTEP = RAJA ## Testaa, onko luku suurempi kuin kynnysarvo. +HEX2BIN = HEKSABIN ## Muuntaa heksadesimaaliluvun binaariluvuksi. +HEX2DEC = HEKSADES ## Muuntaa heksadesimaaliluvun desimaaliluvuksi. +HEX2OCT = HEKSAOKT ## Muuntaa heksadesimaaliluvun oktaaliluvuksi. +IMABS = KOMPLEKSI.ITSEISARVO ## Palauttaa kompleksiluvun itseisarvon (moduluksen). +IMAGINARY = KOMPLEKSI.IMAG ## Palauttaa kompleksiluvun imaginaariosan kertoimen. +IMARGUMENT = KOMPLEKSI.ARG ## Palauttaa theeta-argumentin, joka on radiaaneina annettu kulma. +IMCONJUGATE = KOMPLEKSI.KONJ ## Palauttaa kompleksiluvun konjugaattiluvun. +IMCOS = KOMPLEKSI.COS ## Palauttaa kompleksiluvun kosinin. +IMDIV = KOMPLEKSI.OSAM ## Palauttaa kahden kompleksiluvun osamäärän. +IMEXP = KOMPLEKSI.EKSP ## Palauttaa kompleksiluvun eksponentin. +IMLN = KOMPLEKSI.LN ## Palauttaa kompleksiluvun luonnollisen logaritmin. +IMLOG10 = KOMPLEKSI.LOG10 ## Palauttaa kompleksiluvun kymmenkantaisen logaritmin. +IMLOG2 = KOMPLEKSI.LOG2 ## Palauttaa kompleksiluvun kaksikantaisen logaritmin. +IMPOWER = KOMPLEKSI.POT ## Palauttaa kokonaislukupotenssiin korotetun kompleksiluvun. +IMPRODUCT = KOMPLEKSI.TULO ## Palauttaa kompleksilukujen tulon. +IMREAL = KOMPLEKSI.REAALI ## Palauttaa kompleksiluvun reaaliosan kertoimen. +IMSIN = KOMPLEKSI.SIN ## Palauttaa kompleksiluvun sinin. +IMSQRT = KOMPLEKSI.NELIÖJ ## Palauttaa kompleksiluvun neliöjuuren. +IMSUB = KOMPLEKSI.EROTUS ## Palauttaa kahden kompleksiluvun erotuksen. +IMSUM = KOMPLEKSI.SUM ## Palauttaa kompleksilukujen summan. +OCT2BIN = OKTBIN ## Muuntaa oktaaliluvun binaariluvuksi. +OCT2DEC = OKTDES ## Muuntaa oktaaliluvun desimaaliluvuksi. +OCT2HEX = OKTHEKSA ## Muuntaa oktaaliluvun heksadesimaaliluvuksi. + + +## +## Financial functions Rahoitusfunktiot +## +ACCRINT = KERTYNYT.KORKO ## Laskee arvopaperille kertyneen koron, kun korko kertyy säännöllisin väliajoin. +ACCRINTM = KERTYNYT.KORKO.LOPUSSA ## Laskee arvopaperille kertyneen koron, kun korko maksetaan eräpäivänä. +AMORDEGRC = AMORDEGRC ## Laskee kunkin laskentakauden poiston poistokerrointa käyttämällä. +AMORLINC = AMORLINC ## Palauttaa kunkin laskentakauden poiston. +COUPDAYBS = KORKOPÄIVÄT.ALUSTA ## Palauttaa koronmaksukauden aloituspäivän ja tilityspäivän välisen ajanjakson päivien määrän. +COUPDAYS = KORKOPÄIVÄT ## Palauttaa päivien määrän koronmaksukaudelta, johon tilityspäivä kuuluu. +COUPDAYSNC = KORKOPÄIVÄT.SEURAAVA ## Palauttaa tilityspäivän ja seuraavan koronmaksupäivän välisen ajanjakson päivien määrän. +COUPNCD = KORKOMAKSU.SEURAAVA ## Palauttaa tilityspäivän jälkeisen seuraavan koronmaksupäivän. +COUPNUM = KORKOPÄIVÄJAKSOT ## Palauttaa arvopaperin ostopäivän ja erääntymispäivän välisten koronmaksupäivien määrän. +COUPPCD = KORKOPÄIVÄ.EDELLINEN ## Palauttaa tilityspäivää edeltävän koronmaksupäivän. +CUMIPMT = MAKSETTU.KORKO ## Palauttaa kahden jakson välisenä aikana kertyneen koron. +CUMPRINC = MAKSETTU.LYHENNYS ## Palauttaa lainalle kahden jakson välisenä aikana kertyneen lyhennyksen. +DB = DB ## Palauttaa kauden kirjanpidollisen poiston amerikkalaisen DB-menetelmän (Fixed-declining balance) mukaan. +DDB = DDB ## Palauttaa kauden kirjanpidollisen poiston amerikkalaisen DDB-menetelmän (Double-Declining Balance) tai jonkin muun määrittämäsi menetelmän mukaan. +DISC = DISKONTTOKORKO ## Palauttaa arvopaperin diskonttokoron. +DOLLARDE = VALUUTTA.DES ## Muuntaa murtolukuna ilmoitetun valuuttamäärän desimaaliluvuksi. +DOLLARFR = VALUUTTA.MURTO ## Muuntaa desimaalilukuna ilmaistun valuuttamäärän murtoluvuksi. +DURATION = KESTO ## Palauttaa keston arvopaperille, jonka koronmaksu tapahtuu säännöllisesti. +EFFECT = KORKO.EFEKT ## Palauttaa todellisen vuosikoron. +FV = TULEVA.ARVO ## Palauttaa sijoituksen tulevan arvon. +FVSCHEDULE = TULEVA.ARVO.ERIKORKO ## Palauttaa pääoman tulevan arvon, kun pääomalle on kertynyt korkoa vaihtelevasti. +INTRATE = KORKO.ARVOPAPERI ## Palauttaa arvopaperin korkokannan täysin sijoitetulle arvopaperille. +IPMT = IPMT ## Laskee sijoitukselle tai lainalle tiettynä ajanjaksona kertyvän koron. +IRR = SISÄINEN.KORKO ## Laskee sisäisen korkokannan kassavirrasta muodostuvalle sarjalle. +ISPMT = ONMAKSU ## Laskee sijoituksen maksetun koron tietyllä jaksolla. +MDURATION = KESTO.MUUNN ## Palauttaa muunnetun Macauley-keston arvopaperille, jonka oletettu nimellisarvo on 100 euroa. +MIRR = MSISÄINEN ## Palauttaa sisäisen korkokannan, kun positiivisten ja negatiivisten kassavirtojen rahoituskorko on erilainen. +NOMINAL = KORKO.VUOSI ## Palauttaa vuosittaisen nimelliskoron. +NPER = NJAKSO ## Palauttaa sijoituksen jaksojen määrän. +NPV = NNA ## Palauttaa sijoituksen nykyarvon toistuvista kassavirroista muodostuvan sarjan ja diskonttokoron perusteella. +ODDFPRICE = PARITON.ENS.NIMELLISARVO ## Palauttaa arvopaperin hinnan tilanteessa, jossa ensimmäinen jakso on pariton. +ODDFYIELD = PARITON.ENS.TUOTTO ## Palauttaa arvopaperin tuoton tilanteessa, jossa ensimmäinen jakso on pariton. +ODDLPRICE = PARITON.VIIM.NIMELLISARVO ## Palauttaa arvopaperin hinnan tilanteessa, jossa viimeinen jakso on pariton. +ODDLYIELD = PARITON.VIIM.TUOTTO ## Palauttaa arvopaperin tuoton tilanteessa, jossa viimeinen jakso on pariton. +PMT = MAKSU ## Palauttaa annuiteetin kausittaisen maksuerän. +PPMT = PPMT ## Laskee sijoitukselle tai lainalle tiettynä ajanjaksona maksettavan lyhennyksen. +PRICE = HINTA ## Palauttaa hinnan 100 euron nimellisarvoa kohden arvopaperille, jonka korko maksetaan säännöllisin väliajoin. +PRICEDISC = HINTA.DISK ## Palauttaa diskontatun arvopaperin hinnan 100 euron nimellisarvoa kohden. +PRICEMAT = HINTA.LUNASTUS ## Palauttaa hinnan 100 euron nimellisarvoa kohden arvopaperille, jonka korko maksetaan erääntymispäivänä. +PV = NA ## Palauttaa sijoituksen nykyarvon. +RATE = KORKO ## Palauttaa annuiteetin kausittaisen korkokannan. +RECEIVED = SAATU.HINTA ## Palauttaa arvopaperin tuoton erääntymispäivänä kokonaan maksetulle sijoitukselle. +SLN = STP ## Palauttaa sijoituksen tasapoiston yhdeltä jaksolta. +SYD = VUOSIPOISTO ## Palauttaa sijoituksen vuosipoiston annettuna kautena amerikkalaisen SYD-menetelmän (Sum-of-Year's Digits) avulla. +TBILLEQ = OBLIG.TUOTTOPROS ## Palauttaa valtion obligaation tuoton vastaavana joukkovelkakirjan tuottona. +TBILLPRICE = OBLIG.HINTA ## Palauttaa obligaation hinnan 100 euron nimellisarvoa kohden. +TBILLYIELD = OBLIG.TUOTTO ## Palauttaa obligaation tuoton. +VDB = VDB ## Palauttaa annetun kauden tai kauden osan kirjanpidollisen poiston amerikkalaisen DB-menetelmän (Fixed-declining balance) mukaan. +XIRR = SISÄINEN.KORKO.JAKSOTON ## Palauttaa sisäisen korkokannan kassavirtojen sarjoille, jotka eivät välttämättä ole säännöllisiä. +XNPV = NNA.JAKSOTON ## Palauttaa nettonykyarvon kassavirtasarjalle, joka ei välttämättä ole kausittainen. +YIELD = TUOTTO ## Palauttaa tuoton arvopaperille, jonka korko maksetaan säännöllisin väliajoin. +YIELDDISC = TUOTTO.DISK ## Palauttaa diskontatun arvopaperin, kuten obligaation, vuosittaisen tuoton. +YIELDMAT = TUOTTO.ERÄP ## Palauttaa erääntymispäivänään korkoa tuottavan arvopaperin vuosittaisen tuoton. + + +## +## Information functions Erikoisfunktiot +## +CELL = SOLU ## Palauttaa tietoja solun muotoilusta, sijainnista ja sisällöstä. +ERROR.TYPE = VIRHEEN.LAJI ## Palauttaa virhetyyppiä vastaavan luvun. +INFO = KUVAUS ## Palauttaa tietoja nykyisestä käyttöympäristöstä. +ISBLANK = ONTYHJÄ ## Palauttaa arvon TOSI, jos arvo on tyhjä. +ISERR = ONVIRH ## Palauttaa arvon TOSI, jos arvo on mikä tahansa virhearvo paitsi arvo #PUUTTUU!. +ISERROR = ONVIRHE ## Palauttaa arvon TOSI, jos arvo on mikä tahansa virhearvo. +ISEVEN = ONPARILLINEN ## Palauttaa arvon TOSI, jos arvo on parillinen. +ISLOGICAL = ONTOTUUS ## Palauttaa arvon TOSI, jos arvo on mikä tahansa looginen arvo. +ISNA = ONPUUTTUU ## Palauttaa arvon TOSI, jos virhearvo on #PUUTTUU!. +ISNONTEXT = ONEI_TEKSTI ## Palauttaa arvon TOSI, jos arvo ei ole teksti. +ISNUMBER = ONLUKU ## Palauttaa arvon TOSI, jos arvo on luku. +ISODD = ONPARITON ## Palauttaa arvon TOSI, jos arvo on pariton. +ISREF = ONVIITT ## Palauttaa arvon TOSI, jos arvo on viittaus. +ISTEXT = ONTEKSTI ## Palauttaa arvon TOSI, jos arvo on teksti. +N = N ## Palauttaa arvon luvuksi muunnettuna. +NA = PUUTTUU ## Palauttaa virhearvon #PUUTTUU!. +TYPE = TYYPPI ## Palauttaa luvun, joka ilmaisee arvon tietotyypin. + + +## +## Logical functions Loogiset funktiot +## +AND = JA ## Palauttaa arvon TOSI, jos kaikkien argumenttien arvo on TOSI. +FALSE = EPÄTOSI ## Palauttaa totuusarvon EPÄTOSI. +IF = JOS ## Määrittää suoritettavan loogisen testin. +IFERROR = JOSVIRHE ## Palauttaa määrittämäsi arvon, jos kaavan tulos on virhe; muussa tapauksessa palauttaa kaavan tuloksen. +NOT = EI ## Kääntää argumentin loogisen arvon. +OR = TAI ## Palauttaa arvon TOSI, jos minkä tahansa argumentin arvo on TOSI. +TRUE = TOSI ## Palauttaa totuusarvon TOSI. + + +## +## Lookup and reference functions Haku- ja viitefunktiot +## +ADDRESS = OSOITE ## Palauttaa laskentataulukon soluun osoittavan viittauksen tekstinä. +AREAS = ALUEET ## Palauttaa viittauksessa olevien alueiden määrän. +CHOOSE = VALITSE.INDEKSI ## Valitsee arvon arvoluettelosta. +COLUMN = SARAKE ## Palauttaa viittauksen sarakenumeron. +COLUMNS = SARAKKEET ## Palauttaa viittauksessa olevien sarakkeiden määrän. +HLOOKUP = VHAKU ## Suorittaa haun matriisin ylimmältä riviltä ja palauttaa määritetyn solun arvon. +HYPERLINK = HYPERLINKKI ## Luo pikakuvakkeen tai tekstin, joka avaa verkkopalvelimeen, intranetiin tai Internetiin tallennetun tiedoston. +INDEX = INDEKSI ## Valitsee arvon viittauksesta tai matriisista indeksin mukaan. +INDIRECT = EPÄSUORA ## Palauttaa tekstiarvona ilmaistun viittauksen. +LOOKUP = HAKU ## Etsii arvoja vektorista tai matriisista. +MATCH = VASTINE ## Etsii arvoja viittauksesta tai matriisista. +OFFSET = SIIRTYMÄ ## Palauttaa annetun viittauksen siirtymän. +ROW = RIVI ## Palauttaa viittauksen rivinumeron. +ROWS = RIVIT ## Palauttaa viittauksessa olevien rivien määrän. +RTD = RTD ## Noutaa COM-automaatiota (automaatio: Tapa käsitellä sovelluksen objekteja toisesta sovelluksesta tai kehitystyökalusta. Automaatio, jota aiemmin kutsuttiin OLE-automaatioksi, on teollisuusstandardi ja COM-mallin (Component Object Model) ominaisuus.) tukevasta ohjelmasta reaaliaikaisia tietoja. +TRANSPOSE = TRANSPONOI ## Palauttaa matriisin käänteismatriisin. +VLOOKUP = PHAKU ## Suorittaa haun matriisin ensimmäisestä sarakkeesta ja palauttaa rivillä olevan solun arvon. + + +## +## Math and trigonometry functions Matemaattiset ja trigonometriset funktiot +## +ABS = ITSEISARVO ## Palauttaa luvun itseisarvon. +ACOS = ACOS ## Palauttaa luvun arkuskosinin. +ACOSH = ACOSH ## Palauttaa luvun käänteisen hyperbolisen kosinin. +ASIN = ASIN ## Palauttaa luvun arkussinin. +ASINH = ASINH ## Palauttaa luvun käänteisen hyperbolisen sinin. +ATAN = ATAN ## Palauttaa luvun arkustangentin. +ATAN2 = ATAN2 ## Palauttaa arkustangentin x- ja y-koordinaatin perusteella. +ATANH = ATANH ## Palauttaa luvun käänteisen hyperbolisen tangentin. +CEILING = PYÖRISTÄ.KERR.YLÖS ## Pyöristää luvun lähimpään kokonaislukuun tai tarkkuusargumentin lähimpään kerrannaiseen. +COMBIN = KOMBINAATIO ## Palauttaa mahdollisten kombinaatioiden määrän annetulle objektien määrälle. +COS = COS ## Palauttaa luvun kosinin. +COSH = COSH ## Palauttaa luvun hyperbolisen kosinin. +DEGREES = ASTEET ## Muuntaa radiaanit asteiksi. +EVEN = PARILLINEN ## Pyöristää luvun ylöspäin lähimpään parilliseen kokonaislukuun. +EXP = EKSPONENTTI ## Palauttaa e:n korotettuna annetun luvun osoittamaan potenssiin. +FACT = KERTOMA ## Palauttaa luvun kertoman. +FACTDOUBLE = KERTOMA.OSA ## Palauttaa luvun osakertoman. +FLOOR = PYÖRISTÄ.KERR.ALAS ## Pyöristää luvun alaspäin (nollaa kohti). +GCD = SUURIN.YHT.TEKIJÄ ## Palauttaa suurimman yhteisen tekijän. +INT = KOKONAISLUKU ## Pyöristää luvun alaspäin lähimpään kokonaislukuun. +LCM = PIENIN.YHT.JAETTAVA ## Palauttaa pienimmän yhteisen tekijän. +LN = LUONNLOG ## Palauttaa luvun luonnollisen logaritmin. +LOG = LOG ## Laskee luvun logaritmin käyttämällä annettua kantalukua. +LOG10 = LOG10 ## Palauttaa luvun kymmenkantaisen logaritmin. +MDETERM = MDETERM ## Palauttaa matriisin matriisideterminantin. +MINVERSE = MKÄÄNTEINEN ## Palauttaa matriisin käänteismatriisin. +MMULT = MKERRO ## Palauttaa kahden matriisin tulon. +MOD = JAKOJ ## Palauttaa jakolaskun jäännöksen. +MROUND = PYÖRISTÄ.KERR ## Palauttaa luvun pyöristettynä annetun luvun kerrannaiseen. +MULTINOMIAL = MULTINOMI ## Palauttaa lukujoukon multinomin. +ODD = PARITON ## Pyöristää luvun ylöspäin lähimpään parittomaan kokonaislukuun. +PI = PII ## Palauttaa piin arvon. +POWER = POTENSSI ## Palauttaa luvun korotettuna haluttuun potenssiin. +PRODUCT = TULO ## Kertoo annetut argumentit. +QUOTIENT = OSAMÄÄRÄ ## Palauttaa osamäärän kokonaislukuosan. +RADIANS = RADIAANIT ## Muuntaa asteet radiaaneiksi. +RAND = SATUNNAISLUKU ## Palauttaa satunnaisluvun väliltä 0–1. +RANDBETWEEN = SATUNNAISLUKU.VÄLILTÄ ## Palauttaa satunnaisluvun määritettyjen lukujen väliltä. +ROMAN = ROMAN ## Muuntaa arabialaisen numeron tekstimuotoiseksi roomalaiseksi numeroksi. +ROUND = PYÖRISTÄ ## Pyöristää luvun annettuun määrään desimaaleja. +ROUNDDOWN = PYÖRISTÄ.DES.ALAS ## Pyöristää luvun alaspäin (nollaa kohti). +ROUNDUP = PYÖRISTÄ.DES.YLÖS ## Pyöristää luvun ylöspäin (poispäin nollasta). +SERIESSUM = SARJA.SUMMA ## Palauttaa kaavaan perustuvan potenssisarjan arvon. +SIGN = ETUMERKKI ## Palauttaa luvun etumerkin. +SIN = SIN ## Palauttaa annetun kulman sinin. +SINH = SINH ## Palauttaa luvun hyperbolisen sinin. +SQRT = NELIÖJUURI ## Palauttaa positiivisen neliöjuuren. +SQRTPI = NELIÖJUURI.PII ## Palauttaa tulon (luku * pii) neliöjuuren. +SUBTOTAL = VÄLISUMMA ## Palauttaa luettelon tai tietokannan välisumman. +SUM = SUMMA ## Laskee yhteen annetut argumentit. +SUMIF = SUMMA.JOS ## Laskee ehdot täyttävien solujen summan. +SUMIFS = SUMMA.JOS.JOUKKO ## Laskee yhteen solualueen useita ehtoja vastaavat solut. +SUMPRODUCT = TULOJEN.SUMMA ## Palauttaa matriisin toisiaan vastaavien osien tulojen summan. +SUMSQ = NELIÖSUMMA ## Palauttaa argumenttien neliöiden summan. +SUMX2MY2 = NELIÖSUMMIEN.EROTUS ## Palauttaa kahden matriisin toisiaan vastaavien arvojen laskettujen neliösummien erotuksen. +SUMX2PY2 = NELIÖSUMMIEN.SUMMA ## Palauttaa kahden matriisin toisiaan vastaavien arvojen neliösummien summan. +SUMXMY2 = EROTUSTEN.NELIÖSUMMA ## Palauttaa kahden matriisin toisiaan vastaavien arvojen erotusten neliösumman. +TAN = TAN ## Palauttaa luvun tangentin. +TANH = TANH ## Palauttaa luvun hyperbolisen tangentin. +TRUNC = KATKAISE ## Katkaisee luvun kokonaisluvuksi. + + +## +## Statistical functions Tilastolliset funktiot +## +AVEDEV = KESKIPOIKKEAMA ## Palauttaa hajontojen itseisarvojen keskiarvon. +AVERAGE = KESKIARVO ## Palauttaa argumenttien keskiarvon. +AVERAGEA = KESKIARVOA ## Palauttaa argumenttien, mukaan lukien lukujen, tekstin ja loogisten arvojen, keskiarvon. +AVERAGEIF = KESKIARVO.JOS ## Palauttaa alueen niiden solujen keskiarvon (aritmeettisen keskiarvon), jotka täyttävät annetut ehdot. +AVERAGEIFS = KESKIARVO.JOS.JOUKKO ## Palauttaa niiden solujen keskiarvon (aritmeettisen keskiarvon), jotka vastaavat useita ehtoja. +BETADIST = BEETAJAKAUMA ## Palauttaa kumulatiivisen beetajakaumafunktion arvon. +BETAINV = BEETAJAKAUMA.KÄÄNT ## Palauttaa määritetyn beetajakauman käänteisen kumulatiivisen jakaumafunktion arvon. +BINOMDIST = BINOMIJAKAUMA ## Palauttaa yksittäisen termin binomijakaumatodennäköisyyden. +CHIDIST = CHIJAKAUMA ## Palauttaa yksisuuntaisen chi-neliön jakauman todennäköisyyden. +CHIINV = CHIJAKAUMA.KÄÄNT ## Palauttaa yksisuuntaisen chi-neliön jakauman todennäköisyyden käänteisarvon. +CHITEST = CHITESTI ## Palauttaa riippumattomuustestin tuloksen. +CONFIDENCE = LUOTTAMUSVÄLI ## Palauttaa luottamusvälin populaation keskiarvolle. +CORREL = KORRELAATIO ## Palauttaa kahden arvojoukon korrelaatiokertoimen. +COUNT = LASKE ## Laskee argumenttiluettelossa olevien lukujen määrän. +COUNTA = LASKE.A ## Laskee argumenttiluettelossa olevien arvojen määrän. +COUNTBLANK = LASKE.TYHJÄT ## Laskee alueella olevien tyhjien solujen määrän. +COUNTIF = LASKE.JOS ## Laskee alueella olevien sellaisten solujen määrän, joiden sisältö vastaa annettuja ehtoja. +COUNTIFS = LASKE.JOS.JOUKKO ## Laskee alueella olevien sellaisten solujen määrän, joiden sisältö vastaa useita ehtoja. +COVAR = KOVARIANSSI ## Palauttaa kovarianssin, joka on keskiarvo havaintoaineiston kunkin pisteparin poikkeamien tuloista. +CRITBINOM = BINOMIJAKAUMA.KRIT ## Palauttaa pienimmän arvon, jossa binomijakauman kertymäfunktion arvo on pienempi tai yhtä suuri kuin vertailuarvo. +DEVSQ = OIKAISTU.NELIÖSUMMA ## Palauttaa keskipoikkeamien neliösumman. +EXPONDIST = EKSPONENTIAALIJAKAUMA ## Palauttaa eksponentiaalijakauman. +FDIST = FJAKAUMA ## Palauttaa F-todennäköisyysjakauman. +FINV = FJAKAUMA.KÄÄNT ## Palauttaa F-todennäköisyysjakauman käänteisfunktion. +FISHER = FISHER ## Palauttaa Fisher-muunnoksen. +FISHERINV = FISHER.KÄÄNT ## Palauttaa käänteisen Fisher-muunnoksen. +FORECAST = ENNUSTE ## Palauttaa lineaarisen trendin arvon. +FREQUENCY = TAAJUUS ## Palauttaa frekvenssijakautuman pystysuuntaisena matriisina. +FTEST = FTESTI ## Palauttaa F-testin tuloksen. +GAMMADIST = GAMMAJAKAUMA ## Palauttaa gammajakauman. +GAMMAINV = GAMMAJAKAUMA.KÄÄNT ## Palauttaa käänteisen gammajakauman kertymäfunktion. +GAMMALN = GAMMALN ## Palauttaa gammafunktion luonnollisen logaritmin G(x). +GEOMEAN = KESKIARVO.GEOM ## Palauttaa geometrisen keskiarvon. +GROWTH = KASVU ## Palauttaa eksponentiaalisen trendin arvon. +HARMEAN = KESKIARVO.HARM ## Palauttaa harmonisen keskiarvon. +HYPGEOMDIST = HYPERGEOM.JAKAUMA ## Palauttaa hypergeometrisen jakauman. +INTERCEPT = LEIKKAUSPISTE ## Palauttaa lineaarisen regressiosuoran leikkauspisteen. +KURT = KURT ## Palauttaa tietoalueen vinous-arvon eli huipukkuuden. +LARGE = SUURI ## Palauttaa tietojoukon k:nneksi suurimman arvon. +LINEST = LINREGR ## Palauttaa lineaarisen trendin parametrit. +LOGEST = LOGREGR ## Palauttaa eksponentiaalisen trendin parametrit. +LOGINV = LOGNORM.JAKAUMA.KÄÄNT ## Palauttaa lognormeeratun jakauman käänteisfunktion. +LOGNORMDIST = LOGNORM.JAKAUMA ## Palauttaa lognormaalisen jakauman kertymäfunktion. +MAX = MAKS ## Palauttaa suurimman arvon argumenttiluettelosta. +MAXA = MAKSA ## Palauttaa argumenttien, mukaan lukien lukujen, tekstin ja loogisten arvojen, suurimman arvon. +MEDIAN = MEDIAANI ## Palauttaa annettujen lukujen mediaanin. +MIN = MIN ## Palauttaa pienimmän arvon argumenttiluettelosta. +MINA = MINA ## Palauttaa argumenttien, mukaan lukien lukujen, tekstin ja loogisten arvojen, pienimmän arvon. +MODE = MOODI ## Palauttaa tietojoukossa useimmin esiintyvän arvon. +NEGBINOMDIST = BINOMIJAKAUMA.NEG ## Palauttaa negatiivisen binomijakauman. +NORMDIST = NORM.JAKAUMA ## Palauttaa normaalijakauman kertymäfunktion. +NORMINV = NORM.JAKAUMA.KÄÄNT ## Palauttaa käänteisen normaalijakauman kertymäfunktion. +NORMSDIST = NORM.JAKAUMA.NORMIT ## Palauttaa normitetun normaalijakauman kertymäfunktion. +NORMSINV = NORM.JAKAUMA.NORMIT.KÄÄNT ## Palauttaa normitetun normaalijakauman kertymäfunktion käänteisarvon. +PEARSON = PEARSON ## Palauttaa Pearsonin tulomomenttikorrelaatiokertoimen. +PERCENTILE = PROSENTTIPISTE ## Palauttaa alueen arvojen k:nnen prosenttipisteen. +PERCENTRANK = PROSENTTIJÄRJESTYS ## Palauttaa tietojoukon arvon prosentuaalisen järjestysluvun. +PERMUT = PERMUTAATIO ## Palauttaa mahdollisten permutaatioiden määrän annetulle objektien määrälle. +POISSON = POISSON ## Palauttaa Poissonin todennäköisyysjakauman. +PROB = TODENNÄKÖISYYS ## Palauttaa todennäköisyyden sille, että arvot ovat tietyltä väliltä. +QUARTILE = NELJÄNNES ## Palauttaa tietoalueen neljänneksen. +RANK = ARVON.MUKAAN ## Palauttaa luvun paikan lukuarvoluettelossa. +RSQ = PEARSON.NELIÖ ## Palauttaa Pearsonin tulomomenttikorrelaatiokertoimen neliön. +SKEW = JAKAUMAN.VINOUS ## Palauttaa jakauman vinouden. +SLOPE = KULMAKERROIN ## Palauttaa lineaarisen regressiosuoran kulmakertoimen. +SMALL = PIENI ## Palauttaa tietojoukon k:nneksi pienimmän arvon. +STANDARDIZE = NORMITA ## Palauttaa normitetun arvon. +STDEV = KESKIHAJONTA ## Laskee populaation keskihajonnan otoksen perusteella. +STDEVA = KESKIHAJONTAA ## Laskee populaation keskihajonnan otoksen perusteella, mukaan lukien luvut, tekstin ja loogiset arvot. +STDEVP = KESKIHAJONTAP ## Laskee normaalijakautuman koko populaation perusteella. +STDEVPA = KESKIHAJONTAPA ## Laskee populaation keskihajonnan koko populaation perusteella, mukaan lukien luvut, tekstin ja totuusarvot. +STEYX = KESKIVIRHE ## Palauttaa regression kutakin x-arvoa vastaavan ennustetun y-arvon keskivirheen. +TDIST = TJAKAUMA ## Palauttaa t-jakautuman. +TINV = TJAKAUMA.KÄÄNT ## Palauttaa käänteisen t-jakauman. +TREND = SUUNTAUS ## Palauttaa lineaarisen trendin arvoja. +TRIMMEAN = KESKIARVO.TASATTU ## Palauttaa tietojoukon tasatun keskiarvon. +TTEST = TTESTI ## Palauttaa t-testiin liittyvän todennäköisyyden. +VAR = VAR ## Arvioi populaation varianssia otoksen perusteella. +VARA = VARA ## Laskee populaation varianssin otoksen perusteella, mukaan lukien luvut, tekstin ja loogiset arvot. +VARP = VARP ## Laskee varianssin koko populaation perusteella. +VARPA = VARPA ## Laskee populaation varianssin koko populaation perusteella, mukaan lukien luvut, tekstin ja totuusarvot. +WEIBULL = WEIBULL ## Palauttaa Weibullin jakauman. +ZTEST = ZTESTI ## Palauttaa z-testin yksisuuntaisen todennäköisyysarvon. + + +## +## Text functions Tekstifunktiot +## +ASC = ASC ## Muuntaa merkkijonossa olevat englanninkieliset DBCS- tai katakana-merkit SBCS-merkeiksi. +BAHTTEXT = BAHTTEKSTI ## Muuntaa luvun tekstiksi ß (baht) -valuuttamuotoa käyttämällä. +CHAR = MERKKI ## Palauttaa koodin lukua vastaavan merkin. +CLEAN = SIIVOA ## Poistaa tekstistä kaikki tulostumattomat merkit. +CODE = KOODI ## Palauttaa tekstimerkkijonon ensimmäisen merkin numerokoodin. +CONCATENATE = KETJUTA ## Yhdistää useat merkkijonot yhdeksi merkkijonoksi. +DOLLAR = VALUUTTA ## Muuntaa luvun tekstiksi $ (dollari) -valuuttamuotoa käyttämällä. +EXACT = VERTAA ## Tarkistaa, ovatko kaksi tekstiarvoa samanlaiset. +FIND = ETSI ## Etsii tekstiarvon toisen tekstin sisältä (tunnistaa isot ja pienet kirjaimet). +FINDB = ETSIB ## Etsii tekstiarvon toisen tekstin sisältä (tunnistaa isot ja pienet kirjaimet). +FIXED = KIINTEÄ ## Muotoilee luvun tekstiksi, jossa on kiinteä määrä desimaaleja. +JIS = JIS ## Muuntaa merkkijonossa olevat englanninkieliset SBCS- tai katakana-merkit DBCS-merkeiksi. +LEFT = VASEN ## Palauttaa tekstiarvon vasemmanpuoliset merkit. +LEFTB = VASENB ## Palauttaa tekstiarvon vasemmanpuoliset merkit. +LEN = PITUUS ## Palauttaa tekstimerkkijonon merkkien määrän. +LENB = PITUUSB ## Palauttaa tekstimerkkijonon merkkien määrän. +LOWER = PIENET ## Muuntaa tekstin pieniksi kirjaimiksi. +MID = POIMI.TEKSTI ## Palauttaa määritetyn määrän merkkejä merkkijonosta alkaen annetusta kohdasta. +MIDB = POIMI.TEKSTIB ## Palauttaa määritetyn määrän merkkejä merkkijonosta alkaen annetusta kohdasta. +PHONETIC = FONEETTINEN ## Hakee foneettiset (furigana) merkit merkkijonosta. +PROPER = ERISNIMI ## Muuttaa merkkijonon kunkin sanan ensimmäisen kirjaimen isoksi. +REPLACE = KORVAA ## Korvaa tekstissä olevat merkit. +REPLACEB = KORVAAB ## Korvaa tekstissä olevat merkit. +REPT = TOISTA ## Toistaa tekstin annetun määrän kertoja. +RIGHT = OIKEA ## Palauttaa tekstiarvon oikeanpuoliset merkit. +RIGHTB = OIKEAB ## Palauttaa tekstiarvon oikeanpuoliset merkit. +SEARCH = KÄY.LÄPI ## Etsii tekstiarvon toisen tekstin sisältä (isot ja pienet kirjaimet tulkitaan samoiksi merkeiksi). +SEARCHB = KÄY.LÄPIB ## Etsii tekstiarvon toisen tekstin sisältä (isot ja pienet kirjaimet tulkitaan samoiksi merkeiksi). +SUBSTITUTE = VAIHDA ## Korvaa merkkijonossa olevan tekstin toisella. +T = T ## Muuntaa argumentit tekstiksi. +TEXT = TEKSTI ## Muotoilee luvun ja muuntaa sen tekstiksi. +TRIM = POISTA.VÄLIT ## Poistaa välilyönnit tekstistä. +UPPER = ISOT ## Muuntaa tekstin isoiksi kirjaimiksi. +VALUE = ARVO ## Muuntaa tekstiargumentin luvuksi. diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fr/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fr/config new file mode 100644 index 0000000..1f5db88 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fr/config @@ -0,0 +1,47 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = € + + +## +## Excel Error Codes (For future use) +## +NULL = #NUL! +DIV0 = #DIV/0! +VALUE = #VALEUR! +REF = #REF! +NAME = #NOM? +NUM = #NOMBRE! +NA = #N/A diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fr/functions b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fr/functions new file mode 100644 index 0000000..03b80e5 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fr/functions @@ -0,0 +1,438 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Calculation +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## Data in this file derived from http://www.piuha.fi/excel-function-name-translation/ +## +## + + +## +## Add-in and Automation functions Fonctions de complément et d’automatisation +## +GETPIVOTDATA = LIREDONNEESTABCROISDYNAMIQUE ## Renvoie les données stockées dans un rapport de tableau croisé dynamique. + + +## +## Cube functions Fonctions Cube +## +CUBEKPIMEMBER = MEMBREKPICUBE ## Renvoie un nom, une propriété et une mesure d’indicateur de performance clé et affiche le nom et la propriété dans la cellule. Un indicateur de performance clé est une mesure quantifiable, telle que la marge bénéficiaire brute mensuelle ou la rotation trimestrielle du personnel, utilisée pour évaluer les performances d’une entreprise. +CUBEMEMBER = MEMBRECUBE ## Renvoie un membre ou un uplet dans une hiérarchie de cubes. Utilisez cette fonction pour valider l’existence du membre ou de l’uplet dans le cube. +CUBEMEMBERPROPERTY = PROPRIETEMEMBRECUBE ## Renvoie la valeur d’une propriété de membre du cube. Utilisez cette fonction pour valider l’existence d’un nom de membre dans le cube et pour renvoyer la propriété spécifiée pour ce membre. +CUBERANKEDMEMBER = RANGMEMBRECUBE ## Renvoie le nième membre ou le membre placé à un certain rang dans un ensemble. Utilisez cette fonction pour renvoyer un ou plusieurs éléments d’un ensemble, tels que les meilleurs vendeurs ou les 10 meilleurs étudiants. +CUBESET = JEUCUBE ## Définit un ensemble calculé de membres ou d’uplets en envoyant une expression définie au cube sur le serveur qui crée l’ensemble et le renvoie à Microsoft Office Excel. +CUBESETCOUNT = NBJEUCUBE ## Renvoie le nombre d’éléments dans un jeu. +CUBEVALUE = VALEURCUBE ## Renvoie une valeur d’agrégation issue d’un cube. + + +## +## Database functions Fonctions de base de données +## +DAVERAGE = BDMOYENNE ## Renvoie la moyenne des entrées de base de données sélectionnées. +DCOUNT = BCOMPTE ## Compte le nombre de cellules d’une base de données qui contiennent des nombres. +DCOUNTA = BDNBVAL ## Compte les cellules non vides d’une base de données. +DGET = BDLIRE ## Extrait d’une base de données un enregistrement unique répondant aux critères spécifiés. +DMAX = BDMAX ## Renvoie la valeur maximale des entrées de base de données sélectionnées. +DMIN = BDMIN ## Renvoie la valeur minimale des entrées de base de données sélectionnées. +DPRODUCT = BDPRODUIT ## Multiplie les valeurs d’un champ particulier des enregistrements d’une base de données, qui répondent aux critères spécifiés. +DSTDEV = BDECARTYPE ## Calcule l’écart type pour un échantillon d’entrées de base de données sélectionnées. +DSTDEVP = BDECARTYPEP ## Calcule l’écart type pour l’ensemble d’une population d’entrées de base de données sélectionnées. +DSUM = BDSOMME ## Ajoute les nombres dans la colonne de champ des enregistrements de la base de données, qui répondent aux critères. +DVAR = BDVAR ## Calcule la variance pour un échantillon d’entrées de base de données sélectionnées. +DVARP = BDVARP ## Calcule la variance pour l’ensemble d’une population d’entrées de base de données sélectionnées. + + +## +## Date and time functions Fonctions de date et d’heure +## +DATE = DATE ## Renvoie le numéro de série d’une date précise. +DATEVALUE = DATEVAL ## Convertit une date représentée sous forme de texte en numéro de série. +DAY = JOUR ## Convertit un numéro de série en jour du mois. +DAYS360 = JOURS360 ## Calcule le nombre de jours qui séparent deux dates sur la base d’une année de 360 jours. +EDATE = MOIS.DECALER ## Renvoie le numéro séquentiel de la date qui représente une date spécifiée (l’argument date_départ), corrigée en plus ou en moins du nombre de mois indiqué. +EOMONTH = FIN.MOIS ## Renvoie le numéro séquentiel de la date du dernier jour du mois précédant ou suivant la date_départ du nombre de mois indiqué. +HOUR = HEURE ## Convertit un numéro de série en heure. +MINUTE = MINUTE ## Convertit un numéro de série en minute. +MONTH = MOIS ## Convertit un numéro de série en mois. +NETWORKDAYS = NB.JOURS.OUVRES ## Renvoie le nombre de jours ouvrés entiers compris entre deux dates. +NOW = MAINTENANT ## Renvoie le numéro de série de la date et de l’heure du jour. +SECOND = SECONDE ## Convertit un numéro de série en seconde. +TIME = TEMPS ## Renvoie le numéro de série d’une heure précise. +TIMEVALUE = TEMPSVAL ## Convertit une date représentée sous forme de texte en numéro de série. +TODAY = AUJOURDHUI ## Renvoie le numéro de série de la date du jour. +WEEKDAY = JOURSEM ## Convertit un numéro de série en jour de la semaine. +WEEKNUM = NO.SEMAINE ## Convertit un numéro de série en un numéro représentant l’ordre de la semaine dans l’année. +WORKDAY = SERIE.JOUR.OUVRE ## Renvoie le numéro de série de la date avant ou après le nombre de jours ouvrés spécifiés. +YEAR = ANNEE ## Convertit un numéro de série en année. +YEARFRAC = FRACTION.ANNEE ## Renvoie la fraction de l’année représentant le nombre de jours entre la date de début et la date de fin. + + +## +## Engineering functions Fonctions d’ingénierie +## +BESSELI = BESSELI ## Renvoie la fonction Bessel modifiée In(x). +BESSELJ = BESSELJ ## Renvoie la fonction Bessel Jn(x). +BESSELK = BESSELK ## Renvoie la fonction Bessel modifiée Kn(x). +BESSELY = BESSELY ## Renvoie la fonction Bessel Yn(x). +BIN2DEC = BINDEC ## Convertit un nombre binaire en nombre décimal. +BIN2HEX = BINHEX ## Convertit un nombre binaire en nombre hexadécimal. +BIN2OCT = BINOCT ## Convertit un nombre binaire en nombre octal. +COMPLEX = COMPLEXE ## Convertit des coefficients réel et imaginaire en un nombre complexe. +CONVERT = CONVERT ## Convertit un nombre d’une unité de mesure à une autre. +DEC2BIN = DECBIN ## Convertit un nombre décimal en nombre binaire. +DEC2HEX = DECHEX ## Convertit un nombre décimal en nombre hexadécimal. +DEC2OCT = DECOCT ## Convertit un nombre décimal en nombre octal. +DELTA = DELTA ## Teste l’égalité de deux nombres. +ERF = ERF ## Renvoie la valeur de la fonction d’erreur. +ERFC = ERFC ## Renvoie la valeur de la fonction d’erreur complémentaire. +GESTEP = SUP.SEUIL ## Teste si un nombre est supérieur à une valeur de seuil. +HEX2BIN = HEXBIN ## Convertit un nombre hexadécimal en nombre binaire. +HEX2DEC = HEXDEC ## Convertit un nombre hexadécimal en nombre décimal. +HEX2OCT = HEXOCT ## Convertit un nombre hexadécimal en nombre octal. +IMABS = COMPLEXE.MODULE ## Renvoie la valeur absolue (module) d’un nombre complexe. +IMAGINARY = COMPLEXE.IMAGINAIRE ## Renvoie le coefficient imaginaire d’un nombre complexe. +IMARGUMENT = COMPLEXE.ARGUMENT ## Renvoie l’argument thêta, un angle exprimé en radians. +IMCONJUGATE = COMPLEXE.CONJUGUE ## Renvoie le nombre complexe conjugué d’un nombre complexe. +IMCOS = IMCOS ## Renvoie le cosinus d’un nombre complexe. +IMDIV = COMPLEXE.DIV ## Renvoie le quotient de deux nombres complexes. +IMEXP = COMPLEXE.EXP ## Renvoie la fonction exponentielle d’un nombre complexe. +IMLN = COMPLEXE.LN ## Renvoie le logarithme népérien d’un nombre complexe. +IMLOG10 = COMPLEXE.LOG10 ## Calcule le logarithme en base 10 d’un nombre complexe. +IMLOG2 = COMPLEXE.LOG2 ## Calcule le logarithme en base 2 d’un nombre complexe. +IMPOWER = COMPLEXE.PUISSANCE ## Renvoie un nombre complexe élevé à une puissance entière. +IMPRODUCT = COMPLEXE.PRODUIT ## Renvoie le produit de plusieurs nombres complexes. +IMREAL = COMPLEXE.REEL ## Renvoie le coefficient réel d’un nombre complexe. +IMSIN = COMPLEXE.SIN ## Renvoie le sinus d’un nombre complexe. +IMSQRT = COMPLEXE.RACINE ## Renvoie la racine carrée d’un nombre complexe. +IMSUB = COMPLEXE.DIFFERENCE ## Renvoie la différence entre deux nombres complexes. +IMSUM = COMPLEXE.SOMME ## Renvoie la somme de plusieurs nombres complexes. +OCT2BIN = OCTBIN ## Convertit un nombre octal en nombre binaire. +OCT2DEC = OCTDEC ## Convertit un nombre octal en nombre décimal. +OCT2HEX = OCTHEX ## Convertit un nombre octal en nombre hexadécimal. + + +## +## Financial functions Fonctions financières +## +ACCRINT = INTERET.ACC ## Renvoie l’intérêt couru non échu d’un titre dont l’intérêt est perçu périodiquement. +ACCRINTM = INTERET.ACC.MAT ## Renvoie l’intérêt couru non échu d’un titre dont l’intérêt est perçu à l’échéance. +AMORDEGRC = AMORDEGRC ## Renvoie l’amortissement correspondant à chaque période comptable en utilisant un coefficient d’amortissement. +AMORLINC = AMORLINC ## Renvoie l’amortissement d’un bien à la fin d’une période fiscale donnée. +COUPDAYBS = NB.JOURS.COUPON.PREC ## Renvoie le nombre de jours entre le début de la période de coupon et la date de liquidation. +COUPDAYS = NB.JOURS.COUPONS ## Renvoie le nombre de jours pour la période du coupon contenant la date de liquidation. +COUPDAYSNC = NB.JOURS.COUPON.SUIV ## Renvoie le nombre de jours entre la date de liquidation et la date du coupon suivant la date de liquidation. +COUPNCD = DATE.COUPON.SUIV ## Renvoie la première date de coupon ultérieure à la date de règlement. +COUPNUM = NB.COUPONS ## Renvoie le nombre de coupons dus entre la date de règlement et la date d’échéance. +COUPPCD = DATE.COUPON.PREC ## Renvoie la date de coupon précédant la date de règlement. +CUMIPMT = CUMUL.INTER ## Renvoie l’intérêt cumulé payé sur un emprunt entre deux périodes. +CUMPRINC = CUMUL.PRINCPER ## Renvoie le montant cumulé des remboursements du capital d’un emprunt effectués entre deux périodes. +DB = DB ## Renvoie l’amortissement d’un bien pour une période spécifiée en utilisant la méthode de l’amortissement dégressif à taux fixe. +DDB = DDB ## Renvoie l’amortissement d’un bien pour toute période spécifiée, en utilisant la méthode de l’amortissement dégressif à taux double ou selon un coefficient à spécifier. +DISC = TAUX.ESCOMPTE ## Calcule le taux d’escompte d’une transaction. +DOLLARDE = PRIX.DEC ## Convertit un prix en euros, exprimé sous forme de fraction, en un prix en euros exprimé sous forme de nombre décimal. +DOLLARFR = PRIX.FRAC ## Convertit un prix en euros, exprimé sous forme de nombre décimal, en un prix en euros exprimé sous forme de fraction. +DURATION = DUREE ## Renvoie la durée, en années, d’un titre dont l’intérêt est perçu périodiquement. +EFFECT = TAUX.EFFECTIF ## Renvoie le taux d’intérêt annuel effectif. +FV = VC ## Renvoie la valeur future d’un investissement. +FVSCHEDULE = VC.PAIEMENTS ## Calcule la valeur future d’un investissement en appliquant une série de taux d’intérêt composites. +INTRATE = TAUX.INTERET ## Affiche le taux d’intérêt d’un titre totalement investi. +IPMT = INTPER ## Calcule le montant des intérêts d’un investissement pour une période donnée. +IRR = TRI ## Calcule le taux de rentabilité interne d’un investissement pour une succession de trésoreries. +ISPMT = ISPMT ## Calcule le montant des intérêts d’un investissement pour une période donnée. +MDURATION = DUREE.MODIFIEE ## Renvoie la durée de Macauley modifiée pour un titre ayant une valeur nominale hypothétique de 100_euros. +MIRR = TRIM ## Calcule le taux de rentabilité interne lorsque les paiements positifs et négatifs sont financés à des taux différents. +NOMINAL = TAUX.NOMINAL ## Calcule le taux d’intérêt nominal annuel. +NPER = NPM ## Renvoie le nombre de versements nécessaires pour rembourser un emprunt. +NPV = VAN ## Calcule la valeur actuelle nette d’un investissement basé sur une série de décaissements et un taux d’escompte. +ODDFPRICE = PRIX.PCOUPON.IRREG ## Renvoie le prix par tranche de valeur nominale de 100 euros d’un titre dont la première période de coupon est irrégulière. +ODDFYIELD = REND.PCOUPON.IRREG ## Renvoie le taux de rendement d’un titre dont la première période de coupon est irrégulière. +ODDLPRICE = PRIX.DCOUPON.IRREG ## Renvoie le prix par tranche de valeur nominale de 100 euros d’un titre dont la première période de coupon est irrégulière. +ODDLYIELD = REND.DCOUPON.IRREG ## Renvoie le taux de rendement d’un titre dont la dernière période de coupon est irrégulière. +PMT = VPM ## Calcule le paiement périodique d’un investissement donné. +PPMT = PRINCPER ## Calcule, pour une période donnée, la part de remboursement du principal d’un investissement. +PRICE = PRIX.TITRE ## Renvoie le prix d’un titre rapportant des intérêts périodiques, pour une valeur nominale de 100 euros. +PRICEDISC = VALEUR.ENCAISSEMENT ## Renvoie la valeur d’encaissement d’un escompte commercial, pour une valeur nominale de 100 euros. +PRICEMAT = PRIX.TITRE.ECHEANCE ## Renvoie le prix d’un titre dont la valeur nominale est 100 euros et qui rapporte des intérêts à l’échéance. +PV = PV ## Calcule la valeur actuelle d’un investissement. +RATE = TAUX ## Calcule le taux d’intérêt par période pour une annuité. +RECEIVED = VALEUR.NOMINALE ## Renvoie la valeur nominale à échéance d’un effet de commerce. +SLN = AMORLIN ## Calcule l’amortissement linéaire d’un bien pour une période donnée. +SYD = SYD ## Calcule l’amortissement d’un bien pour une période donnée sur la base de la méthode américaine Sum-of-Years Digits (amortissement dégressif à taux décroissant appliqué à une valeur constante). +TBILLEQ = TAUX.ESCOMPTE.R ## Renvoie le taux d’escompte rationnel d’un bon du Trésor. +TBILLPRICE = PRIX.BON.TRESOR ## Renvoie le prix d’un bon du Trésor d’une valeur nominale de 100 euros. +TBILLYIELD = RENDEMENT.BON.TRESOR ## Calcule le taux de rendement d’un bon du Trésor. +VDB = VDB ## Renvoie l’amortissement d’un bien pour une période spécifiée ou partielle en utilisant une méthode de l’amortissement dégressif à taux fixe. +XIRR = TRI.PAIEMENTS ## Calcule le taux de rentabilité interne d’un ensemble de paiements non périodiques. +XNPV = VAN.PAIEMENTS ## Renvoie la valeur actuelle nette d’un ensemble de paiements non périodiques. +YIELD = RENDEMENT.TITRE ## Calcule le rendement d’un titre rapportant des intérêts périodiquement. +YIELDDISC = RENDEMENT.SIMPLE ## Calcule le taux de rendement d’un emprunt à intérêt simple (par exemple, un bon du Trésor). +YIELDMAT = RENDEMENT.TITRE.ECHEANCE ## Renvoie le rendement annuel d’un titre qui rapporte des intérêts à l’échéance. + + +## +## Information functions Fonctions d’information +## +CELL = CELLULE ## Renvoie des informations sur la mise en forme, l’emplacement et le contenu d’une cellule. +ERROR.TYPE = TYPE.ERREUR ## Renvoie un nombre correspondant à un type d’erreur. +INFO = INFORMATIONS ## Renvoie des informations sur l’environnement d’exploitation actuel. +ISBLANK = ESTVIDE ## Renvoie VRAI si l’argument valeur est vide. +ISERR = ESTERR ## Renvoie VRAI si l’argument valeur fait référence à une valeur d’erreur, sauf #N/A. +ISERROR = ESTERREUR ## Renvoie VRAI si l’argument valeur fait référence à une valeur d’erreur. +ISEVEN = EST.PAIR ## Renvoie VRAI si le chiffre est pair. +ISLOGICAL = ESTLOGIQUE ## Renvoie VRAI si l’argument valeur fait référence à une valeur logique. +ISNA = ESTNA ## Renvoie VRAI si l’argument valeur fait référence à la valeur d’erreur #N/A. +ISNONTEXT = ESTNONTEXTE ## Renvoie VRAI si l’argument valeur ne se présente pas sous forme de texte. +ISNUMBER = ESTNUM ## Renvoie VRAI si l’argument valeur représente un nombre. +ISODD = EST.IMPAIR ## Renvoie VRAI si le chiffre est impair. +ISREF = ESTREF ## Renvoie VRAI si l’argument valeur est une référence. +ISTEXT = ESTTEXTE ## Renvoie VRAI si l’argument valeur se présente sous forme de texte. +N = N ## Renvoie une valeur convertie en nombre. +NA = NA ## Renvoie la valeur d’erreur #N/A. +TYPE = TYPE ## Renvoie un nombre indiquant le type de données d’une valeur. + + +## +## Logical functions Fonctions logiques +## +AND = ET ## Renvoie VRAI si tous ses arguments sont VRAI. +FALSE = FAUX ## Renvoie la valeur logique FAUX. +IF = SI ## Spécifie un test logique à effectuer. +IFERROR = SIERREUR ## Renvoie une valeur que vous spécifiez si une formule génère une erreur ; sinon, elle renvoie le résultat de la formule. +NOT = NON ## Inverse la logique de cet argument. +OR = OU ## Renvoie VRAI si un des arguments est VRAI. +TRUE = VRAI ## Renvoie la valeur logique VRAI. + + +## +## Lookup and reference functions Fonctions de recherche et de référence +## +ADDRESS = ADRESSE ## Renvoie une référence sous forme de texte à une seule cellule d’une feuille de calcul. +AREAS = ZONES ## Renvoie le nombre de zones dans une référence. +CHOOSE = CHOISIR ## Choisit une valeur dans une liste. +COLUMN = COLONNE ## Renvoie le numéro de colonne d’une référence. +COLUMNS = COLONNES ## Renvoie le nombre de colonnes dans une référence. +HLOOKUP = RECHERCHEH ## Effectue une recherche dans la première ligne d’une matrice et renvoie la valeur de la cellule indiquée. +HYPERLINK = LIEN_HYPERTEXTE ## Crée un raccourci ou un renvoi qui ouvre un document stocké sur un serveur réseau, sur un réseau Intranet ou sur Internet. +INDEX = INDEX ## Utilise un index pour choisir une valeur provenant d’une référence ou d’une matrice. +INDIRECT = INDIRECT ## Renvoie une référence indiquée par une valeur de texte. +LOOKUP = RECHERCHE ## Recherche des valeurs dans un vecteur ou une matrice. +MATCH = EQUIV ## Recherche des valeurs dans une référence ou une matrice. +OFFSET = DECALER ## Renvoie une référence décalée par rapport à une référence donnée. +ROW = LIGNE ## Renvoie le numéro de ligne d’une référence. +ROWS = LIGNES ## Renvoie le nombre de lignes dans une référence. +RTD = RTD ## Extrait les données en temps réel à partir d’un programme prenant en charge l’automation COM (Automation : utilisation des objets d'une application à partir d'une autre application ou d'un autre outil de développement. Autrefois appelée OLE Automation, Automation est une norme industrielle et une fonctionnalité du modèle d'objet COM (Component Object Model).). +TRANSPOSE = TRANSPOSE ## Renvoie la transposition d’une matrice. +VLOOKUP = RECHERCHEV ## Effectue une recherche dans la première colonne d’une matrice et se déplace sur la ligne pour renvoyer la valeur d’une cellule. + + +## +## Math and trigonometry functions Fonctions mathématiques et trigonométriques +## +ABS = ABS ## Renvoie la valeur absolue d’un nombre. +ACOS = ACOS ## Renvoie l’arccosinus d’un nombre. +ACOSH = ACOSH ## Renvoie le cosinus hyperbolique inverse d’un nombre. +ASIN = ASIN ## Renvoie l’arcsinus d’un nombre. +ASINH = ASINH ## Renvoie le sinus hyperbolique inverse d’un nombre. +ATAN = ATAN ## Renvoie l’arctangente d’un nombre. +ATAN2 = ATAN2 ## Renvoie l’arctangente des coordonnées x et y. +ATANH = ATANH ## Renvoie la tangente hyperbolique inverse d’un nombre. +CEILING = PLAFOND ## Arrondit un nombre au nombre entier le plus proche ou au multiple le plus proche de l’argument précision en s’éloignant de zéro. +COMBIN = COMBIN ## Renvoie le nombre de combinaisons que l’on peut former avec un nombre donné d’objets. +COS = COS ## Renvoie le cosinus d’un nombre. +COSH = COSH ## Renvoie le cosinus hyperbolique d’un nombre. +DEGREES = DEGRES ## Convertit des radians en degrés. +EVEN = PAIR ## Arrondit un nombre au nombre entier pair le plus proche en s’éloignant de zéro. +EXP = EXP ## Renvoie e élevé à la puissance d’un nombre donné. +FACT = FACT ## Renvoie la factorielle d’un nombre. +FACTDOUBLE = FACTDOUBLE ## Renvoie la factorielle double d’un nombre. +FLOOR = PLANCHER ## Arrondit un nombre en tendant vers 0 (zéro). +GCD = PGCD ## Renvoie le plus grand commun diviseur. +INT = ENT ## Arrondit un nombre à l’entier immédiatement inférieur. +LCM = PPCM ## Renvoie le plus petit commun multiple. +LN = LN ## Renvoie le logarithme népérien d’un nombre. +LOG = LOG ## Renvoie le logarithme d’un nombre dans la base spécifiée. +LOG10 = LOG10 ## Calcule le logarithme en base 10 d’un nombre. +MDETERM = DETERMAT ## Renvoie le déterminant d’une matrice. +MINVERSE = INVERSEMAT ## Renvoie la matrice inverse d’une matrice. +MMULT = PRODUITMAT ## Renvoie le produit de deux matrices. +MOD = MOD ## Renvoie le reste d’une division. +MROUND = ARRONDI.AU.MULTIPLE ## Donne l’arrondi d’un nombre au multiple spécifié. +MULTINOMIAL = MULTINOMIALE ## Calcule la multinomiale d’un ensemble de nombres. +ODD = IMPAIR ## Renvoie le nombre, arrondi à la valeur du nombre entier impair le plus proche en s’éloignant de zéro. +PI = PI ## Renvoie la valeur de pi. +POWER = PUISSANCE ## Renvoie la valeur du nombre élevé à une puissance. +PRODUCT = PRODUIT ## Multiplie ses arguments. +QUOTIENT = QUOTIENT ## Renvoie la partie entière du résultat d’une division. +RADIANS = RADIANS ## Convertit des degrés en radians. +RAND = ALEA ## Renvoie un nombre aléatoire compris entre 0 et 1. +RANDBETWEEN = ALEA.ENTRE.BORNES ## Renvoie un nombre aléatoire entre les nombres que vous spécifiez. +ROMAN = ROMAIN ## Convertit des chiffres arabes en chiffres romains, sous forme de texte. +ROUND = ARRONDI ## Arrondit un nombre au nombre de chiffres indiqué. +ROUNDDOWN = ARRONDI.INF ## Arrondit un nombre en tendant vers 0 (zéro). +ROUNDUP = ARRONDI.SUP ## Arrondit un nombre à l’entier supérieur, en s’éloignant de zéro. +SERIESSUM = SOMME.SERIES ## Renvoie la somme d’une série géométrique en s’appuyant sur la formule suivante : +SIGN = SIGNE ## Renvoie le signe d’un nombre. +SIN = SIN ## Renvoie le sinus d’un angle donné. +SINH = SINH ## Renvoie le sinus hyperbolique d’un nombre. +SQRT = RACINE ## Renvoie la racine carrée d’un nombre. +SQRTPI = RACINE.PI ## Renvoie la racine carrée de (nombre * pi). +SUBTOTAL = SOUS.TOTAL ## Renvoie un sous-total dans une liste ou une base de données. +SUM = SOMME ## Calcule la somme de ses arguments. +SUMIF = SOMME.SI ## Additionne les cellules spécifiées si elles répondent à un critère donné. +SUMIFS = SOMME.SI.ENS ## Ajoute les cellules d’une plage qui répondent à plusieurs critères. +SUMPRODUCT = SOMMEPROD ## Multiplie les valeurs correspondantes des matrices spécifiées et calcule la somme de ces produits. +SUMSQ = SOMME.CARRES ## Renvoie la somme des carrés des arguments. +SUMX2MY2 = SOMME.X2MY2 ## Renvoie la somme de la différence des carrés des valeurs correspondantes de deux matrices. +SUMX2PY2 = SOMME.X2PY2 ## Renvoie la somme de la somme des carrés des valeurs correspondantes de deux matrices. +SUMXMY2 = SOMME.XMY2 ## Renvoie la somme des carrés des différences entre les valeurs correspondantes de deux matrices. +TAN = TAN ## Renvoie la tangente d’un nombre. +TANH = TANH ## Renvoie la tangente hyperbolique d’un nombre. +TRUNC = TRONQUE ## Renvoie la partie entière d’un nombre. + + +## +## Statistical functions Fonctions statistiques +## +AVEDEV = ECART.MOYEN ## Renvoie la moyenne des écarts absolus observés dans la moyenne des points de données. +AVERAGE = MOYENNE ## Renvoie la moyenne de ses arguments. +AVERAGEA = AVERAGEA ## Renvoie la moyenne de ses arguments, nombres, texte et valeurs logiques inclus. +AVERAGEIF = MOYENNE.SI ## Renvoie la moyenne (arithmétique) de toutes les cellules d’une plage qui répondent à des critères donnés. +AVERAGEIFS = MOYENNE.SI.ENS ## Renvoie la moyenne (arithmétique) de toutes les cellules qui répondent à plusieurs critères. +BETADIST = LOI.BETA ## Renvoie la fonction de distribution cumulée. +BETAINV = BETA.INVERSE ## Renvoie l’inverse de la fonction de distribution cumulée pour une distribution bêta spécifiée. +BINOMDIST = LOI.BINOMIALE ## Renvoie la probabilité d’une variable aléatoire discrète suivant la loi binomiale. +CHIDIST = LOI.KHIDEUX ## Renvoie la probabilité unilatérale de la distribution khi-deux. +CHIINV = KHIDEUX.INVERSE ## Renvoie l’inverse de la probabilité unilatérale de la distribution khi-deux. +CHITEST = TEST.KHIDEUX ## Renvoie le test d’indépendance. +CONFIDENCE = INTERVALLE.CONFIANCE ## Renvoie l’intervalle de confiance pour une moyenne de population. +CORREL = COEFFICIENT.CORRELATION ## Renvoie le coefficient de corrélation entre deux séries de données. +COUNT = NB ## Détermine les nombres compris dans la liste des arguments. +COUNTA = NBVAL ## Détermine le nombre de valeurs comprises dans la liste des arguments. +COUNTBLANK = NB.VIDE ## Compte le nombre de cellules vides dans une plage. +COUNTIF = NB.SI ## Compte le nombre de cellules qui répondent à un critère donné dans une plage. +COUNTIFS = NB.SI.ENS ## Compte le nombre de cellules à l’intérieur d’une plage qui répondent à plusieurs critères. +COVAR = COVARIANCE ## Renvoie la covariance, moyenne des produits des écarts pour chaque série d’observations. +CRITBINOM = CRITERE.LOI.BINOMIALE ## Renvoie la plus petite valeur pour laquelle la distribution binomiale cumulée est inférieure ou égale à une valeur de critère. +DEVSQ = SOMME.CARRES.ECARTS ## Renvoie la somme des carrés des écarts. +EXPONDIST = LOI.EXPONENTIELLE ## Renvoie la distribution exponentielle. +FDIST = LOI.F ## Renvoie la distribution de probabilité F. +FINV = INVERSE.LOI.F ## Renvoie l’inverse de la distribution de probabilité F. +FISHER = FISHER ## Renvoie la transformation de Fisher. +FISHERINV = FISHER.INVERSE ## Renvoie l’inverse de la transformation de Fisher. +FORECAST = PREVISION ## Calcule une valeur par rapport à une tendance linéaire. +FREQUENCY = FREQUENCE ## Calcule la fréquence d’apparition des valeurs dans une plage de valeurs, puis renvoie des nombres sous forme de matrice verticale. +FTEST = TEST.F ## Renvoie le résultat d’un test F. +GAMMADIST = LOI.GAMMA ## Renvoie la probabilité d’une variable aléatoire suivant une loi Gamma. +GAMMAINV = LOI.GAMMA.INVERSE ## Renvoie, pour une probabilité donnée, la valeur d’une variable aléatoire suivant une loi Gamma. +GAMMALN = LNGAMMA ## Renvoie le logarithme népérien de la fonction Gamma, G(x) +GEOMEAN = MOYENNE.GEOMETRIQUE ## Renvoie la moyenne géométrique. +GROWTH = CROISSANCE ## Calcule des valeurs par rapport à une tendance exponentielle. +HARMEAN = MOYENNE.HARMONIQUE ## Renvoie la moyenne harmonique. +HYPGEOMDIST = LOI.HYPERGEOMETRIQUE ## Renvoie la probabilité d’une variable aléatoire discrète suivant une loi hypergéométrique. +INTERCEPT = ORDONNEE.ORIGINE ## Renvoie l’ordonnée à l’origine d’une droite de régression linéaire. +KURT = KURTOSIS ## Renvoie le kurtosis d’une série de données. +LARGE = GRANDE.VALEUR ## Renvoie la k-ième plus grande valeur d’une série de données. +LINEST = DROITEREG ## Renvoie les paramètres d’une tendance linéaire. +LOGEST = LOGREG ## Renvoie les paramètres d’une tendance exponentielle. +LOGINV = LOI.LOGNORMALE.INVERSE ## Renvoie l’inverse de la probabilité pour une variable aléatoire suivant la loi lognormale. +LOGNORMDIST = LOI.LOGNORMALE ## Renvoie la probabilité d’une variable aléatoire continue suivant une loi lognormale. +MAX = MAX ## Renvoie la valeur maximale contenue dans une liste d’arguments. +MAXA = MAXA ## Renvoie la valeur maximale d’une liste d’arguments, nombres, texte et valeurs logiques inclus. +MEDIAN = MEDIANE ## Renvoie la valeur médiane des nombres donnés. +MIN = MIN ## Renvoie la valeur minimale contenue dans une liste d’arguments. +MINA = MINA ## Renvoie la plus petite valeur d’une liste d’arguments, nombres, texte et valeurs logiques inclus. +MODE = MODE ## Renvoie la valeur la plus courante d’une série de données. +NEGBINOMDIST = LOI.BINOMIALE.NEG ## Renvoie la probabilité d’une variable aléatoire discrète suivant une loi binomiale négative. +NORMDIST = LOI.NORMALE ## Renvoie la probabilité d’une variable aléatoire continue suivant une loi normale. +NORMINV = LOI.NORMALE.INVERSE ## Renvoie, pour une probabilité donnée, la valeur d’une variable aléatoire suivant une loi normale standard. +NORMSDIST = LOI.NORMALE.STANDARD ## Renvoie la probabilité d’une variable aléatoire continue suivant une loi normale standard. +NORMSINV = LOI.NORMALE.STANDARD.INVERSE ## Renvoie l’inverse de la distribution cumulée normale standard. +PEARSON = PEARSON ## Renvoie le coefficient de corrélation d’échantillonnage de Pearson. +PERCENTILE = CENTILE ## Renvoie le k-ième centile des valeurs d’une plage. +PERCENTRANK = RANG.POURCENTAGE ## Renvoie le rang en pourcentage d’une valeur d’une série de données. +PERMUT = PERMUTATION ## Renvoie le nombre de permutations pour un nombre donné d’objets. +POISSON = LOI.POISSON ## Renvoie la probabilité d’une variable aléatoire suivant une loi de Poisson. +PROB = PROBABILITE ## Renvoie la probabilité que des valeurs d’une plage soient comprises entre deux limites. +QUARTILE = QUARTILE ## Renvoie le quartile d’une série de données. +RANK = RANG ## Renvoie le rang d’un nombre contenu dans une liste. +RSQ = COEFFICIENT.DETERMINATION ## Renvoie la valeur du coefficient de détermination R^2 d’une régression linéaire. +SKEW = COEFFICIENT.ASYMETRIE ## Renvoie l’asymétrie d’une distribution. +SLOPE = PENTE ## Renvoie la pente d’une droite de régression linéaire. +SMALL = PETITE.VALEUR ## Renvoie la k-ième plus petite valeur d’une série de données. +STANDARDIZE = CENTREE.REDUITE ## Renvoie une valeur centrée réduite. +STDEV = ECARTYPE ## Évalue l’écart type d’une population en se basant sur un échantillon de cette population. +STDEVA = STDEVA ## Évalue l’écart type d’une population en se basant sur un échantillon de cette population, nombres, texte et valeurs logiques inclus. +STDEVP = ECARTYPEP ## Calcule l’écart type d’une population à partir de la population entière. +STDEVPA = STDEVPA ## Calcule l’écart type d’une population à partir de l’ensemble de la population, nombres, texte et valeurs logiques inclus. +STEYX = ERREUR.TYPE.XY ## Renvoie l’erreur type de la valeur y prévue pour chaque x de la régression. +TDIST = LOI.STUDENT ## Renvoie la probabilité d’une variable aléatoire suivant une loi T de Student. +TINV = LOI.STUDENT.INVERSE ## Renvoie, pour une probabilité donnée, la valeur d’une variable aléatoire suivant une loi T de Student. +TREND = TENDANCE ## Renvoie des valeurs par rapport à une tendance linéaire. +TRIMMEAN = MOYENNE.REDUITE ## Renvoie la moyenne de l’intérieur d’une série de données. +TTEST = TEST.STUDENT ## Renvoie la probabilité associée à un test T de Student. +VAR = VAR ## Calcule la variance sur la base d’un échantillon. +VARA = VARA ## Estime la variance d’une population en se basant sur un échantillon de cette population, nombres, texte et valeurs logiques incluses. +VARP = VAR.P ## Calcule la variance sur la base de l’ensemble de la population. +VARPA = VARPA ## Calcule la variance d’une population en se basant sur la population entière, nombres, texte et valeurs logiques inclus. +WEIBULL = LOI.WEIBULL ## Renvoie la probabilité d’une variable aléatoire suivant une loi de Weibull. +ZTEST = TEST.Z ## Renvoie la valeur de probabilité unilatérale d’un test z. + + +## +## Text functions Fonctions de texte +## +ASC = ASC ## Change les caractères anglais ou katakana à pleine chasse (codés sur deux octets) à l’intérieur d’une chaîne de caractères en caractères à demi-chasse (codés sur un octet). +BAHTTEXT = BAHTTEXT ## Convertit un nombre en texte en utilisant le format monétaire ß (baht). +CHAR = CAR ## Renvoie le caractère spécifié par le code numérique. +CLEAN = EPURAGE ## Supprime tous les caractères de contrôle du texte. +CODE = CODE ## Renvoie le numéro de code du premier caractère du texte. +CONCATENATE = CONCATENER ## Assemble plusieurs éléments textuels de façon à n’en former qu’un seul. +DOLLAR = EURO ## Convertit un nombre en texte en utilisant le format monétaire € (euro). +EXACT = EXACT ## Vérifie si deux valeurs de texte sont identiques. +FIND = TROUVE ## Trouve un valeur textuelle dans une autre, en respectant la casse. +FINDB = TROUVERB ## Trouve un valeur textuelle dans une autre, en respectant la casse. +FIXED = CTXT ## Convertit un nombre au format texte avec un nombre de décimales spécifié. +JIS = JIS ## Change les caractères anglais ou katakana à demi-chasse (codés sur un octet) à l’intérieur d’une chaîne de caractères en caractères à à pleine chasse (codés sur deux octets). +LEFT = GAUCHE ## Renvoie des caractères situés à l’extrême gauche d’une chaîne de caractères. +LEFTB = GAUCHEB ## Renvoie des caractères situés à l’extrême gauche d’une chaîne de caractères. +LEN = NBCAR ## Renvoie le nombre de caractères contenus dans une chaîne de texte. +LENB = LENB ## Renvoie le nombre de caractères contenus dans une chaîne de texte. +LOWER = MINUSCULE ## Convertit le texte en minuscules. +MID = STXT ## Renvoie un nombre déterminé de caractères d’une chaîne de texte à partir de la position que vous indiquez. +MIDB = STXTB ## Renvoie un nombre déterminé de caractères d’une chaîne de texte à partir de la position que vous indiquez. +PHONETIC = PHONETIQUE ## Extrait les caractères phonétiques (furigana) d’une chaîne de texte. +PROPER = NOMPROPRE ## Met en majuscules la première lettre de chaque mot dans une chaîne textuelle. +REPLACE = REMPLACER ## Remplace des caractères dans un texte. +REPLACEB = REMPLACERB ## Remplace des caractères dans un texte. +REPT = REPT ## Répète un texte un certain nombre de fois. +RIGHT = DROITE ## Renvoie des caractères situés à l’extrême droite d’une chaîne de caractères. +RIGHTB = DROITEB ## Renvoie des caractères situés à l’extrême droite d’une chaîne de caractères. +SEARCH = CHERCHE ## Trouve un texte dans un autre texte (sans respecter la casse). +SEARCHB = CHERCHERB ## Trouve un texte dans un autre texte (sans respecter la casse). +SUBSTITUTE = SUBSTITUE ## Remplace l’ancien texte d’une chaîne de caractères par un nouveau. +T = T ## Convertit ses arguments en texte. +TEXT = TEXTE ## Convertit un nombre au format texte. +TRIM = SUPPRESPACE ## Supprime les espaces du texte. +UPPER = MAJUSCULE ## Convertit le texte en majuscules. +VALUE = CNUM ## Convertit un argument textuel en nombre diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/hu/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/hu/config new file mode 100644 index 0000000..080b201 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/hu/config @@ -0,0 +1,47 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = Ft + + +## +## Excel Error Codes (For future use) +## +NULL = #NULLA! +DIV0 = #ZÉRÓOSZTÓ! +VALUE = #ÉRTÉK! +REF = #HIV! +NAME = #NÉV? +NUM = #SZÃM! +NA = #HIÃNYZIK diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/hu/functions b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/hu/functions new file mode 100644 index 0000000..200d3f7 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/hu/functions @@ -0,0 +1,438 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Calculation +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## Data in this file derived from http://www.piuha.fi/excel-function-name-translation/ +## +## + + +## +## Add-in and Automation functions BÅ‘vítmények és automatizálási függvények +## +GETPIVOTDATA = KIMUTATÃSADATOT.VESZ ## A kimutatásokban tárolt adatok visszaadására használható. + + +## +## Cube functions Kockafüggvények +## +CUBEKPIMEMBER = KOCKA.FÅTELJMUT ## Egy fÅ‘ teljesítménymutató (KPI) nevét, tulajdonságát és mértékegységét adja eredményül, a nevet és a tulajdonságot megjeleníti a cellában. A KPI-k számszerűsíthetÅ‘ mérési lehetÅ‘séget jelentenek – ilyen mutató például a havi bruttó nyereség vagy az egy alkalmazottra jutó negyedéves forgalom –, egy szervezet teljesítményének nyomonkövetésére használhatók. +CUBEMEMBER = KOCKA.TAG ## Kockahierachia tagját vagy rekordját adja eredményül. EllenÅ‘rizhetÅ‘ vele, hogy szerepel-e a kockában az adott tag vagy rekord. +CUBEMEMBERPROPERTY = KOCKA.TAG.TUL ## A kocka egyik tagtulajdonságának értékét adja eredményül. Használatával ellenÅ‘rizhetÅ‘, hogy szerepel-e egy tagnév a kockában, eredménye pedig az erre a tagra vonatkozó, megadott tulajdonság. +CUBERANKEDMEMBER = KOCKA.HALM.ELEM ## Egy halmaz rangsor szerinti n-edik tagját adja eredményül. Használatával egy halmaz egy vagy több elemét kaphatja meg, például a legnagyobb teljesítményű üzletkötÅ‘t vagy a 10 legjobb tanulót. +CUBESET = KOCKA.HALM ## Számított tagok vagy rekordok halmazát adja eredményül, ehhez egy beállított kifejezést elküld a kiszolgálón található kockának, majd ezt a halmazt adja vissza a Microsoft Office Excel alkalmazásnak. +CUBESETCOUNT = KOCKA.HALM.DB ## Egy halmaz elemszámát adja eredményül. +CUBEVALUE = KOCKA.ÉRTÉK ## Kockából összesített értéket ad eredményül. + + +## +## Database functions Adatbázis-kezelÅ‘ függvények +## +DAVERAGE = AB.ÃTLAG ## A kijelölt adatbáziselemek átlagát számítja ki. +DCOUNT = AB.DARAB ## Megszámolja, hogy az adatbázisban hány cella tartalmaz számokat. +DCOUNTA = AB.DARAB2 ## Megszámolja az adatbázisban lévÅ‘ nem üres cellákat. +DGET = AB.MEZÅ ## Egy adatbázisból egyetlen olyan rekordot ad vissza, amely megfelel a megadott feltételeknek. +DMAX = AB.MAX ## A kiválasztott adatbáziselemek közül a legnagyobb értéket adja eredményül. +DMIN = AB.MIN ## A kijelölt adatbáziselemek közül a legkisebb értéket adja eredményül. +DPRODUCT = AB.SZORZAT ## Az adatbázis megadott feltételeknek eleget tevÅ‘ rekordjaira összeszorozza a megadott mezÅ‘ben található számértékeket, és eredményül ezt a szorzatot adja. +DSTDEV = AB.SZÓRÃS ## A kijelölt adatbáziselemek egy mintája alapján megbecsüli a szórást. +DSTDEVP = AB.SZÓRÃS2 ## A kijelölt adatbáziselemek teljes sokasága alapján kiszámítja a szórást. +DSUM = AB.SZUM ## Összeadja a feltételnek megfelelÅ‘ adatbázisrekordok mezÅ‘oszlopában a számokat. +DVAR = AB.VAR ## A kijelölt adatbáziselemek mintája alapján becslést ad a szórásnégyzetre. +DVARP = AB.VAR2 ## A kijelölt adatbáziselemek teljes sokasága alapján kiszámítja a szórásnégyzetet. + + +## +## Date and time functions Dátumfüggvények +## +DATE = DÃTUM ## Adott dátum dátumértékét adja eredményül. +DATEVALUE = DÃTUMÉRTÉK ## Szövegként megadott dátumot dátumértékké alakít át. +DAY = NAP ## Dátumértéket a hónap egy napjává (0-31) alakít. +DAYS360 = NAP360 ## Két dátum közé esÅ‘ napok számát számítja ki a 360 napos év alapján. +EDATE = EDATE ## Adott dátumnál adott számú hónappal korábbi vagy késÅ‘bbi dátum dátumértékét adja eredményül. +EOMONTH = EOMONTH ## Adott dátumnál adott számú hónappal korábbi vagy késÅ‘bbi hónap utolsó napjának dátumértékét adja eredményül. +HOUR = ÓRA ## Időértéket órákká alakít. +MINUTE = PERC ## Időértéket percekké alakít. +MONTH = HÓNAP ## Időértéket hónapokká alakít. +NETWORKDAYS = NETWORKDAYS ## Két dátum között a teljes munkanapok számát adja meg. +NOW = MOST ## A napi dátum dátumértékét és a pontos idÅ‘ időértékét adja eredményül. +SECOND = MPERC ## Időértéket másodpercekké alakít át. +TIME = IDÅ ## Adott idÅ‘pont időértékét adja meg. +TIMEVALUE = IDÅÉRTÉK ## Szövegként megadott idÅ‘pontot időértékké alakít át. +TODAY = MA ## A napi dátum dátumértékét adja eredményül. +WEEKDAY = HÉT.NAPJA ## Dátumértéket a hét napjává alakítja át. +WEEKNUM = WEEKNUM ## Visszatérési értéke egy szám, amely azt mutatja meg, hogy a megadott dátum az év hányadik hetére esik. +WORKDAY = WORKDAY ## Adott dátumnál adott munkanappal korábbi vagy késÅ‘bbi dátum dátumértékét adja eredményül. +YEAR = ÉV ## Sorszámot évvé alakít át. +YEARFRAC = YEARFRAC ## Az adott dátumok közötti teljes napok számát törtévként adja meg. + + +## +## Engineering functions Mérnöki függvények +## +BESSELI = BESSELI ## Az In(x) módosított Bessel-függvény értékét adja eredményül. +BESSELJ = BESSELJ ## A Jn(x) Bessel-függvény értékét adja eredményül. +BESSELK = BESSELK ## A Kn(x) módosított Bessel-függvény értékét adja eredményül. +BESSELY = BESSELY ## Az Yn(x) módosított Bessel-függvény értékét adja eredményül. +BIN2DEC = BIN2DEC ## Bináris számot decimálissá alakít át. +BIN2HEX = BIN2HEX ## Bináris számot hexadecimálissá alakít át. +BIN2OCT = BIN2OCT ## Bináris számot oktálissá alakít át. +COMPLEX = COMPLEX ## Valós és képzetes részbÅ‘l komplex számot képez. +CONVERT = CONVERT ## Mértékegységeket vált át. +DEC2BIN = DEC2BIN ## Decimális számot binárissá alakít át. +DEC2HEX = DEC2HEX ## Decimális számot hexadecimálissá alakít át. +DEC2OCT = DEC2OCT ## Decimális számot oktálissá alakít át. +DELTA = DELTA ## Azt vizsgálja, hogy két érték egyenlÅ‘-e. +ERF = ERF ## A hibafüggvény értékét adja eredményül. +ERFC = ERFC ## A kiegészített hibafüggvény értékét adja eredményül. +GESTEP = GESTEP ## Azt vizsgálja, hogy egy szám nagyobb-e adott küszöbértéknél. +HEX2BIN = HEX2BIN ## Hexadecimális számot binárissá alakít át. +HEX2DEC = HEX2DEC ## Hexadecimális számot decimálissá alakít át. +HEX2OCT = HEX2OCT ## Hexadecimális számot oktálissá alakít át. +IMABS = IMABS ## Komplex szám abszolút értékét (modulusát) adja eredményül. +IMAGINARY = IMAGINARY ## Komplex szám képzetes részét adja eredményül. +IMARGUMENT = IMARGUMENT ## A komplex szám radiánban kifejezett théta argumentumát adja eredményül. +IMCONJUGATE = IMCONJUGATE ## Komplex szám komplex konjugáltját adja eredményül. +IMCOS = IMCOS ## Komplex szám koszinuszát adja eredményül. +IMDIV = IMDIV ## Két komplex szám hányadosát adja eredményül. +IMEXP = IMEXP ## Az e szám komplex kitevÅ‘jű hatványát adja eredményül. +IMLN = IMLN ## Komplex szám természetes logaritmusát adja eredményül. +IMLOG10 = IMLOG10 ## Komplex szám tízes alapú logaritmusát adja eredményül. +IMLOG2 = IMLOG2 ## Komplex szám kettes alapú logaritmusát adja eredményül. +IMPOWER = IMPOWER ## Komplex szám hatványát adja eredményül. +IMPRODUCT = IMPRODUCT ## Komplex számok szorzatát adja eredményül. +IMREAL = IMREAL ## Komplex szám valós részét adja eredményül. +IMSIN = IMSIN ## Komplex szám szinuszát adja eredményül. +IMSQRT = IMSQRT ## Komplex szám négyzetgyökét adja eredményül. +IMSUB = IMSUB ## Két komplex szám különbségét adja eredményül. +IMSUM = IMSUM ## Komplex számok összegét adja eredményül. +OCT2BIN = OCT2BIN ## Oktális számot binárissá alakít át. +OCT2DEC = OCT2DEC ## Oktális számot decimálissá alakít át. +OCT2HEX = OCT2HEX ## Oktális számot hexadecimálissá alakít át. + + +## +## Financial functions Pénzügyi függvények +## +ACCRINT = ACCRINT ## Periodikusan kamatozó értékpapír felszaporodott kamatát adja eredményül. +ACCRINTM = ACCRINTM ## Lejáratkor kamatozó értékpapír felszaporodott kamatát adja eredményül. +AMORDEGRC = AMORDEGRC ## Ãllóeszköz lineáris értékcsökkenését adja meg az egyes könyvelési idÅ‘szakokra vonatkozóan. +AMORLINC = AMORLINC ## Az egyes könyvelési idÅ‘szakokban az értékcsökkenést adja meg. +COUPDAYBS = COUPDAYBS ## A szelvényidÅ‘szak kezdetétÅ‘l a kifizetés idÅ‘pontjáig eltelt napokat adja vissza. +COUPDAYS = COUPDAYS ## A kifizetés idÅ‘pontját magában foglaló szelvényperiódus hosszát adja meg napokban. +COUPDAYSNC = COUPDAYSNC ## A kifizetés idÅ‘pontja és a legközelebbi szelvénydátum közötti napok számát adja meg. +COUPNCD = COUPNCD ## A kifizetést követÅ‘ legelsÅ‘ szelvénydátumot adja eredményül. +COUPNUM = COUPNUM ## A kifizetés és a lejárat idÅ‘pontja között kifizetendÅ‘ szelvények számát adja eredményül. +COUPPCD = COUPPCD ## A kifizetés elÅ‘tti utolsó szelvénydátumot adja eredményül. +CUMIPMT = CUMIPMT ## Két fizetési idÅ‘szak között kifizetett kamat halmozott értékét adja eredményül. +CUMPRINC = CUMPRINC ## Két fizetési idÅ‘szak között kifizetett részletek halmozott (kamatot nem tartalmazó) értékét adja eredményül. +DB = KCS2 ## Eszköz adott idÅ‘szak alatti értékcsökkenését számítja ki a lineáris leírási modell alkalmazásával. +DDB = KCSA ## Eszköz értékcsökkenését számítja ki adott idÅ‘szakra vonatkozóan a progresszív vagy egyéb megadott leírási modell alkalmazásával. +DISC = DISC ## Értékpapír leszámítolási kamatlábát adja eredményül. +DOLLARDE = DOLLARDE ## Egy közönséges törtként megadott számot tizedes törtté alakít át. +DOLLARFR = DOLLARFR ## Tizedes törtként megadott számot közönséges törtté alakít át. +DURATION = DURATION ## Periodikus kamatfizetésű értékpapír éves kamatérzékenységét adja eredményül. +EFFECT = EFFECT ## Az éves tényleges kamatláb értékét adja eredményül. +FV = JBÉ ## Befektetés jövÅ‘beli értékét számítja ki. +FVSCHEDULE = FVSCHEDULE ## A kezdÅ‘tÅ‘ke adott kamatlábak szerint megnövelt jövÅ‘beli értékét adja eredményül. +INTRATE = INTRATE ## A lejáratig teljesen lekötött értékpapír kamatrátáját adja eredményül. +IPMT = RRÉSZLET ## Hiteltörlesztésen belül a tÅ‘ketörlesztés nagyságát számítja ki adott idÅ‘szakra. +IRR = BMR ## A befektetés belsÅ‘ megtérülési rátáját számítja ki pénzáramláshoz. +ISPMT = LRÉSZLETKAMAT ## A befektetés adott idÅ‘szakára fizetett kamatot számítja ki. +MDURATION = MDURATION ## Egy 100 Ft névértékű értékpapír Macauley-féle módosított kamatérzékenységét adja eredményül. +MIRR = MEGTÉRÜLÉS ## A befektetés belsÅ‘ megtérülési rátáját számítja ki a költségek és a bevételek különbözÅ‘ kamatlába mellett. +NOMINAL = NOMINAL ## Az éves névleges kamatláb értékét adja eredményül. +NPER = PER.SZÃM ## A törlesztési idÅ‘szakok számát adja meg. +NPV = NMÉ ## Befektetéshez kapcsolódó pénzáramlás nettó jelenértékét számítja ki ismert pénzáramlás és kamatláb mellett. +ODDFPRICE = ODDFPRICE ## Egy 100 Ft névértékű, a futamidÅ‘ elején töredék-idÅ‘szakos értékpapír árát adja eredményül. +ODDFYIELD = ODDFYIELD ## A futamidÅ‘ elején töredék-idÅ‘szakos értékpapír hozamát adja eredményül. +ODDLPRICE = ODDLPRICE ## Egy 100 Ft névértékű, a futamidÅ‘ végén töredék-idÅ‘szakos értékpapír árát adja eredményül. +ODDLYIELD = ODDLYIELD ## A futamidÅ‘ végén töredék-idÅ‘szakos értékpapír hozamát adja eredményül. +PMT = RÉSZLET ## A törlesztési idÅ‘szakra vonatkozó törlesztési összeget számítja ki. +PPMT = PRÉSZLET ## Hiteltörlesztésen belül a tÅ‘ketörlesztés nagyságát számítja ki adott idÅ‘szakra. +PRICE = PRICE ## Egy 100 Ft névértékű, periodikusan kamatozó értékpapír árát adja eredményül. +PRICEDISC = PRICEDISC ## Egy 100 Ft névértékű leszámítolt értékpapír árát adja eredményül. +PRICEMAT = PRICEMAT ## Egy 100 Ft névértékű, a lejáratkor kamatozó értékpapír árát adja eredményül. +PV = MÉ ## Befektetés jelenlegi értékét számítja ki. +RATE = RÃTA ## Egy törlesztési idÅ‘szakban az egy idÅ‘szakra esÅ‘ kamatláb nagyságát számítja ki. +RECEIVED = RECEIVED ## A lejáratig teljesen lekötött értékpapír lejáratakor kapott összegét adja eredményül. +SLN = LCSA ## Tárgyi eszköz egy idÅ‘szakra esÅ‘ amortizációját adja meg bruttó érték szerinti lineáris leírási kulcsot alkalmazva. +SYD = SYD ## Tárgyi eszköz értékcsökkenését számítja ki adott idÅ‘szakra az évek számjegyösszegével dolgozó módszer alapján. +TBILLEQ = TBILLEQ ## Kincstárjegy kötvény-egyenértékű hozamát adja eredményül. +TBILLPRICE = TBILLPRICE ## Egy 100 Ft névértékű kincstárjegy árát adja eredményül. +TBILLYIELD = TBILLYIELD ## Kincstárjegy hozamát adja eredményül. +VDB = ÉCSRI ## Tárgyi eszköz amortizációját számítja ki megadott vagy részidÅ‘szakra a csökkenÅ‘ egyenleg módszerének alkalmazásával. +XIRR = XIRR ## Ütemezett készpénzforgalom (cash flow) belsÅ‘ megtérülési kamatrátáját adja eredményül. +XNPV = XNPV ## Ütemezett készpénzforgalom (cash flow) nettó jelenlegi értékét adja eredményül. +YIELD = YIELD ## Periodikusan kamatozó értékpapír hozamát adja eredményül. +YIELDDISC = YIELDDISC ## Leszámítolt értékpapír (például kincstárjegy) éves hozamát adja eredményül. +YIELDMAT = YIELDMAT ## Lejáratkor kamatozó értékpapír éves hozamát adja eredményül. + + +## +## Information functions Információs függvények +## +CELL = CELLA ## Egy cella formátumára, elhelyezkedésére vagy tartalmára vonatkozó adatokat ad eredményül. +ERROR.TYPE = HIBA.TÃPUS ## Egy hibatípushoz tartozó számot ad eredményül. +INFO = INFÓ ## A rendszer- és munkakörnyezet pillanatnyi állapotáról ad felvilágosítást. +ISBLANK = ÜRES ## Eredménye IGAZ, ha az érték üres. +ISERR = HIBA ## Eredménye IGAZ, ha az érték valamelyik hibaérték a #HIÃNYZIK kivételével. +ISERROR = HIBÃS ## Eredménye IGAZ, ha az érték valamelyik hibaérték. +ISEVEN = ISEVEN ## Eredménye IGAZ, ha argumentuma páros szám. +ISLOGICAL = LOGIKAI ## Eredménye IGAZ, ha az érték logikai érték. +ISNA = NINCS ## Eredménye IGAZ, ha az érték a #HIÃNYZIK hibaérték. +ISNONTEXT = NEM.SZÖVEG ## Eredménye IGAZ, ha az érték nem szöveg. +ISNUMBER = SZÃM ## Eredménye IGAZ, ha az érték szám. +ISODD = ISODD ## Eredménye IGAZ, ha argumentuma páratlan szám. +ISREF = HIVATKOZÃS ## Eredménye IGAZ, ha az érték hivatkozás. +ISTEXT = SZÖVEG.E ## Eredménye IGAZ, ha az érték szöveg. +N = N ## Argumentumának értékét számmá alakítja. +NA = HIÃNYZIK ## Eredménye a #HIÃNYZIK hibaérték. +TYPE = TÃPUS ## Érték adattípusának azonosítószámát adja eredményül. + + +## +## Logical functions Logikai függvények +## +AND = ÉS ## Eredménye IGAZ, ha minden argumentuma IGAZ. +FALSE = HAMIS ## A HAMIS logikai értéket adja eredményül. +IF = HA ## Logikai vizsgálatot hajt végre. +IFERROR = HAHIBA ## A megadott értéket adja vissza, ha egy képlet hibához vezet; más esetben a képlet értékét adja eredményül. +NOT = NEM ## Argumentuma értékének ellentettjét adja eredményül. +OR = VAGY ## Eredménye IGAZ, ha bármely argumentuma IGAZ. +TRUE = IGAZ ## Az IGAZ logikai értéket adja eredményül. + + +## +## Lookup and reference functions Keresési és hivatkozási függvények +## +ADDRESS = CÃM ## A munkalap egy cellájára való hivatkozást adja szövegként eredményül. +AREAS = TERÜLET ## Hivatkozásban a területek számát adja eredményül. +CHOOSE = VÃLASZT ## Értékek listájából választ ki egy elemet. +COLUMN = OSZLOP ## Egy hivatkozás oszlopszámát adja eredményül. +COLUMNS = OSZLOPOK ## A hivatkozásban található oszlopok számát adja eredményül. +HLOOKUP = VKERES ## A megadott tömb felsÅ‘ sorában adott értékű elemet keres, és a megtalált elem oszlopából adott sorban elhelyezkedÅ‘ értékkel tér vissza. +HYPERLINK = HIPERHIVATKOZÃS ## Hálózati kiszolgálón, intraneten vagy az interneten tárolt dokumentumot megnyitó parancsikont vagy hivatkozást hoz létre. +INDEX = INDEX ## Tömb- vagy hivatkozás indexszel megadott értékét adja vissza. +INDIRECT = INDIREKT ## Szöveg megadott hivatkozást ad eredményül. +LOOKUP = KERES ## Vektorban vagy tömbben keres meg értékeket. +MATCH = HOL.VAN ## Hivatkozásban vagy tömbben értékeket keres. +OFFSET = OFSZET ## Hivatkozás egy másik hivatkozástól számított távolságát adja meg. +ROW = SOR ## Egy hivatkozás sorának számát adja meg. +ROWS = SOROK ## Egy hivatkozás sorainak számát adja meg. +RTD = RTD ## Valós idejű adatokat keres vissza a COM automatizmust (automatizálás: Egy alkalmazás objektumaival való munka másik alkalmazásból vagy fejlesztÅ‘eszközbÅ‘l. A korábban OLE automatizmusnak nevezett automatizálás iparági szabvány, a Component Object Model (COM) szolgáltatása.) támogató programból. +TRANSPOSE = TRANSZPONÃLÃS ## Egy tömb transzponáltját adja eredményül. +VLOOKUP = FKERES ## A megadott tömb bal szélsÅ‘ oszlopában megkeres egy értéket, majd annak sora és a megadott oszlop metszéspontjában levÅ‘ értéked adja eredményül. + + +## +## Math and trigonometry functions Matematikai és trigonometrikus függvények +## +ABS = ABS ## Egy szám abszolút értékét adja eredményül. +ACOS = ARCCOS ## Egy szám arkusz koszinuszát számítja ki. +ACOSH = ACOSH ## Egy szám inverz koszinusz hiperbolikuszát számítja ki. +ASIN = ARCSIN ## Egy szám arkusz szinuszát számítja ki. +ASINH = ASINH ## Egy szám inverz szinusz hiperbolikuszát számítja ki. +ATAN = ARCTAN ## Egy szám arkusz tangensét számítja ki. +ATAN2 = ARCTAN2 ## X és y koordináták alapján számítja ki az arkusz tangens értéket. +ATANH = ATANH ## A szám inverz tangens hiperbolikuszát számítja ki. +CEILING = PLAFON ## Egy számot a legközelebbi egészre vagy a pontosságként megadott érték legközelebb esÅ‘ többszörösére kerekít. +COMBIN = KOMBINÃCIÓK ## Adott számú objektum összes lehetséges kombinációinak számát számítja ki. +COS = COS ## Egy szám koszinuszát számítja ki. +COSH = COSH ## Egy szám koszinusz hiperbolikuszát számítja ki. +DEGREES = FOK ## Radiánt fokká alakít át. +EVEN = PÃROS ## Egy számot a legközelebbi páros egész számra kerekít. +EXP = KITEVÅ ## Az e adott kitevÅ‘jű hatványát adja eredményül. +FACT = FAKT ## Egy szám faktoriálisát számítja ki. +FACTDOUBLE = FACTDOUBLE ## Egy szám dupla faktoriálisát adja eredményül. +FLOOR = PADLÓ ## Egy számot lefelé, a nulla felé kerekít. +GCD = GCD ## A legnagyobb közös osztót adja eredményül. +INT = INT ## Egy számot lefelé kerekít a legközelebbi egészre. +LCM = LCM ## A legkisebb közös többszöröst adja eredményül. +LN = LN ## Egy szám természetes logaritmusát számítja ki. +LOG = LOG ## Egy szám adott alapú logaritmusát számítja ki. +LOG10 = LOG10 ## Egy szám 10-es alapú logaritmusát számítja ki. +MDETERM = MDETERM ## Egy tömb mátrix-determinánsát számítja ki. +MINVERSE = INVERZ.MÃTRIX ## Egy tömb mátrix inverzét adja eredményül. +MMULT = MSZORZAT ## Két tömb mátrix-szorzatát adja meg. +MOD = MARADÉK ## Egy szám osztási maradékát adja eredményül. +MROUND = MROUND ## A kívánt többszörösére kerekített értéket ad eredményül. +MULTINOMIAL = MULTINOMIAL ## Számhalmaz multinomiálisát adja eredményül. +ODD = PÃRATLAN ## Egy számot a legközelebbi páratlan számra kerekít. +PI = PI ## A pi matematikai állandót adja vissza. +POWER = HATVÃNY ## Egy szám adott kitevÅ‘jű hatványát számítja ki. +PRODUCT = SZORZAT ## Argumentumai szorzatát számítja ki. +QUOTIENT = QUOTIENT ## Egy hányados egész részét adja eredményül. +RADIANS = RADIÃN ## Fokot radiánná alakít át. +RAND = VÉL ## Egy 0 és 1 közötti véletlen számot ad eredményül. +RANDBETWEEN = RANDBETWEEN ## Megadott számok közé esÅ‘ véletlen számot állít elÅ‘. +ROMAN = RÓMAI ## Egy számot római számokkal kifejezve szövegként ad eredményül. +ROUND = KEREKÃTÉS ## Egy számot adott számú számjegyre kerekít. +ROUNDDOWN = KEREKÃTÉS.LE ## Egy számot lefelé, a nulla felé kerekít. +ROUNDUP = KEREKÃTÉS.FEL ## Egy számot felfelé, a nullától távolabbra kerekít. +SERIESSUM = SERIESSUM ## Hatványsor összegét adja eredményül. +SIGN = ELÅJEL ## Egy szám elÅ‘jelét adja meg. +SIN = SIN ## Egy szög szinuszát számítja ki. +SINH = SINH ## Egy szám szinusz hiperbolikuszát számítja ki. +SQRT = GYÖK ## Egy szám pozitív négyzetgyökét számítja ki. +SQRTPI = SQRTPI ## A (szám*pi) négyzetgyökét adja eredményül. +SUBTOTAL = RÉSZÖSSZEG ## Lista vagy adatbázis részösszegét adja eredményül. +SUM = SZUM ## Összeadja az argumentumlistájában lévÅ‘ számokat. +SUMIF = SZUMHA ## A megadott feltételeknek eleget tevÅ‘ cellákban található értékeket adja össze. +SUMIFS = SZUMHATÖBB ## Több megadott feltételnek eleget tévÅ‘ tartománycellák összegét adja eredményül. +SUMPRODUCT = SZORZATÖSSZEG ## A megfelelÅ‘ tömbelemek szorzatának összegét számítja ki. +SUMSQ = NÉGYZETÖSSZEG ## Argumentumai négyzetének összegét számítja ki. +SUMX2MY2 = SZUMX2BÅLY2 ## Két tömb megfelelÅ‘ elemei négyzetének különbségét összegzi. +SUMX2PY2 = SZUMX2MEGY2 ## Két tömb megfelelÅ‘ elemei négyzetének összegét összegzi. +SUMXMY2 = SZUMXBÅLY2 ## Két tömb megfelelÅ‘ elemei különbségének négyzetösszegét számítja ki. +TAN = TAN ## Egy szám tangensét számítja ki. +TANH = TANH ## Egy szám tangens hiperbolikuszát számítja ki. +TRUNC = CSONK ## Egy számot egésszé csonkít. + + +## +## Statistical functions Statisztikai függvények +## +AVEDEV = ÃTL.ELTÉRÉS ## Az adatpontoknak átlaguktól való átlagos abszolút eltérését számítja ki. +AVERAGE = ÃTLAG ## Argumentumai átlagát számítja ki. +AVERAGEA = ÃTLAGA ## Argumentumai átlagát számítja ki (beleértve a számokat, szöveget és logikai értékeket). +AVERAGEIF = ÃTLAGHA ## A megadott feltételnek eleget tévÅ‘ tartomány celláinak átlagát (számtani közepét) adja eredményül. +AVERAGEIFS = ÃTLAGHATÖBB ## A megadott feltételeknek eleget tévÅ‘ cellák átlagát (számtani közepét) adja eredményül. +BETADIST = BÉTA.ELOSZLÃS ## A béta-eloszlás függvényt számítja ki. +BETAINV = INVERZ.BÉTA ## Adott béta-eloszláshoz kiszámítja a béta eloszlásfüggvény inverzét. +BINOMDIST = BINOM.ELOSZLÃS ## A diszkrét binomiális eloszlás valószínűségértékét számítja ki. +CHIDIST = KHI.ELOSZLÃS ## A khi-négyzet-eloszlás egyszélű valószínűségértékét számítja ki. +CHIINV = INVERZ.KHI ## A khi-négyzet-eloszlás egyszélű valószínűségértékének inverzét számítja ki. +CHITEST = KHI.PRÓBA ## Függetlenségvizsgálatot hajt végre. +CONFIDENCE = MEGBÃZHATÓSÃG ## Egy statisztikai sokaság várható értékének megbízhatósági intervallumát adja eredményül. +CORREL = KORREL ## Két adathalmaz korrelációs együtthatóját számítja ki. +COUNT = DARAB ## Megszámolja, hogy argumentumlistájában hány szám található. +COUNTA = DARAB2 ## Megszámolja, hogy argumentumlistájában hány érték található. +COUNTBLANK = DARABÜRES ## Egy tartományban összeszámolja az üres cellákat. +COUNTIF = DARABTELI ## Egy tartományban összeszámolja azokat a cellákat, amelyek eleget tesznek a megadott feltételnek. +COUNTIFS = DARABHATÖBB ## Egy tartományban összeszámolja azokat a cellákat, amelyek eleget tesznek több feltételnek. +COVAR = KOVAR ## A kovarianciát, azaz a páronkénti eltérések szorzatának átlagát számítja ki. +CRITBINOM = KRITBINOM ## Azt a legkisebb számot adja eredményül, amelyre a binomiális eloszlásfüggvény értéke nem kisebb egy adott határértéknél. +DEVSQ = SQ ## Az átlagtól való eltérések négyzetének összegét számítja ki. +EXPONDIST = EXP.ELOSZLÃS ## Az exponenciális eloszlás értékét számítja ki. +FDIST = F.ELOSZLÃS ## Az F-eloszlás értékét számítja ki. +FINV = INVERZ.F ## Az F-eloszlás inverzének értékét számítja ki. +FISHER = FISHER ## Fisher-transzformációt hajt végre. +FISHERINV = INVERZ.FISHER ## A Fisher-transzformáció inverzét hajtja végre. +FORECAST = ELÅREJELZÉS ## Az ismert értékek alapján lineáris regresszióval becsült értéket ad eredményül. +FREQUENCY = GYAKORISÃG ## A gyakorisági vagy empirikus eloszlás értékét függÅ‘leges tömbként adja eredményül. +FTEST = F.PRÓBA ## Az F-próba értékét adja eredményül. +GAMMADIST = GAMMA.ELOSZLÃS ## A gamma-eloszlás értékét számítja ki. +GAMMAINV = INVERZ.GAMMA ## A gamma-eloszlás eloszlásfüggvénye inverzének értékét számítja ki. +GAMMALN = GAMMALN ## A gamma-függvény természetes logaritmusát számítja ki. +GEOMEAN = MÉRTANI.KÖZÉP ## Argumentumai mértani középértékét számítja ki. +GROWTH = NÖV ## Exponenciális regresszió alapján ad becslést. +HARMEAN = HARM.KÖZÉP ## Argumentumai harmonikus átlagát számítja ki. +HYPGEOMDIST = HIPERGEOM.ELOSZLÃS ## A hipergeometriai eloszlás értékét számítja ki. +INTERCEPT = METSZ ## A regressziós egyenes y tengellyel való metszéspontját határozza meg. +KURT = CSÚCSOSSÃG ## Egy adathalmaz csúcsosságát számítja ki. +LARGE = NAGY ## Egy adathalmaz k-adik legnagyobb elemét adja eredményül. +LINEST = LIN.ILL ## A legkisebb négyzetek módszerével az adatokra illesztett egyenes paramétereit határozza meg. +LOGEST = LOG.ILL ## Az adatokra illesztett exponenciális görbe paramétereit határozza meg. +LOGINV = INVERZ.LOG.ELOSZLÃS ## A lognormális eloszlás inverzét számítja ki. +LOGNORMDIST = LOG.ELOSZLÃS ## A lognormális eloszlásfüggvény értékét számítja ki. +MAX = MAX ## Az argumentumai között szereplÅ‘ legnagyobb számot adja meg. +MAXA = MAX2 ## Az argumentumai között szereplÅ‘ legnagyobb számot adja meg (beleértve a számokat, szöveget és logikai értékeket). +MEDIAN = MEDIÃN ## Adott számhalmaz mediánját számítja ki. +MIN = MIN ## Az argumentumai között szereplÅ‘ legkisebb számot adja meg. +MINA = MIN2 ## Az argumentumai között szereplÅ‘ legkisebb számot adja meg, beleértve a számokat, szöveget és logikai értékeket. +MODE = MÓDUSZ ## Egy adathalmazból kiválasztja a leggyakrabban elÅ‘forduló számot. +NEGBINOMDIST = NEGBINOM.ELOSZL ## A negatív binomiális eloszlás értékét számítja ki. +NORMDIST = NORM.ELOSZL ## A normális eloszlás értékét számítja ki. +NORMINV = INVERZ.NORM ## A normális eloszlás eloszlásfüggvénye inverzének értékét számítja ki. +NORMSDIST = STNORMELOSZL ## A standard normális eloszlás eloszlásfüggvényének értékét számítja ki. +NORMSINV = INVERZ.STNORM ## A standard normális eloszlás eloszlásfüggvénye inverzének értékét számítja ki. +PEARSON = PEARSON ## A Pearson-féle korrelációs együtthatót számítja ki. +PERCENTILE = PERCENTILIS ## Egy tartományban található értékek k-adik percentilisét, azaz százalékosztályát adja eredményül. +PERCENTRANK = SZÃZALÉKRANG ## Egy értéknek egy adathalmazon belül vett százalékos rangját (elhelyezkedését) számítja ki. +PERMUT = VARIÃCIÓK ## Adott számú objektum k-ad osztályú ismétlés nélküli variációinak számát számítja ki. +POISSON = POISSON ## A Poisson-eloszlás értékét számítja ki. +PROB = VALÓSZÃNŰSÉG ## Annak valószínűségét számítja ki, hogy adott értékek két határérték közé esnek. +QUARTILE = KVARTILIS ## Egy adathalmaz kvartilisét (negyedszintjét) számítja ki. +RANK = SORSZÃM ## Kiszámítja, hogy egy szám hányadik egy számsorozatban. +RSQ = RNÉGYZET ## Kiszámítja a Pearson-féle szorzatmomentum korrelációs együtthatójának négyzetét. +SKEW = FERDESÉG ## Egy eloszlás ferdeségét határozza meg. +SLOPE = MEREDEKSÉG ## Egy lineáris regressziós egyenes meredekségét számítja ki. +SMALL = KICSI ## Egy adathalmaz k-adik legkisebb elemét adja meg. +STANDARDIZE = NORMALIZÃLÃS ## Normalizált értéket ad eredményül. +STDEV = SZÓRÃS ## Egy statisztikai sokaság mintájából kiszámítja annak szórását. +STDEVA = SZÓRÃSA ## Egy statisztikai sokaság mintájából kiszámítja annak szórását (beleértve a számokat, szöveget és logikai értékeket). +STDEVP = SZÓRÃSP ## Egy statisztikai sokaság egészébÅ‘l kiszámítja annak szórását. +STDEVPA = SZÓRÃSPA ## Egy statisztikai sokaság egészébÅ‘l kiszámítja annak szórását (beleértve számokat, szöveget és logikai értékeket). +STEYX = STHIBAYX ## Egy regresszió esetén az egyes x-értékek alapján meghatározott y-értékek standard hibáját számítja ki. +TDIST = T.ELOSZLÃS ## A Student-féle t-eloszlás értékét számítja ki. +TINV = INVERZ.T ## A Student-féle t-eloszlás inverzét számítja ki. +TREND = TREND ## Lineáris trend értékeit számítja ki. +TRIMMEAN = RÉSZÃTLAG ## Egy adathalmaz középsÅ‘ részének átlagát számítja ki. +TTEST = T.PRÓBA ## A Student-féle t-próbához tartozó valószínűséget számítja ki. +VAR = VAR ## Minta alapján becslést ad a varianciára. +VARA = VARA ## Minta alapján becslést ad a varianciára (beleértve számokat, szöveget és logikai értékeket). +VARP = VARP ## Egy statisztikai sokaság varianciáját számítja ki. +VARPA = VARPA ## Egy statisztikai sokaság varianciáját számítja ki (beleértve számokat, szöveget és logikai értékeket). +WEIBULL = WEIBULL ## A Weibull-féle eloszlás értékét számítja ki. +ZTEST = Z.PRÓBA ## Az egyszélű z-próbával kapott valószínűségértéket számítja ki. + + +## +## Text functions Szövegműveletekhez használható függvények +## +ASC = ASC ## Szöveg teljes szélességű (kétbájtos) latin és katakana karaktereit félszélességű (egybájtos) karakterekké alakítja. +BAHTTEXT = BAHTSZÖVEG ## Számot szöveggé alakít a ß (baht) pénznemformátum használatával. +CHAR = KARAKTER ## A kódszámmal meghatározott karaktert adja eredményül. +CLEAN = TISZTÃT ## A szövegbÅ‘l eltávolítja az összes nem nyomtatható karaktert. +CODE = KÓD ## Karaktersorozat elsÅ‘ karakterének numerikus kódját adja eredményül. +CONCATENATE = ÖSSZEFŰZ ## Több szövegelemet egyetlen szöveges elemmé fűz össze. +DOLLAR = FORINT ## Számot pénznem formátumú szöveggé alakít át. +EXACT = AZONOS ## Megvizsgálja, hogy két érték azonos-e. +FIND = SZÖVEG.TALÃL ## Karaktersorozatot keres egy másikban (a kis- és nagybetűk megkülönböztetésével). +FINDB = SZÖVEG.TALÃL2 ## Karaktersorozatot keres egy másikban (a kis- és nagybetűk megkülönböztetésével). +FIXED = FIX ## Számot szöveges formátumúra alakít adott számú tizedesjegyre kerekítve. +JIS = JIS ## A félszélességű (egybájtos) latin és a katakana karaktereket teljes szélességű (kétbájtos) karakterekké alakítja. +LEFT = BAL ## Szöveg bal szélsÅ‘ karaktereit adja eredményül. +LEFTB = BAL2 ## Szöveg bal szélsÅ‘ karaktereit adja eredményül. +LEN = HOSSZ ## Szöveg karakterekben mért hosszát adja eredményül. +LENB = HOSSZ2 ## Szöveg karakterekben mért hosszát adja eredményül. +LOWER = KISBETŰ ## Szöveget kisbetűssé alakít át. +MID = KÖZÉP ## A szöveg adott pozíciójától kezdve megadott számú karaktert ad vissza eredményként. +MIDB = KÖZÉP2 ## A szöveg adott pozíciójától kezdve megadott számú karaktert ad vissza eredményként. +PHONETIC = PHONETIC ## Szöveg furigana (fonetikus) karaktereit adja vissza. +PROPER = TNÉV ## Szöveg minden szavának kezdÅ‘betűjét nagybetűsre cseréli. +REPLACE = CSERE ## A szövegen belül karaktereket cserél. +REPLACEB = CSERE2 ## A szövegen belül karaktereket cserél. +REPT = SOKSZOR ## Megadott számú alkalommal megismétel egy szövegrészt. +RIGHT = JOBB ## Szövegrész jobb szélsÅ‘ karaktereit adja eredményül. +RIGHTB = JOBB2 ## Szövegrész jobb szélsÅ‘ karaktereit adja eredményül. +SEARCH = SZÖVEG.KERES ## Karaktersorozatot keres egy másikban (a kis- és nagybetűk között nem tesz különbséget). +SEARCHB = SZÖVEG.KERES2 ## Karaktersorozatot keres egy másikban (a kis- és nagybetűk között nem tesz különbséget). +SUBSTITUTE = HELYETTE ## Szövegben adott karaktereket másikra cserél. +T = T ## Argumentumát szöveggé alakítja át. +TEXT = SZÖVEG ## Számértéket alakít át adott számformátumú szöveggé. +TRIM = TRIM ## A szövegbÅ‘l eltávolítja a szóközöket. +UPPER = NAGYBETŰS ## Szöveget nagybetűssé alakít át. +VALUE = ÉRTÉK ## Szöveget számmá alakít át. diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/it/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/it/config new file mode 100644 index 0000000..c3afa75 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/it/config @@ -0,0 +1,47 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = € + + +## +## Excel Error Codes (For future use) +## +NULL = #NULLO! +DIV0 = #DIV/0! +VALUE = #VALORE! +REF = #RIF! +NAME = #NOME? +NUM = #NUM! +NA = #N/D diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/it/functions b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/it/functions new file mode 100644 index 0000000..d371f3d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/it/functions @@ -0,0 +1,438 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Calculation +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## Data in this file derived from http://www.piuha.fi/excel-function-name-translation/ +## +## + + +## +## Add-in and Automation functions Funzioni di automazione e dei componenti aggiuntivi +## +GETPIVOTDATA = INFO.DATI.TAB.PIVOT ## Restituisce i dati memorizzati in un rapporto di tabella pivot + + +## +## Cube functions Funzioni cubo +## +CUBEKPIMEMBER = MEMBRO.KPI.CUBO ## Restituisce il nome, la proprietà e la misura di un indicatore di prestazioni chiave (KPI) e visualizza il nome e la proprietà nella cella. Un KPI è una misura quantificabile, ad esempio l'utile lordo mensile o il fatturato trimestrale dei dipendenti, utilizzata per il monitoraggio delle prestazioni di un'organizzazione. +CUBEMEMBER = MEMBRO.CUBO ## Restituisce un membro o una tupla in una gerarchia di cubi. Consente di verificare l'esistenza del membro o della tupla nel cubo. +CUBEMEMBERPROPERTY = PROPRIETÀ.MEMBRO.CUBO ## Restituisce il valore di una proprietà di un membro del cubo. Consente di verificare l'esistenza di un nome di membro all'interno del cubo e di restituire la proprietà specificata per tale membro. +CUBERANKEDMEMBER = MEMBRO.CUBO.CON.RANGO ## Restituisce l'n-esimo membro o il membro ordinato di un insieme. Consente di restituire uno o più elementi in un insieme, ad esempio l'agente di vendita migliore o i primi 10 studenti. +CUBESET = SET.CUBO ## Definisce un insieme di tuple o membri calcolati mediante l'invio di un'espressione di insieme al cubo sul server. In questo modo l'insieme viene creato e restituito a Microsoft Office Excel. +CUBESETCOUNT = CONTA.SET.CUBO ## Restituisce il numero di elementi di un insieme. +CUBEVALUE = VALORE.CUBO ## Restituisce un valore aggregato da un cubo. + + +## +## Database functions Funzioni di database +## +DAVERAGE = DB.MEDIA ## Restituisce la media di voci del database selezionate +DCOUNT = DB.CONTA.NUMERI ## Conta le celle di un database contenenti numeri +DCOUNTA = DB.CONTA.VALORI ## Conta le celle non vuote in un database +DGET = DB.VALORI ## Estrae da un database un singolo record che soddisfa i criteri specificati +DMAX = DB.MAX ## Restituisce il valore massimo dalle voci selezionate in un database +DMIN = DB.MIN ## Restituisce il valore minimo dalle voci di un database selezionate +DPRODUCT = DB.PRODOTTO ## Moltiplica i valori in un determinato campo di record che soddisfano i criteri del database +DSTDEV = DB.DEV.ST ## Restituisce una stima della deviazione standard sulla base di un campione di voci di un database selezionate +DSTDEVP = DB.DEV.ST.POP ## Calcola la deviazione standard sulla base di tutte le voci di un database selezionate +DSUM = DB.SOMMA ## Aggiunge i numeri nel campo colonna di record del database che soddisfa determinati criteri +DVAR = DB.VAR ## Restituisce una stima della varianza sulla base di un campione da voci di un database selezionate +DVARP = DB.VAR.POP ## Calcola la varianza sulla base di tutte le voci di un database selezionate + + +## +## Date and time functions Funzioni data e ora +## +DATE = DATA ## Restituisce il numero seriale di una determinata data +DATEVALUE = DATA.VALORE ## Converte una data sotto forma di testo in un numero seriale +DAY = GIORNO ## Converte un numero seriale in un giorno del mese +DAYS360 = GIORNO360 ## Calcola il numero di giorni compreso tra due date basandosi su un anno di 360 giorni +EDATE = DATA.MESE ## Restituisce il numero seriale della data che rappresenta il numero di mesi prima o dopo la data di inizio +EOMONTH = FINE.MESE ## Restituisce il numero seriale dell'ultimo giorno del mese, prima o dopo un determinato numero di mesi +HOUR = ORA ## Converte un numero seriale in un'ora +MINUTE = MINUTO ## Converte un numero seriale in un minuto +MONTH = MESE ## Converte un numero seriale in un mese +NETWORKDAYS = GIORNI.LAVORATIVI.TOT ## Restituisce il numero di tutti i giorni lavorativi compresi fra due date +NOW = ADESSO ## Restituisce il numero seriale della data e dell'ora corrente +SECOND = SECONDO ## Converte un numero seriale in un secondo +TIME = ORARIO ## Restituisce il numero seriale di una determinata ora +TIMEVALUE = ORARIO.VALORE ## Converte un orario in forma di testo in un numero seriale +TODAY = OGGI ## Restituisce il numero seriale relativo alla data odierna +WEEKDAY = GIORNO.SETTIMANA ## Converte un numero seriale in un giorno della settimana +WEEKNUM = NUM.SETTIMANA ## Converte un numero seriale in un numero che rappresenta la posizione numerica di una settimana nell'anno +WORKDAY = GIORNO.LAVORATIVO ## Restituisce il numero della data prima o dopo un determinato numero di giorni lavorativi +YEAR = ANNO ## Converte un numero seriale in un anno +YEARFRAC = FRAZIONE.ANNO ## Restituisce la frazione dell'anno che rappresenta il numero dei giorni compresi tra una data_ iniziale e una data_finale + + +## +## Engineering functions Funzioni ingegneristiche +## +BESSELI = BESSEL.I ## Restituisce la funzione di Bessel modificata In(x) +BESSELJ = BESSEL.J ## Restituisce la funzione di Bessel Jn(x) +BESSELK = BESSEL.K ## Restituisce la funzione di Bessel modificata Kn(x) +BESSELY = BESSEL.Y ## Restituisce la funzione di Bessel Yn(x) +BIN2DEC = BINARIO.DECIMALE ## Converte un numero binario in decimale +BIN2HEX = BINARIO.HEX ## Converte un numero binario in esadecimale +BIN2OCT = BINARIO.OCT ## Converte un numero binario in ottale +COMPLEX = COMPLESSO ## Converte i coefficienti reali e immaginari in numeri complessi +CONVERT = CONVERTI ## Converte un numero da un sistema di misura in un altro +DEC2BIN = DECIMALE.BINARIO ## Converte un numero decimale in binario +DEC2HEX = DECIMALE.HEX ## Converte un numero decimale in esadecimale +DEC2OCT = DECIMALE.OCT ## Converte un numero decimale in ottale +DELTA = DELTA ## Verifica se due valori sono uguali +ERF = FUNZ.ERRORE ## Restituisce la funzione di errore +ERFC = FUNZ.ERRORE.COMP ## Restituisce la funzione di errore complementare +GESTEP = SOGLIA ## Verifica se un numero è maggiore del valore di soglia +HEX2BIN = HEX.BINARIO ## Converte un numero esadecimale in binario +HEX2DEC = HEX.DECIMALE ## Converte un numero esadecimale in decimale +HEX2OCT = HEX.OCT ## Converte un numero esadecimale in ottale +IMABS = COMP.MODULO ## Restituisce il valore assoluto (modulo) di un numero complesso +IMAGINARY = COMP.IMMAGINARIO ## Restituisce il coefficiente immaginario di un numero complesso +IMARGUMENT = COMP.ARGOMENTO ## Restituisce l'argomento theta, un angolo espresso in radianti +IMCONJUGATE = COMP.CONIUGATO ## Restituisce il complesso coniugato del numero complesso +IMCOS = COMP.COS ## Restituisce il coseno di un numero complesso +IMDIV = COMP.DIV ## Restituisce il quoziente di due numeri complessi +IMEXP = COMP.EXP ## Restituisce il valore esponenziale di un numero complesso +IMLN = COMP.LN ## Restituisce il logaritmo naturale di un numero complesso +IMLOG10 = COMP.LOG10 ## Restituisce il logaritmo in base 10 di un numero complesso +IMLOG2 = COMP.LOG2 ## Restituisce un logaritmo in base 2 di un numero complesso +IMPOWER = COMP.POTENZA ## Restituisce il numero complesso elevato a una potenza intera +IMPRODUCT = COMP.PRODOTTO ## Restituisce il prodotto di numeri complessi compresi tra 2 e 29 +IMREAL = COMP.PARTE.REALE ## Restituisce il coefficiente reale di un numero complesso +IMSIN = COMP.SEN ## Restituisce il seno di un numero complesso +IMSQRT = COMP.RADQ ## Restituisce la radice quadrata di un numero complesso +IMSUB = COMP.DIFF ## Restituisce la differenza fra due numeri complessi +IMSUM = COMP.SOMMA ## Restituisce la somma di numeri complessi +OCT2BIN = OCT.BINARIO ## Converte un numero ottale in binario +OCT2DEC = OCT.DECIMALE ## Converte un numero ottale in decimale +OCT2HEX = OCT.HEX ## Converte un numero ottale in esadecimale + + +## +## Financial functions Funzioni finanziarie +## +ACCRINT = INT.MATURATO.PER ## Restituisce l'interesse maturato di un titolo che paga interessi periodici +ACCRINTM = INT.MATURATO.SCAD ## Restituisce l'interesse maturato di un titolo che paga interessi alla scadenza +AMORDEGRC = AMMORT.DEGR ## Restituisce l'ammortamento per ogni periodo contabile utilizzando un coefficiente di ammortamento +AMORLINC = AMMORT.PER ## Restituisce l'ammortamento per ogni periodo contabile +COUPDAYBS = GIORNI.CED.INIZ.LIQ ## Restituisce il numero dei giorni che vanno dall'inizio del periodo di durata della cedola alla data di liquidazione +COUPDAYS = GIORNI.CED ## Restituisce il numero dei giorni relativi al periodo della cedola che contiene la data di liquidazione +COUPDAYSNC = GIORNI.CED.NUOVA ## Restituisce il numero di giorni che vanno dalla data di liquidazione alla data della cedola successiva +COUPNCD = DATA.CED.SUCC ## Restituisce un numero che rappresenta la data della cedola successiva alla data di liquidazione +COUPNUM = NUM.CED ## Restituisce il numero di cedole pagabili fra la data di liquidazione e la data di scadenza +COUPPCD = DATA.CED.PREC ## Restituisce un numero che rappresenta la data della cedola precedente alla data di liquidazione +CUMIPMT = INT.CUMUL ## Restituisce l'interesse cumulativo pagato fra due periodi +CUMPRINC = CAP.CUM ## Restituisce il capitale cumulativo pagato per estinguere un debito fra due periodi +DB = DB ## Restituisce l'ammortamento di un bene per un periodo specificato utilizzando il metodo di ammortamento a quote fisse decrescenti +DDB = AMMORT ## Restituisce l'ammortamento di un bene per un periodo specificato utilizzando il metodo di ammortamento a doppie quote decrescenti o altri metodi specificati +DISC = TASSO.SCONTO ## Restituisce il tasso di sconto per un titolo +DOLLARDE = VALUTA.DEC ## Converte un prezzo valuta, espresso come frazione, in prezzo valuta, espresso come numero decimale +DOLLARFR = VALUTA.FRAZ ## Converte un prezzo valuta, espresso come numero decimale, in prezzo valuta, espresso come frazione +DURATION = DURATA ## Restituisce la durata annuale di un titolo con i pagamenti di interesse periodico +EFFECT = EFFETTIVO ## Restituisce l'effettivo tasso di interesse annuo +FV = VAL.FUT ## Restituisce il valore futuro di un investimento +FVSCHEDULE = VAL.FUT.CAPITALE ## Restituisce il valore futuro di un capitale iniziale dopo aver applicato una serie di tassi di interesse composti +INTRATE = TASSO.INT ## Restituisce il tasso di interesse per un titolo interamente investito +IPMT = INTERESSI ## Restituisce il valore degli interessi per un investimento relativo a un periodo specifico +IRR = TIR.COST ## Restituisce il tasso di rendimento interno per una serie di flussi di cassa +ISPMT = INTERESSE.RATA ## Calcola l'interesse di un investimento pagato durante un periodo specifico +MDURATION = DURATA.M ## Restituisce la durata Macauley modificata per un titolo con un valore presunto di € 100 +MIRR = TIR.VAR ## Restituisce il tasso di rendimento interno in cui i flussi di cassa positivi e negativi sono finanziati a tassi differenti +NOMINAL = NOMINALE ## Restituisce il tasso di interesse nominale annuale +NPER = NUM.RATE ## Restituisce un numero di periodi relativi a un investimento +NPV = VAN ## Restituisce il valore attuale netto di un investimento basato su una serie di flussi di cassa periodici e sul tasso di sconto +ODDFPRICE = PREZZO.PRIMO.IRR ## Restituisce il prezzo di un titolo dal valore nominale di € 100 avente il primo periodo di durata irregolare +ODDFYIELD = REND.PRIMO.IRR ## Restituisce il rendimento di un titolo avente il primo periodo di durata irregolare +ODDLPRICE = PREZZO.ULTIMO.IRR ## Restituisce il prezzo di un titolo dal valore nominale di € 100 avente l'ultimo periodo di durata irregolare +ODDLYIELD = REND.ULTIMO.IRR ## Restituisce il rendimento di un titolo avente l'ultimo periodo di durata irregolare +PMT = RATA ## Restituisce il pagamento periodico di una rendita annua +PPMT = P.RATA ## Restituisce il pagamento sul capitale di un investimento per un dato periodo +PRICE = PREZZO ## Restituisce il prezzo di un titolo dal valore nominale di € 100 che paga interessi periodici +PRICEDISC = PREZZO.SCONT ## Restituisce il prezzo di un titolo scontato dal valore nominale di € 100 +PRICEMAT = PREZZO.SCAD ## Restituisce il prezzo di un titolo dal valore nominale di € 100 che paga gli interessi alla scadenza +PV = VA ## Restituisce il valore attuale di un investimento +RATE = TASSO ## Restituisce il tasso di interesse per un periodo di un'annualità +RECEIVED = RICEV.SCAD ## Restituisce l'ammontare ricevuto alla scadenza di un titolo interamente investito +SLN = AMMORT.COST ## Restituisce l'ammortamento a quote costanti di un bene per un singolo periodo +SYD = AMMORT.ANNUO ## Restituisce l'ammortamento a somma degli anni di un bene per un periodo specificato +TBILLEQ = BOT.EQUIV ## Restituisce il rendimento equivalente ad un'obbligazione per un Buono ordinario del Tesoro +TBILLPRICE = BOT.PREZZO ## Restituisce il prezzo di un Buono del Tesoro dal valore nominale di € 100 +TBILLYIELD = BOT.REND ## Restituisce il rendimento di un Buono del Tesoro +VDB = AMMORT.VAR ## Restituisce l'ammortamento di un bene per un periodo specificato o parziale utilizzando il metodo a doppie quote proporzionali ai valori residui +XIRR = TIR.X ## Restituisce il tasso di rendimento interno di un impiego di flussi di cassa +XNPV = VAN.X ## Restituisce il valore attuale netto di un impiego di flussi di cassa non necessariamente periodici +YIELD = REND ## Restituisce il rendimento di un titolo che frutta interessi periodici +YIELDDISC = REND.TITOLI.SCONT ## Restituisce il rendimento annuale di un titolo scontato, ad esempio un Buono del Tesoro +YIELDMAT = REND.SCAD ## Restituisce il rendimento annuo di un titolo che paga interessi alla scadenza + + +## +## Information functions Funzioni relative alle informazioni +## +CELL = CELLA ## Restituisce le informazioni sulla formattazione, la posizione o i contenuti di una cella +ERROR.TYPE = ERRORE.TIPO ## Restituisce un numero che corrisponde a un tipo di errore +INFO = INFO ## Restituisce le informazioni sull'ambiente operativo corrente +ISBLANK = VAL.VUOTO ## Restituisce VERO se il valore è vuoto +ISERR = VAL.ERR ## Restituisce VERO se il valore è un valore di errore qualsiasi tranne #N/D +ISERROR = VAL.ERRORE ## Restituisce VERO se il valore è un valore di errore qualsiasi +ISEVEN = VAL.PARI ## Restituisce VERO se il numero è pari +ISLOGICAL = VAL.LOGICO ## Restituisce VERO se il valore è un valore logico +ISNA = VAL.NON.DISP ## Restituisce VERO se il valore è un valore di errore #N/D +ISNONTEXT = VAL.NON.TESTO ## Restituisce VERO se il valore non è in formato testo +ISNUMBER = VAL.NUMERO ## Restituisce VERO se il valore è un numero +ISODD = VAL.DISPARI ## Restituisce VERO se il numero è dispari +ISREF = VAL.RIF ## Restituisce VERO se il valore è un riferimento +ISTEXT = VAL.TESTO ## Restituisce VERO se il valore è in formato testo +N = NUM ## Restituisce un valore convertito in numero +NA = NON.DISP ## Restituisce il valore di errore #N/D +TYPE = TIPO ## Restituisce un numero che indica il tipo di dati relativi a un valore + + +## +## Logical functions Funzioni logiche +## +AND = E ## Restituisce VERO se tutti gli argomenti sono VERO +FALSE = FALSO ## Restituisce il valore logico FALSO +IF = SE ## Specifica un test logico da eseguire +IFERROR = SE.ERRORE ## Restituisce un valore specificato se una formula fornisce un errore come risultato; in caso contrario, restituisce il risultato della formula +NOT = NON ## Inverte la logica degli argomenti +OR = O ## Restituisce VERO se un argomento qualsiasi è VERO +TRUE = VERO ## Restituisce il valore logico VERO + + +## +## Lookup and reference functions Funzioni di ricerca e di riferimento +## +ADDRESS = INDIRIZZO ## Restituisce un riferimento come testo in una singola cella di un foglio di lavoro +AREAS = AREE ## Restituisce il numero di aree in un riferimento +CHOOSE = SCEGLI ## Sceglie un valore da un elenco di valori +COLUMN = RIF.COLONNA ## Restituisce il numero di colonna di un riferimento +COLUMNS = COLONNE ## Restituisce il numero di colonne in un riferimento +HLOOKUP = CERCA.ORIZZ ## Effettua una ricerca nella riga superiore di una matrice e restituisce il valore della cella specificata +HYPERLINK = COLLEG.IPERTESTUALE ## Crea un collegamento che apre un documento memorizzato in un server di rete, una rete Intranet o Internet +INDEX = INDICE ## Utilizza un indice per scegliere un valore da un riferimento o da una matrice +INDIRECT = INDIRETTO ## Restituisce un riferimento specificato da un valore testo +LOOKUP = CERCA ## Ricerca i valori in un vettore o in una matrice +MATCH = CONFRONTA ## Ricerca i valori in un riferimento o in una matrice +OFFSET = SCARTO ## Restituisce uno scarto di riferimento da un riferimento dato +ROW = RIF.RIGA ## Restituisce il numero di riga di un riferimento +ROWS = RIGHE ## Restituisce il numero delle righe in un riferimento +RTD = DATITEMPOREALE ## Recupera dati in tempo reale da un programma che supporta l'automazione COM (automazione: Metodo per utilizzare gli oggetti di un'applicazione da un'altra applicazione o da un altro strumento di sviluppo. Precedentemente nota come automazione OLE, l'automazione è uno standard del settore e una caratteristica del modello COM (Component Object Model).) +TRANSPOSE = MATR.TRASPOSTA ## Restituisce la trasposizione di una matrice +VLOOKUP = CERCA.VERT ## Effettua una ricerca nella prima colonna di una matrice e si sposta attraverso la riga per restituire il valore di una cella + + +## +## Math and trigonometry functions Funzioni matematiche e trigonometriche +## +ABS = ASS ## Restituisce il valore assoluto di un numero. +ACOS = ARCCOS ## Restituisce l'arcocoseno di un numero +ACOSH = ARCCOSH ## Restituisce l'inverso del coseno iperbolico di un numero +ASIN = ARCSEN ## Restituisce l'arcoseno di un numero +ASINH = ARCSENH ## Restituisce l'inverso del seno iperbolico di un numero +ATAN = ARCTAN ## Restituisce l'arcotangente di un numero +ATAN2 = ARCTAN.2 ## Restituisce l'arcotangente delle coordinate x e y specificate +ATANH = ARCTANH ## Restituisce l'inverso della tangente iperbolica di un numero +CEILING = ARROTONDA.ECCESSO ## Arrotonda un numero per eccesso all'intero più vicino o al multiplo più vicino a peso +COMBIN = COMBINAZIONE ## Restituisce il numero di combinazioni possibili per un numero assegnato di elementi +COS = COS ## Restituisce il coseno dell'angolo specificato +COSH = COSH ## Restituisce il coseno iperbolico di un numero +DEGREES = GRADI ## Converte i radianti in gradi +EVEN = PARI ## Arrotonda il valore assoluto di un numero per eccesso al più vicino intero pari +EXP = ESP ## Restituisce il numero e elevato alla potenza di num +FACT = FATTORIALE ## Restituisce il fattoriale di un numero +FACTDOUBLE = FATT.DOPPIO ## Restituisce il fattoriale doppio di un numero +FLOOR = ARROTONDA.DIFETTO ## Arrotonda un numero per difetto al multiplo più vicino a zero +GCD = MCD ## Restituisce il massimo comune divisore +INT = INT ## Arrotonda un numero per difetto al numero intero più vicino +LCM = MCM ## Restituisce il minimo comune multiplo +LN = LN ## Restituisce il logaritmo naturale di un numero +LOG = LOG ## Restituisce il logaritmo di un numero in una specificata base +LOG10 = LOG10 ## Restituisce il logaritmo in base 10 di un numero +MDETERM = MATR.DETERM ## Restituisce il determinante di una matrice +MINVERSE = MATR.INVERSA ## Restituisce l'inverso di una matrice +MMULT = MATR.PRODOTTO ## Restituisce il prodotto di due matrici +MOD = RESTO ## Restituisce il resto della divisione +MROUND = ARROTONDA.MULTIPLO ## Restituisce un numero arrotondato al multiplo desiderato +MULTINOMIAL = MULTINOMIALE ## Restituisce il multinomiale di un insieme di numeri +ODD = DISPARI ## Arrotonda un numero per eccesso al più vicino intero dispari +PI = PI.GRECO ## Restituisce il valore di pi greco +POWER = POTENZA ## Restituisce il risultato di un numero elevato a potenza +PRODUCT = PRODOTTO ## Moltiplica i suoi argomenti +QUOTIENT = QUOZIENTE ## Restituisce la parte intera di una divisione +RADIANS = RADIANTI ## Converte i gradi in radianti +RAND = CASUALE ## Restituisce un numero casuale compreso tra 0 e 1 +RANDBETWEEN = CASUALE.TRA ## Restituisce un numero casuale compreso tra i numeri specificati +ROMAN = ROMANO ## Restituisce il numero come numero romano sotto forma di testo +ROUND = ARROTONDA ## Arrotonda il numero al numero di cifre specificato +ROUNDDOWN = ARROTONDA.PER.DIF ## Arrotonda il valore assoluto di un numero per difetto +ROUNDUP = ARROTONDA.PER.ECC ## Arrotonda il valore assoluto di un numero per eccesso +SERIESSUM = SOMMA.SERIE ## Restituisce la somma di una serie di potenze in base alla formula +SIGN = SEGNO ## Restituisce il segno di un numero +SIN = SEN ## Restituisce il seno di un dato angolo +SINH = SENH ## Restituisce il seno iperbolico di un numero +SQRT = RADQ ## Restituisce una radice quadrata +SQRTPI = RADQ.PI.GRECO ## Restituisce la radice quadrata di un numero (numero * pi greco) +SUBTOTAL = SUBTOTALE ## Restituisce un subtotale in un elenco o in un database +SUM = SOMMA ## Somma i suoi argomenti +SUMIF = SOMMA.SE ## Somma le celle specificate da un dato criterio +SUMIFS = SOMMA.PIÙ.SE ## Somma le celle in un intervallo che soddisfano più criteri +SUMPRODUCT = MATR.SOMMA.PRODOTTO ## Restituisce la somma dei prodotti dei componenti corrispondenti della matrice +SUMSQ = SOMMA.Q ## Restituisce la somma dei quadrati degli argomenti +SUMX2MY2 = SOMMA.DIFF.Q ## Restituisce la somma della differenza dei quadrati dei corrispondenti elementi in due matrici +SUMX2PY2 = SOMMA.SOMMA.Q ## Restituisce la somma della somma dei quadrati dei corrispondenti elementi in due matrici +SUMXMY2 = SOMMA.Q.DIFF ## Restituisce la somma dei quadrati delle differenze dei corrispondenti elementi in due matrici +TAN = TAN ## Restituisce la tangente di un numero +TANH = TANH ## Restituisce la tangente iperbolica di un numero +TRUNC = TRONCA ## Tronca la parte decimale di un numero + + +## +## Statistical functions Funzioni statistiche +## +AVEDEV = MEDIA.DEV ## Restituisce la media delle deviazioni assolute delle coordinate rispetto alla loro media +AVERAGE = MEDIA ## Restituisce la media degli argomenti +AVERAGEA = MEDIA.VALORI ## Restituisce la media degli argomenti, inclusi i numeri, il testo e i valori logici +AVERAGEIF = MEDIA.SE ## Restituisce la media aritmetica di tutte le celle in un intervallo che soddisfano un determinato criterio +AVERAGEIFS = MEDIA.PIÙ.SE ## Restituisce la media aritmetica di tutte le celle che soddisfano più criteri +BETADIST = DISTRIB.BETA ## Restituisce la funzione di distribuzione cumulativa beta +BETAINV = INV.BETA ## Restituisce l'inverso della funzione di distribuzione cumulativa per una distribuzione beta specificata +BINOMDIST = DISTRIB.BINOM ## Restituisce la distribuzione binomiale per il termine individuale +CHIDIST = DISTRIB.CHI ## Restituisce la probabilità a una coda per la distribuzione del chi quadrato +CHIINV = INV.CHI ## Restituisce l'inverso della probabilità ad una coda per la distribuzione del chi quadrato +CHITEST = TEST.CHI ## Restituisce il test per l'indipendenza +CONFIDENCE = CONFIDENZA ## Restituisce l'intervallo di confidenza per una popolazione +CORREL = CORRELAZIONE ## Restituisce il coefficiente di correlazione tra due insiemi di dati +COUNT = CONTA.NUMERI ## Conta la quantità di numeri nell'elenco di argomenti +COUNTA = CONTA.VALORI ## Conta il numero di valori nell'elenco di argomenti +COUNTBLANK = CONTA.VUOTE ## Conta il numero di celle vuote all'interno di un intervallo +COUNTIF = CONTA.SE ## Conta il numero di celle all'interno di un intervallo che soddisfa i criteri specificati +COUNTIFS = CONTA.PIÙ.SE ## Conta il numero di celle in un intervallo che soddisfano più criteri. +COVAR = COVARIANZA ## Calcola la covarianza, la media dei prodotti delle deviazioni accoppiate +CRITBINOM = CRIT.BINOM ## Restituisce il più piccolo valore per il quale la distribuzione cumulativa binomiale risulta maggiore o uguale ad un valore di criterio +DEVSQ = DEV.Q ## Restituisce la somma dei quadrati delle deviazioni +EXPONDIST = DISTRIB.EXP ## Restituisce la distribuzione esponenziale +FDIST = DISTRIB.F ## Restituisce la distribuzione di probabilità F +FINV = INV.F ## Restituisce l'inverso della distribuzione della probabilità F +FISHER = FISHER ## Restituisce la trasformazione di Fisher +FISHERINV = INV.FISHER ## Restituisce l'inverso della trasformazione di Fisher +FORECAST = PREVISIONE ## Restituisce i valori lungo una tendenza lineare +FREQUENCY = FREQUENZA ## Restituisce la distribuzione di frequenza come matrice verticale +FTEST = TEST.F ## Restituisce il risultato di un test F +GAMMADIST = DISTRIB.GAMMA ## Restituisce la distribuzione gamma +GAMMAINV = INV.GAMMA ## Restituisce l'inverso della distribuzione cumulativa gamma +GAMMALN = LN.GAMMA ## Restituisce il logaritmo naturale della funzione gamma, G(x) +GEOMEAN = MEDIA.GEOMETRICA ## Restituisce la media geometrica +GROWTH = CRESCITA ## Restituisce i valori lungo una linea di tendenza esponenziale +HARMEAN = MEDIA.ARMONICA ## Restituisce la media armonica +HYPGEOMDIST = DISTRIB.IPERGEOM ## Restituisce la distribuzione ipergeometrica +INTERCEPT = INTERCETTA ## Restituisce l'intercetta della retta di regressione lineare +KURT = CURTOSI ## Restituisce la curtosi di un insieme di dati +LARGE = GRANDE ## Restituisce il k-esimo valore più grande in un insieme di dati +LINEST = REGR.LIN ## Restituisce i parametri di una tendenza lineare +LOGEST = REGR.LOG ## Restituisce i parametri di una linea di tendenza esponenziale +LOGINV = INV.LOGNORM ## Restituisce l'inverso di una distribuzione lognormale +LOGNORMDIST = DISTRIB.LOGNORM ## Restituisce la distribuzione lognormale cumulativa +MAX = MAX ## Restituisce il valore massimo in un elenco di argomenti +MAXA = MAX.VALORI ## Restituisce il valore massimo in un elenco di argomenti, inclusi i numeri, il testo e i valori logici +MEDIAN = MEDIANA ## Restituisce la mediana dei numeri specificati +MIN = MIN ## Restituisce il valore minimo in un elenco di argomenti +MINA = MIN.VALORI ## Restituisce il più piccolo valore in un elenco di argomenti, inclusi i numeri, il testo e i valori logici +MODE = MODA ## Restituisce il valore più comune in un insieme di dati +NEGBINOMDIST = DISTRIB.BINOM.NEG ## Restituisce la distribuzione binomiale negativa +NORMDIST = DISTRIB.NORM ## Restituisce la distribuzione cumulativa normale +NORMINV = INV.NORM ## Restituisce l'inverso della distribuzione cumulativa normale standard +NORMSDIST = DISTRIB.NORM.ST ## Restituisce la distribuzione cumulativa normale standard +NORMSINV = INV.NORM.ST ## Restituisce l'inverso della distribuzione cumulativa normale +PEARSON = PEARSON ## Restituisce il coefficiente del momento di correlazione di Pearson +PERCENTILE = PERCENTILE ## Restituisce il k-esimo dato percentile di valori in un intervallo +PERCENTRANK = PERCENT.RANGO ## Restituisce il rango di un valore in un insieme di dati come percentuale +PERMUT = PERMUTAZIONE ## Restituisce il numero delle permutazioni per un determinato numero di oggetti +POISSON = POISSON ## Restituisce la distribuzione di Poisson +PROB = PROBABILITÀ ## Calcola la probabilità che dei valori in un intervallo siano compresi tra due limiti +QUARTILE = QUARTILE ## Restituisce il quartile di un insieme di dati +RANK = RANGO ## Restituisce il rango di un numero in un elenco di numeri +RSQ = RQ ## Restituisce la radice quadrata del coefficiente di momento di correlazione di Pearson +SKEW = ASIMMETRIA ## Restituisce il grado di asimmetria di una distribuzione +SLOPE = PENDENZA ## Restituisce la pendenza di una retta di regressione lineare +SMALL = PICCOLO ## Restituisce il k-esimo valore più piccolo in un insieme di dati +STANDARDIZE = NORMALIZZA ## Restituisce un valore normalizzato +STDEV = DEV.ST ## Restituisce una stima della deviazione standard sulla base di un campione +STDEVA = DEV.ST.VALORI ## Restituisce una stima della deviazione standard sulla base di un campione, inclusi i numeri, il testo e i valori logici +STDEVP = DEV.ST.POP ## Calcola la deviazione standard sulla base di un'intera popolazione +STDEVPA = DEV.ST.POP.VALORI ## Calcola la deviazione standard sulla base sull'intera popolazione, inclusi i numeri, il testo e i valori logici +STEYX = ERR.STD.YX ## Restituisce l'errore standard del valore previsto per y per ogni valore x nella regressione +TDIST = DISTRIB.T ## Restituisce la distribuzione t di Student +TINV = INV.T ## Restituisce l'inversa della distribuzione t di Student +TREND = TENDENZA ## Restituisce i valori lungo una linea di tendenza lineare +TRIMMEAN = MEDIA.TRONCATA ## Restituisce la media della parte interna di un insieme di dati +TTEST = TEST.T ## Restituisce la probabilità associata ad un test t di Student +VAR = VAR ## Stima la varianza sulla base di un campione +VARA = VAR.VALORI ## Stima la varianza sulla base di un campione, inclusi i numeri, il testo e i valori logici +VARP = VAR.POP ## Calcola la varianza sulla base dell'intera popolazione +VARPA = VAR.POP.VALORI ## Calcola la deviazione standard sulla base sull'intera popolazione, inclusi i numeri, il testo e i valori logici +WEIBULL = WEIBULL ## Restituisce la distribuzione di Weibull +ZTEST = TEST.Z ## Restituisce il valore di probabilità a una coda per un test z + + +## +## Text functions Funzioni di testo +## +ASC = ASC ## Modifica le lettere inglesi o il katakana a doppio byte all'interno di una stringa di caratteri in caratteri a singolo byte +BAHTTEXT = BAHTTESTO ## Converte un numero in testo, utilizzando il formato valuta ß (baht) +CHAR = CODICE.CARATT ## Restituisce il carattere specificato dal numero di codice +CLEAN = LIBERA ## Elimina dal testo tutti i caratteri che non è possibile stampare +CODE = CODICE ## Restituisce il codice numerico del primo carattere di una stringa di testo +CONCATENATE = CONCATENA ## Unisce diversi elementi di testo in un unico elemento di testo +DOLLAR = VALUTA ## Converte un numero in testo, utilizzando il formato valuta € (euro) +EXACT = IDENTICO ## Verifica se due valori di testo sono uguali +FIND = TROVA ## Rileva un valore di testo all'interno di un altro (distinzione tra maiuscole e minuscole) +FINDB = TROVA.B ## Rileva un valore di testo all'interno di un altro (distinzione tra maiuscole e minuscole) +FIXED = FISSO ## Formatta un numero come testo con un numero fisso di decimali +JIS = ORDINAMENTO.JIS ## Modifica le lettere inglesi o i caratteri katakana a byte singolo all'interno di una stringa di caratteri in caratteri a byte doppio. +LEFT = SINISTRA ## Restituisce il carattere più a sinistra di un valore di testo +LEFTB = SINISTRA.B ## Restituisce il carattere più a sinistra di un valore di testo +LEN = LUNGHEZZA ## Restituisce il numero di caratteri di una stringa di testo +LENB = LUNB ## Restituisce il numero di caratteri di una stringa di testo +LOWER = MINUSC ## Converte il testo in lettere minuscole +MID = MEDIA ## Restituisce un numero specifico di caratteri di una stringa di testo a partire dalla posizione specificata +MIDB = MEDIA.B ## Restituisce un numero specifico di caratteri di una stringa di testo a partire dalla posizione specificata +PHONETIC = FURIGANA ## Estrae i caratteri fonetici (furigana) da una stringa di testo. +PROPER = MAIUSC.INIZ ## Converte in maiuscolo la prima lettera di ogni parola di un valore di testo +REPLACE = RIMPIAZZA ## Sostituisce i caratteri all'interno di un testo +REPLACEB = SOSTITUISCI.B ## Sostituisce i caratteri all'interno di un testo +REPT = RIPETI ## Ripete un testo per un dato numero di volte +RIGHT = DESTRA ## Restituisce il carattere più a destra di un valore di testo +RIGHTB = DESTRA.B ## Restituisce il carattere più a destra di un valore di testo +SEARCH = RICERCA ## Rileva un valore di testo all'interno di un altro (non è sensibile alle maiuscole e minuscole) +SEARCHB = CERCA.B ## Rileva un valore di testo all'interno di un altro (non è sensibile alle maiuscole e minuscole) +SUBSTITUTE = SOSTITUISCI ## Sostituisce il nuovo testo al testo contenuto in una stringa +T = T ## Converte gli argomenti in testo +TEXT = TESTO ## Formatta un numero e lo converte in testo +TRIM = ANNULLA.SPAZI ## Elimina gli spazi dal testo +UPPER = MAIUSC ## Converte il testo in lettere maiuscole +VALUE = VALORE ## Converte un argomento di testo in numero diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/nl/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/nl/config new file mode 100644 index 0000000..48dcc15 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/nl/config @@ -0,0 +1,47 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = € + + +## +## Excel Error Codes (For future use) +## +NULL = #LEEG! +DIV0 = #DEEL/0! +VALUE = #WAARDE! +REF = #VERW! +NAME = #NAAM? +NUM = #GETAL! +NA = #N/B diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/nl/functions b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/nl/functions new file mode 100644 index 0000000..573600a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/nl/functions @@ -0,0 +1,438 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Calculation +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## Data in this file derived from http://www.piuha.fi/excel-function-name-translation/ +## +## + + +## +## Add-in and Automation functions Automatiseringsfuncties en functies in invoegtoepassingen +## +GETPIVOTDATA = DRAAITABEL.OPHALEN ## Geeft gegevens uit een draaitabelrapport als resultaat + + +## +## Cube functions Kubusfuncties +## +CUBEKPIMEMBER = KUBUSKPILID ## Retourneert de naam, eigenschap en waarde van een KPI (prestatie-indicator) en geeft de naam en de eigenschap in de cel weer. Een KPI is een meetbare waarde, zoals de maandelijkse brutowinst of de omzet per kwartaal per werknemer, die wordt gebruikt om de prestaties van een organisatie te bewaken +CUBEMEMBER = KUBUSLID ## Retourneert een lid of tupel in een kubushiërarchie. Wordt gebruikt om te controleren of het lid of de tupel in de kubus aanwezig is +CUBEMEMBERPROPERTY = KUBUSLIDEIGENSCHAP ## Retourneert de waarde van een lideigenschap in de kubus. Wordt gebruikt om te controleren of de lidnaam in de kubus bestaat en retourneert de opgegeven eigenschap voor dit lid +CUBERANKEDMEMBER = KUBUSGERANGCHIKTLID ## Retourneert het zoveelste, gerangschikte lid in een set. Wordt gebruikt om een of meer elementen in een set te retourneren, zoals de tien beste verkopers of de tien beste studenten +CUBESET = KUBUSSET ## Definieert een berekende set leden of tupels door een ingestelde expressie naar de kubus op de server te sturen, alwaar de set wordt gemaakt en vervolgens wordt geretourneerd naar Microsoft Office Excel +CUBESETCOUNT = KUBUSSETAANTAL ## Retourneert het aantal onderdelen in een set +CUBEVALUE = KUBUSWAARDE ## Retourneert een samengestelde waarde van een kubus + + +## +## Database functions Databasefuncties +## +DAVERAGE = DBGEMIDDELDE ## Berekent de gemiddelde waarde in geselecteerde databasegegevens +DCOUNT = DBAANTAL ## Telt de cellen met getallen in een database +DCOUNTA = DBAANTALC ## Telt de niet-lege cellen in een database +DGET = DBLEZEN ## Retourneert één record dat voldoet aan de opgegeven criteria uit een database +DMAX = DBMAX ## Retourneert de maximumwaarde in de geselecteerde databasegegevens +DMIN = DBMIN ## Retourneert de minimumwaarde in de geselecteerde databasegegevens +DPRODUCT = DBPRODUCT ## Vermenigvuldigt de waarden in een bepaald veld van de records die voldoen aan de criteria in een database +DSTDEV = DBSTDEV ## Maakt een schatting van de standaarddeviatie op basis van een steekproef uit geselecteerde databasegegevens +DSTDEVP = DBSTDEVP ## Berekent de standaarddeviatie op basis van de volledige populatie van geselecteerde databasegegevens +DSUM = DBSOM ## Telt de getallen uit een kolom records in de database op die voldoen aan de criteria +DVAR = DBVAR ## Maakt een schatting van de variantie op basis van een steekproef uit geselecteerde databasegegevens +DVARP = DBVARP ## Berekent de variantie op basis van de volledige populatie van geselecteerde databasegegevens + + +## +## Date and time functions Datum- en tijdfuncties +## +DATE = DATUM ## Geeft als resultaat het seriële getal van een opgegeven datum +DATEVALUE = DATUMWAARDE ## Converteert een datum in de vorm van tekst naar een serieel getal +DAY = DAG ## Converteert een serieel getal naar een dag van de maand +DAYS360 = DAGEN360 ## Berekent het aantal dagen tussen twee datums op basis van een jaar met 360 dagen +EDATE = ZELFDE.DAG ## Geeft als resultaat het seriële getal van een datum die het opgegeven aantal maanden voor of na de begindatum ligt +EOMONTH = LAATSTE.DAG ## Geeft als resultaat het seriële getal van de laatste dag van de maand voor of na het opgegeven aantal maanden +HOUR = UUR ## Converteert een serieel getal naar uren +MINUTE = MINUUT ## Converteert een serieel naar getal minuten +MONTH = MAAND ## Converteert een serieel getal naar een maand +NETWORKDAYS = NETTO.WERKDAGEN ## Geeft als resultaat het aantal hele werkdagen tussen twee datums +NOW = NU ## Geeft als resultaat het seriële getal van de huidige datum en tijd +SECOND = SECONDE ## Converteert een serieel getal naar seconden +TIME = TIJD ## Geeft als resultaat het seriële getal van een bepaald tijdstip +TIMEVALUE = TIJDWAARDE ## Converteert de tijd in de vorm van tekst naar een serieel getal +TODAY = VANDAAG ## Geeft als resultaat het seriële getal van de huidige datum +WEEKDAY = WEEKDAG ## Converteert een serieel getal naar een weekdag +WEEKNUM = WEEKNUMMER ## Converteert een serieel getal naar een weeknummer +WORKDAY = WERKDAG ## Geeft als resultaat het seriële getal van de datum voor of na een bepaald aantal werkdagen +YEAR = JAAR ## Converteert een serieel getal naar een jaar +YEARFRAC = JAAR.DEEL ## Geeft als resultaat het gedeelte van het jaar, uitgedrukt in het aantal hele dagen tussen begindatum en einddatum + + +## +## Engineering functions Technische functies +## +BESSELI = BESSEL.Y ## Geeft als resultaat de gewijzigde Bessel-functie In(x) +BESSELJ = BESSEL.J ## Geeft als resultaat de Bessel-functie Jn(x) +BESSELK = BESSEL.K ## Geeft als resultaat de gewijzigde Bessel-functie Kn(x) +BESSELY = BESSEL.Y ## Geeft als resultaat de gewijzigde Bessel-functie Yn(x) +BIN2DEC = BIN.N.DEC ## Converteert een binair getal naar een decimaal getal +BIN2HEX = BIN.N.HEX ## Converteert een binair getal naar een hexadecimaal getal +BIN2OCT = BIN.N.OCT ## Converteert een binair getal naar een octaal getal +COMPLEX = COMPLEX ## Converteert reële en imaginaire coëfficiënten naar een complex getal +CONVERT = CONVERTEREN ## Converteert een getal in de ene maateenheid naar een getal in een andere maateenheid +DEC2BIN = DEC.N.BIN ## Converteert een decimaal getal naar een binair getal +DEC2HEX = DEC.N.HEX ## Converteert een decimaal getal naar een hexadecimaal getal +DEC2OCT = DEC.N.OCT ## Converteert een decimaal getal naar een octaal getal +DELTA = DELTA ## Test of twee waarden gelijk zijn +ERF = FOUTFUNCTIE ## Geeft als resultaat de foutfunctie +ERFC = FOUT.COMPLEMENT ## Geeft als resultaat de complementaire foutfunctie +GESTEP = GROTER.DAN ## Test of een getal groter is dan de drempelwaarde +HEX2BIN = HEX.N.BIN ## Converteert een hexadecimaal getal naar een binair getal +HEX2DEC = HEX.N.DEC ## Converteert een hexadecimaal getal naar een decimaal getal +HEX2OCT = HEX.N.OCT ## Converteert een hexadecimaal getal naar een octaal getal +IMABS = C.ABS ## Geeft als resultaat de absolute waarde (modulus) van een complex getal +IMAGINARY = C.IM.DEEL ## Geeft als resultaat de imaginaire coëfficiënt van een complex getal +IMARGUMENT = C.ARGUMENT ## Geeft als resultaat het argument thèta, een hoek uitgedrukt in radialen +IMCONJUGATE = C.TOEGEVOEGD ## Geeft als resultaat het complexe toegevoegde getal van een complex getal +IMCOS = C.COS ## Geeft als resultaat de cosinus van een complex getal +IMDIV = C.QUOTIENT ## Geeft als resultaat het quotiënt van twee complexe getallen +IMEXP = C.EXP ## Geeft als resultaat de exponent van een complex getal +IMLN = C.LN ## Geeft als resultaat de natuurlijke logaritme van een complex getal +IMLOG10 = C.LOG10 ## Geeft als resultaat de logaritme met grondtal 10 van een complex getal +IMLOG2 = C.LOG2 ## Geeft als resultaat de logaritme met grondtal 2 van een complex getal +IMPOWER = C.MACHT ## Geeft als resultaat een complex getal dat is verheven tot de macht van een geheel getal +IMPRODUCT = C.PRODUCT ## Geeft als resultaat het product van complexe getallen +IMREAL = C.REEEL.DEEL ## Geeft als resultaat de reële coëfficiënt van een complex getal +IMSIN = C.SIN ## Geeft als resultaat de sinus van een complex getal +IMSQRT = C.WORTEL ## Geeft als resultaat de vierkantswortel van een complex getal +IMSUB = C.VERSCHIL ## Geeft als resultaat het verschil tussen twee complexe getallen +IMSUM = C.SOM ## Geeft als resultaat de som van complexe getallen +OCT2BIN = OCT.N.BIN ## Converteert een octaal getal naar een binair getal +OCT2DEC = OCT.N.DEC ## Converteert een octaal getal naar een decimaal getal +OCT2HEX = OCT.N.HEX ## Converteert een octaal getal naar een hexadecimaal getal + + +## +## Financial functions Financiële functies +## +ACCRINT = SAMENG.RENTE ## Berekent de opgelopen rente voor een waardepapier waarvan de rente periodiek wordt uitgekeerd +ACCRINTM = SAMENG.RENTE.V ## Berekent de opgelopen rente voor een waardepapier waarvan de rente op de vervaldatum wordt uitgekeerd +AMORDEGRC = AMORDEGRC ## Geeft als resultaat de afschrijving voor elke boekingsperiode door een afschrijvingscoëfficiënt toe te passen +AMORLINC = AMORLINC ## Berekent de afschrijving voor elke boekingsperiode +COUPDAYBS = COUP.DAGEN.BB ## Berekent het aantal dagen vanaf het begin van de coupontermijn tot de stortingsdatum +COUPDAYS = COUP.DAGEN ## Geeft als resultaat het aantal dagen in de coupontermijn waarin de stortingsdatum valt +COUPDAYSNC = COUP.DAGEN.VV ## Geeft als resultaat het aantal dagen vanaf de stortingsdatum tot de volgende couponvervaldatum +COUPNCD = COUP.DATUM.NB ## Geeft als resultaat de volgende coupondatum na de stortingsdatum +COUPNUM = COUP.AANTAL ## Geeft als resultaat het aantal coupons dat nog moet worden uitbetaald tussen de stortingsdatum en de vervaldatum +COUPPCD = COUP.DATUM.VB ## Geeft als resultaat de vorige couponvervaldatum vóór de stortingsdatum +CUMIPMT = CUM.RENTE ## Geeft als resultaat de cumulatieve rente die tussen twee termijnen is uitgekeerd +CUMPRINC = CUM.HOOFDSOM ## Geeft als resultaat de cumulatieve hoofdsom van een lening die tussen twee termijnen is terugbetaald +DB = DB ## Geeft als resultaat de afschrijving van activa voor een bepaalde periode met behulp van de 'fixed declining balance'-methode +DDB = DDB ## Geeft als resultaat de afschrijving van activa over een bepaalde termijn met behulp van de 'double declining balance'-methode of een andere methode die u opgeeft +DISC = DISCONTO ## Geeft als resultaat het discontopercentage voor een waardepapier +DOLLARDE = EURO.DE ## Converteert een prijs in euro's, uitgedrukt in een breuk, naar een prijs in euro's, uitgedrukt in een decimaal getal +DOLLARFR = EURO.BR ## Converteert een prijs in euro's, uitgedrukt in een decimaal getal, naar een prijs in euro's, uitgedrukt in een breuk +DURATION = DUUR ## Geeft als resultaat de gewogen gemiddelde looptijd voor een waardepapier met periodieke rentebetalingen +EFFECT = EFFECT.RENTE ## Geeft als resultaat het effectieve jaarlijkse rentepercentage +FV = TW ## Geeft als resultaat de toekomstige waarde van een investering +FVSCHEDULE = TOEK.WAARDE2 ## Geeft als resultaat de toekomstige waarde van een bepaalde hoofdsom na het toepassen van een reeks samengestelde rentepercentages +INTRATE = RENTEPERCENTAGE ## Geeft als resultaat het rentepercentage voor een volgestort waardepapier +IPMT = IBET ## Geeft als resultaat de te betalen rente voor een investering over een bepaalde termijn +IRR = IR ## Geeft als resultaat de interne rentabiliteit voor een reeks cashflows +ISPMT = ISBET ## Geeft als resultaat de rente die is betaald tijdens een bepaalde termijn van een investering +MDURATION = AANG.DUUR ## Geeft als resultaat de aangepaste Macauley-looptijd voor een waardepapier, aangenomen dat de nominale waarde € 100 bedraagt +MIRR = GIR ## Geeft als resultaat de interne rentabiliteit voor een serie cashflows, waarbij voor betalingen een ander rentepercentage geldt dan voor inkomsten +NOMINAL = NOMINALE.RENTE ## Geeft als resultaat het nominale jaarlijkse rentepercentage +NPER = NPER ## Geeft als resultaat het aantal termijnen van een investering +NPV = NHW ## Geeft als resultaat de netto huidige waarde van een investering op basis van een reeks periodieke cashflows en een discontopercentage +ODDFPRICE = AFW.ET.PRIJS ## Geeft als resultaat de prijs per € 100 nominale waarde voor een waardepapier met een afwijkende eerste termijn +ODDFYIELD = AFW.ET.REND ## Geeft als resultaat het rendement voor een waardepapier met een afwijkende eerste termijn +ODDLPRICE = AFW.LT.PRIJS ## Geeft als resultaat de prijs per € 100 nominale waarde voor een waardepapier met een afwijkende laatste termijn +ODDLYIELD = AFW.LT.REND ## Geeft als resultaat het rendement voor een waardepapier met een afwijkende laatste termijn +PMT = BET ## Geeft als resultaat de periodieke betaling voor een annuïteit +PPMT = PBET ## Geeft als resultaat de afbetaling op de hoofdsom voor een bepaalde termijn +PRICE = PRIJS.NOM ## Geeft als resultaat de prijs per € 100 nominale waarde voor een waardepapier waarvan de rente periodiek wordt uitgekeerd +PRICEDISC = PRIJS.DISCONTO ## Geeft als resultaat de prijs per € 100 nominale waarde voor een verdisconteerd waardepapier +PRICEMAT = PRIJS.VERVALDAG ## Geeft als resultaat de prijs per € 100 nominale waarde voor een waardepapier waarvan de rente wordt uitgekeerd op de vervaldatum +PV = HW ## Geeft als resultaat de huidige waarde van een investering +RATE = RENTE ## Geeft als resultaat het periodieke rentepercentage voor een annuïteit +RECEIVED = OPBRENGST ## Geeft als resultaat het bedrag dat op de vervaldatum wordt uitgekeerd voor een volgestort waardepapier +SLN = LIN.AFSCHR ## Geeft als resultaat de lineaire afschrijving van activa over één termijn +SYD = SYD ## Geeft als resultaat de afschrijving van activa over een bepaalde termijn met behulp van de 'Sum-Of-Years-Digits'-methode +TBILLEQ = SCHATK.OBL ## Geeft als resultaat het rendement op schatkistpapier, dat op dezelfde manier wordt berekend als het rendement op obligaties +TBILLPRICE = SCHATK.PRIJS ## Bepaalt de prijs per € 100 nominale waarde voor schatkistpapier +TBILLYIELD = SCHATK.REND ## Berekent het rendement voor schatkistpapier +VDB = VDB ## Geeft als resultaat de afschrijving van activa over een gehele of gedeeltelijke termijn met behulp van de 'declining balance'-methode +XIRR = IR.SCHEMA ## Berekent de interne rentabiliteit voor een betalingsschema van cashflows +XNPV = NHW2 ## Berekent de huidige nettowaarde voor een betalingsschema van cashflows +YIELD = RENDEMENT ## Geeft als resultaat het rendement voor een waardepapier waarvan de rente periodiek wordt uitgekeerd +YIELDDISC = REND.DISCONTO ## Geeft als resultaat het jaarlijkse rendement voor een verdisconteerd waardepapier, bijvoorbeeld schatkistpapier +YIELDMAT = REND.VERVAL ## Geeft als resultaat het jaarlijkse rendement voor een waardepapier waarvan de rente wordt uitgekeerd op de vervaldatum + + +## +## Information functions Informatiefuncties +## +CELL = CEL ## Geeft als resultaat informatie over de opmaak, locatie of inhoud van een cel +ERROR.TYPE = TYPE.FOUT ## Geeft als resultaat een getal dat overeenkomt met een van de foutwaarden van Microsoft Excel +INFO = INFO ## Geeft als resultaat informatie over de huidige besturingsomgeving +ISBLANK = ISLEEG ## Geeft als resultaat WAAR als de waarde leeg is +ISERR = ISFOUT2 ## Geeft als resultaat WAAR als de waarde een foutwaarde is, met uitzondering van #N/B +ISERROR = ISFOUT ## Geeft als resultaat WAAR als de waarde een foutwaarde is +ISEVEN = IS.EVEN ## Geeft als resultaat WAAR als het getal even is +ISLOGICAL = ISLOGISCH ## Geeft als resultaat WAAR als de waarde een logische waarde is +ISNA = ISNB ## Geeft als resultaat WAAR als de waarde de foutwaarde #N/B is +ISNONTEXT = ISGEENTEKST ## Geeft als resultaat WAAR als de waarde geen tekst is +ISNUMBER = ISGETAL ## Geeft als resultaat WAAR als de waarde een getal is +ISODD = IS.ONEVEN ## Geeft als resultaat WAAR als het getal oneven is +ISREF = ISVERWIJZING ## Geeft als resultaat WAAR als de waarde een verwijzing is +ISTEXT = ISTEKST ## Geeft als resultaat WAAR als de waarde tekst is +N = N ## Geeft als resultaat een waarde die is geconverteerd naar een getal +NA = NB ## Geeft als resultaat de foutwaarde #N/B +TYPE = TYPE ## Geeft als resultaat een getal dat het gegevenstype van een waarde aangeeft + + +## +## Logical functions Logische functies +## +AND = EN ## Geeft als resultaat WAAR als alle argumenten WAAR zijn +FALSE = ONWAAR ## Geeft als resultaat de logische waarde ONWAAR +IF = ALS ## Geeft een logische test aan +IFERROR = ALS.FOUT ## Retourneert een waarde die u opgeeft als een formule een fout oplevert, anders wordt het resultaat van de formule geretourneerd +NOT = NIET ## Keert de logische waarde van het argument om +OR = OF ## Geeft als resultaat WAAR als minimaal een van de argumenten WAAR is +TRUE = WAAR ## Geeft als resultaat de logische waarde WAAR + + +## +## Lookup and reference functions Zoek- en verwijzingsfuncties +## +ADDRESS = ADRES ## Geeft als resultaat een verwijzing, in de vorm van tekst, naar één bepaalde cel in een werkblad +AREAS = BEREIKEN ## Geeft als resultaat het aantal bereiken in een verwijzing +CHOOSE = KIEZEN ## Kiest een waarde uit een lijst met waarden +COLUMN = KOLOM ## Geeft als resultaat het kolomnummer van een verwijzing +COLUMNS = KOLOMMEN ## Geeft als resultaat het aantal kolommen in een verwijzing +HLOOKUP = HORIZ.ZOEKEN ## Zoekt in de bovenste rij van een matrix naar een bepaalde waarde en geeft als resultaat de gevonden waarde in de opgegeven cel +HYPERLINK = HYPERLINK ## Maakt een snelkoppeling of een sprong waarmee een document wordt geopend dat is opgeslagen op een netwerkserver, een intranet of op internet +INDEX = INDEX ## Kiest met een index een waarde uit een verwijzing of een matrix +INDIRECT = INDIRECT ## Geeft als resultaat een verwijzing die wordt aangegeven met een tekstwaarde +LOOKUP = ZOEKEN ## Zoekt naar bepaalde waarden in een vector of een matrix +MATCH = VERGELIJKEN ## Zoekt naar bepaalde waarden in een verwijzing of een matrix +OFFSET = VERSCHUIVING ## Geeft als resultaat een nieuwe verwijzing die is verschoven ten opzichte van een bepaalde verwijzing +ROW = RIJ ## Geeft als resultaat het rijnummer van een verwijzing +ROWS = RIJEN ## Geeft als resultaat het aantal rijen in een verwijzing +RTD = RTG ## Haalt realtimegegevens op uit een programma dat COM-automatisering (automatisering: een methode waarmee de ene toepassing objecten van een andere toepassing of ontwikkelprogramma kan besturen. Automatisering werd vroeger OLE-automatisering genoemd. Automatisering is een industrienorm die deel uitmaakt van het Component Object Model (COM).) ondersteunt +TRANSPOSE = TRANSPONEREN ## Geeft als resultaat de getransponeerde van een matrix +VLOOKUP = VERT.ZOEKEN ## Zoekt in de meest linkse kolom van een matrix naar een bepaalde waarde en geeft als resultaat de waarde in de opgegeven cel + + +## +## Math and trigonometry functions Wiskundige en trigonometrische functies +## +ABS = ABS ## Geeft als resultaat de absolute waarde van een getal +ACOS = BOOGCOS ## Geeft als resultaat de boogcosinus van een getal +ACOSH = BOOGCOSH ## Geeft als resultaat de inverse cosinus hyperbolicus van een getal +ASIN = BOOGSIN ## Geeft als resultaat de boogsinus van een getal +ASINH = BOOGSINH ## Geeft als resultaat de inverse sinus hyperbolicus van een getal +ATAN = BOOGTAN ## Geeft als resultaat de boogtangens van een getal +ATAN2 = BOOGTAN2 ## Geeft als resultaat de boogtangens van de x- en y-coördinaten +ATANH = BOOGTANH ## Geeft als resultaat de inverse tangens hyperbolicus van een getal +CEILING = AFRONDEN.BOVEN ## Rondt de absolute waarde van een getal naar boven af op het dichtstbijzijnde gehele getal of het dichtstbijzijnde significante veelvoud +COMBIN = COMBINATIES ## Geeft als resultaat het aantal combinaties voor een bepaald aantal objecten +COS = COS ## Geeft als resultaat de cosinus van een getal +COSH = COSH ## Geeft als resultaat de cosinus hyperbolicus van een getal +DEGREES = GRADEN ## Converteert radialen naar graden +EVEN = EVEN ## Rondt het getal af op het dichtstbijzijnde gehele even getal +EXP = EXP ## Verheft e tot de macht van een bepaald getal +FACT = FACULTEIT ## Geeft als resultaat de faculteit van een getal +FACTDOUBLE = DUBBELE.FACULTEIT ## Geeft als resultaat de dubbele faculteit van een getal +FLOOR = AFRONDEN.BENEDEN ## Rondt de absolute waarde van een getal naar beneden af +GCD = GGD ## Geeft als resultaat de grootste gemene deler +INT = INTEGER ## Rondt een getal naar beneden af op het dichtstbijzijnde gehele getal +LCM = KGV ## Geeft als resultaat het kleinste gemene veelvoud +LN = LN ## Geeft als resultaat de natuurlijke logaritme van een getal +LOG = LOG ## Geeft als resultaat de logaritme met het opgegeven grondtal van een getal +LOG10 = LOG10 ## Geeft als resultaat de logaritme met grondtal 10 van een getal +MDETERM = DETERMINANTMAT ## Geeft als resultaat de determinant van een matrix +MINVERSE = INVERSEMAT ## Geeft als resultaat de inverse van een matrix +MMULT = PRODUCTMAT ## Geeft als resultaat het product van twee matrices +MOD = REST ## Geeft als resultaat het restgetal van een deling +MROUND = AFRONDEN.N.VEELVOUD ## Geeft als resultaat een getal afgerond op het gewenste veelvoud +MULTINOMIAL = MULTINOMIAAL ## Geeft als resultaat de multinomiaalcoëfficiënt van een reeks getallen +ODD = ONEVEN ## Rondt de absolute waarde van het getal naar boven af op het dichtstbijzijnde gehele oneven getal +PI = PI ## Geeft als resultaat de waarde van pi +POWER = MACHT ## Verheft een getal tot een macht +PRODUCT = PRODUCT ## Vermenigvuldigt de argumenten met elkaar +QUOTIENT = QUOTIENT ## Geeft als resultaat de uitkomst van een deling als geheel getal +RADIANS = RADIALEN ## Converteert graden naar radialen +RAND = ASELECT ## Geeft als resultaat een willekeurig getal tussen 0 en 1 +RANDBETWEEN = ASELECTTUSSEN ## Geeft een willekeurig getal tussen de getallen die u hebt opgegeven +ROMAN = ROMEINS ## Converteert een Arabisch getal naar een Romeins getal en geeft het resultaat weer in de vorm van tekst +ROUND = AFRONDEN ## Rondt een getal af op het opgegeven aantal decimalen +ROUNDDOWN = AFRONDEN.NAAR.BENEDEN ## Rondt de absolute waarde van een getal naar beneden af +ROUNDUP = AFRONDEN.NAAR.BOVEN ## Rondt de absolute waarde van een getal naar boven af +SERIESSUM = SOM.MACHTREEKS ## Geeft als resultaat de som van een machtreeks die is gebaseerd op de formule +SIGN = POS.NEG ## Geeft als resultaat het teken van een getal +SIN = SIN ## Geeft als resultaat de sinus van de opgegeven hoek +SINH = SINH ## Geeft als resultaat de sinus hyperbolicus van een getal +SQRT = WORTEL ## Geeft als resultaat de positieve vierkantswortel van een getal +SQRTPI = WORTEL.PI ## Geeft als resultaat de vierkantswortel van (getal * pi) +SUBTOTAL = SUBTOTAAL ## Geeft als resultaat een subtotaal voor een bereik +SUM = SOM ## Telt de argumenten op +SUMIF = SOM.ALS ## Telt de getallen bij elkaar op die voldoen aan een bepaald criterium +SUMIFS = SOMMEN.ALS ## Telt de cellen in een bereik op die aan meerdere criteria voldoen +SUMPRODUCT = SOMPRODUCT ## Geeft als resultaat de som van de producten van de corresponderende matrixelementen +SUMSQ = KWADRATENSOM ## Geeft als resultaat de som van de kwadraten van de argumenten +SUMX2MY2 = SOM.X2MINY2 ## Geeft als resultaat de som van het verschil tussen de kwadraten van corresponderende waarden in twee matrices +SUMX2PY2 = SOM.X2PLUSY2 ## Geeft als resultaat de som van de kwadratensom van corresponderende waarden in twee matrices +SUMXMY2 = SOM.XMINY.2 ## Geeft als resultaat de som van de kwadraten van de verschillen tussen de corresponderende waarden in twee matrices +TAN = TAN ## Geeft als resultaat de tangens van een getal +TANH = TANH ## Geeft als resultaat de tangens hyperbolicus van een getal +TRUNC = GEHEEL ## Kapt een getal af tot een geheel getal + + +## +## Statistical functions Statistische functies +## +AVEDEV = GEM.DEVIATIE ## Geeft als resultaat het gemiddelde van de absolute deviaties van gegevenspunten ten opzichte van hun gemiddelde waarde +AVERAGE = GEMIDDELDE ## Geeft als resultaat het gemiddelde van de argumenten +AVERAGEA = GEMIDDELDEA ## Geeft als resultaat het gemiddelde van de argumenten, inclusief getallen, tekst en logische waarden +AVERAGEIF = GEMIDDELDE.ALS ## Geeft het gemiddelde (rekenkundig gemiddelde) als resultaat van alle cellen in een bereik die voldoen aan de opgegeven criteria +AVERAGEIFS = GEMIDDELDEN.ALS ## Geeft het gemiddelde (rekenkundig gemiddelde) als resultaat van alle cellen die aan meerdere criteria voldoen +BETADIST = BETA.VERD ## Geeft als resultaat de cumulatieve bèta-verdelingsfunctie +BETAINV = BETA.INV ## Geeft als resultaat de inverse van de cumulatieve verdelingsfunctie voor een gegeven bèta-verdeling +BINOMDIST = BINOMIALE.VERD ## Geeft als resultaat de binomiale verdeling +CHIDIST = CHI.KWADRAAT ## Geeft als resultaat de eenzijdige kans van de chi-kwadraatverdeling +CHIINV = CHI.KWADRAAT.INV ## Geeft als resultaat de inverse van een eenzijdige kans van de chi-kwadraatverdeling +CHITEST = CHI.TOETS ## Geeft als resultaat de onafhankelijkheidstoets +CONFIDENCE = BETROUWBAARHEID ## Geeft als resultaat het betrouwbaarheidsinterval van een gemiddelde waarde voor de elementen van een populatie +CORREL = CORRELATIE ## Geeft als resultaat de correlatiecoëfficiënt van twee gegevensverzamelingen +COUNT = AANTAL ## Telt het aantal getallen in de argumentenlijst +COUNTA = AANTALARG ## Telt het aantal waarden in de argumentenlijst +COUNTBLANK = AANTAL.LEGE.CELLEN ## Telt het aantal lege cellen in een bereik +COUNTIF = AANTAL.ALS ## Telt in een bereik het aantal cellen die voldoen aan een bepaald criterium +COUNTIFS = AANTALLEN.ALS ## Telt in een bereik het aantal cellen die voldoen aan meerdere criteria +COVAR = COVARIANTIE ## Geeft als resultaat de covariantie, het gemiddelde van de producten van de gepaarde deviaties +CRITBINOM = CRIT.BINOM ## Geeft als resultaat de kleinste waarde waarvoor de binomiale verdeling kleiner is dan of gelijk is aan het criterium +DEVSQ = DEV.KWAD ## Geeft als resultaat de som van de deviaties in het kwadraat +EXPONDIST = EXPON.VERD ## Geeft als resultaat de exponentiële verdeling +FDIST = F.VERDELING ## Geeft als resultaat de F-verdeling +FINV = F.INVERSE ## Geeft als resultaat de inverse van de F-verdeling +FISHER = FISHER ## Geeft als resultaat de Fisher-transformatie +FISHERINV = FISHER.INV ## Geeft als resultaat de inverse van de Fisher-transformatie +FORECAST = VOORSPELLEN ## Geeft als resultaat een waarde op basis van een lineaire trend +FREQUENCY = FREQUENTIE ## Geeft als resultaat een frequentieverdeling in de vorm van een verticale matrix +FTEST = F.TOETS ## Geeft als resultaat een F-toets +GAMMADIST = GAMMA.VERD ## Geeft als resultaat de gamma-verdeling +GAMMAINV = GAMMA.INV ## Geeft als resultaat de inverse van de cumulatieve gamma-verdeling +GAMMALN = GAMMA.LN ## Geeft als resultaat de natuurlijke logaritme van de gamma-functie, G(x) +GEOMEAN = MEETK.GEM ## Geeft als resultaat het meetkundige gemiddelde +GROWTH = GROEI ## Geeft als resultaat de waarden voor een exponentiële trend +HARMEAN = HARM.GEM ## Geeft als resultaat het harmonische gemiddelde +HYPGEOMDIST = HYPERGEO.VERD ## Geeft als resultaat de hypergeometrische verdeling +INTERCEPT = SNIJPUNT ## Geeft als resultaat het snijpunt van de lineaire regressielijn met de y-as +KURT = KURTOSIS ## Geeft als resultaat de kurtosis van een gegevensverzameling +LARGE = GROOTSTE ## Geeft als resultaat de op k-1 na grootste waarde in een gegevensverzameling +LINEST = LIJNSCH ## Geeft als resultaat de parameters van een lineaire trend +LOGEST = LOGSCH ## Geeft als resultaat de parameters van een exponentiële trend +LOGINV = LOG.NORM.INV ## Geeft als resultaat de inverse van de logaritmische normale verdeling +LOGNORMDIST = LOG.NORM.VERD ## Geeft als resultaat de cumulatieve logaritmische normale verdeling +MAX = MAX ## Geeft als resultaat de maximumwaarde in een lijst met argumenten +MAXA = MAXA ## Geeft als resultaat de maximumwaarde in een lijst met argumenten, inclusief getallen, tekst en logische waarden +MEDIAN = MEDIAAN ## Geeft als resultaat de mediaan van de opgegeven getallen +MIN = MIN ## Geeft als resultaat de minimumwaarde in een lijst met argumenten +MINA = MINA ## Geeft als resultaat de minimumwaarde in een lijst met argumenten, inclusief getallen, tekst en logische waarden +MODE = MODUS ## Geeft als resultaat de meest voorkomende waarde in een gegevensverzameling +NEGBINOMDIST = NEG.BINOM.VERD ## Geeft als resultaat de negatieve binomiaalverdeling +NORMDIST = NORM.VERD ## Geeft als resultaat de cumulatieve normale verdeling +NORMINV = NORM.INV ## Geeft als resultaat de inverse van de cumulatieve standaardnormale verdeling +NORMSDIST = STAND.NORM.VERD ## Geeft als resultaat de cumulatieve standaardnormale verdeling +NORMSINV = STAND.NORM.INV ## Geeft als resultaat de inverse van de cumulatieve normale verdeling +PEARSON = PEARSON ## Geeft als resultaat de correlatiecoëfficiënt van Pearson +PERCENTILE = PERCENTIEL ## Geeft als resultaat het k-de percentiel van waarden in een bereik +PERCENTRANK = PERCENT.RANG ## Geeft als resultaat de positie, in procenten uitgedrukt, van een waarde in de rangorde van een gegevensverzameling +PERMUT = PERMUTATIES ## Geeft als resultaat het aantal permutaties voor een gegeven aantal objecten +POISSON = POISSON ## Geeft als resultaat de Poisson-verdeling +PROB = KANS ## Geeft als resultaat de kans dat waarden zich tussen twee grenzen bevinden +QUARTILE = KWARTIEL ## Geeft als resultaat het kwartiel van een gegevensverzameling +RANK = RANG ## Geeft als resultaat het rangnummer van een getal in een lijst getallen +RSQ = R.KWADRAAT ## Geeft als resultaat het kwadraat van de Pearson-correlatiecoëfficiënt +SKEW = SCHEEFHEID ## Geeft als resultaat de mate van asymmetrie van een verdeling +SLOPE = RICHTING ## Geeft als resultaat de richtingscoëfficiënt van een lineaire regressielijn +SMALL = KLEINSTE ## Geeft als resultaat de op k-1 na kleinste waarde in een gegevensverzameling +STANDARDIZE = NORMALISEREN ## Geeft als resultaat een genormaliseerde waarde +STDEV = STDEV ## Maakt een schatting van de standaarddeviatie op basis van een steekproef +STDEVA = STDEVA ## Maakt een schatting van de standaarddeviatie op basis van een steekproef, inclusief getallen, tekst en logische waarden +STDEVP = STDEVP ## Berekent de standaarddeviatie op basis van de volledige populatie +STDEVPA = STDEVPA ## Berekent de standaarddeviatie op basis van de volledige populatie, inclusief getallen, tekst en logische waarden +STEYX = STAND.FOUT.YX ## Geeft als resultaat de standaardfout in de voorspelde y-waarde voor elke x in een regressie +TDIST = T.VERD ## Geeft als resultaat de Student T-verdeling +TINV = T.INV ## Geeft als resultaat de inverse van de Student T-verdeling +TREND = TREND ## Geeft als resultaat de waarden voor een lineaire trend +TRIMMEAN = GETRIMD.GEM ## Geeft als resultaat het gemiddelde van waarden in een gegevensverzameling +TTEST = T.TOETS ## Geeft als resultaat de kans met behulp van de Student T-toets +VAR = VAR ## Maakt een schatting van de variantie op basis van een steekproef +VARA = VARA ## Maakt een schatting van de variantie op basis van een steekproef, inclusief getallen, tekst en logische waarden +VARP = VARP ## Berekent de variantie op basis van de volledige populatie +VARPA = VARPA ## Berekent de standaarddeviatie op basis van de volledige populatie, inclusief getallen, tekst en logische waarden +WEIBULL = WEIBULL ## Geeft als resultaat de Weibull-verdeling +ZTEST = Z.TOETS ## Geeft als resultaat de eenzijdige kanswaarde van een Z-toets + + +## +## Text functions Tekstfuncties +## +ASC = ASC ## Wijzigt Nederlandse letters of katakanatekens over de volle breedte (dubbel-bytetekens) binnen een tekenreeks in tekens over de halve breedte (enkel-bytetekens) +BAHTTEXT = BAHT.TEKST ## Converteert een getal naar tekst met de valutanotatie ß (baht) +CHAR = TEKEN ## Geeft als resultaat het teken dat hoort bij de opgegeven code +CLEAN = WISSEN.CONTROL ## Verwijdert alle niet-afdrukbare tekens uit een tekst +CODE = CODE ## Geeft als resultaat de numerieke code voor het eerste teken in een tekenreeks +CONCATENATE = TEKST.SAMENVOEGEN ## Voegt verschillende tekstfragmenten samen tot één tekstfragment +DOLLAR = EURO ## Converteert een getal naar tekst met de valutanotatie € (euro) +EXACT = GELIJK ## Controleert of twee tekenreeksen identiek zijn +FIND = VIND.ALLES ## Zoekt een bepaalde tekenreeks in een tekst (waarbij onderscheid wordt gemaakt tussen hoofdletters en kleine letters) +FINDB = VIND.ALLES.B ## Zoekt een bepaalde tekenreeks in een tekst (waarbij onderscheid wordt gemaakt tussen hoofdletters en kleine letters) +FIXED = VAST ## Maakt een getal als tekst met een vast aantal decimalen op +JIS = JIS ## Wijzigt Nederlandse letters of katakanatekens over de halve breedte (enkel-bytetekens) binnen een tekenreeks in tekens over de volle breedte (dubbel-bytetekens) +LEFT = LINKS ## Geeft als resultaat de meest linkse tekens in een tekenreeks +LEFTB = LINKSB ## Geeft als resultaat de meest linkse tekens in een tekenreeks +LEN = LENGTE ## Geeft als resultaat het aantal tekens in een tekenreeks +LENB = LENGTEB ## Geeft als resultaat het aantal tekens in een tekenreeks +LOWER = KLEINE.LETTERS ## Zet tekst om in kleine letters +MID = MIDDEN ## Geeft als resultaat een bepaald aantal tekens van een tekenreeks vanaf de positie die u opgeeft +MIDB = DEELB ## Geeft als resultaat een bepaald aantal tekens van een tekenreeks vanaf de positie die u opgeeft +PHONETIC = FONETISCH ## Haalt de fonetische tekens (furigana) uit een tekenreeks op +PROPER = BEGINLETTERS ## Zet de eerste letter van elk woord in een tekst om in een hoofdletter +REPLACE = VERVANG ## Vervangt tekens binnen een tekst +REPLACEB = VERVANGENB ## Vervangt tekens binnen een tekst +REPT = HERHALING ## Herhaalt een tekst een aantal malen +RIGHT = RECHTS ## Geeft als resultaat de meest rechtse tekens in een tekenreeks +RIGHTB = RECHTSB ## Geeft als resultaat de meest rechtse tekens in een tekenreeks +SEARCH = VIND.SPEC ## Zoekt een bepaalde tekenreeks in een tekst (waarbij geen onderscheid wordt gemaakt tussen hoofdletters en kleine letters) +SEARCHB = VIND.SPEC.B ## Zoekt een bepaalde tekenreeks in een tekst (waarbij geen onderscheid wordt gemaakt tussen hoofdletters en kleine letters) +SUBSTITUTE = SUBSTITUEREN ## Vervangt oude tekst door nieuwe tekst in een tekenreeks +T = T ## Converteert de argumenten naar tekst +TEXT = TEKST ## Maakt een getal op en converteert het getal naar tekst +TRIM = SPATIES.WISSEN ## Verwijdert de spaties uit een tekst +UPPER = HOOFDLETTERS ## Zet tekst om in hoofdletters +VALUE = WAARDE ## Converteert tekst naar een getal diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/no/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/no/config new file mode 100644 index 0000000..bf2d34a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/no/config @@ -0,0 +1,47 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = kr + + +## +## Excel Error Codes (For future use) +## +NULL = #NULL! +DIV0 = #DIV/0! +VALUE = #VERDI! +REF = #REF! +NAME = #NAVN? +NUM = #NUM! +NA = #I/T diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/no/functions b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/no/functions new file mode 100644 index 0000000..10d0a20 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/no/functions @@ -0,0 +1,438 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Calculation +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## Data in this file derived from http://www.piuha.fi/excel-function-name-translation/ +## +## + + +## +## Add-in and Automation functions Funksjonene Tillegg og Automatisering +## +GETPIVOTDATA = HENTPIVOTDATA ## Returnerer data som er lagret i en pivottabellrapport + + +## +## Cube functions Kubefunksjoner +## +CUBEKPIMEMBER = KUBEKPIMEDLEM ## Returnerer navnet, egenskapen og mÃ¥let for en viktig ytelsesindikator (KPI), og viser navnet og egenskapen i cellen. En KPI er en mÃ¥lbar enhet, for eksempel mÃ¥nedlig bruttoinntjening eller kvartalsvis inntjening per ansatt, og brukes til Ã¥ overvÃ¥ke ytelsen i en organisasjon. +CUBEMEMBER = KUBEMEDLEM ## Returnerer et medlem eller en tuppel i et kubehierarki. Brukes til Ã¥ validere at medlemmet eller tuppelen finnes i kuben. +CUBEMEMBERPROPERTY = KUBEMEDLEMEGENSKAP ## Returnerer verdien til en medlemsegenskap i kuben. Brukes til Ã¥ validere at et medlemsnavn finnes i kuben, og til Ã¥ returnere den angitte egenskapen for dette medlemmet. +CUBERANKEDMEMBER = KUBERANGERTMEDLEM ## Returnerer det n-te, eller rangerte, medlemmet i et sett. Brukes til Ã¥ returnere ett eller flere elementer i et sett, for eksempel de 10 beste studentene. +CUBESET = KUBESETT ## Definerer et beregnet sett av medlemmer eller tuppeler ved Ã¥ sende et settuttrykk til kuben pÃ¥ serveren, noe som oppretter settet og deretter returnerer dette settet til Microsoft Office Excel. +CUBESETCOUNT = KUBESETTANTALL ## Returnerer antallet elementer i et sett. +CUBEVALUE = KUBEVERDI ## Returnerer en aggregert verdi fra en kube. + + +## +## Database functions Databasefunksjoner +## +DAVERAGE = DGJENNOMSNITT ## Returnerer gjennomsnittet av merkede databaseposter +DCOUNT = DANTALL ## Teller celler som inneholder tall i en database +DCOUNTA = DANTALLA ## Teller celler som ikke er tomme i en database +DGET = DHENT ## Trekker ut fra en database en post som oppfyller angitte vilkÃ¥r +DMAX = DMAKS ## Returnerer maksimumsverdien fra merkede databaseposter +DMIN = DMIN ## Returnerer minimumsverdien fra merkede databaseposter +DPRODUCT = DPRODUKT ## Multipliserer verdiene i et bestemt felt med poster som oppfyller vilkÃ¥rene i en database +DSTDEV = DSTDAV ## Estimerer standardavviket basert pÃ¥ et utvalg av merkede databaseposter +DSTDEVP = DSTAVP ## Beregner standardavviket basert pÃ¥ at merkede databaseposter utgjør hele populasjonen +DSUM = DSUMMER ## Legger til tallene i feltkolonnen med poster, i databasen som oppfyller vilkÃ¥rene +DVAR = DVARIANS ## Estimerer variansen basert pÃ¥ et utvalg av merkede databaseposter +DVARP = DVARIANSP ## Beregner variansen basert pÃ¥ at merkede databaseposter utgjør hele populasjonen + + +## +## Date and time functions Dato- og tidsfunksjoner +## +DATE = DATO ## Returnerer serienummeret som svarer til en bestemt dato +DATEVALUE = DATOVERDI ## Konverterer en dato med tekstformat til et serienummer +DAY = DAG ## Konverterer et serienummer til en dag i mÃ¥neden +DAYS360 = DAGER360 ## Beregner antall dager mellom to datoer basert pÃ¥ et Ã¥r med 360 dager +EDATE = DAG.ETTER ## Returnerer serienummeret som svarer til datoen som er det indikerte antall mÃ¥neder før eller etter startdatoen +EOMONTH = MÃ…NEDSSLUTT ## Returnerer serienummeret som svarer til siste dag i mÃ¥neden, før eller etter et angitt antall mÃ¥neder +HOUR = TIME ## Konverterer et serienummer til en time +MINUTE = MINUTT ## Konverterer et serienummer til et minutt +MONTH = MÃ…NED ## Konverterer et serienummer til en mÃ¥ned +NETWORKDAYS = NETT.ARBEIDSDAGER ## Returnerer antall hele arbeidsdager mellom to datoer +NOW = NÃ… ## Returnerer serienummeret som svarer til gjeldende dato og klokkeslett +SECOND = SEKUND ## Konverterer et serienummer til et sekund +TIME = TID ## Returnerer serienummeret som svarer til et bestemt klokkeslett +TIMEVALUE = TIDSVERDI ## Konverterer et klokkeslett i tekstformat til et serienummer +TODAY = IDAG ## Returnerer serienummeret som svarer til dagens dato +WEEKDAY = UKEDAG ## Konverterer et serienummer til en ukedag +WEEKNUM = UKENR ## Konverterer et serienummer til et tall som representerer hvilket nummer uken har i et Ã¥r +WORKDAY = ARBEIDSDAG ## Returnerer serienummeret som svarer til datoen før eller etter et angitt antall arbeidsdager +YEAR = Ã…R ## Konverterer et serienummer til et Ã¥r +YEARFRAC = Ã…RDEL ## Returnerer brøkdelen for Ã¥ret, som svarer til antall hele dager mellom startdato og sluttdato + + +## +## Engineering functions Tekniske funksjoner +## +BESSELI = BESSELI ## Returnerer den endrede Bessel-funksjonen In(x) +BESSELJ = BESSELJ ## Returnerer Bessel-funksjonen Jn(x) +BESSELK = BESSELK ## Returnerer den endrede Bessel-funksjonen Kn(x) +BESSELY = BESSELY ## Returnerer Bessel-funksjonen Yn(x) +BIN2DEC = BINTILDES ## Konverterer et binært tall til et desimaltall +BIN2HEX = BINTILHEKS ## Konverterer et binært tall til et heksadesimaltall +BIN2OCT = BINTILOKT ## Konverterer et binært tall til et oktaltall +COMPLEX = KOMPLEKS ## Konverterer reelle og imaginære koeffisienter til et komplekst tall +CONVERT = KONVERTER ## Konverterer et tall fra ett mÃ¥lsystem til et annet +DEC2BIN = DESTILBIN ## Konverterer et desimaltall til et binærtall +DEC2HEX = DESTILHEKS ## Konverterer et heltall i 10-tallsystemet til et heksadesimalt tall +DEC2OCT = DESTILOKT ## Konverterer et heltall i 10-tallsystemet til et oktaltall +DELTA = DELTA ## Undersøker om to verdier er like +ERF = FEILF ## Returnerer feilfunksjonen +ERFC = FEILFK ## Returnerer den komplementære feilfunksjonen +GESTEP = GRENSEVERDI ## Tester om et tall er større enn en terskelverdi +HEX2BIN = HEKSTILBIN ## Konverterer et heksadesimaltall til et binært tall +HEX2DEC = HEKSTILDES ## Konverterer et heksadesimalt tall til et heltall i 10-tallsystemet +HEX2OCT = HEKSTILOKT ## Konverterer et heksadesimalt tall til et oktaltall +IMABS = IMABS ## Returnerer absoluttverdien (koeffisienten) til et komplekst tall +IMAGINARY = IMAGINÆR ## Returnerer den imaginære koeffisienten til et komplekst tall +IMARGUMENT = IMARGUMENT ## Returnerer argumentet theta, som er en vinkel uttrykt i radianer +IMCONJUGATE = IMKONJUGERT ## Returnerer den komplekse konjugaten til et komplekst tall +IMCOS = IMCOS ## Returnerer cosinus til et komplekst tall +IMDIV = IMDIV ## Returnerer kvotienten til to komplekse tall +IMEXP = IMEKSP ## Returnerer eksponenten til et komplekst tall +IMLN = IMLN ## Returnerer den naturlige logaritmen for et komplekst tall +IMLOG10 = IMLOG10 ## Returnerer logaritmen med grunntall 10 for et komplekst tall +IMLOG2 = IMLOG2 ## Returnerer logaritmen med grunntall 2 for et komplekst tall +IMPOWER = IMOPPHØY ## Returnerer et komplekst tall opphøyd til en heltallspotens +IMPRODUCT = IMPRODUKT ## Returnerer produktet av komplekse tall +IMREAL = IMREELL ## Returnerer den reelle koeffisienten til et komplekst tall +IMSIN = IMSIN ## Returnerer sinus til et komplekst tall +IMSQRT = IMROT ## Returnerer kvadratroten av et komplekst tall +IMSUB = IMSUB ## Returnerer differansen mellom to komplekse tall +IMSUM = IMSUMMER ## Returnerer summen av komplekse tall +OCT2BIN = OKTTILBIN ## Konverterer et oktaltall til et binært tall +OCT2DEC = OKTTILDES ## Konverterer et oktaltall til et desimaltall +OCT2HEX = OKTTILHEKS ## Konverterer et oktaltall til et heksadesimaltall + + +## +## Financial functions Økonomiske funksjoner +## +ACCRINT = PÃ…LØPT.PERIODISK.RENTE ## Returnerer pÃ¥løpte renter for et verdipapir som betaler periodisk rente +ACCRINTM = PÃ…LØPT.FORFALLSRENTE ## Returnerer den pÃ¥løpte renten for et verdipapir som betaler rente ved forfall +AMORDEGRC = AMORDEGRC ## Returnerer avskrivningen for hver regnskapsperiode ved hjelp av en avskrivingskoeffisient +AMORLINC = AMORLINC ## Returnerer avskrivingen for hver regnskapsperiode +COUPDAYBS = OBLIG.DAGER.FF ## Returnerer antall dager fra begynnelsen av den rentebærende perioden til innløsningsdatoen +COUPDAYS = OBLIG.DAGER ## Returnerer antall dager i den rentebærende perioden som inneholder innløsningsdatoen +COUPDAYSNC = OBLIG.DAGER.NF ## Returnerer antall dager fra betalingsdato til neste renteinnbetalingsdato +COUPNCD = OBLIG.DAGER.EF ## Returnerer obligasjonsdatoen som kommer etter oppgjørsdatoen +COUPNUM = OBLIG.ANTALL ## Returnerer antall obligasjoner som skal betales mellom oppgjørsdatoen og forfallsdatoen +COUPPCD = OBLIG.DAG.FORRIGE ## Returnerer obligasjonsdatoen som kommer før oppgjørsdatoen +CUMIPMT = SAMLET.RENTE ## Returnerer den kumulative renten som er betalt mellom to perioder +CUMPRINC = SAMLET.HOVEDSTOL ## Returnerer den kumulative hovedstolen som er betalt for et lÃ¥n mellom to perioder +DB = DAVSKR ## Returnerer avskrivningen for et aktivum i en angitt periode, foretatt med fast degressiv avskrivning +DDB = DEGRAVS ## Returnerer avskrivningen for et aktivum for en gitt periode, ved hjelp av dobbel degressiv avskrivning eller en metode som du selv angir +DISC = DISKONTERT ## Returnerer diskonteringsraten for et verdipapir +DOLLARDE = DOLLARDE ## Konverterer en valutapris uttrykt som en brøk, til en valutapris uttrykt som et desimaltall +DOLLARFR = DOLLARBR ## Konverterer en valutapris uttrykt som et desimaltall, til en valutapris uttrykt som en brøk +DURATION = VARIGHET ## Returnerer Ã¥rlig varighet for et verdipapir med renter som betales periodisk +EFFECT = EFFEKTIV.RENTE ## Returnerer den effektive Ã¥rlige rentesatsen +FV = SLUTTVERDI ## Returnerer fremtidig verdi for en investering +FVSCHEDULE = SVPLAN ## Returnerer den fremtidige verdien av en inngÃ¥ende hovedstol etter Ã¥ ha anvendt en serie med sammensatte rentesatser +INTRATE = RENTESATS ## Returnerer rentefoten av et fullfinansiert verdipapir +IPMT = RAVDRAG ## Returnerer betalte renter pÃ¥ en investering for en gitt periode +IRR = IR ## Returnerer internrenten for en serie kontantstrømmer +ISPMT = ER.AVDRAG ## Beregner renten som er betalt for en investering i løpet av en bestemt periode +MDURATION = MVARIGHET ## Returnerer Macauleys modifiserte varighet for et verdipapir med en antatt pÃ¥lydende verdi pÃ¥ kr 100,00 +MIRR = MODIR ## Returnerer internrenten der positive og negative kontantstrømmer finansieres med forskjellige satser +NOMINAL = NOMINELL ## Returnerer Ã¥rlig nominell rentesats +NPER = PERIODER ## Returnerer antall perioder for en investering +NPV = NNV ## Returnerer netto nÃ¥verdi for en investering, basert pÃ¥ en serie periodiske kontantstrømmer og en rentesats +ODDFPRICE = AVVIKFP.PRIS ## Returnerer pris pÃ¥lydende kr 100 for et verdipapir med en odde første periode +ODDFYIELD = AVVIKFP.AVKASTNING ## Returnerer avkastingen for et verdipapir med en odde første periode +ODDLPRICE = AVVIKSP.PRIS ## Returnerer pris pÃ¥lydende kr 100 for et verdipapir med en odde siste periode +ODDLYIELD = AVVIKSP.AVKASTNING ## Returnerer avkastingen for et verdipapir med en odde siste periode +PMT = AVDRAG ## Returnerer periodisk betaling for en annuitet +PPMT = AMORT ## Returnerer betalingen pÃ¥ hovedstolen for en investering i en gitt periode +PRICE = PRIS ## Returnerer prisen per pÃ¥lydende kr 100 for et verdipapir som gir periodisk avkastning +PRICEDISC = PRIS.DISKONTERT ## Returnerer prisen per pÃ¥lydende kr 100 for et diskontert verdipapir +PRICEMAT = PRIS.FORFALL ## Returnerer prisen per pÃ¥lydende kr 100 av et verdipapir som betaler rente ved forfall +PV = NÃ…VERDI ## Returnerer nÃ¥verdien av en investering +RATE = RENTE ## Returnerer rentesatsen per periode for en annuitet +RECEIVED = MOTTATT.AVKAST ## Returnerer summen som mottas ved forfallsdato for et fullinvestert verdipapir +SLN = LINAVS ## Returnerer den lineære avskrivningen for et aktivum i én periode +SYD = Ã…RSAVS ## Returnerer Ã¥rsavskrivningen for et aktivum i en angitt periode +TBILLEQ = TBILLEKV ## Returnerer den obligasjonsekvivalente avkastningen for en statsobligasjon +TBILLPRICE = TBILLPRIS ## Returnerer prisen per pÃ¥lydende kr 100 for en statsobligasjon +TBILLYIELD = TBILLAVKASTNING ## Returnerer avkastningen til en statsobligasjon +VDB = VERDIAVS ## Returnerer avskrivningen for et aktivum i en angitt periode eller delperiode, ved hjelp av degressiv avskrivning +XIRR = XIR ## Returnerer internrenten for en serie kontantstrømmer som ikke nødvendigvis er periodiske +XNPV = XNNV ## Returnerer netto nÃ¥verdi for en serie kontantstrømmer som ikke nødvendigvis er periodiske +YIELD = AVKAST ## Returnerer avkastningen pÃ¥ et verdipapir som betaler periodisk rente +YIELDDISC = AVKAST.DISKONTERT ## Returnerer Ã¥rlig avkastning for et diskontert verdipapir, for eksempel en statskasseveksel +YIELDMAT = AVKAST.FORFALL ## Returnerer den Ã¥rlige avkastningen for et verdipapir som betaler rente ved forfallsdato + + +## +## Information functions Informasjonsfunksjoner +## +CELL = CELLE ## Returnerer informasjon om formatering, plassering eller innholdet til en celle +ERROR.TYPE = FEIL.TYPE ## Returnerer et tall som svarer til en feiltype +INFO = INFO ## Returnerer informasjon om gjeldende operativmiljø +ISBLANK = ERTOM ## Returnerer SANN hvis verdien er tom +ISERR = ERFEIL ## Returnerer SANN hvis verdien er en hvilken som helst annen feilverdi enn #I/T +ISERROR = ERFEIL ## Returnerer SANN hvis verdien er en hvilken som helst feilverdi +ISEVEN = ERPARTALL ## Returnerer SANN hvis tallet er et partall +ISLOGICAL = ERLOGISK ## Returnerer SANN hvis verdien er en logisk verdi +ISNA = ERIT ## Returnerer SANN hvis verdien er feilverdien #I/T +ISNONTEXT = ERIKKETEKST ## Returnerer SANN hvis verdien ikke er tekst +ISNUMBER = ERTALL ## Returnerer SANN hvis verdien er et tall +ISODD = ERODDETALL ## Returnerer SANN hvis tallet er et oddetall +ISREF = ERREF ## Returnerer SANN hvis verdien er en referanse +ISTEXT = ERTEKST ## Returnerer SANN hvis verdien er tekst +N = N ## Returnerer en verdi som er konvertert til et tall +NA = IT ## Returnerer feilverdien #I/T +TYPE = VERDITYPE ## Returnerer et tall som indikerer datatypen til en verdi + + +## +## Logical functions Logiske funksjoner +## +AND = OG ## Returnerer SANN hvis alle argumentene er lik SANN +FALSE = USANN ## Returnerer den logiske verdien USANN +IF = HVIS ## Angir en logisk test som skal utføres +IFERROR = HVISFEIL ## Returnerer en verdi du angir hvis en formel evaluerer til en feil. Ellers returnerer den resultatet av formelen. +NOT = IKKE ## Reverserer logikken til argumentet +OR = ELLER ## Returnerer SANN hvis ett eller flere argumenter er lik SANN +TRUE = SANN ## Returnerer den logiske verdien SANN + + +## +## Lookup and reference functions Oppslag- og referansefunksjoner +## +ADDRESS = ADRESSE ## Returnerer en referanse som tekst til en enkelt celle i et regneark +AREAS = OMRÃ…DER ## Returnerer antall omrÃ¥der i en referanse +CHOOSE = VELG ## Velger en verdi fra en liste med verdier +COLUMN = KOLONNE ## Returnerer kolonnenummeret for en referanse +COLUMNS = KOLONNER ## Returnerer antall kolonner i en referanse +HLOOKUP = FINN.KOLONNE ## Leter i den øverste raden i en matrise og returnerer verdien for den angitte cellen +HYPERLINK = HYPERKOBLING ## Oppretter en snarvei eller et hopp som Ã¥pner et dokument som er lagret pÃ¥ en nettverksserver, et intranett eller Internett +INDEX = INDEKS ## Bruker en indeks til Ã¥ velge en verdi fra en referanse eller matrise +INDIRECT = INDIREKTE ## Returnerer en referanse angitt av en tekstverdi +LOOKUP = SLÃ….OPP ## SlÃ¥r opp verdier i en vektor eller matrise +MATCH = SAMMENLIGNE ## SlÃ¥r opp verdier i en referanse eller matrise +OFFSET = FORSKYVNING ## Returnerer en referanseforskyvning fra en gitt referanse +ROW = RAD ## Returnerer radnummeret for en referanse +ROWS = RADER ## Returnerer antall rader i en referanse +RTD = RTD ## Henter sanntidsdata fra et program som støtter COM-automatisering (automatisering: En mÃ¥te Ã¥ arbeide pÃ¥ med programobjekter fra et annet program- eller utviklingsverktøy. Tidligere kalt OLE-automatisering. Automatisering er en bransjestandard og en funksjon i Component Object Model (COM).) +TRANSPOSE = TRANSPONER ## Returnerer transponeringen av en matrise +VLOOKUP = FINN.RAD ## Leter i den første kolonnen i en matrise og flytter bortover raden for Ã¥ returnere verdien til en celle + + +## +## Math and trigonometry functions Matematikk- og trigonometrifunksjoner +## +ABS = ABS ## Returnerer absoluttverdien til et tall +ACOS = ARCCOS ## Returnerer arcus cosinus til et tall +ACOSH = ARCCOSH ## Returnerer den inverse hyperbolske cosinus til et tall +ASIN = ARCSIN ## Returnerer arcus sinus til et tall +ASINH = ARCSINH ## Returnerer den inverse hyperbolske sinus til et tall +ATAN = ARCTAN ## Returnerer arcus tangens til et tall +ATAN2 = ARCTAN2 ## Returnerer arcus tangens fra x- og y-koordinater +ATANH = ARCTANH ## Returnerer den inverse hyperbolske tangens til et tall +CEILING = AVRUND.GJELDENDE.MULTIPLUM ## Runder av et tall til nærmeste heltall eller til nærmeste signifikante multiplum +COMBIN = KOMBINASJON ## Returnerer antall kombinasjoner for ett gitt antall objekter +COS = COS ## Returnerer cosinus til et tall +COSH = COSH ## Returnerer den hyperbolske cosinus til et tall +DEGREES = GRADER ## Konverterer radianer til grader +EVEN = AVRUND.TIL.PARTALL ## Runder av et tall oppover til nærmeste heltall som er et partall +EXP = EKSP ## Returnerer e opphøyd i en angitt potens +FACT = FAKULTET ## Returnerer fakultet til et tall +FACTDOUBLE = DOBBELFAKT ## Returnerer et talls doble fakultet +FLOOR = AVRUND.GJELDENDE.MULTIPLUM.NED ## Avrunder et tall nedover, mot null +GCD = SFF ## Returnerer høyeste felles divisor +INT = HELTALL ## Avrunder et tall nedover til nærmeste heltall +LCM = MFM ## Returnerer minste felles multiplum +LN = LN ## Returnerer den naturlige logaritmen til et tall +LOG = LOG ## Returnerer logaritmen for et tall til et angitt grunntall +LOG10 = LOG10 ## Returnerer logaritmen med grunntall 10 for et tall +MDETERM = MDETERM ## Returnerer matrisedeterminanten til en matrise +MINVERSE = MINVERS ## Returnerer den inverse matrisen til en matrise +MMULT = MMULT ## Returnerer matriseproduktet av to matriser +MOD = REST ## Returnerer resten fra en divisjon +MROUND = MRUND ## Returnerer et tall avrundet til det ønskede multiplum +MULTINOMIAL = MULTINOMINELL ## Returnerer det multinominelle for et sett med tall +ODD = AVRUND.TIL.ODDETALL ## Runder av et tall oppover til nærmeste heltall som er et oddetall +PI = PI ## Returnerer verdien av pi +POWER = OPPHØYD.I ## Returnerer resultatet av et tall opphøyd i en potens +PRODUCT = PRODUKT ## Multipliserer argumentene +QUOTIENT = KVOTIENT ## Returnerer heltallsdelen av en divisjon +RADIANS = RADIANER ## Konverterer grader til radianer +RAND = TILFELDIG ## Returnerer et tilfeldig tall mellom 0 og 1 +RANDBETWEEN = TILFELDIGMELLOM ## Returnerer et tilfeldig tall innenfor et angitt omrÃ¥de +ROMAN = ROMERTALL ## Konverterer vanlige tall til romertall, som tekst +ROUND = AVRUND ## Avrunder et tall til et angitt antall sifre +ROUNDDOWN = AVRUND.NED ## Avrunder et tall nedover, mot null +ROUNDUP = AVRUND.OPP ## Runder av et tall oppover, bort fra null +SERIESSUM = SUMMER.REKKE ## Returnerer summen av en geometrisk rekke, basert pÃ¥ formelen +SIGN = FORTEGN ## Returnerer fortegnet for et tall +SIN = SIN ## Returnerer sinus til en gitt vinkel +SINH = SINH ## Returnerer den hyperbolske sinus til et tall +SQRT = ROT ## Returnerer en positiv kvadratrot +SQRTPI = ROTPI ## Returnerer kvadratroten av (tall * pi) +SUBTOTAL = DELSUM ## Returnerer en delsum i en liste eller database +SUM = SUMMER ## Legger sammen argumentene +SUMIF = SUMMERHVIS ## Legger sammen cellene angitt ved et gitt vilkÃ¥r +SUMIFS = SUMMER.HVIS.SETT ## Legger sammen cellene i et omrÃ¥de som oppfyller flere vilkÃ¥r +SUMPRODUCT = SUMMERPRODUKT ## Returnerer summen av produktene av tilsvarende matrisekomponenter +SUMSQ = SUMMERKVADRAT ## Returnerer kvadratsummen av argumentene +SUMX2MY2 = SUMMERX2MY2 ## Returnerer summen av differansen av kvadratene for tilsvarende verdier i to matriser +SUMX2PY2 = SUMMERX2PY2 ## Returnerer summen av kvadratsummene for tilsvarende verdier i to matriser +SUMXMY2 = SUMMERXMY2 ## Returnerer summen av kvadratene av differansen for tilsvarende verdier i to matriser +TAN = TAN ## Returnerer tangens for et tall +TANH = TANH ## Returnerer den hyperbolske tangens for et tall +TRUNC = AVKORT ## Korter av et tall til et heltall + + +## +## Statistical functions Statistiske funksjoner +## +AVEDEV = GJENNOMSNITTSAVVIK ## Returnerer datapunktenes gjennomsnittlige absoluttavvik fra middelverdien +AVERAGE = GJENNOMSNITT ## Returnerer gjennomsnittet for argumentene +AVERAGEA = GJENNOMSNITTA ## Returnerer gjennomsnittet for argumentene, inkludert tall, tekst og logiske verdier +AVERAGEIF = GJENNOMSNITTHVIS ## Returnerer gjennomsnittet (aritmetisk gjennomsnitt) av alle cellene i et omrÃ¥de som oppfyller et bestemt vilkÃ¥r +AVERAGEIFS = GJENNOMSNITT.HVIS.SETT ## Returnerer gjennomsnittet (aritmetisk middelverdi) av alle celler som oppfyller flere vilkÃ¥r. +BETADIST = BETA.FORDELING ## Returnerer den kumulative betafordelingsfunksjonen +BETAINV = INVERS.BETA.FORDELING ## Returnerer den inverse verdien til fordelingsfunksjonen for en angitt betafordeling +BINOMDIST = BINOM.FORDELING ## Returnerer den individuelle binomiske sannsynlighetsfordelingen +CHIDIST = KJI.FORDELING ## Returnerer den ensidige sannsynligheten for en kjikvadrert fordeling +CHIINV = INVERS.KJI.FORDELING ## Returnerer den inverse av den ensidige sannsynligheten for den kjikvadrerte fordelingen +CHITEST = KJI.TEST ## Utfører testen for uavhengighet +CONFIDENCE = KONFIDENS ## Returnerer konfidensintervallet til gjennomsnittet for en populasjon +CORREL = KORRELASJON ## Returnerer korrelasjonskoeffisienten mellom to datasett +COUNT = ANTALL ## Teller hvor mange tall som er i argumentlisten +COUNTA = ANTALLA ## Teller hvor mange verdier som er i argumentlisten +COUNTBLANK = TELLBLANKE ## Teller antall tomme celler i et omrÃ¥de. +COUNTIF = ANTALL.HVIS ## Teller antall celler i et omrÃ¥de som oppfyller gitte vilkÃ¥r +COUNTIFS = ANTALL.HVIS.SETT ## Teller antallet ikke-tomme celler i et omrÃ¥de som oppfyller flere vilkÃ¥r +COVAR = KOVARIANS ## Returnerer kovariansen, gjennomsnittet av produktene av parvise avvik +CRITBINOM = GRENSE.BINOM ## Returnerer den minste verdien der den kumulative binomiske fordelingen er mindre enn eller lik en vilkÃ¥rsverdi +DEVSQ = AVVIK.KVADRERT ## Returnerer summen av kvadrerte avvik +EXPONDIST = EKSP.FORDELING ## Returnerer eksponentialfordelingen +FDIST = FFORDELING ## Returnerer F-sannsynlighetsfordelingen +FINV = FFORDELING.INVERS ## Returnerer den inverse av den sannsynlige F-fordelingen +FISHER = FISHER ## Returnerer Fisher-transformasjonen +FISHERINV = FISHERINV ## Returnerer den inverse av Fisher-transformasjonen +FORECAST = PROGNOSE ## Returnerer en verdi langs en lineær trend +FREQUENCY = FREKVENS ## Returnerer en frekvensdistribusjon som en loddrett matrise +FTEST = FTEST ## Returnerer resultatet av en F-test +GAMMADIST = GAMMAFORDELING ## Returnerer gammafordelingen +GAMMAINV = GAMMAINV ## Returnerer den inverse av den gammakumulative fordelingen +GAMMALN = GAMMALN ## Returnerer den naturlige logaritmen til gammafunksjonen G(x) +GEOMEAN = GJENNOMSNITT.GEOMETRISK ## Returnerer den geometriske middelverdien +GROWTH = VEKST ## Returnerer verdier langs en eksponentiell trend +HARMEAN = GJENNOMSNITT.HARMONISK ## Returnerer den harmoniske middelverdien +HYPGEOMDIST = HYPGEOM.FORDELING ## Returnerer den hypergeometriske fordelingen +INTERCEPT = SKJÆRINGSPUNKT ## Returnerer skjæringspunktet til den lineære regresjonslinjen +KURT = KURT ## Returnerer kurtosen til et datasett +LARGE = N.STØRST ## Returnerer den n-te største verdien i et datasett +LINEST = RETTLINJE ## Returnerer parameterne til en lineær trend +LOGEST = KURVE ## Returnerer parameterne til en eksponentiell trend +LOGINV = LOGINV ## Returnerer den inverse lognormale fordelingen +LOGNORMDIST = LOGNORMFORD ## Returnerer den kumulative lognormale fordelingen +MAX = STØRST ## Returnerer maksimumsverdien i en argumentliste +MAXA = MAKSA ## Returnerer maksimumsverdien i en argumentliste, inkludert tall, tekst og logiske verdier +MEDIAN = MEDIAN ## Returnerer medianen til tallene som er gitt +MIN = MIN ## Returnerer minimumsverdien i en argumentliste +MINA = MINA ## Returnerer den minste verdien i en argumentliste, inkludert tall, tekst og logiske verdier +MODE = MODUS ## Returnerer den vanligste verdien i et datasett +NEGBINOMDIST = NEGBINOM.FORDELING ## Returnerer den negative binomiske fordelingen +NORMDIST = NORMALFORDELING ## Returnerer den kumulative normalfordelingen +NORMINV = NORMINV ## Returnerer den inverse kumulative normalfordelingen +NORMSDIST = NORMSFORDELING ## Returnerer standard kumulativ normalfordeling +NORMSINV = NORMSINV ## Returnerer den inverse av den den kumulative standard normalfordelingen +PEARSON = PEARSON ## Returnerer produktmomentkorrelasjonskoeffisienten, Pearson +PERCENTILE = PERSENTIL ## Returnerer den n-te persentil av verdiene i et omrÃ¥de +PERCENTRANK = PROSENTDEL ## Returnerer prosentrangeringen av en verdi i et datasett +PERMUT = PERMUTER ## Returnerer antall permutasjoner for et gitt antall objekter +POISSON = POISSON ## Returnerer Poissons sannsynlighetsfordeling +PROB = SANNSYNLIG ## Returnerer sannsynligheten for at verdier i et omrÃ¥de ligger mellom to grenser +QUARTILE = KVARTIL ## Returnerer kvartilen til et datasett +RANK = RANG ## Returnerer rangeringen av et tall, eller plassen tallet har i en rekke +RSQ = RKVADRAT ## Returnerer kvadratet av produktmomentkorrelasjonskoeffisienten (Pearsons r) +SKEW = SKJEVFORDELING ## Returnerer skjevheten i en fordeling +SLOPE = STIGNINGSTALL ## Returnerer stigningtallet for den lineære regresjonslinjen +SMALL = N.MINST ## Returnerer den n-te minste verdien i et datasett +STANDARDIZE = NORMALISER ## Returnerer en normalisert verdi +STDEV = STDAV ## Estimere standardavvik pÃ¥ grunnlag av et utvalg +STDEVA = STDAVVIKA ## Estimerer standardavvik basert pÃ¥ et utvalg, inkludert tall, tekst og logiske verdier +STDEVP = STDAVP ## Beregner standardavvik basert pÃ¥ hele populasjonen +STDEVPA = STDAVVIKPA ## Beregner standardavvik basert pÃ¥ hele populasjonen, inkludert tall, tekst og logiske verdier +STEYX = STANDARDFEIL ## Returnerer standardfeilen for den predikerte y-verdien for hver x i regresjonen +TDIST = TFORDELING ## Returnerer en Student t-fordeling +TINV = TINV ## Returnerer den inverse Student t-fordelingen +TREND = TREND ## Returnerer verdier langs en lineær trend +TRIMMEAN = TRIMMET.GJENNOMSNITT ## Returnerer den interne middelverdien til et datasett +TTEST = TTEST ## Returnerer sannsynligheten assosiert med en Student t-test +VAR = VARIANS ## Estimerer varians basert pÃ¥ et utvalg +VARA = VARIANSA ## Estimerer varians basert pÃ¥ et utvalg, inkludert tall, tekst og logiske verdier +VARP = VARIANSP ## Beregner varians basert pÃ¥ hele populasjonen +VARPA = VARIANSPA ## Beregner varians basert pÃ¥ hele populasjonen, inkludert tall, tekst og logiske verdier +WEIBULL = WEIBULL.FORDELING ## Returnerer Weibull-fordelingen +ZTEST = ZTEST ## Returnerer den ensidige sannsynlighetsverdien for en z-test + + +## +## Text functions Tekstfunksjoner +## +ASC = STIGENDE ## Endrer fullbreddes (dobbeltbyte) engelske bokstaver eller katakana i en tegnstreng, til halvbreddes (enkeltbyte) tegn +BAHTTEXT = BAHTTEKST ## Konverterer et tall til tekst, og bruker valutaformatet ß (baht) +CHAR = TEGNKODE ## Returnerer tegnet som svarer til kodenummeret +CLEAN = RENSK ## Fjerner alle tegn som ikke kan skrives ut, fra teksten +CODE = KODE ## Returnerer en numerisk kode for det første tegnet i en tekststreng +CONCATENATE = KJEDE.SAMMEN ## SlÃ¥r sammen flere tekstelementer til ett tekstelement +DOLLAR = VALUTA ## Konverterer et tall til tekst, og bruker valutaformatet $ (dollar) +EXACT = EKSAKT ## Kontrollerer om to tekstverdier er like +FIND = FINN ## Finner en tekstverdi inne i en annen (skiller mellom store og smÃ¥ bokstaver) +FINDB = FINNB ## Finner en tekstverdi inne i en annen (skiller mellom store og smÃ¥ bokstaver) +FIXED = FASTSATT ## Formaterer et tall som tekst med et bestemt antall desimaler +JIS = JIS ## Endrer halvbreddes (enkeltbyte) engelske bokstaver eller katakana i en tegnstreng, til fullbreddes (dobbeltbyte) tegn +LEFT = VENSTRE ## Returnerer tegnene lengst til venstre i en tekstverdi +LEFTB = VENSTREB ## Returnerer tegnene lengst til venstre i en tekstverdi +LEN = LENGDE ## Returnerer antall tegn i en tekststreng +LENB = LENGDEB ## Returnerer antall tegn i en tekststreng +LOWER = SMÃ… ## Konverterer tekst til smÃ¥ bokstaver +MID = DELTEKST ## Returnerer et angitt antall tegn fra en tekststreng, og begynner fra posisjonen du angir +MIDB = DELTEKSTB ## Returnerer et angitt antall tegn fra en tekststreng, og begynner fra posisjonen du angir +PHONETIC = FURIGANA ## Trekker ut fonetiske tegn (furigana) fra en tekststreng +PROPER = STOR.FORBOKSTAV ## Gir den første bokstaven i hvert ord i en tekstverdi stor forbokstav +REPLACE = ERSTATT ## Erstatter tegn i en tekst +REPLACEB = ERSTATTB ## Erstatter tegn i en tekst +REPT = GJENTA ## Gjentar tekst et gitt antall ganger +RIGHT = HØYRE ## Returnerer tegnene lengst til høyre i en tekstverdi +RIGHTB = HØYREB ## Returnerer tegnene lengst til høyre i en tekstverdi +SEARCH = SØK ## Finner en tekstverdi inne i en annen (skiller ikke mellom store og smÃ¥ bokstaver) +SEARCHB = SØKB ## Finner en tekstverdi inne i en annen (skiller ikke mellom store og smÃ¥ bokstaver) +SUBSTITUTE = BYTT.UT ## Bytter ut gammel tekst med ny tekst i en tekststreng +T = T ## Konverterer argumentene til tekst +TEXT = TEKST ## Formaterer et tall og konverterer det til tekst +TRIM = TRIMME ## Fjerner mellomrom fra tekst +UPPER = STORE ## Konverterer tekst til store bokstaver +VALUE = VERDI ## Konverterer et tekstargument til et tall diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pl/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pl/config new file mode 100644 index 0000000..4dd75be --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pl/config @@ -0,0 +1,47 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = zÅ‚ + + +## +## Excel Error Codes (For future use) +## +NULL = #ZERO! +DIV0 = #DZIEL/0! +VALUE = #ARG! +REF = #ADR! +NAME = #NAZWA? +NUM = #LICZBA! +NA = #N/D! diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pl/functions b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pl/functions new file mode 100644 index 0000000..1881a71 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pl/functions @@ -0,0 +1,438 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Calculation +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## Data in this file derived from http://www.piuha.fi/excel-function-name-translation/ +## +## + + +## +## Add-in and Automation functions Funkcje dodatków i automatyzacji +## +GETPIVOTDATA = WEŹDANETABELI ## Zwraca dane przechowywane w raporcie tabeli przestawnej. + + +## +## Cube functions Funkcje modułów +## +CUBEKPIMEMBER = ELEMENT.KPI.MODUÅU ## Zwraca nazwÄ™, wÅ‚aÅ›ciwość i miarÄ™ kluczowego wskaźnika wydajnoÅ›ci (KPI) oraz wyÅ›wietla nazwÄ™ i wÅ‚aÅ›ciwość w komórce. Wskaźnik KPI jest miarÄ… iloÅ›ciowÄ…, takÄ… jak miesiÄ™czny zysk brutto lub kwartalna fluktuacja pracowników, używanÄ… do monitorowania wydajnoÅ›ci organizacji. +CUBEMEMBER = ELEMENT.MODUÅU ## Zwraca element lub krotkÄ™ z hierarchii moduÅ‚u. SÅ‚uży do sprawdzania, czy element lub krotka istnieje w module. +CUBEMEMBERPROPERTY = WÅAÅšCIWOŚĆ.ELEMENTU.MODUÅU ## Zwraca wartość wÅ‚aÅ›ciwoÅ›ci elementu w module. SÅ‚uży do sprawdzania, czy nazwa elementu istnieje w module, i zwracania okreÅ›lonej wÅ‚aÅ›ciwoÅ›ci dla tego elementu. +CUBERANKEDMEMBER = USZEREGOWANY.ELEMENT.MODUÅU ## Zwraca n-ty (albo uszeregowany) element zestawu. SÅ‚uży do zwracania elementu lub elementów zestawu, na przykÅ‚ad najlepszego sprzedawcy lub 10 najlepszych studentów. +CUBESET = ZESTAW.MODUÅÓW ## Definiuje obliczony zestaw elementów lub krotek, wysyÅ‚ajÄ…c wyrażenie zestawu do serwera moduÅ‚u, który tworzy zestaw i zwraca go do programu Microsoft Office Excel. +CUBESETCOUNT = LICZNIK.MODUÅÓW.ZESTAWU ## Zwraca liczbÄ™ elementów zestawu. +CUBEVALUE = WARTOŚĆ.MODUÅU ## Zwraca zagregowanÄ… wartość z moduÅ‚u. + + +## +## Database functions Funkcje baz danych +## +DAVERAGE = BD.ÅšREDNIA ## Zwraca wartość Å›redniej wybranych wpisów bazy danych. +DCOUNT = BD.ILE.REKORDÓW ## Zlicza komórki zawierajÄ…ce liczby w bazie danych. +DCOUNTA = BD.ILE.REKORDÓW.A ## Zlicza niepuste komórki w bazie danych. +DGET = BD.POLE ## WyodrÄ™bnia z bazy danych jeden rekord speÅ‚niajÄ…cy okreÅ›lone kryteria. +DMAX = BD.MAX ## Zwraca wartość maksymalnÄ… z wybranych wpisów bazy danych. +DMIN = BD.MIN ## Zwraca wartość minimalnÄ… z wybranych wpisów bazy danych. +DPRODUCT = BD.ILOCZYN ## Mnoży wartoÅ›ci w konkretnym, speÅ‚niajÄ…cym kryteria polu rekordów bazy danych. +DSTDEV = BD.ODCH.STANDARD ## Szacuje odchylenie standardowe na podstawie próbki z wybranych wpisów bazy danych. +DSTDEVP = BD.ODCH.STANDARD.POPUL ## Oblicza odchylenie standardowe na podstawie caÅ‚ej populacji wybranych wpisów bazy danych. +DSUM = BD.SUMA ## Dodaje liczby w kolumnie pól rekordów bazy danych, które speÅ‚niajÄ… kryteria. +DVAR = BD.WARIANCJA ## Szacuje wariancjÄ™ na podstawie próbki z wybranych wpisów bazy danych. +DVARP = BD.WARIANCJA.POPUL ## Oblicza wariancjÄ™ na podstawie caÅ‚ej populacji wybranych wpisów bazy danych. + + +## +## Date and time functions Funkcje dat, godzin i czasu +## +DATE = DATA ## Zwraca liczbÄ™ seryjnÄ… dla wybranej daty. +DATEVALUE = DATA.WARTOŚĆ ## Konwertuje datÄ™ w formie tekstu na liczbÄ™ seryjnÄ…. +DAY = DZIEŃ ## Konwertuje liczbÄ™ seryjnÄ… na dzieÅ„ miesiÄ…ca. +DAYS360 = DNI.360 ## Oblicza liczbÄ™ dni miÄ™dzy dwiema datami na podstawie roku 360-dniowego. +EDATE = UPÅDNI ## Zwraca liczbÄ™ seryjnÄ… daty jako wskazanÄ… liczbÄ™ miesiÄ™cy przed okreÅ›lonÄ… datÄ… poczÄ…tkowÄ… lub po niej. +EOMONTH = EOMONTH ## Zwraca liczbÄ™ seryjnÄ… ostatniego dnia miesiÄ…ca przed okreÅ›lonÄ… liczbÄ… miesiÄ™cy lub po niej. +HOUR = GODZINA ## Konwertuje liczbÄ™ seryjnÄ… na godzinÄ™. +MINUTE = MINUTA ## Konwertuje liczbÄ™ seryjnÄ… na minutÄ™. +MONTH = MIESIÄ„C ## Konwertuje liczbÄ™ seryjnÄ… na miesiÄ…c. +NETWORKDAYS = NETWORKDAYS ## Zwraca liczbÄ™ peÅ‚nych dni roboczych miÄ™dzy dwiema datami. +NOW = TERAZ ## Zwraca liczbÄ™ seryjnÄ… bieżącej daty i godziny. +SECOND = SEKUNDA ## Konwertuje liczbÄ™ seryjnÄ… na sekundÄ™. +TIME = CZAS ## Zwraca liczbÄ™ seryjnÄ… okreÅ›lonego czasu. +TIMEVALUE = CZAS.WARTOŚĆ ## Konwertuje czas w formie tekstu na liczbÄ™ seryjnÄ…. +TODAY = DZIÅš ## Zwraca liczbÄ™ seryjnÄ… dla daty bieżącej. +WEEKDAY = DZIEŃ.TYG ## Konwertuje liczbÄ™ seryjnÄ… na dzieÅ„ tygodnia. +WEEKNUM = WEEKNUM ## Konwertuje liczbÄ™ seryjnÄ… na liczbÄ™ reprezentujÄ…cÄ… numer tygodnia w roku. +WORKDAY = WORKDAY ## Zwraca liczbÄ™ seryjnÄ… dla daty przed okreÅ›lonÄ… liczbÄ… dni roboczych lub po niej. +YEAR = ROK ## Konwertuje liczbÄ™ seryjnÄ… na rok. +YEARFRAC = YEARFRAC ## Zwraca część roku reprezentowanÄ… przez peÅ‚nÄ… liczbÄ™ dni miÄ™dzy datÄ… poczÄ…tkowÄ… a datÄ… koÅ„cowÄ…. + + +## +## Engineering functions Funkcje inżynierskie +## +BESSELI = BESSELI ## Zwraca wartość zmodyfikowanej funkcji Bessela In(x). +BESSELJ = BESSELJ ## Zwraca wartość funkcji Bessela Jn(x). +BESSELK = BESSELK ## Zwraca wartość zmodyfikowanej funkcji Bessela Kn(x). +BESSELY = BESSELY ## Zwraca wartość funkcji Bessela Yn(x). +BIN2DEC = BIN2DEC ## Konwertuje liczbÄ™ w postaci dwójkowej na liczbÄ™ w postaci dziesiÄ™tnej. +BIN2HEX = BIN2HEX ## Konwertuje liczbÄ™ w postaci dwójkowej na liczbÄ™ w postaci szesnastkowej. +BIN2OCT = BIN2OCT ## Konwertuje liczbÄ™ w postaci dwójkowej na liczbÄ™ w postaci ósemkowej. +COMPLEX = COMPLEX ## Konwertuje część rzeczywistÄ… i urojonÄ… na liczbÄ™ zespolonÄ…. +CONVERT = CONVERT ## Konwertuje liczbÄ™ z jednego systemu miar na inny. +DEC2BIN = DEC2BIN ## Konwertuje liczbÄ™ w postaci dziesiÄ™tnej na postać dwójkowÄ…. +DEC2HEX = DEC2HEX ## Konwertuje liczbÄ™ w postaci dziesiÄ™tnej na liczbÄ™ w postaci szesnastkowej. +DEC2OCT = DEC2OCT ## Konwertuje liczbÄ™ w postaci dziesiÄ™tnej na liczbÄ™ w postaci ósemkowej. +DELTA = DELTA ## Sprawdza, czy dwie wartoÅ›ci sÄ… równe. +ERF = ERF ## Zwraca wartość funkcji błędu. +ERFC = ERFC ## Zwraca wartość komplementarnej funkcji błędu. +GESTEP = GESTEP ## Sprawdza, czy liczba jest wiÄ™ksza niż wartość progowa. +HEX2BIN = HEX2BIN ## Konwertuje liczbÄ™ w postaci szesnastkowej na liczbÄ™ w postaci dwójkowej. +HEX2DEC = HEX2DEC ## Konwertuje liczbÄ™ w postaci szesnastkowej na liczbÄ™ w postaci dziesiÄ™tnej. +HEX2OCT = HEX2OCT ## Konwertuje liczbÄ™ w postaci szesnastkowej na liczbÄ™ w postaci ósemkowej. +IMABS = IMABS ## Zwraca wartość bezwzglÄ™dnÄ… (moduÅ‚) liczby zespolonej. +IMAGINARY = IMAGINARY ## Zwraca wartość części urojonej liczby zespolonej. +IMARGUMENT = IMARGUMENT ## Zwraca wartość argumentu liczby zespolonej, przy czym kÄ…t wyrażony jest w radianach. +IMCONJUGATE = IMCONJUGATE ## Zwraca wartość liczby sprzężonej danej liczby zespolonej. +IMCOS = IMCOS ## Zwraca wartość cosinusa liczby zespolonej. +IMDIV = IMDIV ## Zwraca wartość ilorazu dwóch liczb zespolonych. +IMEXP = IMEXP ## Zwraca postać wykÅ‚adniczÄ… liczby zespolonej. +IMLN = IMLN ## Zwraca wartość logarytmu naturalnego liczby zespolonej. +IMLOG10 = IMLOG10 ## Zwraca wartość logarytmu dziesiÄ™tnego liczby zespolonej. +IMLOG2 = IMLOG2 ## Zwraca wartość logarytmu liczby zespolonej przy podstawie 2. +IMPOWER = IMPOWER ## Zwraca wartość liczby zespolonej podniesionej do potÄ™gi caÅ‚kowitej. +IMPRODUCT = IMPRODUCT ## Zwraca wartość iloczynu liczb zespolonych. +IMREAL = IMREAL ## Zwraca wartość części rzeczywistej liczby zespolonej. +IMSIN = IMSIN ## Zwraca wartość sinusa liczby zespolonej. +IMSQRT = IMSQRT ## Zwraca wartość pierwiastka kwadratowego z liczby zespolonej. +IMSUB = IMSUB ## Zwraca wartość różnicy dwóch liczb zespolonych. +IMSUM = IMSUM ## Zwraca wartość sumy liczb zespolonych. +OCT2BIN = OCT2BIN ## Konwertuje liczbÄ™ w postaci ósemkowej na liczbÄ™ w postaci dwójkowej. +OCT2DEC = OCT2DEC ## Konwertuje liczbÄ™ w postaci ósemkowej na liczbÄ™ w postaci dziesiÄ™tnej. +OCT2HEX = OCT2HEX ## Konwertuje liczbÄ™ w postaci ósemkowej na liczbÄ™ w postaci szesnastkowej. + + +## +## Financial functions Funkcje finansowe +## +ACCRINT = ACCRINT ## Zwraca narosÅ‚e odsetki dla papieru wartoÅ›ciowego z oprocentowaniem okresowym. +ACCRINTM = ACCRINTM ## Zwraca narosÅ‚e odsetki dla papieru wartoÅ›ciowego z oprocentowaniem w terminie wykupu. +AMORDEGRC = AMORDEGRC ## Zwraca amortyzacjÄ™ dla każdego okresu rozliczeniowego z wykorzystaniem współczynnika amortyzacji. +AMORLINC = AMORLINC ## Zwraca amortyzacjÄ™ dla każdego okresu rozliczeniowego. +COUPDAYBS = COUPDAYBS ## Zwraca liczbÄ™ dni od poczÄ…tku okresu dywidendy do dnia rozliczeniowego. +COUPDAYS = COUPDAYS ## Zwraca liczbÄ™ dni w okresie dywidendy, z uwzglÄ™dnieniem dnia rozliczeniowego. +COUPDAYSNC = COUPDAYSNC ## Zwraca liczbÄ™ dni od dnia rozliczeniowego do daty nastÄ™pnego dnia dywidendy. +COUPNCD = COUPNCD ## Zwraca dzieÅ„ nastÄ™pnej dywidendy po dniu rozliczeniowym. +COUPNUM = COUPNUM ## Zwraca liczbÄ™ dywidend pÅ‚atnych miÄ™dzy dniem rozliczeniowym a dniem wykupu. +COUPPCD = COUPPCD ## Zwraca dzieÅ„ poprzedniej dywidendy przed dniem rozliczeniowym. +CUMIPMT = CUMIPMT ## Zwraca wartość procentu skÅ‚adanego pÅ‚atnego miÄ™dzy dwoma okresami. +CUMPRINC = CUMPRINC ## Zwraca wartość kapitaÅ‚u skumulowanego spÅ‚aty pożyczki miÄ™dzy dwoma okresami. +DB = DB ## Zwraca amortyzacjÄ™ Å›rodka trwaÅ‚ego w danym okresie metodÄ… degresywnÄ… z zastosowaniem staÅ‚ej bazowej. +DDB = DDB ## Zwraca amortyzacjÄ™ Å›rodka trwaÅ‚ego za podany okres metodÄ… degresywnÄ… z zastosowaniem podwójnej bazowej lub metodÄ… okreÅ›lonÄ… przez użytkownika. +DISC = DISC ## Zwraca wartość stopy dyskontowej papieru wartoÅ›ciowego. +DOLLARDE = DOLLARDE ## Konwertuje cenÄ™ w postaci uÅ‚amkowej na cenÄ™ wyrażonÄ… w postaci dziesiÄ™tnej. +DOLLARFR = DOLLARFR ## Konwertuje cenÄ™ wyrażonÄ… w postaci dziesiÄ™tnej na cenÄ™ wyrażonÄ… w postaci uÅ‚amkowej. +DURATION = DURATION ## Zwraca wartość rocznego przychodu z papieru wartoÅ›ciowego o okresowych wypÅ‚atach oprocentowania. +EFFECT = EFFECT ## Zwraca wartość efektywnej rocznej stopy procentowej. +FV = FV ## Zwraca przyszłą wartość lokaty. +FVSCHEDULE = FVSCHEDULE ## Zwraca przyszłą wartość kapitaÅ‚u poczÄ…tkowego wraz z szeregiem procentów skÅ‚adanych. +INTRATE = INTRATE ## Zwraca wartość stopy procentowej papieru wartoÅ›ciowego caÅ‚kowicie ulokowanego. +IPMT = IPMT ## Zwraca wysokość spÅ‚aty oprocentowania lokaty za dany okres. +IRR = IRR ## Zwraca wartość wewnÄ™trznej stopy zwrotu dla serii przepÅ‚ywów gotówkowych. +ISPMT = ISPMT ## Oblicza wysokość spÅ‚aty oprocentowania za dany okres lokaty. +MDURATION = MDURATION ## Zwraca wartość zmodyfikowanego okresu Macauleya dla papieru wartoÅ›ciowego o zaÅ‚ożonej wartoÅ›ci nominalnej 100 zÅ‚. +MIRR = MIRR ## Zwraca wartość wewnÄ™trznej stopy zwrotu dla przypadku, gdy dodatnie i ujemne przepÅ‚ywy gotówkowe majÄ… różne stopy. +NOMINAL = NOMINAL ## Zwraca wysokość nominalnej rocznej stopy procentowej. +NPER = NPER ## Zwraca liczbÄ™ okresów dla lokaty. +NPV = NPV ## Zwraca wartość bieżącÄ… netto lokaty na podstawie szeregu okresowych przepÅ‚ywów gotówkowych i stopy dyskontowej. +ODDFPRICE = ODDFPRICE ## Zwraca cenÄ™ za 100 zÅ‚ wartoÅ›ci nominalnej papieru wartoÅ›ciowego z nietypowym pierwszym okresem. +ODDFYIELD = ODDFYIELD ## Zwraca rentowność papieru wartoÅ›ciowego z nietypowym pierwszym okresem. +ODDLPRICE = ODDLPRICE ## Zwraca cenÄ™ za 100 zÅ‚ wartoÅ›ci nominalnej papieru wartoÅ›ciowego z nietypowym ostatnim okresem. +ODDLYIELD = ODDLYIELD ## Zwraca rentowność papieru wartoÅ›ciowego z nietypowym ostatnim okresem. +PMT = PMT ## Zwraca wartość okresowej pÅ‚atnoÅ›ci raty rocznej. +PPMT = PPMT ## Zwraca wysokość spÅ‚aty kapitaÅ‚u w przypadku lokaty dla danego okresu. +PRICE = PRICE ## Zwraca cenÄ™ za 100 zÅ‚ wartoÅ›ci nominalnej papieru wartoÅ›ciowego z oprocentowaniem okresowym. +PRICEDISC = PRICEDISC ## Zwraca cenÄ™ za 100 zÅ‚ wartoÅ›ci nominalnej papieru wartoÅ›ciowego zdyskontowanego. +PRICEMAT = PRICEMAT ## Zwraca cenÄ™ za 100 zÅ‚ wartoÅ›ci nominalnej papieru wartoÅ›ciowego z oprocentowaniem w terminie wykupu. +PV = PV ## Zwraca wartość bieżącÄ… lokaty. +RATE = RATE ## Zwraca wysokość stopy procentowej w okresie raty rocznej. +RECEIVED = RECEIVED ## Zwraca wartość kapitaÅ‚u otrzymanego przy wykupie papieru wartoÅ›ciowego caÅ‚kowicie ulokowanego. +SLN = SLN ## Zwraca amortyzacjÄ™ Å›rodka trwaÅ‚ego za jeden okres metodÄ… liniowÄ…. +SYD = SYD ## Zwraca amortyzacjÄ™ Å›rodka trwaÅ‚ego za dany okres metodÄ… sumy cyfr lat amortyzacji. +TBILLEQ = TBILLEQ ## Zwraca rentowność ekwiwalentu obligacji dla bonu skarbowego. +TBILLPRICE = TBILLPRICE ## Zwraca cenÄ™ za 100 zÅ‚ wartoÅ›ci nominalnej bonu skarbowego. +TBILLYIELD = TBILLYIELD ## Zwraca rentowność bonu skarbowego. +VDB = VDB ## Oblicza amortyzacjÄ™ Å›rodka trwaÅ‚ego w danym okresie lub jego części metodÄ… degresywnÄ…. +XIRR = XIRR ## Zwraca wartość wewnÄ™trznej stopy zwrotu dla serii rozÅ‚ożonych w czasie przepÅ‚ywów gotówkowych, niekoniecznie okresowych. +XNPV = XNPV ## Zwraca wartość bieżącÄ… netto dla serii rozÅ‚ożonych w czasie przepÅ‚ywów gotówkowych, niekoniecznie okresowych. +YIELD = YIELD ## Zwraca rentowność papieru wartoÅ›ciowego z oprocentowaniem okresowym. +YIELDDISC = YIELDDISC ## Zwraca rocznÄ… rentowność zdyskontowanego papieru wartoÅ›ciowego, na przykÅ‚ad bonu skarbowego. +YIELDMAT = YIELDMAT ## Zwraca rocznÄ… rentowność papieru wartoÅ›ciowego oprocentowanego przy wykupie. + + +## +## Information functions Funkcje informacyjne +## +CELL = KOMÓRKA ## Zwraca informacje o formacie, poÅ‚ożeniu lub zawartoÅ›ci komórki. +ERROR.TYPE = NR.BÅĘDU ## Zwraca liczbÄ™ odpowiadajÄ…cÄ… typowi błędu. +INFO = INFO ## Zwraca informacjÄ™ o aktualnym Å›rodowisku pracy. +ISBLANK = CZY.PUSTA ## Zwraca wartość PRAWDA, jeÅ›li wartość jest pusta. +ISERR = CZY.BÅ ## Zwraca wartość PRAWDA, jeÅ›li wartość jest dowolnÄ… wartoÅ›ciÄ… błędu, z wyjÄ…tkiem #N/D!. +ISERROR = CZY.BÅÄ„D ## Zwraca wartość PRAWDA, jeÅ›li wartość jest dowolnÄ… wartoÅ›ciÄ… błędu. +ISEVEN = ISEVEN ## Zwraca wartość PRAWDA, jeÅ›li liczba jest parzysta. +ISLOGICAL = CZY.LOGICZNA ## Zwraca wartość PRAWDA, jeÅ›li wartość jest wartoÅ›ciÄ… logicznÄ…. +ISNA = CZY.BRAK ## Zwraca wartość PRAWDA, jeÅ›li wartość jest wartoÅ›ciÄ… błędu #N/D!. +ISNONTEXT = CZY.NIE.TEKST ## Zwraca wartość PRAWDA, jeÅ›li wartość nie jest tekstem. +ISNUMBER = CZY.LICZBA ## Zwraca wartość PRAWDA, jeÅ›li wartość jest liczbÄ…. +ISODD = ISODD ## Zwraca wartość PRAWDA, jeÅ›li liczba jest nieparzysta. +ISREF = CZY.ADR ## Zwraca wartość PRAWDA, jeÅ›li wartość jest odwoÅ‚aniem. +ISTEXT = CZY.TEKST ## Zwraca wartość PRAWDA, jeÅ›li wartość jest tekstem. +N = L ## Zwraca wartość przekonwertowanÄ… na postać liczbowÄ…. +NA = BRAK ## Zwraca wartość błędu #N/D!. +TYPE = TYP ## Zwraca liczbÄ™ wskazujÄ…cÄ… typ danych wartoÅ›ci. + + +## +## Logical functions Funkcje logiczne +## +AND = ORAZ ## Zwraca wartość PRAWDA, jeÅ›li wszystkie argumenty majÄ… wartość PRAWDA. +FALSE = FAÅSZ ## Zwraca wartość logicznÄ… FAÅSZ. +IF = JEÅ»ELI ## OkreÅ›la warunek logiczny do sprawdzenia. +IFERROR = JEÅ»ELI.BÅÄ„D ## Zwraca okreÅ›lonÄ… wartość, jeÅ›li wynikiem obliczenia formuÅ‚y jest błąd; w przeciwnym przypadku zwraca wynik formuÅ‚y. +NOT = NIE ## Odwraca wartość logicznÄ… argumentu. +OR = LUB ## Zwraca wartość PRAWDA, jeÅ›li co najmniej jeden z argumentów ma wartość PRAWDA. +TRUE = PRAWDA ## Zwraca wartość logicznÄ… PRAWDA. + + +## +## Lookup and reference functions Funkcje wyszukiwania i odwoÅ‚aÅ„ +## +ADDRESS = ADRES ## Zwraca odwoÅ‚anie do jednej komórki w arkuszu jako wartość tekstowÄ…. +AREAS = OBSZARY ## Zwraca liczbÄ™ obszarów wystÄ™pujÄ…cych w odwoÅ‚aniu. +CHOOSE = WYBIERZ ## Wybiera wartość z listy wartoÅ›ci. +COLUMN = NR.KOLUMNY ## Zwraca numer kolumny z odwoÅ‚ania. +COLUMNS = LICZBA.KOLUMN ## Zwraca liczbÄ™ kolumn dla danego odwoÅ‚ania. +HLOOKUP = WYSZUKAJ.POZIOMO ## PrzeglÄ…da górny wiersz tablicy i zwraca wartość wskazanej komórki. +HYPERLINK = HIPERÅÄ„CZE ## Tworzy skrót lub skok, który pozwala otwierać dokument przechowywany na serwerze sieciowym, w sieci intranet lub w Internecie. +INDEX = INDEKS ## Używa indeksu do wybierania wartoÅ›ci z odwoÅ‚ania lub tablicy. +INDIRECT = ADR.POÅšR ## Zwraca odwoÅ‚anie okreÅ›lone przez wartość tekstowÄ…. +LOOKUP = WYSZUKAJ ## Wyszukuje wartoÅ›ci w wektorze lub tablicy. +MATCH = PODAJ.POZYCJĘ ## Wyszukuje wartoÅ›ci w odwoÅ‚aniu lub w tablicy. +OFFSET = PRZESUNIĘCIE ## Zwraca adres przesuniÄ™ty od danego odwoÅ‚ania. +ROW = WIERSZ ## Zwraca numer wiersza odwoÅ‚ania. +ROWS = ILE.WIERSZY ## Zwraca liczbÄ™ wierszy dla danego odwoÅ‚ania. +RTD = RTD ## Pobiera dane w czasie rzeczywistym z programu obsÅ‚ugujÄ…cego automatyzacjÄ™ COM (Automatyzacja: Sposób pracy z obiektami aplikacji pochodzÄ…cymi z innej aplikacji lub narzÄ™dzia projektowania. Nazywana wczeÅ›niej AutomatyzacjÄ… OLE, Automatyzacja jest standardem przemysÅ‚owym i funkcjÄ… obiektowego modelu skÅ‚adników (COM, Component Object Model).). +TRANSPOSE = TRANSPONUJ ## Zwraca transponowanÄ… tablicÄ™. +VLOOKUP = WYSZUKAJ.PIONOWO ## Przeszukuje pierwszÄ… kolumnÄ™ tablicy i przechodzi wzdÅ‚uż wiersza, aby zwrócić wartość komórki. + + +## +## Math and trigonometry functions Funkcje matematyczne i trygonometryczne +## +ABS = MODUÅ.LICZBY ## Zwraca wartość absolutnÄ… liczby. +ACOS = ACOS ## Zwraca arcus cosinus liczby. +ACOSH = ACOSH ## Zwraca arcus cosinus hiperboliczny liczby. +ASIN = ASIN ## Zwraca arcus sinus liczby. +ASINH = ASINH ## Zwraca arcus sinus hiperboliczny liczby. +ATAN = ATAN ## Zwraca arcus tangens liczby. +ATAN2 = ATAN2 ## Zwraca arcus tangens liczby na podstawie współrzÄ™dnych x i y. +ATANH = ATANH ## Zwraca arcus tangens hiperboliczny liczby. +CEILING = ZAOKR.W.GÓRĘ ## ZaokrÄ…gla liczbÄ™ do najbliższej liczby caÅ‚kowitej lub do najbliższej wielokrotnoÅ›ci dokÅ‚adnoÅ›ci. +COMBIN = KOMBINACJE ## Zwraca liczbÄ™ kombinacji dla danej liczby obiektów. +COS = COS ## Zwraca cosinus liczby. +COSH = COSH ## Zwraca cosinus hiperboliczny liczby. +DEGREES = STOPNIE ## Konwertuje radiany na stopnie. +EVEN = ZAOKR.DO.PARZ ## ZaokrÄ…gla liczbÄ™ w górÄ™ do najbliższej liczby parzystej. +EXP = EXP ## Zwraca wartość liczby e podniesionej do potÄ™gi okreÅ›lonej przez podanÄ… liczbÄ™. +FACT = SILNIA ## Zwraca silniÄ™ liczby. +FACTDOUBLE = FACTDOUBLE ## Zwraca podwójnÄ… silniÄ™ liczby. +FLOOR = ZAOKR.W.DÓŠ## ZaokrÄ…gla liczbÄ™ w dół, w kierunku zera. +GCD = GCD ## Zwraca najwiÄ™kszy wspólny dzielnik. +INT = ZAOKR.DO.CAÅK ## ZaokrÄ…gla liczbÄ™ w dół do najbliższej liczby caÅ‚kowitej. +LCM = LCM ## Zwraca najmniejszÄ… wspólnÄ… wielokrotność. +LN = LN ## Zwraca logarytm naturalny podanej liczby. +LOG = LOG ## Zwraca logarytm danej liczby przy zadanej podstawie. +LOG10 = LOG10 ## Zwraca logarytm dziesiÄ™tny liczby. +MDETERM = WYZNACZNIK.MACIERZY ## Zwraca wyznacznik macierzy tablicy. +MINVERSE = MACIERZ.ODW ## Zwraca odwrotność macierzy tablicy. +MMULT = MACIERZ.ILOCZYN ## Zwraca iloczyn macierzy dwóch tablic. +MOD = MOD ## Zwraca resztÄ™ z dzielenia. +MROUND = MROUND ## Zwraca liczbÄ™ zaokrÄ…glonÄ… do żądanej wielokrotnoÅ›ci. +MULTINOMIAL = MULTINOMIAL ## Zwraca wielomian dla zbioru liczb. +ODD = ZAOKR.DO.NPARZ ## ZaokrÄ…gla liczbÄ™ w górÄ™ do najbliższej liczby nieparzystej. +PI = PI ## Zwraca wartość liczby Pi. +POWER = POTĘGA ## Zwraca liczbÄ™ podniesionÄ… do potÄ™gi. +PRODUCT = ILOCZYN ## Mnoży argumenty. +QUOTIENT = QUOTIENT ## Zwraca iloraz (caÅ‚kowity). +RADIANS = RADIANY ## Konwertuje stopnie na radiany. +RAND = LOS ## Zwraca liczbÄ™ pseudolosowÄ… z zakresu od 0 do 1. +RANDBETWEEN = RANDBETWEEN ## Zwraca liczbÄ™ pseudolosowÄ… z zakresu okreÅ›lonego przez podane argumenty. +ROMAN = RZYMSKIE ## Konwertuje liczbÄ™ arabskÄ… na rzymskÄ… jako tekst. +ROUND = ZAOKR ## ZaokrÄ…gla liczbÄ™ do okreÅ›lonej liczby cyfr. +ROUNDDOWN = ZAOKR.DÓŠ## ZaokrÄ…gla liczbÄ™ w dół, w kierunku zera. +ROUNDUP = ZAOKR.GÓRA ## ZaokrÄ…gla liczbÄ™ w górÄ™, w kierunku od zera. +SERIESSUM = SERIESSUM ## Zwraca sumÄ™ szeregu potÄ™gowego na podstawie wzoru. +SIGN = ZNAK.LICZBY ## Zwraca znak liczby. +SIN = SIN ## Zwraca sinus danego kÄ…ta. +SINH = SINH ## Zwraca sinus hiperboliczny liczby. +SQRT = PIERWIASTEK ## Zwraca dodatni pierwiastek kwadratowy. +SQRTPI = SQRTPI ## Zwraca pierwiastek kwadratowy iloczynu (liczba * Pi). +SUBTOTAL = SUMY.POÅšREDNIE ## Zwraca sumÄ™ częściowÄ… listy lub bazy danych. +SUM = SUMA ## Dodaje argumenty. +SUMIF = SUMA.JEÅ»ELI ## Dodaje komórki okreÅ›lone przez podane kryterium. +SUMIFS = SUMA.WARUNKÓW ## Dodaje komórki w zakresie, które speÅ‚niajÄ… wiele kryteriów. +SUMPRODUCT = SUMA.ILOCZYNÓW ## Zwraca sumÄ™ iloczynów odpowiednich elementów tablicy. +SUMSQ = SUMA.KWADRATÓW ## Zwraca sumÄ™ kwadratów argumentów. +SUMX2MY2 = SUMA.X2.M.Y2 ## Zwraca sumÄ™ różnic kwadratów odpowiednich wartoÅ›ci w dwóch tablicach. +SUMX2PY2 = SUMA.X2.P.Y2 ## Zwraca sumÄ™ sum kwadratów odpowiednich wartoÅ›ci w dwóch tablicach. +SUMXMY2 = SUMA.XMY.2 ## Zwraca sumÄ™ kwadratów różnic odpowiednich wartoÅ›ci w dwóch tablicach. +TAN = TAN ## Zwraca tangens liczby. +TANH = TANH ## Zwraca tangens hiperboliczny liczby. +TRUNC = LICZBA.CAÅK ## Przycina liczbÄ™ do wartoÅ›ci caÅ‚kowitej. + + +## +## Statistical functions Funkcje statystyczne +## +AVEDEV = ODCH.ÅšREDNIE ## Zwraca Å›redniÄ… wartość odchyleÅ„ absolutnych punktów danych od ich wartoÅ›ci Å›redniej. +AVERAGE = ÅšREDNIA ## Zwraca wartość Å›redniÄ… argumentów. +AVERAGEA = ÅšREDNIA.A ## Zwraca wartość Å›redniÄ… argumentów, z uwzglÄ™dnieniem liczb, tekstów i wartoÅ›ci logicznych. +AVERAGEIF = ÅšREDNIA.JEÅ»ELI ## Zwraca Å›redniÄ… (Å›redniÄ… arytmetycznÄ…) wszystkich komórek w zakresie, które speÅ‚niajÄ… podane kryteria. +AVERAGEIFS = ÅšREDNIA.WARUNKÓW ## Zwraca Å›redniÄ… (Å›redniÄ… arytmetycznÄ…) wszystkich komórek, które speÅ‚niajÄ… jedno lub wiÄ™cej kryteriów. +BETADIST = ROZKÅAD.BETA ## Zwraca skumulowanÄ… funkcjÄ™ gÄ™stoÅ›ci prawdopodobieÅ„stwa beta. +BETAINV = ROZKÅAD.BETA.ODW ## Zwraca odwrotność skumulowanej funkcji gÄ™stoÅ›ci prawdopodobieÅ„stwa beta. +BINOMDIST = ROZKÅAD.DWUM ## Zwraca pojedynczy skÅ‚adnik dwumianowego rozkÅ‚adu prawdopodobieÅ„stwa. +CHIDIST = ROZKÅAD.CHI ## Zwraca wartość jednostronnego prawdopodobieÅ„stwa rozkÅ‚adu chi-kwadrat. +CHIINV = ROZKÅAD.CHI.ODW ## Zwraca odwrotność wartoÅ›ci jednostronnego prawdopodobieÅ„stwa rozkÅ‚adu chi-kwadrat. +CHITEST = TEST.CHI ## Zwraca test niezależnoÅ›ci. +CONFIDENCE = UFNOŚĆ ## Zwraca interwaÅ‚ ufnoÅ›ci dla Å›redniej populacji. +CORREL = WSP.KORELACJI ## Zwraca współczynnik korelacji dwóch zbiorów danych. +COUNT = ILE.LICZB ## Zlicza liczby znajdujÄ…ce siÄ™ na liÅ›cie argumentów. +COUNTA = ILE.NIEPUSTYCH ## Zlicza wartoÅ›ci znajdujÄ…ce siÄ™ na liÅ›cie argumentów. +COUNTBLANK = LICZ.PUSTE ## Zwraca liczbÄ™ pustych komórek w pewnym zakresie. +COUNTIF = LICZ.JEÅ»ELI ## Zlicza komórki wewnÄ…trz zakresu, które speÅ‚niajÄ… podane kryteria. +COUNTIFS = LICZ.WARUNKI ## Zlicza komórki wewnÄ…trz zakresu, które speÅ‚niajÄ… wiele kryteriów. +COVAR = KOWARIANCJA ## Zwraca kowariancjÄ™, czyli Å›redniÄ… wartość iloczynów odpowiednich odchyleÅ„. +CRITBINOM = PRÓG.ROZKÅAD.DWUM ## Zwraca najmniejszÄ… wartość, dla której skumulowany rozkÅ‚ad dwumianowy jest mniejszy niż wartość kryterium lub równy jej. +DEVSQ = ODCH.KWADRATOWE ## Zwraca sumÄ™ kwadratów odchyleÅ„. +EXPONDIST = ROZKÅAD.EXP ## Zwraca rozkÅ‚ad wykÅ‚adniczy. +FDIST = ROZKÅAD.F ## Zwraca rozkÅ‚ad prawdopodobieÅ„stwa F. +FINV = ROZKÅAD.F.ODW ## Zwraca odwrotność rozkÅ‚adu prawdopodobieÅ„stwa F. +FISHER = ROZKÅAD.FISHER ## Zwraca transformacjÄ™ Fishera. +FISHERINV = ROZKÅAD.FISHER.ODW ## Zwraca odwrotność transformacji Fishera. +FORECAST = REGLINX ## Zwraca wartość trendu liniowego. +FREQUENCY = CZĘSTOŚĆ ## Zwraca rozkÅ‚ad czÄ™stotliwoÅ›ci jako tablicÄ™ pionowÄ…. +FTEST = TEST.F ## Zwraca wynik testu F. +GAMMADIST = ROZKÅAD.GAMMA ## Zwraca rozkÅ‚ad gamma. +GAMMAINV = ROZKÅAD.GAMMA.ODW ## Zwraca odwrotność skumulowanego rozkÅ‚adu gamma. +GAMMALN = ROZKÅAD.LIN.GAMMA ## Zwraca logarytm naturalny funkcji gamma, Γ(x). +GEOMEAN = ÅšREDNIA.GEOMETRYCZNA ## Zwraca Å›redniÄ… geometrycznÄ…. +GROWTH = REGEXPW ## Zwraca wartoÅ›ci trendu wykÅ‚adniczego. +HARMEAN = ÅšREDNIA.HARMONICZNA ## Zwraca Å›redniÄ… harmonicznÄ…. +HYPGEOMDIST = ROZKÅAD.HIPERGEOM ## Zwraca rozkÅ‚ad hipergeometryczny. +INTERCEPT = ODCIĘTA ## Zwraca punkt przeciÄ™cia osi pionowej z liniÄ… regresji liniowej. +KURT = KURTOZA ## Zwraca kurtozÄ™ zbioru danych. +LARGE = MAX.K ## Zwraca k-tÄ… najwiÄ™kszÄ… wartość ze zbioru danych. +LINEST = REGLINP ## Zwraca parametry trendu liniowego. +LOGEST = REGEXPP ## Zwraca parametry trendu wykÅ‚adniczego. +LOGINV = ROZKÅAD.LOG.ODW ## Zwraca odwrotność rozkÅ‚adu logarytmu naturalnego. +LOGNORMDIST = ROZKÅAD.LOG ## Zwraca skumulowany rozkÅ‚ad logarytmu naturalnego. +MAX = MAX ## Zwraca maksymalnÄ… wartość listy argumentów. +MAXA = MAX.A ## Zwraca maksymalnÄ… wartość listy argumentów, z uwzglÄ™dnieniem liczb, tekstów i wartoÅ›ci logicznych. +MEDIAN = MEDIANA ## Zwraca medianÄ™ podanych liczb. +MIN = MIN ## Zwraca minimalnÄ… wartość listy argumentów. +MINA = MIN.A ## Zwraca najmniejszÄ… wartość listy argumentów, z uwzglÄ™dnieniem liczb, tekstów i wartoÅ›ci logicznych. +MODE = WYST.NAJCZĘŚCIEJ ## Zwraca wartość najczęściej wystÄ™pujÄ…cÄ… w zbiorze danych. +NEGBINOMDIST = ROZKÅAD.DWUM.PRZEC ## Zwraca ujemny rozkÅ‚ad dwumianowy. +NORMDIST = ROZKÅAD.NORMALNY ## Zwraca rozkÅ‚ad normalny skumulowany. +NORMINV = ROZKÅAD.NORMALNY.ODW ## Zwraca odwrotność rozkÅ‚adu normalnego skumulowanego. +NORMSDIST = ROZKÅAD.NORMALNY.S ## Zwraca standardowy rozkÅ‚ad normalny skumulowany. +NORMSINV = ROZKÅAD.NORMALNY.S.ODW ## Zwraca odwrotność standardowego rozkÅ‚adu normalnego skumulowanego. +PEARSON = PEARSON ## Zwraca współczynnik korelacji momentu iloczynu Pearsona. +PERCENTILE = PERCENTYL ## Wyznacza k-ty percentyl wartoÅ›ci w zakresie. +PERCENTRANK = PROCENT.POZYCJA ## Zwraca procentowÄ… pozycjÄ™ wartoÅ›ci w zbiorze danych. +PERMUT = PERMUTACJE ## Zwraca liczbÄ™ permutacji dla danej liczby obiektów. +POISSON = ROZKÅAD.POISSON ## Zwraca rozkÅ‚ad Poissona. +PROB = PRAWDPD ## Zwraca prawdopodobieÅ„stwo, że wartoÅ›ci w zakresie leżą pomiÄ™dzy dwiema granicami. +QUARTILE = KWARTYL ## Wyznacza kwartyl zbioru danych. +RANK = POZYCJA ## Zwraca pozycjÄ™ liczby na liÅ›cie liczb. +RSQ = R.KWADRAT ## Zwraca kwadrat współczynnika korelacji momentu iloczynu Pearsona. +SKEW = SKOÅšNOŚĆ ## Zwraca skoÅ›ność rozkÅ‚adu. +SLOPE = NACHYLENIE ## Zwraca nachylenie linii regresji liniowej. +SMALL = MIN.K ## Zwraca k-tÄ… najmniejszÄ… wartość ze zbioru danych. +STANDARDIZE = NORMALIZUJ ## Zwraca wartość znormalizowanÄ…. +STDEV = ODCH.STANDARDOWE ## Szacuje odchylenie standardowe na podstawie próbki. +STDEVA = ODCH.STANDARDOWE.A ## Szacuje odchylenie standardowe na podstawie próbki, z uwzglÄ™dnieniem liczb, tekstów i wartoÅ›ci logicznych. +STDEVP = ODCH.STANDARD.POPUL ## Oblicza odchylenie standardowe na podstawie caÅ‚ej populacji. +STDEVPA = ODCH.STANDARD.POPUL.A ## Oblicza odchylenie standardowe na podstawie caÅ‚ej populacji, z uwzglÄ™dnieniem liczb, teksów i wartoÅ›ci logicznych. +STEYX = REGBÅSTD ## Zwraca błąd standardowy przewidzianej wartoÅ›ci y dla każdej wartoÅ›ci x w regresji. +TDIST = ROZKÅAD.T ## Zwraca rozkÅ‚ad t-Studenta. +TINV = ROZKÅAD.T.ODW ## Zwraca odwrotność rozkÅ‚adu t-Studenta. +TREND = REGLINW ## Zwraca wartoÅ›ci trendu liniowego. +TRIMMEAN = ÅšREDNIA.WEWN ## Zwraca Å›redniÄ… wartość dla wnÄ™trza zbioru danych. +TTEST = TEST.T ## Zwraca prawdopodobieÅ„stwo zwiÄ…zane z testem t-Studenta. +VAR = WARIANCJA ## Szacuje wariancjÄ™ na podstawie próbki. +VARA = WARIANCJA.A ## Szacuje wariancjÄ™ na podstawie próbki, z uwzglÄ™dnieniem liczb, tekstów i wartoÅ›ci logicznych. +VARP = WARIANCJA.POPUL ## Oblicza wariancjÄ™ na podstawie caÅ‚ej populacji. +VARPA = WARIANCJA.POPUL.A ## Oblicza wariancjÄ™ na podstawie caÅ‚ej populacji, z uwzglÄ™dnieniem liczb, tekstów i wartoÅ›ci logicznych. +WEIBULL = ROZKÅAD.WEIBULL ## Zwraca rozkÅ‚ad Weibulla. +ZTEST = TEST.Z ## Zwraca wartość jednostronnego prawdopodobieÅ„stwa testu z. + + +## +## Text functions Funkcje tekstowe +## +ASC = ASC ## Zamienia litery angielskie lub katakana o peÅ‚nej szerokoÅ›ci (dwubajtowe) w ciÄ…gu znaków na znaki o szerokoÅ›ci połówkowej (jednobajtowe). +BAHTTEXT = BAHTTEXT ## Konwertuje liczbÄ™ na tekst, stosujÄ…c format walutowy ß (baht). +CHAR = ZNAK ## Zwraca znak o podanym numerze kodu. +CLEAN = OCZYŚĆ ## Usuwa z tekstu wszystkie znaki, które nie mogÄ… być drukowane. +CODE = KOD ## Zwraca kod numeryczny pierwszego znaku w ciÄ…gu tekstowym. +CONCATENATE = ZÅÄ„CZ.TEKSTY ## ÅÄ…czy kilka oddzielnych tekstów w jeden tekst. +DOLLAR = KWOTA ## Konwertuje liczbÄ™ na tekst, stosujÄ…c format walutowy $ (dolar). +EXACT = PORÓWNAJ ## Sprawdza identyczność dwóch wartoÅ›ci tekstowych. +FIND = ZNAJDŹ ## Znajduje jednÄ… wartość tekstowÄ… wewnÄ…trz innej (z uwzglÄ™dnieniem wielkich i maÅ‚ych liter). +FINDB = ZNAJDŹB ## Znajduje jednÄ… wartość tekstowÄ… wewnÄ…trz innej (z uwzglÄ™dnieniem wielkich i maÅ‚ych liter). +FIXED = ZAOKR.DO.TEKST ## Formatuje liczbÄ™ jako tekst przy staÅ‚ej liczbie miejsc dziesiÄ™tnych. +JIS = JIS ## Zmienia litery angielskie lub katakana o szerokoÅ›ci połówkowej (jednobajtowe) w ciÄ…gu znaków na znaki o peÅ‚nej szerokoÅ›ci (dwubajtowe). +LEFT = LEWY ## Zwraca skrajne lewe znaki z wartoÅ›ci tekstowej. +LEFTB = LEWYB ## Zwraca skrajne lewe znaki z wartoÅ›ci tekstowej. +LEN = DÅ ## Zwraca liczbÄ™ znaków ciÄ…gu tekstowego. +LENB = DÅ.B ## Zwraca liczbÄ™ znaków ciÄ…gu tekstowego. +LOWER = LITERY.MAÅE ## Konwertuje wielkie litery tekstu na maÅ‚e litery. +MID = FRAGMENT.TEKSTU ## Zwraca okreÅ›lonÄ… liczbÄ™ znaków z ciÄ…gu tekstowego, zaczynajÄ…c od zadanej pozycji. +MIDB = FRAGMENT.TEKSTU.B ## Zwraca okreÅ›lonÄ… liczbÄ™ znaków z ciÄ…gu tekstowego, zaczynajÄ…c od zadanej pozycji. +PHONETIC = PHONETIC ## Wybiera znaki fonetyczne (furigana) z ciÄ…gu tekstowego. +PROPER = Z.WIELKIEJ.LITERY ## ZastÄ™puje pierwszÄ… literÄ™ każdego wyrazu tekstu wielkÄ… literÄ…. +REPLACE = ZASTÄ„P ## ZastÄ™puje znaki w tekÅ›cie. +REPLACEB = ZASTÄ„P.B ## ZastÄ™puje znaki w tekÅ›cie. +REPT = POWT ## Powiela tekst danÄ… liczbÄ™ razy. +RIGHT = PRAWY ## Zwraca skrajne prawe znaki z wartoÅ›ci tekstowej. +RIGHTB = PRAWYB ## Zwraca skrajne prawe znaki z wartoÅ›ci tekstowej. +SEARCH = SZUKAJ.TEKST ## Wyszukuje jednÄ… wartość tekstowÄ… wewnÄ…trz innej (bez uwzglÄ™dniania wielkoÅ›ci liter). +SEARCHB = SZUKAJ.TEKST.B ## Wyszukuje jednÄ… wartość tekstowÄ… wewnÄ…trz innej (bez uwzglÄ™dniania wielkoÅ›ci liter). +SUBSTITUTE = PODSTAW ## Podstawia nowy tekst w miejsce poprzedniego tekstu w ciÄ…gu tekstowym. +T = T ## Konwertuje argumenty na tekst. +TEXT = TEKST ## Formatuje liczbÄ™ i konwertuje jÄ… na tekst. +TRIM = USUŃ.ZBĘDNE.ODSTĘPY ## Usuwa spacje z tekstu. +UPPER = LITERY.WIELKIE ## Konwertuje znaki tekstu na wielkie litery. +VALUE = WARTOŚĆ ## Konwertuje argument tekstowy na liczbÄ™. diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/br/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/br/config new file mode 100644 index 0000000..45b6fbd --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/br/config @@ -0,0 +1,47 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = R$ + + +## +## Excel Error Codes (For future use) +## +NULL = #NULO! +DIV0 = #DIV/0! +VALUE = #VALOR! +REF = #REF! +NAME = #NOME? +NUM = #NÚM! +NA = #N/D diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/br/functions b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/br/functions new file mode 100644 index 0000000..f3ba3a3 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/br/functions @@ -0,0 +1,408 @@ +## +## Add-in and Automation functions Funções Suplemento e Automação +## +GETPIVOTDATA = INFODADOSTABELADINÂMICA ## Retorna os dados armazenados em um relatório de tabela dinâmica + + +## +## Cube functions Funções de Cubo +## +CUBEKPIMEMBER = MEMBROKPICUBO ## Retorna o nome de um KPI (indicador de desempenho-chave), uma propriedade e uma medida e exibe o nome e a propriedade na célula. Um KPI é uma medida quantificável, como o lucro bruto mensal ou a rotatividade trimestral dos funcionários, usada para monitorar o desempenho de uma organização. +CUBEMEMBER = MEMBROCUBO ## Retorna um membro ou tupla em uma hierarquia de cubo. Use para validar se o membro ou tupla existe no cubo. +CUBEMEMBERPROPERTY = PROPRIEDADEMEMBROCUBO ## Retorna o valor da propriedade de um membro no cubo. Usada para validar a existência do nome do membro no cubo e para retornar a propriedade especificada para esse membro. +CUBERANKEDMEMBER = MEMBROCLASSIFICADOCUBO ## Retorna o enésimo membro, ou o membro ordenado, em um conjunto. Use para retornar um ou mais elementos em um conjunto, assim como o melhor vendedor ou os dez melhores alunos. +CUBESET = CONJUNTOCUBO ## Define um conjunto calculado de membros ou tuplas enviando uma expressão do conjunto para o cubo no servidor, que cria o conjunto e o retorna para o Microsoft Office Excel. +CUBESETCOUNT = CONTAGEMCONJUNTOCUBO ## Retorna o número de itens em um conjunto. +CUBEVALUE = VALORCUBO ## Retorna um valor agregado de um cubo. + + +## +## Database functions Funções de banco de dados +## +DAVERAGE = BDMÉDIA ## Retorna a média das entradas selecionadas de um banco de dados +DCOUNT = BDCONTAR ## Conta as células que contêm números em um banco de dados +DCOUNTA = BDCONTARA ## Conta células não vazias em um banco de dados +DGET = BDEXTRAIR ## Extrai de um banco de dados um único registro que corresponde a um critério específico +DMAX = BDMÃX ## Retorna o valor máximo de entradas selecionadas de um banco de dados +DMIN = BDMÃN ## Retorna o valor mínimo de entradas selecionadas de um banco de dados +DPRODUCT = BDMULTIPL ## Multiplica os valores em um campo específico de registros que correspondem ao critério em um banco de dados +DSTDEV = BDEST ## Estima o desvio padrão com base em uma amostra de entradas selecionadas de um banco de dados +DSTDEVP = BDDESVPA ## Calcula o desvio padrão com base na população inteira de entradas selecionadas de um banco de dados +DSUM = BDSOMA ## Adiciona os números à coluna de campos de registros do banco de dados que correspondem ao critério +DVAR = BDVAREST ## Estima a variância com base em uma amostra de entradas selecionadas de um banco de dados +DVARP = BDVARP ## Calcula a variância com base na população inteira de entradas selecionadas de um banco de dados + + +## +## Date and time functions Funções de data e hora +## +DATE = DATA ## Retorna o número de série de uma data específica +DATEVALUE = DATA.VALOR ## Converte uma data na forma de texto para um número de série +DAY = DIA ## Converte um número de série em um dia do mês +DAYS360 = DIAS360 ## Calcula o número de dias entre duas datas com base em um ano de 360 dias +EDATE = DATAM ## Retorna o número de série da data que é o número indicado de meses antes ou depois da data inicial +EOMONTH = FIMMÊS ## Retorna o número de série do último dia do mês antes ou depois de um número especificado de meses +HOUR = HORA ## Converte um número de série em uma hora +MINUTE = MINUTO ## Converte um número de série em um minuto +MONTH = MÊS ## Converte um número de série em um mês +NETWORKDAYS = DIATRABALHOTOTAL ## Retorna o número de dias úteis inteiros entre duas datas +NOW = AGORA ## Retorna o número de série seqüencial da data e hora atuais +SECOND = SEGUNDO ## Converte um número de série em um segundo +TIME = HORA ## Retorna o número de série de uma hora específica +TIMEVALUE = VALOR.TEMPO ## Converte um horário na forma de texto para um número de série +TODAY = HOJE ## Retorna o número de série da data de hoje +WEEKDAY = DIA.DA.SEMANA ## Converte um número de série em um dia da semana +WEEKNUM = NÚMSEMANA ## Converte um número de série em um número que representa onde a semana cai numericamente em um ano +WORKDAY = DIATRABALHO ## Retorna o número de série da data antes ou depois de um número específico de dias úteis +YEAR = ANO ## Converte um número de série em um ano +YEARFRAC = FRAÇÃOANO ## Retorna a fração do ano que representa o número de dias entre data_inicial e data_final + + +## +## Engineering functions Funções de engenharia +## +BESSELI = BESSELI ## Retorna a função de Bessel In(x) modificada +BESSELJ = BESSELJ ## Retorna a função de Bessel Jn(x) +BESSELK = BESSELK ## Retorna a função de Bessel Kn(x) modificada +BESSELY = BESSELY ## Retorna a função de Bessel Yn(x) +BIN2DEC = BIN2DEC ## Converte um número binário em decimal +BIN2HEX = BIN2HEX ## Converte um número binário em hexadecimal +BIN2OCT = BIN2OCT ## Converte um número binário em octal +COMPLEX = COMPLEX ## Converte coeficientes reais e imaginários e um número complexo +CONVERT = CONVERTER ## Converte um número de um sistema de medida para outro +DEC2BIN = DECABIN ## Converte um número decimal em binário +DEC2HEX = DECAHEX ## Converte um número decimal em hexadecimal +DEC2OCT = DECAOCT ## Converte um número decimal em octal +DELTA = DELTA ## Testa se dois valores são iguais +ERF = FUNERRO ## Retorna a função de erro +ERFC = FUNERROCOMPL ## Retorna a função de erro complementar +GESTEP = DEGRAU ## Testa se um número é maior do que um valor limite +HEX2BIN = HEXABIN ## Converte um número hexadecimal em binário +HEX2DEC = HEXADEC ## Converte um número hexadecimal em decimal +HEX2OCT = HEXAOCT ## Converte um número hexadecimal em octal +IMABS = IMABS ## Retorna o valor absoluto (módulo) de um número complexo +IMAGINARY = IMAGINÃRIO ## Retorna o coeficiente imaginário de um número complexo +IMARGUMENT = IMARG ## Retorna o argumento teta, um ângulo expresso em radianos +IMCONJUGATE = IMCONJ ## Retorna o conjugado complexo de um número complexo +IMCOS = IMCOS ## Retorna o cosseno de um número complexo +IMDIV = IMDIV ## Retorna o quociente de dois números complexos +IMEXP = IMEXP ## Retorna o exponencial de um número complexo +IMLN = IMLN ## Retorna o logaritmo natural de um número complexo +IMLOG10 = IMLOG10 ## Retorna o logaritmo de base 10 de um número complexo +IMLOG2 = IMLOG2 ## Retorna o logaritmo de base 2 de um número complexo +IMPOWER = IMPOT ## Retorna um número complexo elevado a uma potência inteira +IMPRODUCT = IMPROD ## Retorna o produto de números complexos +IMREAL = IMREAL ## Retorna o coeficiente real de um número complexo +IMSIN = IMSENO ## Retorna o seno de um número complexo +IMSQRT = IMRAIZ ## Retorna a raiz quadrada de um número complexo +IMSUB = IMSUBTR ## Retorna a diferença entre dois números complexos +IMSUM = IMSOMA ## Retorna a soma de números complexos +OCT2BIN = OCTABIN ## Converte um número octal em binário +OCT2DEC = OCTADEC ## Converte um número octal em decimal +OCT2HEX = OCTAHEX ## Converte um número octal em hexadecimal + + +## +## Financial functions Funções financeiras +## +ACCRINT = JUROSACUM ## Retorna a taxa de juros acumulados de um título que paga uma taxa periódica de juros +ACCRINTM = JUROSACUMV ## Retorna os juros acumulados de um título que paga juros no vencimento +AMORDEGRC = AMORDEGRC ## Retorna a depreciação para cada período contábil usando o coeficiente de depreciação +AMORLINC = AMORLINC ## Retorna a depreciação para cada período contábil +COUPDAYBS = CUPDIASINLIQ ## Retorna o número de dias do início do período de cupom até a data de liquidação +COUPDAYS = CUPDIAS ## Retorna o número de dias no período de cupom que contém a data de quitação +COUPDAYSNC = CUPDIASPRÓX ## Retorna o número de dias da data de liquidação até a data do próximo cupom +COUPNCD = CUPDATAPRÓX ## Retorna a próxima data de cupom após a data de quitação +COUPNUM = CUPNÚM ## Retorna o número de cupons pagáveis entre as datas de quitação e vencimento +COUPPCD = CUPDATAANT ## Retorna a data de cupom anterior à data de quitação +CUMIPMT = PGTOJURACUM ## Retorna os juros acumulados pagos entre dois períodos +CUMPRINC = PGTOCAPACUM ## Retorna o capital acumulado pago sobre um empréstimo entre dois períodos +DB = BD ## Retorna a depreciação de um ativo para um período especificado, usando o método de balanço de declínio fixo +DDB = BDD ## Retorna a depreciação de um ativo com relação a um período especificado usando o método de saldos decrescentes duplos ou qualquer outro método especificado por você +DISC = DESC ## Retorna a taxa de desconto de um título +DOLLARDE = MOEDADEC ## Converte um preço em formato de moeda, na forma fracionária, em um preço na forma decimal +DOLLARFR = MOEDAFRA ## Converte um preço, apresentado na forma decimal, em um preço apresentado na forma fracionária +DURATION = DURAÇÃO ## Retorna a duração anual de um título com pagamentos de juros periódicos +EFFECT = EFETIVA ## Retorna a taxa de juros anual efetiva +FV = VF ## Retorna o valor futuro de um investimento +FVSCHEDULE = VFPLANO ## Retorna o valor futuro de um capital inicial após a aplicação de uma série de taxas de juros compostas +INTRATE = TAXAJUROS ## Retorna a taxa de juros de um título totalmente investido +IPMT = IPGTO ## Retorna o pagamento de juros para um investimento em um determinado período +IRR = TIR ## Retorna a taxa interna de retorno de uma série de fluxos de caixa +ISPMT = ÉPGTO ## Calcula os juros pagos durante um período específico de um investimento +MDURATION = MDURAÇÃO ## Retorna a duração de Macauley modificada para um título com um valor de paridade equivalente a R$ 100 +MIRR = MTIR ## Calcula a taxa interna de retorno em que fluxos de caixa positivos e negativos são financiados com diferentes taxas +NOMINAL = NOMINAL ## Retorna a taxa de juros nominal anual +NPER = NPER ## Retorna o número de períodos de um investimento +NPV = VPL ## Retorna o valor líquido atual de um investimento com base em uma série de fluxos de caixa periódicos e em uma taxa de desconto +ODDFPRICE = PREÇOPRIMINC ## Retorna o preço por R$ 100 de valor nominal de um título com um primeiro período indefinido +ODDFYIELD = LUCROPRIMINC ## Retorna o rendimento de um título com um primeiro período indefinido +ODDLPRICE = PREÇOÚLTINC ## Retorna o preço por R$ 100 de valor nominal de um título com um último período de cupom indefinido +ODDLYIELD = LUCROÚLTINC ## Retorna o rendimento de um título com um último período indefinido +PMT = PGTO ## Retorna o pagamento periódico de uma anuidade +PPMT = PPGTO ## Retorna o pagamento de capital para determinado período de investimento +PRICE = PREÇO ## Retorna a preço por R$ 100,00 de valor nominal de um título que paga juros periódicos +PRICEDISC = PREÇODESC ## Retorna o preço por R$ 100,00 de valor nominal de um título descontado +PRICEMAT = PREÇOVENC ## Retorna o preço por R$ 100,00 de valor nominal de um título que paga juros no vencimento +PV = VP ## Retorna o valor presente de um investimento +RATE = TAXA ## Retorna a taxa de juros por período de uma anuidade +RECEIVED = RECEBER ## Retorna a quantia recebida no vencimento de um título totalmente investido +SLN = DPD ## Retorna a depreciação em linha reta de um ativo durante um período +SYD = SDA ## Retorna a depreciação dos dígitos da soma dos anos de um ativo para um período especificado +TBILLEQ = OTN ## Retorna o rendimento de um título equivalente a uma obrigação do Tesouro +TBILLPRICE = OTNVALOR ## Retorna o preço por R$ 100,00 de valor nominal de uma obrigação do Tesouro +TBILLYIELD = OTNLUCRO ## Retorna o rendimento de uma obrigação do Tesouro +VDB = BDV ## Retorna a depreciação de um ativo para um período especificado ou parcial usando um método de balanço declinante +XIRR = XTIR ## Fornece a taxa interna de retorno para um programa de fluxos de caixa que não é necessariamente periódico +XNPV = XVPL ## Retorna o valor presente líquido de um programa de fluxos de caixa que não é necessariamente periódico +YIELD = LUCRO ## Retorna o lucro de um título que paga juros periódicos +YIELDDISC = LUCRODESC ## Retorna o rendimento anual de um título descontado. Por exemplo, uma obrigação do Tesouro +YIELDMAT = LUCROVENC ## Retorna o lucro anual de um título que paga juros no vencimento + + +## +## Information functions Funções de informação +## +CELL = CÉL ## Retorna informações sobre formatação, localização ou conteúdo de uma célula +ERROR.TYPE = TIPO.ERRO ## Retorna um número correspondente a um tipo de erro +INFO = INFORMAÇÃO ## Retorna informações sobre o ambiente operacional atual +ISBLANK = ÉCÉL.VAZIA ## Retorna VERDADEIRO se o valor for vazio +ISERR = ÉERRO ## Retorna VERDADEIRO se o valor for um valor de erro diferente de #N/D +ISERROR = ÉERROS ## Retorna VERDADEIRO se o valor for um valor de erro +ISEVEN = ÉPAR ## Retorna VERDADEIRO se o número for par +ISLOGICAL = ÉLÓGICO ## Retorna VERDADEIRO se o valor for um valor lógico +ISNA = É.NÃO.DISP ## Retorna VERDADEIRO se o valor for o valor de erro #N/D +ISNONTEXT = É.NÃO.TEXTO ## Retorna VERDADEIRO se o valor for diferente de texto +ISNUMBER = ÉNÚM ## Retorna VERDADEIRO se o valor for um número +ISODD = ÉIMPAR ## Retorna VERDADEIRO se o número for ímpar +ISREF = ÉREF ## Retorna VERDADEIRO se o valor for uma referência +ISTEXT = ÉTEXTO ## Retorna VERDADEIRO se o valor for texto +N = N ## Retorna um valor convertido em um número +NA = NÃO.DISP ## Retorna o valor de erro #N/D +TYPE = TIPO ## Retorna um número indicando o tipo de dados de um valor + + +## +## Logical functions Funções lógicas +## +AND = E ## Retorna VERDADEIRO se todos os seus argumentos forem VERDADEIROS +FALSE = FALSO ## Retorna o valor lógico FALSO +IF = SE ## Especifica um teste lógico a ser executado +IFERROR = SEERRO ## Retornará um valor que você especifica se uma fórmula for avaliada para um erro; do contrário, retornará o resultado da fórmula +NOT = NÃO ## Inverte o valor lógico do argumento +OR = OU ## Retorna VERDADEIRO se um dos argumentos for VERDADEIRO +TRUE = VERDADEIRO ## Retorna o valor lógico VERDADEIRO + + +## +## Lookup and reference functions Funções de pesquisa e referência +## +ADDRESS = ENDEREÇO ## Retorna uma referência como texto para uma única célula em uma planilha +AREAS = ÃREAS ## Retorna o número de áreas em uma referência +CHOOSE = ESCOLHER ## Escolhe um valor a partir de uma lista de valores +COLUMN = COL ## Retorna o número da coluna de uma referência +COLUMNS = COLS ## Retorna o número de colunas em uma referência +HLOOKUP = PROCH ## Procura na linha superior de uma matriz e retorna o valor da célula especificada +HYPERLINK = HYPERLINK ## Cria um atalho ou salto que abre um documento armazenado em um servidor de rede, uma intranet ou na Internet +INDEX = ÃNDICE ## Usa um índice para escolher um valor de uma referência ou matriz +INDIRECT = INDIRETO ## Retorna uma referência indicada por um valor de texto +LOOKUP = PROC ## Procura valores em um vetor ou em uma matriz +MATCH = CORRESP ## Procura valores em uma referência ou em uma matriz +OFFSET = DESLOC ## Retorna um deslocamento de referência com base em uma determinada referência +ROW = LIN ## Retorna o número da linha de uma referência +ROWS = LINS ## Retorna o número de linhas em uma referência +RTD = RTD ## Recupera dados em tempo real de um programa que ofereça suporte a automação COM (automação: uma forma de trabalhar com objetos de um aplicativo a partir de outro aplicativo ou ferramenta de desenvolvimento. Chamada inicialmente de automação OLE, a automação é um padrão industrial e um recurso do modelo de objeto componente (COM).) +TRANSPOSE = TRANSPOR ## Retorna a transposição de uma matriz +VLOOKUP = PROCV ## Procura na primeira coluna de uma matriz e move ao longo da linha para retornar o valor de uma célula + + +## +## Math and trigonometry functions Funções matemáticas e trigonométricas +## +ABS = ABS ## Retorna o valor absoluto de um número +ACOS = ACOS ## Retorna o arco cosseno de um número +ACOSH = ACOSH ## Retorna o cosseno hiperbólico inverso de um número +ASIN = ASEN ## Retorna o arco seno de um número +ASINH = ASENH ## Retorna o seno hiperbólico inverso de um número +ATAN = ATAN ## Retorna o arco tangente de um número +ATAN2 = ATAN2 ## Retorna o arco tangente das coordenadas x e y especificadas +ATANH = ATANH ## Retorna a tangente hiperbólica inversa de um número +CEILING = TETO ## Arredonda um número para o inteiro mais próximo ou para o múltiplo mais próximo de significância +COMBIN = COMBIN ## Retorna o número de combinações de um determinado número de objetos +COS = COS ## Retorna o cosseno de um número +COSH = COSH ## Retorna o cosseno hiperbólico de um número +DEGREES = GRAUS ## Converte radianos em graus +EVEN = PAR ## Arredonda um número para cima até o inteiro par mais próximo +EXP = EXP ## Retorna e elevado à potência de um número especificado +FACT = FATORIAL ## Retorna o fatorial de um número +FACTDOUBLE = FATDUPLO ## Retorna o fatorial duplo de um número +FLOOR = ARREDMULTB ## Arredonda um número para baixo até zero +GCD = MDC ## Retorna o máximo divisor comum +INT = INT ## Arredonda um número para baixo até o número inteiro mais próximo +LCM = MMC ## Retorna o mínimo múltiplo comum +LN = LN ## Retorna o logaritmo natural de um número +LOG = LOG ## Retorna o logaritmo de um número de uma base especificada +LOG10 = LOG10 ## Retorna o logaritmo de base 10 de um número +MDETERM = MATRIZ.DETERM ## Retorna o determinante de uma matriz de uma variável do tipo matriz +MINVERSE = MATRIZ.INVERSO ## Retorna a matriz inversa de uma matriz +MMULT = MATRIZ.MULT ## Retorna o produto de duas matrizes +MOD = RESTO ## Retorna o resto da divisão +MROUND = MARRED ## Retorna um número arredondado ao múltiplo desejado +MULTINOMIAL = MULTINOMIAL ## Retorna o multinomial de um conjunto de números +ODD = ÃMPAR ## Arredonda um número para cima até o inteiro ímpar mais próximo +PI = PI ## Retorna o valor de Pi +POWER = POTÊNCIA ## Fornece o resultado de um número elevado a uma potência +PRODUCT = MULT ## Multiplica seus argumentos +QUOTIENT = QUOCIENTE ## Retorna a parte inteira de uma divisão +RADIANS = RADIANOS ## Converte graus em radianos +RAND = ALEATÓRIO ## Retorna um número aleatório entre 0 e 1 +RANDBETWEEN = ALEATÓRIOENTRE ## Retorna um número aleatório entre os números especificados +ROMAN = ROMANO ## Converte um algarismo arábico em romano, como texto +ROUND = ARRED ## Arredonda um número até uma quantidade especificada de dígitos +ROUNDDOWN = ARREDONDAR.PARA.BAIXO ## Arredonda um número para baixo até zero +ROUNDUP = ARREDONDAR.PARA.CIMA ## Arredonda um número para cima, afastando-o de zero +SERIESSUM = SOMASEQÜÊNCIA ## Retorna a soma de uma série polinomial baseada na fórmula +SIGN = SINAL ## Retorna o sinal de um número +SIN = SEN ## Retorna o seno de um ângulo dado +SINH = SENH ## Retorna o seno hiperbólico de um número +SQRT = RAIZ ## Retorna uma raiz quadrada positiva +SQRTPI = RAIZPI ## Retorna a raiz quadrada de (núm* pi) +SUBTOTAL = SUBTOTAL ## Retorna um subtotal em uma lista ou em um banco de dados +SUM = SOMA ## Soma seus argumentos +SUMIF = SOMASE ## Adiciona as células especificadas por um determinado critério +SUMIFS = SOMASE ## Adiciona as células em um intervalo que atende a vários critérios +SUMPRODUCT = SOMARPRODUTO ## Retorna a soma dos produtos de componentes correspondentes de matrizes +SUMSQ = SOMAQUAD ## Retorna a soma dos quadrados dos argumentos +SUMX2MY2 = SOMAX2DY2 ## Retorna a soma da diferença dos quadrados dos valores correspondentes em duas matrizes +SUMX2PY2 = SOMAX2SY2 ## Retorna a soma da soma dos quadrados dos valores correspondentes em duas matrizes +SUMXMY2 = SOMAXMY2 ## Retorna a soma dos quadrados das diferenças dos valores correspondentes em duas matrizes +TAN = TAN ## Retorna a tangente de um número +TANH = TANH ## Retorna a tangente hiperbólica de um número +TRUNC = TRUNCAR ## Trunca um número para um inteiro + + +## +## Statistical functions Funções estatísticas +## +AVEDEV = DESV.MÉDIO ## Retorna a média aritmética dos desvios médios dos pontos de dados a partir de sua média +AVERAGE = MÉDIA ## Retorna a média dos argumentos +AVERAGEA = MÉDIAA ## Retorna a média dos argumentos, inclusive números, texto e valores lógicos +AVERAGEIF = MÉDIASE ## Retorna a média (média aritmética) de todas as células em um intervalo que atendem a um determinado critério +AVERAGEIFS = MÉDIASES ## Retorna a média (média aritmética) de todas as células que atendem a múltiplos critérios. +BETADIST = DISTBETA ## Retorna a função de distribuição cumulativa beta +BETAINV = BETA.ACUM.INV ## Retorna o inverso da função de distribuição cumulativa para uma distribuição beta especificada +BINOMDIST = DISTRBINOM ## Retorna a probabilidade de distribuição binomial do termo individual +CHIDIST = DIST.QUI ## Retorna a probabilidade unicaudal da distribuição qui-quadrada +CHIINV = INV.QUI ## Retorna o inverso da probabilidade uni-caudal da distribuição qui-quadrada +CHITEST = TESTE.QUI ## Retorna o teste para independência +CONFIDENCE = INT.CONFIANÇA ## Retorna o intervalo de confiança para uma média da população +CORREL = CORREL ## Retorna o coeficiente de correlação entre dois conjuntos de dados +COUNT = CONT.NÚM ## Calcula quantos números há na lista de argumentos +COUNTA = CONT.VALORES ## Calcula quantos valores há na lista de argumentos +COUNTBLANK = CONTAR.VAZIO ## Conta o número de células vazias no intervalo especificado +COUNTIF = CONT.SE ## Calcula o número de células não vazias em um intervalo que corresponde a determinados critérios +COUNTIFS = CONT.SES ## Conta o número de células dentro de um intervalo que atende a múltiplos critérios +COVAR = COVAR ## Retorna a covariância, a média dos produtos dos desvios pares +CRITBINOM = CRIT.BINOM ## Retorna o menor valor para o qual a distribuição binomial cumulativa é menor ou igual ao valor padrão +DEVSQ = DESVQ ## Retorna a soma dos quadrados dos desvios +EXPONDIST = DISTEXPON ## Retorna a distribuição exponencial +FDIST = DISTF ## Retorna a distribuição de probabilidade F +FINV = INVF ## Retorna o inverso da distribuição de probabilidades F +FISHER = FISHER ## Retorna a transformação Fisher +FISHERINV = FISHERINV ## Retorna o inverso da transformação Fisher +FORECAST = PREVISÃO ## Retorna um valor ao longo de uma linha reta +FREQUENCY = FREQÜÊNCIA ## Retorna uma distribuição de freqüência como uma matriz vertical +FTEST = TESTEF ## Retorna o resultado de um teste F +GAMMADIST = DISTGAMA ## Retorna a distribuição gama +GAMMAINV = INVGAMA ## Retorna o inverso da distribuição cumulativa gama +GAMMALN = LNGAMA ## Retorna o logaritmo natural da função gama, G(x) +GEOMEAN = MÉDIA.GEOMÉTRICA ## Retorna a média geométrica +GROWTH = CRESCIMENTO ## Retorna valores ao longo de uma tendência exponencial +HARMEAN = MÉDIA.HARMÔNICA ## Retorna a média harmônica +HYPGEOMDIST = DIST.HIPERGEOM ## Retorna a distribuição hipergeométrica +INTERCEPT = INTERCEPÇÃO ## Retorna a intercepção da linha de regressão linear +KURT = CURT ## Retorna a curtose de um conjunto de dados +LARGE = MAIOR ## Retorna o maior valor k-ésimo de um conjunto de dados +LINEST = PROJ.LIN ## Retorna os parâmetros de uma tendência linear +LOGEST = PROJ.LOG ## Retorna os parâmetros de uma tendência exponencial +LOGINV = INVLOG ## Retorna o inverso da distribuição lognormal +LOGNORMDIST = DIST.LOGNORMAL ## Retorna a distribuição lognormal cumulativa +MAX = MÃXIMO ## Retorna o valor máximo em uma lista de argumentos +MAXA = MÃXIMOA ## Retorna o maior valor em uma lista de argumentos, inclusive números, texto e valores lógicos +MEDIAN = MED ## Retorna a mediana dos números indicados +MIN = MÃNIMO ## Retorna o valor mínimo em uma lista de argumentos +MINA = MÃNIMOA ## Retorna o menor valor em uma lista de argumentos, inclusive números, texto e valores lógicos +MODE = MODO ## Retorna o valor mais comum em um conjunto de dados +NEGBINOMDIST = DIST.BIN.NEG ## Retorna a distribuição binomial negativa +NORMDIST = DIST.NORM ## Retorna a distribuição cumulativa normal +NORMINV = INV.NORM ## Retorna o inverso da distribuição cumulativa normal +NORMSDIST = DIST.NORMP ## Retorna a distribuição cumulativa normal padrão +NORMSINV = INV.NORMP ## Retorna o inverso da distribuição cumulativa normal padrão +PEARSON = PEARSON ## Retorna o coeficiente de correlação do momento do produto Pearson +PERCENTILE = PERCENTIL ## Retorna o k-ésimo percentil de valores em um intervalo +PERCENTRANK = ORDEM.PORCENTUAL ## Retorna a ordem percentual de um valor em um conjunto de dados +PERMUT = PERMUT ## Retorna o número de permutações de um determinado número de objetos +POISSON = POISSON ## Retorna a distribuição Poisson +PROB = PROB ## Retorna a probabilidade de valores em um intervalo estarem entre dois limites +QUARTILE = QUARTIL ## Retorna o quartil do conjunto de dados +RANK = ORDEM ## Retorna a posição de um número em uma lista de números +RSQ = RQUAD ## Retorna o quadrado do coeficiente de correlação do momento do produto de Pearson +SKEW = DISTORÇÃO ## Retorna a distorção de uma distribuição +SLOPE = INCLINAÇÃO ## Retorna a inclinação da linha de regressão linear +SMALL = MENOR ## Retorna o menor valor k-ésimo do conjunto de dados +STANDARDIZE = PADRONIZAR ## Retorna um valor normalizado +STDEV = DESVPAD ## Estima o desvio padrão com base em uma amostra +STDEVA = DESVPADA ## Estima o desvio padrão com base em uma amostra, inclusive números, texto e valores lógicos +STDEVP = DESVPADP ## Calcula o desvio padrão com base na população total +STDEVPA = DESVPADPA ## Calcula o desvio padrão com base na população total, inclusive números, texto e valores lógicos +STEYX = EPADYX ## Retorna o erro padrão do valor-y previsto para cada x da regressão +TDIST = DISTT ## Retorna a distribuição t de Student +TINV = INVT ## Retorna o inverso da distribuição t de Student +TREND = TENDÊNCIA ## Retorna valores ao longo de uma tendência linear +TRIMMEAN = MÉDIA.INTERNA ## Retorna a média do interior de um conjunto de dados +TTEST = TESTET ## Retorna a probabilidade associada ao teste t de Student +VAR = VAR ## Estima a variância com base em uma amostra +VARA = VARA ## Estima a variância com base em uma amostra, inclusive números, texto e valores lógicos +VARP = VARP ## Calcula a variância com base na população inteira +VARPA = VARPA ## Calcula a variância com base na população total, inclusive números, texto e valores lógicos +WEIBULL = WEIBULL ## Retorna a distribuição Weibull +ZTEST = TESTEZ ## Retorna o valor de probabilidade uni-caudal de um teste-z + + +## +## Text functions Funções de texto +## +ASC = ASC ## Altera letras do inglês ou katakana de largura total (bytes duplos) dentro de uma seqüência de caracteres para caracteres de meia largura (byte único) +BAHTTEXT = BAHTTEXT ## Converte um número em um texto, usando o formato de moeda ß (baht) +CHAR = CARACT ## Retorna o caractere especificado pelo número de código +CLEAN = TIRAR ## Remove todos os caracteres do texto que não podem ser impressos +CODE = CÓDIGO ## Retorna um código numérico para o primeiro caractere de uma seqüência de caracteres de texto +CONCATENATE = CONCATENAR ## Agrupa vários itens de texto em um único item de texto +DOLLAR = MOEDA ## Converte um número em texto, usando o formato de moeda $ (dólar) +EXACT = EXATO ## Verifica se dois valores de texto são idênticos +FIND = PROCURAR ## Procura um valor de texto dentro de outro (diferencia maiúsculas de minúsculas) +FINDB = PROCURARB ## Procura um valor de texto dentro de outro (diferencia maiúsculas de minúsculas) +FIXED = DEF.NÚM.DEC ## Formata um número como texto com um número fixo de decimais +JIS = JIS ## Altera letras do inglês ou katakana de meia largura (byte único) dentro de uma seqüência de caracteres para caracteres de largura total (bytes duplos) +LEFT = ESQUERDA ## Retorna os caracteres mais à esquerda de um valor de texto +LEFTB = ESQUERDAB ## Retorna os caracteres mais à esquerda de um valor de texto +LEN = NÚM.CARACT ## Retorna o número de caracteres em uma seqüência de texto +LENB = NÚM.CARACTB ## Retorna o número de caracteres em uma seqüência de texto +LOWER = MINÚSCULA ## Converte texto para minúsculas +MID = EXT.TEXTO ## Retorna um número específico de caracteres de uma seqüência de texto começando na posição especificada +MIDB = EXT.TEXTOB ## Retorna um número específico de caracteres de uma seqüência de texto começando na posição especificada +PHONETIC = FONÉTICA ## Extrai os caracteres fonéticos (furigana) de uma seqüência de caracteres de texto +PROPER = PRI.MAIÚSCULA ## Coloca a primeira letra de cada palavra em maiúscula em um valor de texto +REPLACE = MUDAR ## Muda os caracteres dentro do texto +REPLACEB = MUDARB ## Muda os caracteres dentro do texto +REPT = REPT ## Repete o texto um determinado número de vezes +RIGHT = DIREITA ## Retorna os caracteres mais à direita de um valor de texto +RIGHTB = DIREITAB ## Retorna os caracteres mais à direita de um valor de texto +SEARCH = LOCALIZAR ## Localiza um valor de texto dentro de outro (não diferencia maiúsculas de minúsculas) +SEARCHB = LOCALIZARB ## Localiza um valor de texto dentro de outro (não diferencia maiúsculas de minúsculas) +SUBSTITUTE = SUBSTITUIR ## Substitui um novo texto por um texto antigo em uma seqüência de texto +T = T ## Converte os argumentos em texto +TEXT = TEXTO ## Formata um número e o converte em texto +TRIM = ARRUMAR ## Remove espaços do texto +UPPER = MAIÚSCULA ## Converte o texto em maiúsculas +VALUE = VALOR ## Converte um argumento de texto em um número diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/config new file mode 100644 index 0000000..8bb8d8b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/config @@ -0,0 +1,47 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = € + + +## +## Excel Error Codes (For future use) +## +NULL = #NULO! +DIV0 = #DIV/0! +VALUE = #VALOR! +REF = #REF! +NAME = #NOME? +NUM = #NÚM! +NA = #N/D diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/functions b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/functions new file mode 100644 index 0000000..7fe9e3b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/functions @@ -0,0 +1,408 @@ +## +## Add-in and Automation functions Funções de Suplemento e Automatização +## +GETPIVOTDATA = OBTERDADOSDIN ## Devolve dados armazenados num relatório de Tabela Dinâmica + + +## +## Cube functions Funções de cubo +## +CUBEKPIMEMBER = MEMBROKPICUBO ## Devolve o nome, propriedade e medição de um KPI (key performance indicator) e apresenta o nome e a propriedade na célula. Um KPI é uma medida quantificável, como, por exemplo, o lucro mensal bruto ou a rotatividade trimestral de pessoal, utilizada para monitorizar o desempenho de uma organização. +CUBEMEMBER = MEMBROCUBO ## Devolve um membro ou cadeia de identificação numa hierarquia de cubo. Utilizada para validar a existência do membro ou cadeia de identificação no cubo. +CUBEMEMBERPROPERTY = PROPRIEDADEMEMBROCUBO ## Devolve o valor de uma propriedade de membro no cubo. Utilizada para validar a existência de um nome de membro no cubo e para devolver a propriedade especificada para esse membro. +CUBERANKEDMEMBER = MEMBROCLASSIFICADOCUBO ## Devolve o enésimo ou a classificação mais alta num conjunto. Utilizada para devolver um ou mais elementos num conjunto, tal como o melhor vendedor ou os 10 melhores alunos. +CUBESET = CONJUNTOCUBO ## Define um conjunto calculado de membros ou cadeias de identificação enviando uma expressão de conjunto para o cubo no servidor, que cria o conjunto e, em seguida, devolve o conjunto ao Microsoft Office Excel. +CUBESETCOUNT = CONTARCONJUNTOCUBO ## Devolve o número de itens num conjunto. +CUBEVALUE = VALORCUBO ## Devolve um valor agregado do cubo. + + +## +## Database functions Funções de base de dados +## +DAVERAGE = BDMÉDIA ## Devolve a média das entradas da base de dados seleccionadas +DCOUNT = BDCONTAR ## Conta as células que contêm números numa base de dados +DCOUNTA = BDCONTAR.VAL ## Conta as células que não estejam em branco numa base de dados +DGET = BDOBTER ## Extrai de uma base de dados um único registo que corresponde aos critérios especificados +DMAX = BDMÃX ## Devolve o valor máximo das entradas da base de dados seleccionadas +DMIN = BDMÃN ## Devolve o valor mínimo das entradas da base de dados seleccionadas +DPRODUCT = BDMULTIPL ## Multiplica os valores de um determinado campo de registos que correspondem aos critérios numa base de dados +DSTDEV = BDDESVPAD ## Calcula o desvio-padrão com base numa amostra de entradas da base de dados seleccionadas +DSTDEVP = BDDESVPADP ## Calcula o desvio-padrão com base na população total das entradas da base de dados seleccionadas +DSUM = BDSOMA ## Adiciona os números na coluna de campo dos registos de base de dados que correspondem aos critérios +DVAR = BDVAR ## Calcula a variância com base numa amostra das entradas de base de dados seleccionadas +DVARP = BDVARP ## Calcula a variância com base na população total das entradas de base de dados seleccionadas + + +## +## Date and time functions Funções de data e hora +## +DATE = DATA ## Devolve o número de série de uma determinada data +DATEVALUE = DATA.VALOR ## Converte uma data em forma de texto num número de série +DAY = DIA ## Converte um número de série num dia do mês +DAYS360 = DIAS360 ## Calcula o número de dias entre duas datas com base num ano com 360 dias +EDATE = DATAM ## Devolve um número de série de data que corresponde ao número de meses indicado antes ou depois da data de início +EOMONTH = FIMMÊS ## Devolve o número de série do último dia do mês antes ou depois de um número de meses especificado +HOUR = HORA ## Converte um número de série numa hora +MINUTE = MINUTO ## Converte um número de série num minuto +MONTH = MÊS ## Converte um número de série num mês +NETWORKDAYS = DIATRABALHOTOTAL ## Devolve o número total de dias úteis entre duas datas +NOW = AGORA ## Devolve o número de série da data e hora actuais +SECOND = SEGUNDO ## Converte um número de série num segundo +TIME = TEMPO ## Devolve o número de série de um determinado tempo +TIMEVALUE = VALOR.TEMPO ## Converte um tempo em forma de texto num número de série +TODAY = HOJE ## Devolve o número de série da data actual +WEEKDAY = DIA.SEMANA ## Converte um número de série num dia da semana +WEEKNUM = NÚMSEMANA ## Converte um número de série num número que representa o número da semana num determinado ano +WORKDAY = DIA.TRABALHO ## Devolve o número de série da data antes ou depois de um número de dias úteis especificado +YEAR = ANO ## Converte um número de série num ano +YEARFRAC = FRACÇÃOANO ## Devolve a fracção de ano que representa o número de dias inteiros entre a data_de_início e a data_de_fim + + +## +## Engineering functions Funções de engenharia +## +BESSELI = BESSELI ## Devolve a função de Bessel modificada In(x) +BESSELJ = BESSELJ ## Devolve a função de Bessel Jn(x) +BESSELK = BESSELK ## Devolve a função de Bessel modificada Kn(x) +BESSELY = BESSELY ## Devolve a função de Bessel Yn(x) +BIN2DEC = BINADEC ## Converte um número binário em decimal +BIN2HEX = BINAHEX ## Converte um número binário em hexadecimal +BIN2OCT = BINAOCT ## Converte um número binário em octal +COMPLEX = COMPLEXO ## Converte coeficientes reais e imaginários num número complexo +CONVERT = CONVERTER ## Converte um número de um sistema de medida noutro +DEC2BIN = DECABIN ## Converte um número decimal em binário +DEC2HEX = DECAHEX ## Converte um número decimal em hexadecimal +DEC2OCT = DECAOCT ## Converte um número decimal em octal +DELTA = DELTA ## Testa se dois valores são iguais +ERF = FUNCERRO ## Devolve a função de erro +ERFC = FUNCERROCOMPL ## Devolve a função de erro complementar +GESTEP = DEGRAU ## Testa se um número é maior do que um valor limite +HEX2BIN = HEXABIN ## Converte um número hexadecimal em binário +HEX2DEC = HEXADEC ## Converte um número hexadecimal em decimal +HEX2OCT = HEXAOCT ## Converte um número hexadecimal em octal +IMABS = IMABS ## Devolve o valor absoluto (módulo) de um número complexo +IMAGINARY = IMAGINÃRIO ## Devolve o coeficiente imaginário de um número complexo +IMARGUMENT = IMARG ## Devolve o argumento Teta, um ângulo expresso em radianos +IMCONJUGATE = IMCONJ ## Devolve o conjugado complexo de um número complexo +IMCOS = IMCOS ## Devolve o co-seno de um número complexo +IMDIV = IMDIV ## Devolve o quociente de dois números complexos +IMEXP = IMEXP ## Devolve o exponencial de um número complexo +IMLN = IMLN ## Devolve o logaritmo natural de um número complexo +IMLOG10 = IMLOG10 ## Devolve o logaritmo de base 10 de um número complexo +IMLOG2 = IMLOG2 ## Devolve o logaritmo de base 2 de um número complexo +IMPOWER = IMPOT ## Devolve um número complexo elevado a uma potência inteira +IMPRODUCT = IMPROD ## Devolve o produto de números complexos +IMREAL = IMREAL ## Devolve o coeficiente real de um número complexo +IMSIN = IMSENO ## Devolve o seno de um número complexo +IMSQRT = IMRAIZ ## Devolve a raiz quadrada de um número complexo +IMSUB = IMSUBTR ## Devolve a diferença entre dois números complexos +IMSUM = IMSOMA ## Devolve a soma de números complexos +OCT2BIN = OCTABIN ## Converte um número octal em binário +OCT2DEC = OCTADEC ## Converte um número octal em decimal +OCT2HEX = OCTAHEX ## Converte um número octal em hexadecimal + + +## +## Financial functions Funções financeiras +## +ACCRINT = JUROSACUM ## Devolve os juros acumulados de um título que paga juros periódicos +ACCRINTM = JUROSACUMV ## Devolve os juros acumulados de um título que paga juros no vencimento +AMORDEGRC = AMORDEGRC ## Devolve a depreciação correspondente a cada período contabilístico utilizando um coeficiente de depreciação +AMORLINC = AMORLINC ## Devolve a depreciação correspondente a cada período contabilístico +COUPDAYBS = CUPDIASINLIQ ## Devolve o número de dias entre o início do período do cupão e a data de regularização +COUPDAYS = CUPDIAS ## Devolve o número de dias no período do cupão que contém a data de regularização +COUPDAYSNC = CUPDIASPRÓX ## Devolve o número de dias entre a data de regularização e a data do cupão seguinte +COUPNCD = CUPDATAPRÓX ## Devolve a data do cupão seguinte após a data de regularização +COUPNUM = CUPNÚM ## Devolve o número de cupões a serem pagos entre a data de regularização e a data de vencimento +COUPPCD = CUPDATAANT ## Devolve a data do cupão anterior antes da data de regularização +CUMIPMT = PGTOJURACUM ## Devolve os juros cumulativos pagos entre dois períodos +CUMPRINC = PGTOCAPACUM ## Devolve o capital cumulativo pago a título de empréstimo entre dois períodos +DB = BD ## Devolve a depreciação de um activo relativo a um período especificado utilizando o método das quotas degressivas fixas +DDB = BDD ## Devolve a depreciação de um activo relativo a um período especificado utilizando o método das quotas degressivas duplas ou qualquer outro método especificado +DISC = DESC ## Devolve a taxa de desconto de um título +DOLLARDE = MOEDADEC ## Converte um preço em unidade monetária, expresso como uma fracção, num preço em unidade monetária, expresso como um número decimal +DOLLARFR = MOEDAFRA ## Converte um preço em unidade monetária, expresso como um número decimal, num preço em unidade monetária, expresso como uma fracção +DURATION = DURAÇÃO ## Devolve a duração anual de um título com pagamentos de juros periódicos +EFFECT = EFECTIVA ## Devolve a taxa de juros anual efectiva +FV = VF ## Devolve o valor futuro de um investimento +FVSCHEDULE = VFPLANO ## Devolve o valor futuro de um capital inicial após a aplicação de uma série de taxas de juro compostas +INTRATE = TAXAJUROS ## Devolve a taxa de juros de um título investido na totalidade +IPMT = IPGTO ## Devolve o pagamento dos juros de um investimento durante um determinado período +IRR = TIR ## Devolve a taxa de rentabilidade interna para uma série de fluxos monetários +ISPMT = É.PGTO ## Calcula os juros pagos durante um período específico de um investimento +MDURATION = MDURAÇÃO ## Devolve a duração modificada de Macauley de um título com um valor de paridade equivalente a € 100 +MIRR = MTIR ## Devolve a taxa interna de rentabilidade em que os fluxos monetários positivos e negativos são financiados com taxas diferentes +NOMINAL = NOMINAL ## Devolve a taxa de juros nominal anual +NPER = NPER ## Devolve o número de períodos de um investimento +NPV = VAL ## Devolve o valor actual líquido de um investimento com base numa série de fluxos monetários periódicos e numa taxa de desconto +ODDFPRICE = PREÇOPRIMINC ## Devolve o preço por € 100 do valor nominal de um título com um período inicial incompleto +ODDFYIELD = LUCROPRIMINC ## Devolve o lucro de um título com um período inicial incompleto +ODDLPRICE = PREÇOÚLTINC ## Devolve o preço por € 100 do valor nominal de um título com um período final incompleto +ODDLYIELD = LUCROÚLTINC ## Devolve o lucro de um título com um período final incompleto +PMT = PGTO ## Devolve o pagamento periódico de uma anuidade +PPMT = PPGTO ## Devolve o pagamento sobre o capital de um investimento num determinado período +PRICE = PREÇO ## Devolve o preço por € 100 do valor nominal de um título que paga juros periódicos +PRICEDISC = PREÇODESC ## Devolve o preço por € 100 do valor nominal de um título descontado +PRICEMAT = PREÇOVENC ## Devolve o preço por € 100 do valor nominal de um título que paga juros no vencimento +PV = VA ## Devolve o valor actual de um investimento +RATE = TAXA ## Devolve a taxa de juros por período de uma anuidade +RECEIVED = RECEBER ## Devolve o montante recebido no vencimento de um título investido na totalidade +SLN = AMORT ## Devolve uma depreciação linear de um activo durante um período +SYD = AMORTD ## Devolve a depreciação por algarismos da soma dos anos de um activo durante um período especificado +TBILLEQ = OTN ## Devolve o lucro de um título equivalente a uma Obrigação do Tesouro +TBILLPRICE = OTNVALOR ## Devolve o preço por € 100 de valor nominal de uma Obrigação do Tesouro +TBILLYIELD = OTNLUCRO ## Devolve o lucro de uma Obrigação do Tesouro +VDB = BDV ## Devolve a depreciação de um activo relativo a um período específico ou parcial utilizando um método de quotas degressivas +XIRR = XTIR ## Devolve a taxa interna de rentabilidade de um plano de fluxos monetários que não seja necessariamente periódica +XNPV = XVAL ## Devolve o valor actual líquido de um plano de fluxos monetários que não seja necessariamente periódico +YIELD = LUCRO ## Devolve o lucro de um título que paga juros periódicos +YIELDDISC = LUCRODESC ## Devolve o lucro anual de um título emitido abaixo do valor nominal, por exemplo, uma Obrigação do Tesouro +YIELDMAT = LUCROVENC ## Devolve o lucro anual de um título que paga juros na data de vencimento + + +## +## Information functions Funções de informação +## +CELL = CÉL ## Devolve informações sobre a formatação, localização ou conteúdo de uma célula +ERROR.TYPE = TIPO.ERRO ## Devolve um número correspondente a um tipo de erro +INFO = INFORMAÇÃO ## Devolve informações sobre o ambiente de funcionamento actual +ISBLANK = É.CÉL.VAZIA ## Devolve VERDADEIRO se o valor estiver em branco +ISERR = É.ERROS ## Devolve VERDADEIRO se o valor for um valor de erro diferente de #N/D +ISERROR = É.ERRO ## Devolve VERDADEIRO se o valor for um valor de erro +ISEVEN = ÉPAR ## Devolve VERDADEIRO se o número for par +ISLOGICAL = É.LÓGICO ## Devolve VERDADEIRO se o valor for lógico +ISNA = É.NÃO.DISP ## Devolve VERDADEIRO se o valor for o valor de erro #N/D +ISNONTEXT = É.NÃO.TEXTO ## Devolve VERDADEIRO se o valor não for texto +ISNUMBER = É.NÚM ## Devolve VERDADEIRO se o valor for um número +ISODD = ÉÃMPAR ## Devolve VERDADEIRO se o número for ímpar +ISREF = É.REF ## Devolve VERDADEIRO se o valor for uma referência +ISTEXT = É.TEXTO ## Devolve VERDADEIRO se o valor for texto +N = N ## Devolve um valor convertido num número +NA = NÃO.DISP ## Devolve o valor de erro #N/D +TYPE = TIPO ## Devolve um número que indica o tipo de dados de um valor + + +## +## Logical functions Funções lógicas +## +AND = E ## Devolve VERDADEIRO se todos os respectivos argumentos corresponderem a VERDADEIRO +FALSE = FALSO ## Devolve o valor lógico FALSO +IF = SE ## Especifica um teste lógico a ser executado +IFERROR = SE.ERRO ## Devolve um valor definido pelo utilizador se ocorrer um erro na fórmula, e devolve o resultado da fórmula se não ocorrer nenhum erro +NOT = NÃO ## Inverte a lógica do respectivo argumento +OR = OU ## Devolve VERDADEIRO se qualquer argumento for VERDADEIRO +TRUE = VERDADEIRO ## Devolve o valor lógico VERDADEIRO + + +## +## Lookup and reference functions Funções de pesquisa e referência +## +ADDRESS = ENDEREÇO ## Devolve uma referência a uma única célula numa folha de cálculo como texto +AREAS = ÃREAS ## Devolve o número de áreas numa referência +CHOOSE = SELECCIONAR ## Selecciona um valor a partir de uma lista de valores +COLUMN = COL ## Devolve o número da coluna de uma referência +COLUMNS = COLS ## Devolve o número de colunas numa referência +HLOOKUP = PROCH ## Procura na linha superior de uma matriz e devolve o valor da célula indicada +HYPERLINK = HIPERLIGAÇÃO ## Cria um atalho ou hiperligação que abre um documento armazenado num servidor de rede, numa intranet ou na Internet +INDEX = ÃNDICE ## Utiliza um índice para escolher um valor de uma referência ou de uma matriz +INDIRECT = INDIRECTO ## Devolve uma referência indicada por um valor de texto +LOOKUP = PROC ## Procura valores num vector ou numa matriz +MATCH = CORRESP ## Procura valores numa referência ou numa matriz +OFFSET = DESLOCAMENTO ## Devolve o deslocamento de referência de uma determinada referência +ROW = LIN ## Devolve o número da linha de uma referência +ROWS = LINS ## Devolve o número de linhas numa referência +RTD = RTD ## Obtém dados em tempo real a partir de um programa que suporte automatização COM (automatização: modo de trabalhar com objectos de uma aplicação a partir de outra aplicação ou ferramenta de desenvolvimento. Anteriormente conhecida como automatização OLE, a automatização é uma norma da indústria de software e uma funcionalidade COM (Component Object Model).) +TRANSPOSE = TRANSPOR ## Devolve a transposição de uma matriz +VLOOKUP = PROCV ## Procura na primeira coluna de uma matriz e percorre a linha para devolver o valor de uma célula + + +## +## Math and trigonometry functions Funções matemáticas e trigonométricas +## +ABS = ABS ## Devolve o valor absoluto de um número +ACOS = ACOS ## Devolve o arco de co-seno de um número +ACOSH = ACOSH ## Devolve o co-seno hiperbólico inverso de um número +ASIN = ASEN ## Devolve o arco de seno de um número +ASINH = ASENH ## Devolve o seno hiperbólico inverso de um número +ATAN = ATAN ## Devolve o arco de tangente de um número +ATAN2 = ATAN2 ## Devolve o arco de tangente das coordenadas x e y +ATANH = ATANH ## Devolve a tangente hiperbólica inversa de um número +CEILING = ARRED.EXCESSO ## Arredonda um número para o número inteiro mais próximo ou para o múltiplo de significância mais próximo +COMBIN = COMBIN ## Devolve o número de combinações de um determinado número de objectos +COS = COS ## Devolve o co-seno de um número +COSH = COSH ## Devolve o co-seno hiperbólico de um número +DEGREES = GRAUS ## Converte radianos em graus +EVEN = PAR ## Arredonda um número por excesso para o número inteiro mais próximo +EXP = EXP ## Devolve e elevado à potência de um determinado número +FACT = FACTORIAL ## Devolve o factorial de um número +FACTDOUBLE = FACTDUPLO ## Devolve o factorial duplo de um número +FLOOR = ARRED.DEFEITO ## Arredonda um número por defeito até zero +GCD = MDC ## Devolve o maior divisor comum +INT = INT ## Arredonda um número por defeito para o número inteiro mais próximo +LCM = MMC ## Devolve o mínimo múltiplo comum +LN = LN ## Devolve o logaritmo natural de um número +LOG = LOG ## Devolve o logaritmo de um número com uma base especificada +LOG10 = LOG10 ## Devolve o logaritmo de base 10 de um número +MDETERM = MATRIZ.DETERM ## Devolve o determinante matricial de uma matriz +MINVERSE = MATRIZ.INVERSA ## Devolve o inverso matricial de uma matriz +MMULT = MATRIZ.MULT ## Devolve o produto matricial de duas matrizes +MOD = RESTO ## Devolve o resto da divisão +MROUND = MARRED ## Devolve um número arredondado para o múltiplo pretendido +MULTINOMIAL = POLINOMIAL ## Devolve o polinomial de um conjunto de números +ODD = ÃMPAR ## Arredonda por excesso um número para o número inteiro ímpar mais próximo +PI = PI ## Devolve o valor de pi +POWER = POTÊNCIA ## Devolve o resultado de um número elevado a uma potência +PRODUCT = PRODUTO ## Multiplica os respectivos argumentos +QUOTIENT = QUOCIENTE ## Devolve a parte inteira de uma divisão +RADIANS = RADIANOS ## Converte graus em radianos +RAND = ALEATÓRIO ## Devolve um número aleatório entre 0 e 1 +RANDBETWEEN = ALEATÓRIOENTRE ## Devolve um número aleatório entre os números especificados +ROMAN = ROMANO ## Converte um número árabe em romano, como texto +ROUND = ARRED ## Arredonda um número para um número de dígitos especificado +ROUNDDOWN = ARRED.PARA.BAIXO ## Arredonda um número por defeito até zero +ROUNDUP = ARRED.PARA.CIMA ## Arredonda um número por excesso, afastando-o de zero +SERIESSUM = SOMASÉRIE ## Devolve a soma de uma série de potências baseada na fórmula +SIGN = SINAL ## Devolve o sinal de um número +SIN = SEN ## Devolve o seno de um determinado ângulo +SINH = SENH ## Devolve o seno hiperbólico de um número +SQRT = RAIZQ ## Devolve uma raiz quadrada positiva +SQRTPI = RAIZPI ## Devolve a raiz quadrada de (núm * pi) +SUBTOTAL = SUBTOTAL ## Devolve um subtotal numa lista ou base de dados +SUM = SOMA ## Adiciona os respectivos argumentos +SUMIF = SOMA.SE ## Adiciona as células especificadas por um determinado critério +SUMIFS = SOMA.SE.S ## Adiciona as células num intervalo que cumpre vários critérios +SUMPRODUCT = SOMARPRODUTO ## Devolve a soma dos produtos de componentes de matrizes correspondentes +SUMSQ = SOMARQUAD ## Devolve a soma dos quadrados dos argumentos +SUMX2MY2 = SOMAX2DY2 ## Devolve a soma da diferença dos quadrados dos valores correspondentes em duas matrizes +SUMX2PY2 = SOMAX2SY2 ## Devolve a soma da soma dos quadrados dos valores correspondentes em duas matrizes +SUMXMY2 = SOMAXMY2 ## Devolve a soma dos quadrados da diferença dos valores correspondentes em duas matrizes +TAN = TAN ## Devolve a tangente de um número +TANH = TANH ## Devolve a tangente hiperbólica de um número +TRUNC = TRUNCAR ## Trunca um número para um número inteiro + + +## +## Statistical functions Funções estatísticas +## +AVEDEV = DESV.MÉDIO ## Devolve a média aritmética dos desvios absolutos à média dos pontos de dados +AVERAGE = MÉDIA ## Devolve a média dos respectivos argumentos +AVERAGEA = MÉDIAA ## Devolve uma média dos respectivos argumentos, incluindo números, texto e valores lógicos +AVERAGEIF = MÉDIA.SE ## Devolve a média aritmética de todas as células num intervalo que cumprem determinado critério +AVERAGEIFS = MÉDIA.SE.S ## Devolve a média aritmética de todas as células que cumprem múltiplos critérios +BETADIST = DISTBETA ## Devolve a função de distribuição cumulativa beta +BETAINV = BETA.ACUM.INV ## Devolve o inverso da função de distribuição cumulativa relativamente a uma distribuição beta específica +BINOMDIST = DISTRBINOM ## Devolve a probabilidade de distribuição binomial de termo individual +CHIDIST = DIST.CHI ## Devolve a probabilidade unicaudal da distribuição qui-quadrada +CHIINV = INV.CHI ## Devolve o inverso da probabilidade unicaudal da distribuição qui-quadrada +CHITEST = TESTE.CHI ## Devolve o teste para independência +CONFIDENCE = INT.CONFIANÇA ## Devolve o intervalo de confiança correspondente a uma média de população +CORREL = CORREL ## Devolve o coeficiente de correlação entre dois conjuntos de dados +COUNT = CONTAR ## Conta os números que existem na lista de argumentos +COUNTA = CONTAR.VAL ## Conta os valores que existem na lista de argumentos +COUNTBLANK = CONTAR.VAZIO ## Conta o número de células em branco num intervalo +COUNTIF = CONTAR.SE ## Calcula o número de células num intervalo que corresponde aos critérios determinados +COUNTIFS = CONTAR.SE.S ## Conta o número de células num intervalo que cumprem múltiplos critérios +COVAR = COVAR ## Devolve a covariância, que é a média dos produtos de desvios de pares +CRITBINOM = CRIT.BINOM ## Devolve o menor valor em que a distribuição binomial cumulativa é inferior ou igual a um valor de critério +DEVSQ = DESVQ ## Devolve a soma dos quadrados dos desvios +EXPONDIST = DISTEXPON ## Devolve a distribuição exponencial +FDIST = DISTF ## Devolve a distribuição da probabilidade F +FINV = INVF ## Devolve o inverso da distribuição da probabilidade F +FISHER = FISHER ## Devolve a transformação Fisher +FISHERINV = FISHERINV ## Devolve o inverso da transformação Fisher +FORECAST = PREVISÃO ## Devolve um valor ao longo de uma tendência linear +FREQUENCY = FREQUÊNCIA ## Devolve uma distribuição de frequência como uma matriz vertical +FTEST = TESTEF ## Devolve o resultado de um teste F +GAMMADIST = DISTGAMA ## Devolve a distribuição gama +GAMMAINV = INVGAMA ## Devolve o inverso da distribuição gama cumulativa +GAMMALN = LNGAMA ## Devolve o logaritmo natural da função gama, Γ(x) +GEOMEAN = MÉDIA.GEOMÉTRICA ## Devolve a média geométrica +GROWTH = CRESCIMENTO ## Devolve valores ao longo de uma tendência exponencial +HARMEAN = MÉDIA.HARMÓNICA ## Devolve a média harmónica +HYPGEOMDIST = DIST.HIPERGEOM ## Devolve a distribuição hipergeométrica +INTERCEPT = INTERCEPTAR ## Devolve a intercepção da linha de regressão linear +KURT = CURT ## Devolve a curtose de um conjunto de dados +LARGE = MAIOR ## Devolve o maior valor k-ésimo de um conjunto de dados +LINEST = PROJ.LIN ## Devolve os parâmetros de uma tendência linear +LOGEST = PROJ.LOG ## Devolve os parâmetros de uma tendência exponencial +LOGINV = INVLOG ## Devolve o inverso da distribuição normal logarítmica +LOGNORMDIST = DIST.NORMALLOG ## Devolve a distribuição normal logarítmica cumulativa +MAX = MÃXIMO ## Devolve o valor máximo numa lista de argumentos +MAXA = MÃXIMOA ## Devolve o valor máximo numa lista de argumentos, incluindo números, texto e valores lógicos +MEDIAN = MED ## Devolve a mediana dos números indicados +MIN = MÃNIMO ## Devolve o valor mínimo numa lista de argumentos +MINA = MÃNIMOA ## Devolve o valor mínimo numa lista de argumentos, incluindo números, texto e valores lógicos +MODE = MODA ## Devolve o valor mais comum num conjunto de dados +NEGBINOMDIST = DIST.BIN.NEG ## Devolve a distribuição binominal negativa +NORMDIST = DIST.NORM ## Devolve a distribuição cumulativa normal +NORMINV = INV.NORM ## Devolve o inverso da distribuição cumulativa normal +NORMSDIST = DIST.NORMP ## Devolve a distribuição cumulativa normal padrão +NORMSINV = INV.NORMP ## Devolve o inverso da distribuição cumulativa normal padrão +PEARSON = PEARSON ## Devolve o coeficiente de correlação momento/produto de Pearson +PERCENTILE = PERCENTIL ## Devolve o k-ésimo percentil de valores num intervalo +PERCENTRANK = ORDEM.PERCENTUAL ## Devolve a ordem percentual de um valor num conjunto de dados +PERMUT = PERMUTAR ## Devolve o número de permutações de um determinado número de objectos +POISSON = POISSON ## Devolve a distribuição de Poisson +PROB = PROB ## Devolve a probabilidade dos valores num intervalo se encontrarem entre dois limites +QUARTILE = QUARTIL ## Devolve o quartil de um conjunto de dados +RANK = ORDEM ## Devolve a ordem de um número numa lista numérica +RSQ = RQUAD ## Devolve o quadrado do coeficiente de correlação momento/produto de Pearson +SKEW = DISTORÇÃO ## Devolve a distorção de uma distribuição +SLOPE = DECLIVE ## Devolve o declive da linha de regressão linear +SMALL = MENOR ## Devolve o menor valor de k-ésimo de um conjunto de dados +STANDARDIZE = NORMALIZAR ## Devolve um valor normalizado +STDEV = DESVPAD ## Calcula o desvio-padrão com base numa amostra +STDEVA = DESVPADA ## Calcula o desvio-padrão com base numa amostra, incluindo números, texto e valores lógicos +STDEVP = DESVPADP ## Calcula o desvio-padrão com base na população total +STDEVPA = DESVPADPA ## Calcula o desvio-padrão com base na população total, incluindo números, texto e valores lógicos +STEYX = EPADYX ## Devolve o erro-padrão do valor de y previsto para cada x na regressão +TDIST = DISTT ## Devolve a distribuição t de Student +TINV = INVT ## Devolve o inverso da distribuição t de Student +TREND = TENDÊNCIA ## Devolve valores ao longo de uma tendência linear +TRIMMEAN = MÉDIA.INTERNA ## Devolve a média do interior de um conjunto de dados +TTEST = TESTET ## Devolve a probabilidade associada ao teste t de Student +VAR = VAR ## Calcula a variância com base numa amostra +VARA = VARA ## Calcula a variância com base numa amostra, incluindo números, texto e valores lógicos +VARP = VARP ## Calcula a variância com base na população total +VARPA = VARPA ## Calcula a variância com base na população total, incluindo números, texto e valores lógicos +WEIBULL = WEIBULL ## Devolve a distribuição Weibull +ZTEST = TESTEZ ## Devolve o valor de probabilidade unicaudal de um teste-z + + +## +## Text functions Funções de texto +## +ASC = ASC ## Altera letras ou katakana de largura total (byte duplo) numa cadeia de caracteres para caracteres de largura média (byte único) +BAHTTEXT = TEXTO.BAHT ## Converte um número em texto, utilizando o formato monetário ß (baht) +CHAR = CARÃCT ## Devolve o carácter especificado pelo número de código +CLEAN = LIMPAR ## Remove do texto todos os caracteres não imprimíveis +CODE = CÓDIGO ## Devolve um código numérico correspondente ao primeiro carácter numa cadeia de texto +CONCATENATE = CONCATENAR ## Agrupa vários itens de texto num único item de texto +DOLLAR = MOEDA ## Converte um número em texto, utilizando o formato monetário € (Euro) +EXACT = EXACTO ## Verifica se dois valores de texto são idênticos +FIND = LOCALIZAR ## Localiza um valor de texto dentro de outro (sensível às maiúsculas e minúsculas) +FINDB = LOCALIZARB ## Localiza um valor de texto dentro de outro (sensível às maiúsculas e minúsculas) +FIXED = FIXA ## Formata um número como texto com um número fixo de decimais +JIS = JIS ## Altera letras ou katakana de largura média (byte único) numa cadeia de caracteres para caracteres de largura total (byte duplo) +LEFT = ESQUERDA ## Devolve os caracteres mais à esquerda de um valor de texto +LEFTB = ESQUERDAB ## Devolve os caracteres mais à esquerda de um valor de texto +LEN = NÚM.CARACT ## Devolve o número de caracteres de uma cadeia de texto +LENB = NÚM.CARACTB ## Devolve o número de caracteres de uma cadeia de texto +LOWER = MINÚSCULAS ## Converte o texto em minúsculas +MID = SEG.TEXTO ## Devolve um número específico de caracteres de uma cadeia de texto, a partir da posição especificada +MIDB = SEG.TEXTOB ## Devolve um número específico de caracteres de uma cadeia de texto, a partir da posição especificada +PHONETIC = FONÉTICA ## Retira os caracteres fonéticos (furigana) de uma cadeia de texto +PROPER = INICIAL.MAIÚSCULA ## Coloca em maiúsculas a primeira letra de cada palavra de um valor de texto +REPLACE = SUBSTITUIR ## Substitui caracteres no texto +REPLACEB = SUBSTITUIRB ## Substitui caracteres no texto +REPT = REPETIR ## Repete texto um determinado número de vezes +RIGHT = DIREITA ## Devolve os caracteres mais à direita de um valor de texto +RIGHTB = DIREITAB ## Devolve os caracteres mais à direita de um valor de texto +SEARCH = PROCURAR ## Localiza um valor de texto dentro de outro (não sensível a maiúsculas e minúsculas) +SEARCHB = PROCURARB ## Localiza um valor de texto dentro de outro (não sensível a maiúsculas e minúsculas) +SUBSTITUTE = SUBST ## Substitui texto novo por texto antigo numa cadeia de texto +T = T ## Converte os respectivos argumentos em texto +TEXT = TEXTO ## Formata um número e converte-o em texto +TRIM = COMPACTAR ## Remove espaços do texto +UPPER = MAIÚSCULAS ## Converte texto em maiúsculas +VALUE = VALOR ## Converte um argumento de texto num número diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/ru/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/ru/config new file mode 100644 index 0000000..56e45bf --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/ru/config @@ -0,0 +1,47 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = Ñ€ + + +## +## Excel Error Codes (For future use) +## +NULL = #ПУСТО! +DIV0 = #ДЕЛ/0! +VALUE = #ЗÐÐЧ! +REF = #ССЫЛ! +NAME = #ИМЯ? +NUM = #ЧИСЛО! +NA = #Ð/Д diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/ru/functions b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/ru/functions new file mode 100644 index 0000000..5ff6d4f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/ru/functions @@ -0,0 +1,438 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Calculation +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## Data in this file derived from information provided by web-junior (http://www.web-junior.net/) +## +## + + +## +## Add-in and Automation functions Функции надÑтроек и автоматизации +## +GETPIVOTDATA = ПОЛУЧИТЬ.ДÐÐÐЫЕ.СВОДÐОЙ.ТÐБЛИЦЫ ## Возвращает данные, хранÑщиеÑÑ Ð² отчете Ñводной таблицы. + + +## +## Cube functions Функции Куб +## +CUBEKPIMEMBER = КУБЭЛЕМЕÐТКИП ## Возвращает ÑвойÑтво ключевого индикатора производительноÑти «(КИП)» и отображает Ð¸Ð¼Ñ Â«ÐšÐ˜ÐŸÂ» в Ñчейке. «КИП» предÑтавлÑет Ñобой количеÑтвенную величину, такую как ежемеÑÑÑ‡Ð½Ð°Ñ Ð²Ð°Ð»Ð¾Ð²Ð°Ñ Ð¿Ñ€Ð¸Ð±Ñ‹Ð»ÑŒ или ÐµÐ¶ÐµÐºÐ²Ð°Ñ€Ñ‚Ð°Ð»ÑŒÐ½Ð°Ñ Ñ‚ÐµÐºÑƒÑ‡ÐµÑть кадров, иÑпользуемой Ð´Ð»Ñ ÐºÐ¾Ð½Ñ‚Ñ€Ð¾Ð»Ñ ÑффективноÑти работы организации. +CUBEMEMBER = КУБЭЛЕМЕÐТ ## Возвращает Ñлемент или кортеж из куба. ИÑпользуетÑÑ Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð²ÐµÑ€ÐºÐ¸ ÑущеÑÑ‚Ð²Ð¾Ð²Ð°Ð½Ð¸Ñ Ñлемента или кортежа в кубе. +CUBEMEMBERPROPERTY = КУБСВОЙСТВОЭЛЕМЕÐТР## Возвращает значение ÑвойÑтва Ñлемента из куба. ИÑпользуетÑÑ Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð²ÐµÑ€ÐºÐ¸ ÑущеÑÑ‚Ð²Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¸Ð¼ÐµÐ½Ð¸ Ñлемента в кубе и возвращает указанное ÑвойÑтво Ð´Ð»Ñ Ñтого Ñлемента. +CUBERANKEDMEMBER = КУБПОРЭЛЕМЕÐТ ## Возвращает n-ый или ранжированный Ñлемент в множеÑтво. ИÑпользуетÑÑ Ð´Ð»Ñ Ð²Ð¾Ð·Ð²Ñ€Ð°Ñ‰ÐµÐ½Ð¸Ñ Ð¾Ð´Ð½Ð¾Ð³Ð¾ или неÑкольких Ñлементов в множеÑтво, например, лучшего продавца или 10 лучших Ñтудентов. +CUBESET = КУБМÐОЖ ## ОпределÑет вычиÑлительное множеÑтво Ñлементов или кортежей, отправлÑÑ Ð½Ð° Ñервер выражение, которое Ñоздает множеÑтво, а затем возвращает его в Microsoft Office Excel. +CUBESETCOUNT = КУБЧИСЛОЭЛМÐОЖ ## Возвращает чиÑло Ñлементов множеÑтва. +CUBEVALUE = КУБЗÐÐЧЕÐИЕ ## Возвращает обобщенное значение из куба. + + +## +## Database functions Функции Ð´Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ñ Ð±Ð°Ð·Ð°Ð¼Ð¸ данных +## +DAVERAGE = ДСРЗÐÐЧ ## Возвращает Ñреднее значение выбранных запиÑей базы данных. +DCOUNT = БСЧÐТ ## ПодÑчитывает количеÑтво чиÑловых Ñчеек в базе данных. +DCOUNTA = БСЧÐТР## ПодÑчитывает количеÑтво непуÑтых Ñчеек в базе данных. +DGET = БИЗВЛЕЧЬ ## Извлекает из базы данных одну запиÑÑŒ, удовлетворÑющую заданному уÑловию. +DMAX = ДМÐКС ## Возвращает макÑимальное значение Ñреди выделенных запиÑей базы данных. +DMIN = ДМИР## Возвращает минимальное значение Ñреди выделенных запиÑей базы данных. +DPRODUCT = БДПРОИЗВЕД ## Перемножает Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð½Ð¾Ð³Ð¾ Ð¿Ð¾Ð»Ñ Ð² запиÑÑÑ… базы данных, удовлетворÑющих уÑловию. +DSTDEV = ДСТÐÐДОТКЛ ## Оценивает Ñтандартное отклонение по выборке Ð´Ð»Ñ Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ñ‹Ñ… запиÑей базы данных. +DSTDEVP = ДСТÐÐДОТКЛП ## ВычиÑлÑет Ñтандартное отклонение по генеральной ÑовокупноÑти Ð´Ð»Ñ Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ñ‹Ñ… запиÑей базы данных +DSUM = БДСУММ ## Суммирует чиÑла в поле Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñей базы данных, удовлетворÑющих уÑловию. +DVAR = БДДИСП ## Оценивает диÑперÑию по выборке из выделенных запиÑей базы данных +DVARP = БДДИСПП ## ВычиÑлÑет диÑперÑию по генеральной ÑовокупноÑти Ð´Ð»Ñ Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ñ‹Ñ… запиÑей базы данных + + +## +## Date and time functions Функции даты и времени +## +DATE = ДÐТР## Возвращает заданную дату в чиÑловом формате. +DATEVALUE = ДÐТÐЗÐÐЧ ## Преобразует дату из текÑтового формата в чиÑловой формат. +DAY = ДЕÐЬ ## Преобразует дату в чиÑловом формате в день меÑÑца. +DAYS360 = ДÐЕЙ360 ## ВычиÑлÑет количеÑтво дней между Ð´Ð²ÑƒÐ¼Ñ Ð´Ð°Ñ‚Ð°Ð¼Ð¸ на оÑнове 360-дневного года. +EDATE = ДÐТÐМЕС ## Возвращает дату в чиÑловом формате, отÑтоÑщую на заданное чиÑло меÑÑцев вперед или назад от начальной даты. +EOMONTH = КОÐМЕСЯЦР## Возвращает дату в чиÑловом формате Ð´Ð»Ñ Ð¿Ð¾Ñледнего Ð´Ð½Ñ Ð¼ÐµÑÑца, отÑтоÑщего вперед или назад на заданное чиÑло меÑÑцев. +HOUR = ЧÐС ## Преобразует дату в чиÑловом формате в чаÑÑ‹. +MINUTE = МИÐУТЫ ## Преобразует дату в чиÑловом формате в минуты. +MONTH = МЕСЯЦ ## Преобразует дату в чиÑловом формате в меÑÑцы. +NETWORKDAYS = ЧИСТРÐБДÐИ ## Возвращает количеÑтво рабочих дней между Ð´Ð²ÑƒÐ¼Ñ Ð´Ð°Ñ‚Ð°Ð¼Ð¸. +NOW = ТДÐТР## Возвращает текущую дату и Ð²Ñ€ÐµÐ¼Ñ Ð² чиÑловом формате. +SECOND = СЕКУÐДЫ ## Преобразует дату в чиÑловом формате в Ñекунды. +TIME = ВРЕМЯ ## Возвращает заданное Ð²Ñ€ÐµÐ¼Ñ Ð² чиÑловом формате. +TIMEVALUE = ВРЕМЗÐÐЧ ## Преобразует Ð²Ñ€ÐµÐ¼Ñ Ð¸Ð· текÑтового формата в чиÑловой формат. +TODAY = СЕГОДÐЯ ## Возвращает текущую дату в чиÑловом формате. +WEEKDAY = ДЕÐЬÐЕД ## Преобразует дату в чиÑловом формате в день недели. +WEEKNUM = ÐОМÐЕДЕЛИ ## Преобразует чиÑловое предÑтавление в чиÑло, которое указывает, на какую неделю года приходитÑÑ ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ð°Ñ Ð´Ð°Ñ‚Ð°. +WORKDAY = РÐБДЕÐЬ ## Возвращает дату в чиÑловом формате, отÑтоÑщую вперед или назад на заданное количеÑтво рабочих дней. +YEAR = ГОД ## Преобразует дату в чиÑловом формате в год. +YEARFRAC = ДОЛЯГОДР## Возвращает долю года, которую ÑоÑтавлÑет количеÑтво дней между начальной и конечной датами. + + +## +## Engineering functions Инженерные функции +## +BESSELI = БЕССЕЛЬ.I ## Возвращает модифицированную функцию БеÑÑÐµÐ»Ñ In(x). +BESSELJ = БЕССЕЛЬ.J ## Возвращает функцию БеÑÑÐµÐ»Ñ Jn(x). +BESSELK = БЕССЕЛЬ.K ## Возвращает модифицированную функцию БеÑÑÐµÐ»Ñ Kn(x). +BESSELY = БЕССЕЛЬ.Y ## Возвращает функцию БеÑÑÐµÐ»Ñ Yn(x). +BIN2DEC = ДВ.Ð’.ДЕС ## Преобразует двоичное чиÑло в деÑÑтичное. +BIN2HEX = ДВ.Ð’.ШЕСТР## Преобразует двоичное чиÑло в шеÑтнадцатеричное. +BIN2OCT = ДВ.Ð’.ВОСЬМ ## Преобразует двоичное чиÑло в воÑьмеричное. +COMPLEX = КОМПЛЕКСР## Преобразует коÑффициенты при вещеÑтвенной и мнимой чаÑÑ‚ÑÑ… комплекÑного чиÑла в комплекÑное чиÑло. +CONVERT = ПРЕОБР ## Преобразует чиÑло из одной ÑиÑтемы единиц Ð¸Ð·Ð¼ÐµÑ€ÐµÐ½Ð¸Ñ Ð² другую. +DEC2BIN = ДЕС.Ð’.ДВ ## Преобразует деÑÑтичное чиÑло в двоичное. +DEC2HEX = ДЕС.Ð’.ШЕСТР## Преобразует деÑÑтичное чиÑло в шеÑтнадцатеричное. +DEC2OCT = ДЕС.Ð’.ВОСЬМ ## Преобразует деÑÑтичное чиÑло в воÑьмеричное. +DELTA = ДЕЛЬТР## ПроверÑет равенÑтво двух значений. +ERF = ФОШ ## Возвращает функцию ошибки. +ERFC = ДФОШ ## Возвращает дополнительную функцию ошибки. +GESTEP = ПОРОГ ## ПроверÑет, не превышает ли данное чиÑло порогового значениÑ. +HEX2BIN = ШЕСТÐ.Ð’.ДВ ## Преобразует шеÑтнадцатеричное чиÑло в двоичное. +HEX2DEC = ШЕСТÐ.Ð’.ДЕС ## Преобразует шеÑтнадцатеричное чиÑло в деÑÑтичное. +HEX2OCT = ШЕСТÐ.Ð’.ВОСЬМ ## Преобразует шеÑтнадцатеричное чиÑло в воÑьмеричное. +IMABS = МÐИМ.ABS ## Возвращает абÑолютную величину (модуль) комплекÑного чиÑла. +IMAGINARY = МÐИМ.ЧÐСТЬ ## Возвращает коÑффициент при мнимой чаÑти комплекÑного чиÑла. +IMARGUMENT = МÐИМ.ÐРГУМЕÐТ ## Возвращает значение аргумента комплекÑного чиÑла (тета) — угол, выраженный в радианах. +IMCONJUGATE = МÐИМ.СОПРЯЖ ## Возвращает комплекÑно-ÑопрÑженное комплекÑное чиÑло. +IMCOS = МÐИМ.COS ## Возвращает коÑÐ¸Ð½ÑƒÑ ÐºÐ¾Ð¼Ð¿Ð»ÐµÐºÑного чиÑла. +IMDIV = МÐИМ.ДЕЛ ## Возвращает чаÑтное от Ð´ÐµÐ»ÐµÐ½Ð¸Ñ Ð´Ð²ÑƒÑ… комплекÑных чиÑел. +IMEXP = МÐИМ.EXP ## Возвращает ÑкÑпоненту комплекÑного чиÑла. +IMLN = МÐИМ.LN ## Возвращает натуральный логарифм комплекÑного чиÑла. +IMLOG10 = МÐИМ.LOG10 ## Возвращает обычный (деÑÑтичный) логарифм комплекÑного чиÑла. +IMLOG2 = МÐИМ.LOG2 ## Возвращает двоичный логарифм комплекÑного чиÑла. +IMPOWER = МÐИМ.СТЕПЕÐЬ ## Возвращает комплекÑное чиÑло, возведенное в целую Ñтепень. +IMPRODUCT = МÐИМ.ПРОИЗВЕД ## Возвращает произведение от 2 до 29 комплекÑных чиÑел. +IMREAL = МÐИМ.ВЕЩ ## Возвращает коÑффициент при вещеÑтвенной чаÑти комплекÑного чиÑла. +IMSIN = МÐИМ.SIN ## Возвращает ÑÐ¸Ð½ÑƒÑ ÐºÐ¾Ð¼Ð¿Ð»ÐµÐºÑного чиÑла. +IMSQRT = МÐИМ.КОРЕÐЬ ## Возвращает значение квадратного ÐºÐ¾Ñ€Ð½Ñ Ð¸Ð· комплекÑного чиÑла. +IMSUB = МÐИМ.РÐЗР## Возвращает разноÑть двух комплекÑных чиÑел. +IMSUM = МÐИМ.СУММ ## Возвращает Ñумму комплекÑных чиÑел. +OCT2BIN = ВОСЬМ.Ð’.ДВ ## Преобразует воÑьмеричное чиÑло в двоичное. +OCT2DEC = ВОСЬМ.Ð’.ДЕС ## Преобразует воÑьмеричное чиÑло в деÑÑтичное. +OCT2HEX = ВОСЬМ.Ð’.ШЕСТР## Преобразует воÑьмеричное чиÑло в шеÑтнадцатеричное. + + +## +## Financial functions ФинанÑовые функции +## +ACCRINT = ÐÐКОПДОХОД ## Возвращает накопленный процент по ценным бумагам Ñ Ð¿ÐµÑ€Ð¸Ð¾Ð´Ð¸Ñ‡ÐµÑкой выплатой процентов. +ACCRINTM = ÐÐКОПДОХОДПОГÐШ ## Возвращает накопленный процент по ценным бумагам, проценты по которым выплачиваютÑÑ Ð² Ñрок погашениÑ. +AMORDEGRC = ÐМОРУМ ## Возвращает величину амортизации Ð´Ð»Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ периода, иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ ÐºÐ¾Ñффициент амортизации. +AMORLINC = ÐМОРУВ ## Возвращает величину амортизации Ð´Ð»Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ периода. +COUPDAYBS = ДÐЕЙКУПОÐДО ## Возвращает количеÑтво дней от начала дейÑÑ‚Ð²Ð¸Ñ ÐºÑƒÐ¿Ð¾Ð½Ð° до даты ÑоглашениÑ. +COUPDAYS = ДÐЕЙКУПОР## Возвращает чиÑло дней в периоде купона, Ñодержащем дату ÑоглашениÑ. +COUPDAYSNC = ДÐЕЙКУПОÐПОСЛЕ ## Возвращает чиÑло дней от даты ÑÐ¾Ð³Ð»Ð°ÑˆÐµÐ½Ð¸Ñ Ð´Ð¾ Ñрока Ñледующего купона. +COUPNCD = ДÐТÐКУПОÐПОСЛЕ ## Возвращает Ñледующую дату купона поÑле даты ÑоглашениÑ. +COUPNUM = ЧИСЛКУПОР## Возвращает количеÑтво купонов, которые могут быть оплачены между датой ÑÐ¾Ð³Ð»Ð°ÑˆÐµÐ½Ð¸Ñ Ð¸ Ñроком вÑÑ‚ÑƒÐ¿Ð»ÐµÐ½Ð¸Ñ Ð² Ñилу. +COUPPCD = ДÐТÐКУПОÐДО ## Возвращает предыдущую дату купона перед датой ÑоглашениÑ. +CUMIPMT = ОБЩПЛÐТ ## Возвращает общую выплату, произведенную между Ð´Ð²ÑƒÐ¼Ñ Ð¿ÐµÑ€Ð¸Ð¾Ð´Ð¸Ñ‡ÐµÑкими выплатами. +CUMPRINC = ОБЩДОХОД ## Возвращает общую выплату по займу между Ð´Ð²ÑƒÐ¼Ñ Ð¿ÐµÑ€Ð¸Ð¾Ð´Ð°Ð¼Ð¸. +DB = ФУО ## Возвращает величину амортизации актива Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ периода, раÑÑчитанную методом фикÑированного ÑƒÐ¼ÐµÐ½ÑŒÑˆÐµÐ½Ð¸Ñ Ð¾Ñтатка. +DDB = ДДОБ ## Возвращает величину амортизации актива за данный период, иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ Ð¼ÐµÑ‚Ð¾Ð´ двойного ÑƒÐ¼ÐµÐ½ÑŒÑˆÐµÐ½Ð¸Ñ Ð¾Ñтатка или иной Ñвно указанный метод. +DISC = СКИДКР## Возвращает норму Ñкидки Ð´Ð»Ñ Ñ†ÐµÐ½Ð½Ñ‹Ñ… бумаг. +DOLLARDE = РУБЛЬ.ДЕС ## Преобразует цену в рублÑÑ…, выраженную в виде дроби, в цену в рублÑÑ…, выраженную деÑÑтичным чиÑлом. +DOLLARFR = РУБЛЬ.ДРОБЬ ## Преобразует цену в рублÑÑ…, выраженную деÑÑтичным чиÑлом, в цену в рублÑÑ…, выраженную в виде дроби. +DURATION = ДЛИТ ## Возвращает ежегодную продолжительноÑть дейÑÑ‚Ð²Ð¸Ñ Ñ†ÐµÐ½Ð½Ñ‹Ñ… бумаг Ñ Ð¿ÐµÑ€Ð¸Ð¾Ð´Ð¸Ñ‡ÐµÑкими выплатами по процентам. +EFFECT = ЭФФЕКТ ## Возвращает дейÑтвующие ежегодные процентные Ñтавки. +FV = БС ## Возвращает будущую ÑтоимоÑть инвеÑтиции. +FVSCHEDULE = БЗРÐСПИС ## Возвращает будущую ÑтоимоÑть первоначальной оÑновной Ñуммы поÑле начиÑÐ»ÐµÐ½Ð¸Ñ Ñ€Ñда Ñложных процентов. +INTRATE = ИÐОРМР## Возвращает процентную Ñтавку Ð´Ð»Ñ Ð¿Ð¾Ð»Ð½Ð¾Ñтью инвеÑтированных ценных бумаг. +IPMT = ПРПЛТ ## Возвращает величину выплаты прибыли на Ð²Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð·Ð° данный период. +IRR = ВСД ## Возвращает внутреннюю Ñтавку доходноÑти Ð´Ð»Ñ Ñ€Ñда потоков денежных ÑредÑтв. +ISPMT = ПРОЦПЛÐТ ## ВычиÑлÑет выплаты за указанный период инвеÑтиции. +MDURATION = МДЛИТ ## Возвращает модифицированную длительноÑть ÐœÐ°ÐºÐ¾Ð»ÐµÑ Ð´Ð»Ñ Ñ†ÐµÐ½Ð½Ñ‹Ñ… бумаг Ñ Ð¿Ñ€ÐµÐ´Ð¿Ð¾Ð»Ð°Ð³Ð°ÐµÐ¼Ð¾Ð¹ номинальной ÑтоимоÑтью 100 рублей. +MIRR = МВСД ## Возвращает внутреннюю Ñтавку доходноÑти, при которой положительные и отрицательные денежные потоки имеют разные Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ñтавки. +NOMINAL = ÐОМИÐÐЛ ## Возвращает номинальную годовую процентную Ñтавку. +NPER = КПЕР ## Возвращает общее количеÑтво периодов выплаты Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ вклада. +NPV = ЧПС ## Возвращает чиÑтую приведенную ÑтоимоÑть инвеÑтиции, оÑнованной на Ñерии периодичеÑких денежных потоков и Ñтавке диÑконтированиÑ. +ODDFPRICE = ЦЕÐÐПЕРВÐЕРЕГ ## Возвращает цену за 100 рублей нарицательной ÑтоимоÑти ценных бумаг Ñ Ð½ÐµÑ€ÐµÐ³ÑƒÐ»Ñрным первым периодом. +ODDFYIELD = ДОХОДПЕРВÐЕРЕГ ## Возвращает доход по ценным бумагам Ñ Ð½ÐµÑ€ÐµÐ³ÑƒÐ»Ñрным первым периодом. +ODDLPRICE = ЦЕÐÐПОСЛÐЕРЕГ ## Возвращает цену за 100 рублей нарицательной ÑтоимоÑти ценных бумаг Ñ Ð½ÐµÑ€ÐµÐ³ÑƒÐ»Ñрным поÑледним периодом. +ODDLYIELD = ДОХОДПОСЛÐЕРЕГ ## Возвращает доход по ценным бумагам Ñ Ð½ÐµÑ€ÐµÐ³ÑƒÐ»Ñрным поÑледним периодом. +PMT = ПЛТ ## Возвращает величину выплаты за один период аннуитета. +PPMT = ОСПЛТ ## Возвращает величину выплат в погашение оÑновной Ñуммы по инвеÑтиции за заданный период. +PRICE = ЦЕÐÐ ## Возвращает цену за 100 рублей нарицательной ÑтоимоÑти ценных бумаг, по которым производитÑÑ Ð¿ÐµÑ€Ð¸Ð¾Ð´Ð¸Ñ‡ÐµÑÐºÐ°Ñ Ð²Ñ‹Ð¿Ð»Ð°Ñ‚Ð° процентов. +PRICEDISC = ЦЕÐÐСКИДКР## Возвращает цену за 100 рублей номинальной ÑтоимоÑти ценных бумаг, на которые Ñделана Ñкидка. +PRICEMAT = ЦЕÐÐПОГÐШ ## Возвращает цену за 100 рублей номинальной ÑтоимоÑти ценных бумаг, проценты по которым выплачиваютÑÑ Ð² Ñрок погашениÑ. +PV = ПС ## Возвращает приведенную (к текущему моменту) ÑтоимоÑть инвеÑтиции. +RATE = СТÐВКР## Возвращает процентную Ñтавку по аннуитету за один период. +RECEIVED = ПОЛУЧЕÐО ## Возвращает Ñумму, полученную к Ñроку Ð¿Ð¾Ð³Ð°ÑˆÐµÐ½Ð¸Ñ Ð¿Ð¾Ð»Ð½Ð¾Ñтью обеÑпеченных ценных бумаг. +SLN = ÐПЛ ## Возвращает величину линейной амортизации актива за один период. +SYD = ÐСЧ ## Возвращает величину амортизации актива за данный период, раÑÑчитанную методом Ñуммы годовых чиÑел. +TBILLEQ = РÐÐ’ÐОКЧЕК ## Возвращает Ñквивалентный облигации доход по казначейÑкому чеку. +TBILLPRICE = ЦЕÐÐКЧЕК ## Возвращает цену за 100 рублей нарицательной ÑтоимоÑти Ð´Ð»Ñ ÐºÐ°Ð·Ð½Ð°Ñ‡ÐµÐ¹Ñкого чека. +TBILLYIELD = ДОХОДКЧЕК ## Возвращает доход по казначейÑкому чеку. +VDB = ПУО ## Возвращает величину амортизации актива Ð´Ð»Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ð¾Ð³Ð¾ или чаÑтичного периода при иÑпользовании метода ÑокращающегоÑÑ Ð±Ð°Ð»Ð°Ð½Ñа. +XIRR = ЧИСТВÐДОХ ## Возвращает внутреннюю Ñтавку доходноÑти Ð´Ð»Ñ Ð³Ñ€Ð°Ñ„Ð¸ÐºÐ° денежных потоков, которые не обÑзательно ноÑÑÑ‚ периодичеÑкий характер. +XNPV = ЧИСТÐЗ ## Возвращает чиÑтую приведенную ÑтоимоÑть Ð´Ð»Ñ Ð´ÐµÐ½ÐµÐ¶Ð½Ñ‹Ñ… потоков, которые не обÑзательно ÑвлÑÑŽÑ‚ÑÑ Ð¿ÐµÑ€Ð¸Ð¾Ð´Ð¸Ñ‡ÐµÑкими. +YIELD = ДОХОД ## Возвращает доход от ценных бумаг, по которым производÑÑ‚ÑÑ Ð¿ÐµÑ€Ð¸Ð¾Ð´Ð¸Ñ‡ÐµÑкие выплаты процентов. +YIELDDISC = ДОХОДСКИДКР## Возвращает годовой доход по ценным бумагам, на которые Ñделана Ñкидка (пример — казначейÑкие чеки). +YIELDMAT = ДОХОДПОГÐШ ## Возвращает годовой доход от ценных бумаг, проценты по которым выплачиваютÑÑ Ð² Ñрок погашениÑ. + + +## +## Information functions Информационные функции +## +CELL = ЯЧЕЙКР## Возвращает информацию о формате, раÑположении или Ñодержимом Ñчейки. +ERROR.TYPE = ТИП.ОШИБКИ ## Возвращает чиÑловой код, ÑоответÑтвующий типу ошибки. +INFO = ИÐФОРМ ## Возвращает информацию о текущей операционной Ñреде. +ISBLANK = ЕПУСТО ## Возвращает значение ИСТИÐÐ, еÑли аргумент ÑвлÑетÑÑ ÑÑылкой на пуÑтую Ñчейку. +ISERR = ЕОШ ## Возвращает значение ИСТИÐÐ, еÑли аргумент ÑÑылаетÑÑ Ð½Ð° любое значение ошибки, кроме #Ð/Д. +ISERROR = ЕОШИБКР## Возвращает значение ИСТИÐÐ, еÑли аргумент ÑÑылаетÑÑ Ð½Ð° любое значение ошибки. +ISEVEN = ЕЧÐТР## Возвращает значение ИСТИÐÐ, еÑли значение аргумента ÑвлÑетÑÑ Ñ‡ÐµÑ‚Ð½Ñ‹Ð¼ чиÑлом. +ISLOGICAL = ЕЛОГИЧ ## Возвращает значение ИСТИÐÐ, еÑли аргумент ÑÑылаетÑÑ Ð½Ð° логичеÑкое значение. +ISNA = ЕÐД ## Возвращает значение ИСТИÐÐ, еÑли аргумент ÑÑылаетÑÑ Ð½Ð° значение ошибки #Ð/Д. +ISNONTEXT = ЕÐЕТЕКСТ ## Возвращает значение ИСТИÐÐ, еÑли значение аргумента не ÑвлÑетÑÑ Ñ‚ÐµÐºÑтом. +ISNUMBER = ЕЧИСЛО ## Возвращает значение ИСТИÐÐ, еÑли аргумент ÑÑылаетÑÑ Ð½Ð° чиÑло. +ISODD = ЕÐЕЧÐТ ## Возвращает значение ИСТИÐÐ, еÑли значение аргумента ÑвлÑетÑÑ Ð½ÐµÑ‡ÐµÑ‚Ð½Ñ‹Ð¼ чиÑлом. +ISREF = ЕССЫЛКР## Возвращает значение ИСТИÐÐ, еÑли значение аргумента ÑвлÑетÑÑ ÑÑылкой. +ISTEXT = ЕТЕКСТ ## Возвращает значение ИСТИÐÐ, еÑли значение аргумента ÑвлÑетÑÑ Ñ‚ÐµÐºÑтом. +N = Ч ## Возвращает значение, преобразованное в чиÑло. +NA = ÐД ## Возвращает значение ошибки #Ð/Д. +TYPE = ТИП ## Возвращает чиÑло, обозначающее тип данных значениÑ. + + +## +## Logical functions ЛогичеÑкие функции +## +AND = И ## Renvoie VRAI si tous ses arguments sont VRAI. +FALSE = ЛОЖЬ ## Возвращает логичеÑкое значение ЛОЖЬ. +IF = ЕСЛИ ## ВыполнÑет проверку уÑловиÑ. +IFERROR = ЕСЛИОШИБКР## Возвращает введённое значение, еÑли вычиÑление по формуле вызывает ошибку; в противном Ñлучае Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ Ð²Ð¾Ð·Ð²Ñ€Ð°Ñ‰Ð°ÐµÑ‚ результат вычиÑлениÑ. +NOT = ÐЕ ## МенÑет логичеÑкое значение Ñвоего аргумента на противоположное. +OR = ИЛИ ## Возвращает значение ИСТИÐÐ, еÑли Ñ…Ð¾Ñ‚Ñ Ð±Ñ‹ один аргумент имеет значение ИСТИÐÐ. +TRUE = ИСТИÐÐ ## Возвращает логичеÑкое значение ИСТИÐÐ. + + +## +## Lookup and reference functions Функции ÑÑылки и поиÑка +## +ADDRESS = ÐДРЕС ## Возвращает ÑÑылку на отдельную Ñчейку лиÑта в виде текÑта. +AREAS = ОБЛÐСТИ ## Возвращает количеÑтво облаÑтей в ÑÑылке. +CHOOSE = ВЫБОР ## Выбирает значение из ÑпиÑка значений по индекÑу. +COLUMN = СТОЛБЕЦ ## Возвращает номер Ñтолбца, на который указывает ÑÑылка. +COLUMNS = ЧИСЛСТОЛБ ## Возвращает количеÑтво Ñтолбцов в ÑÑылке. +HLOOKUP = ГПР ## Ищет в первой Ñтроке маÑÑива и возвращает значение отмеченной Ñчейки +HYPERLINK = ГИПЕРССЫЛКР## Создает ÑÑылку, открывающую документ, который находитÑÑ Ð½Ð° Ñервере Ñети, в интраÑети или в Интернете. +INDEX = ИÐДЕКС ## ИÑпользует Ð¸Ð½Ð´ÐµÐºÑ Ð´Ð»Ñ Ð²Ñ‹Ð±Ð¾Ñ€Ð° Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¸Ð· ÑÑылки или маÑÑива. +INDIRECT = ДВССЫЛ ## Возвращает ÑÑылку, заданную текÑтовым значением. +LOOKUP = ПРОСМОТР ## Ищет Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² векторе или маÑÑиве. +MATCH = ПОИСКПОЗ ## Ищет Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² ÑÑылке или маÑÑиве. +OFFSET = СМЕЩ ## Возвращает Ñмещение ÑÑылки отноÑительно заданной ÑÑылки. +ROW = СТРОКР## Возвращает номер Ñтроки, определÑемой ÑÑылкой. +ROWS = ЧСТРОК ## Возвращает количеÑтво Ñтрок в ÑÑылке. +RTD = ДРВ ## Извлекает данные реального времени из программ, поддерживающих автоматизацию COM (Программирование объектов. Стандартное ÑредÑтво Ð´Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ñ Ð¾Ð±ÑŠÐµÐºÑ‚Ð°Ð¼Ð¸ некоторого Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð¸Ð· другого Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð¸Ð»Ð¸ ÑредÑтва разработки. Программирование объектов (ранее называемое программированием OLE) ÑвлÑетÑÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸ÐµÐ¹ модели COM (Component Object Model, модель компонентных объектов).). +TRANSPOSE = ТРÐÐСП ## Возвращает транÑпонированный маÑÑив. +VLOOKUP = ВПР ## Ищет значение в первом Ñтолбце маÑÑива и возвращает значение из Ñчейки в найденной Ñтроке и указанном Ñтолбце. + + +## +## Math and trigonometry functions МатематичеÑкие и тригонометричеÑкие функции +## +ABS = ABS ## Возвращает модуль (абÑолютную величину) чиÑла. +ACOS = ACOS ## Возвращает арккоÑÐ¸Ð½ÑƒÑ Ñ‡Ð¸Ñла. +ACOSH = ACOSH ## Возвращает гиперболичеÑкий арккоÑÐ¸Ð½ÑƒÑ Ñ‡Ð¸Ñла. +ASIN = ASIN ## Возвращает аркÑÐ¸Ð½ÑƒÑ Ñ‡Ð¸Ñла. +ASINH = ASINH ## Возвращает гиперболичеÑкий аркÑÐ¸Ð½ÑƒÑ Ñ‡Ð¸Ñла. +ATAN = ATAN ## Возвращает Ð°Ñ€ÐºÑ‚Ð°Ð½Ð³ÐµÐ½Ñ Ñ‡Ð¸Ñла. +ATAN2 = ATAN2 ## Возвращает Ð°Ñ€ÐºÑ‚Ð°Ð½Ð³ÐµÐ½Ñ Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ð½Ð½Ñ‹Ñ… координат x и y. +ATANH = ATANH ## Возвращает гиперболичеÑкий Ð°Ñ€ÐºÑ‚Ð°Ð½Ð³ÐµÐ½Ñ Ñ‡Ð¸Ñла. +CEILING = ОКРВВЕРХ ## ОкруглÑет чиÑло до ближайшего целого или до ближайшего кратного указанному значению. +COMBIN = ЧИСЛКОМБ ## Возвращает количеÑтво комбинаций Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ чиÑла объектов. +COS = COS ## Возвращает коÑÐ¸Ð½ÑƒÑ Ñ‡Ð¸Ñла. +COSH = COSH ## Возвращает гиперболичеÑкий коÑÐ¸Ð½ÑƒÑ Ñ‡Ð¸Ñла. +DEGREES = ГРÐДУСЫ ## Преобразует радианы в градуÑÑ‹. +EVEN = ЧÐТР## ОкруглÑет чиÑло до ближайшего четного целого. +EXP = EXP ## Возвращает чиÑло e, возведенное в указанную Ñтепень. +FACT = ФÐКТР ## Возвращает факториал чиÑла. +FACTDOUBLE = ДВФÐКТР ## Возвращает двойной факториал чиÑла. +FLOOR = ОКРВÐИЗ ## ОкруглÑет чиÑло до ближайшего меньшего по модулю значениÑ. +GCD = ÐОД ## Возвращает наибольший общий делитель. +INT = ЦЕЛОЕ ## ОкруглÑет чиÑло до ближайшего меньшего целого. +LCM = ÐОК ## Возвращает наименьшее общее кратное. +LN = LN ## Возвращает натуральный логарифм чиÑла. +LOG = LOG ## Возвращает логарифм чиÑла по заданному оÑнованию. +LOG10 = LOG10 ## Возвращает деÑÑтичный логарифм чиÑла. +MDETERM = МОПРЕД ## Возвращает определитель матрицы маÑÑива. +MINVERSE = МОБР ## Возвращает обратную матрицу маÑÑива. +MMULT = МУМÐОЖ ## Возвращает произведение матриц двух маÑÑивов. +MOD = ОСТÐТ ## Возвращает оÑтаток от делениÑ. +MROUND = ОКРУГЛТ ## Возвращает чиÑло, округленное Ñ Ñ‚Ñ€ÐµÐ±ÑƒÐµÐ¼Ð¾Ð¹ точноÑтью. +MULTINOMIAL = МУЛЬТИÐОМ ## Возвращает мультиномиальный коÑффициент множеÑтва чиÑел. +ODD = ÐЕЧÐТ ## ОкруглÑет чиÑло до ближайшего нечетного целого. +PI = ПИ ## Возвращает чиÑло пи. +POWER = СТЕПЕÐЬ ## Возвращает результат Ð²Ð¾Ð·Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Ñ‡Ð¸Ñла в Ñтепень. +PRODUCT = ПРОИЗВЕД ## Возвращает произведение аргументов. +QUOTIENT = ЧÐСТÐОЕ ## Возвращает целую чаÑть чаÑтного при делении. +RADIANS = РÐДИÐÐЫ ## Преобразует градуÑÑ‹ в радианы. +RAND = СЛЧИС ## Возвращает Ñлучайное чиÑло в интервале от 0 до 1. +RANDBETWEEN = СЛУЧМЕЖДУ ## Возвращает Ñлучайное чиÑло в интервале между Ð´Ð²ÑƒÐ¼Ñ Ð·Ð°Ð´Ð°Ð½Ð½Ñ‹Ð¼Ð¸ чиÑлами. +ROMAN = РИМСКОЕ ## Преобразует арабÑкие цифры в римÑкие в виде текÑта. +ROUND = ОКРУГЛ ## ОкруглÑет чиÑло до указанного количеÑтва деÑÑтичных разрÑдов. +ROUNDDOWN = ОКРУГЛВÐИЗ ## ОкруглÑет чиÑло до ближайшего меньшего по модулю значениÑ. +ROUNDUP = ОКРУГЛВВЕРХ ## ОкруглÑет чиÑло до ближайшего большего по модулю значениÑ. +SERIESSUM = РЯД.СУММ ## Возвращает Ñумму Ñтепенного Ñ€Ñда, вычиÑленную по формуле. +SIGN = ЗÐÐК ## Возвращает знак чиÑла. +SIN = SIN ## Возвращает ÑÐ¸Ð½ÑƒÑ Ð·Ð°Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ угла. +SINH = SINH ## Возвращает гиперболичеÑкий ÑÐ¸Ð½ÑƒÑ Ñ‡Ð¸Ñла. +SQRT = КОРЕÐЬ ## Возвращает положительное значение квадратного корнÑ. +SQRTPI = КОРЕÐЬПИ ## Возвращает квадратный корень из Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð²Ñ‹Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ (чиÑло * ПИ). +SUBTOTAL = ПРОМЕЖУТОЧÐЫЕ.ИТОГИ ## Возвращает промежуточный итог в ÑпиÑке или базе данных. +SUM = СУММ ## Суммирует аргументы. +SUMIF = СУММЕСЛИ ## Суммирует Ñчейки, удовлетворÑющие заданному уÑловию. +SUMIFS = СУММЕСЛИМР## Суммирует диапазон Ñчеек, удовлетворÑющих неÑкольким уÑловиÑм. +SUMPRODUCT = СУММПРОИЗВ ## Возвращает Ñумму произведений ÑоответÑтвующих Ñлементов маÑÑивов. +SUMSQ = СУММКВ ## Возвращает Ñумму квадратов аргументов. +SUMX2MY2 = СУММРÐЗÐКВ ## Возвращает Ñумму разноÑтей квадратов ÑоответÑтвующих значений в двух маÑÑивах. +SUMX2PY2 = СУММСУММКВ ## Возвращает Ñумму Ñумм квадратов ÑоответÑтвующих Ñлементов двух маÑÑивов. +SUMXMY2 = СУММКВРÐЗР## Возвращает Ñумму квадратов разноÑтей ÑоответÑтвующих значений в двух маÑÑивах. +TAN = TAN ## Возвращает Ñ‚Ð°Ð½Ð³ÐµÐ½Ñ Ñ‡Ð¸Ñла. +TANH = TANH ## Возвращает гиперболичеÑкий Ñ‚Ð°Ð½Ð³ÐµÐ½Ñ Ñ‡Ð¸Ñла. +TRUNC = ОТБР ## ОтбраÑывает дробную чаÑть чиÑла. + + +## +## Statistical functions СтатиÑтичеÑкие функции +## +AVEDEV = СРОТКЛ ## Возвращает Ñреднее арифметичеÑкое абÑолютных значений отклонений точек данных от Ñреднего. +AVERAGE = СРЗÐÐЧ ## Возвращает Ñреднее арифметичеÑкое аргументов. +AVERAGEA = СРЗÐÐЧР## Возвращает Ñреднее арифметичеÑкое аргументов, Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ñ‡Ð¸Ñла, текÑÑ‚ и логичеÑкие значениÑ. +AVERAGEIF = СРЗÐÐЧЕСЛИ ## Возвращает Ñреднее значение (Ñреднее арифметичеÑкое) вÑех Ñчеек в диапазоне, которые удовлетворÑÑŽÑ‚ данному уÑловию. +AVERAGEIFS = СРЗÐÐЧЕСЛИМР## Возвращает Ñреднее значение (Ñреднее арифметичеÑкое) вÑех Ñчеек, которые удовлетворÑÑŽÑ‚ неÑкольким уÑловиÑм. +BETADIST = БЕТÐРÐСП ## Возвращает интегральную функцию бета-раÑпределениÑ. +BETAINV = БЕТÐОБР ## Возвращает обратную интегральную функцию указанного бета-раÑпределениÑ. +BINOMDIST = БИÐОМРÐСП ## Возвращает отдельное значение биномиального раÑпределениÑ. +CHIDIST = ХИ2РÐСП ## Возвращает одноÑтороннюю вероÑтноÑть раÑÐ¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Ñ…Ð¸-квадрат. +CHIINV = ХИ2ОБР ## Возвращает обратное значение одноÑторонней вероÑтноÑти раÑÐ¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Ñ…Ð¸-квадрат. +CHITEST = ХИ2ТЕСТ ## Возвращает теÑÑ‚ на незавиÑимоÑть. +CONFIDENCE = ДОВЕРИТ ## Возвращает доверительный интервал Ð´Ð»Ñ Ñреднего Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ генеральной ÑовокупноÑти. +CORREL = КОРРЕЛ ## Возвращает коÑффициент коррелÑции между Ð´Ð²ÑƒÐ¼Ñ Ð¼Ð½Ð¾Ð¶ÐµÑтвами данных. +COUNT = СЧÐТ ## ПодÑчитывает количеÑтво чиÑел в ÑпиÑке аргументов. +COUNTA = СЧÐТЗ ## ПодÑчитывает количеÑтво значений в ÑпиÑке аргументов. +COUNTBLANK = СЧИТÐТЬПУСТОТЫ ## ПодÑчитывает количеÑтво пуÑтых Ñчеек в диапазоне +COUNTIF = СЧÐТЕСЛИ ## ПодÑчитывает количеÑтво Ñчеек в диапазоне, удовлетворÑющих заданному уÑловию +COUNTIFS = СЧÐТЕСЛИМР## ПодÑчитывает количеÑтво Ñчеек внутри диапазона, удовлетворÑющих неÑкольким уÑловиÑм. +COVAR = КОВÐР ## Возвращает ковариацию, Ñреднее произведений парных отклонений +CRITBINOM = КРИТБИÐОМ ## Возвращает наименьшее значение, Ð´Ð»Ñ ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ð³Ð¾ интегральное биномиальное раÑпределение меньше или равно заданному критерию. +DEVSQ = КВÐДРОТКЛ ## Возвращает Ñумму квадратов отклонений. +EXPONDIST = ЭКСПРÐСП ## Возвращает ÑкÑпоненциальное раÑпределение. +FDIST = FРÐСП ## Возвращает F-раÑпределение вероÑтноÑти. +FINV = FРÐСПОБР ## Возвращает обратное значение Ð´Ð»Ñ F-раÑÐ¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Ð²ÐµÑ€Ð¾ÑтноÑти. +FISHER = ФИШЕР ## Возвращает преобразование Фишера. +FISHERINV = ФИШЕРОБР ## Возвращает обратное преобразование Фишера. +FORECAST = ПРЕДСКÐЗ ## Возвращает значение линейного тренда. +FREQUENCY = ЧÐСТОТР## Возвращает раÑпределение чаÑтот в виде вертикального маÑÑива. +FTEST = ФТЕСТ ## Возвращает результат F-теÑта. +GAMMADIST = ГÐММÐРÐСП ## Возвращает гамма-раÑпределение. +GAMMAINV = ГÐММÐОБР ## Возвращает обратное гамма-раÑпределение. +GAMMALN = ГÐММÐÐЛОГ ## Возвращает натуральный логарифм гамма функции, Γ(x). +GEOMEAN = СРГЕОМ ## Возвращает Ñреднее геометричеÑкое. +GROWTH = РОСТ ## Возвращает Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² ÑоответÑтвии Ñ ÑкÑпоненциальным трендом. +HARMEAN = СРГÐРМ ## Возвращает Ñреднее гармоничеÑкое. +HYPGEOMDIST = ГИПЕРГЕОМЕТ ## Возвращает гипергеометричеÑкое раÑпределение. +INTERCEPT = ОТРЕЗОК ## Возвращает отрезок, отÑекаемый на оÑи линией линейной регреÑÑии. +KURT = ЭКСЦЕСС ## Возвращает ÑкÑцеÑÑ Ð¼Ð½Ð¾Ð¶ÐµÑтва данных. +LARGE = ÐÐИБОЛЬШИЙ ## Возвращает k-ое наибольшее значение в множеÑтве данных. +LINEST = ЛИÐЕЙР## Возвращает параметры линейного тренда. +LOGEST = ЛГРФПРИБЛ ## Возвращает параметры ÑкÑпоненциального тренда. +LOGINV = ЛОГÐОРМОБР ## Возвращает обратное логарифмичеÑкое нормальное раÑпределение. +LOGNORMDIST = ЛОГÐОРМРÐСП ## Возвращает интегральное логарифмичеÑкое нормальное раÑпределение. +MAX = МÐКС ## Возвращает наибольшее значение в ÑпиÑке аргументов. +MAXA = МÐКСР## Возвращает наибольшее значение в ÑпиÑке аргументов, Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ñ‡Ð¸Ñла, текÑÑ‚ и логичеÑкие значениÑ. +MEDIAN = МЕДИÐÐÐ ## Возвращает медиану заданных чиÑел. +MIN = МИР## Возвращает наименьшее значение в ÑпиÑке аргументов. +MINA = МИÐÐ ## Возвращает наименьшее значение в ÑпиÑке аргументов, Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ñ‡Ð¸Ñла, текÑÑ‚ и логичеÑкие значениÑ. +MODE = МОДР## Возвращает значение моды множеÑтва данных. +NEGBINOMDIST = ОТРБИÐОМРÐСП ## Возвращает отрицательное биномиальное раÑпределение. +NORMDIST = ÐОРМРÐСП ## Возвращает нормальную функцию раÑпределениÑ. +NORMINV = ÐОРМОБР ## Возвращает обратное нормальное раÑпределение. +NORMSDIST = ÐОРМСТРÐСП ## Возвращает Ñтандартное нормальное интегральное раÑпределение. +NORMSINV = ÐОРМСТОБР ## Возвращает обратное значение Ñтандартного нормального раÑпределениÑ. +PEARSON = ПИРСОР## Возвращает коÑффициент коррелÑции ПирÑона. +PERCENTILE = ПЕРСЕÐТИЛЬ ## Возвращает k-ую перÑентиль Ð´Ð»Ñ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ð¹ диапазона. +PERCENTRANK = ПРОЦЕÐТРÐÐГ ## Возвращает процентную норму Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² множеÑтве данных. +PERMUT = ПЕРЕСТ ## Возвращает количеÑтво переÑтановок Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ чиÑла объектов. +POISSON = ПУÐССОР## Возвращает раÑпределение ПуаÑÑона. +PROB = ВЕРОЯТÐОСТЬ ## Возвращает вероÑтноÑть того, что значение из диапазона находитÑÑ Ð²Ð½ÑƒÑ‚Ñ€Ð¸ заданных пределов. +QUARTILE = КВÐРТИЛЬ ## Возвращает квартиль множеÑтва данных. +RANK = РÐÐГ ## Возвращает ранг чиÑла в ÑпиÑке чиÑел. +RSQ = КВПИРСОР## Возвращает квадрат коÑффициента коррелÑции ПирÑона. +SKEW = СКОС ## Возвращает аÑимметрию раÑпределениÑ. +SLOPE = ÐÐКЛОР## Возвращает наклон линии линейной регреÑÑии. +SMALL = ÐÐИМЕÐЬШИЙ ## Возвращает k-ое наименьшее значение в множеÑтве данных. +STANDARDIZE = ÐОРМÐЛИЗÐЦИЯ ## Возвращает нормализованное значение. +STDEV = СТÐÐДОТКЛОР## Оценивает Ñтандартное отклонение по выборке. +STDEVA = СТÐÐДОТКЛОÐÐ ## Оценивает Ñтандартное отклонение по выборке, Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ñ‡Ð¸Ñла, текÑÑ‚ и логичеÑкие значениÑ. +STDEVP = СТÐÐДОТКЛОÐП ## ВычиÑлÑет Ñтандартное отклонение по генеральной ÑовокупноÑти. +STDEVPA = СТÐÐДОТКЛОÐПР## ВычиÑлÑет Ñтандартное отклонение по генеральной ÑовокупноÑти, Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ñ‡Ð¸Ñла, текÑÑ‚ и логичеÑкие значениÑ. +STEYX = СТОШYX ## Возвращает Ñтандартную ошибку предÑказанных значений y Ð´Ð»Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ x в регреÑÑии. +TDIST = СТЬЮДРÐСП ## Возвращает t-раÑпределение Стьюдента. +TINV = СТЬЮДРÐСПОБР ## Возвращает обратное t-раÑпределение Стьюдента. +TREND = ТЕÐДЕÐЦИЯ ## Возвращает Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² ÑоответÑтвии Ñ Ð»Ð¸Ð½ÐµÐ¹Ð½Ñ‹Ð¼ трендом. +TRIMMEAN = УРЕЗСРЕДÐЕЕ ## Возвращает Ñреднее внутренноÑти множеÑтва данных. +TTEST = ТТЕСТ ## Возвращает вероÑтноÑть, ÑоответÑтвующую критерию Стьюдента. +VAR = ДИСП ## Оценивает диÑперÑию по выборке. +VARA = ДИСПР## Оценивает диÑперÑию по выборке, Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ñ‡Ð¸Ñла, текÑÑ‚ и логичеÑкие значениÑ. +VARP = ДИСПР ## ВычиÑлÑет диÑперÑию Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ð»ÑŒÐ½Ð¾Ð¹ ÑовокупноÑти. +VARPA = ДИСПРР## ВычиÑлÑет диÑперÑию Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ð»ÑŒÐ½Ð¾Ð¹ ÑовокупноÑти, Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ñ‡Ð¸Ñла, текÑÑ‚ и логичеÑкие значениÑ. +WEIBULL = ВЕЙБУЛЛ ## Возвращает раÑпределение Вейбулла. +ZTEST = ZТЕСТ ## Возвращает двуÑтороннее P-значение z-теÑта. + + +## +## Text functions ТекÑтовые функции +## +ASC = ASC ## Ð”Ð»Ñ Ñзыков Ñ Ð´Ð²ÑƒÑ…Ð±Ð°Ð¹Ñ‚Ð¾Ð²Ñ‹Ð¼Ð¸ наборами знаков (например, катакана) преобразует полноширинные (двухбайтовые) знаки в полуширинные (однобайтовые). +BAHTTEXT = БÐТТЕКСТ ## Преобразует чиÑло в текÑÑ‚, иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ Ð´ÐµÐ½ÐµÐ¶Ð½Ñ‹Ð¹ формат ß (БÐТ). +CHAR = СИМВОЛ ## Возвращает знак Ñ Ð·Ð°Ð´Ð°Ð½Ð½Ñ‹Ð¼ кодом. +CLEAN = ПЕЧСИМВ ## УдалÑет вÑе непечатаемые знаки из текÑта. +CODE = КОДСИМВ ## Возвращает чиÑловой код первого знака в текÑтовой Ñтроке. +CONCATENATE = СЦЕПИТЬ ## ОбъединÑет неÑколько текÑтовых Ñлементов в один. +DOLLAR = РУБЛЬ ## Преобразует чиÑло в текÑÑ‚, иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ Ð´ÐµÐ½ÐµÐ¶Ð½Ñ‹Ð¹ формат. +EXACT = СОВПÐД ## ПроверÑет идентичноÑть двух текÑтовых значений. +FIND = ÐÐЙТИ ## Ищет Ð²Ñ…Ð¾Ð¶Ð´ÐµÐ½Ð¸Ñ Ð¾Ð´Ð½Ð¾Ð³Ð¾ текÑтового Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² другом (Ñ ÑƒÑ‡ÐµÑ‚Ð¾Ð¼ региÑтра). +FINDB = ÐÐЙТИБ ## Ищет Ð²Ñ…Ð¾Ð¶Ð´ÐµÐ½Ð¸Ñ Ð¾Ð´Ð½Ð¾Ð³Ð¾ текÑтового Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² другом (Ñ ÑƒÑ‡ÐµÑ‚Ð¾Ð¼ региÑтра). +FIXED = ФИКСИРОВÐÐÐЫЙ ## Форматирует чиÑло и преобразует его в текÑÑ‚ Ñ Ð·Ð°Ð´Ð°Ð½Ð½Ñ‹Ð¼ чиÑлом деÑÑтичных знаков. +JIS = JIS ## Ð”Ð»Ñ Ñзыков Ñ Ð´Ð²ÑƒÑ…Ð±Ð°Ð¹Ñ‚Ð¾Ð²Ñ‹Ð¼Ð¸ наборами знаков (например, катакана) преобразует полуширинные (однобайтовые) знаки в текÑтовой Ñтроке в полноширинные (двухбайтовые). +LEFT = ЛЕВСИМВ ## Возвращает крайние Ñлева знаки текÑтового значениÑ. +LEFTB = ЛЕВБ ## Возвращает крайние Ñлева знаки текÑтового значениÑ. +LEN = ДЛСТР ## Возвращает количеÑтво знаков в текÑтовой Ñтроке. +LENB = ДЛИÐБ ## Возвращает количеÑтво знаков в текÑтовой Ñтроке. +LOWER = СТРОЧР## Преобразует вÑе буквы текÑта в Ñтрочные. +MID = ПСТР ## Возвращает заданное чиÑло знаков из Ñтроки текÑта, Ð½Ð°Ñ‡Ð¸Ð½Ð°Ñ Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ð¾Ð¹ позиции. +MIDB = ПСТРБ ## Возвращает заданное чиÑло знаков из Ñтроки текÑта, Ð½Ð°Ñ‡Ð¸Ð½Ð°Ñ Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ð¾Ð¹ позиции. +PHONETIC = PHONETIC ## Извлекает фонетичеÑкие (фуригана) знаки из текÑтовой Ñтроки. +PROPER = ПРОПÐÐЧ ## Преобразует первую букву в каждом Ñлове текÑта в пропиÑную. +REPLACE = ЗÐМЕÐИТЬ ## ЗаменÑет знаки в текÑте. +REPLACEB = ЗÐМЕÐИТЬБ ## ЗаменÑет знаки в текÑте. +REPT = ПОВТОР ## ПовторÑет текÑÑ‚ заданное чиÑло раз. +RIGHT = ПРÐВСИМВ ## Возвращает крайние Ñправа знаки текÑтовой Ñтроки. +RIGHTB = ПРÐВБ ## Возвращает крайние Ñправа знаки текÑтовой Ñтроки. +SEARCH = ПОИСК ## Ищет Ð²Ñ…Ð¾Ð¶Ð´ÐµÐ½Ð¸Ñ Ð¾Ð´Ð½Ð¾Ð³Ð¾ текÑтового Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² другом (без учета региÑтра). +SEARCHB = ПОИСКБ ## Ищет Ð²Ñ…Ð¾Ð¶Ð´ÐµÐ½Ð¸Ñ Ð¾Ð´Ð½Ð¾Ð³Ð¾ текÑтового Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² другом (без учета региÑтра). +SUBSTITUTE = ПОДСТÐВИТЬ ## ЗаменÑет в текÑтовой Ñтроке Ñтарый текÑÑ‚ новым. +T = Т ## Преобразует аргументы в текÑÑ‚. +TEXT = ТЕКСТ ## Форматирует чиÑло и преобразует его в текÑÑ‚. +TRIM = СЖПРОБЕЛЫ ## УдалÑет из текÑта пробелы. +UPPER = ПРОПИСР## Преобразует вÑе буквы текÑта в пропиÑные. +VALUE = ЗÐÐЧЕР## Преобразует текÑтовый аргумент в чиÑло. diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/sv/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/sv/config new file mode 100644 index 0000000..726f771 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/sv/config @@ -0,0 +1,47 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = kr + + +## +## Excel Error Codes (For future use) +## +NULL = #Skärning! +DIV0 = #Division/0! +VALUE = #Värdefel! +REF = #Referens! +NAME = #Namn? +NUM = #Ogiltigt! +NA = #Saknas! diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/sv/functions b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/sv/functions new file mode 100644 index 0000000..9af37d8 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/sv/functions @@ -0,0 +1,408 @@ +## +## Add-in and Automation functions Tilläggs- och automatiseringsfunktioner +## +GETPIVOTDATA = HÄMTA.PIVOTDATA ## Returnerar data som lagrats i en pivottabellrapport + + +## +## Cube functions Kubfunktioner +## +CUBEKPIMEMBER = KUBKPIMEDLEM ## Returnerar namn, egenskap och mÃ¥tt för en KPI och visar namnet och egenskapen i cellen. En KPI, eller prestandaindikator, är ett kvantifierbart mÃ¥tt, t.ex. mÃ¥natlig bruttovinst eller personalomsättning per kvartal, som används för att analysera ett företags resultat. +CUBEMEMBER = KUBMEDLEM ## Returnerar en medlem eller ett par i en kubhierarki. Används för att verifiera att medlemmen eller paret finns i kuben. +CUBEMEMBERPROPERTY = KUBMEDLEMSEGENSKAP ## Returnerar värdet för en medlemsegenskap i kuben. Används för att verifiera att ett medlemsnamn finns i kuben, samt för att returnera den angivna egenskapen för medlemmen. +CUBERANKEDMEMBER = KUBRANGORDNADMEDLEM ## Returnerar den n:te, eller rangordnade, medlemmen i en uppsättning. Används för att returnera ett eller flera element i en uppsättning, till exempelvis den bästa försäljaren eller de tio bästa eleverna. +CUBESET = KUBINSTÄLLNING ## Definierar en beräknad uppsättning medlemmar eller par genom att skicka ett bestämt uttryck till kuben pÃ¥ servern, som skapar uppsättningen och sedan returnerar den till Microsoft Office Excel. +CUBESETCOUNT = KUBINSTÄLLNINGANTAL ## Returnerar antalet objekt i en uppsättning. +CUBEVALUE = KUBVÄRDE ## Returnerar ett mängdvärde frÃ¥n en kub. + + +## +## Database functions Databasfunktioner +## +DAVERAGE = DMEDEL ## Returnerar medelvärdet av databasposterna +DCOUNT = DANTAL ## Räknar antalet celler som innehÃ¥ller tal i en databas +DCOUNTA = DANTALV ## Räknar ifyllda celler i en databas +DGET = DHÄMTA ## Hämtar en enstaka post frÃ¥n en databas som uppfyller de angivna villkoren +DMAX = DMAX ## Returnerar det största värdet frÃ¥n databasposterna +DMIN = DMIN ## Returnerar det minsta värdet frÃ¥n databasposterna +DPRODUCT = DPRODUKT ## Multiplicerar värdena i ett visst fält i poster som uppfyller villkoret +DSTDEV = DSTDAV ## Uppskattar standardavvikelsen baserat pÃ¥ ett urval av databasposterna +DSTDEVP = DSTDAVP ## Beräknar standardavvikelsen utifrÃ¥n hela populationen av valda databasposter +DSUM = DSUMMA ## Summerar talen i kolumnfält i databasposter som uppfyller villkoret +DVAR = DVARIANS ## Uppskattar variansen baserat pÃ¥ ett urval av databasposterna +DVARP = DVARIANSP ## Beräknar variansen utifrÃ¥n hela populationen av valda databasposter + + +## +## Date and time functions Tid- och datumfunktioner +## +DATE = DATUM ## Returnerar ett serienummer för ett visst datum +DATEVALUE = DATUMVÄRDE ## Konverterar ett datum i textformat till ett serienummer +DAY = DAG ## Konverterar ett serienummer till dag i mÃ¥naden +DAYS360 = DAGAR360 ## Beräknar antalet dagar mellan tvÃ¥ datum baserat pÃ¥ ett 360-dagarsÃ¥r +EDATE = EDATUM ## Returnerar serienumret för ett datum som infaller ett visst antal mÃ¥nader före eller efter startdatumet +EOMONTH = SLUTMÃ…NAD ## Returnerar serienumret för sista dagen i mÃ¥naden ett visst antal mÃ¥nader tidigare eller senare +HOUR = TIMME ## Konverterar ett serienummer till en timme +MINUTE = MINUT ## Konverterar ett serienummer till en minut +MONTH = MÃ…NAD ## Konverterar ett serienummer till en mÃ¥nad +NETWORKDAYS = NETTOARBETSDAGAR ## Returnerar antalet hela arbetsdagar mellan tvÃ¥ datum +NOW = NU ## Returnerar serienumret för dagens datum och aktuell tid +SECOND = SEKUND ## Konverterar ett serienummer till en sekund +TIME = KLOCKSLAG ## Returnerar serienumret för en viss tid +TIMEVALUE = TIDVÄRDE ## Konverterar en tid i textformat till ett serienummer +TODAY = IDAG ## Returnerar serienumret för dagens datum +WEEKDAY = VECKODAG ## Konverterar ett serienummer till en dag i veckan +WEEKNUM = VECKONR ## Konverterar ett serienummer till ett veckonummer +WORKDAY = ARBETSDAGAR ## Returnerar serienumret för ett datum ett visst antal arbetsdagar tidigare eller senare +YEAR = Ã…R ## Konverterar ett serienummer till ett Ã¥r +YEARFRAC = Ã…RDEL ## Returnerar en del av ett Ã¥r som representerar antalet hela dagar mellan start- och slutdatum + + +## +## Engineering functions Tekniska funktioner +## +BESSELI = BESSELI ## Returnerar den modifierade Bessel-funktionen In(x) +BESSELJ = BESSELJ ## Returnerar Bessel-funktionen Jn(x) +BESSELK = BESSELK ## Returnerar den modifierade Bessel-funktionen Kn(x) +BESSELY = BESSELY ## Returnerar Bessel-funktionen Yn(x) +BIN2DEC = BIN.TILL.DEC ## Omvandlar ett binärt tal till decimalt +BIN2HEX = BIN.TILL.HEX ## Omvandlar ett binärt tal till hexadecimalt +BIN2OCT = BIN.TILL.OKT ## Omvandlar ett binärt tal till oktalt +COMPLEX = KOMPLEX ## Omvandlar reella och imaginära koefficienter till ett komplext tal +CONVERT = KONVERTERA ## Omvandlar ett tal frÃ¥n ett mÃ¥ttsystem till ett annat +DEC2BIN = DEC.TILL.BIN ## Omvandlar ett decimalt tal till binärt +DEC2HEX = DEC.TILL.HEX ## Omvandlar ett decimalt tal till hexadecimalt +DEC2OCT = DEC.TILL.OKT ## Omvandlar ett decimalt tal till oktalt +DELTA = DELTA ## Testar om tvÃ¥ värden är lika +ERF = FELF ## Returnerar felfunktionen +ERFC = FELFK ## Returnerar den komplementära felfunktionen +GESTEP = SLSTEG ## Testar om ett tal är större än ett tröskelvärde +HEX2BIN = HEX.TILL.BIN ## Omvandlar ett hexadecimalt tal till binärt +HEX2DEC = HEX.TILL.DEC ## Omvandlar ett hexadecimalt tal till decimalt +HEX2OCT = HEX.TILL.OKT ## Omvandlar ett hexadecimalt tal till oktalt +IMABS = IMABS ## Returnerar absolutvärdet (modulus) för ett komplext tal +IMAGINARY = IMAGINÄR ## Returnerar den imaginära koefficienten för ett komplext tal +IMARGUMENT = IMARGUMENT ## Returnerar det komplexa talets argument, en vinkel uttryckt i radianer +IMCONJUGATE = IMKONJUGAT ## Returnerar det komplexa talets konjugat +IMCOS = IMCOS ## Returnerar cosinus för ett komplext tal +IMDIV = IMDIV ## Returnerar kvoten för tvÃ¥ komplexa tal +IMEXP = IMEUPPHÖJT ## Returnerar exponenten för ett komplext tal +IMLN = IMLN ## Returnerar den naturliga logaritmen för ett komplext tal +IMLOG10 = IMLOG10 ## Returnerar 10-logaritmen för ett komplext tal +IMLOG2 = IMLOG2 ## Returnerar 2-logaritmen för ett komplext tal +IMPOWER = IMUPPHÖJT ## Returnerar ett komplext tal upphöjt till en exponent +IMPRODUCT = IMPRODUKT ## Returnerar produkten av komplexa tal +IMREAL = IMREAL ## Returnerar den reella koefficienten för ett komplext tal +IMSIN = IMSIN ## Returnerar sinus för ett komplext tal +IMSQRT = IMROT ## Returnerar kvadratroten av ett komplext tal +IMSUB = IMDIFF ## Returnerar differensen mellan tvÃ¥ komplexa tal +IMSUM = IMSUM ## Returnerar summan av komplexa tal +OCT2BIN = OKT.TILL.BIN ## Omvandlar ett oktalt tal till binärt +OCT2DEC = OKT.TILL.DEC ## Omvandlar ett oktalt tal till decimalt +OCT2HEX = OKT.TILL.HEX ## Omvandlar ett oktalt tal till hexadecimalt + + +## +## Financial functions Finansiella funktioner +## +ACCRINT = UPPLRÄNTA ## Returnerar den upplupna räntan för värdepapper med periodisk ränta +ACCRINTM = UPPLOBLRÄNTA ## Returnerar den upplupna räntan för ett värdepapper som ger avkastning pÃ¥ förfallodagen +AMORDEGRC = AMORDEGRC ## Returnerar avskrivningen för varje redovisningsperiod med hjälp av en avskrivningskoefficient +AMORLINC = AMORLINC ## Returnerar avskrivningen för varje redovisningsperiod +COUPDAYBS = KUPDAGBB ## Returnerar antal dagar frÃ¥n början av kupongperioden till likviddagen +COUPDAYS = KUPDAGARS ## Returnerar antalet dagar i kupongperioden som innehÃ¥ller betalningsdatumet +COUPDAYSNC = KUPDAGNK ## Returnerar antalet dagar frÃ¥n betalningsdatumet till nästa kupongdatum +COUPNCD = KUPNKD ## Returnerar nästa kupongdatum efter likviddagen +COUPNUM = KUPANT ## Returnerar kuponger som förfaller till betalning mellan likviddagen och förfallodagen +COUPPCD = KUPFKD ## Returnerar föregÃ¥ende kupongdatum före likviddagen +CUMIPMT = KUMRÄNTA ## Returnerar den ackumulerade räntan som betalats mellan tvÃ¥ perioder +CUMPRINC = KUMPRIS ## Returnerar det ackumulerade kapitalbeloppet som betalats pÃ¥ ett lÃ¥n mellan tvÃ¥ perioder +DB = DB ## Returnerar avskrivningen för en tillgÃ¥ng under en angiven tid enligt metoden för fast degressiv avskrivning +DDB = DEGAVSKR ## Returnerar en tillgÃ¥ngs värdeminskning under en viss period med hjälp av dubbel degressiv avskrivning eller nÃ¥gon annan metod som du anger +DISC = DISK ## Returnerar diskonteringsräntan för ett värdepapper +DOLLARDE = DECTAL ## Omvandlar ett pris uttryckt som ett brÃ¥k till ett decimaltal +DOLLARFR = BRÃ…K ## Omvandlar ett pris i kronor uttryckt som ett decimaltal till ett brÃ¥k +DURATION = LÖPTID ## Returnerar den Ã¥rliga löptiden för en säkerhet med periodiska räntebetalningar +EFFECT = EFFRÄNTA ## Returnerar den Ã¥rliga effektiva räntesatsen +FV = SLUTVÄRDE ## Returnerar det framtida värdet pÃ¥ en investering +FVSCHEDULE = FÖRRÄNTNING ## Returnerar det framtida värdet av ett begynnelsekapital beräknat pÃ¥ olika räntenivÃ¥er +INTRATE = Ã…RSRÄNTA ## Returnerar räntesatsen för ett betalt värdepapper +IPMT = RBETALNING ## Returnerar räntedelen av en betalning för en given period +IRR = IR ## Returnerar internräntan för en serie betalningar +ISPMT = RALÃ…N ## Beräknar räntan som har betalats under en specifik betalningsperiod +MDURATION = MLÖPTID ## Returnerar den modifierade Macauley-löptiden för ett värdepapper med det antagna nominella värdet 100 kr +MIRR = MODIR ## Returnerar internräntan där positiva och negativa betalningar finansieras med olika räntor +NOMINAL = NOMRÄNTA ## Returnerar den Ã¥rliga nominella räntesatsen +NPER = PERIODER ## Returnerar antalet perioder för en investering +NPV = NETNUVÄRDE ## Returnerar nuvärdet av en serie periodiska betalningar vid en given diskonteringsränta +ODDFPRICE = UDDAFPRIS ## Returnerar priset per 100 kr nominellt värde för ett värdepapper med en udda första period +ODDFYIELD = UDDAFAVKASTNING ## Returnerar avkastningen för en säkerhet med en udda första period +ODDLPRICE = UDDASPRIS ## Returnerar priset per 100 kr nominellt värde för ett värdepapper med en udda sista period +ODDLYIELD = UDDASAVKASTNING ## Returnerar avkastningen för en säkerhet med en udda sista period +PMT = BETALNING ## Returnerar den periodiska betalningen för en annuitet +PPMT = AMORT ## Returnerar amorteringsdelen av en annuitetsbetalning för en given period +PRICE = PRIS ## Returnerar priset per 100 kr nominellt värde för ett värdepapper som ger periodisk ränta +PRICEDISC = PRISDISK ## Returnerar priset per 100 kr nominellt värde för ett diskonterat värdepapper +PRICEMAT = PRISFÖRF ## Returnerar priset per 100 kr nominellt värde för ett värdepapper som ger ränta pÃ¥ förfallodagen +PV = PV ## Returnerar nuvärdet av en serie lika stora periodiska betalningar +RATE = RÄNTA ## Returnerar räntesatsen per period i en annuitet +RECEIVED = BELOPP ## Returnerar beloppet som utdelas pÃ¥ förfallodagen för ett betalat värdepapper +SLN = LINAVSKR ## Returnerar den linjära avskrivningen för en tillgÃ¥ng under en period +SYD = Ã…RSAVSKR ## Returnerar den Ã¥rliga avskrivningssumman för en tillgÃ¥ng under en angiven period +TBILLEQ = SSVXEKV ## Returnerar avkastningen motsvarande en obligation för en statsskuldväxel +TBILLPRICE = SSVXPRIS ## Returnerar priset per 100 kr nominellt värde för en statsskuldväxel +TBILLYIELD = SSVXRÄNTA ## Returnerar avkastningen för en statsskuldväxel +VDB = VDEGRAVSKR ## Returnerar avskrivningen för en tillgÃ¥ng under en angiven period (med degressiv avskrivning) +XIRR = XIRR ## Returnerar internräntan för en serie betalningar som inte nödvändigtvis är periodiska +XNPV = XNUVÄRDE ## Returnerar det nuvarande nettovärdet för en serie betalningar som inte nödvändigtvis är periodiska +YIELD = NOMAVK ## Returnerar avkastningen för ett värdepapper som ger periodisk ränta +YIELDDISC = NOMAVKDISK ## Returnerar den Ã¥rliga avkastningen för diskonterade värdepapper, exempelvis en statsskuldväxel +YIELDMAT = NOMAVKFÖRF ## Returnerar den Ã¥rliga avkastningen för ett värdepapper som ger ränta pÃ¥ förfallodagen + + +## +## Information functions Informationsfunktioner +## +CELL = CELL ## Returnerar information om formatering, plats och innehÃ¥ll i en cell +ERROR.TYPE = FEL.TYP ## Returnerar ett tal som motsvarar ett felvärde +INFO = INFO ## Returnerar information om operativsystemet +ISBLANK = ÄRREF ## Returnerar SANT om värdet är tomt +ISERR = Ä ## Returnerar SANT om värdet är ett felvärde annat än #SAKNAS! +ISERROR = ÄRFEL ## Returnerar SANT om värdet är ett felvärde +ISEVEN = ÄRJÄMN ## Returnerar SANT om talet är jämnt +ISLOGICAL = ÄREJTEXT ## Returnerar SANT om värdet är ett logiskt värde +ISNA = ÄRLOGISK ## Returnerar SANT om värdet är felvärdet #SAKNAS! +ISNONTEXT = ÄRSAKNAD ## Returnerar SANT om värdet inte är text +ISNUMBER = ÄRTAL ## Returnerar SANT om värdet är ett tal +ISODD = ÄRUDDA ## Returnerar SANT om talet är udda +ISREF = ÄRTOM ## Returnerar SANT om värdet är en referens +ISTEXT = ÄRTEXT ## Returnerar SANT om värdet är text +N = N ## Returnerar ett värde omvandlat till ett tal +NA = SAKNAS ## Returnerar felvärdet #SAKNAS! +TYPE = VÄRDETYP ## Returnerar ett tal som anger värdets datatyp + + +## +## Logical functions Logiska funktioner +## +AND = OCH ## Returnerar SANT om alla argument är sanna +FALSE = FALSKT ## Returnerar det logiska värdet FALSKT +IF = OM ## Anger vilket logiskt test som ska utföras +IFERROR = OMFEL ## Returnerar ett värde som du anger om en formel utvärderar till ett fel; annars returneras resultatet av formeln +NOT = ICKE ## Inverterar logiken för argumenten +OR = ELLER ## Returnerar SANT om nÃ¥got argument är SANT +TRUE = SANT ## Returnerar det logiska värdet SANT + + +## +## Lookup and reference functions Sök- och referensfunktioner +## +ADDRESS = ADRESS ## Returnerar en referens som text till en enstaka cell i ett kalkylblad +AREAS = OMRÃ…DEN ## Returnerar antalet omrÃ¥den i en referens +CHOOSE = VÄLJ ## Väljer ett värde i en lista över värden +COLUMN = KOLUMN ## Returnerar kolumnnumret för en referens +COLUMNS = KOLUMNER ## Returnerar antalet kolumner i en referens +HLOOKUP = LETAKOLUMN ## Söker i den översta raden i en matris och returnerar värdet för angiven cell +HYPERLINK = HYPERLÄNK ## Skapar en genväg eller ett hopp till ett dokument i nätverket, i ett intranät eller pÃ¥ Internet +INDEX = INDEX ## Använder ett index för ett välja ett värde i en referens eller matris +INDIRECT = INDIREKT ## Returnerar en referens som anges av ett textvärde +LOOKUP = LETAUPP ## Letar upp värden i en vektor eller matris +MATCH = PASSA ## Letar upp värden i en referens eller matris +OFFSET = FÖRSKJUTNING ## Returnerar en referens förskjuten i förhÃ¥llande till en given referens +ROW = RAD ## Returnerar radnumret för en referens +ROWS = RADER ## Returnerar antalet rader i en referens +RTD = RTD ## Hämtar realtidsdata frÃ¥n ett program som stöder COM-automation (Automation: Ett sätt att arbeta med ett programs objekt frÃ¥n ett annat program eller utvecklingsverktyg. Detta kallades tidigare för OLE Automation, och är en branschstandard och ingÃ¥r i Component Object Model (COM).) +TRANSPOSE = TRANSPONERA ## Transponerar en matris +VLOOKUP = LETARAD ## Letar i den första kolumnen i en matris och flyttar över raden för att returnera värdet för en cell + + +## +## Math and trigonometry functions Matematiska och trigonometriska funktioner +## +ABS = ABS ## Returnerar absolutvärdet av ett tal +ACOS = ARCCOS ## Returnerar arcus cosinus för ett tal +ACOSH = ARCCOSH ## Returnerar inverterad hyperbolisk cosinus för ett tal +ASIN = ARCSIN ## Returnerar arcus cosinus för ett tal +ASINH = ARCSINH ## Returnerar hyperbolisk arcus sinus för ett tal +ATAN = ARCTAN ## Returnerar arcus tangens för ett tal +ATAN2 = ARCTAN2 ## Returnerar arcus tangens för en x- och en y- koordinat +ATANH = ARCTANH ## Returnerar hyperbolisk arcus tangens för ett tal +CEILING = RUNDA.UPP ## Avrundar ett tal till närmaste heltal eller närmaste signifikanta multipel +COMBIN = KOMBIN ## Returnerar antalet kombinationer för ett givet antal objekt +COS = COS ## Returnerar cosinus för ett tal +COSH = COSH ## Returnerar hyperboliskt cosinus för ett tal +DEGREES = GRADER ## Omvandlar radianer till grader +EVEN = JÄMN ## Avrundar ett tal uppÃ¥t till närmaste heltal +EXP = EXP ## Returnerar e upphöjt till ett givet tal +FACT = FAKULTET ## Returnerar fakulteten för ett tal +FACTDOUBLE = DUBBELFAKULTET ## Returnerar dubbelfakulteten för ett tal +FLOOR = RUNDA.NED ## Avrundar ett tal nedÃ¥t mot noll +GCD = SGD ## Returnerar den största gemensamma nämnaren +INT = HELTAL ## Avrundar ett tal nedÃ¥t till närmaste heltal +LCM = MGM ## Returnerar den minsta gemensamma multipeln +LN = LN ## Returnerar den naturliga logaritmen för ett tal +LOG = LOG ## Returnerar logaritmen för ett tal för en given bas +LOG10 = LOG10 ## Returnerar 10-logaritmen för ett tal +MDETERM = MDETERM ## Returnerar matrisen som är avgörandet av en matris +MINVERSE = MINVERT ## Returnerar matrisinversen av en matris +MMULT = MMULT ## Returnerar matrisprodukten av tvÃ¥ matriser +MOD = REST ## Returnerar resten vid en division +MROUND = MAVRUNDA ## Returnerar ett tal avrundat till en given multipel +MULTINOMIAL = MULTINOMIAL ## Returnerar multinomialen för en uppsättning tal +ODD = UDDA ## Avrundar ett tal uppÃ¥t till närmaste udda heltal +PI = PI ## Returnerar värdet pi +POWER = UPPHÖJT.TILL ## Returnerar resultatet av ett tal upphöjt till en exponent +PRODUCT = PRODUKT ## Multiplicerar argumenten +QUOTIENT = KVOT ## Returnerar heltalsdelen av en division +RADIANS = RADIANER ## Omvandlar grader till radianer +RAND = SLUMP ## Returnerar ett slumptal mellan 0 och 1 +RANDBETWEEN = SLUMP.MELLAN ## Returnerar ett slumptal mellan de tal som du anger +ROMAN = ROMERSK ## Omvandlar vanliga (arabiska) siffror till romerska som text +ROUND = AVRUNDA ## Avrundar ett tal till ett angivet antal siffror +ROUNDDOWN = AVRUNDA.NEDÃ…T ## Avrundar ett tal nedÃ¥t mot noll +ROUNDUP = AVRUNDA.UPPÃ…T ## Avrundar ett tal uppÃ¥t, frÃ¥n noll +SERIESSUM = SERIESUMMA ## Returnerar summan av en potensserie baserat pÃ¥ formeln +SIGN = TECKEN ## Returnerar tecknet för ett tal +SIN = SIN ## Returnerar sinus för en given vinkel +SINH = SINH ## Returnerar hyperbolisk sinus för ett tal +SQRT = ROT ## Returnerar den positiva kvadratroten +SQRTPI = ROTPI ## Returnerar kvadratroten för (tal * pi) +SUBTOTAL = DELSUMMA ## Returnerar en delsumma i en lista eller databas +SUM = SUMMA ## Summerar argumenten +SUMIF = SUMMA.OM ## Summerar celler enligt ett angivet villkor +SUMIFS = SUMMA.OMF ## Lägger till cellerna i ett omrÃ¥de som uppfyller flera kriterier +SUMPRODUCT = PRODUKTSUMMA ## Returnerar summan av produkterna i motsvarande matriskomponenter +SUMSQ = KVADRATSUMMA ## Returnerar summan av argumentens kvadrater +SUMX2MY2 = SUMMAX2MY2 ## Returnerar summan av differensen mellan kvadraterna för motsvarande värden i tvÃ¥ matriser +SUMX2PY2 = SUMMAX2PY2 ## Returnerar summan av summan av kvadraterna av motsvarande värden i tvÃ¥ matriser +SUMXMY2 = SUMMAXMY2 ## Returnerar summan av kvadraten av skillnaden mellan motsvarande värden i tvÃ¥ matriser +TAN = TAN ## Returnerar tangens för ett tal +TANH = TANH ## Returnerar hyperbolisk tangens för ett tal +TRUNC = AVKORTA ## Avkortar ett tal till ett heltal + + +## +## Statistical functions Statistiska funktioner +## +AVEDEV = MEDELAVV ## Returnerar medelvärdet för datapunkters absoluta avvikelse frÃ¥n deras medelvärde +AVERAGE = MEDEL ## Returnerar medelvärdet av argumenten +AVERAGEA = AVERAGEA ## Returnerar medelvärdet av argumenten, inklusive tal, text och logiska värden +AVERAGEIF = MEDELOM ## Returnerar medelvärdet (aritmetiskt medelvärde) för alla celler i ett omrÃ¥de som uppfyller ett givet kriterium +AVERAGEIFS = MEDELOMF ## Returnerar medelvärdet (det aritmetiska medelvärdet) för alla celler som uppfyller flera villkor. +BETADIST = BETAFÖRD ## Returnerar den kumulativa betafördelningsfunktionen +BETAINV = BETAINV ## Returnerar inversen till den kumulativa fördelningsfunktionen för en viss betafördelning +BINOMDIST = BINOMFÖRD ## Returnerar den individuella binomialfördelningen +CHIDIST = CHI2FÖRD ## Returnerar den ensidiga sannolikheten av c2-fördelningen +CHIINV = CHI2INV ## Returnerar inversen av chi2-fördelningen +CHITEST = CHI2TEST ## Returnerar oberoendetesten +CONFIDENCE = KONFIDENS ## Returnerar konfidensintervallet för en populations medelvärde +CORREL = KORREL ## Returnerar korrelationskoefficienten mellan tvÃ¥ datamängder +COUNT = ANTAL ## Räknar hur mÃ¥nga tal som finns bland argumenten +COUNTA = ANTALV ## Räknar hur mÃ¥nga värden som finns bland argumenten +COUNTBLANK = ANTAL.TOMMA ## Räknar antalet tomma celler i ett omrÃ¥de +COUNTIF = ANTAL.OM ## Räknar antalet celler i ett omrÃ¥de som uppfyller angivna villkor. +COUNTIFS = ANTAL.OMF ## Räknar antalet celler i ett omrÃ¥de som uppfyller flera villkor. +COVAR = KOVAR ## Returnerar kovariansen, d.v.s. medelvärdet av produkterna för parade avvikelser +CRITBINOM = KRITBINOM ## Returnerar det minsta värdet för vilket den kumulativa binomialfördelningen är mindre än eller lika med ett villkorsvärde +DEVSQ = KVADAVV ## Returnerar summan av kvadrater pÃ¥ avvikelser +EXPONDIST = EXPONFÖRD ## Returnerar exponentialfördelningen +FDIST = FFÖRD ## Returnerar F-sannolikhetsfördelningen +FINV = FINV ## Returnerar inversen till F-sannolikhetsfördelningen +FISHER = FISHER ## Returnerar Fisher-transformationen +FISHERINV = FISHERINV ## Returnerar inversen till Fisher-transformationen +FORECAST = PREDIKTION ## Returnerar ett värde längs en linjär trendlinje +FREQUENCY = FREKVENS ## Returnerar en frekvensfördelning som en lodrät matris +FTEST = FTEST ## Returnerar resultatet av en F-test +GAMMADIST = GAMMAFÖRD ## Returnerar gammafördelningen +GAMMAINV = GAMMAINV ## Returnerar inversen till den kumulativa gammafördelningen +GAMMALN = GAMMALN ## Returnerar den naturliga logaritmen för gammafunktionen, G(x) +GEOMEAN = GEOMEDEL ## Returnerar det geometriska medelvärdet +GROWTH = EXPTREND ## Returnerar värden längs en exponentiell trend +HARMEAN = HARMMEDEL ## Returnerar det harmoniska medelvärdet +HYPGEOMDIST = HYPGEOMFÖRD ## Returnerar den hypergeometriska fördelningen +INTERCEPT = SKÄRNINGSPUNKT ## Returnerar skärningspunkten för en linjär regressionslinje +KURT = TOPPIGHET ## Returnerar toppigheten av en mängd data +LARGE = STÖRSTA ## Returnerar det n:te största värdet i en mängd data +LINEST = REGR ## Returnerar parametrar till en linjär trendlinje +LOGEST = EXPREGR ## Returnerar parametrarna i en exponentiell trend +LOGINV = LOGINV ## Returnerar inversen till den lognormala fördelningen +LOGNORMDIST = LOGNORMFÖRD ## Returnerar den kumulativa lognormala fördelningen +MAX = MAX ## Returnerar det största värdet i en lista av argument +MAXA = MAXA ## Returnerar det största värdet i en lista av argument, inklusive tal, text och logiska värden +MEDIAN = MEDIAN ## Returnerar medianen för angivna tal +MIN = MIN ## Returnerar det minsta värdet i en lista med argument +MINA = MINA ## Returnerar det minsta värdet i en lista över argument, inklusive tal, text och logiska värden +MODE = TYPVÄRDE ## Returnerar det vanligaste värdet i en datamängd +NEGBINOMDIST = NEGBINOMFÖRD ## Returnerar den negativa binomialfördelningen +NORMDIST = NORMFÖRD ## Returnerar den kumulativa normalfördelningen +NORMINV = NORMINV ## Returnerar inversen till den kumulativa normalfördelningen +NORMSDIST = NORMSFÖRD ## Returnerar den kumulativa standardnormalfördelningen +NORMSINV = NORMSINV ## Returnerar inversen till den kumulativa standardnormalfördelningen +PEARSON = PEARSON ## Returnerar korrelationskoefficienten till Pearsons momentprodukt +PERCENTILE = PERCENTIL ## Returnerar den n:te percentilen av värden i ett omrÃ¥de +PERCENTRANK = PROCENTRANG ## Returnerar procentrangen för ett värde i en datamängd +PERMUT = PERMUT ## Returnerar antal permutationer för ett givet antal objekt +POISSON = POISSON ## Returnerar Poisson-fördelningen +PROB = SANNOLIKHET ## Returnerar sannolikheten att värden i ett omrÃ¥de ligger mellan tvÃ¥ gränser +QUARTILE = KVARTIL ## Returnerar kvartilen av en mängd data +RANK = RANG ## Returnerar rangordningen för ett tal i en lista med tal +RSQ = RKV ## Returnerar kvadraten av Pearsons produktmomentkorrelationskoefficient +SKEW = SNEDHET ## Returnerar snedheten för en fördelning +SLOPE = LUTNING ## Returnerar lutningen pÃ¥ en linjär regressionslinje +SMALL = MINSTA ## Returnerar det n:te minsta värdet i en mängd data +STANDARDIZE = STANDARDISERA ## Returnerar ett normaliserat värde +STDEV = STDAV ## Uppskattar standardavvikelsen baserat pÃ¥ ett urval +STDEVA = STDEVA ## Uppskattar standardavvikelsen baserat pÃ¥ ett urval, inklusive tal, text och logiska värden +STDEVP = STDAVP ## Beräknar standardavvikelsen baserat pÃ¥ hela populationen +STDEVPA = STDEVPA ## Beräknar standardavvikelsen baserat pÃ¥ hela populationen, inklusive tal, text och logiska värden +STEYX = STDFELYX ## Returnerar standardfelet för ett förutspÃ¥tt y-värde för varje x-värde i regressionen +TDIST = TFÖRD ## Returnerar Students t-fördelning +TINV = TINV ## Returnerar inversen till Students t-fördelning +TREND = TREND ## Returnerar värden längs en linjär trend +TRIMMEAN = TRIMMEDEL ## Returnerar medelvärdet av mittpunkterna i en datamängd +TTEST = TTEST ## Returnerar sannolikheten beräknad ur Students t-test +VAR = VARIANS ## Uppskattar variansen baserat pÃ¥ ett urval +VARA = VARA ## Uppskattar variansen baserat pÃ¥ ett urval, inklusive tal, text och logiska värden +VARP = VARIANSP ## Beräknar variansen baserat pÃ¥ hela populationen +VARPA = VARPA ## Beräknar variansen baserat pÃ¥ hela populationen, inklusive tal, text och logiska värden +WEIBULL = WEIBULL ## Returnerar Weibull-fördelningen +ZTEST = ZTEST ## Returnerar det ensidiga sannolikhetsvärdet av ett z-test + + +## +## Text functions Textfunktioner +## +ASC = ASC ## Ändrar helbredds (dubbel byte) engelska bokstäver eller katakana inom en teckensträng till tecken med halvt breddsteg (enkel byte) +BAHTTEXT = BAHTTEXT ## Omvandlar ett tal till text med valutaformatet ß (baht) +CHAR = TECKENKOD ## Returnerar tecknet som anges av kod +CLEAN = STÄDA ## Tar bort alla icke utskrivbara tecken i en text +CODE = KOD ## Returnerar en numerisk kod för det första tecknet i en textsträng +CONCATENATE = SAMMANFOGA ## Sammanfogar flera textdelar till en textsträng +DOLLAR = VALUTA ## Omvandlar ett tal till text med valutaformat +EXACT = EXAKT ## Kontrollerar om tvÃ¥ textvärden är identiska +FIND = HITTA ## Hittar en text i en annan (skiljer pÃ¥ gemener och versaler) +FINDB = HITTAB ## Hittar en text i en annan (skiljer pÃ¥ gemener och versaler) +FIXED = FASTTAL ## Formaterar ett tal som text med ett fast antal decimaler +JIS = JIS ## Ändrar halvbredds (enkel byte) engelska bokstäver eller katakana inom en teckensträng till tecken med helt breddsteg (dubbel byte) +LEFT = VÄNSTER ## Returnerar tecken längst till vänster i en sträng +LEFTB = VÄNSTERB ## Returnerar tecken längst till vänster i en sträng +LEN = LÄNGD ## Returnerar antalet tecken i en textsträng +LENB = LÄNGDB ## Returnerar antalet tecken i en textsträng +LOWER = GEMENER ## Omvandlar text till gemener +MID = EXTEXT ## Returnerar angivet antal tecken frÃ¥n en text med början vid den position som du anger +MIDB = EXTEXTB ## Returnerar angivet antal tecken frÃ¥n en text med början vid den position som du anger +PHONETIC = PHONETIC ## Returnerar de fonetiska (furigana) tecknen i en textsträng +PROPER = INITIAL ## Ändrar första bokstaven i varje ord i ett textvärde till versal +REPLACE = ERSÄTT ## Ersätter tecken i text +REPLACEB = ERSÄTTB ## Ersätter tecken i text +REPT = REP ## Upprepar en text ett bestämt antal gÃ¥nger +RIGHT = HÖGER ## Returnerar tecken längst till höger i en sträng +RIGHTB = HÖGERB ## Returnerar tecken längst till höger i en sträng +SEARCH = SÖK ## Hittar ett textvärde i ett annat (skiljer inte pÃ¥ gemener och versaler) +SEARCHB = SÖKB ## Hittar ett textvärde i ett annat (skiljer inte pÃ¥ gemener och versaler) +SUBSTITUTE = BYT.UT ## Ersätter gammal text med ny text i en textsträng +T = T ## Omvandlar argumenten till text +TEXT = TEXT ## Formaterar ett tal och omvandlar det till text +TRIM = RENSA ## Tar bort blanksteg frÃ¥n text +UPPER = VERSALER ## Omvandlar text till versaler +VALUE = TEXTNUM ## Omvandlar ett textargument till ett tal diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/tr/config b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/tr/config new file mode 100644 index 0000000..b69d425 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/tr/config @@ -0,0 +1,47 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Settings +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = YTL + + +## +## Excel Error Codes (For future use) +## +NULL = #BOÅž! +DIV0 = #SAYI/0! +VALUE = #DEÄžER! +REF = #BAÅžV! +NAME = #AD? +NUM = #SAYI! +NA = #YOK diff --git a/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/tr/functions b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/tr/functions new file mode 100644 index 0000000..45d7df1 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/tr/functions @@ -0,0 +1,438 @@ +## +## PHPExcel +## +## Copyright (c) 2006 - 2013 PHPExcel +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +## +## @category PHPExcel +## @package PHPExcel_Calculation +## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +## @version ##VERSION##, ##DATE## +## +## Data in this file derived from http://www.piuha.fi/excel-function-name-translation/ +## +## + + +## +## Add-in and Automation functions Eklenti ve Otomasyon fonksiyonları +## +GETPIVOTDATA = ÖZETVERİAL ## Bir Özet Tablo raporunda saklanan verileri verir. + + +## +## Cube functions Küp iÅŸlevleri +## +CUBEKPIMEMBER = KÜPKPIÜYE ## Kilit performans göstergesi (KPI-Key Performance Indicator) adını, özelliÄŸini ve ölçüsünü verir ve hücredeki ad ve özelliÄŸi gösterir. KPI, bir kurumun performansını izlemek için kullanılan aylık brüt kâr ya da üç aylık çalışan giriÅŸ çıkışları gibi ölçülebilen bir birimdir. +CUBEMEMBER = KÜPÜYE ## Bir küp hiyerarÅŸisinde bir üyeyi veya kaydı verir. Üye veya kaydın küpte varolduÄŸunu doÄŸrulamak için kullanılır. +CUBEMEMBERPROPERTY = KÜPÜYEÖZELLİĞİ ## Bir küpte bir üyenin özelliÄŸinin deÄŸerini verir. Küp içinde üye adının varlığını doÄŸrulamak ve bu üyenin belli özelliklerini getirmek için kullanılır. +CUBERANKEDMEMBER = KÜPÜYESIRASI ## Bir küme içindeki üyenin derecesini veya kaçıncı olduÄŸunu verir. En iyi satış elemanı, veya en iyi on öğrenci gibi bir kümedeki bir veya daha fazla öğeyi getirmek için kullanılır. +CUBESET = KÜPKÜME ## Kümeyi oluÅŸturan ve ardından bu kümeyi Microsoft Office Excel'e getiren sunucudaki küpe küme ifadelerini göndererek hesaplanan üye veya kayıt kümesini tanımlar. +CUBESETCOUNT = KÜPKÜMESAY ## Bir kümedeki öğelerin sayısını getirir. +CUBEVALUE = KÜPDEÄžER ## Bir küpten toplam deÄŸeri getirir. + + +## +## Database functions Veritabanı iÅŸlevleri +## +DAVERAGE = VSEÇORT ## Seçili veritabanı girdilerinin ortalamasını verir. +DCOUNT = VSEÇSAY ## Veritabanında sayı içeren hücre sayısını hesaplar. +DCOUNTA = VSEÇSAYDOLU ## Veritabanındaki boÅŸ olmayan hücreleri sayar. +DGET = VAL ## Veritabanından, belirtilen ölçütlerle eÅŸleÅŸen tek bir rapor çıkarır. +DMAX = VSEÇMAK ## Seçili veritabanı giriÅŸlerinin en yüksek deÄŸerini verir. +DMIN = VSEÇMİN ## Seçili veritabanı giriÅŸlerinin en düşük deÄŸerini verir. +DPRODUCT = VSEÇÇARP ## Kayıtların belli bir alanında bulunan, bir veritabanındaki ölçütlerle eÅŸleÅŸen deÄŸerleri çarpar. +DSTDEV = VSEÇSTDSAPMA ## Seçili veritabanı giriÅŸlerinden oluÅŸan bir örneÄŸe dayanarak, standart sapmayı tahmin eder. +DSTDEVP = VSEÇSTDSAPMAS ## Standart sapmayı, seçili veritabanı giriÅŸlerinin tüm popülasyonunu esas alarak hesaplar. +DSUM = VSEÇTOPLA ## Kayıtların alan sütununda bulunan, ölçütle eÅŸleÅŸen sayıları toplar. +DVAR = VSEÇVAR ## Seçili veritabanı giriÅŸlerinden oluÅŸan bir örneÄŸi esas alarak farkı tahmin eder. +DVARP = VSEÇVARS ## Seçili veritabanı giriÅŸlerinin tüm popülasyonunu esas alarak farkı hesaplar. + + +## +## Date and time functions Tarih ve saat iÅŸlevleri +## +DATE = TARİH ## Belirli bir tarihin seri numarasını verir. +DATEVALUE = TARİHSAYISI ## Metin biçimindeki bir tarihi seri numarasına dönüştürür. +DAY = GÜN ## Seri numarasını, ayın bir gününe dönüştürür. +DAYS360 = GÜN360 ## İki tarih arasındaki gün sayısını, 360 günlük yılı esas alarak hesaplar. +EDATE = SERİTARİH ## BaÅŸlangıç tarihinden itibaren, belirtilen ay sayısından önce veya sonraki tarihin seri numarasını verir. +EOMONTH = SERİAY ## Belirtilen sayıda ay önce veya sonraki ayın son gününün seri numarasını verir. +HOUR = SAAT ## Bir seri numarasını saate dönüştürür. +MINUTE = DAKİKA ## Bir seri numarasını dakikaya dönüştürür. +MONTH = AY ## Bir seri numarasını aya dönüştürür. +NETWORKDAYS = TAMİŞGÜNÜ ## İki tarih arasındaki tam çalışma günlerinin sayısını verir. +NOW = ŞİMDİ ## Geçerli tarihin ve saatin seri numarasını verir. +SECOND = SANİYE ## Bir seri numarasını saniyeye dönüştürür. +TIME = ZAMAN ## Belirli bir zamanın seri numarasını verir. +TIMEVALUE = ZAMANSAYISI ## Metin biçimindeki zamanı seri numarasına dönüştürür. +TODAY = BUGÜN ## Bugünün tarihini seri numarasına dönüştürür. +WEEKDAY = HAFTANINGÜNÜ ## Bir seri numarasını, haftanın gününe dönüştürür. +WEEKNUM = HAFTASAY ## Dizisel deÄŸerini, haftanın yıl içinde bulunduÄŸu konumu sayısal olarak gösteren sayıya dönüştürür. +WORKDAY = İŞGÜNÜ ## Belirtilen sayıda çalışma günü öncesinin ya da sonrasının tarihinin seri numarasını verir. +YEAR = YIL ## Bir seri numarasını yıla dönüştürür. +YEARFRAC = YILORAN ## BaÅŸlangıç_tarihi ve bitiÅŸ_tarihi arasındaki tam günleri gösteren yıl kesrini verir. + + +## +## Engineering functions Mühendislik iÅŸlevleri +## +BESSELI = BESSELI ## DeÄŸiÅŸtirilmiÅŸ Bessel fonksiyonu In(x)'i verir. +BESSELJ = BESSELJ ## Bessel fonksiyonu Jn(x)'i verir. +BESSELK = BESSELK ## DeÄŸiÅŸtirilmiÅŸ Bessel fonksiyonu Kn(x)'i verir. +BESSELY = BESSELY ## Bessel fonksiyonu Yn(x)'i verir. +BIN2DEC = BIN2DEC ## İkili bir sayıyı, ondalık sayıya dönüştürür. +BIN2HEX = BIN2HEX ## İkili bir sayıyı, onaltılıya dönüştürür. +BIN2OCT = BIN2OCT ## İkili bir sayıyı, sekizliye dönüştürür. +COMPLEX = KARMAÅžIK ## Gerçek ve sanal katsayıları, karmaşık sayıya dönüştürür. +CONVERT = ÇEVİR ## Bir sayıyı, bir ölçüm sisteminden bir baÅŸka ölçüm sistemine dönüştürür. +DEC2BIN = DEC2BIN ## Ondalık bir sayıyı, ikiliye dönüştürür. +DEC2HEX = DEC2HEX ## Ondalık bir sayıyı, onaltılıya dönüştürür. +DEC2OCT = DEC2OCT ## Ondalık bir sayıyı sekizliÄŸe dönüştürür. +DELTA = DELTA ## İki deÄŸerin eÅŸit olup olmadığını sınar. +ERF = HATAİŞLEV ## Hata iÅŸlevini verir. +ERFC = TÜMHATAİŞLEV ## Tümleyici hata iÅŸlevini verir. +GESTEP = BESINIR ## Bir sayının eÅŸik deÄŸerinden büyük olup olmadığını sınar. +HEX2BIN = HEX2BIN ## Onaltılı bir sayıyı ikiliye dönüştürür. +HEX2DEC = HEX2DEC ## Onaltılı bir sayıyı ondalığa dönüştürür. +HEX2OCT = HEX2OCT ## Onaltılı bir sayıyı sekizliÄŸe dönüştürür. +IMABS = SANMUTLAK ## Karmaşık bir sayının mutlak deÄŸerini (modül) verir. +IMAGINARY = SANAL ## Karmaşık bir sayının sanal katsayısını verir. +IMARGUMENT = SANBAÄž_DEĞİŞKEN ## Radyanlarla belirtilen bir açı olan teta bağımsız deÄŸiÅŸkenini verir. +IMCONJUGATE = SANEÅžLENEK ## Karmaşık bir sayının karmaşık eÅŸleniÄŸini verir. +IMCOS = SANCOS ## Karmaşık bir sayının kosinüsünü verir. +IMDIV = SANBÖL ## İki karmaşık sayının bölümünü verir. +IMEXP = SANÜS ## Karmaşık bir sayının üssünü verir. +IMLN = SANLN ## Karmaşık bir sayının doÄŸal logaritmasını verir. +IMLOG10 = SANLOG10 ## Karmaşık bir sayının, 10 tabanında logaritmasını verir. +IMLOG2 = SANLOG2 ## Karmaşık bir sayının 2 tabanında logaritmasını verir. +IMPOWER = SANÜSSÜ ## Karmaşık bir sayıyı, bir tamsayı üssüne yükseltilmiÅŸ olarak verir. +IMPRODUCT = SANÇARP ## Karmaşık sayıların çarpımını verir. +IMREAL = SANGERÇEK ## Karmaşık bir sayının, gerçek katsayısını verir. +IMSIN = SANSIN ## Karmaşık bir sayının sinüsünü verir. +IMSQRT = SANKAREKÖK ## Karmaşık bir sayının karekökünü verir. +IMSUB = SANÇIKAR ## İki karmaşık sayının farkını verir. +IMSUM = SANTOPLA ## Karmaşık sayıların toplamını verir. +OCT2BIN = OCT2BIN ## Sekizli bir sayıyı ikiliye dönüştürür. +OCT2DEC = OCT2DEC ## Sekizli bir sayıyı ondalığa dönüştürür. +OCT2HEX = OCT2HEX ## Sekizli bir sayıyı onaltılıya dönüştürür. + + +## +## Financial functions Finansal fonksiyonlar +## +ACCRINT = GERÇEKFAİZ ## Dönemsel faiz ödeyen hisse senedine iliÅŸkin tahakkuk eden faizi getirir. +ACCRINTM = GERÇEKFAİZV ## Vadesinde ödeme yapan bir tahvilin tahakkuk etmiÅŸ faizini verir. +AMORDEGRC = AMORDEGRC ## Yıpranma katsayısı kullanarak her hesap döneminin deÄŸer kaybını verir. +AMORLINC = AMORLINC ## Her hesap dönemi içindeki yıpranmayı verir. +COUPDAYBS = KUPONGÜNBD ## Kupon süresinin baÅŸlangıcından alış tarihine kadar olan süredeki gün sayısını verir. +COUPDAYS = KUPONGÜN ## Kupon süresindeki, gün sayısını, alış tarihini de içermek üzere, verir. +COUPDAYSNC = KUPONGÜNDSK ## Alış tarihinden bir sonraki kupon tarihine kadar olan gün sayısını verir. +COUPNCD = KUPONGÜNSKT ## Alış tarihinden bir sonraki kupon tarihini verir. +COUPNUM = KUPONSAYI ## Alış tarihiyle vade tarihi arasında ödenecek kuponların sayısını verir. +COUPPCD = KUPONGÜNÖKT ## Alış tarihinden bir önceki kupon tarihini verir. +CUMIPMT = AİÇVERİMORANI ## İki dönem arasında ödenen kümülatif faizi verir. +CUMPRINC = ANA_PARA_ÖDEMESİ ## İki dönem arasında bir borç üzerine ödenen birikimli temeli verir. +DB = AZALANBAKİYE ## Bir malın belirtilen bir süre içindeki yıpranmasını, sabit azalan bakiye yöntemini kullanarak verir. +DDB = ÇİFTAZALANBAKİYE ## Bir malın belirtilen bir süre içindeki yıpranmasını, çift azalan bakiye yöntemi ya da sizin belirttiÄŸiniz baÅŸka bir yöntemi kullanarak verir. +DISC = İNDİRİM ## Bir tahvilin indirim oranını verir. +DOLLARDE = LİRAON ## Kesir olarak tanımlanmış lira fiyatını, ondalık sayı olarak tanımlanmış lira fiyatına dönüştürür. +DOLLARFR = LİRAKES ## Ondalık sayı olarak tanımlanmış lira fiyatını, kesir olarak tanımlanmış lira fiyatına dönüştürür. +DURATION = SÜRE ## Belli aralıklarla faiz ödemesi yapan bir tahvilin yıllık süresini verir. +EFFECT = ETKİN ## Efektif yıllık faiz oranını verir. +FV = ANBD ## Bir yatırımın gelecekteki deÄŸerini verir. +FVSCHEDULE = GDPROGRAM ## Bir seri birleÅŸik faiz oranı uyguladıktan sonra, bir baÅŸlangıçtaki anaparanın gelecekteki deÄŸerini verir. +INTRATE = FAİZORANI ## Tam olarak yatırım yapılmış bir tahvilin faiz oranını verir. +IPMT = FAİZTUTARI ## Bir yatırımın verilen bir süre için faiz ödemesini verir. +IRR = İÇ_VERİM_ORANI ## Bir para akışı serisi için, iç verim oranını verir. +ISPMT = ISPMT ## Yatırımın belirli bir dönemi boyunca ödenen faizi hesaplar. +MDURATION = MSÜRE ## Varsayılan par deÄŸeri 10.000.000 lira olan bir tahvil için Macauley deÄŸiÅŸtirilmiÅŸ süreyi verir. +MIRR = D_İÇ_VERİM_ORANI ## Pozitif ve negatif para akışlarının farklı oranlarda finanse edildiÄŸi durumlarda, iç verim oranını verir. +NOMINAL = NOMİNAL ## Yıllık nominal faiz oranını verir. +NPER = DÖNEM_SAYISI ## Bir yatırımın dönem sayısını verir. +NPV = NBD ## Bir yatırımın bugünkü net deÄŸerini, bir dönemsel para akışları serisine ve bir indirim oranına baÄŸlı olarak verir. +ODDFPRICE = TEKYDEÄžER ## Tek bir ilk dönemi olan bir tahvilin deÄŸerini, her 100.000.000 lirada bir verir. +ODDFYIELD = TEKYÖDEME ## Tek bir ilk dönemi olan bir tahvilin ödemesini verir. +ODDLPRICE = TEKSDEÄžER ## Tek bir son dönemi olan bir tahvilin fiyatını her 10.000.000 lirada bir verir. +ODDLYIELD = TEKSÖDEME ## Tek bir son dönemi olan bir tahvilin ödemesini verir. +PMT = DEVRESEL_ÖDEME ## Bir yıllık dönemsel ödemeyi verir. +PPMT = ANA_PARA_ÖDEMESİ ## Verilen bir süre için, bir yatırımın anaparasına dayanan ödemeyi verir. +PRICE = DEÄžER ## Dönemsel faiz ödeyen bir tahvilin fiyatını 10.000.00 liralık deÄŸer başına verir. +PRICEDISC = DEÄžERİND ## İndirimli bir tahvilin fiyatını 10.000.000 liralık nominal deÄŸer başına verir. +PRICEMAT = DEÄžERVADE ## Faizini vade sonunda ödeyen bir tahvilin fiyatını 10.000.000 nominal deÄŸer başına verir. +PV = BD ## Bir yatırımın bugünkü deÄŸerini verir. +RATE = FAİZ_ORANI ## Bir yıllık dönem başına düşen faiz oranını verir. +RECEIVED = GETİRİ ## Tam olarak yatırılmış bir tahvilin vadesinin bitiminde alınan miktarı verir. +SLN = DA ## Bir malın bir dönem içindeki doÄŸrusal yıpranmasını verir. +SYD = YAT ## Bir malın belirli bir dönem için olan amortismanını verir. +TBILLEQ = HTAHEÅž ## Bir Hazine bonosunun bono eÅŸdeÄŸeri ödemesini verir. +TBILLPRICE = HTAHDEÄžER ## Bir Hazine bonosunun deÄŸerini, 10.000.000 liralık nominal deÄŸer başına verir. +TBILLYIELD = HTAHÖDEME ## Bir Hazine bonosunun ödemesini verir. +VDB = DAB ## Bir malın amortismanını, belirlenmiÅŸ ya da kısmi bir dönem için, bir azalan bakiye yöntemi kullanarak verir. +XIRR = AİÇVERİMORANI ## Dönemsel olması gerekmeyen bir para akışları programı için, iç verim oranını verir. +XNPV = ANBD ## Dönemsel olması gerekmeyen bir para akışları programı için, bugünkü net deÄŸeri verir. +YIELD = ÖDEME ## Belirli aralıklarla faiz ödeyen bir tahvilin ödemesini verir. +YIELDDISC = ÖDEMEİND ## İndirimli bir tahvilin yıllık ödemesini verir; örneÄŸin, bir Hazine bonosunun. +YIELDMAT = ÖDEMEVADE ## Vadesinin bitiminde faiz ödeyen bir tahvilin yıllık ödemesini verir. + + +## +## Information functions Bilgi fonksiyonları +## +CELL = HÜCRE ## Bir hücrenin biçimlendirmesi, konumu ya da içeriÄŸi hakkında bilgi verir. +ERROR.TYPE = HATA.TİPİ ## Bir hata türüne iliÅŸkin sayıları verir. +INFO = BİLGİ ## Geçerli iÅŸletim ortamı hakkında bilgi verir. +ISBLANK = EBOÅžSA ## DeÄŸer boÅŸsa, DOÄžRU verir. +ISERR = EHATA ## DeÄŸer, #YOK dışındaki bir hata deÄŸeriyse, DOÄžRU verir. +ISERROR = EHATALIYSA ## DeÄŸer, herhangi bir hata deÄŸeriyse, DOÄžRU verir. +ISEVEN = ÇİFTTİR ## Sayı çiftse, DOÄžRU verir. +ISLOGICAL = EMANTIKSALSA ## DeÄŸer, mantıksal bir deÄŸerse, DOÄžRU verir. +ISNA = EYOKSA ## DeÄŸer, #YOK hata deÄŸeriyse, DOÄžRU verir. +ISNONTEXT = EMETİNDEĞİLSE ## DeÄŸer, metin deÄŸilse, DOÄžRU verir. +ISNUMBER = ESAYIYSA ## DeÄŸer, bir sayıysa, DOÄžRU verir. +ISODD = TEKTİR ## Sayı tekse, DOÄžRU verir. +ISREF = EREFSE ## DeÄŸer bir baÅŸvuruysa, DOÄžRU verir. +ISTEXT = EMETİNSE ## DeÄŸer bir metinse DOÄžRU verir. +N = N ## Sayıya dönüştürülmüş bir deÄŸer verir. +NA = YOKSAY ## #YOK hata deÄŸerini verir. +TYPE = TİP ## Bir deÄŸerin veri türünü belirten bir sayı verir. + + +## +## Logical functions Mantıksal fonksiyonlar +## +AND = VE ## Bütün bağımsız deÄŸiÅŸkenleri DOÄžRU ise, DOÄžRU verir. +FALSE = YANLIÅž ## YANLIÅž mantıksal deÄŸerini verir. +IF = EÄžER ## GerçekleÅŸtirilecek bir mantıksal sınama belirtir. +IFERROR = EÄžERHATA ## Formül hatalıysa belirttiÄŸiniz deÄŸeri verir; bunun dışındaki durumlarda formülün sonucunu verir. +NOT = DEĞİL ## Bağımsız deÄŸiÅŸkeninin mantığını tersine çevirir. +OR = YADA ## Bağımsız deÄŸiÅŸkenlerden herhangi birisi DOÄžRU ise, DOÄžRU verir. +TRUE = DOÄžRU ## DOÄžRU mantıksal deÄŸerini verir. + + +## +## Lookup and reference functions Arama ve BaÅŸvuru fonksiyonları +## +ADDRESS = ADRES ## Bir baÅŸvuruyu, çalışma sayfasındaki tek bir hücreye metin olarak verir. +AREAS = ALANSAY ## Renvoie le nombre de zones dans une référence. +CHOOSE = ELEMAN ## DeÄŸerler listesinden bir deÄŸer seçer. +COLUMN = SÜTUN ## Bir baÅŸvurunun sütun sayısını verir. +COLUMNS = SÜTUNSAY ## Bir baÅŸvurudaki sütunların sayısını verir. +HLOOKUP = YATAYARA ## Bir dizinin en üst satırına bakar ve belirtilen hücrenin deÄŸerini verir. +HYPERLINK = KÖPRÜ ## Bir aÄŸ sunucusunda, bir intranette ya da Internet'te depolanan bir belgeyi açan bir kısayol ya da atlama oluÅŸturur. +INDEX = İNDİS ## BaÅŸvurudan veya diziden bir deÄŸer seçmek için, bir dizin kullanır. +INDIRECT = DOLAYLI ## Metin deÄŸeriyle belirtilen bir baÅŸvuru verir. +LOOKUP = ARA ## Bir vektördeki veya dizideki deÄŸerleri arar. +MATCH = KAÇINCI ## Bir baÅŸvurudaki veya dizideki deÄŸerleri arar. +OFFSET = KAYDIR ## Verilen bir baÅŸvurudan, bir baÅŸvuru kaydırmayı verir. +ROW = SATIR ## Bir baÅŸvurunun satır sayısını verir. +ROWS = SATIRSAY ## Bir baÅŸvurudaki satırların sayısını verir. +RTD = RTD ## COM otomasyonunu destekleyen programdan gerçek zaman verileri alır. +TRANSPOSE = DEVRİK_DÖNÜŞÜM ## Bir dizinin devrik dönüşümünü verir. +VLOOKUP = DÜŞEYARA ## Bir dizinin ilk sütununa bakar ve bir hücrenin deÄŸerini vermek için satır boyunca hareket eder. + + +## +## Math and trigonometry functions Matematik ve trigonometri fonksiyonları +## +ABS = MUTLAK ## Bir sayının mutlak deÄŸerini verir. +ACOS = ACOS ## Bir sayının ark kosinüsünü verir. +ACOSH = ACOSH ## Bir sayının ters hiperbolik kosinüsünü verir. +ASIN = ASİN ## Bir sayının ark sinüsünü verir. +ASINH = ASİNH ## Bir sayının ters hiperbolik sinüsünü verir. +ATAN = ATAN ## Bir sayının ark tanjantını verir. +ATAN2 = ATAN2 ## Ark tanjantı, x- ve y- koordinatlarından verir. +ATANH = ATANH ## Bir sayının ters hiperbolik tanjantını verir. +CEILING = TAVANAYUVARLA ## Bir sayıyı, en yakın tamsayıya ya da en yakın katına yuvarlar. +COMBIN = KOMBİNASYON ## Verilen sayıda öğenin kombinasyon sayısını verir. +COS = COS ## Bir sayının kosinüsünü verir. +COSH = COSH ## Bir sayının hiperbolik kosinüsünü verir. +DEGREES = DERECE ## Radyanları dereceye dönüştürür. +EVEN = ÇİFT ## Bir sayıyı, en yakın daha büyük çift tamsayıya yuvarlar. +EXP = ÜS ## e'yi, verilen bir sayının üssüne yükseltilmiÅŸ olarak verir. +FACT = ÇARPINIM ## Bir sayının faktörünü verir. +FACTDOUBLE = ÇİFTFAKTÖR ## Bir sayının çift çarpınımını verir. +FLOOR = TABANAYUVARLA ## Bir sayıyı, daha küçük sayıya, sıfıra yakınsayarak yuvarlar. +GCD = OBEB ## En büyük ortak böleni verir. +INT = TAMSAYI ## Bir sayıyı aÅŸağıya doÄŸru en yakın tamsayıya yuvarlar. +LCM = OKEK ## En küçük ortak katı verir. +LN = LN ## Bir sayının doÄŸal logaritmasını verir. +LOG = LOG ## Bir sayının, belirtilen bir tabandaki logaritmasını verir. +LOG10 = LOG10 ## Bir sayının 10 tabanında logaritmasını verir. +MDETERM = DETERMİNANT ## Bir dizinin dizey determinantını verir. +MINVERSE = DİZEY_TERS ## Bir dizinin dizey tersini verir. +MMULT = DÇARP ## İki dizinin dizey çarpımını verir. +MOD = MODÜLO ## Bölmeden kalanı verir. +MROUND = KYUVARLA ## İstenen kata yuvarlanmış bir sayı verir. +MULTINOMIAL = ÇOKTERİMLİ ## Bir sayılar kümesinin çok terimlisini verir. +ODD = TEK ## Bir sayıyı en yakın daha büyük tek sayıya yuvarlar. +PI = Pİ ## Pi deÄŸerini verir. +POWER = KUVVET ## Bir üsse yükseltilmiÅŸ sayının sonucunu verir. +PRODUCT = ÇARPIM ## Bağımsız deÄŸiÅŸkenlerini çarpar. +QUOTIENT = BÖLÜM ## Bir bölme iÅŸleminin tamsayı kısmını verir. +RADIANS = RADYAN ## Dereceleri radyanlara dönüştürür. +RAND = S_SAYI_ÜRET ## 0 ile 1 arasında rastgele bir sayı verir. +RANDBETWEEN = RASTGELEARALIK ## BelirttiÄŸiniz sayılar arasında rastgele bir sayı verir. +ROMAN = ROMEN ## Bir normal rakamı, metin olarak, romen rakamına çevirir. +ROUND = YUVARLA ## Bir sayıyı, belirtilen basamak sayısına yuvarlar. +ROUNDDOWN = AÅžAÄžIYUVARLA ## Bir sayıyı, daha küçük sayıya, sıfıra yakınsayarak yuvarlar. +ROUNDUP = YUKARIYUVARLA ## Bir sayıyı daha büyük sayıya, sıfırdan ıraksayarak yuvarlar. +SERIESSUM = SERİTOPLA ## Bir üs serisinin toplamını, formüle baÄŸlı olarak verir. +SIGN = İŞARET ## Bir sayının iÅŸaretini verir. +SIN = SİN ## Verilen bir açının sinüsünü verir. +SINH = SİNH ## Bir sayının hiperbolik sinüsünü verir. +SQRT = KAREKÖK ## Pozitif bir karekök verir. +SQRTPI = KAREKÖKPİ ## (* Pi sayısının) kare kökünü verir. +SUBTOTAL = ALTTOPLAM ## Bir listedeki ya da veritabanındaki bir alt toplamı verir. +SUM = TOPLA ## Bağımsız deÄŸiÅŸkenlerini toplar. +SUMIF = ETOPLA ## Verilen ölçütle belirlenen hücreleri toplar. +SUMIFS = SUMIFS ## Bir aralıktaki, birden fazla ölçüte uyan hücreleri ekler. +SUMPRODUCT = TOPLA.ÇARPIM ## İliÅŸkili dizi bileÅŸenlerinin çarpımlarının toplamını verir. +SUMSQ = TOPKARE ## Bağımsız deÄŸiÅŸkenlerin karelerinin toplamını verir. +SUMX2MY2 = TOPX2EY2 ## İki dizideki iliÅŸkili deÄŸerlerin farkının toplamını verir. +SUMX2PY2 = TOPX2AY2 ## İki dizideki iliÅŸkili deÄŸerlerin karelerinin toplamının toplamını verir. +SUMXMY2 = TOPXEY2 ## İki dizideki iliÅŸkili deÄŸerlerin farklarının karelerinin toplamını verir. +TAN = TAN ## Bir sayının tanjantını verir. +TANH = TANH ## Bir sayının hiperbolik tanjantını verir. +TRUNC = NSAT ## Bir sayının, tamsayı durumuna gelecek ÅŸekilde, fazlalıklarını atar. + + +## +## Statistical functions İstatistiksel fonksiyonlar +## +AVEDEV = ORTSAP ## Veri noktalarının ortalamalarından mutlak sapmalarının ortalamasını verir. +AVERAGE = ORTALAMA ## Bağımsız deÄŸiÅŸkenlerinin ortalamasını verir. +AVERAGEA = ORTALAMAA ## Bağımsız deÄŸiÅŸkenlerinin, sayılar, metin ve mantıksal deÄŸerleri içermek üzere ortalamasını verir. +AVERAGEIF = EÄžERORTALAMA ## Verili ölçütü karşılayan bir aralıktaki bütün hücrelerin ortalamasını (aritmetik ortalama) hesaplar. +AVERAGEIFS = EÄžERLERORTALAMA ## Birden çok ölçüte uyan tüm hücrelerin ortalamasını (aritmetik ortalama) hesaplar. +BETADIST = BETADAÄž ## Beta birikimli dağılım fonksiyonunu verir. +BETAINV = BETATERS ## Belirli bir beta dağılımı için birikimli dağılım fonksiyonunun tersini verir. +BINOMDIST = BİNOMDAÄž ## Tek terimli binom dağılımı olasılığını verir. +CHIDIST = KİKAREDAÄž ## Kikare dağılımın tek kuyruklu olasılığını verir. +CHIINV = KİKARETERS ## Kikare dağılımın kuyruklu olasılığının tersini verir. +CHITEST = KİKARETEST ## Bağımsızlık sınamalarını verir. +CONFIDENCE = GÜVENİRLİK ## Bir popülasyon ortalaması için güvenirlik aralığını verir. +CORREL = KORELASYON ## İki veri kümesi arasındaki baÄŸlantı katsayısını verir. +COUNT = BAÄž_DEÄž_SAY ## Bağımsız deÄŸiÅŸkenler listesinde kaç tane sayı bulunduÄŸunu sayar. +COUNTA = BAÄž_DEÄž_DOLU_SAY ## Bağımsız deÄŸiÅŸkenler listesinde kaç tane deÄŸer bulunduÄŸunu sayar. +COUNTBLANK = BOÅžLUKSAY ## Aralıktaki boÅŸ hücre sayısını hesaplar. +COUNTIF = EÄžERSAY ## Verilen ölçütlere uyan bir aralık içindeki hücreleri sayar. +COUNTIFS = ÇOKEÄžERSAY ## Birden çok ölçüte uyan bir aralık içindeki hücreleri sayar. +COVAR = KOVARYANS ## EÅŸleÅŸtirilmiÅŸ sapmaların ortalaması olan kovaryansı verir. +CRITBINOM = KRİTİKBİNOM ## Birikimli binom dağılımının bir ölçüt deÄŸerinden küçük veya ölçüt deÄŸerine eÅŸit olduÄŸu en küçük deÄŸeri verir. +DEVSQ = SAPKARE ## Sapmaların karelerinin toplamını verir. +EXPONDIST = ÜSTELDAÄž ## Üstel dağılımı verir. +FDIST = FDAÄž ## F olasılık dağılımını verir. +FINV = FTERS ## F olasılık dağılımının tersini verir. +FISHER = FISHER ## Fisher dönüşümünü verir. +FISHERINV = FISHERTERS ## Fisher dönüşümünün tersini verir. +FORECAST = TAHMİN ## Bir doÄŸrusal eÄŸilim boyunca bir deÄŸer verir. +FREQUENCY = SIKLIK ## Bir sıklık dağılımını, dikey bir dizi olarak verir. +FTEST = FTEST ## Bir F-test'in sonucunu verir. +GAMMADIST = GAMADAÄž ## Gama dağılımını verir. +GAMMAINV = GAMATERS ## Gama kümülatif dağılımının tersini verir. +GAMMALN = GAMALN ## Gama fonksiyonunun (?(x)) doÄŸal logaritmasını verir. +GEOMEAN = GEOORT ## Geometrik ortayı verir. +GROWTH = BÜYÜME ## Üstel bir eÄŸilim boyunca deÄŸerler verir. +HARMEAN = HARORT ## Harmonik ortayı verir. +HYPGEOMDIST = HİPERGEOMDAÄž ## Hipergeometrik dağılımı verir. +INTERCEPT = KESMENOKTASI ## DoÄŸrusal çakıştırma çizgisinin kesiÅŸme noktasını verir. +KURT = BASIKLIK ## Bir veri kümesinin basıklığını verir. +LARGE = BÜYÜK ## Bir veri kümesinde k. en büyük deÄŸeri verir. +LINEST = DOT ## DoÄŸrusal bir eÄŸilimin parametrelerini verir. +LOGEST = LOT ## Üstel bir eÄŸilimin parametrelerini verir. +LOGINV = LOGTERS ## Bir lognormal dağılımının tersini verir. +LOGNORMDIST = LOGNORMDAÄž ## Birikimli lognormal dağılımını verir. +MAX = MAK ## Bir bağımsız deÄŸiÅŸkenler listesindeki en büyük deÄŸeri verir. +MAXA = MAKA ## Bir bağımsız deÄŸiÅŸkenler listesindeki, sayılar, metin ve mantıksal deÄŸerleri içermek üzere, en büyük deÄŸeri verir. +MEDIAN = ORTANCA ## Belirtilen sayıların orta deÄŸerini verir. +MIN = MİN ## Bir bağımsız deÄŸiÅŸkenler listesindeki en küçük deÄŸeri verir. +MINA = MİNA ## Bir bağımsız deÄŸiÅŸkenler listesindeki, sayılar, metin ve mantıksal deÄŸerleri de içermek üzere, en küçük deÄŸeri verir. +MODE = ENÇOK_OLAN ## Bir veri kümesindeki en sık rastlanan deÄŸeri verir. +NEGBINOMDIST = NEGBİNOMDAÄž ## Negatif binom dağılımını verir. +NORMDIST = NORMDAÄž ## Normal birikimli dağılımı verir. +NORMINV = NORMTERS ## Normal kümülatif dağılımın tersini verir. +NORMSDIST = NORMSDAÄž ## Standart normal birikimli dağılımı verir. +NORMSINV = NORMSTERS ## Standart normal birikimli dağılımın tersini verir. +PEARSON = PEARSON ## Pearson çarpım moment korelasyon katsayısını verir. +PERCENTILE = YÜZDEBİRLİK ## Bir aralık içerisinde bulunan deÄŸerlerin k. frekans toplamını verir. +PERCENTRANK = YÜZDERANK ## Bir veri kümesindeki bir deÄŸerin yüzde mertebesini verir. +PERMUT = PERMÜTASYON ## Verilen sayıda nesne için permütasyon sayısını verir. +POISSON = POISSON ## Poisson dağılımını verir. +PROB = OLASILIK ## Bir aralıktaki deÄŸerlerin iki sınır arasında olması olasılığını verir. +QUARTILE = DÖRTTEBİRLİK ## Bir veri kümesinin dörtte birliÄŸini verir. +RANK = RANK ## Bir sayılar listesinde bir sayının mertebesini verir. +RSQ = RKARE ## Pearson çarpım moment korelasyon katsayısının karesini verir. +SKEW = ÇARPIKLIK ## Bir dağılımın çarpıklığını verir. +SLOPE = EĞİM ## DoÄŸrusal çakışma çizgisinin eÄŸimini verir. +SMALL = KÜÇÜK ## Bir veri kümesinde k. en küçük deÄŸeri verir. +STANDARDIZE = STANDARTLAÅžTIRMA ## NormalleÅŸtirilmiÅŸ bir deÄŸer verir. +STDEV = STDSAPMA ## Bir örneÄŸe dayanarak standart sapmayı tahmin eder. +STDEVA = STDSAPMAA ## Standart sapmayı, sayılar, metin ve mantıksal deÄŸerleri içermek üzere, bir örneÄŸe baÄŸlı olarak tahmin eder. +STDEVP = STDSAPMAS ## Standart sapmayı, tüm popülasyona baÄŸlı olarak hesaplar. +STDEVPA = STDSAPMASA ## Standart sapmayı, sayılar, metin ve mantıksal deÄŸerleri içermek üzere, tüm popülasyona baÄŸlı olarak hesaplar. +STEYX = STHYX ## Regresyondaki her x için tahmini y deÄŸerinin standart hatasını verir. +TDIST = TDAÄž ## T-dağılımını verir. +TINV = TTERS ## T-dağılımının tersini verir. +TREND = EĞİLİM ## DoÄŸrusal bir eÄŸilim boyunca deÄŸerler verir. +TRIMMEAN = KIRPORTALAMA ## Bir veri kümesinin içinin ortalamasını verir. +TTEST = TTEST ## T-test'le iliÅŸkilendirilmiÅŸ olasılığı verir. +VAR = VAR ## Varyansı, bir örneÄŸe baÄŸlı olarak tahmin eder. +VARA = VARA ## Varyansı, sayılar, metin ve mantıksal deÄŸerleri içermek üzere, bir örneÄŸe baÄŸlı olarak tahmin eder. +VARP = VARS ## Varyansı, tüm popülasyona dayanarak hesaplar. +VARPA = VARSA ## Varyansı, sayılar, metin ve mantıksal deÄŸerleri içermek üzere, tüm popülasyona baÄŸlı olarak hesaplar. +WEIBULL = WEIBULL ## Weibull dağılımını hesaplar. +ZTEST = ZTEST ## Z-testinin tek kuyruklu olasılık deÄŸerini hesaplar. + + +## +## Text functions Metin fonksiyonları +## +ASC = ASC ## Bir karakter dizesindeki çift enli (iki bayt) İngilizce harfleri veya katakanayı yarım enli (tek bayt) karakterlerle deÄŸiÅŸtirir. +BAHTTEXT = BAHTTEXT ## Sayıyı, ß (baht) para birimi biçimini kullanarak metne dönüştürür. +CHAR = DAMGA ## Kod sayısıyla belirtilen karakteri verir. +CLEAN = TEMİZ ## Metindeki bütün yazdırılamaz karakterleri kaldırır. +CODE = KOD ## Bir metin dizesindeki ilk karakter için sayısal bir kod verir. +CONCATENATE = BİRLEÅžTİR ## Pek çok metin öğesini bir metin öğesi olarak birleÅŸtirir. +DOLLAR = LİRA ## Bir sayıyı YTL (yeni Türk lirası) para birimi biçimini kullanarak metne dönüştürür. +EXACT = ÖZDEÅž ## İki metin deÄŸerinin özdeÅŸ olup olmadığını anlamak için, deÄŸerleri denetler. +FIND = BUL ## Bir metin deÄŸerini, bir baÅŸkasının içinde bulur (büyük küçük harf duyarlıdır). +FINDB = BULB ## Bir metin deÄŸerini, bir baÅŸkasının içinde bulur (büyük küçük harf duyarlıdır). +FIXED = SAYIDÜZENLE ## Bir sayıyı, sabit sayıda ondalıkla, metin olarak biçimlendirir. +JIS = JIS ## Bir karakter dizesindeki tek enli (tek bayt) İngilizce harfleri veya katakanayı çift enli (iki bayt) karakterlerle deÄŸiÅŸtirir. +LEFT = SOL ## Bir metin deÄŸerinden en soldaki karakterleri verir. +LEFTB = SOLB ## Bir metin deÄŸerinden en soldaki karakterleri verir. +LEN = UZUNLUK ## Bir metin dizesindeki karakter sayısını verir. +LENB = UZUNLUKB ## Bir metin dizesindeki karakter sayısını verir. +LOWER = KÜÇÜKHARF ## Metni küçük harfe çevirir. +MID = ORTA ## Bir metin dizesinden belirli sayıda karakteri, belirttiÄŸiniz konumdan baÅŸlamak üzere verir. +MIDB = ORTAB ## Bir metin dizesinden belirli sayıda karakteri, belirttiÄŸiniz konumdan baÅŸlamak üzere verir. +PHONETIC = SES ## Metin dizesinden ses (furigana) karakterlerini ayıklar. +PROPER = YAZIM.DÜZENİ ## Bir metin deÄŸerinin her bir sözcüğünün ilk harfini büyük harfe çevirir. +REPLACE = DEĞİŞTİR ## Metnin içindeki karakterleri deÄŸiÅŸtirir. +REPLACEB = DEĞİŞTİRB ## Metnin içindeki karakterleri deÄŸiÅŸtirir. +REPT = YİNELE ## Metni belirtilen sayıda yineler. +RIGHT = SAÄž ## Bir metin deÄŸerinden en saÄŸdaki karakterleri verir. +RIGHTB = SAÄžB ## Bir metin deÄŸerinden en saÄŸdaki karakterleri verir. +SEARCH = BUL ## Bir metin deÄŸerini, bir baÅŸkasının içinde bulur (büyük küçük harf duyarlı deÄŸildir). +SEARCHB = BULB ## Bir metin deÄŸerini, bir baÅŸkasının içinde bulur (büyük küçük harf duyarlı deÄŸildir). +SUBSTITUTE = YERİNEKOY ## Bir metin dizesinde, eski metnin yerine yeni metin koyar. +T = M ## Bağımsız deÄŸerlerini metne dönüştürür. +TEXT = METNEÇEVİR ## Bir sayıyı biçimlendirir ve metne dönüştürür. +TRIM = KIRP ## Metindeki boÅŸlukları kaldırır. +UPPER = BÜYÜKHARF ## Metni büyük harfe çevirir. +VALUE = SAYIYAÇEVİR ## Bir metin bağımsız deÄŸiÅŸkenini sayıya dönüştürür. diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DAVERAGE.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DAVERAGE.php new file mode 100644 index 0000000..adf4636 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DAVERAGE.php @@ -0,0 +1,90 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Calculation Examples</title> + +</head> +<body> + +<h1>DAVERAGE</h1> +<h2>Returns the average of selected database entries.</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../../Classes/'); + +/** Include PHPExcel */ +include 'PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); +$worksheet = $objPHPExcel->getActiveSheet(); + +// Add some data +$database = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), + ); +$criteria = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ) + ); + +$worksheet->fromArray( $criteria, NULL, 'A1' ); +$worksheet->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', 'The Average yield of Apple trees over 10\' in height'); +$worksheet->setCellValue('B12', '=DAVERAGE(A4:E10,"Yield",A1:B2)'); + +$worksheet->setCellValue('A13', 'The Average age of all Apple and Pear trees in the orchard'); +$worksheet->setCellValue('B13', '=DAVERAGE(A4:E10,3,A1:A3)'); + + +echo '<hr />'; + + +echo '<h4>Database</h4>'; + +$databaseData = $worksheet->rangeToArray('A4:E10',null,true,true,true); +var_dump($databaseData); + + +echo '<hr />'; + + +// Test the formulae +echo '<h4>Criteria</h4>'; + +$criteriaData = $worksheet->rangeToArray('A1:B2',null,true,true,true); +var_dump($criteriaData); + +echo $worksheet->getCell("A12")->getValue() .'<br />'; +echo 'DAVERAGE() Result is ' . $worksheet->getCell("B12")->getCalculatedValue() .'<br /><br />'; + +echo '<h4>Criteria</h4>'; + +$criteriaData = $worksheet->rangeToArray('A1:A3',null,true,true,true); +var_dump($criteriaData); + +echo $worksheet->getCell("A13")->getValue() .'<br />'; +echo 'DAVERAGE() Result is ' . $worksheet->getCell("B13")->getCalculatedValue(); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DCOUNT.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DCOUNT.php new file mode 100644 index 0000000..ece2b1f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DCOUNT.php @@ -0,0 +1,90 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Calculation Examples</title> + +</head> +<body> + +<h1>DCOUNT</h1> +<h2>Counts the cells that contain numbers in a database.</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../../Classes/'); + +/** Include PHPExcel */ +include 'PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); +$worksheet = $objPHPExcel->getActiveSheet(); + +// Add some data +$database = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), + ); +$criteria = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ) + ); + +$worksheet->fromArray( $criteria, NULL, 'A1' ); +$worksheet->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', 'The Number of Apple trees over 10\' in height'); +$worksheet->setCellValue('B12', '=DCOUNT(A4:E10,"Yield",A1:B2)'); + +$worksheet->setCellValue('A13', 'The Number of Apple and Pear trees in the orchard'); +$worksheet->setCellValue('B13', '=DCOUNT(A4:E10,3,A1:A3)'); + + +echo '<hr />'; + + +echo '<h4>Database</h4>'; + +$databaseData = $worksheet->rangeToArray('A4:E10',null,true,true,true); +var_dump($databaseData); + + +echo '<hr />'; + + +// Test the formulae +echo '<h4>Criteria</h4>'; + +$criteriaData = $worksheet->rangeToArray('A1:B2',null,true,true,true); +var_dump($criteriaData); + +echo $worksheet->getCell("A12")->getValue() .'<br />'; +echo 'DCOUNT() Result is ' . $worksheet->getCell("B12")->getCalculatedValue() .'<br /><br />'; + +echo '<h4>Criteria</h4>'; + +$criteriaData = $worksheet->rangeToArray('A1:A3',null,true,true,true); +var_dump($criteriaData); + +echo $worksheet->getCell("A13")->getValue() .'<br />'; +echo 'DCOUNT() Result is ' . $worksheet->getCell("B13")->getCalculatedValue(); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DGET.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DGET.php new file mode 100644 index 0000000..51d7dd6 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DGET.php @@ -0,0 +1,86 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Calculation Examples</title> + +</head> +<body> + +<h1>DGET</h1> +<h2>Extracts a single value from a column of a list or database that matches conditions that you specify.</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../../Classes/'); + +/** Include PHPExcel */ +include 'PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); +$worksheet = $objPHPExcel->getActiveSheet(); + +// Add some data +$database = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), + ); +$criteria = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ) + ); + +$worksheet->fromArray( $criteria, NULL, 'A1' ); +$worksheet->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', 'The height of the Apple tree between 10\' and 16\' tall'); +$worksheet->setCellValue('B12', '=DGET(A4:E10,"Height",A1:F2)'); + + +echo '<hr />'; + + +echo '<h4>Database</h4>'; + +$databaseData = $worksheet->rangeToArray('A4:E10',null,true,true,true); +var_dump($databaseData); + + +echo '<hr />'; + + +// Test the formulae +echo '<h4>Criteria</h4>'; + +echo 'ALL' . '<br /><br />'; + +echo $worksheet->getCell("A12")->getValue() .'<br />'; +echo 'DMAX() Result is ' . $worksheet->getCell("B12")->getCalculatedValue() .'<br /><br />'; + +echo '<h4>Criteria</h4>'; + +$criteriaData = $worksheet->rangeToArray('A1:A2',null,true,true,true); +var_dump($criteriaData); + +echo $worksheet->getCell("A13")->getValue() .'<br />'; +echo 'DMAX() Result is ' . $worksheet->getCell("B13")->getCalculatedValue(); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DMAX.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DMAX.php new file mode 100644 index 0000000..1a2d22a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DMAX.php @@ -0,0 +1,89 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Calculation Examples</title> + +</head> +<body> + +<h1>DMAX</h1> +<h2>Returns the maximum value from selected database entries.</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../../Classes/'); + +/** Include PHPExcel */ +include 'PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); +$worksheet = $objPHPExcel->getActiveSheet(); + +// Add some data +$database = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), + ); +$criteria = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ) + ); + +$worksheet->fromArray( $criteria, NULL, 'A1' ); +$worksheet->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', 'The tallest tree in the orchard'); +$worksheet->setCellValue('B12', '=DMAX(A4:E10,"Height",A4:E10)'); + +$worksheet->setCellValue('A13', 'The Oldest apple tree in the orchard'); +$worksheet->setCellValue('B13', '=DMAX(A4:E10,3,A1:A2)'); + + +echo '<hr />'; + + +echo '<h4>Database</h4>'; + +$databaseData = $worksheet->rangeToArray('A4:E10',null,true,true,true); +var_dump($databaseData); + + +echo '<hr />'; + + +// Test the formulae +echo '<h4>Criteria</h4>'; + +echo 'ALL' . '<br /><br />'; + +echo $worksheet->getCell("A12")->getValue() .'<br />'; +echo 'DMAX() Result is ' . $worksheet->getCell("B12")->getCalculatedValue() .'<br /><br />'; + +echo '<h4>Criteria</h4>'; + +$criteriaData = $worksheet->rangeToArray('A1:A2',null,true,true,true); +var_dump($criteriaData); + +echo $worksheet->getCell("A13")->getValue() .'<br />'; +echo 'DMAX() Result is ' . $worksheet->getCell("B13")->getCalculatedValue(); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DMIN.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DMIN.php new file mode 100644 index 0000000..d6f23a6 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DMIN.php @@ -0,0 +1,89 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Calculation Examples</title> + +</head> +<body> + +<h1>DMIN</h1> +<h2>Returns the minimum value from selected database entries.</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../../Classes/'); + +/** Include PHPExcel */ +include 'PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); +$worksheet = $objPHPExcel->getActiveSheet(); + +// Add some data +$database = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), + ); +$criteria = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ) + ); + +$worksheet->fromArray( $criteria, NULL, 'A1' ); +$worksheet->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', 'The shortest tree in the orchard'); +$worksheet->setCellValue('B12', '=DMIN(A4:E10,"Height",A4:E10)'); + +$worksheet->setCellValue('A13', 'The Youngest apple tree in the orchard'); +$worksheet->setCellValue('B13', '=DMIN(A4:E10,3,A1:A2)'); + + +echo '<hr />'; + + +echo '<h4>Database</h4>'; + +$databaseData = $worksheet->rangeToArray('A4:E10',null,true,true,true); +var_dump($databaseData); + + +echo '<hr />'; + + +// Test the formulae +echo '<h4>Criteria</h4>'; + +echo 'ALL' . '<br /><br />'; + +echo $worksheet->getCell("A12")->getValue() .'<br />'; +echo 'DMIN() Result is ' . $worksheet->getCell("B12")->getCalculatedValue() .'<br /><br />'; + +echo '<h4>Criteria</h4>'; + +$criteriaData = $worksheet->rangeToArray('A1:A2',null,true,true,true); +var_dump($criteriaData); + +echo $worksheet->getCell("A13")->getValue() .'<br />'; +echo 'DMIN() Result is ' . $worksheet->getCell("B13")->getCalculatedValue(); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DPRODUCT.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DPRODUCT.php new file mode 100644 index 0000000..e5e629e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DPRODUCT.php @@ -0,0 +1,87 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Calculation Examples</title> + +</head> +<body> + +<h1>DPRODUCT</h1> +<h2>Multiplies the values in a column of a list or database that match conditions that you specify.</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../../Classes/'); + +/** Include PHPExcel */ +include 'PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); +$worksheet = $objPHPExcel->getActiveSheet(); + +// Add some data +$database = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), + ); +$criteria = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ) + ); + +$worksheet->fromArray( $criteria, NULL, 'A1' ); +$worksheet->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', 'The product of the yields of all Apple trees over 10\' in the orchard'); +$worksheet->setCellValue('B12', '=DPRODUCT(A4:E10,"Yield",A1:B2)'); + + + +echo '<hr />'; + + +echo '<h4>Database</h4>'; + +$databaseData = $worksheet->rangeToArray('A4:E10',null,true,true,true); +var_dump($databaseData); + + +echo '<hr />'; + + +// Test the formulae +echo '<h4>Criteria</h4>'; + +echo 'ALL' . '<br /><br />'; + +echo $worksheet->getCell("A12")->getValue() .'<br />'; +echo 'DMAX() Result is ' . $worksheet->getCell("B12")->getCalculatedValue() .'<br /><br />'; + +echo '<h4>Criteria</h4>'; + +$criteriaData = $worksheet->rangeToArray('A1:A2',null,true,true,true); +var_dump($criteriaData); + +echo $worksheet->getCell("A13")->getValue() .'<br />'; +echo 'DMAX() Result is ' . $worksheet->getCell("B13")->getCalculatedValue(); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DSTDEV.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DSTDEV.php new file mode 100644 index 0000000..c26df0e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DSTDEV.php @@ -0,0 +1,90 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Calculation Examples</title> + +</head> +<body> + +<h1>DSTDEV</h1> +<h2>Estimates the standard deviation based on a sample of selected database entries.</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../../Classes/'); + +/** Include PHPExcel */ +include 'PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); +$worksheet = $objPHPExcel->getActiveSheet(); + +// Add some data +$database = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), + ); +$criteria = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ) + ); + +$worksheet->fromArray( $criteria, NULL, 'A1' ); +$worksheet->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', 'The estimated standard deviation in the yield of Apple and Pear trees'); +$worksheet->setCellValue('B12', '=DSTDEV(A4:E10,"Yield",A1:A3)'); + +$worksheet->setCellValue('A13', 'The estimated standard deviation in height of Apple and Pear trees'); +$worksheet->setCellValue('B13', '=DSTDEV(A4:E10,2,A1:A3)'); + + +echo '<hr />'; + + +echo '<h4>Database</h4>'; + +$databaseData = $worksheet->rangeToArray('A4:E10',null,true,true,true); +var_dump($databaseData); + + +echo '<hr />'; + + +// Test the formulae +echo '<h4>Criteria</h4>'; + +$criteriaData = $worksheet->rangeToArray('A1:A3',null,true,true,true); +var_dump($criteriaData); + +echo $worksheet->getCell("A12")->getValue() .'<br />'; +echo 'DSTDEV() Result is ' . $worksheet->getCell("B12")->getCalculatedValue() .'<br /><br />'; + +echo '<h4>Criteria</h4>'; + +$criteriaData = $worksheet->rangeToArray('A1:A3',null,true,true,true); +var_dump($criteriaData); + +echo $worksheet->getCell("A13")->getValue() .'<br />'; +echo 'DSTDEV() Result is ' . $worksheet->getCell("B13")->getCalculatedValue(); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DSTDEVP.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DSTDEVP.php new file mode 100644 index 0000000..9b35345 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DSTDEVP.php @@ -0,0 +1,90 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Calculation Examples</title> + +</head> +<body> + +<h1>DSTDEVP</h1> +<h2>Calculates the standard deviation based on the entire population of selected database entries.</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../../Classes/'); + +/** Include PHPExcel */ +include 'PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); +$worksheet = $objPHPExcel->getActiveSheet(); + +// Add some data +$database = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), + ); +$criteria = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ) + ); + +$worksheet->fromArray( $criteria, NULL, 'A1' ); +$worksheet->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', 'The standard deviation in the yield of Apple and Pear trees'); +$worksheet->setCellValue('B12', '=DSTDEVP(A4:E10,"Yield",A1:A3)'); + +$worksheet->setCellValue('A13', 'The standard deviation in height of Apple and Pear trees'); +$worksheet->setCellValue('B13', '=DSTDEVP(A4:E10,2,A1:A3)'); + + +echo '<hr />'; + + +echo '<h4>Database</h4>'; + +$databaseData = $worksheet->rangeToArray('A4:E10',null,true,true,true); +var_dump($databaseData); + + +echo '<hr />'; + + +// Test the formulae +echo '<h4>Criteria</h4>'; + +$criteriaData = $worksheet->rangeToArray('A1:A3',null,true,true,true); +var_dump($criteriaData); + +echo $worksheet->getCell("A12")->getValue() .'<br />'; +echo 'DSTDEVP() Result is ' . $worksheet->getCell("B12")->getCalculatedValue() .'<br /><br />'; + +echo '<h4>Criteria</h4>'; + +$criteriaData = $worksheet->rangeToArray('A1:A3',null,true,true,true); +var_dump($criteriaData); + +echo $worksheet->getCell("A13")->getValue() .'<br />'; +echo 'DSTDEVP() Result is ' . $worksheet->getCell("B13")->getCalculatedValue(); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DVAR.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DVAR.php new file mode 100644 index 0000000..e425f77 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DVAR.php @@ -0,0 +1,90 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Calculation Examples</title> + +</head> +<body> + +<h1>DVAR</h1> +<h2>Estimates variance based on a sample from selected database entries.</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../../Classes/'); + +/** Include PHPExcel */ +include 'PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); +$worksheet = $objPHPExcel->getActiveSheet(); + +// Add some data +$database = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), + ); +$criteria = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ) + ); + +$worksheet->fromArray( $criteria, NULL, 'A1' ); +$worksheet->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', 'The estimated variance in the yield of Apple and Pear trees'); +$worksheet->setCellValue('B12', '=DVAR(A4:E10,"Yield",A1:A3)'); + +$worksheet->setCellValue('A13', 'The estimated variance in height of Apple and Pear trees'); +$worksheet->setCellValue('B13', '=DVAR(A4:E10,2,A1:A3)'); + + +echo '<hr />'; + + +echo '<h4>Database</h4>'; + +$databaseData = $worksheet->rangeToArray('A4:E10',null,true,true,true); +var_dump($databaseData); + + +echo '<hr />'; + + +// Test the formulae +echo '<h4>Criteria</h4>'; + +$criteriaData = $worksheet->rangeToArray('A1:A3',null,true,true,true); +var_dump($criteriaData); + +echo $worksheet->getCell("A12")->getValue() .'<br />'; +echo 'DVAR() Result is ' . $worksheet->getCell("B12")->getCalculatedValue() .'<br /><br />'; + +echo '<h4>Criteria</h4>'; + +$criteriaData = $worksheet->rangeToArray('A1:A3',null,true,true,true); +var_dump($criteriaData); + +echo $worksheet->getCell("A13")->getValue() .'<br />'; +echo 'DVAR() Result is ' . $worksheet->getCell("B13")->getCalculatedValue(); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DVARP.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DVARP.php new file mode 100644 index 0000000..e1cfc8e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DVARP.php @@ -0,0 +1,90 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Calculation Examples</title> + +</head> +<body> + +<h1>DVARP</h1> +<h2>Calculates variance based on the entire population of selected database entries,</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../../Classes/'); + +/** Include PHPExcel */ +include 'PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); +$worksheet = $objPHPExcel->getActiveSheet(); + +// Add some data +$database = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), + ); +$criteria = array( array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ) + ); + +$worksheet->fromArray( $criteria, NULL, 'A1' ); +$worksheet->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', 'The variance in the yield of Apple and Pear trees'); +$worksheet->setCellValue('B12', '=DVARP(A4:E10,"Yield",A1:A3)'); + +$worksheet->setCellValue('A13', 'The variance in height of Apple and Pear trees'); +$worksheet->setCellValue('B13', '=DVARP(A4:E10,2,A1:A3)'); + + +echo '<hr />'; + + +echo '<h4>Database</h4>'; + +$databaseData = $worksheet->rangeToArray('A4:E10',null,true,true,true); +var_dump($databaseData); + + +echo '<hr />'; + + +// Test the formulae +echo '<h4>Criteria</h4>'; + +$criteriaData = $worksheet->rangeToArray('A1:A3',null,true,true,true); +var_dump($criteriaData); + +echo $worksheet->getCell("A12")->getValue() .'<br />'; +echo 'DVARP() Result is ' . $worksheet->getCell("B12")->getCalculatedValue() .'<br /><br />'; + +echo '<h4>Criteria</h4>'; + +$criteriaData = $worksheet->rangeToArray('A1:A3',null,true,true,true); +var_dump($criteriaData); + +echo $worksheet->getCell("A13")->getValue() .'<br />'; +echo 'DVARP() Result is ' . $worksheet->getCell("B13")->getCalculatedValue(); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/DATE.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/DATE.php new file mode 100644 index 0000000..979d1f5 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/DATE.php @@ -0,0 +1,83 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Calculation Examples</title> + +</head> +<body> + +<h1>DATE</h1> +<h2>Returns the serial number of a particular date.</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../../Classes/'); + +/** Include PHPExcel */ +include 'PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); +$worksheet = $objPHPExcel->getActiveSheet(); + +// Add some data +$testDates = array( array(2012,3,26), array(2012,2,29), array(2012,4,1), array(2012,12,25), + array(2012,10,31), array(2012,11,5), array(2012,1,1), array(2012,3,17), + array(2011,2,29), array(7,5,3), array(2012,13,1), array(2012,11,45), + array(2012,0,0), array(2012,1,0), array(2012,0,1), + array(2012,-2,2), array(2012,2,-2), array(2012,-2,-2), + ); +$testDateCount = count($testDates); + +$worksheet->fromArray($testDates,NULL,'A1',true); + +for ($row = 1; $row <= $testDateCount; ++$row) { + $worksheet->setCellValue('D'.$row, '=DATE(A'.$row.',B'.$row.',C'.$row.')'); + $worksheet->setCellValue('E'.$row, '=D'.$row); +} +$worksheet->getStyle('E1:E'.$testDateCount) + ->getNumberFormat() + ->setFormatCode('yyyy-mmm-dd'); + + +echo '<hr />'; + + +// Test the formulae +?> +<table border="1" cellspacing="0"> + <tr> + <th colspan="3">Date Value</th> + <th rowspan="2" valign="bottom">Formula</th> + <th rowspan="2" valign="bottom">Excel DateStamp</th> + <th rowspan="2" valign="bottom">Formatted DateStamp</th> + </tr> + <tr> + <th>Year</th> + <th>Month</th> + <th>Day</th> + <tr> + <?php + for ($row = 1; $row <= $testDateCount; ++$row) { + echo '<tr>'; + echo '<td>' , $worksheet->getCell('A'.$row)->getFormattedValue() , '</td>'; + echo '<td>' , $worksheet->getCell('B'.$row)->getFormattedValue() , '</td>'; + echo '<td>' , $worksheet->getCell('C'.$row)->getFormattedValue() , '</td>'; + echo '<td>' , $worksheet->getCell('D'.$row)->getValue() , '</td>'; + echo '<td>' , $worksheet->getCell('D'.$row)->getFormattedValue() , '</td>'; + echo '<td>' , $worksheet->getCell('E'.$row)->getFormattedValue() , '</td>'; + echo '</tr>'; + } + ?> +</table> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/DATEVALUE.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/DATEVALUE.php new file mode 100644 index 0000000..4d5d8c2 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/DATEVALUE.php @@ -0,0 +1,76 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Calculation Examples</title> + +</head> +<body> + +<h1>DATEVALUE</h1> +<h2>Converts a date in the form of text to a serial number.</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../../Classes/'); + +/** Include PHPExcel */ +include 'PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); +$worksheet = $objPHPExcel->getActiveSheet(); + +// Add some data +$testDates = array( '26 March 2012', '29 Feb 2012', 'April 1, 2012', '25/12/2012', + '2012-Oct-31', '5th November', 'January 1st', 'April 2012', + '17-03', '03-2012', '29 Feb 2011', '03-05-07', + '03-MAY-07', '03-13-07', + ); +$testDateCount = count($testDates); + +for($row = 1; $row <= $testDateCount; ++$row) { + $worksheet->setCellValue('A'.$row, $testDates[$row-1]); + $worksheet->setCellValue('B'.$row, '=DATEVALUE(A'.$row.')'); + $worksheet->setCellValue('C'.$row, '=B'.$row); +} + +$worksheet->getStyle('C1:C'.$testDateCount) + ->getNumberFormat() + ->setFormatCode('yyyy-mmm-dd'); + + +echo '<hr />'; + + +// Test the formulae +?> +<p><strong>Warning: </strong>The PHPExcel DATEVALUE() function accepts a wider range of date formats than MS Excel's DATEFORMAT() function.</p> +<table border="1" cellspacing="0"> + <tr> + <th>Date String</th> + <th>Formula</th> + <th>Excel DateStamp</th> + <th>Formatted DateStamp</th> + </tr> + <?php + for ($row = 1; $row <= $testDateCount; ++$row) { + echo '<tr>'; + echo '<td>' , $worksheet->getCell('A'.$row)->getFormattedValue() , '</td>'; + echo '<td>' , $worksheet->getCell('B'.$row)->getValue() , '</td>'; + echo '<td>' , $worksheet->getCell('B'.$row)->getFormattedValue() , '</td>'; + echo '<td>' , $worksheet->getCell('C'.$row)->getFormattedValue() , '</td>'; + echo '</tr>'; + } + ?> +</table> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/TIME.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/TIME.php new file mode 100644 index 0000000..f452276 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/TIME.php @@ -0,0 +1,81 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Calculation Examples</title> + +</head> +<body> + +<h1>TIME</h1> +<h2>Returns the serial number of a particular time.</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../../Classes/'); + +/** Include PHPExcel */ +include 'PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); +$worksheet = $objPHPExcel->getActiveSheet(); + +// Add some data +$testDates = array( array(3,15), array(13,15), array(15,15,15), array(3,15,30), + array(15,15,15), array(5), array(9,15,0), array(9,15,-1), + array(13,-14,-15), array(0,0,-1) + ); +$testDateCount = count($testDates); + +$worksheet->fromArray($testDates,NULL,'A1',true); + +for ($row = 1; $row <= $testDateCount; ++$row) { + $worksheet->setCellValue('D'.$row, '=TIME(A'.$row.',B'.$row.',C'.$row.')'); + $worksheet->setCellValue('E'.$row, '=D'.$row); +} +$worksheet->getStyle('E1:E'.$testDateCount) + ->getNumberFormat() + ->setFormatCode('hh:mm:ss'); + + +echo '<hr />'; + + +// Test the formulae +?> +<table border="1" cellspacing="0"> + <tr> + <th colspan="3">Date Value</th> + <th rowspan="2" valign="bottom">Formula</th> + <th rowspan="2" valign="bottom">Excel TimeStamp</th> + <th rowspan="2" valign="bottom">Formatted TimeStamp</th> + </tr> + <tr> + <th>Hour</th> + <th>Minute</th> + <th>Second</th> + <tr> + <?php + for ($row = 1; $row <= $testDateCount; ++$row) { + echo '<tr>'; + echo '<td>' , $worksheet->getCell('A'.$row)->getFormattedValue() , '</td>'; + echo '<td>' , $worksheet->getCell('B'.$row)->getFormattedValue() , '</td>'; + echo '<td>' , $worksheet->getCell('C'.$row)->getFormattedValue() , '</td>'; + echo '<td>' , $worksheet->getCell('D'.$row)->getValue() , '</td>'; + echo '<td>' , $worksheet->getCell('D'.$row)->getFormattedValue() , '</td>'; + echo '<td>' , $worksheet->getCell('E'.$row)->getFormattedValue() , '</td>'; + echo '</tr>'; + } + ?> +</table> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/TIMEVALUE.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/TIMEVALUE.php new file mode 100644 index 0000000..89e0ba4 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/TIMEVALUE.php @@ -0,0 +1,72 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Calculation Examples</title> + +</head> +<body> + +<h1>TIMEVALUE</h1> +<h2>Converts a time in the form of text to a serial number.</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../../Classes/'); + +/** Include PHPExcel */ +include 'PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); +$worksheet = $objPHPExcel->getActiveSheet(); + +// Add some data +$testDates = array( '3:15', '13:15', '15:15:15', '3:15 AM', '3:15 PM', '5PM', '9:15AM', '13:15AM' + ); +$testDateCount = count($testDates); + +for($row = 1; $row <= $testDateCount; ++$row) { + $worksheet->setCellValue('A'.$row, $testDates[$row-1]); + $worksheet->setCellValue('B'.$row, '=TIMEVALUE(A'.$row.')'); + $worksheet->setCellValue('C'.$row, '=B'.$row); +} + +$worksheet->getStyle('C1:C'.$testDateCount) + ->getNumberFormat() + ->setFormatCode('hh:mm:ss'); + + +echo '<hr />'; + + +// Test the formulae +?> +<table border="1" cellspacing="0"> + <tr> + <th>Time String</th> + <th>Formula</th> + <th>Excel TimeStamp</th> + <th>Formatted TimeStamp</th> + </tr> + <?php + for ($row = 1; $row <= $testDateCount; ++$row) { + echo '<tr>'; + echo '<td>' , $worksheet->getCell('A'.$row)->getFormattedValue() , '</td>'; + echo '<td>' , $worksheet->getCell('B'.$row)->getValue() , '</td>'; + echo '<td>' , $worksheet->getCell('B'.$row)->getFormattedValue() , '</td>'; + echo '<td>' , $worksheet->getCell('C'.$row)->getFormattedValue() , '</td>'; + echo '</tr>'; + } + ?> +</table> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/index.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/index.php new file mode 100644 index 0000000..f090553 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/index.php @@ -0,0 +1,51 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Calculation Function Examples</title> + +</head> +<body> + +<?php + +echo '<h1>PHPExcel Calculation Function Examples</h1>'; + +$exampleTypeList = glob('./*',GLOB_ONLYDIR); + +foreach($exampleTypeList as $exampleType) { + + echo '<h2>' . pathinfo($exampleType,PATHINFO_BASENAME) . ' Function Examples</h2>'; + + $exampleList = glob('./'.$exampleType.'/*.php'); + + foreach($exampleList as $exampleFile) { + $fileData = file_get_contents($exampleFile); + + $h1Pattern = '#<h1>(.*?)</h1>#'; + $h2Pattern = '#<h2>(.*?)</h2>#'; + + if (preg_match($h1Pattern, $fileData, $out)) { + $h1Text = $out[1]; + $h2Text = (preg_match($h2Pattern, $fileData, $out)) ? $out[1] : ''; + + echo '<a href="',$exampleFile,'">',$h1Text,'</a><br />'; + if ($h2Text > '') { + echo $h2Text,'<br />'; + } + } + + } +} + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader01.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader01.php new file mode 100644 index 0000000..f881af0 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader01.php @@ -0,0 +1,42 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #01</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #01</h1> +<h2>Simple File Reader using PHPExcel_IOFactory::load()</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileName = './sampleData/example1.xls'; +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory to identify the format<br />'; +$objPHPExcel = PHPExcel_IOFactory::load($inputFileName); + + +echo '<hr />'; + +$sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); +var_dump($sheetData); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader02.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader02.php new file mode 100644 index 0000000..51b36e5 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader02.php @@ -0,0 +1,50 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #02</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #02</h1> +<h2>Simple File Reader using a Specified Reader</h2> +<?php + +$inputFileName = './sampleData/example1.xls'; + +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using PHPExcel_Reader_Excel5<br />'; +$objReader = new PHPExcel_Reader_Excel5(); +// $objReader = new PHPExcel_Reader_Excel2007(); +// $objReader = new PHPExcel_Reader_Excel2003XML(); +// $objReader = new PHPExcel_Reader_OOCalc(); +// $objReader = new PHPExcel_Reader_SYLK(); +// $objReader = new PHPExcel_Reader_Gnumeric(); +// $objReader = new PHPExcel_Reader_CSV(); +$objPHPExcel = $objReader->load($inputFileName); + + +echo '<hr />'; + +$sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); +var_dump($sheetData); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader03.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader03.php new file mode 100644 index 0000000..1c571d3 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader03.php @@ -0,0 +1,51 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #03</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #03</h1> +<h2>Simple File Reader using the PHPExcel_IOFactory to Return a Reader</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'Excel5'; +// $inputFileType = 'Excel2007'; +// $inputFileType = 'Excel2003XML'; +// $inputFileType = 'OOCalc'; +// $inputFileType = 'SYLK'; +// $inputFileType = 'Gnumeric'; +// $inputFileType = 'CSV'; +$inputFileName = './sampleData/example1.xls'; + +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +$objPHPExcel = $objReader->load($inputFileName); + + +echo '<hr />'; + +$sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); +var_dump($sheetData); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader04.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader04.php new file mode 100644 index 0000000..a18c711 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader04.php @@ -0,0 +1,47 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #04</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #04</h1> +<h2>Simple File Reader using the PHPExcel_IOFactory to Identify a Reader to Use</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileName = './sampleData/example1.xls'; + +$inputFileType = PHPExcel_IOFactory::identify($inputFileName); +echo 'File ',pathinfo($inputFileName,PATHINFO_BASENAME),' has been identified as an ',$inputFileType,' file<br />'; + +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with the identified reader type<br />'; +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +$objPHPExcel = $objReader->load($inputFileName); + + +echo '<hr />'; + +$sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); +var_dump($sheetData); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader05.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader05.php new file mode 100644 index 0000000..9bee5b4 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader05.php @@ -0,0 +1,51 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #05</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #05</h1> +<h2>Simple File Reader using the "Read Data Only" Option</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'Excel5'; +// $inputFileType = 'Excel2007'; +// $inputFileType = 'Excel2003XML'; +// $inputFileType = 'OOCalc'; +// $inputFileType = 'Gnumeric'; +$inputFileName = './sampleData/example1.xls'; + +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +echo 'Turning Formatting off for Load<br />'; +$objReader->setReadDataOnly(true); +$objPHPExcel = $objReader->load($inputFileName); + + +echo '<hr />'; + +$sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); +var_dump($sheetData); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader06.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader06.php new file mode 100644 index 0000000..6997a38 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader06.php @@ -0,0 +1,54 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #06</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #06</h1> +<h2>Simple File Reader Loading All WorkSheets</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'Excel5'; +// $inputFileType = 'Excel2007'; +// $inputFileType = 'Excel2003XML'; +// $inputFileType = 'OOCalc'; +// $inputFileType = 'Gnumeric'; +$inputFileName = './sampleData/example1.xls'; + +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +echo 'Loading all WorkSheets<br />'; +$objReader->setLoadAllSheets(); +$objPHPExcel = $objReader->load($inputFileName); + + +echo '<hr />'; + +echo $objPHPExcel->getSheetCount(),' worksheet',(($objPHPExcel->getSheetCount() == 1) ? '' : 's'),' loaded<br /><br />'; +$loadedSheetNames = $objPHPExcel->getSheetNames(); +foreach($loadedSheetNames as $sheetIndex => $loadedSheetName) { + echo $sheetIndex,' -> ',$loadedSheetName,'<br />'; +} + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader07.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader07.php new file mode 100644 index 0000000..0d86ea7 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader07.php @@ -0,0 +1,55 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #07</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #07</h1> +<h2>Simple File Reader Loading a Single Named WorkSheet</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'Excel5'; +// $inputFileType = 'Excel2007'; +// $inputFileType = 'Excel2003XML'; +// $inputFileType = 'OOCalc'; +// $inputFileType = 'Gnumeric'; +$inputFileName = './sampleData/example1.xls'; +$sheetname = 'Data Sheet #2'; + +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +echo 'Loading Sheet "',$sheetname,'" only<br />'; +$objReader->setLoadSheetsOnly($sheetname); +$objPHPExcel = $objReader->load($inputFileName); + + +echo '<hr />'; + +echo $objPHPExcel->getSheetCount(),' worksheet',(($objPHPExcel->getSheetCount() == 1) ? '' : 's'),' loaded<br /><br />'; +$loadedSheetNames = $objPHPExcel->getSheetNames(); +foreach($loadedSheetNames as $sheetIndex => $loadedSheetName) { + echo $sheetIndex,' -> ',$loadedSheetName,'<br />'; +} + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader08.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader08.php new file mode 100644 index 0000000..c6a4460 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader08.php @@ -0,0 +1,55 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #08</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #08</h1> +<h2>Simple File Reader Loading Several Named WorkSheets</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'Excel5'; +// $inputFileType = 'Excel2007'; +// $inputFileType = 'Excel2003XML'; +// $inputFileType = 'OOCalc'; +// $inputFileType = 'Gnumeric'; +$inputFileName = './sampleData/example1.xls'; +$sheetnames = array('Data Sheet #1','Data Sheet #3'); + +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +echo 'Loading Sheet',((count($sheetnames) == 1) ? '' : 's'),' "',implode('" and "',$sheetnames),'" only<br />'; +$objReader->setLoadSheetsOnly($sheetnames); +$objPHPExcel = $objReader->load($inputFileName); + + +echo '<hr />'; + +echo $objPHPExcel->getSheetCount(),' worksheet',(($objPHPExcel->getSheetCount() == 1) ? '' : 's'),' loaded<br /><br />'; +$loadedSheetNames = $objPHPExcel->getSheetNames(); +foreach($loadedSheetNames as $sheetIndex => $loadedSheetName) { + echo $sheetIndex,' -> ',$loadedSheetName,'<br />'; +} + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader09.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader09.php new file mode 100644 index 0000000..a6cd144 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader09.php @@ -0,0 +1,71 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #09</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #09</h1> +<h2>Simple File Reader Using a Read Filter</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'Excel5'; +// $inputFileType = 'Excel2007'; +// $inputFileType = 'Excel2003XML'; +// $inputFileType = 'OOCalc'; +// $inputFileType = 'Gnumeric'; +$inputFileName = './sampleData/example1.xls'; +$sheetname = 'Data Sheet #3'; + + +class MyReadFilter implements PHPExcel_Reader_IReadFilter +{ + public function readCell($column, $row, $worksheetName = '') { + // Read rows 1 to 7 and columns A to E only + if ($row >= 1 && $row <= 7) { + if (in_array($column,range('A','E'))) { + return true; + } + } + return false; + } +} + +$filterSubset = new MyReadFilter(); + + +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +echo 'Loading Sheet "',$sheetname,'" only<br />'; +$objReader->setLoadSheetsOnly($sheetname); +echo 'Loading Sheet using filter<br />'; +$objReader->setReadFilter($filterSubset); +$objPHPExcel = $objReader->load($inputFileName); + + +echo '<hr />'; + +$sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); +var_dump($sheetData); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader10.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader10.php new file mode 100644 index 0000000..d608c64 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader10.php @@ -0,0 +1,82 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #10</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #10</h1> +<h2>Simple File Reader Using a Configurable Read Filter</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'Excel5'; +// $inputFileType = 'Excel2007'; +// $inputFileType = 'Excel2003XML'; +// $inputFileType = 'OOCalc'; +// $inputFileType = 'Gnumeric'; +$inputFileName = './sampleData/example1.xls'; +$sheetname = 'Data Sheet #3'; + + +class MyReadFilter implements PHPExcel_Reader_IReadFilter +{ + private $_startRow = 0; + + private $_endRow = 0; + + private $_columns = array(); + + public function __construct($startRow, $endRow, $columns) { + $this->_startRow = $startRow; + $this->_endRow = $endRow; + $this->_columns = $columns; + } + + public function readCell($column, $row, $worksheetName = '') { + if ($row >= $this->_startRow && $row <= $this->_endRow) { + if (in_array($column,$this->_columns)) { + return true; + } + } + return false; + } +} + +$filterSubset = new MyReadFilter(9,15,range('G','K')); + + +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +echo 'Loading Sheet "',$sheetname,'" only<br />'; +$objReader->setLoadSheetsOnly($sheetname); +echo 'Loading Sheet using configurable filter<br />'; +$objReader->setReadFilter($filterSubset); +$objPHPExcel = $objReader->load($inputFileName); + + +echo '<hr />'; + +$sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); +var_dump($sheetData); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader11.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader11.php new file mode 100644 index 0000000..becdb63 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader11.php @@ -0,0 +1,91 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #11</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #11</h1> +<h2>Reading a Workbook in "Chunks" Using a Configurable Read Filter (Version 1)</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'Excel5'; +// $inputFileType = 'Excel2007'; +// $inputFileType = 'Excel2003XML'; +// $inputFileType = 'OOCalc'; +// $inputFileType = 'Gnumeric'; +$inputFileName = './sampleData/example2.xls'; + + +/** Define a Read Filter class implementing PHPExcel_Reader_IReadFilter */ +class chunkReadFilter implements PHPExcel_Reader_IReadFilter +{ + private $_startRow = 0; + + private $_endRow = 0; + + /** We expect a list of the rows that we want to read to be passed into the constructor */ + public function __construct($startRow, $chunkSize) { + $this->_startRow = $startRow; + $this->_endRow = $startRow + $chunkSize; + } + + public function readCell($column, $row, $worksheetName = '') { + // Only read the heading row, and the rows that were configured in the constructor + if (($row == 1) || ($row >= $this->_startRow && $row < $this->_endRow)) { + return true; + } + return false; + } +} + + +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; +/** Create a new Reader of the type defined in $inputFileType **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); + + +echo '<hr />'; + + +/** Define how many rows we want for each "chunk" **/ +$chunkSize = 20; + +/** Loop to read our worksheet in "chunk size" blocks **/ +for ($startRow = 2; $startRow <= 240; $startRow += $chunkSize) { + echo 'Loading WorkSheet using configurable filter for headings row 1 and for rows ',$startRow,' to ',($startRow+$chunkSize-1),'<br />'; + /** Create a new Instance of our Read Filter, passing in the limits on which rows we want to read **/ + $chunkFilter = new chunkReadFilter($startRow,$chunkSize); + /** Tell the Reader that we want to use the new Read Filter that we've just Instantiated **/ + $objReader->setReadFilter($chunkFilter); + /** Load only the rows that match our filter from $inputFileName to a PHPExcel Object **/ + $objPHPExcel = $objReader->load($inputFileName); + + // Do some processing here + + $sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); + var_dump($sheetData); + echo '<br /><br />'; +} + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader12.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader12.php new file mode 100644 index 0000000..1df90cd --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader12.php @@ -0,0 +1,94 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #12</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #12</h1> +<h2>Reading a Workbook in "Chunks" Using a Configurable Read Filter (Version 2)</h2> +<?php + +/** Set Include path to point at the PHPExcel Classes folder **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** Include PHPExcel_IOFactory **/ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'Excel5'; +// $inputFileType = 'Excel2007'; +// $inputFileType = 'Excel2003XML'; +// $inputFileType = 'OOCalc'; +// $inputFileType = 'Gnumeric'; +$inputFileName = './sampleData/example2.xls'; + + +/** Define a Read Filter class implementing PHPExcel_Reader_IReadFilter */ +class chunkReadFilter implements PHPExcel_Reader_IReadFilter +{ + private $_startRow = 0; + + private $_endRow = 0; + + /** Set the list of rows that we want to read */ + public function setRows($startRow, $chunkSize) { + $this->_startRow = $startRow; + $this->_endRow = $startRow + $chunkSize; + } + + public function readCell($column, $row, $worksheetName = '') { + // Only read the heading row, and the rows that are configured in $this->_startRow and $this->_endRow + if (($row == 1) || ($row >= $this->_startRow && $row < $this->_endRow)) { + return true; + } + return false; + } +} + + +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; +/** Create a new Reader of the type defined in $inputFileType **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); + + +echo '<hr />'; + + +/** Define how many rows we want to read for each "chunk" **/ +$chunkSize = 20; +/** Create a new Instance of our Read Filter **/ +$chunkFilter = new chunkReadFilter(); + +/** Tell the Reader that we want to use the Read Filter that we've Instantiated **/ +$objReader->setReadFilter($chunkFilter); + +/** Loop to read our worksheet in "chunk size" blocks **/ +for ($startRow = 2; $startRow <= 240; $startRow += $chunkSize) { + echo 'Loading WorkSheet using configurable filter for headings row 1 and for rows ',$startRow,' to ',($startRow+$chunkSize-1),'<br />'; + /** Tell the Read Filter, the limits on which rows we want to read this iteration **/ + $chunkFilter->setRows($startRow,$chunkSize); + /** Load only the rows that match our filter from $inputFileName to a PHPExcel Object **/ + $objPHPExcel = $objReader->load($inputFileName); + + // Do some processing here + + $sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); + var_dump($sheetData); + echo '<br /><br />'; +} + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader13.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader13.php new file mode 100644 index 0000000..255501f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader13.php @@ -0,0 +1,60 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #13</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #13</h1> +<h2>Simple File Reader for Multiple CSV Files</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'CSV'; +$inputFileNames = array('./sampleData/example1.csv','./sampleData/example2.csv'); + +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +$inputFileName = array_shift($inputFileNames); +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' into WorkSheet #1 using IOFactory with a defined reader type of ',$inputFileType,'<br />'; +$objPHPExcel = $objReader->load($inputFileName); +$objPHPExcel->getActiveSheet()->setTitle(pathinfo($inputFileName,PATHINFO_BASENAME)); +foreach($inputFileNames as $sheet => $inputFileName) { + echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' into WorkSheet #',($sheet+2),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; + $objReader->setSheetIndex($sheet+1); + $objReader->loadIntoExisting($inputFileName,$objPHPExcel); + $objPHPExcel->getActiveSheet()->setTitle(pathinfo($inputFileName,PATHINFO_BASENAME)); +} + + +echo '<hr />'; + +echo $objPHPExcel->getSheetCount(),' worksheet',(($objPHPExcel->getSheetCount() == 1) ? '' : 's'),' loaded<br /><br />'; +$loadedSheetNames = $objPHPExcel->getSheetNames(); +foreach($loadedSheetNames as $sheetIndex => $loadedSheetName) { + echo '<b>Worksheet #',$sheetIndex,' -> ',$loadedSheetName,'</b><br />'; + $objPHPExcel->setActiveSheetIndexByName($loadedSheetName); + $sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); + var_dump($sheetData); + echo '<br /><br />'; +} + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader14.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader14.php new file mode 100644 index 0000000..bef1916 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader14.php @@ -0,0 +1,105 @@ +<?php + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #15</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #14</h1> +<h2>Reading a Large CSV file in "Chunks" to split across multiple Worksheets</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'CSV'; +$inputFileName = './sampleData/example2.csv'; + +/** Define a Read Filter class implementing PHPExcel_Reader_IReadFilter */ +class chunkReadFilter implements PHPExcel_Reader_IReadFilter +{ + private $_startRow = 0; + + private $_endRow = 0; + + /** Set the list of rows that we want to read */ + public function setRows($startRow, $chunkSize) { + $this->_startRow = $startRow; + $this->_endRow = $startRow + $chunkSize; + } + + public function readCell($column, $row, $worksheetName = '') { + // Only read the heading row, and the rows that are configured in $this->_startRow and $this->_endRow + if (($row == 1) || ($row >= $this->_startRow && $row < $this->_endRow)) { + return true; + } + return false; + } +} + + +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; +/** Create a new Reader of the type defined in $inputFileType **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); + + +echo '<hr />'; + + +/** Define how many rows we want to read for each "chunk" **/ +$chunkSize = 100; +/** Create a new Instance of our Read Filter **/ +$chunkFilter = new chunkReadFilter(); + +/** Tell the Reader that we want to use the Read Filter that we've Instantiated **/ +/** and that we want to store it in contiguous rows/columns **/ +$objReader->setReadFilter($chunkFilter) + ->setContiguous(true); + + +/** Instantiate a new PHPExcel object manually **/ +$objPHPExcel = new PHPExcel(); + +/** Set a sheet index **/ +$sheet = 0; +/** Loop to read our worksheet in "chunk size" blocks **/ +/** $startRow is set to 2 initially because we always read the headings in row #1 **/ +for ($startRow = 2; $startRow <= 240; $startRow += $chunkSize) { + echo 'Loading WorkSheet #',($sheet+1),' using configurable filter for headings row 1 and for rows ',$startRow,' to ',($startRow+$chunkSize-1),'<br />'; + /** Tell the Read Filter, the limits on which rows we want to read this iteration **/ + $chunkFilter->setRows($startRow,$chunkSize); + + /** Increment the worksheet index pointer for the Reader **/ + $objReader->setSheetIndex($sheet); + /** Load only the rows that match our filter into a new worksheet in the PHPExcel Object **/ + $objReader->loadIntoExisting($inputFileName,$objPHPExcel); + /** Set the worksheet title (to reference the "sheet" of data that we've loaded) **/ + /** and increment the sheet index as well **/ + $objPHPExcel->getActiveSheet()->setTitle('Country Data #'.(++$sheet)); +} + + +echo '<hr />'; + +echo $objPHPExcel->getSheetCount(),' worksheet',(($objPHPExcel->getSheetCount() == 1) ? '' : 's'),' loaded<br /><br />'; +$loadedSheetNames = $objPHPExcel->getSheetNames(); +foreach($loadedSheetNames as $sheetIndex => $loadedSheetName) { + echo '<b>Worksheet #',$sheetIndex,' -> ',$loadedSheetName,'</b><br />'; + $objPHPExcel->setActiveSheetIndexByName($loadedSheetName); + $sheetData = $objPHPExcel->getActiveSheet()->toArray(null,false,false,true); + var_dump($sheetData); + echo '<br />'; +} + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader15.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader15.php new file mode 100644 index 0000000..bb68e90 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader15.php @@ -0,0 +1,71 @@ +<?php + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #15</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #15</h1> +<h2>Simple File Reader for Tab-Separated Value File using the Advanced Value Binder</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +PHPExcel_Cell::setValueBinder( new PHPExcel_Cell_AdvancedValueBinder() ); + + +$inputFileType = 'CSV'; +$inputFileName = './sampleData/example1.tsv'; + +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' into WorkSheet #1 using IOFactory with a defined reader type of ',$inputFileType,'<br />'; +$objReader->setDelimiter("\t"); +$objPHPExcel = $objReader->load($inputFileName); +$objPHPExcel->getActiveSheet()->setTitle(pathinfo($inputFileName,PATHINFO_BASENAME)); + + +echo '<hr />'; + +echo $objPHPExcel->getSheetCount(),' worksheet',(($objPHPExcel->getSheetCount() == 1) ? '' : 's'),' loaded<br /><br />'; +$loadedSheetNames = $objPHPExcel->getSheetNames(); +foreach($loadedSheetNames as $sheetIndex => $loadedSheetName) { + echo '<b>Worksheet #',$sheetIndex,' -> ',$loadedSheetName,' (Formatted)</b><br />'; + $objPHPExcel->setActiveSheetIndexByName($loadedSheetName); + $sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); + var_dump($sheetData); + echo '<br />'; +} + +echo '<hr />'; + +foreach($loadedSheetNames as $sheetIndex => $loadedSheetName) { + echo '<b>Worksheet #',$sheetIndex,' -> ',$loadedSheetName,' (Unformatted)</b><br />'; + $objPHPExcel->setActiveSheetIndexByName($loadedSheetName); + $sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,false,true); + var_dump($sheetData); + echo '<br />'; +} + +echo '<hr />'; + +foreach($loadedSheetNames as $sheetIndex => $loadedSheetName) { + echo '<b>Worksheet #',$sheetIndex,' -> ',$loadedSheetName,' (Raw)</b><br />'; + $objPHPExcel->setActiveSheetIndexByName($loadedSheetName); + $sheetData = $objPHPExcel->getActiveSheet()->toArray(null,false,false,true); + var_dump($sheetData); + echo '<br />'; +} + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader16.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader16.php new file mode 100644 index 0000000..62d82ea --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader16.php @@ -0,0 +1,46 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #16</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #16</h1> +<h2>Handling Loader Exceptions using Try/Catch</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileName = './sampleData/example_1.xls'; +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory to identify the format<br />'; +try { + $objPHPExcel = PHPExcel_IOFactory::load($inputFileName); +} catch(PHPExcel_Reader_Exception $e) { + die('Error loading file "'.pathinfo($inputFileName,PATHINFO_BASENAME).'": '.$e->getMessage()); +} + + +echo '<hr />'; + +$sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); +var_dump($sheetData); + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader17.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader17.php new file mode 100644 index 0000000..1f77c56 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader17.php @@ -0,0 +1,52 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #17</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #17</h1> +<h2>Simple File Reader Loading Several Named WorkSheets</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'Excel5'; +// $inputFileType = 'Excel2007'; +// $inputFileType = 'Excel2003XML'; +// $inputFileType = 'OOCalc'; +// $inputFileType = 'Gnumeric'; +$inputFileName = './sampleData/example1.xls'; + +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; +$objReader = PHPExcel_IOFactory::createReader($inputFileType); + + +/** Read the list of Worksheet Names from the Workbook file **/ +echo 'Read the list of Worksheets in the WorkBook<br />'; +$worksheetNames = $objReader->listWorksheetNames($inputFileName); + +echo 'There are ',count($worksheetNames),' worksheet',((count($worksheetNames) == 1) ? '' : 's'),' in the workbook<br /><br />'; +foreach($worksheetNames as $worksheetName) { + echo $worksheetName,'<br />'; +} + + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader18.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader18.php new file mode 100644 index 0000000..438d886 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader18.php @@ -0,0 +1,50 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #18</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #18</h1> +<h2>Reading list of WorkSheets without loading entire file</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'Excel5'; +// $inputFileType = 'Excel2007'; +// $inputFileType = 'Excel2003XML'; +// $inputFileType = 'OOCalc'; +// $inputFileType = 'Gnumeric'; +$inputFileName = './sampleData/example1.xls'; + +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' information using IOFactory with a defined reader type of ',$inputFileType,'<br />'; + +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +$worksheetNames = $objReader->listWorksheetNames($inputFileName); + +echo '<h3>Worksheet Names</h3>'; +echo '<ol>'; +foreach ($worksheetNames as $worksheetName) { + echo '<li>', $worksheetName, '</li>'; +} +echo '</ol>'; + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader19.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader19.php new file mode 100644 index 0000000..2f3eaaf --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader19.php @@ -0,0 +1,53 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reader Example #19</title> + +</head> +<body> + +<h1>PHPExcel Reader Example #19</h1> +<h2>Reading WorkSheet information without loading entire file</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'Excel5'; +// $inputFileType = 'Excel2007'; +// $inputFileType = 'Excel2003XML'; +// $inputFileType = 'OOCalc'; +// $inputFileType = 'Gnumeric'; +$inputFileName = './sampleData/example1.xls'; + +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' information using IOFactory with a defined reader type of ',$inputFileType,'<br />'; + +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +$worksheetData = $objReader->listWorksheetInfo($inputFileName); + +echo '<h3>Worksheet Information</h3>'; +echo '<ol>'; +foreach ($worksheetData as $worksheet) { + echo '<li>', $worksheet['worksheetName'], '<br />'; + echo 'Rows: ', $worksheet['totalRows'], ' Columns: ', $worksheet['totalColumns'], '<br />'; + echo 'Cell Range: A1:', $worksheet['lastColumnLetter'], $worksheet['totalRows']; + echo '</li>'; +} +echo '</ol>'; + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example1.csv b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example1.csv new file mode 100644 index 0000000..6344d9f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example1.csv @@ -0,0 +1,4 @@ +First Name,Last Name,Nationality,Gender,Date of Birth,Time of Birth,Date/Time,PHP Coder,Sanity %Age +Mark,Baker,British,M,19-Dec-1960,01:30,=E2+F2,TRUE,32% +Toni,Baker,British,F,24-Nov-1950,20:00,=E3+F3,FALSE,95% +Rachel,Baker,British,F,7-Dec-1982,00:15,=E4+F4,FALSE,100% \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example1.tsv b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example1.tsv new file mode 100644 index 0000000..35de476 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example1.tsv @@ -0,0 +1,4 @@ +First Name Last Name Nationality Gender Date of Birth Time of Birth Date/Time PHP Coder Sanity %Age +Mark Baker British M 19-Dec-1960 01:30 =E2+F2 TRUE 32% +Toni Baker British F 24-Nov-1950 20:00 =E3+F3 FALSE 95% +Rachel Baker British F 7-Dec-1982 00:15 =E4+F4 FALSE 100% \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example1.xls b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example1.xls new file mode 100644 index 0000000000000000000000000000000000000000..bd9bb110b9a41b0aab816ba9e20682ee5bb43aea GIT binary patch literal 22528 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example2.csv b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example2.csv new file mode 100644 index 0000000..3f5e998 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example2.csv @@ -0,0 +1,223 @@ +"City","Country","Latitude","Longitude" +"Kabul","Afghanistan",34.528455,69.171703 +"Tirane","Albania",41.33,19.82 +"Algiers","Algeria",36.752887,3.042048 +"Pago Pago","American Samoa",-14.27933,-170.700897 +"Andorra la Vella","Andorra",42.507531,1.521816 +"Luanda","Angola",-8.838333,13.234444 +"Buenos Aires","Argentina",-34.608417,-58.373161 +"Yerevan","Armenia",40.183333,44.516667 +"Oranjestad","Aruba",12.52458,-70.026459 +"Canberra","Australia",-35.3075,149.124417 +"Vienna","Austria",48.208333,16.373056 +"Baku","Azerbaijan",40.379571,49.891233 +"Nassau","Bahamas",25.06,-77.345 +"Manama","Bahrain",26.216667,50.583333 +"Dhaka","Bangladesh",23.709921,90.407143 +"Bridgetown","Barbados",13.096111,-59.608333 +"Minsk","Belarus",53.9,27.566667 +"Brussels","Belgium",50.846281,4.354727 +"Belmopan","Belize",17.251389,-88.766944 +"Thimphu","Bhutan",27.466667,89.641667 +"La Paz","Bolivia",-16.49901,-68.146248 +"Sarajevo","Bosnia and Herzegovina",43.8476,18.3564 +"Gaborone","Botswana",-24.65411,25.908739 +"Brasilia","Brazil",-15.780148,-47.92917 +"Road Town","British Virgin Islands",18.433333,-64.616667 +"Bandar Seri Begawan","Brunei Darussalam",4.9431,114.9425 +"Sofia","Bulgaria",42.697626,23.322284 +"Ouagadougou","Burkina Faso",12.364637,-1.533864 +"Bujumbura","Burundi",-3.361378,29.359878 +"Phnom Penh","Cambodia",11.55,104.916667 +"Yaounde","Cameroon",3.866667,11.516667 +"Ottawa","Canada",45.423494,-75.697933 +"Praia","Cape Verde",14.920833,-23.508333 +"George Town","Cayman Islands",19.286932,-81.367439 +"Bangui","Central African Republic",4.361698,18.555975 +"N'Djamena","Chad",12.104797,15.044506 +"Santiago","Chile",-33.42536,-70.566466 +"Beijing","China",39.904667,116.408198 +"Bogota","Colombia",4.647302,-74.096268 +"Moroni","Comoros",-11.717216,43.247315 +"Brazzaville","Congo",-4.266667,15.283333 +"San Jose","Costa Rica",9.933333,-84.083333 +"Yamoussoukro","Cote d'Ivoire",6.816667,-5.283333 +"Zagreb","Croatia",45.814912,15.978515 +"Havana","Cuba",23.133333,-82.366667 +"Nicosia","Cyprus",35.166667,33.366667 +"Prague","Czech Republic",50.087811,14.42046 +"Kinshasa","Congo",-4.325,15.322222 +"Copenhagen","Denmark",55.676294,12.568116 +"Djibouti","Djibouti",11.588,43.145 +"Roseau","Dominica",15.301389,-61.388333 +"Santo Domingo","Dominican Republic",18.5,-69.983333 +"Dili","East Timor",-8.566667,125.566667 +"Quito","Ecuador",-0.229498,-78.524277 +"Cairo","Egypt",30.064742,31.249509 +"San Salvador","El Salvador",13.69,-89.190003 +"Malabo","Equatorial Guinea",3.75,8.783333 +"Asmara","Eritrea",15.33236,38.92617 +"Tallinn","Estonia",59.438862,24.754472 +"Addis Ababa","Ethiopia",9.022736,38.746799 +"Stanley","Falkland Islands",-51.700981,-57.84919 +"Torshavn","Faroe Islands",62.017707,-6.771879 +"Suva","Fiji",-18.1416,178.4419 +"Helsinki","Finland",60.169813,24.93824 +"Paris","France",48.856667,2.350987 +"Cayenne","French Guiana",4.9227,-52.3269 +"Papeete","French Polynesia",-17.535021,-149.569595 +"Libreville","Gabon",0.390841,9.453644 +"Banjul","Gambia",13.453056,-16.5775 +"T'bilisi","Georgia",41.716667,44.783333 +"Berlin","Germany",52.523405,13.4114 +"Accra","Ghana",5.555717,-0.196306 +"Athens","Greece",37.97918,23.716647 +"Nuuk","Greenland",64.18362,-51.721407 +"Basse-Terre","Guadeloupe",15.998503,-61.72202 +"Guatemala","Guatemala",14.641389,-90.513056 +"St. Peter Port","Guernsey",49.458858,-2.534752 +"Conakry","Guinea",9.537029,-13.67847 +"Bissau","Guinea-Bissau",11.866667,-15.6 +"Georgetown","Guyana",6.804611,-58.154831 +"Port-au-Prince","Haiti",18.539269,-72.336408 +"Tegucigalpa","Honduras",14.082054,-87.206285 +"Budapest","Hungary",47.498406,19.040758 +"Reykjavik","Iceland",64.135338,-21.89521 +"New Delhi","India",28.635308,77.22496 +"Jakarta","Indonesia",-6.211544,106.845172 +"Tehran","Iran",35.696216,51.422945 +"Baghdad","Iraq",33.3157,44.3922 +"Dublin","Ireland",53.344104,-6.267494 +"Jerusalem","Israel",31.7857,35.2007 +"Rome","Italy",41.895466,12.482324 +"Kingston","Jamaica",17.992731,-76.792009 +"St. Helier","Jersey",49.190278,-2.108611 +"Amman","Jordan",31.956578,35.945695 +"Astana","Kazakhstan",51.10,71.30 +"Nairobi","Kenya",-01.17,36.48 +"Tarawa","Kiribati",01.30,173.00 +"Seoul","South Korea",37.31,126.58 +"Kuwait City","Kuwait",29.30,48.00 +"Bishkek","Kyrgyzstan",42.54,74.46 +"Riga","Latvia",56.53,24.08 +"Beirut","Lebanon",33.53,35.31 +"Maseru","Lesotho",-29.18,27.30 +"Monrovia","Liberia",06.18,-10.47 +"Vaduz","Liechtenstein",47.08,09.31 +"Vilnius","Lithuania",54.38,25.19 +"Luxembourg","Luxembourg",49.37,06.09 +"Antananarivo","Madagascar",-18.55,47.31 +"Lilongwe","Malawi",-14.00,33.48 +"Kuala Lumpur","Malaysia",03.09,101.41 +"Male","Maldives",04.00,73.28 +"Bamako","Mali",12.34,-07.55 +"Valletta","Malta",35.54,14.31 +"Fort-de-France","Martinique",14.36,-61.02 +"Nouakchott","Mauritania",-20.10,57.30 +"Mamoudzou","Mayotte",-12.48,45.14 +"Mexico City","Mexico",19.20,-99.10 +"Palikir","Micronesia",06.55,158.09 +"Chisinau","Moldova",47.02,28.50 +"Maputo","Mozambique",-25.58,32.32 +"Yangon","Myanmar",16.45,96.20 +"Windhoek","Namibia",-22.35,17.04 +"Kathmandu","Nepal",27.45,85.20 +"Amsterdam","Netherlands",52.23,04.54 +"Willemstad","Netherlands Antilles",12.05,-69.00 +"Noumea","New Caledonia",-22.17,166.30 +"Wellington","New Zealand",-41.19,174.46 +"Managua","Nicaragua",12.06,-86.20 +"Niamey","Niger",13.27,02.06 +"Abuja","Nigeria",09.05,07.32 +"Kingston","Norfolk Island",-45.20,168.43 +"Saipan","Northern Mariana Islands",15.12,145.45 +"Oslo","Norway",59.55,10.45 +"Masqat","Oman",23.37,58.36 +"Islamabad","Pakistan",33.40,73.10 +"Koror","Palau",07.20,134.28 +"Panama City","Panama",09.00,-79.25 +"Port Moresby","Papua New Guinea",-09.24,147.08 +"Asuncion","Paraguay",-25.10,-57.30 +"Lima","Peru",-12.00,-77.00 +"Manila","Philippines",14.40,121.03 +"Warsaw","Poland",52.13,21.00 +"Lisbon","Portugal",38.42,-09.10 +"San Juan","Puerto Rico",18.28,-66.07 +"Doha","Qatar",25.15,51.35 +"Bucuresti","Romania",44.27,26.10 +"Moskva","Russian Federation",55.45,37.35 +"Kigali","Rawanda",-01.59,30.04 +"Basseterre","Saint Kitts and Nevis",17.17,-62.43 +"Castries","Saint Lucia",14.02,-60.58 +"Saint-Pierre","Saint Pierre and Miquelon",46.46,-56.12 +"Apia","Samoa",-13.50,-171.50 +"San Marino","San Marino",43.55,12.30 +"Sao Tome","Sao Tome and Principe",00.10,06.39 +"Riyadh","Saudi Arabia",24.41,46.42 +"Dakar","Senegal",14.34,-17.29 +"Freetown","Sierra Leone",08.30,-13.17 +"Bratislava","Slovakia",48.10,17.07 +"Ljubljana","Slovenia",46.04,14.33 +"Honiara","Solomon Islands",-09.27,159.57 +"Mogadishu","Somalia",02.02,45.25 +"Pretoria","South Africa",-25.44,28.12 +"Madrid","Spain",40.25,-03.45 +"Khartoum","Sudan",15.31,32.35 +"Paramaribo","Suriname",05.50,-55.10 +"Mbabane","Swaziland",-26.18,31.06 +"Stockholm","Sweden",59.20,18.03 +"Bern","Switzerland",46.57,07.28 +"Damascus","Syrian Arab Republic",33.30,36.18 +"Dushanbe","Tajikistan",38.33,68.48 +"Bangkok","Thailand",13.45,100.35 +"Lome","Togo",06.09,01.20 +"Nuku'alofa","Tonga",-21.10,-174.00 +"Tunis","Tunisia",36.50,10.11 +"Ankara","Turkey",39.57,32.54 +"Ashgabat","Turkmenistan",38.00,57.50 +"Funafuti","Tuvalu",-08.31,179.13 +"Kampala","Uganda",00.20,32.30 +"Kiev","Ukraine",50.30,30.28 +"Abu Dhabi","United Arab Emirates",24.28,54.22 +"London","United Kingdom",51.36,-00.05 +"Dodoma","Tanzania",-06.08,35.45 +"Washington DC","United States of America",39.91,-77.02 +"Montevideo","Uruguay",-34.50,-56.11 +"Tashkent","Uzbekistan",41.20,69.10 +"Port-Vila","Vanuatu",-17.45,168.18 +"Caracas","Venezuela",10.30,-66.55 +"Hanoi","Viet Nam",21.05,105.55 +"Belgrade","Yugoslavia",44.50,20.37 +"Lusaka","Zambia",-15.28,28.16 +"Harare","Zimbabwe",-17.43,31.02 +"St. John's","Antigua and Barbuda",17.08,-61.50 +"Porto Novo","Benin",06.30,02.47 +"Hamilton","Bermuda"","32.18,-64.48 +"Avarua","Cook Islands",-21.12,-159.46 +"St. George's","Grenada",12.04,-61.44 +"Agaña","Guam",13.28,144.45 +"Victoria","Hong Kong",22.16,114.13 +"Tokyo","Japan",35.40,139.45 +"Pyongyang","North Korea",39.00,125.47 +"Vientiane","Laos",17.59,102.38 +"Tripoli","Libya",32.54,013.11 +"Skopje","Macedonia",42.00,021.28 +"Majuro","Marshall Islands",07.05,171.08 +"Port Louis","Mauritius",-20.10,57.30 +"Monaco","Monaco",43.44,007.25 +"Ulan Bator","Mongolia",47.54,106.52 +"Plymouth","Montserrat",16.44,-62.14 +"Rabat","Morocco",34.02,-06.51 +"Alofi","Niue",-14.27,-178.05 +"Saint-Denis","Réunion",-20.52,55.27 +"Victoria","Seychelles",-04.38,55.28 +"Singapore","Singapore",01.18,103.50 +"Colombo","Sri Lanka",06.55,79.52 +"Kingstown","St Vincent and the Grenadines",13.12,-61.14 +"Taipei","Taiwan",25.50,121.32 +"Port-of-Spain","Trinidad and Tobago",10.38,-61.31 +"Cockburn Harbour","Turks and Caicos Islands",21.30,-71.30 +"Charlotte Amalie","US Virgin Islands",18.22,-64.56 +"Vatican City","Vatican State",41.54,12.27 +"Laàyoune","Western Sahara",27.10,-13.11 +"San'a","Yemen",15.24,44.14 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example2.xls b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example2.xls new file mode 100644 index 0000000000000000000000000000000000000000..dd213ab9428bc6fbdd8caf253528b92367e9a9e1 GIT binary patch literal 36864 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader01.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader01.php new file mode 100644 index 0000000..4f8dfdf --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader01.php @@ -0,0 +1,93 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reading WorkBook Data Example #01</title> + +</head> +<body> + +<h1>PHPExcel Reading WorkBook Data Example #01</h1> +<h2>Read the WorkBook Properties</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'Excel5'; +$inputFileName = './sampleData/example1.xls'; + +/** Create a new Reader of the type defined in $inputFileType **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +/** Load $inputFileName to a PHPExcel Object **/ +$objPHPExcel = $objReader->load($inputFileName); + + +echo '<hr />'; + +/** Read the document's creator property **/ +$creator = $objPHPExcel->getProperties()->getCreator(); +echo '<b>Document Creator: </b>',$creator,'<br />'; + +/** Read the Date when the workbook was created (as a PHP timestamp value) **/ +$creationDatestamp = $objPHPExcel->getProperties()->getCreated(); +/** Format the date and time using the standard PHP date() function **/ +$creationDate = date('l, d<\s\up>S</\s\up> F Y',$creationDatestamp); +$creationTime = date('g:i A',$creationDatestamp); +echo '<b>Created On: </b>',$creationDate,' at ',$creationTime,'<br />'; + +/** Read the name of the last person to modify this workbook **/ +$modifiedBy = $objPHPExcel->getProperties()->getLastModifiedBy(); +echo '<b>Last Modified By: </b>',$modifiedBy,'<br />'; + +/** Read the Date when the workbook was last modified (as a PHP timestamp value) **/ +$modifiedDatestamp = $objPHPExcel->getProperties()->getModified(); +/** Format the date and time using the standard PHP date() function **/ +$modifiedDate = date('l, d<\s\up>S</\s\up> F Y',$modifiedDatestamp); +$modifiedTime = date('g:i A',$modifiedDatestamp); +echo '<b>Last Modified On: </b>',$modifiedDate,' at ',$modifiedTime,'<br />'; + +/** Read the workbook title property **/ +$workbookTitle = $objPHPExcel->getProperties()->getTitle(); +echo '<b>Title: </b>',$workbookTitle,'<br />'; + +/** Read the workbook description property **/ +$description = $objPHPExcel->getProperties()->getDescription(); +echo '<b>Description: </b>',$description,'<br />'; + +/** Read the workbook subject property **/ +$subject = $objPHPExcel->getProperties()->getSubject(); +echo '<b>Subject: </b>',$subject,'<br />'; + +/** Read the workbook keywords property **/ +$keywords = $objPHPExcel->getProperties()->getKeywords(); +echo '<b>Keywords: </b>',$keywords,'<br />'; + +/** Read the workbook category property **/ +$category = $objPHPExcel->getProperties()->getCategory(); +echo '<b>Category: </b>',$category,'<br />'; + +/** Read the workbook company property **/ +$company = $objPHPExcel->getProperties()->getCompany(); +echo '<b>Company: </b>',$company,'<br />'; + +/** Read the workbook manager property **/ +$manager = $objPHPExcel->getProperties()->getManager(); +echo '<b>Manager: </b>',$manager,'<br />'; + + +?> +<body> +</html> diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader02.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader02.php new file mode 100644 index 0000000..b8c359d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader02.php @@ -0,0 +1,52 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reading WorkBook Data Example #02</title> + +</head> +<body> + +<h1>PHPExcel Reading WorkBook Data Example #02</h1> +<h2>Read a list of Custom Properties for a WorkBook</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'Excel2007'; +$inputFileName = './sampleData/example1.xlsx'; + +/** Create a new Reader of the type defined in $inputFileType **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +/** Load $inputFileName to a PHPExcel Object **/ +$objPHPExcel = $objReader->load($inputFileName); + + +echo '<hr />'; + +/** Read an array list of any custom properties for this document **/ +$customPropertyList = $objPHPExcel->getProperties()->getCustomProperties(); + +echo '<b>Custom Property names: </b><br />'; +foreach($customPropertyList as $customPropertyName) { + echo $customPropertyName,'<br />'; +} + + + +?> +<body> +</html> diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader03.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader03.php new file mode 100644 index 0000000..8fb350d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader03.php @@ -0,0 +1,80 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reading WorkBook Data Example #03</title> + +</head> +<body> + +<h1>PHPExcel Reading WorkBook Data Example #03</h1> +<h2>Read Custom Property Values for a WorkBook</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'Excel2007'; +$inputFileName = './sampleData/example1.xlsx'; + +/** Create a new Reader of the type defined in $inputFileType **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +/** Load $inputFileName to a PHPExcel Object **/ +$objPHPExcel = $objReader->load($inputFileName); + + +echo '<hr />'; + +/** Read an array list of any custom properties for this document **/ +$customPropertyList = $objPHPExcel->getProperties()->getCustomProperties(); + +echo '<b>Custom Properties: </b><br />'; +/** Loop through the list of custom properties **/ +foreach($customPropertyList as $customPropertyName) { + echo '<b>',$customPropertyName,': </b>'; + /** Retrieve the property value **/ + $propertyValue = $objPHPExcel->getProperties()->getCustomPropertyValue($customPropertyName); + /** Retrieve the property type **/ + $propertyType = $objPHPExcel->getProperties()->getCustomPropertyType($customPropertyName); + + /** Manipulate properties as appropriate for display purposes **/ + switch($propertyType) { + case 'i' : // integer + $propertyType = 'integer number'; + break; + case 'f' : // float + $propertyType = 'floating point number'; + break; + case 's' : // string + $propertyType = 'string'; + break; + case 'd' : // date + $propertyValue = date('l, d<\s\up>S</\s\up> F Y g:i A',$propertyValue); + $propertyType = 'date'; + break; + case 'b' : // boolean + $propertyValue = ($propertyValue) ? 'TRUE' : 'FALSE'; + $propertyType = 'boolean'; + break; + } + + echo $propertyValue,' (',$propertyType,')<br />'; +} + + + +?> +<body> +</html> diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader04.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader04.php new file mode 100644 index 0000000..05ff637 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader04.php @@ -0,0 +1,55 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Reading WorkBook Data Example #04</title> + +</head> +<body> + +<h1>PHPExcel Reading WorkBook Data Example #04</h1> +<h2>Get a List of the Worksheets in a WorkBook</h2> +<?php + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +$inputFileType = 'Excel5'; +$inputFileName = './sampleData/example2.xls'; + +/** Create a new Reader of the type defined in $inputFileType **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +/** Load $inputFileName to a PHPExcel Object **/ +$objPHPExcel = $objReader->load($inputFileName); + + +echo '<hr />'; + +echo 'Reading the number of Worksheets in the WorkBook<br />'; +/** Use the PHPExcel object's getSheetCount() method to get a count of the number of WorkSheets in the WorkBook */ +$sheetCount = $objPHPExcel->getSheetCount(); +echo 'There ',(($sheetCount == 1) ? 'is' : 'are'),' ',$sheetCount,' WorkSheet',(($sheetCount == 1) ? '' : 's'),' in the WorkBook<br /><br />'; + +echo 'Reading the names of Worksheets in the WorkBook<br />'; +/** Use the PHPExcel object's getSheetNames() method to get an array listing the names/titles of the WorkSheets in the WorkBook */ +$sheetNames = $objPHPExcel->getSheetNames(); +foreach($sheetNames as $sheetIndex => $sheetName) { + echo 'WorkSheet #',$sheetIndex,' is named "',$sheetName,'"<br />'; +} + + +?> +<body> +</html> diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/sampleData/example1.xls b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/sampleData/example1.xls new file mode 100644 index 0000000000000000000000000000000000000000..0db0efdcdb6da3a7a99f5e347f034f78c3c57fce GIT binary patch literal 20992 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 Y+#9?HP7=1j=i_tce^7sVsjTw<4dj0Ds{jB1 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/sampleData/example1.xlsx b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/sampleData/example1.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..2224dd4fe674dba451e53d763dac310aa30a3b85 GIT binary patch literal 9733 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 M_6QwBG5>b<KTJRJ0ssI2 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/sampleData/example2.xls b/src/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/sampleData/example2.xls new file mode 100644 index 0000000000000000000000000000000000000000..18bfcf474a867eb2d494d121fe767b936ec262ff GIT binary patch literal 22528 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Examples/index.php b/src/vendor/phpoffice/phpexcel/Documentation/Examples/index.php new file mode 100644 index 0000000..f657a7a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/Examples/index.php @@ -0,0 +1,50 @@ +<?php + +error_reporting(E_ALL); +set_time_limit(0); + +date_default_timezone_set('Europe/London'); + +?> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<title>PHPExcel Examples</title> + +</head> +<body> + +<?php + +$exampleTypeList = glob('./*',GLOB_ONLYDIR); + +foreach($exampleTypeList as $exampleType) { + + echo '<h1>PHPExcel ' . pathinfo($exampleType,PATHINFO_BASENAME) . ' Examples</h1>'; + + $exampleList = glob('./'.$exampleType.'/*.php'); + + foreach($exampleList as $exampleFile) { + $fileData = file_get_contents($exampleFile); + + $h1Pattern = '#<h1>(.*?)</h1>#'; + $h2Pattern = '#<h2>(.*?)</h2>#'; + + if (preg_match($h1Pattern, $fileData, $out)) { + $h1Text = $out[1]; + $h2Text = (preg_match($h2Pattern, $fileData, $out)) ? $out[1] : ''; + + echo '<a href="',$exampleFile,'">',$h1Text,'</a><br />'; + if (($h2Text > '') && + (pathinfo($exampleType,PATHINFO_BASENAME) != 'Calculations')) { + echo $h2Text,'<br />'; + } + } + + } +} + +?> +<body> +</html> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/FunctionListByCategory.txt b/src/vendor/phpoffice/phpexcel/Documentation/FunctionListByCategory.txt new file mode 100644 index 0000000..b23d9a1 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/FunctionListByCategory.txt @@ -0,0 +1,377 @@ +CATEGORY_CUBE + CUBEKPIMEMBER *** Not yet Implemented + CUBEMEMBER *** Not yet Implemented + CUBEMEMBERPROPERTY *** Not yet Implemented + CUBERANKEDMEMBER *** Not yet Implemented + CUBESET *** Not yet Implemented + CUBESETCOUNT *** Not yet Implemented + CUBEVALUE *** Not yet Implemented + +CATEGORY_DATABASE + DAVERAGE PHPExcel_Calculation_Database::DAVERAGE + DCOUNT PHPExcel_Calculation_Database::DCOUNT + DCOUNTA PHPExcel_Calculation_Database::DCOUNTA + DGET PHPExcel_Calculation_Database::DGET + DMAX PHPExcel_Calculation_Database::DMAX + DMIN PHPExcel_Calculation_Database::DMIN + DPRODUCT PHPExcel_Calculation_Database::DPRODUCT + DSTDEV PHPExcel_Calculation_Database::DSTDEV + DSTDEVP PHPExcel_Calculation_Database::DSTDEVP + DSUM PHPExcel_Calculation_Database::DSUM + DVAR PHPExcel_Calculation_Database::DVAR + DVARP PHPExcel_Calculation_Database::DVARP + +CATEGORY_DATE_AND_TIME + DATE PHPExcel_Calculation_DateTime::DATE + DATEDIF PHPExcel_Calculation_DateTime::DATEDIF + DATEVALUE PHPExcel_Calculation_DateTime::DATEVALUE + DAY PHPExcel_Calculation_DateTime::DAYOFMONTH + DAYS360 PHPExcel_Calculation_DateTime::DAYS360 + EDATE PHPExcel_Calculation_DateTime::EDATE + EOMONTH PHPExcel_Calculation_DateTime::EOMONTH + HOUR PHPExcel_Calculation_DateTime::HOUROFDAY + MINUTE PHPExcel_Calculation_DateTime::MINUTEOFHOUR + MONTH PHPExcel_Calculation_DateTime::MONTHOFYEAR + NETWORKDAYS PHPExcel_Calculation_DateTime::NETWORKDAYS + NOW PHPExcel_Calculation_DateTime::DATETIMENOW + SECOND PHPExcel_Calculation_DateTime::SECONDOFMINUTE + TIME PHPExcel_Calculation_DateTime::TIME + TIMEVALUE PHPExcel_Calculation_DateTime::TIMEVALUE + TODAY PHPExcel_Calculation_DateTime::DATENOW + WEEKDAY PHPExcel_Calculation_DateTime::DAYOFWEEK + WEEKNUM PHPExcel_Calculation_DateTime::WEEKOFYEAR + WORKDAY PHPExcel_Calculation_DateTime::WORKDAY + YEAR PHPExcel_Calculation_DateTime::YEAR + YEARFRAC PHPExcel_Calculation_DateTime::YEARFRAC + +CATEGORY_ENGINEERING + BESSELI PHPExcel_Calculation_Engineering::BESSELI + BESSELJ PHPExcel_Calculation_Engineering::BESSELJ + BESSELK PHPExcel_Calculation_Engineering::BESSELK + BESSELY PHPExcel_Calculation_Engineering::BESSELY + BIN2DEC PHPExcel_Calculation_Engineering::BINTODEC + BIN2HEX PHPExcel_Calculation_Engineering::BINTOHEX + BIN2OCT PHPExcel_Calculation_Engineering::BINTOOCT + COMPLEX PHPExcel_Calculation_Engineering::COMPLEX + CONVERT PHPExcel_Calculation_Engineering::CONVERTUOM + DEC2BIN PHPExcel_Calculation_Engineering::DECTOBIN + DEC2HEX PHPExcel_Calculation_Engineering::DECTOHEX + DEC2OCT PHPExcel_Calculation_Engineering::DECTOOCT + DELTA PHPExcel_Calculation_Engineering::DELTA + ERF PHPExcel_Calculation_Engineering::ERF + ERFC PHPExcel_Calculation_Engineering::ERFC + GESTEP PHPExcel_Calculation_Engineering::GESTEP + HEX2BIN PHPExcel_Calculation_Engineering::HEXTOBIN + HEX2DEC PHPExcel_Calculation_Engineering::HEXTODEC + HEX2OCT PHPExcel_Calculation_Engineering::HEXTOOCT + IMABS PHPExcel_Calculation_Engineering::IMABS + IMAGINARY PHPExcel_Calculation_Engineering::IMAGINARY + IMARGUMENT PHPExcel_Calculation_Engineering::IMARGUMENT + IMCONJUGATE PHPExcel_Calculation_Engineering::IMCONJUGATE + IMCOS PHPExcel_Calculation_Engineering::IMCOS + IMDIV PHPExcel_Calculation_Engineering::IMDIV + IMEXP PHPExcel_Calculation_Engineering::IMEXP + IMLN PHPExcel_Calculation_Engineering::IMLN + IMLOG10 PHPExcel_Calculation_Engineering::IMLOG10 + IMLOG2 PHPExcel_Calculation_Engineering::IMLOG2 + IMPOWER PHPExcel_Calculation_Engineering::IMPOWER + IMPRODUCT PHPExcel_Calculation_Engineering::IMPRODUCT + IMREAL PHPExcel_Calculation_Engineering::IMREAL + IMSIN PHPExcel_Calculation_Engineering::IMSIN + IMSQRT PHPExcel_Calculation_Engineering::IMSQRT + IMSUB PHPExcel_Calculation_Engineering::IMSUB + IMSUM PHPExcel_Calculation_Engineering::IMSUM + OCT2BIN PHPExcel_Calculation_Engineering::OCTTOBIN + OCT2DEC PHPExcel_Calculation_Engineering::OCTTODEC + OCT2HEX PHPExcel_Calculation_Engineering::OCTTOHEX + +CATEGORY_FINANCIAL + ACCRINT PHPExcel_Calculation_Financial::ACCRINT + ACCRINTM PHPExcel_Calculation_Financial::ACCRINTM + AMORDEGRC PHPExcel_Calculation_Financial::AMORDEGRC + AMORLINC PHPExcel_Calculation_Financial::AMORLINC + COUPDAYBS PHPExcel_Calculation_Financial::COUPDAYBS + COUPDAYS PHPExcel_Calculation_Financial::COUPDAYS + COUPDAYSNC PHPExcel_Calculation_Financial::COUPDAYSNC + COUPNCD PHPExcel_Calculation_Financial::COUPNCD + COUPNUM PHPExcel_Calculation_Financial::COUPNUM + COUPPCD PHPExcel_Calculation_Financial::COUPPCD + CUMIPMT PHPExcel_Calculation_Financial::CUMIPMT + CUMPRINC PHPExcel_Calculation_Financial::CUMPRINC + DB PHPExcel_Calculation_Financial::DB + DDB PHPExcel_Calculation_Financial::DDB + DISC PHPExcel_Calculation_Financial::DISC + DOLLARDE PHPExcel_Calculation_Financial::DOLLARDE + DOLLARFR PHPExcel_Calculation_Financial::DOLLARFR + DURATION *** Not yet Implemented + EFFECT PHPExcel_Calculation_Financial::EFFECT + FV PHPExcel_Calculation_Financial::FV + FVSCHEDULE PHPExcel_Calculation_Financial::FVSCHEDULE + INTRATE PHPExcel_Calculation_Financial::INTRATE + IPMT PHPExcel_Calculation_Financial::IPMT + IRR PHPExcel_Calculation_Financial::IRR + ISPMT PHPExcel_Calculation_Financial::ISPMT + MDURATION *** Not yet Implemented + MIRR PHPExcel_Calculation_Financial::MIRR + NOMINAL PHPExcel_Calculation_Financial::NOMINAL + NPER PHPExcel_Calculation_Financial::NPER + NPV PHPExcel_Calculation_Financial::NPV + ODDFPRICE *** Not yet Implemented + ODDFYIELD *** Not yet Implemented + ODDLPRICE *** Not yet Implemented + ODDLYIELD *** Not yet Implemented + PMT PHPExcel_Calculation_Financial::PMT + PPMT PHPExcel_Calculation_Financial::PPMT + PRICE PHPExcel_Calculation_Financial::PRICE + PRICEDISC PHPExcel_Calculation_Financial::PRICEDISC + PRICEMAT PHPExcel_Calculation_Financial::PRICEMAT + PV PHPExcel_Calculation_Financial::PV + RATE PHPExcel_Calculation_Financial::RATE + RECEIVED PHPExcel_Calculation_Financial::RECEIVED + SLN PHPExcel_Calculation_Financial::SLN + SYD PHPExcel_Calculation_Financial::SYD + TBILLEQ PHPExcel_Calculation_Financial::TBILLEQ + TBILLPRICE PHPExcel_Calculation_Financial::TBILLPRICE + TBILLYIELD PHPExcel_Calculation_Financial::TBILLYIELD + USDOLLAR *** Not yet Implemented + VDB *** Not yet Implemented + XIRR PHPExcel_Calculation_Financial::XIRR + XNPV PHPExcel_Calculation_Financial::XNPV + YIELD *** Not yet Implemented + YIELDDISC PHPExcel_Calculation_Financial::YIELDDISC + YIELDMAT PHPExcel_Calculation_Financial::YIELDMAT + +CATEGORY_INFORMATION + CELL *** Not yet Implemented + ERROR.TYPE PHPExcel_Calculation_Functions::ERROR_TYPE + INFO *** Not yet Implemented + ISBLANK PHPExcel_Calculation_Functions::IS_BLANK + ISERR PHPExcel_Calculation_Functions::IS_ERR + ISERROR PHPExcel_Calculation_Functions::IS_ERROR + ISEVEN PHPExcel_Calculation_Functions::IS_EVEN + ISLOGICAL PHPExcel_Calculation_Functions::IS_LOGICAL + ISNA PHPExcel_Calculation_Functions::IS_NA + ISNONTEXT PHPExcel_Calculation_Functions::IS_NONTEXT + ISNUMBER PHPExcel_Calculation_Functions::IS_NUMBER + ISODD PHPExcel_Calculation_Functions::IS_ODD + ISREF *** Not yet Implemented + ISTEXT PHPExcel_Calculation_Functions::IS_TEXT + N PHPExcel_Calculation_Functions::N + NA PHPExcel_Calculation_Functions::NA + TYPE PHPExcel_Calculation_Functions::TYPE + VERSION PHPExcel_Calculation_Functions::VERSION + +CATEGORY_LOGICAL + AND PHPExcel_Calculation_Logical::LOGICAL_AND + FALSE PHPExcel_Calculation_Logical::FALSE + IF PHPExcel_Calculation_Logical::STATEMENT_IF + IFERROR PHPExcel_Calculation_Logical::IFERROR + NOT PHPExcel_Calculation_Logical::NOT + OR PHPExcel_Calculation_Logical::LOGICAL_OR + TRUE PHPExcel_Calculation_Logical::TRUE + +CATEGORY_LOOKUP_AND_REFERENCE + ADDRESS PHPExcel_Calculation_LookupRef::CELL_ADDRESS + AREAS *** Not yet Implemented + CHOOSE PHPExcel_Calculation_LookupRef::CHOOSE + COLUMN PHPExcel_Calculation_LookupRef::COLUMN + COLUMNS PHPExcel_Calculation_LookupRef::COLUMNS + GETPIVOTDATA *** Not yet Implemented + HLOOKUP PHPExcel_Calculation_LookupRef::HLOOKUP + HYPERLINK PHPExcel_Calculation_LookupRef::HYPERLINK + INDEX PHPExcel_Calculation_LookupRef::INDEX + INDIRECT PHPExcel_Calculation_LookupRef::INDIRECT + LOOKUP PHPExcel_Calculation_LookupRef::LOOKUP + MATCH PHPExcel_Calculation_LookupRef::MATCH + OFFSET PHPExcel_Calculation_LookupRef::OFFSET + ROW PHPExcel_Calculation_LookupRef::ROW + ROWS PHPExcel_Calculation_LookupRef::ROWS + RTD *** Not yet Implemented + TRANSPOSE PHPExcel_Calculation_LookupRef::TRANSPOSE + VLOOKUP PHPExcel_Calculation_LookupRef::VLOOKUP + +CATEGORY_MATH_AND_TRIG + ABS abs + ACOS acos + ACOSH acosh + ASIN asin + ASINH asinh + ATAN atan + ATAN2 PHPExcel_Calculation_MathTrig::REVERSE_ATAN2 + ATANH atanh + CEILING PHPExcel_Calculation_MathTrig::CEILING + COMBIN PHPExcel_Calculation_MathTrig::COMBIN + COS cos + COSH cosh + DEGREES rad2deg + EVEN PHPExcel_Calculation_MathTrig::EVEN + EXP exp + FACT PHPExcel_Calculation_MathTrig::FACT + FACTDOUBLE PHPExcel_Calculation_MathTrig::FACTDOUBLE + FLOOR PHPExcel_Calculation_MathTrig::FLOOR + GCD PHPExcel_Calculation_MathTrig::GCD + INT PHPExcel_Calculation_MathTrig::INT + LCM PHPExcel_Calculation_MathTrig::LCM + LN log + LOG PHPExcel_Calculation_MathTrig::LOG_BASE + LOG10 log10 + MDETERM PHPExcel_Calculation_MathTrig::MDETERM + MINVERSE PHPExcel_Calculation_MathTrig::MINVERSE + MMULT PHPExcel_Calculation_MathTrig::MMULT + MOD PHPExcel_Calculation_MathTrig::MOD + MROUND PHPExcel_Calculation_MathTrig::MROUND + MULTINOMIAL PHPExcel_Calculation_MathTrig::MULTINOMIAL + ODD PHPExcel_Calculation_MathTrig::ODD + PI pi + POWER PHPExcel_Calculation_MathTrig::POWER + PRODUCT PHPExcel_Calculation_MathTrig::PRODUCT + QUOTIENT PHPExcel_Calculation_MathTrig::QUOTIENT + RADIANS deg2rad + RAND PHPExcel_Calculation_MathTrig::RAND + RANDBETWEEN PHPExcel_Calculation_MathTrig::RAND + ROMAN PHPExcel_Calculation_MathTrig::ROMAN + ROUND round + ROUNDDOWN PHPExcel_Calculation_MathTrig::ROUNDDOWN + ROUNDUP PHPExcel_Calculation_MathTrig::ROUNDUP + SERIESSUM PHPExcel_Calculation_MathTrig::SERIESSUM + SIGN PHPExcel_Calculation_MathTrig::SIGN + SIN sin + SINH sinh + SQRT sqrt + SQRTPI PHPExcel_Calculation_MathTrig::SQRTPI + SUBTOTAL PHPExcel_Calculation_MathTrig::SUBTOTAL + SUM PHPExcel_Calculation_MathTrig::SUM + SUMIF PHPExcel_Calculation_MathTrig::SUMIF + SUMIFS *** Not yet Implemented + SUMPRODUCT PHPExcel_Calculation_MathTrig::SUMPRODUCT + SUMSQ PHPExcel_Calculation_MathTrig::SUMSQ + SUMX2MY2 PHPExcel_Calculation_MathTrig::SUMX2MY2 + SUMX2PY2 PHPExcel_Calculation_MathTrig::SUMX2PY2 + SUMXMY2 PHPExcel_Calculation_MathTrig::SUMXMY2 + TAN tan + TANH tanh + TRUNC PHPExcel_Calculation_MathTrig::TRUNC + +CATEGORY_STATISTICAL + AVEDEV PHPExcel_Calculation_Statistical::AVEDEV + AVERAGE PHPExcel_Calculation_Statistical::AVERAGE + AVERAGEA PHPExcel_Calculation_Statistical::AVERAGEA + AVERAGEIF PHPExcel_Calculation_Statistical::AVERAGEIF + AVERAGEIFS *** Not yet Implemented + BETADIST PHPExcel_Calculation_Statistical::BETADIST + BETAINV PHPExcel_Calculation_Statistical::BETAINV + BINOMDIST PHPExcel_Calculation_Statistical::BINOMDIST + CHIDIST PHPExcel_Calculation_Statistical::CHIDIST + CHIINV PHPExcel_Calculation_Statistical::CHIINV + CHITEST *** Not yet Implemented + CONFIDENCE PHPExcel_Calculation_Statistical::CONFIDENCE + CORREL PHPExcel_Calculation_Statistical::CORREL + COUNT PHPExcel_Calculation_Statistical::COUNT + COUNTA PHPExcel_Calculation_Statistical::COUNTA + COUNTBLANK PHPExcel_Calculation_Statistical::COUNTBLANK + COUNTIF PHPExcel_Calculation_Statistical::COUNTIF + COUNTIFS *** Not yet Implemented + COVAR PHPExcel_Calculation_Statistical::COVAR + CRITBINOM PHPExcel_Calculation_Statistical::CRITBINOM + DEVSQ PHPExcel_Calculation_Statistical::DEVSQ + EXPONDIST PHPExcel_Calculation_Statistical::EXPONDIST + FDIST *** Not yet Implemented + FINV *** Not yet Implemented + FISHER PHPExcel_Calculation_Statistical::FISHER + FISHERINV PHPExcel_Calculation_Statistical::FISHERINV + FORECAST PHPExcel_Calculation_Statistical::FORECAST + FREQUENCY *** Not yet Implemented + FTEST *** Not yet Implemented + GAMMADIST PHPExcel_Calculation_Statistical::GAMMADIST + GAMMAINV PHPExcel_Calculation_Statistical::GAMMAINV + GAMMALN PHPExcel_Calculation_Statistical::GAMMALN + GEOMEAN PHPExcel_Calculation_Statistical::GEOMEAN + GROWTH PHPExcel_Calculation_Statistical::GROWTH + HARMEAN PHPExcel_Calculation_Statistical::HARMEAN + HYPGEOMDIST PHPExcel_Calculation_Statistical::HYPGEOMDIST + INTERCEPT PHPExcel_Calculation_Statistical::INTERCEPT + KURT PHPExcel_Calculation_Statistical::KURT + LARGE PHPExcel_Calculation_Statistical::LARGE + LINEST PHPExcel_Calculation_Statistical::LINEST + LOGEST PHPExcel_Calculation_Statistical::LOGEST + LOGINV PHPExcel_Calculation_Statistical::LOGINV + LOGNORMDIST PHPExcel_Calculation_Statistical::LOGNORMDIST + MAX PHPExcel_Calculation_Statistical::MAX + MAXA PHPExcel_Calculation_Statistical::MAXA + MAXIF PHPExcel_Calculation_Statistical::MAXIF + MEDIAN PHPExcel_Calculation_Statistical::MEDIAN + MEDIANIF *** Not yet Implemented + MIN PHPExcel_Calculation_Statistical::MIN + MINA PHPExcel_Calculation_Statistical::MINA + MINIF PHPExcel_Calculation_Statistical::MINIF + MODE PHPExcel_Calculation_Statistical::MODE + NEGBINOMDIST PHPExcel_Calculation_Statistical::NEGBINOMDIST + NORMDIST PHPExcel_Calculation_Statistical::NORMDIST + NORMINV PHPExcel_Calculation_Statistical::NORMINV + NORMSDIST PHPExcel_Calculation_Statistical::NORMSDIST + NORMSINV PHPExcel_Calculation_Statistical::NORMSINV + PEARSON PHPExcel_Calculation_Statistical::CORREL + PERCENTILE PHPExcel_Calculation_Statistical::PERCENTILE + PERCENTRANK PHPExcel_Calculation_Statistical::PERCENTRANK + PERMUT PHPExcel_Calculation_Statistical::PERMUT + POISSON PHPExcel_Calculation_Statistical::POISSON + PROB *** Not yet Implemented + QUARTILE PHPExcel_Calculation_Statistical::QUARTILE + RANK PHPExcel_Calculation_Statistical::RANK + RSQ PHPExcel_Calculation_Statistical::RSQ + SKEW PHPExcel_Calculation_Statistical::SKEW + SLOPE PHPExcel_Calculation_Statistical::SLOPE + SMALL PHPExcel_Calculation_Statistical::SMALL + STANDARDIZE PHPExcel_Calculation_Statistical::STANDARDIZE + STDEV PHPExcel_Calculation_Statistical::STDEV + STDEVA PHPExcel_Calculation_Statistical::STDEVA + STDEVP PHPExcel_Calculation_Statistical::STDEVP + STDEVPA PHPExcel_Calculation_Statistical::STDEVPA + STEYX PHPExcel_Calculation_Statistical::STEYX + TDIST PHPExcel_Calculation_Statistical::TDIST + TINV PHPExcel_Calculation_Statistical::TINV + TREND PHPExcel_Calculation_Statistical::TREND + TRIMMEAN PHPExcel_Calculation_Statistical::TRIMMEAN + TTEST *** Not yet Implemented + VAR PHPExcel_Calculation_Statistical::VARFunc + VARA PHPExcel_Calculation_Statistical::VARA + VARP PHPExcel_Calculation_Statistical::VARP + VARPA PHPExcel_Calculation_Statistical::VARPA + WEIBULL PHPExcel_Calculation_Statistical::WEIBULL + ZTEST PHPExcel_Calculation_Statistical::ZTEST + +CATEGORY_TEXT_AND_DATA + ASC *** Not yet Implemented + BAHTTEXT *** Not yet Implemented + CHAR PHPExcel_Calculation_TextData::CHARACTER + CLEAN PHPExcel_Calculation_TextData::TRIMNONPRINTABLE + CODE PHPExcel_Calculation_TextData::ASCIICODE + CONCATENATE PHPExcel_Calculation_TextData::CONCATENATE + DOLLAR PHPExcel_Calculation_TextData::DOLLAR + EXACT *** Not yet Implemented + FIND PHPExcel_Calculation_TextData::SEARCHSENSITIVE + FINDB PHPExcel_Calculation_TextData::SEARCHSENSITIVE + FIXED PHPExcel_Calculation_TextData::FIXEDFORMAT + JIS *** Not yet Implemented + LEFT PHPExcel_Calculation_TextData::LEFT + LEFTB PHPExcel_Calculation_TextData::LEFT + LEN PHPExcel_Calculation_TextData::STRINGLENGTH + LENB PHPExcel_Calculation_TextData::STRINGLENGTH + LOWER PHPExcel_Calculation_TextData::LOWERCASE + MID PHPExcel_Calculation_TextData::MID + MIDB PHPExcel_Calculation_TextData::MID + PHONETIC *** Not yet Implemented + PROPER PHPExcel_Calculation_TextData::PROPERCASE + REPLACE PHPExcel_Calculation_TextData::REPLACE + REPLACEB PHPExcel_Calculation_TextData::REPLACE + REPT str_repeat + RIGHT PHPExcel_Calculation_TextData::RIGHT + RIGHTB PHPExcel_Calculation_TextData::RIGHT + SEARCH PHPExcel_Calculation_TextData::SEARCHINSENSITIVE + SEARCHB PHPExcel_Calculation_TextData::SEARCHINSENSITIVE + SUBSTITUTE PHPExcel_Calculation_TextData::SUBSTITUTE + T PHPExcel_Calculation_TextData::RETURNSTRING + TEXT PHPExcel_Calculation_TextData::TEXTFORMAT + TRIM PHPExcel_Calculation_TextData::TRIMSPACES + UPPER PHPExcel_Calculation_TextData::UPPERCASE + VALUE PHPExcel_Calculation_TextData::VALUE diff --git a/src/vendor/phpoffice/phpexcel/Documentation/FunctionListByName.txt b/src/vendor/phpoffice/phpexcel/Documentation/FunctionListByName.txt new file mode 100644 index 0000000..45a9daf --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/FunctionListByName.txt @@ -0,0 +1,381 @@ +ABS CATEGORY_MATH_AND_TRIG abs +ACCRINT CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::ACCRINT +ACCRINTM CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::ACCRINTM +ACOS CATEGORY_MATH_AND_TRIG acos +ACOSH CATEGORY_MATH_AND_TRIG acosh +ADDRESS CATEGORY_LOOKUP_AND_REFERENCE PHPExcel_Calculation_LookupRef::CELL_ADDRESS +AMORDEGRC CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::AMORDEGRC +AMORLINC CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::AMORLINC +AND CATEGORY_LOGICAL PHPExcel_Calculation_Logical::LOGICAL_AND +AREAS CATEGORY_LOOKUP_AND_REFERENCE *** Not yet Implemented +ASC CATEGORY_TEXT_AND_DATA *** Not yet Implemented +ASIN CATEGORY_MATH_AND_TRIG asin +ASINH CATEGORY_MATH_AND_TRIG asinh +ATAN CATEGORY_MATH_AND_TRIG atan +ATAN2 CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::REVERSE_ATAN2 +ATANH CATEGORY_MATH_AND_TRIG atanh +AVEDEV CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::AVEDEV +AVERAGE CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::AVERAGE +AVERAGEA CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::AVERAGEA +AVERAGEIF CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::AVERAGEIF +AVERAGEIFS CATEGORY_STATISTICAL *** Not yet Implemented + +BAHTTEXT CATEGORY_TEXT_AND_DATA *** Not yet Implemented +BESSELI CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::BESSELI +BESSELJ CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::BESSELJ +BESSELK CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::BESSELK +BESSELY CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::BESSELY +BETADIST CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::BETADIST +BETAINV CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::BETAINV +BIN2DEC CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::BINTODEC +BIN2HEX CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::BINTOHEX +BIN2OCT CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::BINTOOCT +BINOMDIST CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::BINOMDIST + +CEILING CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::CEILING +CELL CATEGORY_INFORMATION *** Not yet Implemented +CHAR CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::CHARACTER +CHIDIST CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::CHIDIST +CHIINV CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::CHIINV +CHITEST CATEGORY_STATISTICAL *** Not yet Implemented +CHOOSE CATEGORY_LOOKUP_AND_REFERENCE PHPExcel_Calculation_LookupRef::CHOOSE +CLEAN CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::TRIMNONPRINTABLE +CODE CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::ASCIICODE +COLUMN CATEGORY_LOOKUP_AND_REFERENCE PHPExcel_Calculation_LookupRef::COLUMN +COLUMNS CATEGORY_LOOKUP_AND_REFERENCE PHPExcel_Calculation_LookupRef::COLUMNS +COMBIN CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::COMBIN +COMPLEX CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::COMPLEX +CONCATENATE CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::CONCATENATE +CONFIDENCE CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::CONFIDENCE +CONVERT CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::CONVERTUOM +CORREL CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::CORREL +COS CATEGORY_MATH_AND_TRIG cos +COSH CATEGORY_MATH_AND_TRIG cosh +COUNT CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::COUNT +COUNTA CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::COUNTA +COUNTBLANK CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::COUNTBLANK +COUNTIF CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::COUNTIF +COUNTIFS CATEGORY_STATISTICAL *** Not yet Implemented +COUPDAYBS CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::COUPDAYBS +COUPDAYS CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::COUPDAYS +COUPDAYSNC CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::COUPDAYSNC +COUPNCD CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::COUPNCD +COUPNUM CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::COUPNUM +COUPPCD CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::COUPPCD +COVAR CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::COVAR +CRITBINOM CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::CRITBINOM +CUBEKPIMEMBER CATEGORY_CUBE *** Not yet Implemented +CUBEMEMBER CATEGORY_CUBE *** Not yet Implemented +CUBEMEMBERPROPERTY CATEGORY_CUBE *** Not yet Implemented +CUBERANKEDMEMBER CATEGORY_CUBE *** Not yet Implemented +CUBESET CATEGORY_CUBE *** Not yet Implemented +CUBESETCOUNT CATEGORY_CUBE *** Not yet Implemented +CUBEVALUE CATEGORY_CUBE *** Not yet Implemented +CUMIPMT CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::CUMIPMT +CUMPRINC CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::CUMPRINC + +DATE CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::DATE +DATEDIF CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::DATEDIF +DATEVALUE CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::DATEVALUE +DAVERAGE CATEGORY_DATABASE PHPExcel_Calculation_Database::DAVERAGE +DAY CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::DAYOFMONTH +DAYS360 CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::DAYS360 +DB CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::DB +DCOUNT CATEGORY_DATABASE PHPExcel_Calculation_Database::DCOUNT +DCOUNTA CATEGORY_DATABASE PHPExcel_Calculation_Database::DCOUNTA +DDB CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::DDB +DEC2BIN CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::DECTOBIN +DEC2HEX CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::DECTOHEX +DEC2OCT CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::DECTOOCT +DEGREES CATEGORY_MATH_AND_TRIG rad2deg +DELTA CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::DELTA +DEVSQ CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::DEVSQ +DGET CATEGORY_DATABASE PHPExcel_Calculation_Database::DGET +DISC CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::DISC +DMAX CATEGORY_DATABASE PHPExcel_Calculation_Database::DMAX +DMIN CATEGORY_DATABASE PHPExcel_Calculation_Database::DMIN +DOLLAR CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::DOLLAR +DOLLARDE CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::DOLLARDE +DOLLARFR CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::DOLLARFR +DPRODUCT CATEGORY_DATABASE PHPExcel_Calculation_Database::DPRODUCT +DSTDEV CATEGORY_DATABASE PHPExcel_Calculation_Database::DSTDEV +DSTDEVP CATEGORY_DATABASE PHPExcel_Calculation_Database::DSTDEVP +DSUM CATEGORY_DATABASE PHPExcel_Calculation_Database::DSUM +DURATION CATEGORY_FINANCIAL *** Not yet Implemented +DVAR CATEGORY_DATABASE PHPExcel_Calculation_Database::DVAR +DVARP CATEGORY_DATABASE PHPExcel_Calculation_Database::DVARP + +EDATE CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::EDATE +EFFECT CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::EFFECT +EOMONTH CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::EOMONTH +ERF CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::ERF +ERFC CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::ERFC +ERROR.TYPE CATEGORY_INFORMATION PHPExcel_Calculation_Functions::ERROR_TYPE +EVEN CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::EVEN +EXACT CATEGORY_TEXT_AND_DATA *** Not yet Implemented +EXP CATEGORY_MATH_AND_TRIG exp +EXPONDIST CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::EXPONDIST + +FACT CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::FACT +FACTDOUBLE CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::FACTDOUBLE +FALSE CATEGORY_LOGICAL PHPExcel_Calculation_Logical::FALSE +FDIST CATEGORY_STATISTICAL *** Not yet Implemented +FIND CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::SEARCHSENSITIVE +FINDB CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::SEARCHSENSITIVE +FINV CATEGORY_STATISTICAL *** Not yet Implemented +FISHER CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::FISHER +FISHERINV CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::FISHERINV +FIXED CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::FIXEDFORMAT +FLOOR CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::FLOOR +FORECAST CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::FORECAST +FREQUENCY CATEGORY_STATISTICAL *** Not yet Implemented +FTEST CATEGORY_STATISTICAL *** Not yet Implemented +FV CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::FV +FVSCHEDULE CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::FVSCHEDULE + +GAMMADIST CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::GAMMADIST +GAMMAINV CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::GAMMAINV +GAMMALN CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::GAMMALN +GCD CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::GCD +GEOMEAN CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::GEOMEAN +GESTEP CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::GESTEP +GETPIVOTDATA CATEGORY_LOOKUP_AND_REFERENCE *** Not yet Implemented +GROWTH CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::GROWTH + +HARMEAN CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::HARMEAN +HEX2BIN CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::HEXTOBIN +HEX2DEC CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::HEXTODEC +HEX2OCT CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::HEXTOOCT +HLOOKUP CATEGORY_LOOKUP_AND_REFERENCE PHPExcel_Calculation_LookupRef::HLOOKUP +HOUR CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::HOUROFDAY +HYPERLINK CATEGORY_LOOKUP_AND_REFERENCE PHPExcel_Calculation_LookupRef::HYPERLINK +HYPGEOMDIST CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::HYPGEOMDIST + +IF CATEGORY_LOGICAL PHPExcel_Calculation_Logical::STATEMENT_IF +IFERROR CATEGORY_LOGICAL PHPExcel_Calculation_Logical::IFERROR +IMABS CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMABS +IMAGINARY CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMAGINARY +IMARGUMENT CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMARGUMENT +IMCONJUGATE CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMCONJUGATE +IMCOS CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMCOS +IMDIV CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMDIV +IMEXP CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMEXP +IMLN CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMLN +IMLOG10 CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMLOG10 +IMLOG2 CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMLOG2 +IMPOWER CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMPOWER +IMPRODUCT CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMPRODUCT +IMREAL CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMREAL +IMSIN CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMSIN +IMSQRT CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMSQRT +IMSUB CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMSUB +IMSUM CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::IMSUM +INDEX CATEGORY_LOOKUP_AND_REFERENCE PHPExcel_Calculation_LookupRef::INDEX +INDIRECT CATEGORY_LOOKUP_AND_REFERENCE PHPExcel_Calculation_LookupRef::INDIRECT +INFO CATEGORY_INFORMATION *** Not yet Implemented +INT CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::INT +INTERCEPT CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::INTERCEPT +INTRATE CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::INTRATE +IPMT CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::IPMT +IRR CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::IRR +ISBLANK CATEGORY_INFORMATION PHPExcel_Calculation_Functions::IS_BLANK +ISERR CATEGORY_INFORMATION PHPExcel_Calculation_Functions::IS_ERR +ISERROR CATEGORY_INFORMATION PHPExcel_Calculation_Functions::IS_ERROR +ISEVEN CATEGORY_INFORMATION PHPExcel_Calculation_Functions::IS_EVEN +ISLOGICAL CATEGORY_INFORMATION PHPExcel_Calculation_Functions::IS_LOGICAL +ISNA CATEGORY_INFORMATION PHPExcel_Calculation_Functions::IS_NA +ISNONTEXT CATEGORY_INFORMATION PHPExcel_Calculation_Functions::IS_NONTEXT +ISNUMBER CATEGORY_INFORMATION PHPExcel_Calculation_Functions::IS_NUMBER +ISODD CATEGORY_INFORMATION PHPExcel_Calculation_Functions::IS_ODD +ISPMT CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::ISPMT +ISREF CATEGORY_INFORMATION *** Not yet Implemented +ISTEXT CATEGORY_INFORMATION PHPExcel_Calculation_Functions::IS_TEXT + +JIS CATEGORY_TEXT_AND_DATA *** Not yet Implemented + +KURT CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::KURT + +LARGE CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::LARGE +LCM CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::LCM +LEFT CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::LEFT +LEFTB CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::LEFT +LEN CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::STRINGLENGTH +LENB CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::STRINGLENGTH +LINEST CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::LINEST +LN CATEGORY_MATH_AND_TRIG log +LOG CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::LOG_BASE +LOG10 CATEGORY_MATH_AND_TRIG log10 +LOGEST CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::LOGEST +LOGINV CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::LOGINV +LOGNORMDIST CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::LOGNORMDIST +LOOKUP CATEGORY_LOOKUP_AND_REFERENCE PHPExcel_Calculation_LookupRef::LOOKUP +LOWER CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::LOWERCASE + +MATCH CATEGORY_LOOKUP_AND_REFERENCE PHPExcel_Calculation_LookupRef::MATCH +MAX CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::MAX +MAXA CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::MAXA +MAXIF CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::MAXIF +MDETERM CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::MDETERM +MDURATION CATEGORY_FINANCIAL *** Not yet Implemented +MEDIAN CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::MEDIAN +MEDIANIF CATEGORY_STATISTICAL *** Not yet Implemented +MID CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::MID +MIDB CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::MID +MIN CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::MIN +MINA CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::MINA +MINIF CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::MINIF +MINUTE CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::MINUTEOFHOUR +MINVERSE CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::MINVERSE +MIRR CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::MIRR +MMULT CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::MMULT +MOD CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::MOD +MODE CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::MODE +MONTH CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::MONTHOFYEAR +MROUND CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::MROUND +MULTINOMIAL CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::MULTINOMIAL + +N CATEGORY_INFORMATION PHPExcel_Calculation_Functions::N +NA CATEGORY_INFORMATION PHPExcel_Calculation_Functions::NA +NEGBINOMDIST CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::NEGBINOMDIST +NETWORKDAYS CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::NETWORKDAYS +NOMINAL CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::NOMINAL +NORMDIST CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::NORMDIST +NORMINV CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::NORMINV +NORMSDIST CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::NORMSDIST +NORMSINV CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::NORMSINV +NOT CATEGORY_LOGICAL PHPExcel_Calculation_Logical::NOT +NOW CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::DATETIMENOW +NPER CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::NPER +NPV CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::NPV + +OCT2BIN CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::OCTTOBIN +OCT2DEC CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::OCTTODEC +OCT2HEX CATEGORY_ENGINEERING PHPExcel_Calculation_Engineering::OCTTOHEX +ODD CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::ODD +ODDFPRICE CATEGORY_FINANCIAL *** Not yet Implemented +ODDFYIELD CATEGORY_FINANCIAL *** Not yet Implemented +ODDLPRICE CATEGORY_FINANCIAL *** Not yet Implemented +ODDLYIELD CATEGORY_FINANCIAL *** Not yet Implemented +OFFSET CATEGORY_LOOKUP_AND_REFERENCE PHPExcel_Calculation_LookupRef::OFFSET +OR CATEGORY_LOGICAL PHPExcel_Calculation_Logical::LOGICAL_OR + +PEARSON CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::CORREL +PERCENTILE CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::PERCENTILE +PERCENTRANK CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::PERCENTRANK +PERMUT CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::PERMUT +PHONETIC CATEGORY_TEXT_AND_DATA *** Not yet Implemented +PI CATEGORY_MATH_AND_TRIG pi +PMT CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::PMT +POISSON CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::POISSON +POWER CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::POWER +PPMT CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::PPMT +PRICE CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::PRICE +PRICEDISC CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::PRICEDISC +PRICEMAT CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::PRICEMAT +PROB CATEGORY_STATISTICAL *** Not yet Implemented +PRODUCT CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::PRODUCT +PROPER CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::PROPERCASE +PV CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::PV + +QUARTILE CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::QUARTILE +QUOTIENT CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::QUOTIENT + +RADIANS CATEGORY_MATH_AND_TRIG deg2rad +RAND CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::RAND +RANDBETWEEN CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::RAND +RANK CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::RANK +RATE CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::RATE +RECEIVED CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::RECEIVED +REPLACE CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::REPLACE +REPLACEB CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::REPLACE +REPT CATEGORY_TEXT_AND_DATA str_repeat +RIGHT CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::RIGHT +RIGHTB CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::RIGHT +ROMAN CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::ROMAN +ROUND CATEGORY_MATH_AND_TRIG round +ROUNDDOWN CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::ROUNDDOWN +ROUNDUP CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::ROUNDUP +ROW CATEGORY_LOOKUP_AND_REFERENCE PHPExcel_Calculation_LookupRef::ROW +ROWS CATEGORY_LOOKUP_AND_REFERENCE PHPExcel_Calculation_LookupRef::ROWS +RSQ CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::RSQ +RTD CATEGORY_LOOKUP_AND_REFERENCE *** Not yet Implemented + +SEARCH CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::SEARCHINSENSITIVE +SEARCHB CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::SEARCHINSENSITIVE +SECOND CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::SECONDOFMINUTE +SERIESSUM CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::SERIESSUM +SIGN CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::SIGN +SIN CATEGORY_MATH_AND_TRIG sin +SINH CATEGORY_MATH_AND_TRIG sinh +SKEW CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::SKEW +SLN CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::SLN +SLOPE CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::SLOPE +SMALL CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::SMALL +SQRT CATEGORY_MATH_AND_TRIG sqrt +SQRTPI CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::SQRTPI +STANDARDIZE CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::STANDARDIZE +STDEV CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::STDEV +STDEVA CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::STDEVA +STDEVP CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::STDEVP +STDEVPA CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::STDEVPA +STEYX CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::STEYX +SUBSTITUTE CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::SUBSTITUTE +SUBTOTAL CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::SUBTOTAL +SUM CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::SUM +SUMIF CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::SUMIF +SUMIFS CATEGORY_MATH_AND_TRIG *** Not yet Implemented +SUMPRODUCT CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::SUMPRODUCT +SUMSQ CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::SUMSQ +SUMX2MY2 CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::SUMX2MY2 +SUMX2PY2 CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::SUMX2PY2 +SUMXMY2 CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::SUMXMY2 +SYD CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::SYD + +T CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::RETURNSTRING +TAN CATEGORY_MATH_AND_TRIG tan +TANH CATEGORY_MATH_AND_TRIG tanh +TBILLEQ CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::TBILLEQ +TBILLPRICE CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::TBILLPRICE +TBILLYIELD CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::TBILLYIELD +TDIST CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::TDIST +TEXT CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::TEXTFORMAT +TIME CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::TIME +TIMEVALUE CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::TIMEVALUE +TINV CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::TINV +TODAY CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::DATENOW +TRANSPOSE CATEGORY_LOOKUP_AND_REFERENCE PHPExcel_Calculation_LookupRef::TRANSPOSE +TREND CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::TREND +TRIM CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::TRIMSPACES +TRIMMEAN CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::TRIMMEAN +TRUE CATEGORY_LOGICAL PHPExcel_Calculation_Logical::TRUE +TRUNC CATEGORY_MATH_AND_TRIG PHPExcel_Calculation_MathTrig::TRUNC +TTEST CATEGORY_STATISTICAL *** Not yet Implemented +TYPE CATEGORY_INFORMATION PHPExcel_Calculation_Functions::TYPE + +UPPER CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::UPPERCASE +USDOLLAR CATEGORY_FINANCIAL *** Not yet Implemented + +VALUE CATEGORY_TEXT_AND_DATA PHPExcel_Calculation_TextData::VALUE +VAR CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::VARFunc +VARA CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::VARA +VARP CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::VARP +VARPA CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::VARPA +VDB CATEGORY_FINANCIAL *** Not yet Implemented +VERSION CATEGORY_INFORMATION PHPExcel_Calculation_Functions::VERSION +VLOOKUP CATEGORY_LOOKUP_AND_REFERENCE PHPExcel_Calculation_LookupRef::VLOOKUP + +WEEKDAY CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::DAYOFWEEK +WEEKNUM CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::WEEKOFYEAR +WEIBULL CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::WEIBULL +WORKDAY CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::WORKDAY + +XIRR CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::XIRR +XNPV CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::XNPV + +YEAR CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::YEAR +YEARFRAC CATEGORY_DATE_AND_TIME PHPExcel_Calculation_DateTime::YEARFRAC +YIELD CATEGORY_FINANCIAL *** Not yet Implemented +YIELDDISC CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::YIELDDISC +YIELDMAT CATEGORY_FINANCIAL PHPExcel_Calculation_Financial::YIELDMAT + +ZTEST CATEGORY_STATISTICAL PHPExcel_Calculation_Statistical::ZTEST diff --git a/src/vendor/phpoffice/phpexcel/Documentation/Functionality Cross-Reference.xls b/src/vendor/phpoffice/phpexcel/Documentation/Functionality Cross-Reference.xls new file mode 100644 index 0000000000000000000000000000000000000000..227fd612f0a99ae0c2b318f36d8ad63b4513ed93 GIT binary patch literal 38912 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 RT^T=zehm5hN!X+Re*jsiREhuq literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/PHPExcel AutoFilter Reference developer documentation.doc b/src/vendor/phpoffice/phpexcel/Documentation/PHPExcel AutoFilter Reference developer documentation.doc new file mode 100644 index 0000000000000000000000000000000000000000..208b20205029ca4cbed3690bbce9e3521d4cc5d1 GIT binary patch literal 636416 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%0Aw;yXf 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%0Dh5am?q8aA*O=G9sj0*u4{<rZF8dqlS<34YAW^ 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%0Af@3NW7ooC1c$Cm2H2ZL- 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 HQ{evrcW?7- literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/PHPExcel Function Reference developer documentation.doc b/src/vendor/phpoffice/phpexcel/Documentation/PHPExcel Function Reference developer documentation.doc new file mode 100644 index 0000000000000000000000000000000000000000..57d218c7ce171813108e4442003c92834426f4eb GIT binary patch literal 628736 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/PHPExcel User Documentation - Reading Spreadsheet Files.doc b/src/vendor/phpoffice/phpexcel/Documentation/PHPExcel User Documentation - Reading Spreadsheet Files.doc new file mode 100644 index 0000000000000000000000000000000000000000..ef3954d3b6dbb9c54e855d24782c0599f4c25fac GIT binary patch literal 173568 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/PHPExcel developer documentation.doc b/src/vendor/phpoffice/phpexcel/Documentation/PHPExcel developer documentation.doc new file mode 100644 index 0000000000000000000000000000000000000000..52cc9647d2ecedfd1c3cb603d8ce6b57c99bc707 GIT binary patch literal 885248 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%0Dpqrg)eECq$krxKICdG7 zf0g-5GP>E$sJ`7;kz*p(Np%v+Vbf32t=53+h6<UNfYw)5NBSuzDXcWMy57PTPCNS= zTcN^Wm~I!Ff_7szR&kQRq0xGY<F(fyFVn`Mnqd|@blWI??*Z*I37M@d+bD(y?8+Bz zU#@C}d5K?Sx#H)B;&iz9pG#e1S}kiprIkR<_nGiCAg8a<9Qk{h-%Cex|30cM=>u%X z78X#tXxn76TL_K)w24dn*ZHlmq+ghJd|IoDnpxCfy?M^&%SPh*&~8)e5n|vzvEgs8 z|55`c5R-Jq(DQsN`iAskmO-q>Nv3a5z0CcB-h2T!nTdzGHf$K5c)|%x(bLg^!}OK= z>|@@c#cTTaap#FKv9qR<k7drYI~9y@oU>+`4^E$$cA}lCq8O0hF{422S>KSm7S*2j z42sQeJBuNhicFxaSJh!qNj?j0R8hNi2D4J*^(4Y6p8di^CsZHRsuz_++vKZfq8FJy zjRut__6@P$9{b+VP*`Wwh`lFy$xZdrc$|o9?|_FhEi{;2E?yIJ<Bj$1)3|mdT&1|< z@H4_2_-@B3<>;wuPBIK8J%h>PRQ9PpoBlEEWlfpt&+;$3#V~!D`1>>;-p;;o-YWO7 z7a`i*j*;D>L^IV$FVVC`OW{bj%gafpDsKrIRXM$THM}@M)rj>F)SX17r$4SXR^zO8 zmZYQ)Y4-dyci5$@0OK4?Yg`t<K9=Aq)8xQRx#_A!BC51VHdU!AEnaGxTN>sqN%Ukh zl;qJ2jY*~4Vm(*&MylX<(=;FmI6K`OaCR|C7&FsGSKQ-Pic*pz{<}v8lQP)SsZXAy z`QgOmiPPO~jJDHaw~1-z6tqeBpj+p%-Svr{cl5!z*%4*h7LsfVZ7=lw!}VY@jR_^O z-eTpc@!6P$NN=}69(+2Wf;Rf5z3RLcWwxFOTgnV%?C-dooH!MAXUMyx0w;-6OJ_1h zpm;JOlV43os9WYDNkq=IkCH0KwTOJPbgcrTrf(K(=9=RJVbj<mr-H50MOAH+0{AS) znKzrAm=SPV{c2AZ&(R*yB%1ufDnaA*qEr;-S9%U;DI5JvS-HMZwgrdd9qfifcFO4C zQ=^G)z%`p+!u*(;xpd}Ln|*rCdINN4*da!WxK<&UQ>f-)phM3Tn8tVD?%#u%qzI6z zC^gM%ON!}~(%heEX8bjmRd^Wts@!qERV^j*LQVy?VCk0~)kSg;&z<S0B~^?XmRqZH zz`&k7z*;jzT6eP5H~uu)4Rv*yH;_mSsIK&0Kvl-bML6?=E2S17ttA*2wThNdvtUx4 z=?bs5eQ=&9nQx%4n9|Vh(o1E=krw^qNr?YGM+^fg*T&h_fyg@j-X<+nFLHxYiW{Gf zc}(u>x%pb7#xCFz*u>uY*|q<*8Z~jsAm%(7?{9*Z;=l$p6Rr08^~bmd(biI8%XNF! zisnGKLgQ(ZGb7s6hI${Ez_p=8{S-{&ZXtRfZ&Spp&AH9lpv~XH^zj-urjFKFT8Hrx z=0Ddo^n}Yxy#KWfNrC^h41cjL!+824o08&Yp%lZlLvD|wElAT;B~_VIk0xQgN{+g# z(gU}kIj9e?HA2(sIBepCU?nukCDja_4n(J_7#i=Wx~8gxW)`nk%}}My-zdVoS7Qxg zB9OE$5Oc5d?*CYYK&eC`)w^0yN=sQ4m#wZAI4|Ck%0X$#|LivvBR>l~jdki>|MTqq z5<Pp;GgsVWs)H%D;#NI!mz2&bm(z4YaoHi!jNHQ~9Ks}zz{&Z}No)9gD;8{*IQ`)? zSdIOosav?%4o<bza(B(q!1gsX@ZCz4Y3T+U@w9^#4P!u@5t^(Tt9BJHaHbSxR+Y?W zfF%vT#oB#|wJT(JF|)=Qfv=&W#91(D_@vx%{(wtf>x^EO^Nkr11ZkV)YT%if##(%W zu;`z+v!!DqT_ZO=18M01(!e7vg=u1&)Ovg0^Pg<V>815G*h<c=HrRThE4i+%p~+WQ zmpt$OpP~N$Yp6Z>{9g}@FRcl@6+tQAhW6Rf3Jnb}%bI}0%ypATGcwByn2DzgjvG{C zfkL<F4#$3~hfmHoCRLRc;4QLh?$jSy7_l;%EFg6W*nnz#iY8Ci)%sc(H%5W_NW(ov z_LW;;V|e@jY|Q^(8{>)6|7=X1HfHi<^-8&Nz74I6qZer-b7w>|s7JBmZf>C#jZ-I? znfQjKNp{f;Oe~*6w}7qtQ8mI9Znx^qV#FAGC59}Hb=b>^9<4G9cv0K)>I&5GG+3Y# zhlOz=P$667xD%*TDjKSzsLG|^No!p0%?+<`^>TM!vNlrA3<d%D?hcz9dAuNC`rOxf zec$>990i%Ps}|bt_nTo2H+zKc%7T|x@#<A}h^yWyW0&i!@S?cc-mohA0?Dafeo~t3 zbGk=Vy*`g#TV%l9_@Q8>+2Bk)Fja+2&|!{#Su|saS&Z4cOVcsjZc}fNl^ajjSExvs zt_vq7OwJ&E?cfvZE^?EQ-1SE)#tVj;d4V$tn4$h`FW~eOsgzSM0g~&6rAEv2X*s<I zGgVBpDCuH%hRM1EU-WMGZYLaiwCHUn1EmA_a{M-r?Xq-w1ob+zk1T`gi_5gapLvG@ zH0%5@W*#A@nK6^ORfu)(zWoOFL&>J-UwWE{+f6t8U9-KpjxnL}4I1o5JA{$E46D_~ zqa;$DMug8oYD_=Bm08oRFiue&t<)f<ES_ef<E|1CxNj6|7BNk)ureckNSw=rz&cJ0 zc+Oz#jI;19BJT`sqcK@HnoVALL${+Uk19hPW8;ylfn)I(D~;P`2+Ou2YFvyA0At8O zU=FvRnHn%)nuE@y9}WU5uBh{ojFu4kvxIGvR2$`LXq6qMgylgNs5fazcS3gtT?CRU z=2J}E%<KYh1%^QDHf^Q`P-_5^B*mCRFUqEIYS#%WpUqO6w*PYp!@}JG*4D5Zi8TWi z&1?8h?@g}4I9s-uufztr^IpwVVkwEdnC^QKUp_Jzie$?RDKKZsXt3=-vP0HweAJsn z2-1i_^lh6PLdle%Doq69Na%l1@>nb-8WKz;%{abgw6k_b>_8Wp*6{MLaXjHl*MJ|~ zO=hobP?@Gl>h&%hlKQ}vh{61Fw9!5je>~JLs(`Q&Re2h>fKXydQ+#oCB&&gm5<A{0 zo|JiMRwxS@Yu^G_6WO=GEipzxIpkf9GlI&=5_8Lc&af>ql4$Ezp=32hMa(DU{0c|U z)mE-pIohgmbAeo!jN7V;YcHypY2^NPN55$SLuw_|vhBUpg_MU@LA2VTapKwKO9R7e z<m@cdv|;1dtfMMw#WdDr+p|*B7;6)oAk(V~iAZq7f_*fpDH=sN&X_*qgVngBDx4Ln z_L!y!6R|bBNyUpdaM#XKrJ`or7)k)AoML8sP3bH~OWDG;zzG=_NxXm+s-4f|jD}<I z7;81ziBD#Fyf<0jPK9$zV%3SMJSb3pIknjWvwWl?YNJIp%^zFpw{uF&zUVa-s$J@4 zrhqZLODhCu^=%zjD@&=5GAEMwn>BM82^EM6SBL?_x-~zG!aKB1rhMGg8iR`gbB`*K zdRrhAcS;X6e+?~S*s1o{qY*~LN0-el(L&U`#-t?!E`#502H7R}Y)pwWeK4<_xu?-| zw=R*zrdO;6mX&L^Ueb8AbiZL`ujScm+1W(bkqW0p%JN`ra1ktTYd<l~m7Tydz4T1l z7&Zl_ij(kbG?Rp01eMHYsT8#`x6wzK2)Rj;SHF)iA0B8JDI@LrqNYkmV$mlNM~MPD zq%3xpW_KE4j)gGubMu*@s@;FIjMCU?^oOfEWXh-<36d3N&F9n=FUK@sPwjP8P?0ZF zOGYDPkW{@1RC@Jl6DS(P@JhRs4)aS{*V|j^$jq@;7mhy7soYACCEa%M>_tVIB205n z4OXWkDD)C`GG<<;*;UC-$tY&%-AL1fRmDz5!Z;9|bz;3P9=m|7)BLN_=uWp+$i`Y$ z7j0FFXnuxbMeWTUw@LEQsMg?2M8<q&QqP1<hb<b_S5Mc3$t1NxY_SkXBCiT+@(Ojx zEUKofo=nq^t#?%D&GqtBgs0Xj67pEoH}w>I+SY0qS8Lh{^2w4DW}?0=LOdy1qFJyt zC^l{=vxTUgzh!36vLde;3a)aIen#!Q#QZW(FP#F<WEbnfaTz=B56+BxpJ{H|DSMJ8 zN(i%uo?mMDzKhI23n5+(xmr~3jIr@eP;8rwX<#dXTv4W&aLw3U?=z}wMp<1_GdtMA zMwnt2Ui6$UZu#MS8#!m&l1>AZb#W<k3LQ&<hQ!<IQsyqEs%nB8UQ%M}t7bnfC(d3M zvtMs$Xw0Y8+eu(Q3Tvgbj)@`WIi@n58(4nXEYwPIU5;6E?4OZ3rLVJ~fwy?Dw{)<X z_dxw8=p6_Y=e*GfptnR=;3YAu#mFsU!*}yX^S_4{m(GovX_2gMZwf{XTsG#q1OvOU zaEMubFFV?&V(}16bcOS4kydWbj`kg3&f7(rv!nYD=B{qhs><2J+*N<Ho=ySFhZUEZ z<$i4JvfSNLSq0N9*gdRUpKb>t9o}*<+bUL>S;=C6U3VRvs`eSh4!cxTNX;%PX0SL{ zP1Q@QeAkwOab|D5spND<y0fm4Qo>pLOi7{2%CE7d6~{uwwk)=)spVL+(KHPhr%z45 zUl+(I8&z@E>}DgH3N1!$)ZWnw8c$Sak}TO>s4$IG#0fLtn<I49FZ~V=cj%;vfH#%E zEw7L%H$3adbO+36K|X3~K~o{C=&f86s+Bnci`d$y_)bg)wKOL(3}3P3BcI@`Ig_2{ zzE=?&YYN+pp595bc^78ZKOtAHhN=h7>B$_#9RG1o%5^-gG;fTH(JoGHJ*@7Imt3MS za3feyXcn?9(}XS6xlF-r%F|M}r0^#P*|a0iP&Ts@K|pHiUl_JA`z8dPH1U#PNSlKW zY}00_Svv2)w4r<T?wzKp3sXm<v<1tmd(X))WkgYSbQ+bBswm3=MyF!q%7(bttJuvp zJ9<Dxwa#c;o4HI^DJ$r$j+M%6xt*(-A<8^Z`y~k@<z#`gLwuBJt1O+PTCpvJoEVzK z8=7UKYogw}H_>)a)cF!WTZbf1A2*|wK3=uPIw(x`n2G}44Da9<<IYfwQtHoe%#71= zH8~K^?Lg<8n)zmHT+c7yngcm~oYibqv0~#GV_dYpGd;6vP+Qff{hvk)&8xD;w8yM0 zgxg`p)2~)tupu^wE!#BJ)Gk0oF|Y8wb{Td-tue|#J(sj;V*=hLEgMsztIX32ywAm; z=-6ITV*vYIsYJ4CljleKR~Gc1f~jOj4DR#xaOE4!^fMX;b}V1@Y_9i;mg+8QucONK z3oBh&%n?@DoqE?dbN|f2N*lNCZ<ks!k9&bGqNzIzotCf7^zOJfvsEd+8q<pu4$xE> z^jIa!46%O+)n!}ZvHen|HRO(#164IhW|E0paX&|9y{fQej(w5)S|Y(Ss=C|g_$&Le z>sYb7ER{_XEfSnI(r)*wHKfB89q%5~Y3!6zS{+qGkC@KaVumwCks^ogGNqliI4+yp zVibNQHNfq{h4iDf@M1@23k!_l`5URl#h3=&qJ>G%76UU6Xc4F(RnM*{n3GvvIX9~X zU!P~Ui5@*QZ`w!>TeMJ)@yLMSBc(ji*VHccE9SY0<}qrZ`nON!pv*ovzF7IAzZ-%| z)Xcf%<upi47!_IETsxdmlWj<5NrX7*Y5f%b1(b~SG^>kL7$P8r`SWRpn)T{(HL=+( zbrcyb`e4;m%~ac}Bugkn&A?QRpw%Pl$(9ClH%YGIp60ApDWw&*Bz!;Ri@b}W7n!Nl zJe$e4S?`ED4OO}CPJhG$Xg8U2x<=Jz;5y!CXRkWm+bh^bExq9e95C`J&MvN;T~n(3 zWppi;WQ6VfHxkX*URo4X$nsrP4pw}~9_Q1oHrTnD&bnG!Ph2~_JCUlb;c6TyeT>JO z_$kTNpmQ9gX15c$wbFW!E4UO2E1d-)T=~p%+G$nU*~G*bJ7qe(-tJS522kHfmp~zi zY#$tZRa*{o2kYi(fs~BAyqs|pM(5@A%uLV9%yj<ubS#TtveKiOtR~^a%y|c!*R%2U zUU4EwlW$7F9GeJKyI5hudsbhi4XeEqPGE{sS}VIuML}_)o=JB+9c}~Cd&H!SQqVgS z2*mN35@CWMZh508PcXmJ<@yT@T`+dRR6y<efs#>lf>oCpOOQ@nv<tCJx|N8aXJoQU zKIN!!{oxcxa?I3d399?q68LJ{DE1}Oyp#lW)r%s|@AG$yNlyW+v`Bh+F4%D%YR)C7 zTk@8e`h?x?LOxL~`xB?@55+UiuR2{!`ho^~m@p8I{kOiBG=;LQJU4FG+rn|<hK(hv zhsSAJ!~HhAAe6)Z>jO1Ht4ddlNC%o&CXu$PVeW|kf2_t#PmtMRO9sZys<YZ)YG&FA z3kMgCH#ShqFQ8JW^%tlL87tA#jQCS`m?=q2^6;DTM8=}JyquLBjQv67sIbXa1<SI; zZ*w|gyfrsX2~G_}aV(reB|y$Rq~56>=(OJG2Wab+^kZllsn7<vlorO^x?hI%)JAk# zgh?yFQ;U$pL!E>4aA<^?T`N+X<H*TQ=TG%)3P`o!O&weQ4BLcvnkYOW*NGRtQj-oI z)jEw&h3)k!sC7_n##onV;1Okr*@aBqD0A@uW*ZYpsllwF!V(OtSGakLe`aT^{+N;O zzQwFhXZrO_o88?^h-V!qw+X8DwhVTp+D!NUz%C8L*|FIOvl;c8kv_h>$lHTD?)~h$ z9K1i5!E!}@jErm~_!K*~(6(D#%`)+IclAuLEu@h_eYtrJgCw=qj*&Op-&<~W$yGv; z#{S}<Cc(XmrM+TG0J3$Ywpp#Na=SMe4@XtdR^8-k(b~Uk5hDSKx9Esmm#Qa|zl%*J z+0D4DnZ@&qv$R1~W`0%0;)Be3TEm=|?PK0ji4dC&lZK6@KH7~HNdmR~)CAhzl>0Rm z+WdtktQpj)ugy#&kJ*#KtSJ|rU%13B5p489b(NAOIkZuRn-%AJnu@(&4`9|8!c50F z4mhbGeZ{pya+86+Y;Cd-8>GKRwKJ;WyoveRY1*tFBmG;lk{%Va6=SI`<SUN4tRc5* z7TA`V>85rUoN*dls{H6?Q%#oRQeC2I!JEaOwbONjU&+2DTl7lR`*2B74qHoOlN*@} zr%sC&CZQGU>=v=<klmt%3`v@tYiYJipel_NpIfHRzBD_~!?uyquwB*Gq0(kS4L>QA zm>rnbg81hUMn=yz`b9wY*9g<WfE!b%hr2=A!%1cUNsj5Owr8ezf#c336Aty?kkPY+ z*POK(o~QTK^<7$dwGE+~?&>x)jVh~+7qAW0efz`y-Ga9%ylLD|TsWHQJY-{*t0za= z&C~QL47&{+1+UhQCW%p3G}TmT!wk`aHf-5J?|K`vA~>tc6cXpk;`xPbY&7NBY=cjr zurk-|A<geu&M$p|8V@%1BM8g>8fOBuzo)D9rBLl*t_j*%%!gBam-|r!mdm@G`}`NW zC!Dv&$rUHZ>-u8KZb#DEXoIOXX0xa^ba9ak?95i$rl2@~u4bdQ!Ht6n=7-rxoW$g( zd(kQ!4UIN5+)Z*x5Y4VpJ%>aZ`d`aPq$BJG`@k?52@|0d%Ao=(p$d+N6JQ0L2A9F* za0RS}hv5<UBRmS5H*J3V)y+>maOG21KK0ubC$2bg-ch+n4Vy<S_ifs8c{BZpY~Qj; z`=SZ6?~HUPdVgl`NT2a-Bhy<pDIFVWUIsNSn?!c8R|2Ox$379b*24xHdq+%|JK4Kz z$Xwgr{)%L^FWRnKYbP!v$9ITK9^Wi-DCG0oeM{BYRxPW6$a(j_99<i!$NlYgX}P>Z zk#2Sa(-(GaU$p1WXY*EFPztyg^(Jm;*S_f0y^rJi*iLtItyN2%k9cRF?fp}nv+s26 z6zA-ky+8BLc8rimO`s_>gXXXuY!5A<CGet1YiI*IKpN}_JHgJd3+xJQp&hh`4j{SO z9Xdg0=mLAdk3kvz-$Akj`PbGamG?a9p0;MYNRxd!MCKMqFd|L3)<yYoARGh-!*Cb@ zqd+!5y6@_HlU9+)WVi}`hGSbtBKJZ2Hj&6ecoTZ>5Q&@wFT>txk;usq%HnUl81bW? z2cHL@`80U&VesIc;K5tLgT%Lmo>>=srk)2c2A@fMuqE$N$SpdOZ7m~BGq#)4J<_^G zdwW#TOh=I>{Ua^f*)wN1F=w{ZA-O!KJ6FkIa?czeu_w7M(-CPNaep=039~O7{WiP< ze}nJg2lx?wf}bHmUMugLLNn+JQP>N*K@Zp)dP62;!8jNXhrk4w2$MkaGX)NXQYeGZ z-+S%7CtrK-wc9Ve{ddcMH~;p}FVvaCy)#M&|G)00+*riNQEnJpszL(;?pjQ&r7c^& z<DpcSEm(WK&XyJRu=e#Ui|jX@XycpUoA$8fRf4OwR8iCd$)HjtT&}tool+$dRr;4h z1yn*6EQ956GF%Fm!R2rTtcEK=HsETw1|EaQ;R$#Wo`z>&BfJG~!?&<$-P5-{ea-pT zoO1p(=dZhMT}?^NjCDEYjLqF-u~jv|=IUonQ=h9g{TJAf6QuB#q<=%DC0Pon7EnKF zvg!0Mt0A!x5LT2<%9ropd-wr<gr7k69Saj_0(-!o&=sQ41NMdk;UG8|j({WKC^#C9 zfjl@C@?jP%g_GdZw_bVcu^S${_?(N6e{B8@N51mbE91N~k%-NULhMvx{jMvWl3n*D z>7!<;m!yW~c>QuTzIG><NSluH?KdWn=|~sl$1+$BE8sLZA1;7Za0lE8cfs9o58MkX z_wR=X;5Aqa>)>_R02|>e_!n%3ov0f~|F2lNVrA8el`GKy!lMdvoHJJct=w+dF7>%$ z(<0A?oFFZdr)K;dNG4}a+n_<EMY8ZDxAl`2n~v{V4XQ)`l`lKPF0d=Kg?6AiT?gn0 z{b2wMgh4PAhQTzL4l|$v7C<FbK{eEX>V=D7F|361A*}!N(f`8(`fp_+@!vKtb6aeU zeXuFCcKg&z+AmH254Yc#K;|P|lphzsD!2?Thx_3Hco1HN*I+HIgV*5=P+fmLY=Cdz zTlfyXhbGkhn?f7d0n#8H;+6llMvyqSgI8>>{h1nRs%v#trqtd^T;^<veQ2mOB-8(f zmj5qW4XH!_l`k346ZVDupckkemkC*L2uy&9FbSr>p>Q-D19`9nj)UXj1UM0vg4%-1 zU^!d{mqRM_e>i1I;=HOW9jzoiMI9&AlGM-~ub)MaU-~4MNGsE0>^COVf91y&uo|v` zYvFdd1MY<9;RW~${1sk=mq6|NSKw9n0{#hK!dLKb_y(HM_HPc`L070>`7i5}>RhpD zF~o+PAT5%oX8ateOU@c94avf5X!-v~t08shzw#vtdqFqo4n07=n|&Z1M#3l<4LL9# z4uNAKA7;S`a3U;)lVBMv2l;<afm2~MTnS<Qk6-`K;=V1{@4C{_>c8YW)soiG9N*UZ zKhS<-0-29=QGQ$nSHtyi13Ux|!y~W`UWYf}O;`^bU?aQ*Z^QTS1N;a-LDL=4eP{>m zp#$`R`sx35+?ncJvHIWBhMXWR{@e8bW^$s=bnGPkR9+4uZO((wU?z^i2jm>w8Q%~* z3w?J%hv9t~u`7BE-@=@>$OsH?M|lC!_SE&^a~Ru!b|ZA_7>S$#UqNDz?>~c8z0hr& zf>%NZTXI`HpV^Z4gr3=wgDr_$=shN-VtmFS4{?kKxwG`LFZ6@{FaQRE<Y9jp4AWpb z%z&A2I2-{LumCFI_izTB31`DOa4txuR>Jvk2iyr^`@d!Fzdex2EiWIe{a=lY*Qp^5 z?0fvB+5hhL8xz>PNEhYDU2r$t4-dd|@I1T#AHqlQ5BL~9flonp;&b={cHkXpup{gQ z?V$q<fPpXwra(OVe}(Y~Sp~PbvJwlE>Rhq*zoQK~L0bH`+5d~JhSX92Q@$JuQ(+oR zhZ&$U;4nBGYG5HOg2k{DPJ#<y6<i2+!d-AT+za=?{h)H>L3jw(!RwF;{cl5=v$gtv zCgoSECGD4{|GU_4Od#`-F3OKL;7xc7-iFQaHT)ZPL5g;Tw$L6rKu1vBV0Y*QgJ6Fc z3<tnLa4<}Oi7*L@pnm#)GPQ_Q=Ze*TI!BYp%zvBy|Hf)a9r~|)DTaAa0;Ny}s`pjE z0yqQCgtOpmxByncb#Oi008hY^@D!|pr{Nh;-SN-x9DE2LK`QkBTk4lvtN$n1Fp{TG zBQO7dPAc<}F3OL8z$W+%K8GDCCwGFKVPDt}dO;>+K_5_ipda*y$uI>Dg{d$DW<oy9 zg4u8)#M6J<BNQzED`+Kb8~y)^wn$=``ES$zh4yQcOLr&b%ThQAmcz+#3aG8O0#1Xg z;A*%Au7#W6W_SXggs0#wcpKh<cj52w9;m(e0elF}D2tjyD)j%u-IC>HGXIbK=(eUg z&xVmag&Mj3e`>WUVfnB8*iLl>*a6a@D@0*07y?6K7#su#!*GxfU?hx!V<8`A!E7jo zd9V~tf@N?qNdIHUe>A-R=NN{rZ5#XWx80M;)Rx$XhSmn_lH2-u3$1h)*sn=0-JO&# zm%ycPIa~p&LH?bq;A(gj9)ri>30MP9!&+Deufvz{75odnhJV91ARp0p@I7>-MzR}( z^*_G<_qEQ+@}jPEN_O2J|8baoNAeVE<odtfYD+@>SAOgcogfN(!AKYdqahEDg?yL| z1yBg``^|+SI2BgFX>dB60cXP9a1Y!IFG4*1A9dR(MugGt5St6Zk!sFJYb)0i_SjbX z|JN?bWUjI4|5W=mvFRE!{!97t61)tr!fUV=<kNi}-hj>UHT)aCfuG=K*ps?tSBOG3 z41u9=ARGh-gZ#oHU?k+hu@Kh(E%X09xo5JxN~ZsQ`JZFMNS;ECT>qc7+LBQJl^^*q z3yPo^&VsYy9JmQ?hFjn^xE<~Q`TFmIyWvH630{U*;0<^aeuSSuZIIn*YsJ(5hL``@ z(QT#wk918YQ;kjk54K;ET)I0cUphf&*aP;2uAqLLy`UQ$2nWHzFdW9fSeOnoU?wbp zN~nSwSO|+ieL+j$IJf{-K`QkBj=hrQRsHmTfDI#g3N>>5zt3t*Lj6~MTnHDz6|fqf zhZo>4@Dcn2Ho+(GDSQU%-}?go32C%6cZ8i_XJ`lQVQ*l%NhBSHLp=R&`1tRP?%PWL zZ|aszrW%|6XWFkxF5R7!FC$<ijD{Q-1M0gS2h4ek%z?R31jSGe6>v731Lwlca0}cD zx5FK9C#e7TZny_tf|nr``hP`_WO-FT{qJVONS;ECT>r1N+LBQJl^?IbtMDeQho2#W z-=GO}hAyxNbcHDF1?to94n5#t7!D&~B#eXcFc0QK37iJ;^uOWde}{dxmHuC}cQTo3 zZ2I5Deob=e?xcJ<9exA9ga3oygT`x|31`7ga5LNjx5C|U54;F3!OQRo$k+54d;$N2 zFF|8I{so(17yNCzLMrtCjPzuARX_dT*@lrkg&Mj3pJ%ltq5dmB+Cn?%1f5}j7z_tM zE=+^zFcS`g!{G=x5{`n!ump~S<6$|R4EMtW@F2VjsnP%DJ-3zqpPrFSrW%|6x3*uC zT)I0+Kb4p3AqS7)UC<k!(MtFPj>bo}9uCEu@JARxd-8nvCmcfi`BvDAmd0|}1QV%m zJ_7qvw_XL`!{O9K9)dk6ix$H-6ffR?|2x>G3F4)*^CLVqEYd}K`5LT+*WnF#6C@8C zU?Y4B-@*6r12jcOnn8Ey0eizia4-yqkuVBIgJfz9j0Jh53n3Nu|M-2A>1zG#|4-Y% zk~GxgUq6q2{L$yhEs`Dcu-txQLi?}$m;-a66w2UiI0w#!o8cC?6>f(+;7*X8xEt<) zm*8c11zv?WVLi0QezbudU>``0{r_^mZDs#!Y{&`HDtT(h&!L7&LtS!PKWVXk@^7q$ z)M5XXFX@m0`@(+E3seSVLKYkX6JR1tg6S{=7C<Fb!5MHSoCW8=xo{q+9628@fIHzX zNQM3v_uhK_|D;#yC8?n~UcVfTFI~wc(&~S?{l)|`9qFR{xEt<)hv5-;7XA#+!Taz5 zd<g%5P4F?OZty952Cb<dw1FKU4cb9_$c7;>6lOqb^#7gA)aRN_tJyZ>1ZkB#wd3bd zL!}{=`u~B|kUI2V`7#sK7kUI72}gnIeaAo^91kbJiLew_z-e$lJOB^EtDrvHweUK; z0dIopjvHVjd<)+}D)fJ5pRL#bH?vYNNe#{MZLR-D+iy%D(~&O9kMH3JXh!|MIb=c> z^nvkk2uy%UFd3$R+5_rg%!P8OfCW$qOW-)T1TKZk;66x={{N+K>T}KN|DiVI1ZmaS z^#4_>A$91#^5uSb03L#e;So?<?@@RRHo!)B3*Lqg;6vDjHsG$%7J5S_WI<o(2mL|q z#epygra~^HLjOni-+KLjreEqM>6fPehuCjSAk&d9%8zL<9gc#dp%SW~8qS2X;A}V- z&V!X8AHW5$3hsit;U2gb9)Ul?U*NCsB5V>V8UOY0fYj%j)&GNR$O+P_vFZO4RzvF0 zf91=^@CkedpTid*|IU~273_qMXJ^<2c7@%c6J$V7*cV2@XwaC7u`mwCgM362U?LR5 zJV=H9_aC(N`hV}h)JxJYP5%$D-<UwABVCjq^PvQ)pc?)Ueh+8B^>73H0d9hu;TDkJ z?>4v{o`)CUFYs4b3+vz~_!%Pj1v|+<m=gWJasSlkn$`c_Hsl0p)!6j^cB>(E=)dx% zGjxGHp({i|KHYB69S#DGCK(PRU>uBxV;~QXh2!9OI02TzNw5s$7d{zIfh%A&q(cAq zI$-Pd|C+(6m!w~s{-@h-Od!*dF3OK9;VSq8+z3y@Gw>|@9o~cY;Y0Wc{sHp!e+-{M z%P31kLThLPyFy#o7xsf*kOQgF{|mEIpKDhCJKK;Gq*Y_n|I4k0)S>^%moYFF#={{n z0o0E(2`0mQD1lNagBn-}7sDlRDclS9!Ts<cJOmHJBk)If6xPEANQM6IG<56r|J)&| zm!w~s{<pW^m_Vi@U6dai;VpO{K7bbV*|mgL&>ecf-jEI%&=b_Zw;%L^u`mwC!yzyg za-kY(U?H3hsnP$_hNV8&tp2yMAty+y#-{(jw;EE1{wrV3fpcLcoDUa(`fe|Ti{Ku( z7w&`m;Zb-DUWYf}P52jVhOglp_!hnc_5c0=Kf><x0e6B_=>LxgZoU35vtcApp+-Lb zqgm2)igZzabcQa_9eThZ*dGSNRLF&CFau`7VW2+!Bj89_1dCw_90$wcWVjG6f{Wp9 zNR9qiAH1#f|KA5Clc~n0|Hs*{NiN-;lrQ(dy>LG~01tx3Ydj2(z#H%;tcMNocX$uJ zgYV%7=)ky+j<6eag3izdH0EPZ=n6w%D5OIFKOUYeuj=YYu|1?^HjLyc)X4S!pH^EE zlxdMJ%8y}iAdH3_m<}^wCM<wTsDc_;2#Y}Dc$UC%Z~?4>3*jPI4Ohb5a1Y!IFG6bc zf7ZxtrT_1bNG4N_P5+DR*CdzjPRf^;;AMCfUW2u;4qk^hU^9FT|AueiXNWL%x-GPW z_K*dApfB`?0Wc5-!TvB9ronVbh5o-WDp_9DPydgyVI)tXMy~&Fk4%<MkuK6><+bwZ zLWnSGcs~3EG8sF1HSEMV*(LBEOkh;u_0W!SMa$stFm7M!hOi6cXUbtC9K^VTi(yZC zp|65n=v%LWZ+M0G-+#fuKfRCP$EJh_iN7>)0EwRoy(e^=i9mRbx9|=jG2{O_OCM*z zOgIMepavGgA~*-mh4bKixBymxWaT2b819Ap;C^@j9)rhWBfJG~!?%zc`#&XTTiO3t zMkmvi#%BL#*sn=$-8v~>zJu@KNB9YT2HAlo&=mHBt`LR2AOm{BSQrQ6p#TbD4irH# z%mdky5-5e=!tWpz_W$WI$?~dx_J6z$BY6rna{K>+)s}?yKjp{&!SCTbSP3`5&2S4m z4bQ-{@Ekl3FM!I2zru^~3498l!RPQb{2SU(cI*IYkPfNQ{{zQuEB$|bY%-Z@Z2CXS zeob=e?xcLlfS#})^n%`?vOf#@zyz2GlVCE;fSIrimcz+#DO?7Z!)mw^t^(B`u7PXe zad-k!q5t=cPnK8p)BnLXjN~cQ$o2mrt1SujU-|JQJO$6e^Y96L3ZFqs>U^!BHS7Rs zup_8WsQFX7KyS!|Ea(IK!(f;JGvP3(gw*JNuL;{q|8F}anM^e{{qJYLCb@KXQod9{ zH7tZhuozU|KMszERd69(1Q)}Va1}fbPr#F~5#EBg;cxIR{2kP0cppB1rnDQHK`QkB z>WRtns($*vj}0Sv3N>>5|AW<*g!-@iXb#)K4v+>tVPDt}MnevafpIV%4gs|TC&DC{ z2lJr>N}(ER;8a)vr@?ASjsAC<ysh;AvPsEgs<G*R)P7BJ>F%U_xe~5|Yv5YA4%EiK z0sa7gf;I3oJOh7)7vZ1qC42>G_yKl=onRN(721OQ1nr>%^n?D83jIH4O0vAFpZ>SA zVI)tXMy~&>thOZ7f91yj7zjgQ7#t19KprfC<KTEW5thP9Am5MXmYocj!xgX^u7n%l z5AYZ~4o|=aNR9rtoVu;_|Njn6CR2?~|97-slU%wxDPK0iTksD24c-O$_1=T`p~=3K z-Ovo0!}ibu_JMTBfDtefMnMjYfw3Up;CMI$=0XvqLjO<7O_o>n)BmP6jN~cQ$n}4P z)s}?%uly*6c~A!BuoBLP3*dIR1MY;o;U2gb<nO&79)Q<iEv$prVFPT0&){?T0$Sq} zmj2hh|Kr!wwv~P_u^}f&i!IUby5y{(qk)oz*U<f+eyERhcT&EzfgNB+*a>z9`SN## zwvYvVpfB`;!EgXffQc{(il7+gK?#&X8K^&?0v5m-a3-We|4V0Vz5ahOJ@t~-&>Y{^ z^S`R>HzttzNEhYDS#UO70IT3ZcnBVbwXhCehc{t8YykD~yajK=_wWP!2tPrDexD}L z1@?eFVKAho{C{s|>T}JG|C(z<PLNhxVjmhR4axMsq5D5>vKo@SbnB#iIRLU@C=7!G zLH&0J!*Dnnj)6Ql77Cyc7Qtdz0_VX>I3HHQg>Vt55AYJW6z+!yAgurK*Z)28@U7AB zWa;Ry|NGWqsh6aN=J>YO|9tz631m9bMfvd{JOq!!6YxF!06#)U`fhiF-JvsdfjvO| zx?Ld(Ltz*k2nWGv$bpk!87zlOAT|2`@)4=eHLL&AZO94Is<G++>sEv6(0}F2rEnQs z0juFkP@nzPa1A^LkHZu2Bs>kzz-RC|d;zWL+iwFqz>csJ><sGn-xb<I7W9Go=>NE* zw!Qv8e`M+<>6fPelkGPqkm*Pl<wsxW2ZP}Nm<qWt4a%S#Dxeaopc*umV<9Yp^I#>M z4;R3ta2ebS_rd+}GNeZTA3Hkrxn}i$qzySiS~WKPUt=|>4*gfYyaKPnT383K!yE7> ztcQQYH}EZd2S35juzMC`J)tuUgh8-B901uc1ct&eI1rA2BcVR}zklAg*Z&8PNxdZf z()53r{l)|`9qA%HR$eQgE`y&SpOpiifxY|U!-w}Fhk4{TL971wao}!f%Y5ld_#<>- zp6QkFIm{bG8xYE%96}?M{uvx26}l2SNPJsruhjFU^}KCU@Z<g-JlGICcr$qLV(=hz zMHgC!cJG{9@cv8++a~zmobwsm&FLO#?H--o#2mGcq^)TgX*!{K@Tj7hIqGPy+2<m= zNgs~_trIdE3g9?69!`J@U=>^l7sDlRDM(f>hb!PAco-gmKf+V+Cs+>~U?cn+Qe*#b zJvQ}PYwdqu8*&0&X>9iYZfim7u>Z=JZ{S<_9)5ryL3ZG0h+qf0z#gzCbcOEF0}h0P z;9xicj)bG&7|4TTLAGQT%!ZR-8Pv!A?>%eV+y5K#Q!h!sH2c4w{l)|`9qFR{SPmz{ zZ{W9ZEnElJ!{hJ-JPCh-HSjd3e0UcA3?IOU@Dcn2K84SqDdk2pXbyWqJpFI@`tO&{ zPJOOf{qJf+PLNiOP5-a58dQh=D_^=o6uLoo=m9GG_kna638P>%<iG@&2>CDzX2XfF z6i$NWa59_%sz0oN)8Hz&8p8U&W&6LhE!-OWVCVl_P>^~_`ladr?)DoK$aJKO^5Yt~ z7XAP?!V~Z$JOyvT+wcy&3x9|A;C=W2K7?k}3!B4sus!SmY0w>dz}|2WNdIH|e`@dl z{JS}+&lRiRX*T2pX|W~xoy^ZDe{DmhAz640?f*I3YDgXWuY5TehQml01*1Xr{V^~W z3ZM|?z+9LQCGZ>gE&L9yfotJ9xB>nEH-g#>H^VLPEc_Y5`XAr_+oWh~^t-NfwEBPQ z+|)~2Lvwsv`+r;5Z%iQbkuJ)Q=iqsG8D4=8;6wNbn$pf|2F+o6XaOxj?ZDR12GSt| zdcwZY2l~P&&^m27a4f_t{~Nyl!{Xx9=bE(--zSy1EwK*`m4;+;+tB`>rS@y;(0}Di zKFopwD1<qnHhvKl!wNVJPKV#X@8JwM2hN4_;1;+QZi74EPPhx?C%6ahg_q$KsE_`C zK5yIWf2Dm#@)T<1<3BcAZAqyA%8ys!HCPWD;0yRCd<i??+ew2RVQ1I{b_Mx<+Ch8h z3;m!!41jDH0+V41918OxHTplNWLxR~KjtTsxyGjdCH8BQOLr&bO9_-hIaI&`kYBF~ zs^M%n2hN4_U=>^lm%ycP8Qcf=!vpXTXqCoCK)%68;W5|%8=*e>zp*q~UeskLlU?`w ze~-2ANS;ECT>t-WwI!kcD?i?Xx8Z&G0KSFq;CpC~Keq#Pgx#SNbO!l*_kcYi8-~D8 z7zQI?BrJuKU>RHt@$|pp?f+@z+e-h}l_it8#-{&A*sn=0-JO&#m%ycPIa~p&LB9N} z;A(gj9)ri>33v+r1kb|@@E7<9{sEid6ZjN91N8@d0sn+F`T}-@u>NmZ`~SI$WO<cL z|NZ@6C)qHPr%)r;|Cg+`B-DT9$4;;_bcQZ42FAiTm<<I`2y>wbia~um^FjSQrQr7U zyu<HJ>z=*i+3Qwaw_??GtJd97T~Ro3#Qu1a`LA93qF47mF4CcB$-GgK(y^^tR)K$Z z&EB8+XQ?}H*R3`8z8qZ}8Oc6`lgBrU918jTj<Y+oU4dUWyBBGIN4D=!WV%eE&8X~Q z%FNNgmdn`&`KXr5gLm3Cz@HW*ldJ!P4d@&zkAX<mueE4fw`1*>#D*5$|GAy|=T3z4 z;3fD3(#Wm-;26k*QG>DNtR{FN?3PVA0Nvnmcmm#m)~qwv8~Va<_))3t{uk;!`^r75 ze?JZ$ggVR;AG{fS<}V2ko(*1kDtPedf9T-B;Cq6<n>UTjEl4ZuK(iXH3jA8NGmAEv zt2brkXy2UH`$XF0prNOp894^#7OW_|nFhGdyx8;@m|O7Gq)|Fy?rhB+vBy$1`yTsC z?>4`h(2dw$`ueVu?@h?-9YFc-=KU;w7sCl~KCFV<;cmDGo`Vs{$1*q_{twQA*I+ID z2tPqb$qwuedqP)mW$I&oe+kWyqYfbX+PvxQSNZeI!*BEF4*t6Ca{j!1-C5V2cou(E z&duWwyUrFV$!c2?C2sArN>uNx)%OvVPHn>4r9FDy8ZjDTO_QVVuGLcF2d?t=iIKzn z5IyUr`@HvfXCLXC=AZ58hN<kr9=W%B=R5W)3ZC~u(Rue~-*PIH+Gpci*>~qxdH3$^ z>T(}PceN(wrEm>=1^<E{pe?Hjwu3HkI{XIChCAR+cn}t{e&Qln3TMD&a6SARzJbG8 zi|z<G5-Onz?t#zWd1=i%5599#;QuwN&*#r+#}}V=)M=}Os^k9N%}qajW1sPDy)TN` ze0?;WuUE{O5zIL+HFe%gx0u{c^vnyRH~Y_cA%)VqOZ%dUySJjW(cdG-?@XDsv;Rzo z1n0f5LefiERyHNQwZihQ>X}+ssR!9-b#+k7<+W~z%2uBP%J)ssntbdDy&)5-;c|Ey zo`dJX&F3@8)61MZJO#tG!@<l27><t@-iP(9K=qxQVfwex9BdB8`itN};sR@Z@V3OI z*V^E1F9i=0{WfKUgfY^*8Ma%$g7*Hg-gktKjcqq~+FvSR>@Uyq`=w4t>EB=Auka#d zl8;%?2bRHdP~Khwm%?T62D}L^55^A+twDL853^u4Y=pPqZ8!v3m;jQEIWQNB;BvSE zR>L#!EPVCR8y`LW#)EI%cJ*y5Z(Di#%G*BDnHtWRAG7%psr{eT`3Dz;Y`H!<V6E*v z=hP&-$FnL*)R0w)u?@N&2-~yTIv=p+o<{4uXJ@>(D2Ac8*f_pkl`M`iF^Ty~?~OX| zz0r%G&IaNa>8>>YNa+rHps#zvayS`If!E;;kS;GBi7yz=hI8R&xCL&9Ct(fz1^x;h zsdVfHdq8)X2Gd~%WQ=Bt2n>Rua17+Zv9Nj5=JlJOUH|a<&71D#&&@Ync?17kz@IZu zSzOAW!Xx}r@6`E6`QJ!sytrK(|JX~3osS<I=WP6Yn@{=Pzn2hmO1k^UUWg(4yhHn< z6$@{{*6VMzH_X30tAD*5;CSP{U;D?N3`m{h$iOR$LoyIk7RAUw%vCR*@nf&M-FS6Z zzV1qXy#$d!9vw(t92CfxOZctzv0jB{)JU7dNEii=LE0Gl{@{9eY%Fa9Xg!YpAqbiM zkZDbPC3IWjgU^DtAawAL;FWiS2cghH&x8&(CVVCo!0W-=UP<XeAh71L;!p2NdC|PN z_iHzP9XJ2C2nzMHYlgZ<&2?Vlt@G^y=M{!T!iHgf?IxXD3MavZpnSd(nv$o%d=BRE z&E)Z&@B};qeaP#+umCFI8n_lD2g?7eVTbY90GI_Y!b`CIA@~}<{PxQa*1z)1x9cCd z<B>l+a_u7*JaWNrFL-2WRl(th@`ofqb6)Ilg(tDT_MbiYWdE#J4|30zjcwIj-i2!Z z^`F_uTIH_n`)4mcewlyP(@Z6INHb%!PS*ov0GdB@Mq3kK{p-EOv%R{XI+%OG(^8#x zPx^7HpKS|SG2ZmoIX_~FbT;rNER?MU8lmuxBsyJ#`IAF_i~+3~awBY*NPq7nbRJ%V z4wI?BL(eJn^TOqD1sroI_ru(&)FolJT-tDO1tiw+F9PBn*^+~gg8_Vy@ZfL3EA@OP zacH3{8-hWv3m&{2Jb0mg2f@4a+vxmjWeXgAwZEjp4;=A|bI$&fzFWPHqv0kLDTUQ~ z`%Cvp>>?edgDqe<`8^iK!AdwEE`aOcdbk0aArH-AGE9L(;aJFrhhRNOW==p>P7KJ* z0Ayw?90rHO@8FwH-+krX$6vYom3KeA_Tt}Md;GPZUi@iAVZ|{Ox%`Pu312I&-foz$ zE1o2qkN5QHis|umT=#fd=IOYSBc$WD26o2rSf`dvT)m0$3V3h2v+Nl^%oyvSYXR%v zz45Ta_l@_))yE}!V@%izBM`P1AD#EU(L3u}MB{6Xv8H<{FV2C>&|_Dhk4BfJ(}f_N z{sex4?a}8JApMqZKMyZLt7(+=FcorP8Wce>oC+)81Hh-V`PI$O{_(CG?z-%*b5B3v z^wQIhES*%!KeaO4obb|Y)?N$ZrP*;OG$73sM!YoJV>%A(TApa#UHk0Z0hh!%8(-db zo*k%3dU+uwt{tw_xc1pMhsN`4Z5VJ?oO?sHeeZ1{nfJ~<npf<F&`J6DG|VG^T96cL z;ES2~cMhZP78X+kFM(6wa`*sFI)dLY>`0~}97SCLc7l+t|1y}T^*q=VeCGY&!8-{L zLe1`1g17xScyNEhgWG~vt`8nu6+BoSJP7=j7uDEUxrJJy2=ds<5Bph{GRIT<6rS3r z@YL?S_hpe?y*qX~_0LUrIrWmCRC7Cq-^cRX-lJf4;tBgyr=`n6;p#os6JUSImLDG7 z)3NXR6^upAqMbv>2TUI2+$j-{>?*zd5I%zK$ouU<a?ldyLkX0^B3KMB!z*wg?udh7 z1k8gH_!oQ)mm)ux!)o{hJ_E_r5AYK#K&~pG3QmL5;nTNXdTY&FYwouHTxI_`n}2?@ zta@2t^<mXcl4BF}Ngd4JA<Ml-)0WGd%{yheu?hBiK;JvM{Xcp-a2|W8GoJQw9MXMT z9-Ou;nWeG!tU9UgdyZS0>>f`;LorBf1!GDDJr(#e8>{>ilf5yrm(pIko`zoU2#3G~ zm<S7D5d`)B3XX4rHSi2P3-7`EAlvX0{0tH7!)VBX6JaUHZfxGPev_K_o9?*wqH|6= z=b|MSmCd>%_m140+&d!PmrAh1d24geEsu3Q@TFc2TjvAb4KF>VLS7E@mOZCmiUhr} z^MvqQxL@b&74Lo|LT9~WPm**tUM%#sc(G9IyimMvmBNO;)#lq;Dr|{sATc?wFak00 zzFX(LH+pA-^4?i_av8{;UjbjizhE;A!M+a#+4*@eA0C2-;Su;5BG`Sm4Cu`7F7VYy zudTWHwKcC@cGl7bM=xEobivdyLml<?{%PNAUe;;!KRGRv7wLEA3%oc!+xw?DF%P9+ zy3zN+E8?Y7{`hv@<6cV3AO|l*_6kdtt`mpgE%e3OmXofLr@?Dpi&JJ@IT*Yc>2G3p z{VAc?DU<{EZ8Botrh)fV6p@k<RnEK+bziLz_pTjV-4h5&VR$L1Sb2HxX^74SWHZuE z<+k!|59kRkj=}cBC2%Qdj_ecg6#NO+!aCRtKf=$@BabouPz)!*Z;oYLIP}a%cA)93 zn7YAcPYn1GYWjuRXQ6{o!z*;~w_s?A4?@o*K1duu;wy<m3w_*%U_=uiBz`9Nys2}P zFM5vBT<yOPdZ4i8od0X%!9zGFufNnO(!2w|HgxLboHNhvE`3$rpM5lvN?yA8ue?{D zE3cKmZr-|i`W1QFdN%bG*at?!C>RYnFb297;NzV`y8tSn8qSA{;Boj9d<kE}-gA)` z$cB-y0)7X-hqK`Ucm&>occB$pQv%<9_V>^J{`yP&S@Y1Ehi>Q3n%l4a_Tuv{KJTnr ze=a`d;$R8}etY`yLgq0+{lKRqKTO1HY3jP)8r6}fV_39|Cwz-`Sxx_tMN`6i_j+2Y zOsIV}Wc|E%n~e3I)KTpx+qK;#&RGe9cdr+o-kl}gYzA)LDc=r<J;^)e-!X6vd=5hk z8Q%?GgYtEMI24q>%2(y7@>6*^1Wp6xpYl%m_FW*wBOx0QIta;sYHdJb6;6ERgJ7%^ zA0!T78(uL{Gx~1?v$@&=_LsEY{_?e6SFI(`FQfmRlrMh+=~UZdWE<K;2j~d9!S2ur zIzt!O1G>T>7zZ0*BlMcbIuP?||3l9be1s6n^Uy&k&qG&20`Q+Y_%N8w?*|Xw2_CGk z-@)48Z7&56LRX#-UJ3s;dAV{Y*?0B&zPImQ{8GO8ztrdt*mt!=Y5JwD*)G!LkK1wQ zDLqy@&)8p`I2R))9c4pH;bz#CJalD1dA%nnpGU%2aPwOEJb*k_UVi|4kk4*@@5k?K z7z&#=y}RknzrOj@1GheK>(!T>eaVVTY7U<~I{cabQQHnh`rJO_d$E{k8)`+1h)wWZ zE7g=9iVSLBw7TOZ)Y5e~cTOJPoMC~@BgcTMU~|Ssn%buq{JAy3|Ge(KNA#Ai37@cc zV_7e4^&R0Vfjw*K+1t=r+619v@2*3)`)!<O<9la9R-O=)NgaxmLBY4%v-;aR%iCj* zcbnMEzwX5*HY{704f?A(D4%A+VQ>WeAN(FJf=l2QxDD=tyWt6V3jPFZ;4LU9#a9S( zU@rU~&VY;IQn(Rrf?MEL_!K(h9O()fkO>RnB-s4%`j;NR?_>LC{WX`aymb9ydt!aX z%EBY`$1i_7OgbUXSMNS2&p%6ANlv`9+fwNvoImZI?uQdA0eiPM@3C?bM=BG`vnQ7= zVkNnv=;viII?%$N^PZ_C{c+wCPnWi@C^G$<-DRWQe01|Lm`}~glkcHrIemH+^a<cJ zS_K=RT_t4&TnE>~`&IP+OV!-}o^^ld-=~5Hj|LAy&xCFZ9XuF(=APie?ZJc4mBa@( z1)sStc#!y+#8>R|rX-e7+B*4Xi=N?^thYqcT5tQyuanE7TPyF|cF*4Tp-$eTNsof& zP1uV`e>dO9{7yH&dyk4Vowz1o;wG`^3-+!#1;J$ZXY<Gu_h*yHq3%!hA)B|hmCh+| zUxv@233=QU+CWFR27>v%EBWl^`_=ru#>xA+<o$c_0qlvht}9f)NpKpR0UyEFP+5b% z!^yA`=oi@ZDu3u2xbOBqUVHJiXPtW1vwvJt#-G_sW*<gv)c?=3Z3oP})z?Pv?35E` z#yPvw?$J1Bw;wV%&e<zR$Mf62IcT3a_ddVisW@lH?6a$X)~jtBvG9(JXn3(cXlY<% zh<8@^cy`M>JND>!-yPo)E<7yI5AB5zw2x8gY%tHJlRq=y8wgd(LI<1u3?W;C2UH{d z|3X*%)7$XZGQ3m;bFXa@>CmG|#~w|_&7n>dX?j6PWV^Myp+Av$v|QUM(q!e&8@flf zAKSx?n{L#9t=2Y;G;K{{tZu&RTBB<l-*}SqZP)hUZ*)yJ)$iYSUvqQ&K}|Y--Hdv* z{_3>0xgPFp|LJ1?*~9)bVD0viCfjk7`O&&rN#xkz`}6gDMexj$>H*tth@=rUIutbQ zgCwxuKes?vto^YzNw&sVqV1K>-$FKexYT@$^B4C0zvI6oDY8t`()qfrmlijrBrQ!s z((?1qKXdVyBrP^ZR$3xWmG47f!>=~~A5TI4H&$yAX{z$~P1p!uFJym5T3tP%7c^Z= zSq&$^)9@U;4B1QQ_lK8Yr{kz6KtC7=Lt#AJ0^h^Z<0<Fi_pl0{hZkWTyg^0jO}Ljn zDjA;&SODk2DtHuBH(1A?=QlmR>E2tfyW$e_=lM-%^XKtRD>f}%v8j|Ft^x-Bjq&bR z@1haCJ>-*f3stW)&TYC&z^kVt_ZGjcvBR!+`e*SA9<lhnfM3uY(IyDhDLB^o+F^B> zH7Cy5clYwgW%}<8)jSAs|E9;rc{cvpP;9*N|GWW(UI^*Zd*%IZ<UPsl|M#o0|25bD zn(e>xeRtUWtIhw;H*9_WH%9v}lM!jEe3#wd4|{*Qul+0n8a(*#`W?SUXwrjJm|yVM z6iS4x4E~bpf8-@q(k0b4|CR45>zh%o|C;Q-`TAwb?FE1Mb?U!q6E;=8H;19Wvivt+ zZ}NZd8@E3HUHjPh+JDOTVW7JF?%4bZPzYZA-TgHE8>$l?8@y7_gHQm$=ePLxF1tl` zJhe-coxt;V9L>QoFt<R}@A%f<&;RFAkpGRb{5L7kLT$7kpg--gUz7d!^Z%rqe$D!? zd>;U6hwnu@d^(hY+a^ye6ZKU2&~5)|{eN_q<LlJ_y>H(7{BOMaFQsn+10Zo;Z?Sp) z1w2@n{eL3``R{&a<17D_?*pOiB<69$yYM}XT*i73kXR;;bw67F*7M+(sQ)M3@@v+A z`B+QIZ{@$6=iQexe+!D?v6C4SdMaZ-;1l>1`mLb800*2#&jwC|N8vH}7(Rv1;9u}> z==&S|!@p&GA>_aqm;{Hyv5*f7e#cx8sD{m({{H%=7ao4$o)>OB|He~qJn_c!E9X_t zs+@I%`R9mvM^xUZ8NpBY{KE5L>UdDMz^ECHkLuULzwUWHLw9-J-;<B~kg_j4x?1OA zyu}&rSa4mNJf2Sgcg%PE*~Yrl^Zt78%a8u4*86lW=6znQb<GRKI~(#Adtr|le^J1b z9pC?}d))B4OUFNkZshg<WA97=ZK(b@K9A>lwj$Zd%f6I|q`f2|N|DmW<2^jPhpZt< zQ6UMb>@CQ?g!1enOGG3pTXwSa$`=36@64SubMB&R`De*}KIWV=GiT<`_xJmqGiR0? z+Sl>$EB5nG@xSzh3-^EL;9Pm}Uvw9LpXvDeYdi}KZQ)ax3*!G%A+&uMalNi{G-P_g z8KY`%&35|i=YQe!|2AF({jb>mUs}=CiS3*MxF7E8xmrGHgWMBg(XKU#duQS~`F`pF z@1_68yG5>)>;J0ROX0NX(w29FDX`qrt{XnjeIo9szMJHgPvK>Z3cRaaVEXJ);LB#! zte`f~O>E$iN#|q(hW_IBUL^isDR&Dg{Zl)Aw?FBt8Cw5C+`T}-{>9aUxBt>Xw3PnG zFS7nuivLSz*h(R~OFun3{qX;i{&E6g>py<-f7Ab`<$D+XMfV&~{XeF^>;JJ+F0TGp zmj8?HaxR|O`@iM?uKro3UR?dJl=k2Df6?6;d+9;C@LN2S1NT5H=n1Rgdsqub8^L{J z?uQ2j+)ooXNgvCbX>g$#qc(44bj9RJX#4pKxx?8`>E|zaIKsI#+IL5EH|hT^yU6-q zQU0G!#@s~rlxUj`MElZE4n*_yun*F|%{U<ph0kCjd<pH|;k_{MF7$`@U@&|DL*PT0 z3{zk#d<U!Hd&tm__eH_ePz(Bj-0#W5-2A@;e%<@!-cP>dzc2T`C;z?q%9}6qkV@De zJucSij#-|&HCxrW&ofH)@NL1~)-B68qh!8!N}rg<?+LhX1rzh~+)Zk~x8s$wF5~y! z4!;`o*xq3)tGjLe9pq^f_epeR+<J}RPol^&`a9@lz0ZH-7oXmUj-tmA=-!v-cYT_4 z@@eue(~qD49fpFis6X$Aeh=*iuq^a?pJ(-93T%WwAQ>tQ^m~RR*(=;3Z)RV3nVsIn zjEqsiR_|h)FEq2kTS4f|_uj=qXI6R_Gcw*8l8%%Z_Ez-gzPM(mr0i6OAAED=aZ}F| zz$*SJQ&;OMGgt3_uv7Y}4>eaAP&V;7N8iJwPeOh)7OjWFGN0br(fbw<-AloP&>KDg zv4in25gtePH^H%q$)p{-*hTtxI0T2`D2T0yoxBUvU;(5XM9kUp!^$5P&zU}F{G9PT z5jNzLIV=0GoYT8!*PiXWw(r@#=gO8V<ISUoeaj)rs{Yqj&$WPr^hI4S(B7mDCpmW= zd3UcWWgY*wZ${t0#jS%aWhoucmgIl$mi+TAqFyoP?|5XRkryGo>l;rGvlp^AdcO8w zV<}x~JWZ^xRfzBpSGj@f72b!W-RIK^%CUb0`hjR5$38vW1C1a7;s$e15cGiwFcI$H zIzv_Xa0syhX2EQz_aTEp5cv`B6N8e_5>9xn`+PFV-U^INn6(+}7#SlH85tw081cr) z81crKb3U2P-fwDTyfc)qZ|d~7FFJ^+*%8Bz3DWCv%j}3Dy(4AdZe+>f=zS|Xmw>zA zZV>$|!!uAD;-CSDO{{_X*g!D5*h={}H~@b^T5Kc}6oWD#cJmmB?R1BCz_FpR*v}*o zTRIBKhxZ=dyYtr{f8F`(&ecm-&pZ6<%+-^YPWoi&kV&iiztO*Q|9Nd&wN3CI6iMSZ z5ruQReuG!51ED=%<?tJs+VcW^Oy=oQYBch!TcAy5)|LPDQo7WL6|8G4Mc&`*&l+o3 z-iQKb#M0kM$?C)}T`GGbQB6(RKUvC*ZH44Gr@&vIgl8ZY93Ot4^gx&eb74O0gu`$g zQsCDq!RzZ)$v+9TpdQ3QJT!u)&<rFV%!5_11~$NU*a>@JFSPoYekm-5U2w-x-Zuhw zLS;C1=-8p%TMixjarKYKeq8+Hu|soaO`kk{?Br3irjMFFYn1x$!}s2Lt<!6B+O?Kr zP`cVubu2!sHbU9Rq$dZv+HsUm7k$FWA87Tpk(c$g)+{ge=)6AS${}^GM2@y<o6c0t zWnVg%FQoRtP#%3`epdCru9+?Qw<@xfcfQo_%^SAL`i3`<Uy<2;Oa85n7XHWGIo@44 z*3)1sY=fj>*aD;(&O0FC0l1zcS^x&a2XFv#k33t<H^Q%x2_1ez$KtJ)=VN4ybwX!0 zd)Bv%%m(iqBV+XNjGl;*!RXwNk#UQSl#1(Fo-Xf;<|4lR4gotQeYoqZ%%x1CdFeYl z`clfQ?J_ZR72(~MK#bWgbC*-bm{okKDm(=*L0xDLEuj;1hAtp>@G%U9Phk>FhAANS zu>cmsa##VsfMYW~v6q41*v=->yI?OIgA<TyIGzI0Ahwka@<9=}2gKHXfo&l6)*1T1 zsbhyv?LB<z@Tu*`HWLXplRZq?>ZNm*PM=IT7|VYj$$w)9ygi^t2TPsz$)ODND}O)x z`-TOEU&&$Deuj@rL?Et+1mx`4>g4P<t*D&D9$5y@^Y?ctx9945SxQR1c_Y$L+a4>o z=R8owHFs}Be7!eHY;yMAsGMIUyiJaw<F}uYo(j`p4kW?1umV=XCioe4!(I?SKM5J| z_3I!9h~JNZA)~Mp_#7s|WS9bNKjGaE&<^Iqa`*v`!ZA1@(*t|9?b#%(+s6OfHo=Pd zlSa-T()X<%o!iuJ^TJy%=x;S3*8$6l$)b)e?|LEU?dy7vqs;T>m$t3z=5>8*p4g*e z_K}8TJYxis^R6pP>3mLG*`V8H&+MZwYXn__xbH5Z>%<Nu2<W`lRD}j|GPRd+#{|?o z6joE}we8%nI;j`ycj_%5dgbwHHks+|X!Nv4uOCQf8O{5^;BM#$onRPjgrDFT6hgOB z&>9?l*O3-&|9}&Cp8gn_FvGvmFc_Kh>0@8|b++oGK_Ya<XpOw9s93LzKT_HRF=o3> zP=>4CI-^Wk&9zhV))~7^kTsN%<Pd*L@hSZ{NCi=l8qz~1C<KLJBrJn(VFmmI2jCza zf)h~ubJ`Mk5<Y<8FapNG7q9>p!gsJ5_Q8HQ4ksWt9+wA-Kv8%Oo`;su3VwlKVH<3R zf@9e~C;_*@3-BV;fx3|Q3+jTd&<%FMZm2q*_ZveJ%!PTd7fvPfclcEDo~`Rwt)F8v zebxHu;r^|n4)=qnJyY{b?P(JKZ@bO&WVw!6pFXuHcw}G=ndkVbJQFT?zfzVmA{luj z(h(1oN$3ctjD}K~mKWcQMmtC6J4rte^&kOS!OPGEdcX(}TNr{~AHukCXbW4RD983y z*aMIIj%&6F=jZ!IRM_nvRlnEGT<{!YJKMe6IiJiXZw2R*S?jI9O-K9Q8ebT{6{GUz z#i;DQofwBRr;v^b@~$U4I+$@nnL&23`-6}bokXig;R&b?3D6jtKuc%^ZJ;f@1#iPU zFbihG99RI0U>U50Rq!3GhJA1tPQXdXGKuZNJyUr85RwmU+wk4O@1`x}zlGm@vT(@4 z?>5L^|K6{4eXVhWml`~yZMgU|y;YA&rrJNSX;seXmrU)Pd#7%8wIp}ys$U)EcY&hi zyl{Sn_NvF^t|6XUEK>=$-XMNxx7e>%^z;Jk_s{<^U0ox{+DPVkt`699+l82`-zo05 z7F#y95j+CuQvY~k<XKAcW>m^2nr8<`Bd;z`qfJwo1iwJ~$=C=KhZ4{chQTV>2`AwW zpO*JAtp_cpVmr`e+S%ej=nlai*9myRm^bt5m7g)bj}eKCuN^vLxA@BFRXeXz>2BpZ zCw*6VzJT>Y0sP-yLLz}OceSiU3oEDioukzv(ktKr^m-7QLNn+Do#9?IybmftWymre z|AnLQ2PDH2Gl(6~<xARK=mv-32o#(}I|GHG2o!@7kb5@mK2(75aP07bJqLc{&;I|X z-_|Zap#Gcp+uE65jQ(iw=w5BS;)jzaCfrv>+D`fZ;VRi_ap|alL=Ph-@D_G=$$+^; zjJh>H=NvSPn%X(usE(&fxsFA6bgLQMSfENhalk*e;FWeP$=o!~U7MwhypDTPD*XVv zXKyUSo~gM`Ok=8KXI&B9m!oDWb@sD>_+?X=0#m`!v>sZvg>f(gmce20*SQT^PlG7* zy#uO2J!lX9`e&Pot$4)>Gjq_pPH1Pi;5o*2jD0iaT<~_ntiaf4n7boKN}U-fQ&4`c zQlVl(F45#!7z;na5lD?s<^{)Bi;@;!b$s*@d~`l6fc0=3a(_kKfO_ycya}JdOxOYi z8Gt(B)$!tHlD$=jnK|TLC-mUpPVZu&Pt-2S9JOmo?=K(f=j#Q!DG6it*rA=0{-28a zu7%{3csmnj!8~wu{R+LlhB=S~b73CzpTj*KFaT1_<-8FhVb|)f#ta?u-q2T?)UHtb zt|9N0(npPmBfI2895;FyrNn2++smFcKIaQ>nSYG)#ZxwZdY43K*{*kszG&@j6m<NR zWu@1sraE>@PJci4Pg(+RjWW+$ofUp-bc?q&dbmnf-EPH_4yd<e;L_gfzJY6G62EK? z)4|c((c01ZJG4FsXP|Hr?FCGSQ{d<yg$<;JMX(sGdBhB;49~&qaKiF@LT3#3-S1h& z3Y{_530?KYonvg&$n5g&wUIFvyWrjNZbqe5#8=+ViJ<!?c-Q}x;kpqcr}%CvaP(V9 z+R-p!KIebX1e!u~_#OU)WAN|-`fTtBbc0u68*GPD@Hb>w$axwZ-M9V6eJhtO*f(R} zxFK(k>(L>x;kakVRc!dI=PTHEP_=k0h4(Hi8M^ZHpZxBi@|&wY()*5ccYIV0gXv}b z$3<nX_F~3#hn3tOd|c*y$8_lvMi)=vi#VR|6f(Nly*wkju=kR;Baq%(VysB)%^Pd6 z<<l90Y}v{oez_8Ipl5w>^lnC4^zH-x8fQb#?C>J=fP?TmJWg|y2xS*@ofi5+KghEr zY~MFL!tfQNwKg(F(`~fYMrNzW(#(r|#$rasSm%7Ub3W^A@b0LQ@wM=8cfH@25;M2^ zd&;zx_uDDC|HCZ{>Hj&zH*bV2kQKbzE+fAkeuD$x)p;#C?}oi_2O9fpewec3Z~`(f zVH=PIazSnoo45(OK_4jc4d;*YL(ua#O&X~ugXX`zsmIPui93^bHXby8QyuS-k+k;Z zg3+E|h{hY_5NU6)<I4WC#ue5Pf7k2invI%tsj=*Z#R~2HN-n*HvqmSql&quoIn3BN zvfdfJPCkDfzCep&Xi*&AgkI1Wmcv2#9r7&YJP#g+c=!M&!W8%!p8b~J{DZ0RCCr93 z5T<j7=`%aM#$aR&uf3`>>JX^bTpYk21-4T%)?=sKNFa9%xG_ORk(}apMZwWr^gf7I zIhNzo@HUKv3Gg$VfNU!mID))z0?MppED*Xv!&TI^hA|^}A3lX8a0b$Rk6pk}cx^5H z#P!UB{cr#>5$tY&<h{HFBKiB|CDWGh|M$sz$Lt+5a!^m-U)Mpc8xDFwd%#njJ@3-h zzvCsPp5M9C<ps;0_LghklXAI=Y>&lA?(ElUWeM$fx)#%e4d2Y~)LkWS6WN1c)$6_V zE#quJ@0XMZThZ;|D9QD)k(^VB8!M$2r?i0h<ysKUe}}iwS2P!0v!dr17z@$png$wx zXxt3OzzSFiC!zRv+#?L}Fd9CAlW+<Q-#0QwD<3*@!A-sqB0^_2d&A0QmhtYI@_O5w z<#(N2zqV7Z|I1vF+>Q=*N+N+Wl^mi?=GDCO0iJ<pp&uNEWcU*@;JepDVG!Sb25!KI zGedX$SbX_Cm;{sIC&;)Ce}>}l6x4u*U`T(NWenpx<UQD7X7+j4xg;592kbUMf|}|R zs_>@n39wVTCCDY3Ool128h(dE@E06|+kRjy7mmU`#AqjGPb5yygYSN1J=nUD@t~i$ zw!VqJ0d#?`kOYyq(PbvJu{)u4H#7_#GmJS#hvR$#2uIcZ7#R+wDCge8;ojlrmc8*H zF0G#Wu*<~%ZPjJ`&(&Y0a!7l7D?AEyp&RsoPr%W5Gy47vzrbH`435KTI0F{iM?f~n z4mqF_RE8=r2qwc6m<n4!>?IeraW}jI$vcwQ^0#!(lu=XO9o2IblQuG$lfd6gOQmZW z@X_sD=X@h|i{`d-(T|^UOYL)jomGvog`dhF_Kq#+`n)}4-?Lu{XI;~;=N+nEDR)|4 zcRxk2z)}%Um+BtC(1M=??*Zr~MAo2v1pVz~38&_p<=8vEI`C)4f_`Bv2vWnXa5t2P z$KfSt1S5atIvq@a=`aJ9!D?6wpKf97ABx}#3*mdXXB##FjiCwjhC%QdOoMM=9pv85 z`33ZbL9h;ffIlE&2W<-61f}49=m~E?KX@Nz!eTfB>3_pk5A56oJU%doTSDb;%F?mJ z<_vy!@H_f%j!wNZ*q6rE80CFAa;myFU~Y|qjJP;CyN{@H`k3~8*>g8I=aNRArH<E; z`w?Uv=g7PI8>Osk<n<PgS)L~nbg5w_x*w_>UoZ1Z&93fNso%TKof4a$fREsM^sfbC z2Va5L4n%*^b{&YepF?4E6^$FgTF8Tb_d-*63qFUX;Am<D-Sf$W4%9{iZB%WnW5n|d z&KP0;-^v(!jhT8ss&!C?87Z;eO(}y=?Z2JUtw>JswL73Gyanqa8E(LTZU@J|hLD~G zTfxGw^1yxYF7$_7eE;0g7G8$G;24~N?z`~K-Tz)6z>wT9hKrjqwsXN5!-V&GWyOWu zkCCy9qkVUW6-4u@#rs)NxNZU7em$pD24DYAO6{JYZ4;uuO68OonH!42y-*oM)12t$ z==mpUub#JY0lNx32J_)GSnTmaI0b33(aew??u2r18cOV^4S*i-I!uLWFdg>5A8-Qx zhKK|7F_QV)yKTd^y({Lem_Byc0R1<;7k{t5+@euzqgWmFPT$r|MQb}gH_2YnlM6p0 zx^a1H{$RhyGs6n@X34RUdEFSRBd_sHrY`lyUrV3!i$tCg3%#_Id)th8dF0sz5l@$f zY%`3dJnfm=f)x_KEP;Naspwe@{i;Gc7zU!Lqv78^9UaY5qfs<;fvzwVzJW9cxd#Z^ z!e6fCa&v(<!-DRIy>LHU+$5dF@G^8`+)tPpPG{VYk>Lc_{TOpXXI8jtFf4K&8Sg5- zp1$j?!`j{E^I$uIOMDljb9`U!@)Fauz1&X8$e+8k7?QKJ6Dh20;%6x!3LHH}%a36! z%!GNc1olE|G`$7NLj@3>6G60o8D_&*@HKn`DSqb~G1P}Rh=(rF75YLy7zl%4Fnj<* z;P{b!+c&LSZT~G>y=?WmO-b9QesN?((!e(cwr%`Ioj1t3zH0Q?weJ{L0qrw@`qj>M z25>?Bc*EOtR4Q0(rsq0^(HGPEX+#9pl$w0~&7fW@cc>a$^Xt{Q<ALhu-u1pHW6(K? zkOdvx9L*fP936I}MJk%658)&D0=B_l@X%qd0Ye2?4lAG#K3*7%mNs<TNG<M%@Zx?# zXN+}dn%ob4Q1@eGjPr0#ZQW0p8KbuI$+%m*kd*4--B^5>FFs^`ghnn>Vu9=NcFd46 z_v)Y<1>BTcE{piuC~$O+;^;mAHQ@so0*>~ay(+!G_32#@ogKZKkzNU_;EAJ*`9UY> z46nfPBfB=QS@PAAsh^J+^3{^B`hWh)%T4M&UANljA&&+&-7A~t{RrAy-n;&Hx9!uV z8`94YQfkzoEniBlqRxoC<jNO|@V+KNn%0($N|!EewI;=$$br`Ft*%EMew|aY=>0J~ zof?Ao8-_k%K0$7`%*NJqjlpY}9Py32XDn;S4x?1>q3Qn;nR1A)igvGoqo1Q$gFm=7 z3;FQhFJJ<E{ikKgkdOYX)hQC+dNYf?nRy{IA9&{&ndTwq7*!h??<!U?#tV8ZO2H3k z^IN+7fOeE6KcG#TAJ8W4{9bmH`+M0@?(bz&>ik|drFE&NVO;LpY0?VuwDU!%v0<DT zvhBUfAYDI>&aU>`-ljcIdh9B7(YCH?OE11@p>bV!+o$)BOw*$ESdZ?r(OtApf)aG< zO2X|>7n(wI=m?#m3+!9Z-~4@Fj2QUVz;5lE#nyW4!N<z6DLkR`-Ja(fwRN{D9_*Jg z*FOH7VcoWWth&9iTdI4|QW~rW?eB@Bs?>Ma*4wXp=c_?VgU6cSH5k6k9e(z{%3=0~ zmX~-FOKcVQ4J>jmpuOb0S~bF4Qp_;CI%WUQwqzDZQ%BDVXjc(l0;3HNoxzCRPw0%h z%(c|Nbp+CJB5wW?_{`>s-X24g=<N8g_-=Qo;@!Q6yczLe{W0d~(tk*#;j*&(yX4~D zW{K?IbcTrIw$M@c{}K1dG7&+3$KBat^!kcc$^mCKrT#eMw5(R@N28s$vO7~N^@1Q} z*`l2J&NK}_z0P}_-8VVk#3s&s`st_kmI6{?{<@=YKhMb2_$~OH>(f&t<%(QpHn*A0 zV`c+?Cf@hU@c*#S9op2-Jrzq3y?a1^7z(4ImF%JOY2+kiTF0BI<<0yX=|D>{OQZ=g zOQcEYBi6L`@jz<|+mxbQQ{u<dm3~%~Yf5gJYf4U8+BQ4}9r=GZ5ZRpb3C}<}w6P<B zwAG^h0Qd;R28P2lSOAM)32cVFupbUW<T0-C!wpaf%0fA~8)`ybs0VS-5qiVh&<BRY zNSFpQU?zMIo8cGO0)IgI<MbCGBisV_!-G&B)bD~PuSnjIJRkP*kI4)eC)wfr_dfK7 zuE}WNjuhP5Y<ZA&ety1kK}u7{6$(;%LyjUrO5ZQ(xn8Gx6$^4T53+1T=XF6!OELbY z&oOijw?um01$ohXPq&J{e+r_vX#Fib=5^-s-ppOzOi6DhRNC}Mu{pCuzMfekK5G%0 zn#6T`;=-I(JVN%%nTpdoX=iFhWs7ps&NO)Z-?(w3{Uy)%r!Inf%ch-AVElLH$TU3n zZn<8?fB!v|gJG9B{x5p30P%0}?IUod#(#03KwDDrzj5_TV@ek-{(DW}Vi<_i{)^s! zfD_NN5_kVi{}1c|y8fT$$x9>Jf5ZRFWE_v|qIY(XHeA~8`{7FU|KPTy{Qu}BGNsGj z|3&WyLHcacUuy*arvFP<C@^N*?SKELuKB-phVwsf@V{v7zwQ5`cVmz~y7bTc!<Fj) z(%BBQCFTE}Yg`&ry6pX5^d10mPA2DKU&FuY|8m+CsG05mxoTb-(f&*Azv!I=a{evn z-a8;n|2Ia4>{FwE`+w7N<iy-8(c?d<p1w4ublLmA=)DtUyhX-ZZiF!X-xwJPUwKm@ z8DcR@-2VUQOC;KV$^S*~tRUlSGPYI`!u0>kZv0mU@d9m0wf}u;UGsmgYDA<>+0;@O z2%PhO(Yq2P!bk8q{G0xtuI14nn%V9Dt<PK<(f&*RFJtMV{ScT9-@|@50jJ<Jq~O|b z8b}KnArssPS)d<$2xDL}q(8~?f^Z#-g>f(u*25M!0EZ#^6ypvs2Brez_rIz!{O=ac zTJ+tb2_H}BKcRQm_7j?ts!Qf+cLe{Qrd8Z=a`)<g@uuFZ|GK<b?&02YeJ_lZyLI~C zBOr4F$KqG94PC0AxRGVg{=|)cZF1=?Ya{tz*QUq&jZ((@{qw=^o=EdjuqS=RxdOK! z4Xjgov-ta15bf8&PY`DOzwG*dfw4rcH>miZ?b%BcN-q2UpXj|A#OKA|Bk<uc<NsaZ z_xZd_nk{tT6(P6(H{%kC_FszsqPN6%iS15Y57YmRn*qEE|9k0hY)Se5@Y>h>KWP8Y zX~(Og|902`PWx@d0d6#QKgO*;VP@R5{Zi__N7Wp=PpGNuzYjcjaYS?O>+xRyb<5oA zzfRd@=l>iqxsa{6xZ}T3(ocH^ynVI(<eh%nH2P-KVISP_H}`o!SLg;)VI8zQO`idN zfe3c85>y6E$^94^ZY*^_++ps1<ncoN3BA~ldKnVNIu|#y*1MfmAv4RobBuKsdFL1z z?+ntBa>st<*6)*&dwr+emC9FUr<`Yb(&x0&7P8Xejo0_+W4#0o<D^>}tlah~dH&x{ z$rkLCY(b^6O5a=b6;1oWXCS&}Ld%<>6g&bgz+dM_Jz6JA+KR9$LlsDd*CHaU9`HKE zrHHV82A=cZk-Tvce_v1LiN3cdzuqx%a+A8xPJXhk-vM#5y2rk+Vs3T+uuPr)tJ{M& zO7%L25|h+AG7VhEDAnsI5$Ji#G;p2ZrH@thJe{p;Qqt+3z5h9e%+>YlyMU$iY<KLs z-`H6HJkLgQiJ$fd(eF=i^n1^zVL^|ECww}_`?NgHv`0$xg*~tr_QL@<2+3f$y^%4T zJ9Nf~4n}65V<9r#88WlgJIBa`UdO0<v$ukan=wL#cQbxzv!Bx|!nudnPKh@w=TI@k zPD#A5Q!-b%ftqWlq)eH4Hu1?_up9QkUIE?qfurLer1R1^#y~`>2rC8TfSgbs9)WM+ zFG#~<6B*$q$O|!05X!(EP!^toSa==Yhfb*@tgql}m;>_uujEb1tLJj=pWMG^$K=+@ z6Ot#)^+9@Xle*3U(%yAbM$dDyc<;o--(2s~9;ptP9vhIH=ZOJbJ}}b@-g3PSDc2sW zJ?_oYj|M;g*GtHDf{qaAC8Xw{OXzLOR`j-cPVvs?Q&`TE1G2W~eWH3D;~3~t*&C;( z0^*}7(N**<00rSrxDOtH2jQr5uw@!LQ{B7RquxyDb&NTTG8uP=E3rn(oq+3x`S%1X zTETAyXLl_jdi@Jl<bX3zr<t3nTdvLdt*A56-aS(33n)9M^Lp7IK4)a=cjI?PDfg0V zeLzv}z@j{XMImkk@6bjJhx^M@7KqR{-p9(@0q%?Xfx{&FJ_Jud4QL3B;3e5(=kv6a zkZI-cGTx=mDIIEG18rl3n8r)P15G2yo!xw;Yj$Cb|114diPj0w8M?r`Fcq#C{eQcr zzZ*f$B`(<di`LU%DSQh*gGD=j#pvI3#5ModEy%g+FIqc&y0oM#fb{3y0O`{$hl=#k z411{U4d^w!8Dox-dBVGxkuerCGQM+R>E2k8@<vNLCFilyH&F5a=r#Q>!2i>TwvYPy z;BR{R;IBl}7l$M`3V*<#kULF;)c_iTl{UgE4gKI<NR=+a>H~eDNcsq?C=7<sr+uN% z=ZrJ3Fi+Hsb&Sj}UgI-1y3sqw$gK0u33HwAyz3Ylqv|j-ROWf#qj{F69_8nCFLdiv zZ%(@U_R?D(FGNaw#4dA2j;u%-2~vG(HCLsw%lVe0^AVrU$v&-fp|R*44_?jtdNdck zMdLY;Dg(cL2Nj?-w1KwJ9=5<%=y_d))eA<$XD}DOg^brnSefA$*b2uFZa=v0;IgD; zGscZhnlbL<q<%@SCv}`Lt{IbN{MGHq9|tJAa}Kn#P(Q0=l|1^)#+@UF%9x|igk&A( zOvoKqG2SSx>z7(ys^S^3(dU%rTNTtvx88#PS*a`=xW(Y5Qj=bmGro=^-7`LsHrN@T zh_Bbtdtsah>iw2w3yOB1!W8%#M8}8GNi_88_c|K!n27rco#9Oq?&o|md)(Fi-v8vC zaV;%Jz&tAw(=|(!aVme86z9Nd^f(=nK+Q=jx;j2NiZmlj?kB-b@@t^p%w?Po{QmFA zdE)OmBmJHyuV~46VidtL2+`|HS}6vcIhLj$V+V0*1HNz6;2i#CY1XIU1dE4Fw?y2q zUe-8s^r(z)IFARi6)BXh{nOMKCCL6~O5Vq}UdAs}M=zI~%<U%gxXBPh0WG~d)uGMe z*gZ5KqPY``ldfj{2j;q_zsD#Y{Y7)94Zfas_p0^(`*L5?KZyRKxzqP5LHahR4nISf zwqP_2oT<4VBjXldloZ2+swqqFeV<6#6#h?>Nh_z~|Bh?=2Z{etqO;TIj?Ngi<`+f6 z|4$_$+W)umT=V}R{x6!Rf%I_u)vW*RH(k>|i2ib}?dV?`{ma60@FEn*6k!#Ha&Qk+ zg(sjTjDeqSh_E)nFJNWnIwHhCe%KBBAk&Qz){SsC+y~FX^UxYzhWFtMn42ZSS_Z$t zZivjvx=<4Ch3DW!=mc-WM3@3A;5*n2d*A>>Ws9(`gItgs3PS^E0WF~wyaCC(J%2y1 z_hh^?yy@k0mrq+hX6TsZ{CVyk@0NaWkhAXDS#Azex+GIuw^UzoE?fDHpjVuwT%XVD zGk4W>*Jt;V)63}bih%JDy}WnS<9_jZNB7#K!)){aKcV}g)EXlGZ@lLJLE8V6qPgSm z`SIziR{w5!uf_i$@n1A|;{2Ugv;Ku+uIV2{f6?4&-ygf0^<Q;O|6uW7H23!FT9KE& z-EWYde%*uc0!UvkblXtZ+j57_JmX#Ld@^aWd(ZZz<72k=fhGF<zwOP}{6EnD(|Y^x zXU?i|f>*rDIBi;l)<1W?Yx)Q3pHeh;&fW5Iz82cYuW<brUeiBV{1?rgbM{?Vv;K|q zU-SPU{x6z4V>KBWhq-F~KU0Bg`UlZpG<U}6?z)=wpLtFHVDVoxcgAL)xtjH_Q}CMq z2l0Q=+!>QkyqfioDs)Z%Ao`2u&b62USF`@(ujwBw{)^_$HMk_MyIr;YznX=w`F{}q z7tNh(uRE@0{ZC%gKbZfE=FT<ulw3Q%YW;s?k!$`R#Q#Ne=U$83u4er!7rmx`5dB4S z=N_BdSF`?yuIV2v{)^_$y;U8rX8i{hyXOBv{9iP8?x~w_HS2$W@oV}A(O)!o?xkFQ zHS7P|HT{Fdf6?5zhj!Q1tpD4$T=V}R{x6z)@135-ebKYw^X%LQ1i!-dIU=mbz&JN- z=Dh`^kvC&J^>cAE?q-6$?@(@*wx4phQ}PVFq}202rEk5af1v(p<v#c~VWv;_rA+t1 z?~n|qp%6CkDAa;F&;i6Y#=<1n0z2Rk{0TX*l|1k?)Q0{r5LUtW5RsF2$iaQk6xu=u zcon9=T-X4AL%UqOKL9$w3P_zh!it78PzRDgy*qxDdTZROy~(TQ7=OuAl2`Hf>#F3> zh7EW}=<ZsPozi#4Cl`rz@1)mv+kbp}3D3R${!jGFTz&Vwt|@q_@kD@r_nSNs5cJ(| zdI>S&piAiO8BZ1H(%{b}NNvs@mlVH#6Bc=Nk>g&(@3^ld?>+9Xa@^;_JU9mV^F&xH zVHFg<32osOFkbL>KAD4Fwf2O}><Bq0%yoYCR`65E4DU>HKgK$%-Ezw^GRwVljCGcH z=lI^*(c{rqNXgqi`c+QnE3;ElCMIgX-NR1F+dW#f=iV%}hB8(4w7;E_xy#Ew7xeA0 zDn@1#|MBX$!cWH+(eNec?9;Og)5Q>#7hi;Es0H!R0G^29`B6BYKf*c*yr0C1gnQsY zXa#NIBRF<o=ccs>R?MF<f5L&!J{oY~o$l?rw`-ZuvU|Ii+SO?1Jv7>)>tz2(+phb@ zj)S%8xTV@}rPR_nb&zyD)yp(=*U+W1jN=*Znnz+kQ}2+Ksh+FXF-rB;l!&~AQl^3H z7;hNSH5tq5nw0d^B-6l}j8eUhG7Vj?f5h@extqjC9Zi>z_G;SDqvw1yT>$sp9AVuL zU%@^3BCJ_Z4xR6UksiH2^l7}2X_)W-G2XFbWQ=$D?DQJO){vRa-Z_^(W9;Y#@4gwC z@4a($TKTpzXXV>sytcpFo-h3zJ7q=#Ww>e$J0<bMjxMr>N@W*)q6;zx2&Le5$XJMb zf?y&{g2k`__P_y%EX;dfp&~pF&0rXehR<O(9EMaycn>Vx3HQRE`U{aTGKal$_IoqC zycuJTv5t}1=3VEi&iKBlvX60zk6{(^j;9=H#`@X_H>K<&I=hvr$D$N<p<$e|qMQ<k z3!!-t@Y=u~<U2xVcm-aCuV5~SZIp)!;Mm9(^!^=0=T^`GX2L>P0^h(YSOdSpR@er& z7v(*|#duZ|azg<q0cD^HyaaLZ3cLw@;XN1x$B!J}wR!dC#p-YN;@O+09^vncsb7p( zJn*d%-KH+?_Ey_&&fh>C55Fvs93+y;;R}qfM$4jW2;K?>Z#{P1SI^T5DUozNGB0qO zWzyc{mg*-&MM}@Rigg`Q9$1IbzUg*B_S<dOWSJ78R}E+iqFY;N52Bx=n^&vSetK<2 zho50Td|4dLA^KMO=kPQbu|IU?g5Uogx`{BVHo~xxF`5;ly)Xi_u^l5?uk=Qp^T~ME zm$Zu9wXVZ_)bC>0De-SN>bq@%7>&J#9S7VtL887gLQj;CGGz?e#E)jeH{fVl)2Cf6 zraK|(Hu?n+4GrP?lC%+!3EqPNa1efnL-1)S+5s2`@ule(LPN+~hI`GS45Yau!paKS zLC)XSt(ZSsGx4+e!zT_{*K1w-hV9oqZ@h@lK1kXt<e-#|e${aRea1AgQe5yeCcT8L zdG>QEsl%z*GPdaPL+x9;ORQ17M49Tfw3iyCdL1RHUdF$lCUXO83SMgXyRI>KobpDx z81Yfjd9Y9GT}+pi;GKNnXkNvqdn2Zf?lsWa(caPhR`hNGqW@<gHsI(jIveh9xTTRX z7CWDeQJawovo>QLBNJu?M(;IrCUkAPy}=-K#=DfAj@G{q(lAb$m-2dLoGN9PNpw)D zoT5ufXaouHA#8)~kg6<wH+TVhz%JMgb?%I?>OxycRgU-oxu7Iegbpwo#=v+mzNT?F zjf`=ejDDZ7n2`y+j<M0uoxq>HhtT*{8KZ)=-o=be=pTi-;5l|5zsz+Ve39Kvso1Ub z{H9iA-&~b4dU#Kz9?d+7^>#{Bw^PozfR$bJuLljmu>r6CqJ39*4f;S|m=3eR-yXyc z=E4^E9d5fDn}8>wCM3d#FcfA%=6iTI2vmkA;WZcvb?&82*s*^3qFKp{CXBNGJ{t9I z@7H?2+g|-O^!@J@MWuCgmqSIAE?+EKB52D-XU?3lT9b0e4BqH`w;Nq`M3z#whola; zj;4~+@mQ~+4!d3^c*K=u^qP8EqkYl!DS`AdMw^f`Ya^K(wAIqzJmeC(PFcd)n}Xt> zlYDv|V*2G>^ar2>`iOoXgXr}+h-QXY7#YJaLuU++4ZWB##|Q>SCcpyz+XZQi-_O`l zsw@64Jw`Wj*eQt#DwR$&oegtgF)V}Cun{uhi*>yR^qC9IJnpUFAJc)~#w=0aV5q#@ z^QZH=xYIwAyxjA2rhpv@QkG_Y<d%pn>h+#6kvFWrk#)}0u3g(+)t9;qUi4YlzQ%jx z$PxBT{m^sE;QQL4jk1o^qVWwNvA8=(41NbB4!7_gn8x8{V!ewQ8SjjXnKo_0ws~pk zly&qK>lj$#d@lW+i*?9bUt=OKXZ<<iXVg)b|G}q!l;}JRroaMN2|vSL_!A;&i|eWt zegB0S0}M|OGvnQiq)lZ-PqRd6t^B{tZU1kDuTuYy7JYAoERYqlf%Ly(p&p#M&u`rJ zfLEm#y_si2W@?0-V_1fFDV6rLU0EHER-+=WZy)-<D}SZ>cA&4ACF&SPi`I30dW+Vb z?&p2rQ0f83W}!6Xc`(Ad8NPTZ!kP~~ALe~9un9K9qZPOg4D(?Dyit*{TIdD6;Rqas zKj4-}BdlBDj|1B_tk|$<)|7Gl$#nSOS?}^&kPYk1dbVMJA-Dy)pR6u$a$PL=m3E`_ zdgnI+?tl5HoE2nA*?3^JNXuKwyY%%4k8dfbi>$XO<rZ6%sWa0(pD;@GIu*(@$f$F2 zDb`)X=-X4T%nhv97**DN_~6Tmq`C&ZRV6gvxlc*=J4+eg*~%lD=Rxn^U?(`5H$wN> zkRIJjK|fdu%iuIr#}33E*1+xMBdo^I1eU@HxCOfqJ9z`Vc5*(a492;DasF^sXN<2M zI%6CI*HN65I{#OOry{4F(&zuV#CPj>d^i0gTx)^xkP?4&d|CW>BKZ699DMm#xTg~5 z5Aa~+2x~ZufNx<rgsHjlMb0N<93x|(-q-_Uq~FMdc|pLa&A2*X{NzjMjImDW3_s83 zd&zYkTE90Qq(Y^kos#pq&iO|AMtJP|J*3}jr=-190ZZv`r(~|368+V3*(DYyKx6n6 z#=w^_6GYozK=eHT+0Zu!6b8|I5qLFU=Fz-W74GqXk6|eM`50q_Rk_9od0;3EgVRv7 z8rz2^@HV^ydmg6`3j5&b?w`N=dC||aCXAZp{C(K3*DM(IYQK)7n$OxTe+~K(L*;<z z2&f~v9I#+x_B&D*Q4w9HdMzC{)nV2V*FRdzT)mE7%BV?~29MUkYZ&&l=dH0hoi<9u z;v3vwEFy55GB2<+_>u6{qZcnC{&^ZoqmgKq2(7`<Z8zznXqNyJL3I2J932zT??Z6( z6b(hcchIemPea3BLT3#34KowEwlL>}8E1@WVvHsmbBw(XJ+y2LAcxL4A)Kl5d)wQ^ zckPsp0LG}VGHT`Zc1pb7O(~;Rb5$z4<7361;CDcwC#-=#;pXbR8xT6e1o#z-KFM`? zXaY@P4SWxop5h(?XbMTN1Fo;ZyG0-t`oaP*WHAnxadU?;=hA14y$+o*cJz{bAJ=3I zo46sWg0G#hEk|rZrE*DpEsEBnzi7JJqiIGo6kXfZjIcg{(Xb4@h3{ZBoPpP$rtc3w zLiJh^)-$jZcEN5a^$dMPC=GAHXxIop!6wM}EaMKa3ciD!wP`CLH{^kvK<@SUb)Edb z%>GMSmNYeKSCSNd{_*?k`oJ4~I=AZV9syrUN8y(urUZ$T8S9^POLgo|`y6)^>D-HV zl~wJ8Om*ng^#(7M8UmMnsaWbDrKzmOK}si=Srnwyza0`81Gi(8>hGb<K<8wcqT-W( zzys(gI=2T49Ublbb@OVL-=mqoUTL0-u+l;^2<<S&9K(BzxEwmh8tWLD&>cJD<_;rc ztYgdxoiWx4-Ioj984Nv#{-5V+t{AG_4!9|0nCk8jWw0u)+hw|KP-7@!O5Qd^#{ZT7 zXBXef3)P@HWI(Ut&=PvU2QUM6Ly_lc>){jl0@lEfQ0fKl2ZK7$9J<2m@EMGUKVPJO z@Dlw!7!G&VVSE63L2uXq8{xpV_3q!d>%ZMLciS}n#%vop@U0#lTD{e{j=ytjAMAeD zTGtD-g-fZNu`f)l<<8aX7^Qlhx1P;)mUDEO8|ZDpOP3|I53+3VDAcgbhwiev-+Hv> zz21JSE*Asv^k?-qGGbYQlxoP{=|ReN)h`BGk<BYvk#aG#ZFEFF@y~&<%cpTm^lAk! zqS;H345D8ekAC}n8a|F@UJZXF->5EqMVJ98V#EH;z`wl8o=--ucj%8XMj86<iS2p? z5=O@Oz0i%`#f*$`XHsZCHs*Zmt<A`|Gn60S+hL;5XO$VNGCL)$w-~Q|UzqFp%5+sv z(N0NE(Jd3>2#6=y#P1rSm7|+z_AG3MpWzqCSq~qFIEaS^@Bw@blVCEegI{1PY=@%| zS)cnuAPQ1LIw%N*pfKD84?tz83N_(rcn)Hr9@K{fXbjyT`M|bKs~6ANHe=lI!Q0;L z{ciVmEkgZqJn{Xp&)(pA7M>z`zfzX^G|_W!zm5g-o}J+71*ikfvccQ?;H5?{K-c^9 z{VCMG$uuyU1TVcczo$2#Yf?s{{olWDU_?c|l&s@ywYcb=5=8Ub;IFx(x1+OY&=0IQ zp5ubYpeme#jPVgxC8!MVfzi63PsV7_L-z=b?t#%B8v{B<#%Rz(H``&};knfHUCUY+ zGLz(;L)y=$ZSNMZb^ZK-=97KPxt<)%yTz>S`t0^!VuYQN`rH_yOi#rKF(@mm=y}FZ zPto#GKP@Md&(nauIOK&XupM^5Z*X@4*8pHXEP&IHsWI1<AqnQfJP`j~yL8^RSxYC( z+r~pb+urHkaa-#~FFsYpJ*&pY48PHq8{Ee}tm=9CM=xvCp#3Fvs)Ne&Wa{{UJ0fqC z>UGqCVxJ5T)Y~yi^*W|sdOglPt570SZ*VU)N?A$_LGQ8Njxq(kFaG{7bM-oUDQ{^m z@zVj|=$e3*qU}_0v`y8JbAIRx>mgSoVl=z}pTh5O7{mtd0j~{+{-S-D?r(U!kulsq zbjFAUmp)@eqtKZ!LlYh@er<cR__dh6?e)sA)m%FzJ^Xa9+~r$CnQ*XPMGnU=|3af< zP^L+Qbq6$u*Wo0bg0f9{P5|;X<5^Fr0j*#ld;{BI2efX^??%H!m;`^qUy!ARpA8t| zo{x1HHV|5A<DiGRjv>eSWWxMDM%CxDj%rVouC65<E5TI*WeIkf8UNkZL0M5wiOHgU zUNkNarNOa*IMR(E0UARSXa-^%YvBa=+sBXC$Pu_1TX1YeY$FjH@VAX*kA386NgRSj ziSpa;TMuqrb^M#--^}~w`1G+OSAE!T`fJlit~xIClm9w3@M}p`wn&yneP13y?@s=I zxXKO2oszNSbu1*F$}&2ye>F`GS;;D%-(A;HGkANV4l%XKRM)205h(&ojb(KtmuEuV zwn53H>+z54MmwnYT}p%RyRp39qI{zQ;+J<rJoJLkU@;s9(c~t0&!^4TOtZD(UR@Xj zgJB^YhXUwU3p&6^SPUlwuTU2^V?>b9nI+ymxSTWAZI)Faj-LmQC@B9&7E<ZLDt&7O zE27$xw0xB__Pu?NFTu;@$HaN$+DS%Q)tw|FImt*`f{d?>^Th-)d%ML@rkhRtZ5bT* z={2%7{Wn+$bJ}oj*q#^w3D6jtz$BOtc{^~<2Cu?>ow#-YZ@`=IH=Krp8xL+=vt-T2 zgVTl$=+(Jb<6iY&sQ+Ze`;{j6%~uJ{gLp{r(sZdj*SWM6OR4KOUt}bg-x>3e9OEQB zAXL6sI&s97jjV2#x)EG^jVu$~Yh;esd)?TgOLfHA(B$K@N1S|F8~x)l+TV@X<R7c_ zHf5=^Mme_mPs?NzAN?C1L+^$l`i}z9|0(qU8pIA3!;Nh*E2smlU?9wZuV5=2h3qf0 z477qVuv#hY`!CGQa_>5Z#~O1&XTsdhWwsc8DQ&e#X1Cvx`aj2nY@*RJNZF2l9TbLA zP#4<4`>+6(z-CB=-$z3^khtK)gx5%4M;y2wy7^+lWp;cocy|ngGwgD{*J8uW=v7o- zO$9EcznzkPz66Z_v;J8nc8`G#@FU#Ykuf)T8;-&s;KcNgeKGwE(~O-tCxG@a3ywj# zR~XZS>M$D$bYZ*?7QlYExXpi<wHY0QL;9eT*cURh(>v#qWJ2$o@fE!LNm`u=NaJb8 z4?86>B|iRTUzuty)pE+ta!MO5dWu$})5G1+@KxFZc%nP!_%H@4_24~D5ZRM9|4r@( zfQc{(PQsJDXfL1!41-m@xt0s7q3=693k+YtemDRJp=2Ly4U!LT|8eE~l{3bT=I?`d zlY0wY+a<S*{~-Rw<XZ90x72NZ#?<xID2_~ZTdZ48qg1amCmq*yXiH@pxQ<b(*ZI4_ zCbf=C1J^N1^*R-5;?H_tBp0}5v5KeMQhik?D#fiquj)v7U>zc9V5!k_()*+gLGP3I zY$8Vd^5d?I(ZOjD{VPB@^cOpDY~XXB9ZY0;2o6Km*J$TqDr|rsAs;sK2#CE@hIc{i z#_(3-Vom6baTzCc#<;)}`Z7+K*K~{vJpWe4*tgIb+YyxaDl=0phn<pMzL=H$yqB1a z9RnoAnL^q^R=SG0jYyzkLJrYpFl>aM;0%;{o%3}V2!r4kh`{f~_fx@jknRm)KMaQv zATgmWcw<6NPfRfMzw{ZSRWLH4?aY{CtYc(Cn`3C(409bP5IR$32`We_OR!TC?<M7^ zo{zl0waDn8D$C)->$zyvhFIO!6SsdO{oq^N{{{14K5T~^Z*$!an!@|A7s?UOYl6gj ziSynVUy2xSNNyZ2qd^NZ6S{f4oaY!liLH)^GBq;Br72^McNL|*Y6z9~c1pCjQ=+hH z^3+^AC3EeR%vIKsL$r}LxHYVT@8AsF+?O#SXaECXF3f|3e)Rd_EtmzfVIyREmuo$c z2(4iV%!BjM-Ow;hTQSx#GKNVRE@;d#qOLK=$QUicYOf&1Vxcq3z3Uhm?+m5xQ{{QS zO5Mj7A5phQd_=>zJ6dKZu8VqhN)(lp_qzU}d%2RPma$WECSj*!X}3(-NjA}bC3v+L z%|&m~`4#8_qIVw{0wdrv_#DQ<c$f)}Jvg>d9{rzyR^Zshd!#=Av5&nn?a%!KFa@f; zN8b^K!#vmtj}Bn{_wDP3$(xc_FP6Vq^8e&*V<p98)Ywsr2d^Id?%<xCdbac)Mbf(0 zV~o1$(n>j}1?fdS7~?)6?~W}MZJx(dpX7A^OZT*tWICrrqR%N)y{zu<$+E%j;*oN_ zwBA#r4!s2>r(VX}vy;BA%nhu`TUu0nRCL(q(?WEp%5fJh8o?XjuSq`i$PWYHeb@w> zq54411E2<k_Isll4YT1hoYTns;MLpkZo@eZM>9^{!^{{b^<l2_wRhkA(~<Ioh8lxa zzG|n$SM5{^QevD|B<Esr@+;P6Bv8hv*0fWyrk!%U+#3^=S*n)6PDun&sVw4Kufu!b z)$<87bo6}6r|AKv2jO=(1c#y9AjW^8JA4guAPJTYh9TT541dFE$p0bdnNS^`gig>I z2Ezw11p0l<IRhlapKx^dmLFEZLiul|{I_cSs@)^s8~I*OQ2%#o+Nr7k(Y5lJcfZ}- z`~&;$w=~gm=bQEzDc2sN$Asm;m#mW6o#R)V%vbl)`PF7b6P~zxeOxO2l%dGVI+V74 zI#}ttdG6DBzGbzSE0fUs?C<3=SAPe+lu@d`nUs1*y9<l2)&xga(ewy-H5EPQ`ZV2y zu3JAqANUAOKL*jcAlelI(N=U!g2w3A1VmFK9)!*qt$palj5$VI8)gMY4<U5F%$Rd= zGe$2j^bJVH9N#&e7_B{4?56BkAyL3ix$#4MT^W!k;^;V&Lwv02P~ts24o^T6coTX- zZx{um;S=~A#=uw@2lHV8EQIy20p<<kdctt*3O<5Q;4mEBv2oSHnd66!e|zYwLz%Q- zGBd7r+~aWp?yCy4Ew}BoC5VOpaR1IArO)Sk(=E-PBKp;ojqkZB%8J7E8m%kXk*mW$ zl|LNRdq>tg<G*H7p0lm#7ZpO)E9HUyxjARfAf?N0JsqUfh%5T27_rN5Uu2#qLTUe( za&KhIDZc4wF1oFSN6_kNXbR0hv@1S>u>cqhvqy5x2da(2X5by@0|iDC2jDCC8lpe( z^ZR37oq3qr{cu;7``P0r{Z5UHvms+KBXd5!WjI>sjB!JtvDixQUWb`k>Rrc9t2X`A z^9ep*w^QQ7?Vc#+E3;G5&P&QU&(BL<jNcyju~QNS+%hpaD<Z<Tgo+c{MBA!p=V;l2 zbSrQ)o$b-H271<n)vyM>hetl84+uFw<GwJ+4Sk?5%z%uaV;4{mN<meq2Q8r$41_^2 z806l-b(@lx&EGbAnWU2^eztA+#P=Br?)rYy-m$%Ft6K!=*9P~J;BVEw>E5EQN3pKa zdTL*ae%v!6t4o95zhP`$x6$e_Q@>0Dz1=9)>nL$qN2Y=67^Qlha%DKh(K%%bdVh`Y zM!hmOuwHLzKJn4w;ArdBwW3ek@0bSD_I5OL^mH^_LfPMtevF^*8%?&+N*nFBkuh3n zV~)`l8&SdVeIsLdt1-uLYQuF62VLm(R%0<EljL2@$QTu{l=5}^ek~cl6;rj_buls9 zkL{HBv7M4g;Ci&3l1N~u<f$KJ5~^l9C2hT%a^s0gWfi|$0E>LOr9-z?&;<s;VE6!T z9?Q8nRDo$Q9cDniaXhR21?P~k54uiZd6)=EFc)^fZ?F?8P2~Oo_#D*xo7Ze!mh|Np zBfj_`ss9^YliD}iRc}PS=aP=^;%%y-K3H~e&kSA~++U04&8)8N$TZMLj8g4wkKXi@ zT1TdV>jaNK#<IGmI~vaRj3xN{t;`Lq|EGH&2vQn+StIJ{tzO?{v?q4R(Yi_e)Y14G z(tCYc-{aAE2kGMIELwMhe(3zJNArT?xo-d(!rL$hR>B%s2Zrk#86yrD8N=I+IAFNG zkul;x=#1g|Mo<VdV}y(UV@BJ*eV#7{tIpw-=|)P#uu~EflxeEDc1q^jDVZy#;~O^= z!&A#C6U;99?0{X69sl(Duj8{Z_^SAAUC23!wg6s*F|ZWAn9LX;WSPQ!U~oTFn0hwd z4I?lzVH!c07GYS?`B;QeL1?Ls_-|xFHy~PFNvNkZ?f5V8dfu(hQy*@bof0+Oxwfvd zhO4mMo=BOU3f8hnEy{MXN*vCPhB?5|_H)vr?KdF$jze2VV@KbYeH!mZ=j*4@&x5C+ z2GoRBkO*yHAPj+FFbSqZ^4@J5R?8#Y<2H;=8l3b__txEGTi0yey{i0iK#1{wTkdm8 zmOg`#o|^Xz#<I`xW}4@CvXtli$M5XOZ?5h?h0zPtqqic5XY^LbSS1sCFVnynF46^- z8q4aMl*~G(1lD`%-(twzz<Pt1)=2-TUN(>TX&rceI`?|Oa#$hh8C=JKUN8reU=QT| zl6S+xZ1@UxLYkRe4}{vV7S_QTs5r|n1{lsAX2$Tq&~6{5bBB)o=i}UlryGsO`P60v z1c?d%9M|_3z*kf>w^QQlc1rq$c1rq$V%YX_c1)1|q)KHIUrd69@C_`7AK^J{Kx{&6 zVW-a?#1;m@VE7om2FEtUE@pva7h(_b&;Y&%$1XZ!6DhyqUIIu3?|)5ff#d`H{q_^T z)W!(W%!Qu}dGF0`Lpr=UUjA?1U`U;x{Ev>xYwu9O46l=EpdT2edL7j~vW`px*D*@< zI_i*y^g@{%SW}G@%Yu~Nmm+15QlkbPYeYUztkK&S3HA2)CUV1|H*Z8xy_Pr1-7G#T zn!FEVXA|qe(dGg4c?e#GPhkV>f_-ohPD2FR-3E@13rPP3$E17?&jdi24ZPv$p)*Dd zxXd!4yQ4<nF)~KnFfu_*-gCwns)e^bT(|IN?=fZ<-xJN&!1wScIQofp8{i16O(L$t z4{+~X;>A498DTLzzkqnKkas-5Fqi~A7I9q(dctqeWC`Pm&<sv~!!u=&VJUqF$P8Ja z2MmOdU=e%+J7E{>hBV7q9?HWbP#G3~%k>BN4wCo&x_85h#j_{O{&dAKA8vZk+xl<C z>#y=hUXE~-?Kke2ig=NG-Pqr!jJ%EuH7h)?`YbZl9;p3SN`v{Yv9zvB38=l*zoj>P zUN03q#spv1+uOKZG;Rg!L9}j$zP({MIC@8+w`l$}G)C_x9_`PNj+jrJfCexKK7(;E z0g_-oBtz&pVDtqH*Eby8a4%yWBNMtW5M~8NZAK<^)t6+BiV!L$C<9dIgmy~We>)}Z zznzkZVW*`1SE-z$i}-I#aQwFr{(28Q362j>BrSe?8ZzU<H+uZ}Gty&V4_t>|KLAfa z4X6bTAOS+_Z%A%rLhElFaAO@KV{FvOgjs=6n~^bUyCfM~f9dtvy8g53Y6!@+n4F@^ z`{2Z6iNihNW0(p~?9J?pxAmB|Bi6Qu)vyNAEhm;kHAsX}FcrRp+3+odK0Jnh8OJwF z?Ty8ZjM2^-8AE$xoiH;-ZU0tA$?f}3X{eei<@I(-^tV&u>vl?f-7T~2M0y7*l|$N1 zN5{kH^cOt0g7^PGEYyQcE4jB1@<C}R3q4>kjDw%y7x)#5tm6C-%0gvW1qb1G$g-O8 zA&7@Xuni*D@SZTZ0g6K(=nMT|0Pq{J+xXkCV*d2`W9P3JwqnqMe!cn)ThV1j7pCnb z-8Ak%I~gyyH|`#{?bR)#QL5WmDRtZUUt;^YYwBgB)a?~0$6+fn)h)c<inmR5>n%`r zio2}t4RlE;9JDte<$*N^-<}Anm;HwxjDHWpyKZ6e&6RKx9KE}GH23Q4Xq*}?Mc*nu zT@Nw65iLbu(Y6PSgzX@@hW349PMCqfa8RQ`H=Nq=Nn;%&V|2KUOqdlIwHX;>48W*5 z%#3z-<?G5ERmzUx=D40+CT+c#k$tXjmx=$|DK{pF|ErjgUG%vH9G{y&dL_*Gp7;%? zA@^GP^)L;-fs=3wO0MHwkI)1%{y?07IOq-wVK1aw&vgL^t#oMF!(7KW=%F))sTfro zc4K4=8!$2#T!B%Wkuj<^j*d165*|wsU2TOW{@W>0`1)wMe^62?+^I7`JEd(Whs4++ zAiA#r(f$iGpWxHqtNRI$_M&@ZxE_ri?MIVd;L|-4%^Uc%Z^X1Gd<@TQ;9XNt8@52B zAL$!HW7r1AkL=pKX7QS&sk^3*8~%a%@5l$cHorUk$gZAUhPP`PH=KK-)knwa2jU)8 z=Uy_^F;Pcmqg1aWW1!Mzc*jEBxNVgBw=B92b)fZj{G+VQ4cr@})U8Q`((QxDR>^(Q zv)+P~2i9n`Z+cmyJ<{7z;_F=FT%TC^#Wx*&hLU!)ndQ^x7*j`|uY4M%+{oB3d<|`W z;+YYc0#o5<xPBAQkwFCrZOoy&dWH`hZfj)1^wiM7)(FtXSndU9jLSZuGsbpovsV84 zevSIR7;dM;U+t85vod()&2~!W+9{c<Ok2&hQ`*;qMS^VNb0g4k7HovgFxjK0==d_U zgZ2=;nehSm6ehp|SPb|7%r$)&2VX<pUl{*`((pVqgr4vQya{7qJZym-up9Qk3CQ>> zZ3;An?yw&AL*6YBRt)fav3rxbe56=BNBvD+{OKI|+c4}y{yyzXdU1~qi(4r#H~L}0 zeMFbOf3N4RLhX}Pi<R^C+30aeiQ79=IbDb3w5RGiWG_6UK*SYeIlZ>Ax7u5k{CXMx zXd`p=7WGoS3I`iw_AYyi_^6}pNYd+k8mB>1(YY^-_30{_mVqkZ=s20Qqn)GIYd*~k z-#0Qws}?$AtYc)(CwPR87h#47BVHKm7=CQHyK&2paWfF^uCDru!P)&aJ0)$nn1DT3 z8J6-~J0)$sof5ycQ?iDglK!8)t}JJ#r2l89Bs$npMCPhgR>!x*uWp7~@Cx*Y8@4jm z1EruUOoQpL7EVF;?fhOG%!aSv5Jc}FCcr`{@Y~tqzahJ!r;$0I#^8L`G0e;8kA;~r z48o|*up1*|*o__k-T#&9{?S}Ce5=dfK8v}f3a_A5%k?c$#aCvh#5(Mhtl@7Hx=qOD z=q{RPLQ}8iQ^|WZZ?la)B5Z@xa0b$%c{dO{m<3*2NR185_t--f?BOvevWpmgaQmj@ zb;7b4BWJw7Y{s(Q-IF`Dl;`~qKIZnsHnhCgjcYm<s)G_<?@h<T;5{OBD5*&fWMKT1 zxw=%}fgsDudw2Al!p@!LGKZH9`M;FMS+Ib2xljwa-`&_J{oR$Q?6FLpirsaLQoW9n z-#ro;-O-Lb;-jKTBD}bhcRoWa=m~>h9L$6HP#E1ryMgc_jD!WS4t|GfyJ^#536$Hz z`vc%Dm;#1Fgz5T59N6tThGm7BF)9e1G4}2MnAz_A3crNR7>}458G9Aw@1gpD(Y|N> zWAJ)$9=m0+Q{we@N@9Xa<q$nZvpdnq(M<HpwU;&?2Eldvm<M-5)BRi{f}t=B4#KDd zJRbrT4{{w2*1(Uj2lm53I0DBH?%cF)S<;lGu|vlW?9=n*CS&VAU%$p<{CSUsq_OWY z_Z)HUoBZ7SI~w^PyiYwb|E`vG-TByhw;C&X)}!fdv2JNzZz(;ohpS|@V!?4EYB73$ z<nL@dLeEy`i#I*w=IPm$i@A@j$p4-*HrA68r&{;Su52FTeeT*LrCcwqOTGOxx2LIu z*UR|#17&VtO-8AX3Ss~`MeDUbz4M}VPoM6`eY%U*qVs1k559*3V7N(We>PfTBNOJS z+z(#UFkY7)X2!ezm6A@&Rp|l|Sqnr|ZV<sfH;fZwwxSrZ9(^ylpI%z;^J}-qC?;h0 z810m-Wv8V7=a$+1KZyh?l|i%=AN~W5!FBlY%}~jEtQaeIKVfFv6@sKPSXSoIMff^J zEdOsgLw>RMy}VH}Bb##sQVeX$NMiO#jz%z|*S}yz4mh(iW%{(gX4{<KN_`jSzkZ+8 z4{-eaKB?ETBYvOMf2Z>+vE&y(hwESW6-DIDi(yP}{F8;Ul#R&tXG+V;xjv(;=OtHQ zQSQK^Jb^`J*7KIgR8*=GX;U_Je(Sl2r+Rl|K~f#sD4R+pTIYkpP#h}4vv6tkuOD+k z`bP!PKPrg+Q9<;N`fuqkTGxiU&<y&(NVv56-+J>k{dJ`Hzxuyu?eyPP(?^rOTkP*# z_XWcS9wxHr&-rBZ%E1z9yi&DhD*pd<O@Ftg_<!mjCH?Y~a2isfd0lYyKXi!SZaK`D z5Hx@UcoTX-Z}<($9pU~CSPm;-FXTN+djch)6f}k=&=h*Z^M7!EIlKrv;PGVMDL_+s z?9j18yASc}5KE^o9Y6BJey_hW^5vzk^G8N#Qa8|abWgZO#MU4^Ut<JR_k7Rc99q|J zoPX$=RL4p$<KG*Xxq-cL<Gh}81?kQOE@iCCJAY;S_F0hs$btWx&1-niQK;Y8bMiy8 zl-JwKCw@K{X25mmT^1gNmmm%r!+4kld*L8BcH!7TlFt@)`s|?^Hn7?&)#aR7?%mNP zAv5#6bBxT_-Z@`-Ge*_+3^n2_g4pNfc1q61-5$D~k{-IG&i?+_^uBk3Q~8;c*15eC zTx~mxXyx_YRDQlXlDy-qbA0}q3V*Ez;<vq_JHGoGh!5xbi~9wjDs%?pJkiKp@JXXF zpktg{8X4n6)5vV~iWPd4*BIC}hHpb>jDg)SGv2+Cv_1YyShH<K0-O~oXLEK+&hR9> zS?c~TJ9Rco3OY`lO*9%06CfFGJjQ)IP#d0udhq0Nt_i@(6Wq@QKZ7A<m>EOy(3#M> zhE~sz@<;z8c@^c;@S9D}S#iU-FH1b<vkp6T6E@+N*-wni`=bt4WgOAICakPT>_k~n z2Ju<Z{8?}`Z$UZ{dcf<j1Ac>@a3^+94yuD=7hOod3qQgNkB!`Rl0E?31NVZA|MB9s z8LLOn7&K$`+pl+Q!QV?AYdrQat&;4vZUxC#zoWIA*DdV&cJtiQ7-u|P)@3}ee6eV$ zp=F~pXU?dX{JZ1gr`uoWuBU4=wyE26bpZ7;>)PMpuBop9$N>%V6yp4R#`|JqsnAa$ z`pwl_tk^WayG30pOY7sKOZ`Vdjb4LZ%IF*E?<u7@#g~79J#Z3U_4-QtkQwicD=Ho6 zKV4+NsY?O>6V8fiz$ps12}1PxoL0nuGyU>gQK$0zfB!V=Q*4QlF{7Bs8`d+FXPv2C zyEc=|>q|;T>I--3H-IFgT4!>tSCicKB#%7_91yB&Z`%H~kXRXjYU$mX4sAx1?{8Tt zMe|b-fqzE9b&wqjg81xx&=-b7eYNAh{|G$p=ikcMTMX3jBhfH#!E@BGq?Ka8nf{qX z#nYMGFXKxEDNDn_=1@7>-pG=^pJQ=T7p`)&R3_wFuamjmWF9vep6Wq&)2Dx0N8>&| zorn3f9>H`voP<+Q=@jQ}@B+LDpTQhRf@5$Tvi!|&hryljI4pw2uo|qlBdwt@6{f*- z_yvB2zai^8kyb6J2Rs}8Q}W(rdz1E#U$%GTprny+j~p~|{K%w{y+?K!KeBmJ^A61o zQ}o=)eM^yVf<(#DWe&Ney48@<pshwqVz!Q*1+VMuuB%HIMHLKEYP2$XJ5m~SJG!=W zY}Nc*NB`DS*K4$Iy42gU77)L7v`)n6^d~{5uCPR4ba+Ri!}|Ywbg;w1W$OQkC^5ws zSuD%v|0%@BXTW?|3;)sfzeS;QY&))&_Fpt#2Y<t(#Bd|9hHloCDP5}n0zF){{}~IP zqlVYoe=DVEE^WKC>sNLB|K|U09am)hclvXU(7z-6x8lE?1F7@Bx<$@0c3ds-Uo`Io zbD=E#^w9DD$x9UO1EalJBHe2h|09Z?qlVYwzm-xnch1+Y>i9qN|85;uWc-)&^e5ms zXbS()`2S?FbBrBVOZ*qjo52#O#yHH!5V{SxJWdEg#Q!7bs^PWxFV}>weg4ZwAf{n_ zo2L>QHfmF(=sl9I*`lQ{RlY@=HZ7VJDVmPbs__k2KvKSCC8-vbgtKG@(iIY78@6a3 z+tgmVR(xWcg!)ddQj5fdjxCzEQTf*HvK0~%<LkFcXwjUND1M@Co2CiP<BJqcow|CZ z>W{RqAK$c2jW!*c#@8v|A~7yLF?H&P5))%P#59TTaChozu`OH2v}qC3GO<NVHbzP6 z*0OB6`YoEaNKBWS`s}q-4fb9=EVF`C|4`F}hRvJBH*fP#TWF-eNV=DO-!NTbi#D<H z9n!T+jBS~&b)&?D=1pq0sF=_uT|)CX>QuYpe*`?ohaIgM-@eULzH014@eFlIshz9g zR%#biRy7CtCXcsmRxduWVvEFPvH$pG>bHoCS374f{xI1fHCE^Q*&_YZ!D-r}ev|mP zbd3_?_}Z%Cs;b1^<w~kpHjp7jOzjqJW16*X-6p0{?91^n4^@9SCcb%Wy{7STF%4QI z#vr~Z+qQLlOq)gttz%lWl;c|>V7=IwX7SDH$JTEYAJaNM5kX=S+cs~W(7fR-F|p0# z?7E$L^^&rI4lUY-zm;ban%moOsyf>)W=NSKLu3Zu|IyJIGGwm)(4&vU#AL~!lQ)*R zGfM`?zGEuHzZ~CGEI6h@i~4QF29+^o$RH~})V2*4cX#T{F%_P8xcXC1RDa~DnzdtM z?BbZ17mCGHd*rD{AF24nQ`H`-8FOQ`*x1B2@y%n($2M)65ZkuhEiu(%6Pu825}%kQ zb!u#`HODcaI$wEUeWgm2D^ZdaE5x>mm$hm<RO^un57p%ByzpR5zPPxUYJ6fk@W~gr za>=rMxBBs7jxo2FELDbjI0k{Y-T#+k@TL6j(%+Noa&k@Xsy_c4Q~Vrz_~+a^yduy4 zoNKZ3(Eoe*kDmXPzvUdQ<7zqo6V2Dc7B~fAp8H+OkY$<Ye{zvqjsI;wR}IhE!>_*k zKT?Y3&ixlxb^IT4>p6P(Ia|jS8UN+Jn{1E|%D{g#{+BLsj@EIt#DCHJ4rl^PAawk{ zT(AGgZCon;uRB)_&)LJT!uT)u+a*9__#9@zV)zEOLsXwgD>dYR(ohHLLPzKXo#7Rj z0#jicOo!}!SqE}LE~o|1z_aiiJP$9zOHdbLp+3YzLudrN&wX9;uM21HohghTHEht^ zKHlu+`%4_w$n1(_wtx56{++*)RWix_*Ezjq>V9l1vUw#dvTZc)s&nR*&ilJ8%bUF< zC3lXu$uyZKuKb_rGV&}fdCPCB1*9f@zg_UV@Tzw4{8og%S5QjNey?B{cR1=T8}}9J z(t|18H)RwOpLevrs@wm!Zac>af6me2ifsSI$9KT*5P{$RN8A4bCC|}1uKf1@hRXMG z|G#LS0-_~mL+JM3xb|lT-G4b3;{0#%xoUXM9)1<J|Dw6mwqMopzjLW`^zd`Gjw>?$ zOP{U`JOEF^e>DDQx&0ii<I0c!_VZt&`BM-J9pDO%|1-{2!*llVt1$kH=FYjCoWIFA zn{%#Ko3xy(y#R8qRtJnWqM5hhZxS-oz&j`IqGsI6B1lH&<GJSU9e437_xU`}MXTq3 znw36B4?kz?xDw-kI?+_lzw3dVe>VU*|85DbAQ8I2Fc=P_U^ILIhv5kDHd^-+I&;!p z$THVC;+?bKn=xt&bFt9d+3Ky@$Y3G?AKpsYBrd8<pxH$8ATLjj?vIowN1sg<uwvBc zoBYefHnv0<kMm}?Ukaxm@jQ>GJ=J5q=`vawmZXlDnJHp;D)*g%R;rBFbv+tIya-lw zMk{-dV`p;o;Qbth>gF$y!iu;7A7Ljm$~a4NXaS<R=-nDRKu72duYlNq=syx1{l}C3 z9@fI|a0tX6PQoe3*Dun_4@ICT6o*o9JJf-?&=Oif8)yqJLpwNe=*0d*Ck}08vUdNf zCHv)X&g3!jCzGL*$Lt@{*Z(MA^t>K3F~)G5F`_J48-1Gi8P9>*!%3}q_W(mmJdJ6L z5oL2mn52|(A?G3fO!jh&_BbVaEXucJ8ok8XMzGk6vCrPX+Xyo0Jz+0Gj7+KVu(Wo) zvPMBiuVNf?N1sH}e|V4OPH(2aH)AZ;!#n2+OJ5h%iyFoad2Fd=sYvkjWgiJbeTRJ& zb6cUJglOFw{QYm7SHIET%*c?LkG*rQ{xtW_`rfu8ku=I{K(@t<zU(c=N_Cr+wq!)9 zevKmXPU>DFX3~;}Zl2UDRX)hyuUD!9P;e4IO*3gxitLcS-=Y*&^P3LMFKb!rSAN~; z=%Zuqsrq8u<iU3*Z$Hzk`s0sgNSjk$c#)xUr3z2cz%Vjy&5oA$U35E>s|b@cEi2V- zZCU9u3;giVN7*TiZ1_;Mhb(JypUx+re2;ug{Yp<&v#gE<S?x8;I?i*;-S${kTi%|r zx2|Q~J(wM8(Z9~(ik4NjP-X5!YyZ>!7dy4D@$`%{KYaVxZ<*45@>}d<V=GPmHh)aM z`ycE+;PCvG1%G%eF=BqL+q$nfRH^Mv_g9>pqh;rqDxESNzV7btw>*-m=cBI;A6aho zp_cPT)_?fj?`!oN_(s~41$LcoHKp~RcimO^uFCICOIZK=$s-SaSO51p>wjrDe$M)z zI!zqCHS@46J0B>UqvwE{>xSL`#?iSSE$T4;oj>-?-v0gapUTfHkR~$4s}IH$X*K58 z*B^U+>$Z(YKR<CQro=}Nr0)C8!!P8^7~Lbfe8wIF$2|Dl^v3Uu9$nytpT^#?IooaJ zGgf*vV{~NsxH~GPoBm*l%8yqZ_gIOC5|4b6F~+*JLX8`uBU9|@TcmiuzB9U1ne$i- z)vV4EZGBy8*M>zO6q(m}`VE<%E7!E_^HUR+kGiePgTLN>^Pg#ZWX$thY}pT6oh(wi zRQ^>Xe*59)6O&Wc8kgm}`_7~&)$2j#*WO$<@y5+J^)5QSW~#(}Z$8<wT<)1$KE1zC zzZ5rD$lm;hTW)>$)yP?0x7KS@tHkN{r^-D(^xj_MCL|5H`_%{27Fg5r-7os~c(BYZ z88@X%SN)k9Z;gJe|LU*WwOH}d-?{3Q8L_NYn#nOev%dLg_2YLv`O%#>Wu8^%aPx<@ z*Pio0;oe7g#=cnX^S`>EYP^11yQG(+iq`+D$&`jK&mHmJk|EQNy}0$cb;rIvlytOb z>AJ^99Nu}y{_8&c?2c!jDR=$8K51Ki^>^15DSGXg*ye{~xsRXjbnoFeK3n}slV_$S zY<he{r^pnwW2*g+t$z%!q-*~7;n=pbW81c!Ol;e>CpIVMWHPaB+qNd2*n0L{-~0D} z^}I=rtfP0YUcFaWo%N}zPLTawGP4URvu8z6IN39wx|ge+qx{aOepUx&$a`TBocI(8 zDFFWI>u6?F0bKbBHShBh?IPf*XRZfT5epQIp9s`JiTVkw5DDMVAHM5PPeK_K$m$#K z&(3x%@VpNE@_?DY!?*LaW?<buE<^#ubVL>s)(fpyp)Iqv{ck7rzOa-ZxX)7^S8sVq z&&P({0SJSOp3q=Kpnq$<vc9uCSs0x~D8>eODa+F*>htx8%Vt!!78Qdw91Gxb&_xIX z;7e}Kz|XOdO#W`_(d+amJVdqWLc)YRm8p4y1Z`A(-hrU-Z}$j*ICP-$IP_j_$C;xa zn`+<q$-it#{d&;vz*eK&j-eUqXmfc!Hyoc>^q<k){=0%{4({NIH}3;V)ScVq1CR*M zTX(<eyCZ%oE~_N^tLX}%-sMZObhX91NH8txLtFbqtm|~Q`So~9GI-nNw^94oJ*hhC z$z;u8s0+`?@uthmM?be^@`YgPjQ{cG^0lz_#fig4ojy%k2T=2APV#3aFSwy6XDEs| z;UJ2qLDVN-7yyap`cX#|<3eRL91A<D-$=Ak^tT@kP=HqPXFJ9^<?m2qo0QX&7`XXU zyjy-;a@mz=v{di*mp4(rqh|5p<xs8P7ZK-j^vvZ){;~6+5H@gZiJAp;!@uEf_vw8C z9Pr%Iup?H%;#Ag>%NJ1;W=nN-rrmO2acDp#ynE*Co1-Nd<+~!6@V-_2OE5KRv0Cxs zl^ni*`epwPIQgwW-?-+U^@DQKpPl&rM~NEKnyb8LgPw>y@dVE=WM2WrN?$H?wyt}t zo6MRSS1Ue`6&q@l7L=r&d)%I(U3^C<kWF42gwNXD(!^~ll+kcZ;A&yo(2+>k&@&VH z2%EVqjRqU#*VtktDUDG<0N4{q_Cfp2l#IV$b@;CV@LxCm@XVgz*8{v53IT+Fj}ibQ zzB6wATvr_(DxWm92Me&zn{SV`c*u+%YjL+q4MskFZ+g=x2x6F<4#<q{p<8M+SFd25 zc?Ub&rrG(uCWR<9OvGUyjz=Vc+9U?~w4MhSfwrLh2eNZ(UHC-3y2v01z2FmaH$g2q z?`6Ml?uoCGJ9+|s4JS<!;aooUhRPCLe!>|T<}uzLMy=F&zK{i3ywLI!@&y&I#TRoB znR(thT_N_KylL*8j_EobebnrNwm@TZc++<sdz6tdpkKE_wyM7yCFOi*5|@L4Am9q3 zVKe&7DhGm<DRBUbpVYav1Hpv8+@J)iCrgksgyBlYR30epVq94E5}!rlvl3%YD_RO{ z*4ZO9Sy}8ugRHwpMv6SIyhqWnL=(v5e32thkX(I1+&KDDZ+cc6T0quT=zuRXjm7EN zh1|@e?V{UO6CC*>Jjv7Wmc8iv`NVoX%Ich+C(wp6@H3;x?n3zQmcZ&AZtXz>|AkRT z9(5Rij#!#Sm-(Vg^`fFf%_Env>(5Q|gqwfXXhZeZ9QcNcZVSFU@Ay-hN;WY~IW7q8 z92rO4dHyax7DS(IX*qQw%=D)c0pE9z4E^9kxs8HDb^PfZ!SG<Q@5R4w`TUwJsn$JD zf}np2Def=^>uD)e3pG~`4{yTa9OcfM$7cm?##Pjn%6_~|T5C)Wkyfsp9;<p9M|HdB z)BT)|x*Z^M){h?-P{LDX)1%%|tDqKh_TLez9e6T;d0KVcQJwU&O_1di8qV{t%;oqc z3Dxd_y8C$1H-0L2qcj7usd-Ce!03(4l!0MF9gFj{3AVW`q3F8xQ}trB754*UWlO)k z_-&8u*BwHy`#_rgwD1b!>p1oXZ5LBb!tp6lrJuTRfD8$L4dajy_-$rj4Hiel(w1eC zoAJl<fwNw#6H#u5+W=%skm1&w;b<o<KA#|i*o%<hK;uYYLT7oyXt)H>uHpVdw$tuH zU2R3}O8GhAXkXsX&LO0(PVq>Fjeg%=`;7qw8KU)i@9JtKVtegsYeq0ZkO&le@8)Go zqDGo)lhqzACom^&%>x7{%3AI&sj4$zL3(r7mnqD*k{>i^SEaE<h&~~1aC7MCfOwmZ zi~o^Jn{Nwv26MMMpT~mxBq7tXt8Hm{U0y7xwL4P(a@+_NU8>z?8K%NV$YsVnDx0H< zo5jfc;u;f=?uj?S3MHSbe7a~Sw|===ulZSTQJQFti{YX#ykC8$-GayvW(9KCP3>gI z{p-4)6d-_)@$FWpxzNY&)!hESfp0(R(sW$R=MH`(M7%#m%R-PDj}5~YT1(G_uC>pO zC`o$zFu_xIjF-4N<yobrhxijGafERC+3YQY(-w$}WN*aCXs=bJA)j~Si{~uj<a8wd z?%LZ?d&n+(-!Ev&(Jt^o;Bbi-F8P-!*!>EzR)D+rYI#F0Pwa2#9hvIXy61Lpg8Pz} z)%2a0=PA6^(r=DeM1t>I`Hp=(Gan(Gmy81?BcBB?0jGavPM9TtUXx{x_#7M5wdECZ zkgZIc#q(9Va;F&u{%W#sbX(?njjHW675b{56k>R(n0W9{y@1mb{%oY`Af}q=sIT~a z0n)~be}bWczgB|~zHM;l!#;ZJ<@B4=egvKwawjbC!Dr^YGS-_bWCJOfdEk=VTqgnI z4m%hb795@>L0qrs&Z##%2@L!|^}x#!6^_$D)!>D&^w<#D6PL!?<4BF+De@&GXq*Ta zLiSsw&6=-gbekI<e&9)3T3mD&pR@W`;fWAGHufgix}HNpD^xIsbWy)WL!V7kk;#mQ zi6s1R?M;t$qq@_=D)eYS07y5_bf}_EIiD{Cd0*$8ZZfCQbPF97g03>EcXoW*un?*M z2vPK+fg}5y4jHoRp6tg0zb{a|+#gXM_8Vh)GK!>vs4ykMFc63ox2u5&1M%QH2Osut zbA@7-IK1xtM;ZFSx8(w7LCGou^S&QKj${k72+yBcDty!;WFZxwZIO>`11oGg_y>wG za={?Iee14+g#W0~DrCAJh=>rPhx917*^*dt$MMi0{Pk9dETO`HMm<Ouv7Xppn!J0n zWLBmD?7<k3&sTJw`9R%e;|6LS<3f5><Z1ekzt?X3r?}9Z(tV3KyxGZvrbJbLAfY29 z0T`ea-SN<g-52d$kG?4Xgz8oI7Z_;Jhq`64s&V#&ZdCoEE6dG2v{ZwX^fl1HQoTlf zrdJ4?@ZeLyhglf?cghs7IVQRAbnD>832y?+ryjIaiv%g*k%^7n#hI_4|M#H)Re;Ut z$vRX-LIuni)-U08eJ(0ydpJli5JD!$(C=)=C*Y*7Q2|By7%&M2`Z}gYR})K^k!99; zT728O5mG%6^e>)!o*$&Y_+Mw9G|6?~pg=4dA3j!QyBPxbALLSLYWmK+k@rdionH~! zyk0`rS_@%c`!21EOvlfc3wD!CE-d+5+d(R@<E5Uk6nX-8z<X=HT2b$yI25=ByT6va z6WQ!}qObnup&SGrC+ofcq^~yx*ua%o%F-c>T0yty>Z`EF!Jp#@e%6E2iv`d7b9k}x zHN8wqo1lC{2RY<#Byil!MJm9$nhAtyFzkTcutcy<x_>o(qHBFoVtoJefapc0-|2Q= zJaRL+UTBclsP}s0&vd(=Zs~eM7+4kl)B|F)Nz7^Vx8SFv+`?ix4!A)z`!G&)G}x(e zE5^!$T}(`H@*cYc%E!4*>f_mW_u?Q&ti}D9H&rLKu;@?onS7_UUZLmD88PpVeQe^r zjIVbb>)fFf^YgR7=wKN-VH6M%luq|j<C7`>pqbw)m$(FXxLy|u&n}(MWpOx99X+Og zT%dMfnE}TWTJsQ>QTG1h-O$WNSb{IPLAv>d;enek+}|6YKc8-U$sYVu6mbL;iiOQh z0br4>U@}*!u>o7U2m3?4a78rfH-DdhV|_p)NhD17t{Qxa-Zay(Tr5wJYJAR2mpQea z;wr40O?Y+XYTX_Dz(J%;$gJ1A_ByZVi=XM1n4Y>z{DZn{eM+pX&q2!ql>$v(1fufT zg$?e|&&?mMl-pp0w>l3=eIT+=i;}R8W2Fd3UUfimlI=mm*zT@{UDqrez#p=ot7%l( zga`l`fHnv&5*ShTmt(q*HR2G;_%g`m9Ae!*Gc7aaP2>l2G8!7dX$zT>el_}2dH)l4 zvab5>#Q5TAd4nK%aCmbc6{PRLux7Ul*S2t-+*A={nXwh!*1s_!*nUYKK_=)^^Xn5| zDR2-&+UAX1FV`nZ@F;k7L^wXcAK}f%z0Z{fn*>HUp_}HU=MkrwSZTyx-^5JxcV&Nc zIV^I)P6=A)EnN+=+m$Wz%qv4!hQVOXg3dEEIWrwIDrRKwR5xVYIfH&sbmO-92TTHT zqMW)?%vB&|AjVE0#7ROV*r^X>;u56DmWB(`@H`k#%%yLDr0T;=tL3NhOI1x^zdu(? z%-pX%dXz$IK>&-@pQ?_pxK{XVWp%3F1%~B@LY#%2FUiet%Ub^{1OywX5tO0yfV6Jt zAb-PMvdv)ZS1!gxJnWCFqu`*`g?0WDY|O|V94m6XD&clL#sW{v-b<uK>a_Rbx<+9n zqVTF$R;^>RiORU*4LYZ%_Tpz3FG`148D!2X$bA(k)u+o|UcEReHFRSrUYI9AFOHw< ze+pJ&Vwk5Zm~FYHheRj)3|$s<nLlX#zXo*Pmz!}vi1ea^qfo$2`K5OO?ZBCBAm`h1 zp*213clU>8D^N{vz+YUxV0#zwy=fe-$6Ma69WrY_Q3M57;l*mAh7bx)6Ijc&USNi+ zQ$IhKa*&-oR|c<xJv&TEwlV$~zveh=jlT|ZBRUG^F86C1zdUsXRotBP0}taOmqeJ1 z>0u&>=y46S6spCD87`rK_%Hx3@uo%*)8+DM?)fF=ZS@U(KwXO~ekNG0X?o&j(3J;- zku*!KmM#CQg?OrtSa{3nn0RGZvFV34`s8SqY>*rNhov9;dZ5j6z2)vy#Z~sovl0O$ zuhBRjf-sv30P#3^&WVwSwBbfPtb=ED?mx?l{-IDPjOVDNFMk3mKBA5O0UX^S#T@O4 zZ@E3Xj3k0a-vBEdIE)0^%@fBYxRUN>(pQeFFWy4v*=olGw10;KEj~S@%Lw9{N{t&w zy2;sUFf5-Jl-X17cJyFr;7%Xj{nbY9e`cL~gaR-~;8?RJArI6NfWEBI^!Ax#@SjJ5 z3lqkI0s10HQ2>0HFaTv=CivUlRGmy_3&T5F^OT$@nr6_gV?EIQfffFsNnC$uU>;|M zVp~~3p&A4FJmAUhjj#=xWBb75`%N`b(f>E-W(s4m!DW1tD?qxMYM+^r8U_?U$SLB6 zven-O=BCmPJA{xoL}@$fu2O(Aqrjl50+L3Gk~r@L$c0fL>~cF$7c!(t12#IhGxHiS zLjc=Cjdntk@&4%Q?P(F?ZwkM}NB?hj(#SSlE+d_v&tIsX(~ysv(Qrj)3aeO0CTp>% z-Io8+&4G>GT(QXSW}}DUw$*m!8^Ooo`rp=86#v$n2o{CQY2xF!4atEPbKkAwj)MQe zXi?<&SCYVv6jJp6ZVejW8-#AxU#e3oZF<n8HSD%e9Y|=dKShof3(8{uI|SY=zCUbJ zqP9zW>DQB#%bV!$?M7pjzYwuD|2vJe5hN+&0ipSi=#_5pZUYvM=r<8ytTR9&ueFu! zYD_^Q<B1}GzQAcWv?)R6fAwe}02;w5FNS`KTrX@Ao{R>dk$F885edHc6AAuoCqO#w zs-)ld=dNArKkzRKBF-+B;)<aR|B<AuH_XRp0w<cJXFezjL-wBk<EKi0WH?wDNFX>_ ztujh&?T=XSEv(U#xgw)^(GW}bm^M}u(J3nkS~^p;vaP>DP|?vKF%ouC+)iyleWAhM zp>7--aH;9;YB~x*sp(S<x$uJD{cbFoXIrh1oZ1dk(#OZIM<ng&QGj6S9Q5v|GFETM zZ+vg1VqC5OfP<F^MzwN5h4J=IzMVyrhJ^ea58a}pPo)Eh+9~VN$C;P*JCY`XSx;k0 zYyaTZijF>H>-EBj44b7#HsGmsF38dT4f||FO%IWy=s%MsFKk`TzWwZc;u3X9PR=eJ z+z0_Le#+;;J%~$x#iS00_!%G*^*k}2oKeg<U}uGLe!i(qWLUfQp0BxV+ybtxeUiUL zR(m}*k+Q7@C(|9rufUHCg^X1L86&rPx!-W{qm$o#Pe&Q>G}fWlcR*-|H6vu%a(=Fq zmjD%dVq%gK@&0~261By63yY#}6l_!na&&ZiT)BL$Pv+5)K>X3*8_9pVscn}qQTiF5 z=WN$9F#<p1C|MEDa{9)n7hc0b)M#QeURQ3}`D-Y0)wALuj(NLX@Ak<%@Ar)i)w>BG z+f!puJn}DJW-ByvcbA2x^nDqTP@LP<*NmZ4vFHtB;LgW3EjgVKL<IQp$WBc3l%e$Z z$(b)n-^c0B7imHN@vCBP=UeP=LS%^59?;#Q%VJM&Lg%?_d4{)8-TGaie~}13&bYre z!5Rf!R-e4ww`6i=cSX+9G~Z5mIvl{eb6F=e1Bn$^7e6n*oGx5$#$xR^=Ei(KR(tVP zd~2aD6LNx7LLJK|(g7bske~gL15qhG1+PYkK6&quG<g04<45N%UtVBi;|c3WV7Iq} zf+uOHwO@QqEPzloN=t`!%n{<eV738=;G2O5!Mx>ooKREV5tVbYh&jvG0cj{@zGE4X z>zilblD^AnDC+L6Wq=-W>o!B28hm!}xed02It+OeK0Nu2N2kuGokiEzqEs)+=kV-s zRyuFGKIoMEqOqu{xV$jj8EUEE`W64CJZuIiS<DqzigO-LAmq#g>Ba2#;@P1axZ<-k zzj3c9EV_jzzk0#)r;J_tHh<jnf=xTD0H>6RnEzaPy@wqUuGGUr=T}=H^6T@)ZZUA; zt6Nvv3}{vb8nL6J$(6e2aGtxz$YG9-_8)Ft1i=6>rKR(H77cD&Ca7VrK40}9r|p19 z_l9!`i8FKUs&#j-x|V$_BcJp0rHul+>@o5#Q)cNE+z)f}Grx+;)Qo`^9wEc_ynH5o zCPt)9Xg__Z(82RpAD*4c<=uO_jly?a1QXx;5J&LhwBypXO2>;E|1mED1pb}QgJG#a z>+;nIbMw7~gLl8ApX0KZoX~hrNx}tng{*mx8U%>eoxkRX5)_WS{&<tXkTNw{G14Xn zN|6*<>uVL#*Ti}{HA=b@M~;zyu6}uEglfz#*rjVMQtRVi5O(OZMkr9u<@WV<s5gRj zOd=LTLxqZi8&YOl*ZV4#tqMNYtas=zLJR&Je0wAV4HelZy9$9@gqFp?wq5A6T8;?; ztGkl_IXe5hnN=RS=I-w3;CtKH;_&xvXFWao`N5qQouf{8_P^QSq$~#a?czV^V*DpG zDpsK}z-4xEqyb@P4a+`xPilO*E<!d2dG7|~y>zT)YL)qEQ}7}YV%wYoEMVPnbtt5T zkHHHx!_Ya3Dg~)&QS5gU7ILzOe#jWa4I4wAa&lsh9ZR%^F9Yk!TEAvIr|)<(O^`Dp zC@4&H8~06bzDqOp9reJLsp$-rVQP{>&cB-i!T`IF9RnoV#CG3@!;-d$cu1D?l(nd* z@b2y;e5y1Gx(yf+E*^K;zFE+)vyVd3_izV8x`o<rvt=Je3v8MXCW(rLw!(xk@GQd( zQ}I@6v>lZZ5En~D*q;JT-YJ$eyM+X0O1h_@%S4O<rFHYUn{0nHtTN>&(7fl(zaxM1 zC}H?1O_~T;bYYQ1<IH}HE>S*@p{$XUEn!83dJ&Amu`h|i$H0v8E3d)+no$xLb&nd( z1yf-ZutjoCk!+-4WIzcxZdf?&nap_6AoCs!(Xk7MCI3nN+&44gB8qA=*}k`B7K~w4 za7<dt?@cncK9a6{XK!*juOmDDm`EMii9c(HRfCBww*m+Ep25N9nVFULOKPv~Xn%ao zk(?e^Fur$WuwUfY$lCSCk;^H*(p=Ui%S0-4kKVcwN)_snc$hy|a5}k^YH+RJ$;H!c z9yOc|Mb-c%Z_`?{qD0XKn6d4$w<mZHG|4hGLmD!B0F$(ah8O<EeL$vcVJSl88K#x| zuN(6Qe+X^ubz*);RM7d)B&!_Xp%Fejypl)vzx3G6oxKTAsc&Y_pXLr60)Np1NR^cV zm*Ccwx4Ul}N6Evcm7ZgCBcwukCPx|v-YQzuJJ9{{C42gr@8V2CLUt>TUT`H2h*);S zQE86~t0p^PX=>Gd>yS)jMRztFBx?koMios|kwFO?IKXG)?{|%ApS^I2T11<|0F2Jr zX07)xq{D64uzJ?7pbphl8cQp4^E&u;+nY5bl$w<lsTu~X7_A7M7p$0Ht)e`##jRR7 ze!m_PmbK>jh$hD0!wsFCFZ8v{&0Su#Hb`FtAhI{D<Mcf|vUCj7(>ZNOliB_D8~Wcz zC<hXgqhA+}nOi+KYB9zqf9N{D?Q60KGCUsuU4{`5{gM-p!kt{3xbbWmoEwow{|0wq zN+tbT^{j>Zc=G^;_5npg)6Ul7vgHD?;LQ6y^LQ$ffDC#5D@+w@zN&vJ1Oq54Owo#w z!YPy<9|f{;4TH^THY_F<M(!{$|1=5)T3g{oi*<n7>1s(P&sv&I6?7d(B_~#KX$DMW zg@v^UdtfF6H=Ut&-t~L!kQgTAl)pi^x;88K!#w^+cxbC&<$YOHo#|2~sZz|g<TT~p z+GKIH>HlF|RE6+k>VDHz5IOx&XnJY#JG)Rs0z4^uhlU!tO-1v*yf-sEd6K3vDomKT z1_0dBG{)b<PG^<C6cA^Jt_=X9DMiq9zYUl&!hc9dlK77)fszw!*1;S(OF<ftO@e39 zc0E&NK5oQV%Dt4Y90vV?@Ed9R3^{kzO2T)R=CG}uG;6sxtF7gRh4v4vr6JMm?@#8D z)Pe_{^~-lJIXbdtlFj~UIOrJSj{o0OVUGV2d0;gE=m*Ht7}Bnyu9Kleg^$Vqu0aQ^ zAE{`iIzJp*(+?a3g&B+U%}(6TfG}aCJ;KRj<?u$VHe;A5SXf#f-V9sAnP<-a4`MBr zl#vD@llSZcbux%s(!bN7X$2$n+5N?N$`hyo{ry`ddo)^1X`_o>_1}8QYr#~s$mqKJ znz)b=1(>7@w1RcyNwx#<+%5&Q7WjPv@2$$KC@ALLvlZG6lu<e!&CF#U*6sT8J=+f7 zJ=*Y;d`Sxmgp2&|Pga-Coj_z{fQ%$|VJiwomngtwnre<9sU48e^yj#idoi_{K>*nY z1Yx!TUY&-ZDF6vNZr^B}IvuX4M4YkUfmS>N{$#Vw8iFqvg|dGqYWfJGTwe&jMOP4+ zA#oe+wjkm+pv$exzZPoruSl^{)cE+by{{N}Vg`1%=*$HAL?mQ%%n)(#tQi(egxi9& z9z6E%bD+B>x+{QIBM{l=F&+{gA1`rv&R>%+Zsjq$x03PBoD%kK>&&mzxb%dF2Q5qS zl9on+RBeG`Yg5;3ny%soA@lhez7`D-IZiL)#wn_Yi}B2+KERrDJLb-H(L@xAVWdf_ zK0X@TIoRUx=pYYkT3?$5!0CAOxLUgFWS%D^L|k{y74?*ePnU&&ePD^mM3sQZQ>v_G z%fD_nZBRU=56!pMjhswOz)w;&;bbh(T&47j@?52Ls?7JUjOjU58b0(MCAY*dNh$Hi z&XU8-gr{+0v}h^}QD1psJ0V&y#`g*){>gzBScR?}so$qh>|!v7_#q$E2Y}U$5JL;= z<coL<>;N|$3wLFv8$UvWgss8A!y~2Af`k7^gG6ul(G%zl;`|{FI$=mhtJ)&0$0&n? zjVaULT89o>x^F(toQP@08r8@u;n)zhLXUOhKkWNRV3?n!3Pk37tjlqk(cQkYCjz9p zzeeUL`(xotga?KwPeFEdj{PH#{|rn>m8$C!yJgtwb}c<hfX8&elsSc5K(`(abKekM z;&-TgC%c{lw$t_@QrZIH+BI@e3wGJRBu$x7bJW{xc%`;OL#jR3_D7gn{#{=Aur5Dw z?zKod-^xn{4GXZaUg1Z-L)9t$FiJ=bqNi2$bUagO#)|1A3=iM;l`qFd0Mb5h6=ljQ zaR@-iC^*#>P-<B>+EZLqw0jVW;s_Tui__TZ59sXpPJ<XBhCu)oN<P^Y(!3R1v$&%! zCKjp((5-si67w<UloORbm4u^wPkr(Rou(rzQ*+R-)$ST253H`+-I&SPm@QzMR{chP zvvQQ&Q6C+16s^6+bdk4KDM)#Lo!C~t8rElnNreDZio+ze05&4`f9h?buzMBDHeZ>u zKlF6$<NazJx*)Q*&Ye9uusVYl!ArsRAj?$Oysc&Qo5jCTj^p~56y~&@$DO98zxL>U zJFL<3&M0Dq>VML${os*>Z?092Zi^*SfJcxHmgasv(C&PA0y^f#62EJxP`z3{f_b|Q zv*fT}3$WY-$&mf~R5u8v{VH&Bd4e?{J^L{;B|R^@>_Qt)4(&0glGDl<=G1UBIACqp z1W02`QdS<<@I{W>+NdefPaGLrs|sep5XC(YNyNQW*dByD!EB)0r{1^NC0<{F`-e=w z{^U({?@HQUeN~(*?uR|)-5duNca1+R9+df)!BJ1li~b82wt4R6O&Xs9uHU4#!9645 zM^9%_$I6uUCW-SOmbCdy5aON9fqt`14EfOMfxzIrcWkrcoA)=B7x3wPNBqP;!tN~h zE7WT6{?%REWf)3!F9=I5+eaN44X)V9xLubWyQ_V8VI~JBdp#PyeD-dD(2kZKG2~X{ zWr)iiLG<C`TvekDJMJ8d`x^t9r@f45^QU*G|KgMDxq#0Qd`!PCH49KR3zC<6nv&FN z@pG~rvQoEFC6zY8)mUKsVa>u?Ff`ipued|-eZThll*=+4*@FXSNhmMw)$wJ=6Fw^T z)4u~c@K?R+-&$HacwktYbYIyA=w^c1_k{{|t7+Bp8L`vona)VduSxg?Wc^YI$`rR9 zlbaqx14bsX3IX6>TXtCIs?F$$RvPK%b<ZuD6^tUYjB4;hLudY_bKO7(9r{$bRv9Q< z-qcb*pYQ1Nx?+>|7dP&+5%`$yu;D=#HZJBfSu_kL)U&?aAwY$$Qs%9^H`tg`#22o8 zIm1K;56U5s<9L0sU*Sb9CE-AY20CSX+R~U}OBR0`abImaahH6+bxugZb_;e0w2x#R z9#6c?XiP%F2}{9O?ljbwtOoZLIP$ReP=ybPrZ(R2{kgj<eGZ>EB8H}+o^4^vzr5Mo z@_uifnn`%?hZXf37KTyL2{&hdbu?<w8Wi@e+(#G((0zFp`1*`9Fr>j79R)yel%kI< zDfB7p&^AlaoZQ|Gsf+hv!HdIbRCM-efApmSO=LpLbw!=m(a4p)@l$4zN=Owmyhe*o zP~Md%uSe+`srB=qW%x^i!gmr1%!jfWW2dWTpulxE4JS{?$87wg`^pIM_32Xa9{mIL zHM%XXGA*sH&h6J%R6xD3&VP;{s7dJvQj?MVQ?<a1G;eTX>tp*SA2<dT{*$q2P;yuA zSS!^{ouAYPrGY~VPyv0mYzcutV(?N4<tW8>QZmT1Yd{PBhYi5m7l6$Qwz2ac*Gz%L zOzHoVdy25#ZEKCfQJcZCWd6e&>EIJd#O2O<3~ePzKrjZ71w`M;lqtu6hB<63z{g{k z>L(aa^uP`%F$0RGVO+iZknIkrVNGWAM!r_4&TGyn7%VhrcBY$*H-@BX{H=!E)^BLP zvrXatUW=5nVDpg-2%c_!;11@WVtk`X5v<$988<V@<+G)V+)n_XdsT^ET_w$;Db2<) zE@>nTS$kB-oYEy%k{=r3>Ion6^eF2S#gg`7)8ZhRV%<(l3(tcd+=IC?RnLPig-TaY zR%lzZ+pp=|{L)JK4h3LB7I>Iey!3du>t0<`0ft8csdY7{eXPcmI96mNz?z$weo+~3 z90b*NoliT8PmmrXYMLaZ1Nih&=_$m*5mg$Rq|}Hx>QWbVB3>M6m8>bWs*AET^Z}c+ zyghW~Hof39^89g4B>@Q03(Uw&;@nE0!qp$5(XM08yR7w``lATWW0uUZ@bFm9m&vQ| z!sX>y_UY6AasB)QxqDGm`$rBo&`0>s{fXK7d*xut$j$(%uS)8<fr0U?1hS}?E`L)& zBVnF1<dAU&V_|L6mYC`cpGS1$zD@Z12<lt+!1(b51GVti1<|KH4b6?Gdc9AUv!rCb zFz_qT-(~9w)JSg!F(tNR)=ZqBz^3n{ll12A+)khtGR(4$*ngy@$2e!k1JD2bZO67F zY5rXzk1MD4`3QJ%;q`bmmCM7W*GK0@qC%;Y0g#YIs_Jl7e?-;P0O8@P-JW?KrF8Kv z`(E4x`)|SVXDw@k9^p2|-(&hhKQ;#RB9pROtqA>RhAC)JL^pK-6co2>B@?AYJ+pKr zAx9S)GSK*#wXNZOfaz!OA&gW}xwbpqbA3e^pnbc?77PzBDu9D3<@m{^1cm+@3VnV+ z5hKKcfjPEirSp(ACG6kzOyJ0qminxO^~{>a*eg6fZI;}FeOY|#jZL~UYy=lJB=O9m zsu$~zDOKvRajE)hDg1Yto(`VjQiPNyv81FV?1Sa?0Ld<WQjq#_@3x`uJJjg_vPb3j z`EliGSyPq)H{Q}U^TuRB8VKXd94ZQuK6vdiHAeZyN-*Hgy*9hSsmg?Q9SPglnViYU zFs_RXQJmss&8DFEjS=A2F){IB$|5_VBp1v+ObZXqPw2Oml(|SfQM*C0ojtYQrjZ5v zu3_x1<*vI(mkY9+1~CoI?EQ}NPl~C&C2irm#(edHd~Fev+`Z_-+vQRs@g1N9YFs#$ zL^)t9w@-=fcChoHt$c3c5|T)pc<ij}d;*yX2$sR*o9q^Q^!Z-YyLWjNN1uv<{&4=3 zn=#8E@e29D>*wFWw=JLf5Bvmu1Z%i<^VxD|h75e)+2aW-MS!A}dE3T}fp6F1(*b4S zjN#715tdN%3wj+Pt+YN+vdRf5&%Gm$&viVvZJ_))DLUK@e$wcitM%26`0O!W8B}wB zjN$E`K;M&dtK*k`oZ(pUqsAYo+Ltiuf`Lc}ItSadz2619tU`nDP`!6lCA<U9vAYGU zJX#!=RM=`dmifkCUvBdGcd^VoPa+Q&$_`W5uT0|Cd6f27?{RO6h1U~Wna<Mk)|!7G zk*6Vp`_jdm2zw+v%hKM>%=mv@x;j?7`A@y|p3GSR0gi=xH0&-#32^+~PT^>;xXV#6 z(G)|7;7=9{-jFu-@vt;8FUV=(?fETd^2V<Pb7__Ct7klJmsP5qAHsL&iO5?_Q-2*( zMr!I)0-&B<0(mdr9DP=hOtLW_nt|WKN14lxwhygSZv{DHThKQSUVF|U>_!O*=@y-& z>I`f$2dGZClC8CTQ9NIP1>Qo-f@2;*Xdh0#3VfrBc*mWcNI_&J1l~}~nF!SgS{;gt zo{iTW4}YDN3bm2|yR^zNsWranS0#{5->u*$P1|AKc|*OR`)b0h%kehKxL}x&L?<DO zU|`Pur8tc)Iyzbu|JtHK3(B>vw$i7QuCnbpBu>&hC-mziSCJ>*%M*Ge-vj#d^h)wz zLX(t9iD+<XzecBay^LNgHan~#NQ6o?gCXg8a2WagNgSf5q@!_B2+@gcdr48`o>Ev3 zYVKu8!KVK^@+XH!^PtAsHCPICPdjxg;U62~>UBX_ia7b+a)uQKnj{mB&TCG*Bhkz| z)3Vg+)UXg%tw}oBX5*x`Dy>8zl)$xVcY~9=<=i5MEM=&em(0k4!mbxJ=wzkb<hv-E zbt_m|^PD&mtxlTc6eI@o-eF$bj3LrTrY}XdZE9J#5?En;SWM+=|6@pJXJ@Nr=nd&# z{2^gI+p9+zFE7c;E^Q^|6Mp{h--RBLl%RF*YD&_u31ms8Frt$UWqk;cUWnjJABw18 z?3>0h5o;Rp3;98I%d#Dk;BTbmp+XceyliQgrP{9_HZDKkgcl#zud{8lZ-$jr0cOGM zLO5|n1r?Qcd34IF@h?TBUu%U+zXM`n)o6!?_9aD2U1*q|$~YF)1+ik9Lq=zi9lEGh z^yr(l6@uxu=t*{g``2WR|0?9N$GWm#b9v;I2CG)*qsnTVR~28%?uV;+>1XM>0?QM= z;ElHNr)i3@w2Z{ZsVk1>+U+k*ABzoIx6HZ)Y;@_$F^^<NNDb0?Wa^NU{}N^+42+0Z zP5IZ;{S40w#;4KDcGTV8fH;d8UWP=_&1edszn2C;lI{x;6GoI(Q&4_~i~c8Xq=Q5U zv;P-~!@$}HzhA~7-*AC|@$M%m#r1;gM-~3lK!Cvks52x{CKnR2*B9^Y4QFQlTHNFc zlri_sw+u*879dNYTt!C0SFBw6v!F`tatkB;F9QV&IWn`0?>4AjKB(M<C9M~_6I;4D z`g79>i_VGyDw>?M30!a+m6jMIDqDwmFWvEWEYBpjV(T>ZxUo#{rcMQr-_wA2MR5GN z{mzktE8s*oB#brywihm`qS7GfkR?0|!50xDLMMYIf)0$JzayUnS<m=I3VDBFvA*`P zT-n@{2Anku?{h-+m#vx|KVDNa#&5@)h)#&95f_Ylgftu&z`-5LhNE~xhS);y?b?P$ z`bJp=Ut4r9-ylGU^7q-KAq}~44;ogcXbjO<5lhGR#WO`sn95&xocdA5NPN(fXDe(8 z{dIb-w%l<}d9J(dzOSUeTu@nqZSc!6y*Ba}wA~(=9<jj)@D^GL-(nO>WM*P|uKUB8 z{Z2R>D%{qS22F;Aal%KTF=m;q@OMUY0=Ifu5UXOI*NF9-VC`a?ALFBNgy!wXxKLTA zfhy^hoVkT$Ud?+)DD+zb8v{lEf_!8Vq$mtLeVqMQ_m=-x0-Z#EpjO=IOp@PO$ydaM zOH_Z<5twnmv^P6X=mO1Wk+W*~)SrA!vP5OrMMcW@R&Xpe;3H2Jp(;pB8@L3~xW(99 z)~Uz)D?!M|fX0mw>4wNr{rfm{hTI{zp_G`|LFhtw_~&@Y++>H`rH3~jNI(um=n$!b z*M*16z;GyJvX%EN?!E^m784Gh?S4jjG!N(5`B6Fo6T%C<Jv}y5z8pWEH<}(}+pO8k z&I`e{4On~veEAWdWq*00NM3)_FX=pKI)ZR3R++Y0@2{>2ieoCiy|fwMemYt~E*WmW z+O-lE6Lwi16FmH5=IkNoqC;z$sKxE?P;EmKJ;hSEI0*CQEr^I1^2jS-JPr2h^0bPL z3*0a0+}et69s&lvw`TcQX~EIN(_lh555ANS&(?-n>Vn8T`Er|Eb?A?-FC)H4-LN#< z$d7}C!0KA9P@wlo9DwaPTMOr&YsgRi^4%oADN7#UR~9@odZ}G7e1~7PxxedTRc0|y zUz|?q0Z52s*XO<+3m!~>=kwnZ9Tv=Tp>OvzfQ^+Yj-Ls%+4D^k30+S4Zeba<jfcj< z<K{Qit4z5RKV3w`Zg%*+%qTf*#19-$Mj==0oojmBZdxV|Xk%g?K|6PAN*2E;3$%ey zF)BeLEkEC65kKj)O`ET{LLG#8b~X{YRdnujUS2jj6S8vCm707ua9{aTmHs97Vb#I# zp7g$-9G8stjO`Fy3un`-ezO`4#VQw8+<B5&q}%Fj0DD8C)IiB2+(VM)nLAKVf*Oa6 zt0wgON;@Jsc9D6T6QG8sR_{D`*7<Z6;szCnd-cMkCU&3oTUFnYc8ez@bF?g*c(-<4 z9v>gWT~}(*=P647E1u$JyTEGPx%r`WIPCt95X{mJkIx&b8=nzCG-bc8+-?YXZ=N#w zWXK-uSN&iX4dDzXUJdD1+LqmiTJM^k#HNSL*-3rxnNP186<>!P9IeeuZldMh&!UIT z>W63&wMbN4jhW%YW<^nK=BYrIW>ynFgqX@l(6w?%=jCK_6<GvPC4FHb7-nfJap)8R zFf~Z&<_eT8jAJyqFN7b?V7qBI#@_$h2sv(^_|+iLKn=3u-?Eer&yTlcHzg!E)*`wE z@1w^Zh30vZ!V1R!aS1P@e(}t5CUQ{)z{a;C7TtOG77L_s;Jkx(juRZ~$gws-;1eq^ z>nN09<XrG%$mvt#A>0<!ud`}qE7(*F1OwxH*=q6>83g4!xDuBBn4J??=_Afjeg5uq zopD+ML2B=*v)G|}t)n8OfTIk9@W};Ci}r1CaE1eWFnJ;&2q5VU8xF)to|3t8<29vf zVn@eN1P`T0ekaq)1TnSrf<&9gilK(V%^f!{w4tU=PLJUw*xwEXvGUxdE4Zec;uasp zXJ1n_rtlgv<CF_objWxv2zPomYLcDdA=oEM)ao-rIk$`+uz<IJaS{vl8zQDb`4>J! zF?)rh#%P!J0ouG$8PSSW@(ZSBurX0<m@75v^cYgpUYOLIbeb}1ZZE&-ZrjyK+jHQl z05hI}KF=QEKFyh9<X8B`DkVRT6PC_qpda;0o{j1vt9cBbv*hbG)KtD5Dv`~+38P2A zTsq6LlmAOmGJn;LF_)ASectmR{H+Q+)wz7t_Hqhu)e-CE$ZUI7k6lT^^8f!LXF))R zl%EbDh`Yk98a80T5XMTTLb+c={N$MHg@xjW^nJtx-Ot0+(edQRfYdaJ2kMk`_RoQ4 zVVjkie(((`lTv^5=2fme(+<HSk;uD)&6hX_9Y!3mLK<aN()QWs%!mOJPxEpbr~vSi zHTh#B3B%xv{@<9rlOrQ<oNTD~WYrlrI#tPULk?vGaAAKSJM;svuzK9q>>fRPcye!} zPza6Dz#&yN<77dIdsv~0>G!W5_w@&-#A}69iM5T5cL#1^!nFF#R9lEvlP<@*IP4q| z#8glrXT-$4Dr#+z4?u!`Bsli(vxB(XGQ0k{y17NnX7&ZJs3$<8wXmQ(ip&$G|7?LM zc1|?wq)SxhG|H0S?<N$DWk3N5LKV=SB(tY>=z;rHSxyp98S-CIiZNZ{J;Hw~bY$?J z&OdoSF%ypb-(hF?ei!#T1irF$&mFc-9p!w^ssF@+L;#E{m5*m^;5(`xzbma|6-v$K z-65sUFn$Om+R8r!5EeF#XO+QE7<#-J6!|Adh=zp3vs#n>S9=5O3Ho1E3(S8+5n}L6 z_){zJU0I%%Xt4v|8Q4~VvX2uWa?j^58t+pI%>0nwTUR>!<2gbIm)!tsf&xSGhvi_1 zF~CXwtMV}pHu*0n0rNj4<A0?-z*^P+rYnlSj%QuFW0hoB-SyP&)mpu15V<?w#e&HN z7I34WsRbkC#4$Xs)ys86kMu_GmGJ*}aj+qyt+i*%yMcr&Mt`_fiG3LUE$g4svJxTZ z+{+&o?+UCR{a0B7E91ZG3hgw5$X-GDzY)-;^RMV8O@WX%C^WYJl?sX03Tjk6Lp>eF zN%7t!|4(xvKL<Bu$@!-Y{7bGRDpw`gmL1N`>;HGlz)0V7PH_II9RKeg?tejp;EutE zZ1uDW0lUjUWF!>Dt3{1M{x!1E0-Mpena>-z&;{vFzfxPtZn|v#|1`3J=L0{-1Oo>A zd9HFg0Q?2&swyQ4Qaw!oY)t!qU2RB%ARtKnpaah3z(z=y?*BT|3@*E@Ybi$DiM(t( z&NngwYIe>E5!vzNzyZREz$WYh@n|$il~i^z+aGnqs#-+e^l<}uFeBotcO!w6ChRPE zICN$zZeA(oapX4A(HKpMA>wEdB47YKVRX6TIp3%AqpGK^s^*tz9^k*2p77rSA(3r# z*n1S)YS(Vdnf(2Jd+0e`_xVXh)Iwj;FGVmiW{8jdVoR=hXxlWOla=+mjbp=uu8vS5 z>2kKlrFdFo+I8)$COPeZ+qidVt<HQTRK(HUoul5Ty;62)+Fa}XcMU)(8(B}Js-HPE z-)+e4w5`3ohO>0$Q{25GfoBw5eW;L4DzBL>agrx6IjxZkt{m*QRlDT;fU&OiXFDJ# zcEeRojg6xP^#zlzS$`#-_Lr}fwqkYN31}+j3#Yq8YBODaEIj+GN*Y#pwRSZYyctE& z0PNC&<mci_^Eq<SbkovA(&flEqBBRSlN#zsKhLN4ZVP*Y2R8z`-f%!AL~0L~m*PcR z4Lzexyq;7cIqzBHb^kc75D~XSEGZr4N;P*HvuMp3!KB7)+tG0iMt8P8G0DJu@vO*i zhomw-H!Ts1Em>lSJ4toin3A|aE0U%y(jVt$+)~J1c`+)-5#Yqd<JGO|$OB~8iy$e3 zr)=TDDFhZ8C*0F<tTUs`9)~O}9p97F;?#VMULwek8=HCW^iJKRk`176@|=Hze=W_x z=U;b(n*lgdp;W^OeJG#D#*v=&bX|(*uC~Qt+I-rRe4Kyu54KHUQb#X(PShOOXHJmp zh)909d<LB2(`1kT0-31t%5-6@a;nC|aj+KfM)?i#{)b-B+>4bW_=Pb|Q(T3+6m7Lo z;~7@pjxv&UM^=}=ojbW#8jK8fGZmsT@E)IdJ|#b(Bb*&{4j$1JjSLx7;jvYqp|i70 z!&aO`Su6IO{QxR>D(b;^*6-#hF|HGo%*^g!c=V1RK%P2(?#`&+-g;yhvk#KOn_LJ} z4PoHrbvOU6ar=2RCi7DZROS{-a_ErUkXI>vXn<CvW%E!68?jQOqWYYY$t?@YO+?!% zs2vR^(u+}AcJD|e6*QwA3?!FL%{8Tpr%Y8U4Ociqgu9j&;&(D-MLDElZg0|$?L<xm zCvtMZMFu_a-(`7qChDNYCaDIz8c2+U$;EQUOKYp0_1#^n_S%?yFk-1TLrDksA!Bvn zT`?`3zYl^FaI+kH_iVi@+RNcEe%hiI(_@M!H<y~l*ctfTy~I6c9TkyN!OYS_pU#Tn z7Z+Y6nhW1h$MaI;lTZg6X|9`pXGVlDqI4>9!!4GZIZ~cXEUkq4?sGyP8vw~Yt0P$U zAc@0gu+-NMSIgQT<PzjSh!<vD5W|KlIeNkgoykoh(8H>yK%)&Ru;?NkQt!J&=-1Po zJ%0?5*C9G)AO8EOocwv*GkjV2sl$7#evWZ0osU%UJM;meX`?B|yi&6%f?fk>IJ90A z7pDf8%!l<wIBsJuCtAp{*i-!Lct*@+lhsRxQst4O1;rQ`)D3U`eb`RRk33bw1)nUX z^uL+89ZWlhYa*i@G*UCd17o_Qer0K~jU-Eo5z5s_w;V0e)Cz3>Z-;au!fJh8a}j5} z4CH(T3BE8Og~N$34o9b3dcXZ~$j!;Y(t|$~Y1iF&4DBwE9kYy(#c>qgaR1#(2!Oid zss=xBu(!|Yezo6ug1urb89vISR4XC5|2CN)sIH@nZg9$bNcBL1-XJ@yJnW~SyMzM> zMd2=_|FO!f3+{2RVlQR|`#n-m9}$L{M!+Q^h?Xk$e0%l&*`$FJ6DsVLj&WVU31(}a zorz5#)O}f|0V?AN(9W#3Tdu)Wm8m$hJ1Y)5Phh~mThmXP+FK+@hybNoosUer(d5im zFFkXJoVeHoX8DyzrdAa$ds1JInFfUsvmbm$xaGG52`kS6DTnsQnF1TOADDbwX{wSt zp3Xmev2QtpQicVGT6l-6<&v*RnKRG&FyP%0OFuebQ%pN@DNc4RXH98}Dm9hI*1>Sc z8ow?=wFQ^dcS&ToQ$5-5!~*?OaFY(Mtm_WryKptTZ=sx#{=4ya<rswxr%vzlDOpYQ zA2@O6-|#bs!?$~6p$_%|-xQK44VUsjTIj39!mudSk5Xy53UmV|mlEg&wk2Uo%&nQo zaG8#+b}>6t-BS1nEKIe{Z1@kWJ5-2#WWjW-Q=_wnQf6|Nu}<lR2tX85i{9-<(rOIu zp;QzX2b5{rOTWR4Nz*MxKQYRRXH_yrGtH~MAopZ?|8=WpHk=~SrQ`EFJ6TDBkVM0g zDFA?;X9&G`5hcya;V#f`dv@x^;Q}B++;rojbg>e4Woxb`0t6C&l|%&zeJ{{$%k#Z5 zUAAx%(*p|`#jMbA4Ng<k_ix(TuG9k2MJQl^4w`oEq*i76c$Z6OR+W`T(NE25yys)D z+L%S;c+gmKZGfS5k>R=Y0ohrEv*r*d(IT6pW_#2;5oaO2#>d7Ji;<mD>J#}1?bo3e zRiQSeuXfN;kQX}IcW;!$+NiDuPg5&_kC^*A83gVy=g?NM;YWe)HNx$A9N3vEUoxqa z*^$q;`|<U*hbdbJvTBYhk=4*<qLXGczLf3BPl1;9G$<nmjK}UBDR66?`*R<RAO0mX zQ|0<lm`~YOsiy=X<^&ks-hZ1aDzHtU(TS^TZO~IANgCYsRH*kXi0vzM^6F#vgtvIZ zegLd0N=l)!W@4AZq7wySLMm!Kgcp)Od_L%iknEz247;~~EoTG3)<S1Tz*XrM1x55} zY$hp^AYNHYjKhnSkiVhEX`7$qcL0iQ#RF8Mm;25|A%*t(mVQ)Jb2aXU7nw4E<|>U! ztky>>t5VQsu$SdT88>f<>$L4<bmJyJ{t;J+mQC_bBOcRpXhkERj3ekwS^CE4igzsL z){-^xjhZyA=S7l(j?7+ZeB2iI+xOEAZhwY5|Cez8+v#uDcNTC<FPR)PgmJGX4)5GX zR&nwFw;gtK6N4V)dR_`45K3S62$7`au4MCcDo4v#hL0_<e`dR8nwWF3^?JB52Nflu z&?-p`03k_}QgB?OypkWgHOV+`KsI-&@1bIa@!^e-+E&I@{>(U0LtiBoYomgzX(=by zu90rY;<lQLE<HP7F^0R)^p9gB7=APxm5Wu)CfGdWqD7-Z0bCSh|1C)lM4>e+z6eqt zp`D#XIw8abc*S3Z$=FLgTSf3`ut66@bQC#1kV4&AL#_fBwb9XrfOUV^MpoW$r#>?2 z=7g!eZtGcQ-AoMFyt&h-O${RKR_wVx6?oq>T`ru0@;8g+o|+<^bzwh1ViK8$sUx94 z^1-vxAwsYtQg}e59oW0*C}G945Wtkm9V;H1s?r*;4X*CFYEhM@e)<Q)0Gvjxn9BSP zDNT#Pju4>N$rO-WONPEPE>sFTu;Up{xQ{^?&b9Cui6?-j(anT2ql@Don@(WKk&Z&% zZ_vU@#W|IAe$FQxnexRr$m}3(R&wI2mjC9hW$l(<oUbmLW(s9>t|=lV=WQi#5kH#5 z0CZ=n7r{p#iLxT-x5uY7Z%zv#TbE-%eD`pu{b5fdJS-n054zq-NB)!rMiSt(*X~V0 zC4f$mt*z}$Yk8MWx&U~yHBeyeU>u^%K3I_7r3998PM<9?Xg)i$5gBh2(8WXJGMFEb z7q9Oa3y*irCS^l!H=BFMSI3bv|Dy{>ZLnn~|NXlCZ&SJ>Eb<0c%Mf2ps@Vkj`s-ax z7og_zzKD^~%i<*qQQ*Yzf5V!8HH;sX?_At=-&qx}dDtbW#K$13INuo9YhyF!SUWn3 zJ0m+~Q0IfzVdEGbA)6hoa(pmqtSkITL^!}~Q#ec6?|=8Ou^7nE8D+D^;J~qbi^mrY zouD_~jxo<AZIQSp2z9h7WA8q+pCok3vxz-7Jqo(~)bMw)aOtZ%Uo=32Z^}Srn5|mO zw;-f$JdrNQlT_8-vgZ|=bEv6=6Xmc!JT#)mr8b3L3<b3MxSP8=A;p20yPMQUb$p1N ztT&C-MRmoD_;dxMqid4Gya~67;2;NijN#SB{>|BS#0BwDO+{DPD}It7i>GU9J^ePI zc5Kky?176tcmZ4gm_m5jPmR;hj&lo0{GoHIGF&6!FMHa(xY$3Lhfw9>Hj$WyWz+7& z;kEi(9$B-$*AK$ECB9g;T}NBK9Y7uQNbnf3*kgr7b6}7i@%wGIry!SkLm$fN_i|~? z(03WmEK#F*Sn5!OtdgJCBxLMKQBhH8X?cs1J4m$|yZW;;b$KN@3v)%w7QZDVr@e&} zuvL>?VL8)8tUN@jTkdOo(y}{-$StHzUSepE$J1(di7kEg{1+4^wj{{tV)B+&SpNjA zrRxd&*i#*kpE`jtLs6AoBDCQ@v0PJp<b^X&JHeYob9GrpNc5|6LGhL{$xc5!F(VKD zXF^&FA#$MeR`Y$o#$(2uZADJN{J{2&Tm!E5NhTbH^`Q~a#YG~8Q2mI4@MSca9i>>L zAwIaj>qH8In77J%A#1Rtp)BxPO#ceWmllzJGU_LPqkB!Da$nE)_*nL;sO$EIYygwD zHmd%!PDJBCX3`-#Gs28#4U2#ZXQmK3+?3Tlh9B-;0d`l(3#ty^xaIQ=H;9?;PIgcD zvr%BWQHRy6$T|-%K^wa@`~L^YKsLXMh93d^4#Te4_C4NGN6E?Lq~<cxHIqjLRFa@A zPxELfQ0W-uVf)Ap`Z&nUse)+;el2NCQO*F?Ew<BYv`E}&F74FfL)tt*BCZQ5rkH*y z7=&C+&^78U1{Dgb(7FWJllMMJxlGJyd{j1&BkrZYQ~<SbfSyCfP*1b{R@m;Xu5Dd) zDxd`WZVlpZ_|d@gDppY4zjP1y&$Mue15yA&1xOtkM!pXnE{x2;#6@S|3Te<_hz2b` z{X<_+FL6iFSC*TC*^G{8C@_hG$i*0V)oOEdYts)qK+l$4jVlf8{i3nvhZ2*3Xk?im zDw-ri*I}s7=jmtY^T4;L5=hn%8<n7JzDR&t+Efi<)#N`k&Y;?po@4PsGtadFrGqNO zFo?TNdW!}jRuJ?9eRyCaSCUAhS;uHhDsF?=0u6pxiO8UnMiz0SnbkwG#nJ#Y(X=`= zfYpal8o)6nMsv7}a4$QfAQ5pg0#xcNXIOxY^ppuOr+TVe_;!{O-OdjbJv;LF@Ul$z z7eCz8Xp#qAPd+p#_+3C&Wq4VT_~b4g;}{VnH1epx)uh|NU4dT_(s}cP&3DQ3K_Biq z>Uf;1hH!!ezfl8>gQ_U$<Sw(u1yl+#rjp5_H@w-nZd4Ze7)d^Pke6i2{h~%HS1)NO zH<wyOQk0tG*(fMP)lcd!B~Z>#KAL}=L!~mh<YMv@70I$B`wAgIDPvt4fvT(IVKX`} zl~p1-8PHs3TA3J$d4!cddMtkPQ=aUG)7U7%NCG1Xj3khgfb;Gr4iw(w^y&ljq<IX! ztb)p}*`;P}jLe&OCpv+)j8_QD0_1|C0DwmCM#8iNY6#Xv&LF^)icbvMAk=(#Z;}Hr z!VdIOV}=43&o4{-a|kEf5iHC=0|4S-#g)>F2q2PqT?ktyw3YXDk|rdx?XU+l$~e<^ zp_U|WC8_R)09^IP*S~W9M1kcxk|_&WTruonrX(SX<fSi@hH|GR@>DN$1<VI=)Uzu- zqfFp+hvbN#s5#(W(Ayu=zw3Hcw?-^e4OUrKt0cq~61f=#(5b0{m1(GOq}NmfSq#)= zM5=Z|7%VwfKkQy#Tj>X=DgiVgFVC%D838r@?p^zv^=Tqug9IHwb5FPmw*Z|(7l_+w zT(AYYsF#`Xi<Jz?P;jlBB<GZnVFil{jc0_!ix~i1Osmnx)*6($fX#&SavRx6^M=iu zsr(JyWQkCc&d&Xmj)6q7a>dNHM8?#nM9zsaSUOLjt=`wx)s~@69U=K+fC(Fc$Owvy z%;t$|A3$&_5(-J0{nTNclY0?epA4eH1E-iR>}rl5OIgVkftRX+kySGGbU&q!j$krs z8Xr;<BinQ(q9JciF{d+U35cBX@R1R#40wDLG9z)(l1x=VI!1Mn?xy4+NER(hJh=gr z>r>;`ybhHCXt|I%>x6lqg>l1f(W%mrF#N{csN->x7gugHn$~sMI;1a2EpQ|#<rJ05 zD%VZ<UQ3uEJKSqlwE%iY=(ha5GP*jFz(@jbRRY7%E#?mLW(rKw^d@%i+Q(bl_y&y} z16=YEMdw7q#T8&&W?hmxS2TE}@`Sw+ej@D>E0dsrVhs$bWPpijN}!!M<)1;I4$V%r zMzg)$_QM`f4WJarwXAvK#Kh60LvA)5cA72cpE2J8a6;=yZlzdv2@Q}^#>s@Cj~p^E z=3T)YP=>NvgVT|Em2|^OE2z~%GCO0U=Y&L>WC%hUT+lnvHYh}`7+BVUZznR*f+q!5 z+44ey^x@FaHR?@}aS10Au|duEJXKKhlSxZp7L}%F6A=i{vy26jBWbBjz~Y`sAOP#Y z-6{&hb#e+}hwaYBCLD4(q-$p?YUtGncr@!%OAEJ9<$-LmN{M_@^06Tr7B>B0fQCSo z%f^Kab4gn1!MMtFF+rG`)qd<VKw3$ig`NTnC91mBTCKj--st;%vi>Gs_YmFB5S`G@ zb8zXe*-2O7KSN%s0x}MVJ!Y(;C8mMMIAOPnb}luvk`_~=*%t?;r2j#42{*SM+;miH z@NP?l4PwHO4p#wdNDMtio<{i4Ydn#nDm1kmB6YvqE1f|)&}3zp8}o9zAV@jPW(sVT zthn;L9#ck^8rG)XqoiWGN^+yl(3GKSn%0_XCAyqofy8&RCRh}}vfP9)iOZyKPwGZK zHmF=xxai~4BW*%by`<sl232hX%O<y^T2J#9EiK(g!-_MD{%b_HrPb5uR`*)&B-i9p zF|ydpVRtUQuEPl3n%yxvA4y;&fp<^><>(eu2}8pe8*WPr2kX_zFu>-%uT*r*Ng!xT zNSE*}^mhbkX!@c_2?p=*ITTsg^`@Oxm{7z~KZgBTrDt1U3v?p_d8FQx8IQ?_JiG9B z&uIYpZEmfy1vjR%)S-c%NJ%{?yJ%$xY|Uv0)&&Tl+S#xJ16P7};LE2d$;W&J%N4R( zV}ziP16>j#MaH?kQbW@0PuvDlhbEhtfFg`*JnXOowt|uXzACGjfe7LCl1=z!8=TDb zDjxRby*dOcSVEyC4Gw5>$C0RSlbJlBNXQJWH9M?+m#QdZbA6*ymJ^M_aS<{As_pH5 z8{r#3vc={vvwW!n)hZ=eo<Cf*$AFD|zehbzbqxmyGywWFK2YV7K|c=$@DgZ5VD*9% zx`MxQ!g!rI30NkP16}z_gCLO><7IL)2S^8%v9qzU=6H~GzmoXt&Gq)MS+fXPhR?4G z7g9}<VW5$U_GZ6BL76JaPA(sYy%q1CCjeCSA3a|L5EJSI`JjTz*7ew(NCL^g&CnGy zYbfwh@sbh!qHOb*h9f28y%dZna;Tg-Un@R0Idm%t1k`4l&!&e0ZDpOw70Wz~Iz3JV z85gyKW*QUaWXsak)F73zWVb3jw5fvZ8pPNOplW9x=b<`RvksXtQ?i4fe??@6#NS-q zt=X<bFp5JW^cz`?mp)l$8;6}2<(4f`jiTaslb2QY80l_H<utlDlE6p;Z&?D)gFkXm zPhf&*1PeiD1nfG|oSC0pChSTmmXvb<s>DoC(3Y>W*G_^p5#TQzRKiP?4_8eL;2fcH z5s{QwY4{38EoOAm#W74&CeX}!qYX+-@c?<vMg#F3@WI?j+pY}GwAx9aEt3`sQ?HVM zW3xFfjQN@3MsH?OkEOF^nc6Qq;}YqZq(NGvWM2|hr%+-t)rt99!YrVv1Nu${S47!G zbdC_77Y0ZTg(vvBaKZq3D`>o|C?jWQygf}a<e8?@Y}P@jP&G*?gGt3`HfQ5C(T$Nh zmgn-!tf084JoQU^jh)H_;EDo`lwvplwEgRASFoa})*L_~hV~$fMu?C#JvKWxv)6}* zU(ic}K6)H>gwWu^9T;$}=y3_;!t#&(@&fqE2WhzXX&ECY^1)9D8WBAx5hQ34MB{{& zxulh|oApL-(ChZwAT_dJOO7nUNE76)>#xOSjNBs$WH9NkR5>1IN>av8H+;?#Mz+GW znfz%es}dC<fyWS_E#ij2mX5bUNJipl&(w74O$>P!bj8#V&sK{YL(~ztY$NspJ>81W zBlS@$7()W3D2E;a1NVy>S63h@Glh3jF}?Vdd(Bpq2|O>+bimUv7VJfDh-5=USxqH; zW~FsbpI-yr^2HnI6wQ9;l8VdV?_qRn4)V<KPP!@gE;L_*x?{{|YS{BN(%s(h%`i$Z zlE6p;-yI1!@BWbkW=U$=BSZ(ajJLF~A4X+>D&!#yyU?PnHJ~ljw|GMW#gO$C>|RKz zNf?GSR{^ZLpuvTTSA6Hv)-0f0KsghWK^Z2<{w?8Lf{~;R!tF2zYcyb5#0&=_(dM+a zGItIGH=)&Y0f&4r0Pue(ZlOf(RRAlq?u5*jxFDO{L6pUWUnp}VPum<yfhx=Y*a5%N zr;_rS;-(5pBDX@3Q}gPm3U3MnFG7)w8~}Eq(*?<xBG3{Kne@cK{a8H&RajNoO^rWT z!AbdXdlL$B4&YKrw9&05X*HXr6x^&zgz$!3Arm(QhpXD1-sbAYb%>ggGIKbvX&zO^ z8sm!#2b{P@di=1D0l<1%($~^rhLpH`g(xaSJ|OMBC~=dIrrYWhS=S_FVSyc@dqV?> ziNI!9P#M>7TwlM+%#9(w2+Ecydj8(|5h~8sxe-NTGByWtKy!!81=?zUg2ooqiS&cQ zN%)FEOx1wNJ#iAqF9L@h#xjr}2@`X(y%zrHYKZm}X-F@dFadJ4!nh#APhL<aycAwU z7|S6O*y%#^`EWg1VVhZGYEkQckm||fY3ge=x|K()&_{Xfm<42nYuT)fm#l0n$+TO& zCXp?QwAQS2FHr>M-WcW^z$`I`(&T9_jw>U#ztOr|Ef@V(5$%9pv}l7`O_I*5zcae< z%r=)PmJz!B?o8XGQbrOON#KSOC`Y%fE~(B=?w%f-2?p@|#fn=(wLboEU{*mhY#aqh zMvlTla$OE>6G9S1Pyn`Ed%T8-WbkD~5vRbP!w>Ks)~m!_Lb9wwQ~+05-LR26IWZ!& zRioYtBC7}AxA2(7!CD336{pE!BVkQGUY~m3u^+zo@S{f$JTN!Cbn)sbxEBMQ%OHm2 zP7P{vS;0D6lw9I`fWzLCE|*Qzr2(X7WV}MNKlueBA_VFWj0^7vXo)*Nw|M9L!wZuK zmuB~Mw|hazoBK2yd$b-99WLux$#|SKc1?Fu=8R<eA&LTHFI7R7g+d8D$;-J^L+sA! z;Mt!Ui&@?(r%i6RpndIKTffrlw_(W#C`7$LZrZ?Hb{FRM&rB}Ca0~|b2xLX1Tl&Zf zhsOX#8Gz}RFguk?4ZY8aOIoDT7HJpLb{T+BWywk}LFa;QiJJ^e>(#+9@jJavQKy(i zKlve`XK@qF=n52Jig~|z3-9cwI$g5~rH>X7FVaE9T_8;saKL?|YfgR0eFSYNxVB(p zlT!{d%S>@?rXLN&VJK6<4PcW;>GAB6k5?URNtV!U2}_gqHM3eUQJT&tBVl-UpvY;2 zaCs|5nRG!u^6Vta*}TeD=d3GiW?L-R6h5aE;;crN$~ywDfN-5F!%HO+Cc8=yn9Fq> zq1%!{np>ph1YY=>=3xFb?5+{IEqyJFE{-HHlE8Og0>jWPys$Qw7WTyfQQV-0#pWhZ z5`3GIN`^r#ul>b}D1xdD&<7jT(6lyc6HD_4j@)wJT}R&i;4M$wx&M7f_C2tF_w5T) zdt2^=6}V9sScrV((u}X?ebQZGvI2D>0OJz;1o+!+G+OIh*J2x{MOA@%S$%`rW-Uq$ zIgQ)%AOGMl-M#;jg9~?!wWhxQ>=zN^9#%ZbWSjvRnTb3>2|Q;isz$=4q$v|*T#92# zFo8XxkyctPTm*e`SceccdBA5-uGRMLIq=xtpIe?ky1a1U+=cTSTh}Wdl;N}m4>c#4 zkmOK}ZPAcB=%)Q%XRJCa_0$LN$%=j`fls3HHQ-P3YpTOaF>S#uY@!V%T(#a_Ti?8% z&=-jG3X?bJo9ngO{@q8QNQU0F@3$dtVqOchWfutvq9yML8ATo0(sBQiR#HPv9x&|v zOCb_%tdzI{;H3@O*b$Pdz=$oLm>R!w{jvnhC>{kcly++=5;f$R&&*7(2Z^B4^edmq z&U<NnQfO<$Ue5F*BQAYK9Bn~O4l^=PpRtAnfq*5J`ZVCROQJ1HC_4Iaz{mlg0n1Jr zu36qNjYCA*pp_KWSrU+48WSVT^hR4U?UH(u#um>cvxMa?5j(Hu6gxur_l8)+F+=KN zFHs7n`KwISXiZl>reJB4L1|$#8#RilLfTxV`zMPz9(B?(UO1=K(c>gHV9c*(eTpc} zTv+NF8n=IM=x&9mZ4SuNRfo~Qv^R>fD#~GmZcASaql+U6j3n^gmw@#@{^nyeQSltX zak6;w?ne9e9<0~KNRI?`Iq34XGB%{UK@9Dq75EmcUwnT9QKSZe9Z(p6UNf$}_m0PI zUw-7y0}nF1gMzMR5eFBC=TK~W@67t?U;XrdX9W{lnFIjn!gR>>kh)oot9A`GVXj>z z&jePu-P^pndNH=^-QJe#!O<#3kAO)zq3U>G$30m6Gm!yk3@!*rFGYSqt={bT!aw|h zUtM0fCAR!GFTVJHeEOea{`bgRSwy4&utPEZ*)|vwWPwiJULyxsp5{o}mIn$WkGr51 zM1wwbn9M}|XFvYyv}X)Ni$DelQybN)anH8fzFpl81}j%yeDm_lr!GDlHrIRpm;-MO z18n?T_aFJddk_C4%J3`BXP*DnQ>!Pi`3ztXVkQn4&T-raV$)LST!dhaYVPFnu4N~z zf>uG!J;C)QLNgkG7#hI-HR>wxKG@q6II|&QzESg0eOds(?7q_nl=nzq&IbanAzPea z^BZMBA<FhZNL>xA_W4UEdqD>VZG%4GH36r{>0424->zF1XO@5%di`y`GJrRX!GNLx zu&-OV0V6gi_zCy|6EmWx5EFwW%tZqCpotmN`*d1mf2%ks`WyP66qo$hsYAZtOTamr z3$4Ect2=vhedE-X7m%Ra?|U`GP9w>oe_U`m44rgQHJh8cZ|3RBLN2<)%p_f04MDe3 z1nUpAFJ#8E3DK5ZMF_g3B^<hI0QV5+FG<g(^9g*S8GFGT3y_ehsdG(HCdGOHTOG_H za?eMUZlWttgk-_kIY?(-$*lo2epS`La+Amp@a&;@&v{sH=;lrFN<PvYQ-Jx{S{mz` zaV`oA2Z8ds+A@k%aXC*E9NAcYRaKP)Ni>sGfD(TJE~u0A=~|JltNe4KqbM}SVSwfo zo$HIbgHnMfwdGJ~vd}3HipIZ|BmPVUj75~$*XGy|QDoO1`ON{NnL~q(nW8W~j%5be zka)|(p2Tz^o^)qMzN0TA35+B#lEB-QfYL&-QU^eb{$f&`oS3Or!4_54A^d(M97FRl zt0pn!^?`Kx3h5`KwdLmRKl71)@x=Rn@#ulO12_X9$E8Hpv|<lPj%E&ElCZKkwOk9P zEN>7y{V49(2m=PQD_G+9x=qiD0=NsP0dj@D8~e4IGc{J*)pQn6B`Bz1qmOD}BF8K) zuT;0P6!j<L!B`yPMwiH_D2q@NVmBaYDQlQ2@EuBF6G)+2=~*tQzjO{|DbQa704oeV z1T`QlY_uO{UR4x=I>XIDPO9>b#@|Mz8uq$`tp;`1pQr|{vC8DpJ@0z_!Jqu0$9~Zp zEZZT_M!Vt$)rO0ZwmKi3g9to{Bn94N1Uv%@E3jhSt6JgO#_C1j*DwMlU=V~|+oLU7 zC-7V{Q^SIREWhC0Aabi#y$Xq078tbTO&Fg+7*xH6O_C>bKYV~anW9O!Rt3}u{ej<y zK6`cb8lzQcX932+On|WaelMPC&cHnxAy=YZlgbA_F+qiJ6gxm56Ebd*vb$1^Qc_aE zlQq<kUp3)R0=$v)I8q0zLyFS}enWRpOifOV&%p5*qIaQgD2}-w1mNTl@d`|l!@O?F zeAr{6Gs$<5Zjw>Z&d(aPmmy0En+&j}>ErTD5gQ@nY>T|nvV+?c;+YNHq5kqDVzq!Y z)Mbo2b#b~r#Vck#rFTS_MoRK+C)LosDc$zgUppL-q%;~v`Ni@Q(*8A~Pg7FT`;+Gl z+FTJL2fcjA#h!c;N(DU_W<WBt7!$_5^#;B(cjN|u`SoTB&`mHO$(y<H?WK9E)q8uT zjP4pqU?hQ&1a4je6i}Te1>P^FiM9fm<;+aZ)tm;I@B;_3-59|s*44?2jJ!cbeXB-+ zTL&Hg@Z{aU@MFJxZ101$c-*P9ppolTIv2NJfAQQ`U%&kI6X(Br=Gx1?y-{(1hP`mm z8u&fJZ4?HA4)*F92ZLT%=?0bU*y>aq&}};vtKV#RGc!}beGvjikiiza_U8lhmmjWL zPTTQ%vAu1({n$pWI#5%xy*c4JW&n^DmXIVI%c{*;_?xN&lM{>B4<Uj|+^Ixecwa&y zc<F-v3(6jleTT^rHt0}vR_g7r+Vj2spwgjm!JVo*m|1Mz`@`@5A11tch;jgv|DGQ^ z6fRh2W#T0wE>k^W_XfvTFq%h*;wbVr(b#^kO}qtc{Su%hIfE}?MdU9Eq9RhPgY|=p z7W5HQ&az?Q1$2XmNraS<keILo+M$&X$RpxSjNA~j?4ZZBou1!b-&zG4W)(R0#e2Za zuzPFRV^b6JHKzrQFN0Zh00p`t#Vu^h$f^t{2*FEuSNpPMq?wxe3sllb%M_;kBv{#m zvoso#J#Ml~B(MwHKzG;dqUY8rd+ID@P)PpT_{c#MeZ>U3H+&>afUEmRP@Q?m5Gt0a zP&F&B%?c=1K~hOdCZWtY0F{dEoH(izqJl<{CPvrSb<t+SMaW|Dg%gZV(c=~mX;C8o z)b=ZRG{kz0RJJ&@Dwmd4xQ%QGL3O}Ofi?}w4gJ)!sn&s}RLw_VSa)O;s5k7hYy#ah z+S1?{79uoS?dbSn*sbAn;uPUo;qZs@;oyDAr>y9kM7^a@?>onTxxtXU162=~ipqQd zOK*RR0^TY4cizBvuri~pMiLlFU?c%V;ypm7{2Y*;w1X9Aa%^gPY>~{w$b5|82c}EF zU(9SwwZv{ZIJVek4{%4&jd#x+{O`a2pDv8=3w_`#yBlu3c>2qq{mb9@!!Q5aXI}q{ z7fycVo3DQ9=@Vah_S=7XW$Rqn92`IQRiF|gQpO-8)UjbstW&aFgHt3R7_w7`uT%0N zKt4LLTU`sH?)G*YyQBC5R7C-G*#HY}WEr*spwgUcyEQNzeA>$QTg}#kM?N&sn!yye z)mi=Oi9f`g?plEC(0vk+2Y3PyBW56wb>yKGA|$X!vx+^iEVwm*YqKi$`w3Gso_XZx z53{p@=*q^GKl#S*JbUWPub+SM#gk8+Uwy4U-WngDhNCbL4kpH%TkWk2*I)G-4YxAB zFmva=X@o)`j}ot5{@PmiD&tMIr9w4gpEuaycK{k$)TSARH8|)+E3oxnt2LozcI`Td z&&m~;1zS6x?T7$FNL|gbD#+y;#|k6cA9Nhp7FdJ8rcG<y2-7H2F7}DQI_{N?3*G)U z03{6e(LjJC2m;H8`SAl&<8#EO4MVqD>HA$D>i~cvLbPI7CeDuqp~Aq76lUzem@+4* z#QIb5Ibgy91>Fo|GvjCBmy%VX1PUNovolUO(7;&S*jV*ys3&1EJBHSiye8+KVVT7> zuFVxaYz{7><l?I#lU3no)h=VBoIn*dUfBXN#$qhal3_9{p<9j5*_f<^ML@z7ih5xm zH?0Ld4h-W6g3_W9KVi+2!$8vf9fTm^BQ$G>Y_}39ZvthF8gpXMVmCTHT?yps&$3X5 zBq~B%CK4zmteoWdyOale7nF=ROZAnbF>~+-k_`kx4~*&oR_d~wmQ2hxv2vw@C087` zSz>~jAWxjo*jkH7x?W|Q+H|ITV(C6pD#aczTv5VNk+#Lyjs>C*vyb%ca+3SXDKigj zvCEX4%PjUd!_0^nUW!UKVkYFCpwZWn1V$2grzAk`-IY^)ycL7E>NI92=YcNBu`Ll= z8QlU05)>qDlTa;brgofew?9^$`QUp#x@-C%NT_f`zZqWp)RVvV?>_f0U%&QD(CGOM zzvp&4&W7JuUkOis`NZ%2)*t?AJ3I|fsiYYt$6)<_+#3K$!*;D^Lnp}7GxU!!>}*gP zw2447^HU4W+Bnz(vTaK5V4eo3f}lkZ=fU&9(F6zB@3<}zQYm-@!Bb*`(rXt4R@@cA zWDRyyK(x?w`7!7NP7G5xw^AkjBxt9wX`?U#UQlrdAyHJNtem*p!N%#Uubf#s{_5pt z&TpMKe&)&F{lc$5^V%1zO5dsUt-gKV?eBM@scv_>JJ{S|0~d2HIXeRz7Bo{A%Z09Q zZP<+tZ21DW*NxZv_O?&`0JpPEqUu@$D3}vJPyw(l%)KZ+GU`6)R;y@c9}4lB2Nnk< zqs>=nV%d!ok*a|g9ryvJ6X4+X_V(u1H8@xWn(6n+EQu|f(6`>~#Jm@?ZkzRd?Dvh) zsuI3d(5k)Z4D_KG%u2_f;-rN9Cz@JHkZO5Jx6bNyDUQ^)i0(^j+(h^w0?$s*H)<{N znG8lVPp*0}=pm8osnQAlEj>8`*D?TQ$o(2sYtWEDTLmLjRuo!+LpsCL9(k=J=4FC} zG_uK$H{HNtmFH(cwBS?`bSd|$BEL#6n0=vPsGOL;OM8_bl$`m|M}^~HQ%b>$=r9Sq z{Ei&T?}(9?Tqy<O=0(-TY#xxgn-^9xdO3~IA<RP<_Bn4N2{?R5S~X-LF>G~l!!nCt zS7T^BP(>i3waq-0JLW#DN^iTWH*Cu&!AJrl35+E0S1JK=pqUf^%|^9Zp8$@;v;fGI zc>YPZFUhYyt1$(mIF;Jr<-6`X@CbnutFk`W{DUX|?blxYBWJ?v06Y>q*NyuXFhilH z9rPp6I^ht&i^eJJ85DwHJFfKVaA04t{O!;l)F#}?{j&#eUA}$y<lZ_M4xtCc2YW2n zs!xqiQ>?FmOr{iGBv%atj}a4XS8M6W?qjzv-M4q@P$L+xRwl?R1MfAGr(T}(*@OxB zxjl%sqe>S)xv}T?^`<quJay#A@_n~1+&kkf+uOCM<60pYxlr^fNN2v~S$!0MIY9Bp zDm5T=AeDY}?YWo#6amq&DsZD})0vx@SOQpd-M($L1@ROoC&H}=GzF?_w~O4yoH5UD z*xd%iT(ztIpu2Yca<z_C1qcIxfDn{tM-3|&bK)j>C<9&CfgabVfV!>|1-+VMdjy=I zfo%}zhZ8jZKyvUvKu!oq^&40oIJ<+jtyKd2%xx8&9f;9D%d-<pRkuNwH6%jP*|P&$ zEDgv-hVW$*+`xX)=twD;ddAfp5;Q+IO^V`NOsV8{{zm~p2#GLOlf89iZWUPw;kIjj z$p@bWO9JWx+T1tiZxgX4*{bd{;b{)o<-X<~wp^Y&fXiI}3bd8<)bEKy4UvPgqVtFk zDrtn1Ag85O+5u<i?f@YHq-ipk<U=G`Y|#!c6b+07D+@wGdXued-ky6d-qNeeyw~hU zx}J0_iIBXKWIlY6U2DkZ07F;$3x&RL5}1}C0FUFeNvv!Aq1<>?$p&-ug_iM|PnqKO z=3AF*+RfiMY$;Xx_Q-XF9tPBGaxgC8iivhiE#<#EcfI~~SpD_&9Y*8LH+GbAB!Q6x zMiTg|lK{mkV_SCuFk|(}x#>l>QfH<mM^)vpWb6VA2oVGYMAIdXF3g>PN2cntkG<=O z{gZcNzJ^-ynb-gH$rnBq)_R?;RjsxtDnr<-0^Aa769zAJ;7q><Hv}!p0Oi3mg6;WR zm1%F`*#7tY;6p$9(A^)s^Wa0b?s?$IzIWeo=)r?ach#NgjcWtT!}h(^8Fa8CPKcG% zkEHDLx|2ut-~W+^|IQCR`giX={QdXd`q+E#`hnZ_JaBz&6^3ee?|WzldT1EkZ(o1v z+h2fQ5>2SU4&SQ>z1R&~x9qy>v3q~`M<4sy2k(61*rE5`cjN>2A9-l^%$}{S^|j3l zp$$}8rN~{-c(P|AFcXNoVZ~eB>#v@9o{YC_xb=mD1sDUlo$ZaK>3e3z=E+fkS2=O+ z>8-(f&G8ndmk-R|!?m_wz4X+2?;7io$kvXKEl9L+1$W)Lc<=p(f8dd$Kl$*{|8{wP zVQJ=&J*aQ2LG_DPQ@k!f<y&Tt?3y^(sx6E)r%;FW_N6|&N`(Eb&KAt(f{uN7`Pg)0 zZ>upgG1a`jd7<6k==<CKpfebB1_Asibn&$}*zWtCZhy1g*+9dnT2S?o|FRGP$;Rum zdv_mpKn1214(3VtUI1}IVl;>e7=_p+^uV~3aRs?Kmd#=IWSqF(Ac}$7B9#%WHHCyH z82t&+lz);xq#Yzq0tJm_jxk5EgQ62(>Wx~vy*+>{09G%ut5b#EhQYX-gr`LaXyS<+ z=AZ^9H{_FvZv+D0s<Co!Y9fyx9mF@TVx^}cqZk*OrLZq8<$;Sc)O)_=ie&Om$GszU zV*))^h3QUl4vu6^*)lLmx=DAIoa>0Yx*sJ6!Q%R&*~>`|D)V9o(GSYuS4R9fenRfX z%-5vw^rEi05E7Dob^><nw2yVO%uiqr4}`?Skp8L&e~KSc?hklpW`Y)4aX2NC(Z6sN z<bf#&u#h;<k<g=BXGi^OgwM!zV%kCGiYtrYlUq!VM@iqQvBAHTJ#^Ww9Lj&tIp;-{ z`#$<QlE6p;BMH1c2@tx)dy%k&<xNk_%}wrtaTl566XOwE#2j2#*|sCBmJe5_m?02Y z38aCk=KO~q_;@Rt##FN9U;g}G{^v{W(^eIv1(<4uFmZ|yE35*gWK3QI;8iQ$Y&7d| zwqTLT8qG9zSX-Jp_@f{EnGfFc#C-FXmN(UK#u^C1YB#G^YqB}Hys*4y&z{Tc7lIfb z0>VyjtJ~{C*T{2J{OGYC`S?eE=J2ljTK06yZZw=`!)@)FoIQN!9U!V6nmyKRi~&Hc zcdirf7Ays;0qZPOtzl2R_wL7k;`@L8?&U|vt+__kZMx%)N^86}yKmvP0|yR+DRJr2 z75F;?MyJ3GJPkj3#}lLuw&H8;tFNAa!Ga+ctlgr1mrT0|&fIzM!MX7TI9%w*?UR?j z+3xkgu-H3yc+bpHLAS3l@0K@r*^`6~+q~A1J>U2E{Xc(n>HB89eG^W-9>EL4t-Ho= zJAB}t>B-5{7hY=jR=R`jtxoSf`ySi3`>w_L!?W{qD{H6Ty!3M0-`pPb{9v=Q(Y@o~ zgZCf(@Z$8*#l@vJ&K*B-^672h-X49nJDc0xt*!0#4hYP2vep|=m<-HNo>v_pU<cGa zzVBMqrG-PS`W%1&S#*J49S<D%kU$&<2#zdq#2BA>i!{fQTT{}t(Wnq5r6P?0qN+d* z*?}oDBAK=^@tE#Oup%Q45QW*<Ed>wYSX=<R6u*n`9)<F9?2XNJ+(i6u8bGwUUpC89 zDT2Tf9JV8Gwea-h^3*C!NvL8N6i^_;P(dx}^iNHs%BY5upEE?GqreR@dHzybTg8E) zyU}vx09a!nl9?b1T~o7$#6)LhE!JLQ5T?R^lv#curI1_X5CN(aifN{VrmsuR@|Ebq zd~Z^XJUBCJ#pgM+l;P1P?ygHN${5qPOL4lkx<15|Fxsd_WYQkyQAns531A`mP3k3n z;{n|g{hu*9Q&!a~f=E2(h|rDtuA$q47*%zOL!Cy3v?@_}XFAkS-qXD|jc(1yDpzPS zDAOJ>#$@I}(*0$2UskZW2QMe!!ecqQFp|JX0wW3BoCN62Z<8Zgcg&sKGrJFZy&9Zv zlBE(+Yw=-iB^{X9T&r1eYwU=?uXyn-^LNg=yDRWXT8S=iT|cw_My(#X{YE{WCQc#n zGCa(}QVUu)=&K^jwWolT@l!3v7JCay&t2oQKlS)OzH9L@J04>yL1lIO;^pp{%iVJW zXB}|Ri^dkm_I>PKzcl48&W!DvYSrCJBLX)e=)ZU0$A0pIKR@T(g3xG|v%MakKfiVM z{Q9N!L1(ry|HONKVR2%KT-lPP6?SXe7Tjj}(3tt2>)(6Z{Xg-6zdutsK%Q?s|J>>u zFJE}!&5cu`4Or{$@s9q)BY$`Q^nto>x9dG{G#syi2nU27Y?x|cN7;h|2C#wwl>t$_ zK{OG&_0U=bw6z9tFlkp>8|yvGUbpOx01n5jzHimQUw}m$g~xz?+Z{mV>qp+*2Os+A zJ%49DT<~D&Zuhp~Toz~bO@PMQVC;_hk9_!nUjR*F;5i#s`ww6F?R9^nRp~aj#vi`z zzo~l&*bB_>blhI8>OFY)!z~|v+&bs4uRQbGrz-FY%(^O4ElW5xaID2(oMXV!elKXe zWHm=lc0FsXS)JKEx7&h!8+kD!9E%nQ9J>NO69#b))`a-LV+O}$h6b023aA5dVO3xP z82(k+Pc1v#!2iha1A!(cZ7O3vV)u&f6{uL|W}c)eDgg}x%98;Gd2!-MaS_N8mS0<( z**DpkWXgxj-ag7PtI5xnbAf0Y(v_a*Iap?8shGyKIT|bL{wQED)Pm%^0ShjoyAuBe z1azt&F}T%7tj9prsMZi)*b{6?up0|Tm<=Xu1O>;%?#wJ54<Q#u%Lig7Q>Z)Ap7WMH zQ%b;%N4Q;TfshIyL-L!(Thz*VZPI2*qp6wPYFfZjGFH87T7sEOU*~{@6qSR5X&3a4 za*IfkTR_NC&Z!r$bRm`tcFLJG#C0<&N#|%uQs>lU&;(e>N)v?{X-R(ck%F?UQ)1`m zE(%?N!;*k#UbXQy!XlgpoOF|}q^_zsQ!s~()_?Ow+)f|%qNtjz-@xez7k)5%C=()t z#(zlzS&^J@(DieXdztI8L0cer1Z9Jb1x%>jqy(uuWek9^A=Y&2BOX+;U)h10yf2bp zGs$R>WIe%|qz<E^y33>$qhln2kpxB(_-;zTdDlnxQaFRqKCpZk(+Z|$nCh!QyEIEs z&|S8UC#4+%u~NV?indG2x}(eY9o>6Bz0Jeu`O{CmeD)jgOof*t1!jd!J50C4e!h5+ z3UJ`X6F>IhU$|}YK4?foyMLu~_Dj$G&R;zD+2gN2^ZMBnYg-q`TCMTM9Hs!Mrdl&& z=T=^+#MO=MRhZ4pkInzYhktR(+k?r?xBAbYdh&B${_Veb_A^hv__>ppzB1n2H9a{G zlXU270XNp#SHJ$+=P~=cZVwSp_q1;R>5u&4gtH7(uokR*>dF83nWz4*uYLQEpMU)? zuWg*U<=`z<Z#=eYGjq$Yy!Q2NyHkzp6*N2!-+%05fNHQrySjDZ+o!%ZsQ7^o-UZ&> zAZ)nHO9$V3`wzh44o=4W>iU<y@#&7g?Znlk>09^B-Wr2RTM1ve`1LhnCZN58s$V_W zyzK`c_}NC-w4LsnfBE?{fAXi#{>D=;ed_FmGc)sE-JS%Xo|ztNZ?9gy`fa#I?QZ&w zYOpwchZWc0+o9fUo?UsV7y7{D@4x3K_D$buJHfyXzwp#2);2f7sEY|ZnOWJJfjUGh z#`AdW!0jy|1EAPJ<@Q_ef-hrWck+@UdRh=C0K+XGO(okeV#8ACU1e;>K#0SZ2^Ln0 zFk%TC;H=pHqM~7FqSc^c+eC9SU*hw`-l<lt4t!VyVjsY6jyG4XTqNx`1&mOz$(%t2 zf=Kx$PQBrCWkM*ap4?($8kI?A#!k4ilr&qPWLg(yD5;-4(wj1wlv~fLP11X(hv4ZH z;F{HDPZ_Fp>|BEKrN@*Vx0#hnny>C=6}yr~u9<vYHB*;0Occ~aGxEZaUG<!(wE|Iw zotCY6o)LAStBNUg`fS>vKuSy7EJ*k?;(0@DD)87-d|uj*;J^j^p*=1`6`CzqH%jZO z^KHmBT=z>l#){)J2N2Cpk-iqUB}Mp{le1=M6#I8bN9XwoX)<y9keKMvb%RP`=9bG@ zce>fkf;dOI+u|q~T^UJWB!Rah0n$IgPyYPW{8){x@+<Hmkb26LSEoKW1S=@8d?B*n zU0(vhTb{de?JNQ%z;FplENr;boXrjp$`9I>9~{~Ho;!CxZejD^sa)DT`>8Mf+E-uu z+=~Ck_3-?vfBLyspZv3@e*fy$S=xKFD|@GJ+dXy5L}OuLZVz|>_uTq{<>}in^+2n4 zYUTKU{-aNPd*vG!I<K~?mycig`hWTSCto=G6;i74bQJU{B$-up`<1pGI*;D><Foa{ z&^|*``#WFyKc9T{|6T8P2i9O?aOImX|K-!q{#hLLYjN$)-S-{dcc&dz;i>@4VSo~l zk^6mkdyV1XfNZS#9iYCrA2zLtLksWy=p+9N;%9-$;WWcPfBJL%u;cfugPsTTf5aak zBM<l`LddT^BScgwaNc$M_W|(qqd~{+{Mk4Dzpozu(prBbsCLfwj(_gyPp%GDow_^d z)b7~-gSB`Jk<XC9H(&ds)2na5ms-<n-L?0TW@Qmk-j?bI?%wku%y$DTc>2XppT6`0 z{F^btOYOioY%(DkQMv)e!deU}TR4wG>;`zeouAoVueHEX<T$%RwifLy9{{Y3q2yam zt7l$G12yYJ$z6mbZluV`<u4`rKDo{y&$>a>Y)s6~>;l+UW@m*w1;*)tr|=&u6o(E- z!#PGSP4TYWLm_R?JSO@p>#r#oE;(bPAbAq{ODM~7i1K=eXV=U*0};qq8Y{dd;zm}; zT8wf_&MZuIX(GB}1$2V9^HMSH5iDK=RZ`*&2g9(^_3g#ZD!rxH9CMh76&fF@&R+5{ zo*>dFmyRD@qC70gjhT=lMw&DaJ+zE5#w>OLkhH>4Uuo~dFnd!TN0KGY4#Iq=`tds) z2BX_Y5*SHfB!Ta;1ZdY7SZ8{22HHB(DZ)=XI}(y3xBh0$CAre%c<wxJ@q~bRwjXRF zKrg}}0Du^A6H2FpxQ|WvO7-5`9|m=SuyELW`lT<Oy7r<E-T>TwA?gFR4XgfY_v|Zg zezP0&pf&+X;=tlP2y8Ypu>dc!z=ep@g(;vNtbFFl-|kd4da>^{THD+3*gCV)J@xD> zf7$mpd4j57HyAFZ04EWEtlpZr^N#lueYP4v+5F<EuLgD-KEh;sv={bHyz%Wm1r3Jh zTKDL|V+e=KI!r=)G>h0SNR#9C)O(M9<dHjn>XAEt{0ATU>A&}5zw*RmKR#U@16Xuh zz~(Q%a^^Ys8bjFI_Ev{I-*aFsIQkDA*u`O@0wH;Ra(Q|FJ-vP{thq0~`TXlE->QHK z;lhua)eXbd?)s@qr?!K(<JRV8_K!`@46F`_8c-NNb>a_vcVo~EYEkRmcYL(sJ0HIP z<F!f?J#lvR#B;BI5jK5(xJe|;<k0gU>se^?lv;yUhCuz$@8X}kuxkm+0NJ0_-A0%x z3Fn(k+bI+?KvEjS!I-^i2h*HiZywF$#tqg~h;@O3I0{i^*RDl6Pe4iTnGtB4164&$ zl6jYj_Hq?AYf{vY=8M**OZ<cETp$PXK!QyK@Wt62QYu3+N3yyqy3RhThJ7SAdN8vT z0{yh+nkgg!A<Ig1hNAv2H%M;s1(buWrFUs<rMZc(N09*p(-Czu*_z`pH=@kWx?w}i zdj;B3Pl4`1JwzMug<dG%iQ;={8ChsrO3Bb2r)nkfBiOxzJ~790Zv5+<g*2iMv)^-~ zyZLABhJqR;7)f9xfsq8h=OjQLWMQnc+1`*iy!sVciU#DOyvId@EBkpsyyN5J93uee zR-F8U2Oyc196*RpG`2Lo4@edntaq-RJo}u}^y-y*Ek<BjQvbSMts8ePuAU8<s|j-9 z^!Qv@@vm>J%#2UYkM98`4lK>J_S$OuN?`d_SU+`xx>dCXFj@=Vyzt8P&1)2Vmsxt4 z;(<`@es%A{EuK|}E*Du{I(K=ocKA^JJ=691#i{*^lLr@O_twWI0y_x6kaY*G`ZQ>z z465QjxTd6iv;0ACd2;!EcRumx-9PsD{XhDy!;elohsLdWE9g1R%9|_C|K1;caswe7 z>^ShZTg@uA@iBq1NI-8T-7PC_-Ca}rYW+^juEpW{nRCy@g9x;a-u70tGTDMhFyFa; z<yEJ$4YMi41sks)sMTg61g|=Ee(m`4ul-qljM$cU9eVhl!;kHsx!bWjAVfTK;xh!z z$-!5PNS|bxPgGEGP>N*?p&f{XTw?G{PSiv2KB?>1H`Wjr4WVu|C{c52681??rRFHt ziE{%+_qvHiZuofUDcKw}xC^)tzOMKpIKI~U`np71rg2y}1WDksBoKHfoj9xl=CC(w zp7Sk`Yn09{-*&1&7Plg{9C@GxW};<)K$>D@nA>p!>o<Dl5*4FpZHLtgS>+JzTLOPO zya8_5kHb1$y1?v+n}@Tdg$}D^aWtBprGHJ65xH9cE`7w2R*rAVJ*o(-Wha?-nQJ6n z^f1h-6H6F7kmBV;N7824ojJ_>ONC&HYlL)fa>S03jU+IVz<)IoVC_OBytaC!A8c1# zjsi8@Eh6Ahf)vRff}CsObq{kIx3Vy^5AJEn9|5Lu7?a@`&Y{9S?c~^e)vj5Hnu~pT zzY}>~ilq>DDH=imx+-*C9s*^;!NT_THi<j7VUB~Ut!|#1nb_m8<pgY*E?j$aYj6cI z3Si^q!3LdR1z}gxA7g@oqbqo903m=v6<A|#W7?YpodSehSdV?^p(p<N&;Q^5;^%(t zU;f<h{EMId5C7ZG{JVetv%miLKKf5ul_|I^b16iG2Poh72dr-+Lw=q}D9own)i42u zsH#i5&M+@)4_5#5=|A}NpZ!*kVh&SeH`lhh+gpH)fR93t^ant<VXrsvJK<zwcO~*- z->pT<AA9s4|C68k_5b-te&e70_;3ABKlK0n$`k+Qmp}fAkG}8cYVkDU`A)*+?Vt<4 zxsF{0-`TBKzxnE)URrwtQ!twRfxACO@#Adg8{huy*{i3q7(gdFm4<jV5MampT12oQ z>oI)TftP3yv0o1G2&~(=c==3!&_*yYa*Bb*k~dIN>&nz9UuE1E5s85?6MV+LY)#at zVU2lv3C<|&q!Xlt9|e{vn8NMt^-Gt}G0?~;Xf>iL0*f0?|0Y5<6^&Zusm+)Yc`7;N zUIe+KDO+qRbKnMXV}SHxYiCwT&NW@3^yMNsQ<suAlO)Op?FdlB4xO9EPf`TR6^Ji7 zKfy=Cuuic`rG0%f?>;RDIWd_VCWE4g%S%CFX^A)N)7)5<^!f2-c+y3L4f?1k5`=Lx zCSnq#cc()G-+ZEB0yjHLKOMPYENP_gOb^7;7Rg!XpUbc~IB%x!MrlS87)f9xf&U65 zK%Ru)Y^xV-Us+p$b~C{{<&!s?RVavqx9!HpI=@<BcwbqVI@qj^2Y!z{D^%bWj2!Y0 z6_6E9O-*<dG62DK?RICY-QE<hrZCB`f_VT{Yv_Om+8=DgM=ngpW4NZW8=JjVsA<Pq zvmhIg$(j{ywXa2S$41Ebm{gTeO2UrJ3Mp~}?2zCtARwfx0yp{LU~+PrHE4k8&}-7p zJgYPjz!ygNt`owufrsB+4}V=4w0li>9)K<d7IMTcpe=H{(zZ50BsjBn;^ftrkDq<+ zD=&ZUcc1)MzxkQ}_3JPF>H1(5esJOG3Fz91s<rAkc((-gi8@CrJLFGrBy`8?y9Qo3 zsKSG5n_@r&9d|Goi@bW+_WWr(m<odyIc9TW0DlJ|*#a*Z43Kf)JN<b3sh9p7TwzqL z?oR@_Z?w0cKK^+u0U#;>DNKbxW?-qp1`Hn%GkD*VkPy#{WZ#b!0+4sT4h#RtuEKPz zclqi$)*7Lv9HAI}ooKVzrxI;#=NOzCL$Ee0qmPu?*PPmO_(=l}^Q4G<aV3nMTCIWn z;6d&3$~iyk%C>(FH|WVeSM&~$&ZvLMXw9Lt9Cp+<q}Q2kpp|S?A8|HPCC^{{RUvXx z(;99Zv~gW&ql(QGpo31~g;QP*#;S&&&*ZqF9CFeyv0!dVGYqk5nUn(VVZXkOH)#&o znK=~eW>#icO4W(N7Qn(99~A&Xc<SsWV%WiJx#Upi)C+8vK&A=2Of<jhbN#D4Eqd@s zr^#12&w*F-X&N>%--cjEw~Qn(lE6p;{}o7pcFdu!1Fdy^bG6-RL)inwr)M%#r=`wG zhevkbm^9bculM^Mk;3BK-rWm(0BnIXf$rGeYp4+qruEge6>_K=B7#;76)9Aq09k(A z^lDQ9kSe_9f`#gbbr22^SO7TI4tpKz;>t;QW#tJQh!xlEs@H<O7`VOwaAeyLW(2&D z#UA5V5OV?605i$NEdn;IhS%F|fN^HjMbDl5+8=-84?h3wZ++&u-~6K&|HJ2={p9DL z|BcT*`-x9~<KKVw+28u?H~-_ezV#enxAOCj{MZFQbi-#?PyOzn{F~qY!vFsJU;5Xd z{)>P6=imCwE0<nci@Ra9ZB<bXsC}UYvMK}k8-kHMYe?A>Dw~NANdWG(;0hO&41ENb zh*wrmo?W?cdgaX%mtQ!!dimViGpDaVee&w_r&f=@dF{mM6%cT@wg#Z%4tm?20G4cn z5Pq>L)j{OjHMnF$bm6he(w;+prR@*Et5^f!02~9TX*qrs=1A7nRtTN~_cKCeu+19W zFdo$E@cIy5y}oj7?F!%-BValRIq^5SLe7%NR*zt^e5h%KP4-fFaWl#`bKsds3%dbm z3$&1%TWi<Xu0oI;4mz~~GGVAxRe*vZKY<84Jg%8d-$XO2QH2H>`ie%+8daof(Zsq- zz=%|agYL3T5`$fRUD}H)CWRm;DE$oT`U_x1gRn%&;dq^)EJDn7<&di>jT~~#r5x6A zI{;j{#k^5pG0PI^nO&p%@tu0N4y&Z@0#mBGH_3#HDBfy-vl~6~VW%QU<GC%wHj|)w zJ0E82a!^%n%t6~6zc$yFVNco3JZLwn>FD>71V$1VN#J{10?xxfb{IYr5K|T}ZUDfs zu?Y$y<{;)RdCP~|0o%dsV4vJmlAnEwR0U72p!B(&e&@DBM`x<b06(5xMd*Z=Uio(5 zwF7IDSO<Wn&{6t6xj=H@MghKF$<-0)1&Dx)ZU6Tkdvx3xvjVbfdhyIRR^!#l06-LB z&8i^nI<*0a4s(rtcOQB$9E4UXwF_G>{Kd<E5?8nD;mpH#KI+DG%sB1N)idW_ot>Tb zs?EvP)NFNn#+t0P+(UDB96R)pmRpCt)K+ih?By4#9)fsH&rj~YWB)@;3GTjj_T{g= z`uR6EUcY|rrORuVFI>HN{@R&ySKnA!J#*&ri8GguAHRCM3BLlBsDWU>QTY9L{Rq|q zOccKQ;_0WL>Ww4lsu3gtDrZDxYxsoL8x@#-5t3{S5Q8_4_ATCi%j_{1^QGgyaO!L8 z?eiXj4EyfXuK9!Ww`0HBuk=6v<=_9}3;*TC%YT0S<X29d{O0lVPri8i+2g04dimV5 z-#qo@<7b~*Z?7R*S+4?xwB<&%-Hk&(_VBM*Z421H=X9dJ-EwM+Q*dGSt#;7s1>;sQ zaC&vHYRM-l>8A<XiUl^QlAzp$1{;c87lFtSh=SaK5uYT82ZP@1+$5CQNRQ<JMmG!( z8I^}vx{&@?fnCUhLYYZm2Ie}53Q@dNk*_W?k>U`u?71pqqQkgY@G`Mc69NSV3$4Lv z7Hs#RhevQbz-cgz?ON4=i)25t`)AId><4WEh=lDtikp``G!_)pXnx&c)+a@pgr?v` zv?pzxn_ty+LfWF%=4Nml0P-Ehp1#;IE&0tN(IX&V6*h#V5oedc3idH=C#AV7+jyw= z#Lt)EWr;xy7eE=ffVEf_67QWH39IrkiUh_}iSVBXf7Sez^?f2}b?7hVRZ+Tg)0NMw z95BsdLGCuH4oXjn!WsN3LFD)^i&Uj&54|iGk{9JcZR3=g`lzw022&9$OP?3fb1qte zPKE)>Mq=nA8qCU{tAdBhHGv7cIkJN=tMqWdLxfRH+e&yt;t^6IAhg4<Bvax0@PZbF z%7z9lYE%R1VdVDnW%60f5vVB?AVr776?&$U4(D-&45|M`hFY-dTwkQ;hzC_dIx^*> zox#zoz?2?06P1+4>RY&rIsQdX&hpT51Mv`(Qd&QMx;rwGG@d~7Nj1|L*Htyll%w;J z1V$1VN#Jcr0D3++^QVatc%$Fn-q=`$0|Dp^9IxuSV4d=QKhaO={VF?~a2kMDEz%$e z*0V2uJ$Cvi81B&T*z?|p?|HnAU407^Fu1CAANUDmSvTwlJ-B;qRceiR48~J_&_`Am zSI%Sdhca+_Y<|zop=JO#T-C@US6yUX9#*}|<nsI>3Lz1DAd8+|d6o5!?&|iXZcK5u zFsUEhbN8YB_d9lTa(b%Xn)1eHnzIwr&85AI$0jFQs1^X5U4;w%nepkdsqt3i_W;{i zQuTeyhsPUJ(-Y%k;|Cj!xyIOJY@JhZCQ;w*pV+oJ;l#Exu_m@{+jb_lZ6{A`Op=Lh z+vdspeebzARp(-N*Y2*a>Wl8$d#}CzzvX0Y=xw;P{JcA{AJD#{HQWh_o@CB{-=B|% zcup9o<c}oCE@a)wFu^<DGGm@6X1s)C4n{r!1rCwTYOz}3tN$cO3E(cihE~Kf_W#sp zf$hk{Q4V~)-4(7@J#*c*b+1rrChLLta3qL|_ML}5llvElwX3P$>Nz92FSFK6<a=*c zZH|W@8I@Ve|8VrRT0LN<$~m{}_KjX=3&K1-7N;Be!C+c2fc8m+Na0@s#UZ%bFQk3Z z#&N9E)gr7Il@I<4pN0LdHqbz^nn&R_=wE{RRw;UjHLr@}HO1V1EU#GlX4+G>gGW?U z(YTuxa8)7@10&eu;dH^5NX{FF|H}MF35HR7B0)}k7Cl|5=)@U1H7;afgEKe9s!41z z90QDh%K~?^$#O#GVR0TQa_TOsu<$qh5p^gr5^0((9nMfMSPh@UgZu|3dOU2CNyCh$ zh?DtApXoLZcXA&wRF0k@%t<o9?&&v-w*(FsL}|C7tAe79MrVPQ^{29D;i;5S6?zDT z#W9lsnY4$l`uP}%0q!4FiDsA5vy!n)p$QNt-*qY4pD*jilu`}5+tj*5DW*sGw#;{} z%4>?d|NTU3g+YVq{mH`(PnH>vx7Kw-a8b3c+vpD;2Pd1jW>HD-`o$H9xm*#ng{hY0 zvR)SPmf{kJ*~;c=9*BINzcoRTujA``5qkxd$|vno4X5Fq8P|zStD(f!SfZEDH$VI# z4=UQ*t+r?8cddj#%17jxr{3iqWQQQZx~hfn7u=>p+_xtNLa}Yy&JD2Auk%X1&;Y+> zxR$_V4u&2f?$Nf{TZ$|0`<(LE1~j1ssApBU-P8X4{0>BcK^hc*iS@b~f!oifR+?=H zH+B?C&}uN%4IaP!MZTvtU$i7u_0bR^o>*=bbBvF+Q_pHspQrWiQMbAu{NYu-H7^cb z0{$_}(dGxlQ2uJh3nHT64aceaP++L&BPE8k^yc092j--(LhzKvMc|a3*s7kj+57>+ z{W2AY%dJ-ei%n))3!eUm0nBG?l6a9-dC!+>R>;+MAz=1#v<9tyTQ)@LwwDi3)39<M zH)_6D$#;~S>K=srE_`n1U`W2s4u-9G55)Dp5FEycP5^3jF(DexP!z2=5S53Z&+${K ze^(&eN~OQC=@EnfQewk%2FM%X;6cVFjMmVIR~q;j&B8^rXL@7j{~4EPFaHA{fejWd zYmyKNr&Al>rgj3qs#dEfM5)O4qvAp<>tSp7E)l9Z3nCzMP)GR>Wq|N)aPQjOxpCU5 z<WIy%*@RLut9Fa&L=lYDz4BQ*S}|NYE@L9S=?H3&u4Uxc;NDupL^ppnE@Sc5vy7ua z?F3*V$5o;T7ORY*qmE^A11G8*CPmYNMzX3)*lXqmUA4F(E_eERW}<q{PhWl|&P>)| zzHkeUR&HFJr}`?UXOWUJcj@ig&=%ZnOr`_bML)B6U?cg~@E#-3<iC4Qx(WVwy=ZSB znpB`PlT*u~VKB;^{OrF7KX!I=pBf`}!>aWWH(@6rslwt-7{5T7&zx5)t(I(8+^Rqh zDOPm<LzQd)*zTIE)?umM=%9Ey&*bd%yGdDl<iEYXAbKACAmVAe>SO4-re2Q$q%Em2 zY<eCqD?4Ek3srJA+8HqTr{Do%7AZSVI*_{F0t&D6a#rGAz<up|ZpY1Xxo$?#Z!p61 zF>R||iFjYrWc8WW*}5uEn_kzhL)g;FWG~lT?tMo1d3jpaz$6N=8y8L8_L>{FplO4E zOVCiz{fwNQPwbJS7|U-dNSyggINJAK7u=+fS}`zgFH-|Z0`6CZ8<Ur-iz+=^7lx!^ z;928PSD)DVsrq#*J&(8LcK6h=bnfWAxZ(Jr>h0I;fN{oc0rmWST&xNGbNS0PpSS!K zGUJ5<O@<s#Pn$Pps{TAmx3{3;bgd&(vjN|4dvXSTF3^3aYHLdzyvdfK49L#f`Gy(m zv;9HDeRB#I5EMCZT2tTYKJqQSc08lJ@7Z-d4(-`}O6ot<YH#tn-h&0jLTuceuh*pN zeYirUbITUZ&b4GPpmCCN2KCP}VJQR9cGN+M%tJVsm`D;JufYu1^j#cZ#Iek2Qny{2 z{{2LbRF436NBvU+stQTWXlB^lBY&(hO&6qY-jz*LTS#SyQ<+|m5?$>ISLuIu^sk8r zZ(5p^6Lh9~M-wMHrHWu}&G*#&iUWj7Y`e{=<=AL3tKl(W6a<DUIOUIX^7&d{_?5|F zsFoCp3hD3S=XqjmVKu(wJgss%594h#1bhg=t7uynP)RDi2R%ac)7QH7qFYTv+;dny zh+mO@7{Fp4_vKMS9-q-#@DQx2bB9Vx@^5Zges;+|RTER=MNMM4te1+4QLBz8-I^<| zV?-m@2CNE5InzoQikW{oMv)f<KTHR=soBsx(k?f=pz3dnm34(Nkr7@NprD&-&Us&4 zT8-H%HE=b;epU|u6D{Um*sGXFskoM80X|Q@mU1`&s5g;d>N?K&&bR*>p040+{7dbB zYG^McdOe;-5dREEu(=!4sMd3T*fz3*JZVi77qudzBf5K$A;|7pzabG2`apQi#njg5 zcC~o=dVI~c@l4XYoQJZx+CS;EUin<re;|GDw2+9N@ijUB%Q?}~?uc;v#M1keA4Dj8 zQomYVID>lJn5~H28Ll5*xAD5<uCw2-5qaA1IQ|rYa|3xcEWjE3NS)&Qc&YU^^r{nM z0bjT8GqScLm_bf4eJlucE#~Lwc3#^gbHi`jOBpJB!uM>`$h5N4!MT6;#6Xv`>*)Cy zKVeX-GR0a|7}>bAX2q+1Dc>LlUAh?F)M>rc0p5+?2DQ@h*`Hq*K5cwH=WqO?w2YZE z)9qgDf^2MQo(hHQay|FkJ`OvjKhEj;i>IdNd52?eF3AU<bhYSXpTIOp@>!?z<Ey7G zn#?>Xd}wj^Jb=e_3$mCN8_3Y}0?*k2SOj#3t9G{go=o?3WVx?LT!gF~7_|xn9?CCj zd12Z4EhU6)ef5qIwVgpx3=em|>?VHHT`1%2Exe8hydw?gO^C;Feh9or`E6YKpCZ@T z>7-?+Y2<7`F<-b_IeK~7e+L#<5k9GSPJ^4mqe9~1_#_L9s;*x+XHKeiA<97~bwCG# z@PZ%>v)V*y#-j&Ug-SERdNq-b=h29oDuOT^qEj_1Myso?&wc_f@S*nto?z?f0H4*; zc+i~JU2|)kZa46(J%R`{0^=Waw02Gk%whs2f{dk=a}h34!M`Pc4(=2GVSY;iYzDxP zGO27Ef)!AUv=+xJ?uZ33{yd;Lg`P+co}d|uq>LJD`ME+b??u3o0cZkvIxiUmCE2F^ zJBQSwYP{<)oV`#V+ue=o;hv=;r5wC6D5O29g-P#VFAI`OK=a6{P!hPHH9)Ch2L&g1 zNye~*a@%*6&U5UQOn&|qM4z7`Qp(=@5z=ExP1WQSQ07^Nek(7<+Uo{8a>B0Tq0>4s zkbF@~-nCwK*U1EA)5`YxIlJ4?J>wWSeyD(`9;GuTViIh-HT9DpX!f7sArjS|@O@dR zGtl5on0<p7k(<!w=#5F)O@R@#1jK(-mvkdq_D#PRm*3MO)PSgw*4Y&=JBm`5Zxi26 zPHsvqn|t!Wx)VJ_3-LbU9Q&6uLFLEelJ5H*C*(^&%fZrOjh(G-ZblBi-K0q0L9p#y zc2&pR<SBWdXyt6gTCI-v%~Q|w*jct(o~FxKJssC^1MS*Ut?gxoRu1+Sgu0x!!rw|Y zGp%NvPU3$yo$u$ZIojI1>(;SPK6r}X5YZQijD1W0oGIevZuc8Qs{%FwKAR!v->MeM zBNTXZzm1%XnyKU1x9ZEcJnklF)p%0%xfbJgbvuv>E3bN<O7+RY@KryO_b7WJVS@}o zoV5aE3C;VF2{bnQ*1-+I^@A9;_`TuJ^|&4X);zV@pX;}e$n(3Ie85iA%^xWEy1iNj zb@%vfk*q70v+m}xv9#FhKh0>R#7?v##;QFL1L`hp1s-Dljf4+aE%_ej<N|GOblXzw z_v#sZKLm0@p<v+X8t^u^ciVrD*!mRhL<=?hu2s8b^Lljhw4n#3Tj3v0(4>O&iuF(| z>aof<W@EM}fvA|3m<dS*{A%<pgylm=agI1A*-klsWD(a1wl$&6#A(HM%tPl!Ce>H& z<JOGkeOwZ^h63$SL9zzF{&kaD;}3+da(~<{x9tf^!v-MMK%ugBcJ@g!cs#lP%CW4L zo@+l4%<raeY{2$lYT2O_GJHaTOP2l18660xd}+WmC=Z$$IYwDOYWSCQU`#nQ?e7p{ zRAK_DU8cSHA9&4$-Gw$)5vp=~ITFi)0{rlVs(pHTb}){pkF=7XXa3qtN09k7MF}>c zo|Uu=+}i}xN`z`S-|^$lFN5<ZxWnF^r|~lPTgu2Qxf2vDvkUeqgb)EOFfYOyFtapa z`E+hYO1+1n*7+`Wzuagc&>@nwnPT>pT&h0V$~9--B*W6<)NFhAbHWX=w)BIO1lq4A z_TFPV(ZtjLM@W2X0?%^$xaJQfGv1PBp`zvK50Ez%T>vU^5rg8`Ob!^r8X)%?5Hkj2 zaj>8GoL_dR=x^&bJ-n`%=?OepD_n?lt-t_DmMbuj;HP4H>Ki<E)?fe1cip}S_#O&W zKWvq8O%fU!uE_q4>F9b;(-oM3QN4h?Xbs|9MS==gSUJ^h@BFUXI1+d}VfcD;Z9C<@ zzOaP4?gJpzw$-D`%KXb7Q1#{YXPL2VX1?|ca<5}+`#fF2%6VVBvT^31EHNW>o4&Ns zZS%d|ZC0z>kh|v~%47AHUgenTY-n&bwRUVEat${?4&q<C2(ilikgm=4`aDVfJda7X z3!sRqv#{-||5mT&n%sy!;;$fuHhNk-59f>bJ^(ktTz{B^uvZf(LU0SH{VU=08d*PH zT>fR}Znm~L^Yq$Ko@aHw?>;<Ys1L5#tH71>AcCT0aX&C0cg(?|5nkI&Q`Vx!gBUBG zWC7p%Q+r<8D>IKOV-7bDKH>zf8$q<YG%uSkUl@2l)^sLHr*P+c<yaRkKwskME?4&0 z*DrL<3_M;A?1-SWIH8tq6Om<m&bRzA0{5}N^x=6fRQ_JQu?4f&aO6jUf{WoW0q7@> z!M#I#q)sjS8awMJj#Znu&GAXZiwo)67!;0E%wdX}f6z1BAp1kz)I!>I)|mw<q3YeN ztgg4YU%=0z43nA3NWG;{Hf;_Dsf${iN`Vft)zD;T&cW!~q7e<7mJF`@mtZ=G<HJkC zS{FQo;c`+?M#$0ijltf~QtGuYQZ;2$wK}Ie>d^7KB?%%9n9P}~gX|`$5pj?#dH*5x zPbB16f_MDU&Qk3Um@Lw}<tup;^Bu+Dh37O?%*eOm0P!hUEQT%eNg7kq=DjuyD(AX4 zSR(0s*XMw4!$K%*NtdP|gu*GVV*UNaCU<+xF6m;lVS~7lu`4?Tb9{C-COPg+HBZUI zi0XhO(lu0Cviz%9K4t3J2EJv6?tiP81r<RT1)c|?tT|JQ{TqwoZw+R_@u7lzklyy* zbUGHVNE)gU7^MPG^MKCvJ3R=CKl=xS5mw>e42mte(Chq3-8G<x7+b6iEtckUPU>|A zQG@pu`WBNH;M7{^?I5*$!FvFRf~jj|FC+y+kGyM8i6Ctr4KDT`o~Dk5xo5JXAckOi zo5#9-mocR+*?$dq4<4ZM3S8^iY?ju0Gt>Ref^nV~U5vb*?gMm;-p-oqeVaT?KHifT zX!*Q4P@`pg@zmE{Y3SmOybRp7MPA(LVu$m`W5~?qch+gGm!+lQq@gdgBJh@XHmqy4 zHG10ku9vvA<OpC@6?k~o5cRJX8kh7k3Dy_u*-2aZn3j7?yKI*<>jZ)vIl`@oAB17~ z1j@)nA*{CmzYRoH!}MT!2(NA`Gh>O`<O&IDml;XV;&`A##a}neaGR<4?TY8h;wEFZ z*g4uuHC$?2)R6mj*2hnTI$<c7?R9&ih=<UGniPXJu}IviU6JK`r4SIYer_RbTwsF` z^V+)(SVFj?^N(8sMlx*6T-@7Fh_c0%O+_`yBI$USo$4qWcJ5GoZ94hg)&kZN^6;Fy zn4o6Pk^K<@w!*Uz#_7+mg<r`{x9zE9293PQ&r`MqoVr=foQEkC{{6{>sYAhD1)T@Q zTnw;1dtf3LFQSW{_)V#26{Z%S6<D@%-6kZ>;D_9w3zmXxcT!F`F2m@UfN-qcJV}ki zHbWnP;r0uF1EPUSo{k}W1kW)GoehQ9veWW2OkkT#1S^bG)SQ!PrlMQ8SvZg7#<nkP zlXhwG)%1WG#8v`D5*7+BEl3zi3T^xquBQT<{*MNC7VNW9#MCin<Ih0%v4rv<Cb=R~ zB?M?YY+mNIA1b8v#t1#pUcZ0ymW))0jQo~?Rr$#IIinOI`Dve7{dX6(3|tuEa93(O zFAZb1cAw&BZ47%DX0BP;LKY!kjfo*me&h4<c0Z=njA0Q$bA#U8=Ynuzfs><ZGn=+H z7SCuWbJg3Qv-Tsmq7EPFtH%FIGBn>@Z2lMbu{edr$AY2ugZ6SUe~dPRz^D?!s`@;w z;uVY>IOtxK0+TiS^k@^B<dexks8g|$0^=KeScv>(R7C{_Sj<Q?QhiO^u0?R;z+LRS zlja!O)S4`(d?9g?d;T9AwDBSXI9sjm$d6iOK{;@VC$gG_6EDRSt9U&YaZ0a?QxTx( zpiN1;Nh*O(SaL2Oi0$p7ENFUaJTiBtsyP3IARNwMh=+8IyHdN4*^XBXh%?(_^o157 zwe_ec0}hQFV91((+LafORgesURi1D7oSm~ay<z;jD;!silMLxi4SyA{4?W2v`IfrW zN9vr6U3>CM1TJ>@9a4&#TJX_C%b?+HAPx=j{PCTYFT^LU3bwMu4|bECuxhj=vf4Jz z6Rl@KWyjz<^osa?7O!C8E|uhoUc+KZ_G$0H)R-=v5m&|sF$%iEV;w(9MIDw=o#x5R zT9S7h2}ciCfHZ-NW*&~v(Ru#z*bj~0uZ=6}qE;=Tg#=C-5P#&Q8%fe6{xGQE9<u@= zW2!9tanRz)WzQ38KsNVJ6h^pzl@_i_MK+W(Uz+e8o%8gNy#MDd2)f~76%y`BMDN05 zfMVD;st@{)FI!&qi>EP3+3bPjlB{$sB?MmaD4o>fn2U-48I((@RD9m7a3J~zmR>ZM z;vK+$MohI*Cv<gAsR69Hj$%CW!8G@_=jLQ{b@t89+esV)Uvk?^3e;Lfl@oa}U$t6D zl4lbiD-%OXn8&UP_D^~k2F4()jN4Rrn+5I)V<5;Kyst%wSvev*h2co$K9rQQ+kL7| zT!IS9OF6=OvK7`&3Wy-=+ffq{bXY?jD{NKzci;w85ar`k&7=h9F|}Q2B7;wQr)=Dx z_Lp;0Vo>FvIuEQo=&oH=uSEPl!%}_+9}_v$A5Qi(%Z}N>%H_}%O=B;U$_>jt#o-2F zr%VlK`airH@LR!R*YQi&&g5k$>Qs}_17x&OoP{x2s>(?dadAMsJMJ54`T9PlpxK$W zc2ERKE}liF=^RkQa|L;Twg_-|Y4v><*!OEfSN+9}jFXA{Z7+M(75<?xziMfn1Ic|w z3bf~wAW`t2DAW4T<pYS&@;p=2JU$j07}vPzlN^ocDV?$`o-*fBPL4uVHalw+6X3b_ zN~>xT{w_p3cw83nY6E#(<Jkj%G7%N#pSc<_GFzrPWyvl)B0Lce#CCvKd}00<R?igf z%3tuX&YA>`HL9K>{E`bHj$|Fk&ha{Fx4&qQRpWX^Im`1V!dOwNG_x(aoSf!<Sb+?g z4%)6KYcmM7&dOTiI}$`D1v%g7t9C4B7C6!)VmDf>+{u8kOtJ!LyK*iDdgzWH5B1aw zll})~BPX4QzY(}0aSVyRRL0ECPx2NKX!$Z!WE~0)SD(%~W6$)juF~~29)s5pmCSK* zs^2!6fhO;73rDm#%<8VnalHr?Y_h4Anks`EFcX7w_<*zXoE<vjH(sb=<L^6#^@aoK z!;qXj+sEOtFxBXEG*@m~B%i+(<c!6jkGm~v*ZolvP>dC1+4y$zh?(%?ujW)hx{K*n z*eS>Kw8R(~lL^?&)@yQVhbHtI{{~!&FNb|3NPceHZ_mPcvBaCGVgqYDMp>R32Ra}| zwoE^6v`J*R@)Ws{X<-jJk2^R~aA^$sZ$KqDvQb@;KZ@Q0m)ptt;v>y2CQG;n+=v#& zHsjd7KOAivI$|%~J14Z9bQvhIia%|%g7>&d68jWQt+!BEDkwiL5OqQ=tV!-M$)(zn zjBzP)wifsL2N<UcrlSaz-JL;ux{xl-#lH9y8y71sngH5?u;kB+X~)QW8Ajz6bn?wK zQHkHM`XBzZk|{#8p1-IG%t~a|3-plRYo<q4=_sU9vdcpo;Co80f*qZ$x>+0SiewnD zn`LT{E>h7qFulgTk;sk2Val%gy{(QHm36SBsk`-^`1pid?RIq7rT&+-D*Yd7=3BA- zJap2^*<+^cpozKuNIDEe0gGbF&ATav88ow+g^Y-=<4XoW15svN4`R12p<QWXCWZAE zlz#(a%IzrlPIe2omRgNYgHGM=H~UI*-y0jw_lWF}myJAA)ZHH;HT5eQoFu4|Q4=y0 zp35GW49SG7BcdK)e_HUVTrD3~7at)#(5JbHV(e^*KU#xqn|Bp%r+hZ@d-K~!qDI?k zU8Iv}Vt5b<;MpP52Ig;d{TTV#0}Ogc*^K#stYPaNG$J;T?)#AF(<$o=3c)&>r_)g4 zMvlV1%zx1G*MzCz+1Z4&AUpg+5a7We!ygYHhhL)XNRu3qg*<Y1d^YXNdV-Es;eJyq zo19b9t63;ecDzLUkU72x(lVeHQrS`yX4S*9(B|@T;s}oUOcE}lAC-c`qfbk|VEQ>s z?Ay*Widp_~rhKwhvUcE17Z_v7^=oqvA63|mn@z5OYLQ8hRWb3Y7*2{l`-^m7@K>-a z(5D$D_nhOzu{jF{uQUy_N!Nu@N*waEi>d0O<R13VPsKvh+cC?c#?~GLXIh^kx;rIa zSuW`!ZC%(h_jW2iMZ(l(dXW%jFQ-utLWIn3U!8`gLJQtkOP&@^VBtT6t))V6GMIM^ ziSK`OmRAVT)`A(d*wN51Qnv_&!iF^X7M*+?oGl>2mQ8U9rAZdKy1!vezG?)_TT*xc zbXC|2j#AqjVq6E?OUMRWPn+u~Oy@R%_#CV=jZ9z5&fD73(p&ZX5W-+OY2vOxFks&< z(#phe%^-9WhJutHth0+*68$aZ0SL8W)3b%us^N(4L~oh~0O(-36!f_f;=_-<n~np= zXe41)t1`X$>$(+9>3S8?VgsyYF%^jkp!)XbS-o9AZk1~1W`$WS+oQ@%o6H@ck&I-) z9(dZ9C03}4+SRP^VBjZ`ly?jAwhn^wcUD}`rMNtAP8#j*!Q4TDx(Y#AI0QbosGTbz z=%-bOQ4rdTwnD<lio{-n{O47+ow8W&{?JG2F+dzkjpS1iyPO?oB}bwr!+#C7;|j^k zu~|zT?UR`tgsBoX(r6bi*GFtCX_HPnhc~B4scy%h@5?hF{J~34H`SDqr}w~<Xvfnu zsbon|V$M*WH8bOf5hGcsielZbNpkGv;m!yq?nXp)gCf^&hR?49GM_3_|LM_%H}5+H zPxdCL=veSc@}VvcwKYvG9x4|z_Qe<+GVw1tbtX(vN+E<4si3i7Hlj?Ot#WeY7jEVF zV#h7U|BuDB2NDL}fC3=ZpG#%vfYJ$8(M&m9qAw8&J045>RqBcb(`U?&?@u$c%#^8Q zb-rxTW32)Pm~nwQqajX%hOwR0(dlWaZ^r$@LCY-JXDxbX2yNCp8Pfhky*&ak4Fnvo zoE#TB1{FS8oa?nyGHsM9#U9U*f>JM!Yzgnel_z=!Q<h*w!%`jV61>%sDp*C8XXg(d zVq&(I*=I)jaFXjU=ho>yZooY@<e(sYf5lNBT|J6P<ZO7XsxU@;3^7X8jm`t3i&dm~ zx_&l5gP%m2S#gE=2G>vLc|8xG&&uWEbfNh#=LwQ0dVQ75T5AygCbcuI*fp_)rzpBU ztlRY{t6<TdA~IATzV)w>I_F=`l_cR@@yK>*V%Y^~&B#*I)p?i*Z*2^yvb<zsiWwCA z6%v1I7)m&^p;{w+MMt#3IS!L|k7sA)K&Vi(oqQ-rkmh3}c`F*I*xnSc;6{h=D;7af zx*ITsHM>ONCuILD!_xEzj{W|lX%C4rQE@9t%8>R#TW@{^br{bGq%M~v+;CL25OIq0 zrZ!JeEK;JF5uCvL+aYOT!!oUkOKPN{3Y*o)%>>gSKJI*;zQ<_sA9C@4t26(9c-MY= z<cy+j(uv@*|IqWsTcAGlWztg<bW>Q%-w#a=EDD-s-&ac4g9fd`sh|Tb(7t(8GWxg; zbcw(1?N7cK$xmywyRg;mnIPqX`~JyYC?t?+9Bll2D;c2!nngtt8u*t=nSrCM)Qw~y z)m4iX=(8Jj9HTw}?^p*>`UXm{(aQdG!F2-b?jiWUJ1H{h?J)chSR7Sb@!(?b3DRvM zpdoC#*pVv1+K;?Qky`hFcYj$ql0nF<847dyZ_{l8F07kU{Vl2(GF^RrfI3X$ZCEvA zGL#k&^j`~P69h#tVQP(0-)>mf+>u;=I6|*x3&baIx>}TMu93$D6GSrf3x-~X6^K#+ zlZ#YUFE@k6_Y<;V3;_=Z@Jif9QWB3&!C32y)<z<wJ#&ca5r9(VI$bpKCse2%BqfhE zMyG*uLQrw2BGR|j_?jG=jbLnoi4mkm(?iPTB{8Ta($Fee`EW@o6K()sY4pro%-Jz5 zL-S?)K0$eMOtzN@yh5?U1$HEV{@l`p`j%s8^ypww8Q6%rlVp8w<y?8k8i{RMl<bW5 zm)MQ0Mjs{r;nf_bKl`|zWF~)MX`ftCwzU0VGm+zCb%M1nEyCA$Ua|$wsbcqjBwwI& zLv81{`#<~F&ucURjz$E%=$+C`w8Vz!+Z3Jr)pk{&adopQ+HN;6thLb!;1x7WP`AmS zGz5g%bHl8~7+rL4mz2JwbpSib%3OO4i2A?f{LtxD`6Ls;)Ub?J*4Cinaye=PNr<B% zQN&O|T)p?au~1^Hdh=Q6Knl{a$vKX#C8~_%k#Iioj=M6j^{OeEiE^8Da<Uo5<cU`f zJtcM%#H+*Z?hS30r}9-?+f`^Ha>;2y{i<&-qdfuOK3=f3wYj}{T+``PaCiPzLcbP^ zIMx1Hy8*7S+k^<tnY_iwm^&ql^3a%7;#l`iusVKbbyc$#>d45M7_GX@>lf~4w(%c4 zHF72}zz*#NmGRTG?4+>+zNKJ^0nT7-g6V*LLiw<me=!TwFENMUb6!)&r&G(cABQ=_ zXn}v_4|UpAEA@u1Zmvb1LU#DsP>7vaCaf{|ry|sLX~>~oD)xeO<{bnvV3qo**kAk| z#AXmdYBhLjL=)Oj6HOys$UXka@~a>1-DL~x@$ARHjSV*Nz^~rZPh#Nayz<n3x!pcT zUlRPcRKN<A>d7ri5G))AF!Zg5`(NS?eRvjk`<*-j`TCsThmK}2H}11N0zLa#eEh9C zi%Jj>@flJ$y$j4UZmlRcdA%+X1TO!05s~hrq>=uxRo2m6*K-=Nff<JVptFbrskgNp z(L|le?Ak6-Jmq~a){FgYh0?-e$gbhszgJ_O4gxWROXPk#^pYE2D2@Ugj3Z+eWOSty z`xh~m_rPd4(&0j;P8yrymdy&)t0bA;1_LyHJ%oB4?YMQw(Z!l~p*)9YgaU|~K!u2y zMv1$~phAhCVB4hU5}kgtDbOK+K4PZkX*nuJQ`uy@pA9YLBJB}63L$g%qCXBN*xe!$ zgaOAeMQ&;wYa8c*odBl~2^}#xo_Rsxy=4aQ`KYFL5Xv@pK*a+t{$hDTC}n^6ZH4)1 zg=)oCG4uk2HVdT1z5j_Xb+pVMcAWC`bCtnp=^TC%CCb9l(cF&jwQO`Zaa(9h5zn5c zTV>AgWKI)}-<+m|WlA8n*edGXCz|C~W3?I<Qp~qe2?R}C>6v;OMmZ<H(O9JUXRpN1 zls-6G70DB8yqe!%O5qp!&T&~tCF$>)-lAQgw=#FP?=i*xsRjdF_+X3@yafLYr@TxO zT)s&6AWhy33{cNm{{GVrqWYY%sqQU*86S7avrzMs%l(-4Tg=$l!NLBxU!o1j?8o)% zQhBdQ)$OMI(5W4c2mSI}z>CGOZ~X)E9dG&nBxYjr0RXOcgf8}y$T9eh96a{$mjwTx z#7q#K@8=YtA-|76gOZK!6S$d>tPlWDAM5?5nE2f%Hj+@11pva30D$Q4_Mrp-1PB5E zJ{|zTNfZFUdjJ67OgQm|xB&pLToxiC3JT_S&UQ}bcJ{=QA|k~0j&`ON)+PXe#7K6E zo3io}X4t<jH_!Y@##tQCM0!U5dwOC5a7AoWNbGUI0KBYqc$uIm3JQo=e4al@VZKCF zxFN|m7ZFJUS;3GovaHNld{N5V!{h4U;Ay05Yt`(^>1o9)x0xP5E>A?y0FeSpoKCq7 z<;gjx7V>Ml{sRE%?hjG|VAMD%?-si36C`Kg!14r+!n{Xq!h=Y>cbgoa$d?9v$<J0P zcLM;UdV`17a@^8`FQjtg=tYqiETkpF<dHby5$Oz43WJV@v0D4ZxjvXHiWBF?gj$2U zS-)4tteKv|-MvEN$qWa74MN~(%aw%NMX9q$rcGenXgOFjhovI|BFS6eIIG-IGQ-mb zkr16xZX5yjMQse6hj5to4dA;X?L|eVckK>0pg?-*I9p4b$viJd=0r}=fP8_(<k9`c z6ME{gav5EAK$O|%PaFrElLAt$3{5Rf+zgy_U&XR7;4{aM%L~#j*ynYY@WrRFi`sXk zQ-J<Nq-En7lGcPTfV%~h*zF4`^N<8UF6Lv^b2H>&zUvWz1+8Qg9mB%H64QpClF*jd zbLPkWj^J~{M|R`dlNxq89$^BT2=45#p-wGHEzHlympryRjqt@g_{Di$d#8>&8gX#V z#j7Y<W<K85$*I`kVO`^&*<a}7@l_u2#dt2SnPrtg^^gl-8;6$I$OGL!;`c8=20`^u zSbx}hI}AdC*v-T$;jZU=%7yrNtFe!GPMC^$!#_gBmNA2Q!HKfkwSt-U2atncjDlh0 zfj9?{FoLP}Vse6V)PX(+=p!R8f?|e4jrk)n3(+sb!wRA-Lp%mbDS({{k(q-~3PN!r z(EI=0=5B+z^oP<1j}AK0hwKEoLk2e>VHOS8CsC1rWA>jQhBQWM7vfhSMn@DAaX>~w z6>gu#EQ6*Ap~=@QLwUvIhS2e^5eA#)Ge^$|^bOe@fR+g?uVb!4z#D*HhItGP+F`TD z&w@PaeYuuv1FZ>)>$|vyc;@zoA`HkKXoMCFhel8ofk%Pd4SXg+k@(sFi=8+`f=el^ ziC9O1!4VEes3gIS3O+Khpb%cMg-Tu-Ix<8`#6}RKkVf&B;zb$ZJl#B%CFBE)tT=5x z!Zf=%!##~NJ~x_<Km9L`ytV1nX}9UUV-9Ti(9oGabpu|eoiy+XZW*RSKnaEuA&WoG zz=UDFx<?hrBH~$?i6O)?=(+DX(>d2Uu`B)?=C8r>-3j~4HfVgL)G*o+ww<Y6NC&hw zk8iFyoL$h<K;zBIGpaXVH=G}sKx{6h1e!CnYp}jBr~ylU;Iwd?sJn!_7&+=f#Nr@; zG_@^4U5Hn%QyBk8H`!SHy(E2+#Gm-4MCV}V9Ot<ENEr&NM1nCCV-OF@_5|;Q_q2D_ zKvDzpogaNE%T$U#X6TuyZiG=8%72`Yx2rP$YS6wd+D90(pzcg+Ns2=MZ5gDTJWpM2 zP_AJS*;L+?>)ha6@0@tAaw3US72Oh@39m(=cUU(emd*q#Jd@X^pq@mR<T?IhoD)N2 zA>UIGtxRm*uIytTM+0ZYq#?gSqd}#?%=ni%v~1>~m~=t%wA^&4`Bf?vgM((jMuU;$ z-#>jnoE#$^V;%9^h1*rzc^t0}PHt^)BW^nmc=m~?^U&`xK+%~o5NWiP(o~CRR%sg0 z;V|T>Hq`=??~_537pVzUPk(2qs46}x$f<1BdMkQphLr4<{mD}*aa1*tN-nUh9ao|I z%~$#wO)u?MKsiHu%y*B&_Jd8HEnl-*vuCvv80#7Cnd4dcN`?>!DMF@NC{w6qB>r1v zPK`yaQRA)~Q#UFfqqbSTQq4+E>lcrVSEg&&V^M5YY^q$WT;r68PD4$QZH8_3r43&+ zp$LQGmH(!!kNTFdfNqb}S15?JzC|w^r#@pHde^)swVlPrtbxd%{6vFLgT|dQl*!Q% zs()nz$07A44#79Jd%An_6qpo}6b}?gGA1%=X@}nhX`hxQcEik-%pEpz>~0)e=9?Cu zj_G~OQw>3XFEtf@degONIBR(~H8t#OwW!N!SZIoAsc0dvl)?LnGwnsPt*)+k7Cu;< zxv{6PgJz<!_blVCQmnGC$k8upOlj!$cu&Y}#9F9XaTv<C#<d6-3+(0{_Bxk2x$l<k zjJjIeXW7p>N!fEB-uJHzreCce@*WxPHEbSq((az_XdbU#QS4#vs-8S9>um5%b*=ae z5A+*lk9f#8m9`$){xe`OVMtLcT$+Hb#5hyCcTemL>ZI+;eLjA>_5peuY+-bJc@x#l zYmRBH>_EMDzCS+m-7ek8-+l1|(6)&bFs@mrSs6L%IKolUG3L?lDVDj~$e)G6ZNnLh zc$Ar0nVXoL=_lB#SgnndZz>)tYr<%Qod$Tw>QM4g5KtN`H&m~5_y{dfG?2NP#LZ+E zGb*hx7AdN~lm2jqqPcNmViBWkBR_lZjTV{Aj5-Y~j7-((t9+`Ctbe)UctskGP#?$) zt`4OP%MGs#T|{I?x`i{u<sJg<Y1<jlc+o6T4^cl*<H+gBLw+<<?ENWBl)o`{kLb)n zPfn^z3Q!K351db6&1~wjVDYx|72!_mrs(=Di18uw0OJy(6;g=vh@*mI$0EWaZz^ea z)9~8x(CB6?zu$J`-G$g3+g!t=M(5^qdF)yG(2SRdz=Q|nu(Y1o;_MzXnwyyno{Y%! z8)X@zo%HJZVJ)rJ?f6;pUSCb9l?g`<`wTI#X5G4A{mbUa_G-)EyAUB(KIFXLN{mA6 zK#V9-V`!<H`J-aDG9<g6=S}*jG~#9d`R)bo>P6j~dAYNN+{rTG7T<-*eM5i4l2_rQ zE}fpLZev`Xe4AZSe`$eJ&*7)en}G7L+Ge?9jb*iJ#ik;ko4=3#b>3cI3hqHhLB>;9 zTiE5I=X}eO#ZofSF#Z(hdlP?C_mkD|QVaqtf*1l(+;wa;J_7IRocY4?a?!l<EIbEX zW@)S#VaH3%8Amo<C|z@P(_+EicH8xHqg`PS0r!qi!5jIW@n1L1EtOWqRoJ!s$MeVZ z*yq@Usq3kL-?VZrZY!?MK6dvX33HaEl~bcR)Lhb>nSQQ2+EeW-cjZT=41+q@XR)Wg z_6`d}YkVMlAE})TI_>AaFNU?hui9x{)#UV=+dWTl_cTXb{+?a<VEWhysJ~Ay+O2H) z4xEY~$)08Efc=G<Lga?mZ9DKhyS1rZTe_<1WMM>Sc6Q@*bl<0cyWH<8@?y9$ThH~Y zJ0W>B*dZ(bbr6?Kxb#u>WONpOFq*EoG}BEfBu^M!Kb-TG^f?!H^Ip1NdVp4e7L#b2 zSX#PXYRj+nVg2rLdiQb?m|N^u<D37s+o6Z=cao{W#`5{+%W-FESM9bowo~^J=(Xtg zc$2x$apx3bcd$k1GvdDV#((}X=zR!v9u^trNz}pb;pf>F-&uE!_Y{2hwtGm>|2^S^ zv6s;Jj(dkg{Z9j#-SB<?zKHECrtbXP&eYk>z|jPtU|?bEOfM&<Ozg@+&&X-wn6(1{ zFr)rA$vykX3tc1S(CjPd1?_Oncljj!k|sL-3Gph5CbEDk`nn%FpfetX+&Cd#2sHRf zydNewQA9VrK~P1_MgHIY#QD6;!}(O$2GU#STMl%HgtF4`q_R{&<hI9Dq9hG7^X+hq zUgyiE)4vZpz~}g@S+oBFs4AQ~9iuEA@pN;)C0Herx=-&Z*xVe{&uvW(g8$oHhN>FQ z86Iv)8oZ~1smvCLb^V<4TfH91^}POw%hr6qzS4Q#5dhxs5&1FH-rRIOmt$?Q_<j-b zecvi1^m~5N4Xe9rC-8fZ<997AxA+AI{5@ay+oiwiLvAuezq#`5;<ff`B=+!1+TM<s z;3<qnfyW*CDKrr$qRgv$q>DpxwebBS_Ji2gZDhw`OEIuvz@+VC?(1?Os#UCQy%877 zOLfP42{!9YJGN2hYFFlnIqPzEPx(k`*pZH=Jw_DbOLwK-kd@}Sv(x8AV)PD!%BvYg z&AQ(GvjpJxT)%R#msKXOG2NVJ^#D?dBvXOJ`k@fnP$Gfe3RzIZ2TsWosJMt3^T(l} zjSCjy-$48pa&+L^XWMKOmfctR*pEDy_nn_|tv~xc)(q*UR<H_(Tc8)Z;1m{E^rC)8 zH`GXEokt5wnxV@%Uq5q`DbAw=yvN$_H;0k5(rHI!sTpv-(j=jTl2zwx8n*@$Uzh+I zG6Un+u)`~An%&<;LZnA5gqDDH6fOoDQqw*^o~`UUR=cgySt0YAC}BfDfi*v<uGE8W zryw+w#*9XU>Ev4I1uf7>o_X<y5CXt!87i*)LIl2wKAk>?TDjWvk@{TT%nBVAx^Yu& zD$BgfJ-t$_95O}}7rI1$12M84WuiPp)PrXqL#S-E`~x4wM(wo1JJsOqv%dcMun}?b zb{AIPITZcK*wzW0I5a2cfFREIAe@ChX#BW&z8p!B>{|jN(_w4<=Q~O~1#=ORRBr#I zYGo+M_;%03sDJX-n(I{s$oY<^y8RUMSYu9NyKBaZvcFvcMQ0P;9ZVF&Z$A%_j(ghC z`*ae7F_qUN8Yu35X)}3~iNfoubZB<NsJX8i{2}}#{N$*K_}84{=MYYR3($#)h6l@H z<hS^A4!OBB^a@&VZ7`s%&W8WCY=RAd2IQ)q87*3!w2c*1{p(%S5=vI%fQg#xv6sOo zd%{UqY^9@~2(0tHu$+ALy`+743kp+wW(F_5myzyxM(gonl7q4Dz>FD04NRkHv|*CU zfa$=xbJ*2jjm#C_F&;2PUxyjknR8P7-5~;F%CMQ!TfE8EHq#2ZWUbuR6?`F~T~{qC z%h0uvV^T)pT?xG<)!&*`p%$ATEY+IE5lGsvCa85yqZzeVTfn+}YRQpd$pL$EA;h^V z3^9>8ICF$DS~4r^OBi@hIm5ZsBYUDga;CNzV&1oW3Z_bwrc6{uASI@26<%X)@gvDK zszQ4__qGWGTKA&V2QPm~#%t$5IEg=|q`$aFs#xoj96lu2R>}p?P?5UZA;6Z=FLNFe z)fMHCNTZflS+1=K2fBIJ1?*Co>yl~2WcA9Io_|E0)Qo3Dw^i(@v4=y5GJtm;G8{ED zZV}zKcWNV)HIVQ^37s$PYg<h=_N>Bmu8y)&!b&ZM+)xYZIc%xKlN0%@+(r=_%e~Zr za{>I;!PT`~p{3cN0DXZ7nx^x`kN6X6p2T;kzu2sgPxT;dxgrej_qC30{BINg1IHPm z*-B6?sfNZG&YT*%C9rVT1$G0HW-}8`!H&nwv(xBbmkWv}am%a!0u;pp)MdBaLLRMu zvQXonO9))&gRfW`HGkTc{s>A%s*1Sj-TeW3{C4c%Wl{$6l%IXQYgi@7Xvew@bTg1M z@Wp5Fz+`1$Y>>H8a*gz~O|;<Yok9^WjJTr>F>_5#|8!4UrPHr#xr%zfNjJN*4vmVb zQ!q=P?J4{3EHcohbMOFLi+{q0J@f|l0GmNoDw`ruUw*yctp$!zr!bpg6VC3)0nr)6 z*8d**KRY4JPdm+Eb?UM3^Jy0Y1(!y(k(1BLoM}13O$C<#HN2;bfzQC#?Q|x8*Qy^< zcg`a!KwRgO3w}hQ*#W@d;)Jk;PUi`e)^u}Hj7wwltN+NWzaU2soq}3R6Q<nkT(zZM zXr!ts95#QADJ`^fdNU*F`Yu#LnLBdKe1)L(L`Kj>`b^uFJ;Fx|$MI!-eru_pb{e0b z7d)0HrUi{!|FsiAzE_D?xhX^VIL5Ihm<OV7O+vjsq|S{K3%o!p7it*HMv_@RuJh9t zOz+fPuA$$75^p1)DrD^l?xqriWks(gWo5Q05b6DXPF}som+$k??o(U}z8kCO<H9Z> z<xo>f`9cA9fs{|DVhwg|=*K#ZR!Tut0#|)-HI+74+fZC#xqUj5eeQ|j6PbdqA3y5& zdma73Z|kveVVwb&`<1QU&8@H+IlRzNznq>m#;j@&VC-TbU}@$bTTl&CI7K?#3mFYZ zYLMxlc4Da~3F#tCNar~&e^>P&Tk?Fo*rHd3!L5k?$3`b)H%}&dzH-s6={!_-x?|1A zky9`t4I<>S*pQ3mF9APW{ydX)-pfZyvRsx{(UlY@M<GetJLhy$l}BwNRx~6vVSlY> zV%V1_PTFWiM+W!<mjq6GLqdM}X9D(OvHZt+#EtF%-}@&7BmL<|mUuoNA7k|ISM66n z&dCrw!Mq!0)HtT#hZTB%fIhFd5wli-mRpw*w^GCN1Wxu<I`?IBIf-|?wc|SOdU|;! zA771c=si-qo%Z(j&QMWNT|Xa<GHrDG;7O<a#QDJYps#Ir>>O?((&Pc&5mY_B-zEb~ z^Sv6MkYo8DW?0a4ryFhde>Rmeg9N^`;aYEbw1KX5a?1^vpf82yRk4FQ4C&%JbCfdJ z`_~Y-t`WaN`A#9>NbqcR+0Sd*-#f+N>nH+^@@ct%y9coLlz}y6+APJH>&PGhm-&?> z%Ra+cJhYt-rv{+94^0LC9_e0RvxAn<f#1%}5;w8Nj*@pB0JZ-6P8iWTXv*FY{TuET zi%vUFWxr9uRmrQbQAfJ%FAF?1yNnuJ1_3P{8!W50ld!h$_pc<w;d*FPoFB|RMVJUH z2GUiQ`u){j?}swrRFprSm7=ObSojIyG0|}n*T1$|=8YZLCDwTTBE(=Vs}uMZM{l?+ zw~VUo+L1l&bJxiKuy4a}`TF7DYfm@Dto8&-DJ8L!nQ@81Ij~|;>Y3`uXvg1WvY|&` z{LeeEyGAB5K5JdLq!y#ev0ucD)sZV-WOnFQD-AdtfvjP3Z?6^PP^6Iyn>Cby8k=Lg z8f9-vA8a`t(}NkBHrKtZNEm#|6GqM0F=K`2UtPO);-U|$gOLXW#+1#EY3KEb9s^g! zY1S%R3dhAtZaqxbWEN@>;3je)8m0W~#d=wnY3<*2kz)nY!vaT8sC*g#L%|jxX0`_l zb3N61;d}SCcc*Dce@DB}0<zY2$~@6S8hB=wJ?5ck_l${cNKSKg7X7X8ykolg@l^J% z{{a@?{w*o4G{qCz7Ns=X7keSlBUhxFQ)-`T$2j2+cJ%IYEM&Qu4pP&sOPSJ0C{K?h zbB>K#Wz<q@(FwGg<bOXCEoL8m9wLKzJd=+XaZf?!L;??k6y$I%Mb)DEroT1@$O0yp z2rX@L6bZSRA3p?dXQLdC54|n<eJt62$+YIZ*<Onj6PVz!=zH#78Fs1r-~S{oE#Tur z*zo(PC0Rd{$`3>+s4yvJqFJAXd~HK|#|fb7{sq`V5T4mkuzA#&sa8l@j}aW|dg0V2 z42>D<R(H{-hngi-TvG_5&m`ch-6~kx6qA2Cl6u<uyh0{K*w3r@0nJuL=sMGad;}zO zNO2+B|1yJ~#8pM<Sf@ZKfGWM$J%`qRX7P5&-+(&O;v$nnrzdKJ)=_NXQf}h{uU5uM z{Ob9uOYE$tbPx+)@Z*|iNDpx+MT%%J2|RCCJQ7l;T@u>)?Uka2jLB%4jo$HwOXorz z(|L=?A*IE6F*XNKG0wl=+2%=KeNjp@n-f}-HQ@IdMc`7MKH5X*AE;@!zY!t&*{ray zOVK$MLcHgUtV9c%pnV#alo%jEi&T=zgNKJEFcew@@B})cBoan=$=A#(xyR(}klZhG zGd&-6z`V_G1PuJ7ZvP(I?O=Wnz!sMXL*;K0Mw0e7MvGbALoe(WSua_F3$4g#<*`H` zP-&>;b452}6tFgX1*=RKEz4pWyxYRo337mr$q%qv2?bpaAzM>FiODd{9n=)(m6rZ$ z6!CoRFldz3W}CD*&Uo>01c^=k!@N0kcG^2%3j>^+iKXeiA7saLE+xvlTyH7?1r9rC z`+6gfVdU!j)ibzaycnE0*jbNfggsa|)gNwCs{3rCd1HQ+f4X1W)theNS4m$FH1PR_ zrR`(5&t4-BfNd3Y)P_aYr&_2Br~!w~KK8!w2CD;%_v@FZ>Qxs9ZF1wzTl6ay0TuK1 z<Qy!yDGBrFfrF{}67GF{4E%)qg`%@Y0_eO5!Y_Y`J%OEEb>qt@uN{VT*u8A;+Vz<5 z0vr+iF1sI$gEyuP?a@-H({w!<(KR*nG#g9D1l#pbasjg{d@IcM6q|*OQJTJ=z}=hA zj65EKi({C)it~ZM8VH?}e@AD#_D!d>6)P?h^cqoM9+mY+qcrE^+T~)_kCq=EkFe*H z+EE)Cm33r^k<G8z+*%zsC07Wcx=&UbfEJLWbb#Nxo{c-JH@pc$PjCINzxMY#Se&=p zEcgd^(IbED+kB~wxMm6Iew_|rNO;ttjy<UnziiSBZfFEl{rx#S5YUB+c|K;^UE|)S zG{GCRC_F5Yk2f~sa_@w8<wRUfkM3Y5Qr|v^#{>boq3rDHYB}AEaGH*Vrn6>CtD~Zh zy(XEF%3`P3TLt_VhXPEr_=TbGX^5wmc&hTRwK?0&fInGkiBs({AM4&Y(*mVw`=k-7 ztiuiN>2hml?;@csBr}eF@A2cT&EX6GlD8|eC5Ij!t<C3A_ug_Fx1jXxE}-e=Rpejm zzni8b$Q<XT{FWEU8s75ZhY<`-?MjBFT`8Xs%v7ReD+gdeoZFp4zAXW)Ze6VK9qB4O zGgCj7MH6N8xFP69lQ_*$sq#cdv*3cZbg}fY?a#;ILteim9m)LJi<i1QS_BhFU6tlH zCXuCVS7nfj2~o!hFV~}X%2^P)UQf)rz2+llLAUdx@v_hDX)POl8NW~5AmtFd*RSxt zfL70z{$8TABks|jm1!={UW;CltOWM@uI;MY`(<<4@7hiGN+<zo$oBIf5i%zKfKR)d z7B9e44(0A>BA{a3q^hSb-omgkeky_xR7dBaA!+X~BRLy#%b#Wiyl4@8^k^QuScDMW z<+L*%Se+YZv6HE?F2)uE@@jKZ=rY6#pY!Qtc9&uTmAo^l$ask1a;QD!mKzzt)+O7* zUsfZ4((!R?mIxuan+v=;EA~K0(SCK|Plh>v8+JTMs7W*Tm?hQS+SPQSysI~zQLEuI z(6^jT-*pd1zzFWQdRb?Eh+8_Ri7d|<V^9=12FQ^4z_8j;Ab^@li$Rf=cOz4|OgYz2 z(v=eYWyd2VSG>9OWUveui@-7i$g~_!fYA9UP_y}7uJ>3=c;fc5fNc2U{Vp$~fjU>t z>Y6Y)a000Z)cNU4z~NDfVGA~`ys^d2Z(Px*gLh33$H)6fVt*0&7z<_B*z(xK`f%PZ zhY`|$Xv@VTADgm;#0qo7h}nuB;A+4XI3sQDST|+pTjz~$B#p7QM}_fQAIq`wNc-+q zur@&G5Rg_}m<ufh*6g{kp-m_MBf>o|MQxgsJDwxFsH)DZ)Y9>Z1Y&$o#fZ!MLFKKT z-flpQdDEg~G)lszWeaOFSIV&3m>{Q7bEp3nHxqxa2=M%Push_T3_qBNtYysjZ$pC2 zuPpFXfR144$IB%)#FICGLGiSSdrdgt|6%VfpyFz>MgN9ife;7;2o@kDxCDpbB)A1j z;{*@x?hpu02=0>L(71bo1$Vcg!2<-hcRHDQ-`x4;-v3(fu9@?{?@jmW?$bwV*WR^j z*RSeGJ$s=%Gvo_18^kLxG*7uxYPaGrW`pYVnq2?kvh2k1Pve36_H!mt8_olMad{HO zhnW#QlJ}4-(Fs1Xr_<9-*oeH%uwAx#rw4VwZW34uvl_lsaK9dW@LkS*B>o<7WmH*u zfxLCROpc;OXTn?99axYBdnDc?LdF9pD9X1`54mVe$_qQ>@UkKy$IPU&$>S&;14I$1 zfPUs7!}?2BCuL(yDc){o66mzqwz0;b#|_nGE(->&)0*jEj5<ah!$$nr3&A);k|$gf zCHV7sn&)-ND%JILXj|nTB@|;=)cuWqur+aBg-v{W+3s`MwY9~`DgH{bPLFGx^sVg& zq%&<XBszH9`G^XTPv{M$>o4cmEfbR~Lb^|Y`va7V8g+#y&X`lCb2cREcnAoSA5cV5 zAk`%(*K9E7xsqmI5e@P?N8x|zd%B(f*q*JC=VL!sJ4an3`4k4eJ+&JBm{Q5lQBO~k zK?lx7t}0n&RvKk;*oQ+#DTVt5-Nle{3uRRAFuV1<U^`n)L{Df>j=I!|2iiiuyy)j6 zo;_jcCc`J&sUs(CSSl4&mB=L~zoU)%VcnN`)wD&w%<}#3+nnh=GGSP<8*=u;Dr4cR z8=EO&m85;?6kbq-)cRL}=rpSjl>3_#p4~@FxcbT2LjW}?E}hBE=0#7Rn`$mUsX?F5 z^WAMp<0f3f!g_tt`RwQQ*<IJuHy4K<JEa%$mD7h!UM}3{(_}Y80<>;@bJyI*9$aKu zi;G87MD`=Z&pEQTRA<)~`T4n^D1$FnAJ)J+?~cD$job7uzU%VwM=yfCed937@b(oM zxjpr!Gab4pQLiuTuGW~Na&1=*PF;V00=+2|dEQ9y1i5Q>`gZ^H(6(I`W^eYFg5;c_ zDuvpq2POOL_V2E@2$?W<o;&nN6-DcbPS7Q9p59T>qW8ofo1<44``BqRUf+23%&nu< zt(qe2A)|3dY5%S+%sX-%C%AWALBjLX`YP3EP&ei{EB>AD9a@;}$HU|zaZ)Ggd%447 z89jVjMuzTBr!bZ(Wk+q4$9$2sE@S9-a&1}UIqXHX@=4y^xi34arlJf>h%>9giqR*r zB4+!Z@7+IHT;an)`Lgm&^d>X1ar1kU<~aJRj9mvNdJmhFlGN22Q;kr&D!gesT87;R z>u%6el-+vn9>nE#S?QNtnomD27P+Ougt`3jI_{Qp%hAz?XK}p{L7$P}C`E!<Q_!8X zFlGl2y$Y<y550nluz&YV_^c<eEOg>0MQAsE*30x@SugqfXBI`XPhXtr_*UCpO$F&p z4b6G;z1w0!dgsy{@};aAl8S@7Ip{NY&G8qUEgo+Ud8Z}Z00RM;FqM8E_i^Xz!Ui3@ zX}Wa<Lmj#cmh;vrSc>K>3tIKNS4)lyteSf_cdEC0#GzXpuXY-x7J;6GO%TRhkAj8q zoEH9Lt4o+`M~mA{me2$-tt<wb7E^IQ$=qXn-3jBgpd#!~d9$a)t%*hCEptvh4`!r% z#WU!SeVyw9hOb@&mG84cCBEiaUjFdV++2ss4`-Y@Sk=e+1%*`)*qujt*A-;)JBhT) z#^`GOF|&cn7RYCXLFtrSZ}&%Y0OQY^E1x%)H<&ML=AAC32JD{g?&N;Q><nufu&&g9 zqI-d7=~&c;$&{jBI7wg9C?YMq#2PnN+cxGVikxPIaPaw+PISp+Z^&McF;W8-(a3vy zx753H1W3DVh|v2?7&E{~Os*yZY!V%D)`P&|J4`k^hj{O~{7JfB4n3_tS<4FAMqB^0 z#;L`3lq<bVLU^h&j!6l=Fy0;RsXfzUPiTKiH!^eDIvNXJjG2*a9z<FIitK5-E6Txp zydI=n72NHx+L1NvX|(>_kPJpM7cw{Va{h}75mI)Fnf2EyggCUhp2o{&Rm{+k#tLGw zB@wK+5naul3zAifo|m6h$ZRzl6|PK2LWNFr?dTNEJkaJuCETP21@4Nm8mAIg`DWN+ zY6yGRpNL>rrJ{W%2+~${Y9U6>Sr#Puo<BOmarmVJaaaHCuEF%soy4fCdU}Ff8aceQ z;nI$>sk2uJ0+vQtHA_K6R|@?>BuVAM40tUG!o#IEyoU#2hi@EjDe_Q3`#10|9HSlV zBuUiKp*sb&sw?X?Z*n|dYe-@_`LFF0Q4}17i=D74I~A`<VHG;GsE~B4b1h$_%@$WL z=3}!~6<f&)tEX^%&}I@k&_AzE-c9Ott^M%G$hmgU9GU5pi!c_gHWR(JJ0Ta=+1Q81 zbb^LR+CHUB`xKY#GMu-`s^uY~&w{#<56uF0?JJfIGT=sMddU-)pRaWO9`N`Jcf3m4 zg&}jnUCmLWlC<D!tL$;06DD1yrO8Ac8tiy`Y+KRSo~M5%HXLKRT)8I4?dZMX@W8MU z&02ngcnwU=WQ+6iM;y!qT8~MpT<2gH`GXxj2<!XIJhlB^Kp3LaO&GbwkKPiz<76x& z|59>uTJ)C0=XNEI%@Z{CsHjaz&%P&W1=4xN-OYLCd~8-ppgjH6oVeVP-R;KUX7_Gk z@9W2%26qg2cm?pVl#ma0TL$iYrpq54({VXSFp8q@oo*W$EZUgve9}+wCf3J*@l8)A zZbRAQI{oBtW;i+ZXj&b#OkUdUF>WEeBJa<-lcZ~kJAb6<$nx5!Ib>00Io@3&duKL< zZqwT%+fYPM$<m-n$T#CAY3`4WS)(|<Pio(|;0Jq^_@UjMYLm=T{#NR?|K{#}G2>e% zyPB6q1mQU-EmSkwxQ#klq&b`AVOMnrhm&ut@Q@2^XX(~w?<nf?8<Y!VoI9Ph8y}Nu zYLUGZn7NZ^TW;$ZYP9F1a-_36=M%LPndn-yp%z-Mg+z~6n5(W(KE}T%ju$5tm%FVV zd;k-r@u)=0)8syI-jb@AN#)UM(yZLkn%Y$pM_07$YxP0>rWrs@a`8koG>UvF{^44D z5xD>?!}cT@Q%uGaI|fD|u)u}oqGI!AYi$J$-y|+;c}IzbvagU$_NUYSp)%8b<FI41 z?va#mNBa{t<$2@m{8^p|x-|Nk_^VJ(0gd*xMDsL~J-7T8*(N{pb*WtUv;=Qhi;At4 zXnSxw`3)Cj>s0k?jN8#*hQ{YHq7O-aHlg$vRgQu~X4}WoMKjvf&~R(yI_CP3NXJeL z8%=Z83{GFOoS}h6mJdZw_2|FT0imQ-da)xlqwzgKS3AdgxDTvQdEZ9}D)wfswjg4{ znT!o!D{;I)S!Da(XHEGN&xZC3=*;oxpF8LnEqvYIqeItNovkVFvwvP)!6<TTI|1ge zIqsf^qI`Bk`*{rQRux`Ka%IP0Mm^FK<vK~t%9A(Ctn3bBX6+q@NB*hW^{-}UV>q3R zXN)wchWGlPlc?;r^6E~?n|)h!V7e#BdRuQVD_vnx>YFVBY;<_eolnSbH?dKh+tc(W za5zQeJCWovE`N8*Onl*@-1C}`@3Rp}lq{HK#Ch{IE0l&D>DINLymM$+hN{%s-l1F2 zSyk1V6BCWhCrRR+k>RqJw<ecKSD&kd#E?qA6xI+<S0DPiuAf<G$MP7dCd-{qIE#Le zUj+Dy(PQbr;myZTs&lm@skSOLHj#27E64j}uq@D#QLslP{GjUdZeq*5MHI72d#=@U zeTN2u3|_2GdMxa^UhN0>zuOZ1P@cqyI{Ogiu~#g)Ay>tyJYQ@()PLVz1tqD2*Ap6@ z*L?yt5r<ZvsixCUVIXSxY|&05<E8YlrxTSh?hR6GJ)q{rA41jk#ofVB7-S{89oE`q zshKZaog=R^BD2V=HHatAb^Hn&7+UqHz+Ym<t)q-02daMCJki{%Nsq+VXLX9>Hu~XY zuSnxV2995Ds1G_=WI>DxMwIEbpv(qNRZyRP8DZ#?@)pH9*H*W&r#)>i_Y<`?un^~# z#?dhIV^S~_=1Y~8N>B_qTEbu4CVPTZl~q9@H)urjy3fx~_L;qo<B0b6byt&Heu;fg zNe3-<dd5+P9p}&nH&=EW`-j7lA-XcYPrZrV0=6>4AWqah&phpV$>^8YUIWt)ti0+H zO7t6E&F{d~DzG$WuCd#9+vJZOcG$_zv@NZ(jda=M>-JQpl9Cx8Q8~L#y_D-{G7{O4 zTJxQn{HiQe{X^v~%D8QIxCwe}{shE=7J>e~L+DZ!a0()X_r=EMV4t~qaK|nRW?h+b z-P(@gzFd2)&8+doBFm@w)R4Ie#Cu+0dAb$&cQpr5`yXrQ4ouzCXho>u?e;7AmP__( zJIz9PVuZR&u?~hXA9D<?JxxJSayTzUx7RAAS8o1@ZqKjvN%F~_R@R(W?d_0Z#y6`g zD85IJjpM$ysNR$2>%Mt{RHFa!`<Q!^Sj+_-Q77?7n?*x%R-(8?!-*(`Ec%v|aG#3) zZ<>80a}FF3R8=4ccx&r8b%>e@wH+-9xta<!h?;p>yiE2yJWGC>zFL(dauq3A_FA_x z(CsyAyQti*SFT|9(`_6t={k!tvsI3lH&0#>K28oE;NX>$e|}=S$FyQYUKqIf$|x@7 z&HCabQVB5sdgYcvOXfE`=D0_DCJ%6kFC*1%@KT)?zIZbX$+=}Dndo~wANgoMV&x3* z3f;`sy|)(ROYCG^2BV#G4s_N?H3&r3)p01VpI0%z+DY?M;Wehr(JO9xy4oeAo_2LB zKgVpGLiyTK_#_TX3y(Zc8CmHo?kk1l-QGKFTLpC1Z1mzL$Ar6=TB|jhwS=0bJLBmZ zT?plw;WX+f?vIr@S`>$f6ec;z!Xw2c2pUuaL(d`G#U~;i%gjTAZqV}kt^o-MgVOSG zex|$b;?Vg+Q<_^Q6DG`quL2t%4Q5R@Vn0ocpie+YoFiRDnAFa`1zp-=5G<VKBBpoh z9Zsi@qBIC&m)^Jzo{&)5Q6)<pR{1)B_cFglxG5>&T^^!yc`Nl;mE)|Op;#h)p4BeN z7w0_%6DTy@ZR}xzFjsS!A<;}GFjTj=iKbC{ucKpsx1Gj-ajuYBI2m)zFZ9A}XwZT9 z%A<Hl-z&_=2jR|LIevSq3iDQ<kn$swrgh4aV&F;WX6`2RZ{OtU?s;z&w>oMB3DSom zTPsNE6i)J@(pPx}>l<D$e0R<FQ%{AN<*R4SsYK^!{>;aJtH!7`2F!(YUWbbywYsLq zX$Z~Y*P1gjO(zcEn?`oAh(uyS?L2j7FgTpfJaclbDbB3uvItx0zK0Qc655kmKHoYt zv-RWC4oU!OQ`YAz;Up4@@)6A|Pnh|Q?Nc(s<XvL7d1yJ_aq72Efr%2^+&gUOn)^1@ zafB_Hqu%vJU1U0jr@CjUQ*U?8G3sFKbyHRN_WT%HF^L%Au|DYJD<nMh#<_@sQ}2RR zzD??^WWSyjqAI(sd}&aw7;5A(I@VlJkw-5D-S$uJz{afWOlVJUouCM>?l;!*cZ!tm z5q^}z6O7zT@N!3NWB~I^<g`l7e6k<a1!=|P){v2zaDC&{@*ps?Uir5^!HPvsClprI zWcL{tt2XWM;q>}-dq^vBx4WhnBLS3*dt~RW#gn&IrI5Hq#yg8rElsKq>7^#TEiZB# zU%S*rl{^3pj9*8GZQHP@G6vJXn%gJ;bWm#xQ}NmjaajD$BOfi9!HPFIHs;=W;W;dq zpZ=5Gp4on<Wr#qSNWzYX^px8;{_CNQ@C;E{awNBuXtL}BGB>;+N=+ZGEw%dx+Jzlo zv%_-Dr+kKEi)%C6o+(#&`Q^_)P<FIh%Zy8^=<MDNquH7EjhbUok9M-qUu)wWx0&?K z?CAR$%$4~)4=GJ>D)dsESm9-}q+4&ERtRu|U8M6@tQqEO6keD$kHa*&TmPwv6g2yE z7l!W4tfb3et&e`WZ<xp&yOSEWI%5<@Gw0+|=OK5$E+)qeaU}w|E>%K{RY{W$m!d-{ ziSGUT!xi(VG7e+`ODSlt5oh+dBZHL7Hhq&3wN>7PABB-Z{W%Y-R~zXpzIB%-TZ9N7 zmqUCVDQva<aq}_6T1_G2`}+^B<~|lFbY(VL$J6f_RRmBZIX>r9v3(Yjkkfc)sf>q0 zVoBXFNRvj<sDO0I3{?loG|y0-{ajyAXXeH?<b|zEN+V{dtDJVtfIUn-UkPSbbw$O7 zY00wX&DL9`wJL=bhlp)AL^i|py)>sI!p~S>(t{SqE#ITGx|_IOPF&ATh1^jEyUx(n zH2&K+;8q<oPjbBj#1hUiRB5Na*0Q2<o1dSY>-M5y9GH`eb=~C&$|!SG(;W#?$|{A+ zTHE=14%v<>C*MxzNC>jo4>MBKaE<mHE@h@(S;{RlzN9Udyx`U#7kYy61z=v&`M_Qj zLDH(XyDV~B{Np$rmT2Z-T~EyIroV8+Bwg7GgtHHb<9|yMu1sz{G3FE_Pr`50707PB zBc9D?75>6i2}w~WfIK8t3<b~ed<6RwANmV)4_!4Q>LBE<EVQ!>b>DL)guabNR2UnK z^(OY7SAytQW)$+>S-m!Gbn$JIadmEf0@RIV%c4+`JE#MW!-`K8zudusG9UwO#4Kay z)xKyjSL{=*Uf<ov5Z+Y93)SddgV$ya6I0%?-Tu3GH0k!Z%2Ab1zR78D^E#?jZuPH+ zdkn}3o%BX&Nw_VA>8IQ)yf5bFv)KE|-#U8SN8g~*S}is5eRGc;!p3CRo8T8>cHG12 zKPA@D8xg1Nn>=eG2R#V=D+nSld(l1(V#KPrWt}=dikoB^=is#u@m`JAR%4x0eaRZ` z-*uw%A<HrM{eYe5f?b9>6U>0N?NxbT*tc)tE8l`YkNNr;A<kMLBVfnWC-_@(mhOH& zM<Qd;o%26qNn89L#Q%MFTTimvil<gTIChKWf|e)7tNOrR>rjo~hNWOvzu^$}>^(<n z9ounET~#7UPB{Zo3~NOGf<vK*!}z)i8_n#QdFM$ln*Ej&rT-v5LwS#S>>}EZ_m@QZ z9z$ob&-Z{cvbX1Kbm?C|u_k?v3d_}^n_Uk@p;Lny#$M9gm&8)N1%0(^_|4|F+Jp=+ zgz2Z`O6qOKP)P|4AIPPd7>%}b1W$7JbFwLZv0psrp_zqX)+9xoFKxZhVVLB>z^Gz1 zEHq%Qdp47xf0>BOd!FE+D;xgw2u5A^njxz|`;F+dX@jHk*C-Xj7RCLys}GW8vGASc zk)2gu=M3MC@`rUBVBody1?RYJOnH71I5MU<K<=_o^ZEEwb3_e7U9T3=8@vC!5RtM? z?rCa-$T9z90L7|W4a!WL_}eW%a?+~M=N0!2^6b@KD86#Xrl$yZxNlHvuV&PFuV!yd z@pb!CO00=4#itC&`inB&^-t0UNlWi@K0JJ4eO0NN_7qED#`B$Mul8WHCG_1bdullc zHvh<+^kvCaGuk<w@L?6ndu&QM;U3}~7_Efte3;th9GfH&Uio;%Qm|6s6!Oj#!skH@ zN!beY)R7*GyTU{<g{nyXpS=qx-B&rjd>M;jRAJ1yO<clJh~%@=s(!a5tmV}>n;WX; zU6{?H3@Xf$nwzOye^l`SS&i^sR={oR_U0ID|N4zC2?Nwcj8_lX(vwtbq?PLYo-cgn zd@~VzBtx^(`<gqIE<SjQ*QoQ`>B;`Ebuy#hPIptM<yPL_UfxyBp_V3LS3>A8QL#?0 zJ22+K(Ns-63fq=$DfrNDIR3B<E9Mbf_`0n5{TN4<i|x|mfc$4i>_Go@mGYugaLnRC zSz-<13u!b(VglOd6F<z5%S@O*a|~wlVUU*I`#z;OMO1>PQlN4B+_VvAzgjJLABBH* zOLHQ0^Hqb!m*$v*P_b`Bb8>@MGfwSh2Bv%UL0G(UPc?j8YSah6;7wZgKY4?>h*OpH zfS3)jgznfWzFD6WzpYnH?E0>KMf1{u$U=rw3n$NaDPtBf+0{?a4(DbOeCzijdFx0b z?(Oc1uX?1OU#Ct-bhF4Gi3&W#?zk{9J66(;E(m^RcPT*EqF5wEmBu&-%{yG=eoa&2 za8%Qo%C%7s^E_4^luD|1B^ky_@z8-r*SqI<otNG=JW8WnZRIl}MKYm%P0OsN<P+=j z(SrPzL8e~Vdmk2rqHkl_{Fpgh4ETsKj92R7DqCn8`xdyCcJD(=V#ZuC_g+O8-G3O@ z%IeV)ifmRPrR(}FQDHH47`2bYj5ajx-4^#7D#y<q42ay)sJnG5E~-t-xG$`7rsvwG zF|urw>-g1MlTrohM?OSnANv*%)KoT_30?^X922?uv0FyNK7TGP3jGQR=h9xTE$AMZ zERGC+B1Bpr`k{f!JBe<H;v(iM1U-hhV{#yFV#O-+rwU$?+5*vDL(Pn%{Iqn%lvdDy zd(F>q1CsA~S~w<Qy&~_O?{O044Lo;<h#mJ4czS%dB8V~p?cL@Zve45?M0JJAvgGhd zG{osE<*LLwQnel#p#p-3alJ?)u^|#o8YA0t!C1?f@$L7eV|@iidVg3wk#7BA%~h5; z8E{9(y!%eugo!50qg`Bvnd{q+s(QtKuJPnHeRw{2*Nko0_1vI6gll&O!-%^7ydGH% zei^9Hc}r!#>SMn30e3lb3H^r_tafHfXzD=*m}MDn8FY*vb0AUXrJBAfyoGwvB60CS zbLOpE?~4cf=1(SGy(==H8kBooYJ*wz)3Va1Y$(eiv=^zL&QA4(;-Qte;%5?i|Hh=# z^c;V}hcH!ONKsbYot^9?Nv1>hyzcF8oq-iY*cE05FGdEjU{>Rz|IAU2TKYO>#s$73 zzAk~)goXS>U3wu#H~eb2mpivGcM`hlHu^}^$sUh}2oekDqL6RsLOzfMP&UQJw(zUp z!n!^7PPwdCgxfi7L(9Q^#UQ{rq1ReGqK5aIW<p%S;rxnTWU@-tUZVDEO^p<%$H$s0 z`F9z<)Lghj98;EMSbZJW)zndw`-$Cxi=pAYOv?tS`T<kN!;!6JxSo^hD_`uNE=1lz z_89DaSwn2+Tk*tY+_<m3W7}oYHPpW+%DqI7+Bl=VSM+DqjZeu@bL-manDeYNnN{<Z z&!Ay<yjF0rhSWrv0w15ri=#&sRTnkhSIasmHaYa9L0lecEdjLpBtN@f$F}Nz=G<XA zwA%W<B|sjy=S&&oHR78;9=O7L@4ZAFsoX*=-6{SzneS4MaT<b@t8Xh;;{?66Ml@S| zxN?V0ZA9jkTOjX1A+oO%S!?}Cs4^yHbit82x)_D6#bT&~jZ>_D>3dnUf&gTSY?=oe z7{2$S$l9{T42L9LtJUn#)CIQ}Z}iK2_f;|lUzN1<Wfql}1a3O&_U5QIOcCJ49qN+p zj(gLWkUnrPQp1cLu1wdTb1oEk%IL9pB6z$s8r8@^vm7?6an0?{g+`lP_}-EK0bz1L zQoEszt>r1@x;iBMu=d46oq-&~mo1_c7_fI4Khz%tqge*&bp&a6sz=X9qYY-hz2LU# zBNK(XD>zSKA;-B#dJSQ@5V+f1CX)eAQkH$RBZI9dfA|1xVMR$;BL9w<9<p#>zOKzr z+Y`L9T@fF$<CP2j6C0iF%%YM*8Z*`v6g{PBzQWbu=7M8a-F?pUY7NiMQ@4JR3&uwR zN&Z)aN&ERH$N>v?OnB<l@7W;&XCxg;WqaC<@}?uC$DZ*nG~c9gu8diY#xg9ZeR+lo zrDTtA*fUYb7^@(p%N0{oHDYG;o<tYie)g5-s6AYd%$$Bj{tS^REvhH4n&+o_9%uES z#$57_to#^866>1ovaZX|Zy&juB-7qun#`-ar!0MJcRhy@^SFFVdagZb{W79>d0p=c zf!Q683mU?V)!Q*$qju_BAn4xYgg;)wxoceNK6^wfFmrZWg^@mRC)GcTH}6fgN3j2l zz_%BH^0#N3pMRgYA=R-09!XY7fHsS8w`7_{LJ-<A16;1;@fwG1xDexO-TOj;*GC9W z=PfhMeBvrs6m2S^y1WI>?aBLMy;Bf#nBFTPLJIY^<OvZ0V}Wh1&Z`oN34*PNv)6Nx zE~l(B(i#c6q#1RbeHdmRjP+#^Go0VxzaqO-j&K$*E_}oX#Yx2}dsf_b;PG~K-bLL4 zDX6{lutK$BMmog5eoglpnAVBv<&(^smGBpjGl)b*i6t>8Ot&=OTAd+%OS*ogRE2TM zr#ENCa%1*TX<J0I&NbZ6i2ni6(q_A+?VKg?a5U_`cJ<T+qg!i=oPJ}cZy0c)=mP34 zXWEMV1;?b_2mjAKA9LS)sqEaL&MYm8kMJL2c#Qj1xDZWF1WkWjh=!Bowvm82I~z)7 z2?amSmeQ9aiJ-QLJOy?47!n@`$;eYy7DO}L&y}Z3FXQpk$nLZg?0cSGdKcrH9bcI2 zPYLK0&ToBe@8(|`vL$rrIGAIQ=vS=@8E`t+ow}=&KMi4++KqTJqxzX80I!`B<#k`I zs02@9s0LQ8Hx)r&^jI)*$@4D^_Rsz4n_#_S#6(pn!-Z)RvF&<CK7`x1QjVcD&R2Kx znN!=&i1BjkR0GQiFkaeaK#T|0+0f4#0&RQ;LMpkTQ8}W0Q_I|LR0Lzjwm-Q&+}ZQ< z?I>*W>DC)_`5f-xjdfPi6nB$`l_~MO=T>vMla+HYAM&Al+5L)Jir%)8rm$P=>lDcf z)QGbB@vWTxw6-q+;@_i@*?4a2SqGZc4!y$uPSn$GHgG|eipaoaQ$X4OTD(GebVVh4 zETFlNb9;MR95rKXej<$Nvt;Io<wRzWK)QJG!%UL;vzrrN!R31K&y!6f<5)pMClTA? z^Mag@Q=~<_8uyHKm(9d}p8U*cHimd;;xrY<`59E{o>y71^JX+Jz)0g5@C1LHW2V_1 zEqQvz?ZR$bAb%`Y|KC^gn~{Cr+oPT|PduR&91vyc9<XtVz9D9L$}J;$_AS8XGSjxc z&W&TN;1ObWWvR;DuIaV7EX~40!xUzx3-1=G(QHVMckCr!+yi-kPwV1)W&He{i~-JH zURt1H)Wvp}!Y?{DYQPH2bWm>SxLK{l;!vjGb*v|}GIzq7bxq4Efma+K9X+y=bhA8? zzq^~_`pJAuk$%<ar!iFEF@y}?fn3AW17c*D$KuVcvrJEWQGs;e?vTH^I~xAyf85Ih z$nlH+X0Fi&zizsm)%D*C^@Zd^r1LNkfdtWj&t2f715t)pLG&T)kf#t12q*An1%6q8 zU*KkM;Pd~Ua4s-42UR#Xn3{tsoCi$JK@`pk)OyhBImp6Uz|<U6;jCb44ytfAFf|8N zI6Ih{gDRW@OwB<R4kE*`f(ekU5D+m6WZ@uU6e|Q&;h<s^h{D;xWH^w8gNRXVKqnbA zbY=s3>Hn_^2N9##AfO5d5u@0E0U{6`4n&M%1BSyu)Eq>HV*``n*uZ2skcESYQEXr` z92*2wi~><OeDoc(AOo^+5HX4!Oon3zli@%X4kAXegUN90U}6-=!a>9+b}$)^9ZZY@ zSvZK}aO_|LBs-WG1+s8ZF$zTC9AGjW$ihKnIQYdXprJDdm<$K9a1a@e15AeF0F&WB z77ilAae&Ei@GIj$3^Je!2a(}8z+^ZMFc}VH;h<s^h{8F+WH^w8gNRX_U@{#1if7Pb zJIKO8WH?SR8IBW7h67nRhz!RGCd0w+Z2+;JgDM<EhT{a2;W)u$IFN;dicug6=K_=A zKo$-n!*PMha9m(A9LT~!WH>G`8IB7~h67nRhz!RCCc|-o$#5VG2a(~pz+^ZsFc}VH z;h<s^h{CzSWH^w8gUE2)U@{yxm<$K9a1a@e8%&1d29x1H77ilAaf8Wl++Z>s$ihKn zIBqZ*jvGvd16eqz7zLtm9xxdWWZ@t(91oZb#{(wAfh-(EhT{Q~;dsDgIFN;d$Z$Mh zG8_+>3<t7s5E+gKOornDli@%X4k|{0CLDf28ff>Wf-W31hJ$Mks&LS*hl6Vls&LR4 z4z4+<!a;ky2V8Sdg@eX$aLqv#4%#JYaLqv#4jRM3H3wBVXwMdbYYwV#P%#Qb;VgjR zLAvf0eqBGP!a>9+7BCr(1x$<rSvZIo#R4Y7v4DwDAPWZ(qgcRXI1uM)fX8+a8IA=^ zi~?CWh#18JCd09S_k1|Gw}Z%VAWoG4ze5p3hGPX2qd*o8;!qeXm;lKNCPslQ9K@k8 zRxkk)KI;@{y;P8egNRWe&eH&ISU?;K16eqT3<u&o4e&At6{A2D4&qb^@MkT6$Z#M| zl>pZq#6dt1=V^dz{x1SZMTjB92oMIptQ>v=G`zF)`&r(E2><;VBq9H3`pR1XEG+)r zw3fNRx;GGe;B5_g24M!?PQTtv!1R_@5Cb5S)(~^x+ZpnEjRmmBONa#U5e3%i16$02 zHBg8N#0>Z_LtX*jhCm8T5M78JaI7;#5J=ku_`p-)2d2h^Pn_uhu>k&A0&DFcR1jNW z*$DX90&f#wtuZjY<{w8$07t<0hCpinS%x715?A<74Pgjm*aA?8@mJ>Te`VAX_zzdh z3dpW5pc)gfWD8`R8Tb!Z-ws$(hCB!0kOP=46s|B_x!)@50NdevoBfA<bRmvFN+v*B zx)8lz#?k@I4>y(_kUG4GEPx#Teeq@fkH|GGFnQ{KcTUuQ=+W?kgPY|ad$0vyPJO`8 zR)7hu01vbO8y|+7)(I#qbKqAOFf_ct;NEWkmqLIW{SOZ|0+!*anL}KFZv()O;nz^I z00jk~;{#rO8G$8T;CLQjiT&4-A+W>^NQFN;n-RzdC$P63urE8XYycb!f66c?;Qa<b zitw5OFL;+<-|!m1|I1naT;S9HS8MxE3w>}$q5V%y_g{rNU7)zkfTA%53IrbV-~|P* zz3_0w45aw?HB#}PBBk%28TwxRA7%OfybTb82m|5v|10jp8%P@<aGLxw_8;xVpG{u) zKP>+{Kz{!z;qV_d@a}&yjx`W2tpVfywfX+9ntEkmU%0QsL*zeh-2ZkD$zP!nJ{SZK zj=vwT{C~Z&@L3_?&vAis<NCj{WF7xhvVYqQ8vTk=aL{6cm;%dih=MmUe~^kJP_^K! zVh?Py2A1`KZNGg(5NNjefl`EDWJU#S=Lde_(|Ext72YNKr-kW%<iP(qp~Bl@6CkU$ zfLieQ@K>z*gH)Y>?Z3GceoX}n;KFYJWu1Wb7_KxU5MAtm;~4*<_8(P(5m@UC>;n(- zzX6XCFrEp}e#2$i0_`*-kP4hp-vCR$^8s%RNdH-3`X3qQ&tXpw$eh`)OuGPOssERM zzsvNGa)&DbXIFhdCBt9f12>*I(89ra7T&7CPhP+c#{3tf!3VsUfjvzCGym=m{5H^U z{Ac`yFMo{^c7RC?fww(i82FMoa0J|p5Xc_z`Im(~Pe9n;R);_OHAX;|T!2!w`&E(_ z!15pd^0$g}0V@A}sAL2T0Pht!{4yOQ;Cpa`F#<-n0;K8w@)bA<!hPZDU#V{BpVYO3 zxB}USm$fnQZT_noFaZt>rx)X2C1wSb(ch~MuOjfviT{!6|53?*RPBEEQp|z8DE%ud z!qT6Vw+Bkq8c>uCP!L{1@Q&H<&eR`0&p$eFf8O@@wVfGo;otE9?l-@?eQ;lZm$<_( z^TPWNfA1|ifU*BJW-tSlis>&OW}v(GJNz;O#Q^W-!3_`h8y8idpS+}A62%O@T5bN+ z`oJnkRsjSu1pNNXs?Tdc*ng}(f3Mtc&-up#1i!m9@LsRo|27xgK=4z8@KeISPaQ=5 zvwQ>&`{I96;IHEvPC!}e0d>|C$e!h|va|(C1>SA92eJt7DY^o_0xwy3`TWN~2k!@( z0&jRFas;;70Ux-Z!J`5^@Vx>2&f(X(|A<)da{c>`Liqpha(Dvd=wIex0e?~-PATwl zlE03qz(X^<X9g!2_%EDetbro>bNdAk+fM<%f>$AU@P%{ApQ|G?P@tAT(ZZ|pUq@8n zvFeN$uC@WN1b?CZ{`t%I+#^1$@3+3go8SNPg#|(S0q;hYA))_(r+|P2e4#^t5g?2o za4<v?2Amy&+)4y|qaXmoA&?tj1sc#1vITT|1LO=28~VUE+yd~yE(iqs2Rsqr<*f%n z{UHzJ5(UNeI_K$GFrxnQvnlko+;6!z5PD!eJZ(F;K_RaRA(jt+Py*}zv}e#uIdM#M zA|O)`Oi76sKtB~x37%0j6kyGrN2Skz9|Su^aS;ftpJW60gJdi$D-3~@Mqpg(A_M=) z^(7Q#frP1m9KD4=&Vg0l-yskOfCx8VLm<!MArJ!V<T?dDVEMh|3t?qv?VS|0_avPO z3$<9`KSo^1NIgqQJynaiKI=+XHI$ZO5xcoGR#hxX(W^azE>Vckn@EyI(|o{@6#gU; zxhU&{D2&s_0SWZuM&%NE&yDJLk=#ncjS`P*w?H6Z{7T*tI-x927Bx1-aYfwr4hDmD z7oHn>=v>pY(Qlo+xSDGxLn4PDpb0?`vAu<Kkt*Vsuz)4V@0ICK5uNa=h~0$YTYs-} z=68Sn*Ui9Mnq-JxzP01_?Y|@eL3)$0MD)iF<rG3aqvqdBng1%qP#(gfavTR3>Mv5` zF%jDSZjYA4_|5GGMh6EDRYKMp$I6Ut(%TTr+t^;+T*o+Gv*!<MsnL3+WGXAGx;BHc zR=#$UMH;UQGGQ#Jd&f}tP3X93d;avZax?VWG{9>@_Q}L1zs9z5=%u*6-#*v%7{kZ6 zeRQ6GW_2}gt!E#X`cq@M&UC%lifc~`d;JhAO-G_S>Jt+SKid)2i}$m4N;OR9io)M= z5ZCiRW)$91-ioetyh~jq%Sdbn?b*@l5Npu4*n1cm?mf3l82L8Lb)2w5yVA0|?p&;0 z)#)bp!InY~EwNHhH%iARr|$Dn<Av9s&rv&-I6uXDaHhxNaz<9Pe!I;A{Cy{e$oY)o zivY1gPluQ|b$fZKJuz|Gef?!zr?$zr>T>0hM{{iZGK^F^;p$Bvuj_~GwPKky81@)k zwa#7LtOd|sh<Tqrzhq$vJjG2&inM-+bbzl^$D_4y+kB=@SltS%E2~4hc5?8efRdvc zqfS#|Nn$~xWI^LNy=477Jv4OgdlY^5W(7x9p*G{hf{f~yzU#Mhn{i@kS}HxzBwWWL z7jj($1*hj8%|nSLFIl*rY+6=gNqvs?R*JoEtt8UVyfpka3CGkzX?(uu#Z2^*c6G&1 zVKhG3g<QH?Qt^aaua<hPMvxM448`7W47^l`z5n_)1!t}Ww{GfbBF^hCQf~>RaWw@p zRteNxT{LNP-#$Ttil}CpD~hsPNI@m%VtNifA2z@5iR)jtp)I3DD#Ineer!n<B-oa= zJ^vZM{qg(i_+gQJSW`bPI{{H0KZSq1hzudi>TSBLTrn{*z9EmpwJ<&HffbHUz>~0* z*yeigd967^Xugf~NXu+wA9Y(0H^x3<{DiF(WGOmAmnGQKXxNR!#+W-jqhaW?iT;p` zn0^u&rqj$sN?JKQHbxtUNw9jb+GD#h{DjBtxG-7JMUiMAB`S%OD=Yh>*fi=4M*llf z=`_ebHAkCIY~GJp+L`^FpN+nh40wn<A+-FHN)eH!8xLgAY1>9;@s-{UaCHw5K>Oe9 zS@O_LXw)|{H5owDxB{dS>bjlwrs)cxj4|2S*}kwdkBj54V+CYi>m2A;M}v%4M&!Mo zpdMc<Iu<#L(8cl5B`tU=j(eO|H5~5u*lw?t`X0Q_8KxGxlq929zpJ<Tqn2c8VEoOp z{DvEfxGEizExwZUyavsBe;QOIAC*M~MIXQ7y{qE}lgY-WG_I8A5c^X;I=6f?!*-Zy ztwTMRvW%>pT=$4Pf4=&M{#+Bb&4Z@hV$Iq|IZjRVNt}I3jEaXZI%4KtI_jm~Njr_z zoVpU7+OIGEYDRyfcC0xc?{r>1^$k{UYnP^3ozz#_d*l%$xcVg9{?f&AW4CbM*vUcm z)4nn60&m?oLP)OCXE%Fjgv{RlZui;wixchA`ZIg~PmE~@-;Kyn($@tcTGbMj_Q!d` zYf+}}FW<Y;*>Kawigi*oINW;var1WDy*xf!h2zv39J=hES@}5wlMOC@qobn|&z~Rj z<W(iV!M8BBx-0E4Ccv}5%g2+^HZt^aAvUa_dF?i>f{2vdWo1|E4MQcFr*^9Ix}}=! zb{HW)C5>sB$H1CVZSW_}>hc(!D*L5lH`=x|JwAy35*}8IjBC+1*pmG0rQb3mCL&J| zEq|b@)BXl6x)F{N)r0t)vtFme7inj^{6lf;Bkoy`vU_cMkBl5id+q6?@fCEuoU`1w zhB$_YIMTDVAH=1kjdl?{bk@OFA&D8<w~?3Vdz^ijWRg-kj^Us!x@vrUoUr(Mos*+0 zWCr#%G38>Vd)~k7dgq2xqgvpx+4wATLF~=PLYHMrlV_LE;fjrj)oxTTax#Ilw3V%a zYaN$cEGk3_?FR}g#9pBhn*)QBY<OP1j^~nkHv&dee6l3RNiLa_Ya?xed7~AKt*3Tr z%-7r8);z<f`ez4EYFR1XN5v0E)NIxI{j5L^%zJ^MRvSpmnER7YZ{c#t)aASJR`mP) z7-oT*7xUUSkEd{sHWC5|+m(-kqRO0yk|bHOkjG@ar0>qfR`Q;7cV2i>;}zdT@m*}6 ztcG!2%f&Ld2nncOs;FHLudni+++_6DUo3P-+-zX2xZV7WJMd5QXw8p5fTpjh%3>(} zP`cT*@<87uE)2a|e;6AfIdHi)AQ<Oh$LKf}C}_fE%N9t>#v!fvGVh(m2QJ%t@_oMX ziA>p=ZE3Y@g30nWXe*Di^YibzX>rtXe9ewWf5mE)N_&%%p*=2-g`$z&>ttvAKt@`g zoXAmpBh8rZwB9Q<Z_&!NpO(K_+WJb<BXMAsFp)*EdfIihwR60Cfu5q$`s`bUjq+66 zXpoX|c2Hh|dJfY9(R&O6x$c08)DPX=tEPpcqH3i}crHg-&9MvoXE_Ih&>M-}rVC4# zwFGK|&hSc8zA-A7)2w%^VLNP2hi9Vlu+KC#@-Nx_Z|9|NouAz14Uo}eoH%N~jkjxC zde18pTj}cqc8-CRGt0GFj1F|R0WIssgoXz!cud*$cj`7m1h0vCu99|6mv^P8*ST>^ zfQr$ULPh@lHg8{<r70E)+u>YN&B#PAZ10X=D-}(4?_OP=R!E)!Hipc!$#@cr(po*f zvXP4`x%8D0)eig2dAo9Lg-lqueAh-u^@^=Wl4kQ*mini=(((%>)w_x3+HanknVa{1 z=lb~ZqiNN#f(f64R6syL!_=6Ddg7`RM%o8t`KuV5SM&xu)0GF~8dfeQckbp>%WN@q z#bnc~d9XwUqT@=|1|~esh?eB@&mw3T_bXCdJ4t_YXcc$#Nx#WQmIcqz4=+^k`oT&B z|Fwt1c7mi#!opA46t7+*Ruoy;``Z!E1M@cYx<xO8YU`~}!_i()Wq<aK)iyQ~8W5E^ zGZw<iUMDNZzGQSZ=8lR--!0I{VI_6r3C?S3y?6H2PGf~QLb>Z~8ed+5alu-o>G%q- z40d4Ns%M%_eNpiq{dyw@u~^G2dL&0sh4JlN+0GBb1VJy)c}sl_8ULW<^ue!>VZK{_ zdh{9?ab6cPCaajaNKRc)nX{{jwfMXeuBS2~{7P1@yQs2#FE)~%wT;@d7%mO)H=UN7 zKX>@FpM#|3{X7`KN1{F2B_&kQ`UOSy&jJJA)~^eFane1}ca5@>20q~(KO;QU019Fw zHU~B@>~hH!bI?at9Ba5W;;)>+sKgeQG^}Sj0dt)y%Nn<%xT-aj4%_UnXCUU%j_&3U zE4v;%^KDbk#(&scyhi7FIpZIckZ#?Rm1UN_oFw^_BHO)aiK4ii)pN@$MdcuXX^_>j zLlzk|edfNB?6p%Aih7=NBJ)0b8lm3H?NeMo*QDnR!ieMT$|VKNg(32&6(SnhKS$Aw zbVmBty|~hD!Uq{Bv(b}?ga;@M5fdN2y$(U<T`5@5VA`spR{vD7VRY)Dmb!*P%oZan zGuOnQYxI)rhh}z>g^=v*6qQ35>4D^&H;E}pxU$TdMywHzjBaKR^Cnv*JMswo1rqX{ z%oZD|{_T!<H8RB}MkU=nlrRyQ1a{d=mIa3%=c-uRHsz(O^n`iL{C4H+({j&?T8ZU> zLS|JQ8fnD-w&;hw56xxKiM=hg?aiw=4rQL)N|4t)^HT#3B<=M*+uB<b?bK~fARxW) zN-DTDc+|V*D$?(nmTqdY7j?ut?60h)^seyYG&DKaq?>y{nL^L>aE*wAY14N-`rPhl z(=L@!!$a7CxgTbj&%n>$L9Ion*S&W#)gj~04~a5?)XBwJHr*yXYJ9_gaynwkf892z z!fpQ!>CrtUU8jILf4ZqQ?G`?z_IUPz8}>Ay#%`^#`I^F<4z<iSK44WrC0B=}=SNs| zvo$`A?+7l-h768zy-|_Dypwxd_yYIVkk!I&TA6?q_T^BLez|Fa?RP5!Er^e1d$c9q zgxIBI17*cWx5v8tl(uf&&&G_6tv=VeibsvlanX5hDKy2Elzuw88yZw9P&vyLUvk~L z{}wZ>Ajn;bGdC9X9WEz3U*yv<qAZP1p@yaj!~4c2hIjYH=enlC1(7u~w-FJ9WzIU7 z$g>r133YaidGE!_P1!YY>gLDL=|cHtcnztUxFnr!UUoPgnvnHW8*VmT>_)lmHBOYf z?beDvbY4WLy}7<<T(xpvet0&`wHxDgIekO#+<V`Xj2SU7uPrR4HgY7*?#ie?M6i#i zjcn|ZCGT}x4=?w$B84}=gHJjcPm`t`o*vGewtafM9d3*pHMKAe)3MhKj3*)_jMOxj zX<Q3zu7!6}QuVr3E)y;uwiAj8Ls<Od>29-daI%vhp;iZ8uV5j1A_f9(#A3DfLjdi* z2z&=yy6g()x(2t(ZO?BMdr^XDNVmzev6TX8mqhY#X%gdy<qMxev@kD2zd{Cc>(7`{ z`BSJe-$c?Kz5KR&Y7XosuZR6?pL)OS$b1jg!KpIJPV@GQN7=q3=<&5cIsl4h-YvQ= zQoi04ke8vzTq1fF>@<583><fvwia@3beBbi?}jlhxiEy5w2M_X@m)Nf4$IN*XK2(T zsSsMm{8K+6CZvOVN^NOx-v?ieq6Ow@^7&av1$nEmWZhEBcG14<+cqgrL#5ig)AW5( zX8J3iQXY@?PfccpfkQpEc+#0>CC;mD>9U=;lWrK)le}K%BGUNX{2335U*SZ{G4jnL zvxP)v*UW{(qdD6Q3PS>7*B41Hhlu;AELqyU>Du8i^Ze{SC(~HP{B)k!Q*7%;*$w#l zwD%m^-SbcMfgn7Q*?p6#-=^%|4#YIP=Ceq1w>9mli#2^)_s(~=n=OtTZ@42`$+tMH zOKigm)tV*~;~!l|Uw=yBv|7Vf+Q0YMMnI8TuUjx%I3$l=iJ6E)ue(ByB73$^h(zUS z!L<6fu(<QnIi0Vsp&H2^@AR2*d^GFN4lD>KW^lc5%G2Yf?|fHiCu2KJW>FHgooDUt z$d6~0-C+w$ka9dZQ_rr5mqMo-dt^924Xe&d8tB_1$-HZ%uDr2<Em!1mOF=~pA?LkP zpNh;qFGVf)(1gsSVr(7#w9mIy36!YP&ot6}<qwfHvM(11*<xy>?XN5gbK9e9*&4JP zu@qElZerV0&j265($9Xtrh>1Vu_DKc!_poi=8{OYfRL`P>~VRHl|YxVBJ%d)RyPz7 z5-51qL3RS=5yy4{T+v9#>DevUS<=Aeh*XGPFyUYV0>7&u<-4hSLNXM9_mm$}9EZn4 z^w0rE4W9fe;W>^3cg?oZ!nr`C%*XJ`L6M#L^XYKaFJ~8#nfmc~I56}t2lO^dOyVH4 z-3Jag{F)#^MFe;L`+9Ul3y)OXekT;o@AW7P4egi5=b@2=JTAidE%}vJaGN>q@8zn- z;GciHT=+NpJR<*{iAUB9A1cJ*6$;42A+=&~fRLQt=4`D}*-E4T{KaAagj0`yK(v<m z_j?xS9Cth7ec}lNuh_7mX?#yY2pVax<3bNIhu)C5GG$9$3d{6~0k&GxQ>JOO>z0(! zs-Gq=Za!|%v?3IenS1yF->@j<i=^2W5x)L8^2d&6b>eO1srPF64O2GD%ei#VEp|HA z4m4&WNO)-W=vl(!=^7!}?<gN#lV=-IW(Nw|{5Uuz)0flBFRm6(_1si2foA#ut;^_X z8)-tkOts|LeM5%R%pnU6uC7g$9>7N<2;};`PyON(!vNRiwwWpGVW(!v%4@hBcCU3^ z#@7purTq$(*)Url%#gpQWJsXBo$_>_+6LD+G<JX1YAsOk`0{-;D{hyX45@&<(0Gv+ z1t!-8A)6?dPCuhkUv=V27J(O!ti;&Z*ta<Bt^^2B_hR0p)J0A7k?d0&6X<_Y!vT)n zaK~?|6oTbS{m3LTw?xTcgYa``OGPB<^^TIV%(>%6MI9_*$oG_f6bF#CqoYGjyKY<C z5-CuyLS_}N_9{NbY^s&EUViyu)x_L{YdscAJLG4@c-~?>t%sV`RD;}jkp_pX#D>pz zMn*=<Vt3mJQiLTeJvt~0Kwv3uo!8!nI7;W{@+pM}NGi{lIr5a0o(!^z_C!An-6c@^ z_))*CZt0fGNlLYd|NW6iZ333uyuk5TEe6Epl9x7XsfH;w^LkPvre+rV*;2W)RYPto zH|mGpquN`Bsd=osYxN(`k9Tv;K4x48^POztmbn}Tgo@<X*47rLgh!>p^P*Ialtx8$ z-P@lt>2{2S4s^_B8r`aT<h>5G)SApow`WV$j(6vtpbDHlHokaau{D*Gwq}@?zcaF( zelFlgs@%M4uo+bDmrD9``z6d#)q>aX-Iy`V@r6YaI|o5jDwbg#sp3}lj6$VlBB{z2 z>m*C1Kmn=JjEq{$`JL)7rXJnl56?#FFJ#GzBF_f+sH_?QDEHVj5Tj7h(Gk2Th`mpq zj>a7#c;VFJV?nG4jOj!Liu!k?`MIqQ_J@6){HTw;k4g|h?4uS$>ru9>udh9!)873= zm5@!fzDgv&Aj0^*LY-N0RTZZt&_u^_BM|Hxe<^<WAxz%W-`SXUeri$jlGa9?(eF!A zW&8nKo#)kgXpD(9ih0vSG$yl$#Sc^;n%nm&uQmC!7&X$)1C;x3vX%F`XJcf|dl;+m zLa6ttr3NT1WLtm`DRD$1f)q9D`&Dzj&0P^GQ4cqe_1eA8+-F<or}Wgt47I^}$ikEU zJpA>kwvt>I9IxOVkJTid$9nnhHnwZn-YuF>o(@kusn>CqfT`?!P%>M1pKmxIedw=m zcVtf~$m}c@9)BlT0%($7Od22~ptZ%doH6c6UbQmXHoB%!XS-T*baxitJZ++0Iqmwk zQ3L6kr$cCqR!M%0f`Ha5ikOXOXzR{SoBh*e_?e2T$(Qn{mfI?IK-9|8;3OeLB7gY^ zNrpaHfMkR<E6yZ^uF!i??E%*@ofZHT!;Hk?cYsk&1jOrC(dqG-4s<t&zQ)(RlOKNq zZM#%+D7OfjPzwcu7rj(Gd~5S(A7jsk$!8CN)c0wq!*LL?t%ZalB8TOFY{(z3@2#<I z$tgE5Sa492lIS*+y)|y=4*A%Z0@0&$dSwobp+-~qlxFx;l;6cwQh$7k3?<a-K8yaA zz(&UzdJmyZITStQxjzJH78eayX*YtdNgOh88cQmk`p7$e$rL{5`W_X5?uPI6Y6&f$ zop&466FA2lh_)e!KoGNDcy}*YnzW2C$t&7Dhp?;$@YVvWS)K^3T2(JDn#57()dGxU z`z1w_0^$>olYUUGVf~|`Cu(#STS%t%n;Z-nAeOoP@@$5Y+j)9b($o@&^|RL0P&6U( zY^2=F9efhLorA|5T!8A9HBt0P<k(7x%GZt<cT*i*J|q$YEe6-@S3E@QKw1PkuX<!u z`FcLdK49=Sns|2w9VpdkNKEsbuV0Q<>Zi2;h+a3QlP#dDo)kRWt*!sg_P?$DZzuV8 zmHc-k`FGs@cXRXaR`TCWf`?d2VZAlZ$m8Lf#?JYwXG00qu=6+!=<67%l^caAD=T+p zb1g*Mbw>2`Pp6bsIu?Y=hj*^cqVv3@yAjDXoJakSU{*>oI6KRLiTTdp;`m9K)q;H1 z$K`j!<HyfU@;qN8o(M8@I(do<xL+HWIe(2<P0`0NwAUM*s-1Iy{-g*47;XRaZ$=|O z?^<4K=mJQu<VAXOvrc}M#fSWE@s+_0mwbQI)Gk@WoS2k&YD(&BvAUC+1Z9R=`G;D^ z%?8fqEsFhT)PC{ZX$f2W!L-?OseH65DtL-Yc2bTOIuz1zP1JkMH%$%4(`E;o1;yP5 zX_qhZ<)J;pBhrS;t6{LA_g<j@lj<p}lF%Uqi!KJKtc%WU@xr>t{is(i`*kFbVqI*H zxB1j+e)QNnxAUjI$9eK;rR@e=?dqb;b$?=&dEpFqgKUR+TsM1F=?+B}8-vm69+E*M z8za@g`MK-HPEjm@j=OqdViRRl)a@khyzNt`Pn%tQYM0D6z<GENRe^>dx{;FawUU9( z!IGvc2`|#4M?X#zrOUP@atfz47;_w%KBP!DQIj>?JUQF3B73Rjanchq;3X+gc*@38 ze%#!XaB>q?=<)MpCByAT?s{D#Z9q+iaDSOV*mWxYX4F<~Po8<?n9~}s{Gi&VAuCmE zl#iNvkEZq0cDRJRe1y6CKG*Q{Q~B}YH0rsz%>bb}^2e5U9x5L55DJ{TxNHF@2RE>q zaR}>5%mmANC2D8@Ru^rRp~4O%@SzrLU?B5!S9jcX)`(^Fc#-OIF6?r?ak1)$wHv#h z)(pMNaA9}0J0VDUv%he|dp7HJ0X<k{zVdg!XhmI>_e^r@QGUseEUNOLG@<J2<9_p~ zh`NJn4<M7;qkK1Kb5RG4Cvsnt>R~<NGvhr)5nklP^bbF*t+^a5`rT+)?lkF8$??(P zs-#5)eY_EMUAUe&So&=B75eDDQk_ij*a!8^RY7Pt77GVd>cgS8w<uyAuYt3(YB=;& zw<SmRr|N2`<$MFJRnwW0+S%5?SLn^AVAsO+&O)~|bK~Qpq9X17i{qUrL9dm8EH4^2 zE}fD``_+&Ag9=|uD@|T!`v%v22nO=28d@qrXPSyZSKO1Yzf+cRK$*92nApI2LuRnt zQQU(oKTCadv=EEhd=^*Mcu-z;v3f)2rd=zo?eXJewP)enwqK7fss$_fqGXRvYb*PQ zZ_~XH5ymfmFJxkLGwiytyTpV-@=BUR2$=KtsTQE}$3@Y{;WPOnt|ClYb<vEqCe6k; z&s#B#ab&M8*n-L%uo&KvX2LG*xZm<rN{;do>@-r$9Ph<NI5jgCH`+Eg9QM=a#~f*M zG<NbIEbra;X{w&6oy{8Gs0th=40O#o-DL1x{`hh*m*xp=DtlCI+4TCvwq%S}31eGE z;Js{mUmnKm@Z>vsrs4M==O7>?A#HAM8t5&Bo2C%Om6l2plBNBOy|{RnRbCFAo~d71 z+F?0s9q_yt6rX6qr&84ooB@?(dRCN6?={n@vAH4IS6);ki-Ll(vbZ^Bo0l&oCN4gP zn-_Mlr6Wj_q<!6R*{5@v$9FubU-r5c5o>I6GTwZqQud+8#ZdC#S-WEPI8D^c>{7)9 zbt69!hMZe^l+=KO%9TXXB1t8ATPD=GR%*N|`d{q5Ra9J0lsAf7qd|j)5P}DHmyqC^ z;O-LK-7Q#xyL*5pxHhiA-QC?CzQbQ;?wXnVJ>1tj53FAFsoGViYJ2^5H4hb)TupBv z=$pCUko|AFO*OTevs4f8TIvC0Mk6{AWj|<OBJRiVoxWqRnAUB=Rh-`QPWDz&m-0+T z`uo*5l@`Y8>V(|tMxB<MF2*fSyLyMsTkJFm>A_g;Y}(^&nmhE6qHGE(QKVP_Xoh?M ziIZDm@fiWJr|E0a)RcC;ZH}m{&VG!4gs9>qk3w`J?PF!eEmBU|!}<`_@_JNq0iKeU zR)_f?opNUqX9rZbf$1{G{y4hQe)SE*9>X?$+8N4(qVKZyeP5(E=g`s_Eo!17f%u=N zCKuIr=GBP)UU!7{?M}{sxmD5EdJi?Ul|`G;%FBJm-eSjujr9S~kfND*n_XfT=FW-R z^TXfvCe3^4q_OKg))GcW5tj2#YExFFF&MQ|1E)3ZUCOEhF*;mH%ax%Yya$SB1?$Qj zBqJ!0fvl^o3;_8WM<V935gN)6Jf2NrHQAUbQrdg;C}<vD-{bd~k4lZd3?3SACVkQq zHppKK=iBQS9I`~=zAALxi!Z9Ffi5c9S2if<RxVM_*sHOMx8JtvZyB#Oy55y7I;vBW zA5bRW9uTmPfzmg(il;My_f^Akxj(EmdV08(08VqZHv;jsF&}qz$`h;?>X=KK)@tl0 z;=C7J{#?1_ylmIE!*916F&4!}=0b~@3qK$4iTLIlYh?xI9AzSF@uyhW=j~0N>w!!L zyL10fR$nN%Frhbl{Sc%Ac||p`LHmv%wBJSpc*7i43)Cqb-xSB+T7K1<A?ur~w%Bwo z;T&k6)G$q=Eh>5Ih3KCcrjumbiRt4b3ZtO%gf2HIF{N;>3Gr&C*J<H1!^OqjqnZ5j zTfZx;>e7wq>5V)!kc-LMm;sP-z=0vqV-o>4ee>&@{kaF0l6|EnHyw}@dHa(5X#2+| z{$JBA-=#BwJgOU81A>3suX5kLeiZJLrE=pm*|O>N>Jqe%SMd*(DG}bdDJEqLvt@j1 zc?{1Y(wk(QGZgRP=F~L|9lH?EHrAthE6>Ri0<9TZb(!`pbWcmpH~sO+QXF~ewWD4# z-VZy7%U5T-j=zfyn}*~63$-|D(={Q>S2K+!jW4NaZr8iS3)F@9rysJr#7&f1{)6OG z*;9GH+zUUBm45M*t4+`1K(2MF_A=flu}X+_EZp3k;`GqqBa%oG2>!(}NBL+rRoYT8 z-)b5aFq^4PW-OZ1{IiO=I<-omn%MZ!+_OEXa?U3_{MOP#UOeAY*)uW{W6%<N?>ZN) zWOJ8;gZZr<hX6C}tfju4@+%HJ{dM!S;UnqZ&RCh^VVe}?eQc*s4^E#vGoFTTI@5Ta zbBlHx=yhsTm((sAE-tTT91@zw+aci@t2#F-?VgxQuEAJN)J8B3jl#=jFIYG?MBd!$ zT48m!{g`}+T&;NZ2cvJEDwK<5MaR2SOU_z9r^@3Ce&sv|1!%;mXMpEny&8*J<Z6d} zHP(_|`E=W1`w6d3=LhIE<c0E69=PSxOHb@NO6Vn2)+yl*er`t?`=#NDk^IVrLO`kg zn@#^K7}?Njv;2TL)Aq5hIiEX$Me*)fA=dc!Q!L2rl)c^99QmDU?d@=CLg6%R>;gu} zr?{9JOU{&a`Se<rd1CQc8tE&FZ)wdWEq5UebP1b*+uq~}jA@JwbZfv1j`W-`b}Em; zV!alZ69N?lbrZ^ER$WkI<)Jahy)Oj7Y*XcbO11Oo@}=h|cXmRY$8FAyZA~(IAec(_ zYSM$<5Ywcv7B8ycw^$=u7;$j`1}-Z%T10x3g*{k3Um869VRC7S7No3lbu*)?z=!%g zw)h-UWQVB~c!RHBOsy9po&7!&v15-}k-ylYyuJXPIS%#C;XKZqvvbux;_SRDj&-h4 zBdR~5=15E><2d8AV6m~LfA5Rbq)T!BXD!rc$?zgE>8=8z=9wqpWQq;$hf4(#y{mPW zW|K$v{+Our?QuGmQXX|adWLoEcKlI%e3<|{ffm|Fj0)dXg;^~v3Oc7RQs;+D^33eq z+%$56mxZbP?&30&^7u)Ot2!Y?;L{K{t%XO6JW4=nKH_<Ou2Y3`;0#WG%Cs&V$5yoe zBE9H1t(DE-`Nr);qI1nrG;uxYDL~HyF*C(J%nho+3c%<cDEW_4<&`*pcDoCX@iTX@ zY}epqVxxT&rBHO;$Ufk;rBs$SBO4$0wp?lwHa9oV&1!o}RlZ4hmRMf9RoS9)Uf<UV zwGA7MlK9gDsZl!vHmt(j<194Xhcuw1@#ew-mNk?{N#RZqTkeY8?d``DZ4SA!B*#06 z7O>~wxQ8A@#yi{kO747<HorZx=UFVH6naM?v}omYzu>lgh$gH6I0epku=oc&ws5^e zxVxjMMV+($d%e}@wjK6(AUiClc<psUv*dq6k9{p^3G&YSPGcYOuHj+s=XCxl^LgX8 z3Ax-r^73WOZ)0vqk-Qzgk}zacu0Ppv%WQVyx-+J-=y>&|fn!Om+K1`_qw2)5r^!Xm z*h$D$YGL)7P6$njUT~)-=15e?e!X**Pv1xBq#~>b7~lZNDE~9lyoGR_=GSowF>ZE| z7JXVJFry=L9O;Qaw6^!L97`=fyGR9a1blOt_6R^&O5=mQYGj?f6zOz4Y(krw*FOKw z+Z$&^V@0@EGATAZ&E|~JmjuzKc;6&wF>hx0y)$P9fO90wt}aT^s+dYoM=gr@N?y;& z+vnxWrP8<4R3>|+0Ppr2PmnWE!TkmIB2nLo{h7$(`<@(}{8M=F4=Zky1>3m{{B(+I zzGYaEF6kZm9Ng`S^^<FUyLyPUv)BnI>u{`E`F7&iz^=Va;4o|4trd4=BFdJvUrUPx z`qNehA^Ab7w8~4vWuPI|<HW$yMuzJjR->cTLDiy^Z_Q^b1{Rygup*Mr=`zx3{5t$H z(zBLn?GO}vr7fP(r@Vy6QiZ3@+`{DKT;~Qx%J&EC`_<Nz9({rd8aI4al~_u~I-cX% z|JkaC!R5i2@YVBRn0BN&X|2ZtT}opABp~Io#ojE{60OEyj1twyMGw|$>D%i`81whc zMqVJ<8352F!5gzYxshhfJ)cNZsa3X!X?za`z7y7#nMtBqDL`~3xxn^ag1dh+PTi?Y zyF-=EapsMI9xVfZk+tEJ<mXAd67{Zj(vQ|fHZZJc^c0!f^E6(w%sOVjwn6#(gx>Bh z(bbfe(lQ8FDIy|bN)z=tS-_Zf(_nYe!?@Y(5lx#asWTRm!bq9u2SZDl|L_#|O1VC? zNOz!If^Md3+Zy`nUTNkxBxU$mXRf^cVer>?bpSXeb+44@jr%sg{Q<;m#IO+^O$T#} z;O^~H$!#n->_>XA1wv3_g>~a##$AxBmEEMve=xi0k%k{f4=VyMJAwh!mkhqFmtNdG z>dq5X#z10`^tNF-2g*G^!Ol1YBRFzgGNdFnQPQ162AV<1)1TrjX1k`B|36S*^YRQj z_fIHlDy}uU%tq&Z0uOYRiTw_X@GmZxbw0CF(im!u^yXa<bWHm0*7^4$Y1br9)ZBm= zQbG1d@va9_0P1Ci_(<2!iJBN+)Z%;a^d%$_<(#oImJVL1WeRD7=%7QJ%79pK9?D^y zWz#z?e0CZDB)X?bx9CgON+)@?cPh_7%}Tce5*4>|CPntfVl4HE_BBJ<+3}VXa_I!r ztnx^P0EVo3tI8tgmV22#?SUi9`-s^vn#Hq;NnYxx=X}MM+x5xcmXD!q<X=n&Vh3%N zZl?d}({i0?>JV`N<i|a>8V0r<WoA2LUA1C#9%e9=^sEU!-)dKtTbwzczka@pABId> z%Pka|(uqk2-U2eE9w#eOh7@ZK=Jcho{1bc2paEdL7Ciz(iaatn!u%5fP!;JX=Dh76 zEYMmQBF|lZBxjSy3<;O>!+H4<@{2xz#!GsEeT^%i>-WcbCx!C*bJA`#K0`-sG(<Cp z&Z_5U<0!ETZv1e&-n3ND*Zf|T>HWy(?|nFU#->vS7!bQWsNQKpUqvjXC*DR&gZzs( z7rLx2`OrIVjUo-Ve-eu_GsoHl5^JB*0i4y-VE8W5JmWZ&LvtzV@DJ+&Wu~Z$3gS@c z9ad!8=cn0*+lNx6r$-hvq3QXVoh^6g0fkv5ExJbm;mNTjs(t6&qr^*>sD^wewd>Q@ z+-l>ow&_Kh{+?Or!QOyMFcOu9N6fl5BJe3Yr_D`a+>zR%T&w9+w!v)h0*h*>rcxVo z>Lhxze>woHln4dteH^N<rhjufiKiRBj($1~B*`^jF=M)k3jT5Hcx!yoy*oRVklb^{ z^?YI@?dbiXp`!35T!vTJuqvrRep#(k-&j9w5uaP1yE@~a7h9lsS6N~W-sr-4igTIw zDJ}YRQvUXKT7nl?CEC{#t-d&tnZ!U)l%}&MTYsTL#X5eP(rCh3l=*u6$DOpJ=uEmv zu_`N@oV0B3<&-QtxyfO;)9)GynFH?F(?yRt6UjUy^ADj#T({HGJ;`R$*;mXDC10z& z9W`F8TNXRl%j?+TC>4FBRnJ%SGrwCoSM+pF#8ZlKe&7JSDb8c~o^BCshw#KP`#Q=k zTUO&OTPcqv)M_vypXsfPbhJgoXpT#V5VQ5yutQ*he*S<X{+tDbgH62j<bYeV702=c zA#*q{p2q6yt5S%q)$K=VT=ksaI<x;kN_NX*gr#@C(x~V6*Qa1Gf2sNDgUuK#L=#eU z(NiTe?f)EO72>g#L>tUZ(uIC?qf$H&Wz|wIXk0w=1fVIhu!0^XgM`WeG?6^(V^PaR z!R>|9uH41o16#&Ydcp0h@)o3&D%Sb^4^2r)5k<Zgn=DYxGi@#M!Ces3+q_Lq_W?%z z;t`|{FG|rj)4Jt74yLQv9Iy@E=5U?LpX>m{Fh=C_#~x!+;>W(6`9Q%2eig*bbsgyl z-K}Jll&To$9ZIEdc5g5fWi#cOaXoTpkZ3EHs$}z8sMHIa;tN~$%`%>>TEHI!y|uT@ zC@Mc3gi<t+?*xs=U3VRt2|yCtA#)!gF~h1e-#hEoUVn{QF(*Q<a9R8{!V<_6%I`ZH zLUW#Nz>xb2S9oolG53#QTIeM*vk}}EMP(V8h24xQC2Ip?5e$KbQg2pRL+pXwC>sg@ zL}V{4{o+#XGAM^$pMAW|Ho#|q0P(04vg{jk=1oY)6`+~aM*I!(ALfVO<&SBU0Oq%L z4nUVMZ!0fo<lA8Z8s<=0<!)l%a7TQa;Y*dYLZfJAAzU_|QkzQOjYggygHk>_EoHWq zOQ|Ygs742Spf143yaOL!#-(Yv4O2Jz`5LYrd4o0|KvU&)JHJccVqNrT_|7;pxlP8& z9+P+mS>dAorD%}*%6?^pWwKN|-~e0EEvevk%vdB!X#nS`tMT^Fiv43Bl!Lh?QfD}@ z#bK|Lk*_w14?vC<58sQh5(#~auuvk%4)7^p;N1QA+XURfj1zgMj1Qpa{v#b!Ax5@# zuudQ5n;Gl_<g3{idH?SH5^6XB4kj+4-b}e65+?8j?*8C!emG%#plkFd&qs-1I#6MO zL%IT}dS2=36m|gqJN{GLB4DHg#R;zHUjIMF)BAV4e{};iFq3rM4E`DXJuuKK(A((x zMbQ4@Qz+nx9C(-%cm-8pmhF(=_keT$H~0AfPpD>0Fs=f5=z(6VI<t=;<}aoJdXS&w zLckO3gG$7E5fVJ0*Gc)oi*oq;^|+jmVqg65s%xEut#qDYb+<jGsgn2t`qQ<^OiI8u zNke4c{}nPBYug=o7JEeOPWJ_9D4jie+<jr8k@9Y<aFx^9Ze=*NWHJIGNR~xK-xdq- z$A(~a*!aZD1#5oMJ(;WSAlDMlg=KT^y9HadChC`!2Hw0=nfrT@=6}x9=Fr@~>1pm< z(zNOYU&g}65p7Ii;Qy2Da){|%GO7OT2%PgtFz$MCP)tTfCVAFQ9`Fjj0I4_?U`uAh zxN_ISg><Z=_#P*6#stS+fMq}idalON|Ce?(JqvRnusQu|(wln#kD0vk3IF!W<u>ou zuH=#sz`K2M(wEe^4@UPSOiCQ{3iGCf!(H6jEp2JQbt$WT*m~)c!p>vHO<{900<Bi- z6v&Ae%B=Kcs}!D;JkZv1`!%NNVvVr?xu~Imr=%qW7|L&PdyDre&W61+b~0L2{{u3; zhlMYjW~l@!hY8f(gch5=c^SfeU!R2QX<)(T%qYcpr?P=Tj-yH^5UZhJE5A6eZeViZ zS~wnFYxhO0McBiTB131gzq&D`Oapa6CHcrS{Fu#od0h>xfHz)b_e$yZ4xd43N)#Qr z;hoK%VH{PV72Bk{5{?UlvUEi21kzS$3-<}z^3F`*ud*AVCC}|rdGfq2Wo7Rhe5I&A zmjy<kOJG}+6@neouuT7kUHw|1hNW0s(v<n;8IfM7pI%fmL9FCfMzfXlv+fUT9!c?k zMPG3%E_Xl(Vs`MA?ejLBYyOJ&4x;O%VBD`Q6EdDQ8h?At>d)32R30otMA1o>i1hC# zcrr*72GkC~cl--iC6}W!KPbqgzVa5=^qC`0aMT0%s&8Ibp>tkWPSSa{(t}xSIV4ID zd`ra17FLb8JAP;0+?v6T;)xnH>5Rq}Cr-~Q@h!pg#HQ0b>y3+|nAd^Io}Qkgn&{8{ z8y5BV@mC!W9#YnV?#p9lD>}hVGx`I7Xnq9o8*ccu-pnNKl!b=HNih+0UJ?EmlvT~n zhahh(l`Rp=>K6r>9ZbgJ@Nwnta-a39c-!mT+jM~(4nE0*;FcP#=T)6Nch8l^O1czH zfJ--dV19UyBJXg!AbqF=eK?^*^Qzg7`Mnx`qhh8>bhC3XKu-3;#37`)(EpZczL>bU zZ=?2W{}yG=0MN<b!avylt*NBe0I*BH8Qf%v|E=330xTy7^-qNVD8rNjkU=#cheJjG zDecttZ+%9*|NgqEi7uxfC|ZS*_$Vt@CZg*nxc>iM_?u69N%Q}u@E7L475=^y`~LUB z-<R8sUM|&nxf(+S`1`v6_~n|6e+z$sqTas>f8&7b4G<7M^^CH8*o_%t$wV&C`$cvA z3}p*^|5EsC+5Xb!@4{a*;Jg3U@_#7&1p&psfBq``HUEA3(*OTj_={}wS<M~_3ccgy z54y*?&=3l0_3)nx-$%7r9F_QMka)S*-t>{zLG|70Qi4~5#pR)wq$doX@Q0)6+TxbU z{d-y!qc1APk|NSDVqt$2zZx0GNfu#AyfKzQB7YZ<DE9U(0o*GCCTb{Vcr0O5I5=TA zXlUl)wxi0ZS!P~iD`UMatD`NeC+8Wug~7qW$ZwUEhbHdFm2&W_@MuD?Bft$cFCRia z2(+0brci`F2$|4-efY6KskUB1|7ROtLMZwb7~g-NXF|8al>OcGuO7YHuqX6}<-8BC z{-r?;LW9EVUt?Q;ll4zK-vf3i)n0Aq8_K^&g<_M(1E|J!nRN?`{5zLf3n*}O^U=uw z0sF}Kc}Q|H;hPcYGU#dc5vNAV?(`rTVc1zSph?=&NeKblNoGlmljU>x)8%B|#hpd@ z*j+Up`QPoqZj&ih9<v}t#so&KkgRPz>=7XcU`pBhsE`n0*q%tz-0LOJ2y^cS5occa zU8f#Q_NvR*b_G#{qMygpynb(#xiIF=G8{fmti?wPn<GbmJxz<fuc->Xj(0#GBN5zv zwVY&EYZ0<A_91?Ej9kFkq0vZ{o^^ATY4Q5U(5DW=fe;t#&j}e9A;)aHUMwP3t~0zM z4ScUMSdFCVS@W#J-S{>_Rj+cF<CmUn?RqnB4#++Ala$_fnuy*7vlz+K$FLkwP++rd zkay@OeW0L-*@$L7ouxEbkJ*Sn4K2tW2)H?*iP5j8e78jO7SFX`sY3Ii*3dj`r_KMv z+|_N*#c2NI#PT$eC}ZdQOy3h=p#!FIr^1C{iLF+s@`_>IyU^;Rtg0?hTtyt$$|*~m z9mYlXx_;ly*RU<%>1K7pMTnnHlf&>>)qjNQVo)MrN`{l(8KW1FsyC4uXomisYamp` zuVnSzsP=e%4GJ{~4WqS=E`AZ$ChI#aH7V*SKbfsa5E{YiivA2VI?7v8K2mb6hOTYY zOcxeOjJS(P6r0{y(u!XN!|^>Zq{P|20kE_P-G#u2v<RquaG|z)_%`H5z46e{81Xkk zozbdgqMcwL_~399Rhzy-AH>@52svaQu#tzpWUFYtw6rWTm%P4z$Hs)x*-x4Z4@pe_ zSI8LB7;BSrV`A3Lx1Wk3uKYoyp)x|Ss{m^w6;S=cjX@y5Nlw<-l*u3$M%HaZKxp+t zNA-b6K!6AB9nW;u1su6wA9YW#R=hTSqYCQ-uSpI+4i!v_{`I(kXO(<J7&;x^1uxdQ zZTE|=DHOd+8w~I3biUoJxVN#K%mUhAfpC(zas(*Qruz}dZ6ozhFE>i6piR!~6?JQ+ z50hAZ5V?6-^%%rclY}~hnCp`>DPP|SeIgbzk5g5$lSg&j-26OfE~BFIY#d5A>tV?C z?WZQAbGHVkob)nIP&tfln`E@ukRKh^Z)rO`^Rn78of@xCX;Js3O#u==y0~~a^gKz4 zU*{Z~6YYGbsCIZ($iOD}qy3=VN%{0ppt7?!NvGdyru5d6h?fE5MN-%KsN7-?-fyn{ zaOSy#r$;ImN!HUFRxB<o%nVD~FBB&e_J#ZOj>{Z5@<3tdph8$r(?iAm@&kkWVfkA% z`w5sJAp2S@pz&#0r)d)zv{2!CbNck?UX+#PtFA5|L#|+uu$Bgkr|4n#eRG5h`MW4) ztr*f<Og!1rtc=r$DRL=Ox~Ooj=AiV|&Ec}F<3TJeG~Pc%=S{Tcg=!Wa$I*FJ5uZd{ zyi|mTkJ*AWx_JoSzN4RL(%H4#|8wc^H8QMDg3g2|%Aif)n^<Qa8XLtr7u{~Nlv;RD z-R~d9XEny(a=&jyONIwAefqfJ$_CfrN4U!*z%5ZdJ+}*aGG~2!%w{z0B0}7;JqAB` zS?c>mBFiKB1!7Z0j!iM7yrTy@I6C4=O@HE5%!O_h36nLhAVtAAU8`8-?35A2p+|bd zWenpNfcQj=hiCjNkIdyJ7Y6S1HsC3Jl{`a~O0?bY*ErZY2^tlIkt9lmG3tQ~6IXSX ztq`R*{T7zk_*XG!kUXtwVzuuFu02*Lyor-OMFO58UEg3O?ItUq_I-;;MbC5CyUnq~ zi@o{DiA7dw-_?n@cp=rgi*d(0mvKT69s$9LAHv!clrFhdgueT0!aAEQ@diomB<5H2 zRbNN#&$eiqKni+UrD5p_5G_fayLJ(hX6BB%*MgP5W!(r`Qms9_zIwzv;yEQPfiBq~ zE1A?gY(fRg_HGF2p5?MQ@vqqN?0f<%$q43CPlcPc>UP`o)Zbh;hdaTy`S~F2Qi5}T zE<t|bI?P@F9*?PTf%Rk>*lkO!Z%~*5Cb>%7)9@WVu^JCOaXzs*6>k_1^2M8OYh-U< z(<1A~*K@mb);;=}OS}a~JRJH9w8*hFK~GU{tV||07TIqkQM>9Lp7oaVOW(6}SI;Jc zP*r`Lp@X=r0JdG5qOQRwqxY!ptTPK`^2ZJ8wP_<-*3d)RRJ)mL>Vv3mVh3Sjl9ve3 z>K5kWZxL}?Afsr;O8B<>nOD9U7f$X0gXd>BU}5l0?#z8x(Om9DtiWLVEZg(+=ZLSH zr^5WDv7C;p-|BK*@rd12#T&nLeLB5<>gcGF55ngdiPC&j@NHk~Fb2MDc3IxU4Px@u zoeD-pkErTzx-D;b?<3siH+OvyQDq$gjaNCvHkPwbWQONmyMdHN9aG5^Lq=aH59i<R zYv5S5qH`@jkoGCkPkP)HuSqwnx*9hgi7?~~tWTioWN3t|*_+=c!VoNT^3Yyx5GuOc z5KQnpz7EXE3%|MT2Xk1QnSnRtnSR<cl#=2WxWu(718KKdxNO$W(0XkYs1@_5YO04U zfI#c7bKxCL4~Tw8i6jMsk0}kbuHNrxBLqQ%@ZjEQ*3fd1W_A7It+0e3qkk_E+Z0!} zaZt8H^$T1bwY~f5)9#&e{hHzSTwwQ$simhWv?vGI=LZ(J%NDTOn6=^+%{P1?x4!LO zJ*3J5du7$cib&a@0Qex-<^%hmdPwjntSan=E_i1kP)?P1D3)6yWi#f0nV>(6E;$Z; zc%<COQx50OvGz^4!0jDOb<Oq2K>1-o-t&`65(M+TN!viBPZK=BS{>j<glOc<Xot3m zT<IZ^lDev=P`p)9t(%YY^vm%Jguh3@46<>-1H9EqJKi4QfHy8>NUiM`dPrqCOk8~8 z$5uSD8AlJJXYbgm`C|u)y$kVk$ln{;8H|`BwZep3kpl*TIv{?)gX~8KChY}gtw~$l z@yUZMZ`%)1G=*2h8iP&n{8>zrLn1?>REv5c;c%ZAOoWFu<at(7;h8nhh*%F=d$0uB z6fi^$-*dp=<!5}}i?JRa9i0;=#B9x!Bgli8$eWrU=P&k@kK_e8E%ShU0$Di0@H`%^ zBEC3ULygF2AoDGWKRiVdLDar#RA2OSPPiTnhlG%aMZhLmrTfU=N?U{`f#db8AKL9p za0u{E_jTR`VEG~ODx^pfusj?U`JoK8oGRC6Mz@FsrhV!rCAvNOlZy$O#OymNPcb-M z@(Y~FZ)s7xs)r2TSkX2W6<X5yn=tU{W$LViC-k|Cet12n(0F0%e7Oy{fI5er2(lZ_ zHD};EA`-1PDP1`4+)&a_N<E9GsnEobs4FN$pwFE%#M^8G`kYnemMHiH0**$Vd5+ZB zirNY>eC-=lEaD(2`rLu;xQ<c4+N{!3d4&7Gx5Ds&l-gr5J5Oj^E2F`B?MD=VbB8IR zrOHi&wt))L>{C!S`-LAGb-DFU@u7CrDT6^@AOs;DyPZMPq>bS=m1wPn`i~(>JElI8 zQ3g3cP=uof7D7V`sD`j@&D<KwAG&Sq=NrRI4YHijpze2yA9i~k-_qFUOOT2b!BxuQ z8Ba;L;3--hDZ1<W1Wu&St#N}#z;A^0I3Bmnm?^7?1zgj#GpLMH;pn085W0)3nUwCj zSZG9RV%vYk_yn$1$eBuT0fV*gB3o=``hvkHvrQ=aaw2JsLw<hn>=if|f;fRGE!#|; zN!9PR!=qVJmI_Dn3#Q_^MX-=Wdy(@TqJSmH|D*?(9!T84<CUxr5c}ImX1BIm*IeIq z_{CSAJkD1dk#=xE6AT|Ro#84Ewb$U&?cA1E*ONzAzS;V2Bl{L!H4#%uWS-^M8)&dR zy)o<|HOtEy90cT6a4YDNk5rDRe;nQojC3(KU#!f`FDM&rLNm{oAR$;$^D)sQ07r{! z_#5<R0RGDDI75x4`5Sur37MG6llqId1Qc&$P1*>t$oW9%QGVRCA|K{=39+D6p@1dP z&B*lq4EUB}iuhlL#9_1ae7A#UJ_JdaFTwVhA~Be(CYc;E1yr}}s_6=iB%}!uz~~`C zBl;(!LgW43?Z1(E4JZ!zZYqd;Fex%%!kB(2o5{QjM2TeM5TG>jXxBLKlh(9`{+NVf z<POfb0R%HdE@9?p6fn)gm5^*{>V7y_wYird;_8+zbP5&^3iQGQ5(IQ?V=6B$8?oy& zlrA(F3YhH1;)pJy>m*<x%lEpv)qtn1FfWfRRR3oJuk?^KVfz4feCZ5@_p?%H#-5na z$Alc6L7(U)9D@35w8XwK!02XG4eLl$k^a+GvRyUn2a@Ot;b+-@hlx&wZ%<zzf#L(% znqtih5o8<qSXD06<{h>mBkx&nzge{H(>lGiN>G|>43clN)eU#c3)dLq<dU`8#UIE; zon>KS6OOOz=PUU+Y({(SvAZYpV)o5VO>L0=ykf&F09M4-9DDw3!sm?M=Jodepxh3E z)OV%5x<8e#V%-sd$(ru%DoJ%}*o91uf6#70Q1v++Yy^6_sxUic>aOM|GQ0w>TzqJ) zWD=LV`^Maa+|XLtI)aG`Qh@?7RlY1E`7v!bIu89rEi@ix5CKIJBoi7&ca=s)mfJ|u z1N~SHioUgfO9!x55Bqfo*O|Im3evb}!vK5x02O9wO)js&@>k+D!2MqII6{4!EudBy zaZz11u_tj+Kp`x)<89qQg91nG)sEr+S;qc3r2Lf?Xb=roXqOk#Kl>$r;DmAr0+t+F z<?|9?3I5&(S5CGWVeOarvc#>zcFM;uaH__AV#1D7=t#jp3X#3WNnR;@>}}0vbd9We zpMrYVG5=<nDyi^XXM@@R|EY!)X~=cZ!r(`q&SUm^s-+%s5`A9uU7QTjKGBMFh(p*h z%%<;+KmZ@+z9A(>*D;$b^^zQ8R3{Jl#wf)e-k9yPz#>L8nT2=fh(zLC(@PBNjB9|1 zf>$@DT~5G)=!<TH*6EBkF}(~d(w{9YV3C?i2za6BJDm+$W$+ptfMtW9nGrDsqydQ` z;Z^_&RM!S=cjgSpaQ{Lp-p&a$2wu^F`xpTn4IzTJY9C?H%}On`Sbfp<Tv`c->3+Ja z<ppKqB`L+8fe^-Cv<fTi!LkLhY5TsS5Cfw612PE1pK3)zHw60FQZt4fUsybp;-j+# zHB5RYYPjYbcOBK06#I|xgWA)%rQ>22v~-2~4MdRpZql9zfyi$-vk`@FGJ_0;knMng z#!Lm|IpGs1V$p<p%}GKpEh{@R5zFx4YG;=!9)y_NLyn0@yN#r)D*I(GNU2%V$4?bO zwRaZ*?lX1T34(4GYJ@pVFskZjq20}zfn8laL&Ff%*Rd>oe4jm=^(`OMG{|-Ju)maI z+q`K89eha?wJ6pCA}?44@+Qonp0*2t6O;J7Pem$j@bTlXt|SYMP=qd)_jTKsd0WQ$ z2}$o;v4QJ%F#vweTA(*)=>e&J7C$zso(2XoEgY^BZrpGhua*bfG(S@_tfp`+*Od}M z`UO`~Y7Sis)zyWiiU(7gjy$6|J)sF5AH>Y8<OrR-%HyL(9iiX9`mo`QfZ2OUV<SIr zh!NbfG)8<*er6Nnd!6afgebg?0+#=}#a7`DPya6e?riqd0X(w&oap9GrXVLr#qZ{l z(Lh$E<gP)%zSu<Y3a>kaJX2(G;&K7{ItJ2ji}Xj0i5~|QU3g#SI&HJ>bB_$NjY8@+ z7Fb@OhOLhRpjq_DGJEX+wmFuiVCQ@gLz`xlf2_85INwuia5{y1ba*l~RgLC!ynJ^Y z1YiCT=+WWF8^ElE4$p^(q+sa!!bzRc?>!QI0t4iPxDUK|RO_5hxzZk2iFh1uEO=a9 zf@86RTe8QO4^c2c4OxypP{CNKS$^zZdPw_0Wv+NI9hgIyAIqi7*gDYGnoV5Z4iLel z?|nZnY9SZ`>1GlCGCk`-QvLiyoZABLT2i^fsXRJhk+~^Kz-h|>J<2-VHl$?pp4ps& z@uqv&C$pwBs@*0~klqFm2!G6TKyp7fBQu1-!qMY&nSFMqkZ;41>*_jzOP}I^!W;W0 z_<eH+3e;uyUU2~(P}}6CoO}9QAAm?K!UT(iP&X??R$M&=22ch#9Wv~t-vCcz(hhIh z7H~)QJ#v4uzZeB|>xnKKO`kyJ<iTuS>Q<4_w4WF3NPw!L4oWdsp9dz8F-YG{0Yi_o zt|p<D0$7s3s-?p3t94Ky8rH;*Zd^WrZ~2+c%)kBwx4O|I_(yU;C7w9~%Q|Mr@cmj9 zn4P<o;y4RDC{Q5t=*X(!X7uCU{yyDBS%si!rY>MFaHJ=VnkiaE)H0shi9KF{GlhKh zpj+h=&%>MF<p5D7iyLEYGYnq;VK|jd6MS&s_jk~~o!)o7m{6iHRHTjcA%M1qSFoQw zh65C7g3uFgw2tac$Or9*ke0_Qjk$(PDOaZcluRM$R^9aVnn5<_BV+S{XPO>TltO?y zbevXqBMg1)X&>W6);2yKOVnBpKD<y9^#V%1ig0jX)RT&KVk_N2MDq0bRz+c9qEyOy zLu2qaQJB5950x+K-+gg4VHMaYq;k4nNqGooupqM0m=u#dmDSErZ1iCmSm+KvA_9W9 z+7CK9f6l1w9@J)ts@<E{=?dR|uojx(*l;Plan%C|Q2%NfaJ2RbwBtXA=R106^?Qb< z9`=JlK$l_?0tW=aw@8#wd9<hv5FMhZGuMjH>j?L_UN_(iHD;0NwCyMU_M5iM89Z~o zW64-HSr~~LN2!K<zGu5!zf#^=S)KGMU#DNG_S5?KGUtY&lkYn({>k)fFDwPvTYvcZ z#>{Q{s;a7JbW~I%9w6$7l(mQR@OP?z-i-L7(+#C7;y*(O>$d^ZBQ-CJ0C)4SRINR~ zRj;h~jcZLn=5vL2*)~1gf#A@{r%ns_l28BhAkRTnwY3_pnYzMmxGn*m4vdV`kbC2d z9~$z)_FwFLkK*Jxm%tEbYZa<!uB#$Gkk`Bjpl?fZc3KeWaTaMLjQpWMMSP`Qj`9+% zFcv-*3<Rzy;y1p~Zzt&J>0LHo^`?N&xK73!cOy>x;33N;n@3JJi@lYzCL=X#{XdZM zEPut80Nhe<jtRkdVJ!j%y|h%eXdHT*oY$BHI9zO4Pe5R7vmoY5!f^4%swE}rJO2)+ z9>2qC(s!o8<ISxLCb3S>us<lDxVoUp$ZK%5^;B7f0bYNl?DhJP5G*fF#akpQ^9t{` zfblTgCzS}81Uj9MsK4MoC1Dnw5m&wYRGmG2%%6U<dF9cL*mjTe>6k0BeuxJ|ew|T` ze%j&pV(2j06CP!uKt|rk8#>UG$e>#l&=nL~XErcjdh<^4{87NhC;VmOdmF<l{8?Vy ztZ+FmXbiyS2^l5qmjR~8ZOe8ca0GaOsowo!G!f3qfbL6Q!bxH)fCVt}I0L!t_yoex zHflP@;m{YF72n_8^?$kKI%0Y0g(_=@Mf_Gb3rSXFE+ra{o?2d>RUU?5%quSL7>IxR zuNUyodI7Iw!YS#fWCi@Dn2qIKuX)7QpO}Z&t@8Q!y8ReL;OH}K&3D0ws?<NRe{30V z;Nx|o#^`TJcv>NC%A6!;^Dyfosfo|>_XPZ^$V>nrG{{LY@&uPS7wV{m?TK3-Hn})j zMP^g?#4vEc(S>&d2HUrRfzl+!61h#fzErW28@R9V>hyEidjgV66&p`^A=lhLqwgif zFlNjS0M70#Q?wireereiT&IP+blcKx&;F4|-{f?4L<EC$B<3XLL=|Rfg+b0o-0bkG z9F$yv=>QI+8h9jyf(|E{MiOyO)q=v8u(x>p$6PlMfw-H0-);pY{HdovPL3f<c!O?7 zNm;Hu39g_p{+v4zTLD>Dj}g`#JG|HbD$Tv$@;VhKk_j$9C;cfk;fT;DaE#wMZ^Eus zgeI-@)i;YL-L|U_JKP{XvsiRg^DuJ+1TR4z9>QOJ;7ZxB&|F%!P@^z&ahM+ktu{6u zfx92&T~XXxL`LZ274kd8twckwXd7pJ0)GkyQrbcRpIkC|i@gtReh_V!8VPt*6g)#D zzfYf~uTemt+r(`3s=;0<t`F@P=EWAP3YhmiW!tP`fq}dE9qF=EH!Y?w3TRF#rZ@;1 zPtlR*`?>B<ANVP_X?3PE9MmWnSg|@4KP6>*SV|-$U9dQRAs-yOf1diM6nIu9RNvjg zj<oABO%PZ<dAoE%9Zi+Gn)R#Sp$rP1>K9ZbR21UmkPAuR1!q66Z&^i!F*Tv#(k8UQ zppdD`=TLKry|U#w_{`JZ|1k?-Qiar@2~HSr^qo@b1N3`jP#+n;IuzOl5Viz9?BQ#0 z0^89V7yaS^o|WkzWQM=Ydp$;{RTNMW^0S)_bgd%w>8`}i|D-D_Fn|*o-~VtujeY?` zyv}%lA?4A{^6CFDt)<oC;9KMQWLr-v5J^PXTY^xgS^t^LT3r+k4Gq0-U$)}(_e-Yv zK-P5?qpqmPcdA@V?S{l4YDDO@sSm$1kfPukMJ9WzOTLONkKTBEyq_odyc=i7rA$o0 zCU1kLOfn<I+j2*o9_VM$(&U7sN?m@QHZ$6Cxka`stYV^n-xCR3WMHm)S<JaR(YFp5 z*YuUQ+<*!Hks4CPxjr-M-zg{LA`Bcxc@Wk)AAe}R>?UIs%BrYfZb{RX8u0<d6*@t< zjjdHq=vyttS4Dc&eK3V-W)&L~vw-YE!B8r995m<$U3~mhR!%iCpkJbW#s(Y{h=W{? z7pFrah_!*kuILm5bh0@{JKP#$ADF1HoddC6M$W^v>6c8RjSP-5ER`&AUKB^^ds(+m z5O9zMEJ*O>RJmu=p4GxhK;S`5n2s>)6CiXed(?FZd)C@ivMw9sI)BaD1r6*RDT<-v zby~zoz0mB=`G8RIo()qG*v{y%cJotnT^E;-m$NEu@53*5`<yybHY;wZfj@(Y1aU2O z0(ssaP^C>{bg%~#*M05Vf4(i=?nV3(T~t&=vlJOtDh!(ssIxkpSCc|=!xU>HaQJbz zE6orbF##_F0A6`~j`F))garFaDbXVMQgdg2yJOON{ED%51VfPc5|w)=jtKkk&x~s^ zz(k)fcNt3kExvtAn<8kCnlnDXZTCHNc!+tX?``>QM&`9nuc2vqN8P<2e2=a@A|wEG z=`C=oIQ+%dYS4M^>Q60hkTJa8RkI!#rQhHsFGo&??N4U(!qIq=9deQyu+HX?f`LW> z`a^%Aee7|lvW!mUC=#j{AH=V}rz~a^D%_LBO>RKj_Az%;dW|a^*elGB8mgSQggzB= zU1rh;Z)_gl<+~kl{cUgroYKM(bPr-i-PNzc_Nf?5UiDyo1Xh)LuDzjX1RzE$YoL$l zyHCYDY0!gg4s3kpS;f8~@Pknq;Y;JcRWt?7xMR2?sb9Q+QM@UcK!BK%Eg?29lBQs2 z5h<^%JU|RCE=r3k2b$pC@FG3FdF@VOAgR+<46s1tVKrbY+81JB<B2oED|Zsomov70 z0I_$49tS+H(OPGya;~cmaHr+ehu%d}gaO;6P!;H?lm!q|PVMeQhnbesFYbxNo&bmm zZyHSZnL>37ylyTqDzEbzvwLq#tniZ7$Y%JJf&vgLSYvzdgjwhHN{QboH4`9)OiR`% zD-O$a)wjdX;NEo^6VDpD9`a%&alYv-D!&lJEnu$jZ@r93+^blJd)Z<6+Zjiem(>(M zHk+j@%cx3~ApV2{FnP8qXg^;BAXdZ`5lRC0zgzRaTl2qC^Z#q9*>HPYXmI>aNE9_v zyX+;qJ=`KbUH(j@)qH2I?7rfBvA%@sV7l)yS9>LTw^Qz&&5%(0&M9?<nJp7Ya{26M z9k4~0R50=euKJJ=_Fmq(UhH6L@%;{#CGiTBO>_I<=C1RufpLS19A78*6aF*Zq;-ZA zndimZ=9*`CQ!+wolo$8Lh7h<?Z0BH>Y-g$zGB&MKo|oeIEGhVS@u|UO55vJ~_;}~$ zD$ijhM{q1br%9A7%_YOiY59*R9ausTZNvN^YxZnPh+}%VKycxGd~pV;!eE}1!?$Pe zv3gO)v1$v(F{+FQjJ=0dZe$dPQ*Z3E=eKkB-f`fQT8$?umVT>wX`oUuzlQ$W%i|+_ zDVNoAqM!;FK9^w0m#Fegl<H;T`Dml@Q&zISrfLRcyT(czEF9dXc^%d|zqb!khqr>G zHM(OuPP)7^YdY+AR|+7R&Na_LUY3vK7^SW6p<lw1EMH6A)nzA+k>q0@)BP-ahuxX4 z#d8nDkB--jW&`otyCYfN+1F2xkkP#3ZTa)1XHNFx2gt~%$}>il%PHe7B$k@K>RY;$ zJty6SY0jWMJiY13>ci4DJv82#?X7XMOsmLL@xa6C6!y2O!wC|e>5G6NPl&(Of!hyr zbM0JK6E7Ke!AJM=zSV@a<4UpR=i!U>8WXeAPtS41)<+Q)xHL1$=@DWa-2(9HUF4m) zzLsSfkca9(rze|Gbh1Usc|k1^x@Ao<>!#D?-E*Kqoy_Az&f%caWH(UfQE<omp7GiF zt^o2VIOeDG6z+ANvK$Z$@AbAElhY8dg=RpY%J1umOoKjrU$BREe!0P(sK8~(=GpFY zQ$26|?W2IM)}km_zY;2_-tYwWx!dE|s$lY(qN;6Q)qrPuCcG3dci}1>!OM#|?4OQC zbV?vu-4t}Yl^D--BwS2#1OYmu=_KBA8RbvU@&l*OA`FdBCJj|v&teww&x{uk2y^fi zunqM~(T*Jy5n(KF%+zetH8SG?mf@bLp8{oa#b9SO1rvyl6z?BD+^y~p@AMAI6&3B~ zyM%Cw16K^lU2LWdk61s=KZ`vdT5pdXdtLK3*sLNJmqR2pYOV5~&&(5<I&IZgkGy|- z?|J^TZh6lZa=wC&O;8{{FDp)Vamz0nhO3Rak3`M%fZW7j@2yXA#RBGRQ~h#3v?%Kd z(VLI9{Y6th5_Z4@1!7K*F8{!n#gFJTj?wdVJlOidZ^_Lfi3#DE=-d1i(VgL>ch2zA zllPeSefcx?<2CoQiQB68!?Nj;;4{hKV^n<}2;?TM6ve((tkfz}M%a0LUiiX&OU>?V z?Cc+5`T5yq=INHBA|uB}bG}?82tFQHxo;ac*lnUPs8@yD-QOGSyLY)o97c?jg{myu zUuU7#m4iFr8dOA}#b=gF4&635so!w7v<Kk9<MHUa9QH7pv>g+iSu*AeLT^?e=#qDz zKV*9Q5$=5$AL4v|lYyR`Vm%s3LN?<5%<Vtb^j1jk=vf5vbXjf&+`!+?q?vi#av!Pf zvJXG!&LKvSowyi&M1}lBJhy3<4pmD&5)n0BV`sx}Y;a)EBn>WlH4VtRoV$DDwgM|b zRrO-_(Gj9UrHS8@H^eLb?(Qzzj2g(1P}29e<nf^&o%qDBa4n+E!V-oz1*|835_Q25 zBZ}O=MODxP=4|)5J3Rm3Op6GNd0tP3PeD$)R4=-|zJ9j5dbBuSW%fw6+sx@DA^30t z`)#=;t>tD7R6o7Cs%PG~EYAPPKVFrMv>09{I~3Hm8X3NJ#%7RP!>Kgfd1dRpwc_@t zd#1-DN!On87a&YzSM-{VQy+D_TxG(4y1f&Zsvfuo{`oTFPp3Gv^g7SG9|7;;#COc1 zdob-=2#1KU2jkH?!o<GZnO8b|Jx0_rNdEMw)_fj@;DRaePu55~g@SHdIoi0dG_sCG z*Mvi>Ncu2>sHllau!mdSG^>!t6-j=S;1k!Jc836WVZgid^0<gp49=W+>`aXBVI7;h zOuFhY@mw6Pn%o2-fEZL^2UU;%HPN8JJ_&Sw=`e_#nZ7>oBMb;Ts~uDh)%M{Z7BX_@ zg5@d$;IqET4d+<w<do<Xf3TqB>JRwLk34$dZ2qx)`QCDz>ls0JCg*M4d{{8bK+LKi z?o()vj)g?zcr|o-V3RX9Aj-7q$!?N5o{kY$hb0BRzRb7jM)y}GXUJ>w$HyZ*%fx+T z^f+UKh0f-je_rxhwyp@@=%iqOL{vnbvb5z(YQBgoDk$N@B0hPql*9R!D37b+0#et# zoB;EN0lA4)lpzL)vP_8$as#--A-BY67;+=My>R@Vcgj#5)ch_diF2eEqqmXB4I|u1 zB=k5rDa=f$SfiV}0s@F00W)7a?Gu5q>OjBJ_0bINAAxXA#RX@kgoy^5C^#sHepRg7 z0;6ZA=STv`K$oW|3bFz3WD?B}%J6bid&jPg|9UXzjDNtGJOgRg{>CXDEFWMc9!2G~ zJ9L3e2G_{9*h96J>V+IhYZb;M7OwJv1NS5BY->AkF@+cexPyTHw!r(2>Ta^!>*MnY z#`B8m(0<`4rovo+W0tSS%h?hlTBV9_25GF#+x15(QHN73BMgwMsR_5Gow<H^nOEhg zZJ~De(^8z$Mdqp^cOhI4fiP^H*IQ~(NxnJ|>=4Kudp{pPr^P-*J)a7OWRQB@4(O;4 zOgL-Q=)SKfm=rk7|KRcTei353q&|!W@({f_Ds^R>dv=-orWXjn(aJK;c(=LMq+g=u zFS**V%_OA`9+v|x;1Q2IjfSVgt%-eT#KbfNn@7U}&Iej8AXv)X_gFLaV9OLF*#l5> zxHf$OqW~Eu^>!Y!7s%3}34V{UnUFWngdVguyyiPSHlKZ}@OZFn@=G{#KHF8n&6b&t zj!WNK;sbgY22lPhluH5PBQxF{E>az|!U9ov&<X8|erPtdrr=8iHl7a{jkzJ}NGf^Q z2M3qS@{EzqG%{T{xU#rj!q!V{HKQA0Ng(w4+!xxZ7cdSbNJ8p*4$o8X1TQWWp!9lb z444CAf@r<@8xGZ-U00xx01a~|bEn*w;`l@Mqxa3T;^X9;Usd&?lT`g&f**-9`Jr4^ zIoZsY1r@t`gtgy-+->dtWwLV>kF0moDhXrz<;{}&(`5ldh#$StEM2cLsvfK1;VriJ zzF3c)88P-g0tuQdUCxoJV``dvrJa35C*12e%`)G*1Gy=%&B2ba8<5D@8I#*Caz4RA z3%`;dmJg2Y5xw@zRidxm?6aXVl1xzDid|Yo++bW>YuwGV&P}ld&MDoco_i^N8!9(V z2ShQ)hV$n`2lHV8C{&wY2~CEd>91o}D+GQUYBo84hTI%b!s^#EP^>*(uzb#0PnJd< zEqrgV_Bhjda=}6~RbeRBbRB=%r*QT&w2v8uB1XwzBi8nGmH}HoNh&?8&r>?-mG>iX z7;Mt3G`3lEbMPn!Q9CC*Jajgl-zFRXl=4-{TgQ6tc+-_%U?u}f1Mc2no^pn47GoVO z_(RWk(NmiC3*wdH@`&i(o<-KslJVX_WnhA<REet9fdA8cEX_9nAlq<%94(5_X`)1m zzCh`1hQIv!%v3(XeXX+g0u^ONLBCy&362{&M6VZ(R}SvLB^1^U?$1T?8X`**A8#Vo z35)qari=9e_UV!o95~$k?Hi-d*s!W_iH0FQKbbXB<yolTbZLn9z=u=Y3Q1r_Bb_8N z8EOiJC^fBg!1BS#ODF2L1|rJ$8o|&?+rk8*VWGUIFT}JDIN>8#{Nue~n_@LNu3`Q3 z1IP^x@1wCt5CuQl3Wl^jaec!)kZU=RGgQ@;H#Pef&8dNmEC~gQpN0btprT2UFjVD7 zm^e6Sv+kFg8_k*uwht3^y`ex4BYwfSoA41=;Gf?gL*YONcO_*@R2ds2nNY)ibWLmM zd99VYE&zsOgdcTrQL9QZ;Ou>O&$*Mm%y^KVcT;=g34Lqj3L2^~2Aw5-_FTpYxV29# zHD`oQ1moHrIO6)Mjlg43?=+RXUwUCprh?c{wVa;Qh>>n+$X=Lo<NOJIB(l6F%p>TE zZE@N_5O0PIqRBLq@w-}ZT4W{z_H-5?2nIl@#U+rp_SjG$p4FVncmoq7c^A)ptUZqf z#-F4g`*VU(Bg0?7Pj_pd85X@KwxJLlIn$Dpvw`#>ZiCxp7(w?e&b<r=15v;uH2oWs z{@#?eRGJz=@7cS>s;lkBxuBT?Icim1P8y7;1G1wZnbGE|Tva}_w6ulUXZ#I6UHsOK z)OkNueXKIs#WJ`M-=*SO%8l4!ZuXc!mx@*Qqj1OJaliYxotE9>*)hS(qz~OObCavd z0U*I(J93mgYa&}9E(6$jH^xI9QP;=IQb0a*V$3fY)vDF^5t+~^C^*i}Lsg>vDZme2 zwtWo~4uc;xAdtv<OuA*1$B@*sBZtDO$;gBAo}s}sGQ>rme^}Ld7u`+%nq#p4=J0!! zTzL3SnS0NABZ|7iiEQg<BvQ&BU8W&mu>7;YAn@Zp(sy8ip;63R|G*R?6W-zRRCb3- zTeL66#N(E8BfX;B>x5`ONL6*MVMN;n>2H5}UG`63oK*N^R3P(s{Pum?s+Thxzp~fQ z?S>=4&cuWRz2q=UH8><xb$9pnB)^NkiC_15><b8l9YE#1AJc=yE3-;86WC~yo8A~X zw>Awu7y#}1Oq>4d_#S?#v-GJMtprtr!vt3=LG;f$iMn=zo`pc}<v_$0Bd>mV=kEio zd2()^lCb!`E5@u2KH7nA-jN^J=O9hVK`B$Ooh*iU%tyraPYZulMRx0}jvNk`v)|kA zh<R$i?BNQzHXlbSHj!wX9~=z+n}EQ;e&?N67-`Brtr?fseBmqrRyL<yWb@u3&f=5m zNoyKw8C(yL=qKiJ-Jq=OAYlrUqg9P2`RX7KA{7gUr{@ZiEgtG8scAIvd2+o)Prhbs zgr{a3TNZ!>a(LKIow21hjJ-kvC6sGsMsb!_==%CXGitzs1(U#;E4o)f>c}7zQdBO? ztL+mJY=o9m;+jFx`qHd<*C2Rq%XvKuQVkpV`qShp{$ObrT`sQ9nw{QP;~ZaJi`Mxc z$i40m0Te#9>fboq`X}Lcsyp+tAW9OHV-aQ5o#$k{zGakSKSuhAkzz@Id6QCJIz8iM z#mCAMdg9b$4?pc1DfIgXvq#jPGqwHUfldC|_Vy8Nx4yTozz)&Oab`@JSl1akXijpM z7Tl;+<&TzC%3uDT=QRi>-{Tmvt7^1cmlIztr1&1OX|J7~cd(UFnY{Pwt)hS<UcNtk z+R@;UI;3y+N8y69$%MK*$rMk%<lKm1%;S$`W6~HDQ8ue$2jcP6sJ#dn`JVXK1Kv+8 z4A0!pi$XGyBJzEcY9o5Syp}!w0&Y*&jXTG1)W4R$uJ`ICqT`immk;{DyWm@@`aGT@ zi53Q9--5F(qegq;iEF+MAE4pGb0umA^na`hI5gU%ZP?Pzcf~QWZlZ4nacb5CB@8eX z8d>03)O1t-*=9%rGtJy&?V_z9#=z#|w_R~i%ZYAw@3ZCpANJllDyr~r_a-HVj-eZ* zMoPLHX%Lh_a%iQyr5O-JO1cq20U2rl>5?u%8Yw}L?h-tE{KfNo);VXL^{)4<_pf)k z7H*l@Gus{a-uL%&UDvk*Hv0J4edmQ|FZA-Tt9NZ5R(z12kJhFwxYuAd=QT;4<ULi# z>zPK=o?Dwot64D`w{W*Ox%=j>pbN>(cavfPEqe@$-t(bm?H<{~SK=B|Jd3l7S#!)6 zhz!MDh53oQO=CsV)cJitN5iLw=s^cVJ5(}#Caj{d$#E%|chmV=Y3hLX35Wv8gPK-V z{rf4qw)T{vZt@tRq2c!esY?{jZwPz~w=s5QteSCdR88}+Yg07jNpg|TzFtC}&6Igt zmMn`~D)@ubK%ecQ0#Xhe@98{pPGC(T(HO1b<TEH?X0}VGDx=T`$#YlY*wJ73N*N5k zqxaEqi@Is`^wsIIMWA|phLH#XQ9*UNZ{B)<`up?b5!8?3MOj0LGM^)Pe(hcb5Mt)W zmqFW43;ya95`8{P%=vyVv(>4PfD<tyxI3Z+bDafeimIHk;Xq=>Bhu|V>qPMB<8d;W zO~^^X5P6b3tjSSBJ_}a#@K(a;(oTXf9w@>on+U{uy0T#`;5<r?PDK9-vG?j8X!=}( z3XK0e1R#QvBz{rsU7L`M70V4s|Cl)}Cbtf{=ee!J`$oZ^2F&F3)J=GW*#OKmhygy` z!`0KHq<=k{#jQyMfYPH@JkVgdCA+XBtaE7Hl3ngsT~#0j#kSfhWNXh(PhctZ9=)GG zE&;Uv(!7U+2ApctdB`q~dT+-K^rhAXq)`U{<45b`yr{cE{bxt%uG{IF4U=bIbnx&O z&duLhK<>hQj4VcI!2&|8IAe+uvrK|s3%D}F@6yvoQg4q-y5GYKJqlM95Q=1jwan7^ zJRzOO5Wj9kKNIWpo;N>?Nec0>v4+y<z7N`3Q6C9iC06$wGM5Em57i>lerXf`L~Ixz zMq`JVlmvpQ$>P~}9%~^saY$`L?(}Qr@((IU;%*0sAzbp~L$Yc_O0yjKY@Lc5&0cd5 zbQuPS0Da?-tUYD)crt^;YK#mB|K2Re7T;M#+d3k0p_b$xn4KOWrI+8_<w5ub4fM&T z&sHryqwrVgP=ei4J%eQ$KKW9676J%F?w9`l9KI3-Kg10lyeOtz)n=ys=l24`=@la< zm(7l`{C7nngdWkkT1WWXDX!H=KX}AFsCsJBB`g$9AP6-UR!EsXlxKT_Cfd>@MFt|C zQt{dpTgq3V&O)Z_2O5Z<>01i@$b`{T>Y`IvVd6O_HX<>Yx~Ry5<Mu}u8!In#1xxL% z-VYstkH0(i3+&YD6<8k<xG%+%)9%Y12t*F6^@~A(!iLA6OuPi}2uQ5J(FGS9v?#HJ zDDWWL?9V9lr7p4>y(i^Twi(Uk0bP;A|Ja7XDRJk%!E$}0vfyx`&|Tco<)X-lM=DI) z#cL0!S$PnNiMOjoZr3r8hZE0maM`f37$B#{#7yN|(V~*9I#9$h_?=iMHFhCp<gn5B zUSj_f+#TSFh**f?qfw$Z9^`T^Uk0aYqxUWq3~4l7i6ffFONb+;CD(}3b~E$`Ax&iZ za<Fl}l|u_Nlbq@ohK>6lxlMV1Rr!qTDZSF$pV%vSTRCSZ<Y23P3J;-Xb=!JJOUNSm zac`9TsQbQ@Yo|+gW^H29N`IeCB#Y{oor-z<Ye8dgu;I`8gn_rfE9Hqn)Zx4jJvvL! z38^KUZ=R2_aB>OP%f0(g0r<*ke1#`??c50rjM0=fPrhUP<fblWbqW=5)}w}!G#LcU zDr|5=J4hTH-(Nud2y<JwIcsal>AscWIx43P8sTDsK9Q7ZxYdPr!i>I>M&r7Me73HY zJL(FT$fU5#jd$F#+4TGQm47fb!I<+v+D|K=q2;fJ+{v0B=GwK-^yyJm*LoOBhhiFc zb|DP?yl*hmL&px@^!%%+7~w*G<u{hyH-37tLw9K4MHsH*t6xiY$ZDg<OjH(+Ir8J` z!{=W<`;`>$AU!ws{_OROtQT7PxqB4fd>Kz;!ZlyFb>*hY;J0FSw|OcZ-je4<Wk`cQ zghxHDkyAiMtLa^`Lp2XDfQim|DR1QM^Y}5~OM+mX)C(0u){e(q!-QenR-W0cPupcM z0MRYa#OJ;MXxMGi6~2ZQFMc}F*!?kL*dreULwjrBp*a+r>GO=_FE7feMy?c&oD~Pn zXG4|uCyZ-P*V2EFkwkYak{rFw#(_vvzSQXmm#|4DXCNG~a=}e(#Ul=l8u);xzh)dO zxSpMLMhJ*2@1g${`VK7QCm%s(i|Jn+ONn6ty5W^jtPaIhL`R@*FB%9T_dN3qoEKGe z2$}j6JpJ*o0imJAUP5e^d|*PjDpXPAHdu1EVAY1#Fx#8q$A=F#PE~*6I((u0_^+y! z<+-fet{eo?aYsEcJ(@(4sj_OAB<{${%_qfgmu*OPQIX=o%B}r_-6xH?Q*Z&RFL}&( zmiNBL@jdL0@aAMT$#U(hlBX_|u$ZnRWhiuuqL>9Wd+5&;N@mP|Rpge|_{Ex1Wi-6F zR)e^!R(O)WOU!fc`KqzFHq$T?&c^pq)_R0~p!*v91mudL%lbqj!Y+2Kb~?B+ST5pe z<wMSlHD`R+2>p5EC;AVOj#}&+rpU`gSvh69OnV!)W;`YdP`@!3Jqgwxw<GXWAlOP! zR-1^F1gT3`^yJkh;(=TzREQM%n^<}bzkL$uDe)eAm3>3QMz4Q?By~wdbfl<e0vf~G z3}p?FlIb%}yG#mlH8asa^RcgeH)@P`M(NZOym@<ln(AsX?sZ@+hFS{?a@)LEOjbYo zj)(im4RX)4pAc*rvdE|%$s%+DUYRphGPN?N@?9R2gT%}s;uoX#>c%m_hHHst_n=xb zBW{RO$IL2bPcS_KkpkZCjmCl;iW)ZAV-sX9<m%p_gM@ryG79nVL!+!L!=5iBk^=|E zM#}~VB`>t6w#pj)bqMLVQF}<RiU}e>k0YX;G=!f+a1XlJKoplU(je5NOJL9J^P{Kz zoWQDwHa?HsBJB%1@}lCMY!YY!Iu)0Vx`r%&P&ImjZ7x~*Yde-R+jBXNX~hXh0h>z( z43M7tfrYC8>9k5X=8>UW<ZY(|u1r(Xaxqs<<_~B*UP4Y%eC#`cq|{$^TNOv%)5(ps zKMRxerGXQXnlNmFghPlHBbO5RBO;e8LVU5BJj-s0PD!udNlHoIO=-JEO7b}-2z%7n zazahsrcJHsXV?UzngT^63rRE=p5izy-alp4q1ZZnis7UzoetMn#gCf@`o5X}Lp1;Q zb!D=z%z#wavXhwaukQY@oE~_^w5sF{I;brHaMS!#d;eD|AJq|q{h$9v>F+xs6f+UV zu7W$xNuvRDflc-VxqyTk^<$thna*DdwJXt38uI_PU>QI$wcC(!hMcu)CEPG>^w|?~ zo@+6m7HM2wU@xg{nBy+;U<;%~SsQ?oqeEU){-@g*tUff;(AzN7Z+`oOyXN!t5P+vR z>S<L#3L~*M1~_^jB(r5TWj(VoATTIXym&$(6Z|4AV6z>)er_yRN+lnkI^X5hthm`t zN!^24CX@;_1VJ(lObes#+RU#{^39XpqOAfdc(*==w66y&m{yq&GU%+Xn^-;)?UpcD z1QS6IS*ZWpirD+z2dy`>-d^?S;1y%$jxKg>nI~3}^eyZa_F*^EnGZ|RK<N8Kv-w2n zY6dcO9kts*4xQbvYE;}8fSI?R=O)(P_cLr6vPo$+dvw$}vlbS0!?1U{FZCx09Un-( zD52o)4>W-RW5H)%^z+igb53ChLIm3G!%@HJB0xrywBnE~+s|l|pKA|$@#58Y|D7?f zyTv&IsDrcf$PHoRln>g?I#JlM{VdaLe%EaNBLrZ|eiY4?N8p1Au5iPW<dt;v$vs=R zZGL{SUnL|TM$RB5C8fD%o_BHH1&raTzQEpIlmY4Q>9RvD9o??JV&f6`E@W?<j;F!V zl{g;^0xl7DagW7uemikdSyd@yh-!XN-84A`HTdv&8f}-DtRm^*Ta!^k<T<Ah#Et6Z z_&09&<EKUkDN(|W%G(ilPp6Cp%))_DG@J_Jw*35gn@WiPEpc7QA9D-6#*ja<P!@S$ z!q=Y}ZqM@Bp2g@Ug%VQsG6<-qT`#?gs@pqxvwc{2d)iG5-_jbXM!PZ(DjhIBl8u~- z@&3Jmb7Thlu{*a;p)neJrZ|9CZ7wXqIsJx@v)6U)?TJ<3PnF=%=Nm0hPELsjFXdWI z0doMSea`{wAa?aj+^ZwS*Hgq7uiIaqh_s#`w3iYawQI|nwfz9$15SLjs6<*|{#312 z=tR6w=75CHym1M<6g!${{LZ*Lb}Gu{a+5+1am&x6W=b!N-Lr5BlgDYi7xXF2tQl$G zy!WOpv7-<UP}9T)^@{hxXg8S6ae-r}GxGH3oc7T1k!c_V6XSJZvm%46n7qZ>{n(v? zu*QRxx7qhBL&noBHEWvh0Y?)GQ}Fg?WJ^d%TT+ksKB(zhR+>o1>~~9hUfOa^;$(OJ zQ|i_200`2vd|R#ZU+DmkG=LiNJK;CC|2FM&pyVjAIb6cz|8oET|L^(#Z2!b|cO4#* zm^JDth1_mBqRP#Z?rU6Ur_vf4Otbtz)Iw?!aMTC4Y}WNWzseUO^g>P~TLD$xgGYMf z9YYBWG8vO$t9^f?Ah4dJo#V{l2$Ps&#&%)^lE}{2WnJF{JbWevXzYN}?BIdH(TjiL z@^?h{w{PtO7fa^%o!(Hj^JV~Fg8%--E*A&wBP=kZm-pAegEmzHY=x?&=C*>Yhn&BS zR<qSru%AF{!V^yB&BbVfjmHn@7swY9*6%ZIzE7Wc-&7~T_ZheL4}z-hyUw)shdQa< zBUtN{BicFV2?djdz5?&NBVqI3O<heLS99hQ$Rzi98r#0NGGL^gryx@BthHCRL)j8G zw0Y*W2f)K`!vaTDReWb~{F&Z4r2i*(1$Y=XAqGZ>m@}_Z1<8BzrWuJgRz|&}h*FY~ zbF*GTb4fi)&t^{vyWgTBz|}b*{niQd=QCYS=Q{sSCkg{stz#u5Uq)40U)4E-o#~1h z4Prm#<3fI4=~nqgGqrd%0*Mn-KFz%*t^08X!3nq^u&JN<Zr}5$0+VvKqY*^csb&Ag zdwZoNfhFDVFxP3Co6Xy-o1+4!4X;F9w2y?>DWNy97VU*MNO$Z?OSZy;8O;*~1apv- z%ECU`-a7}M7Sxb2UfQf%MWTD``PMgOwKIr+W^y<3Op07!5y@qNjBYT2ILBWcL*^?f z>A~V^VN#B>RBsYjdep{@674$~bXLZ$375udSFUp-vHUwvUT3>Te#G29c(T*jJuBun zR8JM%c$=W&GH>5ZRI;@vDEX<ED8U)0ZbB0Id{hSw0yWRFa`K&xBibo>3Jj|+OP@vr z9g+0-yt%1?Db*dkdoZQ=E{vE+aDld!p?B)b)H(QP7_cFJ7xd3oSTtegIY0W10Zvq~ zy!dTNFy5YJ_h6V|D7#>xdu7zVKV~_bF&2SX`F4K*e}9pnp;XDA%IkWDjAw~qo;ap! z(;my2zrQ(YwUFDbx!cqY%6W#`AF{o_RyQy4Cle4qQ*Uao%bk)IG`CMkHXR$fW|elX zhBE2RQ=PSf-v|;3kV0_@9yC%g%~s#?eHK8hcv}-R#wc|w_Ut`_mme%JTo6m@@Y<~S zP~PiML^_}T>L{7o7uuc@AGRdyxVw}IbpPJvJ|e{<jo<Z@e&&P**yH`RB)zgXxkAKm z94G3lwIoeh5#v)+@&M+^dD<)85*sIS)mCI0AGR+v6uctSBj`ol)$cmK^rz^+pVRa+ zF%JM8t(u803V4;*Lf?=qWbF?}5-CN_8nG<MEV-}V)QqF;z8QO-cKZx1!nq?}S*;xr zu`rnkd!uyvXZw@5t~hs%sE#iI_mwOu)N)A>3vo%9|6?3e4jqfAY8VG%Ly${B1?Wbj z;Vd@c#n)!k4cUE?LjDuH?vEYcyj|f+NvMMsv0Xi;kFW^0P8H=@FW~e}(`YvM3UjAE zazH!p(|q&E#^oxfcuq=;-X>@|nf@#hVP~+hCU8DJG~Iun%9w7wiC)u+7Z@xY;pM^} zt=M-%bz@!Llz`5-8q!Z8T2;s{{8|;bPsr;7LrZCy4i2rs586i*V5pcWb5yyAN31;~ zM`u(9pT%drA1{WG{`V*sRNk55y_|CqJzsvSA!RM+=7bmqZgA`P4=H~C?w+PF-7wx4 zaEI#cZLTIsYmxE)y)WTcqR-|lI?~_piU3ejV=un26&TP+Q2xg1atb=FOkjaqs!*IB zcy|oSA>fs}O0`h}EcoZT(mwzONk2e^8ajkQi~HAEh>IFFTY;4TbAmkjB<eLyEa2WY zXb#-^YTB_1(Ec5N6Alo{4oVC{3NC_)$&-Gbig)-Bm8(ER0F(2bjkC@|OpRQHBSmNU z4-1?&gNkm+-uJ+!{<i2tP?mgH2iTqt442QLtDe-argX+4@X6>!VqC@T;a<+m{Gqm^ zg~d^Z)1Osxd?sx`l+E$Hj%#Q2?EX!m7}iaMEU5Y6tq4i_?Eo#<@WT`n|MX*DT{)R8 zniAwqL^P05lS|^!;28tiCOe3#Yu@N2S@P7p5Lf~w5&=OraO5J@!2^F`t=yMi+1ehK zl-oxx9?L@}OH6`*G@>;9>fuz*;?r?8#<PUv2i9w?EHW>@a<)zWaQ{Qyv@y^@z5SI} z)_$-NYB#tde&+wE9Xc&%Gt@DTC1C>%I!{!n9_CJ2t7TDQ%M^m7sneV#Rjbn;CF)me z0ZjzBJ^C9jcax7|xjlve8~In;$3f?*+|`R@WCw(#anc(fpnP`=tg>|t%hej07Z+#I zZQNG9TEG=Z?Sp&X_Z)5+LJ*ird_ztHo?YsD*Ts?5%t-jy%#nY|0Z6iW(29()6_a^q z4k>SU*6iMst$C;2LiKekO)A)H=z;Ieb{e<#nyW#xK~}Fl_l48*CNcRmF9N-C_#$}7 zWx1g@JRc4BGjG8bV8o^GSjU#ytV!5sK^M``>L5*AN24S3SPWgqdx&Am=)kJ58EZg) zxP}I%GY{xF&XYA^1U+((L3_)|NQQO4O%M1%a|r9`CmD))0QPb?6l6tHrV_I}{3#&c z87j!q-vOo*a0(rVt#NC|GD>j-RFKX2XEOGbZ$E8?xQ?cjtWs(NBkU-S;4D)qL-?)W zuAb~a@!<=XWHFOyERIlYI%?p-Uab4v3Jt8aMl~)V`A>j2v7ct!Cb~;(sUTao0#gZ4 zE|#q*gQq#|qMpKMEWE$TUQK<9_&clO;>YZl&DecnZ_BCV>q}KhQTyqhPPh4{TLBaB zeRh6SsF0hM(9W^i#JF1^mmo*0XHwl)mcEE?1gQoj;6$>Vx+zO^Dvq2zy>56@j=6zK zI>^P*ji)Z++cZ0DX2WslGcr+;Rgyw5qn^aSHvvBT<EW@CN0!~Ou*+Rt2k2~#zl>S) zOEW;3lK{*JHCB}EAB+K5=j^Oft?b0TolQ((%zzrmvMH{AecGG!?DL<pF>>(x_wRp9 z?HW~?lXgS1(FkOLdjX0bYHVoBaQuabX1F(#B-yuk*r30uHpGF^Tapp~3bi5eY#B3E z6XB^Atj6lQ7Z3s-6SGhNUDzh9aAjikMYM}}J!^_}X;d}u*QeshSm|es(h<aWc)YmF zbU_$5!NCR=2J(jnZ6ms^t$O;op5#{+AMk%aj>K*gJ3d^$y}5X-q=Z>tSBFMzin>QJ z0T7XLrhBk+BdxNDPc6LUp*;`Y4LLseZxD_&h2TGPaI`!BpXA_B6f>_e5|V<!FJ>m= z<IkUdZKlG>?UwTdc%d4!5t(FXTh|^AHlkr;wPGM#4UH<Uo2p+PJR3O|80o$b&Dep+ zR1o%h1vl)*NYJjuoQVCR&8n^Da4lwOtgWF6V_9WN3sP?n*l-NE^wT3a$tmdOq}y`M zyGa#wmQ%APC->3{RV0Drh`XmEUFO(fVI}3|ppF7ynCB!1`|t@nZTxOkr9R!odAq4J z8X(CJ&u4mnRYUxs*vwqiVOhxfRt5fH{p-D~fdhNz0?-xp>kWHHq8QkQ`<pKw9bNj* z)@np*qbjS(Dv6t%Uke(V5|R2Y(AvUHhu&6xpg?{RWE~PAi&L}hm7oO><jcxA03H51 zu?kTH`iLA|J50WiP!{|@=JFJGbph!?X>c8L!$W4tQghy-Ss3hG^?IPVdy^8J#vmf) z^sutrCPEZG{VguxS$ix`3C<eZN4m$$w>i^dxRwr={nz`OZV#Ok+ixVC9fU(W_sbsC z!4hDPEM$}03sXMU3JG{!5R6y7Y>wEx9pb~o54rgbp1<rh9-4IfrJ>0TnKExt20S>{ zofw#y=1AZXS_oFS8H`C}*AimT6&{X*hvO8|Rt;k=)_EPc<x^;>Fq@@mMeS=2cWH*f zw)H2Q$F&@_O={2Imp$<GBp(rN&GnAZkrLK(UC5GzIZkIIRp(hexf%q$OlDa|rr7~2 zTb&&6Dc`hRDa3vOvw0vCLcNCkdsG=>{He;=&@x{Me=w{t;d=&bkvh-Vm=m@+boJ$@ zeXqT-JuH2@RWGt>g}FWkmS4L3P<_$#Za2`IeFtI#0-3>`lEq-FEk(heOb?%aqr-l$ z{L?Fdg9pf9^2v>oiCba>OA+Wd&(G~=mealN(!a3~&7-hu*NU?{v6v8iQq5H*33_$@ z&=M5}bkK{mt8`AS2cPqc$c~vW*i1bu6EX|dC@oU*NM5h^_N31%oZHEYPoO1<E;F}t z3fx|G|F~fJyUjzX_T9~ALb(Rn<*DzU@Jge6F;OYlYCo?k-DZ&1YyXPcf^H1o*#w;6 z)87Za6U%sd(DuqNNqqtg5TLmL2PSyM41p?qvk??ZXCK2<<`^dz4o6717ucK=j#-DF zse;5SxTSG_E)CUj9%h!)+Ek`988ta;N9Ygh%w-w#PbxOGzV@1cSeDNCtzOiO#@RXM zAjTh+r&bzIa>-=fq-P-2fQTh?X(z&kf^tS=w6mTokOZMIm!-7sW!?JRakiYhtKjqA z#2yh<p63E%`Dom+!{}8EtzmFF#y5YU=o6TAJ69l6hH!p0bO#s>+n!lbyO7!;x=0v5 zx!!$8k<PA}P3^m0p1-7%NMZ3whn_nBuo$1q|2p<)ChqbDx<$d;)AJ~L6t4s`3U!g( zpW~IEt?!@h8`Shs(I{q~ggq;0LX$er6ua$(tH8aZScY{ZJ?kf)xBCzH@%&i<_@G8R z4A$u`n>P7!+g7hb0B-*5h1W*{JpuGp^>(+jqnj6)%mnh(#XNY_o(|e(Xb{}b=>UAJ zO_YLM22vhx+@sIVc$fc6vaIb2eQDcIi>|G#@cSKUQ-yZWD6$rbM0Pb<zF>BQKB~Rl zmR9B;Y^#m;$wJzH>9Rd$vH5~?R;L-wtrb|@A%EumZ`7&u7j<d`{NW@7SL{VaVy9Qm z^}Tf#F{$;7g*n;@a=CFChIM^qvr}j+?qX!9XM8$4Ex=5VaMDJDOl9U_!5n8%+c#^D zO#}yj=E@0=Qk>5Ryvi^29sW-dOy69MTq)lEM+OrZQNUD=hV6qV1fk9qF#zvAwCoJU z(H{0&b@7zo6#fi@Rl)ld?#u1Z$bh2N6iC}#vDGZb!Uv7T75R<xFuxf;>8mJ6|Ck%A zq6!~L<-iHHRA@rK5@S88*6G3bjK&@*AJ;3$fc+Wgs`Oh&yY<-i`8++&tpEcOvrglB zEynXAjB2B?<Kz1~Yf)s-FhN9-_^ohA;ZdUSAG*nI0Z*Ed{O6$nJVUhLb`=+N70nCr zLl2K#XpyQHklDn7<jP`yFpxS!`mADfE}8A=XzH;;8~btDX%a~rQgxPHcPtzmKe}?2 zeJ2N|u)zmp$F;H%yhyJav&S~Z1`Xc*F18DiT{g(3x=8_?kfDGJHi14`KvPaFDvD-j z%jOZ(QXF8W_6*U8W6H*ENf@jR4<}$zFRV*zmDMW{+|?1ji|DFdp(cbyu^gj;x-{Lt zK`tsJKQcie5?gt3U6^3{Se5pY7oNh(E<lJ0&!H)K)K<l=gx|mTDC8I{yKEiWwGRYk z)to_?U0DFTF3t^`rNYJo>O?+if`movY9~O~J4OnQhl7<WJWifcvl1gLqgCc=f#Ct- zE`#ukW--Jy{I%6!Xq)h5kPz4(hS(q2ciu^(##HXmsNHT7Y3buSQ8ndhL<gYlEbPy< z?BSC$N-hq^J{M|)t%lQZ3NMCyhv6njOar%<8e%1ZCOW0G)JDtBJ^gXG&SvsTSs>+b z?1y7Qkg1viI{JTL(S~jPm4jLBem0hHRVBX-07+?JgUM>-r1kS<S%<Xhkg6&ft1(Wn z)i!)MzR8KTIjj>YqTfy8<oKy+P*zGB#K?&4$ga$Xm%vvQ{;>12TOPLDP3_MWkw9wS z`18^_%g&9>moH0mSNaP90+3K?_dR@1a!k;^Q{jyDsh|GPBjmjE7m|l$^snEsF(RiX zoH4`qryG7jxIQ)@w+D>{JSi37ET)oXrna2oH8=bk;l+a{h=si*V8jh?bA3oLkv}p% zkYs&Y)AWE5z0j_Dm=hAj%2OQ7iO)yq&@n!@q#H;qA@#!GMrl6yH@?{mr;Ey3AZb8n ztY6Ze#bwM+aE?i$yefBAd>zx;Fj9tRs7?VU4Py1x@E2}6_$ZAHq87f{=r<lGqf?4v zSwwDz=B|`QJHfTxf}A!VNjSgeB`E9;2j;8+{Bs1k^s=f$!_LM^4dl2=h}+e0*U7nj zlf9+txqLsE!iaRNG3VYhkOX0_*Qh+Oyrh(#ob6o$q;3WK9AZ4lZ|1Ij-5S}7*BsKw z+KT_?296Fge(w|=jXlf6Yd@GZOmyDIGo1Q9c6av9sgej5(i5R!dX9rwAyR@G7%~Y1 zE0bODZ0A0+ew@BmS>O{1_GhQ3WtW9NH6tHT5u%&ROUr`uamUt=h8wFq(9V5pALO_b zpw;)n^(rnjGLCSs3)&<f_A_SOCFc;*^TYTNB_uWZRzeYk>HL~n_5<PasADd+8m@3F zC4I^5HUTUoQtct%4JPz3DhmCDX3OG3X^`}&F{R?fA6gat<P(US{fO-=XosSo7^XCc z>tZ*93d6uqbHTs?SO+Nhe8=(wzjpwVnC{>I#?JS9W~(e}zhc$3YWo@a-;^G9*T2NI zqwA95btVRsOLqJpfjk=+AX9bi|3i3J*PyXHwPKoy2zIW>)#$UJhNG@JE_)P092{=$ zDPu10;S;O+#nbqQwezzdSw+gB)0YEdw-M>9+J;Y)+Fnn+o+kasKw_yyvb-Vz0H9UQ z8Cb%gKeOh>uLZ#@^~>pcY|={Og+$P?WUH+1u=qcymVlR#CK7kgIP|u2d_ahnP=5>l z77AOf^{4E~i<I=u#l{A`u%cqLW7DX4IR=Y)=%_wQ!(uDis$Z<FTlv5<l9eR7A96u2 zypugsks|Fxro>rkiv0s(<Il<8G1k?EvHOO4(0NolLK5^0doGn|iO(N;IdX0u0v-1N zw}k{EhplJtqpdeFsI~zE{Oq|Ew#=V;Q86qJa8CW4e-_lY$-X1pbF)Euj4(-g7=d=N zQM9N+f!ZgV?@=h)kUQXx_wMKJ9Hhd&u>MuvWSsBe)YNBt1#MlkVt=|RtrSTCfSEz% zbEAq{s(%*i|4skGyIIGDvv#`YT%R>P?-_2mRlFB{-$@~ts$8=VALKpRLm-!Kj%BSJ zc?^NFu}0c=uId9xnf<m>W^Ang$kdYEA5v)=K_Jj>A_O93!WaNHxo2Fq?oqzbE1*6S z2n^1J8xZM}3SbbQ7Lx%H;9l1Nmlrd^Dr=CT8)Wb%z?_zn7C1<WwV_yQSvdh31`yWs zf_Gb8BxGQyKoW&j^fkq|M*^=n>@w1&-0_@*$pCc9Y~P7au>K+E5l?K+2fuETQ0zpR zepy!=3yh1i7GY9ED1HJLetM9;cn1aw**zST`MGhQX+{+t6$1vq$BjIFmv8-#L?0$4 zy<U_jB#d6M1!_6}3XKBZ)3w2Sdh}id%#H@m$-w$I_52GiNw$>#!T$g8S$|iHS^Tg7 z$vAtusdt93oHn7&&qx*${4ZLHBAQ7KgirxybObXXyrEPp4`9>fDj6Z1aCqvP8nT3) zdHIk>yeOQFM?6jYj;)IXwTsaIC&0-Z?Y8qhGWitnjQC_Coy__3x2nYC3h5vZbgDm! z6@}CClof_Qd*@MJpU!73tc=Fjafjlhig(f=*q&}#k(P6Vi37@Muk(}HQei9ftN@5J z9`o$q3Fo##UB*-!PfN2|&v)l0Pd|jZi`W1saqbU*A^|(#2k}4I=<<wa$lWCG)U6*% zqs%<#e$%%V3%8tZC`}rYG5V+5AF;A-hMIT-E<PO8R|6VP+27xrt0wlE8UF4z*zpJI zK^xq$!%Yr-yWsUU@6BQE4n=t`jB_=#h@o?YFL|E!PbCoJ(;~Tw$a=X#VEQwRH{ZGg zdeI~nngf&<R*Ylt!27;+lg$Ue)$VZt4yLyw4sZb+d|+$c{HRvu;x}L%uTZ6l#lo2? zGxdf@(sdhEc5zyN5OZK+FfuO+u+RtmtdyI)^0Wsg81?lc!!mUh(_y#no0^?>HqnZ! z#<&N@F)u<`I~4(MJx#(^z$`ITp!IK(oG7Bh_saDG$ZBkEA4J2}aogS9h47N#dLj^V zq1Z#sz&_W>i~3twSz$13^HRW2(sZN~i7iYW><%qVIgi1OkM3}YDaeVcu6F-x1^7{1 zpH~n{!+AS_evVUIooJc+Z@MY=FS@yhqMLaVM%Hzqh4tw!0gqatU*6KaEeKyH@h;#p zn4_>=Yn%KU6nA%g&E)XsuC=Ye?a$q<0P(zSGtn+_w2QUy(^IS+(>>j%h=Pi#>SCO2 zUtaK6<e1$1Zut3RwYA#TWo(Mq?;q-tq{TTD3m*L+47`NYBsg9kaF_NT<9a-+$gYne zxSUMO0Ur=bq{L0dEIU4C``*W5-|Iuq`U3Ota&dbj9@=Ly8VdxY<p9BGIaEL}+D{-D zt%(^3Mia3DYLA7gb+@UzbSNklu(uqd%k=4G_RG&f15^}Q+1W#2j3P$yU0ot1d=I>< zi`auLP;{LiN*d2G-kIUe<>y$2NnP|@HWFw%{qX={Np^^=coOc;*XO=)3^|R$B9ajn z6;*AuNV~m8$RU~=FSJ4kdtf0R(b!ARmYO^{$EiQ_POW-ko^rS(Hxkjt07(W-D7F=h zhh%SdWRAa$r34!q{S;h->CS&EH?sNdvy-M>Bm0sX!^&uHso57ucU}<zdMQ_q&%kDP zME1{sm;*8S!)uXUVkhgi1L6`(ldjp1T<4tp2omJY%yNqkDq}j6=H*(C{@Moz3FOd_ zIAbgoP(_x<y!wg;NdJZ7_TKBGs9JX?;DaEa3HEIlCmJ~Wcy(jgGA}y0*p&U@!G{R- zfIoALz8{cM3+ufH_^3*8_y<}kjo5o+Vc3k<J@vHI_~GWJ=2=56*KL<}kM$KO(<%zq zTWV&sRV~1$Qhnz=$o0knc+<9R-E%(YggCygUAbNC%7zqg1D-viz#u3;ikS>Z_x2eX zj^jU<eoYnf$&JtLCDN$Q*(S$Fb<W-PO;qKaX*@toT&sxzVlvD6etkpYS81T2*6*Ei z&D+8*Z+E0~o}=kF%u*pDv}0L&re9zgzOB6Polq5nWB7Z8TdVnY+C3tj$gp>D-!y@y zUHdhvuA$4Z(9twKsZQsdw-co2@$$fvJF?nSzlzm4TV>%(S)XCi4krdkda2&%vQrao z`aAY#?L|-%zs{KiD+KDc>R-)NN*V4_nb0HFjXxQ|vYeeq=-url=MQf+w%^UZaNO^U zsChf7Ad6lmx}}S;&-wB;dVk>yWnK8|$Tkc9UYySG!#xV;X3e^kqPe3N0NhZ@-<NGw zlpYv+@?AR`=cLtCx0ZbRK&!)Tp(tpM_Pa}Uo#6MOT8D<GZcshXN%%KhPC1V?YieN7 z!ChR%x~o_ozm*1kT2_CQNF}}8c%@n<nRsVjpCA<<9MNDJ2#Z-5(_|Ift2Ki^K0T*q zn6bj?Lt@T5Ff0h$bE1JOJoVy%12O^NP1Lp=Oub0tXAGa+cefCAiaF1%i+UC#eAvli zXHwiyoH3s<|9wpw5#Eh)kf#Ld?p7)^99B=rsow>Gu1Cz47`pwyU3a64)j(#W48eX- zbo^!Ob`mZKWbT|?u`)X17ATqOt56#9pz!Nb;cY0F(@WLy^Y9ir8pbS)2B|4Z_}j0a z&}W$r9#$~ABvc9P;Rfn7$(6Scf}2`XWr<;JKD_ZVb$RVM1FI@?U+R3RPcF&AqB_RI zHIKp=77mI)m>_epFQIYb!Vu-fPu`8!ZA<Qd3fAis@3|Pk&>%Jos#Qd$8hd;xI<LD4 z07=K2<yxwr59nuFio1%LoqFA6@;ja5!lgm_yS2;QCx?w-GrFO7-5eMoz;M;$IjMWG zwyJIF+j&8`VMXATZoH3qz>-kdO``fTV*idRcuZ>bYp`AzEQVykyAj8Xg$(82oA%<o z??uhp(}q8{znuVDP6skSLV|Q^cV{rDoiOd#C9k6x7W1MB0_ltX==%2hcc~}UyMMNR zG;k5yfw7ao658u}$qr|{#A9~zvz4`EvEF*uC?J9+AWgtRPXFzot8qzsI%y!zJT~Q7 zAS(09>s>Dy!$A5P^=~rz;yQgA9GMTbhV!|}L~-3QYCzH3Jiv>?bLc1i$oHmI=JndN zA7$`Jk!&6+cs1M{sVdskKTkcj0VOk0CjdjGOiPk>9voV{4+eiK@2G`(d{UfkiB29D zro{sW6O|HROem6MaL`I}WY!0upIaEkr|Eu<JpV`JR90)okjX2dvROXX4UI$ItO&lh zKH%3~<B4S7fZfhJtao^VYhvK`*1oB`2c}S;4OcrBP;dF$zk#a`h3_lfcdMpQF;Mjn zqt8*)?q2~@0=6g*-)`iZ8}M%C&j1*k@Q$`fO$Qb>yxZLC0NAzyB*0+sf&LYh5Bx^& z99Sv!mIDo23&<eD;3Ea#8&@E}=LYY{LNQQbU4Os&U&KwXKtLI||CS??c@PvE2c5ry z>#kDjC7js??+~B#u|UZo43|39L^~8H5zBE1L-*6v_X+EO%`S?iu>fyIb!8wA6|Ez& zti)Gy-reAN9n5$0#nn^FcRauSuF>fV<*{>=YQ^reYCeE}C)p*whU|_4k{Q!;PDiL- z$>Wd~sOFN)?P-C1>ij-2?N^CMzKZ=zqbxP=Gy#INpN6C4HTGbs+lyabvd8x^<GhDO zOT&)|0iY@8o6FJEPkE#sLzn>Iaye?csWwsV6*9<+|Ek2~KP9DsjE}vDKD|`Wztl<T zyS4t2#))bDPP6JVhkM;BlRIL4>L<&smGPg%2bfCaKN4X_b4vGmg-W$vjYSi@wi!e~ z@7qqPeYyX<M+x{;voBxX_p_|8)oOm>eBb|oJVjSMUHxdz;C+vW=A#xdWyo=Asa4aZ zYux4d_m_P<w%>sk5ZCWxC?ATT-B{1E{0k=O{{trZGNs_BJM0GtKk^0|KooD_eXBp6 zXH8o=O$?~6xI;c5Y`E!97Ckb5RBW<;I`N=kaj(?my>M*1_MXmjaDK^RZOO)WG~=&= z@|BDpCXnXfWiaR^2J_aZ(4uBD9e1=hRJ$2NlAqyNQ(S`RYVrw~PQv}}m<gQ2xNiOh zu~?a$I_@2Dm{2FbZPKB@YbSpQb1w^qVV>V3l8j45b&?F54mdiS5`+y29WU(ci$NnX zTMX^Y??%JM{1VBGY2ws@Kv#svmI`wO?51v2YuNm>4Irs{Z*o@CBB7fWZ6pjpLvf}a z%a9xtIYcO3{k0h?6n<z@|L#OXmWl>;vP6SyeJ5CmLx&2)TF7?;-H!fteNb&SNxPay zJ>p%V9C+KLudfkBjL&MS<&rGJ%tF3Bx%pwxOoWdTB^I<0FyC0#80Egr{f7l__%p3I zVPIx=*vm`6X|!tQ2T1!4G49EYDe|G@cWy$Yx|~Z_ZZR&x3yc6;BZ(gGCf&dSiOiU6 zFUx)+O4V(XK{bOAw2Jwh;oEtTKwrRM;Y@i&u-6fe2K<Noeue|VbW}jghbV*`&RQ+- z$ovn*%e6O<b|!%zip?8Fo?9<1#p^pY)4*6b+IO3<h$W*7bF+z0m=^s?rS@X`u2@zV znvs>2Y*1^_8lXa8?TjIC2>^c_L}(88Td}j$*}LDiJH9Ntx=K#xoD>j5b}C#=c9*7T zhXDV1bd-$dha$z{BUw*|Z)H7SddTSMwr-83mxHh$ET&6@7ylrmC%&B?ciy=F8J5tI zSj^|4<L309(33!>HK>QtEC~n<Jm>Oyr7xedX7{Jj6&lY+Q(XXa3VO^(N6$#krmFhk z+KC}J<S303a@d*#XF6DJPp74&Eh{O(?pOgHrr!MFdMI6SDP2Kt>N1zLv)Nze=kY%4 zd2k8LF^xf;uT%1Wh1Nzo{x6|5d#Jdj57(Z!UFGxCZV9&6(Pg3ywWkg%0wb~v;Hev1 zHBB&hHm)P_kXW<roki=hh)j?)SG2#*_-YE_sn}SsMm93PxH=Y3^1eI^E?6f=T*IWn z35XQ^`t2LG<v5^pNWlY1QPCnj?#$T;0?s2ePFU<^a?`uVh$n;Qs?sO;`046gGpp~4 zx~JTqV~+f|s1+TL3VQuT@~~zIX#{9U;QDITPv(&K-GtMKKsY0C3Yg<!2gxn0#LrTp zL9TszcdU^7%)c7IKw)sd;JWAa^hMP8U@Q{)hv*7jm?1<U(8KAk#L_{J(Zer;6hp=i z6UPcu^kJ~g0LdXGPJSLgl3ar-O8p8TzZ5n=S~;zh2iJK&Tw9<>v?POhTE4tr;Qyya zGra4s3-9HBx$x?#_$T_Zr=f_Bj?i?JUPB97=D!>oL36O23i$C9y3iN$U7e`=%M8{T zKj*qa^$M7s2#MGE`p5T#4j~ltDF5XXu~z-XGQd{jNGZd){nU@Ds7uj=QieaIIkoLH zDoQfII$B|NtfC@C;AA6c{iJrSwxSj>bZTB!`V$-Hg9^co^lhH{+UBwSaygr^J&Or+ zOVTE#1rPL-axeQPqx$1_E&&e7(n(%@^#ik-9muZn?m1!>7Bl~C)Mw0e$$=ta-ZlAV zH~sm9)6vZw-F7k$cthWQ^*Br7vF>2X3WP*N!)W;6ZK?hF{Qct5aMqi_jk?Gsch+}q z+Wz34n;q|L2W0oU5PW)yrkhhn2DB!&lV;24x)E(>jP=o_dyGMsy~XsKvG{L~%>#Uz z=<ySBNg$@+q<vW>gi{`Ni=<U!>;?jWkB;A>T3~ddN{(*?B9EO0;gq(4TCUw<O7EQB z)JY7+2{_U`SV6o$WX|#BpS<23enMC?J@lr05&6E8%dXUEq$2%!;o^7I&kkV3q+`or z;HMK0^;!{g#9_+NG(tN$Putefj=wbho%VvV(SsYd-GtIgLAZ0EKRB||c*oXpT5Jfz z%bSiMyG(hWxps7jh1ev;i(0Wk?n3ycRv}Pt)f=$C11XkOY1FT%VE1?ll2$*9wKa5+ z4Avgj`=^9d4{{Q)Fo!FV_)-cOeg&Ppjx!0zpt5~jfGC)U^m`?43PN^8kt3lUXRK|{ zI;b9Tv<3qOd%e7<D0sX;r208NiO&O}^XlVdv!t(F{azVh2fmJk;7#q2BiIDY3}`-) zGHUAVHScP^<~&+R{K)}Pa4JOzktV=ZkQS2qQBhws`Kn9nCY|=?>M;5q=!KjM)Xgwn zT0_%MCOQTUT2|`;PWbw`X=(YZ!Y69~SvMvgc>&4YvFE`NF_c-$Pg;VsDC{-v+lNW5 z&GxY08qO%3jSz3?^jXgzst}%?zv;JiUh_oe)&m_pMzIYrjk^`I_H=);1WXV-+!b~n zi;o)mq0}Ew{Ofr-fkDQ(YFOB>S|TV(ArAjo_;WagI5n}r+tWK;S_pIj6dmQ#PJ(5G ze1iN!5VCJ!HJkNqMg%bFWr4u-^<Xa(w$M%-u;C}e<pO8Nk8^hp$Y`d=L>gt65|!jg zJH1+wi0)p>Xs&lCTiTX<K@>adPl$jx5X4EJd`O^VI0<@@e^O4UXUQKC8HyhOGio<$ z)i?B5bm8;eR5KiJSuzH2R|N*eEJr`W(ra4F7%>)#jmao1xE|F!vXL{s6&=;e$cU5q zyV2qTLd}S+a@k2q|7P6EmoBP&d<&6z{P^v@F^Nr;WI6B`LXTrrF(nb9=luB3*KXD4 z&x^b528E7Vk9nxQ^64R`#IL`;5+fStPj@MGB+MnFK<>2yvZCMEdlG&kj?j+&7<y^Y zhGmHI29)hoPyK|7mRS9yT~LPLVfw`H%-^}0RhIswk!lK2D)qMJh?R{cVW-#o#z0d< z4in(CjmNK1b4Y?$&i!<B^cw3@{rr)q9|)p=g%J78XKlj@Q3zHwyuL=pC9oU$$e(g{ zpMnm;b#wA2>-H*0*BLM`zqC|94>v!S@SyI3+|pA5U4DvFSYTnR^87bB-qc-#Mk_=+ zkx^Io>9^dKfIcTtapQZ&fF-M@8-Fa^S~!w2ItBw2zWXFRY2$d|QTYhb@5gV|n(U42 z->R$9LMjBM4tBk@Sx-s6*A|$D^85y<$%K0DV+f)nFQPA43DxxHbd1$?^+e_#*X}1# zc@~o~jAK+k9uI^Z2H5a>xO;?&suV*L$ZD>udur4z5feg9{2&^-u~{jgOaVn`j+&Tj zuil#4&S&*@O>Y(I*;9AX0q4)jJGmD7)h_{Tivro*#G4L~8wFcwYoZ*hXcX<F==hKR zDvtkl{#m8x^A6|(`e2$xgj?r7oqt$;^o}Q3AR)K{CY*QkH_0^h&qM^`2Xh}0(ELbN zNU?{g60bb<rs|mO^LBVtz{B)H4{J}WJnT=!1)Mau|8oBUm`e|a|37*EVy{n0jqQr+ zMR>Xh)Bv@?#S?ME*(@gD`#gjr?HpfzRaI3Ei{khu9VEmK0WJbHRcJ8_#H2R%*QxqR z<WkcIr`N;jJb40<`L}bPhgmZ5CXwpE%%KDu#3wd=BDII5MkJ!F?&c(N0(NRJNRR*# zeWa@HihHJ7^UdX9bOvDUQ&;?gC`oXkBk@Yl0Q`XZt@YYQqv4t50%p`*L${@zQqKld z=3mlFfO5)LfF?wbB(wPJR~zc4=o@m9Oy6xhm|f1402NJs1gwDv_-|J(W6R>tbGaIY z3(%G9edYFKe(aWM?-4)0IO6sCP`%VJ3Ybg8W!QFdq8eqgdu>8~RJ8e6t;Z9`>yw_B zK_>4-9YJCixi=<$w7ol~fLM<2rnA{AXgU$#D_zdfO7MiEE1*Z%IRcy0_1-_4CCK@; z1$9^7bOt~rT@@NcgzObCv6iOUGgtc0;h;8c`w*9U-#)vLwJ2<n6L!1YI>!e;guT8> zU~&M<N~G#zl5^8%k+M>LVIRkqQs=&ycPY2uz<HAaF%&T-xJGM^fDkYq0aREdlVSG_ zeJqEXb!ODcY5T+ugrcva!6^j!6poNvQ{X^xC^tAu1@}kdEZ}3*ecqnxR0@93JbJ2k z@`&qefABXEg|k<?GWf;HJcI9SInpN=Nu168t4mFx88r_T*C9RW{OkX;5UM#8s<GA_ zQJ@%F?Fl9RQ=nVP+qd71T^A&kW|>we;!&Q(AQ&uko{ay3U@V;W=dO;M)_iTpWcQ|! z3dEA7B^yw(r3U&8gTlB!mh5rY{jF%@8+8h*xOA{fI$ka~ex62kfI$PjAmhGs48^bv z)0Eli0^0v1k9mwerN+p^=Ieilg`!wld|0?4!l>H!uI}-9sQ_?_zq|iYcsj19FTfL6 zdBLrD42+IT=%TkW78*6|K5FXmO~y;8VDY0qg$muz;U;{IBAp*auZqP#md-tFe`_$R zSO|2J-xD!&+#~>YvudV)IyI%u+u4oHCuZ0e7VJ<e-EeP7pcIwK8FD`D{W*5@)o50Y z(+^;~Ka(*3o=^_Qp3SGWZ&ewk@OZ!blD5iT!DnjjG{3Yrb;{%Nhj&15UWPl_U%Fwr zW#cF7RzZW}Gy+~<1;q%dqBRd3ViW^Kt)rsGHlL6LlKuMIqpK{|%<s`_u7PVAILl}S zhlG7(>fEX7Yf+hc<Zx2M-@?7JZG9oBNwnJi0hZzv;kD$6YITpH*-MITAz48cb0NXZ zpkaZbK<9x!5R~yTrf_j{QMjzua#R)%n)r>r_fHPfQ!9AXveUsC92;mPbJJiyBpnS* zRPq*JKX}V>qMZ4kj-OaKdMYt@P8er1NPr>>Q#i)Z3W=HVfzPA%oJ1Y2Yl>+VJWyC( z)HF|k4*&N~1B0DBY!Mmn*PG6I54C@F{L@<&**2GU{Yu{wD9IyMv}#nTi@0R|cT`Lj zMa8-~{~{*E4-e(H&f!tOgIFYs0PPOY3?+8X#dz4*HI5wIxcJLQQ0wstqqwS)g9K<y z+7USQ&$NM{{P4D2EEM`_w98edW<701{xJG`3H2Mxhg;)yV)#O}*rPIFG*fo`UZNfY z%V)LHp^s4H4X`N-Fcavv<YA-Wr`L2#BYJJiOxo|Uzx{CV69(RVdF3svZ1&ME80gcK z8i<7JTW#5R4F9894;sLC<2}mRf2K0k*jhS-L)<rb%H}weY7-Ynn#cb(iTSsW&+Q67 zxaB#ah_JBuyK%7%t0kuYZrxL4F8xRUo4=^+A4E;^-j?W4u*v*>c4EPu56~nteUUQ1 zsi&5&Y^Cg@7~rsd;#j!FBhK1Ms-mw)!4aaO|4KwF@xZ6^e_`<h4vfq%hWdAEEqx9Z zYqYPU3R8+wkXaaF%#yrzxx)?l%-83u|M2&b9sLWF={EG_5X@xfj}xYWOQ9^d6t;@` z_bF^&8K!<X|7sf_jcbYfpZ>dJNZpc4;kWYdsRKZV2>WDGviL7s>g^Bujbrj^-OhKP zUmJD+5hDTQn1GZP9g!#p#dQP(hKeB;{I`JVL+@gpv;(6iN!`bkkOU2Mk9mvCcDe!R ztogjpC?69X)B;?sz&N0IXUS55lA$ibmjf?EJ_k2o{=L|=WI6Jbc|OIyYjn+(@We-u zkh}`LCG7yHQS@GCw+1V!STL0%q0sCbtnlFCUSe&5_cN41(=Cv)XqYpky*L+W$}A@& zUx?yc_bp$Ap#M)q%n1&Jc>fm>Yx;|{kO%=F1@NHd%w95N-{~Ht4vBn!Ii0^$*m+mL zMJ^4ZPl)NOrTKQJ93GXIrzS){afV<*SO!o5r$&^MWteOF^8T`Rvv0^-bo`vH*}1vQ zB?gh+_VB+$Cg4B(-?A{DfhVaZDox)Cu=@TR3+q6HrZ)g3Jpo#f1gOa$45SMIVNlJ7 zKz5cyYR%^t`4x@5XTx+Z7Xycpsnh14w^`1tjBlMyF2&M-W~_>|OF++7ph>Ab{!EZ1 z%<}mQUya&J$VT3S97kB}(-?J1o3(bX!N?-5E689^aB0aE_;%w=ZXD=M8LY5+cY9+Q zg{rE|0wckF>1>!xcGG-*g{8vTy0sed*Mp~!ch31CT5#gMQtQ5i@gs81?aP4_FIH6v zZlINrLFtxFf``WM?*=+?8>Bz#pkj`sG>4@RBp!UH^SDp-fwX<*oodS)rO{V=;>uI^ zR*sq`hiIx3+H=U4u?HoNf^jAIrw24f<CdR$D7568zd*GUQhe=j!#yW<cRez5I^X^$ zPuBES^w#StnV(BoObnAk5ugQ}I1AlApmWaIbA&TKEYL5v!io6Lr%1p`fanMgunIDb zzK;xP!p2}&p*?K6=d(AjQ(rH4t%w0<q@|-%`hLGU3n-!x@AB=-Oj=;N&*lS~Ein_{ z{Y5<C=zV<e%SE){*lhMs5%<>GB8*%BT%=$T{$OCA7S}q&Dhm7CH~)CQ*%Y6%Uz9ZM zOP_61D&8<fht56$TBVxddXe}M0%@|mr{2`(0j~pPrVRQCNm^bK-e4|d9NZ{z&!!0= zdHz}oBlqsk#HvtHS^9R-`GAJl&qpF*?^q~7ZS8MkV)-^yC4_&(s`>epycMFu?GR{Z z+vB~w#Gjz#(fZ;}ma^)f9ZocVStfrELH3yec?{=%N6q0Vqlx9mFA0x}!jyp$hpc<$ zz3A`)s`T_tp{h3iwoF4qy(kXeE%B;d@05vj?Ay_5nd&`pmt&Yq0F84N(DkG!PT+<( zP+@1!W+_#pxtoz`TC){6KZSIUjwmVX6lrzWd-Hj7Ksot)l+JWCrMdb(rgPRXM^P$k zI)i1CT}&-3FfwM_&p+XM+nj*>&-JgzA!Tl6InLQXX{o%Zq2tWVhrW{{Lc<p@$)v#C zb>1~}N;yCLNtbr-#g!7wCxQ)9>DFId4T^yh$*{qIsN1JAudk}vKP8z`bCz#R@nO5B zQ{|5q>?V+czXacIT?5EM*LRQd<>6Nrs*ts-T^Wo2Yxc9F|5x_2sl`*6NY}udoJ;C^ zV0uOjU-2-x9WgJtvG5&VGO{1oV`46Cq#udiwHsBg6Im~>JeV=3UOPWY?$^F?nkl4c zl~L`hpY5#P3l)9VCpt2R7mB?@Phs8MZSDo-uSd!1rRr&a#KD=7fs5&cbVb3O&V^uB z!XUSpx#_JvuJ@wvkqzR+6)T92=AYw$MN*H8(leRO{=rRG_)AYC-#&r7C`9{1Ux;hC z3vq;0J`3AR*8ujeu5hDlcHTzMhl_bc8)oC%7Mf*Vz7BHC_}TfSb*;<?s?qTG9eYIH zy|9uxz?j%~Lr@OSUgy=4>dG_NANy5RqvFC}GNzPKwS;d?T=|pV-osBHDY(b*MY>Jd zl0~3y<#CW@-+A*EplO_WEx5u;L<k~naAf$@=IXmBw<TVg7`E^PaCOWfC(1F?A2$!Z zGgudh0BZN^7rVXwpgxg<vO_Lh6L-@wdw^3ik10~z?D`H$OMg<C`69IK7Tcj{V1RkF zcskkY=SMzcb{MSEM2)#*n|9L?7-PL95Sg@G(ELYb`9!DDi^<RuKx94)`wB)eJ*Xxx zB1^G&4AHpNRf@>K&+A<mK&JmJQ~o66rXKCyLMTma!b=!VLn%u)BYf-6q?vo3+hZH& zoPFxY$HA<Kj?dP(mPd551BEy*F>vY4Gl`-7|AW2vfNC;d_qJ(4AoLPCNE3umq<5qU zB7&d@0i<{7MS6`i=_n%7JBWaxNJpxIAYDOv5$Ro;BKZD;GjnEUm$UbG_F3P%zHip7 z<;o}!@+5@kxqtU{{b(dF@&QLAA&Fuaj>>+6fTLL4J&WBO-TAx`CZ1NU3yikqN-Deg z;<(K?om>vuZ{%;R!XJAS=C#iY%nyPw?-M4&x0AaPDwUp&;$27JBy*L;w6~!9wds2H zlhOorz6#MdZW2iyI^_2uBgDG43qH{APi!+o*SNRgNomhX|0Vcrs3SDl3)bWQijccH z>S`VN_sGR8wfyuexdOs@O6bFm#?GYM{=&}w!p{D}&i=yA{`asmaN*~AR;^B%8+74y z@2SfSipEgTO#W9_<pt&F=$rdvlHX3}d2b+Qec4Flrkex#!S$J@ni@2y73>8t|Io7X zLR{<*f6RU+TV#h5%WrFTTt<k$3=4Q8rXLQ^E|nIX-=p&hdm`5m_DW1eNqAkr>D`y& zqHL?uohHSkAyFp$xvz#0ndV#3$OvCy;1Vh_ydfkwZlJnl#NbZ+<DIRr(koK{>GXQ6 z`AKXnC6M0kF<i<)TD_Q3;(u$Np~yTkmcG|=)11C?R0KjieEk-Z%~R)qRe=3_`$PT} z-4}l9B+Mj{rWq9OM;6#8y>6L91sh8?f4^@XlLj5&TC}zGg(_#JHjm=n&p62%^6S#O zvGjTSOS`b~!3WE#o*vu{1FMqeWr2Hl#xDzfJt-k_XK~6cZ*=IDWs3O>NRQGno3WG+ zV#=ini2BltOM?i<<1co-rwo!>nbc?o&nsdSY-IJYL;@}fqxBL6DZBLc5(*_?&U@0* z&PjDXqMvi`kdWjngCs2&`<4|}O1tmoAkPg-?CX<VfkHi&4DaNR`VL5L4Y7@EtA56M zw_c)R`v9NR4(D>BS|4(?gplw*8H{-%P!7F0*ld0ELIjja41;(3BEqRK$&P!&<Mr(5 z)e+*WUr{$>C2pyH1cIBa)dI0d`g`mMo6?-6g&3uOIWXhmZ$aLF&l={R5zx=>;`X(2 z>qA0GWjrt3ov}i7IwbT<<Uz0hJH%}#%4G8N;g!cld53&s_h1Kb54nwrKLln!Dt7V& zjxF^&rjfrSX1A^9f>tD)@7?4h-ycqqa5b1zy<H07F)EVu1d;KZ_9w-?8_AhHWS|fD zKM{X5=7HAnE`5HvGS`U|+}z}J02Ue*gu43DujJ^pXuQ~I+p<i5f?eQ1UL9ulYWbcK zACEz0!6j@Me5(Lusq0;vS0Pg=Huyo1S@Kys)^7~fwx`Qj=J&QXUA1WXWIQ2+X$0YD z(@qmr7>KD}^rn7~x-AQ;j>#C1wa<gH9~vb)-I*k(1VS<_a1CW8UvOVI&eXJ~+yNJ- zjC$t-)~3b3$Y3$r{W;?jRKQ}sGiV~e;z@`2SkoZ@r!|5w*UYZJRKGAKHW)7GekuIp zqbzA6wc;3*QeA7?e<ri4Ao_=y6~q#NY_nmZ;TbG=JMpYhZ6ZT=he!Op+N(wQZ)byE z>|aPKVjTUetgd}n_wQ#^wy@y$3n+;+WgSQ~k7EE{<|<xM7PZIz#0UB-9Gx4BuGRrc zklu-O2z<Gd`*N@$k`StF-J1wGCPWC#%2Nm#)lS^$!;f)9d|aDziGLe+e6Jrlr==OP z1!lOUu-e=Mrb~ta`t(nj9=AB(E1mOBZgPA?i$rLgyFSD(hFE5%%cpW;$TH@e(io+a z<lwTO@J$FPKZ1_CZQmV1SKLc@!Ma;dBf86#m$M%(@(VLPTnse#p|Rr2{VMcTO31i% zmlZD#Nf33nr_rRfr@{6k-BhKCBJx`G!7d!94Ow#DHw4z;kiV^f()|)yA)@mt5hcRa z%^q&|<vtJu{3sgB>_2?J`1*9=9E|e(GB8Jmv%DMX2dVoTNl99A7!C1WMZX>xANoNy zQ5uM3r?y}wG3_jYTeWyo8KD9Ib|~3~gE1p`6*{A`CIhLMO!0`Xh<D4ZZOUyHiHQ!{ zH@QJ0xN35)*VAvi%#b#H^AI_y>@qm=i^C*n01;r<NM%qXU;wij*5iU8k84b%-Ql_E zzfw`w;$4`(<DwYgcLWuQ?Ck`lp_{H>l1j&}>efzvkBJfPv9!}{-FXIq+8YyC2Hpgh zG2tv;UJJGku@NPv!4wR)6%wRcBMbw|*i`_PZRy<J1`*P*sr}K|PRig`(n|(olGPHH z3)eCB<PiVXf@F+D86vqEv|>>$_b4ezogaQ;)@90RHm-{CNM(YY#!iJule5|ghv<U1 zBwO2rh2^-NVt<9L;+>M6opuOqY!?i+`P{h(B_g+o2c2pgfj<=cE>X3b!qYl<4rcX$ z0rxR~J~`uOE;v~%2Al>pYaMvN&}c>SDR%IuDe`vzRuu(<#CuYX*76VU3{Z-g5{q#0 zBBKrh{=2kqbsBnU%#@M23GN;3Ns{#rmj~J@b<!bM_D4hwC7@PiZSJOcY;U`K#fQy= zGUaEQi3uty>&fYRh+wj0j|X2-K%U?Vn=G$y7B+>aF}{3u!m=S75XvV~eLMmjVmO7? z7U`9wHP)5M>v3rxMm6lyc7iW)w=q4o9M1xoLV{Gjbjsw??F=M@Fy+K`0dDgkM&1<9 zoV8)QS{aFyO-P@pd?0{R{@>C~8!Im!W&B%olM1^b{iCt`XMNDWCxyI^mO|#3aWvhs zyS{p}k?MWoTL1Htbz+NtB<XdnjpTxq!rTM$7Z-~s>Y0Yi#|=(d&(E1DHVA0*Y0gTp zR?%}xLoa#5ZbG2>7J;z?3UL;W?LxL8OoUrVU<&(~xxR738t<4*I>lv-xdq6T2{jGo zKWEJ8(a=;k;ol!W&Xa*k%h>bX>cE1vHPFuLU9Pk4Yy^|`tG@zG;*r_gS0kbaNm+Sl z({HQKw*|(;>M!@vogSo=iJ)itA2Sy=(9>QF1WjheonWmt(xA|`%lK!1!$pmly>>U} znt9VzzY;Odg!yK$AZJhZMP7J2jnr{Y66*MNX_8c@537yz?lSq0E7t0-Dq)Kwcl><c z(t=1OTJQ_sCGIZn@}A!3^#q&ES5bT!IBV?EsXM-~J3=>3*Gt#jDbUhB%dsw1_mTOA z80vy62_Tf<e52=-AQYN*u_3M#3a!ZPEBGPJTacI3&iP_^?Mp}Wqo0I|B4?#V)Brjs z$bN*q`PDYs^pP#S<kOD!YbB`du|@*38w%+S;QbdOQVu0~M#iDnyd==^^d<XJbi82d zbkSfz;YgB%0vVp7MUpRZ%6_lih^k&9z9MI5l^-M^E-e(kwe0;}4*^&tGR3;yI$KR^ zd3kJ;V4k;;KP2QzI*6goW7BISQ2oBPL#O^EZ^8*26X}}vE?rFt=!8*8)>8AxV%X(A zWTmLo4T?3sLqbH>T!N~BGN)|^N3Qv!1z3v$)7I`K2g%>%H^r3xgKY{~|CDqh6`>AO zws#4_Qp7f4DKNOVoB9CjZ1leLt_Ca)alqfJQwV*(<3korM%G<v5)(n10SQ-WWuRht zvf&;R@sn43JM$X)9{CI2L_ztn0c^o)AZGu2ys3C0f*=-Be~Y@+QK21cox~LuKYR7j ztsAzHSJ=6^F4m`o)@y&TQb~ur*F#Y-HGw0bRnQi%1VkM4ArIE$D^279clR22d#$e^ z6Yg&g>U~-*39S>Mo-sPhbaI^EQin#}6ULE-M$oca9SJ)*w)}iy{Cv()L9YE=HP=qS z7U@p|iyl&s6Y8eIH{bM!e5TefRCc;54D8V{-0V2qLW&Zdg%H1e3=1i!&;8{~{>n!& zV!Nk8DyN5Xr?pm1$ttI~|Aa%u$7kW7X447_Xwb+>$Z}q3LD2f3-lYU>`C&4J4MI~q zG`@p&FoHeD-`(Ka)pJtxhLssMTsIJXQD|VM5w_NQV;NU1>Q)II^lVtq)lK<q^6o}{ z4-FAn5O^}to0jolg%W{2V;^^{89=vYr1#0UAO|ql<lh?ZWGuyxLT+^wub5s+P)i<P zx9-m<xB-a<o7-ZST0s1Z0R@766ndF)?{I%8^T!^+Jvk=y<GJcFd3wobo~3A(rU_~O zA-JjP)AN2zsO&Vz^gy=ttK;z(RpZpFiJw{8g-r4rtW={)Hz#XA^(X{^hj*pr6wkzY zjOoC!?Wd>l+Ftl$aF2gVae@TEQ+cVi?IhO2=P><87e**BnP{>>x-B`t9U|KSQe*`u z;n6~yQA~2H0yeJIb41f{3bD2hb{Sxd-Cy@U^{NSZdL!V^zD8bZVm$vepp5am2nNTR zT+-0FU&M=`y@b7;%#Z|_O$$8H?`&PTup{EH8>drMzK6QBSuGD@)6>(lopL@`u!5wk zb(aqu>_^rt^v4wVFt2k@_zmM*28PC!)y=r_cLhwA^JG}DazWh5+EocUD>VLA+Nf;K z(kfY#_RM|*6kg2oeb0J+i#WfeY@8En>n!snY{FkqnkD}iut_Iy0(Kh1;V|D6uUs>^ zl55~d7T+eqjG#fJjHeI5W!37ep-cLRoZAlCALzgGqv1JoSsroMf9QIosgD^%3{sT1 zy_C~yMXq*s#xmv2lp?N9$o@zM?XNdFV;QqQacT_hJmOqYigvwe-@{U<G5D6@bK+4` zVH&K5t;@FDafDTH_J)D0exumJb-tTy0WVZzyqLq&s3u$@iilc1xfMPUGGh#s;Cuy5 zbelgWbu}t^^f-;Wd3XWoCD#PxkqTX*bb|-CDxALWr@mNu8TdoSzxJEMx0PKEV@(@J zM_jIu_kareC-l?t-hV?sg*B?1iJ-6gKN?Q@7Bu6|qvRyok&e}ylXVm}gi}<j+jW@V z$i-CeoFnS+Klfr1<SF-G;TSxe5+Qwa+Ccy<e*T4K2gSLu`hiC<py6K61wCdtLd^2# z2b)t3q|4{G>1yw-=`61atnbqu`urw_JXd{b<}mywir3WsHs$dnY6RZI$(oZ<Va@dS z+;@a>Ks>mkUBxi**^(jdtU)&`*bi-lF;02yF<cbfVG=wyo2&l(!P=_^V}|erpAX;t zxs4oBZ8s---zU9qWpDanAJ?Egk-o7r?+F<ON2pahhB03W8)O_L{`2}oKqtu0$KPvd z<ZtXJ^sFe0Kuu@B#b|8pLM}h_Te`Wg*@VmFLi^;N;JEM;(atN>rU%Ri$dQS+^%oy| zgv-d5Jn=zK6f)*N@o?LO3TM2D`q}h1!80x@s3DcRUR%-GHe%2BMzr8n&Bt@ecyN2N z;hkNE{oy8>3#a=Z@=rDA>cuBS`$hPc1yEV?muI&M>@1SE+TB?XB|CLHu(<=aDGR0o z)@obT&J~+Edh&Hf&lD&F0_17oLx<TrYb$v%qW$+|xg?qo>nPhk))na{RQKjMn7=pY z9^9u0hGcAx^L(GpSL8eG_%i1EYLdF}8v{`F*KRj{1U2{aH99KusivVTt?^sx{bBW{ z^_h+B(<MR&y~iSlpXA57SI%c*Xw&a;Vjfa72Phsod?L_qRaTgJ@nrtKiTsgAWc3us zxa#1#7kaRreZw=;h$UlTiF@lp`~9y*Wrbt-Yn~TOY8|v**%LX{AjWC7KI>H(@QA~U z>Q>tChCE`H*ttXq7njD_bjAuCaasn&WTRW`>|M|dr%69HZN{sCFZ4SZ-@IxyC~Fev z*jVC7NIe)UQ@rTo8y#y`e&2io)1fNXA*B)&#f(UBz3~WdT1FY&MSm}zcSX9WN#yMh zYx(I#m5w#W6?m2Cj%G<KO9v;kt~*?JaB^Wnw3-Hc_GgFA&1GwHFS4uj=^unbP8Q2H zV}S_3G|+kzpz2dhxSq0#%HOB=u7-p{UWlsdI4@b%$}n~}WDPebX|8Mz1YD*Rm1DE< zm7k6wBvB8ZU|fxCzh*lM(uPA?9TKrl-DHmtnZn7;55|^JlSbDv!v%~RsNOK?_Z#;u zZ0FdUk4r^+`+=0j#HKa>s3ms8b1*a*@`B#H<q88GjMZ^e@{a$^W^Leri#`i>&2s?^ zScOBb?m51Ek0+{yZ%lE~iP6?r)E8K+-Lw{1*RP(h&FG)4z9OFy%5^ZdmFVqtC#o#Q za%c_^Rs{vP^K~nQzB}6&${J>mBV8}y*7v{<gAYkN2f&p@v%Kezs8>tr&MUG-Edojr z8<Lav%Saz!%PQF0)l*PN0<)lTsQsaPXXsXs0(b?=7U~_?VG>qj3XwCOv=KYrPz;kH z9{f?*FfToq*EKFabt!M*7zC#GI!RmR#rz&Bl6=P@6>k(|M#W!pzj-H_4ugg%EFM30 z)zfs+k!h`K;mV5+)lwN9WbSpzA+rau3u-QepwdihyeRs9#(O>P4Gq=s*QOmH#bo9O zEj@Lg-D0h_CY|GV^weD6E4HPmKaOhusK{@?mU_p+A$rLb{-Bf{7h1wtHq^BbJK`Uf zg^u2y)q_juve+9bs@l-Sgy3cc=b%|it#o4Hf-aGGE;!1u_A-I4-2!>PblwB#r5$+E ziXW}EJ#~UB#}QSp{F7@^QOc$^S0A7eJ1Q%#Bkz#Xi?!XAlcw`v(YUvr%{!SLT?>vu zM5zysQ0R#Gf$m*2voubt=$j2dCl3HCndx2>O%?<<Zh9!Vh@-87hQI;1EZNTAtp;xF zO3sMu1F&iPte+erObU9}vC2sQfI1a`9%;-ce{>24LGECm-8BxnN0kSMj!Tm!r*J9Z zHbRvO5xIM4vM)RS{q1;KHK><BjB+6%Z<~qz3K8M=BGFp7ug$ThJlAe@f)P|&8|j^a z5IeSQiyJSR4~o;aSg7@m=O!dhWS{tds;NttTJARvyi@J>wSs!#W%@MIynO0V(FqT* zurLqnZ+7QFU5W_2=;kvyqmum1i~yejp=%C@=ZIDq@}yW69G6J-hB&67ww^urS?ZUP zHcjiP&oj<TT_ka+<DWLzwMmvd$y4#OzNXucSNAy>QJ_|HG<ouoHy3bCH<VYh<D^#^ zISk%(_$vB*&$|KK%AZazx%NB?zBH7t>(`g)0yKlIE~{VS1IkMRyOM&l@m;%6N9!#2 zLC@EP*Vc+*%7T^%_#?qpHgm8+#sa=7pSk(1g?P|8#_@^b)<V*Qw}p8<c}MFPZ<*C` zuus#o!o0h0mEZYZbH&fbsoDIoAgHM)^1sy)`4r^Em)1$w<A#Y_PiYRgn9(|ER70F< zsG6{+3|(G5SS%Ub4O!LqaUknC1Fpe&NfJ0yu~1F*;?Eo8_58M+WUzTK%zG=PW2V5P zP&lgp=H}Rtt5Xnsg(gdfq>eXf>XlOzL=KbGUH9_f6knluP$$&moh9RxBG%o+<RG^5 zotUC@3$>V?6jnI3(gRA!cNB%<v#&AXqK$hIpJn{3rD5^&q?p_{q}lPV`(=Ya1ZUfW z5?GSR4B*QHv*t<|5qyp<v;C$)NKA8u_+Va9laCnL?H#vL$YngP?IAcSz6i=h=nj|q z=uM|_s<rc^fTe{r5;K&Xh7@R8`<U(bF|!NRk~Q#tlHIAA5M4he3f`dHox(O=W5AO; z__Ivi?X?vSn|wWUr+9n(9MGquXTI^h2xWhS776bdS^(Zs*1THmzx&Ma+}TOJrV(zu zzrfh@zHW`M%}qZ2i&ln2X<<$8<}S;D`+K*|hgP?HVcyTQW&zW7I+*y=h{8vke&R}E zDGqVKK!~TfJQv}L4E;j`nG{I|%_SwncMY@uRYB%qA|C`EP@`KbU=E=Gm-<5kS-r<e z{Wezw1Mq-9Zh6qBpOOApYIV&ZPIKu~fQlnBqfkIxP+7%}ekF?SrTY)9OiuW9b@jK; z#$FgTv4)k4V$%45^CN7;<-Wx3RG(}1fu|Mw4WtK!ETZV^jgRWx?QF~kgoF2RLxtPh zGV-;xSQfo9>tgR}o0*&8#}e(G!ZVy+Az_<646Ry%__5~#?Ut)tDW;rb8Ug-vO`tVF zh9KRHav-mEOm34NmaC==x1piWOzgo8@9c<3&?=TSP?<4q{EQFvb6S||JU-mY4-3P+ zYio-sPz%1VPjcOaBs^u|kMH;J8n_w8;;32oX_KR`Wt_=j;pe@$%+ABp^cCekr6LuR z26UKcU3`dS+Iun$6=zb}Sm`{H#TLD9zt^lBIhtlsv!#y<+5TRJ%$T{TEZ-qR#|j6P z6@|348>M-k{KS&sfs4X)tZ^u32e#gBn?ML}nV_;#ha_DaCRD}tS!ci#rUTjny}bWb zNnqx`E(x@>BOYsit@hRQ%6|}TT1N@^vYjjpntmaHHs^DHzRji8k0g-z-!l36wjog> zZSC;|gNRkrPzTLybb6<GZ<zjdj3ha{N@vjR;d+QC3pc##_TZP@8nqQQ&~KG1W<?Wn z@~&GFU&y#mOjeFZwnq}$aD6M3_1%Anbow>85l;OP8T%~qiuVUS&8kdHXiQZ~Ab+)p zokMQPOH|;q9d9)3G@|f$W%ZV%p^x^+o!V;0*mfadU&BXpxO;o>ymPSHb`R<0+@-+g zs8fxgwr>t1vC?5HCUf(jd1z4>TS)ZwI2c%e9!n(Q={`uF4s!~-I>uz{mPl<nBB<YD zsy-(#zGYM(6Wo92!+E==@3q|yc68BZ9^E7Fe4fI(HyrY!tT3gT-awn5+%pn3_!JVV zte<b+o1(ljIN97$B?Bn1FZ00XhHJQw60yJU(?bgTi0%vP$K8+*ZI1d?r8g<9l-x?7 z=v5nf<O_UJ(oo}6v9Hw6{n|*eSjBN%bTJh<ngnKQYdN@_wJt!w6;v<s`Z-&s_BKcJ z2|~O({PWKte!)6J6V$Fjkk5JuuP!{rWQ!LVrlYLp%sl*KR2O5A*TZdt7qQkqT2Jp$ zGs751sKNxKR^EM3E<9P}m|kS~_77Zo7?*Lml7qJMjBCFg`M<;@#XTRb^%y5wqN<>e z1SWi5-{XC=zC}Vf%bN=qRtoEhi=6^4drC45hw=ZzwlGPO!6>U_(?VNcEBKuY%nDY1 znl~COlH01p2ne-}JzJ1?GG5-W>r#0wtzJRT@(u%sOj^f{t|FYrQvC0X=~RkDJ)x<# zg5AdoSD@m8%b3AJq`21ywbsDvmk7HJvuEU}6*)Yz%oKK$M3Hg`9c%1GDL_?~K;?+@ zfE!GleU3J)sDS#t?2;~hR*MlXJ|@*(TUkJZPj1md?bMykcX35o-VK#OkP`%i3#Ars z+PYlww88|u{BWgh%-%pfQ+p(`2Z^A*GSb9?UtO9v^#r5|BDei{#J~BRnd*Gr?lKhh z6-!z{nzT2r!v!Vn3xF#Q_(2#yUSH#mnMu6cr|>`W<-MJG`jsGwTHcFN8=-Bm2!R?+ ztGACVXF%x5wJYuk|Fri-eULD4?dX1bld1QK64PT@^0v_tywn9ycZMI^TctCWLizbW zj2U%d!}0iE->#gjTrCO!08W-KU*vfNO=121n_(pY8um2IX5443oc7)QoUxxg_vsaj z&;G{UZ`KJl+h3WmDLuf`5npPJ=?w)n&7eOG6Uyz>8nkCwHJs3JK8aWQ`Uc@Si5BF} zfLX+CM<ASBz=XX+aruJE!BCE}b4l+6LfnKqh=xbr8O_*#=1;7*4&G1$?`H%iEXM*k zByrNEy<`a@aA#!hH7-|9n)06h#|uR!!A*pYh+303_(X@9o-|1F*q7d+KXrOTG!=Or z5NLRSnuqo6j8KWHvR8Y`iq4D>nYTM}JS2lN{Nu_E>Ty_soqwk>>>p7>1kmcz2XvtR z%&qtK!PuN0=~pP&R!D8<d~9t>T-x+Bc91mSz`DQH?m%FZX5)r!E3&8e<hzDcYl0$? z7CD1KZzE*lUWR!e^8V_TlI@%%bZ1yJixp4~sj5iZKg*rK#hEH~0`HdEP7cG5D@_); zfz-X$y}q_v!`b4{I1v=6)tJ;w0Ai;FDRrk@yB6YaT?-#d3%#LaS+%7ERylsQgl(}{ zt2o>ZyxI_FoUInK@#-EJVz#c(>Mg-LHpbu=j@hjDUsBLp`<X;XqEsxOigHC;%P(kL zjJt5C{<zQt06@(E0Ma)zFA@lu7-2vGb4C0H3O_ckm*HYzsY@t}c13QrakYqTm!8RS zJ7lJyQm$sa;b&!7iZ^+s#`sH^E1l#@S}^+dura61nuWnA#kciYNU^NvEh~Cod|wKW zAI?{NsF?m92Xs66qPimI*#E5(JnSoUVY7WHJ(T4^q1%qQUNFtgu}l0o1w~2Kg#!Qs z!9buI@wegE2aiH(u3s-!y>s+pPzySx*FIx3{PMzC9CUU1Y_J>@x^t0E2!hh|%lbJR z?uNi>AEp!yA^6Fe*Lqd+j+}sq+@Qmclt`L0#GtkhX|O9H7V@|<NFW4WbC*EUZa4kq zk>jUOTdh72-k2vo^?aZuuk*mr(dff%=O0&)_jcG3oO5H*GnKO`-n-ULhJ~riCCeoj zQ@c38scy1?+s+0D+LqQKzQ*fX5HDmoaUX~b{|V%i#6bQN@u`SbR-}})=GH+R*&9L1 zIkWo=t>s&hDIY__$08n<%(&6aztex{rhN6Oy3>1`;ahe+4B23)FW4h<uJ_xb$QnCI zDyVDX(Z!U2>P^3eZdalM6t*zeRJY-*KBSJkXue{N8WSv_vT2kVR+SdIHIu>ng{B(6 z#mg}~;YF4!thxyy-yc}oOB9?2v3BstxG-Y4NsGGN&i1G}T4N|eO}X>JTV4Wk3@D^_ z&AKj%3w?avsiQq*MK|}p>wfPatJFjEqjB&;>aE#l&p_;-l2NbxMYQPYg?lC-dO)3D z<tL2!IFA7d1Fa58HH-7ddXxyfJ^Qv(@wV)%&Xksm=hSJrOY3YOc0G-xf~^)jpbg+_ z!g~{e_gN36tc2H(Y|k}`jg0T{s8?1xi%UZ18=fycyJ8Ad!RJize6ggwV3FgMnw_6@ zYNAXZrX03hqEqP6^IFuCA~Y>^@`2Hi?pbn@hFzv<yZ!dkN*&9?^T*OtQBeVv=$5^6 z640y8d2gQ;3cqGGBe@pIM+m4=2!$$(RnZNt7@S;$S=g08-TqtHY^`VE5<`nXM)!lf zhhB&WVuax31_FUE$_L){)YK<dn9!oxh_k>58=i%h;pI-cX<=iZy;d>K{-%_U_HCDP z0l2sbr`%_342r=%gW7({eSTqnOj^%f{!<o&bwc^4Y$yms(D%^kP&Y#{6YQOj8n_<6 zdEvsZ;=QwQNu0bC{JsWiJtfebIB#>?X#qdKs*Z)OcQt1BMZ<ZDKxK%EwzCqX6RUvc zLIV#PZn=y`>HZKF1zF1z&W$wTbFBQ<^CdfI>=d9NhR{zlyX~X|5z*FEguJ}^S;vmw z@QqCb#-Ccgt~~u`c@g-z=I<`m5WBKIR#~`m3-eP^<*Yj4AHkgy|E9eqxh93FI2H79 zdB|837@gsTXXWopS2yYQZ$w6s+1JCi37w1pCnUCMVBMF71;+_tH3`HKsI@2Y6`LD# zNBjCYzO`QiITs!5ZeLm!x;!Vz7aNda;K+m~o6H5MNHrbz1zH4wP48P3ilmYDTj=jL z95ik9B7jEkBWMO|sWv|uf9$SCb4kNW32Z3TU{stNvtH8!%8wk+>2E^ma-O2tFnt4q zsCAEYKQ}NY_<9q}sIxVJNXi$MGyYr8S3T1KHthNqy2dS@2)<o<_@}0?N6k{ydQf!N zU=q6ND@_{ub4DOl>$if$2}>Fgy-Tim@iDsUYlDpJteQ?<0%~slsmlD=dhe}@os4|2 zDJH)Yn97?7!^lhAdY*QVoGOJuHrq(*B|mF+gHc08JnpE_(%op7K-IyJI>|HYo?6#j za&2dZ9AZjK?$n&?lb-r1PJ_lqKd?7unn$TAH)onjbnrlR%AZVl-**0QG~r<quz(Tx zqx&1C4Ul6Bd*6?up(vR~4V~)nKwX6cPEH_Hl({6!r${l;Jc$)d>`ZiY2fM+;p>TYh z*`Fm?kt8N2hQ;X-LLIHQ^PoP=Sa}f)yn218tkhB|&rKXUMbA)4KgXa~9qQzx^4Kmj ztvq7jXlL=aCRunAg_O&cw;@+orIn@ERU1GTd-ROsRE6qDCyC<a_2MSqLp~fyyhdEd zsd}n!l7zlZZ<?4^FD~HX88wHU1UtMtJjtfCSEDhY0*gx!SewU>Z>ggzrDDL((tZPo zO{A%KJ3YK<JK1)SXw}nsW3+qjiB<WO@ZIy55GLYBK+`{8zqLu-$x>$|5||mOJ7JX~ z<tg-%<DP)(mfXZAz7HPOzKutQtzZapOW?M-%EiIUfHhFetkuC*lpl!dQFD8$J3~El z9dyCBJ*09^(><tvyWE2eSo)ap(St$ktAJQjv}kXBugl<-<dg8GtbLCP$7}ghrg0=| z`9^24%+XOKfj&!2;m&+Nur>7cA4FEiL=X3INtLaaqeN1p%442w@g87az=9fdxHn3x zoVfFcJqYx__e@T^manh6*DVGrNeH(gB|U0bp`%?q7D(@E>f52(35sNv4z;bBk#yW1 z3NB8bNbkAyspc8L8g48;v!E9r^^vsA?R85hxz@Mk&lf7-!MA!l&!N(0f@VMYn)?Zu z!xuIj5XgD0#7D{P_#I^MAHIGjs}cf$b!q+s;8q(b{g7~Eg)sFISnwUL%yvxP<lI7u ztwsBP3FtlX(yVrs?Bc}ufP13aa?<f)X25@<7O8_u7&u(ZKRS;feU+Z$;Q7Ggrm&O| zcrAD>4^I{9MsR+u>uz|vZSv~Lnyp9Mw{(0OM}tIugZ2sDB+)m(p|CMRKn%U>_zguj zx1gfoM~Dq2CJB~G1I_L9^_kYK`%?J$yT~Pau^GJE=Z0pUkGO=FJ8dV~@e{fnd#f%K z_*buKMou&3e$ro`{pfL-zSKN*aUG`xd5<`<e9DwxvgC<A_+F0E^@(<0E0RvgZ1#i^ z4ZeC*tqD!Ql@;%>x7+ieyhVR&!XWJ&F!Ie#x!IU{d2uC1O1w>|O!7CCZ?1dZU{2Go z07!eOBr*A#@YeMHc(P_O8FHYef3E(JYO;>j@kaPA-}2rI4()oWDrVBq-hRAsqj*oY zcEww>9^v)#sGH;HILbflLwoNIRRN=E|HVV=ecdtEnkPd`Ebm4gL(9WQzC00<Xylqm zJ|H${GG;}Q(&#&1ltq~z8@ijCw649OaV8573yqj~Nvu0lBeluwo~F~)vcXLV;K_;Q z55a2BrYwh^xg@uu0Vdyr`Nq&sDW2M1lp&?!WlKUJe2ceciS$2^vSeZ!&9O6o>Rzj4 z0tnAwFGoO=fkvq{zN3GyQL5wr8;w$4Ftxthc&VeB<SEK*Ae+f5Lcb?y7h=a;bR}XZ zfR@nn#kYN+tLqRVv7J}AE*)hlY5Z%M)D^dZ{Gq-aEgHI;IpDCngwhfOFqzsBl<mSj zlR>=c@n!oe(}iDjouNQccq3aR_T+I2u-oN(ycsY8VNL`(^!a!@lBnQ1xRIEy$v_NZ zBc)Lc6PEhE?Wo-$43q4}KCxIBD2b8=2E7(bOrl?to!`|)1=*tijROmq{48I9_Ng&r zEKQINjiNKC%h;_TdzvK(#wDN(11lRAR5~{yNjcwT5KVESffb^K4oYLpBO;L|^1Cmv zXD*JIrkkM?^3xaQA0vm}y8w+{p#ToG@Z30_^w{v)ize<R->xeo0Y@Gh&Ha`$M-Gll z#NWP*GC$!pezgwqb||cwMc5yn4A3J_<TFF3o}SW0^qg7{L5sCl<EZVPH56tt?M2_5 zIFVPBJh!5OS2rP{l;jS0+wrMglZef_eBb0v$kp&8jc!GQ&8Wj9X}SUpxfQaRr$Zlv z6db+JC#?+e%6iIq^b~=Ps7G2p%WQEzDsPi6?M%lr$*oY#*zVQ_Mo;cqm_)m;P-O~P z-hm5QI;VY;1|{xmKk0M^LAb1MR~BM15%}%mvlFh<!g}(ezjb|NkMZg%LKO6T{75Nb zamUZ&?NJA1ou%3C#TCJevcBDk2uFP2+l#o8v8xTI{^3BzJU+37$bWZy?4vkCS#DMU zQUpSfh<vJ2M9GE8bcdfjAcU@On%|rw?=_6WeO3k*Q>vu1>ywNOIx13`Zt^F6n5oX6 z^I+B+x&V?e_nvgw`p-!XC+<Co7j|l%O<nAruLPuh)g=9SHA&o}4~mXamNi=wX010c zaHgm<-D`R-63^}+8Qt_$4&#I9I4;cMb-4t^;7T~Q?1a!_@{tH9od42sk=V-xBZ`P$ z#?1RhCT|=hPh2Uen}P%%i^7--AL|j}k${Osgk=W|Dk*$KLxzzPMK5sVMw4aIl1yr0 z5=BHKdU;u3C$T^&E}dLP=fQg8b&~lH?$3>q#FpL;ZASu=Ec4QRnqT5CkDu|E0FWt* zy-np+M3T24i3o!rQ>muDmoT6gcAz#ijP#EO{I{m3Y&?4ejp@Pl@OftaZ4|3ajux}d zdqp+T15R={YV8HUv;FRl%Aaj`B|gElV7`7(Tv_obyP+XUCsI!ryU>*1O?-d^#BD;2 zP_*XSsAYCZuj}<`NEk%p!u(2}6f^N)jMYRg;QiZ3eZ+IpOtKe!cupodKLqc-tyx;` zyU(dis73vS?`SFk8?0uPvSwy8B1p5q1KPSH(4z3QO`-QC>A})vKlG-R{a9m0nPD@Z zGy$s$Cd!1vIj1to+WK?sw{IhC@4wd0B&237T_lW+9vmE3{x*M=cPjAx5<V21NW0!W zc&_^*!n8yk1D6^69>Rdd3+3+?WROo}Hrt=@fll&>UbKMB<I(PRSGbI#d%Ao!gNbSX z&Eg_bx2FC(H$)zAii-{$S9(o<CD5;(VS1|taGvmhpE;0#ipj4%QV`rwRhP=G6~-J; zZ~~=M?&SPj5uAPLl9@$fasSBRA+?it8`ccH_t6d@)SqQ%2kYzWV-WHYB|bhWU+<Hg z*kpGMjLx%TM@+CaJ=8!ESIbfSbh$l3iQ}{?k`;!A-m+V^_EU83A|LN&V?p$lWLqCK zSdR`I-WBd3{_^I#8I{OLiO4I@uAAQ;swjB{=*si2cemR_pir6(8CDimH4k-+gu{d1 z2%g12{y$@&Chf=JgQUa=@oQ>^$EA}4@Nm0smXvUHl)$K-2ZH|L%IRiT$ffTUJLbji z%ssp2BM}keDvHk5mi!7^EqEvY&)}bsYB|j6rA6DRO&Ycey2Pocx>tx~J**9aro00R zQBt5Oir~zZC;FQ!Z*6X|ks%-;c@dOMMtgXVW%>6+?^81t#H!KTTxiaG8O*m}E<7SK z{N~;C)h8WYa0$A#7FY8hYDvRpB*$#c6l=zHrW1u@cBv&~db*>%m$t}yRxmiFMjUd+ z7Vmf6>vZ06zkq1i=zk${?6$1r54=!7c+O(P?4ZvZ&IKwUFtIzmj`EiC$eCz}b6VP> zU+!U(<Z7oQ{A5j=j8!;yf#`)Bjz`j=$E4t`)p~z9Z_-u`0#oYzu1c@`^hx$3M+Cy- z{WdqD=y3ftQF}KV!=|9nZ*kG70iRX0#U`(>efE?q+$X}Kp<CZtRY|dJXZX}W6mtRI z==ZK<VnBiZvnSQwE}1zVaMlI~XE#^}1?*2S3U3*EsA?WfEY%FW;RnfR*ezXsEYs|R zd5&*h!*ozU*=$#ckdB{nA+}L6oo!&-c8W|iVvZ$Ku|^U6a2?|^yz}}|5CVaakQ0C0 z^fPb2tej4FIIy8)Iu~)<&gutwZZqHFIVur%gZrV81emze<nv+pxa5M}^e_TjpvyoO zr%rQ8UbFbgAgLNEWLjfGJ&TvUzxvJ@f>sK&w9h45rm{jKcI3$Q)y`MFQ}`-x)w*C4 zb)*?JLt?w!jb>}|y1MUUhilRL(6Kg!QI^zY06H~y*TvC3U$xA>7`4n>QT7{w<cnAr zP};b=Bx+sem<Y*ZV(=O}zd6P~oHK@-F4VjB62@>3mT1j_4WqLa`C(*lH!`lQx_2&# zE|X(Us8=`j#<}7XwYY99%~9S}u~Fkuc+};6;Gr*mLc7K%Bdu|dK7engvM?AbH}zh2 zZL6+N;Y8VODux%A9dQpv3ICoZN)Qif-<`uZyarVGzXwpCOhFB7+W*Gg7dmjzNd!&V z7^9<tjW@2x(!<g`!kG&uJqpL#H><qH(hozX<|O%9Oy^>EZMwrLE#1xpf9}(J!dDG) z8}TZW2C;~(2}s(!4+S??0v3yLX+4exEo-dG90e4}j@9Xf)-3h8YHAYrQXuPlbo}3q zM!fO&;2|NQV{Um%K@M?MijUubstK*0*QSA0=crEkz$Qo_;^^)JmoMaHvMRu9wVxNx zLOHiprARrAMwu$O9<A0s-fQ#wq+EQtbrpq0YGGOs`wPglVSPo#()nX~5dW)dKF6KE zv`L8;Yo(;$#B3|O@<vw2Xb38}bKG9l;to0O3QazE%IFGMCKt4?uaf)n(IUsEXW#Gh z(80M*!a^aPUlAI|9Ai8t$%_2EB9j40Jet8s3><Ue4lVsQl=A>a1gHRG7uQy8NmjI5 z#WI;&yddOf;stXJ4Q=P=>GBDUwF!N?3&4QCX_iX(3T^yzvDAQl997tMg_IAC!dUtX z#gB}jI%~gN>JFtwa2xV&<@q#IPyIU{OFWjId`dx~eTsWI(n%l_sge+a@jYT0q-B0T z%tu=wupSM8u6|@homU_+%76@?aybhy-Qiw2$rMJQs;S9gjqc6taJYRAw%zSz`4H9T zp-q_Z2m$Lka297G-z;#w#$*Jz`H%zV;X>crNI&c$$G5)UeUAL}q(Vq%pwZBZN~O{# zcTiQxaykQUB0m$01p)Il28(W_KQ4UTBamNGupPO}4WI1Hz~zLm?{ACKyp03RAYPP| zW7ePbz#6{FGDojlmf*w3PfS%`x(SD1o_kuckVOJVWVPIYrWR=|z!yNS>9?2gSy^hA zHtb*GqNMF_=tw{biHRFNQHME?F;*f=Dx}hG<?F^zZCZPJs02f(e2VhELSw>nzs@8x zg+1-DIlYd}Zt)8F`3fl$gbMZ{$-5Q#M0fZas#+Q<%3fr#_T3vMI{4vLZWwP0@AQ{; zd=vQvFWQ48W|8ABUo*xVL4Rs1GLrtTWhPrIlGU&2{g)~bbQDrub{T>nN;AUWQKToz zKx19|$3o7CsainkAR%Gcp6h3oQru^iQdsTsZzieETAo_c-@}i==fNe4ipB5ZD{l&f ze1l7!I6WIri(=(N*a$09x+z7lW|~HzU3}r5#VeUtrje^f4J1a;^h)4+yF9HxjG8s| zRcJ?6NENU9X(LP;D9B-nQ(E~;Y@sYlPrX6n(^9uBAnr=tAsAru7Tq#MHEI*lVIt2X zL4rW71C~Y?%+YS*pphwVtFqi-mliBe@!}5F$2JRB_AgBFAOso-`vgKFsp%XqZwZ7j z@l<um>L9vg30sY@*m%ay!9rA8BP7O|AR;cetHDkR7BTnj&9)+4<flveeaER^E{W_a zX{#6~9A{QOyWL0TvR5;ikvUvo^#Z>z%}vo+RB%*F^B$G>KgiXvP^1hlZzTz{`)^Q4 zShuDXTIr+jJ9}ND8fEgCcU#2a0>U7d^_{a4`2SGQMN??L%x=Q6Q)i1@?`PVO=g>I5 zm4cdeb!$fTXb77<`6UHw=yQ9gN7`c20mU{8<F=N6O|bu|T(Xb|uijv$xH3z!WZwY5 zT}#|b_#i<0cJndlr)uZQWfw1QgfvVsNkApx%g0IC5$j<Zg78|!^V~S5Ua<N5e;cGt z<hJ|`VwH#oul?5bMJnBc6Vz1|PCZDhY{}2u=y*fROq0vHK8RS{-T<VPuDJH+i-;Bz z#u^^9Vh?_u23?Qi5=+>S%Y+yb79*Nq<~tHiKdJjL&6s-ffEng>p!!bI_Qp%bo&i<L zD=s%=Qr)!@tIIg|##*7;{$;TmMz#l(WiL>`ptpCDf8mk?IJIZ#N$ec}VzMv1K+F?& z+m0n2)pB5Mw;wk=!Mu}2{shRCY;N85y`fcF5qnl2H8pOQNk5OryL(k!IHP50pm^<| z>V4d<p>=D?co9XwGacsz+L`fR5i1ikV&zrg5{%VPmOUjtrx)?IGM*bDZWHUVT`jeR z*WjkIz)Pu8_m!<mpzF;YC{2Co7z28HYw0MY+}>=67WeT%p-{*P8B=d900d0+5u_qx zpjoFl&FX`7CuO;WIvEs!w`CP%-C8A&MNC8Levue~q9~P7QN)RPg9Y#MyU0O6JQ>(z z!t&%|ab-DLi-o)`Ph`Oyv;O-?Z8ljcQpIA<G=G+a=PYl?R_c;9#3MbmIm;sytY~ru zNO-`;ZCPFcw|FG}9WQcfiG-+>tC2q<U3%d$j=(rrbojNTw=X|Ky}XU&tbd412<~o8 z6zHoynj!%Jog2zA)OwCa(MXgf0{GI=3ES(EN3Vs}*e5a+CNhsqTSdN1^iS7ohz;ru z>UldxByxzu>MIMNm~G7J?0|hLS5fE?O<+_ur<$-S848DtX;}{kX22@dyXVwKSN6Tl z4ph&aXh7sO_qC<m$_9K+!b{jfn(#FNcd5tsVAq&nvZ=cA>#AKvm02e8>g#Ro_Fmn0 ziRIGt)cO(aj#k6;BI8x>UF*u%lbB*bK~~@CBHupTI-N2!**&516$`z@fonei#Nb;m zIewf)Zsvraa6uyWrHr6r+kTt`u17c(D?-?szArW*6DjEJ^;_{&z?Vs4>%O*XYM$k< zFJ8Jn-)uzpB*|Yl?7gMU<8u8*@36LArMm0>o7$x?3^--1d=Bs!l9&WrH@xIXzw-1U zO0K*e;8?9G#?x@&wp;B$qAKzrDn%et27336suwJ}Zb2j%q;8tE1|F`ykv}=CmbP0d zDden+1zN0N$pts&cPZP|pD9~}7AbKYQi5B7Z{mSKh&d}Y1#sX5g)TVGg-*DkfiroU zHhcm+MM{3SbKQpxv*bLTZ^M5-W{YosI;+REm8}-qAVWQx@e7m1z=GGJ;L?tD;h_SO z%q+~?1sgWX+vr^S00-<Iq5lIHQ9EHQH$@V9f@C;xA_cR#C?W-^Vu|ngV!^Y{>YCIb zDsJ5$eRg!wnUjjP<|kJ5eCaiI@KIsRXD?6C{lxb*8jWK~vd_wQwG4#tnnmO__|OG1 zwGF&&n|u~!!v9-}hFY!66_vUVz|~+nI>Oc-^!o5wXoij$mATq*(9cUNk?L=sfX3AL zjI-m!O3S5zcwXG)zdrozV^{>{vHsX!g@IV6$(n#4I@sP)tiI$<uUHdhvMjm^k02fg zq4OG-%&JIUcz!=D-hbD^xC}oI%~*jXq7m(?8!a;|;7uJJ=DjrWX@8N^{eJ%Ii}#Ap zQ=ogNK>5^_;w&BC6+u@R)>W`c48HF!W;nXN$s~Kj16pbXeqXIH;K1=1QA~-GR9oJ} z-i891(ghJQf@>4M#BAK<WcaZfu7B)~THadAm;13owHhFeek?RQ?Pq9K^8Us}_1!%b zSwTdpB<hKW-@b%NYiGkB`>I;}kD5G<b0<8d&Yq06g<JDC`&}OUF8)U<r|e{Nmt5Mx zSb$*~;w5VCjd%d6hTE|YXZP)Nhj>jp#GitPqdbk(#bnVBEJ-2wieSHVP|E4#X<w#P zDkikFv@{3+zyEU5=D+>Bq>VvJN(vLocQ%%QZ-F6-1hC|tRS|ePe;tD06Y`ciyk`%) z$xVVCrZLXODnJMDETr@wb2iLJSHHTEuao?d&2s!5n|0*;q5SW%S;;wcVAAS0qPi)? z+gr2D|KdmR!Pd+gl;Ch{CR~>VUF-c9boKu(bhYmK7j*R(boCc>^%r#Y7j*TrU+ORD z>M!W(FX-z3C(u<ePA6!c8q00T61eDiAk(DyenJko^OleD?uZHq|6A@nlVhQTGcTMt zev~4qG$qhSX_RJX?!=7z=L)1yllfZ&DKD+qctzvT@q@Wi2e2ni+&LH;SATQdt?sUV zL$J8=iSd(mk+>o9{LFln&zil$9OAD3vpnq=nO<0F+TWAuHU9&d9&>JanM0l)ZMCb! z#wV7~qfN~dFO<#kCmwyBkk~Ud^p1PuI+1B?cd#_@;2RjtYJ&Z&M%nQyePS&_2owu1 z_G!@hxnQ~Q&`?^tm2*t8&oJcuWV4&Cy}FhL-WH(*++@-}XFsB*l8)$mHX6yL1A3oO z3lTbNtqhX3_hvs=8Mm~Z=7*W4G*v%fn!!5<y}jtfeO>b^4_rXtKMQ1;9w^tdhq=gU zZ=aVn)~Qx*{Gm$xN!CoZ<X!d$vFLMD_)uVhyX}AE@iZ<>6Qy|-O$KUD?J2wD#^OLr zZ||kCUz;<GAb>jD-fR56ar4^{HEeY`hW1U&`qRhv$gN(bIr#<X_$A$gc|4tlUa5u> z-;AO;@ct(AsH69D|0`XUiav#E)WE&23*Hp4KAv&0!%OD3o3u=>xoZ^a<~*Ekuo%_* zSov|ow7i}4<@5B7jJo<kE{2ysEI+B59`sb%i2k5ryhRnYTU6=n-OEsSS|Sqj6m?#5 z<CH_0-ip`I@!^T9WJ|gT4qUrbsJeGLe69HC)-@R@w@UUWdFH0=W5Yd9e*0{qiMtHm zgu|_EuX}U_O)#e+^uSvrjV^Aw$gGpNajA)DhA^Q*W@wR%zpccwDyTiB?Y{GL({<n7 z%(`Ov5udLvk0(ZiX<n}<mOkAV<V~EIxJuoN<>3=U9l*cVXybg|bnXEb)|_Ei5CoI( zc0s4x3Rw$M?`ogn(v@&XwLI~0u1wMI%zCL|Kh1iciU0d%J+YJ5;a9@%g|fWUkaT-F zXxr@lphhBGwl=2~IkY8=+8z+XF}<%CcmDg6D!2WckM$C5B@w8A%Cuq&an|&EFl}qb ze<^CZT6wY}t;C;V8kSzL@wD9esUP0c9eJ6Jho%I>pngo#e;5<Wx;Oh-PhcY+>)a>I zf``*TRPRIVe927ZzueU~#p|gw@uJS#AnPgf3S;TG50!=vRsTe++|LgvkSDmoXc+d= zAjGQRpNm%@FZ;iKz~w?ckyp43X+k}pDVyfvmT(k%BK3uh+h%$b<VbQlm;~$O76<`J zy8`$}5D8+Eq$KaOO)a`=*toa18Ii=@zaB98!WTvuhh+UeOAs5m{n8`Z6u)fN%d&KZ zg*1J{6*DX>ltABA-~=@wCwz@(TKsbJo%-}L5%+7FAFB^pPt10xtCnUzl$c_&vAJ%; z6YrmpJvNUSP~_+}wvlG<{qbf`;N2bNFV?%BR)30xJcm&t_13LnIFIcam-Pnvq2cHE z(n42EFir7PAbR_#ob`UWy9Y~OWL|;^-q&CV1kdN~QWuC6_uRA*$>p&cVId&-X<Bz1 zF~#FC4wfpRfGwsvXLS-$alNDDQ>d|KA%u4k^GHJh^#j5n0(b-t+wD!gy3=<WJUudY zo0siA4!NURvcvClySNgUK2xi)4qgFvR??HX^fPQKOLBGd{;0wd+$)qNz6KO8p&uM7 zYZoLuvHuX8QVM}QuFUFxd|x0WccF3gyNJ=}#eD&sUqYaN*PBNHFJcHwGm#Hr24%Fo zPAm?9&W%NO>&>!v%9Tkg1vcBzZ-~kebgOr<u^^QdF<?kGJ|Gh$*hM{zKbiXnm=u%% zfC+mU+kFyZMD0jWoCJO{os(Jlj&JFM9A{0gd04}FK~pgir&CABsg)SAkX$*N<wM5P zSY*j=upw$5K???ALu4cdtIO4x@+7y=>G%hO3HQ(N<T`@kP?m$I_|e~F_bfVXO<P^~ zLe6E^H->2huyW`6a}w|o*|ZFdP2KP%8DoNM{<#?`8*D`W6DyuQiT3ZUc-d{F^1%1y z_?ioTIG`HB!eEM5Eq7<zLGsw`d6N|2yZPZoPdP8G<r&(s6lOo_qvZm(Wlru5Rcch< zlgaKUHp*IcyXU@pt+LSBKXgj&PWBeR$OGH<a7?IPfqmEk;BF8Sw?-^HKm*dldnwYX z=(?jH;!P)HB;03`IzWM_Yxxhn6Fs=5U6SW{H%8SkvIaR$roWJ2V(Ue|I8bcIY8-4H zo}453Jej5cXk=tRIrhW!E;S~UntnXA-1SeX4Hw6;TL=tyobHm}P5M{78?og7k`|8; zT6g`|lm_#22ICh6lgPWaz61_nc|Qo!pL1Q%8gv?^BKuaa3tY>o3~O#Guv13|83&x+ zfQ(0vpWhV1bxl5Is{tV%=D#h(11MDj@|<Vg?G^>laI+q#Wi`#A4AJB8sPn$9+j>Hc zKl1vKNqWf1gTJAi=ve{fR6F73vT^aD_3vbO6R?i|Mur#viww_Imd<cUPhRvv_+y0W zT%|WvM@ERGXF3D|y=z9zWW{!^BB0+iLdZ_FkCw$!v`H&h{YELTTL>#@SQq?|L3k~- zv*Zy?y|5~<)Ww>rnX`JH@lJzZj{e9yVd1u5={}_T;TC{+!1zCao@j_C+k&#7CM<ED zCvY)F2wEKo>g&PNbUX5ujVa4O<$(T`{*~8KUU%<KRb~|wmJK!%-7QdMq?rZk$cPlE zB3rfi<=|`pZG0}RI|_iIzXAqOElB4-yU5a(o|U&O{g2v>uAtkE*jUeI=n6YiAHKZL z`JEImNI*%;2e$ezG#hbC08dxO=DRDkV`oo78iZYZh~1Yea=J3UcznI6GDs3yRH;e0 zPKpovh-=C!wE#y9VDu~O_`nAA5==s})x24b&1zjZ2f;x-lYZ4{I}58aQ!%6im4UoN z+Bbl0kq4^N(xjYM6G+e|KU~Tg=llce)PjM?IwPGvFiN$)`OS2P&P{&W@NiMH*zA7@ zSTLZ$0noGb?pFsM_-BPqj47+ulA66D&qN=@H~W8J!Lu^^S)%pZ9c6cMRz%%ny{Okp zb`Pd$jfwt)<;@@kV0qAnNRIhmfu;<{2NJYpVshE^a9)k_%Rhr1P`@*-_T&;BD+V9> z$qNeo-io&0byp5}G=%EB@OiZ9PK*T$Ax4l~+l)Mv4sYa3X4O$AiF$CS?cFzzU&@PC z;a>l=yvQWjqH}{emy-#pH<O{9(Urg2Vl=+<VJQg0yoJvF{;Tu|>u~OH+CRo|X5*(X z@zD+2Hp+~-UbUQe-`@DIy?c5qC^SeDXFU!B_sNFo7U<IH3x`RUC<P+$L1$9CLhn<G zD&JA+_pVMD65y5CQb|eypWL!3^qlz`N2qB7WOkRXp!UQdzjhcUlECX^OO!xOt!Z#? z@3)scD@g)oY40L%RM?y_El4W*M=JlO#wh8OQFf6HEO;-fwVqmpDa`5NZRtha4P<Rq z0L9|8vCBRmNe}`};OD4CK@`<;IOue^RWQ}i+>HUza9>|vkN&D-@GbQ|2-^`L<$<~G z!Y$0fCu42R?&d?uY4r6cic|^nwV7}U)2mdJOoVZi6>&bpqhn%*V>dDfIhjlMaUfxk z#zw#p+#f_-MfLGoa~m8}(86k=a?7iUiWi?hKX_YgaHqd<&LdMR9{-nDh4dQS`JdbD za0Qg!>UDiMwSYj2nVF@0;sa{TSR9VOn@jrH$T3QJgv4fwt9IVV$fLN_ty<0-o+f#P z(=GAV{9%TxK0NMx;p=+6sIDM6hqtz1{aUE*YRpm71(A7w23H;XPL>=|jJW=EqrQlH z-#@1v@oDxw*i!8BF4xd;HTtgc2s(eVcav=dpN0Ca(!`CouXaYAUKNa<o*eGYt=6m* z_B`>E&#tSZ%_6-CQXq+sOw|S`xz_4%hg*0P?Q0g6zDJ%M7J;rv$mTG`r%!^y<tIJ7 zq{|qiLH!~qyHStg(vv}Ia`C-^j~{7vMIU@f1PPgmr^^<48@>H>fe>0hR`0f?k#)&k zx2SyycUf(c-Gxz@^pLU973{u~d?UA4^%%WOb4<YlFDmOZ?{FEakg^>x@LnO>r*y@} zd12gsnyAZ+?0t9Yr&2EG9UOYpAXkkCR_)K!OP8@#Z81>siHrY-z4riXa@!JyK?Ia) zp;r|_5$V#KAd2)Rg7k<2(gM;!!U2RR2#82;DhNmoy%Rzx0@5Lb-g}oG2>D+?J?GB7 z_sp4@Z@zEle{Ov8hIeQ0wbx#KubuUpX9E1h|F@$Wr4RDJ5A?5xUGz7X`>*y{!x1MY z5^YpIyY>wacq!ghlh2Ve_07klxr$GF6<^UDA85so#KXJnf`@O3&jwuYUlo5yigzl~ z2JbBD6y7NkCp^3lr!SyLfR4D~ekAa55yf|ObNXoPU;L!n20Bv%kGR<;z{3+l5#r$! z+`r0;BE`c${S$=gAE&VY<Bhx1Euta3l)sEK{@>t?!{LA_{!iijkFY$M;RMTnQT8uL z#XppW|G!aI<diAihrcAVC*t~lN<#mAtvb>;JUn-&BMko~um6(QBb)v&8~Z16@DJ_P zzprN}-tu3R{TF42{#V-B;=km*h~I~k9Yu=&ol)1nuWLVJFkg?^|4Fo_{43Gze+=jU zb~^tl&Ohlae8u>G9i0oWg#8C_{uiD9!EWtOW#gy6``=1uFF;x4f%kvqb*7_f!F{j1 z?fe^GybL_$FQlgcXlH;o1@Jb()53d-XO1U;Cxj;k{1XC7?nRG3@$mkiOfH7U2cYnO zaq?ThghF`2Ki>QRCH|jHE`Y}mOg;sqGUV}|0Dm35ju`d(>m~IQsyTu=AY<|Kb(He> z<NKtY67TfdOW@D^(<Ez05D1QP8bH3}4j$>+ZQ#$-vPU2Y5!Zn$5&n@t-~c#h08)tH zapO7SJ;Srbv&XXmM1vc6yWxTUaDRm39lR^+biila5g1(j@ipQ2ns|K0!#lTjG$jD} zx5s$IYh=Khh=@3Qu$KxhNltS2UU3bLp(MrO&G7=c9-v=Q@zK?k9?y<tZ47ApyPmH# z)D*}`7>-gt<cjy@wSZwQz`Nkg5$^5hGb@1)d`B$>IlP=Urg`Azw1upyEFNB7DCq%+ z5V${UfB%sq9^M5YcXYuCf5e>C4G)j^iK4vh12^O4g#7{*1^3xe_|uZ@odc&EkMp>0 zUWVzs9nPqGXRmVRWqd1Y0#<Q75VDq|QxR}3pYtr3tWKELksn=Kd!hJAi?Hcl23=5= z*{fh1ruuVs_$F(F85-^to*w2H;f=Pzg&n5W?j&`uMYoZaG*3+D{A}iWd~!@ZFJ!%? ze}1aZ4masqh4sd@xA?i-x;xvJP_aKk+}rno`6K-^o<X<u1zw0xMwfMNl}leA>jM)% zmzU-#Wj2%bnYo9jbl8hH)n6>*R|zHayqx)T)XbGz9hjk2BJ`_YOK#;K8_bxB#lNV! z&+4u=f;zK=qHHVO=BITvbOa1Gq_>1D6)f+?wg@+XGP}zhXIDyRe{VBBIQR_o)AC*( zb!b=o)%798zCeaj8;Y#rTx`%xelRU>^(N3@rOg620Jr{F1syb7&D?q<2>I!e_0gIp z+D-21DB3ogxyEGEJ72y<+xnD|*LZiYCH+QB_MY<}fp__*b+c9+u$dg%Ioj7Zvba>7 zat>SUrip*7JZ;koBmG!rc?7XGh}X8H4YEg|Yhyez*FfwP#9x#)6n$AW^c#vM{?i*f z375*w&cP5?DUbc^63F!0IGd7e^uYU)BtC;~utG?WNY!At?vjj$FbQ3s&Gt9K>!3lm zLFR|xX$Y~5^F+%+ptC=DIiZ2OaPJixYrD+0jX3EzDMx%Iw6L)xZbEr5eLojI(VT4I z*D%{kBz5q>X>IK_*P!z7{_t1%ipba@<A4`qbul^EaYozZGMp(xg5tneyQK&P^+M~? zj;)Bn5H7;tyq?s`<+j`}xv~<^du%1uzc5cP->yndTyUABj_XTufhKcaC=RA=hp%;Q zD=xP&u2M2a3}Ba;4fEW4Ukh@KeG3aMY`n8PlE*_<)VH<XkL(+4m}S*^I2b=1ca<(P zbeVz2$!l*;_q}g}9v1bcTqDzNa*F}2**3H8(j)m}(d$E`GNZy$&a)973ip<IB{7;+ zvf;#c@RbKAFLEbb-CM8ijiO-Hv<i{gsgEn)R)=5;hVuY{8@@NC?A1NE*wK=^J9kG_ z`ME;b^033XHxJ*!Y%8-V2EpC8*VV|2m->;q+_tV3E6D2PT*ZnBMKuA@?NfcU;Oe_y z_II1wUu<L4M?N?$ZzU}-MD(N{G&7sjgA}N}yP+=rj4?LynTi0#50>_lz)5W*&m*dD zzZ%#gs+v~${(-b~U7Gi~egy_snz`~KAIuc{VrtSqlXt`^NNZ<3T;vGy5CGZv2y%J$ zyzmv1brGo%>UFinkjZh&jF+~P%g%ac?lZXBrA9&5kx!wM2^kbQ=*pE&j-~3w^2v`b zjzh7}Mps0a!e@xA^I2-$&9%6b_77B*h8wMA*1v?B?411^df4i0l-vbqPsoTvC}she zWjs<tY4tj9zJwZ?!bNr)MlPtAL!9$W+o46S2XSTtIGUV+nQ5<*Rk$nX={J5$?|Vi< zBEh;WWrE_$Y0^u{l=W4D9YuXcxOI5hb~5XJX_tw~hC_)mw#a*PS89eASABj@$-7%y zqB(dev~_f}*&p6XChvX$7ECMSwNfwkb!9l6IXlbFnrQh<>wU-mh9FklroY%+7`*y` z4Vp;Cpczu0O<%}%iw)4iNmwtSmu!tI4L_{I?znp59i921GDj=x3_vjD1iK82*C+O6 zF!UKp3%OW>R+GbDt-O>Fvdb?!#0%ZldXmpveu?^6KdCP1e@@PlSzmHviSnG>ne013 z)-qmfa$NJ}>fW-Pmhxxn^(%>BZ=y`xx2mBmnuF7*!PWBB@$NKMPr3OR3-4DwNw2Yj zr|$b8YcC{9ZfsgqyX}T}u1IWr+d1VeD|+*dAF`H?61$w71m8n7CLP#~-Aq4EK{`1G z<9n6gX8?u=DfgWphw)KRkUp!%*17idE_Pes#Ma(3Y<94XJ`jgYBz};hIUewKY+BbC z+cQh)wf{|qC_u~4Wf`)+$jDPZH@v!+{6Xa0k6w#AGA|mXb_ngX{I+qqnZm-tEMnLl zrKqK$tq~b_lXK_JK>Zy~i!R0Z<r-WU4()GeX%r6ka#6YC@uVu96ul_3Q7^tqnbir> zHpqMCcvi&BgTQkV(<Vslf))<tsbMUhtf3#wa;P|9X|372xm`E{TR%_D?+xu8ZEjV? zvhNCu^DMZ=g!C~N4kB#)V@qz=g<B*_dq_HveqUwr{=VYLS~>ldpWXR`G~nJh14Jsv zZQ)o}--h$5j(UxI2MMVnCQBBPd74Ik{neA&Xg%*_&&kRh`+I_oWAw3y%yDrG%CyOG z2ZCFy)@IujnQ-rg3JY9!_dxnyZeQ{p32&Xc^AU~{nb%l%2f;)SzoSdqnPk?BkP4x$ zTC6%|=Y+M5FrHDIUo!gw`sjV5Q&L53tTl6nA8i^l@#ThTve?FB=Rn_DL&#_6WfTNU zGh?57R5bhCt=rJ8A7U<cM0JQ5T*0Xrte`n!C2%fujN^`r%hx8n^S8#>Mk^;*a*4Hq zWzkvA^|(^4{za(tfv)WStA}NjaeQ2TEkx0e9p(>f`VSn%ke{%toAbypLYFWz2M$Zc z$mcO-$c0wWPJpzEp3ReV2SY;IJd}o)jY%DCwbRu@ZeJ*i`=$?+^=t}*AMBBJU(Rqd z2tItc5eS8^yOxYPl!%LN&Ed4g9onl@D>6?}EWXYESa%(IekYJv*h0IrRdz6n!iGag z0Yh^e>L_6GL0W|undrhtF#l};<YnD6`W5}yK`*GNmu4__!cl}7GBNK>k~NhFmRd(o z;?6A?d`eV<ZBZ;fE;ox)3bA_3NMx?EANx#5)X2Q}ux>?8<pugFbfMaXW;o0RZ5pr; zU4RT|ONU2=)la~rP=*T2Iu0$Jlk4hv)t=k??eSRSOT%-}R()Ed7we4P8zQ}kRpWf^ z`O&KNVDCd(+$=9{p~heoBmB8#WL-_9R8tnJGgn0)+xbp2hgm$@9A5O=#@s3-;aM<c zv8aq_$ipY6oRg&I8W+!M3tQD{GxzeDL4_LVy1o0z!@L?G8LqM~*15tzZ)b=?`ufxo zAd;|m1*7|&p^yV!nZ0?(gdT-nx|gjFT4g4*Xkn`dey(3acVsrnKjW$`a;=_8y565= z79OZ+xmVWKe?k4pr!Hgqar9@3@AryY_>(V|A~;g5JaxYHfwXlKU#k`jX=q>6X%%7J zN99#iv*^9<Dv;T2Qip8UlJZt%rBL)VUNWu5j6tQds1Bl)%d)N9SEpC4AyUQGt~xy+ zGuj7JZ<Kmuhi-}Htys<marA9mRq1B#HdPZXUlWhcMsf&;UC9f5jJqY9-57hQpJSS~ zKD5C*WIq{oiYtu!X{r)H(mZj<;2@-;OnGg6QF?tw1U|i$>y3>Y{Z7L!Qr+z?mStsc z*yPk`AkOf4CwHTN$-I5&+pDjH$kNgWWSyqGcBUGFHtsw^0=iIU%tP1Z1~CGR+eLGP zv6)>JR{nr1&$s9y)OM*Mtv^sUv?K|t5KO`7APer}DyQ?VwoLC!h%bFT&nzsed1q?R znQu192{Eu6m2{|L)PP!}wD89ExxQE-6~Q%tD`n>i0Cs0QoeQ|Fm1&5S3m${LodFE3 z;^E*UkOx2)&mGq4*$hg^ea^YqD@-&E2+-x$T*y}DAQ1g!?j(^&5|-71Kuk<DM0?Y` z-tK^iEhrVY&DyB`FtP#V@2X};h^4(Zve&_1udpA30ExB7du`9~j&A!KR6k$!8y(Aj zm1D0*XYsN4j9mDZe>&miTi0_y_;{%Li5QC{g)^56DaK*Im4{mz*s?5w9HzD});oVk z!nX%T;mo}pTV9lq9v%a$Ok(c*yVdmir;~#2ODs)BeHwU)Y^K>Wx3s0$&mO%~bQT)H z{k^qgfN6U$>f;~2tCP^Mtpz;|dLj6r0mQlwO&baw03{uGJ&3c{>%THeMs2V6G<PTd z#aG)-iv0xFpJ3-+Fc;_by+lfH5$h~0ix}pAM0;y@82cBaL9C@7C5Hto{a$Mi=n5X% zhEB$po2Rwv7HlkZgK7o}Blhl%4so{@c5X}9Smd6CdSQlz7G^|jZ7QGP_C<t8a1|h3 z!T}2CuxmQj?LOSoQ(4tzkr_2rnm23T_Z%~plU<O=?TS8(v&I?sJGT-TwP1=`DHaE; zYeDdRDD}b=OA(gWeR*bd0KJ<Xu9@p*n~M~_dwnZbZE;O{)VM@{a2}?#ad2oZZet2e zk8RxPNmJei+brSUNtG_Kt-d<-a#7A6oqg*=wzHmBS$RFJgHLfkXqo*5x>VXW4%x7s zF-2qvmD*S6omZae>Sang(B3Lp1}8ata&>HrFVRFLb)m$U&Tq-wXY>q}Up7dyb=B)G zbr$h0ZUlt`gBvWN*tFK>&3%z{<u@|JPi0sj8x0NhB9co)U;A7{vl?k|d`}jcT^79u zCangUQA5|xFT?Ht0|TBxy|!g~KWpRG^Mix2(27VS%soW!>Jq_?j%{P49hUM=@d&6a zAYuu|26Vq?1;rk+>V7W3?L2m*re2!~*Gw_BEkL#voVpgY5Bs!=3>nOP$C$;uorH5# z^@yszyJi92VE}st4N&ZZo%K^lp+=c1E(bh5b))QhR=G-cl`d%3gQ!5Ky6E|^57;hj z##TGe79+cL1+z;gPR1jM8D-pn;mG7!EdJ(H+zl!@pn2OxBeq24sq-8PEV|Qku~QN2 z8HhWansWI9uz0I~VDP=c3QS)XRZx){m%bZUu|>OTFb=!8tkcB&nR&Z0DtVx=o}yxT zfCf5zFAN;ez~oY1b)$@+2>88+`cJ{VwRO#iOHpD;eH3bSk%G%$D(+*E*i!o;SB9!+ zmJKipH3MtMiu{!5>_yv=bTvW={Ey8=k=A-btJWH<qwWjOJRcBGam8KPn}BJM-Ov!8 zio>TMt^aW9>78o&u|I99cxe_FR3AcMv2=~jkK{f1o;mCrsCAKB*XxPq7|eoVNw3s~ zrGUA(WiM-8(zahONl5Q9g#`2Q9EexQ0jQ=`+bGC0yeqQTD}D;b^@f}B*ViAAv9p3J z(r(SWHi}T&_)ds%Cnzf94;{MpVbjbgp==#ymwr9J`8neG%U<#Gg{2ooKs0Gc1M)X= zgv|jj1kprLXL7#jcV-k7Hd*y&Hx7E4?WEb$zJIbu&ujSPUmhhZ9s&h>?L|h_kS2+v zgyhV!Bq*5dvAs#(WQkp685$ot{OZ^YVm5>e7$uewCKgZV5l`j?N<X%|ZBIc;Q6cc) zgUweFzvWWO#kT@gUqQNbiyh)NG9H#SbMm4~PU*M%--3y>m{DqvZHgIXrXtOF#8Jf3 z$AbuBC>B*dQdZD^JLhWWxl|G-yL^qwMf?PyEL64f4a98p<Mo?gxSjNpI0X3awwqOH zuGEd#AS^{F0zMw|>1I_xD?oCMvnLRlXaZ%AS6>7ANcYd0{QRFIo$qr~Tz+|jwh!QQ zQPPqo^V?jTz^Ndl9RCT%qBp5d82j5_YT}!KDQu$^te$N%QFt^y_=1duy4`Kpw$bN? z%-)ZxmtN<3p%txw!4Khn?Rb?%DRq8kJz%$;+OcBdT8QQ`GXj_%%Fq-$_TKT-73{|_ zq4>Gm*PJ}Z3|AE3T=_SpJQ`<GcMk3`(|Z~)6l9!5aJ1#rXI-u0$>l0~d?Hqb6{pj3 z`pfe2j;!wfZ&r?IRFh$v690tTYo6gJ*PO*uC6@Agol4v2DHden*ml0HEB#oijcla5 z{u3>!&W;>e)+tdNKD)Q3nuiB%`G%~*qFyv7;BP^tDnlzyUwkFicun9-WX*JC%;v}L zr!#Z(+ZtvO7@9i@0>Z|QjzrW$Ood+ax4~*B!>FJ_GT#RPqYc{sV2`G1fJrI{tVe#W zFtlJ?>oh;OZDC)|A*>(&TB(E~o=5PG=ttM*Cj*}Y17`*RkAjxI!X(VGtxMaUW9V&L zPShBKb^`a9JsivB;Zs#Dc*l_?=F$+&sV^*2<$U90MaoRVNaF~5G~T2NQuxb!LTdp( zbZYmdt-e#J$W>z_Np#)Kji*5&TYd7!vO?#G*6~)%yhyRwC2HQ4!t@wiP<L;JPxMA7 z^&`7lNn%NnqTRak6VQGXgO#lk$IvOd-#cA@YOYq0SDd2bp_VEwDvOvJXG%1>H}Z@~ z!Gb9v`I=Ppv2oy=f{n<`S;cr%d=Lgyx-HFt-Av;$D#lkcFIZ>}Hqz2S<iA2EzkiJm zrgj%L!_y$+Y;~RbI^*|N(>?Wafd`91Hp?d}Yp-{m==cjfsQ=@C+C<Y#-gmi3^yRq> zLm<rI?}6kiINz?$=X}Te7wy~MSwX;Pd4%@q&+`XtxT43-Kctw6(b6ozU6R2%W$gBA zmlp*o15bK33pqiFh<UqXWJE{TtJ^2tTCbgsyMfh{(sn5yC)o>{jCQ|sO!a7&s1GwG z?&|hvj&yJhXz{lfPYZe}4CV(buSwXjzC@z%_nOUHn6@_&M%3_DPhaH1IT0dgHo^CZ z)^cVPUFOr#k1$siXVI)XrV-lAD0azurW2E(Qm))lNgcKiV_u=QoQz2PsOF3oH6J-a zEp-@L)K{RL`^36Zc`P6$;Ix^&9zLM^fGxZ>8koIu%}BgqFTPOSn}z8i9^f2`#FxUP zR;U-py@uHBUmtYd64h*Yp3t5;%It$AIYRj%v}ngz;>Ny+5k)wYa6TIKK;o1LxrflW zBJj||V-`*r`SxCI27yj2CBgq~6SZ_fixT2<>%^)~Q&_X+JF~3LlO(YfO<jg0rg1Ya z77%e6PQYgP{Xs;<y%Vk>PLFJi+Z3z#1Ey+1>clR1>&4o!fL|r$4hkI-s~q!AZw7|p zE~wa98uqHD7>r8gL~kc^9@OwS-KMRcK!113T(?(gG4QvejBmltx!%=|dnqC^oTY#| zXZBF&G8)@0$fcOuvZ$0>3O&(}6&R+MNFrA{o7XHzENd3uE}_H?l79@z!BRKhhI%EC z;DS+kliGq4S@vb~ek*aqSu*0Sq}DLcne~Vh&NeWihFCkm;@1~pb}^|;h|CG<Mut-+ z_N{d;`a`ed_=38}vpEoBH*O*x8-Ds|<R`5MB4<XF%KF~j+mLAaj+>)WGdXo)dtk_g zeS+;?qJoM5=UT~dduW_`(-)v{Wo3pk__az#y-84Qj3TSJk$Fhs_;hsrf&m$G6WXn{ zmHvUfW5@Pq0^)Y{6T{+!zT+t(yv_0~L|HtGQy>2FqT9H3V|fHP{&AxZ0Y)a_u3Na+ z+}LGS`XVa-NB$z{dLAVGN{+aATHHX5V%$1G0%ATEZRx;qW7x{R{2ST$OM+`@r#=Jm z37KdXWDA7jr~~%iV>IdWB!Naz9<&7$dQcQU=G8}hgxJmP2P0M&-elL_1lij=>d)Rf zRD!CDSEi&lX4RM^h-J%EK2p4hVv;cXM#UW$HzH1OV&I-Zdud^u9MyI%O<sD$+U>IS z9>RG?VCgZPcL?rX3sm7UwTFq}(Dx-!WZO31E{lzvzShUcEqrWO-I4>;KbS!sKOH;g zH`tU+?eQchu{w%#=(<2NiKVLzT;=N{-ze@Z$L2|^dQi_)`UP3@n`wuKK9Ldt>}~eQ z&2J{UL+{%Z`OA53Xoye6`KUmhQ~3@%+e`yW9S6<e!(>)6?wN{j_57bH<*2C6-11c3 z=n!;b#tH}>S>GAQ!9}l*XhbKy!t9(PrOSy)_%;mkioFl^?YKSkGl0lpcW{Y&C1&y} z;R+q~pq?MaqPn>7S9P_?yZhJp5KWFm)+>(>v?;ku{7*!*38bs@KOoMSgRS2wjdOJY zwwwmnPIOumYBc@YKgS*|ezMqq5W1>VQA(^czY6}<hfF++3riEDqe27CzIY<^SD`xk z^Qrj1!0Ir$0MS>v6em-$+KFgfWIi&+hCuT1<eq@Sb0Ib%BuRJ&v`0(KM{#2A<`__h zh1)7sG971r!S30Iah?5n_t%1Kgk0IUcnS^loLoeZwchoB0rl;4im$rDcfZ&FNoe;+ z>q_cq<Cuqb7<+>)jMtgueR6`dsLi87kR3|_D+kQ#fDkD2JMyxxksjd10ne**%w0>& z5BC#SUjQ+Dhw5b?vDoW_sBhyJB)%|$U#n-Ya|F$<-*4r6%8xHRxr-66lKTOm4y5b3 zP@E|yk!AKdnd3d50$i1`^BoRLIYTE|6q{kqcPM;o6-|~o9MmDWj2?PmGNkFZA@b8( zq9mO?iyCWPVsnuUq?)OZ590*FXv~~sf0MB+`?9yLtv=k)A4<U{m^BCUAd(0Zw0d$# zbi%Z^$OTe##K_pP)!`0^ST*J27Q=qt<+bF`sWf#ZH^sKP4xiMaAFGrO_6PS7XJ)<q z8ICAy+t@4(Re;l~2s6<@kabS*`aDJ461l31x67+|tFN0J@!~??F7qSNk9|24Ix&0> zIduo*C-TM*b+)S&=8gC=YgFLJ@rmDs+J%BX6`?ZgO4)EteORS~uP`g5v;G?G<cGfA zklrxSCB7p^Dv{+HHMS=GH1DEG!1V!;s_v9TGEwH)Qvs6-YT5k5lWF<_evj9da^S)j z*=vbr(~d2OiVIr1Z>bJMJ>WONG8&_`J9%#+3X^=6E=W%tdHX`Kln=N-G|T_k4+leZ zlueLoRn%N)Q20pUP*?0*RQkQiD76{Yh=~IW*qmq%2zuG1KdTqyH+X8M*hUIBVft0R z3-zAlp{-i{>p3|hj*_~n=H7(%hDn8G{#cL=|F+|Ex#94+S2N%f-6E67!bYGYo3=A< znLura8q;>(ZQ=~m$gf2=&9m~QhiOx`PxDJ6=T4_O1|liie~fw~W>Y-lO<r-T!8JgI z7m=|p=zGkF-;jydFy+GT_@Xr#>yAI${$vY6Ivue1R-Z}kj1Er@paoVk{mJ5&O!}#s zX#Xr6{Ij6Zv<B3=QEZmseoAEO_DNjkL0-|-QswZ|oTxaV2NG+@#ZH8kLoBQ8x9kPm zk+%dVsuPHeb#>`o4<Qg`{b41TTq1VdL~22cFOL@q>j5Q4wW*!^Wmuk4RA30RF8sP@ zr|`7Q6+nN1r}X}^5r}kTthX!dcq=0?4s$-)(gJ~cC8-|!FN37)-4((1>+Y{@*?uQs zj<XSxXPfubBW2>UbnKJR1t6T$zB<bNT+dVZ+z-9xVnQX7q?`n-dKJiljoXALbU-b_ zwy$aspJ;@Tc$O5wgC7JjqOeYb#-3ym-iT$n7e8#dkt_C!dHb6Wb5KaDS#i-M+I(oF zu<YfeR<f^yS6Yd0;y*d)5DYlc*E!f>GHELi7{}R+!5W^5hw>l3bCMplaWedIb|Kci zOC^jl2^VQwB(c~O4C=&62#fSa@!S*HvsjR6`;mBfiwsze65`!V#ANA>f{KDmd8YIY ztTpZ8*qLVd1e%kB3s|Lqxa!{?MYJ=V*qS*Z8}H8Y0n#cdXt38;Ara-;tb0tw?EKAU zr84%yIKwuW<rlRiX{JY}v|=<CzL8JFen<q{4yZN3CwQ1xU5J>ga;e4<jpk&IvQoT7 z@3^SgukrXj@|9;jL0rL?xtR~k%EZFqv20$XACO`(f*P!;Q6P1RXvEMDdIAB3(4$tR z+&JzD7*DE1@t3J|j$)8$Lt$>rL%;5)=8Nh}Jau(YBbW3QYl}|i&MtBUS;3DWa}GAs zkST<k5#8YNDLy}X_YLhHQIsXgtF%Yr8S9l_5h{+4@4BSUpkq+GrY$q(vk9GnDj!z5 ziLq`{pu#i$XVsm*{n!ithHL=GNL7L{5lb)kVLk<QvX>LQ#BMV8mVRbEf0D8PXl85q z{$2%>ptujC&0}Agm;EO~L}!mis|U}{h}ulabDF3Wx!3Wef2EJ$YcG9f|9H5wjaHR~ z!^)xYR`kUXo)?KHvKFv%;UyfeqARY-3u;UDv?Gcv?DH3*YhRrjBdLPB(w<9uUK37f zXK9FO&%?jxS5@jG+X|a5yZ_sX@O%%?Iczix7#d~gqub9bW$8r+tD8y7hR)tcCf|bw zmwqU@eV2B!otAv7Jp7^vzgHXLHN%k1JNh5^I-p<FQ;-Us*oHsLs{HPH^{$H;LVG68 z$)!JcASbQY*l%L#1vYc3_pAS!ivELMW)#+mdY0>n4OJ@dm|U8=3t|<X?k%rR7SuX? z(L|J13%VKVDbtRTZzOe1yVSR@GKePCC!!dIrF}`LDE7?xfK4_5sFk2BEiQ`=D#X+6 z{$@QYWn<4gd6FneK~xxU&=w3ywG9~S?+xxo<8L75{N<ySGkKw%s)sR{&>xNu9~wMz zWfDH*`8q{3tN47MzoE4?ce8E5OC;01d+vn}+sV+y_;E?>tR<1Fj<y<DR}A*b4MKQg zCu=~-C10bXE}K_Rn&#9=PsPTugC4R`48EhA<{x4ejq~QQ&?|h9rp_926Bfi2Bq%F; z?PTB*1Im*tYI_J!A2Dv^g$Y=mwm47kJ4=BXRQUIF;Lz>8=c5Uq*8T@h$9s=B#n!ND z!jAFyZ}jPu-7T;*a)A@wAsdEDdD%yK8q~a~1DOpf36({!pi|!^$D#v#=(VfO4an7^ zVzOoOD$ZSGb?N_Do||yjRbE--w4mOJUH6ljCmHE3vdAqD$X@zSYLL^3K;L6Rg;!G= z462vEG24P9zslmIrt0dCLUw5e8(_|_%X8dVjyNxl3b^;I@W+uC$L<~24+kWkRjsTs z3byuFd;h)uL7c*pZ(zLU*^M`GMAuNv%P%^oK%Zz_Rs6)p$7;VECm*$$giEhg7-}&U z^S_rh5s;5eWr)Aj&1|4`ODU;&Zz%!&R@#%!Lb{QNj(mH9h)4(-IotI^__2z*jU#ND zHPLmVS+(fU`mOW^yB7=_XFVhp7+8eFZR!ZC2yguH9LkYGt!L~o40w(>kY7z5ff^~k zW1>ktf%a$0<L4}vg_S+iQwQJc!zp<cNo1a~XX=0NfDUIpEONe2&6uHWWpd>u1Gll~ zf>HfvrsA@6pA3!djOqb+1=sD~P^k<8AdC&Bux`h5{tX!jeIW?U2J8{tzKQ^P+5GP} z`MpPuY;s^Fvv+W69gyvsyEC!|0qK3chJdzhe2#@G0@_B9dZcZfl`)vLvGWGpM!$)C z^UT*dB_bNatmjkDQ^zPQELSuJJ4!8|f>vz?C};T-u~;o_ePUd(mOgAdyk66LlL;ky zf0ngD;+^y?<LeN{%_4**zf~enUA!mow1UOl=P%+}nHn(tjdPHV{5omCf6cDQ+~`qY zdI)6aeP&_V!3;@TWDg7$o)Ysc>#Iz~scqvY&WynZt{6fcg0qTPOIj~bIMUG<y>v;z z&W&T9h;E=`K8X!S@EUwtDTyJw$(6_orKa37e_Kh(D7NGUuCg&R!>JnmRuw*0BpU03 zY+#wxk6{PNA8TgO%klF*p?emrQkw5WE@o3IyqmkyIHB@(@bxi?qi0|P>J<j3@8!*k z9}QKT7u8Vy)I_JN-t2uL`QGcwjBAM*V(>saiU9R+mVx*Nrg;NA=C=6+9}Hg=U&T3B z$kusi1aNrp8?v}A^1an_{^2}AZu;J?H+FQdLJYr|>XRp5<KNf`a-_93KU1;v1kg!c zSNVB*U;0}a_&-O|C9O+wbyA&E52t&&l+Mm?G-)3e5i?WAuuRpOhkYyUKU)4pdaHA! zjzeQ--p{U7>~7&r|Fe`54}gOcVDB^bVg-pwT(m6S0TJ}Q@{<#{ey%5d<CBB3w~A!Z zYbA-v)0>tOqDn<Z`7yjFuIzfSRXynFj6}r|-3*EPz}`D^-ZSy>e0p@9<dGge6pf&; zZ9kX5bAW`EnlXI4&}H#p890^!P6=L9?B|59j?VGwx3Xtjm-+yl3w}iA5pr38uXpTp z%nI7>ljhl;ri3$K&VWsiTG0*nrWmqLr;)FSXPdC;J^cr?$2iwG>aCjCKEjadnB_;F z_tc5?N8Wf-q-ThGmQ|O=ANirtF>YM*Yy$^FftqVmAYu<GDDPvuQ*%o^73X+XZMefV zlkx<gDWRo3D;^3`LIkM(<j{wR>7nGmIS0bqT7Gz|4@NS0gPBP|n6?}#$3AEKq~@3e zH{Ubn+{r*|uxl~$+sU5c<W6+ohSoa+C$_CcWIewf1`T|uEE2Ok+@=Z5U_Cl+ibIq$ zq0}gyJLtHMm-451+<y?bYf*T*B|%=GM%X|VUH7AYkA8iSiPELY2I(Ayonbi|qBaR9 z=28;sHMTI!$XG#{C}6%YICo$7=C6RcX&=TW9EhyFbR5P0?!W)cQ2nD`?VwiPDxxKc z!YnSDUs3%LX-WQXZ~6c3%;&z?(zq9<>CreFN$3(kWseow5xq>}k3^k4cCMG~^)`0< zh}uEUp0gRy?S;eh;q^cFEn`6Jer9RKFD+8ae7{FXLPXfb*h}07{QF>cRvM^3(}{O{ zL}6{$^E?Xg)X6P9g*9ZVXfc+!cH8(DFCMz+ZJ6Z%e%ycg_iRnp3`~1T=l6{d2}Q+b zRH68<Jx}xk42b;G(3!tBOa$#9M#imv*ZZ#SxDT06*Ia(j+5Ar-dX_u6?&b@<)ph;J zQ2x4~6g?-J<t||3w+e%9Z|9V6suKUAj3iX39jb#8+fL-+9+@HMJRu?=pW#fACGL0d zPMC!Rsq%t10?wRlN1UKS!I3k)0)D@Cnr|JWKDZ~)?tm_zguZW`Sy9Ho1A3Y!er_N| zDWS~O)ImSlZ~6(z(m!dO7wi45#^}_UlQ_wZVsOZGE3bjUX&qdC>0}4?wlYA<<QGf+ zntuE@M8TX;A<An^9@1G}Uujn7eNPA>I|gfQAth6U_JU)Et1MRSm}nlK&@T}gyVwng z8+p~_?UL0>Od$mlbonI90Jy(67rjY1#%D<M=G7nPCN6qj-Zj+&fJwS~vakID?99QV zzDT(XCnUcG?S&h4z|Wrl)kBdYlh;(6tjg~9JR*tA{6d}3PoTe&k%03a5Wj;N%r&N? zAU%Hq|9_0QLXu^7H*0q<54B2Ey!$0jC-Qn{36`vW)9IJm1I}mT1sWhLdtyy6vR3Pt ztcu?JkwMX`2QdeX_@IC0KPv=stG03YrjC}DAL*Pxz>n~MJ?-HO$3L%epk}hC_|Mch zoc_BShogr7T#ds~5y)SyaR3S)j%yq`*^g=*jBnN7orhq?d;{=<<O6gc;PA46_M_^C znAzWJ96keWf7kQxYaCAL0z+>d*Eoc9`ji7e{=+p6?3_Pq92Ucw`rJo$z>3YI8_$}x z<RhscrD{Fp{1RC9n`LwU6Zh~3@?5V?=~&0E+_>AE&qOPWzVz%|`Rxn2mm>Av;@!Xh zR{rfd7*W}C%Rr8^8hk2E<sFqx?~F1okcxSgr={&zrg?e<R8@7W;~-m9XvcEbDD|YB z%J$7~OWR!rGT46K`DSFvig6idZ<R%OSg-`R96PRDZ<f(>@U^TL5o)OrnkX8xfKI*^ z$}9odoMX$(v{plabaRcRAPWX7qoz#MQyfycO~alcM*PG*nIb|3zkPaBqGUn2Vk}mw zN%tsTz-|xsq*IIUnMgQ~<9rWtwi^+UC=s1j&*{(k$*VBURdl}UOAH~^(@LRoC#&}C zoe_6y59W7P4$Y<0xbV*+-k5^=PHke>(HBcfe7mVTl^#tt@iNXEyYJS&OoWB4%df;) zsLz6>ocUR0yure5-76C9X@34-0cio;KwM}715V~<Iq>t*6m34sX@<t+Q15Om<C|pP z@3mZ<4>doNsN7i4G7fGMT%3qX<^WKarwtum(RaYCy78G1ex5$J7;H{GWn#?4v@^1f zucrI3fcDhJ>S(>MzQ;y(68D?<anB?Y;)I54RfTz;(~;V=SbW+(J65o6a8z;lGsiUE z{_1=WKE@Xt@p11q)1s;s*NU24wsEjIk6kpI8sbB5idVFeWme@HM@D+O-1_?)8LTHH zl+%3(UZ-BXV$pSWLm;uo@h&(^pRgXW{w{_|Lr)<*$zUscz)(XOT)EXA^hr5%G(P&) zBv{H(VM452)48U{Vc#zm5<Z8l@4W+XY<^pJ)%y}Ft~RRr9av&|Ia%~o^Yd_N2*w>C zSKDW{&cGWXvx5kPC6Q)>!KJ=Hu=~O1ClbL(ry-Q12D)<{g8+7PNfKLMX$tRiM!UuF z5+<kJq~nFmHi3BA+fBX`(PB9wOe)68aR@fGJtXgoJuYIn{nz;#1n-QWT8@L{ceIEl zYf*l<u?}@TTe6>}ux7(>i*tQkUrw~GLA#w<wT_1K?UBIb;ZnCJ(rDjEWABY5+IzYo zL+>Ozg(qLnve70p?&0r9KN8RHFRiGno?fTD=BEQBMaCx<4v9lVrzzp~b6mtS-oTv0 zCf|q?zHe(X$v^E^EYSgRagP?8gv164tQh7P20fdi>T%HlDKst;XHtCaJ@~p;q`^67 z)&!q;FIBm_8}?){)|IhBcLl;BwbWFxv7F%mm!ha_a=T1uvdL?upzg5irJwLyYq##I zdkv?z+t`Ll<>E@a#PGVV>#Uy|7>?b}YgDW74)ROSf?bWDpw<x=7!7$LW_7)})H))E zJpOx7_<bqe&4w?Tm#U2p?95cL54pd79#f}Pre#ffar$};naFP8j*T#C1$c(3VB%MG zEj~!Us=c_|#=zuE+Egr)OQTpt39-2S4x-|4p@!LYWO_4dfAz-7bM>Uq1j*$jd37Sq zN9&5AIuF*rHWhn^Oh4T1o~Qk^Cr|HsNw-%d*N7+NYH!?oJLC5HE1}yBb2othVP)A= zwLa9wRhGMIyFuMEeaR`>;a0)-?elNgde{Jo$elVhlPHKVWi8wc?;Bb8$a65QTEYt9 zr<32f4rWD&%1K>#TG@*k0l8|rjrr2A`rJo+Y!M16x@eN-^}#quVB~_7gXzJkRBaiy zj%V`<xz#=aStX;8!6M2XFkgs9s62ggS<$8+D?B9N=Fa9`y7vX<lbJ2;xUu~s66fX4 zd<0p|4=%P}dU;L`+0*67YbXa)F$8@1+>(26?()lX45^V6FXoM3j=Wwu?DA4WT#`Gp zC8tPYOc?E-glmCIyRZ0W#wRzzx2N`kgDp(#%MY4E&t;zd;QH2=4=8YYvDdPbEA4`5 z3W|cWKEZn|guh9lb<TWj$VA4m-A^IObKO&RN8yW}DqfWz)yve<Gm;($)`q80uX;~+ zNZgmTtlQwNoXR<6QvE$tc9hk(&1g5IyGc9E&w=aV#oMcw2tnd9xF~PzgcLLhzPlsa z&FWihi(B*5$|;+fOxneof-n8-H|nu)V3w9dCVqIXa27Wtz!1!1bCBJ=)iNl(N1Q}L zai-4d)Ex5wr<=oSMHCa)wfshQwX6rLerH$Y*2bb%S!b+2rd;|>vWqi%YN%Q1yZSlj zN8%iBeY=6uu9il%dm|V2<7SNyFc(Lq^IdA2Y)hdC{8JvQo}>E+N^F`b>|V;H+p8LC zvaG(>8gMaVf@{N`ycpa&-)_;ZU_lEUMnbm2dwVbFn!1<c7P`rB<s%~*#o`yc-DSpv zAsy4^3MmA?W|%Kt)g4j7jZI}?!@1ANgha8vxa!!YR{{#5N%`IkGlR6%8|Xeb^;dEt z=$3v3Zr7aFCkZ>0L_8^Ug%IBZYDYrDgU|KYzO>Kx(Og8+HvNjHWh+E{bI9MKEfIe1 zWY}P_tt;p5!LIu0cyA0iL}uH$B=7JW&QaVM^V+HMy4JZ5uIZ_!V&fD1qI0_P1#^ty z!410$1ev^*2b4!^sNj{{9~$+?<n)+aWGBQA_|1|e0G~D(A)EGrjkIRqj1!ZXOBdw( zw5Kk_ey@3lfZcBz>5*-nQ?=~{KU}n%EXgr(!B7H(OFEdxVGCs7%Oc(zerh6+spNV; z?PC%M5_(lX@~va^AQ4Z!_hE9Xuez*y-LPXN_XVy|=CDbo3Nyf1HgrdXjtQmx+52XL z(HY35tIQ0GwDZcdG+dQg8l$3Pp3)IR-l`z<D%o}Y5OkdASF4iy!xv5VA9k!H81Ic| z=2jn~3}p7p!Uyds{Rl9bK%JJO8bZO$@Je}@`pD*&%|7Cd^-uR@e;fH2?HdN1c4%tB z&VwuWP#-;6Nd~Hl4adZc9G8pi_Wf87G%$g4My}q6<%`m5i940E<&-aKzPP>MIilv7 zR8z^*q?37l%4d<{AuKXay`O66rCh49KZkW9D{Pjj+AgnPVyb1;-0wB<>eF5IT<e1@ zSE-d8HYJsZWzfnb|4=H1^{Fz_PIxj$>JfIKxRGmid*3V)e2r9(B|GKPt%)f3!E|zH z!eN8<qU@-`-Mm;l4`R+Us(V0Xro$9k(e<wAw|(VX=YOa#!AjuT=0%HD_qB8^x!lwb zDBr$KbLC3zt|jj<yHC9a%V39gDc@YacBE$awa$HXcTS?0J@Zle+59#^=A%nMxhmP4 zn}odZ?;L<#xpgbd_sF_rUL}+P!braRk*JWQ0h@%qA$SF*gq0;EesnC^Z{WE$(;G`t z_&{xLan|TnLcfowh?Fr$5i*6855;Sl+y_=InB^OU@clvLdCqj;7U-G}sZc`9f|)|@ z%i50X8tnE)ZVl>?RIi1NzoP1)ffV@zc_et;JKy%h;m;GutAr*834i=%IqgGGO}9lG zwZc297xT$~glnLNxOIw+({0{Wq7O=GB=da9{Sw`%lXJYU#g47|3pI4LtCXa<c9Bq~ zr5En`j0nhm^qyNy>KA3W`Ev>9*o?`&qDY0o?Ia<nZDM)uY<9vlw;p`DUV>p+oQVk* zlMfkGK}Z4<?0#>oK>4k*29LmJyOTT9yt#&ong#-?;@@|UC*)*^lh>~3hV6(B<i&>C zEDfWKCg-}qd}WXJ->Ug{JfB^tPQ2JM-1bb9d0!}~#CjhEw&v7(Q*)mLvbrOVieX++ zG4b9)jM4=|Cg1c|d>I&^Qepi3-La|H2ytUU&j=GN?~6Hj=gXYA;jx0L&$x{OOK{T3 zn_eZv9bOz>z(^%`CPMRr8Ns+$Vx||1&Tyii-gg=lde>6TZ9}h?;2O+#;h<oC<@u+< zJ$Ay1hfoN1Vz|t_K_X&nP>ux9`5P>6Q^q1jS07OBDc^>B%}@>t&Qcn2t_(l1wIy*G zx{^@7%wWB8#oL-zD+-bvHbz|GDL1?fAY_y&0Z)LxIUljLucpn%;G<S=_KxZR8bPro z0UZ(ykr|4VGOV(@RleP^H-R6QnSCE|fw}Kdi4mJ3BHQRbur39;@3Al!5}Hn2VIN9= zr479IG~?akVKuKFH2@3=uzMQrlD36=F=<(7A;j7rS$VyDH94F>_>qApcXZ?c>S3>W zpf$qjtu>-ms}YiLp@pEDM#Z>#;TZ`^{)6`V*Q<oyYop@b5%5x!OvRbfl{aF~!wc&< zuaB_1o4nm26wzhgcV<u`c_`_>Y)yhv0EUbKR9%O=ehy{lg&uZ7mHiZC#?%fIll{Y5 zsW?l&d|%mpb3N(&@J;8XKF&PJS5$9GQjJr`dXA`=lrlz%Q&7;~@F}5rGYV@AKI|l) zMznT4Of&7vrFR(-I+!*UJ2Nb|aFb4amBGJh`C!^EEo3%|YDsSxQxsIPsOy?F8lw$U zJS|QQzp98}_0DHZP=rJ+$s|6LtfmLV?PmA#p!u*Xd0I`;LQz=4&<d}wMB?auDdn{4 z?zdVUEx6{@m)VJ<{aP^45sVv(h@_!gOn^2R<Z$cVHMsFZ8!hf5X3oz&IH(0w4eR$u zRda-hn{%*p?hd2{uxV)knhI#=Q>;sbZ!WI=kNu23k1^t`MXwMZ=`NtssMUAY{prqS z7lVP?%Jm|rt*%C410L$gfV$j+LGQ`KDsejF^3CVPLS$>1<dC8~NQE+Di8$j9Nwc4c z?OJB=mNH2(8RvCMND(4e7{$wp7D)LZx!X$wAJBuRn6|w2{XVA4cwl9Qedo*lPX?{N z;oPm+50}9|oX1@V=?kRl3D8La=0boss4B-hwhnpdD70V<S{f_|R=}iLqp6&3)5X^J zlC3GE<_q3ZWd%^ZCx#CI^DMfeb_f*_oPTB3{}ig=ZmLZ<FWuUq;0!Dsu!(wikET6n z^WYW@{r&deE|pT}^U-on=)=*L%2q|=^dxx!7FY<h?Jn~WPAj&hLaBNHq8%@y>FxvK z=ZH(ZuFsdx0FmTfRM)gFq_AIK0&=5DxQoMGZQNlm$}UCy)|A83_qOB&KgbfI#kc=# zA!S^F<cLf^c=I=NOFxJZ{>7Vp4V`1;k9o6vN9Wl;8U(Pwa4>9G=?bXP3Ra?)^5JCs zSP6*4ZfRIpu^K61K`N)E0kHUJxI`b<r^Wp!h2&{3#&I`)fF#FKg8+#Ahq)a;k1g;R zpU(!KM(}gVAyk{J;r+!p8&PA<-=R5@U_u*gMk`oC`T&1(()XY(($`V`!$r>Y6PoTO zTqd-@623P49k*vBiNhsc)n}XlDL<kxAdTeOuuZ60!!568?|%n$Fdr=@|AScM5JklH z$Bbi+^fqAF2?wFSu#2LyVa-rFSz?xn7R)RC#>u+!AW??$&X;!ljspI>7yEpdC)KQf zs>;7vbc*R;BKY4@>Td=Kt0TH>+0D!AFC4ACV!E!m>t)2ne#_?i!I6k%`_ubO^HH(u znB1<7IE^ahHt?{B6ATiUIyRmVJ{7kWvT;P9<+my1Gr>14J*w|kFBS*Qv%wv^Hb}4q zLuahvH)Owomvc^Y!<|R@{I~uAD=VJ9$2{(u_|7uFCQ%R~A`KIb)Y{SE)Q2p(e15gZ zt%(Vs&l=s+hV2D?I+|-(AW*ec_%`mF%mw`Vk3=Ty)2?#UJeu&t2@xhFCV`DmWZRB0 zxOiEHF+>+odLp>Ny*x^e!RbSqXRpoE5xR<d2^wX}J-KPS<c+{W(mqha-xxuWRnA9j zU8NZ}&>x|jU3^Dgtppg)W}{CK=4r5Kz?MWi*C!x`a8>-e@2dmI_{~?Nu+Oc1?2IoW z-jAM*sF26T9(U{8_w9EEb#om{uZwz0azByfeyY^3iMzm4j3FRwwI7wu0qW8b$t4<G zZw)TirqV6G>NfZyCD#I0o92;%Q;+ibZ4L4f_PJ2y9z1ki540o)^vqzfZ>P*nVWZV< z=o;3cK6U=JQ_~j{_8C`|X&!#K&=H9TH}(0vc=@1kW^DqU&#jRd)g%<LN-W61HSca} zHtbsp|3fdG!01to_ISs4iD^c0J@`h|74f)#qE>$+Ebn~(nM$v|3reS$g75)>W1;1Q zKFn+AS!;0s{;`4D{i|~S7nKEYihLDi@{@6-;$gl6@>nA8sp?IICC4tftBGTGlz&R& z2BXaQ=Rpc||G5ooaQ->Hm9$aLa6SI5vzwXp+V)<!@0R-^34@9V1|k!kXQyar48=8+ zYUPv~9?o3pZr{rmA8&G#K4%-D52<S04bOkWg2_&*<FvM2!&((nso3$uE5U4KOjijr z>D_epge(SB+?@`-;zWuCXk(<?z}**(6H}@9;enibsgkdS(ylxm!#4BZA;I*?g-f)B z`)-j{WMt47xIZ(0kn`<sYWs%7^2<hZ#c!(}TJ|c_J(LwD?6=eqQ$-z1G#e?VQplW) zW{ydd^s^7g3sWoKZn{I#64uaHU+-<vTtn+GV==+1S2&~1u)?Ycq=Z6pg7v&Gr(XMq z%;sDnEql!`GUJfIZ&ULaRaa<;XEkIpT+i_a(QvM0tCqd9E=J!H1GqYi4xQ;f{ih@W z5~;Vo)Tgv>7`WDE4y0v_QW->68N+qL?~}~v!GpE<%FeyX1J*7oa6?NYF5d)B#umg~ zent@y@<npIcUZd{9FpC4h{=wT*Wzo$B#d|SmzC0FS&ZpWhaz^bbE5gzFRolmd(N_X zK(j`C-;flgevCOFRf4-20*k<Zn*c<$7sbXQ>2?=V4$6JxX6{z)bguR&zKIXy_gmFX z8RNLEBi1#>xRDbP(RD+W);4B<z4HEMiE^Z(x|{na0VP@meTbh_SjOVV(Q?K3a@3se zM#@+gpxV#oM2v!~n#!%B|KP-QUaQwu6JOpqi9!CV^s&=wGJnOI0y!AV&blJg{nGB( zpYC!Eh+F=PzVUBOwW@Z<h^1?zm77Wgpr4;0e()z?JM1G2*De;*^2saS#IxIHEWYoX z0`8!}E_sY@FjmV`$_UP`TaYD!>AlG*+A{n;5LiAxq;;6B%crSXg=My)d+S+TXKh#G zo~l~@{2Q}_%?B$w=@zSeT>P##nu}<~R~HW+4s<1r#=wr;7a-&HeTJ<{@%i^@L#kbx z0<{fQUR}rL&OX0K^}5%X5*y&C_d@cwy#(?_z@;StKgsX?6torhenBcok#)92oG`q= z#QXccal7*tbtdYt9o!iK)UgF_NzCs1w(JZ05?BG=QhVE=AIz2XR#!&bL<KXzPD;h` zwY{%7&^penwtvxGs?nE+Ein|k8P^6A47ZyKn4WbtKML9OdiuQvEl2=s8~1M1%}jAE zv)hGDh6(F?_w(w;V%l|?X~dqoYh>z|Q3%`9C=Zp_b!K3!M`ofg*VbMF^P+1al~e3I zq1N$m4Am_OU!eig(=#P}wC4H;@2Li#Bw-&$C0}cOY3j|2r9pBJv#5XEK4|mX+NaR6 zFI<GthXO7pb*b-WJ{erNW%96Nfu<<^%r`LTol4ZLi@j!WoqExabgcB)jYZW5@(G&< zZGa0jISO(bicHxFax>g!`I8|vEPX)T3A{e%nRxoMIP4Z9Z~X<~+a7a$n0Wbw?+0zr zt-+gweLK9g0=!-(Z%1QuAFt^=J=I3G`&sO>4EIfJoQZ2WsTZ&0-e(poMl0}Q|E71S zpdM^?nW%BI18kY>p`=WyMKqclYfOp>f}d42AyvIgVs&wAQP)6i`*Km278yU*N^^ev zAQcg%z2b{lv9~Z;6zf`*(r&wJf+e!fc%u9qGTVSj*ziKc0L<#{0GCs-*?s}@orIRh zkxa&gq?cZlax*{U@_*(i{#L$~c|M81-A4d<hK^6Ktr6P}X+nbxM90zO*q;PQe^FKc zHmb5vmi2ZV=9lR6t<nKh;x&f+@VWOAk;p~NR@B{nQTR3wi@&4vQyz>#yK_UAS6*}X zh5=JaiQPvNA$3ImN|pf?XL|6u^$JTE#rsw7$klD-LXi@k=bH|Y@Ng!X#-^e7vsc~( zKu`s_WmYZpK02Y%CNgPeNqP0cyO3T{LTrMwMMbtL4<Ktb;1^<Q)=KL}q$e8EQaAG{ z6jBwcSEqXOA<LENK9%(Bmp(gO3P>syp3_k~w$bbN0E{{Jv-LyG#bzGlj1hhg-H?D$ zso1C#7(8;(f+*|yo<(iL_I2ctKxoa+z`Z(D6ko+Yca-oDP1OPdr>F1;EGnz<z22yi z4Mr3W6mF+Wj^-&Yd^9n6$;FkE-=Np1#HqL3SH9Uu)7}6;swLypbJOmCE1-9OD9C~a zmx!LX;k_(sZa%N1(aoO5nXl?${hfE<K4Co$8s@^R0)+>dWqaLcA;f@(DKI3ZF*$EE zJpI_d(F$@q0We@n5Wl;+HIl@wud-U|@0mi99nZJd7-NJED@&eF?Ui3tLRi5M5z!IU zJLyk6JFv}yV3M3w6AnTyIv1V0nBX+PTsiVpgYnNtn@A`^t{y%}fkG~dunUGQgsUMI zdLx%O+c%C;PYU70#>zkEMsH@z9ur)WXfl}-($pZacBKoqN3LF)6ra&QpKPM7$-!ae zE7t>7dj14v1~}?YK0?2!+t|UE2dEc>ez`ZgA0Y8}M28rS@`Ds{GkrzXwR>CKjsp0I zJIcI^{j|O42lEKJRS9#0o?N7XFc%ObWVn-<!v#cB9ZsKwCm8?ea4!hAN%XVX*4JB~ z>OVs_3>>RlE=FiByqC(JeK+enIcDglM3_EZVk1)AHK!|>GB)(XWrgHDMGOA#a#^if z9i!TPwMH(<8ag3kygRzXqMQ<03OhOriwBV_%;yg{`?{XQ$ZXu0Em?UWs&}-dcLWSm z#m!}Ln}+0Hz6zhwxv3OBe}S{Ksk9-f9ZKobM86XrF0(1o()3|kB+p=k8vPU-XohWz z@*R3w65^w)Q<fR>`VEGxa{2Lgk`0V_69Q3o3_C5mzPX?9*|6ig0Y|a**rG1Wk=5U% z^&Q;FfleM70?z#+qg(7tB6|)^_bTslU$06UouKNU7tr<7f)E_=Xz>9S3AM_^S(@j{ zxD%UehSs4rHkf)}ZvBy;Jub!6^*tjzfhU|E=&Uj&5l{u$%7a*_BYKTmWoW~X+{08! z`79NqTD}pPyq10U`o(a~|Bt=zfNE;n7L6c90ck1%0s?}C-lZ!DqJSWXNJl_I57I+b zs!~OyLl9}wrMCdmTOb0`C6Qw2HT3#-@Q9v&@44mu|KEFK{1*nv&dS<r&9-J+bMI}o zTX^m9SeY-+U3E7f{aXA_JBdOB`+na__rVP-IH7sF*PmfnnG*9N)o?0x`*ot-(Afml zRh>()7x)H8-T4T>wG_BW^xE!vHQVZ>TaWHOCFKs4-+mHWkY>*$22oUT^}Dl@#!0b1 zAW{UpLp@^QKVsS!Xcy8)e#XP^cc`Aj4v_gOe)9<d$zbCL9T0DxW)~qb!Wz%-03LU5 z9adohD_y^0e#9B&h|C4C)Nhyx_Dcz&dvBu|{h;BOFatU{!8cpJ4dmbGUn0GB1MP<k zq?NzqFG+|VXijiwlV2M=VLpdE#s2<=mecj(y(kia6qC4hAkQN{mtl+n62r=}wdzSe zn*_g`4~_ANk4v{&f8-(ltjhmd|2rS0IixQDyJ6ab&$tGq7K=@F8bC*e3P@4@YgXxB zjd@6~O)p*JGmRSQjPU-E_3**@BsIA`!=YN<ua9#A!b)`^)g$tNZ@%3M_$%>f%U{2B z*>T;d*dmcF(EpWc*xvO%(D>ZFQ9U=)Oe&Ii<v8IW;4Wr*(f5@2BOkq^c=bmb0&o&* zDP#N$Dmyve<6_f4a$~}Zb?f^bDc!3zA#JU*c^FOKUo&W(9!6j*6i&<kN={gB1)6P< zcz-uwN?<uomW=H6@<oI-yKDuUvHeQ(bgJ8W0#bT3kI%o#nLn9x^na!kEs*-IHeOAB zCbX*eS7IhU-EhX=`yjol)8`j6gaH=;ylphkmi)MU#-{o>B!(0L8pBKc(G^x82Qa0N z{f)|9wp@>uZY2c)>V!r<3-GIs5?*AU^ff$y!q8b^Q#}MCtmnsRAK(Ez#@w}qr40n= z7zXjtl1uq7n}1^h%$tpEiDY#q=Jc<0(3E1`<hci)>hDh<=ZnyyYP>FCww1>aE^#J> zwhdL7p84=w4(ktp?GK3ldeQueHGk&ke`+d90nnP=y9$>@hC4H>J5C-a<8oE%>d7M8 zMW<M8cTwwWW5Z|cZ$9`X%-jSm52lJfp0&F>e{M-=DeSAGi`~t;zkYAq^=8NU&tdZ7 zkFfZKn#zi-1jpiwu2AD`gYSJ;<%tja)%s^5{E2ebD;{-r+~<Eu($u|MQmon}$LZK5 z_iI}zKqwv&B<*GXn6&BUFG#ov6ulVOjqU2De0WpX@o+BDk5nck!m`d82&(_cc>W$n zCZn@852e3!R-er_qtpP(td0xSPBZ*<p_(MU1nGaIP>tYk3e|8osQr%>stEvR{;P#* zz_dq&YWx>*g=)f`QwoiXJbu}?bRN9i=o~r(odMc$C2BHfa5vTcaWh^*pzUvZ{+&WK zIp9=+qe3;KoReVS^nbfhjXv<VLbX0<^AzOnbzGs^jhnH97u236JZzfhzCdpfnd+@X z#Zf4Al}+Q`79CATGal!uk5&|ylI5!20gpYrWfb1;-BgFi`sh;rclze%z6E-D{Amd_ zRw~FD*wA8k?4lHM&vX6l7i?E-hk!i_tF(#eD(<Sq+C&uZEpyQi<b)JkN`2r&6>O9S zsAROPsjY<LXM4xnrraUF7%aFuT{kqezq=vHFDYqkLRMuvR)0`&rL*=CLz)R}&E&q# zSBa_w+Rp|kL@Z&Txo$MZ*-E#_m`}sJOK{Oyg)S0YSKqD0a~~<`E^+<5`$Z0y#&~RM z9?N+==gQVAqw%7>H~B*5x@Rgn%jPR5qRhfr)a=ur)w=bFZFW_Wb@z%3+r;UW22Rzx zNqdMDJ#)9|ZMXT_I}<LteiPF^5j|Lj;9^^!s2U$14spI17MRJQMH{Q@)I0yR-NOu5 zn)WVS1JTZTB1~!nADgdn=NcPzz9Lj0%aV{#VAg@3-bb@)CMbo)h;HD0+Rz9>?c#ow zno{MvY=+hTW+j@-G%7Tj{iw(j@*TY^brq94iXso^zHU3mGusb1OIp)}JYuZL3kk6- zMR57yN158_3@vIb4WEI5us2VRbo7dkk5?FD>OyR)=kDcn5RR<iK!SNRwq7^w(<0^v zC!YhLNnsSYE(EPKeamE@{sMp_`TGplSg_Dox7Mi$^RKZ;$^K@2z1Q4%#Y*6tSz%&j zBXe1<!Vl*bu(g)H_oYj(l~={?Y){#cFM2G>=by;#FA^!9jhuv8<uS&=_yS9pJigVX zdTu(`L|f6bk=&|$S@{&U78&hpDT4Ck%$n@_;2=3vN|-_g%zUZnECf0qX()cW^aCsr z+27ceyUDXb_xkH%7OS-oJJQ=t^fByvT-of5<szvYn~QQdr$&Wl54MnO0KaOJj_u0Q z!Q!UV*Xmxgkx;ic@58n57)94S&U@FiOU+c9%DI}@P)1Vsmb=DkJnKc+nTm@ibv7I7 zeYU(=cy=nUc_#dB_oKO7`&vu?s7;$w`g^9cb=Byqw^iY!gO0_PCIyv4FGg1fGw&A+ zL~e=>=}Int(@&Y492KuEo5)L)A1OsgoDF&7cS-N|C@|lUR(PU0Pz*T!;X_PwWQWp# zL*4}~`>KJTIDOb^ecahr#A{eTA-d9**0Mo3qD60NJQ25mlxqmJQ7LunYgmY!p8cW@ zb-FIG6~AjZG|;=7Z1r}rdg&H0ZE4kFh5fFce3_S<o0_2OQuU@OIfL+Fde8@*jkmn* zNe}c`BNh^ZQoN1mG;{Mbx8>Vx<h$G#3xxBA3ARUOEOolGG@o`%4vCZX^cW|G<)0+a zz9vPF+C?-YJVqOKzTo?jmuW~F!?He<n_~(PxtC{2tM(sn=#m#(?}m!kRxfObFADDT z_lx&}W21|Uh{ywYti<KM<nCROgvh7eaVl-lR7}@Q3gLc92#_2vR;$_^qf|+SKpD=m zV?`y~><5~^a<_7smgU0QnT9fwwIMb8p^(6kr?Vf5-}rsXVx0_+X<p|TJXf*wQX@w< z7Y&D^L=w09hetLN3Iok3*hpSz+-YS6mTteL8zOYLlseY6j|C~OZF(w3bonI7iB)Z- z3GKBnrI8Ij@?^vUDgF6q7y6JKl-rVI5k-twu9yttEAwEM63>+#9W#@s`aO#z27}s; zz7kZu7vwBFj91S9nb20}5}1|?aQ7~XRlVE@o+No7qvNhQhZr&dnq+FSOBTedDCi!K z)Y{jEYuqMIp6#mysrsW2$HMM}CGx6+(FZMIj0U>yV^32Az+NE;V=8HRkSft6?b~l( zda}_ThC83fQWU|SHo2IW68IlzR!IZx<^zzUWp3y;^?a?l8-cfBC%%wC3H^AVltK<C z=A+grp@gbDle9TqiafPO8wh>9gR~OwFz?Vr7u58(uTQdJ=l<wWzjV0V;<h+~?deg; z{qA;FQ0m!e8fCQJMl8|;B{o3yvs;7;leELuhZ3hSZ{fquD5ok9qm>r<fzS~2nqPeG ziKteA=dP4pMQLrDWu%s88Z)YHd`#bjey*EOSlC*`Pl2X}OW-e)j7pGDS$4*KW8x?t zPawI3d^7<dSVUxx65Hu+Q&*8#N1$Ty<xLwBiV2CQ13B`_F)3b<bGt`a4@r<r%ztY4 zVyG8%JDgP8l7^Pj*`uZT4;!X({dWDLqt0~g8@g^7ve@^W&3yu!-3db*nrt9gP)tT4 zZAa*4L8B%ge|$2|k(GX-TVgjJ)yP^oROZFKyUv76a5?x)t)k5@XBjgvyk!ut6yvcz zhc2G=z>zk{43_59;d*j-dNHYKrBB&i-+z}WuFbP>W$@J$CM@ZrNnk&3zL1pElhygO zNNGmtgZZ!xCf9l^PKiw~dHaB*z*+NfFle167CfpI$z;ar0p~kYaBkd!aZ~EX{%W># z(fLIhpaRh^Lb_o6{g<*EZ@?g+RtxO(@H^qK!c;7CXkpD0(?M}J-d(M*fhezMrrT3d z-bS0e`Hn;1qrH}8nfU3Ms+<th5b3SDeD?*fnw3r+>D6${V4JPRkeRyhBkmxIcryzh z4++geO&<#(NQsyZ>*~kvT8`--Y|rH%V#<JuFsDC=cYQ~OqR8H9B16jhzLdwjR?6Yy zGStKOzH@A=r0?|CRylb-cuNXq%frr%Z`0^YEN?~h*IPSmXhPsC{oB~315~S3OhiA( zYyEq^=V<E=@5?q}^$PQa&hDfXw)J8hG~pdZ3Df*0*^^q#C@E*psl0$3KOG(R%3$uQ zJ-Z^0P9dg{P!UwceqMH7<xY<xPxb6<c1X_zHI9t$qrltGqOztKLN5336hIDjH&j0R z%E3;!1ddPL`gE<<1ItwuBzzio)9Ot<yQTdq>E#z3!8Y6N14?NF$xXVrF=SwMvlk_u zST=R?8y$Lw<E61fNbBuY&5)d;z&{q*qba1<0X8MzjMw1|fhED6BNocQZZRLMWk@e1 zN}6r-$YZNEf_|<^qm7<3(n4P7MUSCc1zGt?+MCs{!K$GG9bjkaz3F{7Cg^M|SS8P$ z;VeH35;U9kG>#(qg@aeRH-$_Ia2IV5NcB={kpLKpQyTg~60*e1sqgxu0l#lAL#W8h z=7ZSkdTq_}#GL${=KS>n5$o8D!K@#}X9E^m8HpUNMG*sGp{)W(Wo7Hyk&{C~OiT>n zU|e<D@?6RFwxVd83xEDD%_qi!EXI|s3|Lkmi)cLU#60+0i`0`Y{_1yeD)v-S!=2DH zj$5#5yNT(S61_)dYWd&!k?(ms+KPIUvUCR);HB1sd+#)uDzA4HZD+pv1P*xBM&O1} z)liY<v|<R_Ck$5R8piiezrJq@`+6@?K5J{cQ`;sCl87Xwhh-%p*QGjy)*#N<(h>TN z$N1bbU8|g@iV`H;)&(>yHzOA|BI9cZZM;^DH?(9QF+lrcDct(ww;!0NYM{xJTQ(|Z zQVVa0>W@;XLSbo@lG?<n1I{CM-?OeDvpnwiW(`8pp$sF=5#Sjdzyne`1)(_tVM8S} zPG04s2g~7z3R#V6=y@(^d;U_o$m4z0f?0$B>-to*ME2uI<kVQru+wYsqnPiLLn_jM zp&b2c1M$3yDjzFVF(D*<pxjz?J$lz-S9<VVcENUtMOV?*IU7d~DX6ejh!V`Nv&xfQ z-8nO;v&brjHjU^cv~+L#-nweJ&UqWAZ56D=MoPzweL#*YHfOx4>%;It5}!D#!RFOL zmL#&?$T8q;ThSBChpRbnWJzcu!4*$T-!f894k7y=eo$Ey%*Q*hmyi<m(5Uj*?wXi6 z(Vzj)MlO;lB{&ON6iB9x8-q1(7#byih*e(K&bxtpBYQ_LFMjzzE1y^39y!VC{JgYA zhM!k?@+e9o@nN%%Y^b`36CtVA`eKq?M0$I)Ti+DzE_gnPOl5s?h<GW9AmFV9vPcRC z2JPe!&p`!0*WuFlC*wN0j+X`O6tYB-jRWE+>52WKu|Ns>xK)GT{v_~z1LCUWjn*QA z14WG;2iuP;iUW@4HubC-n>%;aBA);qvt*pzYr>HtXA~!gmfuzh_9cL`{bL`vy1xe3 z?hFJ9Qp*nnYt(ucWqQu+ERKJC=nT{FxSh9pK<?aK$=X?b`>CRPBJ|OAoeArz)gWD> zM2Dq*%N^bJ?^@ving*9!iv}QB@^`#zm3OLG{pK1}0Wv9<KzKCJhw@RDefyE~5jy*! z=0IzRgC~868qDwXp>MH|`V!k}jv>G`o^z8!kp9q6K)8oB6k&Z=an)n`*=DeF<N_&c z1U?dO6C^3Dt4c>zV%7bZl8COQT|%PZP>0(v^P>XMfvn3&)J|D9B{co05L7?=jfC4S z`p%un*rQTW*W4&AuW+5%Yk)fVU{u1LaImKOw12bz>WZe<HVp<%!rH)*VGvR#e^i^4 zpLrEIuA?3x5rHey8nA2?h<*(|sta=^gJP&wm5vI#@|lskGO#vW3S>@bGFGuw0E&ya ztNkVHPeIv_3d{xo@gmA6tvRzDbZ9oP8z|B1e=q=)1qGYJ^lGug%T@bilUk6UC#I{y zxX`XzRUSiKDNnM(!PU&jNnAP5dYsx)QaCvK=0BP2HJJP78FZ@%w#nF|x;A}TScUK3 z!9+P(g5>Z3G2YG^`=kQUQ^|+8+M|>hFbzOy`W*uxUmy#Mq=u%G?dJoPOU%f2^VC(u zO=+{A2nz%&%NBc?zRaHee27cft>z@Wmx#FHa#a@4l1G$Cf4XWq$gc>8BZ^xe0Z%~C zNbip=s%6YF-9XCiatxp3A(K&hBS+soM*u}!3_K=23vxVO?MfgY00u5Y3()zZ?5}B! zr-^=y4$zr&|J_kh)xc|TXfo4LEz~-II^UYlQ4y8CIxo_+zsVq*>7&iCSXt5^aFtME zbuJ^%UuhAiEd_g2D6k@bR8h$zAlnlmBswj_3k8{SRVdlX*dNtnFSpr#1K~T?$`!wb ze)pIZPqCbPhOJxu&?=PruT!|9!D9ip*x703U6}wgag@<y#gyHKkx`h+|JE%I{8TzU z3DEn1TmYT;YW-HNJS~hq@(KV<IjRN&;0l+R+p&9nE|AgX@~_4Uqz~z(KZs=AxcBDo z(?Av`>hJj(H#km^TRxK?f#Ry%G1>X?DI-6w*5HHDA%YLX_f!1;?XiGGabf4yZ_FZX zej$|G&sN6Wlo3bbNrYe9dE2V`dJI_4puk`@z!=~|kEh$(a!+n_u{O@1b^Vre=)<AC zk0DII>&cqUCu<js-q~yREt{Gj=4|ZGmVp9{y3){oa8C%Dt{jcFtt$|(R^1h!IV@kn z_b(n6YK7PewB`Cbn_Nwg$L_^hPH%|6C8)WJ6}?<uq1d0pcSzchH|(l$;4)F)U*P0s zWzn6tNdXL1hE5=O_jp%)`f%AFp>Y;ocfvdr&HV_`a%J=dT6>?c%ruYvfQP#h0H2N* z8OUS@kiTHh^gO6)zu^SO<Mnc5EcY85%$mleAheDEd^2uJ<T5-|AFNNRyb)i+lxOx9 zJ^7|iK0jc5oI)qR9WyjO=~5+G<A}=JJPS<^Ss2g;Rk{r&49&D7wB&Ybcj3!#N2fNL zMtdY`nfpg=@38J~WQo7K<*7bJ5Z|}8p5P5V-~1TiFS${%52(I~m65(=kKK<zV0=I> ztUl$CPsaD-WdC==yG}fT?Av5K7kY)-nLAhFrSg{+^v@d2Y0ON7VAZMFdtDB5XpFGN z8ik(f3-Q(s%Lu`=9clX+itO%%psF;eXTwVDdk(tk0SdB<{!{5&WQ2~~5!FvLU*>9l zM@t87_607c0dhULrMxq+Sic;6pP80M6@I8bHK}Iy`IBHLgtvT7o}m{$CBkx1+t!Mf zZd}A&+g<?;rv?~$3!Ag7V+O1OsON;Ra*4ys(dz0Q>91W2hj|aGr>hmp-#zg3DGHbt zdIv>9Zo7PM@{f8S>*<rt=&j{5=&ErUSk`Hq&FLbx@B(ri4tD$gi431deQs?!3Beuh zo;tX!JZzy~?K;g1c1HV`<lM**^-Q5>i0h7N-V)NemOs{{Hj&T`-@Zse+L3J_0Z=7* zzi3*r=wuC3>d}C%TOq^3B_O%WBtFcpb@2m-GtbgZh3t34T>Fjroxi;|4@OU)=Tf7w zzipgku&H9LV854Mz&%b;ux{~uBIG;3oTJouNQ}X6>gX?);_u7HJQhw{ijegOv?ZCw ze3EFhMEXj<+4G~yqJMX+ztEfMy09jLVuP&~WbkhaksW!yG_>SOe{Rwx<j%2bYr=AF zY0Va7HW|`{NX(J_RJUh4i<T9PmpS?-wY+|+<MhWcf;)5*NonlJonv(k=rZJvliR*h zu`+Bu;HMfoJvp@IKdoTw@J3>e{O6cCFmPR$7NfCxP=6~BL>w#3>8V>(1z!D3e^M~V zM(EfYq&vVO&jH5js4URPv+b9r`<=XhMUo>!MNW&mHsxV~7v=&srdcQDM~UITJJw&A zr8pUA)c#$hWA8?c{%?wXOo9VT&j$oQKk<$J`&KRP7D}2vUb~oZ4RCROB1!UHOB-0q zX)GbXtVbFa@!`wZonL0*OdNQD%#DBjH<~&>m(WSL2tLfYa%?Cs;n<(n!{K@uT$`~- z@RKQLhoniITgA>w_FQ=NYYrc{*Q0yCOxW+naWeLpBY#DRsJ8eg9TFzE!W`A6gIHsP zF&!l2M`6yN4edW4>vvoK`{KGcskJ2l<H$)W=vrX=MT+x?BD>nL*z<p);1)gXyXOYy zZ)6Rc)cR;IEL;+kNkjFkYtZBnq7pD2`~C%6xdIK1liot<8NV$cL8KZ4=C_n~PHIo# zc=e;}cfo+Z?WI?Gmm7bda1G~9{UM=5?L~gM#*<p)#|sFM^h&85run3E9wfhURBja^ z_US@RVl!HO^ZCyu6!=|h?}{16*)sw-Z|!I!yK(P)XVD9}<GKGEYMz@gzgkqR9~z7B z`-uo4AYoqOrVTJ9NzGp(#c&C^C5iMrc2;I2NSwQld?}t^OQp;T#&tgwyZdGT-5<VR z+#9HHb@JAgTP(lzdI<9q2T$lsEx1bm)~W=HM2r6JV!e_WDMB@Bb%)Jd`P2F&Im~j! z`3w2%e<F09Q`hh6a~6Ba=Qkhj-xJ+leyD&|Yyj{8F$%h@L23J7sM17k_m9c~zS@6p ztlyWx@9ti=1WB!dmmk0M1Lb20LCZk<_l@}k=Gt%5{Sr(-&~aW$wI_QfLPh!PA(!B9 zh@+(E=3fu3^c(!*71!2*mP>GfBwq!E_1mpvi{E<hOSIlgCCG^{?V7#vTXTESGFj1$ z=J(d2A{*X61pzP$fB0qv>ai$Qcb?yt0KqC}y#AB=aB#)3M1)U-Y%nD_9*PcM|BYRB zNFN6&QmXnXdN-M$Ap-%{%JvuI|3bgUkkA}3Ie&9a?$U=m0`~EacS6CJ{(2{L^4!{g z=$0LXf3p)x2+a5&+X=-zH1=QJ2?h3Bk9I=Cm~cCx;cu%ozkhu4{5Eaf!X!rR?IFk# zXvgh@DslYU2{i`V{-)>O?u4G`1x}Sd+6jF_SA%;P>c71c$~g6NCv-phY+qu)E@Vh@ zcNYdnG~ZSZu2&+*HxtIAqsF!`!un!HDeB4R!;4zrkkD2_A#XY=ba?o!6LNRY-o7*) zBV^HdtIZc~7R+-YA|ZjA+%3B@y=wN6hO-7TS6na26NVLi>@nw5hMs{)>snN1)1`F2 z>h*F5e-rR%h#VN*w6iqcC%ZFVl~W9UL_@AJCIs$E7{V^6U{ov<Uel%NTVIUZTyQ4j zEZX$2-k;^rshCjZrD|Wi?S5ZB5IHZ-2&-3S94sn})FYoCEwS9}O59Yre?RtduTs$> zil)@cE}_v#f6YlH5B<?nSSZ=eqE`U_LYuHna0q!E)aU$?!^SI*&De7`ubS6CkC#Ac z?v~EuJ%#bOTDzKpScjUM;fiS2-Nd@K37r9hYRi5)cMhwsZPb||th;$I9Xe^oq*y-2 zMhTZ<tL@>M*p01l@%MGhH{@?zaC==5yRfTYZHfMR*zj)ZfM_EQc%Dp*smHhEq!{Vk zXH<$+D^zW>A8r#7GB~~;4Vlw~B!;3B&%QFD7l~_zXP{|gV)Cjdp1FNC$y=hPpVKrb zg0Ls>3OJ5_bwarqiMuq!Y~K7RDPAE&=RWuGf$iK7HM!BK$YAIJ6QShhLM6J9PAQ|e zFjLQjd!c#maz=_#XT<ae*EIx4zAywITLaw*^Lax}uE*eDVX?QSK0p)_UlA^nJms?U z%2i4M(^=P99ih&iyD+j?StaS&0X!88C2U@1<^KAzvHn_x<6PuizVuhRw)qcRE^Z@n zO80IThWMnA^?&wGAFX-R!(dgiIzK5S*)kFKHFm@3qrY`+CO^~V%^G}I)#A{To*HNe zxmWRelr_7Eb#;lPnNi&O0g+cQw2FQI{gk7eyD8?<HJUczGoB3_%{pEeV-Snw?2lDb zn|+!``64R1VYV%GjR>O&4BBTv!T~N2v-wTW=8Vl^rCY$=T@2TVXYo1)H*^IsbdSx@ z)}_0^xEWO}qvi_>Yom9&6-u8iXYyN`y`a8G7u4pANoJ^Xs`Tk>-s#hUStyH_r&TA4 zFxnvRmI^QmEUheqY%sfxo(XaAAe*Xvn~06hc$=E_W-gI<-NSvZg<BEMXb<NBpWV)+ zm0NFuN2%C{7$ReaP+jG~)x3bDaoTW0CvwY(I0VQYJ!vjFl+wEMTYde~{AHodT(8;3 zx2L#SB~HW1a(Om0Kn>Y*A3VGs(CcRTI=<AZdIfm&g;zreJ9@<3*gaZ{eSWw~T9?y- z@Gk!lkL#m5O<-W#v34LNG0AE)e2pd+n2b?pbtfJ&!23WYqxtSku}(kTl~nmmO?o2C z{{CEsWsEVpYPE8qCHGd3$}pE@2(?<um+TPw6lH|?JYT0+$rL3*(IU~c<e71f=t{dK z<js?=s-+rB?fyOUpM5)5UZLSTgtVBLr}bU71%^M{71^Ua!4qUaiUXd;$5$}_Dn$jj z@NFfkxhJh7$z$v!U~eJjoI0g@lbPrrKNNoNfb7&U_#&?8c-m&X5>g;;Q#3&dfSzvk zCLP)>FZ1<^iaSfYFSo9(3Gl=uNUWb88$Bs!#@PZ_eKR4zv%j3zMzqP4Ai8bYA@1u; zefEVA&)bP*m88mjU^AW3Yl#1hxgXHXyhTP|jYq&YJX*2)B&t%czUoxq=f{;+wAFZW zE(d-zofeyELul<hTK|hu8^vuXkKNoA2N#iBlyuaJ(LEfWBc%7YdCE{V``fVw+V5%o zb95cshPb*!r;3sey-Nm8FR@>hF>Y%-S&b(NU0Y!#Uz9e}GQChZR+~>tODih8Zyyn) znFAjW($u2PS+?<J5o~UWR@iJuG?NRHW^djuqn_7FtR)wVAz12XLJ1|b(DL#;yp=L^ zQFAf!Q*O2<k=J9_kl>5Yp>EIIF=={k0%x8b%nwb3No+KRW=gV~Hhe8+C!U03yL9N> zk-dya5{w@(MV#`O{;8%a@S-$>%#x?=gwmD)VkF2zTFQ1hLq#VLirJ2>-u2|Ku!M+X z(rJs+`vjvs$N8y?hOJlXC@k-r^75Qb<`ZVOLX|%AA!8lxHw$JKS_)WwWqNt2!p&fZ z!$Rev+fLmb#u6jKT=SByox{puv(0$)L7otbErurWQZ*)o%hCReINTDYP<;2j$F)Vc z^Y#5q|ArQrn8ReuIRP`}Y{y4=x=#_idtV3SLnXG0M#-g&ghQp)z1Vj*r2FZ@h_Eu0 zzF}DQ+_+p+veYoej8mwYV9>}S%zZ4)Knp;jf(E!FB#jd+Ld*>x;}-~+Aj*9!AFe*7 z^)n?<vT%ngi-C{E1E@6!QXjV8**0XLbBZvc*CNrrOLB9MgqxS1sn*4>?G94<kRH90 zwB)`y{OVO2d$h;u>el2V908utDHLkTWTY2xiqB(&*1qIDS!$3L72D5Aiy1Pg-I)b8 zoQLNirN%aKw=A`ldv|)`w3hV`W{@%QVN9MqlhOk@LabagQv?7abRB}Vk_l;F4EroY zo}gqT_7V1OjGkZAg4;6D)f>a~87j5dE7V0#Y_zFo<MX|+BkcY81Hpcst>-lL`*vI) zZW4?L5;+P<MH7D$vY7`6otGkLvFe3TH?AhL7KQ%F1bd{=h+;IiC4+VOvyRS`6k~9b z$Hw$v%w2a+aeyJ8%ctK5t+}%4zzbG#j46rB>BXIw6unY4Z^Y1CPkYwgA|;=HQ{`ZJ zhu(BZoYdgb!6%}w%7rdBsnu|-Qq4vPBsLt5PZE2y0NqKkGJIzkrJ}YOj0$w0eb)f) zcQTc~y(6NWqbG-3UC*J(SG{&e(2Op&hha?878U-D4L_PsdhO2{IL{ATKB{Seq6%4X z<9&jwo+(-#JseCPSsIEx@a5tA(fXPE3Rq>-9*yt3SbkV=1vY6Bvw~Ycw=ry~=&!MK z%)V<1hNwB4xL^rV5U8)0Z>dckg3~M%2t{J%8tT~1IS}Yu&?mTh)uu)wK2Vw<AYE(X zVl-Rg`8}5bOQpj)oUFg#@<D_@Uuah11vIJJ!NnU|B3nJ&&A()ybOC0lzo44$R18Sy z(*|lpHp6URXcW|7YjXJ{)*`^QWTF91qv!D8oC+4fbH5Qnh><+V96N>SJF{-l5&-3a zFUw4+7#CL^ej3{X;H2SU`eQ)%80YQP?>0&4X``fA7;t+e-NJ=&$_D?c+?Do;A$Wjr z?&;b2j}{XT-0r7o#W-WSfpTD1{6|)CrB@!FPg+mc*UgVC9p7G8j+Q92!zO<zo*i$1 z1FW~-60}}0joC~??sQ28$;+R&-db&Kjh41q%DO@F1m!p~Wn)90r@W|9bI?iOf1}W} zP?Ep;S(-E(R0J~B6mn1#F7QCYsSO3-MNLhe2V>6z;H%jaMT&lGh70jX*&~5Flr<5l zxp8#X$Ca&P9_rx}#_C3Y$y?$~g(`nBKqvDqZEaCqQ86|bX@J-6!O^<#CnhEh)!ofc z2R!(NlIuymp&o&4OX32LQLg%HT3Uu!c|}hzn|gRxubFT>)+?^qNqL+a58LHgXSqlg zT{*V#B0uI_ec{j+DzNAyW__<zaAmhEf&VauR!cmRZZn!d1af0~={Xg~5!O67I4F_C zu3p8yBKiXARWfWWRno~BR8z=bDJm+)Z?{;=x^k+|lo=8K3Cr_j4@fdXV#l>?vHmSO z#hvtbmPMLFy1SdO&^U>OxW)_ujO04cf!$hthrGP7Qt6#XghUsG^-!^@&(1q_&K*Yc z9&~oZMGHY3X&tam-FbK2O$|}#z3ei?!BWMTLFD-qA~gYycD#7ay~MU>`k~lI@h^lS z&cMi507JY`yWI}<mL)T&zRXu{k0_q?Pb>((?gQmee$0?${jG>hqbUH|vcnHi0Zy0# zP8h9qYkzok=$hqT51Hv&b~HOtcDqdcz-DcWWUWBTQ;1rPDebhfJc+sfQotJ}-h8ZJ zoN-#G&TW7eRVOhX>!+nfDct*upzoGl&S?>2*;m{ye5r!^Jl4q0JJHLNci40w6C?8K zD_Stbv?u{eVli;pGyfC3w${#Nd<aegBj8)Y^LH%~u*GoY=|yZY0Pf>P(;t!!{)QNF z#>3Wl_WiLcQl6qjY6K<f;75y#53-H^xE}rq4moJ~xoleCLBZ@VM`AQXDP&fuVm1-4 zkPjJHQ<`~K$h{7oF-QT~hM+6@fu;WVvwh97)ggRgm=Ksc1A>Em-NFZIc?uH=EWSE; z$w_QGuvQIG+TPIb$@<p35Ux7-s%pM)Oj(qnKJ<eoJrl+{RL@YW@Xn(C*#xoajzg<3 zXEIEmzjM0qm$?KrOtr&E(-`dtX^aTd(clwJ@RTW?C`8A6$y9J~LeYZZv;iWX{Aj)v zV-%KCapN>*;l$7H<T_FF=MW?KKhF(9mU0ep#FP=mXfgtj11zLTda6~Z$qOOp&6fb& zEGFzh#M3tYI=JMgBS57PRVFLDT)&U{1of(Esp$7%!k}nNEq<P{DJa)@1_k8~(w_)i zG)8Scj>=()(WFPk4y)$d(<$=hTmG1d1{-Rmzxg>6Xa>mP8N*MOE0oVnrx9?3`o(-q z<dv-#{)YP20F_iQLfUH-tgPEHG@Oz^PWDkS6z#V9g+l{uv02kkryBn)zmQ_$Yrp*5 zk_c4kikwcviFJ#KWPLAyE2@c6wtV@*U$V(Cxf~8z|M&pFzow<o<QyOx09XJAzQM_& z*sua6>|%0SpW^OXLdt$XH0yZZHcFx6jc6>YywG@L!Lp-`25SNE8bC5IUL-apUNbm2 zXHd{OYzolCKicUO&(|UgO_B{!c|XvWLWtK)??<tbJhfxELtl9_1J`kj7h>N{#Hn~* zVJo{dGM;>BqT(1DdHa<BfWt~#b0r$|VZ#%8fGq&T>cfC&Gn@(FtfYt8z^~~#yTi1j z=HC=Dv0D-y!_bK_>UaYcEjHKi8WuVpxY@-XQD}0X%D^x_W%>ybBAaX-fThbkI4n%( z2mfaK{9O}!9~YX`|3;pR2%S?$Bn_d#-Z%Wk%|GyiAuNlhnbR)-9AnRca@6gaq~wl0 zcLhM6GDO{br;dZ27owN^FCFX}BWL9&axB5`b$m$j^M!p(QH?Y0_Y%3Ouol$$A}uh1 z0a%||4vKoTy)G8&Lo~bZ;NkPCc*O`+KV>~wQ))a?sG0r=K74tWEElYp|Jo%nM#Me+ ze9QnPz~*KbFEC;(Ye|oG@qVW&gl|QR7qWF5!+cumNs=LpHQ^{+cU>}!dFjhrS8H;A zYRt!GR;=kL8~67uS(8>eY^5(in<Qw4NZw@D(&&Ya`z2rEzq}h7dhpajlM>6m=~o8C z-p<Y>>^;pv(3a@OQ3#c*Utc<oEL4vI9K72XPhnuoYOFQP!dDan_389|IPoa-6Pz2M zlVBVhV&v|eMa;#iPM`ZBu{>NTTQHy(lt;x+VjmH&i)DO?6M^;blufq-@)z*{qT^8~ zuNyQL+I3SVys2|UG0TsAoeUtCK4N65?|D1JY!iIgq>sJ=DMe+-!S_sDN_4PG5MuO* zF=l`bAjCK(QJdOe?0(*anJmrpL)ojfYcHOEia*t-Eiz>q;2c)b|GI?Z)BJrYB8(#m zFneQMnWI%18T!c_ULsu&m1(<|H5<Kl&^RZyc`CNxo4iu~N=qw4m@SW?zJaxSOtdAr z=842CK)L`$mcW;RH~kQ|z7aZ_e|7L<>8s;Xq165GNJG!U?ta^wN9&9i!uC^r{2_2L zW&ikKKU~7N>s$R?cIWdr5ixVxfhQf{7;&K%*x21h*F+(NAJnJCOuZY*!WRw@OlL#) zX`M!ZX0BG%X{^(e58^@(lXBrQ<B7FUpA2(p#g00SRvKz^z!zc5ze}kbXaw9N!*D1F ziv1}>U1<2-dT{ReGy!{$={E#DBbYc(=>@b(U@|dIEuRb3Zy{Ju7p4^J7+rpQf;{|+ zCSr~lP%N}q!WP>1iVqA?Kt*+i_N=n@m-+cY-jeK>(1_jDeT#iaIX*CL6WlLf67I3k z+B%%sFN|5}`s{2`A5s_cH4<!O%7-P4Kb6#+`;~dkW)a&(qLdm!juj?}6Dgm3I(0fG zrcB(yLMg#~#b12lEk9%y#awE{vBsUBFD8Z1vF)VibSb*(vi$^+tt?+{Z9hCt=IlU7 z<<Dh<8ibKv@5_5Jph?ezS(rN=lLM`i%_t?HjWB<?&?$lSABn{%Bib(wjw*IyeSuy_ zoRyva@;sGImakdEax@{H0VRpimhI026^R#QYcJ5bcmS5t(eFN)`6+?4y3#jfxpL2< zpc7ccV_R1CkuBrKW>&c?uSPp5;WaqrIJ5L|{oGFlH5M!y`9p0QqAF#M^yl9mxbWw9 zzYmBp0ydapK4NlDVk1J13^$<A0EgzqeL%DQfZ$&_SO}Y>wI`$jq?xb-J`<5rme=;^ za*SrYOSR|*sS0=h+<XW(BL0S+mRv?q<LzM=KFFATBmsuY-n7+)H(&UbtL*wvJI7^x zB8*VjXV0i*uhchef`DEKfCeQc(O}Pm%f*FctD73<KEY1`vLjO+qkto#KU`gXwxo&v zeoVvf5;Ndk!$S@T*D``W<y#4l4xrEn*8z#4`#eAYf&YiZ)a%f$cG5e8j+76H{<>uB zH;bE3Cxea@kFBvS>%j9@u}uhitLBZ%xnC=dZyQC)@`ejbAx7pq;OuE<qyUT8v)<eo zdmf@2%AAIXuXI*erIpd97H~q)AFb-LTA}>AF3V3wH@>)-0!Y%Xmv+)xH7?LBPLmc- z5u6o)SgFv|XA(?B{UJEm(=omDnuVB7zx&oC{Le0bGISI8rHY*EiFkxd&I0TveFF`% z(Wk^(&E4QZr?&ds7b-rVkm<EVgi`v@UnwdgZqsR|jgzD*f$l;_cbEVmOSG4<rROUc z0vW+(1b{|VhbYGIohvot82YSz791-gg$yPTF`^2QmS1#fwy(kg#Dw8GU?|-_Hk>z% z@Beef@_*O1u|k^@>ih;Y<8KK<#x1NYGjgh-052QoIt#!qR0aAOXY9>T)2UDUTrM81 ze6}u)M~ha|D*$V#)(Ll%L`z@0jK+$%R2DtTU$omVgT4SP-xJjMKq@iPUw^R}z5w)m zvu^sKEXGAIR%Fd)_HE6Xy4%B~Z=pT}kW7y179VIy!K`xTz<J1xCub}r?4I`Pjnjol z-&V_Ca5K`^JaTKCEjn9U154%}-41Xe%NAxV!AufjEsO^&GeyiF6ctT0e92?MC@+#g zN|^Xcc?KKd-0$?K&em?&8lnboq57L%lyBGy%c3(+i8u)v{?Jhck`=qW`5b@;6Jkn> zWe*ir$`hF7a-mcLR8J);=0-0bsdMwSr>HO0vh^N!uVf?*p8KH&GKC=Z@H-+v3?TYB zlfi!YfCNxc!&p4P`6|tj<-I~Owex+w4=}eKd;VN2;f02sI%}#tm_GJwl)`JiSpPv3 zLLk4yGi0fdi9hUHa-yOLpswOy@aH?aFiXsLh+MOKr%slv-mBR4_pIL?62#o;BULTW zG?SR}(McH)d(rh$Us|2=KgpUFKtp+$KHm|FX*CV~UO-2{7hM+%5WqadJ2Hhn(7Drp zaWK&amk(kz3Iwd55fIQ)AykBi>CONabJp<;pvlBE=x6%~vHj=%<pa~#2znTiBpFy9 z>3gL30RPAnsqtu*Wf^eNkDNU9#XWd|t?8Q0598`%iL$Nh&_LV&aMK9;;bTHW<?M1& zKOMjG)f={)PxCfWrvbPB$hi}YOY4lUB!2ed*jL^bf@~Ay1Br(p9o|ZHRe9u6Lb}N# zN&vz8;li?Y(t9QWHq_h=uKANl841u`o#nXWaSqW>IQ|QjKMs7_8(9CT>+vawr`L|5 zY^-R1lkt)?e@Fju%`qAG_TU@q{tYCxG?JQt;QfL54FT7Wm<3L|4!tdgpHBHby$BYG zdfq~diSB;+S3&B>=nh$umnG1v&aO869JSZ%yfDPYP=w0HGCqY2`ZJEuap;V%nO&Z& z9Op3jX&bM(Cx|QzeQt^op*|81fc5b^AYie7GCm5b0P$r?vNme~)7$-Et$R$_mh&J6 zNF)95{{K^rE1<3T!H5~@pNOh=!N+2mS*gHxmyQ{J?U~TK##7J+>NJ|@V~PTKWDk9^ zt5C`<#$Vygc)_!dH$!*z$gaYP*#}Zv{eQ^%6O>$vGVTWhM=slytdKj#tlPg%A_xkK z-TboF9J$g!GNz1($N%A|w!n>n5HO<r%t%~`X=g{bzts<4l?fwR>kFkm6^dP@FTMDq zO&Y`HQe1b>w)llg<o8=Y<GHa3_{!rJcempx?B0QYZs&037hjuSv%l{)N}5VEIF_kp zk!u*5pRC}+aJi!Vf0?Lb*B9_omxD#IBtPX#P(GgeSYuGd3}`1kqBKS+tT(*aZj(O> zi-EAN4*t)broVNgNQ0pb9R}%0mGk;1?L+gxJPkjCWEdtS@go0BziQRO+($o})9t^w zv&OrWpf3wNr<(4Au%~k1BF&4IpJ#cuK-DpwHN@_Am(Tyib7lbk0vr+Tu2Oa5xb1JD zCH)930+Q}}7mv|iv(%Rw`TRo-n!fJbZQm$iO_Z}KKN%V{c&wJzcp>9D7L<v8)>qLl zxqpj(y)9AOfFT2dZ@|nQllC736aTl2|MmP$MC>8amD;U$-<F-CfKBq_G6N6b_%^QL z|KLUZxosA@UD-t$><!8SDQ1%3cJYaU|1-e90Z0w>6l4nG1Bn9vH-JAOkN`*ognQ)2 z|BsXN1624g!~DN=@*g~30iC~mg68sxyQa8`j}w3}GCP6r%}%g7flk~ZW_3D&R}Z}7 z;nNU`Jt6_&MOlGP3Z6LCPYA-p{hf9If!>{@>SqMbJxote2R{DZ5p_Q=uK6TxihuBV z^egZ??(^&h(D|J33C@0e5I&wzKLO|j{vBfA^8_A#J?;|^AApIcp9F-DyM4gX*tY)+ z4yc3i#UfDlzm4(_H2)8<_=oW0sB#4V5jH0e|9C+i%5CgG)BiTGf1f!+Lqj;S0yF*Z zNB^(TBKV2OA8h&G=luoC4@?vPZA|~)vgH{5A5!!G2O|V2azX#Yi2t~{`iBesSfc)g z74bie0QAFu2i5dHjQAf${I%=x)5iUejreD7<Np}zpDykHPc~xX-*)Q$yST3>elG1F zUOCQN#l<iGs_6!T_}d^8;4It=7kvMEwQ$v5tir3rMdknSMGiW-Yz6cvJb8K<Hv-Xb zmkWpi-%s8m0^SMgSb%rJ6S(0H0RV}C@ZJSv47^)`xIng`Cm=9zY!Cc9fE<DExNw&m z#Il0B)SwpVZwP!+EaQd-T8=IY7?s6c79hRGm&X0Anl_x01zb}qck&Qa0kq>{6*nE+ zTt9A*Rsgj9P0zo*ECBBwaH{RmWdW@U4Kcv!r)(9p>_H$BYTW+`P+Y<Vpz$R5mhvqS zs36pR_dx{k{gSbQnlcFF$_7B@0|IRWk>T?h5XcdTCT9&nATeMd8ps=iCVAl6hx12Q z4Ghm$d%Zo|m%OyQ5NrBDO>i`B5|QJp;PVRXLK1soqDkvS%c+%`PgS>K380F396Rjy z`n}UAbj6lB;jE^eUkSJ=*6OuenC!dV7;CQR+m>H>O>>zw*5$LV4?c`~>icao33f|` zhgotTg=JMXca1k6YHDg|9xi4s9(Y>CXX#ZrEeyN4dd*dB=3O_CU?jT6TJ!xd;W3pb zNcC-F)_c6?MuAz^Kc9H{MOB74Q{Q(b43C*ABnfmj?SO@SkA)UosFxFV9mM|Lc*Q^{ zL$LI1nH`BvuLz|o-aVPFhoIAVYBPJBmt~0W=6gJ_RG4G|nTfGb8afm&_JFA&Jn!L= zdLwuO$=6jua;L7|ZAhm(=rrkhYZlnT>ihb7_|@>9akfW(-5a9YqU!Is)kJ0^#Ar@{ z%<!h_dzv4h+TUBF8RRYzPZJZW3tv8|{A7uhInDf@)=8A?U4cm!lX8VGaW=!L_x(Ra z2xZ}4e-|&tOSTeh_MGZa<7NN5N%(rd&P~v`@k!I018@4$uD_Z)&$h|L>{aahI<N*q zVXiI6CDcfz^>|V>UYFuj!=>A!X-FfcP~bGt%Ca}=wbKiO>t6V}zWl6x9@%Z4ce9fe z*O$*boWIW8XfN^k(Poj*fH0xm$Xwkh4NUsLk6Dl0K{wKX1^;llM)dMVfPe$!`@6;7 z+Qz&CwZQtc>b$nA=7Ki96yz2o8i#IEB|7?bG~Fc8+(PblCqQdgA4(SoomoM)*v_a^ zCNPd1dg&8<+fL?5EtMSDHaGbOrsQJrC1e)AP5_#&loh|$cy48-=@a5g*#ZIPo?lRi zp8S4NT|pWDxA=X#QB815-T~EHGa1y`%R6uSl#Fd$=_FH{DP`cd-MuFK!F*T_niINo zNzV=hKriK+ZZx0Jt^8sby4OZ9{ebv|N^$D|*!^Svp}4Z%)TOnpWL1-0R<qOBo_}V2 zX?BXOSGnOC%L>z_OM+(O)X!$n?|W(BtEhp4sj`Sw;SEm)%e2X9kgD@cQNop5>2toR zrNFc;0H$@8v)%(=PQ;86focsZ+P%1*XXi5lb-~Yex$k*2Fd;)T9ONu0<-!{TPoHJu z(~q#lo1LtF=+CG6{r%P!tD6_Q_?3>(C!;;e(Mkwn{-v9@Sbbd*6{G16)-vrJ8=6)W z%P$Z-k2R<$PdAn~{-#Ykrh5{(U%QpzMcGq1lsBvaqNx0Q^5KiyQ>o9nL6X<scQ@)m zR=aFYOn(mP?@ks?bK{^c$gVvpcj6&&MCr`Xmhi1PdE!jsW}aKUrn<o_bms(W?VgPm z(uSM}hBYW$pnTB`Vyq<T6gU@N!$2+LBx*sy^0}LKdg$D_q@b5C1A{0i%_z<21anvX z3<wsXCyiE1MKWzByks{Y>C@Gik_Rm*^Yzp)-Fd@d(T$OB-V|Xc?}mnI+#<flkfi%b zv*xX?UcZ>^gJm@OmCXnf!MmLTXo#JTfM@wh>BD`Kx#`QcFK<tt^(saYe(M;~7cKJ? z^?iQkW&lOVE}Gz-Lr&wOe)Qhw>d2`#7>HUmb~5pV^1g+-^z$u}7i;1i=_+T!lHLwS zN%-EKy~tX1=aTPh&R6n&PN(WFb;&Ka(?0;o+^l-3>Hp$ORno-;opBwS@H_pjADi_8 z02TN8voL5X3fVlVpkiUH2*nZ_ZHt+Ys-3;>7+#sc^pSJ8(miqNOS<Rxt><otU`k@< zMn9hSG^wR02G<g{x`mmSC|>Jsrp>E$`>jmp+RuqopWdv`2MI1JcMB7jb<;WBkD`>j zzxu!`P)JnR)vWAsO;?V6jZnC6RiT5alRT(#lZcb~jMo)oNxKL$9TD>{cr!hGEFG^M zI%vu75og{i4%%8x^H(gj?IXWhzEoA<b{_vzE0Mv4u6s&@>FTqUD;L|Yz6W*X8gP&5 zOrR!CS<fXT&Tgc~USa#9cNj950dg_Ex&1oA`)x7I%5G@WIDG!WS9;!>kei_Pl~FZw zC6BNdZ}pX$E{CKmhq}@7_2Ce;VHKZ=(mSKw%Os;f2h-2qgP^PKJy<r-KOC3dHy%y9 zz}?hS;tf=v`6+wi-`Jd3qKij5b|nVq$78Og4wvsp%bx0~jvV^L7TI;_z?(&=p?Emr ztFc*G!F93zp$I{|$mG!|;u;}J*-K<(_UMik3Q>mQevatZbeIT|t<{qLPc8jdbD4dS z$(yx-=!0uBncPj!&C}6gD;6RzufDzd-g7Ihz72Nw?!>{S`d9ij^Js?(OQi>Mso3}} zI$n7w2T{ShCXXw0G9EcC%d()`U=?>wyS~BM9`E7t$E;iZFSqocs*T+~?{;m-T5T|o zS_Y92#yp*Bn|ukh=fZQ4+Sg}51}ay(Vlc|?;LewqD#*I3F9K4f8jgz5^tP9_v2-81 z@w~Zu>5iu$O$2!wQ`jqCH+9N})cO^IxTi9j)SJT@fiK1eQ%lnZS$ngVT38Oejk;xa z3rA_<oQd9%T1U%&w&qbhZ4ufbq}RcTr`D^xb5@(dTY%~`Sm`?D&D%G7eWCm*3U1Fh z-_1S8lLOtG$lE_<t#hac3TNUWhA(rUWm|5KRRBletyC-%rEg19fmD|?*_Eo_z6BJ$ z^S+4DE4!o|#d9+cJ1G^H*gysF7WhT4TkSDVc>+EKyLDH8Cw~fi-PUq7{)$o_6NRRf zN>-;Iha;ZnrRyi>$+OB?q>}tWmoB|+rcoLersXR%wJ}`U1>x<suyptgZ1IGeKe$bu z;;=q&mHMV$@7f>%>Vhga`(FLCZ=JKn{rJzNqNdZ7wo_>5_@w+fXN*rps>Sa_%I;^T zb1~b=pNy^!w#C-S3%cD$m{ZBToOCCZxfzyz(x&PTE$Th!Lq3ETDoF60;-#lP5h!rx z)*BhR8_Xy%Qqla|sSaVcJ#Wy1{0S+}MN1_qMAHIxje2(ty<8GMn-Z8wbr$V<b$6Fx zKWvHes#|X1lk-%W+%@YTFB^$?hf?+|ur)*qb|YdPX4Kglb(Wc(o=(1hIj(-_Xz)V8 zgVx!e8l)Td0l%3?H#0tmW>?ZOeN2QH6t3qn*ayy2Jdu2x;Js^VQCq_EmtqwJH53_N zwrsY9YMj*fh1wgVL#FgOMAsLZ%Gg2}K*l?Fx6_`UCRZk2;a|}!Psfgvve6|l(kDIZ zb9B5Gb)N-7_<E`T{#JoP>SAvZ;8yUv#vgp`r%<mwOXe;o9GbPRCI_n2P53MoNzZ*d zFZgth1oft4;7*Xyxcvhfar)hcQ<Y_zm8lPVaz%+JSzkhYDyrU8d;3zTJmdDxN0i@i zdO-Bh(P%H?OKxG6S`0&pgPF|k?7Be=b+>o&)|6L>=iYX)WgZ@PEQBh_X$Fr9dwGne z%{f&bBsiRO?dny?ce$jCZq%7I$|fJ5Z7_CRTTwY98RbiXw>OF+2@oc#DSNQHm2W&C zbi?6v5|fIsZ8vf*wF)-_>4Nt1w?&dqCH&!6%E%be%MGn}ydH9k3BJ5HE|<=WdGqq> z=fOcf+bzJy;0!Y}oidqWtNSV%>vA&sO@iV3=K|!}EfLge4HBPS$0{5LFtghSHcNg} zck+bTLnS^(L0DwT)@cZyw{^970j}5s)a2w{wriHECq`KuZFQgE1L~4W4K>I~WpFP_ zIl+<h&b>HVS=6AY7CXBX4e|R$B-mIpo-vLKO-jiZ6c_j8YUt@Z#9WSYDWGr%jfjQ@ z%2`3s$E~6mbN<ucb8}M7=o3tvPuHO@Gy4u)jE(Pomm-zrD02sYOEu3<6<B3?dhcHH zSzC$RKmd2jOuJp{No(XKiBBw50$c{CAf!!l{sd56(oPS&$v|0wx2q7~jrcq8I7Q-Q zIB=~>Canv4<l+0PFM}CXQ4AC)c$m(qX%eycIL*^2)B8Z5@cCD`pV0JXXD&^*?U}!X z*NWg>O^(dr#0_H-#3+Tjp!Uvn{hID|JZ83wQc`<E-eJf&So^SMo_Z}*_FcubOPbO< zkAoAWrb?6wuOgtpHO9&CK8k?#r*mSJa9G=m7hO^P&CSotg7Ybs5_Z0^*2Zj~1D;sh zG=!yAgh$^!?<We`tBzQuAi*;RWkk6I8rqiLso`=_6~+tXU-HinOOPTmoLsAbinvz` zmvm0ZJ?Wxne(Jx9VYcoq767I1jXW5W2)KFaT`PAv0GUv>wLZ^jbrkV6f%$~B(`tGW zanws8al|j*)+Nv}4y@Qcc#M@N{+=5(8h^!pJoo%P5QR)?alFv5ziY+SgjL|Dki|}a z<di_v#EOfk{rLVyW~%5z4UK{I@#eLM4_uf>e9tn3Rzq8>p9WJWHF7$tzo8yt&&rCk z5y~hnNo{{vYOEDl|B2-Lw>J$&kzC9UkjpBY7@HYVX|M=%<3?KRUDU%g$nxsl?rh3- z`fFuw9kQB;EOxy_xhYQOp{u$ZqTP;qrIF2L-z)WnQ!qE8vORZeOszkrs-M=Jvg520 zZ*$S--bNg}j8e0ccr;^WBTO(J^8{f0WiRC9Vjusah8ok%wBEdOZN-by>42v^W$6;p zGp9qZKSd^YbU!^E>Xz1#n&MlPx)c+T6B@aTAj3BKh8s4|SAffxEm(Y4AN4MFj#tm? zbH!J$B3>CQviatjXJyUCMZLUq5+rn?cs?fB@NRo?w4_A1U0f;k=c2Y$Q39b0f@-CV z9Z}$xz4F9p^XRu$8FxD+FJlYrcuu>;URJyj6j2gj!Z(Ay2JuxzO``%8qY@+Ti?)qj z*Civ2$OZErg5^4Ho1C7J<4(FbOpV}2YMG>%owenB@SgN7cJ0))i(Lt8uiZKvX+#Iv z+t@EF(oemne(>JE{M{q{$B$Mm`mogBWK62gwp_pWz$EEK!u_QE2;aq!MXoYfo5PEZ z#dclsD<o^-mFX4q?>Oo2u*MbDzZ#!ZWw${_y1kTCG(C)-qvT=+erC%4^qx0Kv$D~? zleZ~E74<S6eEr^`2`Vef^1iNEK4*MSZXEp``-^T01qg%6ix`^m_hh2yqKy@zTCN8& zJ4x7h%H0M;=<JX{MLhgk+g(^GCyCjq>+i2VRyMI18;lS5N-weZzu0^0pt`<4TkxX6 zEfCz@-5r8!a19XLgS#YXaCZo<0fJj_cehLM;O-9ZkY9JdZ%@D1RWtRbYW^6Cx^=mn zd-ge7*2mUfM=^tpjDNNCu<N@}Fj_PB#&+tji%dt{<JN~{Xy@IoVP2CD3$K$j(mlL2 z1jU2P9_pcAAWQsRP%O7tnDov$iU^G|FyKmaE-qDQaHLtEZaVzA-l1@DHubD80ALV9 z7YIyb(to`uuK@4<Ge%&AoV4Vf$J<$7@0m1lK5)R3_H3TEai3V}K5C9$n?iX>uP2Zx zh)HvWhMtZ&@fBS!a);$=K|unLg;1wZ8iiElm(G}MI?JHRHo@BFVXX*Q*|0KOpNA0G z=!h&LGY^WC8t9{j;CdIv08l~(R@Ax1;?R!8xt<uC-KY?7Vsw}a`<Dq~;i;^>wxZ2M zv~Y1YyeJ!AOTX3UoVJQYXZzV`eH}+amQ4^oDUr$Pz%KjpjdQKaQXEGJq_w8AK<(C6 z+pjDnX^%3o&f%#?tPeYqQXyLCfsJ)DqlCxkil_l?quZ8~bH5YZ>>0O4^THAxtiH84 zdmI(X!3`F2QkQIzDtAy|52Z`J6mEv39XW|i!RL5!kShZBzkPdMK4yuaOEo%-a4?2d zkkF#(wnzKuReHCYgf_^V(ZtQ4z>VtFC~n6Ml`>0H#KUxhldmwH@YbsWj`ZU@ZgurY zQ~miP-J>r|>sZjQP+UqNUVNCVzK6FB`CSL_XzPM5os#UKoH#D%mS0B;LAlYHYixm| zx36MNs_1pRddT56%P?J${VOaTnR2U0f++4XnM{TdDEz(^{8ArT_0~ziI1#EdPewQ0 z$6)?-iE00`C2u=Aw^ln9SMsgGl2eO<zzeVkaf2@~0l3Mng*OS@K*K1(O31KsWgjVn zGvfo%RJO#nFvyaRNcSN1lUo1$ezhGcM+<~nTPVFBfQ!gKr<s&{UsqLiPEZUDs~9q7 zt~hsTpWD-t>}<7>@LlMazUNSahEECY>0#*sM5I&FS|+M+>dmYtmu1{|-l<eCKe6OC z17Hj2gl3ahqZ|asrpSBnX@Gh0@wV5VAA2;*Eud>7CYhPs5B*_PXxi60>jXacmpas$ z`<U3)#hrI)G=fwpb&tXa*K*y(_M6l3Yl88IE3?`D3`&c3&RXl`p-0!EU$eC|_ugte zV!y~71oi2?nzhg*0?s9a^19GBARO^z)esa%H;wm!`wzOn^FR&aQ$wZ?0+vHgmq)2U zI7z(YXO1!1*QMfUFTz;gt-bypIe9W6%j?R(748|KsAAVD`;^w6GvCCF-mn4YT^;#W zB_^J=SQs2}iF|0$xBg8Df^qVE*KDsctYi}GA(kX3#nAPJRX+DmhcjO5cibTw3^qE| zyY-SmZl&7>v=V2Ze_)H<NJ>8=MFuBVEc^cHSqKYKc)7h4ykTthxV<r!o3|szL$3LJ z9wP#U$wkdx@Ui}P%_pO`2SF39u~whq&(GUuVC^h89uGTn+FROfW#rgFFt^tVo%XAj zS8i<=MPIt@A$BcLswAs_B#@y*rR|%(1BtZO6x@wTlv9>s3n5br2coT{p0L)9>uLPR zL<o!1<c8WRzo#AlbM7PttS!@;deIMmx;E17pid`~lB0!M27lw5)sruBgf2FuvlS*U zEmn`-a?i?%Ek%@Sdr!|#&mvw~%GQ<xYkDpAgHXb-h){yH?mQc<V*+>Fx@Y@)Si9S! zhIh*ZabVcpH^M~Vo8GdrN}ak-+l~?+-i^1Pjh%3ywm;47U-PTz+zp!5HY$`R>+U#e zgq3{!0WJiIfIUgKup8T+#Qh$ny$T<)qBIu<V+}b779Xdcflqy`&pi$)`d6%an-jrI z1OlwCJ6%+ZcF*UVIX(uzO7-s#=7g__A9v9}Fhe)?Pjj7bjTdp4?^yW-E=qZOFzgnG z3EH{nd-a%IZR1}|RGF_g>H-%w8xPf`)6_@SVkhh9`S^57Y-Q5KzW{FmjN5MD-zu;F zq1&h6;k4g++MsJT2&-m=4<elq{7t_EZ1c1ixcbOr%#Js|d2VcXi^NUEU4Y1aVj67_ zkQi5-oNiVy%>^UNb@hq)qg-gy#-aKi4rvjGwdgv4Twt?{S_^ACKEVvBeu|E<LA)xv zKC8Xs<t#s^-2hZ(pNB#c|5?p)@coW2X|}befo`RZRCIL2XgjaTJbRv{lcg?uu%_~b z=9p~k)%h6l*vjJ6VX-YJDw=ObuGwlxVOXC(qeiA?+wOMLSntOcDamcU-G&Lw?^ZDf zuRdV1^4)HGt+wqQAp8V|2ejPX>SNoQnZsGl`gE60PLI)Ql3GB2Vm333{OOKfVs7~K zr2klNX1~~0Ipd(<bc0hq-I&ol)$C~Wb52`9QV?3u$hygn38yZ%l&o_jWw;&xwQ$$T z<GPZ6F3lHWU#C&6c`eP0W)TvQp#_EapV3L+5aWV`8kLc&jbht^isVmws*wvku~+>? zrG5Pl*3GSs3UtFGe;V>0iazhIl+HDqzAX<$w$95HnD&YO6>W9)h#v`z#nN!dswXg0 zBE|=PM)c$_SuG~m*-+^}f=e*HTD58!^;@<2y4gy@1)~axj*M-tIhNhlPrzR*4je_* z)r}XcOHT70!OPalKns+OHguDQ(ZBd_a~PRd?=rVfR`1JShggX1`hr_3>KE_5{EgtX zR|w$}LyI$S#Wr?1EPZd&M@gqL?BuDjYRU6Z5%ppC68R*1DTrYj>FxIs`Vp-o7%8Um z50G1t2@{kF1N6=uAyGmtmcTOkC~&{hSA;TTjxXeSQkW~S#4^9sp-p=?8}4&W>!*R0 z|M|F{LC(bilfunmNXV=n^Kln*NY@2Hw>i0dVQJCk<8a*D$gt|>r>NN@%Fn`B3uB)7 zDvqVew6x}7#Ws_Xl{T0(IYwzzMc8<VD)@1$dt%jcLx+&0|K{cu!Uhalh%Fco+2bl4 z$1y=wz{Iu7tE`lU*yxD2J*6g!2~^l=$0>(@TFX+qena;u>6{LOK7&^Vj+6qi9R~@I zE$OFS1?%V}+p&tbLmps+V(>(*<ST+leppF-)8+z<3}$MaP*5P6)DuexPVivctdCSb znpF7^`I#PP<*DxK>k)4iV@ckBN@<GtDtiMsGP5HyZSQM$EsTv}vI_lCGRHG00%K&& z#xQ<etW#gK>5S*bcoPK))2-aGu$jYel?SgIqLN}oP5D~y1{ploJ53&XaMLiL>@7<^ zlU=v_6h6%ftiFBkQRdFGATHe-o}PQC(@^bqvi|*u*Vi*;E7rLdFj9cgNnJgDwVP*w zJy*`<hkKtyF_B+mEq74cLHWXI3FZGH;3EBNX#aX%`L1h`5P@iHS8$}ioSZslgq~DB zVCsqpDLKA|W}(#oftPhXB0_a0|Av=9%qH;VU`hD0Kf2bu`DD+XvS%YEBA7hg0KD4Z zS8T5!G`_X*>g36{{z4|g)o;no%S!|&<?~`{wd5L~4p{iMOt;2HWF8JB6dJ7Ih?KA! z>?0-AIwqDpPt(zcHOP&p-R>DpG%O;PlsD~NvSk0cn12t%jxh*LGe4Tn(a^jzEk`$X zh46%DMjS~3?==KXNdvQgsTb(s4lf?OlZcAJ!v=huEnulIIYg9iZ_x#uYp82PfF-3F z<3sG!%j!R@&`piYAlLjzbD5mH+cJLxPnuY4tI}W+y1p~=i3%!`$8~9^TC*UOY-=>! z2jfhfG~P1^bej~i^%Z?p>xz*$Q}5kgeVW@1BkIlqBH57lePX=3gh{s8#r9K8S^iXw zE?>A1FIY%Ux~YY=yxVTO?nhy{%8EdkcBFil8JCk$Qk)y_XVAeMDTXLbU?TnGd~$c2 zf<ox~iTMzP^y;wHx!_hWbUGVF51xpXkB7^{rRknBOz*jm-m;p6^8WHiQ&)FUptt|> zhq*YRA*^S+55bhfJEI_toBR3U<+hXgh1p4ZS6C2TsExSeiuqCa>ig4OB`?;=+0*>< z`TVrd{pmErb@O#{yT-efOU(#U0gW|n@1v<AKf)D1Q?s}9wU`_sV7g^AStHc|QRBr; zA|UFlem<K00fh*CIzSH3JUbU0iw@e|@2b$p!4=iT_up<>h4EKN$B-;v-{1ZzBK78e z38ZJgz|dqb^`^P`rz2&(y_CH@*`JA=KRNB5D9LzjR%&63h{xcds3?;WKM!2`lh!tx z*_(;H`D1>6{T8hYtgs48D;5j5Xpg2{sVd@JiV!CG6Iy#BPV>HMXG_P&5jfULGx3Tu zc#zFfaCgWgI1K6y&<^PGIyVohKN_kdjS~k)L=)SY&}nDm=|=V1=MVZ1gXqsV<>lY9 zx>r6ryHZ`-rmN*C!#T1T-#H>77wjg9QhZ(cNFW@g3@0xB%{0Jml`)OP#hIcuNv*Lf zbu=l5ds~D&4V`*9%8X6&6fc3Bd4p%c4BlCf(@!@StAV|SYWGlnSD7YoP9snZF2rFC zRBx~JKIO5F|EHs=7&<C}bc7`#PfUV{`1g9-?ljJCTNO+@`CUeV-6{Os5~q+5bEq;! zpBJIif<{@RJZ8}(l1-)=m13QsZl$-<90Sici!<xSrV6y0XYd*=-#QaEM^!K(A%Qx+ z!VHS&D}f6?<A8#LCuRa;(IX-ZkM-V@!OKyoE4xahEw&LNzN3h9OvNEfyn4Ec@8`5$ z`U-=CN2f@NglyCa`OK)sWW}<3Te1k5<5gxUrF9Tz_W80{Jg~4ZP#qx%1Ijp^%jn5- zK-X^s%8`&zdG@`uHNB)H8eDc0ujy)=P;DKh=ZhHW<(1KvY;B#9At(n865@w8l)h3_ zAH?pF0@C&oIB0A5Eg5+7ORHBr!u(|HR2lBK>=Jl-&BBo{dhJ9|P&~c_<>iANO-?zM zIP412xHtp0!PK-|Fm3PE@bT$C45@06OypeT=mlcR%_0%thwHZx^fiyvh~=;H9dqnW z5?KiM6e^(HKsh^W^<N`tRP@x_!iBtjW=8XW8l&hJ(8Wjq<8E+HsO5}ke{~ajG+EI+ z(0=!yq5yQ2#(Z_M{%{9XDVm=2mBOTJU2*2ejfTu{v+)*DBTMNMu5;|Fmm~J0hHZ~o z2@i5LPO(C83++&a%kcdT%9G9b*>pEUG_+Gv_S4)%g$w<~Qs%iNjb)&_=mz9J9RE_e zB^t|oF?8=m{H;hWUrbzP1jMD*3Ari9B#C1%m8`cbrGkN)^6Z~1KT}yZW|zCrk_y6T zY~K$EAvdi+#w^E+++=@u`QU0t=%#!<j~^ZY>$nhKXBT%(pEto;qColr?u>7TY=Q%B z`Yo|@&cFw#ivdxN{qNk<#8xI>(1AQ$KE?zGbif2mVCjG+9V{jsZ>g>4K|T{2(c2u! z0}HoxCs%hTX3~U)p~6#F77X-mYAKW~9R911?$4t+ScvIKwY9L2VRHAfg<NXx+lPfe zKRQD|h$v<Cwk|)7+aI%T?5cWJ!;F<(-sWq6xDy^p6Kt09y~^O#K6~7rc_T->;`3i) z3gVTgbXDS?pAj7G(a|SKF9(mMzj(DgKnVP7GI$$9Y+u@-By^b?0}ejdplG`hy!Af4 zn^?|d8cKey=bYg1y02(wuBdN44PSj;ezNt^CzR7k3s7$NnVx@WPCB~X3&W0XOAhH$ z*BIWtxML{8NRIhkAp%1}0uBB7WZTzxI#2f=K>aVO>gt?WdHYpl>a@OqiLBo0fw#ch zaOl}wsHW8aG5*{hD>r^bw_!w%UUgOy0L%<#OUvLxL>0`YpSOkhC%T>&fMX;{)>ZXo zn8sL}>uc2H(6m3ej#22_ZxhtP^fy#>qr0gbm}9=j%@qgD$J$tvN0pc)`FQIKx}7%5 zX`gMXAtL)#A(NS4vg8^L>WKX!c%2g1%{OwC1u*f1o#Fi38|K@6`2Dr44-&gWHuqMC z1-u<iCPzt2Z2f&t{{|Dy_oeFeW=xuxrhub)@~C)mIv7h_yQ+~GX}F%7D7bxAPu=3> zSS`CJJN3g)l7L(}_*RXx;-JrMqlY?qGu|teyNOtCze2)itBN6nD)6{`+vAY+@z_nP zj&6O0qQ)G*Z1w5!`_$3BFf!_9=bNC4XktER(|IP))f<!<WMp`K>}H~a!%KYodgqO` zZ&m!*Trw@!!_gtvK4+z_dzHE`3x210;vh_#)%GjhH%bw_T#eh?D)rGq@dXzOu9dv5 z)g|#MnnzMH*u?6~!c>Xf60;1kqZ;F%ea-G-!DhwDIj-+I!<Y7F>}W={s{?t6(tudm zq1xGz=6H8<t;c-t(^E+ku5JTeDR^Q|gPRSq0~=*NGJ>YGw79e#cnJ2uk>a}QNl^PT zo7}aGtSuA?baRLo77ge%$^+uzh*ZurIVbjgJE;-Iyn^LgXbroT)ZHERY?|t6Y*6iB z+e#rQ4KjXGZ(ML0OQfEP6EU?`FSC)q*Li!&7fXeNY`Q34{%8{L@jUBn*Si9}(gl|& zH>3a~^yraupov0Uv09HT@}rJ(4zRH46Ia7~E0ai|lz)XzgN1Ha>SbiH15Hlo`qK|! zPtz7JZ)Y1|)j13Mrugo3)gOwjGa5=b`xVGDRwag_r&Q&PcyWvsSdAdI%^;#cSXV^k z>9QGCr8L7ohr(|~f^-`;l5|h^%TDh;FS~$#TB(0>86$uWs0^HkTDYwABeqEMxe7R# zeWr#|r~zIf9@k2WSj?kxOQ(|<)7}4|10<O!E%TkrLaOc#2n&|>?vWlK8SrM+TL~`| zi#=KRdX%Wd76`tkR39HlV*zY99Lndr5;UunkFqs&x#-yTy@NR2O?sAUxD@``B#f_q zF-EJ!7QdBELYjzJl!Q5A9KBxEuOenP-gkG=r}Omnw65dY{^?Kbyx*tAtM-@6qJ!q< z_obYnc3{lq+CeRaB3lpuKhFTzzGf17xtEJ+hEUs^wxw1N<JyorCZul%((|G#batjj zww7bC7N)fl3ReXLF-q7Krh@*AUZi^=*|Li{GL}UY*)Yu>4pSTJ=gUnKWUb}^I2!96 z)5VqbOlbDSpX|gQ>Zkj2q~ovAiTY&J_PWg?`UvynKl4IhZf!i#{`w^Xt!CHh3a!OJ zlV~>W6a<p@D(fJD#pOJjZ(}l)hz)<-H=@uPSeG|VYBZbG``1;TcY%DVd~3Z7Fw@XG z0GwF)Uqx!oKs$ftZ19AV3rAbaM@o(=ek5Ifnu&(X7743C5vXa}$r*h*?*nx^8bnCm z@dN2_$uKG#vmpNa%jWfXa%LhQ`%Tq1TkO=t`gLQI4ZO`9Eer0pzb*FB(88KXBGOl! zAwZKBGbhoKd5?szwji~Z(aVS(4mtq<iR*yt5!M<^Mk{=O5B8^*M|88><s!-ZybmwG zQaL^YhDAD79-o#oM=}uaY4J(&_HXkvHZUFBpWXrqeypxI%9(nbI$H&N#4kX-=Yo&@ z_<ntPhx~Tlj}Y5i42?7p6Bh_1hH8;Jtdkx(;Q>wVR`uGS`UKuEAQT6RZ?EMc^&DGx zBOo)VA}hPdOG`{|^9%svg7YvVk3*O3>TH>+>#wbMI~LT6`R~21W<Qzv9)W+m@;bqm zX%;QHJKu)PZ~*~|yhl1awW-T2oz3D`p9hS};Kgdnraiaz?yexahasMaYop<JJ)098 zJLF7yp^Um14rAYyev!1$08PcM+r*r-@jCT6Y)(;DDlY-KPPuc}ZKUlHnO`egUaN9o zX3G?$aHnM#9;d!V8{6fua^1H|bKH+f>nkRqRh0?FJ`XCFCzqC>iQ4yyBa#y&I6YGZ zJPu@(-NE14SD2e!ZO>`0Yho<$zKTKz@M7--pz@hSpoxWIZyh!5oUR3g_MhD!xL<37 zc8>w&NO+|}OZQ`55RV^GjX5=>-%ZP(W8hX(=<c$VE+Ry6KOG)yq|R0J9#m3CTc3n^ zU#T<bg&Lxb3x&HAj0>d?q!$_;Xk-XwE_?vX_SeJ^2!>r&<~WG&(*tSU5~}bLO1Wez z3fZB)!$lq^*vhuFTH0eK^VK%zCl{c!^!|Kn9ub=={^(fIOet&{TnGP#YLi$n><zIz z!^u+eX*O>r3~fYPYrkNY_zL@2DFr93{rOe~wW8sX&JUfSAVgNL`hZacSch$-ucE&l z5sAE6EGMg*TI8%|C-byg@haQx2vgbR($q@cQpY*e+sN?tfa`dC@H!1uT9cT1f%bxQ zTlsQK_QtxDF9qym`8{WNcc6C<_D}5s2F!h`=wuj&mTuZY*v&DTDUT+NqbVhS=I7&9 zmVK<FV-<gIwNzF~)j}EBL{X+m&4*QRdbkv#UWO62aY3mP&l<UysM|nwd9`TnFw6)~ z`nwvYOk=(0TMub-OT0|EPS8PxoQb$(%)R*^g~FI)hCii+l#ky@fv008vyn?q18}NU zhwyMsIlSMrqsOPo>r`!%5iT-K0@_sAZB_<B+`Ujt7W=Kp`xVE+^p#T7(b`wGAEVtK z*1(sr8*2c?ziT(j^xlpqnr#RHahE>?Z)?8S5O-y88+Q&Y&6N*&q(qq;^_(0l%JgHf z<J1!Alon3<q)DzD{+?El4gSS82{>;eZ~XlsNezB5MlkO}uCt<BscC)sA*&L9uEB{T z$(Y%brVZF^m>TnIo0|k=b^7K339?VOe+Gc$V$llX@O&zhrKJlHOh=M{^hH1u@$<Jg zt~bK%P5q(W++d(@T~y`9GZNw{#=nm{X_%Zf^4t#fc50gazUppiuuHT@q6u8hxHsJE zZi&vo(XINqN8Iq52A&4;ZAn7E9=MByikIb{Lqm7b?oEi3Iso4gM6~d`5`F-6=$6E~ zKRKTt_Fak@`gG-eX~LE&VZnQ=k1GOwKnowe4q1^<xf%4qF_jz7fXDdih5Nbr=^D)2 z%ITPulzN)WIT_4X6AJ5}ZA{+$`te!FvQW--kU3q9l*HeQ`vyOqXnD%Mhc>#Sq;&uG z+DU)D#$LDeH-c9^9j$%>H(PH6u^^xCWie(`hBFfeI{tUQg(i#ZxFqfKogW}&Oi;M} z{k@Nz{mSi3r}TR*-&3>Sl}2*&d<nIpwWl2>0T#~YxTBw7)@fqYD{a-a6Z36OV~2<^ zctOEkrWaqQ0Td3mLs_g-fB^kx7i@b<Sy841H@bg#jv?)hW!B;GU^gSKgb6fQJVHc{ zAl#+KCJ}ZFqq90skEOD3xU`i{pDlh&RYO~S2;=h)JOHazNgP#n*us7TBS`;_i`Ods zap$4I_n<fL<SARQ`(*WTv*Gc4SvTYpXDku7e4nL`7=u;p2Vn%}3cYA8a?Zqp15-<& zV%RW}A#pvD;mQ2lZQORRR^dxEVCaBeNQq>Yag#Y%AaiebVM&Am4e%G%4%z|fZBT?n z%)!i*ji)tW&a|Cf?-*D#C2hA8923<kLpEsa^KqQrjMuv|>=~u)w+T`KXC_lP14!sE zepmt#5EG{RISp)i)`uqdWpy>~%{%mU{(0&|8xUPT9HX6Qb8r|`*G9}L9bzbp1}=`i zFJ7CX+#F<cKi`hZA?UFs%uwccVz4jt$lba#**wnlc-#J{>FjdXV1ILSE%|Vto6ZGc zVPRc{j|;&vIqL$rqRE>BUZ8)=`JMs^P%1BGYiwhouJ~oaK6&U18pUq|_FeglI$KsX z)!+2A=SIoZW#}-+G8iBpt^sc(j=32MWb-nobeSb}u=;=vG&``6I(*=ldn0f^uU!Lr z&utraeMQN{?dfGqNGLWRR3SdS{|1(-Qh`uNPDdyDDf*P(?>0WK9yu~F`WJ6=enDM6 zqq{Hv&>-AaYMkMB(`3^CixFnd@JQB84&zV{=6>i{FK&A-DQDgwm9?!>4ut-yUAoT3 zcjrKHerxO8@6n+0F~rm^Qi4a%Z_VHD;kw6@g(p_Xkp$%7hwl$$dTT9S)5+koX)JA_ zmL7{B#ykhf?50$vU*!=?#045^BT!soYj>l9+lYP=GR{`CsY4VGF*XR)!;Ve_Xm!jc z@^h@ec2#!HN}X}_>*cY@08W7QA95PaN?*!fD~xG{cU|i;$-%c@VI~#Q^S$0SAFuGj z8=gJ(JlVeVUxfHM?L$GZa^OAh`3b$&WBeK~%}PA9xh7P)4|N&Q*~TQ#AhGj&86g!Y zz(R!XW=^P7=JEJYT-bS&;ger0POGb=_B_dX{l-<*Wq_(Ne-e|zFXG3M)bHMT#2qWE z6`Bv<)gHbhag4UzcLuJ#y7%+?^AmILP=g*@TV2S>fs68v4b3eLD^;|&k_Gc<0^X4G ze6BsL0Z_)Xzni=^M@3=0H#^;(J~#x!F4-=t3-&RQWFzjzw{rGns<5%(MczM6c4a1Q znu>CjD156|FU)?YmY8q0ex*40N1?6f&BVLFN|?FF7JcKE@~V}m=NtP6`<J6?={=hE zYHLl&X){tZW#5UF`+#c=>pa8#wUR$`jON>;moFDmDeG>;Urwd+o;}#}9<hGX0bY5` z5Xnraa-MLDu>CW%RwCfS6-LChfh7}o?7v+KzTj<5$#cDxHNv6~Q@QP3UOrGyO|i|z zq|SWw!<B`9SqW76oKA``q))5F6h30E-ju+tg5o*PK%=d@T|t~dsy|f9P;!f*f|K!D z%Ke+@eN71rN_S70GC;qQX4LRErBIU<*YUu|$}`z#sVfQY9nMc*IxVe_-5!i0GB{3( zi#zY30<JBdkNCIdnq%XiSE&C~Kaf81H_(gL9sdd4bSUEHRM4%V(y!P@MN-sluR8sd zTEFdUaBFiW=Y?CT2DE~f-i5{F_)P72@CG$M-}^CAOR8mp^G=k7q?=k}#l`d_3sXPU z+J|SSXQ(BxVsJSxor{Nvwb@c!fJ1Iq=SLkS_~tgT)hi<9TAadl@u%fRMPlLR7^i)! z0M~Z-`>CO&`l39aXzY(`lWqM^txA~fM5x4eTJ=9L$uxy|ilGCxqy2Wq24(%av|OLd z7TWZMs5@^P-^ZhJBv0-uW;x4fz{4)%&Baq=sgG_~A;Gpu_dH9bj8_`&xW0@X*{FA< z#;=HAHVQ%&WOnIhj6}aYviJu_nN}y(g1_<~7xR0t5y6q5H43niE%CqfMYc&(2wBf1 z67qjKI+{LiZ}<I-)=~QaA!4DkvCArA=xKeh6&pKz5+x$im(h4oLGN`v(3QG^c`iXV z<=(5K+ZWxAZf*N5wPz455g3MKE~dFjA>Un2I1&^%n$EQzpPOF$MhNz{1jo=9{@74v z?|P%V<+jsBcMA;xw2sSRmpps!+GPk4uEt4Z{M=|^ln%G;5g=+apun)UCw}R*-rh#- z6cIq9d1R(u;TU!k+6d2(Qz(b?)7cac!B1kczBNdSBo@?@?y7E!OU83s-s1P-0&b{B z-wlH0AeDh5#3$17NweZTv7bP*k$CsATXg$1_;OC8e@9J{ySxmaj}N%oyk=uYMmvcz zYbIUeaGeT3q?_Ms&e2WuX)XI?ret?BdMTW#!8-Y}y~X0DdCy5V4}VU<G_N3`USfpJ z2cVfy;=A3l*!bvO1q7UF*8~>oqlCPLMEiF8-Tl*JBscK)VpaD`&sz|1=C{i~*N3tM z#ilX9RO;&h1r8^05Mz+XEZ*6Jfk7c<qV8<dKK}-Se-m+g*y63eFdLHc@?d<`^>wpx z|LLMRaC!n%R@>1h;9nTc?~c6mT#@>8bOQ?qRo|wWaZI<>m~S0}_9f$BbM1Duer#TU z!gBdh(0g+{h~aVO?D`v9h~LMqEEl$D+}2jhx521ApVYc>6Gi*ev^eSNVvVF>Dd*ze zY7;xqSI*tAxYLJ!fH|l3Rn*wvF2v});>^`Rs8OPcd9`0l`rYdnQ^B>7_>lrMohDKZ zAKKaKEDyNx^cP*)pX(N_@7<0wTwk6X-Mrk~fK~b}(G9BrfvVY8?PVj}Mv2D0#|gpQ z!M^I+b<u{l6X<AKS`cvgMGf_Iorb_b&1VYiP32(QTcW20L)wPfWUdNg9at#UlF*;T zf!}`TEIVH7TsUgzHy<tK_fQ#1H=d6_Y{<~^NRADyIjwEz2QRTVzp0$x%pWMIU4vql zi6j=j1SjhA|EZH(t}<3xGp5&&7HuX#!7mklmOQsI20z^l!^xB*gj60b8qeAE)5C_) zCr0A;qqZjPR?i8=%f3a0#`wzZvA*HA@lDIiYvU^|Mr<1T@=s9<9dFU_y<Z=H;PcWt zADwG80$pEw;y|m`7EjF_(w*GBexLj?j(;eeCC5^1p5fCw=DzP1WF->}$p)`9mP#~K zXr}0h0V>IlF#S3@8#QLQU&N*(3On7df7rY!TK>*f-u-(z@tCIVRNLdj_hUz)HbdX# z3D!*={y8w2+Ye%bh`QPyyY|-Og(~MXOjKx->Z>=fk?$jr<_Y<^1Th_n55Kw8&LclH zTeLsMQ;#A$@4aWb!nCVgy{^rL#Rnh9V7~!6KGGWd<*m{TA^&z9I8o3`50idp8g-Pd zRQ=x4fPxHWe3#-fQ!t%Hx6|-x&2YIyb!?t#9d(Q8Or+y?C(qew_n8O@5nO)DE>Ngb znFgl57#=4j4u@xI#o@x_=bPnk&t)wqN%N&uOZJt1_m+!-Sj$!7*9^0S{Dsf~!C>6T z5~Soj1JI{T`oeMB%oWTqms+`Wbw5Mp4*@RX{SnV)yM@SYZc3C?Dk#4aEGErH&oc$_ zt?i@hYNZnucmvaTdH~SffAcYJjD#qS({^z=STlYx-Tii5OK$jbZVp&JkNj?P?YFsp zJBs99-^#og<EGY|eDgADEw4kv@M=dEe)ye9IH6|Q)S1@kZkI;5)EW>WBI>s|-qzjQ zDh<<PSvLLYZ$$X^1`_BjpV$H5qzSS0Gg*@6Rf8L0q;pfBMhLH3y@q1=4kQL2@8D|+ zEUT#nB6XWZ@q`R0;vB}JMzZ`K6y<Kr(4Ue3Abd<b5cMwb#V0K>Kx?aKr0L^$z=ygf z!qb_brF>r~Y^|ikC~C=WU{&afB+$QnfQmGS{G{W0fECwjd9zCF^LTc<nzW=cFvwYb z7J0k^Jhy=f^qk3m@ZDF3>$vX`?`15rn%Hrp?E&cj55hbadf5@}XTh}tk{S8ug3mnu z!7V2h{H_c{aPk6=KWD@)4rQBKm@zDO8^!7LYERC9-Uf^)V4r$)baPwW2Fk*Q*FOuO zrPMp*9maEDWDp^w7D$h=vThS7I4@(PF0)L!d{?VH<6bHD+bg)oHi)Qe0FX8fI3s`( z0J5A-{Ge}fO=&54Jtg)Cw<p8Fn~xdwzIh|*cV7#A*Ccqa2GM%=6iA0TmH~uiZs%9& z6{e>|TM%TKs3O6%u~M;lgIEEv;)nPt;(QyzgWiSNqeS<Vu5e~UkTd#yMbgxT$u-__ z8^7zr5iVn4z-;JyyyHgl#qg|?pjgav0XF3k$vlxT3j1HI{%B$dZDE<0$pDyAT^|mT z2i^WrV1`jC{;7_hz<q*2<dqyGB5itl()Q)XFHvi5yyF_YraTS#4g;VcKHLDzktr-f ze(F@g4Rs!;xPNB_mp}ttWvHLgy)_clrOjrktwW<9)j9B-UwOl&|6&RLH+15^oZ^3! zxC0X~g%ZN$k$oQSnu%4!FI~@rcz|`qk1#*mDMrGXV+$qD0R6XQp6P^c0Vx)OCYH<` z_4Zo`8vZz0l;jf#aN<Jnv<+X2<|WV^U$P+y(MmC5M4LbP4zywN>yrpjiA5sFMZB^Z zvHT};sMU~N)zg0ic`P7<rF~8nsEnocF`Ozppi(pc7rN$*A&Uocv1NgfMhU7Y9B`eV z)az7+qp@p8cP@H2&lt!}BIKn9{j!uHB^yj+Pbh}_#82ywWviXfjkP&-1-%Huv1_H+ z+olUnc4^^DEZ;jO9IcE#DT83ZCKKYi_q0v`ohf}Zj#%7`fpls|dt+hrJ8znxgI5Oa z2hLTBBw#<yw)$pzjEa-JTl<-<1-?I!m#z5>_}l@S>~c}PiolaBrKfLFn9y&!6U*^c zU4><la^lL8O#4#~TPaL8iR&+M_=@P@ZJ|z0+)$B!Cv;bFpLlX&uMavhC-bnOJ9&qX zr-NCW4v&%rsp=vV@V@+ESprh7K-`Zi;wxv%o_m(W-OR1xeUaSYT_{(Y(VF1!wl_>h z+5t;Z-s(4SWW=dC*A0zqDH;ag4pc}+vA-YDF~v<9F7|c}V(+SvFBRZol3V`tog!5% zKg6pq-wE(<*>uaCzu<~j%k;<e37}}|;j*`|UX(s2k#3hqvBJ|roqNQ&22HCH>j9%; zvR|du&Bo8w!qya$uUj|}d#)b<X$1=(0eM;jFc)KUc?6>KfwBBM-XhS>Fjo6{@kfI3 zQOhZRJ?SiUZkn%^FsB@Ur@x~ykl*3J<6I_OyNzYdV_<52ohC?Pk#L;%HP*t5eJU%` zN0a<4Jz^xU$x|0g-5tnxkfiy}pATON@c)wq|IZnl|An1;aAu<6MgJXS2_cVq%DJSK z%z87Q7F<46ZDfPH$}9cy0mwDIMdJ%Z<HIDm<1pRK89Fx_x-h#Jk7QtZoz7~IX(GyB zP~g<z2T1f;+Zjc|GXGWH3!;?#%cT(6jXyz{Fw(3WWc+($iIn!h6O$oSYLU;Mc)s>- zV!0cG97K>|%eM8rg^1}BfR%R^){OK0u&!t~jp8js`i!>o0Jn@HX@Z~%tTW97>1Cj$ zT-$2oTqH0cFTNZKzK8p{);f#lEb2tVz~rWmO|OO@{N^q&Cd?j3O~yOq3e??b{2^`G zc5@h?5_pI32m7UQS6xGPEN&TC8P6CU2#yT<d=Q02!xu0s1m79&u#4VEhP{>;`x<g= zK|qFQybH+K6JU;gDmp|_ssP_qhnU;HBaCM(DjOExAL$!oNcGSa6eG9`VH6A=E0Gmj zdQH!ZLrHm%TlUKPBI(nXbTlGeX*-YobTA#z@&))ICFs&9O@i&bIiFE&6s>gG@PG!K zT}y4+J|i&V)kUi1cHzF2MGAsC9oZ(5kiilIQZk9TElGA$D)Qy|^|3=@bidiDGRaj@ z><=oq)<v!Cb9{Ih(_<nAlf=duO3jE!Ya&tyd9Kl%ydOZi%>#jd!o0Kc_17<F-Xy;k zv6L~B(VA=k5`c(gwg+t313F{KPj}A#0hqYa5gD)SaAng7`B-w8Cus=I0BA{w+r=JW zetr8neswbg(2!qem_tPNJO%^mrB(g_+%Ce*j1={f7ZqU(D-d*|i3yb1DMK3|u37#? z+y7VQ?q4eR-<N+OHPAu-nS!(xDIxNYp!78f?a$mpI;*t$>_*Rh;q8R>x)i49^)#g< ztngQFWu@DG{!iQR@93^FTHHwjlo(XFc<S;Y6GY}YIB{k;M}4qw;Cdp)cc9Rs`}N5h zZ75&6BulF{Y)S%H(GB~TPQfAU5ot!}BV}f!94#W`zpImtIlKsxQ?{K=u15;lhsD!X z*}ogoIxl}VyM~d=UO)X)-Lg*pdKwMSZHr~SG+!yopBB-AJ-JFzVOv>-%>m$=ec#<U zSskJU7}UdB3SccE^yu@lA;>3nX-jA1mNh;>FH*_@`&ed+pBMQl*oVFue>X|m(BZ;j zCag}M+_lNaC(qYekA#@DJeS?681l%*AQZIw>L&)2M$qkzQWK26_pcL;GQ=>E;%-g1 zc@cT^sojY8Z8~(1Ym4P0I9kC29j1bzWR{w?jzK+~Paw_~7HJGSH7Z!eU=rWT_8Y}$ zlG=E-LU$Xj6z}y=lzxrhg{$Q6!d{Cl&Mv(XO6uf+YQ+CY7N|iUW>9cK7<efF2o+O0 zT|Wi`<PEHlT@^9@ZPU&_;p!iw{omN-5|7)F!4fHWXe~H^^ldy{0??sGkH0_wXc+h> z7@R-R>XFKyTr0sGRYd?0^{7`1K~^l;$}0lHob#Z0j=vw8N9K85xL(n`CNXGX{xbUh zLKiSR|78OKFzc+|tl)^il`uj>JAcSB-lLiQGLx_rhFNUKjW@eS3+%rk<t(yA_-RWc z;BInx`I$3gGJ{gf+1g?$O(Tm9ST8Ewy9-<#e84}6vyMyBoSJXepKT$wVz<hfiXQ)i z`=$o7!~b_@z)QV&o~2SM;0Tn60t8&48jtwGZ>79>=3Mrk78lnmV_c+{wMD;ul%%YS z`NkUlvf(xXzGh3t-^Q%r@&YRIn((s1xH;%Rjn{l()7`}=t6Uyp0M&MAVNw=YNi&!T zAku6a|Kc3gio$p-G_=(5kk|HP-cpz53}O!yW^!+M!hJ98a}jJ;4MzL=>XevTpQv-5 zJzMxxuWP8!Iy6-)&hao`lz9An1U9<F=uqP&Dj3u@g12)`3a0A^ooKOC%Z6T!U#ctv zUiLw=o3}1)?dXOo;gNnbk10I@FvR)Ww-jtB*#b(G4CVFkXEOOYk1!URc5<OxKf-CR z$(AN1Uk}ni&#f)NCGA3-<_kPicc(4s%;x+G_#zau>%5W!XL@Xi6t9>hYw66P06gnk z;o@sER)2JwBDKU0TcUXCc(6SZN#G0_c&94YIwcRZ(4djQh0Q%mMv;=KHVx2Viftt{ zAX`*vGeZC-Ya>lYh2^3}RsqLv#G?1F(;?qNb`3)%%uL^X?blRhp<ITTEct_~*$%Lc z4cL2f42*6b+y}yOql^!7)bz+1S))tZfBQqMH-qw9@0U&X((T%928e7PrDRQ3bNH3J z(|8Yq^2)F5PXY*jYQHXwdX5tQenA`pV2y(>hNkCz?ylQ2y_{S!X3o}Me*0R(S+0B` zQM&sNey7?qzd!W9_?>-Q36yPsDQv%uQ)wshw$)XRurzMb#tC%)Y8xU6%pNmuBdvnl zdVqnnG{>l#{hrKNU~3I;?WuvJkH#Jt9;?AtT9BHE%%i3R9J+(Ii%WTCHK{$YYy)S| z#6S}egt;0kW;y{y3;?kFX8`_p2nAAu6v)3=vo9sQyDJYWUi#`r>Ar^HOhZ?D;0AU% z0(8raZxQPOe%-g<J&Z-P8&7u@Zof~j+5$A%{Knli@unfQ39>E~V3WDy`3owDit7~T z^RnImpr-L3BBP=I7f}}Q3n1PD{V&bOPWV^NN2|Y@kFW2cp!MMXrTi%Qs{HtWOU37( zdXN7Uzk!B&f%9+<WtRd4{Xe{t|AUty2s``#Uj`tr`L99w|4?tZxI_GJC3K=G+6fvU z8(wv2{@b5d2_0YHh<}&Rf%}Jqjy&)=wCJm_4ov6k({ukRq4V#uIR^g_&M^Swd@KPu z9UG86AgN;jvIX8d0`DwAcEC~pJ5e1#qUW!uPM#YCAgU9=Dz?dstnx{I-r@1<(r@1v zkRR~*tEf&}?(5C`OH{`V`0T$N`CmnKAZGqUR3~bHup9XL|6x%b2-n~LCaUA(_RCb= z<GKc1QMAJ6<{5xH1cD@EEcW+@L53v5Q&o$gEWFizdzj`g9aC%pZ5+WG>;K^cIT>AU zsBG+)93+-4#ipmMwg<XZ;)maC-AE1t77<RXtIwIdZsS7MC%{t%$35q2R<7E5QqWZD z!M*wZA<$!OYr+b!qS&TcK{lZZ3^|yKxh)+yYN&8u07upTm>Oif{mfxz2bHaWt^l$< z4gix7fShIPFm#|M(84||z`%)IO!0u^>|tW|$w8NcAs~5PDbVLl6#s!dP>dCb1P_#* zn)<{s0tyBZ1b49@BL?G&LFCV2qR<W#_o&)lpD`}j&qC?AGrXBML8ZgWC#>!7*x!=y z8P$L?f~$f9zk%kU!6-DchRhD23d^5bJo2a9q*g1NUGJn;FOxVjZJrcS3gnS=$Ap6z zHKe2<0x18p;%m~1*_@Yf&Lg&Dd4YRa5nvFy7_`#L(}Fm&0|@&w2p%nuFI$c3_=5R< z{`=`q9qks!#eIs?{`)euGfvetf^yP9-Ud#%FZJ6idScCt{V9S!-L4TiX)Hk&P9~Uf zApeP<9D%SPWSXxDV(0@*w~!+0a-c8UpkNau!vzP>WiN<j3&Q{V@uXJj;>Gkxf>|~M z4h|%!#KodcP!{{=O#`OmPTuivw`OJTH`56LW^b9Kn&2o|In_^&D#2WQ5D}29hIj;q zcuA1{KTxlz=5%D{P`tEVya}eQV@wAiFE2@E(IEGrBfhM|8DDymK);88wS_GwMN0X~ zm1_TO8xseHw0KrIsV*~mInDXlYi&nUlUD_b%?b$$#cQ&mw|cthQ?|~>FvU3NIxLtz zEnbH}e}<5VD%nqOMao(YmYL3a37p63DU3VdKo)HCRZhsT%F8gae<%{2<%$<U%4!HA z>1?1UZAinJYKTh{fanA2NCu%zrDB*diM{oAzS;G7xTv{ueuwwx>(jfl<yI2+994nF zIg|jb@TWZoHNkvz8+_3St*`FNNG1NPfL2xt70UvpC|odH7-TtL@VoUahs!Hcg=~xj zBny8^tQo4JA@xs7*W}fpfKRa0Fq{*3En%^&g(IzfCV7=QCDG#239>lH`8tY3oM60F z?;UZ}XIc=O(a1^WT^j37qCzu*b@Y3jn;L%=!DHxbOc`NQd2Ba-H0D}En{olR$}c#^ z=SoSc4C13%-87#pd<~j-K)H=`NMTljsNS5R6v`m0derRVLQw4<2Iy&##oxi2(_fYg zIoq-c<c$jfXIY>NNf8Q>Pm1^6Wh?aVI{-yRj-jo8%+`?~8U2_p+T&p^1&gUNXzbp6 zy(Do!sF=6wPqL={8bKXKSrQ6@A%kF1FtYhZWL^?VO!y@y04luCEz0PMEFX_dv?ema zeJ#t<i_6vKp}?R7x}Y243#J_`tYrj}ENO%&c`a-*pxKf{kz`+u<O<FGkyn87Yk7pw z^O3#5SYlw5lGRk5Rtt)Y2+!FZVL`Q&7a=2(y8`}K4b)jf%QvAVF}to<pkh{7@JLj0 z=t|8V&Ky@ODCJwA42=p1cb(NJZh`$XLlZ2!p~q%8j{kdP$O%1=#SkT^1IAwq9u)iz z1g+ML>xls+@-{bg0y9i24M!p88#E{vq$~~MZFEDas#l=Z1#PX0rNb<?5<%+&>wK2O z$N|&KH*YQGtXwx*OUSS~N#1IWv(zZm2=={)9>2U3s1N?@x}mm<HbH-<oi>G~b;EZs zRHQQ~5D5(<%8sd#E;e3{p0R)m*45sTvJn>48yYC1gDFDr=2v0Zk@M%zpZgoL-ieRy zA!z&ji5k?ADYurlV@J7l==X6x0@o>N3F6pwF?R=<YU@}tQigu{kc}CmBW{f>Vuni^ z=)48PhS(;XdbhS@s}lUB5R@PjDdTji{vN-Jr9Y@(MizH48$=Ta$wK#{1WS@==}Y3T zRscF@LspnZ64+|`l?}%cL^jZgebE8@&i{$`4T;*WJAHnt&pi<`g==NmbX8WUr~17j zmiLjo%d?k$%=79bZ!LSnbukwLM+5}Rf((l50#STb5rH5*Z5vncIgmol{s|W!|F-XO zeOSqFc37FFJ2&);PzTH{(hv<vDlaEgDV``uwdecG@?}GV>j<;o;I2p~BZZ9R(K&si zVzlogy5U|t&*SG9T6uXCjUiQ4RS7Tso}3?C1v4_90Lby-ikopD8Co>-rg#e>D)WL> zaG)~BdnO5JQe_cJB}i#8{ex*}_x<_xKXV{S;)~#+bcB<EB(bq1N;yEedj6zx5DOEa z{7Dd8m1ta`5)?~z7z<P>Jk<IGl3~*(fZrV)a2)<>CLvn$l`r^{4xP_#oo<zHs!p{~ zN<HS3xu%W}zGXdRJR^?v`}u6b<MxZ9)#_And`wbj*Z!bmQI3_#(r4moZ%bFgvz2QA zzTB->DRDlU^$~Zz(`;{avar~-rS`k2!_O#Tew24}J<fPMmaY7wAeUz;;w~+tpqyuE zF9ouY%1iv1X5;Zwhe2o^)#pIrdsBV=0ef>DuZwFWN;q3V0mh#8le)3|(@j>uo+ZoI zEZ}JtF7qzd$LBG)v^t=Sd{qDXw79pkS27E4y(9OI2aVj`c}IR3%f|2{y5*99pMi2S z@6dFGAai32-|5hFTNHq4me)4K@aMn+1yYc}lYT&HOJngTdt=aThS(FapB_*tG}GZG zD*kAT<#Thf({;huIKy4Qwz*M7>~qy?@Yuj8-n*~tH(qbcKZTj<3hdU(*Q1k$mjU;s zc$&4;FQ<z6@Hr!XET601ov&=WM>TjE3Yp>{e7c55^|>bIzC<dBwAFCY6%ab&fRMoG z;%Ax8u#oTs6M)b=osE|~@i?idj^~3igH#QkSN!<)yT+riqm*<RP10F-2d!mdFE6v7 zX>1_mNZ|YBo{~%{&7_oG49i(9wcp80e~4)Gx1BC7h)2@l&%%~MuO7J$muZ1AWmu(7 zqbZ1B?Ze45lZTVgSB~BVrRjWa&|y>?HiWH)>LaLpi+aMOQT73IQ847qRr4p?F^?gC z4a6XX{J@jk<zUOEEb7F;xE^{^8;RhiQ=ejJSyG!kWe_%;?ixz1XxtY>X;bZbd3G!L z$qW9>D6?a+0KK29e5aW~D=^z$$_i+roah4#Bsj*iR!Ur7h^hrxO1`8bK&4~o7AJ66 ztos^AOw;J@!{sD-n%cYh(_HIZ?G>0h|L(0bL>O~VP%v*cQ4ju<DAO)H@Reb>nxWdp z_4bs>eWeg0u1AZ5((})LRC}u(mZ#3go#gH_^b|97tj|65rpYRJ4nR7a^<qvT1~+*b z+yi~%jwd11kVn!rM3+`I2X<N3n<|Ld<52|L4m%L`hv(8LsBqw|Z1ftTv5?Xf47s2O zgQ^*7aLU!_Hg&{JY3@?8qSVWHcv4`#Z1QAIe(<w^vrM9ZFQ#QQSOM23A|a*l1aE5b zL1fnjvpNtU_7A2+0-OBd3NT94<dZ~Y8<{%LdUN$OWJ>e2SU=Jw=DHSrtmKc1XJqMw zd0>QHg?ZqNGo+1&=8(Yb>^S`0bTME&|GaXs{;pF7ORKKD(D%B#Jo>TvLuE20qYA|M z<_AMs5*Z9TZO{gfVqD<oNt7j{nxmpVoOp_FT(t=l6vKE)l<u9?Hdy&aIG$PD`tdpk z96<-omeP&`Fr)<FO|Wrfgx2p3@imR^0^A?n;j8%xQSxV5SwsayV}~}L4`*E`r~xcz z+3ep~Ft@5#SBY!E*%k`X-PymFhKGD@-52&wn3Lr;$;p)=#eRwz5I|2Gb;+P7<Z4O& zs%bA$w-oGHN~O-oCN<qEUT)bKD9KiPuV>Av>a{mH*n`O+LQ%-M@h&`#ShQqp#5FUR zMgTGVoi_YbGZ!Q@*o1I50ZsedQ`gv~Piyi7`D->S=a^i9m`4W=xietHHxZfd?6;g2 zzc;pYAfr@E1QrDLf~p7Lb%7))zxv}!e6-$qoYNYcjSpN98Eo<=g~W0`^P_eOgVvKb zQrtDQ#?-0Y$6}2lYl<NBpJ`!|R`v4p;3(mr8y-cQDRrx@TS=RCs|+=hCJrooe9b>T zrpQaY2>YF33*QYkxBLFktLUk?+bSj5M7vg;<kOKIbH}ASW?R)}XMem&vu1K3SinS| zKsh~&e&JZuwg~*-@tFllTu~c=reK3-&LIO~Jz>~^+9E2FwZG=!enXMkj^kHW)&vs- zT(`p*uig-Dav({VNQ9}j!EF~YBkfmQ6Zn<$XV0H?l#!Y6Up@&J7QKD@g|*%yHf=$t z1Q01w(W5O8K@RkX#*?vv?utRhEH1RPl1&Wz;7}tpyEH#-!I7VkC>wNn)$j1TVzzjb z#mfkO@+;#)j_I9+&~P;kq=HI3MZ{)`u?8Q?aWnbT9^nnD{i4qC((^WVyT{t;P*p!s z%b6leZ+=3Fd}@Ney1xoA$z%xnjd1vcSXe-$V?K++I&MDIiD|L1=%j(9e|k`T;1a$& z_g$#1hm(_&+w@Ltt4(_#oPNgP0WZj;TG;)_>4BWI?d*?Ir*{)*-ke!&f0OZayB;od z_N-dzGps~i_~S&~bHXxDnPj%wj=L_Q_%<S(2gR`S_(Z9Xy4(@9_Fb<dPVFT4h%NVk zvEM~?1-}sY9yYcR%fR=d=0NJ?FvFu0#u|nHc)zT&`RXBER$QFnAi+>cNmz{lk8U1T zC-YtA@27ii;-|3g)90I2$D3`-b>3F`fI;x3^Nxi|l`VbLXi8F&vD08-SJEZH%Dnk( zn$kNu!Ezcns{LJj$Q$KzX9Eb;JVaZEPG7`R!_}56$P2;ZZPRbc=u#jOvP_xxVa-!U z<v*Oy9cNU%w|6vZd>kEm2czX9H<`{Vx~p<^thkMJe%h4D{FrpCZ$&tbI{QVp5p%Ng z@x5O(+UVJv{`M-TQ|46&bvk{IUQOZWvv@b8_Z9>$z4*#Z#$mp9sLZ<H`H!_GEJU{7 z`;t(g6t=!nLBoeaQoxWVOyO=IifwzsFV*K<1ta4N-A`8Xbb#xuBUz;}5{6m&@@a7b z4jkvzjg6HNk`m?R{Vyy$@ghuBRRdXvnl^cSe0+4QhpRhyLA5&J?-+;tzrQ^0ND+DD zZ}Jd7pJE#!k>+bL)Gr<7bfZ`+DJUo@smj(c@IN$xep=60w6(RlwzL}eqZlK}vbemR zKM<5l-e)-Az!MY{%(&1f!;<(=r-R%b!?Mkw3tN!Qd5^fj>j8Ithj^`Pf%x+l-|mGy z%|6a_3TKmN%w=BCeUy_tQ!&Kpa3vGhI5^n*jbVfg?IsUbA4?w`X&(Rx1<)Nh(>g_# zc){zpx3|Lj4lp2=Yw8pCH#?8T!_4FBXY?oD=1qFn0+q{l_{M$x{emRSkt3FELA4*H zEn}^fy2C}`f0X1u=1Uk(eP}qDipe<^(tw)N9L<bx@H?|T;oU^~9~@m}RFqv89l8Yx z=~8N7=<cqeL%N4fk<LLR1P73o&H)kWlJ1ZW>28qjhHu`FpR8HT;(6}fXWxDHK9?(0 zccUmn;pMDJqs*Y{Fq|~|LJ?XUO3qUAg(z^>xK1PZJQ3w{kl@m3%5dKtnS#$|bX>5L zN7;K2$jyngUU?yrxK}b@$Pi!L7s^|D2-e&9&YP~YKR+6z|1t$E#EdTRSqg7|Xs&2| zLLmj|3*}1&oc2ljeo#DXg*Ko4JK!XD>fsEykc~ZQ`Iot-2IaZDqbw45`nVaedJ!=_ zluChz{1<uYbbFsO=t^Mmm!o~VgnYnq0foFiwN?5_=+mlI8&3L3CqMk*2NlEC8SVg| zGEpeZ7?s8}eWu8dbx>qx|5mGXz`@Q9A#-F2uu8VHYoutZd>gc(F#O|4j$EEiG6T4h zO9R=)$fVflDOZ%Ax1F(P#hL5*UZ}C0cT4zDqgGx;MM|9ROe;eM9IjmbmfX2^u2))X zcOS{Nz4L6)J|MppA)s!GjFjbYAwcdR+k6NnW(0SVK|&@bv_|jjBm=smnA<$=qGz8^ zBk#94X+^e^bY^}TUi{QAyItC)F|68{_E|}rIRI2z^+vb9JTxo?R2a2AYCJ!mK>Z)j zgq|*^A|oPL;PwLRexg3dj}vigLbn^Ft7o6^O^T9aqPx~-Bp<thiw&FK-vyuWL$5y( zY4qIf=Df7sJh6xPemrk1&hkEP)L-(NHI4nOUaV6(J;`?^Hby4)c-n1rU^Db#N=@UJ zk=J@Uf5qMNji_57<V3~nJi)(pWoinNIyALO1O^U|Kgik`SE7lAxp*7kO92_-!;zf` zYM%`5^)dx+kB^Tx?v@94I&l6lNX}W6ypC}T%+cmT@B6O3%$P3|;ttsJ6v<NWuLkwa z?d{p87fnq~<uo3Pa7jt^f86AsEp)(^!p!4mQ6!6iahG+H74V{i8~23XudCuNtSza$ z1^;?w_-Q7(r%f@#S8F}GF1g_4Y!asotL3!$=JK*k0)loI2YoT1{MNCqBjj>;eCy@r zguV1QZ%);I-&L`4Hib79uo8PDDZ0(&?fV{j9wF##&}2E(iZ3@&!s%xiIGttFuGzU| zU1d?#b>HyP9dz;%dOIme>v4a7J?1LB@3s=uUu`oK`+@YOzxa9M%OK-*;`TGQNlVMq zy61K*D$2f9MWB(#wlND_wZWuu*^LwU@KuP$3b)ViP7VT74`X}euDV_hmsuxTy`KTL zzYKbyf7R&Ixsh+H4H7~&L|>5TA$yZ`ptp<HcYX4&mW%$5vMMNo9|cg4&}=3ak^xL& zkhfwW`IKK^8+`h4+{zS2DpAUUq0}|Ju~J&Eq?;@z38=^8+B>*zW=E?sBRr8L(|;QE zYnn_y8aTvECoe|c+CVV*HQPVu4@=Wi$(^&U2V?KhQo*cDajlQZH^Hap*S@)h@J}pn zS!)Ih-Fl=of1p>fyAUyuko7j#Hk4lNSfNU-38{B-J{}gI#1a0c7Q1PLD&3FGRa$nx zrxkl__7S_g_j%ku;Ap;#NNvp~s1ADYzF*ojyJ?bq?jn7*8A-Rpv6w1Sb8FfP1mv_l z-$x~Vd}U+lQ5tTPgqce6ReR98c>UfiB^-LHxZ3tF;Y`0}kHjwfu0@?0_4JvoBCtju zEd=ZGQWuLpv%5Yo={!g>c9TyHCmgYJ!@jXZTSal<BIazJ+$3pB6X>!g_kJa14k57T zqd4+5E(RL&<^JfPf3s-0T5%uxGVk_@tnnmPlT$4HbEzl`0R%Qd;gH_veq0m6#iyNM zGZgV}Dh?NyN&!vcDvFkW_#=G^1%zcvcz4>!sVoKwl@5@rS1KRga}`v^4;jA5oO(GN z69Iy7Xj>jzPoO6`-8UM6v&}T^JG2{B>x@Ap<PmSGiu#Ly;oP?9HdvVJY3%QeLvQIa z$rYlIoTLh~t`WN}_<aAx;pUnNB0AKXYIT%87!}D`CYbT^*f4i0csy@sMfg+|Fe2VS zebKUMcK7CS-s$BVFz~qB{9*7Nb3Ie65U`_pHK@0);T3(f!5s%9JZMf-Y>;hx(3h8K z6s%pZLsC>7IHgga<F8=Zgg1HiHnzRx@#k1j1!muU|8X6N%@8W%flY}gVB88f`{w;- zrbwBv7_`wkR6xSC^@D<1vWl`<AJ+>sy}Gg;({OqG@JZYF>ix{GaoNQoFdou~oadqJ z>i|nz_SvLs$=#ZcKq&8A^T`j}Fb=NO&kpH^fXUET)To|=^r{~$og0MYn3$N-4deAv z#NR|KU=+;kL#ALxO7y=;fb8L5sw~0-`oT}u*nKjVip^_k!k_<+$J^2iJ74`dxvwE^ z;%f4HFmHQ$l3lr#-^G7k95HC~-sT?*I0;yNm}!<&2ELa*y6yW*ympx)x=DkHR3{CR zn0?w2L50^4g~7O?A1Vz%G|<T!#N}r7BvfTceF#AQyiW+1dX0jD!lq9gYx2q1Ez5rw zUU2|XE8`!198S~-C1}}KbGu);bcGBHy7_OuJU|7XeVaANof;r;UHI%vsm~^@#IBkP zR)D|1KhEu_&$06%RqJKG%F6vr!-{r*{d~2JdC+D~`%SC)9gv;kb2beoz4y_IX$fMr zf}zltjbvqn_lqXL88yuExAPyuq;bbOm~@_|?`$)NDXz&?+E}e)unmbF1&=1(mgZLz z8DMWq<xqQ9`d75mC%jK560-N&)qpk(l0cwTr!aGfHY+U$B?K|N{-~*3mq~4k6M7d6 z*WIGl;vhAmKgWy(1Apq$fRF&u@~B85pdp6Tq{&Xk&qJI|EHZtaCwI5~vp3iE3iY>b z&?!Yp|1-sMJ#7SIOFj#KS=slbTBKeScR<<P+<bF@0TCYlI1W}~%LV>G+K#ZV{C29| zFLD@P<+wgz6Izo~r%8@Df-ZU9%-x`qW}RiX`+eVJ_JN!eI|og8K+oy|WY<XSE?Wb) zD3@Ze28zpFR&PgWCE3KDqubft9*cQG8q6B6C?#Fj<_|28UdvH_Em-EfNPV2xuKWct zI^)(4x_@?i8qm%0`I81Uf4L1PrF_}P?eA2Sqz-gX4ByOtx`y_nRLp8DU9Xp6a|R8y zl0HH1p4=o4Cn#SRR}KvTwDTy7`+53<R&uhNHj^2(`@;I>IorH{a@Vfkm{oD3u~NmE z`V7}(UnzM$=1t#TW4@6ZfQn|gzUjCTEI>(XyyU!SV=EwK-Oa6z!_CAv{}PM3KbPKB zEfO4!6i`?GP6s%vL+d+rCN6&a8DFeX_Sf=zg?wpWLmqXTxYSpKt!+q2Jk42i<9Vs5 z!728&>v0zPe|il!bDl3Zs@Ri?1WI+l8ZM2J{#U(YPY(yDi8+52`^h2iwEiA)W+hlw zk*cZS6Q>K&y;@ay&Y;F?eZG3}ebERGUGXUw3GUwL{hp1E{z>M_{N*Y|zx`e`(VaXK z>T9uhd087Ydf@tu^n8oI@?$=BaN}t8aYr!cB9q_zp?rFvTEFez`pSuEYSF$Nyydb* z|F9Z>W1puPf_8xaa!QH6a&r>9SvVg3Ddz(<WUkR;x76%vd9Pp4AccQg!oPREBFl`g zGRSFnQpNmc?KA#ypHrFF5c={bQq%L#8~C(r`hMbVIhZR+c3IH%aKQ7CdHbcH{!&8_ zk4%N)kjgBTyKQk|bnhF8f!E~(Vx28*M6Rf`^>;J!u7GgX9u`kct~c7PKi$#jst6-N zU{xj^$=ZD)u~-!v0@$$!_oyKUUGCo)qSkr$p>+}3Mmub%d?9opHY0e3wG+*V&H1v} z{%5P$ovH%lt6Wo7GjQ`{RHj$*t7)6_IbXX(thl&%!d??xTx=}tR0P|3MFtS6mPovk zk;H;9E*12kyVueDOdg6f|DfEux-20a`^))eu`(p~QQ@g@qp{e{z;vFcEr68W06rOU zbr?6+<5B*6Pyu~9D8rN0(49>}=UQH<h5SxfDDCIC<D(}qtT{5=gS{<McduNL6EE>) zZW{(kihji9dH?o}zAFK6oo0%I#)iWmE9w03BfI==l=?|@m(QyQ;@Gt>L#kSEZ`|vO zEQyzd2w?6&-h`xhnWu+7-x^5R>%NdQv|K8DA25Pxh(4Ap9HWRa)<H1N9eJxFiPQTq z9Z7m9crSPTs7~5~g3o$3{Z}u9*H-9Df(R(walEj8F+<&2xf#-11wC7>Gnsudv;<23 zwn9}-sC}ZtM5ccC+Fi$(J>;f7hFfHRF+1Kyn<Nlgrz52%94HoDkiJ^{Sk0{qcTtQz zUtTny6a6rDLsJy_I_JA0@A++hq7PQ?xS|!Z)aP!lSaGk8G+biLZZ6Ew2qhMH`3XZ* z*jmW+;^I(P;6@bluWZ63<;5cm8nU~{osMEo)8MmSXj>Wt)VE*U;yChim&3T;na4vG z4+4OM5u|K})PRuKJ1(O?AfE=!EyPa!AWxy5bvMYA#!PAAz{K+DX3OQ$#0<q1mw;I& zXn$U6o%J&1@a+g8h~1p?J{0<r|3f^@YT1#jLowUEkp^HRg|hW+C_Z`YD4#OG56J-f zRc`fZPY!2nZw;R(NqdrRh$r95S^-FsFKm|a6J(^rLhOCCG%TzU`BRI`;I+yWAA=TE zKf_S%jIb3Z{Ul$qwowX+55<vQtAV#}LQ@xb%JcX1@xj4?CsSTm-bY5vPz)c*7R&Cn za^`+=6t5o#O}J};ah8Ie=aCqC<-bV!R6F%7(d21cr2yCjNbgsW!AHKY8Q-pthn-Al zv2mfC_Hfs&W#<&k%TaV6%U=mU=S$Css$p`k(}jF-B9M2W4ACP2q|6Mns5=6zCJSH% zSh>=8-_gAykmUYg17eXdWth>{Y(gxt$N*o-#_8PQ36p>BvB?LH1DF&QzTEuke3#OY zX$!W*B(_w-0ias}zO&Fca^7_<HdsWK3p4f<EWWw{7iZ2r9O|6jK_3_T0@~{fi_ME$ zRb{7O^uRPzfaAR|AVuKhr(S7B5vbVzw*1eGmSW~*{madx`AX#2Q~vVLX%49LnTE#6 z-QWYqN?m}8n>lyvW|0cuLt-QN&Ttqv*A(DF;-Ag9twa`aT%Blk)#(<rc3ndILiZ~4 zBLV6j%qHtqq;`ygtVs2m9^aKLRu~{Wg{~<hjA>S=7X8bo8IRyK>_LDWupm}w<BL$N zlaV7aRTIqU3s$`La}x;&f(!e@!xG-PvSL-mQZ@V~Tu*RTnq$tb;K<F)MfzO)#~b_; zIdcaq>y7J0LDJG<Grw)LuRUlps%pCiddL7oC*Nty7yzSS`9wU|MA9AzFn>V!W<L>q zcUcX7IEu6zS`A+I`VjI9WpsU8I0*4gpg!E&P`1C!6U9hBj{dZ-dW^X=h`+9j^<H*N zVZf9PqwmyexD5|I)o<(tE2xSlMs<@xGJ!HWZ;OC%*V?X`uyH1OYrFaI^{<Ob4g?3v z0RE4}xb(PvA<<d7lrx4!NshNJ_IQ&SDxA5NZaipoMXumSm_Jt%8{iu<fNK8r&y3bO zLwh8;KUR5bR>V?Ml*oYPw-j&Lk(5l)So7X$MpuRrxAD6ydM6NvGRShH;dN2~l&TXP zeruylR({BnmuS_j(nM>=I$YLp6^Fd>ANuS7WB+I>r}IvJHZiJP*T0Xsh#bOFPa>^= zJuZ+)6Y>`uAk;IH;DbvLno>WPF6U(vAg(Ok&GD|b(#e0m+SAihH~sxDgI{6P0GF@G z7793MoQNYF>Vzu)8?9OZk{n>XJ8v5W6S>eGVjcEw2$SBDtiC|k0c#8+Y><Z$*B*NU z8E*KunwZ523Gm0lw-l$19Y8%9S{3g=fb2xEFkUHziKHO~M8*TuVo?YrG69rz2(Z#S zKcqGAApxqKdmU|`rRxCSdo)P2`H<+?P(oZOV)z&V-)wUU89uwnq5wk+spaESaCyRC zNy%0+0TTJ(3dW978=5HQVA7782BM&w8gq`nBb~K77X8dhlp-Tt6D8`<OxwxoUo6?E zNJ^+KvTu+&9FdfWP;^38BZX$fV8r99JX&E)bJb|iA6e==cGZ=D=!5eEN>eO=$-%pd zSmNrW?zzG9corCz91tuIYp_UlbaA-~e>)U7Bt!g~>WswBBBZ_`SyqMTnw=hR2-}j( zc8NfSObv^E;2w*fI7%}u%VFF)Km(B5ZkkRl%~)RwgTvXQ$SZ1D;EJk#Vc+B;q8am+ z(JKpG0DM$sShZ)ChgMri-&yOWK7$i9Q5+F5oD3uudE}6Fc6qw#kMb6`#33@eNaLRG z2;eb=Nlj<ifb=-Z1?#uAFq`<1LX1tGeIgf>FKm)Xxtj&}CG|dQiO&C3@DfGP9B);u zJq|r8wG{<JN%E5nRU{D+QIPlnAOt<BzJnq~T?~kHc&@HKY4uYmMBY}>(1XK^EF#Ux zf%ONALzzpRcyxZxPXZZqd!mrgGE5w_5f<WPKy;71l)d6y{RqgkG%h7lW=B-is9mth zPo-*U)l~pX^s3ou<`<CsI=i9l&=5DJt6+@^h(d2c4EPepof`tTv;*{B(*X8zNDG)O zG||V$af#lOedd3siQV<d3eyE(Fo_-#fufd+XQ2rLSp3A))FsrMN~WgZ03^Kya8X4| zv9e5#D4Ki$<nAM*!rn!9ELMUvF|fH%Ge5I%VUbmuw4iTb1NMCL5Loik#@>_hfahgn zqpB*UIY&$*KQ7mZJ0@GRVndOHjGGd{jAT*s=?H)elUD82sH(-k5_yZ%J&vsj$_I6j z^&tzr!sZ6BNWBh2CYKj%55SORG~h<`?;<v3jL6*HR-chVpQl_hXyW?%8^NS1^+m#d zH|fc24?iV~V${tK3>DHtzyxRks8Wj?<8ASb3UtohbUD+50EWM4xxK_n+5+74*6z)6 zz~rft(D)_6VP9p;HLO(Whs<B7YZJin$|MCiYOn!-%jAa>$_NgZz<c>TE@D@-TrcTv z8XwRrDjheZ?<|h;xx*9yl>)Wlj)oK_<;gQ6aOFVw%!1R+?@uEPXyY8>=;#IhdEn|z z<kR6>`XUj~z^j)A1y+Q#C++egI_;hv89n7#_ubh}uP=&OR_{z0hW9Qv=m%lQPuvb8 zwoG@(a1sMm%Z7^4;CCXUV4Ofx8GASU1`r#0nm3i5TD+qIVH+{Piw1d(=+*XD-$uA* zS>ebB4`;U>iK<7M#P?6W6PC|EBY9wlfed&Vdc8Yzg$6xa*K|YUQ6e@nVViPUueOPM z$PgaRByC6&{n+(xm?Whjuem}#)_?8CA|iyZ>)WviQ6Cx0LAglUyetc*B^NA|JLD4* zUD)=JPRRT_EX-VTfC3rskJ*EI7aV<-Ju#RqO>!vtf;g!~2f!8+r2|*A$7~0!ed0xB zY`a5r2rWRQ#)Sj!tg5C37Vk$iWe0d{a<M*XaS<Cy0|8*5R2m2Z!x{ol={mi8pWYMW zSZCzsv_6*wa%or$iiH^J<tH#CPFe$4h5#&9xjfe7TA0?kF~>*y)NZp#g%04tzvN>0 zDK=R28~#~qum`<grb7t-|3AEnlJCpCzxLlw7)6%IvU8wK8}a@`W6|(SFY0;?z(oSc zUme;t?2~ol0@Uo%XFlx|Zd3yR3@BTwCdkO$aQYM*8zUP-1rYLEc&zYlnl};|H@4IP z&5wjXyC*#ywt(*Mmw7mUL!zkxljV><6%wvz_<N^jAK<!gW#LJdVcbQSQ_-Q=1<k+5 zexNciQpoXq3|afm#@WcD^tVk{M&P6}Xg|vO`D_QsNM*2Fc+;KcadLT_@W$n%L0%G* zVUMt2pOOQNJG41z((g4i+ut0cxMuhr>ZrzgVop3(ybXD+Eli6GPRwlqbC9)NY-FMc zc?;-xb6<`2Ks#4icf8H{xb;_w8#D9?U8E9(lgT<66CqDdBE!{3m^S>WVq%V$_zSlm z*x4l;c$*;RDW(;Yj?u=TgB}uU3H$Um5llHEJT|#nK3Fz;fOxi%qOk=)7<UOe5`S1| z<zqN=*f5&57KYI9aOv}YhtIR+7$6Y8(#;=i$P4S9G1~nhA{hs;@no_!yBPotP4d;9 zCttiA1wF-Wr_PVRscFQH;r0vtG*3h*^G45*bFO0X8m%p&E5yAB3l}D!0Cchb$y-*p zQ!YM)+%z=a%vqD&AH>H!5I^+|g;D|T4T&Qi;|h@_iu6<UU{40Xjo`}8QYx7N@n{{^ z5`Y3~`|=nxK-U3}xs5cAZOAanH^N=O>cS2ZH4WaKVM@56G1H``EYL=kYltbVCh#d6 zNlC%WR>>L0{p$qKnL2_*9shs~lt8?pKXMn@vu$*j9mx3NSNl6LZ@=(BaC3q1Ob;;d z2e*+^foDVWdXlyb>Zkln0;X#Za||HCBxrpE*rmG4@LmqF%RIOcuZvLj`d|KaP%%!u z1qLM|sS@?p(cNIU8U#k=tt1!hV=x*$pTGND-D<XDcq*>BBf1$_zRN9ySGEayQ(4WR zmQ>~3g~^SsoWRnHM3xUAE6YtDEe8DvMZ(P`t_|Hk2g<)na-f+zbEi@PO2ZDCh6jnV z1{svec>4&f00aa!wg1d6KAksn!1*6OO{7Wgen0sXdh*FMZXW+uM1AFt*B>_;(&;Tr z3Ds=F4n($tJ4u_qXV?S!FNj+8S(I|tH)Y-14h^Pd6i;r}(oRBv_%GUNPWb_Q&T`W9 z&aznaf61)1!6nH_s7rGK0NKk!9QB>nTGO-+sn?ohp3Kd!<T7|k0O>#HYXBC+6jASR zAql1RCv4-W>tW7l^~UIc6=cAsw;dPKxKU~^FXaL{zzBnG?a_$sFFu0dAu|*mC~;zc z2&fT?ul@Ggl4SzMwn6a^S&B7#;$22@<fwj3^LLe;uIbAuZ1nGJ{om|X!kUhhQ0yaL zLtxcZLon{#B(6~`OT+~{j<9%bl`<fi-O?e_??dPZaSb-nEuI0~b3z%i2{4e+#<4ax zOdA`Lqz$VIf??u&+f`cNtTk7>teM0&{^I3|;O6*E%_2PHeG|xex#H$t{!Fumwmr;e zS5dQugCdf6tK^gwW;vNnMj4bZZs>HFjcVbG6Ox9}7B&MQkhOIF=>iCwLHc3Nd)tIW z29f(99}m!LY;m5xXDl_vQ*i`hO`w9Mb&#33OWkP)ZvEW!e&e6=YgoeDB~BS1K=bZY zGMGv<M5uk=#T3D05lPyks1Oi-j7TcTBIm~ITZiE6j2-`;aKZAQ4wF3eSB<}YaIV`i z+R!!9+=>BRLOiPWid&&s5qt^c9~{pz=_N-3xZ9;Zh76~cT8(BCf3hMBp+^r%a%YYz z(JSvQ<SDCsT{Ot9z$|7*`Q_iwu!!zTj?H&}S^|cF{@1E}azP=&tDY!HUDwh$S(<7M zMWH|1yoQeJC`TD4`4^Nu4IT1g3iz4Bgl6V=<Eev5Xru1pA|IP};=a7`*regX$W^Tb z4JClM5su@*AAAaIrsW*q1UaxWCL|Nf_55yuW9w<5yhgMtt$%QInHh+f^sqREC^tj4 z+79d`^mGwttqHiGy;huSO6#`RO_nagP?qR_Q$z*L-abs}4*BpAJHzP;<Teae(Qj0N ze^%Dmga{f;=~Hoq7)5a?MJ>11@>vVfCrp#a_ZpqjGq}>`m9yg`d~?rpHt8@Ye>;#k zuX5T}b{C~(XRlm+rj;{vW5KCng-5W>MPSQ($!&%*cg{+&!GGkowzjIIa?nswU5dpK zocHW7BXn5APc`V^Uzxv|%$WJA*XYn{Jj6}CHBQ{Nl_1nZ9aD|4q|UbSbFRsks!EG? z*V8P?0Uo|MNn1><g+e2&vDG$+9aSW=*u&QIIpE8jc?vn4q(GHb83+$Uw_FQ&=C#1< zQQbYk?!fyIT1E%3CVYj0)aO0zNF++zBpBFjY>oqj2gy@)x{o{On<%7r0qSFNQC2ZR zKq%{UsD{|1(w{(|UEblY`z??0h1<}_t_yv6``h(~H?|YRFN&2|yslC+O!#($$M}nC z36&5kgkqq2c>OJ|W#czu3MGm%{^ZHs@|SaYQZo}4gA}x)JY3zkrg6J;@R*`7CI>6y zYiBiyAogD6!#VYIH~_R>Xy}OL1T|G53(vfG1h{x6FqChOK3C{!1Cw*^_rFm^glz4O zaQg0u?CZ!y9`mylu+ZyVmGsj>Gu8Q1L7c9OO(RN8>wBA|`0VK<MVLxvzQKNtO{lrc zSkd8D2@3T#DvX;#9Jk?1?>F`jm=n|1tSTHcq0v;(x*5Y1@!RnrEzs;QVBP1GgD5_j z$?SorNSD=x=gQrqkMxCUrJZYEi1yDUnUslQOYE?349b0deXm3hE5Y!D{(c@_!`SPE zk8*1;6(G`Wc110ASI6NA#>2erOXp+I#U$cZiYr`PTul1&m%kK!7Jm}(wt2vCc-Y!$ zcbv1pc1^a|<liKd>McxqO;+}|sHOU}Q~MSc7IiMN<JG&CXB$^3;VUceGYd@2c7#}x z5n|5$!|ZPkQ0bU^rQ<ZK!v4SM(qwHmy<Y=`CN;KrNP52vkaCNQ`!`xNS**b%U*(Oz zeDte2ka4mmJfizok_50e)GITRp;OBv{?9s4=2fPb!Ds`k;=;D0hd}umlK(0!)@S`0 zCQM=cWn1cicq{#a#%g0%Fm8vG2rVT{cWOb!BRbr3#gun$nLTO4*ZS(|MQOua8R0Y$ z+Kx?ANHsAQ$E6B_Xi|Ba2KCPK$IH!iGX(_&Ln-W~x~zV}+JhV<X#1$tfTVHI(7zZF z!0HXsT#C49#tw}1F;pO3D}~|DRD*1p*E5{R^JC?xb-g}Eb6_hIyw<1;;Z$Hyww1R4 zZkv%~ym9UfrdGJQmEn`R7-7+Lbr`RTDtTUE<ij_TrHe^X*tJa(0Lvm1W@0MY%TF30 z)tb2xu~Jpo*9zz286p`XmEZt>5UakXmnK1#PM2}u!ch03tBM9@suGu|i!VAuAL+|q z|Mi&%Es8%5MN^6gzHp)s23q$Q7$z}hW$`$OUv_Z*WK@lFgHtF73Ujq=)934Y_!|?- zO>Hg;5!8D#O7rm7hogvOMK4UmGUxC)G;RK2#!0Djxv-6#bjc88mgZ{nuv^-f8)4D{ z%fFr#acEFWiJ4KjPc8p8Oz>*8p;&ZkD$C)Rv1%0alMVfpJHafmQIdeaKOHZc8s-m+ zl-*lmSO}B5Bk^^OgT1V@bvij7vLjBU#R<f=0bG*V!(BU}eOIn1T~zE?|G~Nl+iaq) z6*P^?r<UXtkh$<6S^;T<eVDywAuE0x!)u?wIBCz{?3EE7F*6=PrfKtK?YJW!zUTuZ zFqqOQ>wK1PJ9w>`?Bx~)01xJyhj3dG%ys=Mxg^xIvLDB~;6zOdDRNhkB40O3donFf zNPnGeUU>3`Z2b;DCUk;}Vw|Dk1GYjZtN2smRE%!u$0EKw7^BE`=#KdF(noyRsJpAE zw>aKPpHC#1STGT!db?&?i;z(nng1d5$Yn}Lr{0BE0W{>;@Y%6$=@_+7iZ<7BMF8jA z=rgxclu$&{KsBgcY=*zub$O!f4d&5ksV3NzH0jf~^06ZApA}=ugw|<E+9+T0aYI~c z7_`De*-$lfs8O+YGr7Yo7xsI4^D`KtYz+Ip(_vEeM{Uk|nXcZDLt;1W%Px37jwWk6 zq#IF*`n<xCDax1vAn>G4b7XeG*2uvgqI!(Qwfx-`tt_ywecri#(FJJJygXVBs<;j^ z;?T1-+-W-g`xg<X_-Gp7-_+K=X<U}FDU|84SYHD|Kn%j2Q>Mq3v%1<A6lrtj-|DcK zKmAX$X?1tnwIPN(OPyIc0W?&YbeDX1a=R2mubjZ34C7W#7`FZP{^!B^x7Fq(9)#;F zx{K>FsNJjrLz+tf!HS(1UF(dd9r-as{ads3t2c%EzCUFNN~+Y%<92gZXq0)iExB^) zfPwJ;p66obMT?&BE{=K|qDE$XDClsmkPuuz1n<CXaO!@%sV|Nwj*MyCd?>kiy|BdB z{OBROLP=HLH4wuTM!C}YdXOSh!bZo;i^9S|$}j0$DPs99z^mhLAT0;Ne_Uxy`FV!9 z7P(&r5Bq6Wx0>wh4&c>FHi*XeT7Q+N*zp@BSj6U;ZDCNV(Xuk%wl8YPU*#lkP%-E| ztFts3%e1!2tQ~;=TewWsvH*aSIE?$-WXUY=5Mg#C17Z~Jm}6Zn!QbldyLZ-9iXfx5 zx_U^|)Yk}D*Z6+Lw?97$f2SA`_Qo)QKjrCOqrH|Ey~aTsbC2N;#aX?YWY{h*g)hYA zl5ZD4I){S9Tl*?mlmY^NDue8pWp+8o*x$6|P9<okvL&BYaj)K3YO<!J$0#&v8#Y=A z<6>v$$T^f4D7|fLZ;^dNnt7I4x>GBlq78xVORP33VWJa<On`h2z*Bs938Cik<d%OC zlcR)-iF-65JT@@yXek7|GANHbyk~25Cq|TpqAG3hh}q8*e>yo^L#Fq|Q)gmstB$_u zSoF@8T3~id=?sQwyG-wkUTTVvJY8V2jbVPBZjZYOd8A>=UA-d1{8;)48fh)sLk!ny zCX2jQ5-)PUdl*5ZQiFy^P`d;_T8B3XuA8S>3F2-p-<NW3ix9MHWbHS222+B8Nb%p^ zG&nD=RIdM4FD@lSmmYT(z`#gtxvr~l5m?k#M!)Wi3qIZEg!+ko%gQC{)k0`d!wGy* zo4-w1F)S^x*l=YP49n3ez6(V`?>acmudDTK4E0#PF-SL;A?dQd&B?lGIW9D*QliEP zqZ<O?8y|>TAeEuM@_AqtfnlJdcd38>%(N>Oov&Uji<$OAt;gNDb`)#2JWG@uqCHq# zvMW>dy@C|;GaYWXT84nB_q<J<+e&r&=EWRZ`GEi>p3Hy~LSyzWopuxmCvZrpO+Qi> z9VqcB7d^Qt0o-kGt0N~(@~P$Q+<}1?Krp}|{k|=S89D;ZCK>|`HRX|z;dFD^)j1$` zRu|fz{fpL{rHhn?7MuRl4+N+P-0?#kuD(8qx}_I|5iBBFKHZBAyVi!{Ha$hQpyDk* zRSD0h`2CkRckDSHmM3feC-3x)8<rMCf4BL3c;e+?<?MXgx*Ge9iuk>#`F-5HqzY+! zz0ZfB?LyLT3J3epxtim`$BkWc=v^kx{OKrKM-av7NNY8w6ihoz3nkqaY>*O>c2ZQH zXOYAm!77`a4;H^WEl~U=-cqs94LsQ2pRaS$CkV^7qbzu3?<DLnq%7*nTUEr%Ew4mf z_(wHy|NG$Inc>fN2dsZsiN#G`Il8!mkJ~PSzlLbBIY&-^gch&(9Ruxp*@e0FYQ8tz zoiWoc++y;-Vs6>f&z0|FGhT{8Har~!Ya0_|{&q^GxT1@yOM%H4EJ;59wu4@knx6*A ze_>)^P1a;xpHLLU$}`m`%1;J^*mxDdY1W24jm~#jUH96D{YRhp-1B>)9leF(J&_?+ z^66JFwq^$Op!tSvQV8^^n0ADGwWp^C5-0B6OQH{pjg=6`M9&hiI6w2s)7(2cqNb!Y zZv4327CYUy#}ZA|kJYVSwYU0lh+S4zHt0$G38l5ys!F@$mr<Q#U|=Qz57%5f#P?>( zGfG3^ZmS<*xl|~aaIBl;8_BW`C+K0ZBIZsY!+Mv82Mc9_5jg&y2n!MJ(km$pa|*xX z9zHjdbAs2sMGfwBYgk-taFg8l@{WZh`y}YtBgeSK_w4r8*W5hEoaJ{p8yvPNl*)7M z(00NGFDfq1@!g0jEpKwPvI^xEU=tlaQL%lOiAA3;G)-qRS2Br>-X8xuR(N1^mB{2O z?-ITnp8C@M$lLPxBEH#mL706urd+TcxZiinUor6FDd`vVn69rHCppt{RJx)l@qF1n zy?uUp3%L{U5#P<(eZ=<<mHm3Bpv4gO!BkL9N5w#z0O6yE<4>(Y)4G4$m4sSb%h~>m zlzd!=r<x54S4^j49LRWx4falDjyvFWVgU-Sl$o=v4F@*<vc0h(^cYQKXgux0acep2 zV~K8izN(OXm>;_iS|wZh&@Fj&eNEV9GP_y@>5rvu=4jf>ziHVOPub?9zyoe0tYTFC z^kJ>1;hce|oob|}o)e>4q6jcZZQT_=p$~iAg&=~+YlwclInX9$yXCf*Q+<jr7P45s zDP)_Z7N^F{x*ldXK$u0G8ERt)<DNx>fK*=lRA;tLA6yB=A|(xNKR+X8$O^u}Mq5OX z!0Rd9@B_cQ``JH#{`}tr<tg$I)Gb~ywXgeg+P229bUGX1bIl1jZbY=vV-yOOT_vyQ zAVaB~soJq|Y9Q05EeG{~56`AP%hOX+n@t?MnFI+ohQVhK0cMREiX4p*miCL@648T< z4^+(;rwI<}P36rV{jX#O7*kEo5nw1ByTOI&bG$U~EMPi|FttxRH<f41UZ`T$1~nL$ zd9AQNou{^6ifLd@I1A)pH`lDRB~1z;Y~l!FWAaRnF-_w0%(okqoM<+V0DxBSonPK5 zSWP)CZNBs7I}bN9>#ZQWEWfIn#|Z>{)a(-aJl7f@b&Ikwx8|y7Wt15*jQCu?D(B4c zSU(&Kz?dcFd{B8gIys;=F>ku9yBOO;ETOH(i=E}!<$aYg6bn{H_ub{OT-%LV6D#P& z3|hxBQ6PV~Wkd%-h(a#6k`;l@XkLse@0fcc!v|*$U)(7L4t%155^g!=BJFZw9iY_^ z)0;$Tj}2kU*n#w^DbehfgL*eV_(!h^t1-#5GsPc-kT|jD?t(b6-WyVq$2^bGw#qE$ z0MDT~{W9N@-5djQlaDXm8Otmjg@)1#9MQ<{<p;^Z-0bpy!C_z0u#|q;vw}W2)+Uh0 zKq$o9p3F44zLwN>%6AwnlD2Y+9fU5r-mP<<1gw!tK1`@^3TeRQ$NCO9?>6lNmj)IZ z+I%(x%3E!_l7eeXs&)!f8>Y-D&c=lm+n-h|f`ww*1^J)&zrG?|sF1IEotE?LybEMD z{h@ZTlCvB<q9{>!)ft8V*zV-mJ;`#l#5-y)DAv#JqdO=*Hnud4Qu>wU;FXu=#-tsA z14RHMs`A$bynnUfi$yJ)O@q~w1Mi4_ZjQ&Ut}OpE<Z(=8u0L6-3>=Zlt1NQcdx$&! zUf)W)a*E&o=25$o6J+Y&-(9BsF5jrx+L&zyw_Mcr=(?onqskQik%YrOHwxM;XHz@X za*MlXKb!e|EPl(yg{*jKmtHf`v4!42PWvUNN(xo-A0!w5n5-G2cTb;f@-KVp`?OSI z4d-Q3^bLe;7+L}pX^thm?<Ttj6H_zWs(1yChuQ<4GKx>29YFk`y_%QF`KGheXkLRd zVz#frkK?0}-u335e{$L`P-d_3Xxcn>lXjC}$Vm)LmLjiZ1V01+rNP3<aY!^UHSl!6 z%ns@4x;(NVu=OO(9y^oP5TWhe;QN%`N!7ru0@@3nB;5ALbhg3IBz^PZlE0@Mnd_J% zFlNeGK*u+O;gP|2A#8p}@ntHr<>!OpD{b90!Pd2j>Mi@6&wIs^4|f}k2dg*F8o$l( zf5lp<^@>Eib`dMdg#9IPVzt>2Vt<3pGg3SFV<J@B9&K1eVXMTFAv|A`_})QaS4A*F zKd4gTS?Tf&|NBSbRYTv02g(en9xb#`;`xhVRnNoLE{o?wea1#Zo5b(u^uYGOePQBs zsWI$VD~jbzT*M2A4^*dSC(_Q`_xd18v;e0bZGg3z^ZCrIuz3^rs$t6^XF(h^7x5Ll zMU<JG%imKqeftAM1((025}3T)^bS3T$}qbHnI6<<{4#bW!IxN?d*sytRx3cR6?(EH zr~7GyeVj&i4t*x&W1iebY=d#86V14cnM#N+qiwFU5cgcSKS?%_i!>kMTjNdCELQXc z?gk6T@eIFsa26y9WT=5lYz+Ui?jsn}{r&xa;C4c_EG!}M+)cZ379ST_IPcu{pIL7_ zQi2$5J%zd9wv98)x0`aM(qW3a+nBcf<@rJKJU*__A-%{!BByQl=SvXAi=9Q<U<#)s zfAqH^AQ7_emTqlBPImD9KEgYEv2vc$K>SsnzGtS4b*>8HV!kTnb}~OE30<sr(IPH0 ztl3Gf5HgfONb{U#fis3ds$Z5Wq<|#-RVNR2*?v2IyH956Maf{BtAEo;lQMaguFFmR zw0>J-&xd38_v5bJR(ds4sJ+)mi**qvi>Q_C@wO$1ES7pd*}JfTI(7Kpy}dmIJlC}} zKzpM}o{l>#6|;uP617b~bfV!)+^)@yRw2qk@SZGfJ~3z0<z&BNeWAm}f%(fl!u73R zx_&vO@iHUW&MhqL_fixP5fKqece^S1yh;1Cr<h38ob9{O*?wQzzLEK|h9N0*R6FH; zI9Fvq@wV(r7GK=63yT>c+C1I%OCBFl8`RoQbaY^kc|}G>B7!`m&qM8xLqr<RZRdmd zt?PJh;}jJ^M^39ZZ8vHSOe+`JH!VjlZbQ1>BmA?OS4%bZ(~cFvSEZbdTL~i>g7V7u zJt^$^=0SCvLOx6G{S%6`%l4`q=51noVGilf4di^+B6M+LhM+h9RnIch=Ii{gX5GU1 z1Dasy^F<D=$1wMl`{Sl4^f3=Vhy}Nsv~^G3XT@(9@wgxwV(w2@v$H-&{>ukuJ}0d= z>NAd%g07DT?axl&{b_ykr$H6Ypwmta&h|&@FpFRm^i!w7llUxXHgw+nJx1Im=R@fh zKPid@C2di+Xz6Fgos64n{7MYkV57#hB`U^(q173eb$p3KM7W`baeO_?d9xdEo8>c> zGB5sdv)i$E@(`v2*drO*kPLVNxv}SXx(0u^EA-ganMH7&de`PZy5P>M+3$lU*+>E{ zDisC-=Ha)~Y?k%KQ5?{Whxqm!k6c7Bwf!6|<I4NHR=`dA(9!+lC{itV4_S4;Xre|L zB}<6$4F1WZmd2_@<6fC@!*NlD>p2*ng*Z~(Z;&1?)Mq42Gm9UDEjRn5g5fn|5{cS> z52l`;TJc?%YF!SLUh>}qqFYB0wO9+0ILW`FIZ-SZ*jmRz%7P*r$&i0uZVn#gvuHH( zVu8Sn>e*|1C|7*v%X|WZmMs<k7H2q6G;@faCE2Z>)#Tv)GCsTAi@gcFG|EWKuAVA^ z{8$KB701VHP!JoarDBeng?xrLGKn??q)t?_&k|_6saA*uu9fFJ&sA*v-W0?=S*g1^ z^KZn62djh=5+gLZIvd}N8HNcU{BLy`9cJKaoDuct51V;y=A;W7HodmBr3;D6F+qSq z{&q?X<=D%3G0p1Z2T^-=!`9l0CEn>@;oF^ORTQgLS6e!xR6YcbPSe~7I}OD_oY2Pn zm@rU10i;gG-|T~Tl0Db@Z|;4Bf=h?F*>Y9T?IEeeOYKz7(Qj*K=YtKBX=B&Bng0?I zXHoH~PtRW^9_FFr&eePVb$@nxju+g=ME(gg)4JV^leXPHY6Ko%NIu<_Jw0D=2)~TQ zi+_A(OMO}2&Hkn(9A#C&mhciNLPot>Wq&t#K{=O#&DG$xNXaSs!noV|cw^4PEzCW) zD9A0*=(#^Bgk=}t;wXjt(c1zxnhN>m`gJfP-l1**#@()YKPCAzC5f;cOZ;~CfKNg@ z(MU}$IvXlPH%<{uD=^=>#ANT_V4lC4SG|BY_@s8!lbS+;$nEa4q`&jf&UC4s6!~7h z%lwsp!4%fQk++*Ud@72SM9`cHnGD$>SDH%}c-e9U6z>THCLU&#>0-qFij(B|YO}9G zi)68UZhAs}qG5J{-D+j%-3QFdka&TaYw2+KxZVf8D!K3i9Hg8G2)qpIf)P7nwAj`6 zo{%B~dM)`W>h5<Sz;uGV*x;h*Fql~_(cH$>d)4V(j%)a$j^E(aIQi&Znq4+|<Pjp1 zwT0+M_vLR7oxJpN{)h0;eHHWcUmDPthgI|T;HSTTle7o_vuq+#D!dXBW*n(w;y1(U zPR7M`F8@(-@1sE?s%?*rJMtWn_dGehA3mfuqoDN99w_N3ldE*Am#@aeMV8LITJqb? zVoR+ssj`wUo&Gs(RGbrhzqXdU?RT@}F}5?3adC;=hL7gemu82Lk1ttWHOh`7RWn}; zV#~oe+24PSY)Pe8It?14X}LLjxvw}GAove{<Vj60dx*NPM3S^o8L$)9*DV)qQ{=^G z*E4-W)#2KIg2+Ha8;Ds2c%c>ui<6@xt6h)Ml>FB>c(}MpVEDT@v5)@F=XsGd*c;Bj zxM!RNI9pD;Xjku+&(4-9X@fkcf4)ZuWffGjUKkh{7bTB)lmdJTlnCk`)3;ZomXQK7 zOb~^TL;M2*iX9VU6d;Hh1$XD$-QC?~dP~j%Q;76W9QVw=XLPTX-AA6){U#3jFm0(X z2#|PaGcTQnal^Hv2;PSMR|bNE`^PqYL0|go-B#NWPV$nH68~1S65S0UME54MqU!kS z@AW~i7R#0ddZtIed#vd3@AdWdNE-jWDCTT~YHKX|LbHm8Hc2inI=I++7|}7J@(Srl z6UM+`mp3=<hy&76m4{uy6!zztfq{YXaZL$+(g;iQ9OH^ejm_RO$*Q{noZP_4Mo(X6 zfZt(!O{IJW`)=X`djF%vZlYk4hKLWe_?unk1_FXTHT020T6Aav3QLld3iyXOrmGaI z)=h=0;N7BjuZ4s58^gbv`$*lu^*~wBzRO3CGUGPUfR#Jg@9N{NNnz5lsNS5GJkQZy zVV!Hv2R5%mt&91~M@drWm+I~o28%udGDlpbA2Zrc4oQ6Aoz=Sdg#qsxn&OF`OSuy% zPEtNRBeRL1nW%nhuPy)4fu6l<wYa5*=gNY<zGB*?OR2oAIuX3~y;r!P`%e7h+Z}cv z$MA`G)7E5c`haiond>`w7<LVJ81{QYF^c`i71v$WzJ$s{r6OkXMAM>cNGxxbbkizH z@UQh#IN7O#2Hkt%UrpOTEV}s6)?H(g*V!8pac}7&ecYpMKb;*5ehy)tVK)z+k#kZM zb?J4_L{H<P&l``X7$M%WRQwe*Yu;X<dsKS;iY92QiZa%8!Z_TmQM<^s)2zkQfq+3d zKfO#KB;PzUJ3At;{GiyODWE@=ML8PfY1@(0va8|9ter|;>m6>QdfDE148DZ#!Hp~1 zm2RSXvtel}&c-Po<(o1CX|m>{=2e>D^LVe))MF~jyZNA-0o|a7jF-9q-=X_DHd_D3 z&Wfj5=*Rv~d9P~FItR8sDCE<*+OlSm<*c+i9e#(zy4Dx{Y^B+rPmmv4D5D#y-X0=# zTYkQsZS(W6oETr0eCf4x8Wp-8&}le&zF9oJ1toOTH04Mh%(Zo=h;lDJ6$G?RP#HGX z-fv*kKVQt0yg2g-DVGMlZ`YzdIN}5uE~NhXv0UzyV8}70NdfLAaN)}v4<iHP@(<`2 zJGgw|Rv;|M<JV1+gM;_~xM&3L70@m;I%UilCPWOSaGJGP{TbM@f1`*ti*y+~k(J!J zVlHvM7S{$1DAsXnprH8a<Nk63J?}nQ_AZ6spp<zoIeOnep!>w(&Qd1QaVf>*^=TGF zeG*W@n+#-7%*Eof*pasyqz>LYEW+a3kJy>btugjGRXS|!2OySiPTVo#4hz-ytQ56( zwB`h>kFFB`Dt?L1KX2_`e4gS}_mc3EMSS`|MbJy)SsKqsWY-FT!y>ee5vw2nV-r4- z=QocjiyNtJT)`u3;9Zl<RL$SFS49(1W*6Z4v-p2&@!PwZ1$v+%C|r7R7TOi`fN|c9 zI3y<^Nd2>Soz?uW5An47=GXO)o~Hbe&4LTW-65O0O=t1*lHCn$o%fS!epN>Y6<JV* z>t89SWo`qp!aosP3-Nag=dn4U0S&ek)FLgs!ke{s?N8KmI|q##%S}fmqG}3%vYSpT znj)5me=i@8O)YsXJJ$V7iq8M>cXsyscY}7z?(^*-41ZFT+s`U1JANx`Yiq@lPy18q zk}-siFkwWVvUcV_@_3<s_f_S^VwmG^oY?umV%vpzBc)C`@9?PF7<2oD0}e*<8`HlY zmz#0UKQA2?y<!|whqgHb*G2li*;sUiY5n%J-zRPNEpyrQst8!ldAZ9Ws+d!SRicHs zK@a+Vlt)jq@*v`${b<VQgpXS*Ineu@HqXO}gZA^}iX`!~tBMzuN$EU;O7fR$pEf*; zgIKlk5JahPr}7l}Fr<{wQ<aIR1O1zQA)@jC_Y{PNqh7p;J#=GYOGl<=R2Cl}Z&mdp zX+gX#z@<d)pBHdDU;Zm1ew&kdpP6WWkv^-mcV*YUmSXH`Sm!vMPjVpoisN~6w!);b zdTQUqV}zeGX#Q*GpCQghUweBN<%H(rri0&`vCWrWskX#p5)ZXEtv8<|sl5%3$&c=4 z{tNc*itP#`@*Dfs>MI9j9qv?PX9q-AlnA-2cenMlF7-*;?fp`Ndo;m$9fHueT#N=R zCZ^uZiLYk0wXT#@7&l*QJa1{J8?--jzU;WU{$7u`7;VliTb+P~LNtW;7n~|$Hhm9f z%08n6-8pucaOB`+KO|wH4ENgZMa*(%?~0%G5S7l-)O+lXdL7Kz03pNe7o(!4v!hvW zO=ipB4vi+>rZ>&2PseARLYrl7K~77t8p7+hInQf~4J-Z!5xZIUO_IUlwLvR>oR8=F z64Vjvh}0`$u|)W^Jej7N2RHJ>r^OKS1fab@c0^Y*u%$LhR~L7`xB4yW-|(|a*45vU zKCrpm!#!3D8qD6bURAfkr~P)ZC7$!h`<k4epAFq=);4L=#hDteuW~xBG<GvJgGT2s zpp#AeIoEzp0n1$yV^_L2QD`VqAMX2-oo1_N^xOTroml6LR3VgLr>umZOzKL*M-8jb z)vM4vd9o;8nJ@YOfbw)ctks|)tCo4^op*{~ae$0hhw7r|S<iF>#EXuGDN^l82thE| zy&DgayY4MTw6kt4rN8MtD3!kF9j`Imvul;MYu{y+BS2k!zHV4OjSysk^T3^l^h#`a zL!{wqwyyz(#SBy-GPV}pNhP4eq-c5jDMD4)?Bq)JN2X4)YW4mboF6D1q^|y}8LN-$ zJ(rlXi(=Ovqjw>^beMfi8M05?3Qj+@f1-}ealWz8%!&Q^#1W#WNcxp8rGycbVEHG( zrdiRasAL#1W+oPbIF@=rADN-wi%Lew`71%M>qN_K5HnaN&A(~C(qy*h+mQd-#dWAt ztK;UMtq62!8Ybf%$0CF9mv^{WzTXr|$+FGcgQ>yr@bEgh@<+A?<`D8J?t5uMW3+ay zlRcP-32~6BMjUh_F-Hi&Ak;-SL14Mg3MJrE==aRbOYsVAmYBF0yjSe58b`LU-lDzK zXwiShsdyY7>7dyBKOa?rri4=^XYLP`UhY)-n<Aw7S@Ez$+=ZJUATLRA_AaCJ0NEe? zTyoju8Gu`O=Z)J7LRGtcGInj;-bl^D+M4Jh!{zTIuqQ}n=<MiNI~`pI!>x?rTuNx1 z2;bL&B^mZAUUy}CgWE?>=SrxBzyCs63c}2ig3InY{cpU;$HF4eF<+N8Jnve}?Pj2! zzjU@odBG78rNPMcI7P!0q8}zJP%BJ|*12ds2|Bsq6q0nsFac<DqeE~%Wl~e@I9)fT zpE!pUcXk)|(Y{bepufDM)n`lTt!UiJO+qv)w-K28{(|W&Sdq_Mgw)@&$mNioc^Dt7 z+VofREn^N1wfBbigZ`CWX2sIc6v95FUF2ZILX2qaBF4f@F(^~SpwkylM+4#YF6MsQ z$!+GK)FIBGeU*x)e?J+NO=e>t+d>G2YX#dbJ+z}{zaT)mnDseioSsi9i!rPFH>Zwa zI3uoI6!n3iwsv9-Ic>0ZruXfF3xP}ms6=-VEc>Cb<V<YLnp~`-8*xS<*ngd+-moYd zpwjxj!Vxzg69vTvt_jqKB?XrN@Cr1KJdhZ;L2TxrTs&O(Tw74HcAxuif-bK^J~fv` zghn10Mt~~aHlyNX%9=dM$L`;|a4WPcwwe}cKG3SkJ~T*5+)@3pc)_+t858*CYa?OS ztU~FuQH!s8&HS&~1H}0265!ayNAZSv=M*q}(XIVyuOROD=!pHz*DQ5K%-5)&cKwVF z{L5x$X9XJr8f**^?wfW*II~O#M<grIFEoiKCciB&PoW@w^-Jd2^t91#8>9B%V;&B@ z^WyXSBJ7<LgzFghbBm1a<8QANo5rC^#QL_0iHX5uH_IF|0|OD!&<!DPs$xx+zf8;* zZ}ys8%k+$!JpV`0Sw=<Gg;99u4(aahlI{|Qkdp51l#*^q>6S(sq<bjoZfTGhkd%=Y z`0n>}?vJ}>&6<18x$oZl*(V1})}{pIIv1q*cOhK&FEjMqp}W`Z)Eoy$a~<bWA$Q4l zA+--PWi_dI4}MbAY)s0EtQC>kgQYx;9HS&9>Epy?Q#;ZmsQkG+Y?u~Wa*n7Q88q_x zZSE{#-{0DoWcWeFwvF5be^0NE{k*X3?EhTBHxtFDgw%YUZOVffjjI7BDb3eZN1LSg z8&|cdvQB6A01ud>A|ysQLvIsnR%>n3In9EE&2cylC>1|#X~w7|D#)o6KTI4tEt0&W z_Lom)oLsG6L02Ja&_csDYSStou&Bwb0y$;o>yYBAWO1r%ahQIz{I-ASl*#Z0+sLb9 zrioF7xSTaQvrawL@1fd8GZT;@L?^#n9vXrHoPZ^Itue$Hh~hS=E(%-%@|L}k4*_Go zdkLCABjtNm_tD7&<#fErXqgSpTZiANE&Ez0UBSuUavL#|l_#5NqloRUdf=C<%^m6& ze`L$^D^jLu(e0PGMKP605}L|5)mZB#J1Q?u#kss^$)^6dYX{7dGv#Abt4_765YY1m zkAB!@eg>+1n;2`SP~{BMQ9eILQj`o=WuLpN&A(NcX7`|@@Lgyc9s0<l8DGU|Asf$2 zU#^gi8!l^<G)8=O)Ew_Wsw_jX@huv40!mg;?El1@PCC)=SN(B&r_AA(Fi{b!f-Pn% z$674qm1X17*+&99Rye&#+Yy#hOuD+tQ&b*0wOsFi;h*VUVr8j@l&U}Tm1krt^D49| zrzd3`fUkv<Sj!*Mqg@^hHS1z|b;yeo=b{~k(u*fFTq*^1NY{n@ghK<NgFc_#4CB|- zasufma1|9AHD<Ij$|u^+4eaVfe38L-H4nEpH|Jz^HsMB@0KEj^ht_uv_KYX&^yWVM zfGu-&ruQ&<IO*9^TK`9CMmStLIEUN)F5Zw2TA4P>jvv@a72X&VU<@+=O67{K7zHJz z+M+$6vGItC|6{=a+2viscnl0QMTU>2zpVQRh>K5!0V66yBH&eWMxn_cW;@bob5Bf@ z*Y4VD2HI%fakB3KE*4t&-Fp;dS^YWRXvdflblX1rbbEEBJJRTVn#O<l9he!i+bF*C zbxbs@`*6;QwrA5N#sQMPR@&Z@i9@D|g{NVJOQxnj+~kv0KHPlu(PktC#c6;>?5kyB z5ou0Ty=TX+7wmDz(-F<DRj;?E0+2!TwE+_HS_i9&AQrZ_VLG-KXIoDFJ?uIlg0x)e zuxZI4bcrXEnQSe#*$v%>RaiET2{o5hSH!0h8G>u4<8P+lc#t37LWe{X*8&8xVH@+- z7hW&CTQtZ1iQfE1P;BvBTt0lKF9&S8z<S6}ekdQHc#|vCl20sH+2G3<dQx?c@g{`W z`PL<uyZ;Ew!!pp)-d+inH?77<%DZg%?hbmfMZfd9w{=)NkdiV_{n~*qxRDvni~KKV z*k=O2rvfBU++0tvwJJHAmf6Q(y>nvpzaGq!WF@OaCC#j6Q>8zyMcQID>m|KQY+S0G zSq`~G`MPw+S>7*#QfWopL;(3>i}%phKu7`p9Oi;wD!}fijL?RI1&+i(+fl5Ios9P& zhv3+VZffzkJF{ySpT^VJKbdOU>|#nE2?K$~OFxTjbPI=~b)($;{EN#=wbE>|&5r<6 z<fQWY$`Bm{G+Sydfp`oGVE21!An{YUB7c-n4KnGNEYMFd1`^l^w61F!rJ%yA0w=xU z0{0#Edx;T5Gj9wL`v7;{<AWyvFRkN`J>!P}dXEgJG!N?cvIm^e2_YDvni3%C1(Aci zRopZNRw6coOpha;k#7~`<ZI8<C+pKf!B|@dT7ilx(;<0N5pKvsv3nrCOn8<u5Uv*s zx&o*u+oxFf4Fd(}9|4H3{%FetG56qmeKR^x?SPaTsyISIKRH5TdumuG`1XUghvS+t zvjG(*OWH}Too$vhF36AnDrfc|f@_xzoG+1c68b^pH<dbp&@c$qNUiL^^bia>Us^yF z2o>Sctto(h^%x;7fQk?;@_A*4uApS6y5JNFru8A4;1oO<$Ikdr*h)DV{$e=F_gd-Q z6+cmD;-75d4AW(Aa@mkJ%shMwu32UyRI$j08-dm8)@ZX4MoM>6J~2wE%F)%8$gS6v z>9@q<YIdJLN;se@;AaI)6M-2~+14$(f9nn5?#4p>>TGq`I>Y0ADoi+Z25BOQ3SxA- zKd@y+;-2g3aCD`m-9W+|O=CK(0TsEgfVXLuYC+n92|u?44rKdJ<cbjv^eqVF&olcE zZuAGTIh2wp5yaq+F3^#Aq8O#>mr9KQ8Y!@Vm?WX?&ltxc12L!<jvw|PK|CKoMf%aM ze7-F7Af5$ybB)}HEz<1VJXM@^h+eAJp!-PniaaU{(#*BMH)o$<%Oig~uX8w#_vh%+ zcvzv6u1+8LX}Mw8$OJTF+U4se3;E0w1pK~Phj&gb7@>2WPj9!LrVGPq!T64!mm;-F z-&$DT2HOr~y?J+f@Sd2)Zs0}is`o<s^?zsRYAZ`QnD$O=o!xNTbhpOBUeX#M<DrI! zo3$Wf(v%}BR1p3|y433}^5+kYW&ja1+U5qlMDv95Vc{yMy)X-GwFg@m6|69QX(o#< zhWabhp;<Us{u1WO*kTxWws;dRz*}y~I$d^(CW|`?_@O@2E9Y<#oa-wVd@v_cmeuB1 zH*oGxG^%7Gl}Ah9!qzdarb+B)toC`Uw%0|Y`oo}GhvGB6#v5XE(_DpmD1MZ%Y}N4( zhxihGmJW;j8!VlTb0sGet|yOtwsMNmi6#;5l!qEi5(ZE?B4|V#1b%47OrIx^uKq_M zOoCU;5c;#pqMr{HX%18R00h#m*L82oXI2DNmhkk5dCy`htsGW+A_vCuaqR3PY%P3l zgtL~18=L2&CjjxIODhH*jH}y<syDxTRKY6R%|iRk$iZrn@FrYd=15r9w&_&Lyo;hO z&nNAGEzAO$rzrQ}oR$b#niei}ipIvoVgTI5$x`|m5%g08M)+_Tm-Ce2zv7tI83{s+ z)Z!6|xJBLnuEQ27^MhnR{mo#`3~Vb+#GVO6)1jm@xD>wq-Q4RN&pQeS;y}jFcx~Ly zMyTY{t05yS8Rf9?(_ka53vU`kkacz5a<v9mwV6edpV_Y1UEI-*-Ir1jYPs!^-4l?? zYNd^2DHpc$pTG>|SNt4?%LUpXl41T6Bo;?Ed0m#CIh@AO%)vgHuz%%K@ztq;s6ADF zjcAcHQchHcjza}(Wx%i!J6y{Vc20A~P%vB`X+xV5%LshlFQR11{0`heI<>zkxoWC0 z-$$%bUg*!e#$$M;)F}@Rt2tMc0K``&*gM3Jieu-|`e(X4IU8xKw8iNq8*jDXap%O> z)Pko}59jOC*EvNB)pDQQWW63&x8y*wSYO*?77Pfc3kkMH?>d?D*oU|5L@yy-_y(c6 z0&e07jce@F1FL6nkcTKzM^M_%i80p4%g^Bpoif@lrM<Uv5*JZZTikiQW*^f=@IYgQ z@z74MEH`OVe%tpmDh8&)CQ9^u=1=C32lAAP>>`@2$~pf*N*dqH<p56dBQO8eI{{k6 za)HUBR=BWSk67k(@w$IKt75{iugU&T&}S#<F)F8=yDo@7zU!9#p??8Q9c?)f@Qi&! zbn?;A&}pYeK7}iz*XJE!oO=3?a1Rm<aEoH&@jHu(W5Qp;ZB=sDGL?$O`p%<`=VC5v zdp%{+of;!Nv#<{ven_eE<^^yJ<#S|F;nY7UXF27SIkFK#`ASm=F)~<GDMyi$8Q3u8 zMn1d5uYas-Xn1$>a5s2FqYA~h7m>sTt%*~VTDw-qXehp&M8Sel`<u3ZLU#FC@T!KI z)2^RVlt<<VX{>+b(I(?Jk*vu^?q@(q=AB}j**cMg|JJ>lOzh|xIhiFX7F@ui51vMy z##3We!*lU&hQ~h(qJ6NjU+7i6UMh&Ys5!@PiqTLQD^TNc6KamhlQ3karAY^)4J0$f zrCjuDIB_Btp6hfdfPR3_nc;tgQ%+3z&W>Zl!=u~h<S=L|r>+a4RBFX(oH0IKWIfFM zAY7Eym=Q+M;aJ0@zyBb7Y3x-9a4!o!O-(tLx=y7%$K+{EpvolhCWLwA+B{Iuu`ntQ zwYkvBn|{nK(J<Gf=u9GyDu!OuBtvGK1-vD=<LFks)6^XU)G5HDPzOix)swOmClQPF zTMq7|{qR$I!6|wV#8HLpZw2Q_yn)oQsuH8|sbj6|nivH!G)Y0DvkOZ%95%_{*4uJy z2+?FRt00g9n$OOoYc-i&g|G-`3C7)(f3N3UB>XT(Pg6_inuM(_=6oHjvlh~flGjT$ zG?l_%kuULMiqc_9yZ)9H$7$Q4sCZG}aEfo_p!3E!>l^FZe$rJsMvg?q37!>y!^HIy zPk`>PvuTN&T<8vWj*O|*t*}HX>X81ux}>;u!V!U4jYP84hpzbF7@d(sXRHUF7tJbc zN>rsl)e7S5A_O<0_m{j^sFG}a?js(A7hMtE9<25Kv%Q%{wM+&w?E+nn=3fW9&9UGP z_oVAH)`sUzaq^rub$8l)rE?Sd;iN8@{VXIlJjj@2ML#B1E%XK95>~!Pm1Z=$=sE0n zs5;2y)Ddt@YNKzqX7CQ$p+|d2=fHavX;>4obhMSXgdy~!5~F{Az$@SNQzUiQT0j@{ zZQ*OfK@zr1(JG<<lY{c#)OCf9v3!^ih9wJS(b=8Sp8Rla97Fsi&?Y8G!Q6(4@Q0s9 zJ4_F|xusCHLexTs@0|uSCVe3bt$wYRWvu#W`s8qGE^E512xzzFR}WM?KFi1VI&s=7 zMUxR!Tk}@qBg*S;F1*GP==<ON`+hr_th3XTy!v<9!!QHMlEg;m`W6ccrpwFNoDc9v zaF?5^XU+lc1m>Ud{D-}r5sZjH{Vs`WNu0kW#Ie-o6X95n_>c?S-6iWc6e{eM$N4kg ziwbf$yeSv~#N4!W8YO2LcnS?!da%pn`a;fe!{01SO<)y|z@-(^n$&WxRU#{F7jxO+ zq|n+OY>~+wY+EQA;>bg-#}u}Mz4QENdYLtcaQfBLjbglLEFq7kA2S<naVxc(O87YX z!wecTKM03ZIs@eZ!IEVjuBaIv#EA*2$5wY6_ZMn#+lHGhVPP&pR%9;`IFzkmZOukj zPEf_N1PfSz7?<dH6cLb{!9#;*1Fub;!@rh(W-sb_aG-RW)9Qa~#lZkGlI6q7zW#(v zqn0o<JMTTYW&%2vL0u+br5onZPNy<7EDI+)qfU_XqZ)7F9nq(7aP+(!EYZeXkRF*p z!skLUf5TO5GFnn4^G)<d_vb!=gj<)$mf3|uHk}#@8v?Q-6Iwe534-h|fol#NgUnXL z5iUXug*xoIzkireKVKqzHzqc=uLH4^%e?rmljo3cUGie@`4_4SgQmU4n3|tnp_xOj zlBYcUL@_J&F>3FBLZB>Fs+pQIGRaKi4T#6DtK=vWCu;{UPq%)Yhx{3bzr8<Qh&&SC zfoOL6z8Z%}JiMGAH3=Q}J$FA;EShz`0b(-(xSCCy8}yMG3Lf+-fY!IHfm=3JHux78 zSvvDf5tle9#!ghw0Rj<xx6J~k7@f&Vd%nOvw>>&KLaQf84=t+#XniCVk%Rptmg4M5 z^m-m&0$ARFH1mP^(NUCuCJio829YmV0tta}{xXx3#si5_J`$}wUBoA;VR7*W;z*c- zmg7Twmn(0hJV=2NlbWK%t1^!rZaH5;pght)Kw7r8|8VfihoI+EFkrx8kM-FfcM_Vh z6D1~V0s7hxY9c1XeQS@f#{Z>o1tiT02a?Q4+l$b7v$bq#vaO<2|0mW{WF{S+PmMB< zyb3G9<<KOIK@q<cO}YriaY@53H}vYYtMd9Nadf{wt>E=XPPw$cj7exm{-V$9^?avs zXjKw6*zlO$d0gTe6SA^)RND-*yrY39HjxLezD(KS{8B@kocN{x(`URjk@sA&MuVkH z)QeI~<s*T@lovV#K^oO!ZK<uUhf!5k6$|q(qw-N#o9GV`Qn=WKN*%Vhc}@CZf@EZw zNV1=83`8>$k^v(oS5_h*uF_)TPd2sCf(*~+?s_?9Kph440*1lm3>ls#<kG$K)jDA1 z)DLWg_9RxutFD3@8I~!(<y^Zs(KAjP;s2lwTwVR_?*}1mNoX~jKv{P&Y&CQe?c6id z9TbY7DGv2_nUuD=-ilMwc9CQxl4`BvPhl6v@C|Sp6UYFk0Ti6vuZNlvzzxdAk^wB{ zXUE$GV5aFa0>E{DW#*uN)rSK)cxqqNGY$VlS)*5Ks+YDHaE3S~wv*vCn}2`@>Oc&A znMgb;iC^A-e<8zQ_rgHkooag1*rV@#>Z0G9TkzMp$)%?A*wXVEdPFSd%Shd=^<Mo| zsPy~fwlt1ed;|)lDieE;Zh6;Q+%>b;bDn!ZTFeKO{KwEi)2v=ST6?-++mmFZ0E#GM zoj^)*j8GIZ`i9nwj^jJ@qf9zO{W*D*XAXI#dWDq-yIN}t{i+A0CB0VtcP$z(1@sSl zf($g}c*ewAL?5N_%}I7duP=Q2o}LT4+xoPIbrQn&^}vf?zw2KKgc{PNF_5v1H|^v) zXM6&q$LKPTqSq4AXV4(N-nP00LB)2~Is>v?HefbfmPhv|=_KMs*ORfxJb6sqb}}Mo zd|M_T`4J#<1SuLIr6Y1H)EaUtn)qzxpN{&#i|L1{T2z}j%G&B|tdv}C>DjxUqkqtz zKVM9{1C?=5<LOWQ@|_CGd66o|v(i}6`=@wzcDSy3Up_tO%;v^(F#(S><Ro$HcgQ07 zGA4HFsnk13pK^a__h0S{e>T`wyUP|B=sY))?VTxrIp5r;0qX#dx@H5k3-RG+#=+xk z&g3@F28#KOqfX7M+W2y{L2GW{tB=>p8j6E}9O&OX_4EAnPKU@TyWO-cYbogEuN8Ih zKKV|^CrxTTgm|T*igwJ1z>Ar?t$)yN-!EJSd@b$Ne~ODTHZFka_vFrV6;8<g5WC(T zLHsc1`-GsY2<o1T_*F2Y1tLo;g>T8$RXibDogt+zi$;u4g#LXJJX{p|qJY}z&8LuZ zvhk@q$`5WaA2z(V1hm`CublTb(j1Jx=gSt;SSeHZC@p){eGB+x@5KjDBO#!f`i@_5 zR)yXq8(G*JNIM7|QfA=7>AD`o>%%Ynh0T^}xkm9K(6S^6<{;?P>~T&Bc9Qr{6E%@9 zf^a!MM!7?F0Qn_&oSo~M^SAK7(6PB!$$Q`zE@|jN>_A+u4jvVQOMbc>TB&oU@)jaC z36u_u*mi%e4Gnc%&iB6MF#g@J`Ex7ecJ085IuFUrdCO7v*%5s4d%5FMl7iu?HHz@v zycEC@3!aCZKyhBL7Xf114R!Ab7co5?dUg^6ww?4(Y|X1wc|$IoK_IKru&>`^&4Q{u zdNUmy1AQIMF_e7kd=xZmrkBABOfG)Q#XmNw@{Xi0v>Hm-w>*A&`c(ulwGDD_2`BNC zO0qKoc@Qn8NEt(sTEdHT{$dQL?tl7fSkqn+soxAKQRycQ*U=tGSTH;V&!a6)p$?FK zc$~9@WKdPZ;rc+oTt4RA^+793arWPb^%(4y_G@KO75!wEDUu;fo(XllxSpOfaVRZ@ z8xyycUA1EKEgKKbDL*iI7wI3M1VO!~k;&&Zsq)Q4uBb}C9>g$vj(s2ai;=rG)N2As zrzA16&FM`kngDOKbeij6dd23W8{EBVZJDmt>1?1NG5S>X^8YLB*R9uFg{d8pMZ@lT z6=6M1z)M&HD4*hOnPL8bT%EzLN5naMrvfSnwA=t(`k!V*xPM;)IQB`if4{QeoY(kz z9G9#AHwS4f(jno0Rj<&h!VMRnM=M{t3mWxk!*K(wLA_4%0|Nt37u^l>u0c;5J8dqm zUcf;A?jY^G)^5sl9^n5%9T+Ytk7r_L7J&|lDQ0pT9T{dqAMUoh8+B`*Uyz6aMB}AN zllA!6j|0G#vKQ0PcekAwV<^!sw)JQ2>gr0Fnd%TV5{+-myJI_mpTGVHrHRxF^iB@U z()#7Re>T9}2r|f~mhx?k&t5GOx8SbUt}fuLar9FS-JSPj1!THGG5GavAd3=0WYiAN zGg`<q`9ZTG?TbmLlrk+bR)MXnTHg!bb>o+5Wn7pJJh0PmJ-6?;&WJim7BX(My@2(4 zyxG--EiSuvXTLM4F)i|F5vg$eZdn{I!6ouzNFc7ncrO9Fd_AGAu)ZI5Y6yUmZ{sP> zAB|G?J^rqF_wF5FhTInFJyF}=2lC;7Gmr<<<Jchgo9|9g`*}tbZn@UUm3NHWR@ZXN zpx)Pzf!Q{3E&l5ll;DRwU$gDfVW*isdj{wBgvUphorkH4206~a!yN9%&Awm{(OALD zpL+z)vSns>3-KWxCy;N-)FHdY@Bf`=R8wvTKuySJ#9dUJ0@bR_1WMXeD=#S=GtL5% z@!IBy^cWCQM(AVf`01?ZtTGRca@`mfU4Ejp6rU$A%{t=7o|5N%bjCA~HS)17*G^Ct z%LctSF5Ywpr%d7abuv9?Z=~g5+tb=crF@Rwbj9tKIm={iQ7u+bh>s(R<4j+_!k$>s zQjhVYG<BZ0%p-#T-P&TLQfmux6k**JR>JG3f1AdmfKLK1B1Y~oc2*LzLw1GKKO+|7 zF@bGXv-4-h*n4@WH*qtNe?Q%0;xWK3>}S3=QSWc71no~lH_coqwS8HTYrN}5cG3!y z_U7f9X$9iO7t;||u}cbIYxH6k+l%bcU$CEYzz!8Tb#~s$eg6lJMrh}U@K<)9Hs;FJ z@wU46gn=1LvzQ^Q<(a379@a)aRQ!uDaro;WrC%VsNZkLkpwR~6P5+jlQ2BwR&CGTl zZ%$2CO?p4wRDY-e5HOv_+bs@@<IIJAm0_~YTND%&#_g^qR$Uee>s{Wb_do9^GT2XV z9*1zGdOQ!oUtk|<bS19(5$benc;B`HS7MrBGoq(2PnSEr0e2@Ag%H4|oL~L-_SSW~ z#~(;6J7saV=d`|5-t0VW-#NCfqcP{ZUvxrkbLimTIqUa1jkW<#Fje^1&7R`h&Fp|z zAM;4ONSe1vP{%|bfh2@c8G_=)`QV%=&JVvEjp}IP)!f{aQ5j-AomVj7cf3ncm62%? zzvJ*dV{#qoZC)=EjYvCvExgG2aP|s0>dxvO<an5VcDXx>wfkCE@GH6K_OQf!`+@6b z#`ipe065fHyl0MikfL1;ndyO<@LP^ae!CgFDcsokXqME6^4mr=N@-Bz-W2|Wk9cmC zEd|l@uj{a4moJj)6vb#{_}cUvz8!;xkU;<Z@_MI$VcBmV#4!Jri18YbA79Qt8H^3R zG^nJ*@F6o#rd*lKOiXOcsbSz$=lK$d8V)wIvUBPgj@d(XyP5BYkj_5TV_kjn!r&D& z=FQd<C=j&?IT(m>>p0Tx!e_i$`Bfedhsfuu_*Frox1!+wj6C>W4HPB)CO#4K(y%#j z*so?~V<Voxp;v;|I^;cJOt#8SZO3E+!&tWNx{_;4K_Q+6Q_`DcVU*)f{Nk;!ANcR{ z9Y<)sf5O0#xVLZAS6?WrFm{-5e!Abk^gj=HIhTTL$}W;@IkxHgJsTw7{5+X)`O^E4 zNd5Tb^&Tf)F;d@WMhMnl><kZDb`_#}9Y_gO6VgauX=V*F$YlLn>3_NrD<eeelXb2o zS4pRX|F~4d7Bknx@@b*jD=2g`a1k;b=i8IE83+qmByfX>6cPrK{gddQsmL2)Rks8! zJ1*Y^*`(VT)ajlA4nfq^gNyD<zyoeZIqFfT>(svCz(yT>zX#Op0PY$W>TPcT_vrfR zzELju;V6mDzod;p`I;dto|qeQvto4F38ex}+op-CcN$9q&qEY0yfg66%oB7GJsYE^ z29{YAK^OGJzsyn($|TX9M1lLO5Ya7HygZpw;Cnc>S~e=lr2OWX48FVzzO=jB3_x8p z<(Fa|l4&XZBH6V~GHdMvn-=Q(cgS6lj;-@_Jr!1?*YGm3+6T~sXd|@&pD8KS{}VxZ z`o1u%7ZMDMHhBG2A${|Tb@W8u9Hez(7UfE<L5ngKLP|fP55ia9YW8_sF_bb6;HXbZ zV6B%spO*fNzE@Yf?HG31Xe$RxcKs=)U!h)e6{rph`Xc!V#K&#Eu^l@0uH0{VOC9!` zT5NhA8Br9Ha1sQ{?h5OsGCd<KD|$`%t#DIqcLbh00tvD*yZle<?R__2Gu|~wxt>1? z#F^ej3vror3H*9oe0>?#{^GA&Z2S@-<(E-xi#|VF5IDx>*XB|o<9F?)4tY4r^Hop6 zG*BlQNnMCMb$9G?r1s2hKopQstSmDQ2mK(SzthLzg*k#iks>^9G209hCC036Vh+u) ze?wnt6;D>WFCf3GYXC=_=P8ifSbpt!h+~($p1JFR(dz|UZ)u*^_gqt>xi2QZ25vu8 z1ns(Q-<}&?)Mdt*{kyK15xW#$_4aC;#O$X7{ctC7!PcT-;K$F-01gth;&o~(-Y?Tz z{MTb@>mT<q$t<O@D&d59*zR`qKc8Qn5^7<ih9oMd{y5TcGO5$;d-!^(ROclE_$?CO zConX&U_}+>QEvep&1iCfFN+Zst`+AsBQkMF2yAt}1w1Fod|17nhZ9Z>y(?{RhJo3d zTf-}0!@w}?jv72TD1&}NR0^N->HT8*r#<9(4@W;!0d0Y&Ia2s=DXnZKRYwyY%$m`) z<vPic0mhI+r9Jm~dgr^HqU^FE$oxb3Yh&X)OB~Lct^|9DV;$OjKo`%^+2sk}hs%)N z3ddG5{6Xa2!?q0)D}aY`w;gb4R3EZGD*5PZ)b274bALU4C)IVo5MOHlH|$BU_i5`= z@}`r#9;j6uSwiW1{%X{Av2ML_+q3!Gi}wCXYFwkYVWTi40@mDl`4)UHRr)~n>)we4 zu0mDQ?7KMeTIjVUe!Fmq>Uc`#mi7dq@Vj}R__jP~fUik`4Gp44t?`|&#CktPKn@Vf z_o>mU)en{&K4Yo-RzddsoRI{MWeQdtFweGy5W_=;|0VpKa;;jre&)e2RA$QMtyp5y zr^#+%IORP4WTe9SRAYe`ms*M{pWNRjH#!HFX_uXaVYd>xioh}=RR$SsMx@`2ge4rz z7uXfPnJm--pCPdI(e@Z!27G_5wEFgqj5$B}G35Db^ow}c!!fjw-){=-qy2Y&!3RHj z`=>*EvwsUi>H(&^I({Dgmqy=u7gp+wGFH32#ebXl2ovh!B7>xb`9XxL5hN(PDDi1i zd}df`(k#X3U|BpDr2_IaX?z4ZRDqWD=4U)*G=6LD9ACJ=ki^@XUAJD%2HolbdCnvo z=Vp1v!^|+KydY*jJ7bxlEdK~`gDGHjyXI!Kk~Q~in%^-)3)exFVNI3y3bt2xTSLIE zN#>#5<Z{rM_w>ZBT+%r#a>yf%dmPRgi)~F*_FCA>{UxoIZ8mtu^Ukn4;FdHS&RWx; zRC9o&ze7=n2uA85w?v|YDXY4vWNamApd;W&u!Q)WkRqe0{44wyQ5GUDp=KDV`AWe> z{j;mx(~Izj<+l=xLrZfK7)wvxeFeEdG<WMTAKG&Xb7ebI>JWbqYn#e<<kc)We)73r zJ@szTdV>qZgh8A+QKl>{O3eb6m~BasO8<CtJQ7S@_eymiDDTBl)og{9yY5E9=O0OD z{YE}ezv_Ei`d54B9szsU`_wYSx{GW_BJ?P&swKzPU&5w<7qN|UBb?^*{?CQKZAmd& z57t3Vd3$Shc3Z0<#QLzWL$?>-nE&uhaHG7XF(h}uL~YEfQCoGZ=&s=Z)TUpv_H4)( zqC7N=6!nn$Fh-}>TX6aB8CqIqozJhHksk0Xhkco2aVC`|rpz4sk0_x#d_b<Sz!Z>C z)|~^%>Umism&bx_`{h<aIdI0JW@}nZcHKJJVTz}1r3y@Yo(H{!*eFGH4&zn$%myTW z{?!PD>z}mhQRt;B0V+hfr)C+ecLZ(Wtnq#eIkCv>pHvk9efyTCO@ntimnM_eONIZd z`dU065id`U(`-fOH(9wZyn4IS*AEmp$aLR1leXZEvCeric|g19nvL*Lpd=d5?odQH z2Fm7}o&eP_WO!);N95uR6@$zOP<^~OQu&<X16BMYK-5t0To{Yo%g2p29)ynJ5h5oz zqQb34&3oC^o)f>D`VO=4U=J8eh@?VXH2i@%a+jZzqqwUv((RUDFcGE%Qsu9XS%kLP zgr!Ht+N<f#!jH0cYkG|)F$!GcYqMqeED2`Wk2}D4-*O3!FCQ-FiTUbvm`!9Yo!$hz zLO04F9vp_P`(bsn63~3Nkf#lNd|O}(wfpM5GA*<tF6sKMqW!D?<D_fv&B`JBCIcKQ ziBNu;Z4FiQ3s*c6oV1Hm-xjt>)uWXWMpe3JI(!D$mMcuRC^wXbIF8Q>_3aN_dw8`( z&z4`&f62@^T8_k|y06Cs7H^}~e(!PbAiSW%fvawy;r{t08P<`wS!<?Oxg`BO3m9gk zZE;D5;l4;a9QgTO#SG9SEzl*Ou9k9EXVF+x96XNn?xN2-_Zdpu@_th3N>1KA;iOL_ zvv%Cmy;MOcd~;XyYKxT`EE`(Q*!bw!6<`@}Lgcp?r-Da8McmOBFPVdFAykT58Op5w zB&;^hY0N-N3yXd(w3xbWUl6+K8?-|Yrq9|+ZOZ4T-NSQF5=SXCQiiOeSRX^%I$-R7 zX|PfmVoQ`*mz{mYXJICp@juQydu{E4{2E%MW}<NKc0yhozessH8VyC)0&OQWsBJDA zM^7&R@T6D+q`^T{o~}FVW#S7Y0J;6gRgy$+E8AagjJP{?!-bPdStgoPodDl+;LiI+ z9l(e-kVGlQlv#@o&%pXi_%^6P)Kq!jy8Zp^)T=m3D<Zkg0Eu?awK#X0JC<{Vrx5C` zr%s}M%rH|3HGD{#Fnfl$BDzQFk-uR=;Le@!NmLr1V(a<%>Z0{{VD5e3(&*-nPrx5V zY!D7MXvP9mm&_j85giuViA|7vh-$1c>S4@Nv__y|&}z7w-@d_lYH6xd9Fc3@02AZ= zt|qcC?hB;b<-sR@J&WV|_RTL6$e`RCIUcOAljYG8^^o;OTCB3<PwwZr^68QD$z){i z#=v7{tWiM|HWm7YrT=hFx+YDJZWW{$?$Lp1NJWMqoMnzFX*YrkY@7+FVjIjA7*QJJ zAj7{c-cS7AX?w?|r9ZKDUYz+IT-5}xJR~#J>jO7`Kp}tT>k@bB{HJm`wQo*eVf*<o zoZzEtvVeZ9&8yF`PA|{vnd#}a#634RA%A?c5(q~HU3NZhWOh4EGg;LJPQ_7gdy!+o zPh@Kg2>m<gTAs{Q8{L43->Gof*s`sKQ%o@<>~4Ii*ca6DYmbjy`IKz;y^vD(mO_!$ z7@aMJ30~A@bEM3-l=4$)`+J7Dcc}NN5s<2tf<Ho-5}-ueQy_{5j+|(!rSuh__3}dm zF<7<LE6?WQe-zFgo+l6!s%bxRVICKTMu+m^gbsDf=xBL^et3xLn(%2ibk?);0mEYQ zM8kuJa;-82&zA@8KNLiWaQpwH6$~OFQd^F}d-1PF!bww62!>Y?0&3d(@SwyTQbe<U zcajwZvyI4fxLr9zyvEOHwAeVUbUZ+&Ut@@5(kAt=@zitFLqKVBoaHcS-~F9KT}E<4 z&~j8kyg&v`F7B`H8Cu>xW9(v}>!o6GFJG*l+z*?r`p(&|3hyZmwkNP->*cuCG^D!C zZkdVDpEMEyoT=$W0qpX|xo78@uzI8Zk|F-D$Y5cUJT3zCr2PYbhzD#0cr6sno94kR zrCI0gjqq|M$7U(7UjF^jOLTJI)ex~F0l>=Gw1ejAcPF8xAL^<%-kFj+siIZ^98E79 z%)#vbJFHtr2TBJB3Q0(31j9-KLBh4!zmn!SB)!YQES$_U^31)`?(Y${&{<n%c*-JN z2^E987R8M$6^sLs`qwi%ew&uedaH^_%SCYDt!x1Quw~`tQ@Pe2;A{6H^_7v&wKE_} zkM9n0g-L{2Xcr-`l2sKGqN32^lI7EVa9>l8!lEo%8*_s^oEBh|?+I_-fc^@Yd45mx zq&WVuaOc1KFp@3sW>M^$$!hD}JLpG#r0k!(OAlWt%v%2>ncYL&)}k#NNfhRRGv#v~ z)E}uK8<2ljzqAXrtf-G~X>OePo7#P&Qb>7!BA-&_$7Zc~_@}K3C6m)AlfgqDHE;TS znP+O<h3>~hW3?9BwB;KNM$Z&WU(!#A8Z_q*fht6SE?C|rt(<>`l*WsHAVnfF&KZV3 zbhF5k%~@w9@5>dyBs6j_1MkFk4$t615_x5$H_m+;=dj4|O?Fm)#R-lv`lt#<Eh*=d z%cU}mm+j{3jWP+ktRLKmt>lt1C~I*M*9>1Bk0yA`426!X!i~Z5dF{raa<_XTvzhSO zNEVg}IXO9hvgtDr_aT>$kUZ{}nk;nw#m4l{+RLux=EkTg<F`M5{?u_{OR~D~OZc=7 zu+G#2H{)W#fPuW6hESH+uvFJc7hEpVyuW)8$Pc#zHKa!kFMK|;dq?S=K2*iaG}{b! z_0{BvWHMUx6*w)60g*qzj3<5<^g4h-U8}=Zf67+Q5tjF@>Ri|rKhTBEs&rl-K%_k1 z?U=D;kXQkQQ<?;CWaEZ^Mc_ytcU=H6IY1ICoo7*0acVW}-Xf5dkLqs|`LdsV)^di$ zu_Av4=V<MA4PbJ_v$VEfp3d3z>eI;-XX_6<YThmc;=nx%&3FP$Z4|mpp)2MD2}4Cl zpz6<DL5N65q0?#glGNYMMSpy}<cAYRD5b&@#~r3Tx+lwzhNJqqq~CmzEv%4fV{!1H zyza1UfIevpMz8^u2CbT$-73KRU-47CM#M)MLuWfQ6;)gkiXrgQEhrxYC~v6}@`K=W z??O~!VniK_2rL*-16i~`B9y^f4J_<DyDrX;QngyW+rXeJ2g&^s29oKE6S1<X*0R!L z;vbE{npNqa_OKB$6GTWNkW8?_8Z{Mm|NfjvJ&n)i-K^}zP+xRi%s6hIWwakx7tc_O z?Ds(eMt}UUpnLQ1QBpE^sevhPWdxdUXP{e^Zu|SDiPcw>azwxS)W0ALT=T8n4}Lh{ zqJh(-OQ&hM^#_0$b}ZA-&uQhqxb{&;rNwcDCe&dY7gXj8#Cjik1KZ<gA2;fSk&7Va zgtec1DmQH9W$A{em)nmg(3kNO4|dilIA(JT)X?q%+RSrCY3hs{daS@ZiiMBvzb<#F zcD$lO(~tc<Q=sl!!2v5W;5hSpj$8=`2-!N#te1N(bfJF|wt4uH$$1V;sqx){VR=Sh zfo{JMk5ro+sK0-~TBS|h-V=v9A3!k)J2~4Gs~0c?=P2)a#gNER+Lr0+f5bC%vNjk& zU5vyiuG~j0CO<!jCU^BaKQ&FW$)P49OB5}o3e~N!c~^BA!7ikhr~}+Koq`NDNpgT^ zaoh)RUjEI+y!;=7satl`0{7<GY=ygdcf{m$X%f86o0cs$54bQWUx0}_8LpMsY|X)! zC#2ce4e@M3f&xgQhb=ukJ^3)@Fg^qH7jN=JMW7h1Q9z9n0Ghp3JoI-ZJpkSxNB_+1 z-xd!LBQ#QE27VuCh34NZ#dAZ1JqJQLbR!*Cy>1tJ0)99`;?>?wp<KYuFGppZ%1Nxc zpp|%{%$V}sicc*KP9SMHIc<~5Rn1&bsK6JARdQXaruw$8A{velU`1&Xs?C-lXUk4< z0<!Z2FR96^f;(daQtGD|oWO(d)t=0NvMt>LVzjTMU$xN(#Y<_i;77M&hTT@5ac;hK zaZx(jdcU81K(A_z9;HOVT?h@cXPZh;F{YE)FkP|T)piY?k_=O|<{AMliE1BO`hT~( zFva0?-Vp8l_^_wUL{=B*FyP>`ltJC4$a*t?6ZC5kgZs?6AtP>Cu~$2eZj_z0e-FZ| zfmfiC?SslIA)#bt_V@Bx_zPy&i5PNL&k0by^f86%dy7w9K5iUsU+6H&M0%PW^3U%x zXZYJyvfF_}E*+S?NiL<u(wN5Tpl@aQX@8~RvLzLojmD$|hAC+Lg;%S}$`Z~W#K}Zg zA0D7)x>eHP1KG#=_utLg(aXp9P{UZ_uEh%rTs!JFTz!Et$51}({{~T@JV{C&m8CqO zV<zg8<Pf-S?V9q!-;`Y))In9_R`^g_k*~{ATg&zJXIE>$7cH_0CA?97{>4%1SHD5@ zs6oGC_cOPU4OZgGPKsQ*O!TA(4xrmW_H$$7ufHw-fO~V58~1+l&iw{Nj$g?T!*B=h zo;fD}*yHmbw4r1K6qpjpxxxtXB(G$7QxPVmk`WogPTm$YRYf72_3UX|d|ZmSd+)Y} zIOFW4yO?D3^f&G#l&H$(I|!)<loTO8TfT4z7EwNAeti%nFNNv3L99o0dNnxuPPbnB zDfCF~HMTxbqoPVX&xM)(gR5p02wReOEP3MfijsXJT~GxkDMQmqIF)?JQQ?ND`dsw= zuAbca)2{a!QNvw0Oa}Lpl@(*m>G{UR%tDnq?7}-nLH1*yx{E}0?~Zl-TMdp(!1P@$ zFpgB;^GHAK!w32JaPmGxaZ_3B{2+q5BRo8o<BoE5g!t0AK?B!iXPDMpMix(Lfl@G+ zga^U4t2F(0r_m_6YfYnjyHQYq%TL&-c$_~0jOIw@?4I}1mGWrXHPFYYo5YbGBxJ6* z7(7Ea4_c<l)xfGoiz=q+dK#m`Y8fgH@6%fKecFJ{O1uK>jF7DdGowyCGNn}clMZ7J z?sPA)S+!Jr4Zng>2{W(+@816iC(|}(<xKDe3?N@z=h)&Q!hO!vT8OB1;4T%DA%?l{ zCkg?vwYvVJ#rIOreJ|&_w7Ynr(hQyWsU3@+Cd42{RaQT$g#GiOJ7l;I(go0WR1evP z+RP&Vv!%WtTvjgY)z|g_2_f}VW3;N)Hi|?0@Wcbn(FZEF`%}$=+;dRnQ7A)iR;nd< zqH9WjGhADi79DHTI6m}D#T|nDHErg%NTis?kLdV3^$HWGu9!NLrXVK?Ou0G$ETzS2 zFJO73F$-%^orB#Vn3EAb|1A+qVwjtDK@h+ck|)=oeak3-iE%E-MqAWh)%P%PzQ24j zr2BsJsT-x3r&of~>;fMo8y!aOo6D|8VZ^o1>2|-q^Y0usCfRw^H1&JW@!R}G+1%AC z#gW^3JzGW`uf4!J-=xGWIs4Vl=5v2a4E48b(<~JJG0W2d^(h{dOVzTiKseEwW+Tqv zqC$ZaDl5>vV@Gvf3VQT@;7Rg1daKaftYzp!>lDICd--M1x1p#Bn=-^AqlN@=!~n@( zfjHt&F%}|!UqWgbl4zi&(j(cXnc1Kcx^iOej}1yx9P-|J>jbtqW=6~8s=J45IJRDk z3nB0C7bmhw{S-EfSrlItj01rXZEbB=D7qI)3o!JYOlm9wt8hY}xP)h$&SuQE7!PlO zJVGGAL3_GsNIt5fkQ`ry?RMz{8bbFLR|dM3)xQB0eh|27I?rxo6a%DN7soQ3`__pp zk%-EL?<0OYlIW~#(4`VANT;eVsG$8WXNczQ4dsSVr}~mZX%nWQ+?)NTptCab=epyH zW^(zI3J?-N&s2?D@xdZeV%<nYhW1cI$;>}&1&Lux1;$QK3Lq}&Z!c;ry3BN$3BRk! zs4RFXIp0#U5&z=o@L8r{(B?{CW8)_mC42jFJ5}&cO{?X4pOt*qOeS$|RKvs*%g!kg ziM@O6K%Dfj#o`Pc1Z()aE#IAWdg@j6Ce`c1njTyHB$S+(jW%^Po$5qVLLsAatzphc z@G{Q%o&#Z97@c$Pb#(P>a}6av63y^W_rLSv%2+VnPV(D-we67HflQX?kmWOpb<)Zh zF{yHq(_#FSFih3OjY`t6%VH+U#7r&|!x{<m=5baeq-BX?1CW(zxVwF#PxraJdZ(zQ z3Gu427nV>b?~!-N!{c4>ZiK5o=qj_XvtxejM8=k$SMeHC7Ij7jZfjuD?B%-f-vRTi zh|h3)-?Ph3Au7Fdhuv>~AWiyC>K-n1<Mj@jmX>DsGENFi&ieL~#70K%G!SoS`&T`9 zBqg_9+e@!I>~jDt4&ZZ8D85$V?)^Ja^HOyjGm_m0Ihc0HtycBhw&(a_EqV18d8_G7 z8*(F@!A}~4=j7Y_f)x{4>^hWnH)wm7kWw=t$e23r75iw4K`la>+zN94df^Y?EUMp5 zOz!wDstJ9)>5=m8Pk=ji=kkn(i*^mIYyOanCdZ`8``HuC;;#a6-=E*?lHUO+$X(#o z1P=##tS<!iOBW-*TM=P%S(<q@nl|IgBxcZj%yn8$iux~mvIjz_hSBmALiT*vvY4uR z+&?TgiB}*!>9>t!WHP$da|jo?Ye8YhIqYeLUVg2~?YHLy9Qfhq8iEgNG6?59F`bX0 zRfLR~%DGw9uH6|4AHs!R4iySt+qv0F0fL^>U}d`UgKrklD90HKeO$Uh+$csRm_(9E z^%?a1!6HxBF=S5aHS`uqwVjS%$g};6&FfOd_D!!agHqZQtk*VGF-2_obNpd42)?J` z^d>{B`VAQ<88J?pA4w@L9ZrCI_IKz-3!MpN+M26-Efx(eW+=iiX0|Pl@f#G79C>J6 zABB0FRWem2mP9r`?{SR#**ya?B53I1H~U99drYL=)O*@&+>Ji0@8|nYEbvz(Bqts6 z_*NufHX_vrRYgRwHhqrn1j#Si40CfQ>MsI25i$`G=}OxFvoIJ?;iZ|Cuc09?(AnVI zW`Lzh0kt^xT?YUOI)*$FaSInD06@cQ#yA~Zu)hl=lTV*^USG7T<WWPm%phS});aDb z%xc;t+Tqs=<tpWf2n*tj;BIw4>4LoUqVy3D=X9ogIdZ@4*^n16vIH?M(XRykafIwZ zUb~*=8jiw$N%Q|O`_Fs7=55xD_&E*qCyGIfc;~kpbV-dq=l1|x<l{|@6k^f5ea}su zn@fA6wX$@m?v@g3M)baLLXlR|wK1L&7>Cp>eyluwp)8&EcK2J|CXP`ZgId|%${Z63 z%aih3tu#>b4^6~eMw-;rbceak6TNKyiv+r@iOEf(%C_A}QqVj0Zv$^5_ELpG!s{SQ z6p){yU0wy2_19?>hzxZgoP>tr_!I&pX&yF3?C2HmvfcbY$rtQEFIOJ!(`~}ZE3HB+ z{Gq;G&-Blmdn)sJ<oXx^`XT{hFzQ|h2P(#ShjvvGISpzMLS)KDsY^^=d+)C&bCSwJ zyRHjgD;jy-hV!{dyVQ>QQ?W;v5U)Qd^&OAbz7Qu*M_b2*x^#5e$|3>*+uw9@1p;E{ zA5XGpca3m2LuTVJ-MztHU!pZrgqOB8YqmLbN9!E-QG!d~WU<qFQCO)~EEcCHC33@Q zuo0Idmb;7FZ%yBkJ2p<e{iWWlSvcdlsGPVTtw~_=?@`YLh{NhV?{^D1cf9g`5efXn zmRC?8RS)ezNAxf7#WT5bpcp;WQbK!sJvY{8&ZU<FDpgJmeA#(<{vU&Kda*-h<s4&* z(QO?{Q9n-@CyS6PtBFL1MzCn!)c?t&KCYcGj0thXE3(cs74EwPX3ok|r~~#;7Xx`? z-!h0|y!Nd`1>;10X4o`@e&vI79;j#pjzmzST{Qy~`u<MJE-4$@%Z~xM?Pe+WLFzqY z40-ui@w)fsUE-UAuO0ZpTqKK~q?o@Mj|F*0)QjoquY#14+`_88rfUpPr$xL?Z0Y4% zSFn9S@)n3R>c4ohKX4k=_2_sK9|zE4G2kk^>9DHYzb}CLJJ>0*dav1Jsi~{;jj|JA zcmV#-YWZIt6C&wang<BSKPc<GcZqSv0z6FEY}#Xi?TJ-Uvr%6_7I)P_uvu%IJqt)S zD6Jm05yFS+)_mX~5V=Gm!+OPzI-B_lpk!E*GA2`W7-nIz#qQ&bS<V}RfJ)r%=B5N3 zth3>0Bk@1R!{HL3BU$MbFeMEUSyONcnlUqi%gsH%Jyg99s!lunpRT!|Bvri09w?gK z<{GjBx2!^=+524Eo>CxN^jLR<@^`LQB|Yq-eyQTQu3Jdws9$7U{0W-Yiz%Qjjja^* z1#-R*z#jOC%>p4o?}$<|$h@0`1#~cSmF*K5@Qd8V-ytO0GGoetW2qx2h*)@v2sFp1 zW2WL#C5C5ibI<dFr;zwVWvj*vzn0+(mGimCQsib#9vXUiiEt=0{`$0dHz-i^j!G)< z#`B9z8E2s!hKx*!tmegC66QCd)x2}z3`0B(W*vg1LqlJuR)d$8tr>Kr_i*Rxj^~S( z#r7c?w$WaL{;T(t;q`ko{kcP#YVTXqI*LDNM`(Z-b!1N+30&7aXMu)zKO1KlLY|71 z)ue7cJk5fRN|ms$2%-N4@<2V%k$$qN^cJ%S_4VaT2vA20xfy>inRDjZ8btVolw(>O zcTFv(1;qgeSy~WKQc(M?Kx1+w+e5S>7~nRyOq>2H1dz`3^HFf(yoA0=reV{1JqHLx z&JyjwE^=jS2Fp;LZbntEIp>=I*_TG)YE8U)&A?v%P`~~mB<}fccraX9Sst36w9`xN zs3ZhSv?r0M;F&}P%5VPm?g4CWwTyk95e+T{kY_PzxdU57sP_8d<65$FaSqZ$z2Uq` z7Zz&22o)^bW<ol}b@(It0en(3UMR3KBD#P5BmVBVWHGE&7+?|XlhomuSNe5QAj>3| z<!ZAbild~{O?O*h8br$uOnU8imElfDAGdB85cn6oYq=o0q5xYKi^l-;KIg4<n`l|( zIVxRLBz5;ev`J1e&!sM_a(P@jy-M90%`w(wo03IW05m|&w!e6%Q3I9z42-<A3j;lw zl2v3_vBU)nC$=^o**tLS$NOdFK0Tq4-Y<i`<6Mx6e_4Czrdo$5xsN%!*6aS~BN;#7 zC4m4`PAlTevH*A;(Il^5u};8Ck1>ZLcr=a$Jhn}24xESJh>D$i^eQNQU(R>>0JW_w zT?V&h!zF%97Ih?FeAZ<akI(utq9>lK?IhkJ!v8}wnJfkKSovHW&+MupF+I@pPU4$r zYnb<e9cQP-L7PA!GI#E#S^Ty`d0*hK@V+|H=#-IhjL}XCwtk<V-m5adRl=KzzzZ`e z91ZdW;3;pVfXgl@K-Q>A|0S#o214x9Q&YII=uxs2iykIBwn-#bktAHD%5Tu5RhZFL zHqlZU+8J?G6r`p_4OLdXgGOBh)+e*-oCWj3QAZL|AEuHXQyB?o^cyumVN4Nqz1XI& zMsymr9pWC;n=Rhoa&*BEs4&QrF()j{7J-ww6?u^r<kGRgqXQr6nS)#$PS>0i%o!Ia zJA^bY?u;U%$_A3%f=^CC1r@I^qklu9DF%8W%X&wb6~^mt!7M&A)Z~a#GIno`2ip)r z|JZ)9(*{*8e?IX6aTKE9QO4L~l|OPi$MPDU=G=NNTSYc;;5_3-V|{$11#11rP3k_7 z(0^C78<-IewX7xU1>7KaK{G75b!9r3EpUuuQH>{k1*0Mnf^xpxGi$ZVKbfiL;+t?M z?y1HJ(-FOC5m^|Z`HQad9;LA?;aYRZRC1*`Tvd+=G_I|sV=(bc>6<X?1mXOi-ygWG zFl9q=f8rQUupF#Qv$|t%xUNZRm8UQO|53y-q!vLi>nyn|`rqE)2Iy7&BH}n&gZ3R< zAO_Y-8C-K)L){u<EmSzg?)RqPlPA+$hBnpnf!PO9>{LXDTu!65TK&IhJSJ|)GW{ez zw|>(Lpm?@V6=>2v<&r!V9y&seW1<s(&!DE{Qx_%kPpZ%yb0+1_%f~Kd;D(sI({Qcz z;~yEIw(|BVK8UZ4oG?o(oAhPW8>`FjSs)k8mKC54&3r!;2l;H{N#>SE+a#t=Z&IXT z^)v&_sEjB3Ifz<0)vur;eZg=;urg^M=&P`7WbvZ+1i6bWF4)st!FRtiutO?N7-FGc z0_}I+MPy(msmp!T^W_1$D8U&#1OSu_PZ5M#Qoi!Nmr;c_2Cj5V&y2N8bTwCL)GMmR zg{3vIv+;1QEPX4SFaN!onwqNW|JACAB}%Bp>A47^k+@Hh(0Kmk2+Da((0oHA4Fj*> zX80gTD}tvZ9b*l80+Lojlri`HRAA?e2S0*p75H=BLI)W%;w|h^$1WLT<sr?2OX?2N z!7yd@C<S4~gpwe@GYZ(Kq7HXBB_NwWE@BSeo@Kj*pBp`u18m#peds?6CK=)WUh&ze z&}j6be%f_=1uT$@t=D!Xa&G!&pZ{W^<S93G&)waB6rFWclWiErhoq7!(jgK8(%q>b z-Cfes(j7|q(T%_;DUoi84G<X8onuTz7&Ru0&hPc`kLSoaV{bgq{oMC;{jPUaYlnx$ zcW1z41kyt*X>FSHhp`vBaTItx;M~yLHFsF^#O86K<BCXXSR8PYF~LNfb<1D#+hD`L zwlM|nK<<3u!o?TkXdm_?ncA0k*j{-$8#%HlVH20^A+>5<Ls+?sD>3-FH!w4DW=k<p zm$0uj4*mIonD0EY7*b&xgK|76XF7ah&N@c%ib5m>V7!^ui3*W|$oN;|r^$I*{O1V6 z-^NfVCvTY>@Jda`z0`ZH$!)l$?<qnb6i+G8{*h78cW*gaU7fFSe$Suy8x-SgM$nhD zi4iYs=U@1qmX+b#JQnvpS!ONyR7^#p3~T_+T$YVSj-e&md!0xE_85iFNQ?_w4v2^w z0+N9_&!*4HdPI|HD;Q91l|4NA(TIPhI~T1V@+V!@)6HXL)$<PEcJ9SeTYsvgp^rwT ztE@@vekogQ=rt$8!x2fVbfHv<c{)c!PtO_?!;<|dY35}@Q&SU4?yR#HU~nTBIeIS_ z8lXU%rZQ`B&!248U92Y7u1>EQ4CcYdshD@HH6_W`Cwou&LlE{-&ktzU#IX?d`-QIh zTfs^w6J80#g+Sz(l7|J`J!2WC+Jy@QVc+YGH0!!#0jJbmuan8+Hy8&zC@~-e8sZKF zTH<4yY-+8GN*^QKOVB!wi5@R1vc`cQ3Uwm(tViniWgAyymG0Z7W+{=j(RQn`R7@)o zaXIig@MZnDEEqv^X!02XKS^m)I(|hi>9j1#X;Rcu)ZEma`yNW0N=?>AK~vaEH2!@S zJxa+GdujT1^Ex&)ca8eeiSY<V+b9~XBqtT&Oy5l3vQHCnbYBECo)Y1`f2NB#zPxQ9 z3AulE+Hv|?_z%Dti*|r5|K+0pu9jT#qgrpC(*k!XWG_!|oYRR-*r)Mc^G#V{*7S`& zbMV_S@)Er12P(=hK8r4Va8*neNfV$`akFm~Tr9LX63de6&?+A-o*lb5Z7KRT>vla= zS$w;cs2#f4Z4-J3l!5M0^d5icV%|<1@_HfB=BOx<PqwS^=ylbx&E3(065&$M&V;<h zUGe~U*B^8BlRHYslV98Gu-(&Ad*o5Hy!F*5bynyV{oP4w17sW5E9mC_g157)`g+H& ziz={?;t#svm4GXLvFq)sDcPMryuIh7$Qe_WofaLb>R>pUTK-ID*n%Q(si<}T(_{7c zI>!pMJS6<`G}I>Il6dj0+yx*p?{6Mve)2i%tH$kqm;))dxuw5Md4R9qxY6*;p=U=# zUo3~1R`lw3vS>^eomTe@y&oPlkyE`IC<Fq!J?gxaKB9u#Sr(q&o-U0Pp6J5gWRkfD zOw|vQbffDeQtVp-x5A2aoKzoGMDOFE!a_nq!on=MjCiOtDl&|cRayU}Ee6+_3VWXA zdofs`oP$3E&?N(SGUBXR*R~Kqu`P#o(ShsV-2jzdwILw({YSxasVZzQ^Su-Ay{G^{ z``ko-+dClWJRNEOxk{}_06tg9_SqDOY<LATEla2P@GpKG_6eYE0o1*lrOcw^a_vXm z^`QVfGz=4pbko%FI=_MZo0X)>-<~_m?wS32XF%7-!}4;s=NpMbb~JGSIMxRMTq45H zbO4m@&{X6R_C@_SJ9l??;1iQoHh_Hj1vhJKzE>D}ab%)E5*2+W!5Mw_4a+oM{k!7~ zZ|29Z_C5eE|BvovLS!3y3cv{+&44rxjwGWe_gU1r)VU1#*XN9_@~>3f(@ORuIh3J7 zDq8{fS#kT*jTf4W>oBJ8aT*1mz>LjUL!v_QL9!I}ul*Zn3n`4NJ6@#ibtzJSw*91X zq_N@hBm<Bn`QpOAG52&AYqUi~qqDuA2;#+^nc61aMjO?NkRT<cM&wAxu69=l1qV+) z9SHAN2%OZbe)ppdz;z9!1^vV=^719xl_C)!prkYJ=d{lfeAH?&HNM_(;Pi?H^cNe` z8i9p_sf$Y1?!sp?$$NL?Z++po=(f~wKt3hq6>^E1Q(Lt4e*Al+>aKXMI6NgG(!{FC zb!Fzc=coSN#@$!;aPxf1l30VI=pMwyX&~l$SuHZg2|GW`c+%z-<~+7Ysw2B$7I}S) zT5!&o0JQ&?MTDtg`)c}hII_lOm)#R{Q$fEH<-;aKogsf-A-ivu_(M)!Nzyvc9El-M zyGP(0WTE+t$BGo!5Va!T+q;X2=zc5m^XIoCdNx;=CQGsx4G70n1J4;<ZnX|4WR$S` zB1Dx)P@ugbfgp<ol*IACX^~y|7%V}x${fV{*NUy_raOPasnas$^Ow1uprR#{%i7=~ zAb#3VeW$Db2UeCZ-j_a!T#E-SI26BchgV%lH$D|ugu@x%#P@Q{4lV<Um@{LEK?MT^ z0o-GZn4B2OD#<B|^t@|ZZx)BA)FIq+#x~pBmLjm-cVZFy1S)yPJyr@8`gvf@9Olgi zYe?6MJHUqq;A!n}Q@Mw&aJ0-+_V@8|5>(j9?&mBbWrYD6>~U4`^@`i=RpS7-iA-X_ zMa)T!m&=hRZYpd`SpGPjyjz<hC-Iqh-VbK%C()&_q;>zLn}3pa;K5xQ2YT87OB?2W zT?@PdyEXD=wEQ{~nyPx`ii@>oEx_Aj;RQMQVA8t}%mcsOoWgY^Hz{GJcTQI$gV7Fw z$o4%m(5cDQk&Nok?r8>E7Qm!pUU%<poB1NftBkSMYZUN3X@w*2kasso18qr11p|A~ zme}(HXrN?Gv)vCn0R&!wY_q2HlgGch@hycxBhoGz!3SNQMX2732`_DlUwB*<8xp}@ zReN0lNj{U(g(;Y;fe>_^r>H4qHi;!KE|67kYuX@_kmrS<3!;lwB~xt)_!YNYWK~-r z_}alMQs*%nBFMo69>E;X-Mgd_Dlo|DN+Oux>cWY5685AN#GSp}?{Rk3pYMY|`e|o} zOC1qn4i{w4sUxB+?d|qb4*qP4(TvXN0jZrTNO0h}QRlv?o#@3zH}nL+b9_2^s*QI} zqqO_$OpK*0=y#4X_?ux4==HqCo8-xx$1hAWRQ8-ZBCiPLuTq`m_kyeQ>f7=)jQKD> z7HOwKN9Ds0zRF*34Ab{2v$ljGX8#+Wzq>k!ygCxMKK?-6Q_}dXpxVR#!{0x`OSdQN zcbDZ=axG8RZpvGX@BXAn7XzH&_-0Smcb9`7ZZPin#p{uE-vvEJVKiDL6FuQWBL}Od zNfO9crHo$}T&w1qF#q|=NlMb<DHfyA%s@;AS?7nmZb6N_3a-~>Guz0N4GFO+MDu!Z z(PJeJ4h|-qvn$S}utQyly*b*c+Hlrf9GD2Pkqr0%ZSz2@rPUxeAgQOQh)N0Qf&|bj zQVe?UUqwKQl9H2eHf^8>_lFsL0U|j(>62ZPX~U8%x#Cap0uOu5PD>_cW^vfy$tB?8 z_y<x1hPdBM!C$gC06P4wdq_yvf~)LFwa(3KF7)`T355G!@)ccj9OlaAa`xn(fG?NV zf-0oupOTv8WvTABz54E=+v6(fl$MZ_-GBf8kNYUkU5%j!N>53uzP_Sxi{;zxlz~)P zvDMp(lj5)yp@?2XMlGLrIeELudtT6OqXu@mwELjVJ{n~b<^*#lF*V!L4<jh)sS>n+ zP0Y@~!!d!kb%36l;=5gDcv+GlJ%L;AApob8#EuIy<0K{<?e<~|F)}whIvDO<eRE{2 z{-_iaFL7yGPNF4=-Cqx~TNzy=hGaeEWH^MdUv^K2xNWi`CG){xQv@te=j!$h`Zy#k z#0hT7H7is`5cjrHkfxmFwZK}K*`ItW?1Y;-kWo~jUp=?8{PGv0bU>|n+t(HMODNK{ z&E26Z%g4^n4p214Dk*X;kSi+le{Xi;b}kMFxSS`<rNl@a(brPRcH5Dct2)=exSnhA z(6&6M7JEn()F*lQYO2=>exo<*DNpATFS#)*H;peNiCTlQa8>x%t`veUf8pd@iV&*u zSI4u4OTBU{L`hb(GV|Z>6C>FI!xcp6eL5m3Tl>Y2h=L{w)$<v%o;?Lp2DXBkLc(mL z+sNl@()F4A=k?G5mUTI9Z3IyQ#~Tv(jousK@qh>7pA7u`SG==XyUSdqYnv2}%8JP< z5leCit6GMB49_bbhd;jb^YXvL&Wu@2`yQsDIwuU?F${0PObf^2s*YP8NuY-84j;aW zgYT=V?*QFr^v!A^RRCJZzJ{5E&il%2j&_Feil;`&p-`fJs+Mc|f!0e1*AW@{J--p3 zuTEtWL?EY(U+cMISCLSQP}{jUq^ch9EHeyO8*&2*nnh;Mq!ph#$ctRV%q>lbH8W6c z3yB7=Cp$hJ<ow!}qx70<xTZ!jHth{%(eNw2(uzIFMk54C;mPl`qO+l--3z{yWq~+} zluWh@0B~t*_FU=XURS$ais*ty#cW~V`Us6%8yT9QL#(IY9|2gLo@yC@#9)&jnn^tX zEm_Wo?Nu9ANk2B1j_9XEA4>GAulJqhfmZ9rgNpBf1U!^I!$bY}={Xtggilo8Qp&h_ zU5?{Q2D=6mZ~y?3aqLqhokBv)xqy5_AR9X~Q;$**2Arypz_F2}eoviCL;d<Pu-CNB z)u@}dhF$yqyg>e%A|aHxqFjbS?(!EHx!W$*^c(QnFlZ__2I2LoNK+_jOYM}a#<8<h z0171F27XJfq3<y(@Nj?fOJ<6^y{UCMHZ$%-jc5LhFAG!tm{LEEjY0m1YYKV@<gsju zFh%~pAJbsmr1vw9g2wY>U9KulOjr2pB)E3f<2c*u)@O>%-l|(yW8>$u#qOCEvk$!) z#5w2{e+KnGRC})Y-1l=?d!R_beScl`@Qbk}nVZyNbMANAGipcEn`@+h*7Sqh+i`<i z=g1Oyjdxn^5BhTSy$ML8_`CoJ_{ifgdExNt1=kwmy3bjwPJTDY)4dGNiVU`<uDjP{ zPYxx_1s||j-(4<6?jU=^fEiWz@y1=&3r-%Ab3QRv5#+N!U7k6PYCwnHf`<w#(@`W& zpT~r!ScIxG9`i>CkX&W1?v6#Hf^UGj`WhuSw)r%Q5k=|559v--nG9SyYl@N+U-IWg ztf#ut#IRh=-J`JIe;CzcJV5#(ib9`<ig1Veiou<)Em`ITRbnC|x)E+7dDMw+`RnA7 zM8RA!`v}!cJQXqgDw0nz<K^GJJbH)}+%DwPMNrg1qF#BPpOyA~Cs!@x*+Aa{K`>u< zss?^t+nz2U%zU2k>`l9e_n9!LB>m}wv@H%lwLgbE+QJ?WpmV(EiXU0Js0$iY^D%4H z-x}v;ee%Nx^Kc*BII-!gTkzfJQWuEXCAo;u-N0KPI)y_j$p?LUMHus=ds)5U1L-BE zG5X$BK!TEeEy9H!Ht<xljqa_wC^0l-o34;B4x7BuYD&~>Nox=L%8pCqQl9l5(<)t! zxdP8=g9TxqIe*u}J=NXzXH_y^dl=Nj?D@bxZAhwPjBvPa1ynCs#0LW*Td~PlMiS-V zPp)mTjdH=OOU&dy4|8^#MTMKF84keCW0K5Nk@1_Ffsor+E6c!S)^+R)>m(P!bF0Mq zY3KVi#Igk08g;DN)yh$|Z`^Gi5fgrU>@@V>ss7v?^v{0>R}P&f?}H!6Tpdq@`6Z}u zcTt)?0FnF!WmGtly~ZhlZy4TtR0|(`Yh3p1scwm<o|^*KByAZ-t~&cO63e+4`b)h} zr9LxKAv8C_1W3KfzMR~6fv4K%3zvlK+$ppOaBdVBy_B~v`w%EoB9``$23ci!#r0?1 zq^<{qpLvO#JLIW%R3)QXG6pHWL8q*!VXxC)RB*P1G*n7QH<S;^GRXZ&dwTObxV_5O zE1WgDyw92^#9_H~`HF8g@(Koe{pfzwLjjlsE_oRHEAU`q{Y8p{$q2S*N??4XuGw+i zUFaUll50VS9FG1&tz?=gr#1JKsJ5j()$QuyJfbuX%0J_jzC6UCWniD=uY1hsc|+gv zr7p`=gf6~oz@vkanW=wV<$zlFL20>$B&%-JmYje8>y8;plD8fG$#^Bp@6hS9VQ)#m zXfyX;OYLVxbGjF$I;~Rys?>mTjGUpyyq_kUeb(P9Ubv2t=ALfUcU@fd(m-B}z&#{B z)vz}Y?fh^FRLj*!WACFcLzO9yxkQ1^z^=&;^xQo_@qr_`&fNo~972&^`18H|!`@#P zzVhPqwCK6luDTg$GtrhZrhYvHJHfV`xgBGk#YFkO`@ohvAEhKn>M9~!k_OV3V>s^$ zL#}`4LE6O^SZ&A8gbPw?iJbeN!b4BSyZp;)#md^qSeJayn&aV$Vw@8=&wf(xN_l*) z^RNs+6$WysJsLjr%;fRxy$Pt{opj!SfBhz=RAb5K1^7cpGT5=%4wm~HfWDLhuo`eC z>^r6=C!57~6g$|4dy0*GzB5T`^67NP@-qxe>aw#_hlL$%DwtmfH+@qNyg&DbA?CX- z+)4DYl-5fY612E5oWMGeSYMTm@c=5+Mve_k5f5eFI)|PN7L=KS1Y$;H#PhG9%qmc= zEr+Cs@E<XKY1T%<LbGAiX6{TT6nM5YML;J%JR@-F*sfxps|ws4pNnX4dmaPqnEr@i zxznbbR>VzM59v%B1F)3!-k`ny`R_s-H}yX}4Z7Z7_G($Z)RwtYaQ7!Zeo)U(c^2}f zKV)g;oX9BLfZ|!($P-KChUZVgc;SZLj{z)ShA(zmgco~)Veq2jYo@-yNqVy{Y`K!d z2I}3V&N0D7OS`Soh1!NZ6iUrJv_lt6G)<ZxtUy<?uP<eFyU7cED}bGLwO|4MsM37T zsio67-%c;JBk4T^f62ct1K!J8cLJz~d9NG_XyHN`IUbE@31-^=h6Y@r@z*ywCNE;a z3Ur#!yE=KFBn3a5YMaBfuA#S^bhx1hBw7;3F7a0JyX$jg19WWB?zj~tlu7UPUrI;x z2B6K6C%{HYQl2ch2`+%V6_LA#j4cK)E;ya6MGTA4GfnezNzxEVGl$#ajCnKEXmhAF z$IF}TZxD`Yz=sB&HJs3{N~7H-#Lff%cJmyWA2^D<CSw_S#fLBS$wS)d7Mp{K+^j5! z487wJ=c&{mc!zuMui{^Jhi~7d+<%DHA{+g+Tak_Fh^w>+1ja*=tL+lce&2se?(h|V z$c*h?N^46Wl@?+w6GQlSA++V_m_L_nY>0$3MY%p`V7-oGQPEZl1NC;5e>b@y(SGp; z2o3u4T)xR++jEE5Laob^53}4<X2}<Cdwzq7jD))SU;PTQDE&6K!(-MwNFcv#sX6wB zgn-y0paSEv-=LuM@iu4~OR_>-bH_q3Xo>aRJ`^q<YMjG?@d%I#$*9(zp|86sjSE%p z3;ZC__;giKa2x2fmnwI=p2!?He)v?zo)V-Qk3+%N=M#VLT|n2@!g?*2S6uAxeA2s9 zh@Yyx{K25>H+}leS>Zm78)`665f3y%)R)OaER*WYB_UqBbnrko!L3fQ>ym@zrP}W< z1`1HjJXs*sv`iDXVXw9=!|+MSjmO<}8!z%4dDe6II@iF@6^#92`ec;zeDr0}Bc?G% zWxSXYYjx#M*1;|5TiwV(sc$s)?F?VFjLxIw&!Z#$^wk5+PmPL4A-2|ll7qbXa=z-o zHiQ54usx);;$g)30P|<+dx9CNjX_0(D((Ay06+zC*0a$AoO}VpjLRqD<Bx>)m;EMA zRTXYjGns7nqbZ`&zWZCU)K0aRThNlqq=terMDE|*JG6RDT4|eP_wvQ#AZt$qo3~~{ zdRB(e0Ff|Ef{fnMG*2T|S7}IpRKGMKHsB|D&a0E~UQ0fCl;qUKaTQ>3=xtOdCA~M} zN&HzRut7+RN_N%OG`4Ram)4i_2l!_gOAP6FzRp~0W%7-?*7?YYn%fogmkp0`m0sh# z3LYjwh66>PqUe->AHD}6F>eOqNOdGO@3V0F;3}a7W(*bKz_Ks3RKqDb{Q?+!QpO}Z zm05Bt7s!msEYUaQ{MOb^q@)N_)#l=T5=JEGnE#$xAf`Gi8$9sZL9og%UU0}xZLm$r zbb3_HR~gauURbye1{)2oPZErq6o4sN#}X>EZUk&Up@KzVnm#Vhy*)ubB?205KvQRf z|MI@Na+53TM4-Hy{Cp`=)rw10R#sL{4hr9B;Q^qOYL5~#V$y&n2${;mebk1>G!1Ah zb9sxiZ0YhNbw$?bF9}Y{2QEcYgWezAd`hcv6&}}#e!)jtpF|@*@K;nCa#xt`hQ{XQ z(W+Zk7}9i!t{i_G9@9HJ=LsO@Q(j`tn3#vC;|(ijP-;{dXK2R6is%?=fBx8!F-{63 z%=qN1BT=9X20mXmVecjyr{>3TrBoq`MbYeG9*B&HSYS-}yJv2Pk~N+fH(MC?W$e_4 zk?B3=ma4$SiF#ybXGa>-;|t9Nz7BA-27<fhL>!ZV$swDXkd0*QkeoHq!&m8yVSpD~ zMcT9hv0W(lVd(5eI|tS2HWorL9IMDMoDdHp%F-_x6>1dg4WiiR!J`K~GXb?`Rc}*9 z3wQ)3WGgWxs;4bgcC>5@f?Oxin_ms?d58v5LRkIcJIA==ww<m)XOh)Vaw$IqSUlbp z@FEyoTFFo$*wubgW(RIh5=?vilQVfCD<PSCbWK#sEDbdsC~>BxOg|%1NSM>z(oJK( z`UcZQ#7OklKes`ljtsP*4)xemzEi9_0Ef`6G~z^c?dzYcpUM2Ok<gJe0+0}2pMZ{Y zEY5vzDWgJ=p$m?=2Me*Jmh_$IfZHsC?kNA!k)z(oweWYqZ-@WFIw86s&WW|cUyC;# zEieq>$1~U);7p$yzHiSsJkp#b7_ej&$Ox!_LZ`*4uY!)hKJlI0JCPz#H%j`G&K+EI z1;qq^%FE-zuc)1?R3TKH-ro%Lzpx%BmH#ww?dl;j)xDWxQ53jHOzWtgNq)OQ2+&ig z8zjch!sW+)N|?6$nPuoqX=2`X!1=>Qh?g2{Y~Zs&L-?qhUjFbN%ADpHnplBywFh<n z94$(vStt-nE$7`N5F5lezt^lQiVl!I{;JOP0lzH!l7&jlz12jL%9ch9-Z}8ZIq7X- zWoLI_|Jc>^tPv(aSOpzm?-fZ1vAxl5@P!+nK+nFOK>|B|bh`<=hM?On!7VN2ne2=g zMS<|bN$=DG{^|Vn#`RhY=X7e&&Cl%MoIhqC%qO0m_e^!@x2bNK*>Nwd(94}Mq_aQM zxcot^P#nq!`8{fz7cXbw<quP@_>6i;>_PRwgK`Y;&$&|!y_Z^VCWT_)za6fqL{#F| zPH|D)7G__t4DLev;f`i1I7=Zw$_meniarvJ4_Wo)KHidUeJ>^egtNb;@i^1{Fcq=Y zHO2?=8*U%r84GlWAC2f-&-F&`B>pg$Nj3XuoU&8SVkK!zYPN1}ZE1b#qWY`SD`Kue zV$Mf@o-O@jX1;#mM}D2%$9W;TpGe;ujM$UW=9IA~xcdy$d3(6`G%jMx1wC-vqUb-0 z>8`%M$`ks=*UYn*ySL{^W1HSb4Lnq9n=dT+-=&1tc89(4LIpye)LcJ3ivHNUQHbaa z*)>>sVsexV#)Q1z!}rw<s_(j7Lj^}{<ELLO51;AH0&SyfMvQ}r^(KBg^~-=N>X!}! z1l_|YTU4&4#Zcoj^X54VPeC0_gxKC9`r_UoBJkvwMRDk)^3$DI>REbEn%&Nmu^RXr z9{Q%&sE2!#qs`+!wKwexguCa8U(ohvWx9{qIuHjJwvoO%vL00?JrR)5T?1x2npztS z;ltjeuccZrgJShvtFff{y@0OH$jhGi#(Ptdd4<^ltR0B;4(xs{16Xm=K)bN4B*vCA z>pyz{DrLO-U?5FeTP}=iS0Y9JVninb$oeB6pfDGPc>=hCfBn~7AXOuOsb>o?DIe}G zsPb|phyNnBi4yb*9<zWR+1UKYJ@zlb00k&3ovJ#+uTCH9$Ov+4*8=@x0P(YHQeb_U zU~-K{-lC5-Rdu(*_AHS4>NjJ(VJr!YJZ3)2z;Ly;&LZ>Tg9I}f_D%45#Dgawmgyb8 zXT@~(Nm=D4r(QU33GEd^Dqo6wPt#oPxDBbwf1Q$zU-u!7yrD;XA;fzGk?j@IJ@t?j zo8W9<y*Nb5|HcGW0dY0)gF+FTMwe^8e<H&MxTPnXQnLe*_zJgwhK>8@bFEfwUcAit zyN=@&=oWqb9d(s8w9o(5$bGp{JW>8)GVr()H6F)=Y%B_SZ}i^iZhRrZtRrR3CvgWS z+y*xv`+dJiPS$lJ3`eA30-#Y<g)*b|g4cDuyNM&N!4ftac$f*@J^FGOje5Ms*;+iU z(EJ4e{YnEKr^`Q?SGdbypXT%H6Ze~t!;3wfZ&gLG`fvJH0oAhB#i8|bXKS)A_JKcq z0Ufx%nnnN$y^<#AbxV<rXI(5cM{B16U;1vs>WlI6CH;ke@k|5s-7Vog;ERh@fk~p| zQ94&I^QsN8brw#j&hRl5SXn+O_Ig>>xnc1&X;2Ys%$p=ymzW<b?mNv^D#SD0E!i`k z9k~F;!V_U`Z<xcb^ks7_S03Qi!1JzQX!(nSDopUWJy|za92t7M;(R?KtaDXB9{EP- z?z&3uq*{G3VhG>)N_gZ#C-NY);p(!bI2<P4dwC*md7Se?{<@>%?h;0Qv(jtXw1Gul z{UXIg-i4-0IsHapLb0b>j7$FV$4z5GSPMY;rjVh7ulVNIEKmS{Hph5Jeu2Mcl9of! z%SWHu$p89&fDN~K8&mJ*pc%4YOr3}|LV-8Hcluy*!xu-h8g)_%V(x#h-%T4be|<yH zi53eO2<f>cjpmMH6dX`X)nZyUpg(1Bzq!0U2l%Nx&E@jq+f@x{a=#W&#!mF9<j-!x zwm?c$Xc`e@lPcm?L$9X5e-CWV3-4OV_nf@oZ~I!&b3Cydj%iy~_v|jjkzfW5q8f^$ zlYq}&xjgw=lUL+K=mCU%PC(CI)c-ND{?FXX>YTeh0%F!Nd7Bf4qB=`>p<A<OV)K@; z0GnlS_Sb5EbuZv@*Bn9S6TX#q&5pw0gb_Y@sNaAV5e+C@rMBLdJ#C8q>6YY3J?$p{ zx>aoZ72E1t!ZJ}!`Bg>C_X}6hNeDt4r{Sj>7a*T)Ss8DxHLqieygmfnd^Gmw0|q*> z`;AY4;FzV=HaDE4)H&qcU#R0)jt8Ra1W4qN1Cr;C7*v_VkAYiq1+?ylWe>c8V7@NY zuVwpG-fZ=MW;}g9izfGw;bZvvX}gFPV47y(-WUS%JuKXYsJuxB1b`x{C0t`(YVI`R zaNU^>^=pRg<sR1hlOvkPEiu(<prPl{39awough`a{mFv{=wJS)t9;R+9Hr+Plf!rG zPTWttu}du?lc5E27v%@&lg^65>KfTb^On2ntgE|Mbxz#bki5KIuy4TF=8pfKZVmc) z?JVB_t_;S6G3<qTe<R!tqDQ&SrF(!e(6^PV`vGN$N)z9Xp`Y(|+LlIABSduUPnz6x z(HU2h^y{BI5MYi%ksV+<yZprD-jB#@R{xcX-`FK*7jVU)Wnrr^3KQfU+4@KRRxbw@ z4Wn9Vd~Xx%*zT{919L)1&F_X=R(2qB?#@+L7I}~3=*KlDXj)L1d|@6n$fCiUF^7RT zh;8T&srb00a;~K0fp>I-6YzLJHgl|)xRUe;)ZMDv=FMHoTJ<0^wr8(B%4f}8>XP(T zxLC8(N8dUgcd;&ce!GKqN1nkM=L`zjCLNnSeD(x~86ox?<F*@nPDkwzbQ23mZNr|t z;=~t0Ho1iS{##*DV8Fq7Zm*FhIx5F)bg#UwTD@P=b7$0HuH8n&>FArI;lb_gfmR!g z@%gP{#ZQK%PdtJ}LC`M?uCYo$3z$s}$VtKiqrOMLk+}t*=&J5x=;_UYBPUfjzc2Y| zEY?3&cKwm^R#xUE2H0Qr6A*Kzr*8s=vJZe#Vu?x`t9g4Vez3yQo@w|Z;G@J;I1}@9 zZZ~nLm%xtj)P5$g3|J5libM`e%gV21<5zZsEs;>tZ`@#)cJ~ur5Dw7)h$9VcC?JPj z(Ai&lL$ThqHxic8>RI|X5^K0VJ#F)x760;sLtX<Xf8WVpsNVS#W#IK(h;6v1;MH5` zzC8V0rBJ*leLdo;sB(gIPgefexYm#w>PntP2eE~SlHz<B<71qc+N{Vm?`V|6j>j{d zb~mARuSziFWG3Bg4lX>%E2i6&z;PvXm;ViyaG$@NWwMU?g-PUz$-j+G0+oGuXkK?Z z?ktCGozs@yDbM^TBjluv={xJayZJZh|Hpa+LO3wcD^GQoZp37>J1`dbryLN69wy6B z|NB=uz|*@v9HzIA0HQS;tUF=e;Q#*n4|wZdH1r51eEye`lid)u2}`EO021}*GQaNs z%O&;&6bb*{=yo9hum=amk}(n~SFCp|3+tsnnjktNNY&#1uwWGYAuICCQ<~$bpm$5| zjOX@r49%II3o)}gbpioz9vEvgiagYA@hrSv76tV@d4ZnZx!QcUQvqx;^KqmH)m1At zz`e>U?qym?fJ=XZY!rSmzU0Z4LowX0q5NImpIOTj4g-r^fIg0HE@b71<;b2HQSd_` zWZ?2zytjx^q_}teVou)wW_q%CCC|7fla&5=-J49h^F+lPO2`m4CHq`nyd9Gdxh38G zZj$G}cbw<^2YG&Jt<4gCAPKyGbM%YYz#apupkGBE7q8N9#TR!&X)&)oyR9N`#}T`- zz)HDQNS3whnab2m&%`_mg8j8Fr)8sMW6&(d7fXVkSD-rP9ENOPU@ZrJ!sxwZfVFM+ z%ma#*4&)2nZ?2sof<5R!+zN{g=!Ea@puoYq8>ydyE-co!d3eQt0YVLAz~tlN+ngmE zg#q?|nWQ=B-e;44Ob@?(Gy35uJ5rfj#~JavxFG}uN7f{D9ewSUzWDD&)pM<G7yF-n zk;)y&8BZ~L5rw1~a+l82aktP(sN)-VXPi%vg|IWntv`WxJ{@H&cNpgV(*>t+>)wt( z2Sr{$xdN;{zI@Wijs9-`Z)QGq<WS&lwfKqiX8#FAvIbHM$$acNg${yZ#ryiLYNjNe zi6HjC7NszBGSDMV0^VSH?seM*Y%f4LfgZBe65nHAkKTdRLp<LFnI`v3-c|hGYM6?j z`FDeTkCu9Ez2+AXktWEZJ==PALEXAWw}u7hBEc_G5~yB7tAHJFla`mMd=O3dZ}s+w z@Y`gs5_9j#$ej`uO)+-?NM{S&|A*4VG;z^l%0>?$){I=JvCae}VL4S*RRaR<zPHaK zkDlM15ij{pav3BQ1dX-o@8U9__ig6d$T6zHKpD<vr<ujq<%ZVKwmcpyb0NQ>CnlCn z4kH=bRW0r-&Hn<i0C7uE=)sPN<rG$GXHmOKSPr_C+k0IhARLp%nj-NVn7)d@mNy~~ z6K$3=P&vVSzS*H)j*+NlUb7wx;y25`)%}_XZ*Ef^3{l|ZD>0Icmc)m>YF?)N{NY$# z6!Xx9-LK!S@ltnBk4{(EmdFc%OURFI#<>uO_AfSIU}<%xBO!`wz+E`cHVKLNQ4i6M z*r)S>qk#gTLcI3OxVBXtRK2ujptJYrVZ>Y6sl{cXy~Pm?{uATc<Lk8fZf<Uftt@c; zfb}E;?%AUE7r6HR@dvch;Y;<WYqcy#GpQk|;k7qi{oczpZS7<4fMUac(jAlvJPhGS zBM{=6iDxGV`;wt{kic2{(3Abjw%OGa*@KsxqqCgcIy`1nRG&rT8~7;IRb>uGNX6f| zCO0zjvp<BVQ!myR+Ikv`&Uw~kj4AP`H+ARh1i8V)5_#*Lfw&eXn`Wm?``CKP2&&j@ z8R5;@m-$~TC;Vp7Og5j7ew+}MHk<M+y0-lbBWpV>RHQIXO%&bWfxG3|jNO|GbyGi~ z4?4R`MBq#C@}b|QX#jN&Q;f|_;Jb<cu!U3O9a1jEPnnLV4(>JxY2%b-CrwD+HaJcD z!3+Oup`Y_`X29GT1$g!lK2COD{t47<HDt~xnAO?j$aC_qUx2H<)kYlHj?%4LW<`yM z`A<r6uOusS$c0R-QC~KtlBtLuqb1u~WW{OF({)~NlEe@v%PP`-tV|;PYuZ#TvFx!F z7VVxuq*`)Ff&PPcN+j%_;Qq6l2Qz9J<=$Y_#k?QFAA!z<Ck}mfsjS~iuzaqTq339% zeeX}OoTw<8pp$g1weCJ_c-Uh^6~5#OBn2mYRw=Xo2a^HjY_9a)4CGy#YC4zV-{M~} z;)W-6rARbm$T~_<<bv&Zad>P$qH;VLXgo7BNc5iSKPLSwl0MEUKZT=t`2r`YTCE<$ zlZ_TBdM&#fES%Qq%E$GMB<zg?CWKh_>}(%bUwQWcHjUsj7=XneL=XJZqesCb+hH`a zm~SFj65R(17LSvE9BkifB>_>af<U4KQ5kqq&nQ8(L1Wh2|E0Vm!uUz8ZNyNp2u%ia z%=&bK{|n1~m|~?;!bC&v@a4TCm%lrea@%L14<FI#3JLTczEK6Fd&6<H6TfofweNvZ z*QdA^z1Bd#BwDoX$r%u@CSu)fh`7aGrAlsn(tdvbo=H0$C~CHk8xO>O(|15E15#iu zq6^D^@J_)n#Ra4Q#>IQ9c#kX%CJHKy@Q9<t`>}8g@*=ob?lK`4pEn^2qD?C;kb;lA zA(ARwAs!Ee79sR-9LVjLRh%CyWo3y4*mX7e(|UE1RFh>GYRA0tGhg!#M;!XArmJgP zYJGY7f#x@t;1ALL?xWv8f2`w-G1+H=)n+sRJUn*shzURI^LoN_rqYV$e>;t_d7W{! z`TQyX)8M3<V>^`LS9>(NVi)NzuYGMxZy|5KufeEUg24e3-Baa?xZJ5i25lt&Ll*!e z2~+rlS4U69;t5Ny@3+n9Ibc9f>*GJGkIuuQ-Jm&P=fA0YeHP7})o?+2ltXGgXI2m5 z36MqN)4S*!Vn;}k`XZsLG>sY!%{#TAj+tuGWHeOZ0d9QeH1AViP2v9v{nRR42}Bfe zlW#J9rryko1{+QVGQac}wG*vr^M{N|f@r9t+WKk(Gy_IEKU;4*dK0|W^2>M1dZuMR z<-Gc1n!KFCr)s4drPn_p7d=#}j|znD`B{~#!8n7j;J2rbi_ZrqkmsxZOA&xZ<544` zE2aHBo|G^^xvOwI4bc$K%egbDQ%NeOeNfZqC2@7XLFUd8Pgh?cSASRFLAoQTuwdW$ zP9v(w4A`f=a$rT&PG<HtM*RmNj}n)4SbtwZqgA?%ey3_K1R74A^{H2w7p)4)HaUc? zVRuh<1V~;LX>i>?BXfCY>An!7Z%$OWV?Kvn>pf5G4H|l3ZJWDW*dJ)zPO_2|Wcu#7 z=^F}(+iDPX{NTTbQ8*+-270HAZg37Y%l{szCqRxn(Zc7uIF?lceiS?R*-Ad9gDAN` zX<4A3m1EVk_h<$SlP-k*S|Vn$n!Zlq6jeGYM3#ov4IDHjvB+i>5G4H$i+@>Y)*kr0 zkL4by^#sV~DZvFjEi}`lqj?U@jU|9o(5W*<>J(zG*jZZf{#xVaOsY!3M^7<+*LE(o zhHpjb7t|#=@znBxX;R&KccMq6gV>)vc4eL7R}kcdVS@GTLtw7cW%4MI6Y28YOz^Kn zSsWlA6H<|x62@)gLDftJ_Ax9DzIrLsFY8i1>094+{E}h#y-Dy(vfp}O3{E<a_GNyA zzk985!6N{OA^=QB|1PA7?U(5Sk*o`D75WwCT*GRkG>IFZ1lxV@6ABHtTg&{lau0PQ z$H@|NBF8Ny1Ldn3b5csFImPhgehw%b`jj}dYwa!q!o}Yfsk^e49LbMjQ7J`nRlfZG zTB&wx@7|A(V@W=3<tqC3lywWVhjY$Vo<Gyl$ga@U-I+HPR6kPm2s9?7T`QyRUtA@3 zLX_yq)1ai8P03-u?kzXj4<8OQM}ksSQyEpJF4~#<OwQJWz5E1SIYHm)K&{-k0-nSm zL!zjaS%fY~_~n^ukbjsvc5C8=3Gb6<?07D8gmTeTfRq%TeKA!3s-O3;LttZ9w^Wot zeT~!aOZ9@&tcVqm3@>3^l$UpZ;QJ(1u!#(UR-c&O_zANogn@1i<+}|ebv`8}!eJ?i z5}eMb8U-tHb2*T`gkoHI+x`gPwacjShs5n?NUM_1k1<*7KKCehF@K<eyjmnrjCHMU zy{u6-{vq4y06e;&QNU{*emF!uH9jr?JCd<a+JW%h1g1r8eCDXy{}s9+p`8&U*lstJ z04Sc0?b*qbBqnv~X?^zW_Ua1+bw~gG4Tk(s5Qw9y@-yeZ*vf!JU%r@<(5fQ&7`LfO zkuraz+0;{<w{K}abAj-zxzwcT;(YnA<1CbE;J0O1z{}oyTIY2K@Fk#O9}>l0G*fBv zWoHO*$5Si1u=-tI_D1Z9NB+&M0zZ;@cXz`daabJr`*AU6?wDeqvs1pkeZ{IK#E|=b zdMWjtLf|O#b8=sIbg>}zZ3-X-dyh%B`EEK)HZu<@(F_zNIQSR}oFGP?%So$ckU^d& z{N1ns9O>sr#^G=`o2ym+u){keSPq9vj`L^3|8`H>nP0Yr_`18xXaM9Q;Uk98k?^y1 z>{f^6A<!M1P3ZvA0PConD}hH;jjM?m>vr190l$-KCbH^6MPmw~W1L7|z+)n#v7s-x z>*5{~7>6UJ?fvD<lL}jk9`l7qOLcW;uRb&rec-TKnnjROfa*jAufEkvB0z`ikl>40 zy_*yt*$s7aiKQ^#lfaq#aWq)-a*dPBo}{wsWU%=+Kc=h2x`Eky@Zp=xA-frG29_8> zjud>9%$Olf+*Qs<NMkjmOah6Y6#_X3Uazhy3PJc6)7TjF?sWtf9?m;o@0#>l0xU&< zzX#SxAM&nwY%==zB&1uP%N+@A)306&MMB)jEkwlt0F2>!Q^%WdiJL>JS2G`pnMNYg z!Vi8q5m57LmEhPZfb9B`I5?_QgjgAexn9-}Jf!@|QjPRI%Xi!Wn|$f;f&0}xSt>qE za@KBZ-i(*uBG(C8!{-kjA+@oN9QRJWnpTzT3f?;fD%vBU+{I_{oqbP2n?EY~Q|K$I zy8+C<Py*2-1Q`l{HLKV)$nY^I4R<e&__=Jq$QW=gSh&1)v)65X*VVfQ^>E#Y)2b>w zRV~8sTS0fX?RD_{`?i6ydNcGDlHdAl>W+jLc@l`Rj2uWFX1w}F9=V-gXVDH^!*oCe zhXg3ns?CWRYE8bQU)-dWJ;=<JJ-{R#yr&nmc*6O9EV|@0c({UO4&t9W1;Ad<-Bhew z38!5|jwDpdaC9#LspwCjARouVfOz7QN^uAf`wDbJhn>ORu;XLczsBg2P2`PmF%}FQ zbpMIgW6}gjT6h2!lvxhrZkZpj1@`B*XjidTu;Ilj{aR#R;|6pC`rO%Ko@+FC{lTb0 zz(Ub$m2h3(eGme?1g13$P{55X3k)x-7b<}vDkcJO6nJ*P|8=m6PimdLkkFfjh6vFL z5t0EBEoRyc4>rQyePxgM_-E$-c`Uhu)ShbbB|`V!#js=`-Pew;CRA&~-Ie>^49zaM z1?(>~;o;mLE2x}U=8n9)B~95-s}4slnInCXkUHbg9&=Dy`Tc;&Zuvi1Na&<=0+!Kk zMhFkFO-Dgt|E;c`A~1j=A8{xj7_V{L_W}{HzmXfh2Zw(((p;aC6;FbX%nZw(>J;7b z3{X6`8#Y9cC+OT|I^X=tEY2^t+Z@dXMo!kt)4WS3*+NhZz5PKqrU(cj<W;>nY&Wo4 zEsWrcV)uJZKMHxq=rnnoHC`5<jzD&E44f<uSYO;9x9nNnL&^L3#kf5F%*82c_*lyw zrp!O7_?QCMzS^c`8jMj+C>*!_$o78Mujp#c;11&~k4k2Qdce3SLH=jQ$9~-iCg$fq z*RV1cC2tqL3L^O*-<!f7bUJSUFb%Tc2xm%EcggRoTR`wgF1_E_4aK$*nj=FlTZ&e8 z6x5gVjp)Ta0SzD_pjXXm<gQEJe8*7rGakr1<V@h%6B1bO(hEFWYw-rijI0oMHp0R! z_?YgZv@m($2kHbFj2^vJO7wS$81?)16vL+e`!j(zzfbw^uI{AIvLlV?d@Cy(TX)~m z;E)l1wCCEC?d{chfbgsV+;=h;Ba!D5fS-cA_+41t;t}q;O)i;MHqgrLR`8211-&e4 z&2M`$MxH2b+8uDBWn*zS_*@3v4u{HH7yih&Ubbg`;nTU(?@>c$Lyc#f@1&k*URRp+ zYppP^+V|i!%WrMeS#Ph2I`CmYuIlRHX^ec(^|+=mQQ<?WH|>wcEN?ofp;BiZ=}Gak zm!u2IE>I`_57&fuIb<%uBpRm%pKV(?o(lM;j|d2VQO~?#LS12t@4_Y$L|H6+_nV&E z!`t^7dT$e6)DwNse`#FoJ6Zgq0?1sZN;EJ4p=y8{ytZXh3Q%7H2^|mAU4U>?Y*<K_ zUL6%P&PEXM6{CLR1G8MPZ#S3`SQY_rO=zmj(I7xeu&}qcx21{Lw`Z2V9o!g(!I)Y+ ztuoj^fFzsp)r6C;o!tk)9JY}rU}Fc0T1J5AZDJkFUeRjGvjrTAjF{<PB)<t{ORQJ< znR*}rT%|I!jrrY3F7L*f#=;C6p>tk!#3t<Se2mz-%*W;BI8El-+d9cotY(~DPHO-H zBUHqu_AGPMR8lpcO-=F(oA>WWsa#GoHU`ySgkEyrb9n&bZXyscm<GWfAy9FZ${^EO zf~aaDkh&QWh>cJ$3cRpQnzyj`-?j-eM_k{#sQz~}HCk?<m`#0kbwwhU@$7s0X?9#c z;&=+Uo-}=NwJ?JBfndwP=tb$rKf0=zSo@hbbbC{j>B|P;Mp#v4WzogBvpHVJmm36N z@=Fq)+&<MRLGWmHFE3LG0h>+A{kTNBae%_`V7^bU)n-xIH~+`li46Un&Bq5E)JjBp zobv@2++L5(>!fT3)_(Ix-qb_}-4XWwjpYYDogV-46iM_(Du^UXeSO=)aMapE$EfMm zxx0hlo^1Bu6XWXlzYvz)p8LUKHIlSs1MWkjo5ULPfHh<3u&&IANbnO<@l<bb^|@BS zvV^0QWucqUpPl%+GFhJI(mW_>k;1p3VHEKF$+va1_FycaJ3l4A1(Y0`hWFyVb9XFt zKZDj#vZt@6u9n*gKa?Y^1vc3=%)5tdhDmdH8IfYL9%UQY9&4{94aNVsVbl0FN~D}5 zf=>nFa6qge8rGYs`K_GQhi>FMx2=lj<2l|Kw>$v{G4A}geSUjQH1`HT1OsnqK=wAc z74>^U+HLwuE=n}^JQ@p1D+Iu98=K9h_F4Tup(<S>IQr9yl0l4v2si=0drJrfdPKeF z9?ZBW>I<WVz29o2H5Kx9$O`)p=L%;LA6BHJ`TO7e=iy|#Ebz(tv+(}8LyLl|ld4IJ z0YBvf{ZZEn05F%awVS41Pd}nKa6!i9;we@5DMW<C(zZDO9Ay2<O?--U4slp@pO7Wa z_0`j-ptty-ylGGjc!9{F9><i}bo2E39_S-pdL`T}`a5UT=VDE*kN(-X+uT23?`LGS z%y6eU$~2{8XzgPFbEY)eRP&(O)4z-h*zh0%x-U4ix?v9%)Sn;hf6)mp8qV7jEUKc7 zS|hb2Yxi5Y>)h6IwmG%cGHaQ8|Es#uURfB|<P%gIG1HQ*>~4}J*%q32&=hz|lXv20 z;aEj3NLP+r7*cA%Y1NWHfuudMb`z2C&17p@c<Dj1NffT~vwPbvTw1y^&~SJxxG3H> zOC)ppMYA=mkb@wG&Xp5~g%33Ly}O>^CrRIX#6ZOj2`D9?s|B!*UOKMQD)81!&xNU( z1UIz?cI-T41liR2<v8ZyQvzaK0sC>K&NG#hFlysg3b1dn0Sv%F>(`?Mw7EnH3h^SU zaQnDg7~670LhN`(kBYWjK^vgPT#Qg4e_!t82Y!Q=!S6ihvxWT~!)`cnuemBnJBU8? zHKX-MA(%jcjECn3tXK-vJKSEx2nQ_p;hWkXOSQ)_MdK`5kslvN(Yu0PdrrHxm9ycb zk)MkvKLuqm{xaroC%tk%OytXgGf0pPgd{w|EzN&NfzKM+gI9t0!+`sYRbJqy+N=W^ z>$rmptPS@oRaiLP&;{98^@O$W-Oar=Ctr8Fk(?3U7rFKG+TWFn-;ZmG<3HZ?iD@!= z2d>MUd#o{R@ZRZp72?^Axy$(=;TwaG2IEIPi~9Lv+>a>iFEs>~5CJ^lk@5;}z(rP$ z{H-0=xZoo;9qyqcV4`#KZLdq6YstS`ExPP$Kj6ladH6ks<-cbQE9w$uz{(jG26&;A zFG?cbn>Bk#z@TG#0sXnhr^h~5Kl;3Jhy9E;Z=IFIJXTu6hGMiTHrLdW_xD1GD{fPN zhf(VSIM(^``O%6O&z(7lWA8;tq~!8c2T&5>lvCE_VE8rkwP-fMfqCJ}dJ3oh-_T>` zV>GOIn?7b=Es0oS8*$iJj{#<Z(rEoCh8lW|Db#*WA}RdHyw<YwXwv3x_wPW;_Mjxm zUO;7(oywzUpz?Xp&-~9zcOP6v{c`zq@j&17Zl(mN#@IeKdlS=<k%%LTNumy59K@gm zSI|7bv>jVCAX#bN%yyQ&@l%S{d^BpQ979l5()VHE7!Xq)M4R4G<r&G^5>YDVR8%zW zW;0)X%sOf`s@X6O1*BiYjKP**r<bnj<ACn3y!t=N${AOx#GxX&8k`_0+_V`Y(9$Dm zlaK9m=!2eJI?xiRBpLS|sh6=^J4DR=WwKM$CVLt?9EkkTbV5OX?(0iF2-oROS)_CF zL>GCIbkn|{B?_a~-ss-`Ow2&YhmY^twurSk?_ryXP_Pa0cn@;w%6~2O&P?_LNHg%s zBGdU~1QVFmDaRkq^~8@tJA|*Z@HPjB`F2}0scD)#Q>N)xJ&cAcW{<~IUDYPF=rKyV z80O$V8^J<E-zjP%^4*SEo~Vsb8O+bZHZgm6c$f=0538=w=?qWRA7Fnv9h~trsTGH1 zS~~SHIh_JQg0(`@x+7(ttTqi~Z0f??-A7^T{McE}s@gC{Ggd5#Wy*Jn_LX!}Utp69 zVU94lI-Rak31cOVA4>`C^uEK;2WM42)~JUdneUIPpP=&QUuoMuC0hNwXN@HR5lMH& z`Y^!1y>Xtv2Q`MT&O2p@WP(UkYZi`Vicp=upo^4o-?A25g@**peV1pm$NIp6%4JUZ zQiEgo6{~Xzk}`&0A>^rkOPoV`vdD`ssDAS3X(T%#!B;VON3A01dzL|Lk5ickDECM^ zgBn*{!(rQ(z0L3KXc^J#xixZ20#2H^dSx*jQG$m%d@!XboEDAyD`rawT2uIc_i=?} zqqQwMHry*$xQuFqg@tVeKW==|eLU>lsXM8!_ER@{p~ibKpSu*Qn=fSYr<!Hnw-fDF zBKSin^VXM!LB3lqFV-AFwJ|kfXTucy@qKIVReUo4`at%9{NL~&i5eS~%#?HAT<)Z0 zWl8%sU(ySFu&c%^S=jy5$NxkI*S+{_L;e@g4=G0e1S#)f@<hh;s}$lAYaKTGP5mWy zk7IY5%0;?QCgHE=TJ`TMQVhQxoM2706qQ8){bK1|^nd>y%48bSE9r9OFa`bWA28+% zL4O3gG#~6$`HtAs_BU1D7Z5+jli4X(-1aI=$xVuP;TY)4UTnRm_G<FJzof|nV~plp zYvH!5XgL7@nRu5XL6stmDU8K=crRJyG0djv8Bu~F_}3@<9GS*WApU1I;Ca1q&Acw< z%BjcPkX`k{Du@3<&KHiD)feJjaKiq5JvTWThqnUe4y%I<U#`qajNdf%zOh@0A&^4H zaK&0G?DWj>QOOny<2v*WzI@dW`i_-wF#a2!IS3uttK<03zm0}cqaMcx-%)||ql&B+ z`_EAAe741CmB7wS9;&vGoIkJeCHTk3-@04}Le55K&j+{A9{1PP%}Oon#mfb)^H+Wf z10D1@^SE?cTtD7JNUm(u(3c{NQbLA#zJ6&5X%-%?lJ-jrLb>>yp+f<D%Tzk{yivxt zl`R>{d77CjnSyVhBAQ2>%gsq~93GA1S3D&!9B_O}_cEGR0M}DI3U|DZbCB1lx=WbU zy{C8c+c|<j4g6agdBQUAJp}&xySPq3PD9??s@lQ?Lj}68M659s-%FCyzlz_8puL%# zX5PE85$5tdI6qymuCXL4F(u-(f1}w7_oU(Gs@j_iA1a7?Th~uRGiJ^^e1>C~!2S*4 zl<z_|*+<k0iu&NC96Qexq6Sbbo+MhgaJj!AwI9zmvCeZ`+04BgST?oAZgCBlTC~q+ zvH@l+2q@-N7VyHvK0%(r(WijPY1UAJL0wV(8xDS&Xo2^7=vI<1EVGqf33U<CWccWT z{(wz0Ua)7<jRol&*RMElrr7<nKI{S5P@B6Di=vHX`@|C|80>t(B(fafid`Wvx%%2V zfjN8tjg`ZLgc${#n5NK};&nGxT5ssPZy1n%l&iAuNm7;UMpfXgj-%ZO1pXXneiiLg znuZEi7`fc*{X0r*&DhzKIhK<se}&BrJB%(4`~JAd559#Q`1__d1n?Byj6A+Aft2y) zQgc%1Yvj*Bn_wV(3I*I}CUrU6t-tl#z-mD1mQg{wyG4g5!Y`xu2D5(mKUZfN6i2j0 z>w(}p2{yqY5Ez2Hy99T4cXx+CaCf)h8VK$Q!QI`11b3I$xwr1CdhZ8S!1PQ{pFY-m zul=o?rcQM1B<KG8Xf<UcSkXY5a>}p8!4M<_F+tpR|4HhxTf;-tB}fj%qDJjSx9@E# ztVA!j12n)@IyNn1Q2{NRhx=Y8M0EsA!;>wJjr($0T$A<u3r`yqwK#;A<-Vp~?L80u zq`p$EW0J044Y(W4%kx|#qkP_8F<o&)yn4rcsO1b%M_6vM)oOK-&DzD}A283T^1m+` z|77e0{bYDOJ@2<`y4PhhJf{Z1O`(r<nj}RFcC;l;Vq$D3xZsR9BMLkvcc%2rvF>&h zWb=IGS@XT$Nfp?H%D3+H3vk}9T-vpt56=n<z3Dt;-gh1ocm>krR)f9nI?sXK3~|&E z1*JI@IX%qCv2S3%o(p4rc2Od)PDo&KZ(9E^7CV(eKjG8U=rVmtQjW(~I8eB;7AoMH ztp@N@pEeF(w_InPnB=)Vb529!hW||{&YfC^)Df*?SYNsxm)-xx^gQMk{jcr;0-k{P zAm!`J*9s!efO?9@A3%Yvs0%1WM(=7YwpzOhBYW&%wxa8-iiEh)NwX~x=jp^7S;T$( zTu&-rhaQ#eDQ}^yh-1}d`s%8F``o(Pa~!C8o&_?gk$@uglm7Vu?|74aYHz|!0FyWr zTo8`F^lb*h)oq*s!+yD8<co<j=C1L&`8}ptMCCG?I**w#qNeJ#&(z*4l1I;PYEb_E zDb;=m4i3!87$C={3OBK_;5g1V|2k}L-*qfkujSZb=!6`qi1KDXrhva9z41_~TToJ= zsU{PwF#L+2w`dbXr`zG{y?p*{c>Vr1M<V&>)z!$M-mR7t)EFb!$_<~;>bNy|6oVQr zkdgJxWH3YuE<Y*&s~MH;4#?@Cav>+*bacZMA<)ck90_zjM7y`&+s8G&9JT+bdAz5} zgf;zLK8-OHe^L+q=Frjij0xv=p80y74OHZ28Z7gYWjT?-w+|=_(iBO*k3!MlaIj^} z8WAr1IDsF%JG1m5CbQCAC${T`K~K%PNNDi&7@#I!rs6U8<xN=5rP7nkr>E|@f*6w) zVEKv(rY6vpPSyL_SNfd3za?Y(x1rmXh9^XfJL4Va_DrGGyg1Z<ZC#b~?H@ByNbPa# z=8C#s0q7|Iq$Jgc<Pp5%6}XW?3iksNFX13oleqFfxV#>c8I10FCiU;LI!{xFO}xC8 zAoa_DsS(q#?ng=TA{X6M=a;ti=T7Y7SaUugI`}=SCaG@vFZfGdw}DsD7oS}41#q7M zIM-pbP)lV(a0nSMrl99&20*Gf07%Z2Dxm)KoE(0j8qsn6b-#q)5+ocZ5<c7t{e9U5 z*nAK~hk$<pi$BXXFN5r5@~710&FsDV1j=nqfIf~u77Ux^+-H+QxhS$a79V91`jt&v z*f<Xv0z<|`#uPT*fNTL_%9Ub7NQNQK(~5Jlrfc3sUGFsSv9(+glzg)2xpmIhDRG%P zFX1~Jl=uII6%#mKjv`Fc&mlZVBr{S?4p*P*L#8SRC5)x{GUSmL9;UilG(i(+IBP^b z&5P3R#<%;MF+dPYmQ;w^Fi+GP7DeG#2%CsYtXm&x4F`BH6Cn^2=wYuwC4>C52l4Vv zT<qm)nc>f|^LB6J6W49+vOw3t8>tX0STVGn3HId5+nIDFaY+$WauiJYMqcsWaOC%! zIuK63phEuJ%uM3Dr)d4>oAK9Hh-BVXRn;=mHPl#w$n(!-&RHRrJU7(N{TDU<cLR%8 zb9wczMtSrlIon*kiB2|O^((>wSQu;mApjo7j<8@0pPaG)3qq?XcoDS}izp~7IoK_3 z3p>WmQb(HBg3{+V{L+p_?MS>|*@$R#jduyuZE`4z@B8lCiRgE^)-*7!ZcE-rlxn)1 z&1yZ;i(>S}o2Dy8z$){&5dvYJXz|we{WnOkCfAMX1_nTg=W!u({b^VH8&hpPoJ#^L z#*<RpEH?lX`IH=SY_%_85Cx?pIvGoS{!~N}?6O3Zogh^dS3K1kPJPR{rzEw0+ho74 zcD4#AnR*9*IqF?jbaZg)6O<cz0dlMm8sNFbJonXL3dX=d>sW0A4~U53duqc48nd|w zGxG8I0+yTagsB4+`p|tr{I@VVzSpyWkm(au-^ap~xQG^d)?{Jc?f2t=+)N7^*`Dpj zLxb(+%_scDi4{NE$W$}Mbc9Y$uCMwqW%#RC2fWb~E72$QMmyV3p?Z@+kCGpnZ=|3_ z2B|34dLwf@d=qI6%WM~KKlH3kzWBgKt_vzR;0Wq=Z+PzUp8~LhpCtT$p#m+>{lZkA z=I$_U>~dYEBw4gi&S}WBw5?cJUT;qI9{}abNhs(~?8{>bu;B5XX5q=sTQ$9IVa#7X zf!RMqITde$>Ps^Ab6{t5_ob3+2g~|~lCh#O)^6tf!?y3j`U&s<VM|FKN@DSiRp=Rf zrzsURiV$vX7hHaC9-<N25*ib}`6kFl<~^{nz=31z?$~JqM7r01yXr!V$TAeVck(=T zHOF7(Zo8a!f8^c+>jf#@0|d3$ui;$&^-8|WX<nXlucFSN-<P1~^~C>W7q5%#I0g^y z)%(`=pM}}tIFEg?+UvQz-vjU?3{5m^Ic;0H-c`Pbgd(KS>nmIT?!9;?dj`lKwJeek zpDu=9cYRME^Q11NiXK`~UzPrt6ss|)Bf}#F*2>t+*RD3W!LcDCxVeALRHRrTL+HHh zV4Qb_l2SC|+P6Ice!CAdx$EbLwY3Mj1dTgfT2*uZb-0{5e~08b-?nx=q~1B@I%(5a zROh{57z(Jkz5-=s@HxZPk5^q)8j3Iz93PUDl17I$Iq;)vDML>e;#>1y0ng~`)zg=a z8o;Cwu!dtFcP9J&`W!l}iV**oS1zKrK+A{DgmerKklE=L&0M+I`n0z$Z%bVJkT@|J zXD#pAXjxO=jQQU^Hb~F2PB*8xzDuM5D%MGnic3mjxozkG+zkI&AYRv9Z@5$esfCOj zpmDweqN!fJ(t63oe}NaoiqMQHWN|>_%hOeCnSi+#W`$;o^mZq}<9WFg@K-`|yx%!R z?FsN+BUtxPoKwr@)NN~=vMA~(icvtZMdc>o(-102-D~V3vxlpT1(H|F$7p9<NJxZx znd`4H+O$G~+;-%SBekFG9(!+fL11befvYlqHJ=rbBG*W?MvK)kQCI75zFx-r^-Du= z$;6VI8;q%tS)qhjt}a_1!px2Q$KV!>X!7-9fsSiB|L6Qzp90-eg^dn>_xqU}pUOW{ zhIO>swLVdbf;@~WZzW)`MF|2NKyav8{glBDx`;m<JKaY(n1EH(o3O>^@y|>ITc|A6 zpa(WJdhvJ12O;lkmAq+-)L5OH=eE~S0+X^7oKq5kTV(I5+L3QK!;y@bHVcJ6k5JaE zsCtDrB!0Sl(}m*g?&*Q=sB!u@>}#s@I+l>ZxWAfoyaxLP?g0Qd2aABu@Vefdow;;B z-&g_q?TAX>GIoICZ;d7i{lk^2CIbo}pu&0XyAGq}sB{jUAELv);B*U0P;ua7Mh`VA zR@B#vA%!EPlHTOZLyP*Z(@XE{ocyR)JNdb%yNRi;DkUZ&>0MeN&3xOJVc%O@twtZ$ zj0~B0UJiSYp2M}*m)FOe;dO47>8M{y37~*IPr$KKt8MrD*J+FaAG0>5KFHL3IWVnB zjJg*9dop6qb>8veoeN;&bowa#YcC*BCixt)mj`ET3=fYKPCNQ-Ao{Btk(K<mL%)_> zmg8e1{-|6FHp~Qqx1b&<D+r$#(8*iJa?=l=J)$QLtI-|1T&TBi;mqrKAL~E$0=UT> zz#8`Nn_G@gJ4y{&I8I8I)J64keG~k9))=s*d=MjDlF_Wwg3t_E+ja3kMl{yz?l<6h z^x-Nut4H)D49i(3v0s78Al`Wi`uN?Y0J9b*2ToKR1)9ee(T|4ID3lpy%!4>3`GLk8 z)E+1~UyP}!V48!v8)iRjHS_64p}9QGb$R;QT3t?^Pn0(Hi+yWsfpAMv24c#7&Bqr7 zX<^Z&r>MC1Fyh5{?#Eg|+4kC%pvU<szYGZJ_k8+eh_Wu<c(j`m_^dY(5C7cwA(q7( zoY8{*1DdBh@5;9%xs(MS$`7Ex;x*X-BYZ?;^7uZPKp4L#EX-MNto^(LCUuSfr9hUX zz$jRTEs37rsycHtwrYn@3KtU^efyNM@3K=jHFHB(q2A1#>G^!9_pvUWa@)_jn4f)j z{!lr|EWV!?C6va>sj7$xMI}%XV)V`Dy1PIY1CAyg=KbW`N9BFk&f(RFW5tw1yZ#)r z3gkQu+INEZChtHAI)$D~%KaOjXF5xg3Bn2>(&R!xdT@xtYIP6Y*?rDzHO?nBi18L@ zBPD60&7v^$*o8Z)7SOf#J5I5>5}I3C9XQ7Fh#z4>Y8^Xu*<zfBAT0la-M)#u<Npw- z8d+h9yhvHB$*XyEh@g){z4Ycu1Rz)h6oWL&S&{y|EPP{+@e2HYsJZUlwvD`-Y|3UZ zR?LqT=_)mC;CvmocCNbfdQ&4KQG1?_gjm8CyiL07mEY<x9p)ZewYk1WY$CZ~k}u_( zU%HA}%OVpEsUQ<kNxD$xwZIz6sSuu;Oqn^g!eJl=bi0E3<?ICZABYO{CJ93wLDkcH zOkSySy4F-<Ot;5f*6MB6>Llz6GJN&^bl%n&ff5QwH3FLKRW2V;R(Ye}-%imM^U4$< zEjZW}y|f=RRlFyhXbeEz)4gPo{Xx3mtC-s<XXPuUGz5s1DI|9*DC-ycm(S2pr=x10 zL)u#(RepM@cA-teO|%5;H51FL{?gb$tXAo}ZmEJHWC2l2fh;%!M228NmiM6V+~tBF zN=Q$Rbg@xi^b({x5yyKHsOVMs@ZtKaAdK-T3Lqpetja>li^{*=yyMDp&=LyCccJ5b z7|U*I>@WHHf_Cwc0Isu#I8$3p92BGZmO0%$+{G+NW#dZboe6`tDBT0L7m$FoZ$B5$ zrW#H6Y5_0QX((z)1^>3`jz;Jv1wm{XBw<MF@f_BUMMm5*5*ke-X<TBd>gL76U{@fB z1_;=V(O|{K&oQiM292&CzslZY=Pd%BJ=F~-g+#?|nDI&noMXa@&g^mBzvu&Kv4DFC zgb8@uY;sTKZGQV@6emlGN!@P*VJ;DdzH#ya!}X=fl_dV#PD>wLd!?AJ`B5Ws#HvIj zYpoO}tvU3dlaHy=t59A0=7KRuH$e)LFa{DPAX@9?@gI*^5^wUnIJaw-S&@j*4ySZ* zS#58Pj51Xe)9h}yco*3fp-NJR*Is2RXOMaBTVDB3f$>qS>tf07&&QNXWPb}mDET$m zq8W~3w(Dvv6NCdH`$~zJO@C;*B+{VEMOC5mZ}308C7pt8CB+WG5|KPzgJOqe<t(Zp zWmCuzjek%fFh-h{q5Ffv1sT}!90Qn1G5invK#52*-?pnj!A6p@+#<^Y-NCtL%C)t$ z(^w+KqQHQ4s{x{|*Jv&pb)3r*@!sBRu0Z6rM*;JuGL;>x@A`PMcnxy<anr}W`^p<x z$^uDumr*yQdf&)P{yY3LJ$p~VUX@IxT8csiDGE)RIv^7*j0|E1pDYjOefXfl{l|n+ z-SjQXN{H!K{HmCNhCNQ94QWdoWTvWX(z~0bo&_>ad;N4zdW*B^ZhwSCcpFoj$LOSP z2*g-szLSM9K=X%Fw76Z6UX`gV6i14YnSxGkm(qtW`a=;jP%2%L#Er2W)W7)U8xsJg zSiiMJzPzW+=;imrm_ZQAOG;3}K>hi+>&sr;cCG(IDZ)wXDpDA!NToU|NeRiY!#RlT z-Q~;5_VtK$?6RXNE1*%`6)(nY<2##WT*9zRz2udvpBy!tc5T__oCskmj@F6mZ*Vwv z_+GlFDd@LJ+U92zCB*R6YMx#JQR$MdO`K^|*VtuE?wyn+<bhB$qCGY{0xa7+E1HH2 z`rKq6;Jf7JFbq>k$=IHWDt}qMCWQUh87?Gf;Dw1jFZ*4^y;NLO_aQ+@Fn+g*r8ZOy zO*LIDf|J5UVL;a0@YBOP*nY!4K`7u1of6LX`*PXSlt;pV!O0USgRN?CCAX{!BK_{! z7ddv1G4pW1J&jfxxaSn=98U?~FOd>hXSCtGema0HC<*G80fDw{L20zG-BawKnKvk; z??9yC#8xrxZw#UkRPcJ+zVq<pptFWGHsXEAK$KgtOo|A+hNHHs<E@qV-izt|U_MV) zc6q`w!N7gDgwzk1;_RDwN<x3oHYsp|I>q0j2rir9h`(uVDnDEev~P;?8fRcc^kHLy z>$~b!hmCj#BN$gbj}YS8U{e5NNeTrLly1oS;&|*yLm^liZ*sv7ay^V!yyl&FW(0a8 zi;K5j$FJLy6*P<LuC@gEZ<6=SumB4$;+hz9N!qV7LqN)!4<P^*H1HmzK|H)0L;aYp z2#WdsrzftkQ}%!f#A<^ikLS}Xx3Mg*vF)JSG-<H_MtTI<+Fj+aEh=vO40H2n7FJD! zMW{Y(VZDGsN@t>Z!*5+I`3pxe0Sp@9UO@}m3`S$UDGsvTfTDeMgn`V##k&dAMsG&H zfs}IrLDwE`K@b>ElpFUqdZ=MYbBA*)?#laZDX4-G#V`&b@q1R>KU@p22}%ckia$AH zY^4r~Eh1jbD_ot%_E=beyJsxJpxo^+maO!M=q4MRKwj83wRHID>sy#}NU|sSkD0xg zy?aJ+{4%6MRM0Ry%tR%q`v4o1VG2qcpbl91fn~sXR`mNYHdn8K1)bXX+p>XfCtAu4 zJhx;dlNK$mPQPNOeM<)Iu+KV)LAe<Z>$tjQU{v!)kmmiWKz+}5!u0HgUj;G6o;d`i zO5n2gRYZNUFmi<(G_C8fju&WEehEVN{6#%VKp?Clko<)Yo5U_YocMl49|o%!aTUYF zXmXPkYz3uMd<XiLGo>Y^Ont`rUJholhfq-pCaKnLTz>o#^1<6fey*=c)&60X3v=e2 zJ)oFGJaG>gRw;z*<5@Myyu<Z#iurNHP(U1JRycA=h@lEMw16lFqW-Guhp%yKjmI6T zg{Cs@ba2q3dqxDwZH+9QN!V`0UYWT{+HN+4SXJHT-|j!1ni}r@&Hr_eLBQR(F#qZx zH|{=GnNNx^(TIXYDpbe>EBYP+2A2=E=X14nMXUsq=2bqD686JnsnARqjOkyVAZw^2 zlfDbOCLgsiojoCmLj$qB*mY_41VF6O%Ck>WZ^tl634FpT)r<T0qnH>&C}cxbIqT!$ z3Q@5O^_QDS)}$Zb2wS&=3bU&{WPi9}K66%#C9xT|!D;FcUGsZ;?rDX8Bniv)h!`Xi z8}vmfz8DQ;-jV{Eux>XSEzf#?CEUh>0m^{`{lvau%a+O1d-gLz5Xb$xID1|Sf`}o7 zrEp(~fXIj2rfu@l64NowZ;<Ip#`MvPWC$VYB@@rprr`r}ue29N6PW~<i@iQnpR7#S zqD&}0ydQi?eR~)4pWk4>ex>W(15n-si62pYub(f820x24C&U9;u73x97T@3j{s0b5 z{}8J&=8m1jpCAzg90*Y94}|U=5VkBF1V$t{78*6JWe4-0ZSaPEHb9J>7L0GIsmD9J zzJ*@;k&HR>L&gLOi2n1re@K)6cWxvfiGOGMGf9Tp2PB8{32or{#eW`rSj=U<pp4pG z{oj}Q|Bg4Ih@>Ed3+V=fr;lSyktQBx*bMTL^ZP6isL|^fJvummnnDrUwKbhrxkqyb zgZ*FQu?U(+<m;%{Yj`n{Iv#R~abH`;dUv%E*L!>Zy0RZ#uGGAc!2*O{xW<U4Nw-7Q z^Epzu-?-Q80D9uTjZok7|29gUzsXO03t}7Qh;Ke71H#cwB78Yl25m2sPxzLd|7kX6 z*!BN3+xx-)U1eVK8?|wF`{w-nEjW@GT6Xt7uJO9cM_op^U_fBZ-pANim=wk2tuKru zg$Z!qhMC7NK^9fVpFRYChH~va&zB_Cb?sz*g5q9xL^ZEYUdMLdDn7|@l_W7Epf)Id z?t>VQyp#h9->7)2cy+0=hOx^mr6I1SPhew!!@A9xvuCRLF*xso{|Im?u<N~XyyNeU z0diwZ59C{LD}7T${#=IhyfDsQy9O;ktWJ-XH4wD{oOFt!m@0;?tLUhgGgYM|p>2_) z|GA*Icl03&QbkFY86U%&FUNQQWY3BuGTA>sTo7qpF|ey?1^)ZqxJvC%0a3p%?XVS- z_e?OOI7M#oas?s+W$ObA5AD>=UJ><AN<}05>vRB62e0A`L1@GC2yo!Z3&t0z45?@+ zPI~isdgj(wctDaW+og29rh^S?TBOAFbk@T+{$r@-t8Qd3=nH9_5(?SEK<~fK+U*{1 zfhc{w+ft|ImaEMOG)(2CEYjpZ=c?1pz0m4~|I2f0t>*b$0=Nn{-~vd#OI}PLcKm<$ z8^}@X0Yx-~)W*6C$A<w?OaU4l3oo|-b}i-df7ms)t)Bn_?7LDK#l@IK956s2z4!FZ zNMuP$xb6=f(~r5fDgn<Ec1<KOx68MMZ1~YHw&ldN)*r^Hi*WrV96tl637q#KDZ7k= zNJTwMhVPPAHg!EFLLyFJ2oXM<zJ3<J*pJr~9!mq*G~Gr-c52JVO1W<7WT0-&hTi@6 zC4ks6{=1j6-D$lJ{jL2X0-JHbZllV`hi?ZFw-=}dTMHYzI?tPLT$xUGPPcOJbzZw( zF2`dcj5p6q;=Fvv{UOy{1^&;^**~YpC<r)W%+AByI4LN{F99SwSjzGZe8FR6w%Sl5 zykw#bN>S1Pi{k($sZ=zRWCFw(DA7nU^&R?p^_#qA4#3P3J8|smz0mt@t0Uf;yk5Nj z;bvRHX593&>feM}f*vbi3NuscmF>UleDOuy1@EOofR@3-w1h43X#@B6!kzCoi8{@* z_Wo(2c~^JGLC-f$Uf6XJC7t<e-}PJHc~`e7pDMM_g73+K9YS#;#pYc{$mnl60o0;e zMV52F<8EnF3S5&WRrMh;+G&{Yty;zH*Z$mh)m%nnW2KyP64e`)=G^N3%{2#OLWYsU zTL~QD(rYHQHU3MTF9V(4)*eq#MMqj4XVKU3Z(ESXX2+N<$pcq!6BR<#95*u(`EOfk zKzp`FGK5DM11-2Vcyu?iH?zn9X|6dP{Gku(R-rj+YdYykjK^#La_kfPK~uEC@d^o7 zjdt!c^oLE8BrXi_m{Fwk_h#9iqmOktTI9hGF_E@%+!lCAGGQZ6vTh^y-sUB~VrP-T zV7+6u?Jj{n-Qk?_Jm~gXXtd>_2l&dA>s`GaPr3kk;18$|hH*9me)LG6fBNfKG{N6v z_XU<XFTT5PEZh2Pb9~1P_J<-Z-1njtY@z+RQ|s$rFCrNvI~&(3b*;yDJD$D(Z~Q>- znaKSd8&r~ACeIJ`JLA9IlK$LbN0SUw@4Fd5&O4$}K7UM?)?l4TvSKuDNrUslj_&cK z>L5yhcytGFDe^M-%@tcfjns}M#~G-AA_4=cYM6_121!}<l_?$kQI_MLA+k#upVdMX zIs-)VYwz0J%+=Eql%Ty3Who*GN!)`YJTHc>?l&?;<ZDkKL030Cl{DNI0jGm&HM2Zb z=|a<MEho<9p+Ut;isnyDz^M!MNO)tLH*nOHbJR&lHpm~4tQq<Wd`J%4+zvw?=`?O@ ztWHUO9Z5NFtFI2PC;R?6I6>9*=Iq#x0oIQ0TZKZRW+kaGnJ^h>F9_<~2Pwih+<d#O z@(D0yHZX9oC|OpL0#!9+Wvvv?F!d>naTN{J{l=Z!%vzF#iVX<8-69|N3$z(^aopRI z{sUjbcsN(i^1|8iw=aL}hrP{dyHc5pS3tA9QF*ejX2jT?@k{!6jM)iH8qYV0?`O{1 zLx9`}7BH4RXr?Foov|z>B@LrYfGH@5;aGdkVoL__9c|BolBO=({g64xL{pHZc?i)M zO2-Gw6XlO8(hJwp7%YAg9|6Oe&tvd+h2G?=bDiV2h83X0Y;gEBka%q9U2k@h+m!2S z&H2A9raZ)%cNt(5Jx-YQxAq_gVI9pcqVBI}6bb!eleqFU@n!(Vd_5k}7hw6~cI7zM zYA~NGZ{ObW;}@NVU-%;aW+h-l6;Hwfk8(C0nWq%bT5*MMi>$e95dv<Dh7j2A4X!q& zngGp#*f@DT=uchHkFnYurt@76%{KxamV9036?5x2!0ZxRcn~$6UBOR?)1P(7Z*J>+ zx`TJMYWm~U_gKsG2DP$>j`J|<kM-g4%h3mQM1PlJKJ%B8uEQU2xK_YOEaRv|u=QWQ z{iP|_<9!bgeB~p3NXK(bcJkcxVmGnlVCJ1Uzcqsah7gl`S@R#+heE95*&BxLU#yGY z9e;Dte&oMO6%{_K*C%v4s-3*?e;n%9Z_E;)c2$l?%i8gJ`o!UP>{{a!J@$3XSgOn= zKZzW&vwJ!jrrfGR-=8g)uW;@=203)8`ww@vn_5{*%#fmJ<boFEo7@!F45BjFLo>xP zn(+#7@u86lSL$>1%#j8q30s3K*bkHTpZ((%9c>u%4&Ht!)WeJsp!D-F>CNL*_fNB1 zSlIKIxQP3ObpLwf>)!rREcr%RHM?!yXZsJ?00{O?DK$!1An7}C(YKVX`{gFT!>B)m z;DoofMts>ips6IM{v;IGD=(%A?_wCw=xNt!f3$+rDey3sJq-6}D~j=fzw2f6YPqSc z^+DzK?{vwSXG{_^W<`?1eNwC;WM2O@8gP2<YAUfIkYP!ase2mJH$3tDmHFyw5>0gP zH-E9Z%O6^)m^;JzQMJ|Wc!~5gDA+LT(HmJ6RKN*}S2kn*F2X<>7a<KVD*@?E+961` zi(}nRsk**VErdlPod14=M>=zKs(QJ*_RjC2j3trwW$83c+fJ5&v*{80HM$eOjeMbz zI$7%2O&jU$SF$3N@=C=TzyyMI$B}Tkkw`2a{HyVpVhmzzz;hF<tw#(sr_M=BJL3hm zL&J52Nv+kNiqxugxZF>4mH{VqH%Q3RdZW|SdhPCLtu57a!Q<&){$IK~ZQsZxfecw4 za0NLz#8SxPO1krzqs5jP!KJ(#95rr$wVJGQT~Mkci!4h7x$Jb35|?DAWd>JKdJ;3z z7s@ueK@VKGKtqVXv2bjc_vo^i`n_B2+u%603N}to2%J!v4lw~yveNa{Rj^@clGHRS z=DUG9S_W20_cOtD-c+sWdRAHIgS990!b2~@{t!brL$H`4P;!$XDiz+9{BmryM&CMg zOM=>Yx~J+)*#G`LF)@UYkbtNsg!&U1c9F{bb-PP#v8Bp#ZL&SFD!c8}Zn#fW?UU^E z{4xhSKTtPz!HjE}!JRTY+YY#Tsdg?Cr<m>(=N4Nw+Hw#?1DCvh>+F}#I*QiAi1tCf zGsIAIFowwXW04CX6%y<}Bs4&LmP+@ApnUy8a#w7*YtqTJ+&a+6ld7P8=~gR}M{xYT z3SP=G#kA#bD%Pl|;sB&52{gpYCTx<@8zltIp~&wuc!ynI7{~U5QEpSJX-bV!*-^Jp zg(9SwG8m#aIUJI0(sA;>RW}^AJQ&LweXEz%kxo@H!-+Ta&MQ#GgOK|p+FJ<u8JaR> znR%Kf*eamNl3X$jjJ?ndZgEU+dFG<!HkQP;Oj7D*m(3}T0>_&sI1h3uN)5jmEgWeY z*J{Bc52rU2Sv0T}UzRzLIe^2ePQ|E7XVsiMKawd#fu|>gD5hbE#fyJ6-%m(jH4SIr zX0Ej`YAfy$UD<Ut{8&uEo_3g)J;+r2wuecWys%0_rAR?$-nBeF>BFFn?uRed+|-Gy zJnfNP{yWknULGG!4`hl<@!(j(m7}HU8!-J=M<Cud21OaRKe({Ip@@umHfYVV(jg@k zEA}}4Vq6jYomkIJr$oclhaW8tc$}t6r<i6Gr<;}i3pGLd${Q-$%jZiuhIX9fD2gos zUv)P^3Fr=I%rOv4#zXnq6?7qHnGq9<aoTEvM<!Y_O&0t|(@hvjy9q`k<>avwTws6) zq}MDngu`e7O7vg4+ugEp$pqHEK7`$oT3T-x7oZD~0&uvNSn3#KXpwdqKsiF!j9i@> z)_vlmS(gn{-szNfRx8PJV&&PM=^9{d6<clM3saun$&EVcGXGeD?8Keydz)@MK}o4q zHYb86;!FtisRaD7qIH|y7iFlaeM7Eux*WTKhN(O8*Ax@<Uj=<(E)84}@H1iG<XRn0 z<if{4btJ2K%Rtu->XBzrXLHQJl<$OwGNX%kniUh=z7X}#3t^LTv{{zfE(26QzfS=A zKWQqu2FsFTIUK4LEH3BiSI|BgkNm!Lg5=!Fj!#v~Qg6npF|;2m0;z5v+jJx|5nZ{7 zx5t$(6p0*1a%+T<c9fL>3u`t<Z`d)sSb257Jc`~8ZKtg&Ou3{%yR(kV(JIHEEBlHo zyRTDhO9jNmb8wZ@N0}<;&a9tnhCfn^?07IonnF~vda<n;PL0;%*4E)STi()fIh34J zV9TJ>d<N7?x#-SU01zERh#c!jsiFkKWqIC*{W?>7OZH6onzMfvm;VTw#99RXwU!w` z`8rTLsi`N>tU#^M2SkwVsMKhZh4b^0Q2v3rkM=pLEj9fgrgLuqU=KVhE;b5Zjyf?R zp-!z4{2s6c7H;9~^z#M76<cDUp@D^ErlXc^mm7ilEB4I29B(@?P;(V%sRj5eIxW^! zl4AT~1V%Vo&kBRRr{2poID{;KmklsJa|7*UVwE6ddpRAeF641LZ_TXaBuC=yNM21o z-<s^@X0CXMboyraQ&1(kp{hO)S=X`1^`dRfWYw<oKhS~h>WqWrd|NxaT`KQJqNfuX zA5`bVd{gC;$(pYcccCRE!vfG--HdEUE4QC5OLR>k*6KFG(9x3)`J=Wg20eSZw>+QT zwp4!#1_T6%gx_6!Y?{~puAKi^wtx8PFB26V8f`{c1S(VY`a=4J+}HPw^D6&14f<ti z-Jy|nGoSiW1)FoWro)o;stq|cm!eoxqH72~Dl^mCrd`WC{aoqahF_JNRJD1&Z!San zKjM&CNzfd8fI$YAmhp2C&@H>A(k}Ws)vZ|o<QwA(wVDO*+|}}wl7^m?KXWU+BeW(% zCWpCB+#kx7v=QAC(mRd4D@e*Q1eVIK1kxFkC3|t0$*`a;2hdvyp(X9(AGYpJ1vqZx z^Pi}M7ruV6#bfO`_-{7@T6kCGspTN+queOoW!5FfCdwk*v|Z@cQpHh_UT77#WUO5M z;hKO5X=_4cK_nJL8g1tG(!#|TL6gc9B#V>zwuC<uvq{JA=F`&3muXg8pv=nG*LOid zUJq%K$9@g4KGnM}SEtkX-aVy}V(JLVabNRX@3?P6#iM`Pmk@Z!$MoIrTwl{CDD}Cn z(8ug?Sf^~mOu@yRyU}fV_u<2bQ_hp-e~eO~toQLJrr%kNd;7P2&Zc!g9%Gx?a@DU! zh7z=UKgu`;0bH_`zJ4y4oS|rw^JZY+PeecQGEi|l{B>xnH&VSyi-T)%BYW(n?fB$i zuA1j~#-@+E7eMQzd;9UVm-?T~s_S={jb;R4a1YdXd_~3MzyFii_1Yr>Jibr0z5bQy z`Ht2DAt6}@iUWZU6NBouc$pISu886B1YC@wPwBWGsOyPjjAn7VE@7i{Uz?ZcXDlXh zUd3ttZ6Jab>FLp{<>cf9@T+SL9wlOw!@Pe?8D2*&<PotF`-z;7fR>oNJ_L3;*{2=b zzumPuf`%C$p9o^OeLYOJv{U^J?jP5h*E74$JhXkUMxECh<acHm*3N^Knsn|r8M3`q zel%~4y#nyWj?<Rgl2^|MsJYKmVs7VY;JWY0#V6K&Rf80D2tl?&9*T-BE2U6!;elA0 z&HzhE3-;H75W^~+mIvTbujWQ&IN1-#iXkvX|LT;;zMf=wR$)8s{JWy=b5QOtQO4}B z-$HUfC9isRCOf?DG%1EB%RY-(-SS#w&wnD1x#G3czveq6dD?z>)0V(`KMT|=rSIg{ zx*W>;dtH@&iy_7*&Svqq^Q{{!%_%Y}Sj=d0h~LI(qxlv|Byw*j0u0^{s&snwVp}tR za|;(KD%7~Vk2(0x8@L<~MsVx3?Xm}bT4!U|%-;dMuE2tQ$Js$)#D#~tXzBPSUZQh% zkSZ5#>u$53<aI!TzYe&Yz_#&q;6toQ6p_b9AOOSHdc51dchRZ%S~?AZKnCgn5*}Ds z@8zNw04{Bg0&-5>hr8|A*r+HVnO@_uIIPFc$mnpTy}mR*Z>~9K*LK|Kv@?|Lwq$8y zVF3`ac^;w(`W=C=&VF9d(x@9muFvtqXu*^AX7?M+0HuEdlhd}-P6-mCML=kRA@Jlt zF$f3{TSJMxN+&H8q`3C}jRK%9uN|oR)=fFu!rz^GPFeH4UA4^UyeeYg`x7TZlRS0j z;k*8P;|*jO|A}w_6^sQN{;{~asY|Ufwf+;%@3O1>&{1W%+?#v3rtfUPG|BC@d-~_7 zAs6U<mi@nWf0r%Z?@c9F6i50|ajY5WI6*ZVXma1p)U=AX?WnP4vJ94Rkjag1k2t*! zUWslc(d1I%l^=Q@%Y|CvBfS+CRh&_-h>49BR}_WrSXx;%!lHhwSE;5f%M-PtHFu1< z`0FkO^BI|u$nK{dE3hB^C~1U;YU@vfAU$2r`&SOCYR^7A?oxh)w6<p6z5yyY^uiV^ zwk)>92eLq>Krm#{ixrm46AjqJjvvb<{AP@LgURb)WMbsxWaQ-I<l-{Jh(;EC*m~T! zzN~HAq_yM3h1QdW4c&vD6hzv7InLZ{lnn2-+;)%rBMHn=?1mp#wQ{ChIu>N(fCb`W z#Z9id!|J1@W$RPo^pS#RV7jc7$N98;!|f6#0mdT!JyzRJKMN{8KVDR9EanwvrRF10 zhZ785ZX~&zwTBi(;xW7c!mWG28RDqL{qLT@>%9;n5n%eU%?bEud0_VnffpK|fz)fp zN3GGh?bw>mofIB<{`)iUlaAYl8sB5!mf1r3_9rH?xSV~~$FatJ*4+usfvHP^<g(bm zYjaup*7q-l@AfXQRkU~zc*{!<3>T2bVm|iIs!RX%p{b2f9Oy{;9XAa%tIp$r0)XoZ zFo*6T5AUw}JswK~>d)ryC71m;|M2E1rVU!h;Z!-z01`~^vTq)@VwMycu=bLd9|xqo zd+1~5&lWB&E&zbG<Ji3Er0&tK)lNZbGWzP+C{&@-pCj#~TsC`Y)4qcNCf^02?!q)9 zk@^>!qRz)>o|or2-6xg9_i6sXyH#nvww*pLzP0CfTlI*<wE~cRCiQHbHBL`&AG?hH zZXnY0?B%}v&87ESewrVfmU~^A7jR!zCgFBSWylIVe|ZDI#^`Hr_I!PK3q#h&(uN{p zYQ3%<?2E9Qw580dEkzv#N#hYGcZ(@Vk>Q<U*6=cSP{GJw+p#TQYBr`C3CHRB6t#|O zZI>}%p~0^c$NKz$U7#FMb}9PUYcE5!cm<QwDH|f;S$R{(a{Yt*!*Nfn$@?3fcO9n_ zp3VrVIj@W3FGnYBK-;~8B5iE+=(!J4rOY2<MdH#;Alu5$&@Jzi?Bg)AP{&)&`D(Q; zgzT%;Eu46`l?Q(QEM=)0`BNk5AiQoqcFuj(G=}U;{USvxC98QU&h?F2wgu}jv$$9O z54ObzrxqRUJ=DPDpf@2uaerGg@$>UGlNeLWJq;Zk6WQa@6a~6bIT4nu+Ii<lgadxR zCgFRYl1FbyxyZ&w4&EK~CSOrQ5kaQP$lpII3(jE%WPAghO~l;857UjSW-T+uvVVL6 zCEPjwNXO<a$15~ZDp2yrj&emvsU(pf>ev<4ZD+lwBixg8KCKh`bS*jRXkZZsv7Gg` zdahE-RI*}5PmhZzvCJR?B)H1LP*WF{i?+1;+DCPjy8X`KCY~>H&ze^Z#v_bqqS;2C zax!GB)6lEC>(&Z#0UL^1qy&o-gN9?&_rHrRLkdMGiDuBH2RtUmlo~X|(sLWajM0v0 z=A&;hZ_FB2skE}CewN2pRjVKb$z`8aDr3^@kk@fW7sz}NEh7@~xsMdGrRVT<SQCy; zLP9EWEHYxv)RE*`gs?}*g<EVNs@GX{8A6Os=q16EgXg-o_C|Fr(q$_4H+aWe!Z^`2 z1oKu6d8<f8jJo~buc(hL5H@))eY<L!YS_5+j;o;Y0NqnVE2EfHcV}5_{`kz@@YO0q z9Lcgt>)4<)`#W5S8SXdg^6=I$@@X0h(FX1nN7iiZ;=>^o&gx~$Xx2>G3JucWxx;I~ z-5}GfZ8fLOz`&`}I7xZl^&2%!>M)n4kiETq+iJ}Ag6pbL*-Ys?y2yI|&U-kR$nEb~ zW||+P#WRYlml=xwkPp;VVuf@#?|q!P^6i?nN$My7gu7{4DPmAZLcqFY`5Z9do%jpb z30la2sVTYkq7H(=!*vOaGp@ca&kw?7-H=2nMXCJOTPM6_gw^@G^?|$9rQ9b{a+ObN zpEL<ILl%{x@-fl#L)Cv<W#+l|lBPJNma2ZcNL39ECN<4t@~Ki^rJ_E=CMLvO-_V8e z(2P9=11fSImTj#HETz6FP6rn?x8uHrFl&omCCB3f)zQK5FNa4P9CUPQ<(er>;+Gm2 zQqaA!BtljiywTv~r23v+t;D<MH+(ac*#St^$+WmpRY>6*A0rP&3+%YXLWA6Y$qgmS zI29<GF^ia|*aqjHrkVNscl~+)L4ns;clKY9;v{b@bhJsG2EZLUF1YC-SFPS4B0l;G zsA?7me@^)ANZ9X)*7Lb%;*xio6+k%rc{GIV#><b^dgbdB0I?N<P|2~$6HW}{D5j6W z13iUPtmsR}_m_Kn$fG>%yvua`j@(50&}4PGp`Vb*IwV0t^PD}VK5j)|*s=8Sj$ad? zk6*gz0y2!4#Nx7l5_gXrbq7@8uqUd3EG2rho`GB4`BCXO7nYUQ{Z=A3gXgwzoGkcg zt)G?O<_5~u$e3hVbk@sMP+$xoeHLv>hG9_AB_;#>nX~))b3{=}5VaBSaKO8OC>RAW zeE{!)921CC>Pvv2D74fF#A5Ra?cH!~vM|IHe;NxzHmE2Nd}nC3&yAS$rC3NxFwlWI z*(1fyiUyrW26>uQq}F$EvWOXE5e9+5;RX#Z!G5H2F3m?o`z>0cOXtZ(o);i$R&4r+ z8(GFrRRN7@WJ1<G4T_`5V)SB_k}k^=TsGD0lPp%Cu2&+3r^NaBlez%SKn<bW0dxn= z%LJ^O`v7NSOZsnVHfDT$t>Dkf4*6(_``jM1)1p@?*Wr#yQekj~aI>VI76;6cLBc<e zS+!ICf}-R!r``n=!g@@~dbj~`9e;rZQDA@p_DpvkZo_m<*yTW@a`HRtrW*SuP^5PN zX|X0!oyZ9_D#>@u!)Wuo-f7gx0fL|bk~^6Q*0+s^)V<Ad#hYeImKiBxwq(JUJRv7h za&lw20{+0V*`P%yjU~Ym$cel}mFpt>lRa$U7h~}Kue+F{B%y$RBmz&Z;35KM*+kX} z)a<m9;wHxZ(u5jlQ9-Ap?tFH*0umXbd%RNdwn&na9T2NAPKgCk^2QjGT^r?ZNvtqN ztyHW{Ya{={CHoG5Vd|-PocCx;=MR;Fst?o8)}2=3dtd6rO)`pmjhJLTZZ-F5*6Cm7 z`c7G{YT~#}XY1@TACT>RfArOtQ-B1uL4Wh8DFh8cF>t|B*LxyjDcZ^`u_LndFi7Dt zfgmVik%NoLdnNc`5F$00>bs06GA~ws?5W?Q_E#e=WFCY!ELX?JU3pTuUZJIbl_le5 zSXX5nn@Ry+Di3Wcg&|U!t^)A|w=8B52Ld)XJ9BBd%^QnprL6o|kYM%$ZbQ8$KkU1_ z0EIj_LlluvIBFQg0!TGH3N^fxAWkr7I?n9wr)<;J^)<>{bIsky<29?QN7{dZIfkg0 z)lwa5%3$ypR#{tiQ?ZahR^6Yab0>Kkg5-ImM8ZD@E;G*;w-j|iXvW4w7%3mg<yb(9 zZMw9${rHJ7x@cR}(#eOdh7e}i<HpN^7ySGrnj+3Ud>CVy0lYq6+M-GhEk{CaZbc9! zoPsclf|>&gEckvo1QdV)D|~@ojFB#k#F%M#!$qm|MTr$(vf@4KbDALLb{LbmOT4LO zkp>|?zSFUAtpX7NF+;Lchi~uwWtCUQnpFe3tVZi@tKGc&3NWv9#yxOw`1Ry%w^m~- zC;^&|aMUSh8x(SwlSPAo9?%5utaam?KC?gH4f|SQyGa8nl0$Zs$f>7cc9S}&hpjpy zgGiw%R;|_detGZl$G2P$`}t~O@x|jzLTpju?*eo2xR+uSmJlMH%L~7fD=9(?FHl;G zi%@t+edOnHn9H^}BZ%4nJY5e6lpG;SGG7`}3X7o{jG>^bL_@m(4ds#!M1cp5nk};r zUk<BEZX$kGwrs1PL?VYG;2jgYZMjvp=fI~Y9ftPfjpXLar!Rdp!6gWZ{~g}fD#r9O zIeC53)qP{1ufT{F#ME3}A@oDWTB~b_VvddCFM<eL%+Hp%v{mv8G35M0u#${nE0rUm z{PIQyAd(>~dIIuWIgd)d0uF={)Aeg>YZQ`&Sv1_K62CeF;P^CCaN1$XM1_}Hvj;0@ z?cR@2FTjH&zfiz{jF>{X5zzM0a1-Ad(twc2g1_V&HeSp?f<+T3g2C%}Jw1M4ir~1- z%|U?WohsG4xw)B>Q(&s;NSKK3axIKB=9yyZSwua4*%~W|r@I44pXpS7&{{U&OHwB? z=52Tu!L1<+!OcoKzl&kQS;|Z2X0=inu`;|D#{Lk&ES7Gh!qj(xsSlmB>{m={ctada zj`aJ^r1fc9-Lr^mn4!(egxLncY4meXT_hH|fK;+=Pd)GOxe`4=wi+02Sz8n?LFR3y zq$KGeg0luog34WX+Rr>j^aHgBU&Bx=k5O)h<h;xPI3qCjbRkk5@gx>|6&_kh7_%Xi zZEPZ^iWlY#?MotSvf=>S!D6wdebKz%wRWpA&)yelmp1d>2f1#xZwlpz!cv3q5aZqg z31|cDC&`4aKw#Mb=7^lpJ9KVWsj}+BWR#t(H%Qaq0JCM#lh-pqCN;q(!vQOh!ub%$ z$A9`tJM5&*8JpN~R5uKSH1v`$fU3H6+humyAJgF%3mPB*u+mz+C-j@a0Ot>H-(sUJ ztf-`@Ao=>b|LZff!41G}Z`LY8aUgktu#L#zIzSVy*_%<6Sl%>l|Kgo3IT|K0emE1h z-8^aGFh+z}p)UU~@DjbvDGTgpYFc(Pl*%S-*r&0p53MqanM^cs#UwlQ0RKzIR*cYp z@qaO9gro<4v>sB0Mnlj$(Wm`&dmYBpBLBPNpjM2azyJ`dWF7ib<G82dLNl+(F%6Jj zl48~F-1d?z=ybSe3(@@?%)R%7iGWNs^Dvd#WtU-Bo)(v6nF4211NuzHEc;E#_SFNL z5I{k?$od!?T%06n&<g|40PZe!o0{x&8y(H<_@n<-2Qbjp@%riAWws+;M+}}pK0w;L zO1|;mI+sWsA<4K~tytrX&9kt6{*g=tpN1gP6mG^{t!+PGUHwe6r}FuEOI~N?9BZ1! z=jBrU_G<2l)O4vns|;MARVA+Yo9pxf);;hfcsUZ+9;h?X0~`hXH+t4>*;T7T!Gfmg ze_Jz|A_eS+<A1+T!<ctv1B{n|onIvV!-nXOlUA|mxtAS%{)@X@Dg;DtExL7A-2psx zopP}7Je}@*vT(}JMn}Mb9N<RV!Yx(+(J>Og(;PPI@6%t<?eVF9J669?6sod%Qhx@N zR^6<<cXxLM*|$hvG?3h8RdX#K0x+PCV_bXKC|@bYz6ffhOj;GGc6c+mPd51ICn-!| z*RN!j2@beOHn3JC4Pjwng$Pl^!3a-LpqSfp!NTRS)_BC*D{hp<$%MjYWV07(wb=BM z#U@nx%gwsfH<F-72Loa4;O;tFVI)Bq;lMI(`(XRBzTa+)K4i!g$}FSupoz3(iZ6<& zD2*`bg1=oH{BlQ7-gJ0Boo)-%T)$C79RiiZu{B?toq5Q6PBcd5J`cpQ4h69PtV9j} zi0ne-yf;Sl{=K1!yRPr`LEf~acJz$Bc_dyc6%`fNUPhk`R<F@~&&0o7p~J+r96(K! zs|}+T`>{ABW5&H41(q;o-3D!V<|H{eF;BVLIw;sTCCX6^bhH*Dk8QRtMKaQ}4Kw!` zNR{zw1Ra#BReT~QC}_n902dqvYzv05ie!O`@6RG|vORP^>0EA;yx!e*AsZ1_EMo0g z;DcPavjYQRim>+<j4_*ld9{Z$xKd+s|M<9Sww=rQyWg{Df=jr^zu}Dc2`>MO0z5S% zS2DT`3`)*dN0oB5j~@-+mnKWU8?PAo9U>Z3hQmA?0xKAg!kFzuEjvw!7yD#rTV_K; zk%TnP#^bk-W3UL8%*xz_8#q=dPAdMrUQik{mG450E;UT~4T)l>6{a|xx_TL-0FE@k zhE7WX`AdF$-%u~A9tTrIJs(Q;p_fU<`vjV)42)rlv8hzL(i@>cBe^gp9!KWS-SR+w zurSGzhS-~S;F-9(0!LTfkr;mPt~5=cseht%s423lYoLwXV^XUVxZgmWHK_n=@QW;0 zD0`3RnYysBRZ=mmAta+w7wT;o2Doq<|3N&Y9p=8xLKQd<m!_FrBSoU`y!+5v{bn&z zidPs(Wd8CmZBdfcK%MEZUB~sDsd@X$jrWOMf{6iWQ=@s^?{W3@kFjR)fxiYH7gx(4 z**0`^bUvVpB{{<Sec1Furs<JThS0PkP4XOISVN0}P3U%<Y8O_QWbp@xygY5j+D)-m z&01x9pR`CR>7IJ|wC!tkGFWY=N(z3VQD`v~^}ES!y1F`YUGI1WGV%rbE8ZlCVF*L) z3%%o>Z{d_tNd@8eRSxJ%!3Joa5lj0P(nwiAiC!^A4uZPAvuDwPxZ`7jH2=F0rfDSA z1Zv3=q$wcHBf4R?N1%eQg0J8;hEy2Wmid)L4#JJbBU><W&goci`*Nub#Ob8jmTt$~ z+fR93Yjv0^35ZjI>ocj_I-GH@vfXx(gPd_0R&Qr>o9{B5a0HDYR*e@U`hLK3JP;-? z+lagCM&viJ<W}73^!7Vx$~YE(-X`fN-PhbHko8>Y=x75v8xfiWvAYhbM1hI#Mh*8? z*t}$bQsH0r$EckMWfYXVPWueti7FgC1DGrd+zE|wkpZT~m*WBg?#%M$RvjJ+Whxoj zW(gEA$AVCtelz)TzOEOx)a-@RX8NRG()u@b{c4rKNC8PX@A5X->G~R}PH4FQ;<<qn zN)mIqx$WwU3oqkHF@%hoO-+le-FDu>XmohF<|}Z%K3z&vW-D=Xb3efL3AvxU@4Fc& z^VSmN^sQi(EU;WR!@VUX3`pC7y2N8mpvd6K2ZQp$;MgfRclI(aVo^Y%iUEq0FwxY4 zwY*k>3h;tpWI+Yw0P<zQ0+e#<Vw$@;^!d6#8227cxYf?w<%rgZOIYb>n-y4i3*r2~ zDux)KXi%C|r4on@*-X-;ha!`hUhLvifx-k*0$eL{a^7^QdAvm0ByzAOt&YbFrT)WE zm*1TT3EDPwgyACX4e*3OCn726C{|=ws)P@pQsh{dz513FL|S}8PZXe(1gqIiC)?yA z4f_SM!pw?d!B}VzV7{wV2f{A<f^7gdLiZUDWCN2I0Q+ZV^?D^<u@Az!8x<9mZ1qg4 z`K|12!5H7(F94Z!l3kLMfFg7EIYEX2cS#D#U&oMmuU*9<fioz<5+8>zvt;v%?;~;^ zD||>a|2=(ciap-)d&z{)P@?65H>WKFf18R+`q^~_2WV5H5$#t5^B9xq%{A3>Hd82& z1Jo+EImZBjAq7xhJ98)tElOgRRhFFw{c&^5C}yY>VL6paF}*)bQ!;^-{AkXQyGSQR zhWQK@F0`Zx&PxJ<5|)3y_h2{^MuOk<hgTme4XIV^w9*H#%2FK~R?Gr8xEh+Nj?1>R zhMi&6_sV`80S;in$@em~??4u?NE2`%kJBSs)V>lrYq2YH7o{Dx`r>0{lz?eCmfcGj zg}O=l)CePPaY4ECjCZ8t-#z~zJl>|W^QGTgd;e@4B}Lkz*x^+L8IuZT6>3WhC;#x# z-@QC0_&`{k_EV6W5D)b5D199=UV7Ctz$*JIks>VRh}V3z)iuQQZFFfR`iXar8Z87Z zPlk&<JeUG(h|RKR|7@Ban`DQthz*EF16emy$`lb8Gi=R!6sbT$`K0f6u;~W3X;G4m z(i0w!e;9bUd@fNbUYW>}fp5g6)vFHxB|GJBWC*{L{brd054doR%^VliLnB(saw4nM z4*osp;SNBF0Qf34iV)bV`b{@;lcs~8-ruaa=$gc*biDf@Oj<pi@;Rv-RDs~VKr9Mq zS_}|~_yj8+hq6$~p}uAa2iQRFSc}pW$V~g>U#t~SD@l!J^SCde#3)xMT{JqIMn9o< z9#&sMVN5p&lZ2qZ35x@zY~@-w8{|XE5%y6Mqtn2@xbPC1zAe;S06`~g*A`b`PuAj1 zjm-(Nh6ja_7ou*$q)D}w@FV5cRTsjm4nSMO*qM1ue=FHgyR!7KWZWjc72{B0O}iM` z%~>gf<=OzvB;jeud2-<lA4j6k67K&WlFm9Vitq2@OG$`=z?Viqx@)C7W$Etj?k+__ zT3|s~x<N`>8bm@GmXJnzNokgR#@~bg`I_0Cow@hUz4vp@`!FVH9;@hT&7fFr{<lrc z!{xjdomnO~0aS{K&Pq?hxK!Z5&zzmo-J%u@U~MTB)uunnW)+6{Ah;|syXi&Doc}qw zNO+qFKtf8i@grv)eF|4+e8dz}JX=K#s5yjnTesRcY03ReM6N`j(??G(-!e<o=s_PH zj(po^%hztIDek#7A^+iEu-Fi}t%2gXGaA{I-tWOmoNUusq(7xV9RU#x{+~8iQa`As zrsqgKmN}1@3L2^gtAFx@TzV8M%!7J|YXC7ZShKyP(`9n6@|j+-Kz;Av=wFt!;4V-; zP$Zc55DB$wXElR2=QnaIQ!e44y6zb=;X^gK{{$GONX;i>|E%*ifzf|+wtv5du+}h# z*^)*Xq&WLAUfMlalI~IKH#=uqkVe^fjjO;9y@g@NuJh-CoM<%IY2kmBail=ZiW!MC z?}8lVp){X@=Y2}H9AKK#%3t3;JhQ5TBh(q%tAtHP4UxmaHH>80&B6lOLuv0bHpXC{ zT~Ra^xp<PZ>>P9!Zc~FTy~L#yjnSh;L{RR}ckb9spq_K_$xO4D6jbojzU|PrUN7PQ zUh!<puKM>x{hjTWQ?1_pUO>IopkM0xj<b*^zR$igFky6#w~!CY1+s^rzC$$w^dg#> zz2?#YDJMenjmjd>7^Q68sV15ktPBU16pgS{8eZr$i^*e<Wa`y7uzy_ay1+1^Kr4ZU z*Q=PoGl;TZSu0j)6vB_3grahYfqFl#B%$<P+jzMuIAtKF>=k`@Nd*Jlmq}$tWgCKY z8}bL+h3k+J;1<TR>p;fJHM48gc^h`#kvxI+<V89r-6T{}HFu10qAaWpfTeqdw&oHU zi1gnQr{JXrC0j``R4CzP$xQPR4ORqxwQi+4Gf|uzpoIhj$`O?Yb~r8{ZXXH6HNfJN zV4{!7ZuYKRz6yMK)w986i5qvMUKu_EPS9j68Lf}U*JLJIJZk<|djhIYQ3a(A|JG5j z9AM;8v?a<Z5!1(B^Zkb_FIk)3s_<p2X5f|;9=Ev?^ff)}OVs)16pE=?s2@q)SiU+` zue|#aeyp^1J<>UwzwnEiv}|22l%~XcB(j`J9n!$A<?fQD7z5r;tc<kS32ZxIk}fTE z;C(S>+hE9c%I@R`n>9@M$!}$jySbUV4WU)hTH<M7N6SA5^s09-NIwX)AQf(AiyXa) zaDaWwu4|Hsgv?&yq;9?#<TQMlm5r;!z~nqw<K*xjpH-1yTXx9@RL^b^4@$vz&qe*L z$!Ju|=32hcKU*5`6D#@myLY7^dtA{t6m=YVEE=6h>@m6=$q!$_bv`)#CTMS5Rae+h z<55`ooH?+9M?6f+ziE%mG=Q&+MU<>QYGyK)jzfoVn?g9ua=D+G6r<vkGe=me(||M- zCpq;Q{nNt~1EMerzC*C`i&=$r$(ca7eJP&9KXMH4-aa*_nvAqKA;p(MP8@~YOq*u1 z=z;nMkZj;VxrSMyjw33UZUf|lw(dha@5d&DxUO{uqvbh93W1$iLZp-_j$R3{sI4S^ zE;k@l$b2fwfhX(I^rPcY2k46FI!<qU11e{~US0Yu0$YS93J$|}w~hf#ksU13?>bFu zUtIA5BBrQKLB(uf|GtkqoQBk-q10_vbjibilxmO`cwHttz%+iw$&FkW`LfXi`8Kni za&3EsaU_x3S;>19|80t#G%68USc2b<t<+<cX8wG`3yBHmCOv2@g1D{y%%F;d@Xa}u zGGYV!zpq}j%bO2=I60WSEUbanlR5dwkD#Uf`W2HeWZ>BuXcs)b+!|W;nkfd@yvj{k zgE>F%jRor*F~8c@oSKuB9?)0(O`0wR%zpwcD0v(;fr5%6*jBQd4A~uU4n%?z3#8e8 z(!`GNkS}@^=ZcB$17~I1bF4bdb35zZb=JlBgot$>-P+eVYE?{sAJ=+W*=T}k-h6?j zJjN-Wry`d*#$7jKyPG34A-){|op6lnR5u&L0WJJs|1t3HXkpl{`SZ_QT8!3NjTIV( zQle6sQ333mtVJyXjL(e+Xosw8-S2_yMJH2yEC?{@DW-(mN3g=V<rSi18MsF3A+0T@ zZic$OU^0vPSw}#c?Ay)}0SNeN_Z@+<=bn9?K9CQlSpg=$TuvhPxfeR$VbIu08_9)g zeqy2y3!eYdK@UL#l{x^K(z<1cw&UMF%MaRwHB9T6iwP(rrBNWyH<)A4Byfqx&Fo=; z_~`wX9>KvKnyl6ajB?Bolei6V#KpzSHdPj^aM3Yk7CA{QTE&#T2;KpxW=BwxHy}~q zsyeeFAnT2#C31eKd+LwoyhSAf#7I+|{Szjk_2Fh22b$jRt)-E578#?lG0IlDHDhK= zjz+p~V+-+eo(lez@fB0N-~1U{NW(9WPhxt*n5#JUj<;npbFT{XomYKD24Mf2*ywkW z(zKCr7*i+jm!qBFt$<s`==)Zlep5M$NCh)C<qBEE$~LSNTFrm!qACk_gv};44EJoz zTCwe1kClCsWtac>eNMzJWSvkNohNp-OO@N;Act>;tU_0``|Tg0s1mqur>ps$F0!=2 z8-~N%e$9~e2W>_D_KT}yXG#Kb_In-|CDo&{+_9aN$5*u0gd^7r1_^d-c?(JNwr9a} zxx49ZuYa-)#UH08%ok#1pk}@~I$Z1qRHy&_<_~=edaO_qe|k7EJN!Mwdw-Ew7EC>h zl3GOe*Oy4H=|}$VWh1HsX%x_72H@c8wAjl)lljZQPSa{#FE01b^cqC7j&CP;jil^J zpP~GEvEOAFMlYAnqE0UNY8D9BEb>*FzYIUBGVOMCcmGCs)7k$9^z}e);s8Aqzfzf3 z{)PGr$qMa4ZR}SAyfw3qp*sp3Vfl76+Y4>U$q+X+(x~)<Mw#wC;;4bBoy$wrnP}&n zQird+1{GJ&La!MSg>jsw=)(eD?h|wZ!B<h6{!jMSJ=Qz*VT-NsfhVyNv&YsTU5S-u zm%B~sFrU`&CD$j8_j${YW`MupALV!*6nt)UKz(-}PPZ03X0&!Y*N3;Zdp6SD5P0dh z)GYCM`h3J@*>~v)^`<sU;&D>OPr%UrW>41s?cY;1)2=fF?bun(-C|j_Gy=_TEqJ}s z?7WZq5v&OR7t?hj>c~`rFTZ#5{XR~>(<Vv9Ter#}Y))vG%2)qS65dAMs+X#p8ZF_Y zorE7EHz>V`UsdGjwsZ|(mrMqYH8H7xPkZCK_!?bps-43wWbC@VuT55P-cY9=mFF!; zZpytiXUQ?Stzt<{&|Mn%J#D97wNEyutNM2U^v?O>Ue&;H!d-tSbA-!Uo_OWZ(H3YA zKh&p6r|GhkJU6?Anc)0qJ8!gQHJkpNpaY|IWpLi51^+3)eLALM>i$(<6(1dutUJkj z38XlMuJn`S8F0K&{1%K{AqoAP0I0G~#sxRy8^(p!e=&J1*qDXPR<5=<FFZQU*8tm> zo1}e%5}`}LS;o~ncTc;KBwcUUo(M^nR~&oK@dufSJ^mog{6~xu!_KpOyY5!U=ev9d z?<T~;y^aOPUkKcLb$(C_*$*0g?U~~85kG?w2+CRWn~MzUAX2LxXx%mQn3N*nG>r!c zM25^&`jHe}J`cG;xgLm;mRvxgQ!5hx5^wXX)A2gx7t_FVfQHreXnMmDY>RxW7yM_r zj_3EYXP8Gj*7gf4S;cXjZT_#A%?i0&+&+}-?2{F<%DvLewZ=afoN+iYdTpD0&_-so z;`x%L`{&BGWDB#Q5=rbz5Q9r!s-tSj%GbUtZt?vmcu-AzeX|jMcB1SpPl$-#m0*uY zOs#Aj`OJYwUT~E@tG1~ZP#+&u`a;|l28Y#M?p5lVhUr)6q9)bB&5c^_)#J4T56kAo zSM(^BUG&@|8G_8GIPWLeM1qbD1rfzY`-rgTv^#i|O@UZfJx?5BTg(UzC{OOoq@Ni> zRhw#0_3~*lG0(#6(b04+pp)6<?fg8HVzGr_6>M5~OhJ5|i;h;xS46xBBNqMCRwJ^N zmRDfcpJ5$Tp1r|ng@c~W!o%k(rDAie0U|&LG4XM*@NBNxWpwd%yYMft4>7uqlDy(? zY0D&9LdI_y6t{dx@GHvJYKvsD-_bxm1uLDcajF}IZka^{BY|OsW&hF_Rw^R{1Qnng zEE_d>FHusx0K$tArAn+~q*<W4S918$P{^ca^@6h_Ot+%vbO@mP?2h*Cq5nH-ghcy} zn;*r|WmzJ&5Td5WS`>3@U7`sFiXDwhH0Z#_W;%xSCzm4l2Me0mLcv6~&Jr3YAYGPT zkra(D*=7<vcHRM3y-UIiIiylDYjCzk&+FRS)rcr4pq-!HAoYj`uz9Vss8)yVYhoi_ z>%4pDuRo4`3k`8PUUvMQN%{J9B9PRbBHF8nm0Y=!t$0uyEv~d(SsHcN%4#Ond}4RF z{?-i9`6vR)y-%Vj6iYwsoTvoJ2C)a6Nx1&jJwhWDzkUc)S$n)0a<g?^yQC^xN)mf1 z2@ojQ%(`yRCOXP<e|265=p1~TcbTs2b?QnP&Cv=w@K{nr9(SCNBV!xpL;vJG{>ANF zc3#BnOsq1*pb>dm_C_+b%rzU8KlX>@s*tUCvbA4#Z7o)|4f{1{(9sZ_XK&o889z>4 zhuq#Ca2b4y`>(}grF+$5pGD!f)Y|3~UV8_+$Pv1POwS+R+XcZ57=`9obc-i$)JJ`` z>dL-q8q32E(RCxP`W;x}n91)-;4kZbA66&v3;u$X^g{E+#XYW%p1kg3xY~DnecCx; z4d$HFSJra_KU(!W$sf|luY)wHVs(t@=pMF1;LmPj{r}S9N+2d!l5?JsoPaT-diDnu z<Oa=VF!>CG@9ngMxXV5zr}f1J@^mu=-PZk@?<!@)xK~{ku$Qw)H6+xSn-O#Ap?C)e z@0!v?Yzci|npB>&F||Qchta>coXC)25_<S%?a9hWTd>o3hJmg%VP2??t_~Y2TPPF# zwDdcLS0W%&zYWjK_hROxl52vfelzj4;DtHp5hk%TnB8;I?R3hX<#R1gbF=Bz@;ADY z3-j9z^73+jL`2W*_&B6zqo0D}o0=FO^07rEj(BH&qsCC|ymmrG;XXp_{+%bHe+iL^ zd(u79xv#_*BnRWTR%k&wJsRJ}Z3K1=UoX^LN4cHb42qM4kbCa~3ghYM*P)>#<6o$p zvc1F&9u;*spXiv^46@{;-gjOz0x-3~aX~9&L3Az<8NREgstRKizit({U+R8X&wD~r z0Hh&3RngPuV~mu88aUZS#{3is@@`x^<NXwCHv=u5M-Kuk7n8f<ely(<O9@Z+6Z0K^ z{*C}=q#z#1WGb}x5eNrBtiG{H-Thaf8##7h7Pj+G&XyE%*r<w`xVa}>k9*YY+_Kc! znNL(g(BN|SPj~B376OE}a^3AIa3Oo~#48;9kDSZ`79D^c-6aWt$9N5_#!Lp!w(YWg z7o*jLw$E$B9-`skSul{rQ3uG^=GQJt8-V{02ZnMjx=k0BZOIeKGI+9Plto4<LYs)2 z7FJ3YRd67T6bbiT<Lbmv!s$oxJ3;HfP~u<EXMUNHcdy(vCAQ_h`IT#_EH~3_KJ1=Q z8q3UAxl0<0r|XjHG~MdVXZLr@c6)0Ob&qcCFM%Bwm|obz%H4Zu56SkEFA<-mJ>J(C z=A0Nazf|^fPHoubu6;byZiuEle(mYsH6?sq7+mCaxMU9~wx8~^gfU&3-ZhjEa}9@; zj!3*(yGaNRTFvWNK-BCgg<@;jJ#E<?YE6J^ZqFD)vX0YQ%zrh454G0#eCnbpb8DTC zj9Z=0`<m{K^QN|0D$Z=QG-t!^Q!_VUt`>2-tVEdq4n42clJQzTjnq^tnAto&=WPzW zY#=4P>aFGDY}M}GCvQ<7dtn4RTz&GrTAbj}&OwSG^i0l4M&n)#3ZDbJx<X=W_EZhd zj+>@;+x(Z%N3jR(qbRqhkNREcm=g8ozX<#;FeM)Mf1xcJaxR6_PwKNeNpx*9Jq0gj z@{U=PYeHI4Xd_&G3Yj5<mD;Qf!R(4DtDbJ1T4jzOY7R8Wg%at0S*P2`E<{-fY68Y) zViHCv&1(f8qXuI(MS>wyllelhw=p5>P<{MRiiLeVUV>T`MFxB%W<xRWD3EPlVs>qf z3wj}<(IlGBoA$|vaTZsXK>DV@%|MsQKm`l=Md{>WGJ2eF(YnHtf9Z17(XGgZKwA2Y z=Dqj{gNL!|Qa({sq>s$^Lq5H*&8Ty9g%lKUN+w=P+H+Ny+#A(Q)!xYJv}7-PmbA4Z z_)qW>y0RsqLNDK10$)cb4(N@oYOUM10D)<XZC6a8K4gAn_o#|R?!7C}PykQBLg$l9 zu9wtJ*&3Sr)uMzMO1?=LodbWv^Kle&<9g%cc3`+T93?LGYsL!<xlg73>S@q@W~jq? z&ZoLy9ewW&^yAVIu0JD*Z)@5ZTd#(J=!7jTsQAUZw)+%B-fh~veD{4n;{ovSh@)Sl z_K5DHw%Ti~&W@?6PzTC(pDk{QtSuX(BF>a%HX=bo!?ObnBdI6Bsp1!(d@fEAUuxDz z5}OjmbGbzLyR%i=z~`UGjNr8$bKk9nBsQU2i)=?9O{pKwNQ^|kc>MCz;oMyT+K3su ziEu+I-$WNu&PCfRE5~W)5)h+52VNMW4_}?MTSwI-eBwf*##Uao29AwO_?6P3j+GiV zeyTFGp?*luyxUDbQRZ9V(Eg|@<`yk};qJNlVqzNQDBY-uqU*mk-;u;Zz{so#k;4K+ z0g5bMcZUG~x9;ij?)nPq^3ma0s-k=h`nMm;=Me%=2Sel{XAcHpAAfqVN9-LSvdY!$ zORLhHtP<)pD~OPjJ~?chCG_ML@isB|(pUg+g@S_o0D-WGPaD~$dFgF3L9i$MeYyl1 zPcWdLj!m0!5cp7KHg7-~?Eq5+&yQ#FG2zN!+rVs7+)K?#<!7+Vw|#}FM(RWdy|N#p zUx$3cFC?NIq?Mif+9coJ`<t>4G%JQ@%IA9i?Z&L-Ef9+9rq03V@>pwz)Fzdlrzx57 zDb<4W#aT?xc$YFaaflpx3+@VGrr}Goq@`-SYaP=!nAOgtj^tp#D<^Zn&<gsRaFE4B z<!o;^&^_@-toI9*RnEOD;fe0Hr*H29gynXU&U)K%{vfk;;-VsLv2o$>LaXtho8zUJ zET<u}5(Bdwb)bIxHvf6{bAIu<Fn|5ycD2>9zmIvl2d8iK%&i(6<IXaXOo0<&OkYCZ zJY`b(Df=$-ApZc31R;~Obyqwh!P8KY8O>Hw`kPrGAmaGJ&93%A;I$^FTI&s-n4m-? z@Oqnec2+^X<&c<jZPht<%~^eOy#hoahoO`MlZWZ^i4U589weeQjYLWArmBG{22*$X z4UFxA!ZmwA+@KZ0Y51)v4#rZgGJZLFkkdxJCxhqIvh0}a^*C?^T>MeHH!=C{>J$IC zP#!o7G*c)S_UBmmVP@G{H;#Dwad}Kc5;*F(o#?%BqkAA_yZG8zu-9U^a>b5+X+d#W zi6C7_N$XfljAtE@&-8b~YrKoMgQ)O}a`jvd*-6%e5a$1AWfL5$7C0TiF-4ZW>7jfM zElOx;Q~Gc|<>U_zfmYz6M$+2~n@bW_hGfNPQjKXut?oQt^$8jC?BIY)^cC^5>G#)P z?le;XNMM^bZP0Ps#4cA*Ds(+1F8`=3N3*URUcTT=Zc1c*R5;~Ew6UpH-nm^(J?A|H zz7!?%fzfY!Rm!mdTT2d2uo|OyX$OPtZ$;qhH`6hQr21?p9=lh|x~^srepZjDvE4DR zyD#QIdX<-LYa5v<-P<AwAYm-g_V)#Yg@_JFLx1i2lhGGBH<M@YANF(~s?N71auQ8^ zQ))%%kqAEA&mFW7Z041%6}l&c_ohi%!>rTR=}76Lb_Kmer(D<ZXEHtTEGmGLf#fdy z7&T9^8;aJ12s{EEhoz72dZy;PJclXK!~SY;4u~%cw!ph!!_?+DMy#sMq9DV@->N^n zcTpFi?riUy%85cV>v)AwJ9|E{Vr<NZ7o6@jc1U01Oz7YoI%`BUzq7k|#-Pm#kaF4a zLXJiYG#X-7dB%k#T2G_ywfYvEy6x74TCctu@9yiFSmk<!-jqq?8z;K8Gf3Q1lQmo+ zZ@coeU~M%(oQ>vJliHx%c~{Kr^T*Z@r}-+jdB^6>cPw)0DDUyH!u>r{42X^WJS~5) z6Q}xSd70*l_&JY}x9ffcj!CvDbs)xx%x0gxmKpSbRhPOfZ4z#J?T%7WQC*5oa1bvg zJlhqG+hiZvnaIndC^LuxM>@cuK=`OKOG4q0M|PpkDE34lvn6gK8ZFd;Tnc}$?Kr@+ zXzEiTmSl<MFQoqY5|}A=tS+WGO@z^NjN*onPrxwfxH8w2rDW^wFvkqWOgv>@&t=*f z@EpQYrO#4gZPu~4=(QGH#7vxqdN-BSu$h><=(*QBu&}#5<~oO3tepkqzYcL7r)iQa zaKI;o-3G>apJp;#b=xh!>K(@E8F~4pXr`pG^-qTsL$^q-9p}TGb{;h$<^zBF3k5IM z5eL%~!V|%l1)7kqL(<K18>5anL=(a`EoBQ2Pl*MA=T^6KSiFCE_`Rr!t)@Vt!zONH zu~-7=y=K0n-nH=!6ItRXM8q7UHsUYpJ=4C<&%)WN#jZ=%Zsz938A=NARD5*WH(>X* z8%@!qb~$CbRsN;W+=jCH1@zCAs+%cFQ_kX9p#gh;9F9a?=;CC|oPeILtamc-pjW;6 zH(;hISU{qO|DhO7g`QQFk4o4|Sc!gq1xu31FYwu+AOgfqnNso124XT_fGi+>CT~eb zyz`wfL%SpbvhDCA+e)^vNKh?%sQC@-qNEPhqX9ks8HjYYr^Id{`Q%F+6e8iWkZ1~e zrB1mV7h+#*#%PX;i(gQX`Z@yjeSz}3Vk(;g5|0IR%>za3-;5=iUOqXBQTpfQFH~P_ z#A1cNC&2pgUosRW<%~V)+A=~?5v!u~;QQ0%XZqS}T7kNNRC<f}fbIG<XHAHYiCVoj zOG%~wuqC4`0lu_n&9jQqM4*nRfloZVoxf5Fg$&z9p=__Vs8CVH{#KyQlfXrsseRS_ z59idSMSrlP|GRa-qeHfdyX)~KVXfGV=(hJ}%C_TFA+Y)?W8?j6GdPu2$^R(oN@mbH zAij4ApKt`;qSo82ckA=pHJ!n}B0yh4^i>xnVbTDuL*rW(X4u5Jau6TjXf3)s`7_8- z6n0~EjHeMt%pkA|l7pX5G~flAtTNP{X#VeuEV~YWBd`mDpSA`lfN2a|Nx}x`h+T5W z?clB>VrF5lP490|U<y&Zpq-~re{CYn5G@ynthefS!h0)z>M(!stG^I3+u;Ft{Kit( z#2!L`m(tJ7Zmm#ctCE0mJ8BQ{M4IU>3vjtEfA4dhj6ExEe-=7SR0v))9Tq6u#G}h~ z9qQYyav~MPBp$%b&Zownh%V2mH}eO;B?Eq%x10u?rgw(GLG_MlA(IETFURIkac#jt z4y#qHU;3Xd?1UNtA1-&jb{>D)whs&Lu;nit-VXkrSAqukm-=y2?@!!Q5}Yq6#{z%6 z(E7;`kPHbK*!2QajYtz^UGel2L0I|#GkXM+0}S%ZWssY68XP{IF$0~UT+s%m67(S% zs=dX%qxozg8kW@ejTJD6v&uWupL}SNe0IYyrUmWAN?w%r%^*oAO7VCqsJu|yQF~vR zx3IB7`T{~o6fT*3Z-y=TWl3m{$~kUWpw_Vfit|r%KHj?7>OpxBq4t832D|k6bVd!_ z5llH)00o$=%hP@)0`I2n%2zmje=;>MG+r-q&6h1vWT}0B;P^AT#&Qd%_RUvsSWx|5 z-FOvzpaFzd4kQA3#Clxg2{tg0`j1>+ZPvLV7iMP3?;uGlkTA>L2gr1kje%^MatY!Y z%HY-(`CxfQ)HbX{m(EFmZ(c{T>Ov9p`6b968E8tNflAZJfzbYC2?++}t0>nIbAJYb zK7syF2%54$pS>v{wWoN`2nK2MFsHs#VNHc_=vmXK17d+>F#KJiJr1beO$0CRXH>X1 z-`8r|PtpUVU#2;s-h(lV7V_2a%Q#o|Cemmq%2Ix0cqvLv3!YMrxSRZSwzLkJ2w!P) z^ixoHO_9Iy_XvUY;V7C!{oJu-nKhm24v%0fu3P2Oa*#GV11L-tMW}ymGR*1im0}18 zsqeMgZ;R9q=Rqm7SrX~=!~}2!u+kX8o$PrEpWYbyA(N#De8}Df5#%^NU9|G@DwbXs z!r+inTA{~2<JeTQ^KjR5K0>xs*Yky{T@lMl52+f&bgp=fCFv?B4O3r)_751gPN48= z)pH-=eCp$w_wfn&F<te0QbvMDzs`7)X+O+Y#Rx9=agxJ`A(U}$A@>VCfQtJ$Fl@EH zoylnjiq!*2dPxzy5du|=I<OHyKJrRUv)Eyv6r<UwoK~LU@c-<?QO9>rP@_^pN5OnW zL<xEoFjaq)bDq1@!FRx*1=2|8bx>cKVb?nyolBtk1D#e?E;tJu9co<@xJdys#!uaD znY+zSIXGGJ;#jJ{+qT`?f8U25Y*7C=yA(|V#5Cf^0l6;MfKK11<{+?_{d-#u%$UL1 z*}l9s?Aywab^D8k-&FsBnq4rZ*tJwKaF+}vz?MN6kP15(D8F12l8pFfmd5CS9|6dV z6e;O>1XSRY_C#{rZ8m#tdmAUxNXKOiP#Q?R<9$Wz+jnEKs&{Wp-eem~fqvf&@%b&e zv=p31PlGSB<t!B7Zv{qpD+S4$ALxJi!md;5lGmdpZXgAI5-e|ws*0)-ojF1Fo1htO z7YvYkAl3T_G)b}|&_yFILfHf>=6yvBFFwwv<wu>LsDA>&E|zmkG}R02>4%`*{|Qlq zTPnjozf2`h#(h88;&y3?-xVYDCI+3RKAybIiiF_9FZsJpYQZx7>M9cv*_dbcT0oxr zv>n+e3wznpr_&V*m9b~LP*zp!GU<cWO%w0aBnKp5QUAB$eolN)ts9pd`t>3_nmK%@ z7z0>NDq@}l4;nPTV0k5%?Bb1y0b(wJlrzWv(AH-Ck7XN!#8{nG2SYDnk3G6nrTRVS zY{oC=9Tu?rZN8*9xs%z*&c>y%CP!k@v6t(?-1MRLdBCl6Zf{c)8oCO)N`z;mCxeqx zbu!m_$a+YGUJMx934e};{tbPs_R;~*<<#4cZzyRFf-Y&rUL*VrMW#*-8=Etl*<4FU z0}DSgCcxgvcYJ1eeke_6TiHtfX&S~G{1ut*X}|tkIy3W|q9s0ovcGU%*>`#@myZk< zmPXT)e96U$$BrFu!o!D)?MOBm8)6jXs*-Kr&9nGvTFJfE#SL;<Am6k?Qx!G;nl2>* zKGt!NBf!skJb|la``@yJJ)Q$0zn(BCRv&48jb3)P^LJM%2(w%<I>6*t|Elp-F_WUM zL0@nR_%|y!`#+)MSIJiGXM9kC8i&8^x(+j&0pNtd>0jdFrhV3tV6jDa{lOWdQQWcc zc*P+f2a@bd!cE-@`U)!g^}x6Qo+DX#s0V@6#Jj4@Y1$vkX|G_s^-wlkI!0nexy3nU zx>RY+eo~c`-_zhX=&!;diWpNBECf4kHcOnf`a+>Umd1ato*_7w0udYiMZr&u@{}b| z9{$cBq)QQgj^se8A!JZwl}D66J2m<R9$p@>^?&3mk|@OjUYY}Q;L406vxPbxV1fM` zfCCcPjM`)_QB2t?Ne0kwrYsBG@xGM>4u&aME&6~`z{g}9dE+mOg-aTCe@?x2Sp$a? zK{dx)OMAfuP)GhOG&D4zd<`BGOw1ayt<Xlrf7Tlw`5cI{urUZ|-Om2)*X$r2_A1Nn zc(;DIL_jN7$nzx*1hKbe-D>=JPN??p+5*1F%gb|qUk`6`nunDxxVB)^0_eO7{2y~i zf{9WUuB3pKQuLszA?kmBfYXD1JOEazm?GH!rUZ&_xzr4;*9WGib+-QgKzv4r{Mz$3 zd7S?wsoh)i>dQ3KmOqQXG1sx+ChXxp`-D<RXs`aPxW@clFO)l8KQ>Xt@4sHjsz=GA z!PEhzOJ|Z=zfP{uJmvBK{;0YN)hng4={COTb9u|;yJ|C~7IwC2*-J1yuVTtR3*Ol; zZH%)Ho@p6#tgs%eTl*@&(SUyw<M93AfuFYA&k&<ll$(3~jz%`gDwo~>z>xh~UHxF& zU{ImW9EqQ~E95}VC!a#^$j`_z0<eapCV$n-vY@<^Bq-cF?EgiSfvS<hEJWv$DD~<+ z!H>_;+-xtj>6GW+Rya-1<ZJ0iWJHkuY{X`xAXco8EhQoKa%e8^W-t6z!1P4F#KEUD z?_Pws(3cANw$bBhHIj&{g?LS6#-lcpyEpXBK6PmKGN!Am3s7Q(?GA(iroEPyFPg$U zyeT%B+ijPDIp<*PO(8GLo$;ezECMYp!GH<?sDpK5D6jx<l$M#s7p}vZJAaioRar{@ zd6)YOji!|h(#fJ|8D586gk3M4*o1_fJ2tiU_4PT;)d&HyNUrbe8(m#O{|aQP5)Wbr z^J>`vJDIsHlJIQDroi(t0f`HVr*qhR2VljzzPhqA;OFND+D2Ijzz5)umx3QZASX_A zAOIyt?kN=B&9&%o`Y%tw$gR`odc}{Ll(c;AYj?={2jBJ_dc`vMuRA0VSNvcnac5AV zP7`t1{q$I^%Z4k%V)HofkbCLE+=g%qU&hIOw9jDaS!QI2z$&R{KQEf}$W|@WVkS}* zyPR2a>t3m^0@@@HR^UBVh+*Y4e>^8Lc$)3mdIe<5_*z<S0O6(I|8|@MZuu_~w_$xi zZ0q)s-{XLn(!T^Ek3lLDxv9k_r)%JogaGO5_4U&(UZ^|pLIDJB^BmuSTI&bQ(7cA{ zo$t?pifzqVi0+6g78*A*5AzhWO~k&eT`Z6E+hOo9X#s95t2)Em@)<ikiJRYr{U2dc z;I@gb_Kx$qvTiD;B<hggHhN)?dQOaCp_e`<PeXEM)CNZW7cml?AxP7s@xLi6Bx><3 zEOoB;$6p@y!k!KWuc`feEZjslw#%{~(?_1RE9qpa*=ldU@U4dMet3*)rxrZ^y{Vw^ zc;8b?eRIDnF~N6*oG|ejeWg$xd|Tl)-nKWBx^^D+bp2aPO$^!N_PAR=BHj&G6~U%; zUb+(H!tKKgyXg~H_22yc8$hCnHQyb#lf=nQoS#kX8#jnb<eH%>(g1q}tdRd0VhQ9> zaO7g9=}DoC74qf30L#2NIau0ffRu;X+r+VLMn4v&m2Oc!(rA5<D#P}L{ScXldCb3z zvDS{vmAN`jPEC3pbjEaY*Y_P_<n;P(#jm!V)%oSxeO#GY=uMEGgy-FHC&I4gW<V;s z%k^Or2JG)!%{uBpkjY8GTL5ez7{76@+Q<(G%*Y8o`=us!sl68sL}b?jriI56b?+j< zf5Ywnp3vhCg_ZN-`j`rT{fF#ip7f{1z0%1>w3mYUvw_amTh~Al4ruTzzz+tX1VC(b zD1azPAKnHISTBfvO&|@VF>V0~$p9+~@T^2xTwDcK>pDH$UQ+)PJ)dVz0FHYu{cr04 zpn-ip_Fs0(e3bzqdhb6^gxJ;ZqL#9W<|9CmKj^U`I9^}X^2Gu6Kl}pVeqa3&fce@# zAAbV~Tc7q38{u8M<`@A2yAXSO%(Pno?<V+eX)RX^aQ#h#$COOAE(DgAcSWijY(oW{ zH~y9or7KQ@0g;y?K_54yWV)wEl1T1guA1WY>s6PQm3sD|`_n;^!$wJg_#EGb?b0mQ zvydl1C@XR{)TaWxB|?rCoBAy^;NWqg_do$<B1d%>2><q>9GqP>o%flqF=-!s9ps;T zefFihW6B=)#f!_!%TD$Gzo`#OkO(qaf%0SgG2NL6Teh)e<u5ZSqq^E?krA9k^xmi+ zU!^f<5LY->Ot1~fTNMkD*%b8IJGXtJ+iwfGoWq)(I+lgGlEkLl@X=Z~WL{}^J{P}P zod~(w5Bb9BVO)qXC`(JkL&9E0I$IXj9PIS;bl6t*k)jlD1y=JiDT)xLp0+h@Mt5C( zG79t5B0z@SJkW`10c5QYgwkh1!qP)P%r*cIIBq{~1DF+8!@EUiXRdIKHxqUsqH<IX zir7U|@EWt%=9evseC85zt2VH50mU-+e_l{qjjy}7P6YO|bf|PH0S!}gVr6!&PtzgS zx3%q|og*n<I1U@Mx$j{D9h((87K}f>^G!L#A6}&h$@tU<YA?3AEo!uaYgdWWw<9bl z(LcB>#RFT$KZVqOxC0sGm>p*}0L;Y>-*>Lcpq~^N-un7vmW;&z2NIjOMu+l7*{M!i z$%OV0^O}`F6F035_{YGDYinz8`1wBv!J(ZWOUb{|DqW%=;PUy0WZTMaG31yB0ugR* zFU{WKS}oM;VSli!yV)yB0>-#*_OuR6>R|Vl72hn0urB-`*CFEp1?rzR^;wz#vPg3B zE82*f1Hg~4`*?Rkjs6Glk_`TXR|)k>7fpS05gDmh3*I0kG4=oRN`bNtpvvwZk1WIZ zR8j$#GLYuu_LuBbd4lT<LlS`2Sdan_0N(g*3bf0V?fzrIF0XURwOwl7WhwMxN+ImB z60^`&3zC`D_VDoV@nhp#anA7fnr)7=Ut?mh2R+zFzUo%y?ydx%kEI!M>^cS_N6flL zINN`E1P@aA0S>Ogx`Q?@R;2e-|4Z~26c8EJkU!G2OzsQvT6CHD#^HoASW-SlA6^mi zDD=7u=k$PS-V?Ri7QF4{$XR$9w~=0gNATz8*)L7CvbVZ*O}!$=$lFS@hy7I5NT;@> znhvHkV7_IptON(^$yDp!a6O&XR_gWLKi(G_1aDQ;KHZb}QGH)SFy(j>6g{^2IKd-4 z$KRGxMAiBB1M2}hmVjS1Tw;$A0$j^B>%g$;zh3#$LyWLzf%*n;E@-S9{}g&?EUn|- z+V(^MBZYq-g=t=COsPxp7*unM#EEobvmr3H#DWm3pF^IMZ_&beF>$M6Hv>XDixYw0 zW3G&bQbZ%v%{2M<<7dKWx>XmdiPhUN%RWgZ?Jur6kn4I))sQ)fzdcD^fs<00og>tG z!a>_owaA$=ah(|5g#>x^B@TSc<HFq3#L&%gk)yN3R8{&2{q)O)iO{S6?v9=wub&#I zt=I03TL4sWk7o&H&%$nw7VDD5%(FjBW<Ucyz5bZc@Hzs&;}-Av)p7$jkQm>6KOWj_ zm@GN1ty%w8+$?-ymQ!RuPa<SHO^@>kgZ2}HVdyg@KiqHJzLabjQRMd#TI2UuEpB^! z!kx`a#@#i>l{P8Q!?lgZgj)JTyYO1TDK-XExf0^5bziHsaZJq0iH5JNVX{Z3C=+n# zozXyseFwXW204%k^8o7|{?L^d{+458BNG5C+tNfZ2Y4|tSvGK6FZoXH(M8B2++F#a zVIOM#i^MOf|1W~0<a^CQfct45o<#5?a`&nG>G}!4qkN5`Scz?r*Gwr*;iZBVV2L2M zw4S!l*ofKp7~XkqD`83Ur?f@C8W-Fi4SSfc3}jUeaSkyXgL4qKES2hRW~-&loQvLi zubhf%c*$gXFq_Ob$=kzr1kX7}Soy!Ni+aDExGWSL+W1*Nnm?-w_cuRY*6pk~XmiZ~ zX5j9|(w{6AG>Behy6XLF)^TKEa8y`B|Gth|UfAk_<=9D@rf<m?gehNg#Aj1F>^^R7 z!zRC6D~H^Vg$45pQD4!X%VuC%MG(quODh#=IzgXDNdPV!ngRE<U=CcWaUXc!Pgy0o z7t-%0-p_qKH(X<@)R|Fm!d0H+;bi<+dg34Ddd*;wVcP|yhuHvy2E$WG^}K<|GC!^n zpP<z!$Ee~ojp9-o?5IV(S~xYq;vXnt)~6GW*lP;~O6I|TKT?m{H8!UOqoeS1_ro1@ z`Q9k^5oJ3?SrS=YV!yhhepnX*AZ)yHrccrivG2`ebyTr)<wL9I&y5~?mXQfDb*5$e zZBe84*+0`u`gznCLx`4DowCW>jJ^SHpVsqm6F@6P6>VF6WzAM~IgwCAY^4mzq{p^u zT!a%whfca?mFDWf%jZ~C)&T!>wXXsk+`H|Yrbc3N|IkL&%olq8<T^&*F;}b^`x~P) zD}fXi6&_y<{a~G<PnXc_BIRjtg!m&x8C9SeqvMVp&m5ZqR!%8iZ{?M%oQ0$ms~f6U z5b4%XpPZa9C>lY?e0xZh;Df-Q$|+15g<C<lIyg{uZ8iIRYPPSlv$NCzKrei{T3^q1 z5j@fbmJyOHFH&Ry;vjiJ;flj6Y2XdLWvyP54y@Q-v+J;?0h5hL64MNkxbur|N31RM zicn1tN~PqNFE32P9xh`6V8+?2EZr`Mst~&~p{T}~?Qf&gs3?V7r)}^H!)oH>HX8#6 zV&E&m1k#@zV54AwNdVw>e*TQu4Tu1A+WWRV&!tD2okw1iQSF}~#_GKv7Mr|C#_<fR z*+<xyT;me}+K6-kU<bTKo|C93tA3w*P6w>Peoxh{FfAKyN@?S<F?8;0m_)H+`=pV6 zCRX$&gMDJFF|5xg1sC~yyG)W3Lx}GxWxXPKHNhAOUz=LVW66?~NytaL9x*for;e+r z_c#WnmOLs&>7*H>6#X5u0@Yga##HI-8!*m&1(w-UF9V(vCnmkk4qvc;fs|5^Vx>`( zk-wZu_TV%U>-?{eyIy-NXNgWbA1H>#Zlqg;^Wr8|C2izubAHbi6X$Uh*|83xlywcr zY}!^rr_ENK<wX6w`?17hPbjeIP@_21$ueKp-P^Pg%vj8rMjJs(Xd=g$piG_t{$yw+ zr?3w`GrDwKfRj22JcJvCJJ@MgGTRLBP*lA<ooQ|=79S{-q!VQcQ2A&h<8(RXhLkF% z!wR>pG~oOK2fye8;N!)B^rOPY;KRv8CSN{u@@=O&bFsl;!1z@<&;q^FPR@Ut*B-RJ zOxo0~OlwEw7>VB$1OTAG84fU89L-_Ny1n#~QU`uU@@AJo51<uVkZx{n)*S4$tvWOU z4;brIlq-p9&PNRAo_$1gVk>)hPL~{DKM3t=&qvSK+QrL-in{$-_H6(P20B52>$3}> z?xa9RYydcGb-GO!03KB&jrs$O0P_Z`hD35e6GcKuqaGg6*mSEhMEq8-(z6cQ9AE<; z&}g~coXoG{Y(IB&JORv7JG_}ajwjv5;PI#y%1Ug~$K4~8Vr^Nd^RL>~uFmQ)9<rtf zaZqNvxO$_)F~W;mR9nksr#o!GOF1~@)2YphC}k-D{3ITfEsFrR<Ola?{b6Lvznil1 zG7KfOK@NLrw95LG4YP!!aDS}ruR=>m35x>kFMAV&(TbO7ERbzyHlR~OSSn-u9V7nr z<#--xCcB_~!4I4e5g$f*UhA~n+`7{#;0g4x5XbwLS-}8Yt8-k9S$kXA+)4f8t-X`E zD$fWnnNz~)%jmTw32uWt^LPZgcTVHSArDHEvV>o%+(ehx*9yVb`LzOv-^Xm*^_z;J zxx3pR?4|I(*N6xU*Sr7uaeB%#=+PV#T)Ig)^Q=gKtMpgK9O4Gp?nt*0b}fTjYR?|@ zZA-rxatg*$$M|usSwKDu`}4hjxOBU5|46wd&UEVfAzy62&2<DeLb{X6l;5I&+SlY# z*#cEej(-@q63yeti4Tv=<ti-CNh^j*O(H5U?a7@~l{In3g-9IS+_*>}Embt};XU&& zQoXu5x8cC<-S*u*hafF_3N|e|pJEC<K*NlPh~LaukS|cTANawIOCQ0b%T8Rx{UW7@ zqdh-x@I*aVII-xU7+#YVbtalb_&Nf`3Zn!{eFIGWv2(m~k>c-Ly>{g-V1IvtRZ0qV zD|If3u`Hl*VyT-}&AX_dGjaO98FK<Uu0{UgZQc*F2yb+idUm#q2ZygLX`bVRuXh}* z0>GwfYDp(|k<u1Hci<9ez{dYrzVbzN=DpG?aV4K26~;&it)#!{yf)S!K~-0}_L@ou zfMx(-Z)|DRKF7WBfBj-`;P&p?jj>=27p(F>EydeKQd0NSoo^PT@jQLpq7$bg;<WB2 z0wXDwB>;5^3l;7uA02flJ>@}(A<golk3=4rrPOV*nXxjwGL~k2x54}d1B*VRmpARh zSHT4D1Vr<SYh;@%f<0pvJKmc>vbc5fz4G_mm`0P+XK%tH^lP+@8L5&$4y3P0N}q#K zzL!S612KO_wMN4=mTt%dMSyxpmFJ=BRDH!B8y~~TK;9q?z{FYb3MJ)JfT|g*Ld6Hc zsLk&Ik|<WRR_~<!eX-xKqu`T1dr$rzV0v>5;o?Fa)Za{zdCM~-X}y&BNbpPd;cWwZ zrtL6COOM<z_|1QqD3OQNX@&WUc?f1ptwcJymP|66&!2fQKA*nd|GeHR=VD(J74?qz zT>-vb5pkp(O0j|FFOU&M8n!u!rKAix3avRgs7FT@EUWPx1ZN@fsM`V=dx-lSAF%`D zx<3!yN0xJXZRt;z&@CZCS;dNCC;_FcmNqX2L_m>k>FYK{ltu1;FcO6!LNep|u@v_# z@4z^O%fH<l5)pj<t^FNj8#;x5ivTUv&veqZyn^7E!uN&h;nHw09E`2e>@o}`sEEJ^ zrZdi2_^Pz+1^K|K{fRXp3{dTS2#X{$GfNEA`y;V#1he#ilIO9gd|ornjz}EZX>h{E zyPp+OWB{Y<H-DpkJ76CDH{Z0lwL~L9UhHI2e&u^w`FWN`l=9{}@(dv%ShF3#X{D`+ z)muU|Gl}KR(xMXBrM&`v0(KBBG3Pt!b7M6$3Epd_Fh8q+5@>oB(xXF5p_*AnSw>C4 zfJ6VEu5ZlUB<(Ca2?9|Z;vZVTyPrJI?!jySI1lu&`w;WeNRd>Tw*ntn7>u;KQdmG> zH5p4Bj6r@dxx$B+UnyW?xTO5MOZ5aF9DG~#{@HD)7S3#<@GTv6RZ>LXec&0JexU^? zgJS`#!9w~4_9B<c^xEA385x;>*gL=;gqxrV$u#;aGS$4H9DwKka5?XXSqrGQe<!E8 z39FdAP%LF@{{2r*Xcdp2W~Z*gcRjA&6|rMOgoXBTBb@C=K||u2_@9VPxbNST9O466 z4Tu#tExN@LyI9!Mmy;=~j(>Mzupi20@r+hLhe)z+i)R2jiZy#y*n{JlD%4VK*aZw@ z%`P7_DsXWI^l=$W&{u3Tm6{BzMg0FgwY9u62Jp3nbCdN1;J8bps4x3u9cv9ikWU$F zX~{CtM5s%rX+r6jzOG@E9h@Hl)&*bl@(K{TaJBEb_VZstwCJ*`(fL!EHteNI3!X&~ zm0gD|WkYGKrla>{1@24eB?28ybM5U7_c)t#B95Ky^MQV0t4E|Qs|BVsTVj6cW;|X+ z4fnCZK|b?n!(1ZDokO4flEm)2CrH=iD=(s29$m(}kp2eqrUD#1V8e;fiTk$??45tA zy=Td1`z2Vnbieg4H&>UD5aPc>Rs4^rhm<zL9#s~Hxd3VjlVZ_W8rl{Sy46=(d!1U8 zB-Y)RGg7k^bdven>*gYT{Y-7a>`~tT6a#b?_UjyH%znk^{9N4EiMe~@@6O3_aH1uT zYrEFnW)Ym~Tld8a9oC(2Ue|Vb>*4V3RLkz_husf<H=h6AZ{mB-jpp8Uk#MosSJvVz zZn`vc|J%Exio&ht35lY^sk*YbzcA2tAKRCA?Ovup?P_*6wjP(azxe*C+%;O|zc(5I zI`Y_(iXUFc4VA%pa#OcORH#JYIE+g#LAH<JP^6?!i{9Mrb$Q3e-+kBGWoxVIFudz} zw)2FNK2_kt5`JXv?k<hxEequsi8V>{ml`jbJ??lnIFGdjTXpq6o(Ztk3U<tON1u*h zV$trX9WNJ4Nq>4A96U=vT81IBkiI8{YTHJT=$y}PEZG54q3MQCuV+_GGxONoQmakd ze~k}tQD>}rwT(ISekMz)>+<pn9?wJu`X0Wj#ylCGk7Mc(ar3%uJLC%UYD43zwY0@_ zd<atB&TSEf2dQ4Ox)r$ZU?6AzQ}e%`8&5Mc<Q$l`U=sDB$EN-HI4zK(wfe}unf9E& z`yTjlRmWG5#eL{Y5nAe7MDFOJe%I6J)B^WDg_;D%-wrqU_2`8^@IeADKKxF9kjv2# zpSPebSrV-ufu_t?_e<}wQ8T3UOeY^_i;U9>`%M{#V+j!rcII@y_BWR%aCBY<5`KF% z_J>4#g);Qb{f{!83aFbm*S+<@(_@*?y{y*_cB^?o$e2Kd`6E>ey<I2M&Fx#HZ|IDM zHuswfk0q+vu9eD=c9FcU@ORP}a9vyko<w@fWb3&?e@mB$Tk~buQz}(R@i~Gm#jmsT zp@(afdQA~yQ-Nw0_&T8jG1+N^=_|#Cq9o^+5>tWqQgzo#4Su=rFdAx+rN5nO?+;H0 zIaxdIP+9eFnw)@ZJE06)7aM=OmhGy=nVolXxaOg>S`~~ieZ=bmKC#eikYg@EU<`_u z3@uNf0)1=UJ9O&Gq<Sdr7`sC29;#&vc?tr)OdC+5++aUpu6c@wY&T|?iEwjxo%~SS zrm}x2@hbFa@t$D%y1T_|Hz|JUc=B~<)#c4c<}`zqwT)K&6+iJ1o4XHYz^!{H{`d7} zvxqIu*!Sxe&p*MM<y#Uhf~IFBK?2cvG-J&^n<~BYH3<@bU!Tvl-;22ZiWWb?)}X-T zk@$C8tX2cRG+WvieJ9EZ*jGV+9d;;#ygDqeP*Q(RtiRS3P|7Wk{MV}+ufn`oJ^48? z>Gh*8g*eHI4W?l+ktPmHL&9s!{t_7EKVU-<Yh^tM9}=@m1n?nrAR1rGQPHx54Y8V6 z1j(k0lHAw4INfVl(>5B$(R&_my1g$K&(@VnuYV<qp8?RY`l2M<uFw~t^AWR&mW-#z zj~9D%rKTb!1QL6aM~`ObAMr+8ypQjbf8UjWevC+THu3kba=ie~aA@ji$vIy0{>Ykk zX1j!U|7Pt2b#VT9ftqqop>e$UV{dTL)%HQ|wq?^@*paa}wnGzWDDvEnjqNBYX<q`F z={3bv+VV}}@g&O0AlGl5tI_?bHcleoVZhI`qOq0qJgmi^6Sx4Tlfa-*ZQqOJ`*mv3 z%^ib=D<M;;v7p44tp;!Xr(Y8ndG}SKHw_4m;1jXbhE+bcn1wv#o1nX=odYDPOXZz9 zXZ8f}tHU(bP42B)>6kINw@Y#?uq3pQyf9uzd|@345~6%%&6k;4#jh~ZFtPchnF(Xv z%8p~L@RE{3DBlBZd{yp?Y*~j2C+rJVu=(ANiYE^}ND)d8nM`;|A`M;qCie<MQoZ$; zD?lCDz7Wr9{N|B2*8Bx8Olf!LK(6F-o(T${U&f<QCvO8^)(KwzMS+@kmxqt<-w&YS zTK~<_?s}D5W6oh;uf-4{hDuM`Hsq}{9Mg2Xqdb#or30<r*jfB^X$+%XaiYbS^J>KG zPv+6YVZ$58RKDTrcR}ZgE}Sw3EKww8q&XowJDn?rBUxalFobZOz3KV!)95@(Q~#f! z*Vlh$`dtyzxzxD0h_=^_yCRA3cdt3qAS`weL1QS2Bn1Y@Mp{Lunt$ssSAj~KB@Lh( z|7VF|KCKD5)p{Y>hx*<U6;zkF%Y&>N-hxb{><odQZ<GNvq$?%BkzGLeQ=|56sTac! zDTc$J9xNp<J4YI;-i|$(%<KGujHoMaEj5dc$AZBBAy8E{L6gmBAZ5kU9{O_WT+e(g z3>qx-NYuz_tRDJLs9O24pwD158go>2A-dK^6np|6Z03(F`0gMo+L3Kf(>`T^gbtca z8w16Z(NFHb1?MuGQ=ytnG7+DnOf?`nh58U7PNh<Zs}Y3={2!dQ6|C;CQk)&HZ^2Jj zz-ufaC##m^`EFduRW?7pVx>(OqHXN8D9F5WerF;DnUe+UZV!rcVPxta6FKj=$e=rW zxV#G^4E8`ei|7g;-gH<ExcJ$J1%o?oer#>Es9X<!KT1TrbbH}^X*lf+*R6E_L3X-e z$EZM!LZfFlZlgD;dti{5FfQESz7v2<bpsyD-N^jg(7W@)b+i?{P~MYSFIX}w3GgL3 zK-)Tv;QRR_pqJ!J*&wBc=%4s8qT%!|re^P&o2`~FFGa+~kw;&R!LIEx-B0s9krbEn zKLUW>yvt+CcYQG~%0=SrdGRU@ZIy<2d}8nvnL%4Qf7W@8p1=0wbS@&mz|`$Ru^R1t zY4}+6VjM>?#oFMRxxfGKnq;4YImHZNw#w{CQ>TZtVLdH$$x$K@85^it7DX~kjcskO zR=vw3FN+b?qg|J^y=DpFeScN1Ib1{RGcw%ZR#D?6=QUVrK_+uBPY8q`l0Hko9#K#4 z{lR_s+u9Hriw+XLuhr{9G@d2MgvAZ(EsPHhy(>`vtSJnnWm}axJd-kq?GUHAVKzfG z`|xRtU2NKFoXE<c@;`wkk3D+g<~!+#^=zdP&)n3dKNwPfBKXcQxqt_-Jm<9LEpzHp zCi2CE=TakVE)$9Nnd<&4@b(w_VnRzij@RYyQ1b>w@OkYzFvU5^lc+&VDQNozVK_AR z{{S9#EoQ#hnSECS(8WR1R*8GYem<+=S3^ZwCPIW$3wA)4vJcs1JW5s=0lF!aRrGH3 z-t7A0mzmoyp!K`Mg|>s}|6}j1qoV4%$MGSg6p@gWMnLJ3W<cpiq`SL22Sfp-lx~nl zx}-s+q`PD2p}S+|cky|i_kBOVPp|d;=d;!`%ej|1?tAXJd!MuW?gPTINbgcFV<C6< z-7ck6^q>cZbwdEC3P@BUmv)EU4!w_M{XOAa;GX&&tZTVR1u`42-c1gv@^Kqp{hw|c zMa~>hO@STH5nI?*h0FZ-gonT3oO=i`AV50<DDL0Db(!x9OpBuhU^HoRo>zEBOjv9! z<-l~Rm$$BEK^g)^;hP~0@JcmS07R325j$sk;QSf6`_1ac%IK8<1S(IqlM<D1o4b8v z)N{>lHw(<}lADjb>n6Lp?(dt=-GE1RFKwK;U1Yd#k)D8KbI>7IRpPtuP%(Y6!zC9& zo{^!qQ)ST-jicrNrsdcbk#X%Ooox5b+wR-0??a^-^bYd#Jwf;l@P<>2_d#aqcBzJy ze4erzXeb0pIf=;tgb^{VHOF5c-w$M9q$ta((Sj0PF$1(wLF51z2-Gd?$1;EPpl)rV z0XL1aRu|{3;eb7Q3sAkC56%+8mRi&`&Hmk04-4<UFoC$v=Dyi!b0LKm_~J*~IsB%T zl-7pvGf+n&0t-YQ$ht^J5%3*LH8>m@q-KaEk7t`$Ec+}?pW!1XW*%cexU3A-@f6BS zB<Y_>#FC}x{Hg(2m%SJPV-IrQB<F=!@W}y+eb$@jYkkHkz9*o>gv)Rb3=&n@ng|M6 ztEb%<)DE6q;8x%bggKAQkk>P3xuuN_SwggiiKR;l2Q%P4y~=hn_;87VAMA-hr<z{$ zCyw~<NSQM1{HKc2iAVu<ytS{0AWDv`jW6Rq>To}<z5H;o;3MLYeNpxfAkM~C&ESfQ zwT&m^*Ex^#j8??_HT)P1{;WcWnWb6x0^hgCCP0YNI!KIkAlmw=hSH0W*On<DWlSW) zxy~0VEo!1sD&t1h#5UnTInWZ~gu9S_MOPF2omm;{2!k7vf;tjQg)|LS9HHdint@-a zi~mm@eg9ufKF6sQox#21NDL?eqEc9<WN)jd-jI|$lgZ(l=nii+517kj9)HlmU(zuZ z4ng8Je!~n3&F^vfLaS^zl{`Tf%Z?Or1tLA*TfCx%-TWMcxH&o=(B|(k<=UE-Gfyhu zO8M5*uD&yA;jWyC@HN=}`hoQudREl{bIa~YYv56TD~moOF}S|1b#KdVD$`1`wGQS3 zZQ3hR0+XEdkxdfd8i~JAkesMqV;Yz2t^H-OX+v+TU4e%pTWI_MREPq~eFO@{1QDXY zIR1q&s}164r7)~adQ+5V{Jx8VOr?WA<Mt*Y0dj>eMegI-eN@S~_S{6?8DB_7y2q_k zqqGhNm~R3XW;`gNKY>aU^zxtwN%s<8qknq25%8seH80%Y7q$Z$mLl(S^}O!{R4;Bo zrWB5%sGxh_#2);zXfSUvAWZ&*9Q$QHQudw>20PkQv2S>>WLVNzSomZ;&jj+?NEY0G z7AEMqPhUsQw^cGvKC?)Y&1&cV$b}6nJ=!&H6pah3?^@X>o4p~8p(7zB)oye*&QJ43 zgH4l$-otAzKbk=)F7Jj<*n-8oC5v9vIx=y9##lfFxuBsJpzl2_1_F)i3?_9iunI9n zAMwh}F?6wWMhgS`UIZIiCetS=M>FQ;ya90ag<VLf35Yh%yBA@Kig`tz^Aht>KL$PR zrteAM6vyS2FVU<{iTKX`V0Hotqrwcvn=Agz@dpw{9!v$69GokM4&*X@>@X&fkPU76 zzV5=3Ieq6W*sYjy-c`3~DJ9a`hzcrSIUn=(=JDIQ)^dQIaS){Rd`f2N&CCJ4dkFI5 z5S6w?5^c>u+Ta5zV*@WUfWD{Znvu`gp{S=;x;F~5=Vxp<-%<kg7SZ1wDZC2fv=ZZW zV^dJgc^N`jOGf|sY0$}I(Pe4gdzIfEYKj-UK-{S6Xr>gPg!gY>2IO+{T8LSSj7vUE z@|Lj;4fu>@D36D^%5Oe`8Xz<v_68|H0U1<=3_3*;-Bf0N_^M1-azy3B^YU0N0xJ;p z6j#AecQw(g>BrBI;$)sZtw1s*iG3*?@cOGV^HUkpyb801Hzp*op+=zO9;<$8o@-Iu zWa+N!4PT^>w@<cvSAfjYBg_KVttDutZ<W?_0|gFH5;7=W;hEOU(3*&=!SBghE<obY zq#O9?F>SC>wYJ?TH_59hOl)(K_|HJS>er)5dD}qk)$<gE2k|VSibeWtr{}e~s8rN( zsNIvfu>pNds7&(tRlTW?jXKYpV)3xVW$1ZrW4xMnJKcCp{I)EgehFRU1EqT|e*hwy zRR)(mHOY@8hkJi2^G2{dhf;y4*?B%|lzzf{$w>VUc-yby!=V%K;`J;lH&C|5yEEke z?!q46bXpc$93w3j8mN)6DsUb&rQw`a;7(>YeUK!{89^6L7v3p<-<4%#gD_!i%p|QQ zPFlf_GlDk4f1jb2G!D;Ac<V7MVyiU*ZE0q>f|tCuI6a4B-2bu>YIX12r*@&U5SLv5 z4^82jNgD>EdCi8V-Y~=G60WhjHUTtj>en6kG!mp=OygV&^V8bjsRTsEqE#=>`q`<= z>d8BftOjePP?~w8^1dZ&!!BU@!1Q6({CxmHojTSBaz>`SwMgeWE%>Da+*HsneH5lf z^yGTLgQ575mA+KcZa973B=;PLSri6?dzgY=231Z+-*@hmH^<mE3Mr<gJoGC0+Lm$j zvGazC->Zi<{j$<g-J=RlqR@2Tz^bv!>^xi2+3p#zp?Xsf^@PjFJ{2oAWz2moix>CW zROmfkg%O^DhSfSlVOdIauVLQAE>L2u!PChonN`k+{*p2_`5vxeG~LV4x2ixH^y8*| z2;w@y!2j|qk4+XI1sPf6)mD*1-4dEC5EgAH1)o8p?h<;U;G4rhs!BLWCi>*;jc%`X z?QB&(Q|i__{Um2mZ&zMy2w9nMXb`sod7I4W7<;&b-?onwx&MV~TU$S!K9A5%WkR#< z?Sc1Qb_0+<l7yR__c&}uTsShTz>x6gqnF<~i<x`9efo!oi+AE!da>GaG!0);MSiiG z`TqSo5JY=3<kmcG4VQ55R0zh=d9Km4sUdx?zYi4F!NKE-2v`5EE&q`KZ5U6MK;vbC z!~m$|q3Cx4_Q#AM-q}iht_QS{E16unyPH<>#kV~~to55dP_hF<&Q|hpA%B?NT{^`t zG91h9;hiX)G@#T(E#zo^nWmB9P=>VnK?n8E!*2duPNJ$JXQt)LPkHh2nFL0hX0kaI zbf}dWn969MQrE&5EoC3!=5ji}+sByt^<emgG!|80doUkVD1Gt~$#<KNZ#m_QYZE_A zL4YF3H^;&r`?l6;!%OeSw_wn7ed}#r|IICzf$LBd$3?KePuKE$Igx{wDCT5AL?gn> z%K{I2(SxJpGpR!wqeS7g`WZ)<IKF9ws8nE^r_8IL8l9YnW0=}~3CI~yis3u#TE~v1 z57uB!<YE}kT_p#J<Jzw7-ph2#Lcw~DhVcd~&V^4p_XvZxH1^FHs2dc3@krE-<!+K3 zQZuwKr{1TgTRmP+va6kqxARGd)oMpbnm9T-?#<N$TdegykCUy}^*`!n05%bPy%kCu zdC|$+QUN5E@JD7R$R-=b&W&8O*TKBR9tkOZ+aqzU1qw7@R_X4e1>thZIM>>qKaZ={ z#z0P_=QC(^UZaf?s<a%YNvC`N8uRrxZ59gD{3e)i|A+BcC0`8SHxs~CCpJJb*;o*c zNFA^NbAGz_&N<{_TBGGC&Rh8QAOw5^KW_y;yaCLG<`wdN&vT&22(a&%$U)GZYZoZd z0fcSJ>}JyxEf!L}Oz=&Nh($c?p-I6&;$<z_?hsJM$9l@@NBC9scauW)S339=3Iq!8 z^MpXJ>p*n2NUASmP&uY6_2puXq}k%EzJ_Z`V1C5>i07SZ{mm|nxwtEDw(&S4ouc)i zI0~{eI_ZB~s^beLqoe?mDT(bmI%bxs2IQ5ZDyOwt!tv>~=rKiK4?W;~qbr-l`Iw}f zs^F7y?4xK-YSiMsBV*&P_?Yk1!JQGhR$3#--$8ny59p#6&#3y~AF)>0!x<}fTJGg~ z3C0*ZwC%e}rT{rRl6H<wA_I^1D@K=@<3a1qhcyG=?R}b$6dVLsa@e&JlxrRKM3^St zF@-R+l<%~&zl{IfJ#Z1DRF+hG@HF7Q`R4eRqiV5(X}>0ZNju9KQ(T9vp>>u*HjsO- zjrKV8r9AHH>*%UfQM}xO*AIq3HPnfAqrP!K0XzU}ti2vH+Nthw_QseZM0KTPsA7%t zXF_Ffo|hQ30?w)${-++vc|g)JkbY+{z3F;aKN_g<+02mPdjxDGGo`}}r09u0Gn)kp z0RdHz1kzwSU(COnD*ChV>vR}6pS~=_M%eYQ6pdYt7xBZqemOqrYT1VZsak8!UQ0ju z0TV6tSTVoqt^lmhelx92hX2(ec;=fh2M6^#ViF{vvXrqF5YKX1?*sOkd^YtWCsr<j zRj<{*c@-|sS>e2f4`fD7o@$qvC+C?EJ3RqQ1$o$r>?P5y1J!B(ff_FD*3KLuBaWej z@sxWs6uCEmI3VX)K)5CHn*b1_=_cW9ch>i;YV~LLN+ert415>(_XRK0fbGM4x}W2} zjP&nS+4masaerT*ScN(6bzInmIBPM`g}1m2w%oj)pXjexPfbscOu~IBEg;y-%abgt z`YslPp-1<QL7Pie%bc4_A&+k2-5Xg3)aVTo)ej^*T6`)S@&t<od7tkIyv}_yItF5= z3l1pU1d%>OZ%;KY94*#~r{!DUnK@U2W%y53IQSa($Mj8H6Q1~;9j%p#EUvK$nr8e+ z^C_me{sEacZcn3l1?<iukoNj18JX6sR`b!gPv7n2mwW_lZ#I(Om@<c$+tgxw1=0W; z7zqs7uK7_ndiZ9<Mn%}(g(3v^kYJK;{?S-IZk$dFmLcYF+{oixkjm>`HHY*@q}*4V z%2=`}zuuVF&ivXPssW1XE_aw+8h7d<9<({S-xZdhu&VuC;gA8)4}hc#KFE({YlE6O z9rzqjP$v+__xtZ0VrIfNcHI`=OQ80{c2Q}=^T-t-N5j76C%gRUNm<!wB3ba@;Ss_( zMTKBZ1PH`;(RV%++$rCO-ZUpL&$z+r!?5Cy0S2+8R^~k}r+*Y37$|J#GYn)L*=iBy zx|*7r4y3+~9jPo13=EVEGVnVc2kaA>iu?&EFH8eSUA?PQQ8g&yvoLThyS5C}LnV+< z$sb)xo&ClFY#s`mW^;)dFsaf`(xI@q>Op8#nqn40eUB%VwnsHKH|b(HOqi*1!>P?c zh6TTt9Xam-LVkK)-uil>_~T8GaH{onkA+WdYj&@T&&mhWe0(LL!z`Tiu1`&u8<QWn z^PWF_&PihQ5ucG>Y@FcsMQpr^pZm)DUAge5YHi0&?jdf-Yw_reZFb;W?0`Yvy=X)W z%)&`Xi(5>MF8iB}%CogZK?hgY6QHK?<RAp@!f2FiK4k^$rpc^O9_T~O`}p`XjrHtQ zm?_!g_v|t>xqTpH1r7z7WXvS9q&zD?aIfyxE*M+0Grl1V5zBw`T$t6Je<_hnGB}I1 zLJ@dnrS3bw10WvEy2C?^@>H!hNZ%{QQcWqBKO9XC>eK&V3$1-R=ow9yJ_++wOf<4( z#(tZr%c?3%ViI1#9r1wPO^-nwNQq%;)nwL=&$S{&G7Gm#UcYWJBPF|*eZk58$!-jx z^_~Jed-}XIHu{}%R{4)wxo2sKi5PD)wM)KjnWW}N{$TFyskF^26N}l9S>#mfCE%Qv zyO+(WZb)#ChNN3HPmP|AFCR41@d031z#NR<cYpgzzHLk49m-ZUO|$aQ$^)mJ4YU{9 zZ^^=^A`k;VkLFt#6MQ7Mt!5@%CAsex+GqydM@g#waH3{h$NZ4yQ}~wF6=JqAo`OG` z=0?I?U0toUQ`m&9QVR{Ib3|M7tOE~SH1*MP`O7EaXYEMvA6FI^k&B_9e39<A1+Gz3 zw*%GF9!WnjBqG@_rW_p|joR8OEe>B)=2@YLLf>#p$P3=&J2B(F4DGw(T<-ma;aEDK z(o!=ydtc<q@pW@Vgnj(eFPv!uR|R09axWOpg9xV*X6PH9Cd)^ev8$v3gK2|m`A!4R zcg?x*-WgGe(C%}SfT#>s>vgqSn6zXfRu5P1c2DS9shGH0YHMBd+N&JX-k$CcEc15S z`>a!pvMk%>z-VHQ?;fp^E&woOI&zr5_tH;b=glY9WdtBtYCuU%583|hc#%eJZS4x5 zd~`cMFY$x$k+LTxl9jPeggg`a26?3Qmeh|vGaM~ghzuUz1VP|_E-pYmbaw1(Wct@z z(%7{Jh4&k^ZiMcCPJzYy96YO5C)OtB2(WyMu^k?6o|<t%%FjQZv076#_Iv^-jpKH* z-x1odFm*L|N(sNn&zNrTwsNsaZrJQAYjxsCDrZog%i2d^fnsWj-lxfSQF_X%5_NLm zPAeA*pRaZgpzk9NdmW%>C1;_MPrj4A;>u0R9tzJr=I)u{1taDSZq6o34kO5TwaL=D zO`|XQ?Y$#m;}VLMlU>+a0|P8aMUP>I4~^FQl(aU`!PoO8WxlEn8Kh6!@>k$jGr_~s z(Ws~aV*HE-f1-GrtLb`A5QpLh-kgEhYBoTu&&>p5r_2s|tIY8sw}1?f>eLs>ewdPk zIHdv`4bum%rSO*NHoEVg?K*JNhD(xoDIsauJPUEL_u!kG6N117(tOVM=360%z4^vb zE5a_0Y5_FgHtmvx<*XxiToskmwl>To2MA2Z0kT`9t@;R6+XnXJT{wr!<51Cykv65) zQ$lyhQTBf8aqzTF{@_dSgtp6P;e~QG<S}ug(KGXky4J_AMpHSvj?44{k)n7$IiPq; zeyNucz9|~z>B<?u&5UmB2j<F&*O4^OXuKj^D=uHxoW*}ha$#l1Hj;Qjy1Vy{lp_fg z+v~VG@@%d6sj_JxMojl&46s`=kWcBe|Gv290cM+H{2F>X=3v}s<xA(+C2V2tp|`|S zY~d<%A<uELO!+KJYeNRXSUiD8TAZ)xjELbR26eZm`@)xwk9W(X<HqExCt|wWgCiEQ zrNqWeU%dF}t>p8(JRjM2Is&N0*~>mfR#xIx#Vm(8dZ=jmj67me&_-5OK>F3a$2_9k zDL_7N+fw<o?U{G8eQob2|5nPW4dMg6=;3d4Ge2B_7sBg)(L7-6mwkpyvA4tSl5A#_ zQ!^2$;*~xKw&8N3@~&jC?|DcdS;%lCfJGBegRO+6HnO09Z;}2eq61B%!Yn7DeTKZ2 zIBemg`usrFm5?I1*V+Ixo)a3Q&1S$g;cZCSmi)ofwS*|}V8D_Ldspt$W98CCF|W_a zx`eBu5?^!4rR{Q5QK&+HI&}^mhN^PMWs?jP!K%>%iYY#bdWRbE2Zx~P(#(6JsDhs7 zW%60{Xom0~<Ypmv*aU4>y2Gd#KYCr=4krg4d4pm<;u_KfyvJkZ6t0tZW(eT0DkHM9 zduES@)O21^^SS)|x{&50-%EkeilUT+Z`Jt4TW3WSu&>al>3x#y62-9C{q`Odsda>7 zgB9z`{85?Uh77Y{*Ve-87~4f5ywC*Aw`f&N3qzhC1LhLcz_gat6?#R@eiI8)svTEf zxbhGUMrAA5p-GVbj`n1v=V8m11zE{DVj4cpnsdU>zxg(wfvAuSt1Ut4b?;O-(!)at z&8W2>A&26aDKJR~CrAlG%0vmqtecCSbGvm&n;x*Yix%{y(t6tq(BtReQ()&G%m7ta zVRN=GXkQWs`*SB>&0&zU5^KO>R&9qL_Kqlx$8TDFAy;gCdJ3^I9nvM06u7)?Vz%NI z759opEs0<H!EmzL?^42+_beRq9h*5R(hsF`m21Pw2Oy=Lw?2)=56bw=oBa2P)rvB{ zX45J*iZBtSzakUZG1zDmkxHtn&~F=rxl3@oJdz*=Whyt}E*{N1dL$(9y8d{B<tMdj zo%wOZW$UFXcWoDHHjJ<K8-<%W2qVGY>#*lB4DNh<_1+&*=AUYf8vSDn4K%z7H{lCN z0d<;dm-Y9bRz6~K2#L?mFsp$)xk!&SYj$jPJ3ioJ7SRMT;^)H3=zL;9?7Cdb43qpI zW0Va%-z72CPeI9EJSg8kp8uHq?hzHR-+OP!l9f-r&W$F0;&4&WcWrBDRM2%J1uuID zK1vBkg5JYj8bKMi4}&MHDzVQ8)(G$^jr6GA3s}^bPfr1T59{!L<EQ*NmE~aV>86F& zZqY}pn6IbIZ`cm(>Wtq!IMTg&E{Xe|Cb?Ub+fYSa1~hhHGMyLqVV)`K(Zi)zyR`k< z$3~#{$PZqjBu*d7H9CNeQqVJd5Ya&<`jJj+idepB*3IQ&SXE7YoZYQEo_HwARr6FB z$!AqSvE<N$vlkP=jwsd0p8HabizEg2L>EEQm@Qv}{ntmba3gh^%>4QoP_er126lW% zt|3pvEHzj_a$zp@U1LlHpPICN?Ox=@>+|PDL>Dwn{P*ZRkMu7!g4kSSvQ61`>C;gR zfPcRrtHX-c<o9n8gNr(`XH&bUpUe<w#O;(>e4#VNAmAe-p(tMZ((r9Ah>#A6hz?1{ z90_Peil0GHyMvG|k!amPNTyh{?nuaqBm(O9LCEovAj}D55E7Ov2(*ZVH-QC!BaV-c zffN1&``r&zG~oC@JQJJ&w|o2oiTDf!1mc;v2SP$I#RASq$S8><j{n-ZmurX7Cg|^B z{#V%j8=HU6&A*q>9q;*@A^nAezxn2WFOB}@n}74ozxn3heDiO8^Kb3_ZzJQsG2Q+a zmVXP&zlG)B!t(#Dux$9xU0uj<+<!W`P#2LFf4jM;Q1K=R?g*}>rS;pG`0KC#7Y;9E z6gaNoAGka^Is&?P{EzSD<+{oN0j2(r#(w9U19tcLf8dV$&qjBLjo+xaI|AQ7M)x;n z?{M-TIza!O)coIJ7K0oF5(k<7MmY$C@#p!ElN9|Z{b!`lcYfRd@`D3HJ&*?=Dp9cx z?s~vP1rC7w_7&*<0VD7ysu(74y!Yb~a705w295}zPYjST$N}UG+}jK|x&W;p(4&L9 zOMyNDj6vuJmQMh9H2js|Cs_=*6gwMvfsOeYx(JXs(0(_l5%xQ1LlTfZ#eope_U|A+ zC@V@~W0Br@lCfo^#a{!LZ2{jyj5|j%P^{M&IAJ<UYXLXEkAL??0wt#s1C6K_VhUm) z;FTEPYn2$_H<gL>YXuO<`zbK8AQ0#hn3w^ZAdnm2mfkW1fdmpkAR>oogAPd$i0q4u zxY!%dnVoqBd(znnv_-WH&W|Y%8Odq1WP=T3A2R9<es|3pz325Hep50Zh0BqbGYunn zQ953p;q5~U(o>%Dm7krFh@P>*W9i{>4vu1-;u(ish4*PWR>_i){{4tBr4odMO5xpx z9T`_+8mm`uHc-G%yfF|}0TM_I8}ybG^k@tekcoEpLrBiqzh0Ic4a8`vd~MEos#el6 zP4&TDo>q7odIaqy_DJCX%dTuKHGK@tA?Hv~GHz{0c?U0Y_lsS*tvSI~mZ}n?n|ETC zQ**}aHdJq{l~qP5fA}N%o`+tO3kGNkEYpT9XFhfy8_%&v|Cw$Qg2v%<bwiB?@oyzt zSu@Fi5C-LttxWSZOhfhb5$EHB{@~nopLCZOzi#}h$o0Kvgyyn6;^TPX{&-|e1GPR} z-SE9v%`N`6>^_S(J{xZLcw(RCO!5ZhZe9&mgTv482iJ|R`Lx4M_t_+Io7YbbEB)aM z3$DkPyl5#hCo{)<vZK<YReZM0CO0KSG4Rv<Cml_^O{y+u{6yJdmJX=<C9rTO*I6PC z?YSF-{NTgvFG!wyUdJVO4WrpQtfs9JH`n<Ff*e9Edy`rZIGgK<-Ds{-cx@IoPj!e! zr;i<GGQ{_<cW}#?3ck>hI(dHc>T=H>|4?^vn-fzH77lAG8nbyqAps6PG$F*T+8<6i zF-i6cyp7rHUxE08U3kxrEK(H(IIdt<4A)MayB3|lW}^(6*H^jyS%D30J42?zWK!YW zA?rNOR{-FZlk5CRt<Op1Enl}T@r#xx;uf3+8793@CtRPyrK_9Eat{}{UbEuajaG&M z(V<WM?aeG=W-zrCr>QhEm=jwdMb4yu!L;kN&m@|p?pum@S(4sE+b(u`4g(Q(<-F0U zZJvFt^pO0s4OOM8J%!d6KD@2ai$^|5i)pvSk~@ByA=?v^R^mm+%4OiAJ7O^Aq%=>Z z<R#_S4BXE+_RwvzjD~(3C?RRnOY1k=DFWjlboOrf>fw!}%^N)LdDu3G84|Ixrf0)8 z-4HC2ysfP_<U~pL2hZ5Kf)=g>dJ~ldhOL_p?s^_)ZULJ}3fn^8EgZqD<g+LZ&S{Mi zHYX;>T>I0R<ZT0t@Orj44s5DyUBh-3A_yDb4?&7&E_J-bmP?9J4_7>Wm7?Ig%-88j z)2y(hYmO1=Dub=j3q16+{$mS%kw_yLRSS2zlRJbrn{X`F@jHJwL@JH=TUo-VsBE4s z@S%(VM>0jb)v@=cka2Y#h3$mgz^&2s;E~R?F+mu*!|F^_%qh8*Mz7m3-%KJV_ws=) zZg$vNiJ%!}ozCr<UQNILj+w}0Q2wP()B=2)L4#MN^m@OJ=cE5wg(dWu4e$3{fpaV2 zz@6bjM{YKK8lhjyMozyV#?Bk!SN75l(y*iX>{*tJ%{8K1UJ?W>-#hhnb~&E9VmQ41 z>C_$LK##IGe5ORmvGsyh#@>H|WZdBeO92vN!Knwy6M;u>lb7Wx6M%fff!azCPDBkX zfyshu@aS^I2mK5E0Gr0cpIpAyk6};h_Zu1*Ck@R?_E`q7J^YFW!;?n_3c?^7Zm$E5 zPaO73uJqLn;P<qz*5lBQX!NBE*ane48siU*7b+>EU|60$t`iZ%Rz7rGa07k)-GZc9 ze}&2;DuFU{<W#?nKL$e9_Irw92>=BGK;H}g1nLbS90NUlVA<QXR{BRzYIK?Rctn4+ zc}*f^1AS6u-pjm$S;P1jm~ln`#=)DWux##>8Z=(pw&DnIvouAaE?Cq)`MYGkR$YFK zGSA2z8pCvFj)Io1$#X)OWb}H|w%ahTy9QK_bdtNAb>yw0-ba79B;7qerT*mO5;g=f zi{G&<iWe>$-PpN0*OQ)eIOfLD7()RPYV{SCZbl|rfhXU-0BHPo3#eGv?=5L&7Lwg% z-P|drH3+Gs1rN0v01^d&4F9+cRBR@C-#P#ft$J<6dGe2*p5qMx*DWqJZ3n0TeLfmO zR=$IAM*SBUYl5M-$-Kg!$29h?9tCX8E;#|ul&i>)zH;1k{_v$jszK?KcN#)c?zrqq z^~7(WE89L{F0?W(3#SbmWQ|4pPa|wdHHoam@>wOo5ZY+u)O_>)%ZUU?V0?>LZeUX= z5#E+h5y`_f9|Wqa*VZ58xpzl_H$tf%<N<%QfYeLxs5%_*%~y91pk_dTx&bD#HULBg z0I~lGG{JdCFwB1?^kd9BLLdAKq3;ML%8&dnlYs}zQmj8EU3!bj!w*CBboYP{c&69+ z_=AW4GC7&jX&W&T^K~D5-9J2S?x_Eq!@uvXcM>r_ejeS)gIyd}ovE6TmC=eTgEXL8 zweGv!+bSvtZ5k2PZ@-Uu+C2Us<fs{f+#vKPd64fY@SI|x@uBGN78Veb#vN5HMRi12 zJpgKoiWZfjA_42?`6B>`_)j1kk~@OE`&UALydyN@-E8=a&;Y?mGoSn`4C%e<%yk7N zy3@Eu5!B2pch4ulf-4;T0K2$3Yz|V!2i79`(&NF;dZ>M>tZ3us7gr0*bJ8QJ9?h&* zoqJn8GAqew6B61(g>u7#(9j$ZtWe9P<#f#;GuJ`iii&Od{ky9L>)=<H3t%L@^gqcH zc(>FZ<G}RLGk>=b2E-NJQI$KBg)*V>_j(%Fczd^?9%BGN;eP_vJh&s+&wnMf#2ujt z?q<VZga!zPtsMEUFcAREaUMhTRgWGeva+9`&_h^4(b#6Yi!c0QL9F1zac^AE!AF?1 z3i5gj6);I}lVK2hI;(+3eIh>-kJIK=I?g|6NCYdp+ERuhNZxvOFZ%h{f8<uUe=X%# zrb<~Z2<R=SJa<Zrs4~i*O3Z(x(O_8LsW;zeWdJ0fm7@e?p}8d=n^(PncU~7EP5_PQ z+&8|Z-sVMUj$mXi?T?~bbwG1j7Y)cPJ)k<rLb}o(M8VODY=mH&HDf@|2dEjNZezGd zkcDwJB-pdp&vsS@ADEG>*y9CFGo#7i0a?${t|m=QJlWGnQ)z2mYk(@#dVW1H$JjYf zcdQ$f=q0$t&fvf3*SZJ19@CsmUPftiMvvR(PA7vme|V(kt<6SL@GR}O(!vcCgt3C) zHSbq}m##}{iAG&-HIvgjj8@WrT<EX?Qs>G?ien$!0XwgMV^^V!Ldk@qA@ti?59zy; z`14zpA5)=iRosNxisF#lYm3>GeJkM-BHXc96^J+f_iKY|T%uO4pb2*W8@o4p@bFO? za3uUe&YhCs(DyAWB#rpC3c~e(l0pLFObU*Od_1t}W+1O*-@NaH+nOM_Wz`&-nfIDB z#OWJxhlHS)<0eP^apKKsH~p}Uc>>uihwD2gim}<NEZmX-x^+Qpi92v>qqMxwzqJUH zZS1-Tbyv7ZS2yz)gx#|=>yv?REt;LaBOfLdp&oa@$=UYRdvYsxDvr?;gTcClm5py) zF0q{nd>f_|`SdJR{?OT^qQ<ogzTmW=ixJK9v5@A_rBe&0+Uxb1PAQHu)fjzoWmW7d zF>^0RKNQ9FmCo>6KCN&X@BUM$-N1?^M^9hgos<m?8Z}?PyqTR8(48YsSICCAO}a<Z z4GRf}c1#=TD(RmqaYpgNoMM}6scA?J9%gZEN*sTQ(offo(a-VseP2-KSj>GJa<1WL zRyG(;3c`|CM!8d_)7w1!+9K&>mZ`?X2WpX3PAisgoYl4;UX6JhECvesWEJh#`}b?S zFWv??x0vu9<3>#fPfXmF?uRZ9Sfid6^;`56aAdPCT@<(Q$U&7u1Lrsj=9quE5tp_1 zoBoH|`yX@t?(V?K0Db@~Lv(G-|Gc<z$5Hh}AWSzStuWv<Z0vIF>qOfWAQRohI?@bE zv7kPz^k0QB8Le?%N9)VFEDSeokU<z;M3gjDXFf~Z6&BOm&1AL4A@uWAhidO8w1f$X z+NW=9p%l>a#vuKh+ube1|72ChsRC);J(ay?!`sZxe(q<;vT3RSThPWa$pE)Z-h1rf zU;o^9zdo_xj4rc4SX##WS-+RmahAhPTCACD|9$f@t0f;LWevfCu$dqU%8c<^_3PYy z8k|ol3=LPHtzZ9plsIesfs*F`IZDiuULU_Danrt7z#kibxRrHgINW7%S~Bjx+4u`( zb^SxBNPvJd7s;Qv{}VI+WKn-$=ATBFGJg$JxQMw?m#}$&X41lfEpv?D&A<NZDf<~9 z?DUkK0Q~$sPY?TGt%Uq>CMY&10gwXRY*(F78LhmrCPT?I!j^MXx0;}a0%6UQLoGj> z8iOm=BT&6pRuN8S<eWU(zh#X7oF9Ox_s9JBbBu2W1VcdXgZ4$=n^)TIrUw~;zjZTP z$D&<IFYKDf;BjT?ASD$26ws%fA9=zxQ`VcZ>mypn^INW2UFEa4X;?PmijQlboL+{L zy7PHv7?jc|jQ)hHK)1)x|1l;0`QU#t>i=LoqWpA#{PQVC5>*Kj==Z7`115k%4b<Q^ zA2B914TXMW^<y)cQ!r*PlB()Mlc96F1mBM}P1TBO16c0}dDjRv!I;BDfy0nvuam|> z78~Pbz@@NvjKBOS_efQn<;IeQ5A2c90$hevWC-0eN0Es%@-4}!0qdsmCta3ix_M#; z`S)DCoB${144v-WcQX;9uoe1NaZ>d}inkl?e|Aafy|-<4X;)M7FN}Meq50ICRn~?l zp{11#K4UXa%tk4IvuNg5UveJ5Vo$eg)Sg4sPxrx;-9Iy=&`lX<wrf~B=X0Kw{B_KR zUxpcJF-dc?RnF$sVaEo|3|Y_|op-Y)+iVU)1?0M$EX3&y<{^lC$K^bCT%Z~{v=0YM z)5}`nw^ePOS3j3@+FO$*$tbS-@<sNx!=%ofj`Jo7vqSY=s)&}fMl*lJFEn0RmOFV8 zZdOwclXTE1&<gW6<%bmdDWB(CIL+VxLl#UfeY+va2N0!n##Qe_a9bA&?cLdTz}#S| zI@@m!9d6woG^9YxosWGR_fOUJ>%_+$zHok&)~%~N>HqThM1S^-PpJ94(@AKjeIrAs znU_Bz!&^?dRWYXDq|$6+WJ}%{-cFx_J;Sj>c}s#}a9qzj7`E4sr&?9J#xv9vwOf;L zN~3$O0$7|^_FY3_xMO8`!ygCcRoK>J6st*<WH&8wcrCcg&gN?M^QUJUwS$#t^}@e3 zp<P{6G@rfIe+RzeH5thO^A_=9Y!N+lG+55$3U^<REWQ&E5D^RiH{P9@!cC1r@aKc% zIIQmnTT)ae)xWV(Oxv`b^<$e3Zb{TxJP`IDz&671?+eLn*{tLfN|8it?X}U#WO;c% z3hRS?hYW5~a)gH(U7w{*u|f7uErzxmpEj<TwZmoPuiGpQgrQD01b)prZ54;=211pS zSEJd91}rKse0(_kWHZ{DO*UvADyAgm?zch)+vh3PIegzU#`#0G=ONpTKVec<rr@+; z$X2%Qei>lC1t0?|o3bHb+&#Csm3S7A8T|9=w}R-z4>d;-OaLT?^X`!n3yRtJZE_hZ zkD$vR3^bk{-pp7qI>#o3zi)a9<L+q2Q#i>WIo$)eCmBNj=Lqj(%64*;%(=PKznnk+ z`EvY=Jt*!qT1=ajU+pO0`(&bwNJhXI4`?Lzz9_NmN5O-f&kgR3C~sp~y&w{|&-r6l zWoYD@eFMGWe(Gr_&@l6{OPu8eNsuS&|3+TKT<>YQ*B6Tj<{+&SkG;@?<$j!dm7%>r zd5gZb*Gi{woQCr>Z;U5Vg~&^`1YtcC*s;^pH)Sy{gJ`ytOhZuZ*`Wr&{#V?%em~tT zp?9n56{%>XnBAzG{?}i^CxvUb!w}^?xZDUg^iui%_9Fs>4yZk5-B&0B*F0JM>Jt_* zdP-@w13rP;NCS^Yo(=iKU-<Zns^~9=;n)?kABt!oV95T{P55tQ#~(lbt>kxL;0Nr| zhbSNd?t)S7ex8D`mP6igf5>SDT$R!c0%7^x<rZEdcC<7a7kbv~JBQ$sodkro09wh@ zH7^(_Kt}i3wX4F_(=*6__KeGOT&9gF!ovIXaDgB7at3fD&U*(OKH%Dd>5|y%_Ln4B zH>|96LKwPFGsNa@cC{Wv+lO}r6?HWX@6r$ND9{A&N=K)_>W>9_om^v5V7JFZe&GDA zG~yuez7KCFnQGj%x8v<`zkiC|<+O>n7ogGecJ|tm2PN9w4D2=(NEw)S)wvDMkqnv# z$s6e1P7^nMJ3T)N)R$1UD0|R)MjH&aM=M?%<V$m1UX)w;ibx)wO_59n)LkoPNuuEe z&7&moG9nIz-|j|1ITMa8@sr6`7x$^Dg`0l;c1x$zrqR$9CuS4EAO~Co+^a<KK@>~E z<d1T{CnX)H*A#$O-R3EWLm!kVLHlt3WELKu!2>@MO47H7hn889S~Y~KSP<{#kQ`^r z>p@RUZcV%DVy2)k(rfPQ1d`e;aKwoz#0H}DTi!_6?m~mxSPE+C-A+u1!RC|vexxx2 zV!l?z7PVb%isA5jtGdo5l@o^iLoP1u)BM@w^Dkjz0O#|6a%<Id%f~Mm-kE`D_AX&V zA5QAS4(A!lNbhhH<bD{HMG1Hnz5JG@qBgrrD4P6lDkv_6c$?=!+0eI<POdaaDbHw5 zOcbt<13Bz31zC;RM7TNqoDY4nl`3zW5j7B)6Y426T3{k(OG})21-40dCB<u0pKfNF z;5x(M8<DVEZ9H4E;yl;vRbtLY?_Kq+D)Ew&CjOX3cqmjIwsk0le##__GiQ~JQ;|@= znDW~xiQ!@*cH5wGJIE-|M#<5b?B+XP=elFSa%qZ~(<K*yJXzr6O1g78HhML8Fba5A z<pEAcaq;Y$T=aO33|(RP#*dS@bo6fn1rGGwyG!dm*l(}mN-<j7#Vm-spo%6V2=A(P zm)m35+~UE|$iTSsb^q~zars(?K;NB==_vPe$)0fbebTlaWl-u}o>tFcv2qx4#d2NM zC4wWwUjXCSRN}%<V(=%ps6E6J^W*v0kr1RPPam`4AfHe6hk>%bJ|7ObJP+C)jQ1IC zI%n+!EEy<=>uGA&@YOjx=`{n#E>5=JsX$kW%E_rYi}_&ordX<ezjShQb0WN6;|p$x z#ps5?{Nofl8Nj7z>;%&f?)PuJu4)D22=xNOEBiKw<H%~|>7?%@FCdWaR;hs^{+84E zfCSX`Q@fLmN=jp$-y|=n1AFUob)w&-_rh<fZuJMi&JRql8N!I&Qa;o1g15s7;R=8Q zB$If;K-YOgbd?q00&7<!r}-1t%kYdrUCg|~tMu(jU$v>3k8_X>u<Vocq{GV_PAEm+ zt$AgrxUz;&LH3ZrXa=fUK4R+hBGmz>A?d+CY^r})HUE~`{1L(UQ-}dSJO%fGxJU2l zJ&`*m*V`C!LU|P>aBdjA-n`-#$g2pQyU_6))L31P&fGeoY^2CI-W8LB0<!iWn(F_| zrQnrt9z6L%v8<)ZM;h@3QQ(3@Z?zz(Pvp6B(humy=e`oGte9UF5f$5q{7{PO6Kv2u z`hU19{{ObXe<XvO(mcEzJndFaw*HSkL_m)h?2)qB2R$^VvMHVKKbcV77RdBx`I@he z_NW<c5G06`#Ugn=z^ZA2^B~wnYTz0hD8(&X6A6j0Cjs+D06eC#3CJH+E5ImV@b1_S z`s(sOH?Mw6yO=xoVF(fki*yWdFqO_aX#5cf%Wr{I{kIee;5|m5fKq+V@f|+Emw~|E zKVDN20b+pvjDy}q4FCD@ex8s066GcEBFTUKxr>9o06_kVgJS&|2jv3dpm;z#s@Pq> z{~7`PE8+>nM}J2=tDWy6o(1R2I0%l_Ozx=0dMJn8A_DXYXupei&M5pd;u#9G{X58i zAMr#U2d>-1xQn`)p6Rv$CnT5GQZGTJ15bbm=3n8@hwUKH!#1QD>%=(_$oa|d5T^dF zAEx1(@#!<c7(ZwmX><S;9b;G~O=TTh-DG<%V~u~!ZS`$YwRMr&Tb3I2uo?du_3hv~ z4*T(}EMv@2l}EVLM)=YgI=^0?$wzC!VRM4@E*3K8%`)ak>540kFlHd&rLf1f|24&L z<<<F(uZp&$`>U$M>=8EzVqC4AWe%5-34AfpK;GTGX;oN=dH7+<{vE6B`OVry*=6a& z+0nHK4&-prUo@F6%aqiOxP+;=hN#3yk^#W!B^r_i{0Efa)%u2}^6wVlKd4M`9oxX} z<UGMU?wXE&wFcl~AfcX6Q_+U~!eB=Z2hn~9PD}4W*N}IUUPtzSc1RqkEc!hV!aYWT zk<|xoa+G~!u?;KKzx33R?u8CIp3XXd@n`+Q3ZX)uzZ}%!fFT^HxE}0G4JaWfjz=p4 z<ETH4zq(y8xkTZ={oZ9A*vf_ATN#T%CUSMKd($?Y#+wSUUR1>%dr;<gr6=7BR<5&Z zwlBz#E9j;Cb?FZFQ9r2%W10pBlFyz_SE+z6jSbB(Oiz_t&o$wqir|9^?Zy3I$WFly zhVn$>JJW-xWful?zCqAKgVX8APw^1Ymr>VEWpILW0{Bx~jgW`?34bjrXWRG4-K+ik zS2|!yO%h}+;jw+;c<`rD9N%KX3!4pyb%o}u^Y^1zdP{AZM}J<dbKj>{yW!RO<1LG> zBXs9;G?Dm2j}CU@zGtvL5kG5P-<MMPh1tzcC*>zA5qY5c*QT!WQa1D5{95Wv?>B5F zf6RP}2a6k>GrIqNxc$R`tBp+P*-LSIq)@-m7G^cUzWfC|3}h6+7r#eyvzL)MZQxvG z{MA~}Y?)@(pfpjKLzH6l`T!e8w`Qkm`rM((CsI<bsn#hW{>X-|X0%#u5V4#;s5Z;G zZh#n!n}nSW{+ubv+N}3I+vvctjWr$AsylMHf6Ox#oOg82TGo~(stsR03Di32xm2+* zC_*YoJldG|u)h>f^4_w7!Y##zh_>K2{iW}>--?uQ8$oWqT6^!4d*0^XHz<q#F}$G^ zVSa>i10E4Z+&D$j`JMK>Z!NewY&_2(+liTw_fN^>dyBpyvJ3xZLk)4<VdE!JQFUHP z9bj^NujatD<72lLShc?Dpxdg>g^zQVm3DLcqAJcAa<dvjwg7i*i@Cpf8aMM}+(B?; zPj>=-xr|<Xj#+%rP`VX3`MhQ-*8S+5rQ}x8^O_PYQfGU{roK12<B`uRQ|?hTp3~ne zAA3>d!?ti$ccP8jZ*xF2a<cOV{bcFmGRGIU{Ur~JrA~gPRcKl*!f8NK0X}9K(yFG3 z_SgaG@QLazm!&@HOt(X$PWy|u^d;Nm1@CXf7AdnwXc(d*clSCoKq2PeG;6%n{LbFH z=?~+;)@(0qvnAyg>14>3YVfAgs)t;|W>tJ$%eO=a5;?Tfq!D(qMJ|Qfmp4Q%vV<9S zL5F?N7G-Y9Ffvi5OX1YwEyeQi`pZM;K$-q!lX<IP^AbH=KvRCE>7c9YYk%MKK%SeF zOcAOQ|CH*6b70V24m+2}H1_57q&J1bvi@OQ7Z=+O*Ht8AdY1I9yTKKj!`!~MR@9Kp z8xwKa_8eT5`FZ-LD;b27W1GNsYJIk|eaqR7n}O}nav1XZ*xPL@I%~>N?Gki@rtOi- zNqqqX8`;r-5E+E(${={Lv|zmcN%7YwEEigixw{$rj~0G0YemM*rwKa{s!<dlnHxU3 zmNsBgm}y#69XX4V0;ioZHTA%q-o&T@qs?g?fERi1=E}XWcBZtZL%`WyycrN6dq*2u z`*F6AI~t04bLr9i`q>!94``(O5su1jSGno@h0zsjjEsN%0Ztg<?sp=xVvF>9_j1?5 zr;mH|y$&-8!xjfg7#)A{GDXy1R-A+V$jf|Oun~<XVV|I%)nPOk`JN&+^VQMNn7Qa+ zt?|q~N}id~OezSg*j!0}uW9Z@2Hg5A9=yVH`ps5BeHfS-tzY-Sj*_1~C*+Sx`zz0; z``Fx$EZ>8DoNPmk8={kT<H(FJLawGF4x&dzeM=5B#N%2_EUD}46j=_=4G^E>q)oV_ zCw%M1A(mfSUg(HGHv5Cr92T75rwJL5TiRUL^6FyQu=mwNJXX{eP?sKeg+idz?O<k) zwL<yUpr4f+E3Jz&j@mBH*M@NxX6^2M8Rzk|fRv@<5w@;ylES!j2-ObT#R|p98PO$m z>Fx(h*Zl~JxK{@LaD&aLKEJY-+VycC*mHAe=AJa|rBkCoAlqT#V#a&-qgnqIIt0!x zoYaQ8HRFbsb|E>%I&d)LYMk;cp>l9Cs$q$e332=7=Bi`oD;qBbhJ;=c8fW8k7B%hj z!AXdOiR8Lv3GKMIe~D`%?O-yO^-3iJxVGEicE+yfIx{_1{m2LJwH@S{-_hsOZ1X`1 z5?^c=Xg=E}`0YO7^ZsY4gWM@|^i_ElFiWb@Rm<vV$olF1!$y~Ln;xi<l*d5kt_0KN z`$IXiG=i_nXJ9uMYk-~OAf&^1q7=8(ZA83>A)0;hRIReDGkohOTFOsm&C|UmrbEC6 z2IQ-1?Dg%ZZ^3qm0jrv!A93gUUfnO7;JR+72K#9wTX$ST(g1N_;2?Bjfmy`FR$sdn zENE`!q>18cP`Lk&31QiM4aOmwg?zZ$79oO6@|=KoJ=Z_5aQQPe>lcoiQez|N7X#jH z>4xbjCaG5W;Is<v-<XftfMXyYgmAC6f+s9{to^GV$Oh%OECVmOF70X~Rv}ooA?hBV z36IcO5Fy%^)G!2Jkzsg@B;7msr9{UMKm@$YJd+vwEmNTRZO&Ul&ZoHzh57gHL{g1^ z<JzycIB4p@qUt!OK2d8pt0yRwMfc#O>tOP@&qC#wGss%E%6cx+fNWeqKc4ziH2Kh8 zUTZuPyboo0b*iR1>N*k;NX1@m@>}Y*?ZcfWAURQq1biw#9}GeIQrVv~s$&15OF4h? z(CQK$wc1~kdu;IO7;v*tmq}g4d@6+ZuW!4L)rguYD@Rldpgzoq?+ZQvUHZUi?jcPA zfR^x%33-y@LQC3VxBmw6uKI>qh?afok>esI*O5ukQ)pL;yJ9nJJ(SVUR7j#jJKLD$ z^94yZewpS-*M@5aF2Sp-I%z%IY7sH$48b(tZTeFF;0FciF)xO8V2i)z?O)BmH4hAA zWVv`|%%99C+#TQar1IpS@Qa3_8)?OZF{sek-xFS3<0F>W2x*LIvsG#FJ3A$!<RX6c zXMRpvH%iJ2?<-v`9(dOmnb>#st8ZX~K<{O^2(`MyuC<_hb?;7U`+RRr9ocV%=eOST z?h&%~QIzFJ#hlP4TLHV|&AwxWe1jpL+nY1h0h=^e``(LV?V~{}au-F5GrEuC+s3qR zDxV2srfs8*E9wDd><{HBTvU@b^BJOCvQwMcDoKxFuqs`pSa2I{UTbpG+(61gPpayp zTh+(Ye1q)X6zhoLZR3*(4C$;G7B=%PI(z!6aZ@yYTsCtCBR}4w^*{BmU@T<Pqo@K; zIq~X_;;1md+b_fb_SmVLt5|XAiWnpZi+CXGGenSNWN>(+#!^l&($SAl2XbDZzlPKh z_q&zMccnA}^-dyr+{ugf`J9_}9TjZ!UNt6RbH7>}SoP!lW9;v^ej`Bd%^Nzr*{x!8 zG1fVr=17{XtnY$-Y37xhjV$pcAv)kG6~tNmj9Q8fu-WR={cRj@Ro)R|Vdi-1{w#%` z`LPe>4mNCbvH2eed4+<6eJN!c&O;-cKe{QwAD}->AdB<mOf=#ilUq`sn;m`jhhl-| z4!q%ciB83$Vbk5pt-glPNX40kqP?Nd4PTtNo8<n|SE+1qhoT|vTPG@6<x!reKSd7$ z6)nbpT)rA2AP;9FEE-DQIB5tD#%K77Q$tz!Vti8E^+kuoQVa&8OeCelr(OjolfSfN z;=o4|qH^%S6AG2+!+Z3^=Le#&FI+qxiAvQvq_fJ$=*+0{xwEELyWCp+Y4}p&fRZ}X z!Bw>`-%TvStXNn0QAxpXQ}yM^6HVK{MrX)Kok@)d4V~DeRo)i+s8#X)8=qKFm3R(m ze|<!ks&*q+u@j~WZbSIHUyL>hg;gw1Cxo8yURJ+d;!+~<>uF!o()!S_f#H`!kxcM# z*zG5W4Se@k_&fLOo8m97=STV^f9m&-kytLJ!WAho)!rLY;-Ncve^!p7i{y=ZZXGJv z>UQ&V*vrHuJ6o|QG%5Bm59>6ymFAm)^4PJH*y@w&*s<8U_KVO&Y4VG%fSR{7m()?} z+=)G!ru}Tm7TM%l$Ll!s-Do=no<@H>RiId8KyZ}Hvu<xwaq-%gsz`yYUsF`gTiv1O zrxOD&m^M$l3%j|L1~nbMCU_>zm7a%&MJR-Sc*4uPS$sHMMIX^4tHhymN<L4hX@b!Z zWtrnLscfhurKY2^U3ecd@K38lpDJ^0<;e$ymF(9vQ8^TFkFiNeh3~0F??h{2tB(Ej z8PO=OlE==1<tFFr+uC@$s64-G&9k$|(-jlHHhz(J2~6zR`_yLH*w~3Dh<qCthpN}c z?%I^vb4zqcN=Zs$YTzk;{wgvv<F@_W7E#Jh?7iUabTRk-FSCi53YB}6vO%+1g!(ya z3++U;60}KTvPovLS_WbqQ|eT;xp;-2QDQIT8><~TvM|`+*urk_nQh-oRI*EcZ9Vgi z+;+O|_9B@LXHW2rflF5Njbqn&S7Sr*)l|FXSZsx6q8}fW`7s*73Vy_N7wDGau<}oi z(L$YRbUVAeZy!{T`q=)Nwo(Od1BUp_PY(i$!ZD|x+Ny$LkW+G#Xls@X5!(_g%c6=g zy#vv!xiFDg=w(Mbz8ZAWqQiZ`ap2e3Np;ynSM^DE*OZb@cN2N36&x6Liu0DtRcL{K z8RS0O;H+IFq37Z(#i=7!1%J?3yvVJq*Ow6q5p*Y~w0_%cQl&FYakg5nUi>MTN1Ad= z7HP4*LOsq{Zx0bUkw<D)0!7Qb+FS}Qh8$`gd>2GfM0l!k?IOtB$}~f|1#WO2unEu5 zmWtW#i?Nx#Z=HNUl1D*cf^XBZtvz|-gPoNL%V*q)cTeQtX8l$cV-~6Q;c~-L8=V$i zL=VD95+wMaO=vdr(^4C|zU3L8BOQI6U};Mn^Rlq;@O9#z=!-ap&|ABSrrCs(1N`eY zN+O?BHJe^00`%x&TenPEb@jp4=RLb;_}$R)=~1=fW#aYMK1~|61XgH7Nl$JxbB0I~ zSdAAmk1EK2jjq@Hxs={UiMA)I4kY<qjn!Sei&Px_#ob<nn!hWk>(LYYY@P(ae{+Rd z>)v|thj{rWEM~13W-WX-+WT2uin63UoFY7O83LV&FDAIJ#u7QaWV%00Kf|O|r9JE+ zOJ}E{<>2Bm5;ymCE;iG|TEmG-VW;P@c;hZ_%Y5`TK0Y2zO5MRi=2r?o7n|6Lec4P? zeWf1hBt-^qtMU?_vZ&D62>Peu>gpGbFmLs5r7yP@7UGpHQ>dxG=(W&mt1tP^u6=ZK znBn^<yN~47G3p>7k111WBlq}4%siLP_&UxGLD&3)+}y_vKX+DohTdj1vh~N9Dif-p z4nBWVw!|Vm7ln&qfVw`ILD`T}RA@tzp45JXLx3FK%5+5f9B;WRJypO-(^|}XCTG>P z2`hS(fgwL5I+^1si;MMD`P;s+>XT5*Y>`9h5mcLrvGAQ#qhY7vk~}}$3Mef6tDu+e zYUolS!L)tE*C$CjT<*rId+qD7!wkur<<m1f%IBZ{Kd#;~ERJaD8VxYGyL)gA?t?o7 z4ess`++D&DENF0d2?U4W9^BpC-Qf;7-#PE|T>jECy{C8Ws#R-MRUb9G*#+g@i0vSh z7IUi+#Fj&b)|q1C3;+u2fA`1z&MuaE%C1i=UR&~R4DWj7?NMn8ovy5XlRMZN?`8Jr z^iiZ?^RVYg3VA=ifz_hIVy`(zmER6%71;hHoBA*;+$%<2tYAGK_oTVU^8=%fRtZXu zYU=Gj5qt8~zka?@7?VmPbm6=D6NbDL{ip3FVnbL@OG?8zyu{C8W%0~<wUXzT*VDJV z_7Z;wn~}r3k*E9+is0OZ5mGmXNXC>Qjwus6Wz1NTG*E`0TEcKrLivL%4r-mCq)+~% zyND5KiO@0Wm-3?vpi`LKf$CCibwzkh#8os5^g1KpKafKhk8C~frNDN<6O^pJv&_NL z-@R(&pUQSwU3a0!cA8(wmr;^=&c>~&aMOIs2fB#;mA8WTNy}k*!E;-}_bzj^aHw!J zH6f*~$Zuq#?{W({aRj+9>K;BRVpeQ~@M!Ut({(m$pU1EDWIS&7#mo8ceAEHqti%2q zl%tJ*TsaMwx};s`3N_@!aUp(-p14`i;N&26LThTW?3PXYYqnbbz_l*Kiqi2XL7fV! z-byi7uG(m0NEHBWih*ge%&#k+F0-@X?;^j-ts|}btfXE*+*O5=A9jB)fqL+<7t1|2 z#ddNZYmOvlun!WvKb6a@5D7WA6ib!Zetf)b!PQ$VgGcp~0uGfe>!un$Rk>_=Q+<#$ z-pp)KuM4nFzAdw7dGxjT_0sFG4@o+33+niUWC{aLv_#&No1b&9hIR#bhL@Q38EIT* zwKEE2EbOS9`BRt5ce$QFI>V+mN1dG1xqg>al{MLl2>UtxNa@npoKsuDznCyRBYtwT zyJ#{}SBI>ZL92i}XZI<UF~jti_(3kZf6Gxv!^{k9TcU~MjjENf>5EtlPOiJ4gfQWL zH$P{#r>A2(g_06S`>hqa(TfY+2t!S3uOSdT%(k+WxuvDJ$6}a#aa5LbDbHWVsLABH zeo2COA)K(p_BgNjgKevORJQg}6X(twLb62_bhSgVl<~%ixS-Mg;W|e$=*7#v6%TA1 z*U<r}&nByzoHn>)HxTk3Rw;yoUIWuBN^9x*zQ#jwv+U9J8Gem+eQ~#`$c60Eq?j3M zXlc%8pQdstSGbi#6<x4`446|>+-~;g5v6FdQZcep3An%N9)_B1GAo?$u@`vDCh)FW zi^{YNBypvk6{21Os%*&I;AtRp$5GYSL3&F4toTL99uiEC>788U%Rt))vGlj@2k{{H zDFBCRXeUnJiN_OdzWR3d58X&dV3WSuiW2KdQyyv8+dP$bREq?$+k_6R8i2N#wVZ!- zI7#9!_H&w7ZY@Hj_yR>cKnVwJ$!)N0@77qjzatpzh{+=0?mK`!df1^3Oe;8LCEb=B zoGuE-5jxppuSVPFp~~G3ktD9pm-~opwUXlfG4iDDg9BC#(LbGz27X~~ZEn`8DE@T2 zq;ghd$mD#9-{_Vs?6KG>97*ANEUoQZWo6piY#dNiZ75i>tVw|dy@gj*$1cKtY!SXi z`sJM|`=)}?)`CIIpS90G+-eQel2yj;`>SfwhBS-2ABsa#*aLB}XX=~QkksjIu3mo7 z!<Dqt*IRv+r`)zr2om(<!GDFkSiXE9-7k`}p_*lQ(~yaqN|PRiq%BCXwO^cfvzzrP zx|FwP@oKj^9R$N20!lDOtk$GxX)$i$+iL!<Os#4xzqz0A*NF~)>ztj_*;c#nJU>4H zPS4l0|H(?3u;$0m)YK*=#ev6DWgf9Xy|{ghbm?dLXz<^+?~0@HB)s$tKuXsXMO-7% zV>#}F^Y+eFFIB;Lc<C>lK6KZ;gAi&j#B+22XjC+v>MGx;G}mdOqK0^v(%&b#_4d_k za$FDMC7s&s&c}%D<`TS{z9XhLx%N`L(o`>b8d-ZJ>E3@?=-K7Zq}Cg4s*_1LGjh5} zb`#ZG6lEaGbzQwbiI4v5H3f8$fMI_43>d{@Pp#lP97a)tgxEw$2{ExTF|E8Mq$DIY z2Q)>#S4q^h;jc6=+S;;ewV-m^l?wdY5Z-F0tXSfcXX2xqNl~l<MMXwLV8E*}>6vnF zEgDYvdzh>{&I-_e8!&wdbAE>BRSI586gRxzs@i5_I5|S3F4VQ4J$Znn*F9GY{7pex z`aBlt+IAE7r<WpwpnnY|xBbKBIs*N4=d|_4@*;qk8R68rp^Y}?;!h%~BB(j~YmzLZ zmFnjKE}Y~vX*<8T=4;Qin>w3cgmY`ayIZP;+Yu3$W<~@`)@!u!SpSrfb<&BIj9)7m z6Xxv2P<X+VR@Fa?pHk|!Y}oACxDz?2)#}`T*W<--x)7Dyl?lvOmsS2MtgT)0qy3Um zm-aW~3wspHz}D&-6IvCjl-5kD(#klh2yz18ti~d9T5Vx%1;{b&4>F^2AG<S;<D3x! zZ9dHDkS-bPd!}69eL@<!=?NCFSy7p30;Ne0j#H=+2K6<!(Ne-Vz)7)ZS&-@Bx)N*^ z1`o}tH#SqaXVy|l{$Vfh%lyki0zey8ofM?ETf&K979o#P2Akw6$K8AU^b_p}zXumy zEjRm^9gvsO>oj#$i*O%Z($Tfae!E}lDxV!)JY($RGO_sm$=FzTw<muZX`4y?0v^-# z_&1lYY%>aoH>dEbwK%`L`$Q+L`LJ1-MSid(ZYzGPCO7x`OBr-Uucm?Wi-fP3SQM}8 z=6))8T;(ZEtQX0qY&H`Ij%<E~AiajKI?}K3iRO@BrL~2NTlN{!vY}!)>JMUc3MGR5 zB`y`ojfQ{^8um#TnTzpd^iySdUIjv>rWN$~)^f<C*ZGzw2Kk<xGyucEMh+H;xYc^< z-sH`F>nofWX@sGSR1Gta<6!!Ozj`djT%W|Anv=Qib`#0_OS%HpwZ$VZ6dW6hwOJcf zO85**^*0^jWHciw`l_Tw3({-nY#^pLdg}x^+S+PVxZk8yG%F#Ys~w#`WqX6R9H4?& zsynrN{9&l$9P+gMG+KX`12r6fTkV08MuUk@;_PISEpT+%*&JH+D;$5hxXit_lwH0` z`<9h>&vzC}sa$<tP<yMQ9BJVjA-<U1pee}w@dG@6ni;1Q^T&eEanI{meVg0${x6Q9 zcI(@*HSasYwb3kZ_V<(>?E|E)Kl6ukNaCTJB}fU@>I?1ls+<=IO^xPjy*@bAhE-AU zdpkv<%d{%^K)f}zg7vk6ITciWw&*xNPwiEUng}0bsQK!5LN+o4{XLwne8(JG&mJaW z*Io`6el~BdWF(#1JHs_*!MM!}{QPg81ZM&O+ovx3>HdWs!$`%<7tm@tAE%R=kt_nF z{<;GF;oN5X7aJ*!6Muz~HOa#fNfTqe*)vJpbS?e2*M@!}-U%%^oQ$R=>qD-zmhxTZ zj0NcxNoQOv%I_I@@rq3wT?T)iMq6IoSjk`7XoM3C3sD_mNJim8U?It0+=W4BRWF|9 zjQ;+)C(TJ<p=JPB`4{-5cE`;5$VkvfDEG(Br(bXd-#=W9>)5fB#r?f8wTp@R{kyJ@ zEBapHwd6{h5w@N8esJ`VsV`d5xv1B+M!UJf95c1K0ta)WtwfL8^?BKOv~jae!+?1H zYJCPAoeZVPJDyEG#OQ$b4E*iGcibg(#Gd5DeUc=S$7d8*2GYSVLRt1`%-ems-SXy- zK07F0u_<3!T5zl`D_EIEH?jp;T18fCl115zU-r~qf<}kvGJm!i4xJAd#<V{FP9L_| z*7tjyA0A70d^iqbU`g>@iR$7#usV40JUZ9@FRKLJZSnU6)d}Ad-o)Hh!t}R$@8-+| zwgU$hehVi5`Jt@snY{Ipw7r#_wY5xf)o05?q8yN-sG41f5E}!p#cl}VSf)>Jx@uJl z`%R?hR8=}~E7JLMJ4V&jXzSP2a?od?5;7_(-U!-rwg0>4cov-H05BJmja^ZQyY9Ru zVxvfhO_9AQ%UqTp-2El#e)+euCp80}oqyB9ttVrZguhnsHmX>8kH#!IA~G_bn-mu} zIW_JRBR^)9?FGA>pPAXlS1)6g+{s#C=Vsl1<wY<ApoQbP|0ggG<zIem&}BmgD(}@7 z6!gw7&;{vi7b=QUn?X$+xhgAPfZq}Q4IUo-9POg=mqETej}r@+sDML()X=;8u`b_J z`z~WXGnud5j|&0~5|ZLp#%<H%NC_F`g;sy7?vj!(imqtT{{K`sv_o%;|EQB}uYo3b z14v-5v!aF^t;v(|{|G`>NNYff|M|<iMEd_8(F@qpVqPWF=l+jXg4iYXLH*waQNsR| z>xgf(I&S(C5}S1%W@i4wgGc}4#-fDp$<_tmG~Z&$?|8d^)`eN%OboYkXHRo;|CdvG z7j&ORI=o*$-F5CDUiDyrb>yALTC5nO{}EXblER`LI<LxBjVG-;M`q)fkvO}R+V#0V z$xYv{G3-EN#X35!m^b_ZrIC0iem}Qeu;Yfl;<tDgo7t&K^PQl&;<77Bn1^DW>1}{8 zL(Ys))(&lZcSlW~1VKu`<MX?#p@74xSX5S#mMAOFt)P!DV6G}w0vRZ27QYrPeSRXr zpfIdXi4xu?2Y*Gj)*X<?=0&XL&1%AqMSXAgJ4)M1P0#;X6)PUv`A>he5gnvG)d$x% zfuWHRe5A`-B=8li;^?ecpPA`!ad0NoxNtd%uy^RUK!}R=z!UEQwBDZ$BXE`hV0<j5 z)#mb0GpXggYek0q`5jh81ti0DTv8yhhEnmHK7n%ZKIWe<=8AT!qzy|wOcsQ7<=UK3 z<27X63iiku{o{S_BLn81^SpK{xVDBRP$ypA@wO|~>Dc?12|J?G>eiU3iwv4BAlIct zt^;!aa5Uu`&O}oM`6aMqFqTL!`yKj8J5uc|fFE%OK19`n)Tk)kL-@7vWhXZV*lLha z0Jg71)}(6O$%bll7{`E-k)k$TA|gUlI=nzfi4L1r^vVzCf54w6TSgBc4*PN=J`nO` z?&%*TTuj#SOsS?Ax%0k%Ky)-1937v^EcSEOcT4AkY+m3Nav2-LEig0X<{%`rMg=$p z9z1jh@eqFQeP4XX2a14aleJR;fdI(!$td9z^7Rg&`F1~yjW?;oqUSKxR1l}m+gPpL zTpS&y)a_eytMM9K$YWDT^K;;GR?Z)HkH)USk7xiGH{0T^vCHtam+sr-KtWagjQ<7! zyhu3KH@wKAQE&7AS|JP$*z%!3z^eaIdPoxB<AT(yx+nNATD>0|C{Td=bDk~!(5RqV zA%=Q0MY}zx8uBrThwJ~DI~)^0;3{Tv2RB25Yp+x5(6_?h(sL$vM}>KMhkK&bjG<J_ zW{#2R-?=29V71fENyqX#=jcI2B{6!A4cWPa`b~y%0sm$-)f(w{!}W^8nC~)6K!_N4 znP(dvA4*JGG2pq|l&gE=z}~-RecxaQ_j%-#M~?S>j-Q);-&$^(kK`8yhA^=^d$U0( zQQ@ND8*0s!+ShLN$RRP5c8w-pl)sc@C7!JR7C;UP_^aIdFicpZW7>%ym`%Qp`UbbS zDS-a(zea%p<@@Hl=s4knX<#km(m{L;6FSgeO}+N#C%B?s)ptXSpy;rUK@;S`@is(1 z5BJ~B;N`BeEg0GR?X?qGv+QY618;6P7N=nWhG~H!WTw+3VM|7dEL=!PvaR%#>yZH# zujHEs`Rh6dBX&V<+l)T;PN#C9g8QXjmOW;_-Cd%-q<<92xs-5)%I(mu%4?6Q9y7^v zy~c%gV4RE7<)k2+{*D~W_yMz~wtdTKeeKKUHqCe(Atf3NoX0Nd6^@)!eZ2<iOp0s! z*NIOY+(@h&OyG5Ypd4p_WP`pK+*Q%MgzqwPOOPk)K0!Fyw}WWN*a2<UZH<Zw5lNCU zqMiQ*b{VI&!vEW0NC{zOzk3U3x>mQqyXl;mQ8!=s3g**^JZap}q~1OUH7{I^J`>u} znO`JS<4b}4u#sQ~D~!H<0lwinI)p$quAU%!#6s+&e`$w_&d{1J@|287Cjh_lGM=PQ z$(X&T*yy-|ornh^d09)`Tei~M*y`d0M!VYdTmBci1=ZgO2=SjIkv`)I3sD30$zI`o z2ldpxLbUjLv`RFIy-}{m`X4VV;6f`0ZS!+MJ8@-#M_~g*aRWO@SA&ht6fZ)+hiW-Z zO&Z5)7)Y%Q(Q5)_o<N+9I4KdoCihDEL$27gpGI!L*@Dm=T?}9Yv8SmnK5l_Uh*Mr8 zr1#MuNkesEBERUHD`IAcL=%u(Qdkv`9sXnQY|9;x#djXVu$6_HB+qoTD&722W;inY zb`|1P+4m|{?*9ep#`)s2!y0hjx*35>$ZS)ZD66mx;Q6&|#z@qC5XoyxeNsg38$3}- zm|d69LwJ|mvRe|1Y=Xo&YU+674(X_x7zNc|V35y`bC**zrF*G01A+P1t_D=FnO>7Z ze)Sq3w;aepAs}y?{!kKn23((JNCZ0R4U({;TCxqvoeHnZi;!Q_mLaRyRzOIm2EjXW ze8MAABRhnje={*eiPmrx4|srGL;vUFuY&?)p(*@-5YmdpZ!$u*PZY=*jicL>O30nk zhfoeo&V<SVaM8;}lUshDkLGsqyO(Q|m9y428qhT+6H>Acpcy`ao}l1e1>eY8MuMmn zi?a}y3}6l)h{u`coo!c1vsPX)#=8Vk(BWhN^RF23{e7bBkT2haA0`KX1YghaM5x}- zK<ZcQY{PBN;GOn>-3|%b`RHqn>s3$I+tX-8v~yG2Kmgb$1r)-q^PUlTFA|2ramyOg zesQypp>g#_ry<+grao2U>_ACh0v$SEtI5bsvF{Dy2Ud%Bu)p2!H~D`CtH793MD=I4 z#+r~lX~qB;T*y#4H))huepv)WIa`NhkE~g1N4q{)s}7n-1}`pMm5D8z5{5!`L6n@* zj>*e{Is8c3Wx!8@NcCE!LD%@({u2pO)2+&PGlzxDeCY3O&~G}LjZ;)@Y1{9=6nN)3 zgMtHUNrY*EvO~ji+0bYPSL&p4Z>M<+oQyTMAH?h^)ex|se0={>^FdQxC8Fiz6Lpf* zC_)j*ZxX-+=U67Dx!_<td6>uq9#Qv3P;oVXX*88lZrV^V+&VROR1CEM<B33hbnt1# z696Aoykj^XI@rig`17b!<+$Sxs0Qf?3{4H}`9HTUD~Z>~NjLOm#hTTy0-FWs^+nC& zb;VdPUp{%WC@>Nv*lI|WRVQZ((y}LMs9}9!bp170yzP>NNI9L1fDpQG&w_G`Y4Ly; zI4%|NAhn-GeindUOv~c_qJ0Jjs{N9OJ3h3=F(8Y%;F+5%S}gk!2GUhFP{H*>sEE-- zU2x~Vs(y8kxv!QwKm||_xXl?D<c0y8F_Q6nwAt)7n!tnbN2jHAG=-g1T_}V^FAWh& zlhrU*wdW~;drllWa|$yy^82;mv#jG18ENW(s`N=+s^w&0Wihu(&e?myVbGK8{Zxc~ zxI+EI{l3T#VE{0S(D)CE5T#jz6;Si8#828(UbSIptuID9L=GRb+cuMu3C%YWhOg@q z9dycFBfyI@RH*5$NU)NF%S}>Ws9PLY`zX(4{S?d51)f{rw5)&JP~q7gJJ9rJTA_gN z%mS}mP`MX3^tut57aadk(GMx0*JK@pp4#&uDI0LZi9A}3Bn@N9$cWgC$m7bXS$~wr zXEk|L$B(?J)n^ZU!LG4FSRU4I+(te}N>dFzXG&avC3);Jn7Un;BDFHN62x`*(tE;T z`C4SmUdnWPEJ9W0J7?cORsI>n%n3HZ`#Q+^_YXUKX$f<cgBczANkKW9aPg!`!$JIV z&md>{wy{lp#W?HPUtL-LUja5GZ(m5ymDAs*U(iFmGDjfVe{o=tO^@|Hfh`(>M`?=w zW)Ft;jV>iNhnCeqGi!8|?u||jcWy%UYu%DQL8i0&IAPW`y6j2s#}~)e%$;jRxEq0S z|8i!P$U86YKkZ)7HtjD|XX~2bS6L|0&W3dFC^j2Cz$t9G_rQxTxqJ`8IeyK9x3tRs zc8IYlUP8`ikeO~xm5mp7M{fvz%p~R!!_%ulPy;tlGD;0mlIED8UdV0f`_<v4KqR!d zC(A0Mo>yRblM_vmHK^_H0gvv%*>3}<wk{)bCupDHLXNL996ZVOPT)7o6f|neQ=F_E zWK~{0RU0HS{dG;C?a9k#aw8u;gP|yi{$;G{TrxL>3n|iw2<wM11_nyWaa8Z5ilaye zue(kAGvR32;WLd;1-{Sva8`<LYlEp&;*7T0ij#)Kr@zdYNyqp3`Hn%2jo^T(U5!9G zSf#!tR|!RVP;oO^`|KpPL4)_F6z+3B4MOj4cjZCMpu<M3wiu>LX1aD&43j|GGC9Ss zw@AmXibWekqLo*T*W%v|x`T)@;L7&hq_VbVdJzI<|8PjI6Tx6y-dSd<y}1C}-Je`x z{%YOl=0fj;q2{YDT@?n(CNZ8vx+N>zgbJUZ4MC(%biRH)Ed&M8_Pjc;!Ef3MV7~(b z`3#Q3rHt@yL&`t)MiVpazQk<OkL}l^=2{*^MA4`Yj=g!d```LACr3J6f~uOrpgnSj zvo>2UC%ZnoF_PE4Ncb=@A2@L`wc3P}QEj%=l%e<QeQx0u^Fe?lpFR9Vsn)3HTQvlk zi=>ezk#Ki<jDG6A?WPDFzk1A4ABr#y*WpkEK)cbbs$QOiXQLJzAyg**=-x5H)vgn` zvSgrUvEgQwdh1&gl9}Q|+y<e%BF51v6f<17EHfYeGP=dIP(_UO1PTYb*E;y@uNkOS ztgT#}?qY@?@&(;^y#_mY#Z!cD`v+=E4-ub=hCeo~I|w(D#y!0lZK+c86)B(2wMY0d zhSfONv_w7^79nJC)6gOxP8h8}xeo#aM7-4q5R3P%c2s$8aVkW|NM6G8v3`{apOZX` z{TwpF@ceown8kcJk!>hFrY(3C3~JO`5$d6TW;LygTmsSap2!lM?WwUUk8PQgCvLmp zoqV`8oP^5b&gGLnwfA$N{so`MhuDyp?HSMW<Ll|Ekwyj`ACG-03qY+Q>5+?2;4E>i z{*S-b{Oe|a78OYsIPCo)4*-fO5qey0lZg9vkOys^Yyi|dLqxkV1v@7{Gjhs1!Y8e& z>hp-8WOFh4wpOw3Ayj$Ovt2hoTJs(@`;?d#UX*w)$9=Aq$v~{qQ?k@N(Z^ua__Ij$ zyu|(R^mEPKN>2)lsR`sb1Vi8aMMc{qWWY>STMjQu4~7r+f3OX$9&X?el_%@AF&l>5 zujqV~`1~-SjP99_2B=>xduy0N1}!J|S|stgirzyPWtpiE+CFlh&e3~K6@Sz32D&UH zJY4gl`HzO$@PX0j9|wdPzZEye)~oLrc;d^@OrV&L<;NF)SBKYXHA%1d2exEJSKYKc ztk462Ow|SOZm2ER)klTP(r_lR$8bc{Bb{$1l76<;^*0xV84bFdn(W+~s&~TzIV9jW zagiZ+P=E`Wg?b%PKK#*U#_zJAu@X7=KN}2JeXdAqyj&K84eTT;K6XSP^5=K4mtCa; z2MWt?!ZCZ{NjB%pQ30?3LxMbYM{fA6-Hd<Io&+v9&snT@k!Z!KDn}ya@Sp()_-x5+ z8oT1JBRQFoSX1<6!6!2(3F}|xT8jgX%OZ2s>2lOn1`vx)57c3rVt&vsok*mO%Zoq? z3X+i0f<cB5ye#K|@DALn$Jle8%Y(#T;)thX5_k*%D*o3j_Hr#74|DXkXYXLazl<J1 z7xLiyv981MXap<c{*h3rip<S4{v>V0%p0963)0Ppc6gHBIq2^bMgfDALgtd#3@Ye5 zRxI9EWiCcetQ$Bns`C#ncG7eXwDeAo6bHAtq(PTxV03Vf0x|YqjmkCM?lgE9clVpz zJ2T<cfOcmL_I~4H9dQ9X<ES6M(2GjoC0o0eD!^2{f|Odat@WGKoD1j45bC9mMX=JG zUu88-%ls%4yIkpd!bLD9JWRfsgbFp_ik-D;8cULeyeANk%kndiHKofF@*<-9Jz8p# z9k_sLKu@S&wp)3z%$^$aoKPFT*ZT0Ltbrp!LVI0e{Y`%Gmt&URd?oa!Qm)*bAw9FA zkI}d<@d>bC@+F`F4$uRnM;_KE@NLht>RSqJA_Z?{2qdIi*hZKi9JaV}oXUis<8e_x zj_HbW<8%{WmD*qTZ$HciPI^0k;U)#4gK5y`J<`OmC3~i{r}SDY>Zo6v6`vr*Fd#Zv zvo|~5j2z<B0bvDHJ2jugziu*eH<|_`FsuB79uHYw86QNHXlN!3<CPUmt_r~#N+aR= zKOO-Z0{8%%uHsOk-#EJq-PH&#%@W1~r<**~-4(S1yESwi<Xjp`8&=Ij4|Jq1jE0`* zFnFHI^9D%0ZSiQ12s`W|X$T0@U$E2QrINJqTtbq|mp~$G!7-S8YLYjsU-VvP`pp{o zDOnxgb32Mx34}k1tIJ@fsMu=<p=XnxyisCU7S<lBmF?ZKzki63^7L$idZDe^amA7Y z#jIEh2krVtN`#DA1uE?1GW7k7Cy^BYfcS^JEiTs%l$4+*t<eknduTWF5JS40(-exM zeZc5YyJEGLmH8W|G7564rX5tLgIA$MiH?q<3hxW8e(~CoC&XzdTq8xt!{?PXZ1VK7 zPvs6*N<iFEe?H*`n)`1#15|2#G)6vrEge@`%@uA-pbimfP)TV5115hHeO0j@#YZ~Q z&oJ5)^pgueSvDU4?CvPA0G>B1o^*<{Krn8Gl=@I2YnfP7o!XInU<M;lYF7%W#crg* zBz!cUC(zNWKLc-l6?xdkCSGu^q-7^QRv;+1q@bb_hr2Xfx#3uP7p85GX&X9a8G~i% zYoVM|(UE4(bI~J)0x|1f{Ysf&{}?;#FTgIAfWCn<3AcP(S1i5vYvG2JRZ~~W;kXe~ zpH_(;FH+phO{?V`X2pqEkm>-h13Qy;nH)FQS)H|bhH%LH39XY?wy!Ea0h7Kiq(?0> zvp%<)KP8e?LQu~Xx6f5VBy1=d?n3;n0MkvH?FSnG7a6g~R>kBcyx-f9*8N=NZKDH7 z049RaYyKY*gnbJ)(Azdm^~aRbZ{GH~EHtmnoJGuy(xP18cx1Imk-)4jvS%EFcRmk^ zjxp{#K@EXPpgaLl=AHf}DyIZmZ3Xk!ZlEo0!A}02?**z1(l;X>LWAYFkGrI+%P?Z~ zF<rnvD+_aHh)2NXHFEM7L4GU;FFKP3OB@h1Fp+{{h|p7&+?Toh4X&4eO2*vahE&lH zTX5(*4fSWg*4DR&@b7nUbY3a3UjA$fT88^Z?1BP=t5W#A&y+~^<|p;*F|YsJG~m%= zYE*|g6{mdR(LXcRZ}bMJ3sGrlLSoLon!=QHdTK9UoU9!(jU_SQ-V&pj%EQ*N17qFT z1#I;RLrzF1s344QR~0;Luu!bc+1y#+oj0I9Q}(vUSYRZUqi0Uh^((5j6lVJ5>8fmS zo4jO|SRFO5z*I`!wq&4tO&YdDqp?iqo!D$AdZqj+r&Tx}VMJtj^ZfHJDZ$InkpAD` zM>TfQumJ&kX3R=ysOn85i1W+N+eIgB)cWM`*w(>;o8Y^io?bSkIlJYzanOJr>shE7 zA_D-jeF5RjC(pDh!r%m6oyovUN~Uv)3^Ua6kYkxyKum&^K6P1#=O{=$UID<aD}`u_ zPFqSoH<2;$eN&wwMVLx(w7OY$j)-1D0&!^gZoNn#t+TqhdSB&fSpqR~NTWrLlLpeI zO%ZV~F@M>LmaO9z_pXR2er-ndDlBm@yr2v;YZsw?!S|iSNa&47wX<h7WuN&6ye=gd z7Z*J}JsTTFWGu0Fj6w#7wi^OG?;P5!e@N-6Y|)j$+ou#ihM8#M$cBDHj94>xOn~Ma zIyEf*?NapxYTm@+q$~}={>q#9^Tx!!RF?e0z535z?0wdDR#sMac8N3O<Dn_?)OCCx zk1r02kY(XpiT-po>mP_=W%1ojB?UFeuWQGy4`K|+gPDSwBOn_36y{%yfpmc+^m9Up zvtt&OQq_E6b%MzD^~mdZw%o5^7c44#!CNOTbu^YP)9{j#n`br0yy9I(ndL=&yO7Mr z<uJmflS@evMNC}5#6)~@LQG7|I>d^I?!l0#fAZR_f}-TEz#5_tygoXA^o{jxnUvIZ zXOW#?Oe~w6Pa|v*{!9Za0M69z1g%>PH!}Fk)#3ie>ED_fFES6+vO~6!t*81&{5~>s zCIT&28UzkGhjH2<+hj5nCL<l;>q~Z^0<bOve}P}IhfWzbl`!ZchQ70>ti$iyl&a4@ z-W}8X^3rrY`8}05!%1AmNqIczcU|3JCAnBe=sbN}<RoqVBCU$xk9Cd``k?@-ldmhm zYQc)kGc`~*mPizoEt?o02k9_+!2AFQe(7FL6{ey+3k<AG=6glsGC6o<e|1{TE1ct& znow`mGRsOUhlU5uZ1Ex9&^oTfcF`zyx#%M$zvt`NV^kfe(oqCOlNRZD51dz?l8*HX zynP)Ct7%ONvuq=2j@{igpEtwGLpo;b`X+v<eDgWJn!t<!i^1hXWT9{|M1Fi-yii9| zc-jdAHFgeON~=qWikd`}lqv^uo0WP{nG<^5_Q$Y5YU@tg)Q(>0oA9A8%lcS4EcLjT zCkMx124w}a6<^YD{C&-h*jm5Z1;p=w8a>Y@;~7WmxYDn?2)hukfjmo=DSG3^#+KWT z&DWxQ4<92zRJEZ|87{|ozBimM<c~#fiH~D@D!^w`o`X#aisq=kzCKAbbSf3|;xaKT zeI;9l&xpNnw6L$x3V|MmayKTuX_rA%mk<#tqZs=b0(F-dV&r`Y3Lv8rR=@c=^cptN zrCHVKS$%WGHj>FQF+!D^p1}CVHd@Uom4L1JnHLE=_a3kjL<N9*DysJJ@eD#<s4R9o zK^kA!Vxt1i;0B(>qV0Y`*OFC3v)~!TW6)78a8aod48VQ8#`Aqq=;^m{_4lJVoV&C5 zbGsYylBkuT_bD!}i!;9t+mGBDc7~j=T<5hgCmmtu@^|PQ0)v=DC`eA)s8>ZNRMR0f zSir<c1cGE^2irO{7{r#lr-)V`zn&WG)!uH%tL$d0;n&y#m+M4q%Ogi*rv|R3^5egP zdq-}_V1yA~BdtHt<vDXSSBqHcQ0?pxXF<G+agNGu^m`_JzeB{@-YIO*76<q4G!NNe z9GDg3b3GX1u2FQhk~MAz85d|n|16qb6E@EVs#fkpmo>7>?%Z9Qm}8Ncpdaj)NLq-S zlJ-Kul6GFlvS%^&k!Z?qMt7rg#4(Bqx)?Z-c*QmYiv|_w=OBMFB6H7}F{_0z6|e?0 zp{<w+EJv#jZ_`A(586+Hd%FFZ2HidHA3%_nen&(sF(|{~1lilKECp-#@a66pvH6Kq z)^lU0{8EoDLvP>*0?y?0bUsfpy&t()Kc~2|@&~~>X7K<z4qTLq)~<t~h6XK>oZ=#C zT{hEj1he#G?A-el0Mn-Am!0`9ShJ)$=`pPm7E7Qj2^o5%xD^d5+%IWk%mYzNpjF7u zmv@oJ;2$yb_K%p!w_MUf#3jZ+Z`!O&C*fEIj;-x@F2_m;fAQ<M>dqM;;vj-Worp#d z5z<Y>frodw1Ux=`KB&x^^1OmZ{}x3dpklx&4t%lgDl41(vyfCe)tLnK3ek?XKs&Xt zaF8Iv`S(+@3v`Wt2^OodDz0>8+GdTCFC)4i5d|5pAEsX?IicRRdJ+y_lj=QZUXh5V z@&ay>kJzlchn07n8WA+~>&eUy(`Q~VjJps0um^NSCENqv9JyUu#~OP=Fa=yfy^_`& z;ULzzkB8e>E|{pPGjR}EBR~=l-aENGP`SLVP;eABCAyvEjLDW<J1^FyX)n={XNIBX zX|W$XJAbbovt&!-Z)rYv5r0(k#P&!X;537w_od$h5*I%gDf!DY(`jN0bNs5Zu&8?5 zoH+xy8w0u!AV&QOzVzdpr^V616$fPa7>2{S^17t_S(SCYG3DSp0<ujVY+q0?b2BS$ z(+*4Lv73)qa8HS~=jGb;0CjY%#`L|;ptK+R=iOJwP7g^kQ}Hn|gE`2R!n2(=Ygk)A zt*g;W@mLiE;wAE}N$LD-kQ-4Sj)0nP6Ki+eDX@@cJJmY0G{?iFWr1?w<{U!1CB+K6 z(dVrM(dJ`gZ4bc=j#(i90!E5$De6?b+3#0pJ~!Qvu^#cM-*gl)3ud@FVW`0`&|!EX zeFMsWYM908%0Qr$3V+!_+O?b~LMMF|54d~XH!cskEBSW~Z@u8P`#(*yo418~sEA+^ zMcspp>>*G)`$bwdVsLmcGCK122_griebJe}bc_&rkZyW9FcuMjLOS;n;OB@f(a6J; zDt~=xb3IuW^d~!-nBX!(SnKN*vYJbst0vd1t({Gojir$OlI1a5po6%ClpOTQM-bAy zRC{%76;3olj2O{S3y;Z;kwZPub&__Q=dO_E&Ir(j3K8n>(^6ZthWn0S^9&sPv>pPp zG-pH}CKjyZ8efO#<4(H2`A3Zu5rzth(Q+-<vv5yLjZOAvO?;EQ;QdYZ4W8o&srf|8 zrL##Bes2AgKDjEG4{+8Aoc1FhkD#Rz;}8wGAtiuV%9^Tq%>z#C)`?<4_+NvYgVcx4 zJ8ob8CEsjJ)x0oYIi9kt1OKEuBB9`WOm1DAtv^G&NG(u%?LvD!`Lgj|qSDgrj^!-* zi#m_yPGj8#adM2SzEN~9{oeB?bnm1E90k=pZ(4BNsF@|CXA@6+I*04@9!IH0)52?= zTNH7nUDE&ynpxWxZ>mhM0q5yCK>^9n-OkT;#kMIsMB8w*yg)J<k}HpGez@gn@pUwh zCVF5ETZtnD`JlYRw%E_OFbie#Fg+&<sVTDP-4^0$<TOylplozPLV{6u*appNH>Wr= z6(xW1P-k;`qiyV(A|uIrD#-`=7byAy5R>uKdLzF=wMZWOslBLAE+8{l5U@Niz~{<_ zJbY?Xma)=xIXO$s$RZ1sSW=Ov=Pf~7WqP5^ZOM;;fiXEX^&>w1T%Wm&VGl7*D<Zwd zcK;(YVgdg*Gq4B!FMV!AdkogpI$lJh1)Y+bcN-&GUsf|<IRs=rr|o|8cfl~{(LY+} zfmB7*)k0N6IEna~T<k*5+S1eCZ((LuP*4zPEsVICAcP$vQ&K+M>ngUPZ-W0`l*xg1 z9_>%I(VPG|Q!=RTs8<!<H>)-DDj_^e72vrZ$0F6XNSMxr)~w<hi#C{R4`+h!k1>*= zU}Z%TV&{O{q_nk_(Guvko@>K}t`1B^4GfJU5#*z!grXBO1tBe~iAZ6AqRQdoblxcX z%l;KapoRTQN>98N(qS!{Z2x%eoDJ_Xe{CZPqrFH13x|WAhkchpP41_Kk$R$m8>T)Y z%R@2`E{iVce<$5-tZ{~7Fqx@L(7puQnp>{M!BnFu#U3BqHWqc@Kp{}nf;}sx)F~?> z{I&i1yPDVm*MWA19^wg_E7ud4E6|yV?4KKJu`#ObzgRXJpv?9&6noe>et;NLHC5>! z{w5gUgEU5+PYeYuBYTV}fu|K4L@b-|2(xFe^gCOV_?q_gn8kiCgc(2&zU|+?e;XTl z<_(0!6Ru0d$`by@w!7kg07u{PciyD?WHB+!tf2O^J#~21+MR8Kv-a2%VRxhN3Tg&C zf|K$-OSZD)HYxt2N=7DEA{yNkw>QsMwQZD=GUu(9NK-RBl*p}3|3&VO@u`8;63fBC z!Rmny7IBmxo!;i;8?N5}+V%~>)8s+^9hWuqce@m`zDON`q08|#I}(*{M`1pi<!a5! zA9bt36UBEl$TzLRzuB79TEG{fHOyk_iiaSUbLrGi`p;o%MyPgwq_xK-rt;Cy6VwNf z7Br2BiB^mR4S)YW{Jd^Lzqa6&`>Q}^8wCPUxyuwQFA7)nD=zqVg86TVzyO2iEhTlT z3jgALiiHO(6p97{o+;L~&utWB{I)}>e~9=*HUfj3*X(hJV(L-CV+<Yfxs#}IBUGG^ zxF@;S5V%pQk+r@D!i&hFIktGSygUJ~@82dS2o4Y3l0INNU0v;$vjZN^7hg98WK1ya z7DdM@q`i!Gs&_t{RcH}<ZUP2ipG6aV$gSJa{-A>6_xrM1MLJksKOMc+g>haY`jt4M zc}BaEuLcNSKMrJ)j{6Ms;aYqUCL8*Lkx5FcceL(VnwNm})1$@^m5J&4klt(C>9N0k zzgC6MLpotFv;_Kst!!=_#2~SQ>)}V%)ms<nPv*41>n!nH;a^dZ$mM{Zy7KlQaPq3( zZf3JQr!y5z{8>gZEVwkCO}u^pym?=%nfnLsVYy=7DKqlWfW7u%iq`_EF(>^AJBHG5 zETPtg0JPZeEFP>|-^J=(J-=Wzg&u5oh=?XcHg{T4QfBn+Oocd6TtcrBjtjRw^9f#X z2tM+(y=0OBJ_E(Z1U^@_D=fJ+PWTvdsdbKw=EBoV;Q6m4C@I|KeLfg*Ke+myTf<Dh zBw{qRj4`u}!O|4g!2&pPe4GxjM<@9UrjW(3!3HbV(|&EqKTDA5bjjOWWH0I*PXDvj zffKT30h%7dL%DH~7p5J#7$=s9c)OeK1a_HoG(}{q|63!r=}n3!K|#^C>EeQ{DI14L zV)uzRK{1DyG%kO!y1MCwoj!g*bJFrBjwg9^p{?Y-@Yus2b=SN6q6aEdTMG!UacHnc z+r(7V)D++Nzb1E9hJ4WTC@Oss<#ED)<NHq$!n;@s+uaX$|2^Q?lO9-+K@)hfQ&wd) zcgHNkz(>HFZZ1zV-P%h#ujJPnfuk>l*{`bh(G{;35u$<iU{XgGb))5{f`rCYVlq7H z7oY%8iN}0IdqWGdZ8(m=`xprh+l5P0Zzg*#PBm<xvzfJjfKj}%uB?8*ag(jx;UmfW z)QpXAaE-z_|5RrUWq}8R05Bahv#Toi5$$AwAwG<k6AcAV;nJCoLCgp8Ha1BV*FYFI zouM)>-;Q*Y=$@8b1kawiC1f;%28-st=(B?2!XM}4aUU{Lf!wc*rN!$5aFO51+iEF6 zx{9cb046RjoWD?5AyY+<00DP!?M+}#Sb+WQchr@uD+w$71>}*wFm3l4?&nZbuUA(8 z@XN+nDPamybJYeqL2xgUo3*G<RCiMB)mHas%igjsSGASwbK&`6mbc{5G#1*3$#rjt zLddKsWWs|RZV56ZJS1cHi4Htrel%Pt6J(X|<Yoh|z--Vc?kFkUpb!Jl5SxBY=8dT! z(IH|$zt&`i53r@{1+nrh*1R3GY8gAAVSXI)Xfg(#fa7Lj3T`WXCB??h>3^f3$d~1) zVW=bwUycR3tp*?mmi&;^svyE1xa$V@WER!F+`PKc$VT2S65aPlJ<l8F{D-Y)W74d> zc@tQ2BTi*=GJUHe<YE|t2clsINwK&<p**5`D3iJDd~dM4k?Kmx<%p}K{JEPc5%Vfi zjkbNF#LXJDYhGG``@9ZfIVc+m3JUNc6XN36X|(Csh5Rv+h-mq!w(;lC<}ad;651wW zMnC`AM1PjDUU2ZPSQ5aVHd$YqTVHB#<Y+73v=^067@8uyuR{btw!Sy&Tc?UB3586B z`Z8`rp7YAT^W&N4%Py(W)m#+!CIckG+y2u2-&<URz@67jbR~?+Ejmzm<rO7PX8t<b z6N*x}$von3M9MIDaHt`1rXbbC^r7HXFXqP4m2YoJCefFbJ1e4U$95oLMhCuWinc#s zj|ir*vHMVyrjVveqiJ3J4CG4qCUE*iY9zeX3b18rref~3hBjcOKcS+cVi*_KZMtpE zHXhZXs_ulmp~9BwKn*5bSs{(yYin2q=OI>-Fx-w-#{*Jy<_*%zMh<8{DbMRN3w#b4 zy`42|3c#hW`H|ttr{|O7(K&Wq&VJD4Y&As3VGZc*eYAD%)Rra<!m?N=HSnSOO*ZZv zMYLg_S<e+@Q_6x;q2xWl_>q$nyBcq4>1SHn&axRB`bGjdlvmm1=DRXs_+CcFy5H?; zq_qJ91t6(pZHut$S`PwwY#?`;xu1ZmM!srk7j#}hof4e03Kj%xZV3iJ!H`99#&r>5 zLG5H+4$r}i#beS~uIyb8`dgg|S=$sTQ-)$dOQug_?ZGQ!pvoCW#2_;QI-3`)tW>FY zL|9PQ)YN_`(;p2TqABX`QWh`2SG9=}f~(hZeEot|y*6G9>$-NxAwNPTYQ+{q`C;FG zvn7pS2t4YWFd3EUUgzWEiWwCeW`BU&%-rZlP#vB<+c#ht_ZPyb{203tDR)2vqGgdP zR!L8nj@=|?9HIlY&RvSv*PA&!Q?wYnCk@8q5i;nQCIq>Gy}yoWYuFEPq7o%+Nx4o8 zt`ns$5<am~XTSmF7uU~S-sF6TkgI}#yiX#XnHGJ!Lw#Hky9T<CkNL@f{N;czR4-P% ziFSoym?&027cZkr;gY2V3rjLN7S*ne>v44Su&V*g>y4u6MP@Y?4LwPaeSWRQw*lPz z#}6XP+~_uWSA(y{giOgpOZNp}+DBqlBVMV7@nq#K>hw5zO3Fo+QCv?!(ww}8FaK?P zJ@H=*-T#*b$N9I}M%%=zdh1X3IzMTc>oWn+(5&W`mYBk0Fyc$P&7HR4d>b;{PH~cO zLw<Fj<=HFwMUhBg_8~4wy>aBT@cV?!`ZHff*{x7t6HR?CD62x7;9f|jsDXjttiI%F z^6Fp(U`COae~^dd%c1NSU*y>L<MPSzeq0!kO0w{4qN`oP3eNpRojp_8GfeA8ZkuqB zwG^oFUc>S#1uoJ-69~qae9MxLsDksGsLV5&(_gqAUK)vci97xCgPA9M(?r4$RQpz_ zD4rnCpGcjt?4K4k*8fC0dE_vWoF;M8@~g?^q2TvAMO>92oy<o)J4;7u88npMb9wU( z_e~q9_P`nQ*9A47x`9X-4CnH&*S4P|Pd3K}uSvh`#U67g2QMxPPfur)aKI+U(7c@W zZer-*P@31EH|Tmmbi$Ss@nN_e9x}q`SN=yrnhYNvpu2-x-vr{=$+LgMRQ!|WBNjm% z6QtG&di|G+0jWb2uz)HSOb^+N3|KFJVex&+Q0j}qQ%u(XxR36_8qp~t_60);Fv(lw z5iUiaE^1n&Z9u3wH@I~WM$vqQqV3Tp?HHu=Gg41FDA(U!V)}{!bM?_Z=@+{Y#iT7; zCno@3?E<q&EZx|2o_34j{NI9MXdquNVwTgA@30DV1RCD!Z9AKIldQpr<SLHxO3KH_ z$K|U^T8X#8*0%~}bl9;h2i=>Rn>*A=)Jn9S9m9hF;}0-D`y>~ee%z8eGK=H7JfQnR z^+MS)v-}ZVOGH%oJFP12gpUSkiUYyWg}rbD>4ox<&Q)b5zW~E}%M)qrK*4rChqXJs zcK>h~dMhvq8l|GRyybx~V}p3b#Q%HqUf}OHAD;4hAtv%p`UBApQNv_ql`z^}Jacl9 zc1{mbFyh;{06cGz(vw?^q)Mr)&%7{lv2c5!$4-JkK`d-<!naJO?ZS1B1N+5?i(5K( zz6PF;*M0o<M~^Flo1OmFIZ8BSa0M=u_^a5~@QtC?+wR}O1tUkxnF^$mreH~xRoNBN zg_Fs$tUhIMjFQYijzSn9tNA&7Re{)s+Y8jA?tnQ#gtS8;&Q0RdG2>^1B^-a1eSAjr zx;%RX3J~1g?bX!#B`?m}hcb&_f)hNrX>uZJOtNQz_gP*r@Q@H!F*V2q32ABU()HcO zNH~Dl7fkxtl$4Z^5CAWPhPgSlrnHOv-(StmZGF+D7bb+D%3rH3n$t<a%22D>a3j8t zTG}m&c+?%DK}+XRKuv`#A4!KcxiwqNF~4b0sxIxNPsep|ltpAIR3QC2Y?q1JkXEk! zfGGh~OB5+eajDjNC<1U<&wJ(X)Vw@wspX27ms7#(fyEDfFHV!YJGyV*;KBl#V7?7+ z4>kW44f3`*w|#f&WbbKQO%`mBLjiX~1zKtJ4eCO$!+}Wmi!XLJUaZ|kE>vVdE~Ll> zuBC`l3dur4hiC_|rlw|caw^Z*Sn+qm*~#g0CU<k*w$Sie78VW~8l<MApD$4GvT<N= zVgmiI!taKuJ~l8F1n6AUg#Ma&x=J~jNkPisf)QCS#)`_GVd;|h#_A^Rxd63AN}C^k zeKntLgK1x?OwqnDLGbuU==D%Hu=d95G+bZ4kC*>h!c4C^7H5#Q`#?3=)8SnA{YRj| zIll1T6+fxjSd*bJ17;I^v9?3B9d*&ro2bP-T(*w*<>4<evCN^T3qex{Q!?C0blgJE zns-C=8<9>^Hx%gn^i6;Qk(|rjmfwd=ar$k;A2HH?Dp0gZsX!u=Dt6cOXyc~KnS2d# zfF*fT>eKb&Bo^8g77<2SuMIjT<6fgJ?YN&aw0ay1zrKAE#muWe6Mll+4SYaEq~(?2 z>FDC*1he<ZMWid@?1fsBDmz3a-@kwNfRfJ9i9g8DwUK1Dq~U%OpYl>Gep7t-2%O8B zdUV@-fMo}F4B4}0jmE|*Oa!e@6sMSEBgQeYjfZA;(qdxb&KYwNbGV-=MpU#PJf2#- z$#UaNOsh&L$*&`ic>qTI9u2&9To*4ZBCL7s5MHiv9v3QH9$hX1*4hm|n!hXo5B^|0 z&VjCXs7uS^WjjoHXbi%kVcjS~CSZ&SgP?}$Pr9aNJ8PgW(G@7A5K8=BRh##igPi|v z`R6|QGtr;G(_)zU|D507-&k0{x3Yr2xR6$bX-6v-+eRv_QI_2GJkB7v|K80GhW-Jw za31yTmP`<1q+q4<wD{|fE#vbQy-!2=1qGe_ABD(sn%Z83eOFF@C*(PsyGG-meEx~7 zLA#+CC_wt=^^N{E!UIRVMc3_D_06&~jo?kA$NZSkkDA)z`e-4RyrRq;SU(oNWM8W1 z&lv>Q2m^9qS{>TYHr4mphYr2=aqif*l2+2RL5(S@)DsHaksqt)y;t#m^6C|vB2Y)t zl2>D*b45+^wv^ba>Z&?x>*`9%T7OlE@3l>O5ls(rO%1(w7Z-T1Eq+9XfPIn^I|(FX z77+B;M6=i`>4Jh-APR09!0)@b4^e<ISiZO+HrQ-w;YUA3CnU_sj8DkQ`Vj}SHw*xB zM;CD#tIyhH?|p#_SKU^SDo2iw+Q`x8k@*Ynj4Ca8W3<==T77I7j}}%9G9<#93k`%3 zhhQ%zyocq1IA)o{{U)skT)cY%qy2;L4OVM@uv>_e?Ood;tVH=R2P0lVJtdr+*T;yz z-P_4%X>WCS1_=n4rtK=HB#3On46GZNDKKvF@XXeq7#P`9UccN?MZBP8hTjKuOv~hz z&(a%6IvPll`JgEsv%J?$_gBupbqn$cEqHbBRUY(b6u*cX$|~uKb%<i^$+9NIQA+J@ z-(%}TzrlypZW_IvxaB<X_=Y)NYC7h?)v0G*7>W*D1?m>}DQaKAw_ORHEK|nEk*Um8 z#O+KXT1}uH<X(l6_r=^!&|Ht<hNz9_&7ZLF$wn2?{eXX1P<k9K+03Xx__(aE$h|^; z8QLL3C8$22qzN~sHM~&!m%XqqX2j;`I0PRilBzg4+cc<D<^(q=6=s(6<FtQ~Pkh!3 z@cI5_o!lt+eKz8Va@d}vX<pPZE`<Q0u}K``M>;wgCuEULGy$oyvNCRmRiE_^2u=JB z<z>S_kV=!@lhpZx@byqQDWVxvIuqJowx$5TH~wZb@|`_?T0CKK!>0hSdXzwhGxq#F z=}p;^r!VSjH&h4GdjH~#OdPrpDf~xqc@{NBrNE9ebtXGeB5e6w#8FKAeQ!!qO;pl? z0;LH~ms$KSim7qwCwlN^?*FKJY=34tY@nj^e^`pBY9Be}I;i-<bJs;Dp1~G^nf%~m zD)7#Ta7YHc06Ab%iq0@0dN~2&;_$Pf!SoSu6p9<!2y<v?30wU!XG;xd>z%<;(X;Ey z)@c}}h-i@8lfu+f^={}@h#>eHcOn7tvQ-?XdRP<$Z-k*C-LDWkJ1VkYtENRlvcy5+ z$GCcAn+lapk;W$J&{94K%WNvDFD3qnC(x6iL28nsbP77UAkTFE<gb!<(AXXr^#Lw) zcPk2r4rt9p2}i-w(xyQ{Zg8`D7e7x?V?MsV7^L#MQOhQJ8;z?xg@S36n#FI#Y7cku z?_rbZy$!_=z!*@CNV{5MNUjKGSvJ{RimR&LylfsS^;!rB2n=h`spFv%MF%g&v-Yd} zafOITD|6<Mu7?P($Mz(OnegBv+g6+iU)Jem<*tx8F7vvJKl!A<@rp>Y(bxe5Sl4mm zGf#<dx199RQ1ZD~YLmGfa=;k;S&Woi)KmEyrAjD)H2y@~kuKjh%a!lNGUxx}>np&b z>bh{H5u`*wNok}*x?4a%x<Lu)?(UFAQIHmpF6o@11f;vWb7+QPVCEjb@Bi<;&vS$Q zP-o7=;mp~4ueIK_-glinYk^?B<}_o+mto2>QNw1v=^l*1LMC7JPJPd8WT2`}s5cZ2 zEbG7A!2j2R0$~y1ysw5JHp_YI;qw;;M5r8Z1UA+9c!x>FK~u71nt(Gi&$PoGscSJr z>Ic)g+p?(NPP)2X+lQq^eqnk|clK1irHzfN;NEy6_)ztWdrr5d#j%^N_RC|8QWcHr z(K&RAaRn*H%N6_&VWEBsE6E|~IW$`r?Uk>>e@cJmo!l=BAQ}oEuDmT~PdXk#r9*Wb z&pbU;K|BW^kCoB{e|t(6t;sv0s``d9%*W(+lR_o_Ip%Xn4-i)V<xT;}aVm#<rF;1_ zSiCysXbc1TF6zob`6<T&ke7?@WI;<x?k%(wis>}lp8sXB#5M@Fw{_C@>45#TK3Il@ zIlh!BJWRfQ%!MbG#K#w@f#!Ucd{Y}*^s?vGy{tvPu}{?3r~)_V{IMO|M9QD4W>dvK zIe$8O$iQ47V&symDhCcLQbL=Xz4I)E3EuZ4q}zY!Cex^dO5h$Qz1dKPRX=!4k_6Sn zYRYrs@MC8;X;IIo-oIJ4GM@m_Hh)WZJO9?4p^vd-Uaqr8d%B#{wgy*9SA`A1=FmjZ zsZYW}h;cP2wYy}t184`f@I}mzA*^fAhpOrAE%06B`Gll?aGicc@>?OL`B(3=rMt+s zjic#f>=|2Dxzkqk&#_MhM7=}p(48phkgZ&J3))?hgyCAI8^_GJNyHH=-QpOl)gXcW zAg>dm(n;f?>jX+#4_3aS$=)xoII;zT<O%L+cUQ4Afq2^jx~d-`LXqJ1)Vp}FHH)`* zPIesuOdvw+zZ8P@-}bYdIY-TXcaya(1R`cn<epFuVK+-leV|p|tldx72WAy1DwvRv zs2vcw(w(JV%T9IK4|C6Sh7+wo?OWF=$x~EIV5nTlU#sKH*+w|<UxEF4C_GSfpY}F) zd&_0hJ$WE1K|LiTe3pC6#or$(jUM?iE6jTx7Rvn%=FTFzlv}5`__<cqqoPlhhrCcY zG<+Z&{L}w5ANfGjy6dK~>+K&2`2$u&B2uobO@~?5zQ+u+t*orms2yl+==8An=5DR? z0JpO)3fxX~rf@ld?v8e4O<JDODZEuIjOdIMg&#LmLt!?u#KJNUSLv<tVWWOxLj$B< zzfApA&E^3-4*8SM`so$AQPYI83V_?D=&V?T|HKT+dmcIdlsN}w4)3|>St)e!89UYv z)@vGnkhkfJOUt6E<+?~@Y&BkQNzpgZD(hsU2tPx*qF2L<se|FEgDhW<OFWOI%Bv%@ z*k1br#Yt}xm&8vGTLrJGDJILyh}PmevV>e^KG2qoqJaq`BV7vPtC@QqfSgLFKl=S9 zO*%*f`tkRzX5*6?S3ox|gYISjz<{I`m{8a%#@K*NqU>D+0|V2cMLq$gBtl-+WXFoE zK^(>+evYjw8d=6FAHlk*oo#Mr!WhNIJn1hrL;IE^(bH*UAcXVlpX=33^!rCVul%8( z)}MLygwqTr30rF*o_}DyXgDd!t8T*n7@kb&87_^LB3i6U{6dvb^2x_=!8iLss{uc- zr6~zLXa^cvD`lVq#1q~ROb5Tf_-o$pef&gxFz+=tvRT`rSlH!CU+$NO{1YNRM@hoI z9g;jI9?Ra_C*O2cf&lsEgb)$4n2gAmZ!z!DKC}X^WoSBOY5CH`J1Ed5)IRu<ZODwe z$k#ohr$}+?)A9DiG<%pyHo0<rrv@4k+iFwCTHN$$bQUk+(9EvFcvu`uU$t1-o0GfW zOiHkgf#ke8lqDh0TI^&E!SsZ8io26>5h8{AtV9iQ=+!S3qM8o8!RkWq`02#OIrvFZ z@ku^ykcBacmW0I&v=Ryo`ULMTe*xBbyBv@QNa3?K#W$8JWGvIGVi_7a;&cC;mhU3? z_c7h6<>KI=&Jj*G+uPWSPuq%de=t6(*BXAaGGU~pP3032PC4L*!CX6O`>ZvVp?ZX| zX71(Et9H2~a>{QB<8fkiFHwqBy}#@X)1$kvgvwxiQt$jSji<DbB8m6iRJ!hcq^sS$ zih_u0u7aeg-0wMTqbKR4%f>HP?J*y!#2*);`J*ME;fB%`0?N;lT{4|-gj~P(^ZjES z{-Fm&Q(EKV#$D|;lFaBcLU-Go%05@+Hr?(l{~lXD)(gd#?A@V_4<ScM`ZSdHOxg<? zwY!^*g?}tuL-S&oQZu-lxxVz%J9@HLBI~|5q+tU~TMgX?Br^wD$6SvePdhzhdhSf# zN4MACNab-G;}WhTn4AuP^rsHWY8PFp1;aJAxL;47f!NhjglZb!Mqd=X)7M`XAZnms z(~QcC#k)7v=*9PRt<hp|@xQRu{`twqE{aDbkt6I2-axdmfnFu<ha^I0{9O27H(v1H zLe$^8hoOSv+Vs{N?&4(GGVUD)UxAmU<)oC1ix^xLF?ANCb-eJTd(cRdG^bM*K!KvQ zEj`UI(WUOZBKj(PzCvJBFIIn!4Mk+Kmi5va{}vwARqTnL+Sgds1!2^c&cDi1%QBXe zM*aN7b`m}1rY9-NRxm)Cq^-2{_lMUN^50+3Ei4v(a$;9h)=L4sRcB5jYthoc^3ngc zuK#YV!bA}X!$v(4iGM^q9vb#?gW^%dj=a()WIN+9`t~1g)^ijL0Nn}iGDnv|MRA@i z?lvPK(5Oj%fJ4J0J)S4%7Aie_WD9Iegn-OylC6>^RjLUo*|RdY18~R)Yp?)-5(U4Q z?%1o^g;Aqv|2a8-7?b+bR|bKOVN=IXxom8*E=s!d!fVLd^Ni2;w@^>@3jMJRq=V-( z302W>E^-MDU|-GMl#bAt&6=Tu4UayggnE}{aiO=X3iRKyib4VMD6siF20Wtxl?W2l zDqvRN0tje#a|jkIb-7P!SlDs7u$MzX(A0_K578i2G3NCrzuePUIF7arX$dDk?TG|% zz0W(Je;4T8ua<H-{fY7Y)9D)VqqiBx`>yzcR8k?c0j$F!-I&|^zBu8duYrYXrJ`Q2 zU_E(kAmEw!RvNU-uuCQ^?|}DS#+l(rCWQ70Pp7JvvXyLn+8g)3RQG*6l$B!&n%2F& zxJlkxii`xj2CT4{>8tw>(pd?`=I8<PozxO`4TBn#ANe$s>3_?6GmEhiZ32>!q*^lC z+w&U+!q?Z2GX;(iMy$)ydC$6V)vX$E2jXq7+WZf$rXuLA*YJKiedvWvx&0_{aiN=- zxcx;Zz8Dr4s0K&*u&(U3*HI5~-*}flE7iGyRw@xx`zBr6xW~(nn1tbRQI@16=S9qb zjEuKi-;+DoSVVYC+|!>8l@IWT=)@U;K4yl#zFq|d`NM0Xmn<OaLBfN-<rd`)b}<g$ zn*Lx5(dJDpT(zx1JYo^<`}=>n*l-fOeSCP5AVApvZ2QBX^*=d{{Xv?l&u~{x9NaF7 zPhl~bqNo}7k*nB8GKz|pa=il)z45a*LM)FY3}q=m&m?kO2sJ#O`&#UW`bX|DwM*UE zyve$onWH;692CqF*WaLv)utT4jAAh`qtMLnK%zVxxZWWig$k5XOlFz_0f<kw%kdeA zwhxQZH`ni*sj=-)NmMWMc!6;MXdpY*TqIGusHzH|l+9<p^E)O!UCrovhx&a_Qr%^c z;KTS7Gc5GUWm1sPGgEUHy1X+2tl(fWg9QYyP*T!Q9CFmZHhkn!W>{A96W`?ziPDRN z?H)u#Smf#f7Kh8?9~`D=zNOP}{-7~dDpoJv=;{6P-0W&YDOS7eos5vxgWKmT8$8EV zIzN#;k*SFqht^xv!D}|dCuOPX2sT|o(OpVeY8{6A5GPD0MhT$cTAEi)LTQ@t+st#8 zT>th&fz-!)B#Ikd^Y}Cp@o!6G&wm&HY~}-U{@kclK+0jg&HT;FJfGt3I?bvITyQdw ztOvYr5my5X6_wws9ns9{b{$*HOoezIH_95L9GFVdt&!#ymxA^7O?fY!v`XnJcISCE zyl{x)wR$e8htXPNr?qp56qPbM;F0P|?&a<}<f%zOGFu^uG}1TFF@{Bf{3(OK&M?av zd#Qw+QKLvpi_~SPzOhaGGv2);&HtEE=D+F^96a@e?=+)AVoE$|ad1O988{^n`X(!; z7X64%TlQotHbG~C9!DcGL>CVdeuueNy;^jJ=tVE)WVl`4$(w2vQuP!cl9H&pz#`7A z(Cc3jNzj9wCBFtTwku^VtML%M71mNG${>*>H+M}beL^dYgM8F4(>dCBqP_N#H}9&R zUNNy#4x@QoYUNQjP5Jp>uE%@yY3#E#A`nd!9jY4eC{sc?<&<8~nOkaVd8VW!oSa~Z zChRCZPH5uHR}4}oGm-k`di6W)Y8GsZMEQUxji?&sOc|v#Mjs3Zs#|1;taqZ-^j+2) z{1C#apEn7XOT2JrR4Uu<d}9i;J!%KGHx%RIpB5^Q*joO?7t@q3j92hgE|e1YyJG2f z`oV+xju(0M=dy=j!Uy|rnT<H=>UmPFl^c$>(HBIi9|s$rf0j@9Moh@wRq4UOo7_d} zA8T&M167YLj?%<!d?BxfI0SL6FemGg55k6b+z*$+M2&ZwY*z?HAnmMu*TSM!?lkZ# z<vUaTvvr&x?Y2l6EB}_5LD$$_`FULPC~Gz1;XZf`S;Kqmd|QWSFI1=Ro)E<uF;{Sp z(78XRlprj5azU&0`W<13l;xOK(aVin(Jp^;^gDvTS@c2^uFS3EZI9UpKq4h>Z?Zx- z=%?E;SoK0VUWx|0WU6@cRono+m`%zZaVYfwS=cmLPc#7yk2!kTkAUEkR%7*OQsep9 zR9aF#S|*J1)?gUh%H<>RI|lJH|GW1I17jPOjMBzz=GKJnM`mnG3?8i5eXbd#7-q>X zR9Tn?GY|G>A_;K?-$<>^NT(xHP=g7%&=DF229Mw7QHD)%-eMg|-lJtI{-wtd|Mj;A z!1$jxKsuG&6}f`tP3kWkfff>k@1p+<eD&OMzIRK1aySqY$H2(!{e6Vru@ateqPS_U zD#_l6c(h~Lujx-gCCPcXOc$q@w9wt?o^84>)|V^iK6-(L>toTGNiwsWoFunGSRZER z{*tCZ0SA9WF+2zDu}+E_9;)aL-)~9jN{`mjD$d^a`uh4ucm}Yp?H+<c-@gyNSsqC6 z?Bh1qe&qtNw=r{v7optJofdc6-y`)sTV?tAMJ@6ZP2GK$XsGk7RQ6+4<k20JKi3SE zP^1#SDMR7XKpM+|Z<T%Ox-X~y%#k!45qiauv2!7O!@H*nD#IJ~njdd>84f&JTAZDo zMBTv}03w6h3$#<KJputx#2>1$B>-l?50$!&F1%+kOc!*Syc~=VA;oS!l-Xv0DA#aK z)0W!W>UJP({EaXSZjxx0er*eWTSLTFwa83+{TY15F2}_<(@Ah^Ed|65vxH4cA=H~+ z8t7Eg-`rIxH{*AQ+PS}JPHeb$a^a7ZeQYegE^}0f47s3}7|lwZUtBdcGGa3_%|nLB zVCT>r2OJ7+izWZFO3^zd^X^M>M3cVK1jt6dLJef#l&#@pi7{4YV&XZMi$JtxWLR8| zIl+RFOM#~*9xMEfuTSXgV^Tj}Z8gxD_BjqFua2WJ3wg-l$d{7P3LIkY^ee%%g*0ji z!4z-$QVKSAl;hWHCg-R9@@lIZNe^(lB)21q9RkiN9R8_<sKUM-lT;p>-6P=wra!2> zn*xQIl&&pm0Fi#C@%7UiUi~)?#~WMyLllS5#1Y5#2j-%-V5PVq7IV|d&+>g&>PVI9 z7yJ7>M5RY~xY9J+u8R72wWYB&Wc_yT%n2le1h@5=lY|`cZ!g!Jy!jN{QfliG1qJ!} z1!PWs;QMb3(}YTmTKtW(1RtVff>ZuYK$Luo(yKPs0OY>t*6d^W?&GDf>DDtObP`j6 zqNR2%X}M&L1^_FD-?g6BO;R{F&)%1tjbF>Z_KU!_4%|}pyXCr?=%;IlQp5?f0m^*x zVyMI<<r<81!h5g+)HDvgv~#U&?l52E6qiUw-!n!NR&GshZnYjAF2?sY-gqtChGh?a zXxbmlp`rCb)(*sXzLyI*8f%dx$+c6(>kG%z`i}Xhg@ym5u&gz|h|28?y*7!GjK&nc zWE)Uj%SX@1s6vxs8mOOi{IeRQR9V?=ab?{UD_0W8fGQ2qu%z(c!85FzUARQ+7YU*y zF_YCZVJf<4qx}H~5+t4^m53M-N*JEok3?#NU>IYYI`v#?CZEH6&G7Ks5?@Q4r!jj6 zFNH<HJeNvA$rB3Ox*L7iPaFYl-{o<M;MERH>=Lc0PP(l^+)y)Yc3vO;hNe>|J9e5B zlfaW1$8uf5+9+d}#1hm3xe6(QP_j)`%Y>MF;vBl%v`;d8>ugnz=Ta^$`aB5uec-FS zx}iZBIgIaxv$-M7^#cQe=RB3K{wR+Uj0*1_sYWzg-S3>hld7xT-GUWf4ilcOA?b%h z)=#)mgI=zuN|Pv~>a$sb32O+^kLWBhqvCrUIojT4^Gmk=x-6n#fA{{S=PPoXeu?I& z3ZRHG!hT?*AivjXM|!a_9JE9$CTlYC`s@i+CbO7ia>&eSR0NI7CwVoZ8p7fMvQKE9 zKY!-L#PKu5q>~-L!T0}A7q{kfDFv85m$;Ddho68{IpK$loTSO8%RrG<Xoz`A*X0s> zrX~AFearVT2Zx6MO0W9@eVd8-_g>-)em5U4R^G@Etcrl}RUefSslHt;zp|Lw$fZ|L z6KVIbo`2Gk-DtfRlL;6Rc1N2Ge!mMws>t00>Ct}kvTX|rxYV<_XjO<G9v)OyQ%Xou zk4a1n-FqdPi~q^!yWk(}D>Bq$<b>IqOA*;eD3Out32$ZI3ClCl)|z3HS9NBk5Ryp> zaOoitSgl}5b$@WvjMt~wrxB0vi>VX@e|w(Wn&OKiV&1eRX3-(|_q9Q=Z`3|90?uD~ zt3^jq_mWCVl8_h45~6Ibw=UZ`ickG)JW}f|5S1^e3j!{X&m)XJ!mw`MJrCBq2OPZ` zC_^>1E_So(i+t_bNOd~$3cft1hHFo&Ou<vOtoi$^3rIiGvSY&#sKPSLNb!*^H1r<y zDhqi=9Cu56eo;-E+7!UtaW8VR5Pelt1!DY`y1k1#R;jK$&CER1N2ca;NHh6Ql0=NI z^S*~(ZaMTXdm-sSi%263^K^8vuWuy*4-1!h))a}R_2<FkKwhRNCG`z=L-R)+tP^gp zm_c?(JX4N5da*S1442?kS|<9C>-GK1L*=&>Vvab^sEr**`Er)SfxQz|7Eq#ie|v7D zkVl3tR-}%B@n>*QhBSq^k^}2cE3>!9%8IvFLF%x2kertK&*tYEOY$pHqKVYSvDw|K zGgSWjM=Zmn8;&?bL;f`5qvA5KjmhNwde`BS2MdKiGp5sz=U~aezVwfJ6ClHa|4MxT zd!Fblz4-|{dJ3=W<HrLp-13I>Juj40<AQ8jPo3_rvm?ZcfBlN6FstptsG=}2ssHhI z9J>(zGQIb0Ab!p9F)T;oE)}%I$>d5N2eUA5RY<VO;89IWE!n1&wfRK}>+a$TPzUHK zQse)kv0t?E7BfBMgI4THa9Z`nXz2+*VzZ>Q#?S#NbE*E9bM@hw%*L|jTbtyDMr?=n zO;*J;oULU;XS^%t#3{YvJUQkT=r3K?Z|^98oTPT6(mtP`JF$iZR#~WdqY;=mgP=#$ zV>ugw-k4LLx@F-`pq7K3GW}TnyKlro;K0%cbWDQ3PQ{xxQ-M9{Xc6}#8bi|t8yFyY z#&4gtCReWe4L=9(7ejpKO9cR*9B1onATH(K-V@K#l$K8BLMMHZOjNF>XW)L^MtrRp zd{HpUOw(`=F>SqnIym-opT*9Rj5Rs9L#`Uw1k~)D$r{sFJ!oID46GwyWLKkbx=c|` zaGNG6i)3FCznXZ1)kWdALOEb>_5&aLio~4KlO_;hWBt{g`nMifkn(2GAF%RRs7`=e zR+^;A`<|A&zmp~Wu(hULn@ZI1M;&F$etXeU&|5Gf7(hm16G*er?w&B%Am`%fv<{ta z-RqTowK>d#d8wq`h_ro5Mc$ku6bk{Ez%_IH$wSIi#Vr=g>Qca@{=%j9sBqtm6ITC7 zw<b`O759G#k}C!a&Qz5T>gxVgiB<%qiaP5~nUSqM==BVe*lQwlH-hF^o8kC#suYrR z4j;CFzF=KaQs)|xBIsT(?o*GB2Fr+8XkCart<>rpW)Dk*IrvXvhpu2PB5^u|_}bO- zo6}`>cU}}H)z4nZu2=ij7&d#q{KUHHkka+AG6Rqg>N~O$DGNq9u~L5Agjhcw7O@_E z{cws5$bD``M)Ey1zT*7VyS|XH0lHrg@+g%>RaQP9HMtW5-|xPMVPQgZbY1}4g*d<y z%`w<XJ7Tj1$l}g}^z-Jk1jj8Ghw)Nx=<`Zsr6k6sMDwCU%zzq*T26EjZArxvDe;4< ziq=k6T?Pc+a9!G8smGDmtiO2QaK;)K#Q1Qo(fYu7cS-DF_V_D%fh0$9G);ky^TdxH zx<%4OqJ{*_ZF;_NHHlAE#!^k3BIG~p8`G~fG}JzDy_Jx;1DS8U_}kgQ3{WFmsI+p= z4PX3=JpuZAREE3j86pGT!<#&);ZISR3!do5Y-Zz-(g7<(ciTnflDgb?Ean)f65)H; z`H<mG`tzrzJ6~X(YHEETT->lDN`iyLSE7snmpEQ?S#6a+9qV)4%fQ291CKebeLZlY z3YVDArd;tKhA#vaLm#-pFEBs+0K`IM0X%Z!k&KR&XLD#b99S+mf3a<nzE6=-WMNtR z&5QH1txW}i-iY)lM(9MH`b0j(hAe9ghADTi)Dj98Vf(gaDYkRh*uKriA&(vUh{Ts5 zeRfJijd<vEH)&l9=oir}sZS8geYk}a)*<G)=ZnxE;UU&Yg8z!XhT#t2^kA-33>7~c z9bp5*^@h&X50uaOhPaeH!{Q$#qejJhMe#&XYd3oMy<;ew*+gUV22C=56--##sVYro z3ve86KPD0`koVH|@$CJr@ix^3s|z=%;`}`I`>Ss2qPInHTzTbHge1pm+3fW%{T^03 z{Ev=~e%yx~v584aNpBC3RSE2QR5*YM?gAlG5%FMk7mSWN(p&e3mOL6_V82AiLn#Jo z=2S(0=9ySqTN@csAZ&TQTX1}<DA^}^{P^nJP+I7nqBj!7?kLX{_F6!FUtUTXhY5!c zHCKzV_{9YL6ii?keoWsJg%^JLN-y*1<g7VJf85C)%w&H55XNB>Uf(I{0#_Mt>?i&= z2r?~JPdJT_UAA^W7FF)-H|RAQyGO!;gX9Rrr3jW)ypf-STo_FPF-+WOfpn*N*t^&_ zcO=@Im8GQs-BrFmj?xQv1dCa0C-bj+euo9XZx7*o)!o?W5g~$~h9>!VEBqe1fEbTb z*m!Ds-iF7hKfcl6gC!YZ|Hs$l1k_?IX?tJY6J1A>LhwHUl^gLPT-X4q0HAr_^3KYx z{iQ|sF8HtlRwbF}T|6&$KMUy#7QRmA_bCU-hI)EwZ`s}4+}3$F4~Ih${fSiY-Aw1a zo9DuA3|W%z12iUsxTmYIrI5ole^YjZMDLMFFT?(5@t{7$K8lH1UVjGU{FG752;ULb z-`se$_p7rAY%|cUliF>NQ&6z6vHd`H7Sk)lKY~3nNcoOa{NUmrYd8;vUwVCj!HFH4 z?mY*4Q_$FCUzXduB5NKPlZiKe#dk{4<vq9Bj(N`gMEH|vmJ;y5R52wd_RcnXmYST` zI{XEV#XGevKdEO4O^lC+gpe_agcqR?%ii2SA9y%h{F@q0C47(INma{)k|$y}>wXDk z#!7v$PC9NE5*HE^V)|N8FfA?ZbfK;o0IvLq=56v`rie>U&zPo%MQn+81EDx3JwVLC z+$ybk8y`}QEyT!)_A|M_(9#o|1v^M)45dy*M~B2Ms8b)!D@=U?D?q;LX7ecjKL8Dw z=oT3r?z>%LSBC(aNB+<5nYpR|@9vol%+8NLp?yO8d;b6L<8Sv&Zs3IfcF)B9Pxnmv zN4RHCfaB=WxWHE=&;}D5_)d8CpO=9WJFGJb;QE-D{>w{0_<Y^QU9Zt)YIq3Sk&mEX z{_UIjyz77U%{&E;{U2xkU;1Wd0ay9)Pv6WP&D#>-m;b$Q=9l#Uw8&h+$TR*ugLOvc z4UK4)I@@%LoRo<J0`_NYk&RLbe(;$U+ft1m3b>InuHN3bpV2oVkh_Of(LW=B@S78e zN*Mab3w_9Fw*SZ7;T2e}`|j{}1uikTjgIo)x9q=T=_QtgXO~_z7;)E^Kp|*5S!g>| zln`>K)^^h7w9@KW!&Um{zvq5Jb2h;bK*HC+&{h9n*pOM{-!qmPPZk@N9vyN?K%ZAt zm?3AaR1aa8_^*|-d=i9`g&xRxM0CCgo$c;)&djY~PLD~zj}xgxZ;lu06qBeMqyjIl zepj2X#f^SQD7#o_h-)wVVtNvLxiYF_6uflk`~GrXud(1a?(4GXg0F)4&qHeyN>xBP zimcDi1~Uv*OEyNzF69iKTH!dfntao|Do2>}d$Sg5My=uHY3AFcVDg8!oInI_y9QTL z@5`nJ-E_XTn?W|*M(jErbhwvNt6Ks-xm7L=RNW2fXe+jO7yYPqO*9P;R<~+3E-b~% zK(iYuCgCYQe%{`Sk)c<qDIIcW>VML(;<beLg4gnFy(?2H@MQ5Co*QuRu_-@_o<iu? zfe2D`*z{OI7-BU?5mcQS)EJqx8$51+LBUq31M534DM~h(15~(6TW|zcD`>yqS&N^r zPxj_layl60$Yz#Rm-0aU=IjPBzX{a%!Vu2;2YtW(K!xY#0>E`gA`a|^Wu~kxz7ASg z_IOG`J_4h2EksKmZHV2OASD4j(@N&r&;ipiy89~W1&5bzCl!~xduBO!{7wwUxZbg# zP8bo#eZw^Ddiv6?m(6g^xw6Lhy4`3e)3Cx9=G`h0MbbVdpJ8|$$aT&)KRvDaMeaee z$<M5H<gRiC$vcNM8bU6wk%JrV>)&~}1ziU@S?xvSgLC|X?eS7TmF9v@)6H(SCNPD; zJ?Uc9N2X0)CIx*n>L-%{9tCCBD2LM?E})~THc0)H+6?rNiGKz@r(b7}h-Hf<dCf|q zMET}F!>7kR&t$02#89wwyV||HPvxV!?Tn2TW8_zjppE#)_OsgdOWB4x+VUe>3A=B7 zf7%89AXu(2r~^8#fGz)go+;NOo0>MNx0z|QP_wA~eaoa;(V@5IQ2%jfl2K*0%Gf~X z>mTyp4Okb_z+~5}HZW4wVr7h&(=8Xo5%83|w6PZde6?$LsG9lOv<YOla(6B4=umL> z?N5aB8`TbjIwt$s3cO6YY|`i=y<zlsNkyC#(n-(z@uq8w`DV9YF{yThoMy7qVB7^# zT?<w(lk%}LsCIy$zFV2!bLs7je#aV|+Kn*Co9-GK8c$B+1|wjf3g6*Y@e?*QZ0HSf zH+u44qhU2cR_(4c_{)c4X)brU?z;$rToAB50xDjglSTeXzX1()e#hBqqu17u`|6<U z^5`5yCBBJ&hxMFS!W?^LuSwwSam!wgKcsZ+PH*bt$YsXe=I=P~W!L@=VD*lPLo3h@ z6Ug}~8ts#4MY-uJqE{P;gFKzr98OxxNE7Djb0jww()z}}3xQk<bd@z$fOoSIMbAC} zqFZH149>$pF+6SE@*)sJC}SR~k_+0cR=g@SZt!!2_^E#BOP~)PS@h({;KyS(1h$d8 z2Az=%LDyd&J^Axrht?-hd@$&I+inS&U01zMs#5yWH<BUnXV|Hv(xh!vRy9+=pib9q zrO+05pXY9yayox--w#y@dbDcLe_tXv1X&)GDNXG;3zrBwf9#j0H<|r$mxg)qMfp6J zfK*5Qh`(;AY{tH9g@S_LZXp1z?VV|ZT|&Dol<I!`%hsIVuSU$0CY#l(kfv+17P}Mr zF}1gOIY#6I>J~eWi@viYv7MfBo0dUq^{iSw&6=Nssa{A@q+146)6Y4q?=lIyPc7Q; z7=W?YhS)u4aIZ2WrX4Y-DL8U!Y`WTO^MU|1pf%UMl{MI?_hN%ntHZ%2b8f)LjeL3e z+(p0!FV@?-FPRW5d(MfU!nV0kr;8IPe)*B$wb<<_x5DpsM>4H9Ew<}zCc0Pbo!hs7 zrzgJEmPQtGcd;`Bz|~Gxfl1;wHg2oTqmWhiwgtZ8?kJTia*dg0C1@bjXvX~Ekm+c4 z8fLWS5SUA?no(bIIPT{OCgB=0UNj%AP?E~#02$3SD$=yNgC(-Dpr-;Q!A%g8MfEIR z!Jz0K%<KD&H1+1g-QwAbQXcZxcGC@7OWxD~XG+bH>FxKW4wbe7f~8WeXkFss(W8aR z9*yWHr{h&Kv0uvx7M$nRdi;LO=F4k|o~;Ir<5Mj*Wbs?`yn)QMU9O|7gkEjH2`Hwk z?STtN;q9+hnG7wsr*(3_k#u+m4fLj%Z}Q$l32b{pHQ(VmwChgBPPJUUB<)Wyo4;^L zYCnnMkB3_2zRR`p!6oSdN{N0<#$nJhbQ9>cR7!A%)_Al@U>S5K?r*z?Tm5$Jr5DMJ zKikwabS1FUNz|dZ&uU1|QJ|#BZs9nu19QuLZI!BtW<GGXoiRjrmlpm6vQ(~RIhtN) zGgH=(cE6oU0rC3)8?>7!lNc!~Ni;D^S>~qofQ;WcOTxw>qBpRygfWJ9>UpMoMmi28 zOYd6Of0xSt2%7s`Uz8&|?%2zEQ-pFIl%2_M*zkTQcE?IOaI>&<t1m(F{;bF7wSBwa zbs1OCPA0Ntv#jm3<+Q5pbOgELG33}!?e4KRn%$R}`#R`8;sh$(YIWqb1hx6)gLqq3 zY)I{Y{3%T#5wc2k)^LVq1Pb^a2uOij9o7du+;w+pZ~-l_K6FE(b1l{Vl9=2(@aYwk zfDWd|Kq!za5$Fenm|!2)gHPH<O>VcXMv5dCoL1dAti@WK?jMer#l~$WWfPbsmp?+> zr*c6St18fufb&q-FZ~=w696}1Ct<e9VXkpUm_}lIDOVK#+Y`td)uz|s_}vC`|6uiO zI)#qoTzOqwTK`CV>HDUQC6n{$B$Sn*s=$D1lRG3_&>DKYx)Do}vwZ4^hJ=;ZwR+gW zw_`r#KI|_^UZ?bUul+jh{o^iL?|i+No732{o<m$Tn$2TBv4Q0jygAW!Np`yem3$pw zQ~hxygSvHX{NaZ3wPRnmfjb$&;nGf>H4QAM>2$GHUMm?{)#J73--J>fpX)h~=n1;o zA>QROycz#uq3(YQT0?fb*6nflULBm%z&a6Yp!Jn0YYyXIZX;w8UehT4_;yQ0zdJ!D zm^UXP7PH;IRrI`07o8yYKQBqyaUFX5zj0(VI4o57UKU-=T^}jws0Mm|XadI_9(f`v zooDh}?5&=?bPU)Fvlx@`MKUYA)#mb*LG63<OX(eG;c=lrWd^YI49^`7@AA$y*ezs{ znre0O0eG75{!p$^tz-Fapr41(UN{!JL8IMt`giy#&pKPK5Kc7w>iG7P7JgQf%fi4f zKK?c>_-sM{n1TSBrwQ&Ru(g_W_&F}kjw}#l2s+c%`6jgFt5OIb%c=^bF95q>!P`qF zhDw5Vd%>9<>1^(~)?H4zc$x@-qL|srcjiO}{g|>@bp9<L4O~r3$R<_E|M;FXM5_*A z{B~Hp{-Euax`h231F4>uBe;`RPsgCxGK|wuX?vK7cZh7;jXG(fsRc~>6Dkn~q@dN| zG;va}_v3fq!;B-u9aO~#xJ$5^8996Cx;3~t#tM-aenX~TgkIu(G>ccVG^5+E;q-7f zGiCbyVtd7rOntT387>a5x0Uc-F6?(Q6FU6$eQedcvvc%IPP6?oeN#f<_6?7^SdHbV zwzR{2bDM_~d}IuSl^1kKkp_of334JQoSj3Dib39Bi#5>Dw(Vsow56B|XG?aKr<lvM zHEe~V&+=*V0?6@*w8ruP$Z~<iPCg^W_Gd2(iV-JZg0>JTS*+{ZyW&J)2joeY!p-#7 znCk64wCZl+)Y&2hdEu*g+F%bxgOUeyi+cH=ec~~@??T?MxXfL?M9$NDnYOs`qdh8& zE?C%_NngzWe*cwiE(8f!A2(=EfyO1Y64yE4w$ycQjVIqE^BdN&@blh2t>outV0cXS zn(LWMa7U|WUKkjeF5Y-F^T)*PkJ721(P<79|I-Ew{FU>PaIZ7Pm85>?a_OlCmQ#|j zqhXWKX2?mBgyn4tuvYFh+B9n`$ti<6YoH+aCU462o+ScGFW~SMWMU&k9FtnZeWlLG ze_SZwO_D!#;7)$<Dsl+C+Gcq$=&rU(Q-M!2d6|f%fLw<*ncdF$>s1)KLtbG$^$5D? zZyO+deLS3<7r6ATpQ`2Z101guv1E;H2h!a;7TrDzjHdLzO{7|CN<8wW5@|Qdv=jbi zUo3Dc5x^V?4K_le8q92ow>FCIj&DRCix1E%9t)!1mv62_pZJWMqLD!6K{LOApF641 zuI$@#s1hZ7;NehmpLtL?!Lo(a(YMT~ybA0r90vTq!@-?W2wpJ-en_Z(cCXQ;;=S#j zD~v>A&b}QBe%LERn)r`+3L@?V$-oaWJs?D|nS+5vP&L>0a=tbLqEl}i+E43zxv=36 z(Ntc&M2cAf7k@l{d4u6A-%!|(PiuPcU#v`a*|mDwLVv4M2Hq*b*(9x3KP%=?BO&zO z3D(vl1|F9yTvDZ5iHntiZHJ7$0+&=#S0abWRK=tEE_>nhM*`VD5Q%Uz^7(3tZ3)ZV z9~c-p<UHqhqB%?cO^DM4eR&fcu6D7L?_^A;?SZEc(C5=-3ha64r%nBjgvUUyf1Bu@ z@385e{&ELvsn7SXQHw(HZiCHx(QjXSbVhZ}Lmkm1{DFox)E!F_ZP#nAZ@AnZ4<j!6 zlh9AHMH_{8n#H+<j$CHLWN%)$btxtZ?Ve@dtTssEN{aJmOqVNS-Gu9MWKjJ=){F&T zofY6O=Dc)UwZ+OkUkw!Tc6dnna`SN5qIlBcZe}(5aMo2!1%?9F9Uro^bFW2!I6L<z z^5X;@|Hw5C*yCJ+N*s26aCk%@!Sl^?+dEC-c1m((=jgHGNj}-!>Ultghp|5#JAK54 zSO<K%ZvsA>=)rWdcKvZTrg9dUL><(nh)>mQl17WxYU(okgWB7Bz7s;0<%{j$G|>*s z{^jd-ErRFc#ae4QRJi)eL&3;4FZeAMbSW@eA{pLJK=Wvhqae$3Qlglu2`drrVD9=$ zF}2I^4^cvPHHnW<KDA~0CMrLgR%jkDztv%m5atZ>EFdmT7CIw$S-*E5^PQVed^jHq zM*bP&T=qW|2c5O3e^s~&V<JKE)V0jR9}2!IpfT~;h@=~X*`Y1RlCVKqkE$+5MG5-! zCV%-}rkUPX!x8>dS~%*NE$h2&xsq^Mtp4yXMWb-|R|4qi)K2*x_=qa{Sjhb*U!c;E zyD`_TTjF>-%?v7Ma>v!d`(Pd1j+O%I5T!yUuCUrlNx#ti-H`-(yN9?^#9s?~N8p8_ z=8`LMd4>k1^jIsXuIZ8FH~*}T3wv^rD{@(LsU{kM89zWp5P!J(^8_O5M21eV>|Wz} zC$FMAoYA(Oh^3gADF#LK_s8e*o{k4bWu1cpLw3ZIKw`Fw?LAP6*(SYyjJUM&{at_4 z?ogk5u%P5+9C%sW_wN47S_hUr?DmhlS%8(uR&ayBnrpZ~@IiyRvCkiIz#S7l>F{6k zfyP}qmt$IkoN3;?kZbjDSgBN5>Qf~jF{xn>U=sJAZ1ZB)G!CA_z4BRo#EW!UkR?n- z5zD#TKEOh|Si8RrT|)q$4@aQ`&vMtB(j;8YtqAH;vtXc(VE=>g;Fb%GpeNQH!DgTP z4VX{b9AJlQ5AYvgWVOq?=iBPOV@om5*zYZvN3FJl`=xtGISpO=Wx4p^U}Sb1C=f|I z%MJ<hc$-w^m=p|GLoZ5W9;OzwqW&WGHIPq%Tm19CGofg&bJ_P&)bnt@(rC`fq#U_B zl55s+Vd%<=diYF~_-eVuUDO-03<`uRePKE$3*PyvcRTm6K@co-F+lIV76?_|@A(mI zb~(@CElCsEH5?{CRC0R$)w%tr6?WkIs%#K6$v>Auc;}%X^5=<!H{$bMOcJ%|R=x_P zbz_w1l5CdUdGBct*VOr>RXHg;>&`@{DPBBuA@I@98}&5t0fiI4^UowI->RgJyO{eC zh+HTVc7gTK!R@#B1CBou60otk!_75}AQ0oZIk#qp2vy7}s;?rqiYZ?=o6RlJJhvrT zPY#R@x`>y3bu_npv)ruYe(Gm4?M`0|X>kYFN&19H-kQ{#eQRFGcW#0H2Af^8JmVUg zcgkL>b-CZ`EAFa6<oI=)8p`hq!B(6_&r3{7cY|B+KS*Uxd>6L<)n>#~^vFo0T(mAg zn>Js%{F^FZHv(Y^W2=71eR&l<vD@j}n-fFsA+3HgcGL4SzM0jFr)xOh2(sEYcdbwT z1B@4PictTBnVc!{hs|o<_r-sQfyu#Fm02H0a@>D^)iZNn!RrU_rBA8D$5)`M!3SW@ zTrn%<W(A$ku_3LFJ2&$tuD?l6gOPA`vGZPlib5wxg?>_?nB+zNL@NNrwr};-)LwW8 z5M%VwJULoyIl-`|u{99K8B6cjUsY7d4Om`1_gsv}(3@d7r@kLqgMe-ttxbT)=(Key z$GuB`WUTxyU+3~I{@L};d0h}3>hIKs{8@p*KKTImknqX<;eWD-MD&~fh;w($1i$}& z?GHm#n4-B|L@4I?1x;Fv#e1J`Uw%QHRl{4hT7r%j9;<`7|6quxO9T#ybKOx$T5(RG zl$OMBR*8zvvOvxdyZ&bFFbG-YvtyC=BrE6d-V#D~%Z0+65FeLkJ4?T(xYST)5Ff`( zhO_W79`gj8=kW@9YGTOeTFR0)pM+|hH`$y=9V*8!cli@YTz0^poUC~QX0?UrZEnK= zehUG}KZ#F$ac{%AZ|(eS$cwo7Yh|^u-^dpl38%4|PW9}Tab|+HTQ&`q<;@Z6>56Q& z<+_hT47$)M_4&9TITjI|H8*RQ`|}xK9`*S2w~CTCH5+2r2+s$gF`8tVO7ZNen2&$k z?d?6<Eu5MLcl1GA(9UpSQ7g3fpCO2k1!;$`svv@F5lLEppLRzw_>DrtB)dK+L-!GI zn)a<x|5fj9R~q519)yJ7u5FUoUGGWL8b&Icr998Oy@AG$BhJC_B_etSvCCmTGP3}l z9ynu~aoA?9)ey@Oy&`FqZ}_mJu^*TG7p+z>apLMj3|e&f5<UKM=$`LujK-DAaTZgD zjdubTH{Hn9+v)Vjb={mD0l!)2)Wt+M8sVl_4T?=SqIgH*A2%J0b}CcdvjNV4hz0X7 z=)7w0#Bs|`&}-9SFxT^{fMCUSr)&lczFJkxAr~~?PCbJ7;FnxZTw-~g`n=x`SJy3% zqE}G;DJ5%Ga>_REHNxj4hu5bMlh}>PP7-dvOX`_R@CI|6Pp6h#O;|H^s+FH+?RqWz z@b34j^m+XDJ7|4zDVN@wh1+kLU35o(5m=!=m8N!weld(;5G1STG_IFr=AM@>L_8ka zP^1ybk_mpurqA(pja79D*x4M*>9FM^yPysUW0^J{+oIhkr`9vOq%#J^K7=^0h~h7P zxVdLcGrdIDU-3^1;<M)J1H4sghsqTi=3X0^PLo8_+-M-y)xq$|RkfaY)IbUr{w4GV zEviM-_3++?<JI`@?SmN$lpz!K@4rIER>0N4hGdEJ!TUjN(6mw|N=)cN!>Ln`Kk?V9 zcGyB>oE{};E%_F3f<P7cSp*6RnV#2<V{12^L+v}!1P6)T*WO?os2EoZ;4yEHZB4YN zKE?Vw8Xx1wQ(q6#CyC`Cjhbr=RarCqu8+@;-MN;7`d2W5PnH^-S1VF8T{34Y)gR9O z6bJ01aTw{szk;E?P?u&4{xLe)v>lxk4o7j3>Rf)u<<C}Z3hif;xLgT_jpm+TK5}eT zyH1hDePgE(z9X4aHLAB=usu8UOemji;5NI|Gpn}|hI?JF)qW+_QcTLU?YXj0PeSXM zIVpKeFN?7TxMMVa=J8L;R_hILX@WnZK6h6=58P~d>{ZUT(5k~1YVHs#`|UM%(B$$# z9U1DxJR!<bKsL88q_@;vF(JED1pnq+ll^Pwp<$I3b1Wttb`#Lk^QBW7Ve{?jb&MUK z<zC^j_SYDbXVEmGuJ~NSqO;3~<3I3-LRFX6fSK#u5nMQiN9iza^E-B?4S#KvnUJIz zvl;cm=(IfaOhM<=e-5HZ_4@t>OJNN*&T`k`HF>-s_KZUKV;={!W8jH|?O{M?b;Ew0 zQv2(VQ35RQC&*QUx0uJaV$SaO52(8|6KFR4j^8#XmeVV!qkX%xH|fz*(W{tz#RjPl zo`)T)Xr0uheM)SzU>aR`j!`|4|C24rA3hq7N8dke*zO>&>N&#?;{A|V^pw4?22h|z zFU$?HWhFy-H1-BDJWz@w_uYz3w*@||qGdZjlVIGuJlLK7$-Q4KzpVNqs&_5_Hye{$ zW)hNKVJw~3g7yd>;{lddY~-5DZ3X%~q*swBS<W!^k*kbqzhjp~>DL-AT^rd_U>e=v zOgkHeX*%BAtJ}9D+Si!E)<23EdAw(XjGDSQ9N9=m^|^y3RN7*!(6FA&TkU1ng1f>o zU4`6-)>3WxnBJz_<lbfIu#s^YGJyT;U9w+0>?enYV`}O$t9~yEXjBhu<=7;&-(iJM zU=fhp@EIjv3+4p}3%_=p+hThAs#QIkqfsS|v%~MY_Gcw`eiqU5W|J-3tz0MVI=xD{ zr|<^XwosL{Dr0cfVzQB2{=ya7vM*d>FW2|h*9`8B`K`qUX9vxV1jHN(-o9Hq9Kj>b zbY?yk_Jf_w^dT3ulnctZ0`FNM5J^N26@fT^<1xDywpleIlrs%+Kb;f+<CSpDM4gzf zsk&I_qY%|O{^ZE;Qem+e(fTlJHwHP7O6xWoRw!ZfAJ#rMJEq`bxXi?y#%eNn{h>E} zsyNMzGfUiiHHK&`c#}9cozH*w-gk$7d?bs1@4I!bIAV${mZeDr-a@eEzjR?02{QLQ z_ddM(t}glDu@d7JHui)<;MmdGf61xsL>GP9sG-!b$&QDhgf|ZavU4o>SdPwKZf7D~ z;(a{6ILm(sZ^S;#+IUsLe}oa4H_Gcg^ZoM(DiRa@8VCTd#<jNWQ3s>K>NddWhrVRp z9?C|h%gY(49;nwin>D1oV3rVPdekf6zb8u!HouQkkEt*v$J>JB%g4QB%M>fVP#)w; z2d|%LNvt(m%n5TXOMINhwMttG-);B3Tzxn{jdRaQdN9SA7Ow+MEcSWkgUD>n8@O_s zZS!Mwj;=`T4*8Qcb3fiG%uS;a@aZofzn_MgIll@@?Oyd;(4Q{qK<T}#RL}6+XuGw; zDBz@o+y!x14Sy9*vDk{!h|@g(8YkH2%n|B`dOdfz*XT*$@m(~q`{Fk)tMvW|+mw6f zS<#5m@N?v3#tfcI;VGY`9@fuqSe_7#+`HB6%(>buV^Z0s$8wu{l$Lb{Y)$X<eYotU zCbmlKi5KM>X4&=nzv+yZ;*AXH)Es<LtsFk{?}<ol5GFXJU?J;*8H(f22+a+=)x&Re z*i>|kyN#Nio@5f_DVf!JVSO=uSW})i)-W@@s5(ln<0mqhV2|Jhi{xzCp7fEVNDAQT zBz801%nEQ@k~r~7Zj*ec3)d3*)_^{|%>7J$L^X#s(s9U+^?0plO}bKg^l=nLbo08N z=5}#ysqgQ#!bN@u2TkF3V@Lsk8Xn{j+r{E6`R={5BYml1G%uN3?OEW$G-y-c%YFN= za|{lc`w((a;Keknowce7%uEN;^ewYCcGxsCsK;}WwA%P&W8`SPp(xBy%j%VC$4$+Q zMbO$+_bjMPd^D2p-HA?%>PY#6;q=rGy5;igBMyNr^zaLJm)TBL`W*VK=y<wnnT^vt z(v1YPln0QVx=;(snENfBpLorI<wMNnbe#QRW7ql9wfkK%eCwcRc3PEz#nVly&T5~$ zNaD3%)Ty=x6K0+oW%AgL0R}jOb7oc>>SdOH4DU<cpZaFcrWTmSZ^(D$>mm;UCxj+8 zfiZSkLtX1qOV0KVM&oYkP!?=6*d7~6Y-@EY2g97RvtbltQ>%T}6N`8hC;2Yj=*a(1 zX6DD<&1@E3vkor39dISxmVp6Z9O&6s_g^<jzns#JY~{Y^zK1XybtN?v%`PfSFOZd7 zkh3DipJm3eIwGPl$zUYfon@->haAQ*+~rQvw4JMR!}kO0v`1+p^^T=aO4dBr=-v0U zog39&xxW0LV;yfG)WmD`Jl$fA&vlul%;yDw-7OmB0*Ht~U74V1aq2%2(%*O)h?wo% z*8y<EX~j+!`>fVe{PH+vEcm89oFK4&fGnp1d-}9xkGeUr>cO*ddBwG#%Jax&v^?BY zu27>{4tKG^-g{gc%L;>(UH@!=KIwL`RIB*mW{L3QsNT5^P4NBsQxAvst<qeQbOFaj z_c8Ikc;SuxOZCUr@XffHQ2Rrba7?_#Ao$4^B%Q|s9mFvNs?_Z4y2k&FtNGXE&suCG ztmq`n>dLLuG@<)9uuB%I!E;?7BQtyL0N+^nW5j4Eu?gEl1}=P+gikbiEnSABjOjf& zgsugHb)dv*LL2E8iLiY|NyB%c+=5OWd*Y`X`p8oCz%tMwZ7X3NP~`&V2O?pQ{hA@p zwtFZT8MqNiCWc=~6Hs$!sRQ4M#;5X|(a{sX8kdz<T2Mu<LP6f0At<zVoo<glCDLyl zV`qu^)~0)(uLI2Ng0~Z|EeDdnsEH_TMfTJkNf|%;8tZ4|x8C6U=QHD0zn<c^m1B>y zE-cYzYPS027s5ix%-1K*!4z1a>q_SoK7qE_%8Qpg5UNw3{t>~ocAXMNy8ou?zq+i? zQdCRaj?<^Ho3KCkKe*7lhaOTmH6QFrBD@~I<64f#AB_x1%bLV|cSP4}bn3qb53x_8 z7O!nnbBilZl(^d;IG+Etb>2_2*6L}Wr}j&C{(B`PmVwJ7pzh<ywpPW?DUigyLiogL zQhVTwoplZz06GR5id2lp?HBKjd{MhluqZ=n1!_nKlCCa>xYFMDCyGJ_9Hc08KUc-0 zc5;qL?9B$8h0`#gX!Ei%4vHb~FIjh<R&>QvVlb}!EFz|Atog<fAlCPQMswRqI;oVz z{15QQfd4ubZ6u>fzt(3XKk`x;$zh;Lbzkqn`t*Z>kjTr$4u5EC3<8MEZ%t19=FkWn zgc|q=4kI3Ya-;b^Enz66DKITM?+Bzn(YI0O`-<Pjp}4MRh8r*B^1UMvsb3lh4ciX? z%BH7T`!#xmbN|70jvD!$;!6UOu~oT_*_Yj<Rr_3#Ch%&}zIx=!nbt>bCH>8F>4=g0 zR4uiMV_5?6*G`kgDs`Hfd?J=972HZPKg)GVoMa10+0+xe%Ehe2o`}rLJaXHpXx~Z{ z<)nwmcyAJ+>PoD6dU10Kd~AB}l`0r!P;@llp~s|x`HLR%aX)d%z?bREB;^}#;(t8h zr+}a(T4PzYX+!Om8DlE0bhb%`p#fQ=D#SX+m+2=Az^2*`iZXHDXuZx}WtuUu!upe! zq6A(iViiRXyxoYtgaurMsjcYToY+ljsq4@je`B<}GT?s&_A#qpdS>3|J9LIKb+NE& z=2v=G(j<N}kJiX@ii;MJaWuaE3AaYK+N7CrMt&zOHp`2c@iBUFwwECi@t{KR=&|gF znG}jnuV)`uAC;7O4UtFNvx1~QY=^8d(83BslLEHsLys69!4|!afAv2N#6}Upo<l1v zz&WBC><>%m{`{8bv+?t(lC(E+*jgGMv<wU@&^*@d<gxA`tv^Oz2mi%=8SvXVDOu1x zYj}b|?iOUv>M_+q@RS8AP@h6H1Elqyg<E@=9gK?FM^=Xtv(MY~4f=h1ej|-f82j~_ z9pySt_WS4_Q2V8SV)(T(!wBEol=9sC?&@G0(~#eWy-V836?r!Y{tNGwWGqsp+(!}6 zsA-+fRnt5UAAht}2^z9K%oS<4d-7am1v<k(@|Bu4iJq=BELj?Z%LK7tohwi3ZnOQp zHfa7s^u)#1EC>#XV=6{Dj=YOK00qp(d4n#q<%q9daBNH7%v*qXw`Bd|&GADay-ZPf zCmJF7G<guiSn3z5Fy0ToPa@))NjULAqdDSBFQ58BfWKv5)e`k*!_!w)>*s%<l2`cm zh@@biOJ{|&A#|TH7Q+t2kQt!Zsynfbk`qv7^s#G~wEw4C{{0RGN~};8@-i1$$h&*F zfwQsxKX|&zs5Z8CjXM-~r?|UYp+IqpySuvuFIK#`I}~?^;85J%p-6Fp`%S-d&Rz2- zD_N6FX7<c}-^aG-`=gS$2nw<Q)7c{k;s*-kX+v7OYKeT%QOlOUU}3PTZJ^s9ZWmAb zR#HprJWovNK4>yA*-IjWuUm*nZa$AsMCEPBHWg|*s-=@qGD$NOI6=!$g+3c~GoEHu zZoeJH&4-*)KD6jG*}z8XLod-`Jpy;7Hr0QuD)2=pnTod!d*{N*`LeVhQPLh-NKQwR zwjm&k3lZTtGXiy}gZ9Bt{6&PMTEMw~@jboW&~qy3f8r3j?VcKzr&k<JgX_IqgVxG= zHqhfRBdq(iAWTz#3>w}shp^yWrZN7nBo6qNpCNLqx$iHB%OfdDjRus#ullf$Nqu>V zTm2;{?7L*|58>Av4WRXNk;f4wQkP#8PKt6zCGLLHpaFO^Vykdc5})~>Dm>lZS$DZO z@r8!uF(o;k5YbS$BtTGd4K`O<-ag9ny!M&oFfee!9~`xC-#wMa9)hSJvm(_xQ8Kih zFT7e}*c9x!sDweJ{+d1okis~)j|+I&^D>7?ms<YB;reR9OD~-E?;NWf3@r+7lEGM) zFmc;{vtak@2AR5-ki3-BocD3P0U>u79AJpR5<)J6OMiOPL28?A=<5VE*6X3@yElzV z23@G&>F;@k<9ZXWwptx5C_2FNX~T!Xgo-v84*Dl7TE%%u{C)?f#CCa{w>`3Vgb^Xw zob-;Fd=n{@tXk3O1`6Ux<BP6)jUUHTOqKRGrbDi_%gT@7hj+_<mxyAoKW4~+9|G-) zrbj<2Z|$L6<+O{(rnlwUj9+=cQ5m)aE>w%xwRLk2?lKMtoXC6@6i}OcnZI<p$!3sP zImc;Kdp+0r1*JVY!-rW@_m|N~&)3;7VMlC}4KiMbEch#|)IO1XHd=1t=dJg*Qu~w- z)0Udkq*3P|%NeU%gRi@#E4?N5!P71Zi5x@<jvJDBJru4rn_Ad8@QG`B-g7+ZqOT{& ze)a=PJ~?S1M-jEU7l9jU;oIv)K&pP2jOfxoz|%m`D8JJ&J?#f#A-moe{^mx%3wY74 zKPhXE+~V?qg5IM^sfMJk%lYu>-!X`9L44OQg0VuCmKQ)*3w1ICK^He}Eo@OG5=4ys z%2KGkv<cy!1C-jcFJr5;WRs6-q(29$Pbxdd`9u}bwu8)8H1Pm)$_+4+)XX4m*r7S7 zCJ|uR0^yJu|6&+@?~3LGv@g=-6ub^-r2?|HDG*B4Bd2t<mK56BTrUxS+f%RMkqT$& zBb*Vg8vxcq64Fm)xvCSk!>ETV^SEYgG*HPtY*;Kqe3Md`u?5Pfv<c}~_(WPBiedrT zV<kcgsar}fvBwX0F(!N-3o|^9pe7Fv^fpKrU0YgcNdI%R9npy5-$Xcdd3j%O#pfdE z&_k0WKZm0a>M_P^&yV1eic1QrV?#@tkgK$zea`Lty7L&A+&x`pwkrnSdUVsF@5;!W z=j--{V}C!rjW<j&YuDTPo#)Mip}e!MCDOW(KdVF+tzZR`+=c3vTaHhl!2K;$oZB}j z<%T3fW|r1uRyer&Y&Fo#huTWkZlHKojnL`HVselw;sEOCZ8EDkZHGFdUpDIRIfW1H z9{Ee!{)@esj~_#70$xub(kdnR!_GCDAidEe;X~dZPwcRFH2};4^6tpLrP+LotSmNo zcdA|l<^7cYCn;NIApRB7-q!M@cD-7*GGsrM9O!f9cWi7u^;H~}+F@TV?3P?EolxJ< z-*3IF24HoaFiI(~`~OEl5<T?o0TV9>2>Zg6FokfHeE~Sc>wbW}=R#idKoz@*mJv!@ z_@QrE8KryGbi}s69B=76gHhwu+A=zp9r4f9)tSsM)&R8w8-QvegP|aNm&AGb73=ZK z0`;)}+lk@(Dgy`>Pfxjk<K!GX{_h*0AT@y?wbE#d$KB?)hhb3`@$fJFWN|4JLHest zPs1X2buX%RC@J6Nrt8MW6i?`k@>k)i;GAtL@ZMIJfGL9oe~Zu5(8%HhOGW!+1T0h= zt;!NCwC3+)nfuYXFTZICjl6f?-!9$>=YOd2{o4;fz=JY;ti#j_%J2k6wSoIXurqCv z+KLBk>dNqvhpm%!QK9KI8h*@yM}fHnk5Ps%lr7#lhROq&9ad+euYZ)h{rzq$43o+H zy)|O1_VK6(7tV>c9>Q*2pn^aeS7%atd6o*RVRmnBqAxoi_T`!jl9$~rx(Of$9l+_H zpi~W@=uQ3y6)`z7h(ck&%JyOfcJjtkqu=%JG<(~Y$C|y~I|mxXhK%lO%;7h$yA{jp zwuVfju}EDiw))O%Evi$Tb(i4CPyde47--`CbKrdt25aZdXc}ToH1lnX%Yu!FZZXL| z(!|9}b8D!f-|d24*Rexz@KKM5!~Vr55v4D8-oswC6iz8TOZ^NECg7HkR|Rh9YGg$g zSbCbXI}~asG<e2%1OfU*Vc?bJl-J2^5#D-v_<du65dATs&%6tWZEO-0|KlUHA(fY0 zq}wF_VUPd0b<Hf%P`IM$FI*f4o;8LEWz*hedqnNMvCqzonCm}=iY))B?wUWNy*wP^ zy<TM4I(ENKu3gYwOS3ZXd?58>g>iSX%~hWX5f-aqR(EPV*Vhre)f_eXVVPxa*P`CV z66}&+I*KPoqe6Z(ANn<ak?sWDZ)`YP4|LbkE!^z#W!`zxDxse3=V7*I4xKv;TFQGX zwUzCkazsjkY{0S(ZG-uvM^rM6%hezrBeBYvmZY9^tM+$ysgEp_eDBGc2I*5%eG@6w zuqeZ-OvEZbE|X?P+#IM#(_;szM%vI>=|<ON(OZyGgtSOF1iIf}FA8fn{1Uvu{gF$p z=T$@QE0aUrfZ6_a6t}L(=zrIUr#A>(h_K@6KkR|cp>Mn*j-9=?3cQ<MGpqq_a|&Pv zKUK8z@gURx6*-sp{TNTQbw4FD;JJcqc(d{8D~2?Gu-Hbi9-QvUbdsF0VSlOc+R(u& z4_h8%w*S+g$Bd+)Ii^Nf+v_^_nBEugA=m*s&(y_-eOyIEM>%J7ePaPJW_IBdMqlh! zS^fUV6;rjY45G1Cl`-0_rG<Sa3-vaB50{6k39bfrqr6Te<OxQ4;Nj5i9FaBPuN)jF zk3o37apAA|Wz!zGN>VK(>1kXg4jhCcb*jWD9-=y&B?I2)4-YpL!w2cu14^AjTz&7U zwkF+gRv5lb&|)V0#Sz>k<Ee$uQ|6&dTE5d(k9_RFKRK#Y#}qs*M5@6kgxW*W3qPt$ z(0_bc6_UhjpVUFLzzl;aLmi7TM^g-l@N)f_h3B{pp8okUhL0mrz4}lIoFOjASL<Vx zVE+NmH|2@(-$#){;6CJX?d*$7cxG_<-^Aw&DiQO#{JQIqCl+)$y6cDu*dNUA_awR> zy<WR`Xs#=iw(FkDiLo*9=Y^P$!sW)u+=WD8+9@rG#<`cr;WV5(E`m}}5yH*WT4Gal zZ>Tr8?^Nj_c1s(*o~XS<X}+#AG-}{fq<kTMRl?3d2-Ywx*xm9usnS>!7tAx!nPPlR za(Vp}Kacs`hWs^z>31GUS-bO1^G3_`_mL0&m(Y43v?LK!C9-r}Hq}Qy9-1v%wt(G8 zT2PJT@X?xqqt@Ay<?mW)!@z8q<F#|SA38bU`l;5N7@y5+cm!+shJ?*+_M7GtD!zd8 z%aMObb1t8Q+q<}+JU*{W&-M=15Rl92QgP3~+j)9gKkxY|Ca6D3LlfrmTCQlNX(e4- z1XBTznZk(k-4%)0(gpFG<-&jl7gh^`8|3$$$Nj_~_V$4v03ut=I(F0fs|SCU7Y852 zCMHIu-FPl@n`#?%(=DjR;(PQ1Q><YrxImZErt$DR=k;{cdWFa25h4@n`o(xl4Sk~_ zV*6Bf_9CLsgf~$jenXLt$+&e~pDA+`rfprnvuF_RBx*ax@DTpZ(<*&#No+dbI3(rT z61v;Z)62|IIFg5$&+~pmm~ijiuV;=f92egwp6!cD|7A<~(Rx4ze(;K!LO`W0aaG!w zlevJ)`AE~26VX<<KjHG#QcuQM!`<rv)3uR%QsPfx*2gr4#;Xt2;qI$VfwtbH?70H& zYx>}T%U0OVwh1{5Dh;T$YU))XO6A<d3<6@IsAP*xu+650jS1auAR<{0K05+~ab{BA z6&rqJl=A~RYhKh(8;^CrbJyHNL`nKkYLkJ2!a!j!`MFU}+G*^4NuVu1h@yRCXGP_F zv;)~f>jx~j-Dw%<z|8T<2uG6xfhEn1I%S~B{q`P3mfR{`CDW}om<K8>&OHG!MaWYS zj)Da=5o#K+;fVJRc>wr=p9fIOlBN7jUV)F+@vC}&85EDo`-Gvoh)(3^*@d&BHFoHg zPp}DtUD-rrPJ??kud}2>v}66Z-*Zt=Ht2RkC&``&Up#aSQb}Qm&c;E{q^fs)Z*I#q zw{iMsJ~?pCQ|b=lELA#Rso09P#`3-UBkEc{1vyu$c+|8J_$QI}=3LN;q4Pr2>39Iu z%TPy^b-k1Y<lXzlw&wxa@Zr;<#)D-xAMoooNN^JQ2^tP0w`UYGqEEo%-R`TQHSI#` zO6}F#^u0-l(Fid`Y@0D@BIVNFpwvFqf=;4qZnSWmxn<pDFNSxhN!`r0$9ck$d~V*a z3C=NSD|GwVJ?<Op&)A{#$6oL>958Bf0>v|is**+>lFeVOo!?KvBKHs?=K+IWZdPwp zh{)uPiOz>0=C-o@NHcr@HQr(xPZ4AsqQ1UIjI*D_R~t9K>ukA$uBzvx@NiQqdIq(w zGZ>L#M&*F<u{mGvcjk*#A1FdV%w|UWiB~(ORM&qxDz^1CNc%G>?Nb(5&aMKBy16R@ zsX6y=)y>Nbf8O?-(sj2QaDMtnzx@{M^w0%6iAp?9W-RaIbJr#^_}ir8fSeVg&)}DJ zzHx7MpnlI4*WcGl_0a}?8}^;8KeZOw|FlDWUm^k=OiT>Scl=k-4+QZ-!5etJwRza< zcpT5#zpZO$3*M&*I$ET%2p>#lue8a<dAnMA{8=?UKTQY!cxCUiL4&1&VY}H*Y{$7i z*-uTMn`5H<!!pzw26(y?Z69?;*@6Gi77n!WOwI<0(rV<xsXxnQYcG!tg6`)$0Xb9W z*M}3w>&4HV{0#!0XY7uX(UbbVlj)p=wk<g^g!ZTx_goN;4rp2;EfY*%|0sAmI*1f) zQvVOd>Kq~t+>gSWa9je;fl;hA&(lV*e*BI^kX4VZ#dMej`C#g7x$GqPu_5_trOZ{+ ztJ~kNNkZMP410SC&oyQ(N!MJWsuyvvKFOY<0$e=P=rI49L#%Ph(S96nEwM^DVt}tc zO_<HRH{8SU(=SKXFjF^mA@*fmVSOXyr4Qqix{HbLl<Cc#?fo#yqaKGolB=$Dm!S3+ z7T&HJ3i=#%&|<&jKeGGTeyzo@-pY9Gjs%bO0Jz~iQxM9Xd%f20n@h4SJb$65qgvys zkiB$I5l&2*_60J4LV(P%rB&6Lw?b3PYCSEN)3AA2&%t1i!~Vph)zy^_*^(uZMgS~g zPn#+z!mhnYFVx0{7|L4s?7YK$kcY?BpROm8-<!^k2E{5n%yo8yUBuO+Hs-yyb53nC z2#-PiXxB}zgx*50x5NkMaCZ^zBvm^G|A9_nRL}_fI~tc`Kp%`|2k)-~fBy#newW&0 zev7JUgZA%bif*XMQn27RQ-S$^-S%b4?;g%6p_MMVLk;^?Cd2k3^-Pbk6lRCH_Kn%% zsI|tjH@l6J4VPT|HD>+JR)vl`IXv*S2~dPyoHy0wnX-x9y(3uq>}F+?$ewCFqu$VQ z;HmUQn~zfw)Oi$2<f;|*I3vRTwiaBv>OWNcGOwzX>?n=3<?@_E^`K(}m>%hy$T%OY z#bQ_R{y83!Ey4F(YpqFi8lJ+MzgGcad5hY{v&=#*71I~tlsTm+Q*nV2@%cgdZQ`Dg zz})!;sqdZpXQtHpG_n7~4vvVqnQ5->42WmaS}Ag;qBf;UJ$jizF@e_xT<UFNW^8i3 zQVu#GCfwNlZQL?5p=&$MPZk+dm~9u@CqU+Mx-B*hb}K&?tJa?E7TV818B^wRDUA*% z4TKwV@Dhw%-I<jigm0Ab(}z!u=sq1d^BtqiLE-irJ<cXblM=K9@_uZ7U$!u(kg@lt zLZuUPreImFX5Knre>91;fZ0G5cs^?}oDM20NS{qPHN~Y_9Adack)vC`OHf@oEB!Hg z&bxOsRW5(^y$>1=CBpAF<|WO5<me)TmO?Tuyq0OKZgEV%M*zJ9R!meY+7nE6wEyO* z(s?8x5O2x&6g8jWD|L!4PjV%IXZe9F-DQ`OsQ%%5I@d2IPR4^2%La@ox{hCz{gM$- zdyGc**wY7Ik|7P!^_Rg<p*wvuY##<T<RALc4b$Zt4@2<`eyxW15@a)V=284=DLog5 zb`N-b?47`k2Bjk$m?9H;@>lYi5NUG6nf0HQy&Nl{w3~+BM%mNLm{aB4QgUAKx=k}$ z>oO$%Ek_ib^3=yP7&R-cX6mW?8~%W)`F&>HW`jBtZ9sbmU=XBHrNe3nWD=3f-O~2D zDeoGzAa0<wPg~(%d&!>I+tz4x#~(Ro(DJE8L5bLP$j!3+Y#Kw1Bs`AGujr-XA;Vdg z$6nAO$e}Jo;B|_^HGdPdfph6Ad+C%gHtl>Cubhi=fX!Eh$@&?EuWFXZ!XwbkvKhg= zAUiKlIEkUz(<~~Max^v`Lv^s>sX%JV2F?g#jp<Pt3ATvq>kUo{#Kfj~s{Xg68J9G( zE-}wz-_Ld>mf^K$f&;K;;*#F{5rs^K1g26f35eu~Vs<z;n&~N=jnf5z?cdUxk_~~A zebA_M&gBBxKjMq7@QW#Dzrt)4Q|Ua{+6B=*R6?S4p{hQ1Y~HfO1eN5eb&B$%XY;{2 zBN~)1Dn^^oF5$~hlRReNN&c1)$$U;&z}OI1a3hIEUFR@xaf^AtsdMW@f#E*8k@8;G zAEX4vz~2fhf~cW}=v%_HioeM{#vaV^bnHYrBlvhXej~REywUgn!;Kw^XlXNm1Tl_M zjq2fQ0vrz(*9@GIxz|SPWIk>pCXfB(7gCK!SXQ=+^jlibn-#|+$b*Sc*vIYL7<c`t zgp|g@>h>APgb4cugFfgb1GU}L7g++{0n1g}<}V@wfd=?JJ~#2Lq{L!Ew^F;S-ugPF zLbJvWc;%{o>mHRcm2zbbzR^g#4#zVNRuT$_p`@=%AE&>4xnh~0pAerEDf3kpVE#ss z^|&f>uk}!rI4Ew6N$xxu{xQwgKb|~1a=9`i8xGggG<2=#;9E7oTZ_mIBwGYkyZF(z zd}2}0T|$s~2%7Y|ke(<jN=|i)@slMbbv(Zo?D!z%6oPv}EzdW*Ad-(CmXtq6d|M>i zQIpFQEC2{O7--=4m}<i8snYNM;McccLj}>F>KH>%ZN>kB9|BPnfS7u!<;XhW=!K&Y zkHpNE(t$FGcYNzmLZD(m-1=y25ogl54z5ZWPe*9d5QOH^H_i{`eN8m`>4{ggrX3h@ zlgCgQl}xZyUsKav0=aglg^{F*F6Ws0WKrS)T1OeRlw>*`G{f_}y9pmk3x(;dl+xz9 z<Z^B&^Pv0ohw~B(^b+YA2^{vRl7wwGm6EQs<#Q^9BWk_M=#UEzKgaY8eSf4UIH}bd zh)O_hKS5GjW8AoR;|0%RMw#1UV4iBJ(qN<UX}VG!Y%06ArmPxzu$a)S@z6hUoj6u6 z7F7Qu;_jaI_Hz(BD$RJ}LHoCw4mKcpz;$BD5{a{FP7SFiQ_TbprV-Y{)y8m|UOA4u zc;B9VmF~&=Dc@3pupU7r(7g+|iHRqfErA>RRXxaIJoCUDt6fnAD|u#H3vwZ0n$Wr( z>>|mJTukMP&WWLL(+;)%=_XPnzr|D`zD0h;jGzo}<WM)kfPw?@E_}Z((cn3s$)h}- zJZx{z*fj>hBbJou(2ht_C>DgKe7J-E=4a#9`CS8}3aTP08v3XnW}bp~LAe+OXMRga z>uZznC%rk$1#el;K2nJ^<O4~35mrS0gf9dn5@o7&N9Pqe?P5ZsmY*`)0jL%7DF~E& zWzP=AOv1}_mY&uvpb;lET{dkKWiW<-NX8YIAL_ztzOVf}b0v#@3Q-PN<ssmb>b!A+ z$4DaZ{is2POMju{F<(bY@#C{#EU5L{2Ls2N@4N%}pY8U7#g~57>&nUA2yDoL@weq> zzMjf8u(P<yc9F||)@@=nV~X2Wp$L@8Qzb&m`My$Q4K8xrJHIOPHV6jlHO@ywoPXij zX^lUU=&UZ1PmBV1nOeZ}!!lWP-^!$|Uq=q%x*-YGZWkOMvt+3*{mlH?TLtA^5XkZQ zdn#^Ltr^63t2&Fz%IM8MsSwrWY&*C@$oNMQ$;8$=_X-6Gst4mUM~7WUR0u){l5OWU z!Y37=OL<?}0YKI7L2A0~_u^Con+I84w+(grb#;2kpP0L&5TIJq4ht!Z>S0T_W5MwW z#{AA$O_>0>?*wiK@C(*Tert@)-+(yZz}#TcOoV(-0mS?XsZ3g_k}|mhrt23?v=-*& zn>rkLKRJQq90l+x@rvQ!R<?P9*e}03%*e>%KCiBL)a!5ndnXt8i!(J5j!TF}zlW;F zvCmm9K|~_z|E2YIFXK*^<I+}yF&TSRa+4>u2Dn|de-+vFvUw5Y9<WBhItGdp-(V^Q z9p)t}Jkj-t%9!5bb=H|>@RoV1Z0<$>MEII4d!MK!wp3bmoJ23;3h!D)fK7wN64s~r ziu9F%x`~aUHg;B-@y2-3Mc(ui+n{Y{jX*K-k?N~^$~M#<BA1(jQTz%@!B_c0r;`NG zDzRlt(h;F#WGEon2igletUe;#=lBy^V+j>u2ZTE{qJ%hS^?n752r3IrYVya<53+=w zHZ0_EUfj_za5~R3J60ul<U)(&ZdsBzL`Yua<_7y|g{WQyC?#z}b@*;3xizp<20ls1 z=V8eCS21_Lhr8&q?FJT3VDC~0UolghJg}*bsM+P81|O0h@sBYm^PMc0<R#_l4L)9k z(P(=hy85BCE2XbS>*y#uPK%ZHMMAG}!7tY6uC;#IbGKcxf2!o?U`A7P1w@&y0C*hM z&Gg+zXo>}OkLaWyArfg!t}%Wh$K4B=Wt5Z=_Do@0@0xzn3~GmD?kEnm!Ac>XhQc3L z4mzUYc&gK%2|8&sh#TWI&vad(=vPK$kbgaL5{<3uDrXxm!%ktG@~DE4MCmB5andJ} zt@tBbj(w1x*Z+|yC19>j>Jv>mI(BFJusg*KbBi0+tX0u5TmCuZrT2l3m^r!>BsYmP zncYch%~2Xq8_J}HCvb*!>8T)dk$YY-7fm@xBBSVQT0T2c>M|YK8WM`o@4#Sr`oLZ% zt(paGd5;(w(vJ@rJ0H1FNqx}or`e^#)|jmZ(ugf<#BHHvX{PPYKKdsdn+%B8l<ybz zEQzyIg<1!)?Y@v#EPYR~SP$0ayXfj8rqqx2;v4-_Szb3O=9}_m{TZ4ZXELs}Z&TjX zl0pjT(?z>Oq{2nurr+~!6#CXq!(zp`i)+gjjsN{oQVK98rH5=<{Drl%E{9px@LGme zptvc+9#F*<`lZJwD4FDz(xkFUNW)T10skwNh%4g`tjPeiq{+1Tv5J#jW=`qXy}#WU z!|$HqN&XIr=erm}UJez<2Rk*_uAPQDbQiFXS-acc9&9zw9ZO-M-=WjQ2MlEx2Blc^ zA(8!&Dao;;n6pziti_{Nh<LOIqR(J6k=>cCjR3flE#Xsf%!3|zQ-r9}GaAmM*g|BH z@E9Y}p&EB@IO$_UV{G{_G72Phk@CSy%-DGG?<<8cugWa<ypzEUX|QMefSmw+x;cC5 zc5s|~wjq%Q;2=0HxA5%R2}m$8*|GKNkS2zpzGA_A?W^5UxAV(m6oU#1g)Vl*gYQ>@ z<~=ghP+KuX9l5TwGzAX^%ug)(ZNoqx|ABsA753$HMD>+CXwD7x>6KRKd9B&WI6f~% z1pGj2E$RA^*xE5Ep|H#&=)m5O7)bXh3Nsjy@>E16!T1i8<W8srbhynDyC27f9=jhg zmhcKfG%F;J@MGrZe=-s|F9{^uUq^MAVKCEc4N%YzrNDG2G4&WyhZq!${n7Z_Bs32O z4U_p<^#s20V^2}}B-oa=pl+GhxXG?n2#(Gx_(Sv%!Li8<_*Y>@rcv^J@Cxx(&efS} zDhD0e)i_vU-u~B`FMWqr61sB&cdxw1`{w8*cWdL#{CSE~g;2N~AEm5aqh>Yw)`)qn zNOAQzo5gC__Ea^HxNd8AmQt-gc`IZWNU4@Knj`nGgxoYgsd=nwHE)vb)7zxi1NTj( zcgDClBMfpgwSbhemL*xCXDyPPM+0?YV_bc)UHhnt*#BT*nDCnj#9l8m@Q<Gt7Uy|a z*ZPkQo?Y+8>8ZuKoD{Oz6Bm;FejJa~33;&WV@V#O5AY(D41sKBV5<52*RUtOY`fys z=bHDHwFg8aP6&u<06jy5D5c0e?`B-d7^(e0CK3<(^z^(Q;?Y=!gKVYQ7yym!0=?=M zQUzR|=}P8Gih4RV0oEg=8QP03U!$^+2k#f0U=~5wJDHVB(D*H&vT`0I$9giT(abv3 z_eo;Kr0g%h_CJoTVj}36`xfoY*7kUDrm76@U9Z{A89I0>(AC0>$nuPF>|}U`F#_!e zEIe$r_vduXKlJo#Z4MM!@<v}U5g>JtM>M>RJBimu(#rN#r}e#H*5UjviQP=<G@yo> zN3?<JIrr#Q*&TdAAv%?)<A@;Y-A~_0E8?D$TuPwK$*V!Q<?b+z-K&L7O-G#HCB2%M zMGet>Plg~ib<X77{yVvZ13@;Td<HHjHl4qBT@zFF&V34L0oJ>p@5-cMs+Sj1l+ZVF zh#7m`^%J$`vo|OsjeqotMsZ;YR}o?dO)YQyPV^yp?rT%H`ap?p=5NCitmx4UpUQrI zf4S__(DxEI55^z)u7cpF<gdQ^efM8{Lpa=Jd~G%I#99g6C&#=MCY?E8n)`fUe27~i z=D}#oPyf+y(;e3#jw^BFd#!UZ7JPdp0QWBIi|E|J2p5tW##lNyZ`Au2ZMykmU6;Zx zPF&Y|$F9akgyX(W>iK^fBRd7OOY54Z+=<QRnCBHfj$wbE+=b_raybo09hL+n@$A5! zfJ{w~UQYDvA*NWQ?xS{bvmoAg%QA;NyLN83$RoQ)m}~qX<dmKu&uK)_O8`_$-=LY4 zX%AC|?0`(2)_IDw?5V@3OfRR09nd<1ApvuM)_BoE2c3J+U5mUmxIz8$HD&5ys=dbo zUGf(J2Q@>DQ#pnw>@>rN3jzoP#-3T`zVJa<714zPp#%iz>jcRYG!%gpo_U<!>td(? z>s_=2IbWEFn6uE>POAHF)&uyk)tvr(F;e;<Z4Ed6zL7^ll1LUa%SO8iUapzHCEDNZ zXBxE07<QD<oLW{ojY7tvWDXbwnQgUpe@UlVIP~X6nb$6Fuwq+D^w5bSfD+0RSx^P4 zUn3AQtSp}$;eE-f1eizvjvpuV=p8xf3CqA2R{`xW5V=XFO&zLUQT){5u<mcK_xRco z<hT3?n~Zf-!bD^$o{cW%Mh?>&xc^lAMa0;~u4C54%HB6K<)_@)iU~}Tx)xM58+Vd# zeH5rpS_rBwP<^6AN_Cf8$=gOaHW{r%%Im9`H<~j~z?za4dic87kp*$EC4vm19Ro4! z^b$m61X~?Tpl6DbGJ?5qUz1Ia{}*$m7RIru|6yH!@h&4dK4q*6KX-Sg<)(^Ep0dZv zSTv$sqJmy&`G<!}G)j$taxQtMwF@wm@<qBOn|JLdOP?)&j=b1TLD;4U;cGC39~gy( z33}*2q%}Zagyw?F27f{t6pPv23DwQxg=?7-u?|(uaK&#qjB8GEzPgVRx6(qr3*{X= zkXQD&VFkLy`+1FspyZyx%O3i@vNP0sIrqcd#4ks43XxlV_9NslcSG+VsKfo3(p~wi z9|Ogj<q_`i;z@J7b|ax$_#!6tAWtDZvdW;VxH0_-O`}b6eZIL;B>lomfIFdllRq7b zMW&CMXrXpA^WpiI<~3^IueDhiMJ;XSvaj=*7_|_wopd&asu9VxSD&D_Z=13yJV^-= zc;`slA&);z;%TM6bXN|G!j`6Y^^OA2A=6MOh(jB-y+FC^5y;w18>df+LS=ztUD_+# zPjS@_c!#|=X)b1WHtVI0iu`=~wwE<h&niQ%2(j|NT$h?G?GrJ6&PpTLXC(ei1G$d~ zd6X(bnO&9(N&abu{cY~F!Tk0o@=3j_MExqWL>^gb+ab5__tuw)M#E{f!Pc>C=OF?d z4+<Q)e@CqsH=o#5MXw_r=|fk+Q__MuqfVn$n@jN&?xp9RySw6_>v?2u_xS5bB|u;P zL573-qPv&uur--8TNtbkf8M8_nIj4@^Vbv(&W;~kir7pl4X-XWAz#g)%JY|*bfz-w ztCk4a7=0`n;S<GaIU97{@EV0;n;X6Cybac?Psdvj_R9Os`<vMsEHz+uWr%TER6;4} zvYJ~V#Hn8FBaNxhtuU`cK$4IQ;I_C0QA_z3*<~n&T7Ytukgo7Tx0~vpn@a5HV=i|c zz9tbaN91c*jM0JwMH`9|BdRC)SMAe#IhM9>&V%hhfG+wq5bdwkNs_l-V?VLv&E`cC zYvP}|c9b6?L8sBK$z>3f!mQiouu^~f9cOH};q$Gf!W+n(S+_~M4p25l`2N#JHG!=z zez}M&K{lUT*|=sBp~rN4$02K;z|yK7BHTSgTx5LE#R!u)rp62wUn2iwobvFW4vbed zAaX)aLyhr-2K|w{G2;3vTe86OXsdmICcr&PK+Z9?wuBlpI|nawC~84g;c(sIY&}N+ zBAO2x7$)u(`+7OWZAKld<$0K3iJDWjNy+<5Eev4vDCX()Ugx6Ap)7dsg$yGQOzYek zj^kDW`*YkRPM^aa72}h<zPg|-KabAdFm9IH#Ihp3%Y<9+rh{Gt-vAUT;yK5`Uc=5b zet$l$E&2o2QW2`2i-Lls|I{K4fZ70G+Z<noq0ve0Ex6>z|7&Aix6>_iPB)8PD|qZv zSoLSi6*|nva9gZ59R7S&bz3Wz!)tMvb7-4tK1*RSSTE6kE{?)uNfWgk*1vZUOIr@6 zb5W)s^Czx0tM~=mg7gI8SZ}WxbRRST`-ooc)`*LcDw@S*Ncy|q+6ysE&NaRW(_!bb z=HT-2IH@~!m}(fdK4RFJ<MHG)1=;hK`nz>e5f$VzVU}OaNnS1v-HeX>m`C1@79Y#D zH`ojV+dRDV;*K7j)jHX?(8i*bHsxUNO`JJuxUR<W@7<io0#DlcexB{I*#_4@abLi5 zCcva!U#q`{7KO*^wzym}bw>i>(}9*<qDaUKNEJSTzNL(Hp?Lx@@F~Msn0d<Oa%1ZF zra;XU2fx%`E$#NSFzt^G*BO~(2u};p!C3q~fHwz-<}5b9!<vQ~XWoutbr%jCp?B_T zs^saJhJ>M?m4Jiq5eo?fX(Wc%OOGAm3{#E4OLQH{{zm_u^cq(9)s~A!v#Y-5TEI+S z^O+!vc4MA?hhh}&M5^J5>(0wx_CtqFsWt->m4&Ojp>ddp_Gurifk_5yZ3NxP4w7FN zYW$O_o|ODSiI_#{D}VJSmaqdlV5vdCMTPx7u3H1(&K|jk`iL!4*KZ1m&m&Q=h1$}0 z6gkJ_wb{rpDXGgQ>p`nDv{EH7qziRFdX}1U1C9g@rl8kpuEMN)-S*uAzpx$NU+|I{ zE5Et+i`}i^^XgKtjQ;?$0AL5%Fam%K)BUtivzw8+RVs2@R{1sdDd3@>4AAs)RTt;S zG}hvBwbcEV%=&3#*#lSl?Y1T$*{T^G3IK~u$G)z+d~)OUPhDp_6!d)2=C`zQuhr>f z@QkL9%aXR1ubLWq?dPG-7T{4jxp6R+y-_B2{|Kh7j%Q6b*TJ;aO&ZruGMK3K>ElAJ zH5K&{4?g;<qN&2t)nS>jjCh-H^q=Fn4zR(za7#OO`kE*hUrR&s_%fe&0FHsuC8KAt zQ>39bmh@)a1?(9MAvu4u`mKw6&mHwaHI=Ydg<NqbiK*Z@V=#nq27@bkys!WB7YAFw zely^gC|De+Q?-RDP=xvhspAD^AmJFjuyrt&F*6=55#g;?0cm8;&R4%sb<S~1KQrDK zKFy{Ih30NO4DkY_<XV-N-=u3fkG{p(P1~>Stw`7IJ%uy1QH-upZQFY6+RU)f{mr%F zRKa)dAmBH0sLDwxE^I$_TdfcM&n$|>Kiy^<rvP4YZtcaJTT8@IqjXXkkkWB|Fn+q; zblAzy`As#Q(^tw`p=<gD?ZeSr_v3_Pp0&PR;8FL(AgfnOTXMH8@Gc4FS0NE@Sg49= zo(BgJ9<#`DPI0>S1kOavf(}rLAvIkXnJUg@dc<f`f4i4k-ka+S+;PFlunEs7h}z*A zn6k`_yWh}s99%=K<p^FFa5Q{*?^})F3jHb$n(l_lH=K=;8h|4ly@MaR;*uT=<2K{T zlSMqklT36T3H&1lt*J9-W70OR1af!>AC|D_(aS}>xMokDZkY1s5BM$reug2476`Ku z)ESrNtl5yCNOrUqbp(1~fzsC7UCT+B$hr;*YaW%}wg$nCW|?>7|Hz!?u^=#ss!nx( znx5Tpn}yugaht*E>$7y;bugK+*yQ_{Vif=m5*%;%*zwvPB%KSlxK7JOPU3EIs?N<& zc<Kj!8~rP_J*rIK;4U0Xjt0`1W9&^V(e)4sT>VvIOzyadSp!Dle{Vf4w)~t-z$zMl z6Q@-zYXFVI9h*Z$5SNRNF?V#q$*ruqN(?8fUA1KVt|e$_j<T!h%Ju^O6|RAGUESlW zWJ$1!n({K~4O1e5q;CE?>jD>@*Obz`iH7aeR$ray%M8I({9Zz|do4pD7Q2;PkzInw zLl4Si2PrRtRD>B?SiswLt{<w1<-m0XsTAATJJ<-3S;J0u=(@b-o(sy}_})TI<ktV% zb>YWKv~GuPy)yvh1FHrMymnwij?60n=$v0YNIBNb*x#8;%+Bx>Saod2%*_bRn<4Q$ zu12Qdgnb7bg1x?B(2ZeBv2k$E>cm-nI?Qra?9Jo7@sr#ChYm*Kn{Mz7Xx*%m&RyXI zlh-SjizvS~JQr_9Hhk~1x$VDB8N6D`XD&A=y%VU?-kfswSoU*)bz6qq*=2be5opj% zTRH?)zDw&!P{r+DWJHJJnvmi;*=GhNZvfyeDDN69QmV`o>TE&J+(G>u52>+CFeney zF?WAq4S1AWS^CU%Yd5R8jK)s%dpX>FqVf!i2imLUG$&lQP%6d*{})v4nvJ6;gjIfT z2jfa{37h?<KroIUe`_z2{;Jw@spu>H<X{j`oVIUOceU1cLc@jM=mPx6a;Mo!I$s6L zp`~$8nX=G=Mmz*Nmah!s0ai8$fv@{uMeLAM6!}1eR#(`OEN0s8hKjj9IoBUg)mKIE zQH0$u`>gud(SpG@j`BYRk9r=!0$%^$uJ;nOf$8`+gRK4-j>Z5#;ierCc|IvUX-QQC zP4W2XcOE*MZsC;1W2ZiJui@%Xujcp>z0^@+H?6p#OV3hEmUou3acRR#h5>#k@O$4D zDA%CO>yflL*p4Xae#3X2j-~t?1(UQ7UJ=#Q_vV<_^hxq4hr+W)1iDm-V5{Py$2xKN z?vJ3?@j#v5(=+j0={q`u3S!3R^K`lfdzF>Mx(i}Z`Z+x#D7}|ceTs?9SQ^^AVZg;7 ztXZ4wN9r30jv;$Jl4h!dO)$X!9TGdS=q=zh8Lh<k>rh&-%nD`l;QX()Jo#H>OlvK{ z72o>=02NVB&vk-ZTT&~?WWWMa=n>z(9D$4r*T}Q@0g2X*vq4dw)<P}fsFwOcF%NOe z7f+lPxXTa@clsm55vb8BhNdA3UKQLj%rksX8+s9sBJgMedm`eHtORX<Jski&ZZ=8* zY1KVs=r;3t{v0!WS*p~Dw1BbZ*(aOKlLuesBAE_f4@w%vM?~2Hg%T2BR#%)n3LC{Q zC*0@(oQ%*x>_M14@$!es_^2#lwq`ki>{A+KOz%E)P|OSCzVx*42y@&(=`a-=bjhD2 zvwKk$a$N9t+1)rLkloaGFZ|mw<uSoOp%U}>ftEMpiTv-8f0GKC@1_A?!xc&2Ww(O* zX=2DW0;cb<hGWk~y&eYYs7O{df-Q>cwv5wM1=C9&%h*2^Ab8a$I|5bI49a@qg!_Ih z-G*@XBmD+FP6Yt-%xUiPBn-#5zUH6}M;j{Ve3x=9h<^pEP?)>AC%;W@tR_u-5_5yt zaZ{zI@>(%ZRe3v_XxF~SZ?7-Jgtbb4kT{fpfl_~%*PxezVV5Ev)`RJdNc>O@k#+(l zKB1ZZsP%;Z^NP+2pbgJOg=PqOsco5^ynug8=w|FEp+|==*__heObm2f<QsT27NR3@ znCcm%>zD@3QsvaF26AY|OS@Nnv+csedGTeur11Ds^p8OfY>hMOOG_=k^6eXYg+tj} z*$mje1B3Z_53MTDVDTNB#qU50!C0c}-8^H#7~jW7@qQ2MTCkl!W3)p${R`C~6pz}k z8net%(-EN)QT-S^^-}{0X>b0kk?oOYg2#vfk4qFxklT83ZG9Qs_%MBgcGu2@hFJa) zgk-wimB?gUBEdxL`9pNop}6RUd}?<r+^@&(_h(VymT`W}xJ*jS=kSTe)e~QeV4|IL zx_Tm|U@I{**)#$}xz4ZYq&3pLV7w|xWl3+*?}zWti{K?G@;sv^0Io}4e43lM5J*_j zkX9`rs9yF2_yIi|WdOgYzvmc2AYW{F`_no4USApI198YCFB`~Is{yQgMsMgHWeNVo zL%D;T-bL})8^dE3k{Q7EevX4;E=5t%#}FpoLR~+QSETz-eVFWOG+mobtLWACo<~xy z0+>eI8}5P`9FDu<2T-MS^O-HPm`VwYnuTu+Mf+4YmKd}uZD8(Mid?4yZ0VG+*O|hz z(`T^^6;3dyfmZc)BPp31^)dwI{A<4cA%Zwy-<oeuUTxX@71OZ6wcSec*@g+jz;3l+ zO2|Abl7MSt`bI_tj@2*hYH*?e_y+t?QA$7p7a8G_OYI+=-&3Zxz{130#_m=H#ivh$ z)WE4(P&TJ*inG28)l%b?(x7|5WjW=!QMiAtP>*dAqAk9~PtBGdXsI8y09g$I5!Xe+ zr_B=!s@@-H8idM<Jb8&Y3>Q4tf#Nj)K!K875D*sDgONo8PjRDsejdPvIIs)qI=ATb z9y`o=H!m7YXP+`Y();p%A@vRyaX?=Y@ybE1<jDDs5jPx3AA1vXg6~%2oM!gW>-=k& z{TUhqF%D_%<Tlh=mihRH1PUrsORMrdQ^C_}7U-WTOxATfR<~O4sJ5^~5nwL(^faLP zgoe-K{c;4nxxFfU`e5Qnwh(ZMhBXvR%xCuSplLwJ=T@pICCm#r^r0GEAOg^!O8kpZ z{)bY|6iRd3Hn!7FwU+Jq+VlQ;@~Hualq!(Um0nDjB^vyh3ph%$DcY(9qFs>8Yf#?# zexYrD(mzEy&Aq+l|Gv;PzLaVh?76e9)+pAjU465csq&{nIK`Yu&l{S7IAIj=K+dAF z;@NA%Co1;gU?DT-AHd3M&NXlKxy!Tr*w2=zYb)RPLL{U_fncfQA}{Oy8GThK+VL{O z$0`1UhhJS+n#~~Qi2T5<v(WB1Ic6lc2<}+b!@)Jx5BWdF*Vy4T1(4h8CX`a~hMtI& z>ocK1mGM$++MKS0Eu7QYRVchC%;;U$YQUfVRo<Fz_I0W02)yYQwu_V!izJ-bofJdL zo~?tXkHX3SGxA&>?1|lq+@{Z+Do@>&-5;%Z9^8xw``l-1+vYw!OdrVAl=1RkU|B{f zQ|X{8c5&IrpNclW*%Z(9IW?oCUnO+o;IUP#iZrNeK@f<@?vxbOn&6VRMT<k7PgFBU zAn}+)^6D)H#RC}U7V|@&W6zWbNbq*Zarwztj%zkXaOaV^WHN!3ag+#(vP`B?TMnOd zT?1va9TY{j{T;7b8;Mp=9`2k3Yj13OMb>shKR~ryJ+b&OM1OV=thFCu^c7PK5h(sD zg1Y$j<r8Jga#HSAwv}e44~c4K)f`q;rSO`vKiGui^orHlEWS_-X4U>~j@)Q~?V>$+ z)D3@Ngv$mMuH8l30>-}2RJQsnzqDRk4p{k+wc12jRzWq&tjDGl&Hsqc?Q)~_6V;nv zGd+HyCzPSyH}*sL(ZN-FR#Pe-<>IX^^iPv~IjFc{)t|0!^}J8P$Sm7%gJT&|=NTHq zW8?G()%=auPhq&bT?48faPTDQ2@=Rlq)t#DkyZ=KnpGv--jvM^p-9Kp`*8NuEo~D$ zR-<srMb8q42<Yb|uhT)-3@&dP+C&l$>6U}LwlWMVrXJbaXv;FcUD-qOR@#_2j7znI z@iT?-yJA6ol?=H%er6W*Q{XsPz0~cTm<_bsI?*)@k@Z#1VS%b!a!AGE^e8fckDu~b zEW{uu=*Y_YvhU4@xp4l$R=u#C#G;pBuPr=J*C#B&9bQEta4Bnhb_J280O*M&?jd#P z&~+gGlz~u>8bt^153@A>so3HLsexag;G<w@abO&m^)KdyjqFqUQlEjvJAjGep@kmA z!g#Yd?R5+M+Nvt=F@qV7y_!4@9JJ9~o^$aVCXE)_M~MEE+6&<G4^u!rK792U_7x3C zox)%4H?-U_hr1}KDZg<r(^XL50gL&g{DbUQ@o!f>+#+JOcm)~ocdppddI$|*{Q><N z)VcUt>xc=<dNK!_M|~`q6$W@9*`v2yY%${r?G!>X(E;IL)2rnq8@Z2+-#vrsADUL0 zVIS!(KWJKOYdXD}D9?P1i(kHJY5X{oHzObV&$Fo68jUGUwAAl;G76W!xa!GlA>&&8 z(Bo*?y*HSjq+-hEdSxQgUSzK_HEhtoB{kJz=+dBv%814ZUb4kp2yKpQ#!{IA1wlE% zPJUF>il;O~!Ybbs2~^b<#?PBOg+S(Z>KX-5(P^S>xV8)>AQ(V2CTI?z=g|#6Uz^T{ zmGj`r_E@!^v~V|u$Bu%c6p(AK<&_88`?7qhf*<nOWK=q*=#Ajh6?n)17D{LZ1#fSK z0Cy2THVck%XMU4CyXcFF2!S(Kx2fv^`?UEkiPveAS{cp9&diVv#etxe2(7rwWb^~v z-GS72d>Gk8GVFDC#<eibRQEb0s;#3$$29qRj&IP|l||Uezma6vdz7#CAc#_MNLc*_ z3?<;%lmE3YdGJHbq%s*yH|yViIp#hrn{r&LhTG%KDkWXY#^cXyg1aCpDO(!GOXTxy zy46pZr7GuF9_h>EoLcQ?#;NR;pf@tQUB$f=GS6UaG%{{h70Pu~@|ezl2isRqns6OL z%QW5jZXlOV8(T)Dmu#R$dN4q4%Csf@oqRLgn4tzh7Ks|ZIanqYuCun5e8aQRL`8-& zv>Fi6sJqaoBSF+Sxgc~qjR6S}^k1KgS5&~u<ZaJJR5J{9fR}{9T9UFcjLI1wy6t5S z&Y0MRJVyI*MX&1SM|83>b&@gKa1L>+r3875F08AYu%{p<S;6o}&^N3Hf-u^8fDaH6 zqW<+iazd-!%=iS1$T4fLx7$CP%i%Uz&l!)*hJy3w4eQMklswlO&uag|OJ{=fdH$ud z2Aj!Yk>-A|jc!&5gwlbTSDY=DvFCPwFyqJK&@WRY+F0><jy`u+o-9eRqY9WSF@{I1 zO6X1JC|j0=09F~jMI)%3$Hy(6ldQXaDA<!QgGwcfYjI0<<G2xI`Ae=Q$E2sR5@J%* z^LX1;DNntDNCiJ8Q}icUSIZ-iPn^q`YVeIHe?{{k)2pIGx1R37!u|?Pv*3rDYn4Cv z9Bws*oAYUH`mPA{@6!_ot<h%AW3axMS+_+S2>4Q=VV}xuINR>NW<HkkqzAP7QjsyW zXuoFh({Q!B1ARUcB7V7`ruv}9+pex%j%(1#9ZoZSsv$jtLI+B}mx@%Ei_=JK#oa$6 z*;IyR*iw@IuvSVmOeq0NiM<@21j+4p?N3`J;$F-p=S#T5N~^eK<GLZ%kM=<cqM|zJ z)bevIblC$KPrPd)>$BV~${vis6nu*=8YC@q^ms)ruCd3*%Rla9A6xmLzOjpq#EXh$ z>?yeky$oIsYhrBOP&c}E&ZcRVPZ?H3n4rFBA!|)?UU&3<6)^*^Trp#yRh4(e=^|sk zb+F8W@Ayg2EK(+aHXem*p{WE{Z@4+sF5-)5nnji5LmMDXC}fh4H5s*1x4HLUUbKg2 zI0$DfwaIG51{|(zWD`22QMIoYP#u4vqga76mLmSz^EL}kV@ctmF;B5i8&*XL6gMyb zDCj*zqh&%y7|zks15FpBdl^Qc{k^Yl*WpuXVm=L|#VB33=c5}(AmL-4PLZ2{rx2`0 zh+>w!EN%1A7>^jTCKZ#42pVxzkvDl_YWiN=?zff#s_(&}5adN#r!8n|XiiXvX0Yb? z5D|pR9$-)Wr}WmI*~wEo@oZ-U%j6}@II2N}eAWz|PyLIAFOBl&^NL}9ZfTV>&J&l_ z-K%@HZ+4g)R}sZ9yJ;P4Q+c&XJu)7r%UD*11Vcl;4iGu5d7T^sR3d&b2qKW@91!u< zGCD9A6e=+ZXrBzzhg2$ln~4XUfD{PAfkaeUOT(QK1sIKrai-<2nhSb6D3rUaREDbk zG~$HQ{`)w}Bo@bl)k6_-gcp)(lSr-NyDJC&@nyaLj6~hOpzA5Y7WWg4Jp0>n^@+?D ztu7n$>jP%LW~-Um`HceeCjGY0W3AP1ZtZ4~%=V#qilIpA_!fM5gkeD`FFDlHP@?Ow zo3*{Cm9_jE&Lm&q-fM@OEKRT5Js@Os=*1z!%pZGDv@Fi&*qDxB3gpCs4+$&3Qi*-~ z-tM@iHY6U8!nSUX0xu*I#lah|#lFfm-W-dLyUq87(`2@7@Tb^nd`+m#3hj{R6gPVx zH-*$fU9o}p(x=|k*a^}iH~71g&w65lwWR{~5uAh9d1$|H5K`9%wQ$-zjIo^-G^3ly zgaxOgVYcn3?e_PI2&gIAcM^9${)kU(96)p#;?-cWgPoU_3Vt$>Hmzd+MVS`kjvX7p zW#f#uTruC|@xw*Pq;((5%H*hyh3F<2<HH-i>V7ewnn>|KBuon$yok%epN)2R!>){j zMU%7DWDyb(bItlMO@w=z{SP|18Y^;vKHp#87QJ1|eUBpuJK!oa<4qq}*ffhC*c_{P z$#4I1bla#yL9}E6ZXIVn!z=kjqM6`0!}c$U7N12ACv(^Vsa;Yc?;m51j!zs4aeTk0 z3}&tk708n8ZyL$VOsvSGMfB`-I*nad60%?xIMR^Knf`leBcW}Vs=zCJ)Jc@Pwz9xi zFFm=<wqh0Sr&c#7m7Kqv#j2~@UFp^8I2JF`a{S$A4IO^K#$fWI>A)4^e%b!#pRzLW zn+WhZUM~sYEKDxzd9$;prmK}!mBibVC7$xvHir#3VFUCP%nToA<wF{WC7t*3@@%gH zZPDuT<Bk|7T5eA8-!o!#fylc4s;#a*$eRq$)Uq7e%;zwOgjqHa)FK2=8gL{2_RH>% z^U;?TCCer*i1~}I!yM=PE!Oc-XYN)-?bO9(#i8z3=BcNFK=2;q@GqBtPCh;-b4U2= zt0yxT#RH#uivO1z*PI5HpS(GB1O04`z4xR}mZ}}+iyjWMR^|vHj^`XY>kd_wx(dt7 zZPgcw%FFR8$_LafU9XAY&glQzG&+m<j2^4w;)9_+3MTiYBk)A4sUzNd`Kl+&Ox`^F z^8@kF+!;?j?RR%iE?Em21V3wZJ*T!<$o%({p)Dq}bk*HGCoUEj*`HfZ!wi0K-7*um zfJuNJo?nni?a+uYpN_w(?<>RXzU}aEf&H4@^;hmhrz$osyFElP{|aZCxNm=Wc!gJM z{C?duTLB5@cw2P0xoR)7VB2+;%Mzn!PD2X8r<?f(6n4Rv2}eTLK!Q&PEH2GTCX%G@ zo1FT>g^k&(X?eL~O?i3jRMuB;=hl<r+ylu>y)?6d!)7sO`Dc~K!CJQ)xFHdDDr7Pc zT%y2QUf$kTF56mT=D1a#Age@+)>+2aqaRzij;gMns-`|sRxXfVK3XS)DuREdF!*CW zeITf+2eNKT_G#EW0@zCiq*Qj~2=G5-thQ-08C2-<VefQA7zE<zWXk;YLU(%ei8*^} zY`=oPO+%eOZYQMR1?Vl1>hpu|^2y1_PvPTq#Q(ANl~HkPZMYOKPI0&54#nNw3&q{t zT?-Vq;!bgQcP;Mj?(PmZob#O@ciqdZm1#$knMty<-}f;n^?T;&Nw&2zUi4hy;>nr$ z3Y*uJYg!##juMTAmS&d*&y0`n0^Af3Y~4*FI;xD-(vMg4LS#M;T#dhee`oEC&F``* z)BxV8C#zPAu?#@Fx3;=9LANOfl_z)PyHd?jF44y4bX0+rW%y@@e?^!X{v>-||F^P- zE6HZPx8UQfrrqvbnkDX@>x~+&^t??W8%<H!XS1k3tTC&pvrwT{LN08;=2(in54r2G zQQMxH{@A<?1Oj{J!(+<mG1wYRn~aw<t}6@2M6KF2i-ii?s_)|Lz-q19G)u|+H>)|z z2qo>6vR5_id<){C)8_G|v2<)&^_MVMy2jnZg7nY?n+|_{x|WmbvIP>8P?P?0F3MQ} z6OEXM)L%1z#nL{=2Q#$1x2ZgJRV^c-Ak&+3KK#pmxi#yh>x4i_KfXsP*ku}YLtySz z6c^}OCm3QlZow=^xi@n#*PZUXmW$UDuobArd2J64<NHDKOvgCQXnWxb|8sn=o5>Sf z!Jth9JkD=AlVFJ48*rQ)k?T%yRbXgC_;Ww%(;2ryIj*&B-+o?2&N#HL0p6=R`?zyr zM}QfQ+1yCNmHHr(i2>gBSnxd{+8;*tBzU_Bx)w?Q<l2Y!BhJc1MR&irxWA-WR7Lqz z?UDIkYXLk2?yCzgp&$f}HhZHQbXq{KU9R2KsureFqC#sk*&3gtqETCT%VDt8d!@0I zLQ{Mfp|MsRpXVA2OXvpJ7#$1Ko9J^6mz+?r6W;E`%F$`iz(ju;x!prm#swTc(0Ff~ zQJGUyFLe@&qu95gU%D246gl_Gv2O<a2w@j~9}wfU2VAPGoI-j9%C+%t>IhhEw4Z_4 z6tO6-uGQ@^7Z({7Xhl)nZ$liXwbQ>48w@qmak<x<9QG+bySOYGVH6DX)AB{Hx~#v3 zGmjzd+FfI#$N`|lxd)J&G%hB3?uj1#G!euLJ~Mk}xcsGVB%N#CMupJ?Jck5JpPx?b zDoe+O^-P#E+rPqlLy{9i6^*b%pp8%<m*fw2ZxtZa2hd*i?(=wRAW5Lfye|~EFw@zr zRo@n)4Fj}?HvQdd0RFE~RXBF=l2G>Ama8_#w-XKj9EkcpA%y63FyUv+4`Ih?a;OKw zo%zs9?kgXdV+5ebZ_kvX3L=4WZFhapxZkm$GCS^+OC}%9981d(LMIa^CgE>NCRxPh z0qYV1ayW(O47a`HG7X67$i)87H`*Cf&_A-*fDOB^#9R#RR2cM{jAuk}T#a*IOY@h* zd2|BG#jUnmREX8jH?ld1PqL-=bwK#jM|T|x{)>&366f2)HlK1V)90*qG7dP5!sB^> zZgc2xIHg`SD*;EI;hIe~gAgxuGdy0e)#4o5#4l!#lv$NP(&xWer}NZ<$cNh@K&nO- zEP3u4bifo(w$B}}wo($ONR`Nbk+9bZq^AJfh_)~G4d!k7kJSlfUUXKA&1JyMafwc+ zy|xYzJZUuCHT9a1bhJGwZC3m?i{#;UgqZ#$&p6q;y*KdzIorvUcRXx`8AN^vB4s)* z2LS&E5ssO_4glw+lRnGuqp+c4?dYwe;@0jCRh>}p?@b{fna0H~2<#3wh(rc4P;x(O z+PCh|LTaUgS@}>-u_Y;g_@!Y0CN1NCg7D4v^x0Q^-d`zW$arH@V0D<O?t!CdJF13K z1rLyU&EzEI3mFJ$qCr><`{aFPToy%uJ)*9Fo>ve-!RB_gRXG`=uAs3f$fHf}@(ab% zw9pIb*Ml@-%((_2IL50GrM=4!Uy10Am+Ntx)#h6p?`s_A?+xKn8wodnY0#JDZO&g3 z5<-yC#IcKaA6j`$58RkW6}ZJll^pjPR@Ao2`fTp7S{D%V98yIfQN*;<E&}Xf<7cNZ z7kKOs9k05I8KZ+ho5n<fn?!AQ%9>5)YjLc_sR*+JEif6cAX~zf2?D1Xg@7dtZCAf| z{E8Wz5x1kF0w!Z%4`{OeC{q`yAs>1Hw5!-$bJ}M|y_FsN8M6sy;N)@{n%Ru#sP1<s z5{^k64#s{d-hlIiMoIHgaY<{0(I~4_0?lQra?E-n*@xVCI%A+Hb%&aakB;I-ak>7k zDDR^|f01IJB?Bn@66wsQ%U7rR0EM4LhvP@J$VsE!8Xc^C>@eBwjK@i*&EC;Y;PkCI zcq21N1F`={>@z??KpT$8$Dd9Mfixa4LGS{$zS%Z7MoTHgiztdv_e<ivv}SCHn>Xgm zPXr4h5+BS6kK3bLz;z+rT2JK^P!lfcK_;<9q(I5|45hls@!ZaUxH9B;s;a3;YC-8f zJHqqE&%=st16Fu)yc-G?ET9olOEQh5ONgy}7k-G*esSQsfRGPgRdFrm_CV=vr-#8^ zLv5BIfTFZ07v3^TQY*(GexB9~e1x$NMRJGDMjH<_Ap1}~Rm<m4N+;XNk6>4V`TgGK zJ(1GQ9vVPX<w&DE0hbP*hYkPLYz@H7Z1MxfGMM<l@l5<9+ZYc>zkKI+1{|3Iou(>e z+p<-|D$r`j8lF0k%jCtY&}YGDF&<43k;p67$H=EFiZaXr{1N7ns1a>eMsu4-Jp!pb zVQ{KIaowGqh}zv%A}g?v&po?-NKea7<zg^Vi|RI4lEsTU?h5&mpnINL=sW`=><nZg z{7b3Em#g8=Sn$6MUcOIW?)@O<jD106-GZ^O3T&0^`=FfGqeG$7sspW%XVNf?I;(Z> z!EB%d;G)@TD)8)#x7%RTv01}eAk;4cyVr2Opyu23MfpcFv9U847;mQQ*5^uig@g8k zlnv2v+iIaY$n6C1*lb=S-KO5;0q(j*>MX!L4uR7=An_0U@{|b`_;oCq%uo0|8BtmO zLIxv?wN^KECaa}y4|p48yF>lBTK6eL0&dh{SrFwE{+3znj#1v9_P%(|P+5_DqL47F zKare~$7d*X8A)Qis)GJ&@@wL$FeVw5EXFnZ3bk*fwSB8hqa9RT2Mn=V|Iwlz<zYzv zPb+KZ8{A9|mjZjRK|W}l(_<;d2PD|jO4Ofa!LWydTrEJ~1qDC%{U{%UgnCaP2Qhb2 z0oe-QXNAR+ZQb)4&t>J)UI^^cBVY=VoPTDe;Ja4DqY3eT5yWRmKRfq?7N2Dh@%Vwz zwyvR(7234c5|G!3g&Qn%Qfmrzxy=#U(2E=I3I>(0R~d+Pqhrx&<5Xk!NH3~Xl@rA; znn@;-X9YYC_3d%sCs@f*eV9T5rd4=cPHL^D-Ys|O=(GWgz#<8%34<<exym3B;(EWi zMfWWYA-(zOWTxr(#mylghf<&nkou^l)=-?0StzM`iu{PIu-jBwxdmKPoe!=*#;LM~ zwPH`LjupvYi`n^yYnmYl{v3udx{-!tEGT^iOxAq`Y4QbI7K@?To|dOkZX5%DMQ*5T z8qxFe(XGO|32EDnN!6@L2v8*H!`#2ZV6aqfSgmxwz@3NHlZ%oMwFFnhWOG5tiF|sT zVUcw9H4SG{1HXR1jPmhK$b3C9$xD`q&OVK?VKQjHYA)T*C3eKTAesh<7;KN57=J_X zeldC}In!2b=!M&hLkd$*XgiN)pCJ9v_FWns<W5_rmQH9ZgL(ysN#mLaJf^3IP=LSQ zo8r%nLWP{~W%JzUf@{^LKlfdY>WI;o%6OEst5I5Fy7!xTU7T<>`dGJ?1{t>5H1rac zsy=3*Wqp2b4#po{(M_N$%H^y9P=xx&R?$aF-qQGNRQBms_eYaw0fr3lD#x=Whp{v) zt(Myb&J=gjvI4)?Ga%RGFI)ScO0~gnRzLGA3`@e}ktivIlo-iVCMW*z*gyu-`UGfc zbx=ra$eNcZF~Cl{e9)TAiK58ot|V#7NmKOTw|;ay#Z&T93k`I7)*~Hb8{M<};+k&( z7VH}J>#D8eig4Mxzg5X2J?RGlYa&KfaWV2vJ3I<goN<TKs&K^wCpf_*!oUKT5O8dc zNCq5=()4)%DA#gXjgN2O&q_zv8Jfd{a15dbS=og_ibRN6h*%)cg~2F(Rjo|v70vn_ z62bh*l1$f3uJk}7H8^aFk{hu!>@tFa_5}hj=kHqnnk}64hpp*G-41`lS=;_-S=V_J zGndODhs#(v-KzUoI?wb+-PhuD&f<|U&I`!@Z#gXXW*{w&;;10yv_MCU_YZJrL(lpm z-3Lh%U$!thbQMPOEwPi()Y`QGkD75kTi3zKg?4}}!(`+zTc!E{OzNUYSEkZ6__2{M zwo_)8ZZX;~0-xAT6}MwdjK%t2#K&t4EwD$2_<(`-Tkgp*a5a~~tE~+$ty9fkU2wNh z{>_%4toO({P-u}nSF5eRQ)<*rUecj*yjUd@LkeSo88{`$@T3k)E15_yaFn|KLPosF z6cJR8#eGCQu4>h!{^`I}?c4QcHLgWIYviQPo8ux=Wm?BepP9z2ip%^0EJ$ry-P{je z7f>|Q4p71)06$?kNRqQKM2o`65&kLBnd*~##VXtztl_0Q)sP<<xuyVbAO&%%^6C7` zAMgo92@V|dCT&w7Fs&6wFE2_`?cC@W7@5wed8{>uuf5=dC92Ia=vQ^UNmM6+o5$8| zWF7&|C4mqLU&hd@_|{qyABi7AZM45uq}^GVyiry|yNP7~Otc;cToCa<j~hB(tyZhN zg=y;XcaTSe1Nf>^u46M_dgV%a%|&Tx=>DQodiCmM$$r1W;?M@8_h*vSw-=>?Q+V9< zpR$tu#|sm<78pxsuGD$ZLlrxpPI`=u6s@}7B(oSu-e&-Y61;gH6{jnwizVmbX0h&f zXM7Gz!kGxZlnS@MHkfI0^#^_Kan>u7%+V&U$WaQhhQKkdrCv5<5*e)?4KYUZ87jMe zV(*S7#n{Y&fR*b(CU=(hVvnp)tvk6cH{&=zzm%#^XsQUHB<ssdO3cS8<ep$U>q*gZ zD*UA?4T;wW4~k2y;Fqo|rxk79Rj;zWfj`#?{F7*bF+@?}>uE$|_^TuZG)7HFQPm?@ zKp{~@K>}?~32-Qlh_b*fw0Iqh?fdou_ZILNx3HrYikguc7xB|#`wL2yzJ0iC0!nf+ z#l}+E$QKJ+v|wf5f!x$Rs2`D6jKPmDFB=J7sUgsd!PK}q{v3Z1gfzvB!`myu!CiwD z+Kv6oTXA2)?<fqiuIc6Asx;uxKDl0E$64#OA~LSzMiW{$wxI>UaXeZy$j{}v8q{>f zS9GPsjSn7;e&5NarhMF^G@CF;AE?`;lkZ>b6!c;PcjDP$Ruo;SG_H^dznUph+Kooj zFV(_1!wjaN*NKFs|HVf2+?I%^Z;jk)mQlB!YdQH3jU>w(Va0uW77PkOy~bGSq7g{! zWU-j@{OCBQV0f0lECzPGpOEv_FK0YQdA>>T?UYosM0_#I-a`^S->p~1ovC>gXTDNW z^m=4e6HX0Fh?4l)l3Jj2AwC(2!HuKb3zwQHR8w&~T3~dDIx+I3?5rJWJkuZG*)#N; zN>}!xfbRb2s>#=$)IW)!T5>4S%JY-TE>r`J1I*vr8$x5W_+6op!Q2Dec{WwjrD?+Y zIM<%zx1TU;B~yF}%{H==I+|X5u`gUIgK%m5ZC~i}fNq%)2gnQ}$BXHMR{f3$hL+<n zZNuA%*!q&yIM@-`?Us6LrdPt%>`WqogII3%ZVl*St@6+BtC72uCdxBq)O?fkR?@4i zGwDLdV`CzRGyP9bN%E+ELth4!s5kf(crlPl4Uvw2(=rCb2bO~>8YL_Fs)`Knuh%}M zsNV%C=(AsW(OfcNwC=>us}5$(-@he#p<R<`ceZ8I3r#X<tR)H)0i$EqA6(tgR0iiA zYLZOa*M1O9XZ-S+=e9pGGzx2+nSs(@#QX>vS-wB2z{6fybtKsIRTUB|%Ev&+QbUg* z|1Q|#L`T*+HLO#OP`EulQw|E6`%_1r5_f71^Gi1nl#aMMx~04c4}4!O!)w<$dLI+k zcJbn;GomqWaB-e$#`u>YFvmutI7|eR41!)vF^@)`?jAZEHC}KdozHa084)78Kb|4P zZ~lb_SyRE#yNB{6gF6ti#%9&v(5;m|Dy^Ebsih&ikn42PPmLMt`W6wH$I)K3FCjzL zZ4e^85HpQ^b~E;P8YkNRy+tw+`cul<iDw$06Nb(lO45wub{dS}lMJ%RHbG3zt2LfW z;XPnnF*-Teck24<M%$U%gGkl&aTYlC({g;Z%#Y$9Vghaa3}^fA+z}ihP<NnEs=HXW z4B7iS-6py;sE@O^E-Joy4iKSV6c5{^Q7<vjS+@RVKXp(YK0mgg;8S}1w<&D(6RZNP za2r+=qvy-_q?Dd>%A~&2WI?jGU$n|MeKhL`PQljibU^Z>%AdJBOh5vc4$-$g+D{@e zq(9aYP3hO!h%nBMprpY594@}CS+WyA^SgtNaRD1Q-n|m!M=-tZ_o1y}>%USx$6N;{ zlxesz-JdAO?g|5{d6!b++0F@#ED~gnxED_UmIsK(DbTy{X~$O83H0~%AkUC?98yc3 z0eP@p;Q5iwH<MjfpgP*vg%=Re=Jk9RPsZIuwuZ=0ROjMU$^Q@=KFqXlKRLmDG42&* zcPDxogPM0F%pcUEnYHmc)_64C-?Ca<*!HBotltV4n)*xy>(~8MT*)I9J<Chc;;!p2 zckK~ypg(r2T#1~TY844;#=0S30YWytXT~JpIdwOIx~}1!rroo)u|!rfMSB^%D)al` z{%&bE0_7#`^gW@zH;q3G{z*--FOE{lmFe28zC^wwKy_S<m3B!tfgocl<0=`glXP`| zRc4yD|4QawfPIg-9J89=@fg{;g3$nTjw10Bvoddz{EsU_!z_b+y?_GJG`rNqBBiy6 zYKsvy|6W<B(@23>s&kS5zVWEth7*{RLvvfxcYcM%Ybf3!jMBgOc6X1Sg(#0ZAfirE zSNdLYM&G39Uu?<54$}2a!-yOJf7HTZRC-@eBs;u0;|0V!%Y4NXz%$Zh!X+{}{S2Fu z{d00BCB4xxEd~GdEXH3$i4N7MK~goWBonaOTGC6m04V4uHT@!VvDG_MP$auv>yzqw z7n$n15i(0rRMu-xdVT8e{^-yr@!g&?TWUgsAls%ate*D2a656ij=$>3{rsF@0Mkg0 z4#O!*br5VUNd|V^d_wU_(&uoY4XdtF^*bH-H^;dDj!-seC~X3Hww|e9v@uif;4z~s z`8!JR5bODRIzF$rYPN8X{1{)R3pP1dn`xdq8Jut-JZy*2RebFhQW#&*+e!otoJb7= zSNu%A)M?8n{uFaf=%O{NkwX@V#!$t*OePJR7KUOq5e1#}2tcc`R|pwQ`6h2`2rCdo zv#SOR9xp~lRIbN6n^w6+iOpJ0TpmayrRFv$>u^s7juPww@q#=Kg@-ieili7Ah<OgD z2P=4;RAZ>^jLI!OpbK9OwrtP8c=aDR2oR#@Kg|#YI5{pc2sMzf)MPo4>98uV$yxT* zny9SnmUxy-cKX)KR2fUrcUcF5d2DsJ(z_N^Ad^W)25M&_7fN}fpQJydv6=l20I{-5 zlla<q^{IB-V#1I5k>R{{lcv_gS?1Gd_MU)Pl%W7Wa)F!>O%Yv&@|)x(^TeK~{zSdI z%;hdAe+I}1-_vB&Pg>+zVJ;F>pT(pc{VVzV5H5Yt4}0l6u!nw5&T2b>v@hE7_vsEO zqucZ7<aaOuVtc{7R7ldDC6>KCwMYWnMOU6A!D2BaQwYw;tyG_(E9Sp>>|r4!VGI2% zO{@CPj1_=HBeL+z&2MqrTAe(MjFw__N>`A+`S3Ov*{m(iIGU*Jk#zh9A#9s9g<X(d z%)<eDli8vf-0=^t#SSU%XG?81-p2i|3lj;(sOHa;-8$mwI?0{_5#SN}E72>@oj8z* z)AH6f><!Q2{RPCZTLDopi(NkqJ}o3k^sEG1>zZpA;ctG&6<V}pP{}gf8&|f!H%(`> zJ5fW8iqJQO#JxU+bvt!yr18uv!K(qEz~fe2_S$Q|;OW^TsS|jlrJ86}wBG|qk4f!- z^wbq1E<DGK6nW+6XEk<Z&mR81I7H5sm9&ZCN@&MYmNh6U4`)oz5VFb1bm4NkU~5t% zX7*%!$}Ybxu{!dEe{dUb-2X)+=ZrUJz6HoWUA#R<rE@m{^iV165stA%9GVi#RX0v_ zwZ%@EIb=+3sTro}W-D2^bED&34x7(d#{PO)@#%GagwhQ{FzOQ|wB`M4%+6-eW!z}d zT$u0Gg`nlVF_@tOc7J^^d*V*13+l5BVjDE*JOwRUN;vHO6=$I7uCy4?vQE@N1v{4^ zcv!ZQh%uj+j-LV&Pt6WN6EZikIE0*@#&8(<wX~jaPA6O08zF?m1=|HxbV&3mZc`|b z>JF~9qxfV!8J+F!EG7fY624Dtj-e}e>Q4Cz^<;BbeNIH3@LKaU#7>3*E=<?T2EAxK zBUwEbtA}Lb$RW_^){mhPMoqa4WQILj^`2Dn98hTp7Vp`&;e0A@(*KNZ@<Ct)8TMD5 zT|H@~Lm8SWJUQC<CU+kFF+sN{t3OIz1H~foaUP7SS!`18*aAYdSWI=NC1T$%E~9iF zx574<t9XDZ1u&@qhf=-6J-Ca`*(ol*lS=!?@B<V98pWemp+Ay<%l@{wTc`@QP}^f0 zZ!75ar60h@$efKjc+>n_Ml;$V;H9F-K0qO5_D&~#t}5ts)*F>WyCV}oh2G@{Z*es2 zyc&q?{5+YXF@tHQ^e-KxFbZtOF@_icg(Iu@=&?8d<4Vi+1<IViO(BOAil8yUWh&q^ zV5X*e>iiGn1;9i+xLH|T*2)Y}1xz+e6u%cfsCpNW8=a6cUb|TWVQb#5CGphjd`3g^ zIBjbnv{Eu3ye(HSd*2DZ+~T1#p}qSSyu}MhOMP=i!2LK042R##Ynse~&v9y}-D|yG zw`);ZdHIKOof|AOsnf?V12pPYS7l&9i8B<HNoB9Lm6d%;ic>P#|JktUR%gD~Q3>RY zkN$aELA|w?qVnv%xp!^1t4gNT?|)D_ja0CW6+2PTmlSkfHRap2;$k~s6&1zqPi3PC zGtVD=floNa7_{ouu7gukKJfv+ix#Kqm)q%i?~|fQ=3noBkpYmyvS`H8pJH=C<yk9b z<vZjSq<~URSyjn@P%1_QX!`AaxyExf<vI=J*-4fOI$qys<Tv!TzQ&m5R3Prdc7wpD ztx@8d6)>b51&nCbC*z8k(~Q*Jr8H<iGJZAi0bhD2MBaz9Vk)u3(xR%e&%d_{G`zCa z{@X%u;O0KPKCvd-=ZX2i-4=<J+>~UZf8cW3{m%LJtH4<Rlh#t2oU1X(#JLR1^epJ* zy<N)kJ}v9c;In;y#nrnj3ZZ1I+`DgW-Ru7szto5T`{u;=o}jFJU0nQk#!}ZK>+hZR z<ju8;fy$B1R;RJuMz+ptt<Jk&d|DHW)zM5zMbn!J9~GKsK6GIi1%{L<ae<4(@KGv@ z_~9Smz(IlHZ=pSOF#p+22Jt%jt-6Tb1{@)nqGA10P^o$y69No<OnJ-OU+Q;{+i~xk zGC+exDSd(i(AjbRQ^Bvn-~vKpz#CG#CjSX_^vmJ;`y+vcyNI6tI!w3}fdBnV0t5~y z1AE=YYEr308miZQirMN2`fnXvfu$P{w*C3>c~?sqwrh!Ci!)pffJaS^SfZ70&S2VH zJpCR6=ip~u1Of-*WCsN_`H?Q`F>@Sl*Gm84tKIa^ds)gsuAGnsS)3-n#!~tinw+M9 zu<*_3hOE9xyThqG(t|U=)PFRU%_S|xe+JcIBt3QjuYNDOc}QbBAk!a#Q`}8#6dli6 zxlkN!vB@ePg<fGQrjG0UL^WDwFvN<!{b5UmNIOM5+$sFoLSCzw_}}xM7on93s(FXn z;bIriQ@Smg6?|%C9%JueEFy*M>00oEs<5+1-{*Zk$w`O8chzk_I;~$Gi&=BR**3I3 z{jTjYvWEcTMAKj}md;M+(6D+kS7g6ZaO|55;En8EtH1%guJf1^$$1ojA`5aort5^+ z>RC6Oxb`^al3jz=BBw2Imm4dq7}g{0&s00N+g!(<pv{<r)R2aEMh#~z@4;@`oAuGh zqI=3JUY*T_j2VS7AX}UBn$x?J6?J){-8%QaZ;9wb7F&RBOa44v&Ac@H+cx)gGl;+& z@R~hxUF`mEQen~K*K*c$o}X$%{osJ$x?5)h$6Isx8TR&un?l6L3rJ`wV)_7H#lxOy z)oa=F$&6y@)2{%}KU(;g_=fze-`}>)rt{5A8muFo*5U{`)0WK&(qY6E27n}-tX7m! z4tVws%~U;(=me|<2|Gu4Kh5cRysWbl|Ec(b+;00M0iA-ep&u=tgUQEs>`!x&2x?*~ zu`|EBm}5ZSX8W9aa#dr=a6q4bQs|hi!JES^j{q@wTLSu;lTe4RrN{>Tkyc2HrIktx zavZy;&E8$x;YcK+;TMrb&1yBqA1!|83@;(-smptyqxH26hQJY&kvjP8_jed+b~Hut zf7<Rq<DC;~ZzTEo-bec`i0_r<IhD!CTn(z(lR4DaUAmOaz2+3Kh&CGni@lTvY!n3= z4M8Jt2TZ(kH;p=Vnqz%YcopJuROidJyx^^tXU;hlAwlAr1{OWe+bD<V1cAhJ={hy7 zJ;w&$Z*ckb<`)3o{o7`6t1ry28P^tJql@7pzkGIHJ&<RsoS$z91)`JhvoX+(*F$t6 z(n%GI#0>#U!6^1b3ZQHM^(Uh|^Ol<aC$8s3mm2Sunw0TKlApbw>D`nRJsyB{l)_pq zeaG%hJWHJ%*9Bn5s3_^Brg0#RMYe4%i94nHM?<i+H8N0WVMA31f>;euwCGL^U`LhM zg^lDY(S_HURK=kE=`0jtXa;<#;gkCl>2+ketDjJEtL?@`xvxGms?C0X8Tg8VX_s=J z;c<rL!d$}3K|`I%w(0swToyPFTSB?H41=}O{zo}z9m8ec$pX7uw>igRHkM6dm|S0W zUcMb5L2M{gcdL;sa@=zVF}NF7i6I&VV+m12b4og>XxxJ7G#*00q)5+V&pQRel*0A@ z^h`c4rpfU>8eTKy#eRPECwS2X;aB|?e>od))?MaxzsjZ)#=*lRFh5M+;rV(yPm;|u z(&U80?D=4emV8sTYCPQV6(m{Y^iHL5mFZCF<f@ozA)!K>0Ww-&ZRv-oE>q}Ioys;* zg9Xpj*VUWg4D<Mmp?=jzOA!38XK}i#@N6rchcP<=f(n{Jb0F+FAa9qF2v7Jip!03G zSIT8pbh)58oWeg;jpKg6LD+wZ9{Wn$9Ra0=u%fTPKZ+gDt-87B(srzM1z&411;Po8 ze@#zEC2dlYN3L_?U-Yz@G^+F=6b4sMAozo%lOx#smg<ZL2sj-JEhz9KX1>;mS>!ET znw8E%KkuFZ6YQaV8TMYT`a%usroh}?mEHVj`*YXk%zvxcWZZ+<lKrBBw3irW-j!nI zVMOnZHUggGT0gKSwt<Hw2Cg!*#520CBvU4hZ!R?@<;|ffMqdy|D};Yy`KBT4qa-oX z_y4$nta86Sf<QfN;W}$H@a1H&25_FCq&S%t1{{!m_$KZpkZ>qK<S6U1Nqv3mG_O^l zM|P8Rb1lJ3qp(*!OqcU!+!lSPvYH^~Hg^c@lQbD#>P})>f`m%#0bxn7U<@K>(>tJN z3}1Egv$Qk*d<{5RfWx%$HjseW5=_dyxZ?={wZ#z`HES&ZHA9FHu{v(1&nYWIM-uAD z6|{B+K#-&F(3n4?hf^=*9B~)o;Pn<gd{-@DP&ZiZA~9r_`-5`oAJeW5YkPcHkol|S z(-BC9ZUNTSB}{WHQDq8^=^|*khcW{>%Hh#5t^E9`E0*chVz5Cv`cS{y$w%&0H-YWZ zOp*2%j1&0c1i=^kL{)##mSLc$zk5r8sZR!;`%NQt7}9iQWZl%A=HE*O5$?fS+cFg2 zMY{tK>Y7~O)2Oq4iXCupWQJLoO8kf}!5AXOgp(pIv#6P)#zgH{@DnKr-`!NS*Kib5 z_MDB24>(}~tdg&161y+}YX!nIpcep}4`b!5InNc^lT%V)&ANG|uPPOR_~%!|PXBVy zI`64m2{JDgos|1(BVzOK<j`Mh3Q4|wvp@ceW8(=3j}^wSEhE%;AIUC+NU#_%ozznQ zuoq6NTTN5?3Qz_NeYavCLMm(Z)cVWzDzXEt)rO*o^o!xt36RDkie{4Tq~bbY5UhPb zwv}Y#dm+|_DX5`b)VuXt0`3piutGY~Gk~pkSH=)XYRRi!XY)YLlT7aY3^=tmQ$9F8 z`)P}j^}W3+i?anG2&^%3(7cze5#e0w2DP7^RZw$;NW+jsc7A>dVBm*v>!~VRIqLV; z{E4FLAHbHc`1C1|Zp>0ByITHt1sl3dDX6B$Y26@v`^|CU*+27XW88zOylW^~&MLXg zHFyz6S{jHWc|g%R_Gd`bevot$D@gz&F-iG)mHBr048mq3ZP%H~-YcDrKGlR$<Gboo z8D)HmNLA!jXOCn-QCeuiVW3^u+4G9Scyh1IF(GqKR93%$Na?m{J1cWp4MEcVC;a)# zQf`oF%3WkmrfUv0w+p1*$q^T-D+zqdR=uVO2+#=x{0%y%8sE<&=h(69$OU3g!;NJf z@r|V@2>ht2e)wJhxg_Yg-MoGi<miAzFtwsrS+PwQhnYDiYz|wD<N*lI0V|5~zR7|2 z^8a%P2!aWq-GMy_?38nQSKQ8?@AM(sv3x_=PTe9gNWVC$Si8RJzGe&vKARBgq4^F$ z)G^eT@Q9|h^<O~&p-o~-x_$#5>Xr8lQqg}~$>ZLBURs&1|JM^K8}N(7E15@O^VcOR zoNfk`X5)n5lk|-nphGtRnaN@RIrp&Lkt^h<syr6=MhwDN>$cmu5yWz9e-I)iRu7Mb zDVfq}U#CR91Z*hi5M)EpLITO8zLTU^wR$4>Mo`NXy><i(KU~McKIlC*p42BI9(dJ~ z!ZBl?>z1o;tv|JFMVdr;gGt@ujS<w^)k%WYXWjsH<Xh|Ym_f4c1`x|-P{zwZbiwcd zWI9Ptzb^Fi8k_mT46H{pYU;6zp+b`?_7ol_<lSP(*z@oGf;2-#NaWOj(b`X3KCGY_ z2a=Q5X^y~Hb&6IeR=0WEz~v>!KCnF8f84(9U}^>6uCMla_f=PqL=FJS_A-PqRfX^G zcK2w_zBFCmZgE+1Q2`yz=?txYe-RXOhUH_wYY0xexPq1ABBpT0%_8gMw9S49ZRFwX zq(3Iuj9W?mB{Wb~7k=&9oyITUR<yx}T)6dbgH(Gyb)T_^!6LKz&Iszl`0&r%%p7^g zk^3#qZLS)SZ6beZdHG+-w=l;c&;1ZyH1Q$}0e+etV@O5A5KOw$sL^l@!%s*EV;VO0 zc4Oa(sOAS1fjgJt_5t^cLQ>HbvbHt<Qm&<*Cvz-0M3r~lP`kGIZZ4BJ9qXAqLo?-D z0Yaid7Nx%t>RzA>(urMv7J$d@k1Ghq?nlhD8PL50=3>;16Ge@ft!nC@#e^#MsCSo` z178Y?Dge9VUd97Xf=vW%SOxXf^NQ9_D2D=T_{b7J0CFVUB0Vn&@@(k7RNAxCu#}A2 zkQ!nV4snY}PyEwWP&Z*jWj0K7#i(d>JvLQKHzZ>K<dur0xmdIUQDI<Wrsq&?orxy# z&;elzvNPFV9!RYzdPk&M;|hxm7VTofU|%2mWk4|hW2OBdJ1l(u!{Ff}qY&ZjcR;Cc zH2#IyGh=KOxh4i95_6S0jwT5OU%3HnrgszM;DH!HMDXR7Qc(=MCE?C+IHBOv?h>Io zb;uP=%Wfd!89dBPP1*Z~((^|be$5mY$<z4u$@qHD(%1LPXezhU5-^WgkIwmFA!|0w zz3lHOH2NC^gepl0mNg!NrKTf9^%ICOepFbJ$>?pnXw_6Q<9SdbA2HeP1NJ-w?q?lS z2d{c+LLKRR(2U<|_nhK=tBsLN5Xux;m%k&y8IHy8Sjx9!O8Hgtt$A^2E1NrOnx9e8 zgk-$qeu#?LAqQTMT`Ur!kB(rdd_n$(EI?I${Tg4f_7hYgNqzjNvzdQHpVfEe1FTIR zf?Yr}h=@2q#k={LNW`bT*k~e@iA?WGO5D+Y^;lKD+#2`c()>XTvfCgr$*6Z9eLCtq z-~HKHuGJ9PbeYKaYMlqw{Br)Z9E6C&;G>OPQ3&aRSc|c&ZgM9Vs^Fj8RK`6~sL*nE z8gS0iOQao+&p`!$U(e)Tl>Sj$SHMC6p71M$#Z$Wu?%N2<h^ub*USa@io4f6)d6`{s zQag!N%?*o}EqT4Hw*GjgMydY}9!C4Rxsp)%>DR9B59S)f(h7AQ$HWbs`pY7{k97iT z<$=OJLNbZ80<6iUNbtw`(+8RP)1g%HXG&5UENA79D!ks6BL02t$I`|KK|WK3rouTE zMkf8KH$I}kmZ-2J-YxFwBQfLOTcwp9A%8k~<LIn@Vb86(%<CK%0gVUibN%f2%+kLI z#y{N^9w?Pk)x!a}mgJ=MQ!*6cx|r9w!T3WNzKbIN|F&o&iNJ5m6_T`0<X)F=O;VR- zSs%Xq&62IsY7W&cHRnXF`jnius)JJJ=M2F0{`Y2;0ye=>uXr7VVI;f(&#2WaYJqB! z6xvO65ITV?n6*#@H@4~Syfn+YdOh>--<yD<odAl^U04qpS2~WCsH1n!{40NwFN1A* zBpqrZ|01#^M7fP9#UmTRykgXUMfyJnG{}Aoac#;$Np}hC<7_akb~MuP38+QCM4aQ} z#BuEDYXocP2aWo_TbCbP&L#_N>%-R6JD91ykY3m}7bghtCm|v$TrQ~l^NR`yh%kuZ z$3ws$%)fX4Tdtr6BOHJofc;+&{(t_12m*e=06bm|4s!tw+{1wb3t&|wAg~v3z(2tS zK9=vFKtMj8MY{NS8Wse^S04oGB2pOy1QL?RHzP57NW<y}Q3HQ_VIKQCh&k{$@CJ|u zWe8xYiv?nhf1wXN_W!&xL|#@59tQj4lfz4h3o8O|`}j5w(4fHbdok=YaQDeUQA`k| zd<^#x1VkBDLRjFttM=(CRAXG<EYw999&CbeM7Dl}XbvGZ8p{F_4fwavHga=mOU4Au z2<)wb7*k6|{Rq;zLRI-*Y=xhNs{8_dUpz2S6-qt%*awHJJ-SxgT+UZlxz2lfuGd@& z(m0s+`Ao*rIHs+E`6WC&{2Kw+6EZzOg}U+|yB=ZI(PE`#p|Z=$#(e<zy?a1pD}dNJ zlsE0A<Ycqtb$^Up<|$zGtry+L6&-I~Pz0U;#rgC|wB`YzKIYI~k8#<wIG@^k6n-BC z)u}!SHD7P{x+|ap8WlAUC|hG}>po}+Htmmlz?}TM)7rqpQAx$iH-O68d*90E6*C;0 zXmNHZcXt^^-!6|~Ixe->0(#9$EU`tYlwZi^E$D+U^i80;HHw8NALSBlt8?~;PTK%+ zm?uC@)&Qnm$HFy)IDC8;(PybvuiK;b-Y+5K%p8>d{(wmHY>Hz%#iINX2wfH92*m@; z$M3e$H7pt3u67>G9xgU{+;0Zn!lUFtD(->&(UWm0`nDUO_8ZAN0vM#)mQ{WB7B}8& zZu>@N(02k*cwY_lG@MtR=KC;oxarRaVn|}DZs#;i);}13+`j<MA}7$<(bu(b{{m&) z<42z9`P=^TZrMgoBWeb!0D<!%*lwKH=Q42rZ8w}RlXK$)L)){c)fxF*Hl0&u#4W26 z@Q3l|4=u=WH-CS<ANR&(x80~;wtk)zBM{O02n+yzR)=FeZr2N-a!L1U0_d9fZaXm! zV;tmB^#Em;yFv84-O%hKYF0Fc_zOr*Ybzj}Ii4+<FDl4L@p@kz_r3#Wo4YEUfD{Vw zCh0%#c=vYGlx$i;fFkU(sAx0B(uXW|t7JIscz=Tm@N7A)w^;Xnvp#le+FTlL?-&}Y zIUjRbbAwXd<B2fVTT;^xA$_?4cIMsjd{nK;AO+q>&t@>3ehwR!rm_=g`(XMgI#WP= zZ+w_;QSRx6rPrKdpXLM~;d_5kqg#k8^OvNeqOTJD6qc*`EilN6h+f2_JK*yS4DlSh zs^|6SOv9S@b6JD&)4jH`tZ+fbU1H{0?f&$5c+2xyi;vp{^0tm^RTACT&0`Gi7(2kY zA`lke8L#^0BTFuXJcA;C1Sp{|0G9SD;Ji<K3Di+e0FI~$Sbba;+#{2SrUAZpfg%C{ zg^V86f#aXa(<-lqsP~J>$<rODCjJQ32ts>mYuBefpk3nos+yu)Qq!8n%CIsbgqo>K zP8)ORvSaZ9a30HOvt1>~SC4ZS`EjfIb^GJft#wwfC%pUTH|2q9rT6n(gGgTccx4ri z{gLVN=B+IV4AlwnH=sfU=C@oCFcRPVUfv5fF4NWQfO0og&d2@!>=lTJMCscq(8(7r z?$xkq>l5ZQoBGQ7N1xq!lx1ExVsSex+}BruSq_T>IDHT0)vEdle1H#o<8rbPvli@% z7#8v#MnsY)flIODi!9z?#AJeCgG<BdsCw{JLa*VR9I3}ZE_nQ2cpSLDPhVf+*OV!n zd^PT~#xF%kRFLU5cK7Q1IuC}p%Jfi967|S4YN~?Dbk3u5A*^5W`S{y-rCv|c*N>>m zkT6Ti-Jc2u9j|vS0OcJR9iFbo`8txqKl+n1Nj&ZRg-Ws<M#)AAiw03Vf?}q%6wa}& zt$@Jd45;5-0Iy%-H3xvj?F}^6>3@aCk=bQMgRwpY`)u^lSfPi}RA2CwHx?=t?CvF- zoZZfAxNNMCmCLH|vYL+sp^(v4cD^jxcVG6GwoVO+;oi0Yxt3QuZ~gQQE7djGZkb+p zdcFf5Uo-a7Se-3*jwb%}G}>)jH|?SyxqE&}cN07w?}i@`pX-enRHd#i%j$=<3hb&L zpp$>Do7WC=Ma(rNCKXXh`8`VtC0KJYqF57bOkaPHov35)-EcdP<GPltJPiG_cH<|k zb))yZ9B;DYu$53UW-=He&klwZ{cYRggynuWnduq{PeULuP>f&EctC6OQ$-l$#jCgj zr01H<g`jo7{;Smur`PkoWxWnYRWA@N)G&n#7<bOX;-PCmuX}-(mm82F`VqVN4mb;; z*(SiM2D;__u}~EkO}-(2=1S%hkNKKs7y`Bko-D(<UX62=eog~e*F`Ms6bHl$?*b{& z2WzkW=?NNV)x#Cop3kTK_^-zqJggmC1oKI;!-QXS=CnOd6*!_o+8p-BLbvK|0m9zG zz=*eDcdm=3_v7v#NAP@Aq*Gu#9Z3#{z2tGlqi5b(sn&nu>sU;}x?M16ddEya<U6VC z7mEn>;krF`d9mxaGSP89nn~1gKkPx|9k^=0*$Q)WBlmi_%!Go&wC~5ee02e|G<V4+ z<&`g2F{IB>nKVMfx(Y*6#vJm?_-XWQFGK6}E%u4&E}90nv&Pebq;9s=QA}9Id6!Ae zz^_@uXBA`kjOQ3S0`?OfM6x^Rr^ZYK+ZwxWC&>BCr@OEZD>uggBB5U&eM@IH?DmK3 zt`z-date6jc?fE%C%{Ij>wAo{IbtA01Hi&=e*w6vE4u#h^(*#L=luZd7trTK&)en+ zu&G1=&G^4^iCWH!wb-y3AEe-YF<iUTbQfm|JGO?=P|0P>#u($YQ~~(nCCIRjG%xK6 z{M3r7zuyXq_CUjiB0h5l?~VgmlnnhP6|5_s4m}5x@g){_q)N66I?o8W?CWD(8aj38 zSVe0``<>Fd$dR3*<Bg0_Dtw2#3aY=26|~X%cB(Bm;jVzv)KfVK2)9U`Q;;r~%-xJN zQD)hv_nx#p_yhmWwWb&ns+e3i=9k>Ll@l_}jX-Ox^E@t%-&MCZp!xJe+p3I;BO8G} zNgT1RH%q1UQq+RcZ6ZqmA!=m4&Z0-%f@Orm#3Cl<sLUI|Rwu0r4$Hltc2>>~g;LW! z8EtQfqj#})O7X7OufE4m2!X>8QuTr4wC9KNI@_vPj#H}A@lE1rn`L6#$rp9TZ9u>< zdRZI|(&ES5ssE8_oxiPECT>*B83jh*#U0WDIJD5ohow~|2E6rkJg2LFZKwRkrEzhY zI|!V_`bscneXaiISZxA{d3zbuJ~Eu{Bh1X5-CenO4a>!7MbgUqb{mIP+mG|*&5|+* zE%$s$7bA_Asg|wU8pkR~9L6VM&ZQQ$o79far+ja%qr|YgVm6#F1KZ4%g^wghEK6)5 zC%t|t+x(zmDaX~qKp@$%Z5DoKxBcbyc*n)KloIGsoh)LlWm&kbK8o;#teCud{T0mI z9pKzGdx<%rrcY@Ug<ncYZKCDK<J$*@h|sY+w`_yMy%QrQ*7i8J9LQ*?5eV3gQ068v z=xsTSci8r)yYOA^D4n;x3tax;EUx5e`ugh8JD_2WX9*YX={U1&Gfo#L5zm&ZaMf$# zP|3gG=ZcG98Lu(}rmE?13XcfqaR5v^^qcVRHZG#bWz5l3RDALXe7Fzix`h5l`D_B8 z4EbdHka2tlzH-fWn)ZH;?<5egHr<__AHf2~<-J4*yYZ3^e`Aq9(-LDa&=$Qp<J0Pw zqeq`;DjR={<9D!Mm_)|5J??4L)-B<oqvgE}P8t9!wi_iVw*%6i7K-N+U}<Z0d72h1 zXG{7k5T9r7yxhY;3i2|gpK`NDEH}F$l<ll5eSoOpbmtUIDOydB??1?O8Lwi*pjJJX z!FqnVoHROGyDqD2n$4=X_u~n9+^*;+8*y^V&~x{@^QjkH(ETnZZ5Qv}%k1!)r%TUt z?ItcM*H45UJO`<YF1Jf+RL<c16gJMA$|TX6C`Trje6?QkOFb}ES^IFoZhVw$y|w0Z zl*;Z6hD64L*t^@Vvj3lf8<v>xcACl-a@c{DE5rHEsy8e4*I@VSE<u@hZss?ptgQ+A z1~M~^dnp#u882qW1xYge+bO29Il{8cTe4}5-7x7i)#eRofpIPSy9>ZI?6Ma{#NMLJ zdG@oa^rPpHBjbbn+uikbyfv-0id);VWnG^5x=qLRnIr8<ETddh84eivSgL)5Uli|? z>q_H(X(hVOON;Uv9%)R06J2m{|Coz}TPn33&%o@<=`tVp)ucsviyvdFSk&ms&7|f^ zQH^~PD~5Js&jF*Hj>l@m9rmE|s%3h8rcHalD33K9-1~hG-Rs-tQAyZ{I@>CFKyevT z%!-!t;pG~YObJxwLiu?;pQeG+JO*%$47G4kvv`9rURj@|;x1c~B<dquWjkxUQT*;G zmpEoI7vblyT;}0?*qQ)I*E;Yq**{|%rlF;9nspW~3JBrfR)M--Y8L(*yIP}V&LJbc zPKWo^f*2~5$AeRR?u5q54|KU(pxR7#(j=8u-8Z!;l$e9ztO+BXQ_HPyH%wYbd2nTu z>8vS{bt%h2Sz#8m*OU7&)+EErEpheE+^?BRp>L_}NypoKJP=kk9sjk3Z^Tj9D^Pa$ zd-l_JV>jF+hD(xr7+_8yxNBsys;R{L?%CZNm8foiIY*kaYw^AnMz7;#v9(h)T<1AE zs<?gYPw>25(F{yQSKRWnTqpCG{X}ZMC%{PHnr`DJUG=fix36(NqmFhzk{~Pr>gyL* zbTNE4L(ni|JsYa8c3Ix+wlfN1XzqObqW9%NtI<z~<uku~{iybUQG@C%O;~-4pT&;Q zPlV-GG@H~eE0iO;Gdq-vJSKr%9tb4SRgh_mF_pkA)JOPQS-3SOkxPp39R<q#GYxLR z;lv-X^#=%a)vPmrrti~)6186uq__D=bctq`vZsO6d$j;nmCu>D8HX!P*B@HBQvl}j zhi3)BQWjJtCb7$ku+2iQO!7Eu^5J|XN+`oLBdGvWQ8&x0n^PaYwFQ{6D<58yRH8VC ze`ZF2kGu)2TcAhB_-VSzpuZ1Yqf`<)-Q@}8lkuyLT#Ru^Ku<_`uiv6Wma!%Jc7K$M zRyP2R+@H0aw_kL_#wxbHf2&1-QcnQu`w8Jh0tcjkOMyhWFc!6Qy<TRx#cT92IQP2H z&-j&!oFFJZ(HT77oz|RJ)6`A~s`+`xGtzelX(X+@d9QojzXG|;UnnUMY2yBdA_s~+ zuI;CBynKF^5>=fjoyz@Fd*UipH_HH(-&Zq0vYy|=*pItS@`%f3y#id>57ITO^pW`F zR_s9OK|Ueb8ElvUGd!UDXl9cz?EesiuC};f%!;LippZvmvkcWyC_seu0H8!E#h*~1 zc^LxCkypfKAKQnhN}{#ThcLudI0Q3bF&_^L-r*TqfDxd){ppBbAn#ik5IXanp_@X* z&s%>O`u70eZ!)=z6LWNMVQhx3x9S;1DZg+KXi^^lr|t<ty!U~3(Iw`w%SvXSu!I^M zs9a1!^KV5yK~qunGZch@2|Ncf)-4n1w18SnR7C_m5aN%ccx&$$DMKrwS)k&qJ-6@k zikR?Qv<LEejcPui1fv3@fs&U|V5Sj9TOZAf3NDE7>-$%%%U=)*r5Cn1R<$w3KeXM9 z)DeI8#@`@w8m0u^Th%W@21@#)egVNdw<xXpb#7*mmkg;vl|RNIf5H^t8$yY@2ETXu z57zSwzU44K6<{<lx?nxX@=`*NWRrO^`+yUYy{HZFQxHb<1)k)l-*#2pKs;wn2qc-g z_X710P)}P2D$)5)7MGMucJ~ZOBKy))5uaXA^k9o$_7J=w!A)A1DnY_yI|4Pzgq^nA zZalP8#Z+1S63kQK6ELODp%4K*i~%U^<o8^8ed6he*E6kq8~mSj1)4!Afl}`jn5=QX z-b`z2#u*lYN)F&`lGpYw5QF{{r@^Ng{mHwPE~@*?EDRv6IzE7Yj|NxQ&rHV|gi*g2 zn&KKLY~5n`Ibgu~KcOGd!imTbASaXDp#Flx0&;R`OLAjK#MS^&-9R)lrT};xgTo3? ze;mbwsJ7lrNx|fL6=rj=Cl3LR{SFAIu;>fXgH*J>xKntZdZ?~Ie6vBuxbwFVQnRQV z)Bx3xPGs!fo3K{$XjQe&0D5~rqR`G%oAx5ZsK@n8KbdMN))K-Q)MN(5;z{k0-+G~% za{_aem)5&q>J=f>y$B&KCtbFF$f^IDdBn82+zZUc+fE>*qa)4w`|Fm6`4lICOfYA1 zyYIIq6SIzI2>Eqr_^r3+h~x$Jwyx*MszjlDm=s7@7U6h5Q3APJLxw!{0kqw?`h)5A z_eQfGP)TslOBCZk%-B;^BVjb{I3(RaoKw8iE{NiP3<rG^1+m*8z!D8^!O5O(j~n{m z@gc(=GUf=;ur;jeRfVk6o#v|eSuv_x6fz?mSXnk-o^K8fL~zseCXWH~%y<S5*4T^i z`Q2pYiraqr>mj+^*Ix+I9=|0{{``h2EhK#|td(SL#jT|1t>mU;F^gS8<a=QNL6fHG zc)3av*}qTkB5r}E29LKRI;Z0K%yc5}nh&v4MH1^E9+Q`;oT5rFDX=B*izSRani}XB zj&^@q0uLu_{?+z4C@oPe<NCK_bDu{kHpJf!(ElK+4-a>5;a}+|)JYqAU8}}FLyMhI zT`)A?uX%hJSO*!Z`TKvNYVE6Ya;fK7peZx0jkfR1wpEa4=TL$#CF@Sm!!S6loBxZz z1Qf34vE$)!{8*jI$IhE!RQmKJBUoMO-Q>)M2TAgb*fJ;t$=^R}TWVN*Ek!mA2W9K5 z+}~k4zA=_0eD$YufTOAfRJ0xg%3<`&N!1+Lizfobq;bDAkW-&YsP5*OtCo5M9m!X) z&do83Szw4&cJLY2Zukx=EVm}ykkns94=?Uf@Bt**nN6S4&kGYuY4jaQ_&PhfQr<Nr zPqMswYh1NVKyAGATbQLruRFL94vSS5Q8gIqw}CCGv+2-z#l%THN~w4U->-bPGfKu} zTp;)BK73BT^oXak48tvI2`?HQsXGfS(m(!SBjHlgaspkY7VS3os-Z_yG%#%3+>_Oo z1}Cu-%xDaTnL3Lf1=OeayH6C~gGENc&;##_%(x3-eaKaj{zAZjQX7*!p2VQSQ<7#G zP1d#Qe!}}&%C0Cly`XA#^NHt4^s~HgNnl@OsBdB`%q56f3qHT3^Ffb`e|7%`sxRK( zdGrnYKu&rzjX+$6u~CgpTvPDBtShB+1HUg3bqffg(NR-+FfK!>%Qxi2|Byk{UYU|i zY_^Xmbuo;|D*Psc89tcI=^<1#v;GFAIua@@{s@fkNUl?1{<`shMI38xB0Vm)4VS*2 zCJ8PzY3bq~BZ$a~!i8GRv{LCxQXsDg0Z)*UcIws>jOFl?!||nBR)0pSBHIy!DRaXA zwg@C@t7QPxa#XfuOXi1DscJhF_q4k7s{$?J<vdt7<6k=!Cw<Y@wU56p%}dIRi@J6D zEd^A+GM~Jf?WB@L994GpV4Lcfk1ES~#*H`|VxFk$!X<*B=P82Gln&{u+)uoC4b~yJ zLJ=(Fj;@V9?w~6o8607SZ&2&~$eYL_`~*+TE;a4X9*0T;xudHO6r6sb3c=tRUH(wl z^NKCsXylqr#(_*b;JWAPFnOka4EkJ8!e>>SC%kk?n(ci(%BB(G(MYf8q!(m0w!j}@ z00r6VHY}b`h=dY`9DY?`HhvJFB>82IlRg0-&ZoLFP<7QmBzSovhcWH5`fei+`H$mL zM_b*YJmKU`udjInf=X!}TW_ew;&D}6515E~zIpR5&0v0TP@%5hFm?37k|96gwHbE& z75(NMZ31FRYcPxCQKdN5e-Z4Bc4&vBludy~Iofjmg&*eJbQ(nxI?ARM_Um6SGo+Ju zTk=FQR$t|>evnf#)k<IEx1Fe(B5Vn96U#`#c?=fxlfxH;NY#GjWex=H*7!+s1}Amd z==h_`)3w@ClF9dWW&8IVi0fMxVeU`-AI{z~s*b4Z*2Dq?3-0dj?(S~Ef;++8o!}B& zgFC@3NN{%x?j%?U9z1vRzCFIacXaok{*^NroC;N^PVKeVn)8`5qb~R5ez@j>jZqmH z+1CD{2H_nrx6r1pG8mTpveIszz;4YwSL8j}r1~)%S*1pq5FW+vM65wtIhXoB>A_86 zD1Hn&DaMV~p{EK;%0OB;!kgGbjvVni94Q1Z3u(DaBwq&@ZyD!sUxkMmL&4`9Bfc)W z^IyS!=cq5Q5}$GBy?W()g&R&X6d0{{LQK+fcO)%3?vwgxyWYeHM6>FHpyxGa6%qqy zb>#tES`!BH*{u(ndftR}&??J%J-)4imzG~*P7ofde!)h`H`ULw-@iC5?!+&ca&bFK z5mL0P;ymcS_A)qnLR#@!4}aG1rY>QkoPXP~#9%|TJ#$X{G@hti{*%^`y!YuLhkjdh zeZWPJp~DpmblV)rbUwBpq~Yl-R4y&(2`b%CqcrJ)y41Sy!x#KKUR8WJbe)u;+7y20 z{7Dy3(q{jDSU4XDo_jrc&VZ7IC}{gMaQ3Sof0RYgpri~1!(f+OFq9}0S~r49ch<5) zm`l((pA#IBHqMC7eOEO502ImGYc~};QP3r?MY7G4d<6#FDkJ!hnpVE5Agd74#(^Ws z@4c7L<(;wQn>hpZmve%2wtXNL_j)*8ANc@RJJ;Vxzk~qK+a<ySB}$!-0T*{0lJoyL zt8q_*RYR}l{0=lLLbWZ=Er0#(hTA1mF{UMj%^<1YLye-}v#D*9u9OPem-ckq^7sF} z{P|~4mNpy)r~r<zI;Zu+#7aAAW7%M6rwT{dwi7|HZlf7_d3Kf!iTygvKhCeHc>DU9 zEA8~WmZ8MEeX>S$cS;&<S(o7AsiA24@krijqYWF#@K@>oa>Zk*Z~Mrsh$Y+<=OLTQ zwWhw#RnMIAmHit!pVEP-L7(BA`xyA-^1n^;5qpX@o^i(v&<~{6fNf!URV;zM(fU{7 z{@EEfl7_OV_nq9SN%qwL)*QbR3B8V6ILBPOxZMs_;SDDl*@k9nv7EcS5Cv^H|26Bl zw==Qdg#1y|?7Blo+qoh(rSiJ0F4pmUy(F-r7pB6{jQj22lu3LJ3qT1Zd^th^3j9D& z-Q!ag7Eh^$K+>GEky>-^Rn>O$`&=Kk4H%fVxT&z&%F3A+55&1_gS!@=`{VNKc)@Z4 z_rmgu6Mh5jN+s0}yLfPF3qVC|ezaIfqsTq}{r>Ow+*KOM`@~%Uy#e<rT<{%ep^57G z+h}gz9D&-4hhanPi!dngK;TXtY17arhMf;2qC}!HLD)-vcRQbgP1Ks0$u==jjh>Du zQvAUT#9tCdkfTpgW?NcbI~nV}!7Mg&c`|i?R7nc?Fh`YjXX4TvV(^yp1I1Wfth%^x z=lQNm!s+LVH*AJ_mgY@QLDu#7aWtfx1rl&VUf`6on4abKuS@^ACmQMlsQ9lhfiJkQ zcaD^I#DT{HxX^>|+T=MWo!BWOzedrRQ?O1|7fD4#Uld8n#;M_G<fo66s0G}ptv%y4 zW+maxP-G^sb#~DjnX&bTJ%Bk_IwuE@!rDzFvNEUBi71jyE|_@DRMg{_FU}IdFSTz6 zkq*<7@#d?+$Pk3SrE*`-0c)^*lUNJbWOV?z3oP6;;zWocLrv4?VDa%8<VX!T!b~u1 zaef_Mz2}+phRK)60!$&LT6i;+P9<&J=ozXs9VqkdiZ!|IzU6u|wF=rOtdb;D`JHd( z1>x9pmjDaWOPiwLaa59mLqYk|pB3m5pKF>+#W>r(K(X0h$!A;QdHbx}qrGky46j~_ zNS@&p*QBm!;)*oNlx^9paACWXk%^-30|q?;k9qxzF>d0?))*;M^&;798puRqn7@^; zjIdrg!1oH%*UXxZc(dho;kpm$+|}Xg9sWRo9);j28FdGnniaYQ?9kgKea8cHDN=A* zEOjYcMAK$p3bhG#VDp?~6mZq)S1ih82#!>nTdKhx_N1njxSEE-!I)G4GO2u#)~U2{ zgc?rdS&DuXe+-hAI+1$k-+O&~uD-Kp&>rVIt?P&PB{l(DqLN$r(E58=<*u)#U=wW~ zj-}n>!`Sbzit?6bVhDkbi#Pv9Lq#Y&B;#Lis?utkTTr5Je%92CT-)2vbSMxiHrM3H zGsaXwLPA2oO+Q*L?O%<({adXxVl>>RS@!5dE176LeJUd4>eh9*`pSkj2_7=bp5hP2 z_WjS_3<Hk@64-v_J|&|5i3nz}lnp-;Gi{%s;?4hIs@a6i6RTb*ZVb;&-bFw>gf+@$ z83~!S^PyO*QU<E%0u-P>n6Ki<ifts}^R27@H4myt=l=9{>WAmS#6pyKc2uO-U9)hM zD;CvJoTh|_9668AQ!A40MY%?$VqpIhaD)0QLv=5UR~=Se>FNN)D{Uc<I^-ixl9X1e zD207#s=^`~xj~y}<H06U9mAx|q`uesmDvn6h=r?OQ$ZRnz<QVzGvPZM)2-tl7LQ6m zyIO?0Y_rK>+nCx21)2Fxv{YVUu1L>L^u24BD#6R{`Oj=eVt<^N-pwvwE1VcSSZWBN zkl$6+4bhM?jB&EiJ%n#oCZ}r_rOk1f>SrJbhion7d77#NXOZ9)6VA3>-8C3(;s{m6 z>71BQwfdeYm5^o)o&`JP)o-=le^@*pg6Xqy;BiYg3h=h|LJXB6`_fFySqk>gi4=k2 zuJ%6!4&8Q=zo5!FxgCO*&)46@Hrm_+E7yC9#=%^aB=Zv5smeSQaTziA2`2jrPYL7b zSLj-vK??c2)RiiR&&7_aIr{#TS1`=7g!y};UC4AjgSB~`TCjHm@T|4WO;nSGQR<c1 zu{4p2X${Pzu;z>!^6p~id=JWH1E=<hUZ#SaNwJp={k-yVqhI3XQdyJmOE}Ln#1+M* zW3=<}db|^6Ps(Ib5yZ9KJ0)^5J~jMl7;%st*2=%ky6W7M*g42Q;3}qT7uUJ|@U`v^ z!~WvC2bz`!6!t7RTij>Ei0%E*aCEv4^@Jt(Gf)%UFT-?5P@1m~XG=WVf>bcU3f3{t zTY;jhuSLsG96vjxtdn_{q8<pr*M4nuUEj_C?P3HN$JHE1?5n5Kya(t9cOseeS?qlc zohk6HrOZ=Af7=@^+)7OH)7=diecmQ84h1RK2Lv-tiYr!x=Z9%(AY12CFM@VU1}<yK z;O*o`*r@v<{&iK()#i~7Y`i%9gBX*KXOr3cE(#o^6|Jbz8BNg+*-EXE3y3fn4Alj) zUqwbS5tJ5L#r4beBu6{rfr~qN)KX5IGg&a(Jo4L|dk~s2T5#Fn9hkQeR_PuF!DIEX zVtUb*;C7uhjL!`-UWtk>)1~WLX4ZKP@^X+%46-6%k(aPI4G%BB)D<rXp;t{6p>Dh* z_4~wvPzEVq&5Tg63M`WipY`;Qb*dk)r91Dr(?5B2fMM?N?yRRy&{ct%L({DEL*MdD zK?K|=CvzM^qtp&jCR0B@e>io<;&%9OBsp2ZFZ|@g*qep}X(SOBbdtE7vyF}-Lc_${ zN$xcy9oa_EF|o~uv)z`!T?m05OZng~Y>Fr~arY^&1`7LdR<ve@mR4nw#%;%Dmk0wM z-$51@flLZsk5QWT^S&&`VS=7!CrtDBRD^N8mH`r4C@FEtV?13!_Wk^|sTUr(iS;B> zGW=&GD=vtjdyZ{nhJza^W@SQ790KOK{KbFhJt+C`!q?byT@<4A><`v%@_PdD`2(hk zTaOw%!+ng7)vXh_HQ9QKNcns}V804Xq@Df>zA2@aU>(xVfQ5Q?k3Qpuz5W;*joZfb zlu!1vY=%D$uhAc==A&0wFXFd*VrD_M=EC)ng>s!`X<sbdQq{mQtQoTk5F&hh$yTf^ z@4gc%;+lGxwga(ivpa&)a#D(lE&1@7Nr)9PPx`M-wM<8!{BJ1*04Dr0faS^!Mnjt4 zk{%|oaSXGQ@{LQX6b@d4ATg(d3ww6KK%S|4ptKlC2@+<Gv=2Tj@3qdR-{}GKjR~BB z^T-Eff!~~akq;;Wr-{E4wcc*n=O8^WHP_)!oLabrX(2sSTv+Va95LcMNNIG?U%loF z#B+qJI`u%pO+dtea5r<H(Wp5JsN~rFeXkGw!}^YW-12(Ou%c1<e(5Kx73+OHU4Y%# zv0~47gw^{3%X&~BO+z4d+kxGnoI7{Ey}HE&n;2WoqUlwpAfD37nqAUe>5O8{_Js*e zAzgTrsbPnRpti<&w)Sa=Ca86vo$|?h9jmu^buYSpB^yP&r#oBaFTh+O|4O1<mIfGz zyl|G$Ry%D4R$$n+BVJ__s}*7}P;W#q#VwqxbUj5tj=lxJgOdC#o5AMVJc%K`Hr{0; zH4vcV-~;za-)mTQL1<6gztN07pc$Bn8~y<Wf!}YmgDob(*lheuyrm0rZ2x=v{rXy~ ziqugl*XAq?m?S)QbJ?7A4Mw~sYInb-P68|SLgveZn7v#=A%ue%qgYldXJG+?eQL)- z`TSicX>U$&0iXgwRooDXkNx7wsT38BO)B`bpEPLndxB&7I{q5W@xzl-QFTUkQ*!mY zuphcX8#(e;H_!3QH`YRN$gExXk1LD}3A4@F<G5UucW5UXW|}kUs?Un(Q@j#}{Xrz} ze{<JSj!|Uj!%R62T~yG@k_EgoqSWB>tVnF&g;X4nY(}8I8gwBgSo3%5!5rA1n?{V; ze^@-y!P`?LQkx6?_O6?g3TZ>p<Yu`Z?CE%T-qa1PQK>00(n58~roR;_gdUvzVA2=( zF#iRL)m2%#9_A&?1b<>th545@7ZUpLku)9AU(r?*tEPj9H4UPP+l`qC(=-$E+xyY$ z@Hf5eEX$S80fVI0Qe+`e!QB~W3P=_xr`(A^{20j3j+)o*EG^t=FqwRJSXy$L*gTbw z{Q*Qt@oajT$@Q1VW1L6^%mBU9yF;L4`1iHM2icd8<qS;BJ7J;4R{Jo%_P5}2v|IaB zP4>1Ov%%X_@~xvz9Ys`eAOo)hg@|;O%glBWCnqAu1uVfw(fmWSb{JFyJvo4d%Ms-| z9W6DIgIqcKQTt^Q|BpxYSdlk%_M7|JXJ^fnFqx=`@JP}YlhJo^v{ezq<!O@pvAlxV z@5(uTp|->GOR@*!ed{ftS(SEe2TFw*qMeL}&T}bwSx9zqj4Pc}+1loXV9=meBoj6S zqkc?dI;NN)=4-a^y^#=)Kw2cj`mVazM~te9Ory}q%zm(6XnrPTJGi%QVpaaHfzMG1 z<S(=%N+H2R?sX>#qM8nOpPqWiPxZ>Md<-Vvkvm(^q<0|RLknL{E*tilB4NPEN?zA- za!<*TUr>L3!X33#bccbtD(UqLkq&X83*O$Jtrew#Mid$>5mH7Ey%Dr1zKfWE!5)Gf zg+YJ_iAF2Alf{&aZ_h%qlCmRf>;oXRp;kXoE>3k*XkIhPc&<lSLeZ3$I>^j=0CeP_ z^Z=%4kg0QKwT26eSYbk<j()dS%0@9Zjf|p01{T^(3hLZhd3I8?5w4X4u3^}V^q+=D zYxe!sFiWd|9*&V1(jW*130ee91U|GVYuXZeCyg!DthOS|>0y3lJh*ak3C>(~Do$;d zjFW33VS-#~St3``R-4|qpYCF%@~RlI`(T5VS**HcdV#_#i+YegcB+|Olq!t>l`_OF zu_Ll6M}e3xmDn34b`*<)Id!1tRxR-0__V}hMbWrGvN$7AP1>}GvH1lUG(?`x``_{H zqsGKnLp8dEU7#ZbFI#PKu_!+dT?lVm1(%6lp$EZhjqMq~vwCOaq9U<&6fRa!=U0W3 z&xz1$I{c?ofSq6{l9og-IPkkq5>ggz=L`x^MEx+~=|jZ`ez*P$o`gs`jJL$4(Quvs z7u%V<`bbwV!qPMaC8Ryz(y)l9QCluhS2sI~0@aZC6w1OU*odg--4B9G*;5nGu!xZk zrx`l-4Ky*z*nhl4IEDK~FLN5<I9b@EpE7%(@-mfkvDwV5;=hEgs5xK$WYcbN@fSSr z0h8Fke}Kg-9abVuf>Nh0E?^s82q8up)BoLDcZ8cWZa~-EC&fB2$8{1}i}CSVm2o~K zhHeGJjAtyi=o*bl9iJt!aHd?2ZSVXAjFujNe-VmDT|JV}keUE=$vl!2tN)m1L=a4& zWZ)Vk6PWcRa^Xqu!$W7Gzu!_Uw>}}Src2A3E+10uPpOcOZSHQI;U=1km$;16fj|pJ z>3XC~=N=`e=#M@?pS>!}p7v*Z!J2xysF^>n#?N+aB+W#N`>C(8@!6x{xrWS@tk4NM z4dOH$9b<6i{KEhYp^5Ma*HzY7tZawaDSYPcj6tp^*cR*i!+3{5E*UrvVwpVB5(H(( zw9wPRi8ey!2EN=!z)Z2iQcQSpoi5kZemkc3!Skv?w`EX@u!(I~szR2k#CF)%I~=dd zWxI@|h_CB5v#x8XLyeyii2Vz!Gie*h5-A8DpB_g9(hl+JKR!X(51cCSMA>V?$FoKq zXnkyRbe+{EZKSA=CgnPq<%4Ea6|EWR=v>QK2J*jMv%@!OTAMb!h6rYmaA>90mN5|G zh%l0N5o~bqH8O?0KMTceVo?*?-qoa_;w(cWQX|bo;zqnhx=c!iK`L1JQcYPOW|oov za+kV;vx~o8&^d_i0Jh!n5jxh!rl%2+K2ZKlgA~!7x(hLHHK3l~6RVuC<7}F;7rAGY zyE`o3PXtHs3jeUELL{)@XA_^GG8gz-Ogo)S+iE_>LOi!R@+OsxJVMr(&SYOEg(#w( zRkTiHx8-O)$m$fH*H{FKc8+1VAIjELTW=dmB3P>>Z+Bh^cU-t=nfdQWSs1kGMY=lJ z0yJvc@>c$HEBL^$Nm_I3kFJGu<5&toIxKgGDpZdgEFGL^2?`DHJN7|CdJHc>v_u7a z8VR2}t7UR0YCCWnIU|}Rj7<@6!-oHPO_7V7I!!Q(LSZ>tD+wpRelV<H6;ya?Ega!* zBV?+RZxFk~Aw~4nmY!D<#T^FnZFg4^>$V7@(L5N_mUr?Kkp<1xw$s`78L+osK0&3R z&DTY7W1j{fue{Zb7dwkm+bEyF2E`P0oi&@cEY@TM^dc-amAm#v=wNl*tYjT+)Tnn9 zlPHAPKqq}ij%hDB=Hs>ITR26`OmaOcN-P!WFkidSY>I)@nV*>iF~9UR)FagX>Bq%3 z*7lix!qGAjM6|ojj4vM^)Htd@N6~q!foaDXi_nbsY{F-&@vg2;NUcas_8RjKoG*O) zTJEfWi+~kWOpDpr*Qg!+lW|mL`W@kgQeyA|eI4GmY0-GfK>-|dr<tQJ!}4DwBHCOs z?+hd85K>f@5(qQwy4Kf{UohHY8epuv_SG6+XVPdLyp!%B`h2=-E51cq1GP!KJnxxr zmim<=UqgveMpIh9+gn|$1U_hZ6gPXr$+)uBcvsk_%~>v5O!8`Gg-@l?6?<Dy7PWg( zPe%mpBGRS4cjfn-n51Yp@<Oz<>LR2uTW!YZ=PSNLj6pcDBmfkHzdCKX{Lv@%a%S$H zVE)6OG2la}f6e`=J)O_jDlnre0hRPAaF;uM-IVN2x=vJ05hX)ERJHo20Tlkj{Du!2 zmV>)(I_oIf7z(hFt6D;^%0=Y6d2gW-Kk(!A!Yog>uMKs7$f-nuE@NhPCtZ?%a2jJ* zbp)Ej^}3OFza-4&X6SthBEyn-KNY7=JoRSM6T(X{=PYw_S(@mwt<#~C$XVyfY4OFI z-jBA|v_VYhT+Zs+PnABXsaQB@v<r%W_F3TlxDmEP_oaHO6w`xSsTat2XiqW?j&C(_ za2jBncRG%or)xL4>=U6BNJ{cnxi7b8o7~M`V#oC5q+ll8i$P%I45~F(jnz;dKX3OK zTKa<27@znv_fefu#9N8#Skc;<&4t(5Lc^!c@qie8lo#Fe-tv=--?Va!Bs7J^(wwz8 zZ;$zd@=opXSU?<CU`q0EPS37W1|7?Sv0W5~?fsKAN`!#u$FTeXQZz+M{1TqH%O&#K z@RLRVDQTI6J=hUzen@G(uvRF@ySMhar;%isRuhtD@a>TaC{|exWKhriwH{C>MRKc% ztyAZv91_V~%>!uX4bSsd2vt^_+MFUMz{DPXMb~W|#6tPhG_Q>DJ~S*_j@&EaTYLVc zxX9mi*Q7#Z>(@L?B*szmFci^rmX-nKDLIVcxg(V2Ue_FDv?A7R)NF`?Z<d4pZ0?E{ zD1!=$$4$DKAsRu7g2-?8TOCo5KD$s@Y~$yPF$Gw7&3+I3$Gd}wmjJ3Y>jfYc&M#3% zAr{09!$TJ35siZjra~f{Rgu@I$lym&3Imum)gp1V=%^oWp|10_p`R<iFaz;?vWjqf zizLG?#r4_7+Nc>vECnond8Pp@kW1L{&)I3tmX0ebr34Wub0o(1qX+=qQl7;8DD`5* zZci}uo?lBcYCVIP;_gpLF3V=zdf{U<A5W9TZP@TMM1A|_)Qz}E`91gqx+N17nNc#| zuObd|1E8pPA#V!}HFREM-3T=v<_xhW7vqK(f!AzJsHD`i#6^WbZ0bdqZXyvU?-&#h z`&y?n6JSr;ze;$5rjjEacj{bp*}9ot(K}?l{_873jyo^OwW|N9Nmv)z7bki_6IVPF zZqm6X#?$ehzV^AcZ$!wbVm>0z2P}cX2My5Fk@>U;?<FVu;Fe(=%pt4YNLciKd!-s3 zd9BowC&JaBT1NLU2Ojf<(;D?(p=_rtm@s|8{Y0cc;7T#@ga+pk3uE$UuSi7y1p6lK zR|Iu(jCC7bZ+%SZd{E}VFe@}<1l%kImkv=f`Nb$~Bbo(i5>zSBT@agR_{Xs!ntWx} zJtrtEi*6%m_wErVlAktcgO8$DN)>~_(o~qBL@69tH*Mfj`CO%A4HGfCdxx;@j)Wc6 zjcYrG6g)8~ez2A@gxLTWvD<RCvL-`F%t2dVMo0#2UJg~LoStOcfL~lGWiD#tlF;*- z9a)LtpvctN>XuJdiekPeS8LdnV^U@<xicminjwTAX?a!CpPrK2i6)^ImhCne`HaQZ zR%~Kx!d5XDqZg}}Rg||om(G>;ttt-Uy?GJ14Ukhst(7z<Y~yvgb3d9bny5-c$_p99 zL&aGgWVi1{Cgb;ha<+JYq#a@{@B3$PqsuJ+DJ6hQ6;d_KEt13XBB>!Ky~OLm${Ksj zrF(HZ-lWFu@(c0_Z=y197pmji!$nvGA~}sHXIkZ-idpno`4Y6hG-1c!Y1C+;F<o29 zg1&qkz(kUzcZ1LL=P=hq8!2X?C5vH{UFiRr@|f|9qB>cRy>2GW`s3LULY=Y4jmTqS z;dcFHV^EXr!agnBx2lo!iObK6vH^G0a-%I!y1YY~iDFDQpWZN#LodykWgH8*hML7^ zqNDXTF!K4kg;hjk%}c7w6%k_wsQuy|-?00s$5Ewbj?XO^D+i74s3gAB?kv9%tYV2c zJXd2<F`Z)S^T~77|Ll;;8rIxnL||gyIj>*lgC#SIetj+^HcSsyxmZ&@aZ)%%L>3(W zz4$wxb)u8oaEOcmxjrz@Kwv~5k}7#S&lU@llQS(wWIYj^RDeU5W)Qq6*eu_#I6^xr z<dwcQnXhzD`c}PXZ{?Fz6H1tFq>N$<Qm|1E+8Akm6f`Z1?*w`i`UIN3)|c6K(Ra9g zT2(DSYrYni;F+77^#noc)o=QoNO=amYayVf*NDu^)gsYKsne!gr<512(L(n6be&zY zQ=Gm^05|QthRVe#$6Imnoo-lACb`5y)~uXBRv2H+I<h8iVxl&*b6h#QPB~WVyQ=@S z&u8(6ESftdm?&{n0dm&HJ2qF#ANfNsc;(Pk1+Ec-I;~eesI0Jb3zw>is*Yn?m;}Yw zhJ@p-*Pq`Is>d~HJWA}mXEz9ne7R=3C8~#5k8UqKkGw}qC~W9i&mW^szImhGx?-8F zvqzdgo6n`qkiYtZA}oEU5fzSTu6Th)Z{ZU+OHv6ZZ%QTs`Ia`U%&-Agnsmsz87Hdf zezQJa-7-xyQ1YzN(9EORU=AiGNgMC*KuexD2x>g0qR&nKyK1~=i+&oZZ4IejJ-a<( z0@<WPI6)~JcQ<^<*1)Ho(A;Izl4d*_w4m(rwVSJ_Q!5c@RP8N@!O_?|>jLB=r8&y+ zL=2z#Ft`!;>VKmYe(9vu2%?{KQ7h7vOP4!k{RS~a`lmylL|G!SXpU!*OT=YIKL6G( zlv1_7jTr60FvR72Lkj_AK~s;(u~KmcBW?PJTNqWT-24;N0D3zkDLSewomhltVL42Q zxi>kUY6?1}=DOl%3rQU>9m#b~9q0(!d&v5MMPKSBJc^Y3569}=*LSomeNY8WBQm*Y zX&bB?a<K&U)(gyog{q594&TQtda0DoCF_OdBRb)!P~i(j!>x0f!_GF{{Zd4#lq<zW z5GmCrQELUR5w)#RB6&R6dS#$V(`f8_r^Q7q*IBjq*!QU)bi?G>WB*1JqNOsGAiIYq z>KqVHBdQPz@)+E_IVZRFA#>BY#!V!{+?0!+lZ|Exs!$uZW(&ZU8f=8n)28M2UE8+l z+jVYjS6_M%Yj9(8ag7TjA1_$YSf1>r{?5LRS(IkFr#qu)se)Y+`SS5sOH_B16nA$V zP2>9fLEKs4dl9Shj>Ck}7A2uHnvYgZQ)!M|3I=zy2M+&I<zYVz^@)UB9|+$*TJjfe z(xVB;+bgcg)&7yVsve})kI4V-{b#%4t*}l+o#NuxFCB|)o&|mO2xw2Q<s^oEGj&96 zoSU&)<OP?QA56itGTQ>o<fJ%dO4A1R%UJUrtJQKkQ*4Tbh#PfXxfDr(-f054jWTx( zIi8l*s2&@vRpWU9Znjjk)huJRayV$WiGUgNLLf;QHZ=+-B6!V-NT5L$1&y@>L4ZnP z4acYx(m;!lCb(4DQf{wd`7)z>!(F`FncBHhTRkP%@KJM6N$+4btEW(~yTkyz?H7cN zr_Y*+1+(&$mJIJ35^wM5oSymBTJK)E?a0uWDV;GWA}Ax{=y|I6%*b!Xfvu-b^lusI zHxDX827=jndlELqn1aO#Zx5*L7=)B#__ucIx6HrCvZR@}hd+w@Z=a3+4%veFq5s|G zxkUpbZ&>*{#oxpUDu(@m%>u|rdEv_6DZ8HgZ|B=o_1VlWE79B+Z@lSI_S1<nPr?f! z-Jw72aP7x&lNf_1G*L;}YMrN2j^|VnjEQa)*7^@loD(jGrjUqtc!w~$Uqe?@*=pzz z5rv8mwvQDpn6zQoB@~JrC*ds{p?IUy=Cn7}OYZg%Ih75zl&83S2Cph2A?cbn@)WaW z*_Y5`-XY@QQdhI?p<2KG26!ZA!PVi3@}ud7cL}sKOcJ&x+m!fg#Bdq(*2pc~FizLX zM3FseO-ObKe*#>Dxmdonx|VMTeVD)fv@E!jG^&SI&_YDwnbLVmaSXHto2-gVU*Dia z-q!&rhjcamV=1?A9|W3*d?_6D+gXBL<McRmxL-$@@m@0&0}Bm$Xf9-?0<0#o+qeP( zBhm!+#XXm}K(6rLPc8Kz=ozKABrL*-Q-W1_j@a|?PQw_@^qpAFaWsc-5CxQd2ztcZ zG{m(Ms9q^mtn%J{NF!@P(+W-rovtx%q10D9uPQklOnO5gB>OUN<3=L<FB-$Jgr;|D z_SLG4{B3${a_~x&yJ7Hp;zt%dUT-BNB%%^b4fj8+YYD2!HPYt2r?c1<jd3CE>t&M= zMYvER@6!siyBfr&+#QENj6k9_9`CQM#?_39<RaRaF6Tj|@Uj>PVf>ScO;@Ew?vWzn zpg%$-U(P(utW!}#P0+R;=E5>q!Spa*npPruXoEf6pg=2N*5)1>(VzvZ6-p@`*Vh9t z07_m(nS~vtm9Wy-$*JJTUfmX~%9SI!ik`^c71(|jX{4#nuBgvCKfXorIk)FlvEEIB z*`o-CPMvoXb3w(e0m}Kr8*DCo*QgK3&&^ofow^ZUj&h^wJ@#bT0wd`S%XQm&8Qy%i zNkdal5?4RZj;?F&3oqT~!LoFs7Y0O<d=K744+-0{TJ(}A=$bJg6R8<{(e&Q!`N-FU za{_FOSY07&SpUvsPtv{vwP&3S`?~`}H~jDXAE>+5&b{m{eo0o_4-PsxQYZYue4<AF zHW2KyCwgan)d_<@+7lk7cS!NWvA*u<kEP0)PWxnw<L{y%9OZP&0%!BTG>=vAI0ho) z-CwwDuy45g)P0Xbp<#TtdxF6vu^mU>%%E;py#H68Z~WLc68v{YFf0&r@TDW=F6Q;T z%!WV>W-0vWe0{dkSjLoqIbA3mA!94G+k=F1eu=&)Z!Jh8)9%=oL>ZshhhjAp*+rzp zcIg#z;1Wk|n%c{wSjT9LW;HFjzI#F!li+|hoyJkpAYg-C;=)*>LTLRK#c2fsm5?Oo z==`kMW?gyY0fKRN*C7UlJJP`RkSGOSctbfxw_P%a-~{d8<DnD3AEd+q7f{W3`zf@e z!_kjJ^1m6ynG;tP9FMDRXq!(tn8VYcnYjwlaC$nJ#rdw+Ik1z&>np!^K6}J2szH48 zmT_!Pe=L<(RTl--D@18Zm-8*3fD|oSESeia#M><<o*a_#l29@U>9gV#6q$v73XL8D zv7WsUDJ%8yZfTxiDT@w4@EuSkhFj7xivx%PPhbXZ%r~}1ou-DejSf8MSq7t83)d86 z@{lbZgGg^k4ddXF;gWPi`m<6qLQr|@^c#$ACWUOJ{2-!xzbks<()08V=i&NjkKR-! zG0MN1n((ohowt&PKYlHC?=bzhy0KVUoeg>t%d)@|zO#e2k-t05xYTfdlvmV;RQ9}L z-IU&@6ri%F;ziZRZ4q4I6%!2#=YlUO^8B+Y3S&OQZjHQ8V(Vqq2SG&|0Sn1aF37Tu zHqn>F>H{|tN!x892rh}S-q>f}8FWI@#n>d(AU!deNGB{|C^S(B0rJmre^NlxhdhUe zvmmO@&2opyFJ(ifd^Y89b3SCN*bAF!_Dbr9+WZCM$MFlgkD=gSod(_(dBK>rcvQ}m z8uk(9yg?w6?oXxoJDOlM3tRLKlc~KXF_8lKj^(sPo3!MbKKRYUmEv^?j)pJaDHpu6 zcE{CM3zV(`@Erv9J1z}D#PRIalbnZ=I{^M-Q&=ePyujH-lw|n2^<vX$aZBwjU5B$^ z-5=Kq)HUoLDlQ~HKVv?X`aE*J`ChTvoylbZ)JaUYdWC$i-$Qaj*$y%+6FYiN=lqvf z71zrHXLES~Z%>druv_K<H9T+>_!5%c#1inFf&R)oo>dMRZ+Q8xcg;bmci&r@r<>Y9 ztVMFfI11c90A#WT(zAN#7W=&Tq%IkPrIKRhN73Q*vY-=pfxXZPX`n>x<L1uUZ;IG$ ztzLKX4hXIy#`rJJ(5-P}#-p33G)MlwI&1=eOh!2Oy5OmRwJjs9ff7YC2U>iO2xLgT zDsezQg{@H<qNRbId`+FmZ*uYMj1Z%)+f}>vVhH#=J)p2|Kjg(rf%obsilHh0&%@`h zK_xiVa6VCi$oWIR*1a~F9PH-&I^rEvNCCnR(})2SW7Ot5-J?Pu7s}P12F!QtrPz{k zg?AP8$_Xq4!9zOKhE8EubdYabHpA73kc1Y^kddKJ3`70=i1f)Rtg-s9f%?E@^V0Uh zulH;><m;9>Y*$HFZ4h|jmht2S$vuU#(yzWtrm<iE6p|BkD7bj_v2J;++3Rjh6>AW} z3zFvh@AG8{d_11hpjK4CA~prfUKN7+-H4uv_h%fIvO8_6y8mmb7<V=X?I`T&z9i%b zSd*K!<H6|A+|MDTs3`uyp5A$7wY)r{VM-}Pnq%+*jTb`%3h(H`x>Su30_I&n7Pma1 zH6#jePB#!0{RYxDZ46+=egINYjCu|+2(DhsV<4LUQ~j+R+hoM}4h91g?!xPxz-b*2 z9}zg2_d4e2^KAz~OAesj3B-R(zfcr#KQ{Km<I_k(a3*c{eIHqm#ngg+wuy}ro75uM z6Bd*;b;%!aR+Q+C38!E7YS^o$``URakBEBM^Oejaj|m+P%|8k^ry92jJpnxp2sutt z#I<R+&g6Dh5`j5|U4Y<o8W|Rmcm)s{Uh?%sj~*He&DH4he11ola<B)$a=&AE^@1^H zU|?n>ak+$+sF#Qe&EBYcG3xio|2^AS;l-DVCYQ^B#qN74E%V_;6?!jpogyixgkhwv zaE0D#+W))Yaut28l&;@W+uPOIe3iZU9Mv~THu<ww2sDx!c8O9ZB)ynck_Ey*$V-Eg zwbYV&_-HjswdARWCYk+UBFLtDiOKi%jtacW-U2S9+&m3MXF8>Er=G0jO5LK~Qh20? zd-x`#+R8F))X{iS<-nUnO?0YnvG*L{oB4&vW0`EQkv1xsDT^16S3hNAQd5@-DQ8kr zPi>GA+Dh%CeAFvLBYH=46`3wVfllc)c25E-h7%qgt}-2Z{adc0C-DS3O^igZV@Mfx znIa3f#bx=gEUGSpb}Lcx#D+#nG=$Dhn*UiKrXc6eD(k_B_MmMqo`BOjQNpzH`U2bt z0!LsZ0uXlb+1~F9LlXe|OExDP5*pU2;j)ZzyZ^%{U}O#R;w$`+5{L7@7p<PI0FMA1 z+PP~(y#4}S_@Ae1vT?KlfMBo@b#7==!(pe-ychH0vHfF|y%^*LgJOXlq1%jDi(sb! zpE|5i0}z5HIKDpkE%=;Xvz9<m6;M>g;avWKudv3f^aFlwS{&ubJJUvPmb`FWY@oq; zB9l%aCc0o8sM~%<7WM<n|6pVJ$LW$eU_Hu!&bDvKY$Wz;4Fnb<f#)|+eJTmvq}1Ue zd_jCt_;$&s!HDDr=YKr(CfF%C5#!T$btCiNu;<IoG3vE3Xt+l~gMyI4#MzVXUDrCI zd?ue<08C#LOuJj1j5+o6>H93%oniKJmGQ*?c`yMB@tdDfU;t{hTxWumiFO;k5xmr6 zvY_V1^L-HQ2FU!K(qi5Fhdv3+@AZuEpHxE|ZAT(w%FC|^gVmRQ^W?wPzcJor$JVnl zgfbeXmkDAfR*RyOvDl8v5aK5#iaTVEur94g<AdGs=Dyl|%JtSaKVN-U=4e0lLmE`h zz%?u)(MTHzj&=>o35^PPeyBJC$}11}pt0=_3ycpTqP~jg+d<ha2@`3zl608Wd3D>s z4&|{|jjHb~t?9<-&C<S){uO&6uA%?91Qcn1ZqylMtt8|RbhwIZ2UbucV5<_GYM~&B z`NI<!Q?N0sGmz3=S}E}W2h|IkTMU=i8gGd-ME6e1XQIIQu8@!_=$#D$U)ofJW<RYw zCnZYCDCCd=I}0UCKMdKs(Z5L(kK&zV;Vic@6$E{2vOVQT8SO%tV$9@S!!j%3(`fKj zYQ?mlyKS<hes5wJnN!#?WKObn=@-c?DEagWU6NKZ<?-a|%?nH#(N>n?XxYBqxwbDz z>abC_C7UWpz-0q{iU+XT@Xn*%=-d{U$@BJ%)%=jssYdsaC-3hG$HCnG?6N3k%J8N# zzyxVr&jvqG)h@G-R|oJ)&J~S&f2uJk*&@0{x8OTt+tt@6qC7*1E|Fg-6=X7C;?QY_ zmSWCDd)L?*gzCY2fY>VKUPrxpqwbPp^X=;YEU&4oPA!xqpMx8z+H;TPU!6jfA~F1b zwih}Ff`9G;x%1Cmb9x%*{Ha$T;FJI_7mIU#`|Hx%4xB|`BL{xJuKWr`c~XJUni-|I zk!*5s)RKY5K9`$-LBB44G?_Y%gsm_JacnDaOKD*KrS@ewQxj!R@Q^pb^Y_E`a(&}> zT)tqbMRyyhn97sSD;U=|Kad^2KMxB1?F1=z3Mv^h+obm?bg%EUswlz#nO$o#N=2ak z;bsPrnb%@}<c;_IB-^|##b4|j7;LQ{C2tukzbaTtpc>%vHSDykl>!Ua50U`hAJGil zyn;L5T+<__7~L0_X^*FQwm5-XydTKWUKbuBuWdqs-wQJ}`u*2;{ukh^hT_Mq<&D)A zH<A@{SXX`+Z8`NLBNs{guT;#3P35Ko&xXnU0Rgt2^{U&(vfTNx?dnM_Pn-09NjiRB zz{7>eKku3fjbE!?dl3LRvg|q?@sCIe9Ph)2G#MpuvS)d*ykci(?PWWMMFiB!AD3;b zR9cr!pZ<3LSZO*n=FKg9ND`M|%wJc7VJTHy@m$oJKHKc-r$|sN0)6|44<1p}`yo=R z$Q5x(ndQ~YC^MTz-X%Nht^_bYO23hK?=RG}JVd)U`ai;6RNF$)v0~=t2d|hWNuAmM zIE$f(w_f(#iuk)}$9qy8!Dd#vGcuvlpsV?VR8nc~^$H@q&El-sX`08M5~wwKz9E<r ze(VazA@-V;3X$I*T>Tmx@suFB<41=s^SfT=(JaBf?fKRQ-fM~v8IeVBo_*jzsxM$k zwdy!e6K#H=5w*7+TOZ$K`&d96!QL-*G}*I#2i7E-S>N|Ji_dk2*;#w|IVzI4!Mffl z7w0SD2CU-!TQ3hk!a<Pj=+^Vs=Yc4UDG{Tf^XGTG#zSZ~z^Px1Jj7M`lh~b25k{uU zlH5uvd*<eK^bZL~s2VeXBX^baC2;d-N}!d9ZFd6%4%>I#;9N~m>`#OJBt=`M4zU!r zy8Y;S4*g5q8oEG}<G)<jsmwp?t|F_>!z!>y%U0i?ErY_xXSpq*lvEa-dUD-Dwj?9} zX8Ep1-hiw`=aED*E*b9&nAU7w=XmIMIgSI7j<84>0NJU1OK#`byr>-}e|IYJPN?aw zu#%Fh*l9L%M2HzRpJbBFQn3S>`_A$pwM_V8Kzr?Da>$mZ91oYcw9*<QF%X$!DD&=s z9c-=P3wJKNU7Qk+{dORin|1&7jE?!oSErzT^I`^*f$8QozFr$lQtw9jsVQVR4-+N% zJIzh<mw$&vOl6_@3hDx$XE`1cdTmDP?#<JXzHw;;9zqCBA}2BzZFXm)t>c%Ft!kG? zW!@iBdkSxd9c+86`J4csxjk?EIbX>fy}t%Adc~nE)l4Nx0NV;->ix~bIXT@jzml<9 zZP$nX-><-mz`U!rgqUjX)x6hQ`UCc9Orz~@z?tYhTz0Ed4Y%utS$%SpB9r~skx``U zHM!#hcCN2!v$vL>MQes=ZfimjRyocQK|N|ovb#Xu{}*t9g#7N#`zi-FgaF197?eTb zWP$8yk$L^<U@#1PcK1Z_7wBy&3!w=fY`tPCu{J?zV<`hcp{33pBZ}AB3oHJ7-YKl8 zg8!bb{9r7l$jDgaxudNMe4`pWMq*?Q_0VNas(RC+1>kB-Pa{YFII!WQh|}Vve61hC z@0Kap8;Wz~i?K`Y6*J^&>pko7F%=s?+VOyTo1y7v<<?UU{(42y%elx$qhlECgA1mE zN>aG>+MD?=FAMR)8F!;90lTJ<#$xTPR<9cp#lPCvmVj__Q+rwg;(lfUK8nM3q5PFT z*P#@sEb{Eu^4#XyIXgT_4Rr9ofnU@U;Cy7I*<USDvVlNnKKR^EIhOL3GhQ~Van@zs z*XjNsT?B|sl=i_ha@}=17%tC!NmrBpZbW+(gz;Itx|`3KT{MP)H2wGORU3Nl*B!L> zFH{YxW_{$X$QQ+{;5jxNi?`Rnu3L`fpxkOyWR40QI!3|!-@=Q21X5s_`R7&OZ6Uin zFAa)kWGMO-rBp5^6G#^>HEp$Qw;cSiBcKwvK5zAhdww7BEmsG^dfkS{8YEHj6(CRA z%~7jGbF~h4_4Y>~bF48a?U0p(zazKDDE}JO2@!)YZZGy(`eGO{y%WHcmb>SG1;WH0 z>hm^^)LTYV!~=#i<_TZQWN8due+U%)cJvut^9!`}Y6D{fZy1{Y7GMglJ%TEqfsxpC zzVs+52Sc;yOTcE;dzJ<<NHUSHIAzXlYzDi!NnW5H%kw#|0G<Id5=w$amv;GIX#n*L z9`{&h)N22kdjgq`L*pd3<xQW$bD=rj;-*^yt}PVIe#8$@xU<|+oBD>7&wB>tH)jaU z+aS0hXF$>Y^hD^cAHIaq(FvVlp`|mKEMU-$p_`YnP#+sR>HP0KVQYhu@hi?tgIOv_ zw$3_(NiO`~UX}`f=O18y5lS`8TG0_=VgPQ{zg0%h2)3dyc7!?-jCk;ew`Ap;8%)*a z)78p;cf_2WNjM<lxH&@{3kT~YtD3V70=NlV<swFb;az;<<@pi7u3kDDnR=@YtdZNP z3FM<&^z(F@ZS>YD@TieUj;Q4kIT`nCYz4;4*+JWtHWXUAz5U0>qZboXQHVlRb+oy@ zt3}&By$zz>#_tS->KPL}E9S|0LcSqy*#p6s5%{ky{U2|e$5CO`u#s*3_T0qb#$nd# zCou&QPAK<HQ}1RI0tTw{gRhCSe1D-1_U+EnBD_K18+k2_A!bz$(|KC!<$F+%m{zQX zAhGKrK1AI2t1E}-Sox1P9u}V2O)Dh#?5?$?1=OOT%nSuXSsepjTAM;Tv*eo(zNht{ zr0zfju8m%ccs&{`VBmB>H2!EhAde&Me;5ov*fB@d>c)a|zRZ|=RS#s1g5?v@hSA%_ z`+SjSE4H=Z{N@LSQNYUQ;q^^P6gDgN!`Cjse&+p>Jbg>FNnvXIQvG+^+TXES+PZJb zy+=d_;Y{@+Aq8;q*Dmu3*}O#&1_TPA?fO=su$jhgH+>yPJ8|5lXQ`cg7uSy>eJ}*R z-8a&Bf+;}z>_0}RdPfAh<y)rjOh4ozkCGBmkxt3is$-WBW3vWgv+RY$zskPBG!_8r zVKsJIGQlM-&MVMt(h9!C(JU72>AgKd@U6mi_x9tIQn)%SO89Ij|FZB-IAgu_Psp_J zBS7bOx6De@CJC)~QKePKvWexIcuIax4Jm;mdrxs`4Rfe@q^`hZAw!{mxjl4uvDX}9 zS^SNmw)69*m|ddie2N6(eBu2-WyYo<(uG=mP{j=USli<#ktayhwfejv`|ZO+|1xD{ zvtfsos`o$7HhRk5)Xr-N5gLCfQ+xkTh)T^ABbfh#dYUd3wMgE&(X(8DVEdNqcgc{` zK<_JbtC9n(RIChr7ejohXP(FX(XAZ6%Z1zDWoOOrQAZ!(jh1w+i1axuTDxYKxE|Ol zN3tw?W)gbDP`|7_b>9BG;0S1L+8H)^mf}JjG(WZ}Q_A%{s{rdC%DI?|iMolVa+Va{ zyr@MZ<z!*QlfBPTEWV1+;!Kw>G!=Nn6ZqVWp?uawUP-a>L8eMIz7YRuL(<r~z^O-F z#cGC1^Bz_+M!=VfMEH89uj4m26G}!=zmTuPO5-oZGUZ@Xxq*@atOJNQydLfJdJ5qP zWw%$lx0>Zo^mHCma>;3J=Y8>jzhsf?J_KkBf!$A^H<G4Q9PAi$up9V3a}ca0tpG|t zwMvH5W9Jp~?FhvmhlWu*z#3k7gR{TOhM}W#tSLuA$?gO(lucf(W|u^;tGm2r_ieIv zY;9AS^z`48)miAfyoY5ojh3yK6_6V2QkJWOT#l=y>`m<L;dht8Iyqy-W8k@A6mZ^K z+x_IS8Bg^6+w(0;Dcnq>tlR}-Wvj|Od$G?WbvpZta-YX(x4`2Lj$Q5Zy0So5cOL>5 zj+?TqlJHF$nd6r4pEe@TQ$dqH@~f$}vsF6+pTF^DE=Tl1mBewNZvN)$64e-dY&_x^ z(2w&RQ<9!H)A$R0_pQfoJ&tRh^AhX75B`7sxxCIBLSg-{j;mamS`9ihRO}DutyYEP z=D&dYdn5Zl$GMDjeTs!%%(UVLg1{f^a+&|`WL#E!{%+t~hfmJ(Y~>(amMYr(>Vfb0 z`6p1se%S3H!cNdb!W6IXDbquu@~aAlj^>B-i9FJ53JjWn`}2N`X@0v4t1lL=S=cyb zqdOjYA#btq4>83Y=av2va2{4W@9{IX8f@0YaQC$rE@LU1+~^g`s1q$t1OqH_b`p!g ziT$6M%<J>J7MUIebz1yCf~8)f772TX9Lmih5rf!|eHU>UDsJzLLp63n+(78U?sw<@ zPk&mUZ$G3Py`)fpbitiZ6pwdF6n}rOwf@`rq|%Vi_dHGkylfMYaMjHd?Ec)FUNa@> z%9wMeKcj{HpWUha{&j5mLmd2jw7ImaCGy=49``&vzYcvjC9Co*#uU_Xx7)$*=A_en z9-!^(N-S*bVU^tB$(67#sXxfqGajU%<$*m8=_E62`j~v>1vJx=-RDybDXug!F3g{m z;|2Ef0(r)ATmvM0|I8HhRz%PJi?Vc`%=P@b*!7r8A@gEh+f^Fr3ZAn4L$TgJ<9L4R zx{OYPopxmvSt(A3asu)5G@sQ#<214R7+qk;!!a3!^uCtobh%m;9}~cZ8KJ%WQ)BnK zb5djbX=oZ%Tl4vHMB?h{Dp1P_ol@t^307K9;ch>hmg*$oHqZIm)=OHJ@lVMzQCz}S zXvU8a0=0wh@w4ud^?4E~Meaomy}U`B2hetvIO~H^#v9>tT*l~>BVRQ&XclWlio;qD z*T2V~1zY{rj-P5#gSLSL+M{MF*EJC9GZ-i#wU-SNy6oJanRx}KUrWlO32z&&zRm8> z%=yA+fuzA(c=h$KK5y7!+9x?V1KFrov?u-nL`9jXcR5yk`8f%iD||q+tJ5I=r1S~6 zA5J<qK#TC?6u)j;ECX1gO9z6vM}i}}F^t9VoY52h!H-zO;o~}Pzsc>>#f*mSVj$0w z%jJyW=G9hD#(;xjsdl49R_?u|$-}-2wShC7VS$12*q*?rBzK}JmZbo+KYJHa%`gZ= z-X7sTsJ?;6e<D}Z8;*WHYJidYKSWqQm;Y}f><OkW>i-`iEb=Sz_5UEkB7-0NpF~)| zi2V-{w%PfW2&-ZGMo74iu+)s2a4sv_RpK8+68JeJc-Lsv|4oFA0zdnI{O11)5!M2{ z73V)h*azf3YH*PMoe1m9{y#+6jFiP2k@Et1I5km5Qqo9T?bGP4zYeEV_`cPnB3ebW zMwL|3W-MxEQBhrzr*8-fb!ZFcB%?X$Lgrq+q*vAUpEXQOot;iG{uO?l;CP&>`PKEy zcbX3r!vr9uoi};(j_~0{zk6YPq4BS@(tBHNmQUDlSahn^2orfi9VYz|aRfXLpn2Xe z&VzlDfEkHNYlGl-3H-f4sth6nyI&qo9zt;tu^I1f*Y00J1~hZ8m9!s#!@99b-TT4p zRwV|TDN7_U;9h!M(5TI+Ai&b<in62qe53zVFgnE>Jz&xFzCllM{Mf|XR`X63O-t*O zb^S;Gk{&?dxdw<#<s4o%G|uB;((m^_*DwP8hL+a;d|UMB=zQFKToKe*gjCMvwok2I z02OT=K7Fq*Nx+@SgW12A=U-E~1OfN}pgJY+N6>MzlU>IN6lp}R6Kp$VE#F^rbHI+^ zR1i?=+)tKj8uhQA0o7*g=RJtq*#m_yok$|d^P$Y|)n*0_Z5454|24pS04$l$A7=VN z%@<E1((Pvt+940IcpR1TUo*aMY5*jO@EyR$QY&R?2A=O;H%>jC7n!tf_-!n{f4*s8 zcoB5jFT3xOVz|Y(s}5$i0j!DE*TufMmsHgE>0-D{WCJiy!I*6=htE}99~}D_?0}Lt z&H!}G<9b%6Oy#vC1Adb|0D|<*>;}#P?-izp0FWC|>h1SqrXj)=^bXVLI>7c~wE8_@ zL;V6Z@0Sm%Q%o((As=;3?18KIH!upj=W~l>4XaBjLq3cE9;RZ#Lw>?U=GD!6qsb;W z5|3pQ`_+~ek18dShrb&qU)LHhJz4!9+*~9xHBHdci0#_GB%TIAqu>g9Ic3#2ZgqpU zE^<A&pb4t&X6JpiZe!nfF<tA$O0Bze>}@%aTvNr#*GVQ_nyRfw$Mgn%3?w3ffCsWq zsOn%9*gG}yT(zM=ZCTQ@W2$-w)(e?r`WsfuuYWN!1ic${O-!@Buudpo{@BbrEvN?? z`QK=veg3(tz_R7KB@xm2ZwCarc|1jl;9Xpd81T1)O?K^j=I{_Aem7Cl*94I3Kj2g4 zcRQRhI9>-+nQ4)KezExMuNvBvq*vd~(_;_xJ5<q^+t%-?wFtCf*z+m2qTe4DYrlE^ z2>`cwSxLY}jFI5OVbRfdL;1{x-q^w$C7z8YMSakB1EZ<h52HGV<+=RsV-|I6)6o); z<9Tv}A=0<ixGa`aS?=d1GJm(cYp)&4Hg1J}J$=C;i+i~o9%p&^U0Z?l!^ro5;$Ihz zZ!%Z+{q0(XMp<e-qorp6=(}Inv&%(*`zV%>&n214=J9vyE8DD2^{j{*9+g(s0SV7* z(<N6yHv?TyasD;eeS0F4<1N5_qer?P7JMpQ6bE}4IAr`3g(5bUV$pa^*0;&I3lYd* zFrdn2*knKdvjFbjVts#Qfpk01O8KAM*3CpS=;qA0lKD9$Lmgm^XKBCwcf0(U{{y!B zemQwM&*SI)-jJ5@BBH<9d67|y+zyT4pZ8G*Aze-&?kET(kVi&3115B%?rSHZ8Y}pB zdUghfM2rnTutcSP1BfN$V=#xPEQVD|p^L#Bw+HrT%#mCu-adYOQnSoQ3WnPCv#q~d z&8xP#=yl6p{Q?dQ(sisqTQ|J}#}<wzvueya13P!s(_%QL+qWN1{#|@xU_M%^IcbP& z*aD3JRpwDeGy;Hkrd=#m$_6_=6kOJPqwfLj7_Fr)bGS$N!ZLCAQZsdcGbwFb8Kna* z3Nz;2ltvZ$J^4a|{A22$u9GFD;K7=IBPE;sqoFZ6c&!_@jo?H6IZFe}>9Af5;-<d8 z3`*J6v`bSxo3u1ZX;P1>gqtjt*O6AP@XO6g68jLXiQ!$DfCt{PO#QdtqsORW+vlJm zQy+xtgiBXJrXqBs=}sSOLGk9Y2!e}}axi@_aJHbovK5C-2e$_VOm#kcta<!iy{Y{E zA@IkB=kw2WoU^umkN3~NzfBMSs+2UxKvQd@sdFeEy(GTX2!4YV>XG;&dDOG`zgRlQ z=(^fy3&*x?yRmKCZfx65gT}VahK-#xw%yoH8r=Qed&lUHbmTPH-D973&GpPVf#;5~ z2cmisx)T5Gf0=E25&D#@qT(JgJ<UP?r5zIo=F@PyB?A!-`eNu*@+1x=jH;3oDGK(b zuL|+nbgBhta4D_5%h>2tt+p$zU#)t-j5;ofnR*W!Bd?6wv}WkP{KA>H(raVYMUh0q z6d?4Pt>6C3k_JMGBgw?0|C`f4qVF}}u!ep(Y;}g)$>-hB`;{+3fQHTXyXb7I{0L4{ zlLUSmp@&(qwOop-lClLLl7#6}3CKh%P|a*w`^^Icaa%3dT=ZuGsa)y2x}>Pw88txO zQlbeNWST@U6s7<6#huW*dw#daj#qI{YVR%?kD~{$S2BGZg0cDI`egSek2)n6Kvt`( z^7rCG-E@hr2x+u#5ew2|$KTU-5}<?3sOx^+l1cr*gf-*`#Il-l4`KARgT_%-IX<H! z?le*J4d3g2+ZyMQHA`3OpI$07Wa$>&a(lxou4sYcsv{LjE_bqY!=%`-h72Onqh1GJ zE<65gKyArU$FU1p*@0_(1y8VKwACU_IhnT^aNA!3x^j5BQCZ?&6<(~$Q4DQ3W<#Hz zPra>`i}{5*8Px7MS~b@9iP5+}rE&^ApPgG7-{LH0^5$wcx-@$4qsB{(m+o!|cFd9| zo1RyyHT5P9e$w=Hzd-w!OgfMIuuuB1rYw~yZe6EpX=ZYq&t0|=>sE4k3g9{sNG7TT zVZK9mai0`~@_J~Oj`_5UdRji^)Z3r8+RgDR7Y^p|M0R~1>7r9@_FgVudtMtJmN?G} ze`z_aw2uALIoLYrVDp{U&%WX?biGvPcA72sU)Cv=Ie_Do7sBT_g6?WROp-$qaGF^^ zRkNeShVx^$qsU+1?(PYVh;Z#Oyj0R^#lP9a?rnD(>G8EpYoEff&*HUzgC_RxI(X8< zvPXtrY|Lb{M1Hk81O`IQf;V`BOWuvoyQi;>V*d@e0nI$mIY-ql8vCypQS?TfGo!_( z;Udmj`+m+(8;ilxP=8FZXH#NL8aVMTn&6f02KRG`sVuG>j^F)VrY>tVpcBJP%Pf#& zhKnpB@G4saoV7BzaTZfH?QUJYqQ5ZDV=*eiz#c)Fp}Oy{*ue9ipSKg9!@Db3*d1h) zLMZPfnk63+uLr}A1PE^VfXBxDCOotM%barLeibo3&vo9SUH@~0AIeeRu4m+8FAs^$ zMQ?Kwh&P8^_oi(%vX}FqLfe-6jQ<RR7Z81E7_e8WWigeN`|m}L?0CS#9=pYA&gm%! zYRQ!p8cT_vWB1Y%O6Y6gkJ$DXh^+>iY6S&Nvd7&M-}TdTFX&A7<5NL!eJ_vmyxCrX ztSwCHgJz26KeYWWZfy!4Edwnv;2Q>eNPV3&&<6zGw(2?Z+$Aen1`-Fg)miBtTr$}# zL<oX0<7v(Wd~-Xw(K7U}y@v8<>V8R&B=XyBDxzHS`m!w_7)0W^`SB;f_hL>;mn8~6 z1b;>Gcgw;AAgf;=&h-KY=Jb{Yt5?l4SVLtQBHwpfc)1lOTMdpf2ZKbxXAkUO_F_F& z{I(Vxm)J`DkCVawt~ZK(+fc+-`@hTy)u*~0htn1|c1&ZYA`ra4<P?8B((p)v(1tk> zaN21TB30+@4p+>5-zL24Z$Kr!cdH6aZ)LREvQfDo3YaVKd5YoM!CUO|ZuSYxsWI5# zBu2#l_FeK@MEP{~(iYh58<0`@A0i?ZIr+QR$Kjftzv;v=@Ub~ri9g<DdQ$^NcF80c zUav*hv^QhR=}PsPRHH@i{NdzEGgKm`%J)l8W25%(d$Yxi&iBV@vZO_q-;nkW_1#aM zz!%*TZw7p^7{3Z9=<BKPBydXLO^&JGl>-qBO!Q;2*>x7H%tImJ(XeAn>(y%J7uOtj z1cW~97Jr>C*vB|+67kx3eQd~Oab4qEWYxBwtW>Iv(xFmYOoxL#LNFV8Uq1R?`=Wqf zH2!0%uG2;SImlpkXSdxoCr>ByNj5@-?`WpjC17>a{Vepd-p3^wN2HhE@EFIn!&#SZ z<ZZuvv3Bk_Tdr`v47lJb51kdlv~8|NlP2`_w6eu2ki8oJIq<dFZaCbftMS%!o~7wM z*nWJZnzqP{ingV;+i}?DwTEd9n%kyotY0^7OxNnQ<nVh>thgRKY&$0VpkJDn6aM>c zb@qq3ywk;Z!@l)m&i;~0;Y^7H*;60Rk+R*b9kdvUe3&chcnWUnOry4U(z{u?>+&n_ z(rLlomFwjG@AzoohIuA7o@Pre-VE_f_7b-YaI1N3*La-h%hgich1bSq&QW%y!4PFv zCV)lzHGca1>B!}tuj8a;dHqxA5zbfBxoGg?QZiuv+31-=r|adTI6h;(TFd^aT-M(I z<8f2QNbz#neTpu%3Odt3^8Pe~R$<*<x#)YxQJN*QkmX=&EgcL&-~yv31LjwexKz8S z`$qSv@B4M&Wx1li&y0YOfeW#${IFy&&pj3*E>GL4PpWTVz}vx=E@wT7-CrP3ndp|x zlNC#18p|lK`x($Y@Hx(IfgxhKTuJ4D)}tsuWf$l)sF~&B<=b}jUnQ<Ia;)8-^J|`$ z-Ql$FoafqkvDLmNkk<_3(iR%Qxh-PfJ{XXUJK}WgsW2G?Du6g#+Jxm3!Q4fHqp;mY z9=q0aR=Qr_sT6c4b2o+_t>ns6kEYHK=z#a_lGZ~*Pup!HCN5gx5Gz7zg?UOsTS3n& zUUDgq>Jd~sl(k<!f?-;EfUKxrHAYhE@Ha(O`sPD1bjdY!aFh1S2!`y{FwC8?gumw! zNI#$uZIazFUH^Vu2-s!3$5rnc7|MLy6y1lxb}ssD^AlbH<piI1#Tz#0RCae)zpH_P zrgXnrF%yhgSE8!|ZOLVf;Fb)U3{wj04iY`$Z|A$|hWlj3D=;d)KIv@^_a({&`XUq8 zsTazV#$cm|!0?@YbxOqSo!4@?Y`MFhYP|ASE96M?lfr3Ka`%y?V%WH8oXLJn5Zo4- zZ69A~*7jV?nv6`)C$l#3bx)+w(ko?i`dqg30w7|G)X!-{buHjD+#(ex`<U*rP_B23 zKa=0P-0n=TlpkO0<97#}0^36S`_i`F{@+>k4|P!tGFYfI`}1IMYl2IQNtjH02HnLc zAcx)W>!a2%&>&)QY~bk5KACD)K5x0%!hLQ~XB;zU&&Ym_0%@2}KCkPP@47;VvQRho zg56s6505LaLJmzfKT#5)G(nTKfZjn6?Ku*0&)@U<g+EzZ63q0OxXKWOabCbGnzW5c z{%X~E7swA;vnuA1BThKoZyl0|p{j3PAIlT?hKUMJ7Dl&1_{}u=d7C^bEKrMBD4<y+ z6d0iO*0KWb<Ln;ZCE>ANHjY|WI0K%yS{KR>UKw}1z_~P6X^Rl$*LDYy&DCJzxAscY z`%n}|MmD<dWM@#xH8XkLbCrZHf#j${C{@Y&pF$BNJ@jDkW-vk`yjyzr_cQ)R-``&p zppXp@?q`+|hFiT35WB-Mc9n!SrZYhCwDp!>50j^Md~D;K56tu&R~s02{Mh>91nt<I zcHfBoOYrR|8|rl&Tr?ei{p{!|7N*@B{%@KEk~fKg5RQ+xM_UbI<Wvnodf2A}U_6|t zs*Y&krI-)K^z!-b!KT+n)V8d9=SC>N+v20!_f55P5gdu0lh)sErOv3$?p2}LBLCrx zqt|+&=ek#EgSh9aGn8}3Pq{Zh95YIJTeQ-6G#dSP;NAGmcDH%5xA^sTZtn}2Xysa! z;-vTJeZYs{)tc+=^D~{b0awT(xWkQi)i)8Qt?&Jh5QYi*+dEdpC0_N0W@Ka|zn(7R zw1lWVuK4YjG;*oW+1yULET*<MyuPow;b=d+Jg6N!p8m5G@abxPJrd(w3%kM!OU$rI z1H;@6$FYxOkg1d1G>u`jY3=T^1p-ndr|mjV%aG3cV*r4Y=ep`lO~gV1<!1P-dd7MU zEg1x(+LKP1!M0?9mO~+%$!aqrq`ATQpa(!M?177Qy5{OquK2kP6hed};-f)KU_gVi zZM66TM<f_lHD0%d-hXkjcpRpSL-%%d`Sl$~Ck|UwK)7zj)s_e>xP4uTVHXZgFj~|u z7+28aQ<@$g{0ke?N6uPnE%PG%3v06iJ{p$VbUGp5gm4>KImi@jE??ks?Z(iOW@vW4 z`*odfM=R0&U-@9T8&RiG#I%zCQg&-we*C351ZHSB@(0Eay<g^k-mtw`kF{FWB~?K* z8_%xpE}DG>9~ZL@Moc=y@#-fUJ<sofZ3Z@n4Mx?7wJ^jp8sZ}Erw1-e!4x31Y;}3Z z@VI*5vl#y@&)>cc$2Nv5QHE$shUu|cVOqSol%)qvVf9Fpg@Wl~;UUp>Jej>T^0AJ@ zHqy7fSiO6NrPVDr8!vF@RUaKs79j0CsdWHPRF*yG-@GHYX3&6zl$9jL<#9O#b~?kM zXgD@NmyGL~0m==387-8d829Ls7BP_GiA37@^J3{w)gSwuBcoC{9pQ;%YUK*HcZE`D z4tv=P%cBw$|DF*%;-^bK)9%M65mF65j6>rzU+7iwaY#p?l(72aUtrf&=fu3j#Y@^6 z>|M^>^8%58;Hp*e&GQ5jUsu;bJOdxBs@WDp^#EC~6{qJuhQ@SKe+)1}b_0_zka*DR ztCt4|Xr~M1*qDUpC2Zo(E<>}AD}j#53QmqM{|X$9@ZhpVz1x^v#KVzvjasb5SY!fi z*aHQHsw=B&LeA%H2zC4Gx+P<S@IqTxO##I_C7!mr1}&CW@D$$T8yMk(&Et#^a*<S~ zIGXi)cOab~Y?)37_(7?|&$H#Jqw{PaI?d#9$r{(3pw5bzb%PWPckky>%UQaSs<uUo zL+;^MfL@qJ_>NR=SIXO#RWSf5G)}?{>!Zz#im4El%V(nPr>lVi1t!E;Qa%%aGPVrx zQgP`eK;2Hl`o7Vg1~pSA(*Oai%*4=ao8u0!I0k0)HnyG}m;Yk-0L7;q$W*EU!0p8! z%(T^Vs(@IBOC=gUiLR?M`<Iuk*<;K1@vM}Tr&4+<ivyhazDfKF5Z%f+!k8L8QN(gs z6{X7MvXBUq%?b`+e(QI7`l&$Q5Gjs`dQrWrJdR@%w4Hn{A72$qu1)`X_Zd3|Lq=Zn z`u-N;KlQXwj=sKz(a1~MyEhPylVs;u9E^I{Vc?Ou(CMzrh!~F0bo6pdk#%cZBNDQU zYvKuBooqGYerhT}?ayE{3o>E#C(UwjIOdzs+aSm5n&!r;Frh$JT-sF9w%JY?(YH$1 zV`g4YL*Gf94Km%^@<*nF5nPzxHNky?+LC&O*UG{d*;XM&HZw|sCS~R^nGGdE=K=5E z!0D2I#D^0S)Xvlysl39$Np9FRD=b`Nc3wnWb)GZjgq%AY)p?l+nF2hfMgh=14G2!U zK=w>3G-5S_Ow~OBgfi|S1oZ00{c^3|Z#N}~##w$0fRU=j@O*{j;T4xO0-_-RT@M=C zVkuLzf^)Zsu5c72(vA)Sf@tEuwqp0PMw>RE_GHNeP(jikDBNUp+Q$4pK0?U5ScPGS z7X<$R;HPifpHwolU-_)1qd>Ao&$2H27o-jmE(Qc2JYktU?m{WN<bddV6AroFROTR# zHFZdzl4PG&#!ixAa|3n^K52}<G88J#!^pB8G|X5YSG${LHfO(J)ADh?-uo$S+-#i) zxYUI+RRaiafH~-21Tfn%c!(bu%zY3yO~G)4ZfJ`BTUD5SNtunDcCI%l{Wmrvmy^|W z!K}bWG4H#`*(R<T2$<KR{ezWWIWLdtmiu1T@;G-*@0QTNNmuR4;}Ki@iUNMke7bs> zu7(o5*X)fl7kbUX2<1LVIv|p;EU3|bqjmU;^+hA9AJF2OWOaczmrRnI)90Q(aqy<l z$R<QW-jq#H$hYU~pK+MC%HiKfVoCo<+sjWO5q2SSprC_@0D1<$);rKJocqun%F@u_ zxUa<%JO<C)MZ#(WBPYWOr`-%7F(-b)`Txn=fPkwKO~!kHewDx~do|3aG`}%^IWE~Z zAFHq#M2@xH!Km9{yDRw>uj6}pYg-$hXwhcf+-@S)Rdtb3XMhgfkg9nnBX11XADm&7 zxcL4GZjQ%3n`RG_3PS5%rL0&6jo4p#T3rL?BTanJ=|PECk)PFvOg0QZ`L#4b{|8tV zHLa;;t`~xPLmRGsYiTQTF(CZ?w9dBPvH&eadG|-x7QpwCH7{acw5Duuwz_}I28Hh> z$RhL~#eY(8c%Bv!?W*?E$X+R|XhzziF~iV_gWQ1yksKfJrgN(bucA5;CW1o0!Or}{ z^w7Ta4?*B^^Eq+h_2yhNLk|H*grp7xG;IhtgD|iOQ}>ldFCx247HK_W>A!hakl)dj z21?N;R8vA`MVeq5z=EKFk{m!GdMS#!>L)i?_mfdgsJR7-+7hT1%Z^JB1|ZGmAVBDN zP{AX$`DNh#BKrP9@DRaGfb2zu8+&3!7xUX^n)#N*pY}Ils#ja3HG%DrHa`k2LzBpz zs+P-o-zZRK8VYf-e)>AVW*wt_mYfEg0_mgV=U8dSY=TleX8-t>E5~`&=gW9GX_(*( zMXKL(i3s=?9j0W;7=}W2Sv*lNNdVl;BVC9@Y5^5?S4BuS+t}C3k3EpyU=XE{5|n{? z<_<lE#vk9kW(Jc1jjtbaM+9W-2687!BnshWQ;9_)d^H1SA3k~)5VVOT&JFj=2~x7m z5%KBP%$DH#MH1ZM6x)SyR8fQnJXxSo{pM&0U=33HdqK(BRVbTACV5nYM8eD(KmIVg z4i(`YYSUTJTfnJ<GSd-2jRhgCSxBta+)#w~)s-M*g)?VxMp0{i0{v%U`C!!a@q6IH zVS(RVSHD3D55a{9hu4CWvq}qB1R4EpwiYPBnftE}@b&gNdYo+&LAx-nJYz?v@*$2v zSj5X=#Q^%E5qjp2>Z!-$KWk04>gG4SA6^vbj!V{!`~a4SB=qjo`Z^17zXouMzJRGD z2f)1Q)Hr7Z*clgS&)|#o#_ZPAo&aT-7m(zlm-a|wwgHI68&KYfJvW^Ty$aP*Z^3@1 zS~jq*YzxCdA<0|^gJtwpUu5Ofz+kIK8%I!JOZOzust%gruw1}6kvH;Hl!%H#JTnTd z$?T=8nB+ZlDvu2q{vLUjsTW=2?V2i_b!>AuS4v4gn#!cGo2paZRy*QhXvlaqtpq1N zJozuJNfm)(J_gU6gfKY<c9Ft7JJzK2fO({!I-SBnis%g%B(u)3`w`2W{{mrMqaojF zU2SkFfvFAB|5RfHK6iS!4Glfw68Y7+a;~T#kQPitV_b2!0D){4Lp2m^i(<>$0E<!C zyF=@m#in!nZNz2VL&d-IsJdW*QnN=NF2VAZ=HYZ<6wDit@tgjlBUWsKLm|+(GUMuP z0C$E1_RIq(xEdA+D8)lVFb)=5*8!<mPp*ivXzddURAQw-7%i{@+II0a>kycs6idA& z6BhPZG8rwA|8Dm~9u4%Kg{^9By}&BgAW77M9WGXvh?(ING(rZ~EzW!#DFBg!C7uDE z`GHjUClZRiw&6sHF>f5LYJnt;ai^&@g5%V&iF7j&0Eb^!YUj3!%J)$nQ3r#ehj;Tw zvrMm?rl=_v0>qOMN*paWI|iM+womA46JWQSm-1VV$7Le!q7l<HRxva(mM!=Rp~Tpm z^xKb&5<@;yNSkYL?6Mb%E-dT|+)$Zal{YOg_Y64!0={+I#}>@+mETai!L}l~O}oK! z2!mFc1TMoa<=n}p|Dr`Q<frTr%SQ&TXd($m0)}*-lF$eHQ$NNY2sS&ZY!^VUJz+J- z1V!B30MmS{3W?rjPG1dZ7mNY3lK%+`zhLcqdkTqgGt71oDK7uXqrUU+D!@R)_zi+5 zh#rnE`~+A4w5tB`X#tjTbk@W8Avz_3Uh=oWg5n}OuU4q`pFrkuum@QL5K{o0Z-|Xz zjX_(m<xI`O>6nQztyqU`&IKUt-r+j{WJU&H(EEFw-1L_#J|=V$<3cq}iG?}GOgmM- zMIFD88AJzzZ8vUaT~><pq4Nl^cMqm8xmDqIRWziFH>p#8a}kDTZT3|4i-aWjl>n0b z{e?W9d%vPM9<E0N<r!EDg46s>McqYv(m#aFBMFY06s?gJdL36n;=d6tBl#sMh4T(n zY{$$EJ?}~k_@4t!m2am?fq3t-<5ZN#ekv!{sOK};VCo2pp<$5Fxi}<~PP#JTEpt@b zyfE-o-kIJGf(L<rv{CY9_9<W%h>W~&xCaiYgJ#ukLSS>QkPo-+_2D!@nbT~6crK#; z;Hbna!572N1f0`dK#-sSg9wmB+KiE$eE|F@VncAXJ*S*iSQ`I;JTq4W4RE?a7@tTb z?%EFHtyyTvDZmv9p$2KE8d@SDl-kyNB-)-qty&-o2jM?71Yh;*m9`e}gaOKbo`PEQ zw2QgY;uTcmKx-5=MIze_e{xfeXj02H>wVsS6oWTTS7tP$nUgDb24^s8W3HRs3?_eR z`7gLP!=!&|3s58jK+CBZmUOWeXl;Ry2!|ck;S&giHLWm?9b(@1YdhyYrT#x`@3I9I zD3H-msyD>x==kKFRZSnXW+a4RRq91m7Yc|%r+&I(R*Fg`>K?Pn4PRL{N+#G;iylC+ zAy&$4;~i!sSQ)M&6$Zo%xKRkcvuto5?dKHdySFJ(*6~DEkwqCbX*Qe&COgu?Qq2h7 z83OVkL0WUxhF`~~V=IQ?i9$GbQ7w!kFVvzo>b48PcS?*gXl61Ia!4{rO?kM(5NwSG zqnZry*y4C#H7`wza!aNdAss9otpDGKTC&4_iC~FfsLcBWQNZWNQo%5X4*s-QO=8oc z&?@)R?8;MpjkBHt!>Y`IC+B}XCmlS?^(yI4Rs?#7(gT_G7?J(q=~Cp!>#7%i?r(NN z+j}aYrPXROglU*tipTV^kj+35r)%huJENfCqSV<9;cyu_q--qk9c3@Vhp!~z7D@k; z;Yn}5FC>CdN&+$$<<o$vCpqL<0`Qu%gqOxs>0q>C;h`8bUz5h)fD|VEpA;tjzUo#Y z9IZmKFA?3{u(~B3%v%DyhL<A1j#sr{hz8}hXvk3e!l6W%P!)I$A({{;A+540MwFL| zDKmoymudkL@cS1bMH6SoW6*s2Z%xpMjrAL!Ryh*G$_X&p)diLRJWtsFW4~VNG%)^q z%(sIlh9&g-*46OITC*kUQ*D8Pi*--~>a;)huhapJt98#dztrAU^_V(tnVDv;lcj2{ zJziAX|1LTWEL=OqY>Nq|;kw_P1olS|HZV5(%fwQ9u&R=%7C2$N06l|1LroN1={gQ` zxs%yX4k@@rOE_^~OaFl1&UT4l9CE=S2jP5#TPXBY=HXn_>A10zKt#JGOLgv_GTXG2 z$0kn4OF#p33wG)z*!sawlimQwO}B01)9=Kz_yWp&bLP8K4h)rn>%Xiy27WO`aO?pj zFYStk)+*_<EO?Ytb@R8bH^3Lv{iK^y(9zX(cKiyk3IlwWS1ua<nQ&7Sj+X%cjEEhA zZO^I#?8eoKS<<W6|J@TMVlf7{xKjFLDgp(y?kBT_wAF9>m+D>%O>vyqzb$tH^9(St z{{2U613-w`j!ln#$a@g>kN+?RCBfH2;M{uy<f8WiTX~Jz>Vc84&MSaE_(>$N$!lN& z6}n=Yk;q!#LeWv`(_!!vw@N8E@bf<Zr_d+&8$2?js^6<zc{j(#C8O@IiU7UvYS5h? zV0Z>j1*1UuXxcCl$42Mh%fd*ax0i#Twyo>>HsnFRI=})n%<~yI7<zd!fmWa}&q82p z1tfCU)uRn?t^-qxC^H9-abM5}aJc}`LJt^=M&j`Q>$zIDcSruXSZjWqe{yNBAky-s z&kNF4(m$=M@hsaBmXmhb8I31AckzKa)_PTF2TpJ*^8ATw^?>c^?|*KoVG#j5xVFJI zV8jQe2uUzm$Z}-mB3<z0g=*E_V^$h8rjDPqLU3LOzppxN0XhZsJs6tkWTUNKYd6k| zgY&SP_3-hH*YgUYe~RC=F9zO>i@wXbzRCGuWINvO^|A1+^v2%Gfa^a~v?9b&d1Oft zOZdaGr_zJYv3o{jOtcxNE{4Fv(2(YY%N8)HefdaFT+J4ShKNNVsK80#2)>boUrS?m zVP1$VAFa9<=(Ra`ncW?ZJAkYL^w_e#tHNMERham}66N>XECvuWN&N!>yhLhpsrZK; z7Go0B&Hi0OrZ;|o8Un7NN3~|{L~lIso6vU$mM|Dz0FFb0-yTarNkF6XB)~*m!V`kB zleFO;7zsdO0YGjIlTAAS+2CkzL`nNCxf}i0JC!Vh+M<%Yn*+}w-Rp)p)Z%(TZEnuV zyma(f({(ptm>Qs_lpq|los3!)sa<Mt4O{T0MIWF#p)8;!^LV`ZLnl<G7ietQ|8^z0 zJ@+5Hf2j|&O;rRh?t;^N9T0!50zIB6U%-1ll4v_^RNy4s`+<Ni#UyB@qLtP7w`Uec zrg;GZ2eQ+700IgXt618d0fd&99W%C3GZu)_pzv{PT(-Z`Em1dZy&v{K1sBWUlnHob zNmVCM5_VJGPnO7^Axf*;TK3Ti08j@by7+wZ?8hy(mqVBSZx6Q<ZX>f@F|g=VAR_PQ z942jm&O;u8qz6JW46Mo-e-;*^$$KBfaaH}m#;k|sMp4*H7<mXXF4hB(9qKM&R#zDR z+e?5xyb|bVF<3FM8f|1=<>)3#t!dl#5kXYZP)<(JUI8L{@QwFAUNPO)9{;O1o}3o; z%<La65DE1gs0aR2IfZ{V1w0N|aqSg4sMAC*t^cWpM)ZbXR6?Jo=ZqVOLh-1sZIxX@ zu}!oVe%NwbP%zN_-UMd5VrYVyeQ%f?t*uqkcWFTqFoL-{SOaq}KCi?!tNx8gU=yH` zCV4kS&H5BKlVj7>inG0h3;*)!u_BNBR&V3VS6ByZisR9EKouKw!6#)Nv)o)AN64;h zPQ8}6gd-x%zLeNK5QzuO1HVV`Y)=@OfVF!!kZYRY6s;5RLvPqC*vTqxZ*Ijj-lhUJ zUwKNre@U~Xpcy52ASMxA)YsB@8=W%-$ZP)D0CCm?3mq}L4&pcWU4f(x!n4Vo6w$kX z2zo!-=HpPtD|`Y?LlY3XO8KL`RHnRfv1HT*003b@%lL>8=<BY0j(-Kg7^t;%c>>bd zYJ|OA@_A5pi?g=Iese#uaIt`lEy$2X%qVBCNh@<`IKd-JphvSvJRy1Lf3$UGjYFAR z$wGF~2o+DNifR7TVf?8Rsr*BEUo~v%_tz3L3^T*Lqz%c4^n)16X0Vb-1QD7Hf=CDk zS`Yl-Oz~-xSFlY%`a4uo?K>~(>ioZk0js>RA7)`nMR---GDotrA18`^hV#g|)ykD@ zoXHF|u-iq6IC=Z#KG)?1VoB7YEVv{2qcGnSCuny$CxI|L8=&!zy-{_l4xw^z0=0Fd z8x_sb>mV(`xTvXS2{u;&;mPG59Xunyfnl=lFKg&0eoAA;Wq+B4L!`>T72sdYZnmOm zT3Z%6J@ktUqd+2zb~=FGH1U(Vo?3#4Tu2g`AzMs=GSO&KvRSUbmfj4!ScAIh(&e}Q zmm%OfMh2c5ns?wY-QQ_lHzuYX)Fhl0RDjXVRN#x-CH)nSEsw@fDN@0<B&^!dsDnFT zn}&;qTFRggRVf#SYAb>A4u<d=YY{V`(9f!A7Hfu=K-10r7Ncdynv#hbelAbR@f~?n zG*iGuh8L*)a$iD|wXXF`YA|J)Xej<RC_>Q5vIc54+pubG^=bYj3ofGCWTlSU`~j5b z)u1nq<$Yl}dIUAd971}lK_Cj0#CWTzWBS37?-t}pUamao>u4~x2(9uZf~VF#Re_*G zu#gd8X|xda*`4!KMZ&jZ?`3eZ^x9=bn&p8rt_C*_mPIq~y=g+Ef|m8!aa-CMA~Y!X z9#JS;{+dX#5{_6dOp<ItV&yMqL;s~-O(!&twVhM;p}X{LWqgupTC&@j#u%@37yr<{ z72#SU|AXH9PnsH7hqa}km-ASB|Gds#oR{jq?-WKS+9(4piVPfL#=&b=;wd_=98vp6 z*?Iq#R4GEQsghn}i!rE)!>34)aYZJD;Y-#V2tZUP(r3f?16bMOR&M4d1~mV%&C1Pv zv$Z#tydLPy81B>2xY12ucA|-AqbXi65gSaBCKY3OJL@_=Nj~_L4%Ovzl$1ARDPGZr z_#tv${V`6c7mGoo3x~1g%@#C@A*%|bi1keZP8=?U020q>maao_6iEvB>mmarx87}B zkycv$6JYhbMZRT@7y9&yh{&?%Th=6mWBEHveLh5>oa+$Tgh2K-Gq3VdC0h-ZMtFqa z5j=n9v971+v*|=P6a&<9JVJNvvfD`2ibLx#|F+Mk@#0O{Khf^LT&)d4CDOsNPj}K` z7;Y<@u`7C_`QDX-=I`IQkq9;n91r=()nkXE{C@xkvWgTi$bNWPhP5MLZ2`dl8==SY z8p-~^w!J$Yw5$s9`{#cL<N=j}IY5p;xybd?ng;6VfwY9IQG8$gWXu&LB%-h9z^~&J zl^Z}qr1kj$ex1YjpPz1G(pR4I6JrgPo`4ROWYqPOVl()T+hscDsPnw;AY@-!FAjP8 zb<@eLhg(2AW@;OEA2}=t-YLh@@&@UUkV1C?P#4B6qjQ<%K@2$`x3{gkrdPIr_U{_Z z%3_MA%Chccp@07!fdFlA@sNw>HPyLgzup_5R(WLq=*32A+-Q3~&Hvtgw!?$wYPKWV z3yP89slD5RW7-Sw2L>XC&Qq$`@#g9Q@~w;9|AxOb-#q_HFCMN<r_i(ZK<mk1x2cmi z;H?2m)FFcl2|IfHfKO=i3z%WckV;5ooy4cEzQv>~-v4p&VQ%-r(wMhjWL9jTp%V?C zHb%Z)>H1Zdf%D%nvk&q*_n5=9>E5}3X&?`~NbX6*PT<a6@wG@&cdw>aSGeyAuo-?c zYT$zN-T!R_o_I@gG@xl1Y(==&u9=l1?_L7G$-?g|BKR?Mx#i4KL&vsTp?K3-`ha?3 z?z{99U6p?RY<>QB2wmwNa7>vA!nPzmX`8`m|6OI)hv0HrX^^<;1o)#9Y!Ly{0Tkkb zf(&W#j9(0BPGirT%ZfNv;sj15!%D_-^$4qCjj$kTIM6|9i(>PyK#V(5#Gv&XfQ4>a zo3AG{o%}a}em#^6ajb+^_fA?@h@jNv12;k^)%%dxvhEu&+<yS!qW@(o*_hF#_)w-X zTT&8m2>wk`8$&hBM9p-qP`Kd-@)e{L&9P!tiCri^kmo|%RaSO!2$NWaB-Vr_r6_X_ z7sK8f3tfW%1K$haT7;Ax!z0@FlXnBk3bbRzx{5CHc9Hb`hES!vj9j2LZ_8kiMhRSF zPf+$%80c9on8>U80)j1XQpv#!`2+s*E56#HXaR2D-n7b;S<tfq+@}O-1;r>~ZkHc* zq3l7_KbL638WW&Z1%YQ}1fx<b2pAzxY;y7B90sHavheWU-S<bQ5F!FE#mzfr?jTv+ z5(rekcR1PI_$g9_e?(m$jIkohVBg~BBksMMNGWTf!$hzK3sZFD1ZcOq8}$wSuDrY8 z4Lc0c_q`zZXy|et;TZf${bD>5eZwhp7g8h<(d(h4L@J~tDKM+Rr7{Bcwn<J1;uT1J zU#>_i`!C!NrHI~Dp_qk{4M_yE-!-pD{JHT(^@bpgVLVFcor%N%N{(T={ckMWGzoSB ztEhVxs&mxTfN>3*H9jvKM&R@Bo!e`yFmnHC=RR+d@2*`O5W~*9N)>3M(BOlSISpzR zn95m~L{~x4&2Fp*ORT|c6F;Y#%3!7Iq3}OhFg>8U68g~DmvDc9&-ZB*Oxz{moFgC- zq=qMlV8e-GIVuukjE5FHw!k#(;_M5v7tZ4-VCt6Z;4Jd)yZIA(F~-Jlr5N*b=Mb3G zrCFo;>KWzcl25&k2m9ZnM+q~P6|wH|5S|X1hmq7nX+t<~<Jol}BGX5M<ouCNAAsi= zfNWG1{Z*};7bH$*iY0K>e&FP#YYh`j%I3)|Ic3fvNyeI45W0sNrpiqbks{<S2_gbd z;4lt13Q8}dh&#Z#)jToI+`sj(43-hcTR=fz_)zVTBIGk^_#3!MajyY^=iF&F!4N!R z4-aBIJcM49$QYD10LU-VW*dOaqEP}f|9nsjo}8x#Ga1BTO#a1R^bGh(Q7=NR!LR^3 zF&BKITDizcgM5<1O>d=Q0&<pImh_v6EtsmYiT)Aw+Q6Cv@{(Gi3Y(NodW#W@DjLLq z%+o~mET(C=lSQX?w8}!gDcmj)uM!npoT^SwjS-YJ6vhq$YBu~@Mg{Kjn(@pN@2azg zpvleISR#!MvTYMh3`1r01~}^qvr<=n?xXbkxd+S*2w%XVgQMu_jt!O-xHELZXdN3Q zhcu#LuC800Vj?7p7Yu-4O`<GYpAc|LK{PacHlmG5Mll^g%VWYsJ}^$+kTHyJr&Kwi zBqs3c5Smw!d}6QtVpELX1NRsJi}9vRDK*N-1$NOKgG%j*;-(#>ZjC>iI7$j}tM7f9 z{;2j`#Lb!Oi%zYAhWZ!AG%|uFX4#aMoEHuiqS-=*UmYeZS>P+)4v6tqrmMc%GM?_G zpYr3bA(;FbY&?RUFvGvN$EWR2OQS|j!#$njfyix=vOe#dj+z0E&C8nAk;*|0H$Xqc zC-A4uU0_!NM&qwUAH4ba*u}GWGzK$6-*JvB(gEZ}#q?YW)aff~jp<K9R||Tu46Jiq z#|0<53>)A{-}-VuGawpnDh(pd3F9KwjuljcX;(qIr~tFCm__3{149eXgol3+u4=}3 zl#i0D60;i-1sX(4@&MDDG<EVlECj_0ng_x^DJ}@RXhqdYRNABfU(&{{3u<ghSyO}p zs?%!fJvv2P&?f45QqD(@kYd{Lj7G!mSSn!}K{4{XVln_1&!FgU{J@rXHj$~>IhK;g zxu?#?qr$wZIC@3h1dYCdeE3#9m&_91wb=KI(XC8p7gZ9D$6UI+B2Ltl8#Y`tF7#cN zIFgFg)OEF(0-=f%;vcOLk1M~>9k}74K=1edtWx2|J&9CFt?OG;oy7_&L-pt}bJoa) zjb#;jtL?-dm!X)DbMhrpaRz)q%WBYvYoJ))H~0U8&ycnuo<*9-9D>SGMph`?-bv}s z&Xi>McNKBI>2qaiOM=Iv31y82Lp+vO#n{%28v&Id<>c<K?Lk0``a3*61joEtO$i`) zGs7CH<3txoo-tcddQq)rz^%)oYC7ac?UC4VrkkS8W|Sr^75g1`s114X4F6Ls{wVU= znQHRYjC_j0Bh~t4v<QRyo$^2RO-Pw!o$tWz{{=Y82yD0Sky2allNuE6AJgtNa(B*G zyF#kD<XjpyOcwDN6-xh+!tMOd7=Y<5h9|%Y)wQ!HOYCpYRMftge#NM_$JH&rq1}WN zzvmhM<Mq?5i0X8RV$+}3a-k0yub+3LgWO2BKbFMmOwIkeT`uT$Fpr<+?=N`LCMfZ# zakq|0)8vlOCcbNOUmxDUXqkRn7(lf)zC8IQGoUB4n!>7rBWvZRaarY$azAQK&UWJ% z_)o7uGLGU?{p6I_ot`YeO_`dPFW_<>IUwJfJ|jFdZO|H7;6eGdjE9~G$p87TgCL+R zy@9XOKDA{5m7n_l>IT`X|GUyp=gQ(o#om*+0?fTJ|Lths%upx<FMU~xo{V>nTb^{U z&#W9;wX3Aa@HI;qxB)Tsqr0{vVCy$qpTj*U;OXsIg96Dj!;_>{7~X+0wWOPSM1bPi zBRPqh9Ol?mCepFc7h)77UBJAmUi(<?fIm=;bnQC_!~`%-!04)wf9yF?wx{XXqqgXl zpVKIs$h1h7LDzFws&Kv5dQY3BT5l=gOwqbJK{1O$P0zN=fZ+8UZtJ=unJ{7+#n7{_ zIBt%qWplMbr2Q&~PD8yq@A^w<j6BeFg@=ISibIv7>PeTg2m)iyR(-?2a_zLOKb1yq zJlPng1-m$8u&KMiR<JqwitV~tC;sOJ0Ouv4zS#vl_6;|9A6)_K8b$Un5Zt%j_l&>O z7ERk0kw}nA(+ww#Lo&Cip#mhM;EM#G2PVo^RTqFo|Fq(_QEs!Sk2K!NZdlB&Frde@ zwm|+ujWQ18CM-eTR`bHONV?@U0`Y@Y%e#4M!2=1v*NRXkPp<Kx+gn6t@FL5`EMkw) z8W|iY#7CZsTL=!NXj#bQbqqI(J-@KW!EbLN%{i^GU@gwMkLXfV%$)Zc`Yh%B*5Q4w ztn+llTNg~SS~c(+C_9s)oHB{rfsBIN|5<rr2jS^LaQRDpYUoeDM2W(&#=tl3V}?mP zQ>BcLA)EvcKpAyjhG83#hG<2LJk#oZ!=xCLiy*yAzcS?%JUgUWBXB^?38ChnAd@}& zef0-WbnFLk(X2ITcj$#MeET7>xkZp;a~zV;Q*7qGaY7GPC<e1@uXvIW-jy(;-FWw- zK!=rbt>LQ&QG+jv8NHjqD6dJ!Nt+QuzY;c)k(Ie6NR`l<6GGf24`LK~y)GqHKY~c| zf-~jbz-k{6s!ast7L@lP`B(7_+BCO6E24$n^(|(L2G)|3@8p4er0J_yO))K*=tU4z z>`CyQn|x~ZvayGwNIo+MzQ$BS7AP2maSZbG_Q$h}QmgV&go_dWtDDVMTcvg?fGYa2 zFQQa3oV|DGQy;5PU~xmHpOlv;&m~s@UU>qhIZhaHs2$_w9n4mnpXPb-1A2f~fCUN? zVFX4-Bo8NbPXrMslQ2X5LwLPjaZ!6@N@CQGj=CGK?+4X@|GqkPzOrx>s^z0<DzfT{ z%~S3{73B7bVg;xnC`x*&+qgCR@l<Tch+;6<<YYCe5TcxGz>@bq>=(fn5@-4a#JU89 z7(tNe%U#5wI>dZ(tL$y3^@T`Im_Hd#2|0&9td5yAThE)FnkYv`9fhf5=DYTX1Ny9d zw3E3X9fx*;yu<>>hT<_M_Ydo7W?Lk^UtP3*g*9#Hn#_Obu8@#nxBf1@Z${pP3Wj9L zWLWd#V>C*uDvKH5$&oifq9pd;5M)DosWT5mMbd%B^*5oUIp{`UZdB@lp;dC|NeSZ} zG&X#HY>4{1?Z_i$M%W#at6s7g7G3&BtR6wSCiU;gqq6JG@Kc_s22?6h9Wn=mjn!8D z9%0I9N270LACVO+ln9)a`6)?%l8$K2ESjugvN2eS2T6wEt7U9ZQuMUSIp!IdI9r@% z3`Tpge0$dWcBKM{Xs6fCuTuc}W>62&K}qXULc{=z_mGFgvR%H5O|6MK^t@wT<J|DN z?tmOe_mjdwz7EGTy^D-Y=;l2ZN*jQegT|*e7lbe(A8~?2>>fn}!L;1ZL8(I4R<^w@ zl-QW)t=WQO8Lt>WvrTYX1WTRAC@+K*L+WaH*L?hiuule>33CF+Cy!EbXb;O|EdHjX zCv$51U1LYsF^W__G}^)ZZ}52(I+?$>$q`l}#BkHk$Q9#a$SOE(WuIWk;<C@k6^y?9 z^xk*MP-4uMs_QyogW7N#1tMFJ6H6+#Qd_g#m-rxt#V250DA(UOC+UJ}8k+U<?u20< zY60I1jGn3?GL7IzLm=e(cp8W3JG^V`@Dv^9bSTVX(4P=!I^oL97hTC|d8@SMJr!PI zJR*1xY*;lFVT1^FR0>rz4DyPKvlkJ5J}cEv`$T0Y+GxURl<R2KALYT#hog!VG)khg z4;K%BMxcV43ja-gkKfo*qeGCTsX+QKKDrg+a2$>A@lQszFK5w!bUF=IzPOlFeCAV3 zm&Ar4E+kMqSgKO<UY0Mn?0FNCF!*I|@W|#8m5C^tC88{zmcHuY*|3gIzzSw!onyND z()`v9C(G0iDo?^e8Uhki?Hp&eJ|^7z6lRz&NU{CKCEgA~%qdv&_beFR5biWomk^;e z_JMn@JeSb+(1rX!leMVnmbs>Hk%&b0jI%j(xL-dQhM!jS@Jjsv1{IW%gD5FP^!+5r zkf>@X!4J<bK~TLeYCkK12jU2}>x@sD)wn@|5QNN{h7m(1HL9Vl<oj8Q5fSZ>Ad*38 z35}uQYNAfAVCo~Kz9z;SF;NxIm^GDn`(KGE(yA)EJ-AHcS=h8h7MotY6j^=*DYk__ z#_!coYlq*$oB~u@f*Vq6<c2*0C~#Wmc}k9hG1defrBUN8mjAtAW2z4JReJ|eK>S6n zvGgga!A?6%VV-Y8Icl!N)DE4t9S!T4LRXs(8v?^2m2XZ_Q$IHekB8yOBOa$U1a8BY z{w7`Wb=}9?_J9>-J1-SVn-$+KZ7hzeXlxBKm(0muu?>T|g#DyaU1Q_KIfi|b4Wetm zs_s8c*QA5jOF%Y=DI0lJcwDdT$&4_vi_NaOfAYj6fSH`v!SHFGFr_~9ttkLSC~0tQ zibGiOx6E(?-gosvXXLL7byu>>g@UT&p>;C;C6c@t^wIxq*4*I^&3b7bMMggVS7?Iy zZ<Y9erz&~~;Nu#UdLE=Eaat6=taja-D(M;jo5kHkQVpE(5a`HvS@W+mQg}HI<evp5 zz<M!Px^d$%9}FjNrK}mLNS>RINKxHqOf2VT<tof{MoKg-BsRfk%1)tg&tm`SoS4)R zP<iEYq?iXaHy#>-%6vzn%Ya6!>;wk_cC~>d#_h<67mBVe(&Hp+;03V)8xu!zDC#53 z?iQs+na*=81gYvIP7dLXA{XpMc7=7~?9gB_-He?B(g-L|(!n{jyNBh<@_uAY-4Ci2 zduC-~v9f$IL;to<86&%L_Gv@0<13sulL$BuzGsg7*|R$xiV!=5NQ=Ve=?%;Hrdl9Q zv%6Y;a2Bt|J9Xi^ZX2nV`;M@O0a1gNM(ZoQ$t>aP;x)uWW!W#rFNms*!$-h)t9+Xk zJ*q`!7P}RTp-oC7T<bLXGko6Pb4}`>u}BmuHIJR<k(Id*M)KXhl@51UCeg}6!@vnk z2Ri#YvrD<gBrdJ8F9u3!e|Xsgd@zfjWe|*q?A$g1IyJL0eHb~ctZbIJ3W?_!f-Qjo za(^6w9Wr$lWdC=XS{vi4i#Kw^#chNrMhUn>MNnr|u?j6N9&SRWx3us3KVtr#r*w{y zPi7A2L5MeK!HGx{>^t|NrorPj9sEU6h3F|Mq?t}g^yQj3jP*+7IyLPFlsnY|02~Fo zf-fS!;@3njbmpfZff+W_T54QGdDJ|V`bU+5eJePQ&2*AzM6rc}h!GWplgi=;Gq05^ zcj)>fP({0HXg$45nBP&;hb@F_@!^zQ@SoiRV_VI~bSSKrhO&Gb{-4gIp5c3omal!& zn8#eOt9I0j^$$LDDj1oJ*O!CI*}}T#v924@;z%N!Zyt8Ju{&7N(nYBdi1q!3ly~7H zHVq@%8XUAF+pOp6(UR0??XwS<{iRvr6&w3x9B`v21DGq->={D6d+)E~<zCNhmKK7q zLket}CWAfyFe+zLwXRHb+?TAS2$#<0<<47=0T6f~{ND&2LI^$ki0UnKRq@Q>R<E{` z4hD>1SI4HWau_=TsY>;CmFgvtjy&-De>nnt*4P9$g*gJh=T?lk081_vn<Zy9d*wLb zrclUUb~{@v^TV}MV#RvHC~37;!&YiH8hw^f$PQ?k=0#sNc+NKPtX=wC(f?i)2PC0% zljeD49!^97`|Bebg9Q$We-a96?65+Nb#727|0X|KEfq%;(p`@&HXWcj^gZ^pn!p#W zHaPo3mTTD@+Cq>7NyA~5x_znh9X3p4e{qp+UL|F-YbAK`%x&x3CpTwtNOq0o2Z<O4 zAqhGQk_4d&5*8afXK;Ue&0(i~Mf)5=3<C>UiJS?77Zd>CeesYW$WH^yTnKKu?p>;V ziBCtyv>GJffp91;Pz0(^b1ze99N}ht((Vi^8B3h+cb8#NKJ)~N+9dR`QL9HLThr|^ z;tzuY%JguOxGRCF2DoI<7%b{Z0Zc&qM}mmz*k>4O2~>Mufw5f3@Lah-%v>=#I7CDw zjGzqksi#q=+xRcr=Pk>Xx*ZeoQm#|YQ-4Xo6w_gPgjd`L_XArP6lIoBSnP?qmedNp z1S$zEmV~1Z5)Z<)SP2UvpO!ZPqd<&~BkWp^X^7G4hnI@--N;0`Ot4Qpwm3Kwf}p)j zU(|!^*&+mnF!;ZL!}0Na=7n-gZVrpDMh;PEys+#r9RmN()cCDL&c<ck=uQ<WT7ZB+ z4G4E^&D(`M03#%QVGxddSP-j%pbW_XK?)fIp;A=_f$sVD01debvR)`w_I;FCP@r-I zHVSO2J_;L>%&x|R2f!q{jAe&z1iyW~zq$&3`2mgM=QT~TMf$P0$x+C$@DOlN(g`BK zr7sD>Km}t;z=nYb#ZYy-3FlNH1Ac-%qZIdu)p3-TLv?wRWXLJgmczHTocaCXalDsp z-^?kldUM(~>DvJloA$nM!G!&-=5I0{P7X;Hq@5)&zw-S#14m*lL=5{b%?0<sXh=z3 zAfQ3X{d^4f|MzR}emq;|1q!;p-)7pk(%OB$?#aIOeA(03^^5&xrF<02#`?UOtmC;g z;Nf_>evZRzg+c)-DYXysyI83S+${)(lcWGD(kh<?OtlXt3M2}g>6cwcf%iR6ro3Jm zAkoLdqmcR?^PTMYWRV$Sd=78B$Q@OdvmWOpubD&+aC$tgWg-iX1yMJ1j+(*x|4p3? zhPE*Dp>^J>99Ea}LNyBuf_&Mb{-hQW{?Q;~{XL{Mcy7*Bx_?$0E(m@PT@pe745FmH z;clWii;I}g_v!89-wIj(kD|&b?C?OuH7}9oQm|EIVjk8(bq6@zCHo9HO&-PHDcI2h zIn4$(P?n6%vzg0f*HHKruiopsptc1|leZ%Jdw*sE^JoME-@jX&*Cux`#o;6#-qK^| zKCXQA3q>v?>O?JYgXR->XzO&%ju&KBKNbH(a|osiL){uw$J(3DWmDAKqwJpVHttJr zC=z_(LVyd@?ZkbmJ(i5*$(6miUbp?3$13qFglX{?o{UK7EL_za!VWkujznL`jkUg{ zNl<4Y+aXx}U^${37+8oGE$=m(A6K2rkCHLxfo(o*19E@nLfQW=r@8sTaNt+=%Vl;v z|7#;|dNw%H*hPyLtB#Qu>1*?BKNu7YvgeM#cyuF>8pZb&IFs8{>TImF8L*@=E*^M4 z6~;xwhs>YAkdcvJU{VC60IC*h-awteB32R%zTf9(t{5r35Z4$d1-=(E7=n;rZo8?0 zu`~B%yug2*X~~HB3{)L!l|qQDdLKiOTy=AuVv-Jn2^tF@6-Kf~5+tp;&Om_XdsCSx zf}4<ezy5{LM*y9;=(;~K?8a-g*E8>$wPeHt$|6#~T`2Uypp=oSg2xnl`1^>4%xYjk zxG6e=@(RPbq3p-;flER4x)=)o;8-4W<`nN5OH>|CV;p_KcJ~ROz-O-OpmIIV#dW#x z*r1Hr@PDRU$kh+Z2Wq`D7sSEUaF4|j?x*EeKa=Fp0{Sv7*wVai`X@!8&Exr5b*hzk zX?4Kcb_6rehoF<fF(1==<-Jn*U9LJZw>;#yb;OheGjUldT({g|j|UmN6@>(N)FAR6 zOm_R4yi91z#7=|i9GYaB`ra1NFRHAkV54r<Z8JZfl~QVK>lJXWl>%j-AU{8!Az~GI zDDO9RsEQDWzOj#)F1EXs=b}MD@iOYhZUZT*05vGzHH#t+0{vM4LJ$Tf@^e;pmc$Gs zD{rGYB}%jtlrT0u2;B@?TR2QaemXwj@f3Eg_N;DpO-*QDq7hUi{)1Me%j;n-4EcGB z3wMvulj7nnIiJD>qN{HsFMEm`5qY(_p!NN2B~uJ}>Y{DOlWrvcE9d4cRf}pE6j}$I z3Bmw`njTWQU@{z=3MEJm7A)ylcg^>D@;V@08rSReb~O38{dwnW`n~rneXiQ>A7ocT za1Ize4E(Yy?gJ23!1nP*3CXziW{mr_v4duN<vK$tlxTkVybys;h1mV!p(;Kj5@DBZ zpT=`m5%xV3nOcdc`)&e}&;1RFIfNsa3>-!pakd}*D?})e0<V3SCpHMlDL54rD~M58 zQukIIoh2lcTs<5{msAR7ABwgL8WB@*2spIeSvHzigBiNjKkORpK`q~H`(}5)>|Z1+ zzFGWX)Z6jUTL7SA|GV)W2H5R|i`Qd4pzPK4dBf2mUvTQGy?E(nFHYgM#~<7CjNLca z{iv=*^Zehnqx<t#4A+L8O4V^QkX|Twc~*_hW#2hLTRsV3IvqeBpjR~c4V`7)n$`YL zCD(Sl(~<@sk*mDeA7+ukBE0#7pEE!*Y9$b5vL4Sjy%zYTgRPH3#FfL{I2cW>`0w24 zn3<=6Ac^MBRGxq9*57ocj)VAD0bkB6&f3RZPfk1@7a&kRP|N1YPQVcW@fYg4n)XU$ zY5_7jdk{%)w>1jbD{d@lISK~61H_0ui-+BTmQk+vS!E0!m*HvMZ(U^K9<;q)t@>Bn zdI8@p_t7>RN<+op9+yM5)|{r|*`q|ZcYBf16vNx!+|TwMdkto*mO`)?v6x_gv-H|; zNYK}^_bTA$M<p9W=m()buyW>-NG+P8y$|GKlfqoWrHb!(@SxPu&#AyOTw%4KTsO<} z0+z;w7wqW&VedWQxorRc@AG5tot3@Io|%~m$tXo-M^sj}N+cAOjFKcGm4>WTq7W*P zQOSrxlQd9falbygx~{(0@A`i4>wo_q|8d{<#pCI7IzQ)m%=i0!?BmdndB5nrL_%R{ zcza&ls-B6y*K}K#aclU<Y)RSAhzVA;^wM(LGw<pTXl`j9-1Tuo_=j>v(?bqwyEIyM zkm|ycqNh9#%B$QHynZ@z*D+qZH50Q}y&FB52dW!<vTCp8%n9zOAEabuI{V6U)kFWM za`Im(Bj2>Lc6RNVte3xmI?|+L+oXqMu26H;@I^*U6&%P=KDhC^^NrW(2bqTBcr=&D z4Y#?~W^Pw__tbY_$$2@<jBjwNRNy{0^s$oXdGO=BTw~+6Z;$Ym;Urm}XHVVwqvK5u zVa46#P+9m%U+z!Eb$NBHF2REdjEXm0YbB4%O@06L)@9FhOi-&+z=I`>*qqUDevWbH zgk#%<$1zw6JpFJ^X=0<_4Z6%ruGhE>ivmZCBsG(ng&RDoUA=>kaO%X>YnyqBd}g#X z`ugtKGWLr@ESATf#E!RGUtYZId4|?_^CzFY#Ny?tt=)26itogmshAGG3R<#BSZg5G zq!nGDbO<@;GoecQGc?i^>km<BaZ9eZ)NC-@;4ED6F3&_(G^~H1@}tGJ%I_1O2E}cd z9n3c<Ly#&TY>*uJ>JZrRCU@IDt@zyfwyv<l${DUgdo;(Z=MQ7E>UinwjCbNs(yQmx z+p`Nq4;__LnUnEeKE#zzzmxW`aZZBm6IqV5C`y(Y3d`3QoTkNw#U+=zyec^IYUGoH zy+_S6yU6Ww>O%VcB(~^H4t!eFZYxGST$0^5wr|*fVe~bpEKMb)>Dl2jlSlJzRBP$V zD9+HVmA!V{AVH7cpkHhL%3?pWkpsu1v&{FFwo>#R^|Xxh=6Ao(v@6+1fz4!74fW)j z@4N4P%NI3o{g4|iVdEV|<-afbi;^Up*2f$5&ug=XKXq;9e0gQ(E7Eb1gveN-;L(N? zFTP3D-uwLa#b+LiC4SNU&B>@68LqR<=e1x9ZTx-<Q!rjx?KPFo3b@m=zEj&geSKMa zdFw`t=jZZN`DmEgwEOj{Y7Or98th%xRCv8qIW#fVJE!$#q8AOT)gCMvi|roCShJ~1 zWCyh&Wl=mqdt;SGh!Ni%qprSJr)u|c*58k)XQ$`5z<HVwDXd|Xt%z#W4CQ{r<tXoS zA>5CdRrHxb#>_y&CV$COwyj6@96dUAspVaT?nqHRLzk%ZWb8gxtA6WAgJW+-+J_Gb z`CaQi^l+Jf+wEJjL1}BQX|(SjDSMejPt(2l>9fLXfu8HehAQ_jZ)axiR*@X$u*l2K zCg?K8?k=X!=HJSzsMW&4;;(jVh0Jr|_%mBGJiTemvJ9J_++KUELUgL&WVwZ!!;W<{ z8#NU5g0V>a?DiWKV-IAV^54XCjG5fP{xV(aRgYUv>2zLL9<%v_c=FxG;cFW2*om0u zq7i;Vn{{=g@Ab!A5U5&Q%&^(njF%|eaHX&@n0uX@Q>dX2;Y}y9>f;eh-kRmq?R7Jk z_sAt~Qd_Cu+FvqyA~PZ&v-Fyfx9k*~|7`PwJ4^ULg<#v4CzN`0=|id#6rBAc#aF0C zf}dMaO*}RC6lH%V|B4|&PJEy8FcZn+%wbc;RZi=o<O@7(-WdlQF~10DtP9|1Hapx` zJ<vvbD4lloH@>8nn)2c_4o4-4U>3Kb%aY4&MZVSA)ZFw5+VW)OMM~`u2aT1H`Bs?X z+_<)Wb!V0S4ZTjbW)%V6eM<(SEA$E4H@Z|}qVel)e0p~NTQWuFRO}%_ZFj0p|HgpV zbnP;C6q-}}ue+#kQ``37=(`si>c=k)URhBkQ(-^hw12yh;?i8I9s9f~6<rzFM&BOf z5|NsUX5alvw0P=x0S6VgfiaD!@?NGu+A4=Z`57$MR^^d<XP}j5Pa|Ct&@3?(KebFz z{ruDm&o8u!b76M+yBscs+iKAp(oi!yvsoTkJn+I*c(2@(69H0j1L9fh7(aT5#J5oJ zdoTNPTx1`crS2ES&GNfP{R3F(_pf!>_RX&SHP6|xBys1X4^Ce6|1Kw1RS<i1px3F* z`*ghZi$0F!kuy(H#5?ng+jhnnFFj+<W=U~Qra^@x#=Dj-hQ2>~iI5R<RKK{u^HDv4 zy{xQ^!u!g!Rne*lDd1^(W4-rL%|XvYpLBMeFS{eU+w{O0_E`1|3d4Tt4ylY)6i1cl zjkEfnSxM|=iA`eL*K}UrjD0XNZDq`?d4TF@k+sdBo03nb6IyX$S6xarU11HkosJ0A zbf=Z3nqv+-5L-}PYr@geK(M>$vgQm>tqy2rW?-=-2^dJ2$tp>9x$H9=JRgvBSLj4m zoHe^5gZ0ZUqZM2Q^WnCQySyx!yGWY5>D}rnOQ~!nYiMU>kCMddxpQh7q^!Cs=`&gS z>BP*78)8z~sG6m$itp@HINz7U&tWO%Y~puiF~jAy@Dj(_?KdvV&`B*%SlTZh&B#VS zTk9(MZSfWLF})kjlq?uImgfs4SQ43DaQZFxV6)Pj`<l#pWq<P7rM4^3Yr}lKe!aN! zD^*(Fl}1%!IX2>_6AH7~mK`9Bm`Dl&pX=h2TpFdCWyX@#WBOw4C{}x`8Ezygvq{vm zF?=Si?@gCcT{d_Y&FkIIH_EMzMDw~}IdjufHU;Z_Qc4sCv5aYVe9c9L@^ZrKX>C_{ z8&&Ent$5?Q?O04K#gb^op?xVGlL5vYyN9|)-&?+Ue9d?EW68>gVYk<BJ2bbk+~^I3 z8pmiJVd4~eY@q6p^+u)<LcoM0oV{5lTeDmwPA7eYmNrF#DoS!++m3X{rYYZp+%6xl zzu;$?I=1B^h4W<&vDFQB0$fwrK&GK-tB}>;@r{8a7V~L!fnUW*)Jp7Gt7~X4)E^I6 z_V7;J>MbpfTOS-X4SI9=%j@HeCzs{4SI-;m$goiTfGzA<vBoCOCSY#*?fKEb)N%31 zQ%@2vc*`hleI)Vrp|*!`qI~9U`Rn2}?t}FSA&W|UEBY?gGBKx9ZQ8EppPg)S_)W{H zWl?ipE|DFDp+(sRwFBghuTG!7vmxwN%1VVe9v!ZknIrrHPZ@01Jy~fnDp@2l(UN!M z_}auE=?Sehr?bgRAoL<jb~vO^P@l#!2?{p#_2{s(CNF`=zTKsHd8grCEcWZl*8KLl z&L7j>TkDRU<}2xaJ~w(KYBx4*gLm&gD$A(09e3V2ghS;uG2sc*hbW(|8|d`Hp#t;Y zC+DN)Kg}N&&{Cng(W<zj>i!YG5^Tj>yM&O#e6{(@6>l=9cApA)>b9oi)#rh_(QlZS ze-nrJ?ZLK&F0tX>Sf79`p_?<5#dctp+BwWhKhaX6E^hUHQ>jz<K-{gJUt`qED$-w_ zL?_Ow3I~NXr<1vEOuspaT5vUalSRzr<5%-;<KE=MJ{VZX$aBi4v{A~BmtTL+HwV89 z8|Y0BbieP!ykku3U3tZ3?93p=gb~{c*L#-PTc^(*;F(^dkbaO$MuHm4p=$Idy3TmD zX5+-G92Ue9dovYYedRib<E7}OHeU5^Keu`@#eK~I`?5ztt$MU9uY6wI{!Tt6>GNQM zboS|eYFi)0>O94H%ndS)l`qjVEafD}yTrzTA>h<-SBbb=F6P#EcXEv#*j(06YQE6= zf%!t5Sa94G691i|ptmi|=Mp!RZK;S+)V1rKteO=Z74v`85QCh{ufcu`)_f6PJM2#^ zog27Y^@%fKUk0I4L%Mb5kgU9mZ{B_#Ha?weSe|A@A-<)zpnU5Y)5EU&_akhTmm<bL zhSeXeGUs75W#CGtAg?aQwt(Bb>gVY0^J@5Xoo{L1;#l_hIu;asG<B~C*l%-UacYK^ z8Jil*3CdC#3e8v2JBuTIuC|*N)+IcvS_8N4b2F}B;L4zA8R;fXlPBUm{(=RaoA<fC zu^hd#XPCSTB4*&zh|8449cJaAt%_#!5k8_jc3<O}kMSA$aOH?G59tTan3a!Nj}_YI zNiQQ;Q1AJ$u4s9-@CEIM!?#UDTaFNPZ|K$6N_Oc8ZaB9-T+{!#E~`1;<;BaH=Wxsm z4h^}7`P;8u3I;l{so%`HJ=H1>vHQ1qcb7`annvt=9iFZCfG0%1!<|)(dTBnvD0$5V z-gWD&eZyM9qU#n<=jwLcW1nOr%K?{e#V!kac9NU~L6W-9ua?44D;73`VT@DjmA&!} zl-ESd^3-{ST+XOCvb25W8i5D59GW+1GEk{^7}?&CVz4i3S=HfK&(L`*=Bed~V&7h2 z%ye*UX;gV_9z1mRxWb}&_g(hM_w3ZT`dhd66iRA%&`YI9Oz@aaag6LLzuBx^qw`GL zrEuf$mE!5U%xWXm>E@W~?}gd(Vg6ep<X7%`J0@dysG8@_^9?6o9-3(B$q)6BUE>;e z+Td!~74j&D3V97C)Y<etFNQ{B=%{&*XoZd6>5pM&8sMnAD4lH|&LQz#{b7!i#H^c; zUQ&1pZM%C424zkYEnfR{UnLud`)Z$^>GsN@Zo$42Z^NGXUdJlB_fhk+!YeP2T$wuN zb^e=$R^qThri<G{td40le2G=R>>_8H*~^z6mKa=d?EWHEtXtxs&XRdakF99JbUNm+ z_t6M>x4~j8^V>(=a}(mAfb)j-cQ@5n2P}Wc-Ero~@|`$WV9(UR{-nb)6fQSnXNIt5 zF;HOn-Rgp~_Pi$(xC+!69Cv*vkEN4dOWirhH;{4Sox{fK+nWm0XwRpKN1tJGu9}~l z6}YY$rtPDFeLUIb2O&>Gy%nlFttk05x1bPs>g?_#v*vWVOaLYdd>iDc?!uNSvCo4| z)P0XdyWVp$5pW(THXg|uVPTg%XLag<a@M?NM_pJomMEn?Ne_5#vSUDLOvw1j%HMTa zbIVd?gZ^o@3RMZ8)>Dd8?RVk=VkK4&&?Q8DXILBa{@Q-gefwJq*WII6A6!9liMXu2 zM#P_?%`i**tc3uUDBa%A%wDd%N!#bHkfEh(Clh&q<efyA!3jRqEt)rl@;3Xx3>%m* z-<eOOUux&_{8r-6(G7|<{aHaRXeXa<!I4rJi9S^F*wma~aeuVP?xcX*Nm(kE@2Em3 zP1%G+=mc`lD}`$B=RRG#m-Tp0;?kCzq8>Db5})=!uule;xaJ$UEh)ws)ZN^Ru1#Vh zYni-JKwI{HtGMqk=D)vqj17WrSZI2w;jDmYqj#Ti^xHv&n+IG=v0Q6^O^yN8(E_T$ zFP~nxobHF6dina*>YGN34!vE;u%g=tPrO|@QbnF)noqw&yD398P<V%~eyUEPdkYry zog);P%t}zIyk+LDU|pV~2%AvW%UGWkcP{!;flPr>1^3NdqbIHT{`*@;-x}FDH;0sp zurV!RZ0K#Yn7QjWgGEF;-pl0N`yjpQlvh#G_cJCJ);9OCEOUQkbg&|=X?U@)$#>Sw z35H{u?yABE;_UOzym8utQ$Xx)gxq14xLYmryp#U}Ps6NVdS96~c`jB(-uK^>=K$B# zUWy(1>Mj3nourI2L%`ElMUtrv1-54%+3-9*w>qf#=)UwblCO>5+<0KQ=d6H_b=2z@ zLxHMur<Pu}x}SA`r$NWwy>)#6gJ$>~_Qah3{wXRfWhrY*09S|c4rM<Kc`o*^Vy7bF ze3oj7j$upCgrptg50~jA4lAsyjyZ-oJWr`xENWBOOr)#1M#c1RHmpgZh&vnoQV8oS zbn^Q@20V{=n-DkPeL-qJ6JN|cd6M|}Ck0`}w}+QKCupO-y%ct;8jdzUaGWwY{0sKK z51|zZFo1dK>g3*jgsXs);ea!?GckUBa92lV$op$p#57FL6-}3vthsCWB7bs9pPohH z=8=zjBR%Esaab1H;OhbtHbE<8EaHj6zE18{S=te~CGBQ=(Sd$y#3L5oW)ugIcbb*g zI-!k<j;MTp%+yB17&FcgN&&iEB*82N#x_FSz%slb+-A+#DqG>kA5{joB_f$Zq`jw7 zhiWIUDwj;iNHLvo+$yLqY2h)sZ{NAK5_=ZO)uqJrd&{1j;t_qKDN5b;s_*Loo`^IB zZmdTTq3%*NqkTou{-w93C7CaldNfeL?E1sn#DPN_u&}UHN7R``>y8xzUwy<x0E2mz zfYr>!nC0X}cOiaTlEQ6k?1e5Raos;j;gg1asUBW9pS^Usrfm!}#q~?8`(5s?Vz1et zTp2uc=g2eT!~|cvLE{6*$1zp&xD#h)>=X~Irr=aKPLZK%2)J?eklC8ELcb0Dz|@|J zrt81+R@ql2Vw<{ScFX4>uFJ;F2C*UHSu*AFV&}N4-t|>pH{iv16#c0N(MdLb+WO*P zm7|Y5akPp3DaeVl)rVVi0-F-wJ`9wwv-P}GH@?MgQ4+7~oh6Uh`j_EE+LNyhuR2Jq zIsHYZUqH_`hAL&5!>i?QOm0V8R`49qVq8sne*1E_;Z(DZ`pnFG4deX^eowsDe|pXs zlw{iOare;lho0Ac1u=5IGr~uQN1nLW#%$q~QaiOgGPKB9Y~6KUo%Ka;f<I-uY%;yx zrC_kmC{}I$TaaKz#oP=dBWGTWVaj0<lgDxm^;ZT$8(crhq*>{X)}I}8q0&#zNQ|Xu z?*E*pZMuYV>$l#Z51(#7<L<fIq_8RDrNo|z?qjBhrpSXds}zdwD=Oc4A2qGCn%S$> z4;_cH%tE>^?=UWYnB6!0d>2pfi01g!$75SP-?iQSR8{6Z{*dSE$5XpT*R$&P4q^-J z?;pb$1M^Kku2XDWvQhu^$de0e7d0(f6}n4C!MTu45oZK_!62o>^R?4^o*eo<ST(M4 z##A!O-Z7;+q|;Ji)5nzpDJPUf#|ICdh@ak6E9e!Vk|=m(<i?if`@P|3PU@;+|02;( zRo?>Rm-w~njYlx!EQUAL^A8;Z3_B9B9on07CsnYy%TTv!j_Gmxb1WZtn%-};s$My} z!ph@f&WW0OEQ1Ywp;tCHb3!`%zU9e@Iwk#YZ6TQ_Bt_>_zf8aNd9U!frE1oXLZQsd z3&%56y6`BrF!3K%>bf<lebt69*O7g$XS;dJ?8og>V@*esKB-)K%6>sQrx{I*H65w% zLsRP;3jAMuntCcUF#E~tk=R_vEyderrAw9vdb}CfpO#6>bl);NOIJWgL)AT&(+(rb z9KoBe%0#>y99t=5UV7_G>bQe`aLA*4s=1GqisN?}Ph6J0GyHZ{(J|ZC)u~S`Cf&s& zZ2P;tIJZ1=KiIr{*5mme9o5~MJEkiWi?1Bh_(~Vgg1yJb-f!~vbi72bsKl$bBX%@N zN9B57dc?<yX4O`YE4MU)=D#lrqrTJ>(dlH~az4iy-GBDG-sLixc90HX-^LSB-(|<2 ztUWRRO?s=CM70s=)Y0fTrkp)9eb$Ih?Y^`q!;Edhk!lzCxV@?AVrY_cbA)#%N3&N& zv(HR-Z8q0%d1Y7q%C#Y+Q&Jt9Ii84`*BO6v@<hb=Sl$-7FO=k2B9+|)quiU`xv7Z{ zRb@@8oGq3`T@7`b@^P$VaknC?`ifjiM=Gbc&3<U$x0>QB^DQ-hlb?n@U9b201G||V zr7qC!uZwxOj8*HT&sE#Sr8E)s=I3dJEj6R&zpLI8YLZuu;7C22-5>oy@}966!-d_V zM?SiR3*MdIqxZQce+za)xKQ5NqI7*oy1mgeN;oR3V!XvelU6v(<M9Btv=?DLoxJ^v z$;d1^;YY4*qDUDkcx=lS5gaeEXssU>v8OCPWg)}kET|gK8gS>8LX)^Bn{xUt$z`|i z#L909q_Grv^X4RHOa0dV&G!UV&u68|wP51L)?@2baMIeFmHH2SZiSq)&S|){Q@)=f z`oj=cS4UkPtF>!W!jh+nz5avZFZ&~+95UlL1hRGq-gU|)DSlDyr`DlUPpt5$W9B^I zaiOG|(%bZi)tAe@*UTA)=M8BklWlK*J+l0P<DLljP7yD93HH64BgS<H8&Gcztmd36 zycvGX<n!@r35(m*RTm#=R#4K$Gp~9kX|m`=qZF^hsevQkQ$6!HU9S)1>%kIQ8fdeo z14I8o{pxtC^>!IL&TOIAdR0>B{HpbWI@X<tnp0J_yz0AY!q>nw-Od;r;WuLtNSiS$ zFM-YZ8|nDfhSkef+nlo$o8xWx6qPgm!C$rd+u1p3;;1iaNyT-SewLM0GD>^5SM2On z32?m|VmK8`l@v1jr7?IU;~me`(n*iAILJb!F(@QnKOj2i1c&m{GKvfJGyX?Z`;v}n zIh8D4)*?qgnYx|A+T^5aYcmE><CoFiFDo%BS-N>&8~5HAkAb|?pI1H-O<>bIpw%r{ zykza37yIV|M;j9Cj6~g+iEby7a=y#)vG<#m=R4{+&5vW>OqWkn9rkG(_6#PRC~IxW z+A|XtwNmH=FD9=?P&>b2hzp=tp`>l0q7>CbmCNIh_jub8EvZ_%cvJJB^Vtvfl!RA) z;HKIylcQ2*6Hiqr@ZgG#eBO?HLB@0I8~x~vr4G31Vab=u+wAvtp^qeW#Jd}Z=<gf7 zjAkFO*65-V`<i}B+&3k2{houdVw9<SzQ6bAoVJd7FjDC+W{~1N_j!M_|DLpp&v#6` z6Khgdd_KVQl~GaV!;@W=$G9DIIp^fs>zQ?uGWPeiXG=2Y^!Q&owsl{Ls)UwjaZtk6 z4GP6K_1M=$Iy}pz=`Ari-?2tnLRQx>o~c#CoZfv_BBMXTh@^2%Yuhf07b?c7J01kd zIf$yfqp2K{Es}7d2rZ}&t6VI{xRlk$T6izZ6XC-uw}%%qQa_AyTVzwZfmd94FN0~O zNcQQwFONv~@MU|=U1lphAX?A4t2O$ieYHjO%c7`<BPA={TZ*4iV06;ui2l6R&~paG z9ctPGv77??F1c8)?KyKoc{9zt)k^wHx=a?Ni5lt4hq|3xB|^7XI<1RY7P+^@e>-PX zPXm>(51U7LYD{dcgF=@@H@_0c<kC&@4k?*IPi#-zny?VsB7K&QJw0;lAVc+(yWz{b zL0&CBG;2e<B@MZm;_cTNIY%q*L?~k8KUe6I6g_Mb=Gd5P_BxkTUleGwDKdy>Vr!de z6`?3|JuzTlx}JWEQz>P@sPxIwYj(Ulzmxcj2epbgZ@)E>P?u{Oa4P@sOu8#~>#?rU z+`^g-uS(BgJ13_6tq$kXR_*E@|HL(Haj0r(b@`x70QMW1dnK)Z;q$g9sO=nlao&di zlulUE+qDN@hIoDzi<-C6ZS42Id$OEYQRl?_szsOYN@+)s%GxPDtHuc*jpm&$EJ(Kr zG?|}kv`FeG$+13^Z`8bYK#R*#=A@((^C|6ze$OTj8t&W49uRO!iePp=wm+uMo}Y3% zdy}%;pw|S2xlrFYXUp-!K1NONdem##=>}VQia9h^-sjo2R(c8jM1+x$vY3XIJNv}l z;i1p34cUx8X9@1tb?16rnB9~~u~edL%2@2iOY6#+bJDI&+=`a%y{UBe`cq-UtOrCL zhElI62)dNXY+2mS%HH;3`<QmR+#;=+Fw-iT#AO+M3ExKZ=;BK)qds5t&qxlaB{6kk zY4#k|9Rs4DuzV#_Lo)ol_yo0UclU=EQC8Re>Q)}^VN#+Fb2vfo$FN1Gle^I@!PfP7 zRzv+u`K*8#<{|Z)p@KNxBJQmVwvV3--;;0V>_pvH&>BvXli~R$c!25X>B~yj8fKT5 z?mG9(t&H0_S>&4`8~4*}y|-c5OLTP5DqrFex9!0^k0B{#+sv`U=C(4KN=~FwC8_{Z z8%X699>>oU#cqPK+KN1*c{Yl9ro)A;;kDNiyUo7xCTQ5U4-N6>y4A|k*9@>aQ@wAb z6_(r9dm}d}QlKuY_spU}J^n1uD*m^V3@U8AhU@Y#lUUwTcI9?DynJJOCP_%Elv=&G zcjy%+_e3zNuiF}V_h4q8ZOW6nr<9t!o<+ApM+>hrj9|A(siFiaN`|JcBZ>KSo;OQg znY`$!i$A3nb^At*I5xmeLp`KaBGx5zBZDG#y>nT<(QrqSANA0prW4;&hN(7OHa6;( zYMUQ6Ien$B<!$@b4|%sS19yC&E{=a@2B(8=4C|9T?{2ZAyvai&TkXR41|I8x#qU=y zd)OP;)Ub-t#Ls@VcFzu+(RfhY(c<N$Pmzn>Z6Mw;h#%*gZ|ke~oPC(TbnePiGuFjc zC$9~A9`{w+_T->!(YHYo?e2|vEc`)ldU0;ZhfkIMp{?030&ZR3n|k)x4UHu|I@>+2 zapk9`K3y4mYaZt&4Lx`flYFjgX?e(l%2&m8cjX+zzubu%-#Ph4=Ost9`};S6v*Lr# zcO6+i)3ImvYnJjE<?X?rd%rJVG20MG?{J(CH44eEm!4efV`Dkp>8QFJJ16Y?{xxLh zBsbA6D7^0C8D5pjd-aE@u4DUG>NKhH;PlDtU8Rw}rK4gv9H(wJF;ZqVL%_Yk(e8^K zgHB=JmxnrRW$`dC5^nKGE#6+W>XA6bYg5kAyjYijk(t0H0XP+g87p5_EN^<aA%bQ{ z>m)jE0{W&|6PCNLdX#%(ryD7FSC7%2oL*m9-OMVFE_TI>S}E?MndfWB8+Asmzxg_S zQ+mkRsZV<*D{<iWeQJTGVXB-J_q2QU9UnU1v}`_Qke8#lj+HmCcT0l!ZuR%}j#;m8 znBWvTf63jh_X4DyQl%_2KDS2Ar8SIVWzmKA$Loyy0xEJDdxgUs3mhM{ZcfsAlXp;I z21{st?c-iJ^^BxWy3EgXURkc1&amrb8(r=LVfU5?f}?peirP<Y>bL@=Kj+MSk?tJ4 zG0VzWVGz8*KC$uu@5*(;EMo!&nnV7RB|Tx8N*ndiNxk}{h91_zIfmUYbUyBAqvYLo zI$eHKPrELbOx}6j_$XP_*fDJIw&${JO!v>R3mGZ7*Yo8|Ux$}UK|S@QE7Sp{Up`!a zk^P~0t~7PPj^9IWa7Ff7Np4vIYR3aF{dVLe?Ye2uC28RIQOupZF^)9aWau%vtGVCJ zAVD@%gi%<m(~sOQt+MKEPSkDROwR;~n}-({p`RS-i#^5s^S#?t<f=sH$$hM+ysp*T zVfp0so-ZELQq98=0URm4X)|weZ0Wg^eu37dvQ~AA+^?9tPAIEm(YX;4nYLPEgQqz` zntB({(^(o8>{#p=!>$`fA?TRF&n3f~JA&hfhH^g*WKSkO9-}J3B(akdC2unG4cH{* z%CI?JzGU!7SBdngU=A9QOD^a<^V8LOc}Vqhb$#1sEKl5Md%Q#UAk9Qj%qGc;A?imv zx`dRrh}Y-@#jQdeduwv;HFAGJ73;P@iPyt<yJ{If#K_MaxRko@`g821|M6UicBklm zfiavhw7A*O+@br%j?Jm|ao2^HV;1Sn)dG}kICEIR$x^StkZSv*eERc3W*hmO<@~eQ z71LMdPVL%ZQzOQtc=;-Ne3;|CGT!x+U)m&YF1*<HD*KT&@8#QxChGqFiEEdWTy``p zx^r6~>f31Tni?IJ%A0-f$%h%EOX;Md)-`K0(QDC*%<SCk4&(>A$L&+P%-iHA%QNV< z`ON7sHrdjm)cWaYV~0fa(es#aFvqh9E<L%bYpcSdr%a5zVFRZOQ!-+5dD?0YeomhJ zP&&e69+z}w{Zd&BUA&IFs~ciXN_!rBuld~a>oPk{PAo5BT+>;2H<)3>p5ESOcK-8z z{a(y^y_#_<w5Rb7Bm3pXS5XHwZm$`~#=^(xIk(oyopKaC!Fq{nak+qeBg=88P`(|} zFSx!goegt0!s&Aw*nS4u6!S@L@jY}gSfo*8Vq>Cu@>)9H<F{swvA{aJhT2{retbxz z^#)tL@wMCsRbMYGy=ImkDY~Wp;LW$OUHcqmiqZY&Dzt`DltS8J+IUF~J8ygl+y2Sn z4#vxN*J8Jr@ar8j^H;u?=-YFZ#1?xHE6GmopfZjx)t~Kd%~+NGSUG&)hW0CqBKHTL z60gSs4v;%&$vZNNwc4%}{0f`0m!`s%FW+^alA21KXimhN6XXqi&}sW%D0}MV3v7*} zx=A_rG`p<pC5xRCBi-3m$valmhaNgp6En6h;YRG~!?uqOq|3WwuG@R&dq(9}B-x9R z^?08=UNijcx_>d9dj|IZYnjMxn8t}w;TT97VpsbXEL?KOuauoU^fVH6IUf5y9F@O| zqsFFrBvxl>wueo$thLg@apfs0gowudk)29PQC3C|vKkKNaHZHe*tDBpN~w32P~oM1 zeV_PnEM8F9b$~OGJ@Zg!fgp2-u=%|Vrvt39)ZvrppH_MhV|C_qL)W&rB{JNv7$?{@ zx1VfWFUzzseRs)9sWcg_yi4*rt}71}tvfvFn32~mtlM_%(ZJ&wYv<3@j2pCu-aesa zdc&C$yQ%%VhiG|oOQw1gXJ%aa6V7<!Z;EA#hD~(ldn^}S-6>G8RGrqa&Uh*7dt!;P zFUC<lO-?ZtOl*&FZB0$3Ds!v~e}2;cTG#d>#WxRiu(P@K#Q|29+%A=JI?fF;61T?K zsNU@}4Y3w}Wc#jS?_ztK%#S!7_+wusC1YS(?gbpO{qcp8v$aIW#q(9UN5{TiqGXx+ zzUxzANq`&W@d~<u6l%WFZ)R@1x8k>9=XvAU%g44w_vFl1eNL2J?(_T`kKRtpZ9T!$ zCyUhk6u0nX7!A69e;D5&@T|m5cWdtrX?_jI$%Be><pBc&X;SJ=JI`wju1Gq1`J@jv zX^a0jUH+glVbv76q$5Wg&TqV`8Tql7W*{?eqh;;xw2j*?JyGfNJ#s2kd+V2XWsB7_ zuLcZ!%&I)Mdi(ar(z3@I7*nl}^&B|CXtCGT|58BMt<xW#n!Vnge&XYmAp3EKG?^9h zG^`&d#&e4BUfY(3enU?`+|vCRQy?Db6go9<Y3{Y6-rXbq?fH#GJHPUG-TYdlc<ZX= zWvM+oMCTe{U^BZE9ZtS4xL(rDAXAfY;BHH03D<=>)fif;qFn4+_dIgWr>j_X+4HG4 zTOQtQKBZIQRyWJ9Hg!Et`_u5Yv#za{TlAk9tj@gr?cuV`-0~Y?gKp-8JdNd3&DipQ z*TlCr(Dr)Cn4oijX5lfRyQYD822WN7img@lw77g^?YTpdAIewLGO^tcs=fZ=5gWJm zb&EEcu=+C}brcFd)h94lPsht2-LfN0YJAh}{Firqdy8^b3vaOtO&+o8@hTZ*lGD6+ z@B5RRQIRFIXRY?ur(E`IYPd2!)#SpjJL{8%d2`RtuEN;f#?{$AlX>sv?k4$ueYi}1 zz00j3+m-55tx-vt%Oj_HE69hDZSue6sdMg|pRAgPSgzEwBJ6oI9Hc%`?JeWl^t9s0 zhigr}J5~m|-P$+santAqpQv2>q-MsBh&IE+J>{D&Y*4MNnAqOrqf7gs$7v$1a6@rd z&6Ue~+Z1F4#so92bIN8Cj0Ki~uS)dRs`)F1N?>a{5o?CnI;rK2T+KOE4Vp)G@NTbJ z8&`x`_b;as19!fxq}j^*c3_1}ve&*6hkS#4gT^()OWOOV53y-y-5X$~QRh#V(v029 zluEsw_8#la#NCG9WV%Q1CXtu=yt3XK&0~0*ptfoYl(%-=INi!26LVg^zdtEcDDv=~ z6?0#bB(cw67R8d;w8aGy0<EVUrstpadY7ks3Q56HioYKm8HsBX@{Rw-4_#a1aK!Y@ z7WP9i#6@D&1x5-uMh94c3$cdqB(@OBgci`muR5VdsN$0#{<nJm3<3D>#+>-8m{Y>x z{y(M2Hr(?jg7F(bXcLO~4M3{65rKpPuDpQ);fFiH3*WdAn~ClC)(dwOiM9APaN%hW zA_&iVE<EQ#tRTYioG0OfG`7bRTk*ChJ_(|Q;FciqNRZ68kk8&Er4xi`C_&{-5)UOv zT2$hpBno{R@lXoN$IRlPlvLjtwbwHe6zM($Loh*{rs906gtz9Y$nXBmPp%0(yhwv2 z_mq;LqELTIO^_(HsPIXmpwy?qCj})u!zU#b<#)z_r!r)Rf8#%1MFdB$eMsE@-xZ&K zV)7Tc^Z&Ixxdqw%pJE7jAmMAkzbbwhLH<>M>iQENP}l${uqRac#~oiNybWOn{!nj4 zsP|SFgsu2)J^p$wyzd5M5P<jeq4s3eC%d9Y7%!L#kA*uygw(=+TkuUFez(HJcoBBL zJZ*+B_~P6DYOwPEUlQ(|KbeM}d6+uV4^#I|{D)yPCFq}0^pnWeO@xZ$DULKI<~MBE zfRCT1jt1AbN%c2Af10`<rs12o>ks$F#>U`6z^{%+1m_y166JptK#GL`Qp~ac5kM-O zll*%SxyYgU;p87z|INTsP|mUcDX@R(&5vLo|69TSk);2V0!EHG`0*E4KLYkohW{ri z{Z%^u$#BTde^WL|l>cZrjOKqc75|+i{-)diX!zeKcgSf)*8G1o{GT$MEDJv?9RHNz ze?xhGRhoZH`a(VUACvy02@ny?VXpU2E&VUsKEJBXKV>+_)4#N}|C1Ey&#k}z!<%KR z|9yLr<UmdCa?BU{+1Mqw8v98<g^PCr9i~58(+<@5M3-T{(Er)aq5S>l=VuDcQL7Og z=)4Fbu@baDZxU1s0|4YffL|dG2>hAfU-=Ig0T@yEzvJJ%PWJDA<qtW&|06&DBhM@S zsO$Wmrhnzn&u4yq_vinA-v9OU?>zJC^ZzGas~~N75wIGVlQz%~J_Cp%!3IQt5-<QZ zz!e05Xpjv4-FswrWgvfD=q7##MDXnY6L<dq{+=e%&H+pTI;1BrSP%AqWN;c3gBs8V zqCr3S3<%^S8xR3XzySR7-T%6DAy<4{%t%zeX7qG^AP58l+$Im5xQ@<K;FAfD#b`ao zJsQFaBMX5TTX4g;1VNCqP=K(upeAeq*(Em%Uc%RmlPU-VlOae3Bs>?q;0hkc4?V^~ z$b+Qh(G2p)g$M?a31TThB4{K?v=Sr+DT2|IieQcPB(cYyoa4;@OmOAv5(ZL)Gj6%! zmJp#%x7XN0gji)J0`Do{Jq6)Nx7QgTZn(XNpjhyA&wun)1->dHZ19yqibVF3`7SMq zj+UfO_M9Nt!5^NJobj(KKzQN11~~xaxc~0C(@*~eFnU9|;D7jk^j~$sf65>JQ~dPb zfRS|aul%R@-GBZcvFHEQ^B*zi$G8;Lg3oIfd^YtFhadknz147+ji4g?{6_>SxqrCJ z{j0lfh~pnWCWN8u*nBQoCa8bj<;H*Hi2!ay2xKA{sbhodK;X6TmplwELYP8s{O~RL z2V-3Z<MU<s{KFL{j9<AC?hB(`B7c%H5rSO9<RRB5)t=H2B<i0R43s{E8~HW`!3cL{ zi0vX@=4<gu{1!ST8rlW7L<mdBTF`?36a>>kC`^etYj(V8`rH5Ho6LxdKSuCE7Dms= z;r(M&jX-UPm7tWMpp_sNB$OcBB%lClga|psNooWW)q=zLL$eTHf4u)=;GP+&&3u=R zpt!*vAWkA{jRLX6Adg@tDg5#l<3h@jCkK#IfE)(*-`*$tA`D-|{^ZL~J^JYj$De%B zAl4zjlt~)D`=UfcmWBw7Fp}T#S<t}k2oDpnd@0FjDMf%cxz|>T;9QU*%y<7SP5~6u zNDFI>L;lcK3W97q6bP<`=M?_(IkJ8+5R0Ho_o2D>@n1aBoNNu^7t*|!pMSw;V}ye| z>KTO8-}<}U_~JWDf*UDLlJGzeDM^z2mr82kT6*Ey3Q4-qeM%y%e_m1%Ha{;(gze8u zD&!T34wmVMjZ+{N{Sxj*`8m`=|A-%1FBu3PggY5ZpG+c;_Rd+mA>W`?_|9%US-hx_ z7C%OM34#wb6iNv~-h?2nzPm6EIX*s)XWS$(eS$DrN;0<KfL2k#PEip7-m0qbVjGc3 zlo4s9Z3}s0OP#Rb>#tg{5;?RLR+1o=K?C@HAM-$f@bmX3a!?>_1d)O8??w1CehEJv zMxWgvp_`$f){r)`ZaNeEKV+MkK$>IV5@}9aNON2x&2cSn(og&r$NBkYyz?^?NPlDk z>5ojn-Jh9&yKG2=A7uq{0%Zg}l^Jn@AQ7b`vjtmlY4I1h$V3<+WIp)yU$7b?kUa88 zIyr<C#9~OEu?5*B8YCwT;SAjHzYQ_xKQ>=WviT*BFlCT*a%ts;adz@_8-G|T@<_W6 z<d~d)evmr<-{g<%^RF4@yx?Lx$@v!-VRZioToi$gBTxPz+m3}2>klbFY31>o1@c(1 z)z=j^;yJFrC>uoxd4$#w{*txUZ=u`_$FqEd(2v{_`n|0DSwNyC@l)0<@D7O>BUwPs zM2IDRf_Rf1zSt3~p<iTcO`e3b1*!0(TqjRv@?4NQ3PKn$|0%X^7F>iQF{d~-Poi+d zec|8S;{F?Mk<;26c@PM{d4G4&8Orc$UBQ%CFETdIP63MytJ9)Fo?OMgU`c<-LfAsM z{)6?R4e*X8qA?Lm5ZWz9p$&J$iD32;xWoLrMfO8X$uay_sS<-elVb=eLJXBD$WkQs z+q)e9;oV<j#`TMI|4{=nAf#Y}4Jiy3V)Y|5f92wj>2zePOwMES1Tb>-*lZ~Ysg7gM zA^DC3Gt3XS)$V_>R%&>Ti;#o}9Hrp!;DW+&<$J*19;J|gG?NQ+O2Wp1fUZzNS74KH z@26~#>w1o`bpPIU^##|Z;CcY%udWBc-2FY*dH;j!8VjyV!*xrlUtPDP`n#_4{Rh{V zEx0ZN*JY@GbzO$~@4C+aA6zF-bmStIz;!B`UtOo7`Ma(!{tvEeEx5iEuJ`|o>-~Sz zb)yA2E}<|Ym{8q_+4&ak(f_W6ze+7xAOEPo|EiBhggYd+mh1-JKFZoe{HQ(rv>bnw zf4q<dvh>65FGv~{B<+VjZ6urxNW>$GjRX_QYFYb4xWV)<^*a&N*X$wf?np~=tyCU$ zZjS{S-XuYClpvAaCWnzM!Nk8vt`Q*(doe%`AMC|-!(_bAzF^gTf3LrZpv)#)w|~_u zI=IQUP-<wxhQc~hXu=Jp-`qec02}eE8^4x6ioaP3s~@(I(h8}g_-}px`R1=F{_pI> zHe!@wjDl<@RDN@h^}mE<ElO&4)EzuwA%2vH%BXFkY(aUlaUn#alt^o|Yks5$%E~{* z<zHR+HCzkril4#&_kNXy-2{UnxwgEUU_xiiYkPUvAjaQogg@({KiYHTHlZp(O>WEm zD4$ULc~CAGCIYQEdPQ=0jh3SEMj&5lf0G&79}T#LET#(ZRtPR9$Q1;bC`i>RN-8eI zlU&^sC5E1}R+DEC2|%(r@wv&^-!ItHFWAK{BEU1qNg>?V=W<GuRh<&sib=C?`(Ddi zWR)7wNe;!_OS+f0yXO803GT+O((~(PCoLb@85M|d`^a^xPG;-847?>wTV9uub>5<A z%t%(^{o<8QXJ0I{?k-%Pu$P}#*X=B8#+RG7t7Mk#k2X)pTyu8Un*cA%QoW?)K;h*4 zM>CofP3oai(chz49){TV^1e?<(R|rx-1(aFTCt#m-pAL|84`oZS8wWTSY5U-rrTFm zllo+&VA`~i+eqO-h4fd2eA$HDha2wLP4gAMbM{nkS1))jGRAm_qpp}K!KKwpgiroW zwN7@z$g`&#e5(4AN|SbLI5%6>&U3kb)qltNxH)Q56jEe<9`^oU((CNg^KWaAP8uX) zp`GLs=;;%rs6hT3d!%(+of6ajPjR>QwMW`Ms^gUmRXm$)tav7p7?6qb7F+ym@%v}i z_h=X@>0<LgO<vHOyK-=P;OJWs?#zocb%VzGP2K~cdeu=ejdA(sCFwSW2gIM*^{m{b z%BKB{?nC9pXU(oD9phj<&~06{=8BO=dn4N;ixtn*+$EyUr|fX)6wb)z>({V+{FQr6 z=Q7tTM+zF}%j%Sxv#o2RisW9epz>RG)N<=9_uK--muqh&7kFNLBGguXWBTcLMCHFm zbbCZP_dY~45s;g$!QP&}o{GQxUG3)Q=H(ekmJp`q)eLnaYz707xnarO%QjcatZ*-F zx>7ko7-#Vt-aGv$=UM0Lm;08ryx{6Mxr%v%Tox^JqUS?}1J^(AmOH<=pvO$0LC$C3 z-l8`{;k=Dk4|BdSzaL~9Dc+GBS6JRB^0ZvGL-dnepL2!8Hob!@?cY6~#LkQFWu+J> zH2*sA7uQI>xQjl?gJ=|S|5f0X$-y4k;B@erDOaT87k#>0I&-PtO6nK;bhljVUTrjz z|7wTNk;29#HB;5+hw1mG>T)xj-8y7U8TsCL>tY-bHdNHDadx$6RBo8*HQmieDo;wr zo%LWosHQ#Ha$;9ei=g@OqTV9~L9v`x4!r>fk274^_fm9mO8BDy|H;aV%=ZC%2if!F z?lOlZRqXPdtYcL;Bgj5Tr{gL-F8CzCSoECEw65?SrNQG}T=xQen^WoNHCIbb+r}i- z`kRcOHOfsr!j|A9ZOVS*ma<TqXz0wNvz3*>&vOI#85L;b)rQPFyNYeP+TCo$rm|?& zb|kU+-cV{iAUHW1IiSt8gT%w{XZXEhy00nXYMD}=`@zC3o$I0)E8}Y473aUPl-lRB zrgi+5h3a?_Vdpcb-C=chZR58k1V4-0*(E%E=U-gB-ZMvWY40QBgP%gnofP=PA4Wy& z3wnH9pR&l{LX<z{iw`txD{#H!`HPxe&gER;G|qe1?DnK|kym@>+)*QIV`jel#$JV~ zV}ZqvzBGKQH@)IIBa1f4%V!nY*f4JhX<Twwj{Dg*d80{(N7T_&Yb3Be?ljktcD9R} z21l7Vu;;ZoUEH!2$}g21Wft9xQ~7pW-&*j(fzyJA)V4P=W_&&@+IVlEF4l5I-FM!q zoBXdHHVMC|+Wj$0cju0=cgNH29kCYro~5mFdBR4wz0f&ozTt(ne#qR;xxV+(F5RP! z_vYswdsTm*IV(sf>lD}D(b+l|K04B|EN6bYj+3$K#Ob{(pVH`p-fAxo^(&#{K4;{r za&O<O4{|f2VmDW)W(RPIYaMKeS{X|-Gb3Q@QCnWjSF1yBc8EDVB(znemoe>x2=|fB zJNF48CDToEC8h(JS*sX>qPVR`(xg=d!x(eLpY@Uw4}S~YvbJr#dk|l2*Xf9~JcrZt zNhJZV)I$%Hc!q@0D-Z58h^K$)BbQZKzg5(o**u5o(6)_yA5!SXRIanf?p|D?b>rn# z-txkmhmTlF^e#HE@&2T;`knAa52+G;6lP`ecGgU$(D_R28uuu8sqJWRPC7&7yy~5- zXFh%s#m@3Wod(V$TlG(m-#3wp5$M_dQT%SO$4NmN(Zq8aK1b?vlfEAiHcAkCE5)fX zMN<957Qqr>F#0t3g=m-A<j}T&#Yfkjzq*ty!ZY0=Fk+GF8657dZR%joOjn)zmOa6G z(WLr@$@xtiXhkExepuUdQQ_k0Wt{G}&P+V@*uB`#sfsfF(EWzaj~bZ`%anT+PBM?& z3a&oxHyNea_w3`_FvTv}!!*<Bn;L>IUD5d1{xotn!={HbC~>l)=Vs75%QFg07CK*> z6U*M-*h;s5%qpIqsaL}A!Cmu=sn`R>Jb6n-J{`OgtTMpZ$@$TeZ@+If|FxO)aP5OE zT{4l5^4zb_Y+WiOkkAoc+j@7v);Ry2MaWmW^a^_)>0#RlbAz7S%=Er0X(ru9c{c@) z8m?h|!=}baUtSt^C(qB#Htpl_3q7u+C#9Ebo;L1fwy*oDr$iDD&okmW;*tHxPO<D# z>a>FDE%^*n>YC;58%UQdJ0&{{o6;_=TJ?eHgoc^->n*7^DYklt_It<jbSzofYV^`K z$jRmGlhe}1xo`G8+Sp$3bnb9NL=bc6`yPYMPD{K;1eWz$bnj2)%iCHfShrbUz;tba zpu+X416KWg-8K?K%uzy~C!`#&va>#pmTfoh5D}x0W|6e5JJ!_t$YAqX(Zo$9R51Z= zjU9&T75KHxZl3Va6?&Q5_V~)-`)23QpZ<Jdy+hH`@$r3UB~KdO+%@p7i?3}%AfsWz zbVnXj|ABz;*|nBuw8TDZt8$jE`(CJiE^cJ_6X!bSvo8-=8DD)Tb2H<7faGgF!I1O@ z1D#Em`6w>Nd9>5fa(26ZJ<Z>z_MU&q{z9k8U~xXJ)oS*7k8KuptAAL!rMcLLa(juc zOIoLcyfIVexv(j_o1K!^Z$G(N9%=McQlx*wH#w(CCT7Dk*D{+=OY!+XD1I{1P|&TD z&ZryLvmrC~+|04F&&qFj>fO;6WXirYzOQd*$DOwDiXyv|^)K|kSabRWu-2bpR^01l z7jVpC>T|M47u(k-*%HT?Z>;!uu%VE&vPDjmdD5`ff2Uz1YhYaFi^d4gqU1}{4+F0Z z&AxWOr^ww?_{i8>PV7+Po|%Vd8H@7X?H+x-;;{ej$b@wNX9~<4j(QEhw{T{+cX3HP z`@zLUfFf`F^qS$PO<&hb+AA)r)GF$`_<Gpz?6K|kG21Giv3%QjYql*UiK}aSI%UzL z3$K?ph}@4j7L)IC>Fq`53s1gWe7N!6_T`Q~n_XXD*e&Ny8dz5qI{%l&HgkJ&&NY;H zi}9`WpGv+Tb(Mu8{FlP}x4O$}hC51Jv6C@jbpHO2Z?dIG^&My{d_o!fN}X9lU&40e z1M?L*I)(jiw@+-XJbtQ?bF<2GW$%mpblOA5c4XH2-WW+TSi^0V(5>T9>>88gzwE;z zuas3XtED8?$S5dh1hPn5q-C`w+D%7a(L8fx{VTCE=M3*xwwX<aM4lc!N!r~Yam$@; zR|mnDZj(7*_Fa=d!Ant?+iA|$FsM6@S|;yqbHDh>i<VRmHr>2g{{j*FQDY%d$fM!- z?<%u+?3bUvsM^}B`d0`3T)X?@Z6&1VFLk{?zxe0c(jPDKp&I#1t?5S%>X+pIvrB)j zy8PkN)4y_Qp(68VH~uUHf4I>`|F5C>4<cc+ih5xrof-oGPKbRI1KAl}eN>!8LOlb6 zw)*?&i76{6iHUgnZT9!r>gS~=w$9E}UQ<jYDA>)<!_CLv&r?q<!ZS!re>pRQuABB| zpTN~_0U~g~FG$->Ps}?wI6zxbF=#WYmTo}`{sEqT_->1Tps!mn{tfg}^aykdgTuZ) ziYiJ<8j8MdTm8gD+`W|b#C(F4#YBR`apkccSMFXa<a;XQd${u0jw`p#o6(TL6Te;j zyo2w5-1+?()t`4%e?Fu3^N!ljJL*60sQ<j9@$-&`n25K}R=@3t5&1(*WQ)I#*^e7P zuf!CW2ZUgi6S^8zc4O@JEBb)Z0>p3&e#pHa*?_#-@;M;?ke}cph-+w!L)7ON7I~1L zCT9s5<l{n50=YMV3>#Ps%)x3Pgd7tE<Yrzq@WTt!APTw2iUFQuKpHP*17T)@$OTH6 z22u)aSTT|hyy56O5Xp`ndJclf1iWY@wgFcJj&Bh`90!J|Vm|`$Sj@$N7VQ(@iLP=f z)V|BWdIW3+Tt_=%ExJsH!8Rd+;1|Y-HZT<-h+dE^ihE)NaTVx_!ym9t0^tUUk_fL9 zLEHg>Fl>}Eco(QH!MnhFDaILO2_gw-$`M2bI4O@fDIjcMlOjP(f@meA4Teb10DTpL zcmP~6g76q@NB3VJ$V5jSiv~u|0iQNOlrJZUMngQe0%^YrVX-ENH+BTE-vQ~l5zQk< zg7EQ1n0@fSA9{C?)75*RXlOenC!?KsoFK+CkvG{0UoO((EYhG5&zBNJ;Z3A%HT<i? znA<(1UnkNVg240|i&8%zET8cIIA#D$5`@t-((@a_NI@cQ(UOP(RuZwFheX^KAQ4#- zB;q*wH+j`bgo`eTkY7n6-dm9fp$#OW+l53#Zzd5n+ek!xAc>gUMItsQk%%3~NW{b` z5;1z3L}V0@h=L*#QGS&~T&^M!tq(}V(RLCsh$$T+{Uk!>EqZo7!cVMX)tw~~?uV%e z?;})17^a1gg%d#{C;^5w2x>qB5JZ9w&;tg*2$%s2K+p*`zz#S7C*T5$05?Fi2wuPk z_yM^*Lo^9NK$dM0K$dSYAPx|HLJ~*;X&?iZ03-<^3*>-2PymX6Y|oW}3Qz+`wuLtR zGJI+REual_0Fsl?1IvLvFaU<Y2p9tsumT{-2{T|0EWj#Y304CuU=3`5Em#BAf^}d$ zZ~(|EViO=+TW8=3+<-gq0A9cwYy*BE0_+2EU_Uqj62U=m7#sm9;3!B386Xp6gB*|t z^1(S!04{?Y;5MiM_dqLn3x>c5_y|V9B$xr;0l6kZ9*Cs`G=MyFh1^rh4miOgzyrud zA-SJP2#5gkh_5tQ0_1=KPy?Dk2Ur6KK(=9mAO<#S95yB#b|C~h?GODl)PdbJf^3;1 zPHQ1o&_xP&=&l#?9{Tt?2(xK|k(bcPUcehl5MP087{VKlyals6VMlhsALy(a7><Tq z?S-zzBF><CKS4|Y-UQ?y2!vigK8Soz$Ly#q#3_#;zCfpWuE2&|#peykVioeG2I0O- z5bX~L;#({7?+Nsy7x!Mm{=P#TJ|g~O1W`4C{DywVfPC-(i~;T`$Q<wnsh|qH0$i{I zrl0`y0MZQZ0hU?F9+dGb6w!c+M0kTTKvqaoC}ai`iHKt%5of?{z{*M@`T$NbBvil# zAkI!AmVs5E2Z}ilgrS^o0UH!l3)q7|a1`8z!oC8OP+CQ>0qg`<KofWiRzZm)g<yvy zU^`?;#5yP<*-jNg(JG*1>`=07Km|pchoY@C!MjkRVJi}G2TJ0*5oIM5A<dISR73a| z`ICs5KoW5wltk=>5{&F25vj2xVr>G6P)>rKOTl$IiAX+$xSb^tOczMRlR^?<QigP> zAQ9_tk%+IgBw{NB{6Q0m;AkfiUQhA;GZOLi1&NS&jZstx{09iU=m!$v0P=wQClaxG zj702)@b^LZXTj-N*i7&kto(-YC9o4{KryU<4>)y*int0Mfp35two?t<1up?9iHhI_ zs=yXR02kQSF%Ss*O17~CS;qjfkPrr{z!ca4dw?V&9Dxhi43JdB7O)j;2R^_TAnAwz zumd0oF(Vb_6bJ!GP9hA1gPmX(*bO29l9-4B(O@r#0Z4Kp9w6C?LjXxnB!g6t29AN_ z-~>1cvcM^D8svgA0NF#F2goAgBDe$!!4*&hia`k|1;{?)Dkulnz;%G^ByNIAPz7#* zYJlt|?tnT_4;sK-a33^+2LM@5G=qnr1+)Q(0`Uku22Vf-fM^h%pbK<^9`FqGf<EvZ zya4@R01Sec;1z%<5pTddFbv)Uh!O!&B0hsLFb=+euV4a9foU)czJWP_$|6Alr~oyf z1@wRckoOW{1}uOTumKLh1-Jou79l@a3<QBN5CvjD97qBwK%T+56vzU3pa_(JGEf1k zKpkj+Wk3sP16`m8mIHlY01SZ<Fa{>T9AJ7Eu?kp%)xZka09&vItOa&p9U#wov<Dl& zMi7T2I0aCJB5s3z@D0oXa{YsZG!g|0zyer;)xa8%WqvOp%U%v3%OAPyBg+Rl?`8lw zoxg*5Ku#ZWJT?I*;0#<rG)M=f;3_Bw*Fh)v0?4y3IRGbE1k}Mgumc2vU=Rw@K?Udl zouCW!fEmC9RhI!vfh>>*tAR7v33h`>5Cw8T33v!vK^u4k#sC#HL5Kh`APywK3g8AJ zK@^AvF(40AfiBPko`F8_9V|j)Lm8+7HJ}03gB{>7NCqh&4U~aq@D98OBj6)op+#B% zTVMy)0ecVzj)O9A4O|Bmpc_m84wU(e05{+TnqW293VeVs@CQf0c~A$)la%g(Mlb|e z>5+~=0Vo1xU<=&A9<Ue0fLM?Z>c9&y2wsBMfSLhm33P!zFaSot9gy2oCqXvI0lA<S zbb@g(0VcsT;A4a?09UXXcz`V+9+ZQ2@C0;#PB00CnNSx3%Yi;H1a2T1Tn0s;7?grX zU=Hx3o+Jo_fCw-E>p>t00ihrqWPpcY2#kOa;1ghFfjt05U<EJ*X22VyfI?6VN<bNS z3^1LK5CFnJ1c(76upR6NiQphO3<^Oz_y9hGQ7{fT(bm)icEBDufQ?`$r~n<H3v`2L zU=~QAZE66FfeA1LTR;jZ1jV2Pl!3>9kpp!uuoTDwd9WG;f+UavQo&Jh6+8fMzz`S) zBY=q$c>?UgMz9Gufk;pRIzSib2G77OP~?K`16IHq*n%A(3)}#epbFdu&jH6G$ShC> zDnJd`fgo@Mq=GbX43vXb@E&{wpTH<!|G(I~3-~IIcJbp+3<3lQ1lQmmB)Gc-cb5P` z1A!1EXs}WWZP6B&7Ap>gqD9-{u0@I$*8(lp{D05cEIA>2C~tW0z3=_soP567vuDrD z&dkp0%<f6Su{EloI%=RMx??<+U>TNUB@QDTX;V^nkP(?s0c|k|Lop1)F&}$z9XD|c zcMv}nWs7Q{yMfe1ZS=rQY`|u0!H>8I_tY#)<Umg3h9CN3BBo#}zQzXpif8x>FYpR! z)39GcLo`8CG)E|=V?8!v6Sm+yULj>#))}NldX#})vj|3C^uqv5!+IRUNu0tN{E1}g z*jK_Ag;5ku&<~R^6<=W*HsUwD#2fq#;hKmyY9Ihz&=uV=4$H9@2XGLF@c<qfC@<te zUihF6hGRD7VLraaZrn$_jD$l%Bu0KTMIZD-e}rN>cHuW%!Bt#`t2fIBRZ#<esD(g` z#(XTmLM+A}JVByN)JY^oG89G|48#x&MHuE`CobYLuHYJ6GE+ZL2~|-IHP97Pu?Fj~ z9vg5550M}X^G0GMK|$0;S7@j19tgsh*n%@Shx53IH%OnA;~kVn8I(g?48Rn8jcJ&H z&3KJe*{D-UhYTo-FwDYS%)>X>g@;Ixopd5GlAs_OA_&3ggT9!G4LE_*ID=pD0%>wk z_fP^QQ5vl<2w!6cW@0ve#0C6?S9lE`e=iwwl0URW8?=Q#hGP+S;b;7Uy|@LJTx>6p z8Cj4GRnQ(oF&rZ>3Jb6smv9x=a070+*#@9IDxor}q7%kqA(r4fEW-iZgi9W-J0LFN zAs4E^9~}{Z&KQG9Scx@Qi*-1O$4Ho$V>l#%7kp6<fe1n`1Y;6rVI#I+E4JY`yhMt8 z?CX&R=};QOpw}bkU@qokCl28@?%_TjBC!wKYji|sbU`<~DL|bn$nwFTMcDTgB|SKT z{KcqSn1x^AUYxSWZ>U*<crX`xk-j9$0%uX6Jo_OmK=sPhEi8gd74i<f<{7UR^$=Y! z3OC_aoAO2=`r|mf>u{WhfjENa_#44>ImSW4dTb}q4|A{=*Ab2?_1Oks4xXY^1M-Zm z2uJ@>lsl$j2G-&T>MrDa=!FoB$0l6e#QZk1oxzK(41Z)@#Kj}jcl-@GN_nC>I{wc3 zkFU^x6WLF&9KXW#ORfVT^+YEbic?6+Np3zAgfD8MEv9iYdjT(z@Sc<O#1827e6NJb z!o8YJ3HQpDEPU#YsRv`<$CktY!8+g+TmNI%{r`zNFm=3_3tOB~Ud@t)C;zYbA7&S` z{d;p>#@r+ShuPA@|8<%wNB^Uz*8ZDzQ$5+Gr39xV!eOsuLt_lWG%UaY9K$)dI~nb3 znHYLyn(FG6iP8!4YW&ppzp(yKLCV4sbDDmT?{k#($eaIh-8nwcA)G;Q+qk~h&&r9@ zBX-U7t&aOBE5kT(P9NGj=#OgOm8#Xc@3UzopIr-=eH^oBxPrD8?slmozgxV(-S3Ne zmCbuQe9FcwkALhIE`|CS^LcsCl@Rvd?H81xZ?77jpQro2SgBqf57LKAhBC%?^R{!d zeYd=1c&z1Ow4jGeSXh|+$zdK3VsL&`np}8``y=ur`t>-x;kLv_S@}G%xIW^zmPE#T zq!GOPa+dhEaN0PfVfFhH7_N0SKIaZO&V)H|k_3-9UJ_TmA}Vp5^uJzYbeEC4eR#j! z#hWy^G43uGA{zR2xR`^Wc8xfJiWu_Mx6`vo=EoiymU!ApIcCor@qDDkqYH*ZSlfI3 z^xbs1{12r|)ADY*v=W--<ra~y4wTndeC}F7bK<sB&yAy&S`$7oO3ipGwBF8UKI2($ zbL$K(dJjr;V0EJjF*&pMOvL3xhVv?L3e9@bj6>Enm5t#}4l#B7bVF(cvs_N8yHl4( z)HTAJ@w~6(b;-Ujhg!R|M*Q#1p)G@Ub&Ja7{3w+cZNy5XMc_;=)RpK5-hc2)L>O}= z8cH~`QfORSWR<8CC3)*wftgV$GV|ZQQt17zg`@y~C2R`WhDEq@qab%r6z1FSTX0O~ z6?K)V$R|l7R&j2&<iy-qmAQOkTkSk;tw-jn?CKJa&&#=JuO9oD7Sjx&NB)|Rk!(e_ zGI=YBFGZeMw|VJmoDenO2i+EHMQP^E^({67%d;Epck9YCQFP@EeHk8J_6^&!d{kGy zVNB80$2yE|h^)hehd(CHgghF(5vxoG%BcVko-Yc00DW=FF8Z{hl(Uv=QHyD2xIz}w z%y7jlrkUY<EvA{_id#%G!xgreW`-+aG0hBD#A2EePU}+iyqn>y@@|H+Dl;>jRo=~T zR%K>}v&y>}&L}hEzN|vF<yMTe7q!*<_vPJcni;26c^YZawJUnLnBlC-(+p=-E@n8Z z@-)L)m5Uk9syxkbj_Z<^QuI8S;jHp*&d(?_qpYL<RD<I<t;)rS)7P>*&9qpRiy6+U zJk4-c<zj}jDo-<<Rk@hqtjg02=eREEw%58`ijs53b;*})jN@=tc{kH(Rc4w_ou5_S z&2Uy_W`?uMyBW@^%*=3Bc{jsZm6;jND(^-(-9kGq7puIR;jGHcoS#+R&2Uy_W`?uM zyBW@^%*=3Bc{jsZm6;K)pk?08aPKQKt8y{pv?>=fPOEY;!&#M!8P2L)%y3raVurIS z7c-nyxftP!M3jrMU5ea?>wdgoM4h*qR>*SyZqCnfd1|bV>Y(*;ftgOLGBf9ARn}%W zt1>ggS(UXJ&Z^AJa8_k)hO^4M5zhL!zzk>9Gjm^Dgk#VWEQ7*qeRQa07JZuTQ5~n# zdKsDXvnn$)omORShO;U&Gn`dfo8hd=%nWCh2P2$rc_Z^~zu)wwb~>(0dYl=(o|$pJ zFPzo-Zicfe7c&o5<!OeqDi<@HRe74>tjfg<XH}kNIIFxH;jE7t%y3qDH^W(#nHkP1 z?`AlwGBd+j<=qTtRc2;5tGt`xtjf#?r^mL@>x3E3s?5xAR(UtWS(TX?&MNO_IIA)< z!&&9s3};nlW;m<7o8hd=%nWChcO#tjF@qV-D(_}Et1>ggS>@dfXH{lqIIFyy;jGHc z3}=;hGn`eK8R3e*r@j<^&-TUo+}E6+RhgOdv&y>}&Z^AJa8`LY!&#M?8O|#2W;m-d zGs8KqFXr(?)N2A}IIFxH^RqrKFvD5p-3(_{W@b36yqn>y%FGOBm3K3oRhb##tj}-F za8_kzhO=5%%y3p^W`;BJZX6dx-8UAqJYO;6v?@<CPOEY;!&#N58P2L)%y3raX@;{Z z7bBdx@3*Q;B^+KuDr&oa5q&#v&d)0E=KLJjr4kO$`*nU+WoFLLD(~j}tjbKoIXb^J z!&#M?8P0KC(v(`4i=*>fbADE3X3ozl?`Akh^+o4rm3K3oRhgOdv&y>>&U*iDhO^4M z8P2NA%y3qDH^VuqFPcBAyqn>y%FLXfRo=~TR%K>{vp&By!&#M?8O|#2W;m-dGs9Ws z-3(_{W@b36yqn>y%FGOBm3K3oRhgOLtnzMzv);d(;jHp*hO;U&Gn`f4&2Uy_W`?uM zyBW@^%*=3Bc{jsZm6;LF`driuXH{lqIIFyy;jGHc3}=;hGn`eKnc=MRZicfeGc%l3 z-pz1UWoCx6%DWNHdjD>Qv&y>}&Z^AJa8`LY!&#M?8O|#2W;m-dGs9Ws-3(_{W=1&c z^F}kARhgOLtnzM#vnn$)Tp{h$Y*U$`3ZlhZ4T&(cAiYCT(AUtPUX5yYQNw<EE1E*< z(T)XYnrKzx2<aKBu1yTNn$ZI^LbVq35=O>$hN28rk@kjPI?#(1_d6P11<(@~A;S&F zN71tp6UP{e(88~JPcbB>TZNiG-B4%-z4eiP4R`2nG_>B#-2tex#Slg>M3sAQRI3hi zHwUg9HGFlF-iXL|%8>suy*zP?9*Xwn+^5$hO4FF9IzKTCeM;Fz==7Xkv~Yc881|YT zsTljl@JS+iJmOYj!*EaTti<XhhD%AEM0Ltwn9p6D>P9ZZ?c7eHJ}qcCT8ws2c$G9% zEybOecv{|&tR_!4z_9v;9S!IuiEkSlN;Kh4Q;cqA7}J_N-SKA|!}hk^35vX(4Ntoh zFOmcqY6jCI6Bh?X8a3ESRL&uWRKvLo755^1I)b$0kCBEf+}fyejWN_<s2Yqnbo<;% zR2F)Ms<ZS8RW&9X22SBlP-K{4NHvrBVM_$}Z@4=ZhZY%ba0{f$u-b5mp?bc?aD6>@ z+F}*AJ*v@L42fw}R(I(Qq7v>j<lI9(;dRuo<QRAO<Job;f{RX~MsN$9I>RlB>e^ky zIeM+CW3*rEOaD7VyJfgS+w0>%d;HMEY<nUF&Dyr7;+d`5i5RE%knQOdNf;)D7m^`4 zQb2nwr9x_?f%aaa2Zn9Cp{?!Qa3J2u1e(ri$)}e%vVq2N+f#0GGNc1J&%NhP2;>FL z<2+NFbp{1c5QX52!YG2GD2C!-Q^V74X`4rBltEdPLwQs{MN~p%R6$i#Lv@%f_%(T7 z3$;-P^dR9$xZLprdYRB6$Y}d-%&-ZXq8XZ_1zMsNTB8lxq8<Fv9v#pTY^Hb?C+j-8 zpewqeI|9)IJrRUn=#60XK?wSyANpeeLNO47Fc?EH6vGgP;TVCD7=_XJ1Z*1RQ;fxD z7>Dur9ADr|Ou$4;!emUrRD6Z6F%8o(12ZuTvoQyAu^RI*AK&0xEWko6!eT7JcUX#L zSdJA~iB(vGwfG+EupU2P12$q4He(C6;zw-5cI?1T?80vRgrD&X_FymeVLuMwAP(U$ zj^HSc;W$p<Bu?Qp&fqM5#W|eE1zf~$xP;5Nf~&ZO>$rj6aTB+28+ULQ_i!H%@DPts zCPFQSYOs%C5<~TMK|^_8>N`F!Vpvy{^1}5Jkw(;`E+A1uLmGxEXM~|ms5>a#EK;); z)N>SRXQ<9lHEeIV*nvF5CBP836WbPyq~fW^R5~?tjG^WP?rgwFDwE1WB~q)YNUG5c zLnRjc=Nk<pH}hTeW+AK3S;(ph3((&7!z_0=vC!0J7MQBdLQ{U14XzZvy^|EWYW3JK z_6h3+Ry>U~{5k6qJYN|WyrwQ=%NxUL_QNWkr(qdG^>Y%#!=z54Lf99pjqHb&2m4?3 zCc?skPNHtIA6CWK7pu;t49P3-Bn9MUKddI!H=J(3QxLF;eX&Z_)G&>Gv6{htSS4it ztIkKL*_nMV5(FBuu`gC3!G<@3NE^OkAFQekF%%x|B<fX!@7M<`FCH(TO0o}D)yG8Y z$$Qm-eX$zCepppyKdk<kXlTj4SbfiaST$u|tjf+boMfmnu^(19*%zx<?1xq1)rJ=g zRnoPFzt|6}-Ry_e>@9|D?1xp{9R}~6PNGWfF{C`|Bx>t1L%b6#V=QJrtfsObR!MIg z?yxUbZubqkFAfinE4t?m%bzlDeA^yb$A(848xdt}WR$T{QN~6`8T-U;%&#TeZH#Em zHWW+Qcs)Xw3iihYPNYSjWTpRIZ2w(t|J`i=<JkVUAeMQUL@e8|nOJl)*gHy0)<+i_ ze_3drbBFZ}?pZS8abfv-bnOrv)F-G@NWKn1JxT_3>eRJEK*>Hm{DVV6{5$uFA6AcN zlm+#y<KH7d!aPV`GGfpa#tZAzH83O~*gL4FXIO22z8}!jyP|(!U{`;htQl4>IH+Ua z4k0xv$0bKbnsoT@9wSQID?R_SVGmp2BX|j?{2T=#Guopo*5d$f<1yaAsQ^nJ@$em1 z;Sf%tL_v;R&<-6@wh%`!2u5G*#xFR5OSppTc#Ic#iFm#o%^?xeA`7x2FYe+25)@`S zer0cQ1uctmgo2I;gr3PQz+&iLWMnap5>SV|Nn^N{qz@!&l;Q{p3$YX{uo^e;5Cuwe zq=pvgh@Y?@H*gp6%W!mwyeNux=#4%YieZ?5dw334Dphi%L}p|`VNAwsY{WMBmSeuy zg}pd}{1qr))I$?Iz+=2dINU2zF7QAy?8j-iR3e@5Kq?fg%re69D(v}jx+-OeYj})j zaIVHOMj{kO6;wxa^h7@tt<D}Btq_7jH93;Sa;(FBJi{$^``Q=%FTBFa+8hC48-B*o zI-~>VaSgxY9{SYfs1QrB7JG35wd=7AF%FY)AI~tRK1Y4<Z$RCJo~i56K`s=8KBs9h zPT`^s8!?1WWAcIk^gvJa!(yz$W!ynHk~QJ%0p4hf&KQQVDA$zwgf-Zt?>P#o53lCb zWBh^mEl3x#qdENH-IB8h<U>i6MRhcQZo}H58v+rEA@~B*pxd{FSdF#Vj@>wbM|g!d zh~J83iBu?q>hMETv_w~|#uogD{Wy$YaT5>l5Kr(YoLf_ukp#)%jfQB0cIbhA2*YR4 zZSYJi#}Cl$@g5w(UvO?i8K49vVK$awExyMO*pB^hYR5JLB~cNz(HPy)2lw#|F8-_! z*xa7=2*2Y2@^m09T3{R+b)*iXGsa^cmLg*SXL)E2f4Fzz$O+4_4lbREABm9?Yp@AE zU8oDFfF_uRZ?OpbZ~*6U0r&9`u3cH*kOaw*8>LVY8M`w?Wi-TctiubW3*^3B6vsvA z>6bH7AOnhH48Fi~r0z*wL@pFVIk*OqPvk;LR7Z0>fm1KeG*K7Za0JJ35trf8n{*>3 z(jW&4p$N*LJgUJD0qBPT_#9ti24-U^UL#{LXWS@=67WM)bjIF3oU!0Me#dQigi!v- zh|I{3lBj{67>42a3e)f{7U6q1^<}?;>?nltsD*a@Sl1AQff#~$_y#Mn2HUU?$MFgt z{aL?|1=&ylz9^5cF%Nf<XaIExnc#zRXooKN2?y~juHYV?Az3KP8FkPEE3geaaS%uF z1W(~Mka~*b@P-eHpe$OT6FOt-Le_J1=198>`k*gHVhm=WGgrd8Vi{KAChp)V{zOO% z!e9u7VhldT1kA*2EW;{n!EXG7JvfNNID%8SjH`Hrr_cuyx+5MukOW>xhBU~A94LYk zsDj$4gZgNO7HA271fnMfBMjp)1yeB%voRO*un24LJ$B+}9K)|Thf}S%x`$e=IjTo< zbVhd!g<l(<HHW4MKv(p^60E~^?8iZz!*95QPdKBQh{>3bh1dZ9c1|(~E3g6Ea26MF z6SwgQui)m-832;Q8@Z7ezNn9uXpK(Tg5CHV?(Ll<K2jhRvLG9LF&yLYIi_GPzQZzX z!cRDiqd0?yc!5`l*Ma4R^vH-@D2P%hgX*Y@=4gqI=z?Gj!f1@a1Wds^RPD&JMtuZe zK9*tywqqyu;v8<^CLX{&fM*FJ8PcORnxYMcVkADtm-q@Ru@RfG7ngAd_wW)foj4Ok zVq`=n<V0Q+MRC+Z0|es~F5wF9;4xm|4dQj?>=h}H3fWPu3+014XpCm)fB^JCe~iO2 ztj7;HjSIMrJNOH6yE;i)<V9&zLnAarCj?>uCSWGM!#>={BRF^Cm$=XZ1Mwq%!9E<u zuegkRc!Bucog@)Fks6tiAHFD#`e=&gXpf=z43jY%tFRioZ~~`r30Lp{B{<XfLxLWZ z7t+HAz9@_G@I!k9q8A2X2tLCvIEv%=6&G<G_wgrQKp%AKiiAi3Z)8R;<U<jZLS58H z0ES{L#$hV5a}~k|Gq4bgu^BsX0EciMmv9$<;5D3kF<&G`dSpUA6hRqOLLJmY8?;AH zjKJsk60<QME3h6v;v8<^CZ6IY682_3NQtz_j+`ip%BYL_XoHUEk5CN9XiUH)%tN6* zTrt6yn1gNDiNgK30)%epi<JG@E}=cTqbI^J0$*SPW@0(k<45d3`T;BlG(;Pm!5w4@ zB|hXsIaEMx)I|$)L2ra&FmerKUBJ>IJZ}?0L!G1_2I33s#|fOqE!@FlxD2CS!xJe{ z5G7CsRnY_eF%)y~EmmL^e!xDQz$skAbLfLDosksDkQTde5QlLFzu^|{;5q(+%W$^! z@WONGRjgDaC?hmS06HTW{V*6#BiWZC5mF-`il6~nqw*-q4E50#9nl-X7=_nJG@5+_ zil7Es;>jm$!w`;yW5^4<(GV>WjDdLhDf1sod0+#cAsim#C{LtD4&*@@jOPm56r}xv zd1Cn__MbS4vq(0X@1g*zL0iD|s#`mB!9*;<a_q)cJVj%!$aTg@%)or;Rk~}qi$+ta zml%T4IF0*A`xSK@jS+~!_yT8f4Zq_r%=nu15A(4QRi{y|Xn>CBgiuVvOw7h|tj9Jy zfZKHT;mCnj2tXGM#9(}iY4{e4u^KsMu>C_7=+(xq2*U(?gGE?{wfG6Y;5bg=5+30N zvd*M#qZbBXHP+!Z^kJ%*kq7nA5^d21%drJnX0v{wK3bp^x+4U`FcRZ&9`{gw4$BTb z(I27s4C}E2Kj9G4&Sl$#)i{9XNI8!(!6%r671)V=IER}Ena{GsH&})h*o+-Gh!gk? zS8*49->`i}FN9(y7GWvA$HH$pHo#Gw$0gjt9XKsuzl3BcwvfD`J$j%w24XIjAm?K0 zE?UDMozV?fq0jO0`;Iz;EKAugqdMxN4~Aj{#^Eq7qRKMTja~@FAbf_&n1gSy3@;FW zIonWl##l_k6fDG1oW~{HLXj0tQW5)c1D-3XADDu9SdKk7k85}er&X*Q_!^tA3qRo) z&fpsE;2B=Pc{SyLb{K(iSc>)7gk5O6mU@N>n2EVqf@g64p1fiqj^Z&Its_1JVhm>D zTdc!Q)LGAZf?@a+pW$oF#&=kaE!d8|xR1w}^#k*Uwub9f_`7%j&y8%u;Elp4fy$_k z`j~@d@ZH3`5sDdj4foB|8RSPL)I=+E#dCxs&KAynkP$hN8^urtHBb*N(H33s8NS4H z%)$z+#TIPCRs4?Ucm<cO94kUw^|dvjHtHc5gD?WqFdIvt&+A_g=N}1!udx;v@i*#h zqyC~D0x<xSu^6kc1BcLJJIA%?hA@oA7np$A_!g`119swP97dNN)OBdj18wc7jB4nL zV1!~kCSn%m;X9Px#r7B@@fGIoCO=q(UD$)8IF74$h`;a>aeiVSh?Gc;Y{-iuD2B?Y zi)Ltn&gg*w7>v<K^E2x-vY`;xVJluC&MzFlzz_A&5nU0C5QO1VOvGf&#UiZ28f?Qp z9LGsq!7V(-A8^^j{E-dXOG8_T{LvAg;7fdk@30I%U^8~3^<K&wGqC{6unjwK07q~Z z=kPlo;7`1O+dlU5NRE`qiu@>!lBkB-Xo4qrg*S-5pKS&1;Sa<)z`6o2q=YvzqXa6U z7M|h_To3Xcq()ZcL_zqXG^(Hu>K$Tvq4Z(aRrsL+TA(93VK9bbBBo&_R^w+l9ia{) zF;XHUav={Ypc0y(HTs}0K0~Ubq#yB)5f&Md8QNP$Tk7uP5t1Hf--pa7ic+WwKQx5) ztkKrI^eBi=Fc!<O4qI>p$8Z6caT~KwQg^TfKcL(x@(({W#our`P5Gc9rr>M*j@zhm zhVnx_v_|c-<P)vY8+|YoBQOr1V*yrT1DgNJx`CJQI7b;EJ-ks6g;5pX;|FZSPVB`6 z{D#|jf>(Hh#OK+LAP7SchB26cNtlPLxPg0khCktcfpSJ#q(^@2#zCCGP29#)`~|0r ztV{4fa%4ak48jtuhW2jKR@JXDAGdHH5Ag^7#2ci(#5oLdATO$-4t~VXXnC3KBl=@7 zmSGjH;uh{*B~5q*k89Ku6hwJ6L=&{eCzy&^Sb<ge5xa00C-6JsT&FCM3VD$124#Y* zD25WKjOwV5Fib|1-`V%TA3=DIa5&v$n~9rvgg+7g7HLIFq(xR_M;TN@J<Pxgbiczn z3_>vui?9|yU?+Ct7*69VuH!ELz$?VLOMZ|HX^{naP#hId8BNd(9nlHBF$|w#8+PF= z&g0oVmi>Lo0o70)P0;iK$LW}l71)HI@Cy#%D9+#<uHz>Dz;n1gqz)oEQXxBXqYS#E zFZy99hG7&w!9+~KTzrF7Sc@OA1BY-7*OC1Z`9?vMMj2E^b<{-zG)F50pbJ9KA7k(t zCSfXOVJ=o+HMU|0PUAWB$65-b3hJT>TA)2TArQR~ioqC(Pw)jM;%m&nw^)QVScmP{ zg(EnQ-*Fp%;7@owVV{a(D1mD5LjyEHPprlk{DfmTiA%VO$9RfxIRC*h9lVeZ-Y5ls z^h7YmVKa8)7aYOK2pOJI=BSQ(7=h2Q3ahae-(x*~z(#Ds7Hq`<oW>da1-EA$=b;fs z;4|#UVQ3GHxb$EA&*AoON{icnRIdJ$O87r5ExN?brEdTJKP{dAzoy59@>l=A<}Ws1 zvCB5L4#d`h*g6nf2V(0$Y#oTL1F?1Be{&shedky`F5}Mc(9iT-O24a&@6gZF)?<BH zDWj*k_A;M|`Ou!_+N*pXJ;uL<*(*G5C3>r(e^rs;xP~W~)tH|0ID<>@XhQEnWNgNL zRnT6^rJ%i!2SR%p?|}9yPC!p!?M2)S+H3d#v{!IaXfNQN&|beQpuK&MLVNqV(2G}l z`<8_E_MHRm-FpDX=(&3e+DrFmXs_Jm(B8C7BYMla(JNMa$>zamdWMd{P29$h^z7V@ z*F*WW6*LJWeP}&`xX>GYFb3mvd?dZhabYy~xgqNqdY+;K24E0|;}m{F!O!TmiGJhh zU5cA{gms_O^BOh2V1AhOB|Vt&ClXBHeinRzr4#ARjK`C>+X3#A=@p7vXo5Zn#bKPm z>nZf=oJx5j2vaZ{yKn%Xd_@ma+`$W^{F>#4!PDqri}l!sS4cFS9=9{-*^X;?g6cCV zS4_k-tiV>pnME0+7)oL%_Tw7<z)LvKCQhWpLHvrN^eTOcj*ID4jwzUndw7KvONbvQ zaRc}85@o)lmo-K%r%qtR3etpRE2+;Yg<5C`e`H(5oe9{8J-Cd=_zQ7X(}No6)-XS8 zz!99nIb6mYxU3cNMs`#}4Rk^vzQQ7`zy|EcVa!{{=eUUbc#6M~ay>nuaqI_{8<KCJ zr!|VBI_jc1`eFbcZlrFY;U@03LH5n`)WtqrhsPGe;{<M_(N^jtO8v+>hq2qJPgso~ zaRxULe>***Q3`&jg9ZpdAZB7N_TwBLApQ>4Ypg?yos=(zV>G_PTzrS+*oqxEfit*; z`$)Zu^y4K`>}Fm2iRF*ZKQmu^ftgs3pK%NKk@^?vD{7!AM&m2&$7Q^R-t6jy6sUx1 zXo1$4f@xTTJ-CTG_zSO*crRhm?*MUQJ+|N)?%@^wMwx@uFMNWja5_X!ZPY+Bq&`Yr z!RN=x2M*#KlAhpmv_^L<#YUt*$@U2y5sc)g=wXjpXIX!76_1hUSC$q0&=dpl8K&bK z{D3_;jqAvLj$Yj;gQ^&a&oCW}a2-$Ka-KQ_Zxlp%)WH&L#2%c)LxdyI1?n*JpfqZt zIf`Cn+Y6s-#Dm>9j<(mi>j$4>HkM;2?%^R$-5@Pk^E>qghi}q*A6Ic5f8jMkZgHm+ z%HL)k!E`LdXWUdg3BThBa^7WIgoO{Nr+9!jX#0@f^BDPv@8b|I!2JpN!DT!|u0L28 zaRrZ%`zhObq<co5F%k2y@=xjq^w-c&Kz|Wk{-V553m0$~8D6k&L>NBDdE7>_*KDtl z^Ka6NSy+Y}_ydhSXbHh5n2K4LkF&Ul<Oyk^M}0JbXJT50F%PTI)RPtz1SFw#2Fa7s zdWN}JiL_p{0HQA1;3l4<c`{mba0=JaAUQ1=IF2i*mx9(i9K|J+NJ+~Dmg0N(rlJ=R zI-(aQV?JKMIW;XUX=njPJv2fGbjAP-#{|s4F`UIs+`&tP!#6FhHmC|e48dqj#7r#1 zD(uBkT*h^HrlWiiicj%ldgg)q-t??NmQ1vGp>}4{hPhaYQ@DmDS!j*Mn5^`Cz)v`V zmvGNU&khvFvK+L|KyuN_jO_5mEG)w=9Kq~7v|3>iR$wc3;{?tkPF{M5p*rfrt01kQ zxLSxF6L9gRr4o%1fW=scgE)meg=tyC0F1(PEX7^CLbW24KLXJghj1Dxi;`wEMJtTO z7ub#C=u?bVB{VNiJ;5gIMcNXSAu6LGX5c%FE6ICoE6w-Nz6`Bmn2Pz>kJBhpmarIx zFR%kgAmu1WR7GQ~!){EjNJ}QxV-L>ZDl%50$11vE0KUYx*o?!tfj{6?nbtZ~LlX?Z z2<*aPT*E^QtU?)J7FJ>>_Q9<xaiA#zFa#5^1Y2<e*YFbV)#z1%f@q0u_#9v3EUu$L zb>c#U8VvCWud&~c-scFe$@+m#wOC##)_^j>2uwt#hV&AIG@`sv8?B&s>x{x1cr>9` zN>l0zE;l28_@Ozy2Oup7ho0ySy(?!q^lqES(7R}gLhp_l0=?^H7oNhU6+KE(8=vB9 z=-n<|pm(=)g5Je)9(vcxH#pXgd_nI@c?`W9B?a^@l)})vPdY>IHc1J+t7IzlZj#N= zyGYJL?;eTYf#r_e(7Q!yK<^R>fZi1{5g9tN{X;!;g5CwP1A6zz@5mg$GD2?*gWlco zHT15IebBo(UP15T@P^*CQ5%yn7kanGUFcmJ@jKHqqYL#Fb1)B=a05^A0(!SaI_TXN zWzhzm(FdUzicwgAC3pj;Zp4Y^(7P&*z_~kdAu|d=@0w@^y<1`&mSF`B;3Ts5pw|lY z?uVMtyB)?s?{YW?y{o~gC-EUS^e%<3bQr{X3B5aE3-qpp3(&g{GC=P#XbZioU=Du9 z0q9)>&!Be)v_+B-)*Bq^OZri$A9WdXu?R2W)SsRQs08ip|0OnHE7A_2{P8Ki#AfWo zD>#SJQv-F-2Lq6EAZ3hdgIUjU2QScSDElac;!9{R{@ZXFMxIa`^)L~0p}q4rKzrq1 zhxW$zLLQVy7{)_;<DZ50!v7Pahtu-{+RMHVv{!u^<U>(tulhF7-t_+H2<=IK5J&M0 zFQL8W6OW;X3NoSFr>u+6-tq~@l1G%n%FpOA0PQ886U(t0FTWxVbehIC4ceQ01$N+P zXm9bc(B9rBP;nN$<j@U4c!{{PSth6r?X4Y%FEAPH=I~u;uk3L+f|CfD$7fiB4M;hk zw4ny-qAdc@3%#MeuD4*qH|#gC9-Hy=x5SAQ3#bEVx{&h1QmjJIcWmp>Whw9RIVK_9 zGJ4q|0D;in&f~BGYcX^=%Lv-5c@gg5A--5izHk7?P;eFdadbdegkl&z!#HTK<>UBf zHTymMgnbycmU@AuScN+4*gs+%CgL&vK$i8S6D3d%ey9oUZ9EMnHt;!a;x-CwWS@zK zXolyTSO?&{neSpcX5s*j;R<fz3I2fg3NDUGTlp?FU@KZ|W0~M<%*GppBmZ{hhbpLv zCTI%neLDwZcT(n9hSk`<oBcGjH*DOWSmwwM?fqH>V=x}tyVV!|zp#v;y;bKyd#P^6 zqCJ!ye#U-m*~{n9-lB2#QJ;_v&CnX!8#KXw*5d=r7j@7O$qv$E3iZ$!+Dmg1w0Gt& z(B79#p}j80A>A>0v!T#&(u~GvfsrTJF5>`>;w~ORdq-}7_KIu<?G@>Mn)#h!{YH<o ztk>9tZCG>8=&hLbJnJd)p*U)z3EDz?Ck{X;u0VSuUb{eVK6qaw-#GjmJ%8YGmF)nu z7hf9;$0&S_>3D!A$a|gTh|;Kl%BYUQH<&*fq8YSzUN2~`yu^rmi*iK+G{xt4C_iYg zy5rE^boZdW=h8uY$pzpud<pIS))d<7=|g)qX^*Bq@dmEXNISG=Q)EvjUx~{T)BgLI z{Z;-u=lS0?FU^~ydA)C%eV7mZo_(0u_m0awwrpa{Cbka5)`8eM5L*Xg>%f0q9nk); z(OcEcqdgrub9rCnGQ#1*1+&^14o+%?18{kRa(t}~zQTGug_jFg^AUngI13L~S`*L) zL$C%%;p#@K0Q?b#tvHY5acIRvZ%o8N+(VJL#Eq}90nd@bowT6`7Gn<*$K#ntXpa%t zjcf3ZPm2nMVJ^<#PgG7oixk%56f$~{H%!24{EZ9=X^BQZ9KwBMPef}ICSncr@yg!l zj&V4K$0+VeYZ*4-S7c4XJTVb#kRU1LgJ4X;e%wJRFCO`WP52f0lhGQ4S=frC$$3T- z`d~7S;30CQpoI?Ou^i#Zn37f@48vaBLY`E#XkjL{z&$lBH0X<|_!TcuEDf!2n2t?& zg|ulY5A?%&oI<j6EI0JSSNIKoqegmKJ+T}I;gNx717bMl<318*WFF{`UAT(e-n0N> zG#26sl4hbFVJLRu3UXwo^%GOE9;a~z50N+v&z(X+)J6|{fiJNI=kXeEkUlFdT4;l| z7=UTmgw1%3blLb0$|4N&uoJuR5Q(!hKNLhm^uZKN#Ri<gUwDBuIp{@zmS}}Rn2D|U z5f|_p>2p&5P!4SohT&L*UvLw*;F62=36)U=?J)x1VgYvJ8eDVJdjeTe83E{ovG@-A zaR4_FHxG3JxljcG_yl7x32SizC-E3b@=_<^i+bpViI{|0*ouqz4KI-<AN3riF${CD z13PgD_mRklaz%A?!QXY5e_eXW)T0Fvbr-U&KnONNpH?5QDOdJ5`!?@8^5Cpm1xNUh zdyUL9a!2<V9ke?;cM(_aGl&&i2LDxcz?s@*-{<Y!UU9nLHooD;Fm^8<yBCk$i^uN8 z|Nq{Lf9SRKclY4tHFfjuz}TU2m*l^<9CS~p@%~>LzPtC=y>{d=k=1#(xmS0V95OgO zJp6d6)m6h2zxzku1*ZM7uhpq{r-Ub_eUE9$)~sG^HEkHveD?Xxvzivhw8B+ap0}Dd zoM{7HD(<(MHiBt>m2#G|nl_SYN0a}u&}!PJOdDE1?+;ef#xkwwsKSM;rajD@+3EV_ z<=dlAqd#cSRFC*G4{wb=%~SH$Snj#HN#Sp-rj4#qB#HaD(}S(1rKr^*S?N4i_eP(_ z8Dsqc$-n5@ZCLbao|3!hf)t-F{j{Lfw442Rq;cP$^pMrG?@L|vPFK8q4y$R`lNHHi zJwMLyQgraGxZz||t8mM@EG{wlO{W{tr_nFB{>~D&CZDVmeVV8Eg}9fjSIIM})wG-4 zi<YhY^7tgHX;od*)?AXy^;z_3T=fa)Q-9^SCGF@*!rEZ}4bB?#{nm8Rxv)z1pBnEy zWqjY<&A&O~aW?ui&hiHLYdde^S+6uv;?r+>%ET@++HNdZ$YR;j&pP3i_SR+1*`#lg z&f^nz$`*Zop7Nx=bJquz7QM8ZR;Oj$ZtjQ1zp|S4ea5qW15*{ZtS@`(_8KHNdiIMR zj()Tut%d|9>h?+WX`V7O!KI-E#{b<RgGJt*L|?{#+gtM=S9lVSI_Z{V)U>~o|KcW2 zC*9(-VZ0sV&V0uwB8;Pun_S<9+~i8gO|Bmra*oT}kaJuJImhKgLymNQ8*-#GAxAn# z4ar5UXs-nC$!A?Z`W_)DCz;*wNVDoV3hNC2OHo+o{9lT~x(F<yaJ<aBIK3^!E>4tU z7pD&`MeC3jGq)<moVEqQC81GV($xx=PG>IC4n^FhsJm3m?NrGxuhjK(XQ{aBQt8!2 zm**JU|4*xHmbyAzN~vw}&x@?k^Rz<GvsLK2ey&96Ds4ct_7Miz>bX^dliMQf<^Hy` zdbtx}FLy1ix_<G9Fy6b7Eq0hXBeL=d-bPkF0g;tYU_|z|8rrAKafLLp>Y3<mWS)tL z%rlV@S&XxK+4F6LmpzH_vgb!+b+y;q$X0t1*=nzk$ZA-Mw~>XVAhNI&ADPv9sozFe zFEtU?OZ|^o70<{`VV8)v@oiP)Xyj(;sBV^y+BQp(i!yR^>N>$u9M<*LJ`Ns~ZL6xz zlN`mNRkc>QZQXiXRcnRY$Kh;l)*Yt9x`x`v;Sv#t<Gff`O#3)o|1mFG7bEiWwk}4^ zi`zfu#kvaGrz6fk=Eb_^*~bz0AM>J>Eg~;(D_hjOxJSg1lI9@uW!ACee3qCxr4`n! zTXvh=$fUg8g-tM{;QDw(T}f?=#HeH+zEQM@$ViQ`QT(utp~Faws`g<UL5oO?EE#p} z!#92w5gA!BHhv$r(Q_DyQR6;rV`mYGktL(befUPsA|fM8#zyXgHg2&M@7-N_#NOAU zaAPZ8#4(da+5F2D&wj6JZnliQs@=h+ZLew^rbce=BKNAq;bMk0hejN!IMt|UoZh&{ zWzU?7Q;m9mN5<jG*LANNak4`^Ze|1#LnEHOob0$8@z{>r_Hwf0ZWm9SxADB)!)jb{ zqef=LwIfcFQ3KxC_R<3qlcpVU+A$uPCif_DnR{E!qg&i~Q6e<r+sI!3)@xgQ)sqt6 zMh;MKy^f48ezf?^y>CRE3G5>^;#?g+$*5*VoVMew)$!Xg9vP>HWt?yK$VOTdB(#gz zh<Axcl2LnK+0wc(4QXBC(T?%RcoR8{*W6Q^X--H-3iD;eJ&(iT;zrz$G7$GX4u^}| z#qIgtxXrzIWc>8Rh<F+C>kgvbOIzA^WFme&I&SweGVS!xh^R|i2Xwh<Icu3{+BN?7 z?&aTeB>AuJ?QM}+A5#AFsgTubZHq7_r$P=Rvp&#_VOFh=I6oq*F*y}-m{sfJ&=_Xb z`hfH!vKoU^q1dB^*rNr`!HqML4?P#RT0K1V)aC;ZQ*~o(b(zNNy<1K<sprQ}jQY88 z?T3fM=!L#~#ucA1jWFu#<1QhEMU70yVtxt9VPrAcZdye4ahH%RA~doZlkKL%$YQeH zw1~{eYD~AA77-d*{da9Q|DpP7)qUrZ<rbp?TdYtYSAi`ejCloi7+Fjzutj7aSAi`e zjCloi7+Fjzutj7aSAi`e{BNwl@4K??DQ{nIuTy>0k*h_7F|WW5Ba2A|wutQGDzHU_ zF|WW5Ba2A|wutQGDzHU_{~;B4!rS^Ad7<^ADzHU_F|WW5Ba2A|wutQGDzHU_F|WW5 zBa2A|wutQGDzHU_F|WXpRqpM(Xf3NHgzFQrEvwp0`@a3p+X9Sy^Ko@LGM=~ZVqT}; zMiKeOh%6>`Ix>#8?>??hzl|pHP0Z`GXJjPifq+q`ty@-$xI5W;3nZ@OmyF&5Zno1q zTW<kh-|0~r_hXNgDcO&!(+)RYF*((97+Fl}v_)heSEnr^jB%ajI`Z2}ZPw}dp3z%! zBd;Gvwr99nwa(kZMs2{g4{NqzSoRLEg*AEy7;UyuTc6*ySvZ`pal~LY)!NV3Y@cwP z=BO>S_F>I-2*+vGI#w&(xYiyu&2QTp9H!Z*Qf6DM{d~=~1jlKPdTq--tl3WBIL&%p zK+~*UN}{Iuz1ROO>c;!`UK8HdugHT>i%Jr+E5mPVjP^PBkS<RasWI9DqgI_5W+`eN z`iLwU8?FDdt^AQy=Iy)p?`UJY<=J|NMs5M#cCvX}fRS%LZbus#&)avg2ao?+w>-1p zj0W3}>p+mmb|P=xfuK+Ic&?FEBDNC&9TQ?Z5kxfd+YbB84iJg|n>!KMcH6OC1<mb% zdEgz}V=K1DR&0+gHc)z&_-^l{C>tzu&0!eZW6Q3`mR-4+Z;b=zFCy<}`9iO{ei3m$ zi*bdD`&rU`(ETi7W~`Az<7hIbowzI_G>#@?(uvDqWHD(;u!!vA4xB9_jQN4H!^mQC zg~}qbkGn!;5n+t4P+9e*iPn<9?*zrRBz(k;OEK-3DA8XruhY@vis+aWlR9k?*~iss ziwI+0r#S#NU*^G|5t(&Mf?eZ5<oO)W*)}@ZSVZ=58)b_Kjnu_tqwFxUm~50SBKx?F zvPFb3ufPr?i%A8xi0tDkutkLb-U`eNVs8L5SL=80X^XuyoN_|+viX<q!-?(E{cbPI z*c-t9@uvCzs*3miHi>_+@!w+eY{YMUYV}U%g17xgdUbiXbAjUu67!w9Rf*azM8{;O zZV}nX?bIzIjQLL8VPrAcsar($aXWR32xE8Z`T&l_kMx3(<9$wSd#|}SHcvqQ=kDqj z&&W<FW~%-jZDU3p)@@^v=TWikVzKRFkvG3axy=0E+%EQSJ)W@GGZ?!X>*I--byl(M z^J8*Vz#?_Vek=9>;=O%=Ez0db=K#XRQ*YuoUglmUp=b1~0#WW0OCS}b7k>fLQ#wjl z86e)oP||j3%W==Q*dB%=`lK;u+nxKijn@CN9)|ovfY=@+Xw(<me|>PG-KgjTE$zqk zfsFR!`XEXBaec_8{kT4a(tcbYSQ$C~T>*WlV&phKs?GxuBgelhpbwmk95)_rXg{tG zbF?4Vhe_Ix>jOaT$MxZs_T&1%NBePon5g}@K9tmcTpwU+KduiuwIA09quP(_gG=ql zhrKhd4`8*Qt`BRqAJ+%F+K=l)OYO(?;h^^8`hZ9KaeauS{kT4i(tcbYW@<mK4<fZ6 z*9W26kLyD>?Z@?@pZ4SWpild8eK4l|INA9Re(4(V?|p@bJB~9czx(3lni^^0=zUVQ z!(Of~aD$`wANDPN2Ib!vTT;pWGPw9Zr|e19yyyPuTOXP-{a%_%>6ZUfe73UXcWJ!b zDO-2S*7CiUMm%>HxWUnTtq~tqZu-67cfMTvPpLCw{O5Up*nEvLA^rcRI`Uy9{9A+K zul}iolgQz+L9XAlOP<u&4CjrPKp%l*yquibd-h3pAhJuK?UTaYhb0-%b4@MdQB4}w z3?R1Yo4ksqYTht+X=8epq@(z$p@^4lx=Wt1+4MWc^xyh#&K9Tt+yZ*n1V4w<+lL>9 ziFnz*t<w^<)*oWmSB@O>i$_f58iuA%=cFmp*j#ur&m)FPQ>bwp@oEg3QzMq&`pj*| zSB#e}mI7U_NAA~bpEMw#p7`ohoNh#XwLYKiW_$Zp1%AAzF+Vtzk)Hw1&d(#Kbe6_t zou!Pki;T_TBB^S-$k|RVQn`_<tS#Xtex=;xWqmhk)Wl8lv~rU)o^hmY$vE-@PZP?N zGOo1A9amZviYsRt#Ff8%+@*HvcyhmUJZarEo=nXUU)(asmt^(g%g~PT<)Bvr8IUZ2 zOsJ7S;yHQ95PuK(v0y^^dq5(2oIkPbEty#Q_V<+D13aana}r7Bl|=IAPa@T_CzYkm zl1i?OUNWbymo#nSCH<OtN!AcA@h+QO9!m<z>zYE=mP{cRYNn8c0V!mCNJ?qgI+YaZ zl}aw8Nh6mtrjZfd)5wnr(#p7IY2~)06Q>;M<Zjh;GTbY@6ic06a`j9vh2v+CGiftO zbMFjtuUrOM>Y7oum&+($wazGeJ7ko^sl8=$@=S6)cP6=5J(J9BoJsb(W|pdfS)^L& ztnyQwY?8M^Hu)=Fb~#rxy9}<FT`t$jE^#|%m&u+v<mYTT_-XkZa@{4TJaEq`NmJ*P zt{%ChO1fN<p>!@u*DaTLq{=P*>*khb&2!7y(7Y1IIiEaFluvFn%_j-md}O(&kK|6` zBeM(n$gPa|Wp4lcaxG&a*^{r3q-a`5x|H{o*?oOwU4p{Wx>;d4IiQFfO;=P}mnbSb zGZ&Xyxr<AjQpKfc{t}X4ND1*8R8qzaE-4qwmy*&QOG(l6r6qp3((*^6(o(TyX*tuY zw0!GUMv8lvk)$=sNbj~~Bs8>)j2~83zV<99=Sr88Ma9ZX!weOuHx*<~@`^IJWJO8d zxT2hEQ%RD>sVslgsVpVxR+i9imF0YrD$+ewRaut5s(4kYDh)lV$)~>6q+G{pvbukD z@f=iL1}CW@4fE8HJxyxJmp*=Su8f~_;V~-r8u&@6KtEX)T$3Lzt0nic){?yiYe}u4 zwd7R7+H%vUwruE8TmH^fSL&6nE9V>4mueXr$c45IWJa2Xvaec0+0mq-{M@0T3@X)F zu4ZZ?SF$vbxt*HG?%*a;Z*WtoEzP7}%Vx5#YIAAs*+PEL+Cnz?w2%WuTgaShE#yR< z7SgD4OSwF_rF@m7m9%WtN=9{WB@HUJmZF*4$RVFL{6Jh=enqXV%&gT`PT@h5wvxJ2 zTPfz;P9C_llZDyaNr_(VWN+Vg@+_yn1m^dbCW+e1g97d4W|{Wl8MlLc>(@a})$1Tr z8+MSufgNO3^^W2d*in-E2FT>X0g|qLCuuOalhiBRSq7KuEORS$mhxRYOUk@mBs6PR zdEK(BY;W6@^{Fdo65Zr*p>E=rvAb*t=q`uz1WK{afwC)YPkE58r)=rkQ-1LdlC24Q zN%6wHq(ZS?QY^Taw9nLAPW9|9W1WI!W6xlzSEP?z?cPUzNzzw*Qumd(+4{;i?fS~L zTKyy-pr1VG+fQ1j=`XL+4v<di2S^v+0kX650NK}dfD}#?DldzL%IvD4ax&XM@hvt` zwwFbcK{CJNAjy_!u%xInSpJeB5)@~MjH)(7mZD~@A#%OoF!`;~FqzbNn2aAfO#aRv zCNl<wNt&TylFxIv)J-v5@?;w>?TQVT3B^aqpQT63?V!<8H|r--w8j{D=K86$%>1d; zcN;5H3yhV4-N#Cvrk~07M&sn!;Bj)@dAuwc`ng;v{H3%T^rh@|ogf)JC&=&FCrGV4 z6J$e$3G$o&1WDmKksqd;DC;s$lrgO)$}!~6JW1wPoFtzQnIbj%OqDQ?X|lThG^rxf zrJ~<-$<%YYqzIWVwFXa@jd5p6=fX4DPR*3Isb)#qEVHC+=ULJ?-fZ#AHe1egpDo$k z=gQF(b0t}xxe~9<T*;koo{Y>oPp;;hFN<r>mtuYA%a{G;%izr4NQ1Zwq`db6nbdlL zTnJnsiH9zbKNBpJZfO_FoNNmvX{m*BsL3LE;=foH1uvFy?n~s)qD!P*qa|`XWC?Zr zJ9*OiJ4qdHsdx@qCYACpm(c;s<#e~@vNmM76!u&pPkdI$=zc3CeXf=AbN!W4qUlQ6 z(QKtuZ@p4#4O}U2WR;W-T_x+Xtd@`@YxuFWHBzqU8foLSRy>lfm6^y|bglGr{a!kx z`(6^euaoL&)=8np>tti!b<)1g57M;J2FaFtqtq$4QAQNrB!h}<k}hR8$(S0O<Wi!| zvNXwNDbjhf-0!_rRt?xH(>;EaF@ZlymK59MdWUWDD0rJp9JEam`)!v($#%%;{yXH1 z$4+^ZbeDL=-7Tw2@0NU7ev&eUf08v=)Zi!iwZ~6#u=h{m@BOoEFZQ#naoQt!bMBG$ zt@p@)c6($-&AsAVd#|kRxmO<a-z%9y_p)EwC+ia(kSU1|NWLBi<aY1@3F?19F8Cgl zu!e_ZO!*`H$l+1hlk}L}@;N5+>Kv1DLyk#-V#nn!MwB=qn_8TZqRuBJuir^=8hld9 z#5pBnQ=Ss1N~h#?=qWkweVXm&X}MG4j8tuQMy4b^D}{=jmFrc0l?Szcm9<IEiF=N7 z@}|>y*&KSFAEvw@0eLUTrL-3%xc^1jSNb;zO?gQ?vs{v1tuD#-;7j6O_Ofj4a#{Kg zx-1Qyu1KMbSEO>qE7G9$74d3yMRNAMBE^HR$fMF%rEBhMGPl4r>D=g=^v-i#YSz9k z#oJz&76Y!!zE(G6Rqzcdknwk!TKac6RrYsjQvasZ4!9{J2Hupwgtw%A@>?>z>TM}l z^R^tTdt0isxh+5Y-<F^xcO+4+JL2E`jy&seM?Oh=Pu3;6FH_Rqm$+^Z<d<v@Bwe8g zGQHyinVk5c_-1@4gUdXWogE)aVedz>C)XocQ23FYtN2(-HGC}bTRfIrLm$g`rJhKF zUVlj0et*cav`=M2)@O34$}<@f=eb<W{ag;Wc`oIKJ{O<*f61&&FJxGumomS~D{-y& zN<2HflH65ai+i2d>^tAckxp;q{Gc~7Zs;4?m+x=MR`hS#UHfnGtQ;=iv=5gm{fv`l z{Sm*@(3k!XFYm&zWW>+>8J`;C`d&ZRmvcwkfPeg6pzwQvWAETD?%}>j^T$qdl;7~1 zC*mpPMTbrJrVdv}j6aPSe;zUXD`NQ6sl4rbsp2sV57!ySmBw6n>y9Al&wu??4+_nf z@h$zfUTiWh2iU*YqvvWF^xBiNa~u~pS2t%D*Ki-XTxo#pFdqYIn-Sk@#O1vnT<Gf~ z-efL-`FTqN=G#O3nKO^qCmt?nxj8vI#f{_q_OYb)mjJ@}nlzM9!n7x3AY;Bhwz(&W z<Laz0*YModbFU!5%%9yTVTu`H61!;t7s5Ep<?!WFUQ0w@b0gkVvVFfR^U|>VmSq{+ zyyCjVb9Q!fc6B(fN~Eo?EldFa&D@GqFw^Q{q;(93+{TH5ZMHJk7*JBdluvu&=pbEq z7eXAh$v0(W#^6d}yOMGrxze(o?8p@nGTg~XdLvTaC8BIaD*5E)W9P&=Tg~r7XPGz1 zTWgE)vd*u!)FRiNi6?}wl`xi$3roi>UYxjQvZF1XrnZ#prQDu`?L){?iEPU?VqR|t z79ou=_F*d+b<5R_?8Y&dR92~I#$umxtrNyF*3$AP)m`{nW=?bpx__EV9{uEe-Ss<L z@dV%9oPB<e3Y~L!pYK%5=@U{i-H&uKv9#^CgZcF%&vE21>ZkgNzB0MUBTc+f(zcIc z|9x-?jCC99wocZ`@Zm`dM-6o9iIb?0d9gytCjBQKg+|ub<>Y=LTz~f2`sH4|nNEoJ zh~J}f*AwFF{NozoFh_I;q-V~BEaS_hQM~i=<hO+5zx`|g@09tP=VrXq?Wn#kKvNqY zZeDlrmU>bhRS4ICbt_Q3X($O04yJh@WNSLnZA?ercVLU5TiBk|eXajp`AoO0`buY8 zC;VAMLTumgW+l?CVIbe~CtQEYODwwH1hYRdrgrC>!KB{mQzO=>|CcbTS6Gb8jvnO1 zgT00a+c*yj%|qM}2XWz!c!-Y#(7%L8gv9Vf5+sEek|8-#ASF^EHPRq0(jh%EAS1ky z37L@vS&<Fd@xSl&H~Zf>&bEpjCGk#-T^>F6$&0#OJeN&$mpnPX|Fr<0ZDoSiAe}x9 z8gd?V6Lt_<QP09w{rHkDH4lby8Kz>W#{hX5>OQ<YLyfBzL#@ey47I)vV5ns|ilIJ4 zTlbBL7|vp-&%Iv2P`8uI8G12X$57Lu>li<t%@X0)maEsRGN401pm)cBegT0&y#j*0 zI|g;=+asW7h<`}eAY0|t@0u%?zV}9LfB)c+fS%qJ{R0EL`uFXh*SofVaCb(#2Lv<O z7QcNM`}dmWIzhob`~!VD28HyneOEuTkHMU$uWupS^i(>%Ylq;VK0%#Ayz6%A)U`u^ zchjKYj(lDovf!(Gb;z9UeeUAEH(Tv@vb|rIWqP4BdyV%+N3?8E=a`c&gVNBU?qPJO z`yL&}zG6!twgh5JAhrZzOCYucVoM;l1Y%1dwgh5JAhrblZ<m0h^M5^`c0P6J)GVL0 zo|C`k{6FuDm6iF-?VZo`+?_r~w)1rcwkxB0j^0bZi^0%q0HdIN^2S3Sy)XrOu0IQU zF24YJF25YwS8pBk+<z<d9QrmiP3AeiEAREC=eBzNREOF;qC>sbr$fD3U|#=nG|a%v zHQkx;kJk)5__8KKPvSLGjk<;e2H0k$QHXo7$m<C?8P^Z%L4!1drs=Pu#<+f_`D$CQ zM&-8EYt^Vzv!QLeULR=^5Zp&EQJDFyz-QA4*N6x-4rdx>beJz<oVT`dE$@tI0KK*z z!cr(H`T6T_`}5&CUXbk?UoWoC1#sQZ_@oElc=uXherd|}yY9%(+`97Z{(Re?>+Zb> zSI%|~FvJ#18L7mzyZ~D#>ky`Aw~ckOUE$NK=6bbWTWHL0S0@d6EzwA;t>AdC`O#)6 z9p-kBuOdu~nlJ6%t=AQONL3g3FgI=0$j^I!a@(E%o%tj`Z5+L9>GCI?efVyG?R#zQ zu70*9$C_TfifOylV=GJh^wpQvw)AnGJ|ewQ%bi8^PWsvtSM;<Q?NWV7TOcXZtE%~V zr)^c8xn63d*oSn4l4fny@<E6#ZTbx}KBN3HG0%S`tk!^@wrjk>#2R@WSIfPbRJG+R zgM<8~kCs2PUcFoT=G9}pRvbjiwY4Vt@~+QSJ)Lh_2lLC$w5ZFw59Ons`ZdlFN}>lj z=)n6R<`5*EY@cZkwMKWR)h0jJ(~C$!DK6SSTGtKx<ylq++2;R-6;0EjFCCieQ6=6- zoqspt*7moawq>XD54EjRJxGhr*N3hyy_l<UHC)rC>scRLItoYuQjwqkzPA5G`EQh) zu8GDK`26HYZ&xtZO`UfSV$j#SY0oXgY-xSzAnnznrQKXs{fWIjzXH{bob<HS09}8~ z^+wBaASuw=sB3*bTUw0N<)eiC3D=D@1yP6ck+XcZrO|_NU90H)L#+Clu8sEjvdTku z@~!3lr-M8ckCundw)7a~udNiiUg-McV=J@BmJ6Ntz=&m{bs>aQ88uP!q~UbEGfTY? z%cOu5<Fn}HoQSqcP2*DsX^g&37<IoVvFoyn-lF0|Sp~Bm>)fKx&qoT|=J(ja{0a~z zYMp$ytlzhl*A~z|)V03+H`jinb{1qUDPdb%qNk|{Z6sO-4;-XPx8+gOWNf>FsOgcp zb=;1WpHhn2#*~keGg`-WO$v=zTE?<A)18m<)mmz7M>QAkmPFfVu@oddhWylDW3Q&Q zL+7q*ru8!MirDVob&&t6(emGi+NXOUUCz3d*ZrsuYn`q)+IFp5Fx`Hc+bXSrx&$;0 zg)DNCj~Id|W6iHW>p&-B_9y?kSJv9powy>m7VmB=2JuZ@ezzQ?zg)ERo7;*`q&Sp$ z_F-<p#1a}U&01#0y7O-7>+;c~jlRU8+mTMTl)jr2-4^QW-88$?BBW`);ULXTm=?9p zwI_{6yP}awW6VfZWG#%oW!6#*WU1)BFqqUB%fiT)E|Ef_TWYO!Jy>o=ULv<0x(&2C zvdBm3G+x~j>Cwcy`72ADn!l?K^4BO@{>)_(N=mv~)&R3M^=G<q<W|sDukw=??S+%i zR@3v@)_z?g(U+L!%Q*fq_Hgg6hxv#_kC3_$+DM1hHZu)J_?ov%4)Uh=)<j))=2-rS zTB5DZx-SjlPq(7}jG0?abG_BIwil`Cz%(N#<p^DdZB7BUq1j1g8HT>L@uGYdeHo;R z*tTDAkj}Ev()n(Qy>DCFh&<|Xu^w?+A4A)JqXyq9LtQJ3Vr&TtS)?~Ly_>XLfBg?i zuP-Ss$T5~x`R1giX?jmPNUv|S^6g{WzV%|AGM8!Ok%`v4o-EDC?PC$XRfw7xIYsNM z9&_q3mu_DN5~de(iN5UPMwI0V2WgAGeKFTRUCVT@{_j19s><!E_5bnQsR8rtO{sRZ z)hyj|X^#v&x_)>2QYm8ldDKDvv|pFG)_wRnqWw8l6}A;x2D)DAHqLrGt}XXk2M#$% zM-PYTc;B(T9xrIGLY=#DMyJORdgkX(+34||{kf_hwf?{M?mIk+YVQO1UKPAx2SLRa zW5YrVp-OKGN|7R9gM@@8H3_|lh=_=Yh=_=YsEF9HH$=sTU9qEL?;X41`#G7c6HxDq z%zgj3&wKMcpKP+_JF~OrH#<9X_Do0%?_~pu>#RX>tIgG#vQ=A6ZK$^U<l6$O=9=(V zSU=XcJ_&1(YSuAzy?f`nZ??blwD@e-)b)BrTU22=<Va6{5^L=7QU91tUzbCznZxo} z{TIt4EX9pqm(Aav{NsCD*rp55FJ2nr|Ik({>4g#I>5;#fr|{j_jpr#{3;C8t*b1v= zxrUY)+Cg~dNcRv5+dlD{JAB3%<+Z6{e?Uu1uuiI%$A`~Tp#_D<_i}r*JyZHVIkwfJ z*EOej8!F%ZqAkYoI)^z6t>}->Yk>U};d!n4i|6&%@3H?kHQvf|E8UYS$-a_W_L_y~ zcGq7#xAf=S(EdW-nO>H8n0mI>P^Y-<hV7cLHjO^>rt@w|m{)6)yz3L@h4+>4JZsr| z7%rD4%F9v@8|N)fm=`{ymY%-_3G?hi+$e8u!o09gs`UKLN|+b+!IjRNo-i+ale{Sj z^TIYo>G_+OFfXo;sQryjm>1Valvj{2FRqVh9X=>gUU<JqFTW_SZ^FE|KBBzd3G?Fm zi1Ln4m>1Val-D(3UR)nhUg*0Q+GF?$m+5_ro40-r+Zh|b9!Dk2i|ZqrzZMDe;`)g4 z8YRq&>m$mmn=mh~kBY_1zh<Jmum?B&dPI4LCd`ZLBg#7<VP0GxQQkfY^Wyr5@^(*{ z7uQFWS0Q0uTpv;1_6hUi`iSz%Cd`ZLBgzX0^|pL{5cU#o-2Q&DB1w{$u8%DJ-9yg$ z1bKB-N4h@Jd7mfDOV>v_@56+7>H0|Ly`3;GT_5SZwF&dm^^wkdF=1Z1KGJ#5B+N_K zM>=nH!n|~Sr1MrK%uCltI&Ve7ytqF0EUu3`66Hn5Aw!*I`EE(LT%Is5u8$}$d?#W{ z*9Ud%@rdgq%3G2!FRqU$Z&AX$xIUu1`3dvl`iS!8B+QHJBg&hZFfXo;C~sQAytqE1 zyvYgk;`)e=5spukSFhCjN0c`*VP0GxQQokGd2xM2c>@#X#q|;8<t5CE>m$lLIbmL0 zA5mV9gn4m&M0uSP=Ee09<%RxeTfY7aM_!`GXO$fDZj&%Cu8&H^^VKX-Ufojl5#=>Z zm>1Val$V__FRqU$uX@6~xIUu1stNPr`iSx}6XwPB5#{ZbFfXo;D6ewDytqE1yqy!~ z#q|;8l~0%#*GJ{z`q(B>Uibu(uHPtcL&^Uxiu3=@{+BxTl*jcE<^7N_FRqU$@9Ttl zaeYL2pC-(U>m$m0KVe>6A5q@Agn4m&M0u|!%!}(I%3G5#FRqU$@2P}&aeYL6DjrRg zmtCqpqPzzZ=Ee09<%Ry*TmJqVj>e|zH_E#$VP0GxQQnOS^Wyr5@|Gpci|ZrG3;p1e zEWfxuqP&F(^Wyr5^5!MXi|ZrGo1HK(u8-(==!`^pwM*4Uls7eDUR)nh-lT+iaeYL2 zV-x1Z^%3P2CCrQKBgzZCAhx_chyEGq^+A-^KVe>6A5mUz!o0XXqP!Cm=Ee09<sFwW zFRqX1cw?tTdGYb{tdisLhM7q4`ev2dzKZ6rRl>ZuKBBzPhi}W<U+5!|Zhui;x}IHK zocs5-C&RZ9HqJ}8pDoRc>m!=K!%OnFG%v1?C@*{mBgyhhKfiQ)$w-(N*GDveRTAdK z^${I!+%-{NeEdACq)%1od$Z-sFMM+)-Cm;k3*Qe*k{8!Ul;?0%qP$Qa`w-@<R`vST z!}9#^&wtJm@Nv8NdxoJ+h3`~`^;ucMcunCo4dXP0v6;g6C$}ejCo{C^o!FUOs6a(R z?Np*NyRkca5NdQ!_9A>=CbXB(FD--p$Yg&G;6TDUCyew}mC#T1P!1!k+p1BW&`&b7 zwXi-2>zJ_K3hTnKehqChwDV9qVShkFj-U~Z3GWF_X-0Ee(30@p)0#Gf?@t{?Tf%$X z(Huj2I?$0$97|`q(3Nf+M|XPAljAvoux)S>C)11G<d91r^2nzz{pimC267662t6H# zFqB~or+`9=7{N$JF`6-qWgO#~z(h`E5~nel)0x5<Oyx|baTe1#n;D$LOwMH%=P{e} znZpIl<wE9h5%am21zf^HE@csyv6#!bf-70VRV?LdmT?W&avj%m12=LL%ek3bxRu+u zojbUbySSTsxR({&$4c(!0Ul%(5AiUM@F<V5n#Xy9CwYped4^|sj^|m!3%tlnyv!@S z%4@9Ub>84j*6|i^^A7Lw9`Ex3AMz0&^9i5w8K3h7U-A`S^9}3ymhbqUANY}<_?ch$ zl@0tx_%dV|)^jViChU7FLs_;Ze6PD4VISXiY|jqt$WDZPiMvpNitI`y!amF02;;r& zK^68S>>J&ieb|=__9N_r-Jb(Ekb^jwu&?(J4&^Wory60Oat&%yi!5pr_FdPZF7>ES z1HwM?BWOfpn$VPHG^YhEX+>+oKK~;*ing@lXu`3D_H>{loj8_o45JHO>Bez%Cmbv3 z$?=@PiG(vUgkv(j=uHl}^dXOY`qGd73}7IqFo?knVJO2GP634!F@lkdVl-nI%Q(g} zfr*^TBu-;8r!$2!n97+<<1D6gHZwSfnVick&SN&`GlvV9%Z1G2BIa{33%G=ZT*@LY zV=<R=1y{0!t60j_EaMuk<vOnC25#ggmUA<=a4WZQJ9ls=cX2oOa4##kkCoid13bto z9^zph;ZYuAHIMTIPx2H`^9;}O9M7|c7kH7Ec$rstmDgCy>%766tm7@-<{jSUJ>KU7 zKI9`l<`X{UGd|}FzT_*u<{Q@YE#L7yKky?z@iV{hD;xNY@WyXo<kVJd%{G)F^m*Er ze^QR}Y)9x@wF5h{6FajDp$}I@cBK-Pac+-P=qt7dRoIig*qhKNZC^6jk4*L_^nE*! zgE*L~975=0cNm9Ljq21O^yRBX7PZNy4x!IrJ?hhdh8#iYo7k8pG^H8M34I`2(u&r! z;YdPX%eJ)RXpW&hp-*Q=IuTB8(wQ!VzN6hZj_&lJC!vq(37p7DoJ=ozlS3|j$RnS= z^rJrm7|1CMVlYD($}omgKp{npU?ig$%^1cqj`2)jBBwHm)0oWZOyLZsawgL_i|L%r z49;OD=Q4})n9cdj;R5DzA@jJ1`CQBbE@2^;vWUxA%;j9cl`P>ZmU1=AxQ1)Fj_bLB z8@Y+)+{`W9%5B`v9o)%X+|51Q%L?veCHM0H53-7fc$i0cl*d@j<2=EWJjDhB`99<F zS)Sv0*6;!^@)9re3a|1SYk8eFc$0O!#oN5YyS&Hye87i%#K(NXr+miee8HD|#n*hp zdcNg5zUK#i<R^aS7k*^}zY#w8g+W7|e<!sy&c~H1Ls`N&+|D7DDo1&?V|#XBM|NUo z!Wo1rP?24!L}hj(oU3RLsu0F_*o(ah<4f#I24O6XO!nsh4&)%54=7cYLkQ!69LC{< zF;A*fgPPPLi`ryUhq~0mS-esWXvh(Sb1OBb2~BB6b6U`nR<x!KM{*QxX~)rob2qi8 z10Ctav2>;jVSJWu97lJ0(39giffG52lj%ioa>%6*dF0cVe)MMm138633}y&J8OCr5 zD5QuHjARs}8N*n{F`fxb<Wwec8k0GlDV)Jn&SV;AF`cuS!8y$2TxM||vpJtRT)<o| zWF8kWpNm<*B`oAp7I7JixtuGwk|kWlQm$qh*KjS@aXmM1BR8>}o4JKsxsBVogFCs4 zySayZS;2j*<bEFDL00h)5Az6*@))amoF{mar+AuYc$VjQo;AF{i@e0kyuz!z##&zI z4c=rOZ}B$o@GkH1J|FNQAMr7t@F}11IbZN4U-32Hu%2)Ej_>(_ANh%&`GsHEz;C3s zQU7ek)@(x=%CaqC;PP^mXFIlM2X<s9c4ikUP?24!L}hkkclMwPd$JdMvk&`{!G2`2 zKL>Ci2XQb}IfO$wjKir$b!t$PT4Yh1Z0b;#deo-@4LO2FG^PnnX-0Ee(2`cPrVU4O z6m4n8(Huj2I?$0$97|`q;Jjt2ZX8E<deD>OIe`;7iIeF?Z*s_`4|(L%mwxnT00TLN zK@4UHLm9?!3MizA5sYLMqZz|k#xb4=OypE1aT=33ohh8bRL*1?XEB|#nZY^C<XmQP z9<w>0Ib6V8E@U1TF`tWBz$Gl?QWkL;i@BUDxRNDY#Zs<j8P{+v*Ks{Ja3eRdoSV6Y zTe*$fxq~~oi@Ujpds)GKtmJ+k;6YaL5D)VRkMbC+d7LMBlBal@XLy$9c%C)9z>B=Z z%e=y?yvABy=MCOu9dGeA@9-|~@jf5$As_KEpYSQ4@i|}cC13G1->{x<`Ht`Tfgkya zpZSGf*}!k4%BX*~Vr!gdF;#}LY>V?prpi&C?bx0j*pZ#snO&$rMRuhUmD!Em*@G(V z$zJTuKI}^d`;p219KeAb#KBbM5Dw)q4yPK`sX<L@kwtB?sY6}rQ6J|KOf|&01XGP@ zOcR>YjOMhUC9P;p8;;~C+R~1rIfnLhpd+0)md<pcE8TFu!c=#9(39gi0p~DGoy5uX zqBl9@(uX|q=}SNQGk}4d!XO4SgrN*$I0Y0^#0W+*iqVW=EaMo@1SWDSlQ@mZoX!-^ zU@B)ajkB1}+05V^W^yjGIFH$!&m1mbE*CP7i<r;FEZ`Craw&_rjKy5e6<o;@u3{-y zvy5xFmg~5l8@Q31SkBGd!mZrK?cBkg+{NA8!@aEFK2~x+5AYzXc!-C2ghzRd)jZA< zJjqi$%`-g9b3D%)Uf@Mu;$>dpRbFE)uk!|PvW~ZSn|FAZ_jsQV_>hkXpEW*l`6-|A zIbZN4U-32Hu%2)Ej_>(_ANh%&`GsHEz;C3=s(-d(Yqp^bW!aX0QjYS36P#|(4(!NI zI3H(f7b;MZU8zK6c4K$;pbC4k7kjf0`;x(aWU@a8a3BY9FjYB(LphAYsYZ2bP?K6@ zQJZY)P?vhtrvc6xnmU3;G^PnnX-0Ee(2`cPrVU4O6m4n8(Huj2I?$0$97|`q(3Nf+ zM|XPAljAvo6FG^K=|yjH$fXZ?<kOda^k)DAIfX$CW(Y$W#&8NKq=*rWWE7(r!&t^K zo(W9kR3>p6lR2F!oWWE=o15nHET(fdGdPEtgxhDiJdfF&&m1mbE*CP7i<r;FEZ`Cr zaw&_rjKy5e6<o;@u3{-yvy5v9)BJS{-R<%Blw^dQ`%3=y=l|=UaGta<7FkBBb@2!s zVYIcs^HVuh<{#+=7(P;zEf;nyq*5!3f2Z0+7t!yGuDx@^c}iAT_Nj1ZKdn+>w2++W zpDp-ZKDE{F(+~5pIT25r#c#sO!cQ$n?b4%)Y|djhz0Z!Rtx{oEYI+%Ldi$UK|FLy% zhX&zM))SU~K`PI3*m!J^KYQGtU022PFYku1I^W#qA9C7-H)20!9JvgmZG}->!fW4F zD~LvF3)iH_aVfs*pZ==41<U`;u;_P=;>!Htng6}{sc-sWQ}*vH|8q^hYyD{Y?HxHC z`g<$v;u%Nd8AZ4L@4u^f_0!Yd_Al<9@y<!b?S9?uy^1eO-))Vf#cLgDZto~_Pe%${ zrB*q9*xj|Q9anrlwbBv9*BnV~mul|Vb>q?xE&e+z^^f1%|3Ck5YjnlGntof)IKO24 zoWFSZzq~qKf92fk@3g;gOf>v-((0lSj>3qpVMNBl=!VVwU0MC5m;dHYKeU%_QTciG zTAF?s*{@?NxA;i=W=^=|ZWXk@u*M5bdUK~A>b0Qc@&AsCzx(`4Pctlrl3l^Y@2@4B zg{jb%LwgFZYk0rhuH>@xwEp||fBq6^l-sb&&=CcF@(VM%<PXa4Q<R_ArD)8c{KlCl zHt*EDdXFy0WM&j!(IIEBD_xhFF?#TzA%zWd8)x<}DjL?XMvcNg{qqOs6jpbZwIOcn z8%}{%<llmRHHH?S(5zL-nb&G$)vQ^!M(%*zK?8>NE65qve@sc(za^?kqZ+?InI=1g zBHN6gMorCe#>i;I^~RaCs@KfS$RE;YXx@M!{TgR>>)NJT{mhKQqMRXlIfI4{u>^(; z&1@>YQC?xgyquz(!lI!C`E85x2WPlqfXlY68fT8HU9)DrI&E6js#d#sgSyqSTh(k` ztwG&7+10XJwy0gdc7xV!>Stw7NH55|!YzIJeMXr4;2whqWi|=(6TJ?d^ZOQV{BM}G z5d{ObbSfLYUNtP`O(qro-)K=Z*^K3$zRN$XUAFdGg-Y6V+cCqP;&bDLlj3DGs8>xJ qs-2N;QN?}J+II=JxvF@hBK%!FeS7u#sr3z(4^L0+zn7aXf&T$@5_zNm literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Architecture.cd b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Architecture.cd new file mode 100644 index 0000000..f36715f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Architecture.cd @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="utf-8"?> +<ClassDiagram MajorVersion="1" MinorVersion="1"> + <Font Name="Tahoma" Size="8.25" /> + <Class Name="ClassDiagrams.PHPExcel" Collapsed="true"> + <Position X="3.5" Y="0.5" Width="1.5" /> + <TypeIdentifier> + <FileName>Classes\PHPExcel.cs</FileName> + <HashCode>AAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA=</HashCode> + </TypeIdentifier> + <ShowAsAssociation> + <Property Name="Worksheets" /> + </ShowAsAssociation> + </Class> + <Class Name="ClassDiagrams.Worksheet" Collapsed="true"> + <Position X="0.5" Y="0.5" Width="1.5" /> + <TypeIdentifier> + <FileName>Classes\Worksheet.cs</FileName> + <HashCode>AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=</HashCode> + </TypeIdentifier> + </Class> + <Interface Name="ClassDiagrams.PHPExcel_Reader_IReader" Collapsed="true"> + <Position X="2.25" Y="2.5" Width="2" /> + <TypeIdentifier> + <FileName>Classes\IReader.cs</FileName> + <HashCode>AAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAA=</HashCode> + </TypeIdentifier> + <ShowAsAssociation> + <Property Name="reads" /> + </ShowAsAssociation> + <AssociationLine Name="reads" Type="ClassDiagrams.PHPExcel"> + <MemberNameLabel ManuallyPlaced="true" ManuallySized="true"> + <Position X="0.152" Y="1.279" Height="0.16" Width="0.597" /> + </MemberNameLabel> + </AssociationLine> + </Interface> + <Interface Name="ClassDiagrams.PHPExcel_Writer_IWriter" Collapsed="true"> + <Position X="4.5" Y="2.5" Width="2" /> + <TypeIdentifier> + <FileName>Classes\IWriter.cs</FileName> + <HashCode>AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAA=</HashCode> + </TypeIdentifier> + <ShowAsAssociation> + <Property Name="writes" /> + </ShowAsAssociation> + <AssociationLine Name="writes" Type="ClassDiagrams.PHPExcel"> + <MemberNameLabel ManuallyPlaced="true" ManuallySized="true"> + <Position X="-1.002" Y="1.298" Height="0.16" Width="0.764" /> + </MemberNameLabel> + </AssociationLine> + </Interface> +</ClassDiagram> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Architecture.png b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Architecture.png new file mode 100644 index 0000000000000000000000000000000000000000..3fc7655a969bf9b6d247ce06034e3604d1b73672 GIT binary patch literal 16945 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ClassDiagrams.csproj b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ClassDiagrams.csproj new file mode 100644 index 0000000..cae9d4e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ClassDiagrams.csproj @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProductVersion>8.0.50727</ProductVersion> + <SchemaVersion>2.0</SchemaVersion> + <ProjectGuid>{CC8CD7D2-8EFF-48E5-A17A-C1C482744D31}</ProjectGuid> + <OutputType>Exe</OutputType> + <AppDesignerFolder>Properties</AppDesignerFolder> + <RootNamespace>ClassDiagrams</RootNamespace> + <AssemblyName>ClassDiagrams</AssemblyName> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + <DebugSymbols>true</DebugSymbols> + <DebugType>full</DebugType> + <Optimize>false</Optimize> + <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>DEBUG;TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> + <DebugType>pdbonly</DebugType> + <Optimize>true</Optimize> + <OutputPath>bin\Release\</OutputPath> + <DefineConstants>TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> + <!-- To modify your build process, add your task inside one of the targets below and uncomment it. + Other similar extension points exist, see Microsoft.Common.targets. + <Target Name="BeforeBuild"> + </Target> + <Target Name="AfterBuild"> + </Target> + --> + <ItemGroup> + <None Include="Architecture.cd" /> + <None Include="ReaderWriter.cd" /> + </ItemGroup> + <ItemGroup> + <Compile Include="Classes\IReader.cs" /> + <Compile Include="Classes\IWriter.cs" /> + <Compile Include="Classes\PHPExcel_IOFactory.cs" /> + <Compile Include="Classes\Worksheet.cs" /> + <Compile Include="Classes\PHPExcel.cs" /> + <Compile Include="Classes\PHPExcel_Reader_Excel2007.cs" /> + <Compile Include="Classes\PHPExcel_Reader_Serialized.cs" /> + <Compile Include="Classes\PHPExcel_Writer_Excel2007.cs" /> + <Compile Include="Classes\PHPExcel_Writer_Serialized.cs" /> + <Compile Include="Classes\PHPExcel_Reader_Excel5.cs" /> + </ItemGroup> + <ItemGroup> + <Content Include="Exports\Architecture.png" /> + <Content Include="Exports\ReaderWriter.png" /> + </ItemGroup> +</Project> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ClassDiagrams.csproj.user b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ClassDiagrams.csproj.user new file mode 100644 index 0000000..5c2d6e6 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ClassDiagrams.csproj.user @@ -0,0 +1,5 @@ +<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <ProjectView>ShowAllFiles</ProjectView> + </PropertyGroup> +</Project> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ClassDiagrams.sln b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ClassDiagrams.sln new file mode 100644 index 0000000..b565408 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ClassDiagrams.sln @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassDiagrams", "ClassDiagrams.csproj", "{CC8CD7D2-8EFF-48E5-A17A-C1C482744D31}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CC8CD7D2-8EFF-48E5-A17A-C1C482744D31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CC8CD7D2-8EFF-48E5-A17A-C1C482744D31}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CC8CD7D2-8EFF-48E5-A17A-C1C482744D31}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CC8CD7D2-8EFF-48E5-A17A-C1C482744D31}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/IReader.cs b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/IReader.cs new file mode 100644 index 0000000..33cb05a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/IReader.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace ClassDiagrams +{ + public interface PHPExcel_Reader_IReader + { + PHPExcel reads + { + get; + set; + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/IWriter.cs b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/IWriter.cs new file mode 100644 index 0000000..6783f3a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/IWriter.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace ClassDiagrams +{ + public interface PHPExcel_Writer_IWriter + { + PHPExcel writes + { + get; + set; + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel.cs b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel.cs new file mode 100644 index 0000000..825139b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace ClassDiagrams +{ + public class PHPExcel + { + /// <remarks></remarks> + public Worksheet Worksheets + { + get + { + throw new System.NotImplementedException(); + } + set + { + } + } + } + + public class PHPExcel_Writer_PDF : PHPExcel_Writer_IWriter + { + #region PHPExcel_Writer_IWriter Members + + public PHPExcel writes + { + get + { + throw new Exception("The method or operation is not implemented."); + } + set + { + throw new Exception("The method or operation is not implemented."); + } + } + + #endregion + } +} diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_IOFactory.cs b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_IOFactory.cs new file mode 100644 index 0000000..695a455 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_IOFactory.cs @@ -0,0 +1,41 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace ClassDiagrams +{ + public class PHPExcel_IOFactory + { + public PHPExcel_Reader_IReader createsReader + { + get + { + throw new System.NotImplementedException(); + } + set + { + } + } + + public PHPExcel_Writer_IWriter createsWriter + { + get + { + throw new System.NotImplementedException(); + } + set + { + } + } + + public PHPExcel_Writer_IWriter createWriter() + { + throw new System.NotImplementedException(); + } + + public PHPExcel_Reader_IReader createReader() + { + throw new System.NotImplementedException(); + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Excel2007.cs b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Excel2007.cs new file mode 100644 index 0000000..fc38fac --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Excel2007.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace ClassDiagrams +{ + public class PHPExcel_Reader_Excel2007 : PHPExcel_Reader_IReader + { + #region IReader Members + + public PHPExcel reads + { + get + { + throw new Exception("The method or operation is not implemented."); + } + set + { + throw new Exception("The method or operation is not implemented."); + } + } + + #endregion + } +} diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Excel5.cs b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Excel5.cs new file mode 100644 index 0000000..673df56 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Excel5.cs @@ -0,0 +1,63 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace ClassDiagrams +{ + public class PHPExcel_Reader_Excel5 : PHPExcel_Reader_IReader + { + #region PHPExcel_Writer_IReader Members + + public PHPExcel reads + { + get + { + throw new Exception("The method or operation is not implemented."); + } + set + { + throw new Exception("The method or operation is not implemented."); + } + } + + #endregion + } + + public class PHPExcel_Reader_Excel2003XML : PHPExcel_Reader_IReader + { + #region PHPExcel_Writer_IReader Members + + public PHPExcel reads + { + get + { + throw new Exception("The method or operation is not implemented."); + } + set + { + throw new Exception("The method or operation is not implemented."); + } + } + + #endregion + } + + public class PHPExcel_Reader_SYLK : PHPExcel_Reader_IReader + { + #region PHPExcel_Writer_IReader Members + + public PHPExcel reads + { + get + { + throw new Exception("The method or operation is not implemented."); + } + set + { + throw new Exception("The method or operation is not implemented."); + } + } + + #endregion + } +} diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Serialized.cs b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Serialized.cs new file mode 100644 index 0000000..3718dd2 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Serialized.cs @@ -0,0 +1,44 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace ClassDiagrams +{ + public class PHPExcel_Reader_Serialized : PHPExcel_Reader_IReader + { + #region IReader Members + + public PHPExcel reads + { + get + { + throw new Exception("The method or operation is not implemented."); + } + set + { + throw new Exception("The method or operation is not implemented."); + } + } + + #endregion + } + + public class PHPExcel_Reader_CSV : PHPExcel_Reader_IReader + { + #region IReader Members + + public PHPExcel reads + { + get + { + throw new Exception("The method or operation is not implemented."); + } + set + { + throw new Exception("The method or operation is not implemented."); + } + } + + #endregion + } +} diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Writer_Excel2007.cs b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Writer_Excel2007.cs new file mode 100644 index 0000000..5f4b565 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Writer_Excel2007.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace ClassDiagrams +{ + public class PHPExcel_Writer_Excel2007 : PHPExcel_Writer_IWriter + { + #region IWriter Members + + public PHPExcel writes + { + get + { + throw new Exception("The method or operation is not implemented."); + } + set + { + throw new Exception("The method or operation is not implemented."); + } + } + + #endregion + } +} diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Writer_Serialized.cs b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Writer_Serialized.cs new file mode 100644 index 0000000..58f4bbe --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Writer_Serialized.cs @@ -0,0 +1,82 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace ClassDiagrams +{ + public class PHPExcel_Writer_Serialized : PHPExcel_Writer_IWriter + { + #region IWriter Members + + public PHPExcel writes + { + get + { + throw new Exception("The method or operation is not implemented."); + } + set + { + throw new Exception("The method or operation is not implemented."); + } + } + + #endregion + } + + public class PHPExcel_Writer_CSV : PHPExcel_Writer_IWriter + { + #region IWriter Members + + public PHPExcel writes + { + get + { + throw new Exception("The method or operation is not implemented."); + } + set + { + throw new Exception("The method or operation is not implemented."); + } + } + + #endregion + } + + public class PHPExcel_Writer_Excel5 : PHPExcel_Writer_IWriter + { + #region IWriter Members + + public PHPExcel writes + { + get + { + throw new Exception("The method or operation is not implemented."); + } + set + { + throw new Exception("The method or operation is not implemented."); + } + } + + #endregion + } + + public class PHPExcel_Writer_HTML : PHPExcel_Writer_IWriter + { + #region IWriter Members + + public PHPExcel writes + { + get + { + throw new Exception("The method or operation is not implemented."); + } + set + { + throw new Exception("The method or operation is not implemented."); + } + } + + #endregion + } +} diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/Worksheet.cs b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/Worksheet.cs new file mode 100644 index 0000000..aa977b8 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/Worksheet.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace ClassDiagrams +{ + public class Worksheet + { + } + + public class CopyOfWorksheet + { + } +} diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Exports/Architecture.png b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Exports/Architecture.png new file mode 100644 index 0000000000000000000000000000000000000000..132481803068ee3a7ab4cab7adbab55be49a72b7 GIT binary patch literal 15122 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Exports/ReaderWriter.png b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Exports/ReaderWriter.png new file mode 100644 index 0000000000000000000000000000000000000000..b915faa7c6cadb16cc0167757a279246e55d8c42 GIT binary patch literal 46094 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ReaderWriter.cd b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ReaderWriter.cd new file mode 100644 index 0000000..7764e09 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ReaderWriter.cd @@ -0,0 +1,135 @@ +<?xml version="1.0" encoding="utf-8"?> +<ClassDiagram MajorVersion="1" MinorVersion="1"> + <Class Name="ClassDiagrams.PHPExcel_Reader_Excel2007" Collapsed="true" BaseTypeListCollapsed="true"> + <Position X="0.5" Y="3.5" Width="2.25" /> + <TypeIdentifier> + <HashCode>AAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAA=</HashCode> + <FileName>Classes\PHPExcel_Reader_Excel2007.cs</FileName> + </TypeIdentifier> + <Lollipop Position="0.2" /> + </Class> + <Class Name="ClassDiagrams.PHPExcel_Writer_Excel2007" Collapsed="true" BaseTypeListCollapsed="true"> + <Position X="3.5" Y="3.5" Width="2.25" /> + <TypeIdentifier> + <HashCode>AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAA=</HashCode> + <FileName>Classes\PHPExcel_Writer_Excel2007.cs</FileName> + </TypeIdentifier> + <Lollipop Position="0.2" /> + </Class> + <Class Name="ClassDiagrams.PHPExcel_Reader_Serialized" Collapsed="true" BaseTypeListCollapsed="true"> + <Position X="0.5" Y="4.25" Width="2.25" /> + <TypeIdentifier> + <HashCode>AAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAA=</HashCode> + <FileName>Classes\PHPExcel_Reader_Serialized.cs</FileName> + </TypeIdentifier> + <Lollipop Position="0.2" /> + </Class> + <Class Name="ClassDiagrams.PHPExcel_Writer_Serialized" Collapsed="true" BaseTypeListCollapsed="true"> + <Position X="3.5" Y="4.25" Width="2.25" /> + <TypeIdentifier> + <HashCode>AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAA=</HashCode> + <FileName>Classes\PHPExcel_Writer_Serialized.cs</FileName> + </TypeIdentifier> + <Lollipop Position="0.2" /> + </Class> + <Class Name="ClassDiagrams.PHPExcel_Reader_CSV" Collapsed="true" BaseTypeListCollapsed="true"> + <Position X="0.5" Y="5" Width="2.25" /> + <TypeIdentifier> + <HashCode>AAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAA=</HashCode> + <FileName>Classes\PHPExcel_Reader_Serialized.cs</FileName> + </TypeIdentifier> + <Lollipop Position="0.2" /> + </Class> + <Class Name="ClassDiagrams.PHPExcel_Writer_CSV" Collapsed="true" BaseTypeListCollapsed="true"> + <Position X="3.5" Y="5" Width="2.25" /> + <TypeIdentifier> + <HashCode>AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAA=</HashCode> + <FileName>Classes\PHPExcel_Writer_Serialized.cs</FileName> + </TypeIdentifier> + <Lollipop Position="0.2" /> + </Class> + <Class Name="ClassDiagrams.PHPExcel_Writer_Excel5" Collapsed="true" BaseTypeListCollapsed="true"> + <Position X="3.5" Y="5.75" Width="2.25" /> + <TypeIdentifier> + <HashCode>AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAA=</HashCode> + <FileName>Classes\PHPExcel_Writer_Serialized.cs</FileName> + </TypeIdentifier> + <Lollipop Position="0.2" /> + </Class> + <Class Name="ClassDiagrams.PHPExcel_Writer_HTML" Collapsed="true" BaseTypeListCollapsed="true"> + <Position X="3.5" Y="6.5" Width="2.25" /> + <TypeIdentifier> + <HashCode>AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAA=</HashCode> + <FileName>Classes\PHPExcel_Writer_Serialized.cs</FileName> + </TypeIdentifier> + <Lollipop Position="0.2" /> + </Class> + <Class Name="ClassDiagrams.PHPExcel_Reader_Excel5" Collapsed="true"> + <Position X="0.5" Y="5.75" Width="2.25" /> + <TypeIdentifier> + <HashCode>AAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAA=</HashCode> + <FileName>Classes\PHPExcel_Reader_Excel5.cs</FileName> + </TypeIdentifier> + <Lollipop Position="0.2" /> + </Class> + <Class Name="ClassDiagrams.PHPExcel_Writer_PDF" Collapsed="true"> + <Position X="3.5" Y="7.25" Width="2.25" /> + <TypeIdentifier> + <HashCode>AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAA=</HashCode> + <FileName>Classes\PHPExcel.cs</FileName> + </TypeIdentifier> + <Lollipop Position="0.2" /> + </Class> + <Class Name="ClassDiagrams.PHPExcel_IOFactory"> + <Position X="2" Y="0.5" Width="2.25" /> + <AssociationLine Name="createsReader" Type="ClassDiagrams.PHPExcel_Reader_IReader"> + <MemberNameLabel ManuallyPlaced="true"> + <Position X="0.11" Y="0.06" /> + </MemberNameLabel> + </AssociationLine> + <AssociationLine Name="createsWriter" Type="ClassDiagrams.PHPExcel_Writer_IWriter"> + <MemberNameLabel ManuallyPlaced="true"> + <Position X="-1.088" Y="0.081" /> + </MemberNameLabel> + </AssociationLine> + <TypeIdentifier> + <HashCode>AIAAAAAAAAEAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAA=</HashCode> + <FileName>Classes\PHPExcel_IOFactory.cs</FileName> + </TypeIdentifier> + <ShowAsAssociation> + <Property Name="createsReader" /> + <Property Name="createsWriter" /> + </ShowAsAssociation> + </Class> + <Class Name="ClassDiagrams.PHPExcel_Reader_Excel2003XML" Collapsed="true"> + <Position X="0.5" Y="6.5" Width="2.25" /> + <TypeIdentifier> + <HashCode>AAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAA=</HashCode> + <FileName>Classes\PHPExcel_Reader_Excel5.cs</FileName> + </TypeIdentifier> + <Lollipop Position="0.2" /> + </Class> + <Class Name="ClassDiagrams.PHPExcel_Reader_SYLK" Collapsed="true"> + <Position X="0.5" Y="7.25" Width="2.25" /> + <TypeIdentifier> + <HashCode>AAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAA=</HashCode> + <FileName>Classes\PHPExcel_Reader_Excel5.cs</FileName> + </TypeIdentifier> + <Lollipop Position="0.2" /> + </Class> + <Interface Name="ClassDiagrams.PHPExcel_Writer_IWriter" Collapsed="true"> + <Position X="3.5" Y="2.5" Width="2.25" /> + <TypeIdentifier> + <HashCode>AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAA=</HashCode> + <FileName>Classes\IWriter.cs</FileName> + </TypeIdentifier> + </Interface> + <Interface Name="ClassDiagrams.PHPExcel_Reader_IReader" Collapsed="true"> + <Position X="0.5" Y="2.5" Width="2.25" /> + <TypeIdentifier> + <HashCode>AAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAA=</HashCode> + <FileName>Classes\IReader.cs</FileName> + </TypeIdentifier> + </Interface> + <Font Name="Tahoma" Size="8.25" /> +</ClassDiagram> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ReaderWriter.png b/src/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ReaderWriter.png new file mode 100644 index 0000000000000000000000000000000000000000..d76c98d988c7be068ee181b133284f3f46afa8a1 GIT binary patch literal 57944 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 UQg6f6jRXFuUeQo0Q9z>q4|x|_{Qv*} literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/01-Introduction.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/01-Introduction.md new file mode 100644 index 0000000..2ea3a50 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/01-Introduction.md @@ -0,0 +1,11 @@ +# Calculation Engine - Formula Function Reference + +## Frequently asked questions + +The up-to-date F.A.Q. page for PHPExcel can be found on [http://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=FAQ&referringTitle=Requirements][1]. + +### Formulas don’t seem to be calculated in Excel2003 using compatibility pack? + +This is normal behaviour of the compatibility pack, Excel2007 displays this correctly. Use PHPExcel_Writer_Excel5 if you really need calculated values, or force recalculation in Excel2003. + + [1]: http://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=FAQ&referringTitle=Requirements diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/02-01-Date-and-Time-Handling.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/02-01-Date-and-Time-Handling.md new file mode 100644 index 0000000..82993bb --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/02-01-Date-and-Time-Handling.md @@ -0,0 +1,123 @@ +# Calculation Engine - Formula Function Reference + +## Function Reference + +### Handling Date and Time Values + +#### Excel functions that return a Date and Time value + +Any of the Date and Time functions that return a date value in Excel can return either an Excel timestamp or a PHP timestamp or date object. + +It is possible for scripts to change the data type used for returning date values by calling the PHPExcel_Calculation_Functions::setReturnDateType() method: + +```php +PHPExcel_Calculation_Functions::setReturnDateType($returnDateType); +``` + +where the following constants can be used for $returnDateType + + - PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC + - PHPExcel_Calculation_Functions::RETURNDATE_PHP_OBJECT + - PHPExcel_Calculation_Functions::RETURNDATE_EXCEL + +The method will return a Boolean True on success, False on failure (e.g. if an invalid value is passed in for the return date type). + +The PHPExcel_Calculation_Functions::getReturnDateType() method can be used to determine the current value of this setting: + +```php +$returnDateType = PHPExcel_Calculation_Functions::getReturnDateType(); +``` + +The default is RETURNDATE_PHP_NUMERIC. + +##### PHP Timestamps + +If RETURNDATE_PHP_NUMERIC is set for the Return Date Type, then any date value returned to the calling script by any access to the Date and Time functions in Excel will be an integer value that represents the number of seconds from the PHP/Unix base date. The PHP/Unix base date (0) is 00:00 UST on 1st January 1970. This value can be positive or negative: so a value of -3600 would be 23:00 hrs on 31st December 1969; while a value of +3600 would be 01:00 hrs on 1st January 1970. This gives PHP a date range of between 14th December 1901 and 19th January 2038. + +##### PHP DateTime Objects + +If the Return Date Type is set for RETURNDATE_PHP_NUMERIC, then any date value returned to the calling script by any access to the Date and Time functions in Excel will be a PHP date/time object. + +##### Excel Timestamps + +If RETURNDATE_EXCEL is set for the Return Date Type, then the returned date value by any access to the Date and Time functions in Excel will be a floating point value that represents a number of days from the Excel base date. The Excel base date is determined by which calendar Excel uses: the Windows 1900 or the Mac 1904 calendar. 1st January 1900 is the base date for the Windows 1900 calendar while 1st January 1904 is the base date for the Mac 1904 calendar. + +It is possible for scripts to change the calendar used for calculating Excel date values by calling the PHPExcel_Shared_Date::setExcelCalendar() method: + +```php +PHPExcel_Shared_Date::setExcelCalendar($baseDate); +``` + +where the following constants can be used for $baseDate + + - PHPExcel_Shared_Date::CALENDAR_WINDOWS_1900 + - PHPExcel_Shared_Date::CALENDAR_MAC_1904 + +The method will return a Boolean True on success, False on failure (e.g. if an invalid value is passed in). + +The PHPExcel_Shared_Date::getExcelCalendar() method can be used to determine the current value of this setting: + +```php +$baseDate = PHPExcel_Shared_Date::getExcelCalendar(); +``` +The default is CALENDAR_WINDOWS_1900. + +##### Functions that return a Date/Time Value + + - DATE + - DATEVALUE + - EDATE + - EOMONTH + - NOW + - TIME + - TIMEVALUE + - TODAY + +#### Excel functions that accept Date and Time values as parameters + +Date values passed in as parameters to a function can be an Excel timestamp or a PHP timestamp; or date object; or a string containing a date value (e.g. '1-Jan-2009'). PHPExcel will attempt to identify their type based on the PHP datatype: + +An integer numeric value will be treated as a PHP/Unix timestamp. A real (floating point) numeric value will be treated as an Excel date/timestamp. Any PHP DateTime object will be treated as a DateTime object. Any string value (even one containing straight numeric data) will be converted to a date/time object for validation as a date value based on the server locale settings, so passing through an ambiguous value of '07/08/2008' will be treated as 7th August 2008 if your server settings are UK, but as 8th July 2008 if your server settings are US. However, if you pass through a value such as '31/12/2008' that would be considered an error by a US-based server, but which is not ambiguous, then PHPExcel will attempt to correct this to 31st December 2008. If the content of the string doesn’t match any of the formats recognised by the php date/time object implementation of strtotime() (which can handle a wider range of formats than the normal strtotime() function), then the function will return a '#VALUE' error. However, Excel recommends that you should always use date/timestamps for your date functions, and the recommendation for PHPExcel is the same: avoid strings because the result is not predictable. + +The same principle applies when data is being written to Excel. Cells containing date actual values (rather than Excel functions that return a date value) are always written as Excel dates, converting where necessary. If a cell formatted as a date contains an integer or date/time object value, then it is converted to an Excel value for writing: if a cell formatted as a date contains a real value, then no conversion is required. Note that string values are written as strings rather than converted to Excel date timestamp values. + +##### Functions that expect a Date/Time Value + + - DATEDIF + - DAY + - DAYS360 + - EDATE + - EOMONTH + - HOUR + - MINUTE + - MONTH + - NETWORKDAYS + - SECOND + - WEEKDAY + - WEEKNUM + - WORKDAY + - YEAR + - YEARFRAC + +#### Helper Methods + +In addition to the setExcelCalendar() and getExcelCalendar() methods, a number of other methods are available in the PHPExcel_Shared_Date class that can help when working with dates: + +##### PHPExcel_Shared_Date::ExcelToPHP($excelDate) + +Converts a date/time from an Excel date timestamp to return a PHP serialized date/timestamp. + +Note that this method does not trap for Excel dates that fall outside of the valid range for a PHP date timestamp. + +##### PHPExcel_Shared_Date::ExcelToPHPObject($excelDate) + +Converts a date from an Excel date/timestamp to return a PHP DateTime object. + +##### PHPExcel_Shared_Date::PHPToExcel($PHPDate) + +Converts a PHP serialized date/timestamp or a PHP DateTime object to return an Excel date timestamp. + +##### PHPExcel_Shared_Date::FormattedPHPToExcel($year, $month, $day, $hours=0, $minutes=0, $seconds=0) + +Takes year, month and day values (and optional hour, minute and second values) and returns an Excel date timestamp value. + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/02-General-Introduction.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/02-General-Introduction.md new file mode 100644 index 0000000..b714d51 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/02-General-Introduction.md @@ -0,0 +1,36 @@ +# Calculation Engine - Formula Function Reference + +## General Introduction + +### Function that are not Supported in Excel5 + +Not all functions are supported by the Excel 5 Writer. Use of these functions within your workbooks will result in an error when trying to write to Excel5. + +The following is the list of those functions that are implemented within PHPExcel, but that cannot currently be written to Excel 5. + +#### Cube Functions + + Excel Function | Notes + --------------------|--------- + CUBEKPIMEMBER | Not yet Implemented + CUBEMEMBER | Not yet Implemented + CUBEMEMBERPROPERTY | Not yet Implemented + CUBERANKEDMEMBER | Not yet Implemented + CUBESET | Not yet Implemented + CUBESETCOUNT | Not yet Implemented + CUBEVALUE | Not yet Implemented + + +#### Database Functions + + Excel Function | Notes + ---------------|--------- + + +#### Date and Time Functions + + Excel Function | Notes + ---------------|--------- + EDATE | Not a standard function within Excel 5, but an add-in from the Analysis ToolPak. + EOMONTH | Not a standard function within Excel 5, but an add-in from the Analysis ToolPak. + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/03-01-Cube-Functions.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/03-01-Cube-Functions.md new file mode 100644 index 0000000..8c94632 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/03-01-Cube-Functions.md @@ -0,0 +1,34 @@ +# Calculation Engine - Formula Function Reference + +## Function Reference + +### Cube Functions + +#### CUBEKPIMEMBER + +Not yet implemented. + +#### CUBEMEMBER + +Not yet implemented. + +#### CUBEMEMBERPROPERTY + +Not yet implemented. + +#### CUBERANKEDMEMBER + +Not yet implemented. + +#### CUBESET + +Not yet implemented. + +#### CUBESETCOUNT + +Not yet implemented. + +#### CUBEVALUE + +Not yet implemented. + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/03-02-Database-Functions.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/03-02-Database-Functions.md new file mode 100644 index 0000000..a50e1c8 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/03-02-Database-Functions.md @@ -0,0 +1,618 @@ +# Calculation Engine - Formula Function Reference + +## Function Reference + +### Database Functions + +#### DAVERAGE + +The DAVERAGE function returns the average value of the cells in a column of a list or database that match conditions you specify. + +##### Syntax + +``` +DAVERAGE (database, field, criteria) +``` + +##### Parameters + +**database** The range of cells that makes up the list or database. + +A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column. + +**field** Indicates which column of the database is used in the function. + +Enter the column label as a string (enclosed between double quotation marks), such as "Age" or "Yield," or as a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on. + +**criteria** The range of cells that contains the conditions you specify. + +You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column. + +##### Return Value + +**float** The average value of the matching cells. + +This is the statistical mean. + +##### Examples + +```php +$database = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), +); + +$criteria = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ), +); + +$worksheet->fromArray( $criteria, NULL, 'A1' ) + ->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', '=DAVERAGE(A4:E10,"Yield",A1:B2)'); + +$retVal = $worksheet->getCell('A12')->getCalculatedValue(); +// $retVal = 12 +``` + +##### Notes + +There are no additional notes on this function + +#### DCOUNT + +The DCOUNT function returns the count of cells that contain a number in a column of a list or database matching conditions that you specify. + +##### Syntax + +``` +DCOUNT(database, [field], criteria) +``` + +##### Parameters + +**database** The range of cells that makes up the list or database. + +A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column. + +**field** Indicates which column of the database is used in the function. + +Enter the column label as a string (enclosed between double quotation marks), such as "Age" or "Yield," or as a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on. + +**criteria** The range of cells that contains the conditions you specify. + +You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column. + +##### Return Value + +**float** The count of the matching cells. + +##### Examples + +```php +$database = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), +); + +$criteria = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ), +); + +$worksheet->fromArray( $criteria, NULL, 'A1' ) + ->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', '=DCOUNT(A4:E10,"Height",A1:B3)'); + +$retVal = $worksheet->getCell('A12')->getCalculatedValue(); + +// $retVal = 3 +``` + +##### Notes + +In MS Excel, The field argument is optional. If field is omitted, DCOUNT counts all records in the database that match the criteria. This logic has not yet been implemented in PHPExcel. + +#### DCOUNTA + +The DCOUNT function returns the count of cells that aren’t blank in a column of a list or database and that match conditions that you specify. + +##### Syntax + +``` +DCOUNTA(database, [field], criteria) +``` + +##### Parameters + +**database** The range of cells that makes up the list or database. + +A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column. + +**field** Indicates which column of the database is used in the function. + +Enter the column label as a string (enclosed between double quotation marks), such as "Age" or "Yield," or as a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on. + +**criteria** The range of cells that contains the conditions you specify. + +You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column. + +##### Return Value + +**float** The count of the matching cells. + +##### Examples + +```php +$database = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), +); + +$criteria = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ), +); + +$worksheet->fromArray( $criteria, NULL, 'A1' ) + ->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', '=DCOUNTA(A4:E10,"Yield",A1:A3)'); + +$retVal = $worksheet->getCell('A12')->getCalculatedValue(); + +// $retVal = 5 +``` + +##### Notes + +In MS Excel, The field argument is optional. If field is omitted, DCOUNTA counts all records in the database that match the criteria. This logic has not yet been implemented in PHPExcel. + +#### DGET + +The DGET function extracts a single value from a column of a list or database that matches conditions that you specify. + +##### Syntax + +``` +DGET(database, field, criteria) +``` + +##### Parameters + +**database** The range of cells that makes up the list or database. + +A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column. + +**field** Indicates which column of the database is used in the function. + +Enter the column label as a string (enclosed between double quotation marks), such as "Age" or "Yield," or as a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on. + +**criteria** The range of cells that contains the conditions you specify. + +You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column. + +##### Return Value + +**mixed** The value from the selected column of the matching row. + +#### Examples + +```php +$database = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), +); + +$criteria = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ), +); + +$worksheet->fromArray( $criteria, NULL, 'A1' ) + ->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', '=GET(A4:E10,"Age",A1:F2)'); + +$retVal = $worksheet->getCell('A12')->getCalculatedValue(); +// $retVal = 14 +``` + +##### Notes + +There are no additional notes on this function + +#### DMAX + +The DMAX function returns the largest number in a column of a list or database that matches conditions you specify. + +##### Syntax + +``` +DMAX(database, field, criteria) +``` + +##### Parameters + +**database** The range of cells that makes up the list or database. + +A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column. + +**field** Indicates which column of the database is used in the function. + +Enter the column label as a string (enclosed between double quotation marks), such as "Age" or "Yield," or as a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on. + +**criteria** The range of cells that contains the conditions you specify. + +You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column. + +##### Return Value + +**float** The maximum value of the matching cells. + +##### Examples + +```php +$database = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), +); + +$criteria = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ), +); + +$worksheet->fromArray( $criteria, NULL, 'A1' ) + ->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', '=DMAX(A4:E10,"Profit",A1:B2)'); + +$retVal = $worksheet->getCell('A12')->getCalculatedValue(); +// $retVal = 105 +``` + +##### Notes + +There are no additional notes on this function + +#### DMIN + +The DMIN function returns the smallest number in a column of a list or database that matches conditions you specify. + +##### Syntax + +``` +DMIN(database, field, criteria) +``` + +##### Parameters + +**database** The range of cells that makes up the list or database. + +A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column. + +**field** Indicates which column of the database is used in the function. + +Enter the column label as a string (enclosed between double quotation marks), such as "Age" or "Yield," or as a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on. + +**criteria** The range of cells that contains the conditions you specify. + +You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column. + +##### Return Value + +**float** The minimum value of the matching cells. + +##### Examples + +```php +$database = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), +); + +$criteria = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ), +); + +$worksheet->fromArray( $criteria, NULL, 'A1' ) + ->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', '=DMIN(A4:E10,"Yield",A1:A3)'); + +$retVal = $worksheet->getCell('A12')->getCalculatedValue(); +// $retVal = 6 +``` + +##### Notes + +There are no additional notes on this function + +#### DPRODUCT + +The DPRODUCT function multiplies the values in a column of a list or database that match conditions that you specify. + +##### Syntax + +``` +DPRODUCT(database, field, criteria) +``` + +##### Parameters + +**database** The range of cells that makes up the list or database. + +A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column. + +**field** Indicates which column of the database is used in the function. + +Enter the column label as a string (enclosed between double quotation marks), such as "Age" or "Yield," or as a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on. + +**criteria** The range of cells that contains the conditions you specify. + +You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column. + +##### Return Value + +**float** The product of the matching cells. + +##### Examples + +```php +$database = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), +); + +$criteria = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ), +); + +$worksheet->fromArray( $criteria, NULL, 'A1' ) + ->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', '=DPRODUCT(A4:E10,"Yield",A1:B2)'); + +$retVal = $worksheet->getCell('A12')->getCalculatedValue(); +// $retVal = 140 +``` + +##### Notes + +There are no additional notes on this function + +#### DSTDEV + +The DSTDEV function estimates the standard deviation of a population based on a sample by using the numbers in a column of a list or database that match conditions that you specify. + +##### Syntax + +``` +DSTDEV(database, field, criteria) +``` + +##### Parameters + +**database** The range of cells that makes up the list or database. + +A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column. + +**field** Indicates which column of the database is used in the function. + +Enter the column label as a string (enclosed between double quotation marks), such as "Age" or "Yield," or as a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on. + +**criteria** The range of cells that contains the conditions you specify. + +You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column. + +##### Return Value + +**float** The estimated standard deviation of the matching cells. + +##### Examples + +```php +$database = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), +); + +$criteria = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ), +); + +$worksheet->fromArray( $criteria, NULL, 'A1' ) + ->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', '=DSTDEV(A4:E10,"Yield",A1:A3)'); + +$retVal = $worksheet->getCell('A12')->getCalculatedValue(); +// $retVal = 2.97 +``` + +##### Notes + +There are no additional notes on this function + +#### DSTDEVP + +The DSTDEVP function calculates the standard deviation of a population based on the entire population by using the numbers in a column of a list or database that match conditions that you specify. + +##### Syntax + +``` +DSTDEVP(database, field, criteria) +``` + +##### Parameters + +**database** The range of cells that makes up the list or database. + +A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column. + +**field** Indicates which column of the database is used in the function. + +Enter the column label as a string (enclosed between double quotation marks), such as "Age" or "Yield," or as a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on. + +**criteria** The range of cells that contains the conditions you specify. + +You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column. + +##### Return Value + +**float** The estimated standard deviation of the matching cells. + +##### Examples + +```php +$database = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), +); + +$criteria = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ), +); + +$worksheet->fromArray( $criteria, NULL, 'A1' ) + ->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', '=DSTDEVP(A4:E10,"Yield",A1:A3)'); + +$retVal = $worksheet->getCell('A12')->getCalculatedValue(); +// $retVal = 2.65 +``` + +##### Notes + +There are no additional notes on this function + +#### DSUM + +The DSUM function adds the numbers in a column of a list or database that matches conditions you specify. + +##### Syntax + +``` +DSUM(database, field, criteria) +``` + +##### Parameters + +**database** The range of cells that makes up the list or database. + +A database is a list of related data in which rows of related information are records, and columns of data are fields. The first row of the list contains labels for each column. + +**field** Indicates which column of the database is used in the function. + +Enter the column label as a string (enclosed between double quotation marks), such as "Age" or "Yield," or as a number (without quotation marks) that represents the position of the column within the list: 1 for the first column, 2 for the second column, and so on. + +**criteria** The range of cells that contains the conditions you specify. + +You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column. + +##### Return Value + +**float** The total value of the matching cells. + +##### Examples + +```php +$database = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit' ), + array( 'Apple', 18, 20, 14, 105.00 ), + array( 'Pear', 12, 12, 10, 96.00 ), + array( 'Cherry', 13, 14, 9, 105.00 ), + array( 'Apple', 14, 15, 10, 75.00 ), + array( 'Pear', 9, 8, 8, 76.80 ), + array( 'Apple', 8, 9, 6, 45.00 ), +); + +$criteria = array( + array( 'Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height' ), + array( '="=Apple"', '>10', NULL, NULL, NULL, '<16' ), + array( '="=Pear"', NULL, NULL, NULL, NULL, NULL ), +); + +$worksheet->fromArray( $criteria, NULL, 'A1' ) + ->fromArray( $database, NULL, 'A4' ); + +$worksheet->setCellValue('A12', '=DMIN(A4:E10,"Profit",A1:A2)'); + +$retVal = $worksheet->getCell('A12')->getCalculatedValue(); +// $retVal = 225 +``` + +##### Notes + +There are no additional notes on this function + +#### DVAR + +Not yet documented. + +#### DVARP + +Not yet documented. + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/03-03-Date-and-Time-Functions.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/03-03-Date-and-Time-Functions.md new file mode 100644 index 0000000..d0cc568 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/03-03-Date-and-Time-Functions.md @@ -0,0 +1,1000 @@ +# Calculation Engine - Formula Function Reference + +## Function Reference + +### Date and Time Functions + +Excel provides a number of functions for the manipulation of dates and times, and calculations based on date/time values. it is worth spending some time reading the section titled "Date and Time Values" on passing date parameters and returning date values to understand how PHPExcel reconciles the differences between dates and times in Excel and in PHP. + +#### DATE + +The DATE function returns an Excel timestamp or a PHP timestamp or date object representing the date that is referenced by the parameters. + +##### Syntax + +``` +DATE(year, month, day) +``` + +##### Parameters + +**year** The year number. + +If this value is between 0 (zero) and 1899 inclusive (for the Windows 1900 calendar), or between 4 and 1903 inclusive (for the Mac 1904), then PHPExcel adds it to the Calendar base year, so a value of 108 will interpret the year as 2008 when using the Windows 1900 calendar, or 2012 when using the Mac 1904 calendar. + +**month** The month number. + +If this value is greater than 12, the DATE function adds that number of months to the first month in the year specified. For example, DATE(2008,14,2) returns a value representing February 2, 2009. + +If the value of __month__ is less than 1, then that value will be adjusted by -1, and that will then be subtracted from the first month of the year specified. For example, DATE(2008,0,2) returns a value representing December 2, 2007; while DATE(2008,-1,2) returns a value representing November 2, 2007. + +**day** The day number. + +If this value is greater than the number of days in the month (and year) specified, the DATE function adds that number of days to the first day in the month. For example, DATE(2008,1,35) returns a value representing February 4, 2008. + +If the value of __day__ is less than 1, then that value will be adjusted by -1, and that will then be subtracted from the first month of the year specified. For example, DATE(2008,3,0) returns a value representing February 29, 2008; while DATE(2008,3,-2) returns a value representing February 27, 2008. + +##### Return Value + +**mixed** A date/time stamp that corresponds to the given date. + +This could be a PHP timestamp value (integer), a PHP date/time object, or an Excel timestamp value (real), depending on the value of PHPExcel_Calculation_Functions::getReturnDateType(). + +##### Examples + +```php +$worksheet->setCellValue('A1', 'Year') + ->setCellValue('A2', 'Month') + ->setCellValue('A3', 'Day'); + +$worksheet->setCellValue('B1', 2008) + ->setCellValue('B2', 12) + ->setCellValue('B3', 31); + +$worksheet->setCellValue('D1', '=DATE(B1,B2,B3)'); + +$retVal = $worksheet->getCell('D1')->getCalculatedValue(); +// $retVal = 1230681600 +``` + +```php +// We're going to be calling the same cell calculation multiple times, +// and expecting different return values, so disable calculation cacheing +PHPExcel_Calculation::getInstance()->setCalculationCacheEnabled(FALSE); + +$saveFormat = PHPExcel_Calculation_Functions::getReturnDateType(); + +PHPExcel_Calculation_Functions::setReturnDateType( + PHPExcel_Calculation_Functions::RETURNDATE_EXCEL +); + +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'DATE'), + array(2008, 12, 31) +); +// $retVal = 39813.0 + +PHPExcel_Calculation_Functions::setReturnDateType( + PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC +); + +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'DATE'), + array(2008, 12, 31) +); +// $retVal = 1230681600 + +PHPExcel_Calculation_Functions::setReturnDateType($saveFormat); +``` + +##### Notes + +There are no additional notes on this function + +#### DATEDIF + +The DATEDIF function computes the difference between two dates in a variety of different intervals, such number of years, months, or days. + +##### Syntax + +``` +DATEDIF(date1, date2 [, unit]) +``` + +##### Parameters + +**date1** First Date. + +An Excel date value, PHP date timestamp, PHP date object, or a date represented as a string. + +**date2** Second Date. + +An Excel date value, PHP date timestamp, PHP date object, or a date represented as a string. + +**unit** The interval type to use for the calculation + +This is a string, comprising one of the values listed below: + +Unit | Meaning | Description +-----|---------------------------------|-------------------------------- +m | Months | Complete calendar months between the dates. +d | Days | Number of days between the dates. +y | Years | Complete calendar years between the dates. +ym | Months Excluding Years | Complete calendar months between the dates as if they were of the same year. +yd | Days Excluding Years | Complete calendar days between the dates as if they were of the same year. +md | Days Excluding Years And Months | Complete calendar days between the dates as if they were of the same month and same year. + +The unit value is not case sensitive, and defaults to "d". + +##### Return Value + +**integer** An integer value that reflects the difference between the two dates. + +This could be the number of full days, months or years between the two dates, depending on the interval unit value passed into the function as the third parameter. + +##### Examples + +```php +$worksheet->setCellValue('A1', 'Year') + ->setCellValue('A2', 'Month') + ->setCellValue('A3', 'Day'); + +$worksheet->setCellValue('B1', 2001) + ->setCellValue('C1', 2009) + ->setCellValue('B2', 7) + ->setCellValue('C2', 12) + ->setCellValue('B3', 1) + ->setCellValue('C3', 31); + +$worksheet->setCellValue('D1', '=DATEDIF(DATE(B1,B2,B3),DATE(C1,C2,C3),"d")') + ->setCellValue('D2', '=DATEDIF(DATE(B1,B2,B3),DATE(C1,C2,C3),"m")') + ->setCellValue('D3', '=DATEDIF(DATE(B1,B2,B3),DATE(C1,C2,C3),"y")') + ->setCellValue('D4', '=DATEDIF(DATE(B1,B2,B3),DATE(C1,C2,C3),"ym")') + ->setCellValue('D5', '=DATEDIF(DATE(B1,B2,B3),DATE(C1,C2,C3),"yd")') + ->setCellValue('D6', '=DATEDIF(DATE(B1,B2,B3),DATE(C1,C2,C3),"md")'); + +$retVal = $worksheet->getCell('D1')->getCalculatedValue(); +// $retVal = 3105 + +$retVal = $worksheet->getCell('D2')->getCalculatedValue(); +// $retVal = 101 + +$retVal = $worksheet->getCell('D3')->getCalculatedValue(); +// $retVal = 8 + +$retVal = $worksheet->getCell('D4')->getCalculatedValue(); +// $retVal = 5 + +$retVal = $worksheet->getCell('D5')->getCalculatedValue(); +// $retVal = 183 + +$retVal = $worksheet->getCell('D6')->getCalculatedValue(); +// $retVal = 30 +``` + +```php +$date1 = 1193317015; // PHP timestamp for 25-Oct-2007 +$date2 = 1449579415; // PHP timestamp for 8-Dec-2015 + +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'DATEDIF'), + array($date1, $date2, 'd') +); +// $retVal = 2966 + +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'DATEDIF'), + array($date1, $date2, 'm') +); +// $retVal = 97 + +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'DATEDIF'), + array($date1, $date2, 'y') +); +// $retVal = 8 + +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'DATEDIF'), + array($date1, $date2, 'ym') +); +// $retVal = 1 + +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'DATEDIF'), + array($date1, $date2, 'yd') +); +// $retVal = 44 + +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'DATEDIF'), + array($date1, $date2, 'md') +); +// $retVal = 13 +``` + +##### Notes + +If Date1 is later than Date2, DATEDIF will return a #NUM! error. + +#### DATEVALUE + +The DATEVALUE function returns the date represented by a date formatted as a text string. Use DATEVALUE to convert a date represented by text to a serial number. + +##### Syntax + +``` +DATEVALUE(dateString) +``` + +##### Parameters + +**date** Date String. + +A string, representing a date value. + +##### Return Value + +**mixed** A date/time stamp that corresponds to the given date. + +This could be a PHP timestamp value (integer), a PHP date/time object, or an Excel timestamp value (real), depending on the value of PHPExcel_Calculation_Functions::getReturnDateType(). + +##### Examples + +```php +$worksheet->setCellValue('A1', 'Date String'); + ->setCellValue('A2', '31-Dec-2008') + ->setCellValue('A3', '31/12/2008') + ->setCellValue('A4', '12-31-2008'); + +$worksheet->setCellValue('B2', '=DATEVALUE(A2)') + ->setCellValue('B3', '=DATEVALUE(A3)') + ->setCellValue('B4', '=DATEVALUE(A4)'); + +PHPExcel_Calculation_Functions::setReturnDateType( + PHPExcel_Calculation_Functions::RETURNDATE_EXCEL +); + +$retVal = $worksheet->getCell('B2')->getCalculatedValue(); + +$retVal = $worksheet->getCell('B3')->getCalculatedValue(); + +$retVal = $worksheet->getCell('B4')->getCalculatedValue(); +// $retVal = 39813.0 for all cases +``` + +```php +// We're going to be calling the same cell calculation multiple times, +// and expecting different return values, so disable calculation cacheing +PHPExcel_Calculation::getInstance()->setCalculationCacheEnabled(FALSE); + +$saveFormat = PHPExcel_Calculation_Functions::getReturnDateType(); + +PHPExcel_Calculation_Functions::setReturnDateType( + PHPExcel_Calculation_Functions::RETURNDATE_EXCEL +); + +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'DATEVALUE'), + array('31-Dec-2008') +); +// $retVal = 39813.0 + +PHPExcel_Calculation_Functions::setReturnDateType( + PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC +); + +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'DATEVALUE'), + array('31-Dec-2008') +); +// $retVal = 1230681600 + +PHPExcel_Calculation_Functions::setReturnDateType($saveFormat); +``` + +##### Notes + +DATEVALUE uses the php date/time object implementation of strtotime() (which can handle a wider range of formats than the normal strtotime() function), and it is also called for any date parameter passed to other date functions (such as DATEDIF) when the parameter value is a string. + +__WARNING:-__ PHPExcel accepts a wider range of date formats than MS Excel, so it is entirely possible that Excel will return a #VALUE! error when passed a date string that it can’t interpret, while PHPExcel is able to translate that same string into a correct date value. + +Care should be taken in workbooks that use string formatted dates in calculations when writing to Excel5 or Excel2007. + +#### DAY + +The DAY function returns the day of a date. The day is given as an integer ranging from 1 to 31. + +##### Syntax + +``` +DAY(datetime) +``` + +##### Parameters + +**datetime** Date. + +An Excel date value, PHP date timestamp, PHP date object, or a date represented as a string. + +##### Return Value + +**integer** An integer value that reflects the day of the month. + +This is an integer ranging from 1 to 31. + +##### Examples + +```php +$worksheet->setCellValue('A1', 'Date String') + ->setCellValue('A2', '31-Dec-2008') + ->setCellValue('A3', '14-Feb-2008'); + +$worksheet->setCellValue('B2', '=DAY(A2)') + ->setCellValue('B3', '=DAY(A3)'); + +$retVal = $worksheet->getCell('B2')->getCalculatedValue(); +// $retVal = 31 + +$retVal = $worksheet->getCell('B3')->getCalculatedValue(); +// $retVal = 14 +``` + +```php +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'DAYOFMONTH'), + array('25-Dec-2008') +); +// $retVal = 25 +``` + +##### Notes + +Note that the PHPExcel function is PHPExcel_Calculation_Functions::DAYOFMONTH() when the method is called statically. + +#### DAYS360 + +The DAYS360 function computes the difference between two dates based on a 360 day year (12 equal periods of 30 days each) used by some accounting systems. + +##### Syntax + +``` +DAYS360(date1, date2 [, method]) +``` + +#### Parameters + +**date1** First Date. + +An Excel date value, PHP date timestamp, PHP date object, or a date represented as a string. + +**date2** Second Date. + +An Excel date value, PHP date timestamp, PHP date object, or a date represented as a string. + +**method** A boolean flag (TRUE or FALSE) + +This is a flag that determines which method to use in the calculation, based on the values listed below: + + method | Description + -------|------------ + FALSE | U.S. (NASD) method. If the starting date is the last day of a month, it becomes equal to the 30th of the same month. If the ending date is the last day of a month and the starting date is earlier than the 30th of a month, the ending date becomes equal to the 1st of the next month; otherwise the ending date becomes equal to the 30th of the same month. + TRUE | European method. Starting dates and ending dates that occur on the 31st of a month become equal to the 30th of the same month. + +The method value defaults to FALSE. + +##### Return Value + +**integer** An integer value that reflects the difference between the two dates. + +This is the number of full days between the two dates, based on a 360 day year. + +##### Examples + +```php +$worksheet->setCellValue('B1', 'Start Date') + ->setCellValue('C1', 'End Date') + ->setCellValue('A2', 'Year') + ->setCellValue('A3', 'Month') + ->setCellValue('A4', 'Day'); + +$worksheet->setCellValue('B2', 2003) + ->setCellValue('B3', 2) + ->setCellValue('B4', 3); + +$worksheet->setCellValue('C2', 2007) + ->setCellValue('C3', 5) + ->setCellValue('C4', 31); + +$worksheet->setCellValue('E2', '=DAYS360(DATE(B2,B3,B4),DATE(C2,C3,C4))') + ->setCellValue('E4', '=DAYS360(DATE(B2,B3,B4),DATE(C2,C3,C4),FALSE)'); + +$retVal = $worksheet->getCell('E2')->getCalculatedValue(); +// $retVal = 1558 + +$retVal = $worksheet->getCell('E4')->getCalculatedValue(); +// $retVal = 1557 +``` + +```php +$date1 = 37655.0; // Excel timestamp for 25-Oct-2007 +$date2 = 39233.0; // Excel timestamp for 8-Dec-2015 + +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'DAYS360'), + array($date1, $date2) +); +// $retVal = 1558 + +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'DAYS360'), + array($date1, $date2, TRUE) +); +// $retVal = 1557 +``` + +##### Notes + +__WARNING:-__ This function does not currently work with the Excel5 Writer when a PHP Boolean is used for the third (optional) parameter (as shown in the example above), and the writer will generate and error. It will work if a numeric 0 or 1 is used for the method parameter; or if the Excel TRUE() and FALSE() functions are used instead. + +#### EDATE + +The EDATE function returns an Excel timestamp or a PHP timestamp or date object representing the date that is the indicated number of months before or after a specified date (the start_date). Use EDATE to calculate maturity dates or due dates that fall on the same day of the month as the date of issue. + +##### Syntax + +``` +EDATE(baseDate, months) +``` + +##### Parameters + +**baseDate** Start Date. + +An Excel date value, PHP date timestamp, PHP date object, or a date represented as a string. + +**months** Number of months to add. + +An integer value indicating the number of months before or after baseDate. A positive value for months yields a future date; a negative value yields a past date. + +##### Return Value + +**mixed** A date/time stamp that corresponds to the basedate + months. + +This could be a PHP timestamp value (integer), a PHP date/time object, or an Excel timestamp value (real), depending on the value of PHPExcel_Calculation_Functions::getReturnDateType(). + +##### Examples + +```php +$worksheet->setCellValue('A1', 'Date String') + ->setCellValue('A2', '1-Jan-2008') + ->setCellValue('A3', '29-Feb-2008'); + +$worksheet->setCellValue('B2', '=EDATE(A2,5)') + ->setCellValue('B3', '=EDATE(A3,-12)'); + +PHPExcel_Calculation_Functions::setReturnDateType( + PHPExcel_Calculation_Functions::RETURNDATE_EXCEL +); + +$retVal = $worksheet->getCell('B2')->getCalculatedValue(); +// $retVal = 39600.0 (1-Jun-2008) + +$retVal = $worksheet->getCell('B3')->getCalculatedValue(); +// $retVal = 39141.0 (28-Feb-2007) +``` + +```php +PHPExcel_Calculation_Functions::setReturnDateType( + PHPExcel_Calculation_Functions::RETURNDATE_EXCEL +); + +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'EDATE'), + array('31-Oct-2008',25) +); +// $retVal = 40512.0 (30-Nov-2010) +``` + +###### Notes + +__WARNING:-__ This function is currently not supported by the Excel5 Writer because it is not a standard function within Excel 5, but an add-in from the Analysis ToolPak. + +#### EOMONTH + +The EOMONTH function returns an Excel timestamp or a PHP timestamp or date object representing the date of the last day of the month that is the indicated number of months before or after a specified date (the start_date). Use EOMONTH to calculate maturity dates or due dates that fall on the last day of the month. + +##### Syntax + +``` +EOMONTH(baseDate, months) +``` + +##### Parameters + +**baseDate** Start Date. + +An Excel date value, PHP date timestamp, PHP date object, or a date represented as a string. + +**months** Number of months to add. + +An integer value indicating the number of months before or after baseDate. A positive value for months yields a future date; a negative value yields a past date. + +##### Return Value + +**mixed** A date/time stamp that corresponds to the last day of basedate + months. + +This could be a PHP timestamp value (integer), a PHP date/time object, or an Excel timestamp value (real), depending on the value of PHPExcel_Calculation_Functions::getReturnDateType(). + +##### Examples + +```php +$worksheet->setCellValue('A1', 'Date String') + ->setCellValue('A2', '1-Jan-2000') + ->setCellValue('A3', '14-Feb-2009'); + +$worksheet->setCellValue('B2', '=EOMONTH(A2,5)') + ->setCellValue('B3', '=EOMONTH(A3,-12)'); + +PHPExcel_Calculation_Functions::setReturnDateType(PHPExcel_Calculation_Functions::RETURNDATE_EXCEL); + +$retVal = $worksheet->getCell('B2')->getCalculatedValue(); +// $retVal = 39629.0 (30-Jun-2008) + +$retVal = $worksheet->getCell('B3')->getCalculatedValue(); +// $retVal = 39507.0 (29-Feb-2008) +``` + +```php +PHPExcel_Calculation_Functions::setReturnDateType( + PHPExcel_Calculation_Functions::RETURNDATE_EXCEL +); + +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'EOMONTH'), + array('31-Oct-2008',13) +); +// $retVal = 40147.0 (30-Nov-2010) +``` + +##### Notes + +__WARNING:-__ This function is currently not supported by the Excel5 Writer because it is not a standard function within Excel 5, but an add-in from the Analysis ToolPak. + +#### HOUR + +The HOUR function returns the hour of a time value. The hour is given as an integer, ranging from 0 (12:00 A.M.) to 23 (11:00 P.M.). + +##### Syntax + +``` +HOUR(datetime) +``` + +##### Parameters + +**datetime** Time. + +An Excel date/time value, PHP date timestamp, PHP date object, or a date/time represented as a string. + +##### Return Value + +**integer** An integer value that reflects the hour of the day. + +This is an integer ranging from 0 to 23. + +##### Examples + +```php +$worksheet->setCellValue('A1', 'Time String') + ->setCellValue('A2', '31-Dec-2008 17:30') + ->setCellValue('A3', '14-Feb-2008 4:20 AM') + ->setCellValue('A4', '14-Feb-2008 4:20 PM'); + +$worksheet->setCellValue('B2', '=HOUR(A2)') + ->setCellValue('B3', '=HOUR(A3)') + ->setCellValue('B4', '=HOUR(A4)'); + +$retVal = $worksheet->getCell('B2')->getCalculatedValue(); +// $retVal = 17 + +$retVal = $worksheet->getCell('B3')->getCalculatedValue(); +// $retVal = 4 + +$retVal = $worksheet->getCell('B4')->getCalculatedValue(); +// $retVal = 16 +``` + +```php +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'HOUROFDAY'), + array('09:30') +); +// $retVal = 9 +``` + +##### Notes + +Note that the PHPExcel function is PHPExcel_Calculation_Functions::HOUROFDAY() when the method is called statically. + +#### MINUTE + +The MINUTE function returns the minutes of a time value. The minute is given as an integer, ranging from 0 to 59. + +##### Syntax + +``` +MINUTE(datetime) +``` + +##### Parameters + +**datetime** Time. + +An Excel date/time value, PHP date timestamp, PHP date object, or a date/time represented as a string. + +##### Return Value + +**integer** An integer value that reflects the minutes within the hour. + +This is an integer ranging from 0 to 59. + +##### Examples + +```php +$worksheet->setCellValue('A1', 'Time String') + ->setCellValue('A2', '31-Dec-2008 17:30') + ->setCellValue('A3', '14-Feb-2008 4:20 AM') + ->setCellValue('A4', '14-Feb-2008 4:45 PM'); + +$worksheet->setCellValue('B2', '=MINUTE(A2)') + ->setCellValue('B3', '=MINUTE(A3)') + ->setCellValue('B4', '=MINUTE(A4)'); + +$retVal = $worksheet->getCell('B2')->getCalculatedValue(); +// $retVal = 30 + +$retVal = $worksheet->getCell('B3')->getCalculatedValue(); +// $retVal = 20 + +$retVal = $worksheet->getCell('B4')->getCalculatedValue(); +// $retVal = 45 +``` + +```php +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'MINUTEOFHOUR'), + array('09:30') +); +// $retVal = 30 +``` + +##### Notes + +Note that the PHPExcel function is PHPExcel_Calculation_Functions::MINUTEOFHOUR() when the method is called statically. + +#### MONTH + +The MONTH function returns the month of a date. The month is given as an integer ranging from 1 to 12. + +##### Syntax + +``` +MONTH(datetime) +``` + +##### Parameters + +**datetime** Date. + +An Excel date value, PHP date timestamp, PHP date object, or a date represented as a string. + +##### Return Value + +**integer** An integer value that reflects the month of the year. + +This is an integer ranging from 1 to 12. + +##### Examples + +```php +$worksheet->setCellValue('A1', 'Date String'); +$worksheet->setCellValue('A2', '31-Dec-2008'); +$worksheet->setCellValue('A3', '14-Feb-2008'); + +$worksheet->setCellValue('B2', '=MONTH(A2)'); +$worksheet->setCellValue('B3', '=MONTH(A3)'); + +$retVal = $worksheet->getCell('B2')->getCalculatedValue(); +// $retVal = 12 + +$retVal = $worksheet->getCell('B3')->getCalculatedValue(); +// $retVal = 2 +``` + +```php +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'MONTHOFYEAR'), + array('14-July-2008') +); +// $retVal = 7 +``` + +#### Notes + +Note that the PHPExcel function is PHPExcel_Calculation_Functions::MONTHOFYEAR() when the method is called statically. + +#### NETWORKDAYS + +The NETWORKDAYS function returns the number of whole working days between a *start date* and an *end date*. Working days exclude weekends and any dates identified in *holidays*. Use NETWORKDAYS to calculate employee benefits that accrue based on the number of days worked during a specific term. + +##### Syntax + +``` +NETWORKDAYS(startDate, endDate [, holidays]) +``` + +##### Parameters + +**startDate** Start Date of the period. + +An Excel date value, PHP date timestamp, PHP date object, or a date represented as a string. + +**endDate** End Date of the period. + +An Excel date value, PHP date timestamp, PHP date object, or a date represented as a string. + +**holidays** Optional array of Holiday dates. + +An optional range of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. + +The list can be either a range of cells that contains the dates or an array constant of Excel date values, PHP date timestamps, PHP date objects, or dates represented as strings. + +##### Return Value + +**integer** Number of working days. + +The number of working days between startDate and endDate. + +##### Examples + +```php +``` + +```php +``` + +##### Notes + +There are no additional notes on this function + +#### NOW + +The NOW function returns the current date and time. + +##### Syntax + +``` +NOW() +``` + +##### Parameters + +There are now parameters for the NOW() function. + +##### Return Value + +**mixed** A date/time stamp that corresponds to the current date and time. + +This could be a PHP timestamp value (integer), a PHP date/time object, or an Excel timestamp value (real), depending on the value of PHPExcel_Calculation_Functions::getReturnDateType(). + +##### Examples + +```php +``` + +```php +``` + +##### Notes + +Note that the PHPExcel function is PHPExcel_Calculation_Functions::DATETIMENOW() when the method is called statically. + +#### SECOND + +The SECOND function returns the seconds of a time value. The second is given as an integer, ranging from 0 to 59. + +##### Syntax + +``` +SECOND(datetime) +``` + +##### Parameters + +**datetime** Time. + +An Excel date/time value, PHP date timestamp, PHP date object, or a date/time represented as a string. + +##### Return Value + +**integer** An integer value that reflects the seconds within the minute. + +This is an integer ranging from 0 to 59. + +##### Examples + +```php +$worksheet->setCellValue('A1', 'Time String') + ->setCellValue('A2', '31-Dec-2008 17:30:20') + ->setCellValue('A3', '14-Feb-2008 4:20 AM') + ->setCellValue('A4', '14-Feb-2008 4:45:59 PM'); + +$worksheet->setCellValue('B2', '=SECOND(A2)') + ->setCellValue('B3', '=SECOND(A3)'); + ->setCellValue('B4', '=SECOND(A4)'); + +$retVal = $worksheet->getCell('B2')->getCalculatedValue(); +// $retVal = 20 + +$retVal = $worksheet->getCell('B3')->getCalculatedValue(); +// $retVal = 0 + +$retVal = $worksheet->getCell('B4')->getCalculatedValue(); +// $retVal = 59 +``` + +```php +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'SECONDOFMINUTE'), + array('09:30:17') +); +// $retVal = 17 +``` + +##### Notes + +Note that the PHPExcel function is PHPExcel_Calculation_Functions::SECONDOFMINUTE() when the method is called statically. + +#### TIME + +Not yet documented. + +#### TIMEVALUE + +Not yet documented. + +#### TODAY + +Not yet documented. + +#### WEEKDAY + +The WEEKDAY function returns the day of the week for a given date. The day is given as an integer ranging from 1 to 7, although this can be modified to return a value between 0 and 6. + +##### Syntax + +``` +WEEKDAY(datetime [, method]) +``` + +##### Parameters + +**datetime** Date. + +An Excel date value, PHP date timestamp, PHP date object, or a date represented as a string. + +**method** An integer flag (values 0, 1 or 2) + +This is a flag that determines which method to use in the calculation, based on the values listed below: + + method | Description + :-----:|------------------------------------------ + 0 | Returns 1 (Sunday) through 7 (Saturday). + 1 | Returns 1 (Monday) through 7 (Sunday). + 2 | Returns 0 (Monday) through 6 (Sunday). + +The method value defaults to 1. + +##### Return Value + +**integer** An integer value that reflects the day of the week. + +This is an integer ranging from 1 to 7, or 0 to 6, depending on the value of method. + +##### Examples + +```php +$worksheet->setCellValue('A1', 'Date String') + ->setCellValue('A2', '31-Dec-2008') + ->setCellValue('A3', '14-Feb-2008'); + +$worksheet->setCellValue('B2', '=WEEKDAY(A2)') + ->setCellValue('B3', '=WEEKDAY(A3,0)') + ->setCellValue('B4', '=WEEKDAY(A3,2)'); + +$retVal = $worksheet->getCell('B2')->getCalculatedValue(); +// $retVal = 12 + +$retVal = $worksheet->getCell('B3')->getCalculatedValue(); +// $retVal = 2 + +$retVal = $worksheet->getCell('B4')->getCalculatedValue(); +// $retVal = 2 +``` + +```php +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'DAYOFWEEK'), + array('14-July-2008') +); +// $retVal = 7 +``` + +##### Notes + +Note that the PHPExcel function is PHPExcel_Calculation_Functions::DAYOFWEEK() when the method is called statically. + +#### WEEKNUM + +Not yet documented. + +#### WORKDAY + +Not yet documented. + +#### YEAR + +The YEAR function returns the year of a date. + +##### Syntax + +``` +YEAR(datetime) +``` + +##### Parameters + +**datetime** Date. + +An Excel date value, PHP date timestamp, PHP date object, or a date represented as a string. + +##### Return Value + +**integer** An integer value that reflects the month of the year. + +This is an integer year value. + +##### Examples + +```php +$worksheet->setCellValue('A1', 'Date String') + ->setCellValue('A2', '17-Jul-1982') + ->setCellValue('A3', '16-Apr-2009'); + +$worksheet->setCellValue('B2', '=YEAR(A2)') + ->setCellValue('B3', '=YEAR(A3)'); + +$retVal = $worksheet->getCell('B2')->getCalculatedValue(); +// $retVal = 1982 + +$retVal = $worksheet->getCell('B3')->getCalculatedValue(); +// $retVal = 2009 +``` + +```php +$retVal = call_user_func_array( + array('PHPExcel_Calculation_Functions', 'YEAR'), + array('14-July-2001') +); +// $retVal = 2001 +``` + +##### Notes + +There are no additional notes on this function + +### YEARFRAC + +Not yet documented. + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/01-Autofilters.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/01-Autofilters.md new file mode 100644 index 0000000..c2fbd2f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/01-Autofilters.md @@ -0,0 +1,19 @@ +# PHPExcel AutoFilter Reference + + +## AutoFilters + +Each worksheet in an Excel Workbook can contain a single autoFilter range. Filtered data displays only the rows that meet criteria that you specify and hides rows that you do not want displayed. You can filter by more than one column: filters are additive, which means that each additional filter is based on the current filter and further reduces the subset of data. + +![01-01-autofilter.png](./images/01-01-autofilter.png "") + +When an AutoFilter is applied to a range of cells, the first row in an autofilter range will be the heading row, which displays the autoFilter dropdown icons. It is not part of the actual autoFiltered data. All subsequent rows are the autoFiltered data. So an AutoFilter range should always contain the heading row and one or more data rows (one data row is pretty meaningless), but PHPExcel won't actually stop you specifying a meaningless range: it's up to you as the developer to avoid such errors. + +To determine if a filter is applied, note the icon in the column heading. A drop-down arrow (![01-03-filter-icon-1.png](./images/01-03-filter-icon-1.png "")) means that filtering is enabled but not applied. In MS Excel, when you hover over the heading of a column with filtering enabled but not applied, a screen tip displays the cell text for the first row in that column, and the message "(Showing All)". + +![01-02-autofilter.png](./images/01-02-autofilter.png "") + + +A Filter button (![01-03-filter-icon-2.png](./images/01-03-filter-icon-2.png "")) means that a filter is applied. When you hover over the heading of a filtered column, a screen tip displays the filter that has been applied to that column, such as "Equals a red cell color" or "Larger than 150". + +![01-04-autofilter.png](./images/01-04-autofilter.png "") diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/02-Setting-an-Autofilter.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/02-Setting-an-Autofilter.md new file mode 100644 index 0000000..49c8fa4 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/02-Setting-an-Autofilter.md @@ -0,0 +1,24 @@ +# PHPExcel AutoFilter Reference + + +## Setting an AutoFilter area on a worksheet + +To set an autoFilter on a range of cells. + +```php +$objPHPExcel->getActiveSheet()->setAutoFilter('A1:E20'); +``` + +The first row in an autofilter range will be the heading row, which displays the autoFilter dropdown icons. It is not part of the actual autoFiltered data. All subsequent rows are the autoFiltered data. So an AutoFilter range should always contain the heading row and one or more data rows (one data row is pretty meaningless, but PHPExcel won't actually stop you specifying a meaningless range: it's up to you as the developer to avoid such errors. + +If you want to set the whole worksheet as an autofilter region + +```php +$objPHPExcel->getActiveSheet()->setAutoFilter( + $objPHPExcel->getActiveSheet() + ->calculateWorksheetDimension() +); +``` + +This enables filtering, but does not actually apply any filters. + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/03-Autofilter-Expressions.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/03-Autofilter-Expressions.md new file mode 100644 index 0000000..fd65901 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/03-Autofilter-Expressions.md @@ -0,0 +1,27 @@ +# PHPExcel AutoFilter Reference + + +## Autofilter Expressions + +PHPEXcel 1.7.8 introduced the ability to actually create, read and write filter expressions; initially only for Excel2007 files, but later releases will extend this to other formats. + +To apply a filter expression to an autoFilter range, you first need to identify which column you're going to be applying this filter to. + +```php +$autoFilter = $objPHPExcel->getActiveSheet()->getAutoFilter(); +$columnFilter = $autoFilter->getColumn('C'); +``` + +This returns an autoFilter column object, and you can then apply filter expressions to that column. + +There are a number of different types of autofilter expressions. The most commonly used are: + + - Simple Filters + - DateGroup Filters + - Custom filters + - Dynamic Filters + - Top Ten Filters + +These different types are mutually exclusive within any single column. You should not mix the different types of filter in the same column. PHPExcel will not actively prevent you from doing this, but the results are unpredictable. + +Other filter expression types (such as cell colour filters) are not yet supported. diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-01-Autofilter-Expressions-Simple.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-01-Autofilter-Expressions-Simple.md new file mode 100644 index 0000000..ca229b8 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-01-Autofilter-Expressions-Simple.md @@ -0,0 +1,52 @@ +# PHPExcel AutoFilter Reference + + +## Autofilter Expressions + +### Simple filters + +In MS Excel, Simple Filters are a dropdown list of all values used in that column, and the user can select which ones they want to display and which ones they want to hide by ticking and unticking the checkboxes alongside each option. When the filter is applied, rows containing the checked entries will be displayed, rows that don't contain those values will be hidden. + +![04-01-simple-autofilter.png](./images/04-01-simple-autofilter.png "") + +To create a filter expression, we need to start by identifying the filter type. In this case, we're just going to specify that this filter is a standard filter. + +```php +$columnFilter->setFilterType( + PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_FILTER +); +``` + +Now we've identified the filter type, we can create a filter rule and set the filter values: + +When creating a simple filter in PHPExcel, you only need to specify the values for "checked" columns: you do this by creating a filter rule for each value. + +```php +$columnFilter->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL, + 'France' + ); + +$columnFilter->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL, + 'Germany' + ); +``` + +This creates two filter rules: the column will be filtered by values that match “France†OR “Germanyâ€. For Simple Filters, you can create as many rules as you want + +Simple filters are always a comparison match of EQUALS, and multiple standard filters are always treated as being joined by an OR condition. + +#### Matching Blanks + +If you want to create a filter to select blank cells, you would use: + +```php +$columnFilter->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL, + '' + ); +``` diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-02-Autofilter-Expressions-Dategroup.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-02-Autofilter-Expressions-Dategroup.md new file mode 100644 index 0000000..2b9015f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-02-Autofilter-Expressions-Dategroup.md @@ -0,0 +1,48 @@ +# PHPExcel AutoFilter Reference + + +## Autofilter Expressions + +### DateGroup Filters + +In MS Excel, DateGroup filters provide a series of dropdown filter selectors for date values, so you can specify entire years, or months within a year, or individual days within each month. + +![04-02-dategroup-autofilter.png](./images/04-02-dategroup-autofilter.png "") + +DateGroup filters are still applied as a Standard Filter type. + +```php +$columnFilter->setFilterType( + PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_FILTER +); +``` + +Creating a dateGroup filter in PHPExcel, you specify the values for "checked" columns as an associative array of year. month, day, hour minute and second. To select a year and month, you need to create a DateGroup rule identifying the selected year and month: + +```php +$columnFilter->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL, + array( + 'year' => 2012, + 'month' => 1 + ) + ) + ->setRuleType( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP + ); +``` + +The key values for the associative array are: + + - year + - month + - day + - hour + - minute + - second + +Like Standard filters, DateGroup filters are always a match of EQUALS, and multiple standard filters are always treated as being joined by an OR condition. + +Note that we alse specify a ruleType: to differentiate this from a standard filter, we explicitly set the Rule's Type to AUTOFILTER_RULETYPE_DATEGROUP. As with standard filters, we can create any number of DateGroup Filters. + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-03-Autofilter-Expressions-Custom.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-03-Autofilter-Expressions-Custom.md new file mode 100644 index 0000000..9ca3bd4 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-03-Autofilter-Expressions-Custom.md @@ -0,0 +1,84 @@ +# PHPExcel AutoFilter Reference + + +## Autofilter Expressions + +### Custom filters + +In MS Excel, Custom filters allow us to select more complex conditions using an operator as well as a value. Typical examples might be values that fall within a range (e.g. between -20 and +20), or text values with wildcards (e.g. beginning with the letter U). To handle this, they + +![04-03-custom-autofilter-1.png](./images/04-03-custom-autofilter-1.png "") + +![04-03-custom-autofilter-2.png](./images/04-03-custom-autofilter-2.png "") + +Custom filters are limited to 2 rules, and these can be joined using either an AND or an OR. + +We start by specifying a Filter type, this time a CUSTOMFILTER. + +```php +$columnFilter->setFilterType( + PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_CUSTOMFILTER +); +``` + +And then define our rules. + +The following shows a simple wildcard filter to show all column entries beginning with the letter 'U'. + +```php +$columnFilter->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL, + 'U*' + ) + ->setRuleType( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_CUSTOMFILTER + ); +``` + +MS Excel uses \* as a wildcard to match any number of characters, and ? as a wildcard to match a single character. 'U\*' equates to "begins with a 'U'"; '\*U' equates to "ends with a 'U'"; and '\*U\*' equates to "contains a 'U'" + +If you want to match explicitly against a \* or a ? character, you can escape it with a tilde (~), so ?~\*\* would explicitly match for a \* character as the second character in the cell value, followed by any number of other characters. The only other character that needs escaping is the ~ itself. + +To create a "between" condition, we need to define two rules: + +```php +$columnFilter->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_GREATERTHANOREQUAL, + -20 + ) + ->setRuleType( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_CUSTOMFILTER + ); +$columnFilter->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_LESSTHANOREQUAL, + 20 + ) + ->setRuleType( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_CUSTOMFILTER + ); +``` + +We also set the rule type to CUSTOMFILTER. + +This defined two rules, filtering numbers that are >= -20 OR <= 20, so we also need to modify the join condition to reflect AND rather than OR. + +```php +$columnFilter->setAndOr( + PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_COLUMN_ANDOR_AND +); +``` + +The valid set of operators for Custom Filters are defined in the PHPExcel_Worksheet_AutoFilter_Column_Rule class, and comprise: + + Operator Constant | Value | + ------------------------------------------|----------------------| + AUTOFILTER_COLUMN_RULE_EQUAL | 'equal' | + AUTOFILTER_COLUMN_RULE_NOTEQUAL | 'notEqual' | + AUTOFILTER_COLUMN_RULE_GREATERTHAN | 'greaterThan' | + AUTOFILTER_COLUMN_RULE_GREATERTHANOREQUAL | 'greaterThanOrEqual' | + AUTOFILTER_COLUMN_RULE_LESSTHAN | 'lessThan' | + AUTOFILTER_COLUMN_RULE_LESSTHANOREQUAL | 'lessThanOrEqual' | + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-04-Autofilter-Expressions-Dynamic.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-04-Autofilter-Expressions-Dynamic.md new file mode 100644 index 0000000..f285e57 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-04-Autofilter-Expressions-Dynamic.md @@ -0,0 +1,88 @@ +# PHPExcel AutoFilter Reference + + +## Autofilter Expressions + +### Dynamic Filters + +Dynamic Filters are based on a dynamic comparison condition, where the value we're comparing against the cell values is variable, such as 'today'; or when we're testing against an aggregate of the cell data (e.g. 'aboveAverage'). Only a single dynamic filter can be applied to a column at a time. + +![04-04-dynamic-autofilter.png](./images/04-04-dynamic-autofilter.png "") + +Again, we start by specifying a Filter type, this time a DYNAMICFILTER. + +```php +$columnFilter->setFilterType( + PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_DYNAMICFILTER +); +``` + +When defining the rule for a dynamic filter, we don't define a value (we can simply set that to NULL) but we do specify the dynamic filter category. + +```php +$columnFilter->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL, + NULL, + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_YEARTODATE + ) + ->setRuleType( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMICFILTER + ); +``` + +We also set the rule type to DYNAMICFILTER. + +The valid set of dynamic filter categories is defined in the PHPExcel_Worksheet_AutoFilter_Column_Rule class, and comprises: + + Operator Constant | Value | + -----------------------------------------|----------------| + AUTOFILTER_RULETYPE_DYNAMIC_YESTERDAY | 'yesterday' | + AUTOFILTER_RULETYPE_DYNAMIC_TODAY | 'today' | + AUTOFILTER_RULETYPE_DYNAMIC_TOMORROW | 'tomorrow' | + AUTOFILTER_RULETYPE_DYNAMIC_YEARTODATE | 'yearToDate' | + AUTOFILTER_RULETYPE_DYNAMIC_THISYEAR | 'thisYear' | + AUTOFILTER_RULETYPE_DYNAMIC_THISQUARTER | 'thisQuarter' | + AUTOFILTER_RULETYPE_DYNAMIC_THISMONTH | 'thisMonth' | + AUTOFILTER_RULETYPE_DYNAMIC_THISWEEK | 'thisWeek' | + AUTOFILTER_RULETYPE_DYNAMIC_LASTYEAR | 'lastYear' | + AUTOFILTER_RULETYPE_DYNAMIC_LASTQUARTER | 'lastQuarter' | + AUTOFILTER_RULETYPE_DYNAMIC_LASTMONTH | 'lastMonth' | + AUTOFILTER_RULETYPE_DYNAMIC_LASTWEEK | 'lastWeek' | + AUTOFILTER_RULETYPE_DYNAMIC_NEXTYEAR | 'nextYear' | + AUTOFILTER_RULETYPE_DYNAMIC_NEXTQUARTER | 'nextQuarter' | + AUTOFILTER_RULETYPE_DYNAMIC_NEXTMONTH | 'nextMonth' | + AUTOFILTER_RULETYPE_DYNAMIC_NEXTWEEK | 'nextWeek' | + AUTOFILTER_RULETYPE_DYNAMIC_MONTH_1 | 'M1' | + AUTOFILTER_RULETYPE_DYNAMIC_JANUARY | 'M1' | + AUTOFILTER_RULETYPE_DYNAMIC_MONTH_2 | 'M2' | + AUTOFILTER_RULETYPE_DYNAMIC_FEBRUARY | 'M2' | + AUTOFILTER_RULETYPE_DYNAMIC_MONTH_3 | 'M3' | + AUTOFILTER_RULETYPE_DYNAMIC_MARCH | 'M3' | + AUTOFILTER_RULETYPE_DYNAMIC_MONTH_4 | 'M4' | + AUTOFILTER_RULETYPE_DYNAMIC_APRIL | 'M4' | + AUTOFILTER_RULETYPE_DYNAMIC_MONTH_5 | 'M5' | + AUTOFILTER_RULETYPE_DYNAMIC_MAY | 'M5' | + AUTOFILTER_RULETYPE_DYNAMIC_MONTH_6 | 'M6' | + AUTOFILTER_RULETYPE_DYNAMIC_JUNE | 'M6' | + AUTOFILTER_RULETYPE_DYNAMIC_MONTH_7 | 'M7' | + AUTOFILTER_RULETYPE_DYNAMIC_JULY | 'M7' | + AUTOFILTER_RULETYPE_DYNAMIC_MONTH_8 | 'M8' | + AUTOFILTER_RULETYPE_DYNAMIC_AUGUST | 'M8' | + AUTOFILTER_RULETYPE_DYNAMIC_MONTH_9 | 'M9' | + AUTOFILTER_RULETYPE_DYNAMIC_SEPTEMBER | 'M9' | + AUTOFILTER_RULETYPE_DYNAMIC_MONTH_10 | 'M10' | + AUTOFILTER_RULETYPE_DYNAMIC_OCTOBER | 'M10' | + AUTOFILTER_RULETYPE_DYNAMIC_MONTH_11 | 'M11' | + AUTOFILTER_RULETYPE_DYNAMIC_NOVEMBER | 'M11' | + AUTOFILTER_RULETYPE_DYNAMIC_MONTH_12 | 'M12' | + AUTOFILTER_RULETYPE_DYNAMIC_DECEMBER | 'M12' | + AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_1 | 'Q1' | + AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_2 | 'Q2' | + AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_3 | 'Q3' | + AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_4 | 'Q4' | + AUTOFILTER_RULETYPE_DYNAMIC_ABOVEAVERAGE | 'aboveAverage' | + AUTOFILTER_RULETYPE_DYNAMIC_BELOWAVERAGE | 'belowAverage' | + +We can only apply a single Dynamic Filter rule to a column at a time. + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-05-Autofilter-Expressions-Topten.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-05-Autofilter-Expressions-Topten.md new file mode 100644 index 0000000..ff36b0a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-05-Autofilter-Expressions-Topten.md @@ -0,0 +1,69 @@ +# PHPExcel AutoFilter Reference + + +## Autofilter Expressions + +### Top Ten Filters + +Top Ten Filters are similar to Dynamic Filters in that they are based on a summarisation of the actual data values in the cells. However, unlike Dynamic Filters where you can only select a single option, Top Ten Filters allow you to select based on a number of criteria: + +![04-05-custom-topten-1.png](./images/04-05-topten-autofilter-1.png "") + +![04-05-custom-topten-2.png](./images/04-05-topten-autofilter-2.png "") + +You can identify whether you want the top (highest) or bottom (lowest) values.You can identify how many values you wish to select in the filterYou can identify whether this should be a percentage or a number of items. + +Like Dynamic Filters, only a single Top Ten filter can be applied to a column at a time. + +We start by specifying a Filter type, this time a DYNAMICFILTER. + +```php +$columnFilter->setFilterType( + PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_TOPTENFILTER +); +``` + +Then we create the rule: + +```php +$columnFilter->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_PERCENT, + 5, + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_TOP + ) + ->setRuleType( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_TOPTENFILTER + ); +``` + +This will filter the Top 5 percent of values in the column. + +To specify the lowest (bottom 2 values), we would specify a rule of: + +```php +$columnFilter->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_BY_VALUE, + 5, + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_BOTTOM + ) + ->setRuleType( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_TOPTENFILTER + ); +``` + +The option values for TopTen Filters top/bottom value/percent are all defined in the PHPExcel_Worksheet_AutoFilter_Column_Rule class, and comprise: + + Operator Constant | Value | + ---------------------------------------|-------------| + AUTOFILTER_COLUMN_RULE_TOPTEN_BY_VALUE | 'byValue' | + AUTOFILTER_COLUMN_RULE_TOPTEN_PERCENT | 'byPercent' | + +and + + Operator Constant | Value | + -------------------------------------|----------| + AUTOFILTER_COLUMN_RULE_TOPTEN_TOP | 'top' | + AUTOFILTER_COLUMN_RULE_TOPTEN_BOTTOM | 'bottom' | + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/05-Executing-Autofilters.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/05-Executing-Autofilters.md new file mode 100644 index 0000000..852e1f4 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/05-Executing-Autofilters.md @@ -0,0 +1,42 @@ +# PHPExcel AutoFilter Reference + + +## Executing an AutoFilter + +When an autofilter is applied in MS Excel, it sets the row hidden/visible flags for each row of the autofilter area based on the selected criteria, so that only those rows that match the filter criteria are displayed. + +PHPExcel will not execute the equivalent function automatically when you set or change a filter expression, but only when the file is saved. + +### Applying the Filter + +If you wish to execute your filter from within a script, you need to do this manually. You can do this using the autofilters showHideRows() method. + +```php +$autoFilter = $objPHPExcel->getActiveSheet()->getAutoFilter(); +$autoFilter->showHideRows(); +``` + +This will set all rows that match the filter criteria to visible, while hiding all other rows within the autofilter area. + +### Displaying Filtered Rows + +Simply looping through the rows in an autofilter area will still access ever row, whether it matches the filter criteria or not. To selectively access only the filtered rows, you need to test each row’s visibility settings. + +```php +foreach ($objPHPExcel->getActiveSheet()->getRowIterator() as $row) { + if ($objPHPExcel->getActiveSheet() + ->getRowDimension($row->getRowIndex())->getVisible()) { + echo ' Row number - ' , $row->getRowIndex() , ' '; + echo $objPHPExcel->getActiveSheet() + ->getCell( + 'C'.$row->getRowIndex() + ) + ->getValue(), ' '; + echo $objPHPExcel->getActiveSheet() + ->getCell( + 'D'.$row->getRowIndex() + )->getFormattedValue(), ' '; + echo EOL; + } +} +``` diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/06-Autofilter-Sorting.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/06-Autofilter-Sorting.md new file mode 100644 index 0000000..23133b8 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/06-Autofilter-Sorting.md @@ -0,0 +1,7 @@ +# PHPExcel AutoFilter Reference + + +## AutoFilter Sorting + +In MS Excel, Autofiltering also allows the rows to be sorted. This feature is ***not*** supported by PHPExcel. + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-01-autofilter.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-01-autofilter.png new file mode 100644 index 0000000000000000000000000000000000000000..8b5c4fad634025f4061da572ec954cdf267e8b76 GIT binary patch literal 45173 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 Rrnn0HnVVP{KQMF-{V!{iXSV<V literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-02-autofilter.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-02-autofilter.png new file mode 100644 index 0000000000000000000000000000000000000000..a2d6c9b9e98f659e0a2209448f1cc43d12a3554e GIT binary patch literal 14496 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-03-filter-icon-1.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-03-filter-icon-1.png new file mode 100644 index 0000000000000000000000000000000000000000..e5a7e7dc09c53595d3d47a6e3aea9ef6d1253643 GIT binary patch literal 453 zcmeAS@N?(olHy`uVBq!ia0vp^f*{Pn%)r1{y`?=4$YCrFa(7}_cTVOdki(Mh=<CS9 zu(6-}Pa-RjUliaI;`;yp|DJh!d*&VMS#)gczH8q<zkmPv`+Fb>0^i@ie*gaU^Oi+> zTjm{m{`xr(1ZD0G%G?^1y7l?v=g%MCbMmdW^sT=4_};zy_cRTh?%lq2@AkcGx3Bdq z+I#K#wQHBJwanYQcH6mYm(QKMd~WHsV?b-|%G#d+DYcRyzhI#4gaO0ys>VG)9h?Oo zk;M!Qe1}1p@p%4<6rkWLPZ!4!iE!V(My_T99vA)4^kWGg!AtlSp850N{#{V&ZEfG% z6>)q53Ts!+S2Ac;=~%UCSGc2)<bmynu3dfb&i#v%iF>rBW)}Ztf$LG`d3ATAv-j=3 zFtw;D^8Ld3yQ3SN*4z-j%5~Oq&i}FxUAHP0`UbpIUdiwGxMX%+Px`%jiz!!^Wyi|? z()T`BdGe|Bw47)awJUR`^QD)cy}0M-x^p7drulYC0U`O#H4L}C1ho`4@SXy?n!(f6 K&t;ucLK6T=xaoBO literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-03-filter-icon-2.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-03-filter-icon-2.png new file mode 100644 index 0000000000000000000000000000000000000000..1567245f34484f6caf50ca4c0ed4873d311a4abb GIT binary patch literal 640 zcmeAS@N?(olHy`uVBq!ia0vp^f*{Pn%)r1{y`?=4$YCrFa(7}_cTVOdki(Mh=<CS9 zu(6-}Pa-Rje>=b@#P$FG|2^~e_RKrhv*_5?eb>H!e*gaS_xC^&1irt2{r>&y=Pir& zzJLFG>7u1;SFN2hZ_boSQ+oQQv^2G3XJ!Y526=gUwahzq?eewa!s7qG|382J{@nR% zPOeVpP9J;z`Z*AsJAbaFt>ydY@7Jzhn=)<6vE#>{KYqS;)zasW@7)8U`}dyTzn7hx zZE0f}l({!3b8ArQ)_b?_c?AY>aB$qaeQoc)Yfiq^mcG?%S8a82bYfs(xOV&6xzpD) z4V;c0KX>o?wQINU^(@-kGH>tNZRf6CK6mc&xux5V0sUwHb;cAR<yjKs7Yy_!RR9AI z$NW&Bp_~OCk;M!Qe1}1p@p%4<6rkWuPZ!4!iSW>V$LzxfJgrN6^zJS6zHuis^~ZvD z3NN^MZB1C(thq}6{r8_W=k$&84K05vs+5uz9h<e)NZ8?yK)c<$PSJ#{8S^#v>{D&} z>h_d9Dn0Z{TbK8lL%;vleBzrfDBtj(YePz4S@?A8D{a$P<)56t&i)+}FY}kx;rTfm zW}M-8Twz&L-KCvZZlSU&Pj%kum3~)zW<NhGAKd#%K0fMnSdzkN!<SY+??g4c3=9@$ zE1oZGa7DJgV%<^G119H-)eS4#zE)|3tkbI0R9!sp^8}?wGef-Mo*djCQz~8ZUqEOB P(31?Fu6{1-oD!M<98zNt literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-04-autofilter.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-04-autofilter.png new file mode 100644 index 0000000000000000000000000000000000000000..b88f4c4fb28d7f8bf24fc434c9c15c5cf2d7050e GIT binary patch literal 17489 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 X;)9YI`!@lP0b%fT^>bP0l+XkK&`adE literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-01-simple-autofilter.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-01-simple-autofilter.png new file mode 100644 index 0000000000000000000000000000000000000000..5dcc6a47cee34a4bf7bec206542d336d0e2b2dbd GIT binary patch literal 67694 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-02-dategroup-autofilter.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-02-dategroup-autofilter.png new file mode 100644 index 0000000000000000000000000000000000000000..da1f089be02b1e0f142e770548c72e917fe18323 GIT binary patch literal 49268 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%0AL#z~Cp=}0~hJX20uipy3W1KzdcW>Wa zMCAaR%0aX5H}@kJU2Wg&adD8kV0?98e1Qf4oRf_AW-j}(E@8~|kfNRX%t~W$+E`#h zUyZqK=gN<@Zb&fZNkw<SFVK}XEFX(%zrD>+2O_K4tt#_X7Oq@hZ@XqCA|R;EVI$9F zO@QB`-!TAdQY$ui!1&-MY9;useZ1rMubGR2=1Ymc9mD8YlJn7jbdpU8J43sO3W1a# z<?nK4+y@ON{kIQfn0f$K{y-9+yfCk{JG32id4nJTgz4@5>~V&bNs|_N2sGU-tV}SP zVovk63)gAB1c+t0{@Y<-(isHeUL7QvLR3?966E+U=I4o0X_V@t<-|-=_LcmL5}oqa z1vGOGMe^eIhzpcmG>?z~SZILh7DIpn|Ia8*^GD#E>j*uK2>)YpJL{5Ia-eapW~1~l z&jZuCQSdd*!(14wM@As;4h<n=yvKObCExyMxu*kQfX1!=J7do}<lwz8-A#n=b#$`z zshfU&Yu6;ammvWVG21f3I5+a8LkbFO-awas05r;#L>+`#kj~y(mf1|5>q0^^fFjIn zyGbEPZmd+f|3cK>MItnbr_f;ly{e52q@V8KieS5LN2MMI$<n^Jk*$Inue4EhfohaK zHZ4;5^ow(3h<kRb^&y<3lG+KnUr5+kak!G~-5$=>^aOjdTK!2m*^e{L>vR=Y1W02Q zHomz0d2`ba!%l1oqBla}p~@>y$X$hyl{Qu$v@YVVUc2#&Yr8ajqT5ya^vOb6E*EC@ zo<8qc>5~<K3Jif{uq`>6#CbW;@VqJdoy1AE>N)z+7MxSu=q>DlrrSg7S<<J3^37(B zFTy+&s%RG`p34&-CvwehY~F_;u<Uf~g~cN9h_pKZy{#=v0`s_EzX3d!c0T4N;r5E5 zL(Y>~PkepPyTam8T+8X343ke$_vB@?B`!#T3j_A1nBdCwr0aMj@>X;aZ`!NeTM?;3 z&dio~M7ZM{-)?#3iXesjUOTDg8|;%O59?`io%iE6Ps9q-9gBZBeS|syss+Pl_^h%o zoCdmofV~dadO|w9B@PDsen<HUld*0OHnLbqoxIfgc79Hw0bHtJ|9NVGJHie6t2W<> zTr<fBYlH`D6jOOMJ#^0j3NPn78=!^>j{yf!>nT7<gzd&(I_2eHFJ26Sx)9Ma7=VCk zJ)0)VfC%wxtmg)3USYSt8GUfYmnna(5I&Mt`0kdm_p9^dLKiGZdKrKUax`VFo1rhX zVyDop<%c8z5?G<{>=F&k+<KNkP-yjH1c4ulokOn?K@@%7ko`u3e~Uf4gfU(Oc+6(n zzxKYG0EZD8iR*oWEQXlrM9GY0{t3uaIbXiZM~Y?9V7K(qUky|-ghvd-41}j7+!@KH zL=BB;8T3)QV?)C@Bl+pSB7;BQr@OL*{`@@HcEEDW;*F>Cc_HgPK`_^6NzF>#HF!h> zh<5VJEQsS3!u6y+lZIW7_;;@h?##E_9piW#&d>u2XDAYp{ukM}@rEjp^_sPp=PHfh zxoF7f;VVA0$?(fS2Q%(XiEN|4Pobee*_!`pL2g8e9}v0Cp*i3YUdD6iU_vKo8NE1@ zk*I_8)J6iS?C*5H6Iu}F!=Md~D^N|4&%|wz7T+^eKKPZixjvT;;E~qH*Cy+_Lz%K7 zdzu@gEq=}Rne96cSc{3XfxS&5Bj29iTkZmnoLVD1CqEewqQ>ut@5iNwB|%Ufn2_8Y z<*j4G-sg?paf~9@YT4<1;q;T{QmL11t=fkFadY|)9GsvlIzvA?t=fw_)Db(m0Ghww zUil2Xjuu@#5aa~tyS7^MS-;Uffe;(2QDS(RMqCg^M{O^)>O;4~9ZvNr;yQCJ6msKZ zV)M^id&TQ_{scU?I#;t#Jx^UnGf*@2fC+mt{FG3+A};`*?d3P8tTW^%NDN!Qvl6if zO}v@~z5ZRg$2q71lUH$Xoh)f|M}}sNArKc-E<j8EQJ@g6B|GNj235<GBiIPp5&-G@ zUz?3*&P$TRIzw+9li(aHYoY+*pc3Y*Tb&CL=I7P!y%{wD&>Jp-0sdzpvz$$wsFnuZ z?^2;>PCj5ZI`-F$N~CQIg|>-2#F9q1K-{VIytp5Ig6<6a8gaGM;31;*uI}xk>m7jK zJ~%*JmvI3w=14lj#&3i41^gj&K#H;te8^Weq(WH5_5rfV94PqrJV+r<M0bARBHU+K zIfxoB8Oi-9?!O>pMb4wHITnoCC`<5rxlmz1mLuU%?gN(mrCQA67<GcpbL*UolWA@W zdmexjDgoHVD2fr|g{N8EQ=N^sivVh$Hv4KvKYU^xZrgjs>f}N%HNQbeZ1Sei2|Bu` zeeK+a!XtiK)=Y09GL_;XSvND1l@U2W!MAX}P*dPrMo-{JDV<|SVm3Xz9AP3eh-l|K zB0Vh+HRjO)6Aw7bIJz*~rrs9*ZBWQVPw!42i&h{4Z{I)%+ZMB`*Fo6tx_vNl_~{Pa z-TiWEwY;R5JC*p#$#S24-9kO{Q-VhQ#|pCwA@FT|`;XC8_(yCO7f;0Er2K#{EcyI_ zX~&KaMLn7t_aQ6(WGZWD_7Ej!TtutY5uX4S>Mm6ef<U?y5VTCIOhu7R)Q{zv=`*ej zhw|CN*<1vXK6jSTOVzSK<}0W==sUgs_y?~yWST&ckonRF7x}03F$CJ`2lmhnI3UL_ z7**gA!?AtmrTLtG`uS}LHG&XGQ9@y1rnxEV!%5#8jJs?bmPUUSH^#leJi$Q=>RHUG zv5XevbLt!g3dYzsntw`dYL-1?4S#=MKcSgj57-I(=w&qe)(oN`!L3bOI$shv2#Rr< zL&5+w*`hNf{>?WjSA^T`JswEE@y^0uqe;*)&Vuw^CsmRs6DZ0A=;F8?;Pb=@Qq(w$ z>=tn>F$l8*oVU9UP%My-@>!#d6?Sxkj=nS}ZtKDYSiIf<WtsYf{QGYX^?pv8tBnWE zuRskcpoR|<QQKiZ=QY9yejrZJhs(pA1cij~5~YPjb5D+9l06HH0Z7NM9`=RhrI#I4 zjzHA%#~b+dN2P#G0%}_iZUSdK7Uepd%MOmwLF+`!QeqEOx|)F}tl<&%46_C^2w5*# z7R>=xRSu$`z|>4c<+J`Ey<9`Taq}?}rqAp>46$lzhmt;JVsnN<f$!-8T62(I|6B|Z z>hAz)o&XRudhKH|HK+HE7P&t|6s$GXrnu+;uB`)*C74REuEQO%*Q<jp>bgh)6`pa# z677>Gc(arw_fsz|JaVRL_@t8F{*yaxdqY$=GaFKLoT}^Oevqv(@Kqp_$F<g4pm_tN zKRH*QS@jkP!R^C?+a8AkOiT1YgPaKcXd#eSNd6!DaJ|T3w#PhW^zaf@=$Vr>1a}M< z1qQ0RDL)oLveH0;NUwsQh@qlet^kqe%NjaAFAgT*L`?a{;>As=NcnLpK*FY#`wYkH zAZ^5TW58i0?&QsF_-+DE7@ZxgZghEX$9U~4<Ng(w-s|cW=yn;RDu|6fIqjJ%%F<gZ zfme_<@(;bfPeZmi^IO<i+MKJ)Yz)IY*@o<?rzw=lK-`qty)Ov0{q_!J`E~2ZK8tNU zWY4LFKP$j2Um7uVG48A1j*tx|k)7?FVEiEbHwN?-0?+K6i2c{fFlnlBRgmY0#Vf|8 z5-w$rHjd6BR|R$`wd5`Hg|DS(4Gko{bGv-~oeG8#YWzH>RF~#Zny5=LHQD?H8V%XK z`6V=~^5nZ>Rw1FPV#^cm63!n8*O+VBLF|6{TDc$yy3eSt;P^#^5y(gXChrIAY8Ad9 z((Y}9S)2QH!mi}uf7VysLi0KcBn<>9ss{9Qn)Gw%4U4-dpxhGsf)y#Q;0&F9-fH`# z4ifIG?cx+fE$@ARd!O_^W(Q&<0yu@{LSQi9F%KP~nJr}g+!RE<y;it$=-UB@7QpJD z3+@5Y)F_>ZB*t4Ig9e}rhZso}P*|blmfsqa$}vv!(i5@R5HI<JwIaD@{MXm!5rz4L z_w{S91(!Qm(_8Z?jpn=rqR;XB{xFZkXtz@D&KwQV?H}C;Ac3~7Pk35Qres5GAp#y$ z0tSBq6gsWrn@Kai&!q{sHE!?e4h>Uwhwe2l_Wt<{uYM=WP<_2nKz7jS(bJqWW+$cM zu3q;u7fQK7#h=WwcUYX=py$c(w&uwxfEXq)S!o^PaXcT=A<(oN@iI9vaR(Ce1MzfD zh*p<#R8HyceYs1P!kX4u4Y3H}y5l#z00b%5>^b$gFxN>?U!N6&s0HdtH%_J|nwSAz z{#L>FtTesk!~4_8!$vUQ1ay;c2+dUoGs0>4wS*f`B`==;^%dzWM&cfou#~UsQLMdM zB^)Jeug@$Nk^DyB#V=Js!XP>^1h7Ft{~eo{%{JjKTz59}UeB>zs9i;VI@pBWK!I^y zH_D>Qof02k8mc`mJ(kX)nlTcR(sQH#7Y6C)|3vJP%qIgD`(0VSS0o9b=>8+8IS>ew z3(B%7qX>ojpFlxyyJ4^WX@b#X@j4U#2Cn9_ndgGYM-NxfP>94HE!O2tQ9ver^0mT9 z)%*^DbY@JyeyRO8N@0)ZqMp6FJo+1@6#Q?68>t~%6<PbEEG|Tsa;Cy6{e^~X$lr|P zY4-Kmm!kV`-Rlp+3}wj!Olx(s?O(nN%L&zr-n$(o3zJp?;dwCRx4VB6{R*k@66=XH zKre)Tg6-wwg2fng^{)+nq}XAipwDsnDw;Ix;*9JQy@*i^az-6!qty7AnHd>o@4KlF zINzf1h}+1GTeoL13-CvF5+tpa32y_r6`9!W2k=m@-bI!4Ad)6jc4{|Mb55)7A_ec1 zLH-!kk6j-{ndHug9*meKgDJG+!SC7T*>0ujYbEkTsQ8^f$>N(wImYJ`a@Vky%=y%T z>D%*CS|Ks9X{wL{Xz@Eez=uK~bTZHsbB+APx7L>RwV`(?(aSOW-wWBgDpN#rc{Tnk z_~^bjbTV?V-ZJF)?GT99C(_ywlM;>c1V6ZkRab9NI<?8;YpS|AoeLBy?Mtinkhnn~ zKx7p(hfao!4f_E2?HQ?B0VL}L{U!JLO%s}RAg?MFQOE_$sMZz?ytz)T!nOv|<m!Dn zx_+QdUqsvFHlv`3TB0cNn_9dJBtE6-=&)~e1+_*mmDPB0f}<NW)p(zO(D<aOlm9;d z$5-GAj4TnsYnb|kh8f7niVy5Gv?9L!{^%ier=kPM7gA8_GyF?G*PR=xeWt|E_<v$v zI4?+?pfv1LDuHGIX#5w66an~}ME_49k^%rCE5G)bpJQ=nBt56kf2ekNhEIT}7|xc9 zE+?l>P_T1(M~rPX|I}8)p2`(e<}Z<AgEA<kjAO8;6e*x0){6~<JZUfMK`ht0`KA;< zkVhFL98Hw~EC=?&D`evU!O!^t?emvDJ}89~>l$Xv(`KRH=?Hq-5Nk}Sg4@REGsiP* z^_f+%!#}S}G4DIK>T@y>Ev3_`Y>+F^!B9UF$Ri6I)Ki5Fh%vBaS5mulXEKrH=2T=2 z>`clresFro|FYuki<#?twqTuZD(T|3Go{vYKb2V`&6xPVC2YTHdHOVq41YM}mM#eQ zTM=VznRqazrtC_UcT~kNsvC$9Wew_MAX!{31I9U*NKdy&q!hgGyxg9muLCiOwE0T1 zfTm$vD!dbHKkjV05=}@<#WAQMPYme%^r}s>;nGyUO_;4?;!hAAHW@ZD4JbmASfCR4 zG{AENJ6w`?&WDs46UDeGS3CwK7aE-sf9XbZXRL8h+m?j|KQXFbO$<={ER+kRp0y}* zF1{BOvS`X4Ea&?>0S;sg6RBOK=Mg;Z^EOHR_E{CsY5l-H0jkV(3>aWc&ZO_Qrs^Jw zV{@9LK~9^l@?ZLyoi={$A*oDIY@4(NMIj}hpMGZ;kcihP@<~Ms${KlRn)N_3fCv}J zRhpPw7ntBR1MG`|vrWoVtA^P|{lFcm-(M2G(<j^3Kk@!OZuH_eLf;}6C_T|T?7u*q zE%BD+&2G@9M>nre9n&(Mb(go?rvrip04)rEhyn`<2_;_a+wDdneSlVMM@Ns=aUSmy zl!yC?ET$t;7g3S=)r#MB8<R`seYV`MV&lh*DRaxx@4F8SFV^bc16<C60mPVUFJiLO zZ{;sFVj&8GY4Sb$a7e+kxs{IB)2Qq24QrIXiovGguH(-KCWb>QY!iSom$0-1;Z^Jc z^MK=S?H(}d!g_O?#}-gr@J}3UxR=mCJ9}_VNxdRlrO`IC#BV9b3E?VuE0g0{IneBW z1DGEK1=p=s<a4TXvD<8zb@znB{bCkx52Rj|s&6uAnEnyAn#n0~7XakS?AnY6K0<+c zc!oT#Z)dyuj2#pZv&HcD&7r3Ns{ky<A#h>ai(du+qo6)_G6RT>h5l0bh7g`%;z(#P z!rv+5k!H1MwXx{c`CbH)xbx`53Tib`YB-MlYQA45e<f46uPqSkoJFlT_MNxYfH{CC zb||6#iRJVhO?(aDjDPy8Lk|+1Y>f+VF7M_YUFon@Gh+l$fJoV_h8v$}YRD)9bpCrl zGX3&Pi5Z8E6+BeQYclrTA~BG=Dn^sjC$H`w3(x`R7?8Yq{c{DguSQV(11%N3XJ%p5 zL^!_oNRuR+3zZuw`r|i42K)Yqr=$wozFOKBJ`LKI3h$Siy2r^M0FW&m9`U!nosyU< zfZqF8a0{))g&??)`8)1oLdzoFFJW1%=Lv)K5Bv+?iKl?*a-PvekUV8!N#Nx3j=F|H zO2RhAlmbw)Y^{jQI`swa+^*d(hON4YWgeX1P)5;4h0DG?be*VHr627kS|wGOB#^&V zP~s3k{jVX*&d>i<!SgC7de{C`5&jo3i6{))k~jw6(Mon?Fi$)G6`6t73-H87I6@`- zHdg--5e4$MpbMfKoge!K&*kC(y?AQ+1Cy9gfp_o&$7~4?8OZZga$zI>-zK;>{zZyw zHX5TnN{kNk+<MF-iwMf@B);vinC%pD*oF6%N&~8*`La6ZJDa3jk9k9{>FJ+P*x5&q z0hHfe5}PkMsp-{Q-c!6eQs%xUn0D{yK0nCQpqA&$)P<D>mv3JfQEGKI&H(j7!0mOX zpBqd>(ir4kN2E+mx(}Sz@;v}x^MlX7C-{$ZW=tmeFvQg>hb=tN=)aITB^_DLV|kRR zW~6A8y`guzu}*e#1(S@{Xiv2D;^D^Az4OlfGHTf}A)>vG{wJCCKSH>?c?-^lX1%zg z7Pf59m&b}L!AAqD(r7v2Yzhe#ADAgfT%N(-1Q&o}0s3NAr6#Ox_uFZW8j^ROCEjRf zUn$E<MK)~l9p1CmggNw5jG-NcrQLHMuex&eIe{r_k*ToT0lGTR3|*}#6^voBQT<;b z#Kdv#^iJtMDlyT{?%&G2lLe<)#kigbgRwpa-)x4+EHI2Ssu!5Ab!L2_ISLE>!2q=S zL>MV=ch797=F||F1>Jyv^IY#N&8ag~X>L#nwPNA+{E2z2U34ozm=B$1)_8R%$2$9m zbx_#h0|t59HdIgBkE3xB7FW_=C-nfOzDd>Ps(ZG!7uU8-rDGZM_0cY2WHfW=1Pu@s znYlujM)wb^gbOoccMp=Sic0SSMBvYNdXg~R2>hSVo_w(cqgGnrPtcKWq*7DwgI>>C zef-#JnRV=)tf8zpK)icFvAb=s;tyw>nZ{ziu3UuX5fx@y3krgLnaK>R3YI<2c|pmS zl_TlD-zN<%4o1XlmOd=L%Cpn0Nl9l20Ro0f_#y#@AgG<4`xh_et%|uFo|-!wXQrA| zLZ#KcK||B=2{Wv#zy6$T21#)G)u>?8Q&J3696ws`G#wu!FQO~n?v9?|IacnC#L;fY z@RSW*(}k-d`o?f@fJ7gVJ;Ay242WkV9<bjA+9Aq50HA7_o0My%W=7tBujM5ZJ^pBr z0mr2Q3ZYtnim8fX_e*?gz2v?PZhcPb70Xx6EqB%@?Ak7hP+*^R&?BQ1GWHf$TU%>V zIy=QZi$<Wk;>0a0!Vr<fM;8Qq*~axGM`a8#0l;M=CQoVb^aVKk5~RvWLjOPiw8dQE zv$s4%*I8RP6}!(jgtNK2aW$M5US9yLBM90u3Erpcjq<~Sr<=W$ZX>Z*_*wx{<*p;c zKDrhG5ka)cwM|2$N1+3uK$%nMz%QQ1a$7n!k?IxvJQvp`SV?w~Hl~s4wD4&TEm4XH z{c4g;T;rUhPshJ0ypAmqKyydO#RLHxQ!ElZBcWe=Ji}*vPr&QQ8n{E_Q-qgCoAPZW zJ#6e9ruN*2t5Jd#tTWC(S;vYtpM0nLfOQI(guPLBK;QlMSPH03hgBe9+UZO?p&`Wx z7q;a-<=q4QWQJqA+?TrADaOfL=~V{Dxp+ulLkeKj35nr%n3Es)MqiB{{~h(;67*6) zsS_4{fB8t8{Gd6BbON@vUh@8X6$$6d=eZ0@g+cNHw|=n|*T#kO7AqfdDVOt)H9twZ z53Q$qF%@gVcQJ^+aCOD*eV(ghg|GkHs47qNzA3P-0^6Bp_`pTZ5WZ@gn7KFO#d;3T zBV1`JYz?|W<;r9}0y4z<>YU2uRo{cKeUbcAZkJ3%NW~6<o;qeay}w%n%xjygeX{m8 zKiK)KQ^-JfM0ul5y@XoXE4?I?jN>e@z|&fOJeRPk{v@;SOQZtL96i#jSMT}MIVmPh z^#w3uByr<@lM=MN*yj6x_HR4$2EM-0w@%9~D?!G@u?NHU+%l(C7>BD3o@eMou8(mh zhWDZ694&5+Je<%#+W+5KC{S&A&3y}Lr}vdB(1ea$=9C0Dp>A|r#$wF)m~YKNaVB@6 zGnFrlnemftWyj=Lh)z-Gg%Vwa!(}sbmt(lYjiOP=nJ3sLnQ{^$*6Be1eH(!q*ue)E zF0yP}0fqYQyHJ^%w~tI7UQCeyV?Lbe!L`OH4{wR!>5n8DJhwdZ%A82%j8{E1CCzX+ zdw3yC1UwZRzvUahXnNDLE;)PV=vPMsB{atD1j<(Kn5_J?h6KMZ-I+tl;o${=qQoFG z@TQL<XV*Dt_7(*P39dAFyGE|(Q!QPt;BQLKJ_v&O)9hVxny^TLy=$w%=1wQS9a8z> zXHB=9VJ#<mDJm-nVhRu-mBVC}M1XvJ%JF`4>GfDS{XicM!6X5h4=MA;v7;)yrFFY6 zZnNIouq(pin}zRtMp~Kar84IpGJVUS(Vq*^{V0t?{pTTkvq_qVT$o^LT!Mvq*My;- zyTyN>j^jcy`Nu^Op?4j|SM@!vzLpR&-sX_eFL8`4=rYgtp{jdK<=L;Zxu*#__!<Bj zL7Y5KLr(AC@fhDQC}%4?fnSaM(a^dMN4J^~d2{#wovef6QMnoOg_Ojy;0~qR$c0iR z<@0pLcjW)p;OKetxl_@H!YRFHX!9tfuSxC??gUP)nmNf+l6b!iWncpXleWf7Rgj|M z?Qh}OrhwkEou{AbK9Rk@_n#3;>o(qBkFXFxvUDTJn;TFf1b{w@+FJIn#4=kSHM;ll zPv`-2CTIcE{J-|UvFH&x_~!ks7Rl2pI$(Jv>k<fuk$?9!ZjGG&_L~|)TtFQHyLe;W zh~X9H?;0l<JLYIgYT6o-L$7ZOzbrG$xNt3SVET86M0dtQI)MI=xA~?RhYkHjXOs(@ zwi|o6np@d23X!EmNcVv>&fYq$n&^L%ePz;!w6QlOXrT)D?`P|K|MM)L)i2K8;9Lj& z+>7$-!>e$#z1_Ui@rkq1K1t`#(bYpLt`l#>yWQ0e!|*N2^!iN($Fo#-S!COVb0FUM zw%ay)FWWt+ugZuz|Biz1+}d`s(ipHRCpj0lk$q+z%1mZJw_A~My@eWmrE+}djd%E( z$<28s&YO2#)KyZ&)f1o2EG>D4i?U}%-N!09-va9k@7r_-JxNi0Zg(Id8E}UA-Wuh4 zMa5~vwq;cL@_c3{yqzBAo^bq|KAi$~mW1hGu|KQiZ@Re5nGyMZepFVn-WT=5>mtH8 zC`q#%-wy+R;MO@E1zZ$?hI&>QEB;Xk6>p5lMC~70J8$z>_G-G$CjFwsRZZC>uFk}# zyZ7w86FNz&JDbpRZb!eJ-1?SYg=bLNb9KqOi1Q+ZivW4NcNAK`rOP3{C{|A8w_#th z+s#Yt{-ovidSY5I(R$31QlQ|sNs!CviN_fqvBS-=Y~w@~mHx+jUkzC(Ry>A8?IR(H z(})Wr&Q}gTExzuxodK`vVRaXMEcO(PSMAcfLy^AIb!mNmS8v;;qMn;JDIeXlUN7nT zBc=QSZ@gdNNZ<BemD%Z``w_>z^v1pCe~agi(I{%Y#h9m6<xj=TZReAkgjOI1J<*wk zXKy1^U#sXd*BD`iJ?S(_U9QZQY!s)m^U|Bjo)}YpS>I+l5-#bjUGe|88gG!`YHO!) zy&#&}q{3?%FI(jBh)Ot|0*eFu`QVQpyL_?Z(3O^AC9iviniYzB@1lOSDSxGRo<Qb{ zt~09cZMEfVQptOv^eP>VG!?yg^nmJfrH9^)K32iF>~wxZXpK=tQOpp%=9)o(cR^0X zj3>)9JE!O^q#%OLp%!NDvVHkyT#e@{{;CIf|Fo+%m(N7VZ0~Or^;|^jGi79jH^_DB ze+fsue=;a1(I9!=VSGuw={55O4<qT>r*x!qDjc5`wypS7yql>zPk*GfzJC(In{h(T zX^%ROQ$MXeE##KSP77I1bYomiB&=MF*R(9E+g941vMEE{W_4%RE%!v*f0d8o!7^tN z3ZTpobjjP62gEb6NsBDR6~No&Cc_nJnR6nOb_0ErRD?JLhrG?&!zl$tfIXHr6>w~{ zv|?GLjSSFeSUbsCvbgYzm`u^)M{muhy3Z^MAyvbhPrKv;%jqun<s4@YU~HweTc@uK zMt&c0DWMWgh_{kpSQYWdj~WAgCpn#L-Us82Z;25SSD3e~+<Qi?d)a1|vXvX@$jL}K zoABP}tu({ud%4lPGXhVu)7Q&Vh6i?yYEIA4jVg6Us72=G`kQ-lnn$VYhOmnRtsBdB z{I|i8CWgJ|z4J?-)ft?gN(wA@^@;>dngn4Uk;DwMlzh-tf;r@N5O0U477lYY*d;GF zujo)T*tPK23p4dxE)hKNoOICgOi@?UaK7pdiMO6=YwMPOlH)#gA;9p4U*_g@@m-K^ zp~)Wi$W!JN!{M0)$n;OOs-qmX^jKeIxf8OVB6-GgwSyq(L&UVN=AS0f9_O+P+}dS- zb7LKiU-=tNe2sK=H7(bg=|u||I;fl^?v=^iQ`g-_Fl>MKMTlXD-rltpA=k0Tde?LJ zkV6eK#XN<j%>A44PXP-&hBFf@Bd>Dba+z|=GGKo*z1&jIc#{mUsH`n+`P_jf#MY{5 z!6xiq3b(z1yGctcZs!-4C<I`yyE2HLG%|+rM@kS~JFR_P0$(DtLoTli@z%6)Ol0Zu zIM=8O0<cpyrT2harpD~9Yx`lZ52X9^N!=O|s4ILNoW2mBr+E6F1TEvrZ}Bl>+J+XC zZ#4DQ@#w}LZsG)x;0!W%X<rV(E@wNgHesi*9^I*dChu`$Tmt-nlKSl1$fDAkzX}{o zgltsb{&eCF?@^<-UU~+-3&r^WmTLO*x4voiYA3{OrOVNAW62suLUaEXa_b8ly0qb+ zp__VwwlnyyFn#R4**<+@d?52%vit^4FeMfA3d49A?Q!<QbhkfL{qn0>Mgg^%y1xtF zzwbY9E@o_TE7K8I{De;yVhRyZXATcuMj&q?n@`X3a&*q@*<pY`WXyR&4O33px`lK^ zxNPO?G>#a5j;><B83enufUB;`1s%_`n{#2K=Q>08dS84OVw*mXhEItahj!IAT885j zTcQ?F@Z|x<_^0G!uWWqnxL{3Ow&)zilox>Gs#s`Jzdzhle3PwO?7+9o<QC7_mN#~j zub3nN8*_D3Be=RkY4+QS;=4#J9!6-Q<Sy*;nYW_;e1Prhd!F~V(o>7Hy`A!nK_6p9 zR}2su60bOlp)Fb+m#bm5X%U@nylYK_Ia`akCV3t$E05bXKnd{zPrt@KjA=f&I9=!+ zRXqi3op&2T>J(?w6;tl8G61oL0wpxT;O$3~vpQ|>9XIginb~liIA&_N6?xcvRdJl~ z)R;=*^ymANqh#2{GoIaS-(=CCzLFr@JRPwOqVS=yUuA+K+L3bO5nKlg1cg7TpGMnO zv`bET=~a)OrNcsYd-tMxrcS#&qmPLfHqJ)7VQK5urkS=9O`{^(7of~D6;byo6=Gvy zVcJg;!qk_B=T*3G$Sf+$pLqm(%|5=_Z%j?JSlc1}?Wz923yb>{(1r+CiQS}K-0ZdQ z#S^k$f!DZRS1)3HW5djE1*L;xW+&>02c_dwEp7{I_fFi~!U#LQIA2Oaec8lGx*Csu zv8Q<~5b2`R{7$WRyH)*$jboG~3^QNfTF>nEncF1u#so?z-pMYRh_qs0*%TEWBImiF znLmAFypF+ePmDNC2_+_O#&T;tRy3Axj_FTDew*D-fcLHbfK?z_S`W4+NF~K$S<sm; z>#5^R6i<68L%%HzkUmqiNew3!2^<~gy8;<5m`kn_0Wvg9NWU*sf?AsKZs;Ao60ymx zvL0-aN!NMYbb494a2(y{<T-nY{ZrP@KViT`jKQZim<!2Xe1h&wpfz+G3aN!QDnK>A ziyhOqOBSDv$RMSYq}v3^Y;kK-zW;)gE3@g1dv;Fb<pn9UUM{<?2)frv==IRrm&tQo zPTj~4X~j>zFKp?ay*yK<GhudkW|}13JGCGe@;I8BQWwE(oB>=5{8WV&hz*`<mK%Cw ztF&%tR#i!rWB17a6#c?I?yrSCNvl~MSr}6Fed*J3WgDnBWng`jfr}$K!CDri9GZ9k zf`4DK+%-X?#qHu?LLYD;$8)KWydO+(aVkUq;L$xCW|%hd08Zfku6r`zfj&e(MC0IK zrKq7-^H+O>3u4Vj+veeSi(yR10@dY?f@=gx0ey!&hlM527-1p6C?B8?(P07sFqv{! zid#s~wIYxNFR{ZedWjcG{!eLd9uD>U#Sc#+TOrFxl(I)d!i4NwgcM~P%OGomEG1d0 zDY8q-Hr6a{mJtSJX)u;-*@v-YPqrw=?zx9PeLmmkd4AXRT-Q_ojhXkn=YF62oY#4s z*E#nPZHJ&al{2&3xe68RB*i^JK0HE-ae_>U3Lkfn4i14d=AiIeMs{Ua9!o}e-@uMm z#h)UcEY}QKfB&kva+s^oN#S^V&j25>SA3mzot%=$wba8s6}~Bf;g5Hn@FnlNye}*$ zmz@vaEl|==%~4TB-Euv1Z|Lu3TC0a#S=4H1OC`ePV<e8I(Y6U*fdaHEP96&OHE?C; zem%TtWx+^Vi%6K9VY958EQFU}D`g5TbIa!B<(Ls*;UN!gvhU#?(kgnhc=6B&&&;(q z)E-^=VRCrucDyW;_a$ukkPlnDpZWFVoI&ydYSIf+Z}Cu89NXB@TM8F$g(Ek6zC7R% zn`&jO;=P>qZlgny+&ChXO$Xm?K8SxEdET+rpmvgxYFM&Z;?R?B#e>z&<(wXYfyb#G z7K-M6iTsd<h{T;YC$a~=r$*F2wotrn^s$4LH(_i3D(*KF8afz1IhwDWYdI$SH5&@o zjM`k_Lx+W_OHWjBt}$^lmhC)2aF5uKb~aRZ<4=5{%a^6cH8#}DHyZF3mW9-<@NSI< zf3quMP=+%8?pss1p{M<({mk3#piyt7(Yy6<Z$<p&&DH1M*sk5wCESa1(l<*>R`L*W z`)!0&@>as*9ON~kB|qLTF_PC=wi1TO7^Wh_$2zHOXANV^l%5Hm{bu+C;UX6HAWGbW z=R5e@^Lrzf3(nU(5`qWGN;IV61b2p_8^RT_thSWNZK<D1^sz%FW3O$8Tg3<$($=zh zSzq7APh~1?EGT|<MeA`w&g<>|EOV{o%3-sVh`z-kIu)q>Vy!u;F>5~lK2@;hz?$LH zdA4@RGs%*Dq%osoucIHa>(bBiZC>7J&B~J)li%NQ{@)U9o9@wuj2(kX4AwyXu5K`2 z^=syy?~{$&g+y0MI4Yp*Y~set>Y83jp<5@bq{L@TRg!at$y5m9p&}4BTM;9yCjQ?M zW0NP`L%pVkgi;5}daN^v6~0A2UEk}^_-)L*-j-?lO=iNl<Xzhk);Y^AOl0TDDbO8> zcCr68_FXN~d;<;5{5`Ke7|mtv9&TWx^GYw<wF-*MvdhXV?P!NXuIu{3P-}4_9hFe{ zpbr%qMk|hvtQ$aVMm3HYxDJSFa)(|x0d*C(jl9i<x~%bJ$id-4Hu;{x+;Wlf+T&h% zuS?Hw7N$pK7G#!1HN@qaOa;c`qJw9tM7Ia$XJfmB4-_HJ3;k@74jbk_b3LW=?d~jf zI@1?6)I;!~4pLJim@KFfT)+EjpsaKcslhJi`*+(u#xa0>`-YVc=lKXZE5w45qj(dF zANT?=2Il{`(GQ{XEIx`7om?Umx{!ytCmG=DI`5=xcVLbhi-TN+!_Wr6t?hZA1C)0P z5WBbRJIaYpft7D=H}5>*n7@<;6@W`53HT|)$Jo~Er^CELV>LlI2P5foslE_;B~~?( zlpp199l`fr*h4c1@W$dpM^WNbmkCWn%Topx+&{8kt&V3tfZ+wB4g#Q+^uFK&!<(~y z6HxbYM9yP-Ivjq_Gtz_KHe<+$sd10A4X2ZRU@6eTc|Rsjj>%4U4Xrj6c=)-JM0U6| z@Bjc&fyw*bqUoJ_VKVD@pHC~ld`0PSLJV-P&c2UMUwk3w6!uz63w9nN#o`y}aUvZH znu5i)FuO$CMs~Y^1>usF7UfI(muen<P<TUSQl=PtBsdmX<bN7D{i7!}c_#ks>FZfn z4W-sEDXmOcw!6HJ1+F*UNgF$~HYyQLX*31%5WxCpOQH1{Ql7+}v)r!x2yK-uM$I*h z2=RSAPgcLCJ)x;-e71$tX`>26zZg-Xc#6*>O8U=&5{IF79HUv4-U=w&WaY)C*)S+M zW>Fh?BRKKUAtBGh8#y`PT$$O@3zLD*tNPzIDv^IG{IV8?eAeJZQARi`cb}jvm=z<& z<w%!|Ij0UMiZj^};8JdC#E$s2l}MfK@df9R@`$jLK`^}rT&jlMF)dpi7eSZpt~vxe zseFdmJKF$%FkN{C@{pbp7YK|EEEQY@tZwskiu>M`Fn~C-b}2?`5<*eVo~UfYo1xt1 z1&g(V!lMK(OHr8UtHW<(+DIlhjq-G*+smh`uRv5fRIo1@_Ysx}n4L_Co~l?GkFSro z1rqqw4nxj?*!a&I`m8+4_m=|@q#x`V^UNUL|JXP%m5o~kB>>1DLFZM%KvY<u*cOP( z0w81|UR|S@?J3L$8gBiVXO8kuY%<@YkB}>=@j}AwCy>K3U4INa<1jvFsxYiAn`1ZU zCXY<hJNumba?HJ`Lgb@TrPUe!2ZlY}27CnPnhSzYkCbkvjt6EBlVwBKFJ;n`PoP`V zXVCL={Y9O}&f0M`n>xI+5Vyi|2&S`dsGIIY&6%7K^U;k`KI$^J{@$Se2W!Kl1v+^A z=0ad~=b~S7))rgFX>uhNJdV?AJ4(8mhw#BrI7G!yBr`~VwDdAITk$sA$>0wJEyf7t zvTZw44GS0DaD~+W2`~czKA)`n$wQxS=*fT>v%!SfsQ*sC6k=})&iqgXp?^T#7Y(~? z%cxybYka3b5aW`4jp|gdZS2Zzee;6-K&6O>3f><nT8t+J^l3LL8z1)^*<=IKINP|6 z6JKDcUnb5=p2w)UsktHPitOUViG%H^p=E?|%j@*r+uk#L{JAh#A?@8Q)63Kvytu-1 z&E<a_^-9&nL5bKpC@x~NqkGfJiIH^b5FY%8I5AI_VBhBFznH!){N0L?d*R{%eB9%+ zczB_`TE*5_^H`5-!Ix@8Dv2-k!K$w_Ca_Rv>*uC2`>m=HE&uIX*5uOL2lo=I|8bAz zM5f9BZGW<LwHVWaqKE@it9Hlg`^aimyAkeKwfS%O$ANl2VMkG)>gr|eY{#(GrgGj} zGPdL5JC@VsU^oLc@Nob()9<-j?xJZh&Dl|TJCRs*=hIs0;tqybW|LW5>9_i2rG4jz zS^3s#H_21(hz~wTqaz{z36nuc=w;34%^tsHHPcLP^d%B(Bqebj7rA$IP1{`iv<ih- zKA26E!%0gA-W>YZQ8)4v>0F%oHwR3rgyP?>L~0BgDF=$0=wdL)%%{EskL5P7BPAY@ zrnRDYwmWuqY{QwB;vu1tTO@S`2Fu&`NHiX<0-+3w3NxjA>w||B1N}+0Y<4l&#==%t ze-Dn_=&VRa=jr-Uvzf&tV=#V;8c`0gCj}P%<|k_B1_U-u6PO?TR4-ipbc@i8u!g!< zE#=(vUdbH0WT(7rmt$0c%p4hhtYn+P@{F(kqqz97F#&>PbXu{2d2h63{Sp_0RF__~ zqg!lAvZkRw19N+=;<mF{^y>zibc*-;6Maq<Ao;JPDx9gRoFaK*@dLuW8yO6&DC=!r z>y`ND9t*4`z%so<wGhvxop{Z~B3YSr(0DCFp1q&7G{|r<Fhs%Fg%MMw-|GooTI=|| z(wMl@<V>Ry@B&733VWi^b^0(j*!o!lc(@=mWp+M2z1^t949lS^`Ird;Nk2|OqbJ{g zPqvVbH;%h)6q|coYWULXczb_#YZFIG!pp|gzVO@q`6B_dV0B_ysWGg#wgZE|II!&H z;Hy_FkiV2=UaX!u&FJAV!H8=N+zKc{E(=RX&b-d;U$n%{`ivZ+d_OfF4x1vk^vYBd zj-=)MU<7bl1+%}MwF<N8%dQ_~A2JY#8Wa~@7SOQ`_n>?wH{~lksS&wBkxFJg)6?KU z;=PcYp@4@HdeK5UthcJph26>gv1Ek6pKY+U_|LaZ^}l1Yn(87Xj{LaW>@A&|`Olso zr9>URD#0J_cEv4;izRRE^;OJPxx&Xg`tH7+zC{aA!3%yO1Dp>0r+A!#pd%wM1pZk6 zzU!o<BL97X`(LB|zoU!vesrV*-kQJK`!jT%u0kX2jPl~yZ8P>t<qfCuK*ju#xw9Jz zknbnM<IcuT=3D=380qWiR-x->`CR*+9AkX)%n<-^@0hH`W@6jMBM(xQdW>e;)i65k zaW*~q!ZPTDaN?S5%ywPZX(_iKcMg12G{p`**xercm9|^K`-ACU+b+%v(w{kJ`B`9F zsKuVuUB|<fIF`_0ci__I6(`AydShquWMDJ06_LJrePs}c7AI=^Dh`?XR&rVIu_TJ} zIKEJmz({%OD(|nnL8VwTf?m=+9Yh0h>}rBg)teiwMlrute@!gDd~aMev0~QH(Kj8+ z2tjINkEn5>^;@muc3>T*JP*_cyJh3b`z==O4vw(W*c*l-jcn&5Or_nd)9hJL_H=NU zmg7cw9*^W-t(c2he%1WWhuV^5OBD%s<>mV%9NS|Wf^z;vw(B>^uzWS8Lj^hX3J@4S zVb`p$6Q(-^AKlao!>q!tHEh@Y6#g7JBOdSofcl33{!KFCh$hU-+|-zGWDy%3N4tw~ z(I+;@xx+6yYI1%eGKr{~W~hUI%;!Oa>mrl=(ZTGNaVsCSy+X$!ATXaX!E&7HZ9GNX z;6y<nS7jyvK3ZBJ$ew2kFUV?Fkt@EfxoXG%4??0W)-p9_w~$P{^lkIpKjvhC)yc5C zd&!}4)Be_(U!{^y;^()^SV)2QFmD>eg3PF2=_a2Awxv@JL(y>ki7YSrYI5pgZ}p90 zsQ?Rbis%Uekpj{WXamTB|Gw}CA3Q=f9{>>va`WJR*rx`796(ISvm^i70RX=C7H3l~ znw&i`J(3A#Qk7Fdz9N+Z7qvih+rQUQEuz6_vP4R7cpb#QAe=&fu}3H})p0}ggQ-c8 zygMJt#@dy}pH5`%rNtA8hwO;o-yv%QBvi4Ap5dh)6Q44=Yy;aFFZyWZ_KlSvr$(fq z^<O<*WPcx@zq&(?LA$->R2Q$q@mkB9wAh!FdX*eI(SwWp<~f%&5;kFX&BEPsg2-M! zeFP$M+!EVLIX3*N&p-LIvvi^>$e)XwTopy4lwctP?%qlzYfmcNMmD|o9G15ZwtUcs zTQmjcHQVI7NMYN?*iL_%;N{jYTYOB93z5aJhPSQMxFtr_dCAb>RA~?*ZeV29%RILX z!B7!v5wr26tP>>Mu0q3QQfb(1FPaW=JBS8R%`QQli|tGLz4BS6S_vsGWoE6u=OVfH zQ|#C>S;OyqS9ZkJumE^469s>izFQA=4_!5=M(c-4!6MANi{svX-&k9XF)p~?sqxZv z*Ei~AvAYA{$QU{fsl@(+a_ki>dJYcEY5mev!SZHuXenuoGjG;C6(9d#S-lDW4lqAo zLx2H`s$qolBRJl{wq5zqk@CfDP$4idJOcFEbT}N7JOtt$vrLU(Ur{Mhpp!vax?D5; zyzcS*<SQL!%X<4yfn?XO6qK`6)$ASdy5P&frZ}O-^S=z#7yQy-s8w>$*kVaJ0671F zIQ~w@7a`YpG6_!*+BLL-u6DPsg)0^JsGIve+h7Je`(%KtBS>}}sWHs~j-EMoz<uM| zTa;TX7Z2VIg*yHdIRLt;61?mU{3|&{n-kS%eQOUo?|&1;wmTH@he9Y^P>G4zUO6!i z23mxHhC&A9UV8x)KyGjj5=dy?0cTxIfpiD=O*|HSZ2kss@g4|1LIFf4|NY3VeE;fw z@H~Td?a7R;1(J-(IFLtD008Balankcd3`9@GT**{CUBv)WVx==j@3I1@Fc#|?cQ{? zhyD<umYy*;RP4=AZ88r!2Z=X7M(u+*5hf_=QWQ^<>m7QyO!N)!E8<DQVoH54p$+F7 z%pWGxHm~Y8t+BJZRQGpXt`qi-Z0DL{6=noH6QHe?)*ks9A9(3PZ!K+Fy%xb473#Hl z0Q`Vw1j^wk{asbQ)m=zD7-E@1`f(Js(?{2-B>3W7b0w>`M@ECqvd=&ueZ0<<ZCS~o z?6i1Y9$Jbod57HmOyC41*^leI_e%q|Dt)v-clr27E^5qsBuT6nh7f_~4~|KQ;c^kv zd2bKiQL3N0S!8cNcU-`)FVwy{F4UeeKJ-o;<G=^c4AY#vbMfT-U$_!iIu+g1HgLH+ z*IRa*u6VTBRYwvVDzJ)|qQi<7>j~V9xVLZL4jP;6r=~^45oWc;P*}ft&Kck@rg)`v zyLCFUOOw~X^R<Eumy(}U2F-5=6k`PwP&QIZCX+5KsC=|*xM}%0#HpCuX5R@$4k5g( znt1v4xEb4MngsbaaL`L7|Hdu8%?Yn>YgNx)%+A@0ozlr|y7jB{<@B+Wm?l;fwFdVw zsCI7N&~i>fX$_krXkl+jPQI3hN<FdiWMJ#5^|M(aa-Al)TX2Hz6z)C^;>A6(Esy0h zk3NUzi7+S8z>S@QhKTm9fU-Id2tWsvJWryMD4M>Um`8x6sbVMRSbH=~t|vRa5<Zp5 z5kY<Z)WG$@HKkZwX`KNJ;&A9$QWYxCzA#RM7B3Xddo%-5%=TlW;=z!v?eO!JF--M6 zsm>#!ecKrG($)U&@@N_o7(t)4z2H;5*XPbl$2laDJRZ}-N6h-_v6XZ4q56e)PeB-` z$Nz>(U=qTE)~R4Ssh0Qm;|8D@elSF^_Bcl(yJD!CIGqKm4C|hAs+J_rpzHaFeDY`R zq{Xdmteax#;YBM~N~IqGn+@h-wU50>4)HBj<RU)rk<b~RbXTg>ua~mH<A888WP78p z8oKD)?w4hnQB5j!k0!h=4T341N)P|DW58a+?(MbKYuK1$lHF0P7c<iNj<Ru>roJ(s zVLWD}*JLjdn1uWlGT%jVOR;E_AXcPkBHB8~Hm4gpEUCFaYN(P<A6VVW67JSA3G;HZ zI-?Y@E8l<OqhtHErQby)1wSL66nPg8m&1&3)|<Y0R`^47`x_?z({XG0ug><22yRJD zgsMvJBb>S=hOAtCWedOSi&^_UqL?*|C^{_K2v!!zR6RkSzy0U7w`JDi-Y`*I8-2oJ z)?^S3sjg1L?J@E_FXh_cK+4K5`@V$&1wF7xaN3OS-#?2I-O6^%-~Z*I33zm#HTW!r zFb1F9uiE{Akwp)Y@1yg9|6mnt|1DgrrHYQMzWI#=>nfD}(RF<zo+*d0^`tCE6`Rcn z=qe{x7Sv>?AV|OSyw-wIz40RVtdtD0w2NAfjN{T|m*|t<?*^lIVW_IxQkq0S2-~k$ zId%G6(tnJ6OySCDDFjCp(hIXCoAz~?Z1w`FyL~^1cL8MCF4P!yhq%QMA$qymQ^Zah z?!2dXB=#Nb9}<agp8JExnl8ucLf1{a!}BU$-uT7Zk98jD2Vkgv-X~9y%}|tm;mxM! zgCJLB0$mtU_g4EI2|iW7PJoF~4-_4kmDZ3gsL|bJiCsRp`|#P-#SsZIBi@*Ihz)gZ zY$)6VW%-uD2d^ct*zlK3y3S8j0JN5b1*c<G2&UwoD6~(Sj<OSh(}p-f1&CFvB?X~C z;jDY{?p%Vb=fs-?C4W;Md1=_)#Xu>Cg6b;WIm)RL0h>&elO-f~!u7`poYt)19Ec~# zTac8aD8uhJ{ng_DiRw0Z-l6X%J-XFH`SRyK98)2A?)=!zYgnXM!zp4CjChl+#8Jc3 zU-YI|U6}T;bW(ZKoM6jmT!BKFoAMdsmZdi5wlM9}QEu*Yw>*OqVvV^ErrVlgW3FNn z6OU3F;oYkPw0RU{1y|?yy7XOItnNEwh~S_i1@a)Y(7CI~c6-A*WIAmGpgES00NZKA zb&cDE?7=p~_2e0~@IqkZO2I0gtnh29oKRz<+kyoCSF`sSjYW<^p9rSaPK3$XM)|Pp zaKGXmQQ&0$h)ZZZn10fNn$%|biIA$eIbltQo9Y7L6YLRC<v62O$i^U3FG_rqHf%1l zjKHF|vrDeOEpxe$q<uMDxR1;Bvh7hbp%|~;X#JaXaAubsoYi><N30O>y99j+xpFaJ zED2P3eFi<AS_ICQ^qnRiKMW$^{td&|sWG8KffLOMI(gPnORR{c57gXw7fQQof6vcv zqLByn@j}EX9yz|KlZv821DBMRk9v@Ye8P8kMydsNW@fE9-y7$#j%<RKoP1075Lc2A zxIEqd<yB39kS*M9hBdMzKc-*fIZo-jgS4ihp+b%6^m~yXQ`c>#Bzt@{KdEqda+kYr zuT7QTOV?$W4w1%dRln72Exs^(j}e`R2fLk;*Lz>Xay-=}9_A0tyASC;c<97oUJ!Kt zpyP+Q3`V%i4a!0Cgn^xH+PdM&&AMg@_vrp`3AYvM0mi+~9&o(8mcn+?kw{iBl2tWz zh9x)>?CL?X8Z~0IRAXq22q-rtyu<8r%Xx^3*D3re(Jnd^+=V)il0VVi5={8ykrmM- zf%8QOs81+o3_GRY2j?~<MCti)O!YPPpGAzk)5pH`&3%>ECv9NtpD(5uwR`yqyxRC| zls|JX+|hU=5CuTPN@<ss(;Wb_;;9kVWW~|cA3C|X(6-kO>O%$Jm-Lfvk8C>G=%&hE z0L1S#;FV0UlK@6MbWlaRlHHPUcF_q*NvuzqPJ|JE|MmtOR$%q}Q0aYYjB>woF!DL` zs5Xz?^Xt2+Zc6;EPd%psQEO}&^{>7+c!!Rw_)ueN1AHo8OFmx+(z3W|=F}MQ6e;EO z9=W+>5GZ=`-nU0!6uFQ%Rm6E7E}Q7ZJ^`wtiY(sTB93zd!~VOiJjGuhk;ft553-_o zH@+AUFh&h^X71~ji^@Y+{C4g8-vXTTt6-k3G|<<w)$&!aM4?h6n8C)Zj)8!4xtOPl zw@sfhTQ}EQJ}~_R9Fr~#6;`~taNj^K0#@16Vn!kR)UjN}H$Wh|=ryHRxATjT78P_& zfz9ZlheO|kU*|`=YlNf<tW8_WJ98!GNz|AFR;#q18R&7ppan0-P>V}Ggf@Q1y7yhL z4{qXTg$?Hm!LSd0jG}dgSLwaQ*E{7$7qOBtP?p_MPQQkxQM?$rmU%0X9Q*rc4{z_E z^3ho5GDrDqW7E%OsoYGyLg}aXDA88*e6et&H$UDXxSS4-);yl5lY{()=t4(`N#$B0 zQDbM#ut8m3=|M*z+#iu7#mu^a;7Vb;)z8hB>~IqoXbGU@KNQSNK<I(C`~bAR(oYnJ zT*2JaHVqgz^9*rQ|0pU?%5Af-@*oG}FW&AYa$e{7%?>X7l=q1K^M$vCyw)!Wor>du z(koTu)5I^5poBm}>V7dTE3<b?3^?iM<L}j=n33GCP<RL&q6dUTzSb6EN|LKdYc*@! zlA8lXeuPr%Wq-8r!12>Ws_t6ZC9|QUz=;KKUI95}dMi58O1?Le8p9PQKwLIITrFg0 zE;77zJhu3asZj}Q>peB|>TGcf$1nv5M3NnbI;BS5BU3!T8sp)O>7W+;i7OupSNXGL z!BgxvExVnu%LqBwk{;x`M#<tq5$Bi?ekv@lS*rP%*U8uKjzAtlaW;UYq||fL-=ks7 zAl;Q_#2`r<cb&kTiBuN>;?8=aB@5~Z)t@)zq4V-Xz0{X}mmP~d%yR5#GyK+=%dhj2 zthwAA(X^z(j@5d&+2-%V02$zXf)ZrcqKF?HwG?)zVm`lFIoqWDX1hzmnr+u^8%~Ei z)Nuo^_4w-^MZzvX+$!&>aKsf8d2YFEZ{4sV@|V6TyKnj&D71x$+7XGd69W-ri3#XP zn&&&1c>32+T*IYGSAQEJLXr?};=`E%6uR|XKw8xS$P1+3Z%0I(b^clgyT$fEwod_T z>BvY#bhS^4I7lpvRJ@^(B=!qR4T;bO`GzFdKzPbp_h|)P)n0GDrBMHIFG4ve3x0#* zcw)z*+C$8Sy#hh)a`S%cDdHhc)RaIu-0LXniT)c&P$hTQ=MEUOj-t=Y>Mdr+J1lfv zfIMVHNxK>hlxnz+Fv;W%yN6Px0F}$xn90#_DI>DTqdLAT^TIx}$;}hEz~qF5&h}=2 z;$`S@&XOa3z2vr(qqBLlnLq<thLjR+DoK2g)a5tBz7=nYvBzYN9t5(yIq)SAYSOt* zP!0}KGI@RG8|qaXGoyL&)_k7F^QoW3u6C+n;+2yvmpGllwt8a$i1Dvdpk*PTa{ni6 zP?zga%<MRutY3ea77f2k##h4{-JnZ^f$_`^*Zcg<bq=os)UXGDIUV^6KyD_hpw29D z+&ZJnqW4ZrI$-y}+dRh|C5tiHtBFVi$hmxM-4=5b!JQ`{-`^Uuz;qRKLLe-tT5XWg z0tE!4Y40a%`k^<43k_?5FIe>4mp+7+n<hwn9b4?rZfJUi#2ZKLJ#5r<Nss*2853s+ zgbrtu<p)Duev(c9RvZEteH&KP9ptQ1>v_m$<e!^+_>jWekdPA`Kwk|x%tTH4`Ip@> z9ucTG9cxSA;dtGL;WsYx***AG=M*uR8DPylaRP2bXf#q?BH{z`m-We>vm3T=Io*Tq zkG?=%NnidQz#>PM!>P5z%ua>KrG^|P&#Fq4wV53anBjPM{2`JX@X>qR{wd-Q%##aI z`lz5y2E+(z$)fjY{-!|ZDx*pO<sSbA%N6|^?n`W%o@F?t-xu{2<no(K40x+=xDu!` zOO8A|&ZPxJ5&{#cC4nK7?Mg!rf3Q=M>K^AybgCI#17T9=YY_5Q9Fl)J&0Yr$E6_Zh z!H&B(qh29w(n4S3#|X^|5wq)0!#qW`g>l5(S=c-r<2COcFem54Udu=9Rxs|6D|Z^s zU9&K8&}?SxnwkhBECr}shX}PyzEt&BGud5BGPoTYOGBaT%7S3Kr5a01WK@y>@ki2= zQVzY&i>@8C43IlgJm^+^6&*=v=(u}>Z6l{+4&0D0tT}%`$cNGD2WmC2>`(d}gl=^T znoVJeuG@?6a_Ckqj@X}6kPW-Cj~d&(BJlSQ!|OxCPGNrjszn<Y+<R|vOgLLjNHc!e zb1HMM@JdNHHq41s2jXFa6b@StHT2r-kP0W)lqzk^0wK#_TejG$X`7l#pB_gH{Gf5e zW!CIBkI}d+1kih;tf(&AsxvLdDL>D@VJU(dI4{isMI8`w(fZPW;?s9g_0u3Vlth%a z_*A1{c3DB4=JhC;+eyh7$CKe?Zi+Z3JjDCYf|z1o+EEx7N__sL5mL9dTq(uTzR=xt zjYNA4^7T;gdyrY?nlj#K_~U9HB5yI}K)MKAyHoZxqQorIuDXOfUm?_B;!*9O;J}T) zwv+T&|6%`=<8~aV4<vO?C%6YlEC-JK*NS_2SU<_KsW5_D2HOc#T>d~vuTux&`sSXU z8jmXnQ9^?DR<QeHG?WSt_x}?HC_<fqL;t-L$UZ<>qxO;s4fo3Zi5)5e%e7}nsVduN zaF6^gfgUa(nU$iPjBe^4ZbvE5VL~a<0`i@Y@}YQY%zYWbjgJia-aHsmTe7Z%n!o(9 zz)8WwUZHjklbcv^j}Icia<+A8XF2`&TGLcac7l;!K-h4_>Hzpv9~r={bezD)ohvL< z#UYEnowxCbqA)H7RdXQ60u(uasYdN-;@~4>_&DF^36%rwV4*|Vrhhy>+IY^8y%?a; z(M$kb7;1SPL!^3=UJ4a&ZD%hu2u5A%bR>AkOo6Lh2F~WzpruP;Zo3hsc9EDs6~Xv{ z5;EQ+y^?xsh2f6eka-B&b&VodVO_L}u$#Rsc)hF{H{(I|4_}e~0SfQ>S~CSI06Z8- z5j`adu;q(zxgHlMUCq%}0;N`or8oe2eu@QY#*Zu$m=ed1<sk=aayC(jgiu|cKMcca zs-;%)Sq3O-a&I|xY&jjNwo9;Q8qU!MWTX@JeAq3U+6y;9CJ9mw8Cq7PZ)=n_A~q*f zrhlV;G()xG5$*tZq}~SD0~Cn}Mf9-u!vFCZ_wt}DQz_fz(SKc3lKQ{T;IDt|<*}eX z#>{?-b$rw4?whg=x(=N}+bgm}2-`FocRm6gnWNn(b)p7K`2Z-d^^dT=jGdNm`{ZzZ z&o<6{_V$2=<=$3;zehGF_p0-|o`4*2Fr~&MHHexYa^CYbOC7@wJOTGZh+C#7&!1g< z9i=eF_VKt^urDa-Qcwl^U`^bTGmukMJw%4vu_56Z^`<nK+Pd;sv8lC94MuJ!VPFzG zRcB`Q!{-ab{tqo`Bk{<hxl6D9Qg!y|R%uZ4o@+OZ*?Z^$cRhrz>M?R_a69qV_6WXf z$2f(FV&43!<%5~?)W`8n`QJOV)$L|_=Hn~a9ahV%@_mk~TZq`$eL>40<kHz$Zwf0Q zb(*rp1oV={Xv~#fGpVpqT+d$d;)=^HF2=Io=TFYM$>_K${%Y^oC*!h?<H59A2d<%v z!5a93mr#j6f|qScc2Ge(VRY7>Qo``abdA_v8;Vh#<vP*Kau1jdujtay1w|m;SR&5> z^trd<f2;=ZEXoxB5_+yLzt-lj{w7Zj^q&?Tekgvv#qyQqe_q~;gz4}9C-$`BH6JcL zJisRzc=NVu4I^Rs1ZM;b%{(>O2mkL5>-_7LZ@&F&1-yq<!v81M{l{NTwg`RQim||B zT3Jx(mH+#FrwhZS9_^SDkI})uT7i&Dp>f`6PlGNXqKG!u{(-J^NLRytX;M%7;iSw( zf%-Cg@zE22`T1%~c|QfKxm$K$=&HDPZPWqdWgx6{B4WUOm0i+>sVd9yF`v?-qFsxQ zy9=zs;b;W$d6jp1jir*hz0`im2vlPLb~%bNQ;WFj;aOTCr)SE;X$IZeuJevpK3#O! z2V`WLXjk)=*KwuVv&T!njCNf&qd3eB8j5cKMFO=&dP$n(YH`*n#>#FhHZSgjCX#~V zW*RBtofOdX78zcG?GS!n@$(-~^XGA>q2~)5K%Ze`V4AFl8jo_I#Q>OYSVwZ_4eQ50 zcK3q|QnK0Axgp`Z3xlx0O%iPE)5x|sHR9l&M{->^924s`j5`%<n|7!u=Jli)r8E`= zf+~n;sd@6FDGB0jTgDe=H{C#j3QV*~?DHw2ipl91!1e^_he>_N1WYm*t5|go!+P;< z#mOQQE8iQafOU?&(TWAB>yc~g?HBH&=V>SdO8^f4%7qsSit4}Y;7b-0!j5^oX!K&S zsVcktL$rjx$~3{Am*Us|69Dz#DSlc4^#;kZK8CpowWAsK(7TZ1!Qw;*2Zy@R+DlZ0 zIQNkQOJ7z^>{dH<Np*2Bw!MKS`j}LX*}h#h&|D6s!v%k>gyPoHABpb+u_+|OIq3Bb zcPpV>H0+K!vmo)*R~1qrJ^Vgrr1`*iGN5N{SL?amLoGiIvygE5ph)zLA|C>&3t*S! zh|~!HksITMFdZw#GA>%B1|yQ?wo#m%Mt%=hV}yuqpXT8nWJ{lLiNK}sv9z6;w7R5* zlWfXcqs#=ac12ozFY@1rtWNRL>j<J=_r;@59tU0d^K@VA7={nLyD`Gf4M+W?9)Oo` zfnJYH-Qs^plE1Ed*YllpQ3(uH*qkJL^kL4}G815zq~{xy);SlkG8BUJk1AG$^f~?U z=)wKOYER+{2W*&W=8VFNt0W0T_prZL^t~lQysg&QT>l7awQit*5WHj^_BwUPH<S8* zMMy08dTZFvRvR~&50nw$OH0|0K{a&juR*$Y<>-%*Ms{$2hu~DrAx1Xh)_^kG5Q8-O zWvXedpI%;K>t&f8Sl@`_-Cdz2>8*2Zp7&U{$^xZTpwvrV{4}eW{qxE1yCj2TA)xLw zCmIU1$>@ca?B^D4`voe8Yk5d7wySMGL41n&WU`B#kM5O!P~k^@;zs4-lwyyLRlK{h z5-7TXS}>?AcY;zA`Y<RqeQ~leTFYZaaWQ-Lyt84m?%3AgO~4s*?BZREe`^5xqLPMi z=`Vl55Wksv*Wk_vjfB}ie;_exK8lhf9RFMW1?up+Pl;n1AIrCBZ|Z&4G?(u_co8Z* zJDOB%wSNsipktb-x;SK%LXD5}+q)qGBYf9xu`v3x<Ns5iq_%cO+an^5)6IsF_r(re zt0LqLzb&)#xamn3%=cP2)Zyp>uv5NAAic^L^U2bu-UhY0D(eFp5b(-}!7rqg)4trY zF=8eWi*R=P6}-LVg;I1j0-8*XKS}+5o%-K$^8bgjG)0jO*zf->bpI=5vE)FNEuKNo z-*?2vZNtFf+ZlH@eAHhP{KNbJ*ef6uQC1B>y7!wicC2Q%P}O32&c>r3*M&V0(fO?N zd1o>24k^A$0FYD%3Vjx>z&TM|M2MENwzH0Nk`_gxV8@YS5<X=X-hPK8%>d@kld6TT z$(CyqKAP5eLFoZz--IrIT1;L5qov(^`LD1o_%Y$@;}ksd*-=M5rq;N`+9?o!pdJi- z32U}ef&uQ6O6;=;?2P{AC^&LA*0vUBZ5o(aoF%QF31kb5B6fydbcIcB96wZNl%H6R zX=o?i>_G!*+}U@5di%O<4sTGzI2JzFP*z(0E0|K7%|PoXj=Y-!71SS~7`eGu5j-OH z`49){wZXU*yFD2H!3eK+e~BzoeCTSU+8nIQb7DLrHQ0a6d^O{*2%C^jP6=HQP8#;z zzbfbeDkx=mb5oZErIVKBxs@-nx0<IsJZ5^0#=d5#W2quKJ+I;&ND^nOd&KtbvQakX z>FwkRSvl(e6;N+hZO)vW9e6R5DxR=kP^Pq%0bSxvT^F08>H_G4g4Vsg<_eA#>+WXH zg>YZTrpWia^jmUWvcA8_vHO#o^wBn=^MfZ|i1(gD>Gj@=DmW-xY_4n*8dxKH0I|O2 ztQsE3<N?DUH01Mudt9ku*eo2`&JF%tDVAT+`KNk=!>Nvq{W%r5+r52Icz9MW7{RN{ z=%+XML-G5fU%hqUoN;^kpy<i*H5u;g$#irpZe%Q?vp{&*Z$!!_A-<kG<7^emMJ}X% zuZg93^VDgq=p+B1+BFAiarZNA9%uljgt1%P0^;Jso_ce{!b}H0)0V{)F{olnv0K$W z(`fQfJ`XpRUY^Wi9u4dX<-oy@Ber@5moSPjXsfkA>eS@ZX+K+21D}Gafc$Eu4{lHI z-R~$Lm3LPLb7hMUKe$&_+Pd|$XD4-a!Hh+CK9JMyMcfJq9TZ5-cLST^vlFzh8db%X z9AV|;+`g-&cjZbiia8YHS5!BotZ(j9bWemedS|t+l{wL4R_1cED(K;^CM2Xr-QAoS zDpEMDWyy!~H)z?+ln|ab8R9S9=5S|0tsDff88mQh4qqVsXGLv?-J`?6#Ht?m*#*|3 zil-a;%q}*}!veg^K6&F<T7v$@he0iC>w;_MOnk(s6BiwZ+--!qy0q;ijx4^iH@`3| zUf9NL?ZX**;R=F(C~}h4eYuXP&%80)8%oP-;Yi=tI%vJ5<xGz^mY@`eZ(z5V(jq9$ z(3C2BFFXtBxATVh@s3z71gz(EZ2u}_^M7tOS9yo+pW@uWq0n%~3%p0!*x2?gm<11) zlCm2DMtsd&4coJ)y5&Sot6^sVa5B-hu=qJ>Q)u4|H9er^EEj^jc>njCJJr}NEoZY* zWab&xWxc28_QX(VbK=%|-<HHNfxx88X<n^q(ih-~`Gmdwe<*;wTtV9#{_8=ZLGtdP zG>YXH@IW6%+(QFrbgfyN<0UxVE0%)Uxv@Kud#*`3@;o)hwe4(Dx3q5ATOH%t`H4Wo zX$Sr}uiN%V)4s|mIVSwk27!8hEV-&(H2pcuW^C|@#PM8f|9ZxTy7E2TH=wbE&J#H> z38<1n&(d$}fVlULSHe{N6$4-{lKtO5yo}3|II%X0i>@ZOg=mi7A1wPvA;$$0(`uP8 znEpMvuv3CRydODWI7T=lLW{=y1Ogni_sBR3)_#kI?bem+pj+KO1huYNyac4&|H$*2 z`fWMp-EN>^y)|)y?<gs$7bqW4lvJRF$Hel^%Nr_!K!8wGQYMJ#qXDs_ICQ_qXx6yq zlXaEIhr7<5@|icH5JbLDq4ZU2g)bVz!*Wd%CM_(+_VNl~l6U$n_qE&L<I=H|aW+X; zD9s2t0+hr9yy3`&LFB%!gz^R#n!n1uM*0(pa+G--SoX*NcKLX!Z8BFK0k5V=yXlWZ zWfUXgoBkE$eWSERR)B*Em&s9mK0r5eOiv2!FR%{4=kk8`aq#wXijnQcd}ikvnSP>2 z&Bj0DI>x<)d3CB-+4orw?uVesoMSOr_KZUm4`-LrC42o3p{rY75@xkFZpQi>l_Dq0 z=9udql+B5a`Oa?OUFT~&$s^a*cM2MC3e`6@w3cHg#KNEC)Hg~Uso&3PfsXTv%yyB{ zk53sL=T^8xx8ENE+N&B+6~6Tj@B_SV`BS9O;PQY=QI0*Ut@6P`f>BgKr22<5!qd)| zlU5XL##$>TlJ%q*6M5MjgUMa$*6wX)GGKb9Kg?IVeYX`>Dnv+8XYD7wEACjXRJKlp z6>!e`*fy-DONX|5#03T}ZLiI|nY_a#T$n2`?ioF}U?=}`hB9}7JW@l+BxiW<lH*(5 zLxsR0hQ)X3;EYpGLUufJEjF$QT3H3qCYe7g8c)Cdy2Ej!$#06HrT%;|*t2)o{rvc& zbY+2VbwQVyr?1i+sfrXV_%?q=rR=a=e&BR7#Q;@_OM6s6khoBxG-+(sl(Nfh=*IuT zlSxMag}Ht9<?C_#4AbiIG$Y%cmD>u{_vAvX-S3;}e4acxSrvWvTh}L@fq+FL>^ck_ z%Xv8KT#>(&v`!;e?-e|>pyaKZv$MUnXdUzttMEl82A|^rIcXK~>ol0C^{XL@0=es& z^B3=aj44|hXS>3DT3MpAmjCWt))sf|^Bfv$-IL3c5AIY5y&%zLC#$pSkTynR6egaU zwdL_tkB{)eN#(LB*51lyO?4c3-TvP_qdiA1UEE)>X($RX(@)RovU&!CMx!QLyHvHr z>mmL9S#e`?vLb`dzY_yP$t|^>X^d<r@hHX9QL#Yn(a^VQS2^|K=}qYa8=s&@Zsa#U zfAZl(-&Vn@d--dbm;1M|j(cfa|GePc&x@C}`}36rJOcye>z~9Y_QBq4#XKilEL>aI zbfQ(N1mhTd9Pv5B2D<KN!b9bXNYVt**j5IOv;1CyPMlB?Ajk%?FGz0~D9;`ou1=fU zxoLq&SWTCTk4^rxa$1vVWH7$}h{m+NFZOc8{A2G9-mAU8mJp)FpTC*juL~>)3Y_Jh z^v51GTd#gQ*_*ZIrCoCep=_m=D%!o+cuR(0sIaJ6n39%F)5C9Q_1(1oKH_BP5HoYU z--|`1fky_5lsOZ-K12pwZ&htC%fAyNGLpSb_;Mvq$ZPBm&|t#D1=4RbANv12n}qc2 wVU6N3FbC!FrU|n)d0A!PZtTRSc-`*7i~{24m9F#I5b#e&^NL2k8WR0~0YeEv#{d8T literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-03-custom-autofilter-1.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-03-custom-autofilter-1.png new file mode 100644 index 0000000000000000000000000000000000000000..0098d98a4999ed0671f357c568e6828dd8ba24b5 GIT binary patch literal 51786 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-03-custom-autofilter-2.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-03-custom-autofilter-2.png new file mode 100644 index 0000000000000000000000000000000000000000..96ff2cf0fc856013ef1c7d2d7ddb1a57fe6f508f GIT binary patch literal 53489 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 P_^0wf<9_ZvBj5iIv^nmF literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-04-dynamic-autofilter.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-04-dynamic-autofilter.png new file mode 100644 index 0000000000000000000000000000000000000000..6cb905d97fc573a4a4b53833f1cd5757b96a6bc3 GIT binary patch literal 111531 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 WFH2+MFc!=J0000<MNUMnLSTXiF-#8t literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-05-topten-autofilter-1.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-05-topten-autofilter-1.png new file mode 100644 index 0000000000000000000000000000000000000000..207e645753b056cf2c7abdbf47bf883f67d45830 GIT binary patch literal 53737 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-05-topten-autofilter-2.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-05-topten-autofilter-2.png new file mode 100644 index 0000000000000000000000000000000000000000..4db5125210ea59f29cb75ea60560e96286da0f72 GIT binary patch literal 22842 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 SU%${l{s*e0saOuN2>u_Pw-LPn literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Functions/FunctionListByCategory.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Functions/FunctionListByCategory.md new file mode 100644 index 0000000..4ceb1e4 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Functions/FunctionListByCategory.md @@ -0,0 +1,411 @@ +## CATEGORY_CUBE + + Excel Function | PHPExcel Function + --------------------|------------------------------------------- + CUBEKPIMEMBER | **\*\*\* Not yet Implemented** + CUBEMEMBER | **\*\*\* Not yet Implemented** + CUBEMEMBERPROPERTY | **\*\*\* Not yet Implemented** + CUBERANKEDMEMBER | **\*\*\* Not yet Implemented** + CUBESET | **\*\*\* Not yet Implemented** + CUBESETCOUNT | **\*\*\* Not yet Implemented** + CUBEVALUE | **\*\*\* Not yet Implemented** + +## CATEGORY_DATABASE + + Excel Function | PHPExcel Function + --------------------|------------------------------------------- + DAVERAGE | PHPExcel_Calculation_Database::DAVERAGE + DCOUNT | PHPExcel_Calculation_Database::DCOUNT + DCOUNTA | PHPExcel_Calculation_Database::DCOUNTA + DGET | PHPExcel_Calculation_Database::DGET + DMAX | PHPExcel_Calculation_Database::DMAX + DMIN | PHPExcel_Calculation_Database::DMIN + DPRODUCT | PHPExcel_Calculation_Database::DPRODUCT + DSTDEV | PHPExcel_Calculation_Database::DSTDEV + DSTDEVP | PHPExcel_Calculation_Database::DSTDEVP + DSUM | PHPExcel_Calculation_Database::DSUM + DVAR | PHPExcel_Calculation_Database::DVAR + DVARP | PHPExcel_Calculation_Database::DVARP + +## CATEGORY_DATE_AND_TIME + + Excel Function | PHPExcel Function + --------------------|------------------------------------------- + DATE | PHPExcel_Calculation_DateTime::DATE + DATEDIF | PHPExcel_Calculation_DateTime::DATEDIF + DATEVALUE | PHPExcel_Calculation_DateTime::DATEVALUE + DAY | PHPExcel_Calculation_DateTime::DAYOFMONTH + DAYS360 | PHPExcel_Calculation_DateTime::DAYS360 + EDATE | PHPExcel_Calculation_DateTime::EDATE + EOMONTH | PHPExcel_Calculation_DateTime::EOMONTH + HOUR | PHPExcel_Calculation_DateTime::HOUROFDAY + MINUTE | PHPExcel_Calculation_DateTime::MINUTEOFHOUR + MONTH | PHPExcel_Calculation_DateTime::MONTHOFYEAR + NETWORKDAYS | PHPExcel_Calculation_DateTime::NETWORKDAYS + NOW | PHPExcel_Calculation_DateTime::DATETIMENOW + SECOND | PHPExcel_Calculation_DateTime::SECONDOFMINUTE + TIME | PHPExcel_Calculation_DateTime::TIME + TIMEVALUE | PHPExcel_Calculation_DateTime::TIMEVALUE + TODAY | PHPExcel_Calculation_DateTime::DATENOW + WEEKDAY | PHPExcel_Calculation_DateTime::DAYOFWEEK + WEEKNUM | PHPExcel_Calculation_DateTime::WEEKOFYEAR + WORKDAY | PHPExcel_Calculation_DateTime::WORKDAY + YEAR | PHPExcel_Calculation_DateTime::YEAR + YEARFRAC | PHPExcel_Calculation_DateTime::YEARFRAC + +## CATEGORY_ENGINEERING + + Excel Function | PHPExcel Function + --------------------|------------------------------------------- + BESSELI | PHPExcel_Calculation_Engineering::BESSELI + BESSELJ | PHPExcel_Calculation_Engineering::BESSELJ + BESSELK | PHPExcel_Calculation_Engineering::BESSELK + BESSELY | PHPExcel_Calculation_Engineering::BESSELY + BIN2DEC | PHPExcel_Calculation_Engineering::BINTODEC + BIN2HEX | PHPExcel_Calculation_Engineering::BINTOHEX + BIN2OCT | PHPExcel_Calculation_Engineering::BINTOOCT + COMPLEX | PHPExcel_Calculation_Engineering::COMPLEX + CONVERT | PHPExcel_Calculation_Engineering::CONVERTUOM + DEC2BIN | PHPExcel_Calculation_Engineering::DECTOBIN + DEC2HEX | PHPExcel_Calculation_Engineering::DECTOHEX + DEC2OCT | PHPExcel_Calculation_Engineering::DECTOOCT + DELTA | PHPExcel_Calculation_Engineering::DELTA + ERF | PHPExcel_Calculation_Engineering::ERF + ERFC | PHPExcel_Calculation_Engineering::ERFC + GESTEP | PHPExcel_Calculation_Engineering::GESTEP + HEX2BIN | PHPExcel_Calculation_Engineering::HEXTOBIN + HEX2DEC | PHPExcel_Calculation_Engineering::HEXTODEC + HEX2OCT | PHPExcel_Calculation_Engineering::HEXTOOCT + IMABS | PHPExcel_Calculation_Engineering::IMABS + IMAGINARY | PHPExcel_Calculation_Engineering::IMAGINARY + IMARGUMENT | PHPExcel_Calculation_Engineering::IMARGUMENT + IMCONJUGATE | PHPExcel_Calculation_Engineering::IMCONJUGATE + IMCOS | PHPExcel_Calculation_Engineering::IMCOS + IMDIV | PHPExcel_Calculation_Engineering::IMDIV + IMEXP | PHPExcel_Calculation_Engineering::IMEXP + IMLN | PHPExcel_Calculation_Engineering::IMLN + IMLOG10 | PHPExcel_Calculation_Engineering::IMLOG10 + IMLOG2 | PHPExcel_Calculation_Engineering::IMLOG2 + IMPOWER | PHPExcel_Calculation_Engineering::IMPOWER + IMPRODUCT | PHPExcel_Calculation_Engineering::IMPRODUCT + IMREAL | PHPExcel_Calculation_Engineering::IMREAL + IMSIN | PHPExcel_Calculation_Engineering::IMSIN + IMSQRT | PHPExcel_Calculation_Engineering::IMSQRT + IMSUB | PHPExcel_Calculation_Engineering::IMSUB + IMSUM | PHPExcel_Calculation_Engineering::IMSUM + OCT2BIN | PHPExcel_Calculation_Engineering::OCTTOBIN + OCT2DEC | PHPExcel_Calculation_Engineering::OCTTODEC + OCT2HEX | PHPExcel_Calculation_Engineering::OCTTOHEX + +## CATEGORY_FINANCIAL + + Excel Function | PHPExcel Function + --------------------|------------------------------------------- + ACCRINT | PHPExcel_Calculation_Financial::ACCRINT + ACCRINTM | PHPExcel_Calculation_Financial::ACCRINTM + AMORDEGRC | PHPExcel_Calculation_Financial::AMORDEGRC + AMORLINC | PHPExcel_Calculation_Financial::AMORLINC + COUPDAYBS | PHPExcel_Calculation_Financial::COUPDAYBS + COUPDAYS | PHPExcel_Calculation_Financial::COUPDAYS + COUPDAYSNC | PHPExcel_Calculation_Financial::COUPDAYSNC + COUPNCD | PHPExcel_Calculation_Financial::COUPNCD + COUPNUM | PHPExcel_Calculation_Financial::COUPNUM + COUPPCD | PHPExcel_Calculation_Financial::COUPPCD + CUMIPMT | PHPExcel_Calculation_Financial::CUMIPMT + CUMPRINC | PHPExcel_Calculation_Financial::CUMPRINC + DB | PHPExcel_Calculation_Financial::DB + DDB | PHPExcel_Calculation_Financial::DDB + DISC | PHPExcel_Calculation_Financial::DISC + DOLLARDE | PHPExcel_Calculation_Financial::DOLLARDE + DOLLARFR | PHPExcel_Calculation_Financial::DOLLARFR + DURATION | **\*\*\* Not yet Implemented** + EFFECT | PHPExcel_Calculation_Financial::EFFECT + FV | PHPExcel_Calculation_Financial::FV + FVSCHEDULE | PHPExcel_Calculation_Financial::FVSCHEDULE + INTRATE | PHPExcel_Calculation_Financial::INTRATE + IPMT | PHPExcel_Calculation_Financial::IPMT + IRR | PHPExcel_Calculation_Financial::IRR + ISPMT | PHPExcel_Calculation_Financial::ISPMT + MDURATION | **\*\*\* Not yet Implemented** + MIRR | PHPExcel_Calculation_Financial::MIRR + NOMINAL | PHPExcel_Calculation_Financial::NOMINAL + NPER | PHPExcel_Calculation_Financial::NPER + NPV | PHPExcel_Calculation_Financial::NPV + ODDFPRICE | **\*\*\* Not yet Implemented** + ODDFYIELD | **\*\*\* Not yet Implemented** + ODDLPRICE | **\*\*\* Not yet Implemented** + ODDLYIELD | **\*\*\* Not yet Implemented** + PMT | PHPExcel_Calculation_Financial::PMT + PPMT | PHPExcel_Calculation_Financial::PPMT + PRICE | PHPExcel_Calculation_Financial::PRICE + PRICEDISC | PHPExcel_Calculation_Financial::PRICEDISC + PRICEMAT | PHPExcel_Calculation_Financial::PRICEMAT + PV | PHPExcel_Calculation_Financial::PV + RATE | PHPExcel_Calculation_Financial::RATE + RECEIVED | PHPExcel_Calculation_Financial::RECEIVED + SLN | PHPExcel_Calculation_Financial::SLN + SYD | PHPExcel_Calculation_Financial::SYD + TBILLEQ | PHPExcel_Calculation_Financial::TBILLEQ + TBILLPRICE | PHPExcel_Calculation_Financial::TBILLPRICE + TBILLYIELD | PHPExcel_Calculation_Financial::TBILLYIELD + USDOLLAR | **\*\*\* Not yet Implemented** + VDB | **\*\*\* Not yet Implemented** + XIRR | PHPExcel_Calculation_Financial::XIRR + XNPV | PHPExcel_Calculation_Financial::XNPV + YIELD | **\*\*\* Not yet Implemented** + YIELDDISC | PHPExcel_Calculation_Financial::YIELDDISC + YIELDMAT | PHPExcel_Calculation_Financial::YIELDMAT + +## CATEGORY_INFORMATION + + Excel Function | PHPExcel Function + --------------------|------------------------------------------- + CELL | **\*\*\* Not yet Implemented** + ERROR.TYPE | PHPExcel_Calculation_Functions::ERROR_TYPE + INFO | **\*\*\* Not yet Implemented** + ISBLANK | PHPExcel_Calculation_Functions::IS_BLANK + ISERR | PHPExcel_Calculation_Functions::IS_ERR + ISERROR | PHPExcel_Calculation_Functions::IS_ERROR + ISEVEN | PHPExcel_Calculation_Functions::IS_EVEN + ISLOGICAL | PHPExcel_Calculation_Functions::IS_LOGICAL + ISNA | PHPExcel_Calculation_Functions::IS_NA + ISNONTEXT | PHPExcel_Calculation_Functions::IS_NONTEXT + ISNUMBER | PHPExcel_Calculation_Functions::IS_NUMBER + ISODD | PHPExcel_Calculation_Functions::IS_ODD + ISREF | **\*\*\* Not yet Implemented** + ISTEXT | PHPExcel_Calculation_Functions::IS_TEXT + N | PHPExcel_Calculation_Functions::N + NA | PHPExcel_Calculation_Functions::NA + TYPE | PHPExcel_Calculation_Functions::TYPE + VERSION | PHPExcel_Calculation_Functions::VERSION + +## CATEGORY_LOGICAL + + Excel Function | PHPExcel Function + --------------------|------------------------------------------- + AND | PHPExcel_Calculation_Logical::LOGICAL_AND + FALSE | PHPExcel_Calculation_Logical::FALSE + IF | PHPExcel_Calculation_Logical::STATEMENT_IF + IFERROR | PHPExcel_Calculation_Logical::IFERROR + NOT | PHPExcel_Calculation_Logical::NOT + OR | PHPExcel_Calculation_Logical::LOGICAL_OR + TRUE | PHPExcel_Calculation_Logical::TRUE + +## CATEGORY_LOOKUP_AND_REFERENCE + + Excel Function | PHPExcel Function + --------------------|------------------------------------------- + ADDRESS | PHPExcel_Calculation_LookupRef::CELL_ADDRESS + AREAS | **\*\*\* Not yet Implemented** + CHOOSE | PHPExcel_Calculation_LookupRef::CHOOSE + COLUMN | PHPExcel_Calculation_LookupRef::COLUMN + COLUMNS | PHPExcel_Calculation_LookupRef::COLUMNS + GETPIVOTDATA | **\*\*\* Not yet Implemented** + HLOOKUP | **\*\*\* Not yet Implemented** + HYPERLINK | PHPExcel_Calculation_LookupRef::HYPERLINK + INDEX | PHPExcel_Calculation_LookupRef::INDEX + INDIRECT | PHPExcel_Calculation_LookupRef::INDIRECT + LOOKUP | PHPExcel_Calculation_LookupRef::LOOKUP + MATCH | PHPExcel_Calculation_LookupRef::MATCH + OFFSET | PHPExcel_Calculation_LookupRef::OFFSET + ROW | PHPExcel_Calculation_LookupRef::ROW + ROWS | PHPExcel_Calculation_LookupRef::ROWS + RTD | **\*\*\* Not yet Implemented** + TRANSPOSE | PHPExcel_Calculation_LookupRef::TRANSPOSE + VLOOKUP | PHPExcel_Calculation_LookupRef::VLOOKUP + +## CATEGORY_MATH_AND_TRIG + + Excel Function | PHPExcel Function + --------------------|------------------------------------------- + ABS | abs + ACOS | acos + ACOSH | acosh + ASIN | asin + ASINH | asinh + ATAN | atan + ATAN2 | PHPExcel_Calculation_MathTrig::REVERSE_ATAN2 + ATANH | atanh + CEILING | PHPExcel_Calculation_MathTrig::CEILING + COMBIN | PHPExcel_Calculation_MathTrig::COMBIN + COS | cos + COSH | cosh + DEGREES | rad2deg + EVEN | PHPExcel_Calculation_MathTrig::EVEN + EXP | exp + FACT | PHPExcel_Calculation_MathTrig::FACT + FACTDOUBLE | PHPExcel_Calculation_MathTrig::FACTDOUBLE + FLOOR | PHPExcel_Calculation_MathTrig::FLOOR + GCD | PHPExcel_Calculation_MathTrig::GCD + INT | PHPExcel_Calculation_MathTrig::INT + LCM | PHPExcel_Calculation_MathTrig::LCM + LN | log + LOG | PHPExcel_Calculation_MathTrig::LOG_BASE + LOG10 | log10 + MDETERM | PHPExcel_Calculation_MathTrig::MDETERM + MINVERSE | PHPExcel_Calculation_MathTrig::MINVERSE + MMULT | PHPExcel_Calculation_MathTrig::MMULT + MOD | PHPExcel_Calculation_MathTrig::MOD + MROUND | PHPExcel_Calculation_MathTrig::MROUND + MULTINOMIAL | PHPExcel_Calculation_MathTrig::MULTINOMIAL + ODD | PHPExcel_Calculation_MathTrig::ODD + PI | pi + POWER | PHPExcel_Calculation_MathTrig::POWER + PRODUCT | PHPExcel_Calculation_MathTrig::PRODUCT + QUOTIENT | PHPExcel_Calculation_MathTrig::QUOTIENT + RADIANS | deg2rad + RAND | PHPExcel_Calculation_MathTrig::RAND + RANDBETWEEN | PHPExcel_Calculation_MathTrig::RAND + ROMAN | PHPExcel_Calculation_MathTrig::ROMAN + ROUND | round + ROUNDDOWN | PHPExcel_Calculation_MathTrig::ROUNDDOWN + ROUNDUP | PHPExcel_Calculation_MathTrig::ROUNDUP + SERIESSUM | PHPExcel_Calculation_MathTrig::SERIESSUM + SIGN | PHPExcel_Calculation_MathTrig::SIGN + SIN | sin + SINH | sinh + SQRT | sqrt + SQRTPI | PHPExcel_Calculation_MathTrig::SQRTPI + SUBTOTAL | PHPExcel_Calculation_MathTrig::SUBTOTAL + SUM | PHPExcel_Calculation_MathTrig::SUM + SUMIF | PHPExcel_Calculation_MathTrig::SUMIF + SUMIFS | **\*\*\* Not yet Implemented** + SUMPRODUCT | PHPExcel_Calculation_MathTrig::SUMPRODUCT + SUMSQ | PHPExcel_Calculation_MathTrig::SUMSQ + SUMX2MY2 | PHPExcel_Calculation_MathTrig::SUMX2MY2 + SUMX2PY2 | PHPExcel_Calculation_MathTrig::SUMX2PY2 + SUMXMY2 | PHPExcel_Calculation_MathTrig::SUMXMY2 + TAN | tan + TANH | tanh + TRUNC | PHPExcel_Calculation_MathTrig::TRUNC + +## CATEGORY_STATISTICAL + + Excel Function | PHPExcel Function + --------------------|------------------------------------------- + AVEDEV | PHPExcel_Calculation_Statistical::AVEDEV + AVERAGE | PHPExcel_Calculation_Statistical::AVERAGE + AVERAGEA | PHPExcel_Calculation_Statistical::AVERAGEA + AVERAGEIF | PHPExcel_Calculation_Statistical::AVERAGEIF + AVERAGEIFS | **\*\*\* Not yet Implemented** + BETADIST | PHPExcel_Calculation_Statistical::BETADIST + BETAINV | PHPExcel_Calculation_Statistical::BETAINV + BINOMDIST | PHPExcel_Calculation_Statistical::BINOMDIST + CHIDIST | PHPExcel_Calculation_Statistical::CHIDIST + CHIINV | PHPExcel_Calculation_Statistical::CHIINV + CHITEST | **\*\*\* Not yet Implemented** + CONFIDENCE | PHPExcel_Calculation_Statistical::CONFIDENCE + CORREL | PHPExcel_Calculation_Statistical::CORREL + COUNT | PHPExcel_Calculation_Statistical::COUNT + COUNTA | PHPExcel_Calculation_Statistical::COUNTA + COUNTBLANK | PHPExcel_Calculation_Statistical::COUNTBLANK + COUNTIF | PHPExcel_Calculation_Statistical::COUNTIF + COUNTIFS | **\*\*\* Not yet Implemented** + COVAR | PHPExcel_Calculation_Statistical::COVAR + CRITBINOM | PHPExcel_Calculation_Statistical::CRITBINOM + DEVSQ | PHPExcel_Calculation_Statistical::DEVSQ + EXPONDIST | PHPExcel_Calculation_Statistical::EXPONDIST + FDIST | **\*\*\* Not yet Implemented** + FINV | **\*\*\* Not yet Implemented** + FISHER | PHPExcel_Calculation_Statistical::FISHER + FISHERINV | PHPExcel_Calculation_Statistical::FISHERINV + FORECAST | PHPExcel_Calculation_Statistical::FORECAST + FREQUENCY | **\*\*\* Not yet Implemented** + FTEST | **\*\*\* Not yet Implemented** + GAMMADIST | PHPExcel_Calculation_Statistical::GAMMADIST + GAMMAINV | PHPExcel_Calculation_Statistical::GAMMAINV + GAMMALN | PHPExcel_Calculation_Statistical::GAMMALN + GEOMEAN | PHPExcel_Calculation_Statistical::GEOMEAN + GROWTH | PHPExcel_Calculation_Statistical::GROWTH + HARMEAN | PHPExcel_Calculation_Statistical::HARMEAN + HYPGEOMDIST | PHPExcel_Calculation_Statistical::HYPGEOMDIST + INTERCEPT | PHPExcel_Calculation_Statistical::INTERCEPT + KURT | PHPExcel_Calculation_Statistical::KURT + LARGE | PHPExcel_Calculation_Statistical::LARGE + LINEST | PHPExcel_Calculation_Statistical::LINEST + LOGEST | PHPExcel_Calculation_Statistical::LOGEST + LOGINV | PHPExcel_Calculation_Statistical::LOGINV + LOGNORMDIST | PHPExcel_Calculation_Statistical::LOGNORMDIST + MAX | PHPExcel_Calculation_Statistical::MAX + MAXA | PHPExcel_Calculation_Statistical::MAXA + MAXIF | PHPExcel_Calculation_Statistical::MAXIF + MEDIAN | PHPExcel_Calculation_Statistical::MEDIAN + MEDIANIF | **\*\*\* Not yet Implemented** + MIN | PHPExcel_Calculation_Statistical::MIN + MINA | PHPExcel_Calculation_Statistical::MINA + MINIF | PHPExcel_Calculation_Statistical::MINIF + MODE | PHPExcel_Calculation_Statistical::MODE + NEGBINOMDIST | PHPExcel_Calculation_Statistical::NEGBINOMDIST + NORMDIST | PHPExcel_Calculation_Statistical::NORMDIST + NORMINV | PHPExcel_Calculation_Statistical::NORMINV + NORMSDIST | PHPExcel_Calculation_Statistical::NORMSDIST + NORMSINV | PHPExcel_Calculation_Statistical::NORMSINV + PEARSON | PHPExcel_Calculation_Statistical::CORREL + PERCENTILE | PHPExcel_Calculation_Statistical::PERCENTILE + PERCENTRANK | PHPExcel_Calculation_Statistical::PERCENTRANK + PERMUT | PHPExcel_Calculation_Statistical::PERMUT + POISSON | PHPExcel_Calculation_Statistical::POISSON + PROB | **\*\*\* Not yet Implemented** + QUARTILE | PHPExcel_Calculation_Statistical::QUARTILE + RANK | PHPExcel_Calculation_Statistical::RANK + RSQ | PHPExcel_Calculation_Statistical::RSQ + SKEW | PHPExcel_Calculation_Statistical::SKEW + SLOPE | PHPExcel_Calculation_Statistical::SLOPE + SMALL | PHPExcel_Calculation_Statistical::SMALL + STANDARDIZE | PHPExcel_Calculation_Statistical::STANDARDIZE + STDEV | PHPExcel_Calculation_Statistical::STDEV + STDEVA | PHPExcel_Calculation_Statistical::STDEVA + STDEVP | PHPExcel_Calculation_Statistical::STDEVP + STDEVPA | PHPExcel_Calculation_Statistical::STDEVPA + STEYX | PHPExcel_Calculation_Statistical::STEYX + TDIST | PHPExcel_Calculation_Statistical::TDIST + TINV | PHPExcel_Calculation_Statistical::TINV + TREND | PHPExcel_Calculation_Statistical::TREND + TRIMMEAN | PHPExcel_Calculation_Statistical::TRIMMEAN + TTEST | **\*\*\* Not yet Implemented** + VAR | PHPExcel_Calculation_Statistical::VARFunc + VARA | PHPExcel_Calculation_Statistical::VARA + VARP | PHPExcel_Calculation_Statistical::VARP + VARPA | PHPExcel_Calculation_Statistical::VARPA + WEIBULL | PHPExcel_Calculation_Statistical::WEIBULL + ZTEST | PHPExcel_Calculation_Statistical::ZTEST + +## CATEGORY_TEXT_AND_DATA + + Excel Function | PHPExcel Function + --------------------|------------------------------------------- + ASC | **\*\*\* Not yet Implemented** + BAHTTEXT | **\*\*\* Not yet Implemented** + CHAR | PHPExcel_Calculation_TextData::CHARACTER + CLEAN | PHPExcel_Calculation_TextData::TRIMNONPRINTABLE + CODE | PHPExcel_Calculation_TextData::ASCIICODE + CONCATENATE | PHPExcel_Calculation_TextData::CONCATENATE + DOLLAR | PHPExcel_Calculation_TextData::DOLLAR + EXACT | **\*\*\* Not yet Implemented** + FIND | PHPExcel_Calculation_TextData::SEARCHSENSITIVE + FINDB | PHPExcel_Calculation_TextData::SEARCHSENSITIVE + FIXED | PHPExcel_Calculation_TextData::FIXEDFORMAT + JIS | **\*\*\* Not yet Implemented** + LEFT | PHPExcel_Calculation_TextData::LEFT + LEFTB | PHPExcel_Calculation_TextData::LEFT + LEN | PHPExcel_Calculation_TextData::STRINGLENGTH + LENB | PHPExcel_Calculation_TextData::STRINGLENGTH + LOWER | PHPExcel_Calculation_TextData::LOWERCASE + MID | PHPExcel_Calculation_TextData::MID + MIDB | PHPExcel_Calculation_TextData::MID + PHONETIC | **\*\*\* Not yet Implemented** + PROPER | PHPExcel_Calculation_TextData::PROPERCASE + REPLACE | PHPExcel_Calculation_TextData::REPLACE + REPLACEB | PHPExcel_Calculation_TextData::REPLACE + REPT | str_repeat + RIGHT | PHPExcel_Calculation_TextData::RIGHT + RIGHTB | PHPExcel_Calculation_TextData::RIGHT + SEARCH | PHPExcel_Calculation_TextData::SEARCHINSENSITIVE + SEARCHB | PHPExcel_Calculation_TextData::SEARCHINSENSITIVE + SUBSTITUTE | PHPExcel_Calculation_TextData::SUBSTITUTE + T | PHPExcel_Calculation_TextData::RETURNSTRING + TEXT | PHPExcel_Calculation_TextData::TEXTFORMAT + TRIM | PHPExcel_Calculation_TextData::TRIMSPACES + UPPER | PHPExcel_Calculation_TextData::UPPERCASE + VALUE | **\*\*\* Not yet Implemented** + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Functions/FunctionListByName.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Functions/FunctionListByName.md new file mode 100644 index 0000000..b69e454 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Functions/FunctionListByName.md @@ -0,0 +1,485 @@ +#A + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + ABS | CATEGORY_MATH_AND_TRIG | abs + ACCRINT | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::ACCRINT + ACCRINTM | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::ACCRINTM + ACOS | CATEGORY_MATH_AND_TRIG | acos + ACOSH | CATEGORY_MATH_AND_TRIG | acosh + ADDRESS | CATEGORY_LOOKUP_AND_REFERENCE | PHPExcel_Calculation_LookupRef::CELL_ADDRESS + AMORDEGRC | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::AMORDEGRC + AMORLINC | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::AMORLINC + AND | CATEGORY_LOGICAL | PHPExcel_Calculation_Logical::LOGICAL_AND + AREAS | CATEGORY_LOOKUP_AND_REFERENCE | **\*\*\* Not yet Implemented** + ASC | CATEGORY_TEXT_AND_DATA | **\*\*\* Not yet Implemented** + ASIN | CATEGORY_MATH_AND_TRIG | asin + ASINH | CATEGORY_MATH_AND_TRIG | asinh + ATAN | CATEGORY_MATH_AND_TRIG | atan + ATAN2 | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::REVERSE_ATAN2 + ATANH | CATEGORY_MATH_AND_TRIG | atanh + AVEDEV | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::AVEDEV + AVERAGE | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::AVERAGE + AVERAGEA | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::AVERAGEA + AVERAGEIF | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::AVERAGEIF + AVERAGEIFS | CATEGORY_STATISTICAL | **\*\*\* Not yet Implemented** + +#B + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + BAHTTEXT | CATEGORY_TEXT_AND_DATA | **\*\*\* Not yet Implemented** + BESSELI | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::BESSELI + BESSELJ | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::BESSELJ + BESSELK | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::BESSELK + BESSELY | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::BESSELY + BETADIST | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::BETADIST + BETAINV | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::BETAINV + BIN2DEC | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::BINTODEC + BIN2HEX | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::BINTOHEX + BIN2OCT | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::BINTOOCT + BINOMDIST | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::BINOMDIST + +#C + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + CEILING | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::CEILING + CELL | CATEGORY_INFORMATION | **\*\*\* Not yet Implemented** + CHAR | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::CHARACTER + CHIDIST | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::CHIDIST + CHIINV | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::CHIINV + CHITEST | CATEGORY_STATISTICAL | **\*\*\* Not yet Implemented** + CHOOSE | CATEGORY_LOOKUP_AND_REFERENCE | PHPExcel_Calculation_LookupRef::CHOOSE + CLEAN | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::TRIMNONPRINTABLE + CODE | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::ASCIICODE + COLUMN | CATEGORY_LOOKUP_AND_REFERENCE | PHPExcel_Calculation_LookupRef::COLUMN + COLUMNS | CATEGORY_LOOKUP_AND_REFERENCE | PHPExcel_Calculation_LookupRef::COLUMNS + COMBIN | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::COMBIN + COMPLEX | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::COMPLEX + CONCATENATE | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::CONCATENATE + CONFIDENCE | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::CONFIDENCE + CONVERT | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::CONVERTUOM + CORREL | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::CORREL + COS | CATEGORY_MATH_AND_TRIG | cos + COSH | CATEGORY_MATH_AND_TRIG | cosh + COUNT | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::COUNT + COUNTA | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::COUNTA + COUNTBLANK | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::COUNTBLANK + COUNTIF | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::COUNTIF + COUNTIFS | CATEGORY_STATISTICAL | **\*\*\* Not yet Implemented** + COUPDAYBS | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::COUPDAYBS + COUPDAYS | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::COUPDAYS + COUPDAYSNC | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::COUPDAYSNC + COUPNCD | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::COUPNCD + COUPNUM | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::COUPNUM + COUPPCD | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::COUPPCD + COVAR | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::COVAR + CRITBINOM | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::CRITBINOM + CUBEKPIMEMBER | CATEGORY_CUBE | **\*\*\* Not yet Implemented** + CUBEMEMBER | CATEGORY_CUBE | **\*\*\* Not yet Implemented** + CUBEMEMBERPROPERTY | CATEGORY_CUBE | **\*\*\* Not yet Implemented** + CUBERANKEDMEMBER | CATEGORY_CUBE | **\*\*\* Not yet Implemented** + CUBESET | CATEGORY_CUBE | **\*\*\* Not yet Implemented** + CUBESETCOUNT | CATEGORY_CUBE | **\*\*\* Not yet Implemented** + CUBEVALUE | CATEGORY_CUBE | **\*\*\* Not yet Implemented** + CUMIPMT | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::CUMIPMT + CUMPRINC | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::CUMPRINC + +#D + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + DATE | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::DATE + DATEDIF | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::DATEDIF + DATEVALUE | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::DATEVALUE + DAVERAGE | CATEGORY_DATABASE | PHPExcel_Calculation_Database::DAVERAGE + DAY | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::DAYOFMONTH + DAYS360 | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::DAYS360 + DB | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::DB + DCOUNT | CATEGORY_DATABASE | PHPExcel_Calculation_Database::DCOUNT + DCOUNTA | CATEGORY_DATABASE | PHPExcel_Calculation_Database::DCOUNTA + DDB | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::DDB + DEC2BIN | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::DECTOBIN + DEC2HEX | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::DECTOHEX + DEC2OCT | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::DECTOOCT + DEGREES | CATEGORY_MATH_AND_TRIG | rad2deg + DELTA | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::DELTA + DEVSQ | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::DEVSQ + DGET | CATEGORY_DATABASE | PHPExcel_Calculation_Database::DGET + DISC | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::DISC + DMAX | CATEGORY_DATABASE | PHPExcel_Calculation_Database::DMAX + DMIN | CATEGORY_DATABASE | PHPExcel_Calculation_Database::DMIN + DOLLAR | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::DOLLAR + DOLLARDE | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::DOLLARDE + DOLLARFR | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::DOLLARFR + DPRODUCT | CATEGORY_DATABASE | PHPExcel_Calculation_Database::DPRODUCT + DSTDEV | CATEGORY_DATABASE | PHPExcel_Calculation_Database::DSTDEV + DSTDEVP | CATEGORY_DATABASE | PHPExcel_Calculation_Database::DSTDEVP + DSUM | CATEGORY_DATABASE | PHPExcel_Calculation_Database::DSUM + DURATION | CATEGORY_FINANCIAL | **\*\*\* Not yet Implemented** + DVAR | CATEGORY_DATABASE | PHPExcel_Calculation_Database::DVAR + DVARP | CATEGORY_DATABASE | PHPExcel_Calculation_Database::DVARP + +#E + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + EDATE | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::EDATE + EFFECT | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::EFFECT + EOMONTH | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::EOMONTH + ERF | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::ERF + ERFC | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::ERFC + ERROR.TYPE | CATEGORY_INFORMATION | PHPExcel_Calculation_Functions::ERROR_TYPE + EVEN | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::EVEN + EXACT | CATEGORY_TEXT_AND_DATA | **\*\*\* Not yet Implemented** + EXP | CATEGORY_MATH_AND_TRIG | exp + EXPONDIST | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::EXPONDIST + +#F + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + FACT | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::FACT + FACTDOUBLE | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::FACTDOUBLE + FALSE | CATEGORY_LOGICAL | PHPExcel_Calculation_Logical::FALSE + FDIST | CATEGORY_STATISTICAL | **\*\*\* Not yet Implemented** + FIND | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::SEARCHSENSITIVE + FINDB | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::SEARCHSENSITIVE + FINV | CATEGORY_STATISTICAL | **\*\*\* Not yet Implemented** + FISHER | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::FISHER + FISHERINV | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::FISHERINV + FIXED | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::FIXEDFORMAT + FLOOR | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::FLOOR + FORECAST | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::FORECAST + FREQUENCY | CATEGORY_STATISTICAL | **\*\*\* Not yet Implemented** + FTEST | CATEGORY_STATISTICAL | **\*\*\* Not yet Implemented** + FV | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::FV + FVSCHEDULE | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::FVSCHEDULE + +#G + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + GAMMADIST | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::GAMMADIST + GAMMAINV | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::GAMMAINV + GAMMALN | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::GAMMALN + GCD | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::GCD + GEOMEAN | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::GEOMEAN + GESTEP | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::GESTEP + GETPIVOTDATA | CATEGORY_LOOKUP_AND_REFERENCE | **\*\*\* Not yet Implemented** + GROWTH | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::GROWTH + +#H + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + HARMEAN | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::HARMEAN + HEX2BIN | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::HEXTOBIN + HEX2DEC | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::HEXTODEC + HEX2OCT | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::HEXTOOCT + HLOOKUP | CATEGORY_LOOKUP_AND_REFERENCE | **\*\*\* Not yet Implemented** + HOUR | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::HOUROFDAY + HYPERLINK | CATEGORY_LOOKUP_AND_REFERENCE | PHPExcel_Calculation_LookupRef::HYPERLINK + HYPGEOMDIST | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::HYPGEOMDIST + +#I + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + IF | CATEGORY_LOGICAL | PHPExcel_Calculation_Logical::STATEMENT_IF + IFERROR | CATEGORY_LOGICAL | PHPExcel_Calculation_Logical::IFERROR + IMABS | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMABS + IMAGINARY | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMAGINARY + IMARGUMENT | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMARGUMENT + IMCONJUGATE | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMCONJUGATE + IMCOS | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMCOS + IMDIV | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMDIV + IMEXP | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMEXP + IMLN | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMLN + IMLOG10 | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMLOG10 + IMLOG2 | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMLOG2 + IMPOWER | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMPOWER + IMPRODUCT | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMPRODUCT + IMREAL | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMREAL + IMSIN | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMSIN + IMSQRT | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMSQRT + IMSUB | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMSUB + IMSUM | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::IMSUM + INDEX | CATEGORY_LOOKUP_AND_REFERENCE | PHPExcel_Calculation_LookupRef::INDEX + INDIRECT | CATEGORY_LOOKUP_AND_REFERENCE | PHPExcel_Calculation_LookupRef::INDIRECT + INFO | CATEGORY_INFORMATION | **\*\*\* Not yet Implemented** + INT | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::INT + INTERCEPT | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::INTERCEPT + INTRATE | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::INTRATE + IPMT | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::IPMT + IRR | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::IRR + ISBLANK | CATEGORY_INFORMATION | PHPExcel_Calculation_Functions::IS_BLANK + ISERR | CATEGORY_INFORMATION | PHPExcel_Calculation_Functions::IS_ERR + ISERROR | CATEGORY_INFORMATION | PHPExcel_Calculation_Functions::IS_ERROR + ISEVEN | CATEGORY_INFORMATION | PHPExcel_Calculation_Functions::IS_EVEN + ISLOGICAL | CATEGORY_INFORMATION | PHPExcel_Calculation_Functions::IS_LOGICAL + ISNA | CATEGORY_INFORMATION | PHPExcel_Calculation_Functions::IS_NA + ISNONTEXT | CATEGORY_INFORMATION | PHPExcel_Calculation_Functions::IS_NONTEXT + ISNUMBER | CATEGORY_INFORMATION | PHPExcel_Calculation_Functions::IS_NUMBER + ISODD | CATEGORY_INFORMATION | PHPExcel_Calculation_Functions::IS_ODD + ISPMT | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::ISPMT + ISREF | CATEGORY_INFORMATION | **\*\*\* Not yet Implemented** + ISTEXT | CATEGORY_INFORMATION | PHPExcel_Calculation_Functions::IS_TEXT + +#J + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + JIS | CATEGORY_TEXT_AND_DATA | **\*\*\* Not yet Implemented** + +#K + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + KURT | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::KURT + +#L + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + LARGE | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::LARGE + LCM | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::LCM + LEFT | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::LEFT + LEFTB | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::LEFT + LEN | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::STRINGLENGTH + LENB | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::STRINGLENGTH + LINEST | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::LINEST + LN | CATEGORY_MATH_AND_TRIG | log + LOG | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::LOG_BASE + LOG10 | CATEGORY_MATH_AND_TRIG | log10 + LOGEST | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::LOGEST + LOGINV | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::LOGINV + LOGNORMDIST | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::LOGNORMDIST + LOOKUP | CATEGORY_LOOKUP_AND_REFERENCE | PHPExcel_Calculation_LookupRef::LOOKUP + LOWER | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::LOWERCASE + +#M + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + MATCH | CATEGORY_LOOKUP_AND_REFERENCE | PHPExcel_Calculation_LookupRef::MATCH + MAX | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::MAX + MAXA | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::MAXA + MAXIF | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::MAXIF + MDETERM | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::MDETERM + MDURATION | CATEGORY_FINANCIAL | **\*\*\* Not yet Implemented** + MEDIAN | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::MEDIAN + MEDIANIF | CATEGORY_STATISTICAL | **\*\*\* Not yet Implemented** + MID | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::MID + MIDB | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::MID + MIN | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::MIN + MINA | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::MINA + MINIF | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::MINIF + MINUTE | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::MINUTEOFHOUR + MINVERSE | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::MINVERSE + MIRR | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::MIRR + MMULT | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::MMULT + MOD | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::MOD + MODE | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::MODE + MONTH | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::MONTHOFYEAR + MROUND | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::MROUND + MULTINOMIAL | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::MULTINOMIAL + +#N + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + N | CATEGORY_INFORMATION | PHPExcel_Calculation_Functions::N + NA | CATEGORY_INFORMATION | PHPExcel_Calculation_Functions::NA + NEGBINOMDIST | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::NEGBINOMDIST + NETWORKDAYS | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::NETWORKDAYS + NOMINAL | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::NOMINAL + NORMDIST | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::NORMDIST + NORMINV | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::NORMINV + NORMSDIST | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::NORMSDIST + NORMSINV | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::NORMSINV + NOT | CATEGORY_LOGICAL | PHPExcel_Calculation_Logical::NOT + NOW | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::DATETIMENOW + NPER | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::NPER + NPV | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::NPV + +#O + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + OCT2BIN | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::OCTTOBIN + OCT2DEC | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::OCTTODEC + OCT2HEX | CATEGORY_ENGINEERING | PHPExcel_Calculation_Engineering::OCTTOHEX + ODD | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::ODD + ODDFPRICE | CATEGORY_FINANCIAL | **\*\*\* Not yet Implemented** + ODDFYIELD | CATEGORY_FINANCIAL | **\*\*\* Not yet Implemented** + ODDLPRICE | CATEGORY_FINANCIAL | **\*\*\* Not yet Implemented** + ODDLYIELD | CATEGORY_FINANCIAL | **\*\*\* Not yet Implemented** + OFFSET | CATEGORY_LOOKUP_AND_REFERENCE | PHPExcel_Calculation_LookupRef::OFFSET + OR | CATEGORY_LOGICAL | PHPExcel_Calculation_Logical::LOGICAL_OR + +#P + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + PEARSON | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::CORREL + PERCENTILE | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::PERCENTILE + PERCENTRANK | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::PERCENTRANK + PERMUT | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::PERMUT + PHONETIC | CATEGORY_TEXT_AND_DATA | **\*\*\* Not yet Implemented** + PI | CATEGORY_MATH_AND_TRIG | pi + PMT | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::PMT + POISSON | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::POISSON + POWER | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::POWER + PPMT | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::PPMT + PRICE | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::PRICE + PRICEDISC | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::PRICEDISC + PRICEMAT | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::PRICEMAT + PROB | CATEGORY_STATISTICAL | **\*\*\* Not yet Implemented** + PRODUCT | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::PRODUCT + PROPER | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::PROPERCASE + PV | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::PV + +#Q + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + QUARTILE | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::QUARTILE + QUOTIENT | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::QUOTIENT + +#R + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + RADIANS | CATEGORY_MATH_AND_TRIG | deg2rad + RAND | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::RAND + RANDBETWEEN | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::RAND + RANK | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::RANK + RATE | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::RATE + RECEIVED | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::RECEIVED + REPLACE | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::REPLACE + REPLACEB | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::REPLACE + REPT | CATEGORY_TEXT_AND_DATA | str_repeat + RIGHT | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::RIGHT + RIGHTB | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::RIGHT + ROMAN | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::ROMAN + ROUND | CATEGORY_MATH_AND_TRIG | round + ROUNDDOWN | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::ROUNDDOWN + ROUNDUP | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::ROUNDUP + ROW | CATEGORY_LOOKUP_AND_REFERENCE | PHPExcel_Calculation_LookupRef::ROW + ROWS | CATEGORY_LOOKUP_AND_REFERENCE | PHPExcel_Calculation_LookupRef::ROWS + RSQ | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::RSQ + RTD | CATEGORY_LOOKUP_AND_REFERENCE | **\*\*\* Not yet Implemented** + +#S + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + SEARCH | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::SEARCHINSENSITIVE + SEARCHB | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::SEARCHINSENSITIVE + SECOND | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::SECONDOFMINUTE + SERIESSUM | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::SERIESSUM + SIGN | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::SIGN + SIN | CATEGORY_MATH_AND_TRIG | sin + SINH | CATEGORY_MATH_AND_TRIG | sinh + SKEW | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::SKEW + SLN | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::SLN + SLOPE | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::SLOPE + SMALL | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::SMALL + SQRT | CATEGORY_MATH_AND_TRIG | sqrt + SQRTPI | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::SQRTPI + STANDARDIZE | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::STANDARDIZE + STDEV | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::STDEV + STDEVA | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::STDEVA + STDEVP | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::STDEVP + STDEVPA | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::STDEVPA + STEYX | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::STEYX + SUBSTITUTE | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::SUBSTITUTE + SUBTOTAL | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::SUBTOTAL + SUM | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::SUM + SUMIF | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::SUMIF + SUMIFS | CATEGORY_MATH_AND_TRIG | **\*\*\* Not yet Implemented** + SUMPRODUCT | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::SUMPRODUCT + SUMSQ | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::SUMSQ + SUMX2MY2 | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::SUMX2MY2 + SUMX2PY2 | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::SUMX2PY2 + SUMXMY2 | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::SUMXMY2 + SYD | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::SYD + +#T + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + T | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::RETURNSTRING + TAN | CATEGORY_MATH_AND_TRIG | tan + TANH | CATEGORY_MATH_AND_TRIG | tanh + TBILLEQ | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::TBILLEQ + TBILLPRICE | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::TBILLPRICE + TBILLYIELD | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::TBILLYIELD + TDIST | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::TDIST + TEXT | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::TEXTFORMAT + TIME | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::TIME + TIMEVALUE | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::TIMEVALUE + TINV | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::TINV + TODAY | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::DATENOW + TRANSPOSE | CATEGORY_LOOKUP_AND_REFERENCE | PHPExcel_Calculation_LookupRef::TRANSPOSE + TREND | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::TREND + TRIM | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::TRIMSPACES + TRIMMEAN | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::TRIMMEAN + TRUE | CATEGORY_LOGICAL | PHPExcel_Calculation_Logical::TRUE + TRUNC | CATEGORY_MATH_AND_TRIG | PHPExcel_Calculation_MathTrig::TRUNC + TTEST | CATEGORY_STATISTICAL | **\*\*\* Not yet Implemented** + TYPE | CATEGORY_INFORMATION | PHPExcel_Calculation_Functions::TYPE + +#U + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + UPPER | CATEGORY_TEXT_AND_DATA | PHPExcel_Calculation_TextData::UPPERCASE + USDOLLAR | CATEGORY_FINANCIAL | **\*\*\* Not yet Implemented** + +#V + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + VALUE | CATEGORY_TEXT_AND_DATA | **\*\*\* Not yet Implemented** + VAR | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::VARFunc + VARA | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::VARA + VARP | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::VARP + VARPA | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::VARPA + VDB | CATEGORY_FINANCIAL | **\*\*\* Not yet Implemented** + VERSION | CATEGORY_INFORMATION | PHPExcel_Calculation_Functions::VERSION + VLOOKUP | CATEGORY_LOOKUP_AND_REFERENCE | PHPExcel_Calculation_LookupRef::VLOOKUP + +#W + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + WEEKDAY | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::DAYOFWEEK + WEEKNUM | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::WEEKOFYEAR + WEIBULL | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::WEIBULL + WORKDAY | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::WORKDAY + +#X + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + XIRR | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::XIRR + XNPV | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::XNPV + +#Y + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + YEAR | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::YEAR + YEARFRAC | CATEGORY_DATE_AND_TIME | PHPExcel_Calculation_DateTime::YEARFRAC + YIELD | CATEGORY_FINANCIAL | **\*\*\* Not yet Implemented** + YIELDDISC | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::YIELDDISC + YIELDMAT | CATEGORY_FINANCIAL | PHPExcel_Calculation_Financial::YIELDMAT + +#Z + + Excel Function | Category | PHPExcel Function + --------------------|--------------------------------|------------------------------------------- + ZTEST | CATEGORY_STATISTICAL | PHPExcel_Calculation_Statistical::ZTEST diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/01-Getting-Started.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/01-Getting-Started.md new file mode 100644 index 0000000..262f1ea --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/01-Getting-Started.md @@ -0,0 +1,179 @@ +# PHPExcel Developer Documentation + + +## Prerequisites, Installation, FAQ and Links + +### Software requirements + +The following software is required to develop using PHPExcel: + + - PHP version 5.2.0 or newer + - PHP extension php_zip enabled [^phpzip_footnote] + - PHP extension php_xml enabled + - PHP extension php_gd2 enabled (if not compiled in) + + +### Installation instructions + +Installation is quite easy: copy the contents of the Classes folder to any location within your application source directories. + +*Example:* + +If your web root folder is /var/www/ you may want to create a subfolder called /var/www/Classes/ and copy the files into that folder so you end up with files: + + /var/www/Classes/PHPExcel.php + /var/www/Classes/PHPExcel/Calculation.php + /var/www/Classes/PHPExcel/Cell.php + ... + + +### Getting started + +A good way to get started is to run some of the tests included in the download. +Copy the "Examples" folder next to your "Classes" folder from above so you end up with: + + /var/www/Examples/01simple.php + /var/www/Examples/02types.php + ... + +Start running the tests by pointing your browser to the test scripts: + +http://example.com/Tests/01simple.php +http://example.com/Tests/02types.php +... + +**Note:** It may be necessary to modify the include/require statements at the beginning of each of the test scripts if your "Classes" folder from above is named differently. + + +### Useful links and tools + +There are some links and tools which are very useful when developing using PHPExcel. Please refer to the [PHPExcel CodePlex pages][2] for an update version of the list below. + +#### OpenXML / SpreadsheetML + + - __File format documentation__ +[http://www.ecma-international.org/news/TC45_current_work/TC45_available_docs.htm][3] + - __OpenXML Explained e-book__ +[http://openxmldeveloper.org/articles/1970.aspx][4] + - __Microsoft Office Compatibility Pack for Word, Excel, and PowerPoint 2007 File Formats__ +[http://www.microsoft.com/downloads/details.aspx?familyid=941b3470-3ae9-4aee-8f43-c6bb74cd1466&displaylang=en][5] + - __OpenXML Package Explorer__ +[http://www.codeplex.com/PackageExplorer/][6] + + +### Frequently asked questions + +The up-to-date F.A.Q. page for PHPExcel can be found on [http://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=FAQ&referringTitle=Requirements][7]. + +##### There seems to be a problem with character encoding... + +It is necessary to use UTF-8 encoding for all texts in PHPExcel. If the script uses different encoding then you can convert those texts with PHP's iconv() or mb_convert_encoding() functions. + +##### PHP complains about ZipArchive not being found + +Make sure you meet all requirements, especially php_zip extension should be enabled. + +The ZipArchive class is only required when reading or writing formats that use Zip compression (Excel2007 and OOCalc). Since version 1.7.6 the PCLZip library has been bundled with PHPExcel as an alternative to the ZipArchive class. + +This can be enabled by calling: +```php +PHPExcel_Settings::setZipClass(PHPExcel_Settings::PCLZIP); +``` +*before* calling the save method of the Excel2007 Writer. + +You can revert to using ZipArchive by calling: +```php +PHPExcel_Settings::setZipClass(PHPExcel_Settings::ZIPARCHIVE); +``` +At present, this only allows you to write Excel2007 files without the need for ZipArchive (not to read Excel2007 or OOCalc) + +##### Excel 2007 cannot open the file generated by PHPExcel_Writer_2007 on Windows + +"Excel found unreadable content in '*.xlsx'. Do you want to recover the contents of this workbook? If you trust the source of this workbook, click Yes." + +Some older versions of the 5.2.x php_zip extension on Windows contain an error when creating ZIP files. The version that can be found on [http://snaps.php.net/win32/php5.2-win32-latest.zip][8] should work at all times. + +Alternatively, upgrading to at least PHP 5.2.9 should solve the problem. + +If you can't locate a clean copy of ZipArchive, then you can use the PCLZip library as an alternative when writing Excel2007 files, as described above. + +##### Fatal error: Allowed memory size of xxx bytes exhausted (tried to allocate yyy bytes) in zzz on line aaa + +PHPExcel holds an "in memory" representation of a spreadsheet, so it is susceptible to PHP's memory limitations. The memory made available to PHP can be increased by editing the value of the memory_limit directive in your php.ini file, or by using ini_set('memory_limit', '128M') within your code (ISP permitting). + +Some Readers and Writers are faster than others, and they also use differing amounts of memory. You can find some indication of the relative performance and memory usage for the different Readers and Writers, over the different versions of PHPExcel, on the [discussion board][9]. + +If you've already increased memory to a maximum, or can't change your memory limit, then [this discussion][10] on the board describes some of the methods that can be applied to reduce the memory usage of your scripts using PHPExcel. + +##### Protection on my worksheet is not working? + +When you make use of any of the worksheet protection features (e.g. cell range protection, prohibiting deleting rows, ...), make sure you enable worksheet security. This can for example be done like this: +```php +$objPHPExcel->getActiveSheet()->getProtection()->setSheet(true); +``` + +##### Feature X is not working with PHPExcel_Reader_Y / PHPExcel_Writer_Z + +Not all features of PHPExcel are implemented in all of the Reader / Writer classes. This is mostly due to underlying libraries not supporting a specific feature or not having implemented a specific feature. + +For example autofilter is not implemented in PEAR Spreadsheet_Excel_writer, which is the base of our Excel5 writer. + +We are slowly building up a list of features, together with the different readers and writers that support them, in the "Functionality Cross-Reference.xls" file in the /Documentation folder. + +##### Formulas don't seem to be calculated in Excel2003 using compatibility pack? + +This is normal behaviour of the compatibility pack, Excel2007 displays this correctly. Use PHPExcel_Writer_Excel5 if you really need calculated values, or force recalculation in Excel2003. + +##### Setting column width is not 100% accurate + +Trying to set column width, I experience one problem. When I open the file in Excel, the actual width is 0.71 less than it should be. + +The short answer is that PHPExcel uses a measure where padding is included. See section: "Setting a column's width" for more details. + +##### How do I use PHPExcel with my framework + + - There are some instructions for using PHPExcel with Joomla on the [Joomla message board][11] + - A page of advice on using [PHPExcel in the Yii framework][12] + - [The Bakery][13] has some helper classes for reading and writing with PHPExcel within CakePHP + - Integrating [PHPExcel into Kohana 3][14] and [?????????? PHPExcel ? Kohana Framework][15] + - Using [PHPExcel with Typo3][16] + +##### Joomla Autoloader interferes with PHPExcel Autoloader + +Thanks to peterrlynch for the following advice on resolving issues between the [PHPExcel autoloader and Joomla Autoloader][17] + + +#### Tutorials + + - __English PHPExcel tutorial__ + [http://openxmldeveloper.org][18] + - __French PHPExcel tutorial__ + [http://g-ernaelsten.developpez.com/tutoriels/excel2007/][19] + - __A Japanese-language introduction to PHPExcel__ + [http://journal.mycom.co.jp/articles/2009/03/06/phpexcel/index.html][21] + + + [2]: http://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=Documents&referringTitle=Home + [3]: http://www.ecma-international.org/news/TC45_current_work/TC45_available_docs.htm + [4]: http://openxmldeveloper.org/articles/1970.aspx + [5]: http://www.microsoft.com/downloads/details.aspx?familyid=941b3470-3ae9-4aee-8f43-c6bb74cd1466&displaylang=en + [6]: http://www.codeplex.com/PackageExplorer/ + [7]: http://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=FAQ&referringTitle=Requirements + [8]: http://snaps.php.net/win32/php5.2-win32-latest.zip + [9]: http://phpexcel.codeplex.com/Thread/View.aspx?ThreadId=234150 + [10]: http://phpexcel.codeplex.com/Thread/View.aspx?ThreadId=242712 + [11]: http://http:/forum.joomla.org/viewtopic.php?f=304&t=433060 + [12]: http://www.yiiframework.com/wiki/101/how-to-use-phpexcel-external-library-with-yii/ + [13]: http://bakery.cakephp.org/articles/melgior/2010/01/26/simple-excel-spreadsheet-helper + [14]: http://www.flynsarmy.com/2010/07/phpexcel-module-for-kohana-3/ + [15]: http://szpargalki.blogspot.com/2011/02/phpexcel-kohana-framework.html + [16]: http://typo3.org/documentation/document-library/extension-manuals/phpexcel_library/1.1.1/view/toc/0/ + [17]: http://phpexcel.codeplex.com/discussions/211925 + [18]: http://openxmldeveloper.org + [19]: http://g-ernaelsten.developpez.com/tutoriels/excel2007/ + [20]: http://www.web-junior.net/sozdanie-excel-fajjlov-s-pomoshhyu-phpexcel/ + [21]: http://journal.mycom.co.jp/articles/2009/03/06/phpexcel/index.html + + +[^phpzip_footnote]: __php_zip__ is only needed by __PHPExcel_Reader_Excel2007__, __PHPExcel_Writer_Excel2007__ and __PHPExcel_Reader_OOCalc__. In other words, if you need PHPExcel to handle .xlsx or .ods files you will need the zip extension, but otherwise not.<br />You can remove this dependency for writing Excel2007 files (though not yet for reading) by using the PCLZip library that is bundled with PHPExcel. See the FAQ section of this document for details about this. PCLZip does have a dependency on PHP's zlib extension being enabled. + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/02-Architecture.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/02-Architecture.md new file mode 100644 index 0000000..8ddb43e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/02-Architecture.md @@ -0,0 +1,76 @@ +# PHPExcel Developer Documentation + + +## Architecture + +### Schematical + +![01-schematic.png](./images/01-schematic.png "Basic Architecture Schematic") + + +### Lazy Loader + +PHPExcel implements an autoloader or "lazy loader", which means that it is not necessary to include every file within PHPExcel. It is only necessary to include the initial PHPExcel class file, then the autoloader will include other class files as and when required, so only those files that are actually required by your script will be loaded into PHP memory. The main benefit of this is that it reduces the memory footprint of PHPExcel itself, so that it uses less PHP memory. + +If your own scripts already define an autoload function, then this may be overwritten by the PHPExcel autoload function. For example, if you have: +```php +function __autoload($class) { + ... +} +``` +Do this instead: +```php +function myAutoload($class) { + ... +} + +spl_autoload_register('myAutoload'); +``` +Your autoloader will then co-exist with the autoloader of PHPExcel. + + +### Spreadsheet in memory + +PHPExcel's architecture is built in a way that it can serve as an in-memory spreadsheet. This means that, if one would want to create a web based view of a spreadsheet which communicates with PHPExcel's object model, he would only have to write the front-end code. + +Just like desktop spreadsheet software, PHPExcel represents a spreadsheet containing one or more worksheets, which contain cells with data, formulas, images, ... + + +### Readers and writers + +On its own, PHPExcel does not provide the functionality to read from or write to a persisted spreadsheet (on disk or in a database). To provide that functionality, readers and writers can be used. + +By default, the PHPExcel package provides some readers and writers, including one for the Open XML spreadsheet format (a.k.a. Excel 2007 file format). You are not limited to the default readers and writers, as you are free to implement the PHPExcel_Reader_IReader and PHPExcel_Writer_IWriter interface in a custom class. + +![02-readers-writers.png](./images/02-readers-writers.png "Readers/Writers") + +### Fluent interfaces + +PHPExcel supports fluent interfaces in most locations. This means that you can easily "chain" calls to specific methods without requiring a new PHP statement. For example, take the following code: + +```php +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw"); +$objPHPExcel->getProperties()->setLastModifiedBy("Maarten Balliauw"); +$objPHPExcel->getProperties()->setTitle("Office 2007 XLSX Test Document"); +$objPHPExcel->getProperties()->setSubject("Office 2007 XLSX Test Document"); +$objPHPExcel->getProperties()->setDescription("Test document for Office 2007 XLSX, generated using PHP classes."); +$objPHPExcel->getProperties()->setKeywords("office 2007 openxml php"); +$objPHPExcel->getProperties()->setCategory("Test result file"); +``` + +This can be rewritten as: + +```php +$objPHPExcel->getProperties() + ->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); +``` + + > __Using fluent interfaces is not required__ + > Fluent interfaces have been implemented to provide a convenient programming API. Use of them is not required, but can make your code easier to read and maintain. + > It can also improve performance, as you are reducing the overall number of calls to PHPExcel methods: in the above example, the `getProperties()` method is being called only once rather than 7 times in the non-fluent version. diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/03-Creating-a-Spreadsheet.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/03-Creating-a-Spreadsheet.md new file mode 100644 index 0000000..b65000b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/03-Creating-a-Spreadsheet.md @@ -0,0 +1,34 @@ +# PHPExcel Developer Documentation + + +## Creating a spreadsheet + +### The PHPExcel class + +The PHPExcel class is the core of PHPExcel. It contains references to the contained worksheets, document security settings and document meta data. + +To simplify the PHPExcel concept: the PHPExcel class represents your workbook. + +Typically, you will create a workbook in one of two ways, either by loading it from a spreadsheet file, or creating it manually. A third option, though less commonly used, is cloning an existing workbook that has been created using one of the previous two methods. + +#### Loading a Workbook from a file + +Details of the different spreadsheet formats supported, and the options available to read them into a PHPExcel object are described fully in the PHPExcel User Documentation - Reading Spreadsheet Files document. + +```php +$inputFileName = './sampleData/example1.xls'; + +/** Load $inputFileName to a PHPExcel Object **/ +$objPHPExcel = PHPExcel_IOFactory::load($inputFileName); +``` + +#### Creating a new workbook + +If you want to create a new workbook, rather than load one from file, then you simply need to instantiate it as a new PHPExcel object. + +```php +/** Create a new PHPExcel Object **/ +$objPHPExcel = new PHPExcel(); +``` + +A new workbook will always be created with a single worksheet. diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/04-Configuration-Settings.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/04-Configuration-Settings.md new file mode 100644 index 0000000..2024e80 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/04-Configuration-Settings.md @@ -0,0 +1,140 @@ +# PHPExcel Developer Documentation + + +## Configuration Settings + +Once you have included the PHPExcel files in your script, but before instantiating a PHPExcel object or loading a workbook file, there are a number of configuration options that can be set which will affect the subsequent behaviour of the script. + +### Cell Caching + +PHPExcel uses an average of about 1k/cell in your worksheets, so large workbooks can quickly use up available memory. Cell caching provides a mechanism that allows PHPExcel to maintain the cell objects in a smaller size of memory, on disk, or in APC, memcache or Wincache, rather than in PHP memory. This allows you to reduce the memory usage for large workbooks, although at a cost of speed to access cell data. + +By default, PHPExcel still holds all cell objects in memory, but you can specify alternatives. To enable cell caching, you must call the PHPExcel_Settings::setCacheStorageMethod() method, passing in the caching method that you wish to use. + +```php +$cacheMethod = PHPExcel_CachedObjectStorageFactory::cache_in_memory; + +PHPExcel_Settings::setCacheStorageMethod($cacheMethod); +``` + +setCacheStorageMethod() will return a boolean true on success, false on failure (for example if trying to cache to APC when APC is not enabled). + +A separate cache is maintained for each individual worksheet, and is automatically created when the worksheet is instantiated based on the caching method and settings that you have configured. You cannot change the configuration settings once you have started to read a workbook, or have created your first worksheet. + +Currently, the following caching methods are available. + +#### PHPExcel_CachedObjectStorageFactory::cache_in_memory + +The default. If you don't initialise any caching method, then this is the method that PHPExcel will use. Cell objects are maintained in PHP memory as at present. + +#### PHPExcel_CachedObjectStorageFactory::cache_in_memory_serialized + +Using this caching method, cells are held in PHP memory as an array of serialized objects, which reduces the memory footprint with minimal performance overhead. + +#### PHPExcel_CachedObjectStorageFactory::cache_in_memory_gzip + +Like cache_in_memory_serialized, this method holds cells in PHP memory as an array of serialized objects, but gzipped to reduce the memory usage still further, although access to read or write a cell is slightly slower. + +#### PHPExcel_CachedObjectStorageFactory::cache_igbinary + +Uses PHPs igbinary extension (if its available) to serialize cell objects in memory. This is normally faster and uses less memory than standard PHP serialization, but isnt available in most hosting environments. + +#### PHPExcel_CachedObjectStorageFactory::cache_to_discISAM + +When using cache_to_discISAM all cells are held in a temporary disk file, with only an index to their location in that file maintained in PHP memory. This is slower than any of the cache_in_memory methods, but significantly reduces the memory footprint. By default, PHPExcel will use PHP's temp directory for the cache file, but you can specify a different directory when initialising cache_to_discISAM. + +```php +$cacheMethod = PHPExcel_CachedObjectStorageFactory:: cache_to_discISAM; +$cacheSettings = array( + 'dir' => '/usr/local/tmp' +); +PHPExcel_Settings::setCacheStorageMethod($cacheMethod, $cacheSettings); +``` + +The temporary disk file is automatically deleted when your script terminates. + +#### PHPExcel_CachedObjectStorageFactory::cache_to_phpTemp + +Like cache_to_discISAM, when using cache_to_phpTemp all cells are held in the php://temp I/O stream, with only an index to their location maintained in PHP memory. In PHP, the php://memory wrapper stores data in the memory: php://temp behaves similarly, but uses a temporary file for storing the data when a certain memory limit is reached. The default is 1 MB, but you can change this when initialising cache_to_phpTemp. + +```php +$cacheMethod = PHPExcel_CachedObjectStorageFactory:: cache_to_phpTemp; +$cacheSettings = array( + 'memoryCacheSize' => '8MB' +); +PHPExcel_Settings::setCacheStorageMethod($cacheMethod, $cacheSettings); +``` + +The php://temp file is automatically deleted when your script terminates. + +#### PHPExcel_CachedObjectStorageFactory::cache_to_apc + +When using cache_to_apc, cell objects are maintained in APC with only an index maintained in PHP memory to identify that the cell exists. By default, an APC cache timeout of 600 seconds is used, which should be enough for most applications: although it is possible to change this when initialising cache_to_APC. + +```php +$cacheMethod = PHPExcel_CachedObjectStorageFactory::cache_to_APC; +$cacheSettings = array( + 'cacheTime' => 600 +); +PHPExcel_Settings::setCacheStorageMethod($cacheMethod, $cacheSettings); +``` + +When your script terminates all entries will be cleared from APC, regardless of the cacheTime value, so it cannot be used for persistent storage using this mechanism. + +#### PHPExcel_CachedObjectStorageFactory::cache_to_memcache + +When using cache_to_memcache, cell objects are maintained in memcache with only an index maintained in PHP memory to identify that the cell exists. + +By default, PHPExcel looks for a memcache server on localhost at port 11211. It also sets a memcache timeout limit of 600 seconds. If you are running memcache on a different server or port, then you can change these defaults when you initialise cache_to_memcache: + +```php +$cacheMethod = PHPExcel_CachedObjectStorageFactory::cache_to_memcache; +$cacheSettings = array( + 'memcacheServer' => 'localhost', + 'memcachePort' => 11211, + 'cacheTime' => 600 +); +PHPExcel_Settings::setCacheStorageMethod($cacheMethod, $cacheSettings); +``` + +When your script terminates all entries will be cleared from memcache, regardless of the cacheTime value, so it cannot be used for persistent storage using this mechanism. + +#### PHPExcel_CachedObjectStorageFactory::cache_to_wincache + +When using cache_to_wincache, cell objects are maintained in Wincache with only an index maintained in PHP memory to identify that the cell exists. By default, a Wincache cache timeout of 600 seconds is used, which should be enough for most applications: although it is possible to change this when initialising cache_to_wincache. + +```php +$cacheMethod = PHPExcel_CachedObjectStorageFactory::cache_to_wincache; +$cacheSettings = array( + 'cacheTime' => 600 +); +PHPExcel_Settings::setCacheStorageMethod($cacheMethod, $cacheSettings); +``` + +When your script terminates all entries will be cleared from Wincache, regardless of the cacheTime value, so it cannot be used for persistent storage using this mechanism. + +#### PHPExcel_CachedObjectStorageFactory::cache_to_sqlite + +Uses an SQLite 2 "in-memory" database for caching cell data. Unlike other caching methods, neither cells nor an index are held in PHP memory - an indexed database table makes it unnecessary to hold any index in PHP memory, which makes this the most memory-efficient of the cell caching methods. + +#### PHPExcel_CachedObjectStorageFactory::cache_to_sqlite3; + +Uses an SQLite 3 "in-memory" database for caching cell data. Unlike other caching methods, neither cells nor an index are held in PHP memory - an indexed database table makes it unnecessary to hold any index in PHP memory, which makes this the most memory-efficient of the cell caching methods. + + +### Language/Locale + +Some localisation elements have been included in PHPExcel. You can set a locale by changing the settings. To set the locale to Brazilian Portuguese you would use: + +```php +$locale = 'pt_br'; +$validLocale = PHPExcel_Settings::setLocale($locale); +if (!$validLocale) { + echo 'Unable to set locale to ' . $locale . " - reverting to en_us" . PHP_EOL; +} +``` + +If Brazilian Portuguese language files aren't available, then Portuguese will be enabled instead: if Portuguese language files aren't available, then the setLocale() method will return an error, and American English (en_us) settings will be used throughout. + +More details of the features available once a locale has been set, including a list of the languages and locales currently supported, can be found in the section of this document entitled "Locale Settings for Formulae". + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/05-Deleting-a-Workbook.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/05-Deleting-a-Workbook.md new file mode 100644 index 0000000..0ea9171 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/05-Deleting-a-Workbook.md @@ -0,0 +1,13 @@ +# PHPExcel Developer Documentation + +## Clearing a Workbook from memory + +The PHPExcel object contains cyclic references (e.g. the workbook is linked to the worksheets, and the worksheets are linked to their parent workbook) which cause problems when PHP tries to clear the objects from memory when they are unset(), or at the end of a function when they are in local scope. The result of this is "memory leaks", which can easily use a large amount of PHP's limited memory. + +This can only be resolved manually: if you need to unset a workbook, then you also need to "break" these cyclic references before doing so. PHPExcel provides the disconnectWorksheets() method for this purpose. + +```php +$objPHPExcel->disconnectWorksheets(); + +unset($objPHPExcel); +``` diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/06-Worksheets.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/06-Worksheets.md new file mode 100644 index 0000000..a6a231c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/06-Worksheets.md @@ -0,0 +1,94 @@ +# PHPExcel Developer Documentation + +## Worksheets + +A worksheet is a collection of cells, formulae, images, graphs, etc. It holds all data necessary to represent a spreadsheet worksheet. + +When you load a workbook from a spreadsheet file, it will be loaded with all its existing worksheets (unless you specified that only certain sheets should be loaded). When you load from non-spreadsheet files (such as a CSV or HTML file) or from spreadsheet formats that don't identify worksheets by name (such as SYLK), then a single worksheet called "WorkSheet1" will be created containing the data from that file. + +When you instantiate a new workbook, PHPExcel will create it with a single worksheet called "WorkSheet1". + +The `getSheetCount()` method will tell you the number of worksheets in the workbook; while the `getSheetNames()` method will return a list of all worksheets in the workbook, indexed by the order in which their "tabs" would appear when opened in MS Excel (or other appropriate Spreadsheet program). + +Individual worksheets can be accessed by name, or by their index position in the workbook. The index position represents the order that each worksheet "tab" is shown when the workbook is opened in MS Excel (or other appropriate Spreadsheet program). To access a sheet by its index, use the `getSheet()` method. + +```php +// Get the second sheet in the workbook +// Note that sheets are indexed from 0 +$objPHPExcel->getSheet(1); +``` + +If you don't specify a sheet index, then the first worksheet will be returned. + +Methods also exist allowing you to reorder the worksheets in the workbook. + +To access a sheet by name, use the `getSheetByName()` method, specifying the name of the worksheet that you want to access. + +```php +// Retrieve the worksheet called 'Worksheet 1' +$objPHPExcel->getSheetByName('Worksheet 1'); +``` + +Alternatively, one worksheet is always the currently active worksheet, and you can access that directly. The currently active worksheet is the one that will be active when the workbook is opened in MS Excel (or other appropriate Spreadsheet program). + +```php +// Retrieve the current active worksheet +$objPHPExcel->getActiveSheet(); +``` + +You can change the currently active sheet by index or by name using the `setActiveSheetIndex()` and `setActiveSheetIndexByName()` methods. + +### Adding a new Worksheet + +You can add a new worksheet to the workbook using the `createSheet()` method of the PHPExcel object. By default, this will be created as a new "last" sheet; but you can also specify an index position as an argument, and the worksheet will be inserted at that position, shuffling all subsequent worksheets in the collection down a place. + +```php +$objPHPExcel->createSheet(); +``` + +A new worksheet created using this method will be called "Worksheet\<n\>" where "\<n\>" is the lowest number possible to guarantee that the title is unique. + +Alternatively, you can instantiate a new worksheet (setting the title to whatever you choose) and then insert it into your workbook using the addSheet() method. + +```php +// Create a new worksheet called "My Data" +$myWorkSheet = new PHPExcel_Worksheet($objPHPExcel, 'My Data'); + +// Attach the "My Data" worksheet as the first worksheet in the PHPExcel object +$objPHPExcel->addSheet($myWorkSheet, 0); +``` + +If you don't specify an index position as the second argument, then the new worksheet will be added after the last existing worksheet. + +### Copying Worksheets + +Sheets within the same workbook can be copied by creating a clone of the worksheet you wish to copy, and then using the addSheet() method to insert the clone into the workbook. + +```php +$objClonedWorksheet = clone $objPHPExcel->getSheetByName('Worksheet 1'); +$objClonedWorksheet->setTitle('Copy of Worksheet 1') +$objPHPExcel->addSheet($objClonedWorksheet); +``` + +You can also copy worksheets from one workbook to another, though this is more complex as PHPExcel also has to replicate the styling between the two workbooks. The addExternalSheet() method is provided for this purpose. + +``` +$objClonedWorksheet = clone $objPHPExcel1->getSheetByName('Worksheet 1'); +$objPHPExcel->addExternalSheet($objClonedWorksheet); +``` + +In both cases, it is the developer's responsibility to ensure that worksheet names are not duplicated. PHPExcel will throw an exception if you attempt to copy worksheets that will result in a duplicate name. + +### Removing a Worksheet + +You can delete a worksheet from a workbook, identified by its index position, using the removeSheetByIndex() method + +```php +$sheetIndex = $objPHPExcel->getIndex( + $objPHPExcel->getSheetByName('Worksheet 1') +); +$objPHPExcel->removeSheetByIndex($sheetIndex); +``` + +If the currently active worksheet is deleted, then the sheet at the previous index position will become the currently active sheet. + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/07-Accessing-Cells.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/07-Accessing-Cells.md new file mode 100644 index 0000000..e63b45b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/07-Accessing-Cells.md @@ -0,0 +1,390 @@ +# PHPExcel Developer Documentation + +## Accessing cells + +Accessing cells in a PHPExcel worksheet should be pretty straightforward. This topic lists some of the options to access a cell. + +### Setting a cell value by coordinate + +Setting a cell value by coordinate can be done using the worksheet's `setCellValue()` method. + +```php +// Set cell A1 with a string value +$objPHPExcel->getActiveSheet()->setCellValue('A1', 'PHPExcel'); + +// Set cell A2 with a numeric value +$objPHPExcel->getActiveSheet()->setCellValue('A2', 12345.6789); + +// Set cell A3 with a boolean value +$objPHPExcel->getActiveSheet()->setCellValue('A3', TRUE); + +// Set cell A4 with a formula +$objPHPExcel->getActiveSheet()->setCellValue( + 'A4', + '=IF(A3, CONCATENATE(A1, " ", A2), CONCATENATE(A2, " ", A1))' +); +``` + +Alternatively, you can retrieve the cell object, and then call the cell’s setValue() method: + +```php +$objPHPExcel->getActiveSheet() + ->getCell('B8') + ->setValue('Some value'); +``` + +**Excel DataTypes** + +MS Excel supports 7 basic datatypes + - string + - number + - boolean + - null + - formula + - error + - Inline (or rich text) string + +By default, when you call the worksheet's `setCellValue()` method or the cell's `setValue()` method, PHPExcel will use the appropriate datatype for PHP nulls, booleans, floats or integers; or cast any string data value that you pass to the method into the most appropriate datatype, so numeric strings will be cast to numbers, while string values beginning with “=†will be converted to a formula. Strings that aren't numeric, or that don't begin with a leading "=" will be treated as genuine string values. + +This "conversion" is handled by a cell "value binder", and you can write custom "value binders" to change the behaviour of these "conversions". The standard PHPExcel package also provides an "advanced value binder" that handles a number of more complex conversions, such as converting strings with a fractional format like "3/4" to a number value (0.75 in this case) and setting an appropriate "fraction" number format mask. Similarly, strings like "5%" will be converted to a value of 0.05, and a percentage number format mask applied, and strings containing values that look like dates will be converted to Excel serialized datetimestamp values, and a corresponding mask applied. This is particularly useful when loading data from csv files, or setting cell values from a database. + +Formats handled by the advanced value binder include + - TRUE or FALSE (dependent on locale settings) are converted to booleans. + - Numeric strings identified as scientific (exponential) format are converted to numbers. + - Fractions and vulgar fractions are converted to numbers, and an appropriate number format mask applied. + - Percentages are converted to numbers, divided by 100, and an appropriate number format mask applied. + - Dates and times are converted to Excel timestamp values (numbers), and an appropriate number format mask applied. + - When strings contain a newline character ("\n"), then the cell styling is set to wrap. + +You can read more about value binders later in this section of the documentation. + +#### Setting a date and/or time value in a cell + +Date or time values are held as timestamp in Excel (a simple floating point value), and a number format mask is used to show how that value should be formatted; so if we want to store a date in a cell, we need to calculate the correct Excel timestamp, and set a number format mask. + +```php +// Get the current date/time and convert to an Excel date/time +$dateTimeNow = time(); +$excelDateValue = PHPExcel_Shared_Date::PHPToExcel( $dateTimeNow ); +// Set cell A6 with the Excel date/time value +$objPHPExcel->getActiveSheet()->setCellValue( + 'A6', + $excelDateValue +); +// Set the number format mask so that the excel timestamp will be displayed as a human-readable date/time +$objPHPExcel->getActiveSheet()->getStyle('A6') + ->getNumberFormat() + ->setFormatCode( + PHPExcel_Style_NumberFormat::FORMAT_DATE_DATETIME + ); +``` + +#### Setting a number with leading zeroes + +By default, PHPExcel will automatically detect the value type and set it to the appropriate Excel numeric datatype. This type conversion is handled by a value binder, as described in the section of this document entitled "Using value binders to facilitate data entry". + +Numbers don't have leading zeroes, so if you try to set a numeric value that does have leading zeroes (such as a telephone number) then these will be normally be lost as the value is cast to a number, so "01513789642" will be displayed as 1513789642. + +There are two ways you can force PHPExcel to override this behaviour. + +Firstly, you can set the datatype explicitly as a string so that it is not converted to a number. + +```php +// Set cell A8 with a numeric value, but tell PHPExcel it should be treated as a string +$objPHPExcel->getActiveSheet()->setCellValueExplicit( + 'A8', + "01513789642", + PHPExcel_Cell_DataType::TYPE_STRING +); +``` + +Alternatively, you can use a number format mask to display the value with leading zeroes. + +```php +// Set cell A9 with a numeric value +$objPHPExcel->getActiveSheet()->setCellValue('A9', 1513789642); +// Set a number format mask to display the value as 11 digits with leading zeroes +$objPHPExcel->getActiveSheet()->getStyle('A9') + ->getNumberFormat() + ->setFormatCode( + '00000000000' + ); +``` + +With number format masking, you can even break up the digits into groups to make the value more easily readable. + +```php +// Set cell A10 with a numeric value +$objPHPExcel->getActiveSheet()->setCellValue('A10', 1513789642); +// Set a number format mask to display the value as 11 digits with leading zeroes +$objPHPExcel->getActiveSheet()->getStyle('A10') + ->getNumberFormat() + ->setFormatCode( + '0000-000-0000' + ); +``` + +![07-simple-example-1.png](./images/07-simple-example-1.png "") + + +**Note** that not all complex format masks such as this one will work when retrieving a formatted value to display "on screen", or for certain writers such as HTML or PDF, but it will work with the true spreadsheet writers (Excel2007 and Excel5). + +### Setting a range of cells from an array + +It is also possible to set a range of cell values in a single call by passing an array of values to the `fromArray()` method. + +```php +$arrayData = array( + array(NULL, 2010, 2011, 2012), + array('Q1', 12, 15, 21), + array('Q2', 56, 73, 86), + array('Q3', 52, 61, 69), + array('Q4', 30, 32, 0), +); +$objPHPExcel->getActiveSheet() + ->fromArray( + $arrayData, // The data to set + NULL, // Array values with this value will not be set + 'C3' // Top left coordinate of the worksheet range where + // we want to set these values (default is A1) + ); +``` + +![07-simple-example-2.png](./images/07-simple-example-2.png "") + +If you pass a 2-d array, then this will be treated as a series of rows and columns. A 1-d array will be treated as a single row, which is particularly useful if you're fetching an array of data from a database. + +```php +$rowArray = array('Value1', 'Value2', 'Value3', 'Value4'); +$objPHPExcel->getActiveSheet() + ->fromArray( + $rowArray, // The data to set + NULL, // Array values with this value will not be set + 'C3' // Top left coordinate of the worksheet range where + // we want to set these values (default is A1) + ); +``` + +![07-simple-example-3.png](./images/07-simple-example-3.png "") + +If you have a simple 1-d array, and want to write it as a column, then the following will convert it into an appropriately structured 2-d array that can be fed to the `fromArray()` method: + +```php +$rowArray = array('Value1', 'Value2', 'Value3', 'Value4'); +$columnArray = array_chunk($rowArray, 1); +$objPHPExcel->getActiveSheet() + ->fromArray( + $columnArray, // The data to set + NULL, // Array values with this value will not be set + 'C3' // Top left coordinate of the worksheet range where + // we want to set these values (default is A1) + ); +``` + +![07-simple-example-4.png](./images/07-simple-example-4.png "") + +### Retrieving a cell value by coordinate + +To retrieve the value of a cell, the cell should first be retrieved from the worksheet using the `getCell()` method. A cell's value can be read using the `getValue()` method. + +```php +// Get the value fom cell A1 +$cellValue = $objPHPExcel->getActiveSheet()->getCell('A1') + ->getValue(); +``` + +This will retrieve the raw, unformatted value contained in the cell. + +If a cell contains a formula, and you need to retrieve the calculated value rather than the formula itself, then use the cell's `getCalculatedValue()` method. This is further explained in . + +```php +// Get the value fom cell A4 +$cellValue = $objPHPExcel->getActiveSheet()->getCell('A4') + ->getCalculatedValue(); +``` + +Alternatively, if you want to see the value with any cell formatting applied (e.g. for a human-readable date or time value), then you can use the cell's `getFormattedValue()` method. + +```php +// Get the value fom cell A6 +$cellValue = $objPHPExcel->getActiveSheet()->getCell('A6') + ->getFormattedValue(); +``` + + +### Setting a cell value by column and row + +Setting a cell value by coordinate can be done using the worksheet's `setCellValueByColumnAndRow()` method. + +```php +// Set cell B5 with a string value +$objPHPExcel->getActiveSheet()->setCellValueByColumnAndRow(1, 5, 'PHPExcel'); +``` + +**Note** that column references start with '0' for column 'A', rather than from '1'. + +### Retrieving a cell value by column and row + +To retrieve the value of a cell, the cell should first be retrieved from the worksheet using the getCellByColumnAndRow method. A cell’s value can be read again using the following line of code: + +```php +// Get the value fom cell B5 +$cellValue = $objPHPExcel->getActiveSheet()->getCellByColumnAndRow(1, 5) + ->getValue(); +``` +If you need the calculated value of a cell, use the following code. This is further explained in . + +```php +// Get the value fom cell A4 +$cellValue = $objPHPExcel->getActiveSheet()->getCellByColumnAndRow(0, 4) + ->getCalculatedValue(); +``` + +### Retrieving a range of cell values to an array + +It is also possible to retrieve a range of cell values to an array in a single call using the `toArray()`, `rangeToArray()` or `namedRangeToArray()` methods. + +```php +$dataArray = $objPHPExcel->getActiveSheet() + ->rangeToArray( + 'C3:E5', // The worksheet range that we want to retrieve + NULL, // Value that should be returned for empty cells + TRUE, // Should formulas be calculated (the equivalent of getCalculatedValue() for each cell) + TRUE, // Should values be formatted (the equivalent of getFormattedValue() for each cell) + TRUE // Should the array be indexed by cell row and cell column + ); +``` + +These methods will all return a 2-d array of rows and columns. The `toArray()` method will return the whole worksheet; `rangeToArray()` will return a specified range or cells; while `namedRangeToArray()` will return the cells within a defined `named range`. + +### Looping through cells + +#### Looping through cells using iterators + +The easiest way to loop cells is by using iterators. Using iterators, one can use foreach to loop worksheets, rows within a worksheet, and cells within a row. + +Below is an example where we read all the values in a worksheet and display them in a table. + +```php +$objReader = PHPExcel_IOFactory::createReader('Excel2007'); +$objReader->setReadDataOnly(TRUE); +$objPHPExcel = $objReader->load("test.xlsx"); + +$objWorksheet = $objPHPExcel->getActiveSheet(); + +echo '<table>' . PHP_EOL; +foreach ($objWorksheet->getRowIterator() as $row) { + echo '<tr>' . PHP_EOL; + $cellIterator = $row->getCellIterator(); + $cellIterator->setIterateOnlyExistingCells(FALSE); // This loops through all cells, + // even if a cell value is not set. + // By default, only cells that have a value + // set will be iterated. + foreach ($cellIterator as $cell) { + echo '<td>' . + $cell->getValue() . + '</td>' . PHP_EOL; + } + echo '</tr>' . PHP_EOL; +} +echo '</table>' . PHP_EOL; +``` + +Note that we have set the cell iterator's `setIterateOnlyExistingCells()` to FALSE. This makes the iterator loop all cells within the worksheet range, even if they have not been set. + +The cell iterator will return a __NULL__ as the cell value if it is not set in the worksheet. +Setting the cell iterator's setIterateOnlyExistingCells() to FALSE will loop all cells in the worksheet that can be available at that moment. This will create new cells if required and increase memory usage! Only use it if it is intended to loop all cells that are possibly available. + +#### Looping through cells using indexes + +One can use the possibility to access cell values by column and row index like (0,1) instead of 'A1' for reading and writing cell values in loops. + +Note: In PHPExcel column index is 0-based while row index is 1-based. That means 'A1' ~ (0,1) + +Below is an example where we read all the values in a worksheet and display them in a table. + +```php +$objReader = PHPExcel_IOFactory::createReader('Excel2007'); +$objReader->setReadDataOnly(TRUE); +$objPHPExcel = $objReader->load("test.xlsx"); + +$objWorksheet = $objPHPExcel->getActiveSheet(); +// Get the highest row and column numbers referenced in the worksheet +$highestRow = $objWorksheet->getHighestRow(); // e.g. 10 +$highestColumn = $objWorksheet->getHighestColumn(); // e.g 'F' +$highestColumnIndex = PHPExcel_Cell::columnIndexFromString($highestColumn); // e.g. 5 + +echo '<table>' . "\n"; +for ($row = 1; $row <= $highestRow; ++$row) { + echo '<tr>' . PHP_EOL; + for ($col = 0; $col <= $highestColumnIndex; ++$col) { + echo '<td>' . + $objWorksheet->getCellByColumnAndRow($col, $row) + ->getValue() . + '</td>' . PHP_EOL; + } + echo '</tr>' . PHP_EOL; +} +echo '</table>' . PHP_EOL; +``` + +Alternatively, you can take advantage of PHP's "Perl-style" character incrementors to loop through the cells by coordinate: + +```php +$objReader = PHPExcel_IOFactory::createReader('Excel2007'); +$objReader->setReadDataOnly(TRUE); +$objPHPExcel = $objReader->load("test.xlsx"); + +$objWorksheet = $objPHPExcel->getActiveSheet(); +// Get the highest row number and column letter referenced in the worksheet +$highestRow = $objWorksheet->getHighestRow(); // e.g. 10 +$highestColumn = $objWorksheet->getHighestColumn(); // e.g 'F' +// Increment the highest column letter +$highestColumn++; + +echo '<table>' . "\n"; +for ($row = 1; $row <= $highestRow; ++$row) { + echo '<tr>' . PHP_EOL; + for ($col = 'A'; $col != $highestColumn; ++$col) { + echo '<td>' . + $objWorksheet->getCell($col . $row) + ->getValue() . + '</td>' . PHP_EOL; + } + echo '</tr>' . PHP_EOL; +} +echo '</table>' . PHP_EOL; +``` + +Note that we can't use a <= comparison here, because 'AA' would match as <= 'B', so we increment the highest column letter and then loop while $col != the incremented highest column. + +### Using value binders to facilitate data entry + +Internally, PHPExcel uses a default PHPExcel_Cell_IValueBinder implementation (PHPExcel_Cell_DefaultValueBinder) to determine data types of entered data using a cell's `setValue()` method (the `setValueExplicit()` method bypasses this check). + +Optionally, the default behaviour of PHPExcel can be modified, allowing easier data entry. For example, a PHPExcel_Cell_AdvancedValueBinder class is available. It automatically converts percentages, number in scientific format, and dates entered as strings to the correct format, also setting the cell's style information. The following example demonstrates how to set the value binder in PHPExcel: + +```php +/** PHPExcel */ +require_once 'PHPExcel.php'; + +// Set value binder +PHPExcel_Cell::setValueBinder( new PHPExcel_Cell_AdvancedValueBinder() ); + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); + +// ... +// Add some data, resembling some different data types +$objPHPExcel->getActiveSheet()->setCellValue('A4', 'Percentage value:'); +// Converts the string value to 0.1 and sets percentage cell style +$objPHPExcel->getActiveSheet()->setCellValue('B4', '10%'); + +$objPHPExcel->getActiveSheet()->setCellValue('A5', 'Date/time value:'); +// Converts the string value to an Excel datestamp and sets the date format cell style +$objPHPExcel->getActiveSheet()->setCellValue('B5', '21 December 1983'); +``` + +__Creating your own value binder is easy.__ +When advanced value binding is required, you can implement the PHPExcel_Cell_IValueBinder interface or extend the PHPExcel_Cell_DefaultValueBinder or PHPExcel_Cell_AdvancedValueBinder classes. + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/08-Recipes.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/08-Recipes.md new file mode 100644 index 0000000..b8930a4 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/08-Recipes.md @@ -0,0 +1,1214 @@ +# PHPExcel Developer Documentation + +## PHPExcel recipes + +The following pages offer you some widely-used PHPExcel recipes. Please note that these do NOT offer complete documentation on specific PHPExcel API functions, but just a bump to get you started. If you need specific API functions, please refer to the API documentation. + +For example, REF _Ref191885321 \w \h 4.4.7 REF _Ref191885321 \h Setting a worksheet's page orientation and size covers setting a page orientation to A4. Other paper formats, like US Letter, are not covered in this document, but in the PHPExcel API documentation. + +### Setting a spreadsheet's metadata + +PHPExcel allows an easy way to set a spreadsheet's metadata, using document property accessors. Spreadsheet metadata can be useful for finding a specific document in a file repository or a document management system. For example Microsoft Sharepoint uses document metadata to search for a specific document in its document lists. + +Setting spreadsheet metadata is done as follows: + +```php +$objPHPExcel->getProperties() + ->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw"); + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription( + "Test document for Office 2007 XLSX, generated using PHP classes." + ) + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); +``` + +### Setting a spreadsheet's active sheet + +The following line of code sets the active sheet index to the first sheet: + +```php +$objPHPExcel->setActiveSheetIndex(0); +``` + +You can also set the active sheet by its name/title + +```php +$objPHPExcel->setActiveSheetIndexByName('DataSheet') +``` + +will change the currently active sheet to the worksheet called "DataSheet". + +### Write a date or time into a cell + +In Excel, dates and Times are stored as numeric values counting the number of days elapsed since 1900-01-01. For example, the date '2008-12-31' is represented as 39813. You can verify this in Microsoft Office Excel by entering that date in a cell and afterwards changing the number format to 'General' so the true numeric value is revealed. Likewise, '3:15 AM' is represented as 0.135417. + +PHPExcel works with UST (Universal Standard Time) date and Time values, but does no internal conversions; so it is up to the developer to ensure that values passed to the date/time conversion functions are UST. + +Writing a date value in a cell consists of 2 lines of code. Select the method that suits you the best. Here are some examples: + +```php +/* PHPExcel_Cell_AdvanceValueBinder required for this sample */ +require_once 'PHPExcel/Cell/AdvancedValueBinder.php'; + +// MySQL-like timestamp '2008-12-31' or date string +PHPExcel_Cell::setValueBinder( new PHPExcel_Cell_AdvancedValueBinder() ); + +$objPHPExcel->getActiveSheet() + ->setCellValue('D1', '2008-12-31'); + +$objPHPExcel->getActiveSheet()->getStyle('D1') + ->getNumberFormat() + ->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_DATE_YYYYMMDDSLASH); + +// PHP-time (Unix time) +$time = gmmktime(0,0,0,12,31,2008); // int(1230681600) +$objPHPExcel->getActiveSheet() + ->setCellValue('D1', PHPExcel_Shared_Date::PHPToExcel($time)); +$objPHPExcel->getActiveSheet()->getStyle('D1') + ->getNumberFormat() + ->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_DATE_YYYYMMDDSLASH); + +// Excel-date/time +$objPHPExcel->getActiveSheet()->setCellValue('D1', 39813) +$objPHPExcel->getActiveSheet()->getStyle('D1') + ->getNumberFormat() + ->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_DATE_YYYYMMDDSLASH); +``` + +The above methods for entering a date all yield the same result. PHPExcel_Style_NumberFormat provides a lot of pre-defined date formats. + +The PHPExcel_Shared_Date::PHPToExcel() method will also work with a PHP DateTime object. + +Similarly, times (or date and time values) can be entered in the same fashion: just remember to use an appropriate format code. + +__Notes:__ + +See section "Using value binders to facilitate data entry" to learn more about the AdvancedValueBinder used in the first example. +In previous versions of PHPExcel up to and including 1.6.6, when a cell had a date-like number format code, it was possible to enter a date directly using an integer PHP-time without converting to Excel date format. Starting with PHPExcel 1.6.7 this is no longer supported. +Excel can also operate in a 1904-based calendar (default for workbooks saved on Mac). Normally, you do not have to worry about this when using PHPExcel. + +### Write a formula into a cell + +Inside the Excel file, formulas are always stored as they would appear in an English version of Microsoft Office Excel, and PHPExcel handles all formulae internally in this format. This means that the following rules hold: + + - Decimal separator is '.' (period) + - Function argument separator is ',' (comma) + - Matrix row separator is ';' (semicolon) + - English function names must be used + +This is regardless of which language version of Microsoft Office Excel may have been used to create the Excel file. + +When the final workbook is opened by the user, Microsoft Office Excel will take care of displaying the formula according the applications language. Translation is taken care of by the application! + +The following line of code writes the formula '=IF(C4>500,"profit","loss")' into the cell B8. Note that the formula must start with "=" to make PHPExcel recognise this as a formula. + +```php +$objPHPExcel->getActiveSheet()->setCellValue('B8','=IF(C4>500,"profit","loss")'); +``` + +If you want to write a string beginning with an "=" character to a cell, then you should use the setCellValueExplicit() method. + +```php +$objPHPExcel->getActiveSheet() + ->setCellValueExplicit( + 'B8', + '=IF(C4>500,"profit","loss")', + PHPExcel_Cell_DataType::TYPE_STRING + ); +``` + +A cell's formula can be read again using the following line of code: + +```php +$formula = $objPHPExcel->getActiveSheet()->getCell('B8')->getValue(); +``` + +If you need the calculated value of a cell, use the following code. This is further explained in REF _Ref191885372 \w \h \* MERGEFORMAT 4.4.35. + +```php +$value = $objPHPExcel->getActiveSheet()->getCell('B8')->getCalculatedValue(); +``` + +### Locale Settings for Formulae + +Some localisation elements have been included in PHPExcel. You can set a locale by changing the settings. To set the locale to Russian you would use: + +```php +$locale = 'ru'; +$validLocale = PHPExcel_Settings::setLocale($locale); +if (!$validLocale) { + echo 'Unable to set locale to '.$locale." - reverting to en_us<br />\n"; +} +``` + +If Russian language files aren't available, the `setLocale()` method will return an error, and English settings will be used throughout. + +Once you have set a locale, you can translate a formula from its internal English coding. + +```php +$formula = $objPHPExcel->getActiveSheet()->getCell('B8')->getValue(); +$translatedFormula = PHPExcel_Calculation::getInstance()->_translateFormulaToLocale($formula); +``` + +You can also create a formula using the function names and argument separators appropriate to the defined locale; then translate it to English before setting the cell value: + +```php +$formula = '=????360(????(2010;2;5);????(2010;12;31);??????)'; +$internalFormula = PHPExcel_Calculation::getInstance()->translateFormulaToEnglish($formula); +$objPHPExcel->getActiveSheet()->setCellValue('B8',$internalFormula); +``` + +Currently, formula translation only translates the function names, the constants TRUE and FALSE, and the function argument separators. + +At present, the following locale settings are supported: + + Language | | Locale Code + ---------------------|----------------------|------------- + Czech | CeÅ¡tina | cs + Danish | Dansk | da + German | Deutsch | de + Spanish | Español | es + Finnish | Suomi | fi + French | Français | fr + Hungarian | Magyar | hu + Italian | Italiano | it + Dutch | Nederlands | nl + Norwegian | Norsk | no + Polish | Jezyk polski | pl + Portuguese | Português | pt + Brazilian Portuguese | Português Brasileiro | pt_br + Russian | ??????? ???? | ru + Swedish | Svenska | sv + Turkish | Türkçe | tr + +### Write a newline character "\n" in a cell (ALT+"Enter") + +In Microsoft Office Excel you get a line break in a cell by hitting ALT+"Enter". When you do that, it automatically turns on "wrap text" for the cell. + +Here is how to achieve this in PHPExcel: + +```php +$objPHPExcel->getActiveSheet()->getCell('A1')->setValue("hello\nworld"); +$objPHPExcel->getActiveSheet()->getStyle('A1')->getAlignment()->setWrapText(true); +``` + +__Tip__ + +Read more about formatting cells using getStyle() elsewhere. + +__Tip__ + +AdvancedValuebinder.php automatically turns on "wrap text" for the cell when it sees a newline character in a string that you are inserting in a cell. Just like Microsoft Office Excel. Try this: + +```php +require_once 'PHPExcel/Cell/AdvancedValueBinder.php'; +PHPExcel_Cell::setValueBinder( new PHPExcel_Cell_AdvancedValueBinder() ); + +$objPHPExcel->getActiveSheet()->getCell('A1')->setValue("hello\nworld"); +``` + +Read more about AdvancedValueBinder.php elsewhere. + +### Explicitly set a cell's datatype + +You can set a cell's datatype explicitly by using the cell's setValueExplicit method, or the setCellValueExplicit method of a worksheet. Here's an example: + +```php +$objPHPExcel->getActiveSheet()->getCell('A1') + ->setValueExplicit( + '25', + PHPExcel_Cell_DataType::TYPE_NUMERIC + ); +``` + +### Change a cell into a clickable URL + +You can make a cell a clickable URL by setting its hyperlink property: + +```php +$objPHPExcel->getActiveSheet()->setCellValue('E26', 'www.phpexcel.net'); +$objPHPExcel->getActiveSheet()->getCell('E26')->getHyperlink()->setUrl('http://www.phpexcel.net'); +``` + +If you want to make a hyperlink to another worksheet/cell, use the following code: + +```php +$objPHPExcel->getActiveSheet()->setCellValue('E26', 'www.phpexcel.net'); +$objPHPExcel->getActiveSheet()->getCell('E26')->getHyperlink()->setUrl("sheet://'Sheetname'!A1"); +``` + +### Setting Printer Options for Excel files + +#### Setting a worksheet's page orientation and size + +Setting a worksheet's page orientation and size can be done using the following lines of code: + +```php +$objPHPExcel->getActiveSheet()->getPageSetup() + ->setOrientation(PHPExcel_Worksheet_PageSetup::ORIENTATION_LANDSCAPE); +$objPHPExcel->getActiveSheet()->getPageSetup() + ->setPaperSize(PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4); +``` + +Note that there are additional page settings available. Please refer to the API documentation for all possible options. + +#### Page Setup: Scaling options + +The page setup scaling options in PHPExcel relate directly to the scaling options in the "Page Setup" dialog as shown in the illustration. + +Default values in PHPExcel correspond to default values in MS Office Excel as shown in illustration + +![08-page-setup-scaling-options.png](./images/08-page-setup-scaling-options.png "") + + method | initial value | calling method will trigger | Note + --------------------|:-------------:|-----------------------------|------ + setFitToPage(...) | FALSE | - | + setScale(...) | 100 | setFitToPage(FALSE) | + setFitToWidth(...) | 1 | setFitToPage(TRUE) | value 0 means do-not-fit-to-width + setFitToHeight(...) | 1 | setFitToPage(TRUE) | value 0 means do-not-fit-to-height + +##### Example + +Here is how to fit to 1 page wide by infinite pages tall: + +```php +$objPHPExcel->getActiveSheet()->getPageSetup()->setFitToWidth(1); +$objPHPExcel->getActiveSheet()->getPageSetup()->setFitToHeight(0); +``` + +As you can see, it is not necessary to call setFitToPage(TRUE) since setFitToWidth(...) and setFitToHeight(...) triggers this. + +If you use setFitToWidth() you should in general also specify setFitToHeight() explicitly like in the example. Be careful relying on the initial values. This is especially true if you are upgrading from PHPExcel 1.7.0 to 1.7.1 where the default values for fit-to-height and fit-to-width changed from 0 to 1. + +#### Page margins + +To set page margins for a worksheet, use this code: + +```php +$objPHPExcel->getActiveSheet()->getPageMargins()->setTop(1); +$objPHPExcel->getActiveSheet()->getPageMargins()->setRight(0.75); +$objPHPExcel->getActiveSheet()->getPageMargins()->setLeft(0.75); +$objPHPExcel->getActiveSheet()->getPageMargins()->setBottom(1); +``` + +Note that the margin values are specified in inches. + +![08-page-setup-margins.png](./images/08-page-setup-margins.png "") + +#### Center a page horizontally/vertically + +To center a page horizontally/vertically, you can use the following code: + +```php +$objPHPExcel->getActiveSheet()->getPageSetup()->setHorizontalCentered(true); +$objPHPExcel->getActiveSheet()->getPageSetup()->setVerticalCentered(false); +``` + +#### Setting the print header and footer of a worksheet + +Setting a worksheet's print header and footer can be done using the following lines of code: + +```php +$objPHPExcel->getActiveSheet()->getHeaderFooter() + ->setOddHeader('&C&HPlease treat this document as confidential!'); +$objPHPExcel->getActiveSheet()->getHeaderFooter() + ->setOddFooter('&L&B' . $objPHPExcel->getProperties()->getTitle() . '&RPage &P of &N'); +``` + +Substitution and formatting codes (starting with &) can be used inside headers and footers. There is no required order in which these codes must appear. + +The first occurrence of the following codes turns the formatting ON, the second occurrence turns it OFF again: + + - Strikethrough + - Superscript + - Subscript + +Superscript and subscript cannot both be ON at same time. Whichever comes first wins and the other is ignored, while the first is ON. + +The following codes are supported by Excel2007: + +Code | Meaning +-----------------------|----------- +&L | Code for "left section" (there are three header / footer locations, "left", "center", and "right"). When two or more occurrences of this section marker exist, the contents from all markers are concatenated, in the order of appearance, and placed into the left section. +&P | Code for "current page #" +&N | Code for "total pages" +&font size | Code for "text font size", where font size is a font size in points. +&K | Code for "text font color" - RGB Color is specified as RRGGBB Theme Color is specifed as TTSNN where TT is the theme color Id, S is either "+" or "-" of the tint/shade value, NN is the tint/shade value. +&S | Code for "text strikethrough" on / off +&X | Code for "text super script" on / off +&Y | Code for "text subscript" on / off +&C | Code for "center section". When two or more occurrences of this section marker exist, the contents from all markers are concatenated, in the order of appearance, and placed into the center section. +&D | Code for "date" +&T | Code for "time" +&G | Code for "picture as background" - Please make sure to add the image to the header/footer[^print-footer-image-footnote] +&U | Code for "text single underline" +&E | Code for "double underline" +&R | Code for "right section". When two or more occurrences of this section marker exist, the contents from all markers are concatenated, in the order of appearance, and placed into the right section. +&Z | Code for "this workbook's file path" +&F | Code for "this workbook's file name" +&A | Code for "sheet tab name" +&+ | Code for add to page # +&- | Code for subtract from page # +&"font name,font type" | Code for "text font name" and "text font type", where font name and font type are strings specifying the name and type of the font, separated by a comma. When a hyphen appears in font name, it means "none specified". Both of font name and font type can be localized values. +&"-,Bold" | Code for "bold font style" +&B | Code for "bold font style" +&"-,Regular" | Code for "regular font style" +&"-,Italic" | Code for "italic font style" +&I | Code for "italic font style" +&"-,Bold Italic" | Code for "bold italic font style" +&O | Code for "outline style" +&H | Code for "shadow style" + + [^print-footer-image-footnote]: z +```php +$objDrawing = new PHPExcel_Worksheet_HeaderFooterDrawing(); +$objDrawing->setName('PHPExcel logo'); +$objDrawing->setPath('./images/phpexcel_logo.gif'); +$objDrawing->setHeight(36); +$objPHPExcel->getActiveSheet()->getHeaderFooter()->addImage($objDrawing, PHPExcel_Worksheet_HeaderFooter::IMAGE_HEADER_LEFT); +``` + +__Tip__ + +The above table of codes may seem overwhelming first time you are trying to figure out how to write some header or footer. Luckily, there is an easier way. Let Microsoft Office Excel do the work for you.For example, create in Microsoft Office Excel an xlsx file where you insert the header and footer as desired using the programs own interface. Save file as test.xlsx. Now, take that file and read off the values using PHPExcel as follows: + +```php +$objPHPexcel = PHPExcel_IOFactory::load('test.xlsx'); +$objWorksheet = $objPHPexcel->getActiveSheet(); + +var_dump($objWorksheet->getHeaderFooter()->getOddFooter()); +var_dump($objWorksheet->getHeaderFooter()->getEvenFooter()); +var_dump($objWorksheet->getHeaderFooter()->getOddHeader()); +var_dump($objWorksheet->getHeaderFooter()->getEvenHeader()); +``` + +That reveals the codes for the even/odd header and footer. Experienced users may find it easier to rename test.xlsx to test.zip, unzip it, and inspect directly the contents of the relevant xl/worksheets/sheetX.xml to find the codes for header/footer. + +#### Setting printing breaks on a row or column + +To set a print break, use the following code, which sets a row break on row 10. + +```php +$objPHPExcel->getActiveSheet()->setBreak( 'A10' , PHPExcel_Worksheet::BREAK_ROW ); +``` + +The following line of code sets a print break on column D: + +```php +$objPHPExcel->getActiveSheet()->setBreak( 'D10' , PHPExcel_Worksheet::BREAK_COLUMN ); +``` + +#### Show/hide gridlines when printing + +To show/hide gridlines when printing, use the following code: + +$objPHPExcel->getActiveSheet()->setShowGridlines(true); + +#### Setting rows/columns to repeat at top/left + +PHPExcel can repeat specific rows/cells at top/left of a page. The following code is an example of how to repeat row 1 to 5 on each printed page of a specific worksheet: + +```php +$objPHPExcel->getActiveSheet()->getPageSetup()->setRowsToRepeatAtTopByStartAndEnd(1, 5); +``` + +#### Specify printing area + +To specify a worksheet's printing area, use the following code: + +```php +$objPHPExcel->getActiveSheet()->getPageSetup()->setPrintArea('A1:E5'); +``` + +There can also be multiple printing areas in a single worksheet: + +```php +$objPHPExcel->getActiveSheet()->getPageSetup()->setPrintArea('A1:E5,G4:M20'); +``` + +### Styles + +#### Formatting cells + +A cell can be formatted with font, border, fill, ... style information. For example, one can set the foreground colour of a cell to red, aligned to the right, and the border to black and thick border style. Let's do that on cell B2: + +```php +$objPHPExcel->getActiveSheet()->getStyle('B2') + ->getFont()->getColor()->setARGB(PHPExcel_Style_Color::COLOR_RED); +$objPHPExcel->getActiveSheet()->getStyle('B2') + ->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_RIGHT); +$objPHPExcel->getActiveSheet()->getStyle('B2') + ->getBorders()->getTop()->setBorderStyle(PHPExcel_Style_Border::BORDER_THICK); +$objPHPExcel->getActiveSheet()->getStyle('B2') + ->getBorders()->getBottom()->setBorderStyle(PHPExcel_Style_Border::BORDER_THICK); +$objPHPExcel->getActiveSheet()->getStyle('B2') + ->getBorders()->getLeft()->setBorderStyle(PHPExcel_Style_Border::BORDER_THICK); +$objPHPExcel->getActiveSheet()->getStyle('B2') + ->getBorders()->getRight()->setBorderStyle(PHPExcel_Style_Border::BORDER_THICK); +$objPHPExcel->getActiveSheet()->getStyle('B2') + ->getFill()->setFillType(PHPExcel_Style_Fill::FILL_SOLID); +$objPHPExcel->getActiveSheet()->getStyle('B2') + ->getFill()->getStartColor()->setARGB('FFFF0000'); +``` + +Starting with PHPExcel 1.7.0 getStyle() also accepts a cell range as a parameter. For example, you can set a red background color on a range of cells: + +```php +$objPHPExcel->getActiveSheet()->getStyle('B3:B7')->getFill() + ->setFillType(PHPExcel_Style_Fill::FILL_SOLID) + ->getStartColor()->setARGB('FFFF0000'); +``` + +__Tip__ +It is recommended to style many cells at once, using e.g. getStyle('A1:M500'), rather than styling the cells individually in a loop. This is much faster compared to looping through cells and styling them individually. + +There is also an alternative manner to set styles. The following code sets a cell's style to font bold, alignment right, top border thin and a gradient fill: + +```php +$styleArray = array( + 'font' => array( + 'bold' => true, + ), + 'alignment' => array( + 'horizontal' => PHPExcel_Style_Alignment::HORIZONTAL_RIGHT, + ), + 'borders' => array( + 'top' => array( + 'style' => PHPExcel_Style_Border::BORDER_THIN, + ), + ), + 'fill' => array( + 'type' => PHPExcel_Style_Fill::FILL_GRADIENT_LINEAR, + 'rotation' => 90, + 'startcolor' => array( + 'argb' => 'FFA0A0A0', + ), + 'endcolor' => array( + 'argb' => 'FFFFFFFF', + ), + ), +); + +$objPHPExcel->getActiveSheet()->getStyle('A3')->applyFromArray($styleArray); +``` + +Or with a range of cells: + +```php +$objPHPExcel->getActiveSheet()->getStyle('B3:B7')->applyFromArray($styleArray); +``` + +This alternative method using arrays should be faster in terms of execution whenever you are setting more than one style property. But the difference may barely be measurable unless you have many different styles in your workbook. + +Prior to PHPExcel 1.7.0 duplicateStyleArray() was the recommended method for styling a cell range, but this method has now been deprecated since getStyle() has started to accept a cell range. + +#### Number formats + +You often want to format numbers in Excel. For example you may want a thousands separator plus a fixed number of decimals after the decimal separator. Or perhaps you want some numbers to be zero-padded. + +In Microsoft Office Excel you may be familiar with selecting a number format from the "Format Cells" dialog. Here there are some predefined number formats available including some for dates. The dialog is designed in a way so you don't have to interact with the underlying raw number format code unless you need a custom number format. + +In PHPExcel, you can also apply various predefined number formats. Example: + +```php +$objPHPExcel->getActiveSheet()->getStyle('A1')->getNumberFormat() + ->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_NUMBER_COMMA_SEPARATED1); +``` + +This will format a number e.g. 1587.2 so it shows up as 1,587.20 when you open the workbook in MS Office Excel. (Depending on settings for decimal and thousands separators in Microsoft Office Excel it may show up as 1.587,20) + +You can achieve exactly the same as the above by using this: + +```php +$objPHPExcel->getActiveSheet()->getStyle('A1')->getNumberFormat() + ->setFormatCode('#,##0.00'); +``` + +In Microsoft Office Excel, as well as in PHPExcel, you will have to interact with raw number format codes whenever you need some special custom number format. Example: + +```php +$objPHPExcel->getActiveSheet()->getStyle('A1')->getNumberFormat() + ->setFormatCode('[Blue][>=3000]$#,##0;[Red][<0]$#,##0;$#,##0'); +``` + +Another example is when you want numbers zero-padded with leading zeros to a fixed length: + +```php +$objPHPExcel->getActiveSheet()->getCell('A1')->setValue(19); +$objPHPExcel->getActiveSheet()->getStyle('A1')->getNumberFormat() + ->setFormatCode('0000'); // will show as 0019 in Excel +``` + +__Tip__ +The rules for composing a number format code in Excel can be rather complicated. Sometimes you know how to create some number format in Microsoft Office Excel, but don't know what the underlying number format code looks like. How do you find it? + +The readers shipped with PHPExcel come to the rescue. Load your template workbook using e.g. Excel2007 reader to reveal the number format code. Example how read a number format code for cell A1: + +```php +$objReader = PHPExcel_IOFactory::createReader('Excel2007'); +$objPHPExcel = $objReader->load('template.xlsx'); +var_dump($objPHPExcel->getActiveSheet()->getStyle('A1')->getNumberFormat()->getFormatCode()); +``` + +Advanced users may find it faster to inspect the number format code directly by renaming template.xlsx to template.zip, unzipping, and looking for the relevant piece of XML code holding the number format code in *xl/styles.xml*. + +#### Alignment and wrap text + +Let's set vertical alignment to the top for cells A1:D4 + +```php +$objPHPExcel->getActiveSheet()->getStyle('A1:D4') + ->getAlignment()->setVertical(PHPExcel_Style_Alignment::VERTICAL_TOP); +``` + +Here is how to achieve wrap text: + +```php +$objPHPExcel->getActiveSheet()->getStyle('A1:D4') + ->getAlignment()->setWrapText(true); +``` + +#### Setting the default style of a workbook + +It is possible to set the default style of a workbook. Let's set the default font to Arial size 8: + +```php +$objPHPExcel->getDefaultStyle()->getFont()->setName('Arial'); +$objPHPExcel->getDefaultStyle()->getFont()->setSize(8); +``` + +#### Styling cell borders + +In PHPExcel it is easy to apply various borders on a rectangular selection. Here is how to apply a thick red border outline around cells B2:G8. + +```php +$styleArray = array( + 'borders' => array( + 'outline' => array( + 'style' => PHPExcel_Style_Border::BORDER_THICK, + 'color' => array('argb' => 'FFFF0000'), + ), + ), +); + +$objWorksheet->getStyle('B2:G8')->applyFromArray($styleArray); +``` + +In Microsoft Office Excel, the above operation would correspond to selecting the cells B2:G8, launching the style dialog, choosing a thick red border, and clicking on the "Outline" border component. + +Note that the border outline is applied to the rectangular selection B2:G8 as a whole, not on each cell individually. + +You can achieve any border effect by using just the 5 basic borders and operating on a single cell at a time: + + Array key | Maps to property + ----------|------------------ + left | getLeft() + right | getRight() + top | getTop() + bottom | getBottom() + diagonal | getDiagonal() + +Additional shortcut borders come in handy like in the example above. These are the shortcut borders available: + + Array key | Maps to property + -----------|------------------ + allborders | getAllBorders() + outline | getOutline() + inside | getInside() + vertical | getVertical() + horizontal | getHorizontal() + + + +An overview of all border shortcuts can be seen in the following image: + +![08-styling-border-options.png](./images/08-styling-border-options.png "") + +If you simultaneously set e.g. allborders and vertical, then we have "overlapping" borders, and one of the components has to win over the other where there is border overlap. In PHPExcel, from weakest to strongest borders, the list is as follows: allborders, outline/inside, vertical/horizontal, left/right/top/bottom/diagonal. + +This border hierarchy can be utilized to achieve various effects in an easy manner. + +### Conditional formatting a cell + +A cell can be formatted conditionally, based on a specific rule. For example, one can set the foreground colour of a cell to red if its value is below zero, and to green if its value is zero or more. + +One can set a conditional style ruleset to a cell using the following code: + +```php +$objConditional1 = new PHPExcel_Style_Conditional(); +$objConditional1->setConditionType(PHPExcel_Style_Conditional::CONDITION_CELLIS); +$objConditional1->setOperatorType(PHPExcel_Style_Conditional::OPERATOR_LESSTHAN); +$objConditional1->addCondition('0'); +$objConditional1->getStyle()->getFont()->getColor()->setARGB(PHPExcel_Style_Color::COLOR_RED); +$objConditional1->getStyle()->getFont()->setBold(true); + +$objConditional2 = new PHPExcel_Style_Conditional(); +$objConditional2->setConditionType(PHPExcel_Style_Conditional::CONDITION_CELLIS); +$objConditional2->setOperatorType(PHPExcel_Style_Conditional::OPERATOR_GREATERTHANOREQUAL); +$objConditional2->addCondition('0'); +$objConditional2->getStyle()->getFont()->getColor()->setARGB(PHPExcel_Style_Color::COLOR_GREEN); +$objConditional2->getStyle()->getFont()->setBold(true); + +$conditionalStyles = $objPHPExcel->getActiveSheet()->getStyle('B2')->getConditionalStyles(); +array_push($conditionalStyles, $objConditional1); +array_push($conditionalStyles, $objConditional2); + +$objPHPExcel->getActiveSheet()->getStyle('B2')->setConditionalStyles($conditionalStyles); +``` + +If you want to copy the ruleset to other cells, you can duplicate the style object: + +```php +$objPHPExcel->getActiveSheet() + ->duplicateStyle( + $objPHPExcel->getActiveSheet()->getStyle('B2'), + 'B3:B7' + ); +``` + +### Add a comment to a cell + +To add a comment to a cell, use the following code. The example below adds a comment to cell E11: + +```php +$objPHPExcel->getActiveSheet() + ->getComment('E11') + ->setAuthor('Mark Baker'); +$objCommentRichText = $objPHPExcel->getActiveSheet() + ->getComment('E11') + ->getText()->createTextRun('PHPExcel:'); +$objCommentRichText->getFont()->setBold(true); +$objPHPExcel->getActiveSheet() + ->getComment('E11') + ->getText()->createTextRun("\r\n"); +$objPHPExcel->getActiveSheet() + ->getComment('E11') + ->getText()->createTextRun('Total amount on the current invoice, excluding VAT.'); +``` + +![08-cell-comment.png](./images/08-cell-comment.png "") + +### Apply autofilter to a range of cells + +To apply an autofilter to a range of cells, use the following code: + +```php +$objPHPExcel->getActiveSheet()->setAutoFilter('A1:C9'); +``` + +__Make sure that you always include the complete filter range!__ +Excel does support setting only the captionrow, but that's __not__ a best practice... + +### Setting security on a spreadsheet + +Excel offers 3 levels of "protection": document security, sheet security and cell security. + +Document security allows you to set a password on a complete spreadsheet, allowing changes to be made only when that password is entered.Worksheet security offers other security options: you can disallow inserting rows on a specific sheet, disallow sorting, ... Cell security offers the option to lock/unlock a cell as well as show/hide the internal formulaAn example on setting document security: + +```php +$objPHPExcel->getSecurity()->setLockWindows(true); +$objPHPExcel->getSecurity()->setLockStructure(true); +$objPHPExcel->getSecurity()->setWorkbookPassword("PHPExcel"); +``` + +An example on setting worksheet security: + +```php +$objPHPExcel->getActiveSheet() + ->getProtection()->setPassword('PHPExcel'); +$objPHPExcel->getActiveSheet() + ->getProtection()->setSheet(true); +$objPHPExcel->getActiveSheet() + ->getProtection()->setSort(true); +$objPHPExcel->getActiveSheet() + ->getProtection()->setInsertRows(true); +$objPHPExcel->getActiveSheet() + ->getProtection()->setFormatCells(true); +``` + +An example on setting cell security: + +```php +$objPHPExcel->getActiveSheet()->getStyle('B1') + ->getProtection() + ->setLocked(PHPExcel_Style_Protection::PROTECTION_UNPROTECTED); +``` + +__Make sure you enable worksheet protection if you need any of the worksheet protection features!__ This can be done using the following code: + +```php +$objPHPExcel->getActiveSheet()->getProtection()->setSheet(true); +``` + +### Setting data validation on a cell + +Data validation is a powerful feature of Excel2007. It allows to specify an input filter on the data that can be inserted in a specific cell. This filter can be a range (i.e. value must be between 0 and 10), a list (i.e. value must be picked from a list), ... + +The following piece of code only allows numbers between 10 and 20 to be entered in cell B3: + +```php +$objValidation = $objPHPExcel->getActiveSheet()->getCell('B3') + ->getDataValidation(); +$objValidation->setType( PHPExcel_Cell_DataValidation::TYPE_WHOLE ); +$objValidation->setErrorStyle( PHPExcel_Cell_DataValidation::STYLE_STOP ); +$objValidation->setAllowBlank(true); +$objValidation->setShowInputMessage(true); +$objValidation->setShowErrorMessage(true); +$objValidation->setErrorTitle('Input error'); +$objValidation->setError('Number is not allowed!'); +$objValidation->setPromptTitle('Allowed input'); +$objValidation->setPrompt('Only numbers between 10 and 20 are allowed.'); +$objValidation->setFormula1(10); +$objValidation->setFormula2(20); +``` + +This validation will limit the length of text that can be entered in a cell to 6 characters. + +``` +$objValidation = $objPHPExcel->getActiveSheet()->getCell('B9')->getDataValidation(); +$objValidation->setType( PHPExcel_Cell_DataValidation::TYPE_TEXTLENGTH ); +$objValidation->setErrorStyle( PHPExcel_Cell_DataValidation::STYLE_STOP ); +$objValidation->setAllowBlank(true); +$objValidation->setShowInputMessage(true); +$objValidation->setShowErrorMessage(true); +$objValidation->setErrorTitle('Input error'); +$objValidation->setError('Text exceeds maximum length'); +$objValidation->setPromptTitle('Allowed input'); +$objValidation->setPrompt('Maximum text length is 6 characters.'); +$objValidation->setFormula1(6); +``` + +The following piece of code only allows an item picked from a list of data to be entered in cell B3: + +```php +$objValidation = $objPHPExcel->getActiveSheet()->getCell('B5') + ->getDataValidation(); +$objValidation->setType( PHPExcel_Cell_DataValidation::TYPE_LIST ); +$objValidation->setErrorStyle( PHPExcel_Cell_DataValidation::STYLE_INFORMATION ); +$objValidation->setAllowBlank(false); +$objValidation->setShowInputMessage(true); +$objValidation->setShowErrorMessage(true); +$objValidation->setShowDropDown(true); +$objValidation->setErrorTitle('Input error'); +$objValidation->setError('Value is not in list.'); +$objValidation->setPromptTitle('Pick from list'); +$objValidation->setPrompt('Please pick a value from the drop-down list.'); +$objValidation->setFormula1('"Item A,Item B,Item C"'); +``` + +When using a data validation list like above, make sure you put the list between " and " and that you split the items with a comma (,). + +It is important to remember that any string participating in an Excel formula is allowed to be maximum 255 characters (not bytes). This sets a limit on how many items you can have in the string "Item A,Item B,Item C". Therefore it is normally a better idea to type the item values directly in some cell range, say A1:A3, and instead use, say, $objValidation->setFormula1('Sheet!$A$1:$A$3');. Another benefit is that the item values themselves can contain the comma "," character itself. + +If you need data validation on multiple cells, one can clone the ruleset: + +```php +$objPHPExcel->getActiveSheet()->getCell('B8')->setDataValidation(clone $objValidation); +``` + +### Setting a column's width + +A column's width can be set using the following code: + +```php +$objPHPExcel->getActiveSheet()->getColumnDimension('D')->setWidth(12); +``` + +If you want PHPExcel to perform an automatic width calculation, use the following code. PHPExcel will approximate the column with to the width of the widest column value. + +```php +$objPHPExcel->getActiveSheet()->getColumnDimension('B')->setAutoSize(true); +``` + +![08-column-width.png](./images/08-column-width.png "") + +The measure for column width in PHPExcel does __not__ correspond exactly to the measure you may be used to in Microsoft Office Excel. Column widths are difficult to deal with in Excel, and there are several measures for the column width.1) __Inner width in character units__ (e.g. 8.43 this is probably what you are familiar with in Excel)2) __Full width in pixels__ (e.g. 64 pixels)3) __Full width in character units__ (e.g. 9.140625, value -1 indicates unset width)__PHPExcel always operates with 3) "Full width in character units"__ which is in fact the only value that is stored in any Excel file, hence the most reliable measure. Unfortunately, __Microsoft ____Office ____Excel does not present you with this ____measure__. Instead measures 1) and 2) are computed by the application when the file is opened and these values are presented in various dialogues and tool tips.The character width unit is the width of a '0' (zero) glyph in the workbooks default font. Therefore column widths measured in character units in two different workbooks can only be compared if they have the same default workbook font.If you have some Excel file and need to know the column widths in measure 3), you can read the Excel file with PHPExcel and echo the retrieved values. + +### Show/hide a column + +To set a worksheet's column visibility, you can use the following code. The first line explicitly shows the column C, the second line hides column D. + +```php +$objPHPExcel->getActiveSheet()->getColumnDimension('C')->setVisible(true); +$objPHPExcel->getActiveSheet()->getColumnDimension('D')->setVisible(false); +``` + +### Group/outline a column + +To group/outline a column, you can use the following code: + +```php +$objPHPExcel->getActiveSheet()->getColumnDimension('E')->setOutlineLevel(1); +``` + +You can also collapse the column. Note that you should also set the column invisible, otherwise the collapse will not be visible in Excel 2007. + +```php +$objPHPExcel->getActiveSheet()->getColumnDimension('E')->setCollapsed(true); +$objPHPExcel->getActiveSheet()->getColumnDimension('E')->setVisible(false); +``` + +Please refer to the section "group/outline a row" for a complete example on collapsing. + +You can instruct PHPExcel to add a summary to the right (default), or to the left. The following code adds the summary to the left: + +```php +$objPHPExcel->getActiveSheet()->setShowSummaryRight(false); +``` + +### Setting a row's height + +A row's height can be set using the following code: + +```php +$objPHPExcel->getActiveSheet()->getRowDimension('10')->setRowHeight(100); +``` + +Excel measures row height in points, where 1 pt is 1/72 of an inch (or about 0.35mm). The default value is 12.75 pts; and the permitted range of values is between 0 and 409 pts, where 0 pts is a hidden row. + +### Show/hide a row + +To set a worksheet''s row visibility, you can use the following code. The following example hides row number 10. + +```php +$objPHPExcel->getActiveSheet()->getRowDimension('10')->setVisible(false); +``` + +Note that if you apply active filters using an AutoFilter, then this will override any rows that you hide or unhide manually within that AutoFilter range if you save the file. + +### Group/outline a row + +To group/outline a row, you can use the following code: + +```php +$objPHPExcel->getActiveSheet()->getRowDimension('5')->setOutlineLevel(1); +``` + +You can also collapse the row. Note that you should also set the row invisible, otherwise the collapse will not be visible in Excel 2007. + +```php +$objPHPExcel->getActiveSheet()->getRowDimension('5')->setCollapsed(true); +$objPHPExcel->getActiveSheet()->getRowDimension('5')->setVisible(false); +``` + +Here's an example which collapses rows 50 to 80: + +```php +for ($i = 51; $i <= 80; $i++) { + $objPHPExcel->getActiveSheet()->setCellValue('A' . $i, "FName $i"); + $objPHPExcel->getActiveSheet()->setCellValue('B' . $i, "LName $i"); + $objPHPExcel->getActiveSheet()->setCellValue('C' . $i, "PhoneNo $i"); + $objPHPExcel->getActiveSheet()->setCellValue('D' . $i, "FaxNo $i"); + $objPHPExcel->getActiveSheet()->setCellValue('E' . $i, true); + $objPHPExcel->getActiveSheet()->getRowDimension($i)->setOutlineLevel(1); + $objPHPExcel->getActiveSheet()->getRowDimension($i)->setVisible(false); +} + +$objPHPExcel->getActiveSheet()->getRowDimension(81)->setCollapsed(true); +``` + +You can instruct PHPExcel to add a summary below the collapsible rows (default), or above. The following code adds the summary above: + +```php +$objPHPExcel->getActiveSheet()->setShowSummaryBelow(false); +``` + +### Merge/unmerge cells + +If you have a big piece of data you want to display in a worksheet, you can merge two or more cells together, to become one cell. This can be done using the following code: + +```php +$objPHPExcel->getActiveSheet()->mergeCells('A18:E22'); +``` + +Removing a merge can be done using the unmergeCells method: + +```php +$objPHPExcel->getActiveSheet()->unmergeCells('A18:E22'); +``` + +### Inserting rows/columns + +You can insert/remove rows/columns at a specific position. The following code inserts 2 new rows, right before row 7: + +```php +$objPHPExcel->getActiveSheet()->insertNewRowBefore(7, 2); +``` + +### Add a drawing to a worksheet + +A drawing is always represented as a separate object, which can be added to a worksheet. Therefore, you must first instantiate a new PHPExcel_Worksheet_Drawing, and assign its properties a meaningful value: + +```php +$objDrawing = new PHPExcel_Worksheet_Drawing(); +$objDrawing->setName('Logo'); +$objDrawing->setDescription('Logo'); +$objDrawing->setPath('./images/officelogo.jpg'); +$objDrawing->setHeight(36); +``` + +To add the above drawing to the worksheet, use the following snippet of code. PHPExcel creates the link between the drawing and the worksheet: + +```php +$objDrawing->setWorksheet($objPHPExcel->getActiveSheet()); +``` + +You can set numerous properties on a drawing, here are some examples: + +```php +$objDrawing->setName('Paid'); +$objDrawing->setDescription('Paid'); +$objDrawing->setPath('./images/paid.png'); +$objDrawing->setCoordinates('B15'); +$objDrawing->setOffsetX(110); +$objDrawing->setRotation(25); +$objDrawing->getShadow()->setVisible(true); +$objDrawing->getShadow()->setDirection(45); +``` + +You can also add images created using GD functions without needing to save them to disk first as In-Memory drawings. + +```php +// Use GD to create an in-memory image +$gdImage = @imagecreatetruecolor(120, 20) or die('Cannot Initialize new GD image stream'); +$textColor = imagecolorallocate($gdImage, 255, 255, 255); +imagestring($gdImage, 1, 5, 5, 'Created with PHPExcel', $textColor); + +// Add the In-Memory image to a worksheet +$objDrawing = new PHPExcel_Worksheet_MemoryDrawing(); +$objDrawing->setName('In-Memory image 1'); +$objDrawing->setDescription('In-Memory image 1'); +$objDrawing->setCoordinates('A1'); +$objDrawing->setImageResource($gdImage); +$objDrawing->setRenderingFunction( + PHPExcel_Worksheet_MemoryDrawing::RENDERING_JPEG +); +$objDrawing->setMimeType(PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_DEFAULT); +$objDrawing->setHeight(36); +$objDrawing->setWorksheet($objPHPExcel->getActiveSheet()); +``` + +### Reading Images from a worksheet + +A commonly asked question is how to retrieve the images from a workbook that has been loaded, and save them as individual image files to disk. + +The following code extracts images from the current active worksheet, and writes each as a separate file. + +```php +$i = 0; +foreach ($objPHPExcel->getActiveSheet()->getDrawingCollection() as $drawing) { + if ($drawing instanceof PHPExcel_Worksheet_MemoryDrawing) { + ob_start(); + call_user_func( + $drawing->getRenderingFunction(), + $drawing->getImageResource() + ); + $imageContents = ob_get_contents(); + ob_end_clean(); + switch ($drawing->getMimeType()) { + case PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_PNG : + $extension = 'png'; + break; + case PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_GIF: + $extension = 'gif'; + break; + case PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_JPEG : + $extension = 'jpg'; + break; + } + } else { + $zipReader = fopen($drawing->getPath(),'r'); + $imageContents = ''; + while (!feof($zipReader)) { + $imageContents .= fread($zipReader,1024); + } + fclose($zipReader); + $extension = $drawing->getExtension(); + } + $myFileName = '00_Image_'.++$i.'.'.$extension; + file_put_contents($myFileName,$imageContents); +} +``` + +### Add rich text to a cell + +Adding rich text to a cell can be done using PHPExcel_RichText instances. Here''s an example, which creates the following rich text string: + + > This invoice is *__payable within thirty days after the end of the month__* unless specified otherwise on the invoice. + +```php +$objRichText = new PHPExcel_RichText(); +$objRichText->createText('This invoice is '); +$objPayable = $objRichText->createTextRun('payable within thirty days after the end of the month'); +$objPayable->getFont()->setBold(true); +$objPayable->getFont()->setItalic(true); +$objPayable->getFont()->setColor( new PHPExcel_Style_Color( PHPExcel_Style_Color::COLOR_DARKGREEN ) ); +$objRichText->createText(', unless specified otherwise on the invoice.'); +$objPHPExcel->getActiveSheet()->getCell('A18')->setValue($objRichText); +``` + +### Define a named range + +PHPExcel supports the definition of named ranges. These can be defined using the following code: + +```php +// Add some data +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', 'Firstname:'); +$objPHPExcel->getActiveSheet()->setCellValue('A2', 'Lastname:'); +$objPHPExcel->getActiveSheet()->setCellValue('B1', 'Maarten'); +$objPHPExcel->getActiveSheet()->setCellValue('B2', 'Balliauw'); + +// Define named ranges +$objPHPExcel->addNamedRange( new PHPExcel_NamedRange('PersonFN', $objPHPExcel->getActiveSheet(), 'B1') ); +$objPHPExcel->addNamedRange( new PHPExcel_NamedRange('PersonLN', $objPHPExcel->getActiveSheet(), 'B2') ); +``` + +Optionally, a fourth parameter can be passed defining the named range local (i.e. only usable on the current worksheet). Named ranges are global by default. + +### Redirect output to a client's web browser + +Sometimes, one really wants to output a file to a client''s browser, especially when creating spreadsheets on-the-fly. There are some easy steps that can be followed to do this: + + 1. Create your PHPExcel spreadsheet + 2. Output HTTP headers for the type of document you wish to output + 3. Use the PHPExcel_Writer_* of your choice, and save to "php://output" + +ÂPHPExcel_Writer_Excel2007 uses temporary storage when writing to php://output. By default, temporary files are stored in the script's working directory. When there is no access, it falls back to the operating system's temporary files location. + +__This may not be safe for unauthorized viewing!__ +Depending on the configuration of your operating system, temporary storage can be read by anyone using the same temporary storage folder. When confidentiality of your document is needed, it is recommended not to use php://output. + +#### HTTP headers + +Example of a script redirecting an Excel 2007 file to the client's browser: + +```php +/* Here there will be some code where you create $objPHPExcel */ + +// redirect output to client browser +header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'); +header('Content-Disposition: attachment;filename="myfile.xlsx"'); +header('Cache-Control: max-age=0'); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save('php://output'); +``` + +Example of a script redirecting an Excel5 file to the client's browser: + +```php +/* Here there will be some code where you create $objPHPExcel */ + +// redirect output to client browser +header('Content-Type: application/vnd.ms-excel'); +header('Content-Disposition: attachment;filename="myfile.xls"'); +header('Cache-Control: max-age=0'); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save('php://output'); +``` + +**Caution:** + +Make sure not to include any echo statements or output any other contents than the Excel file. There should be no whitespace before the opening <?php tag and at most one line break after the closing ?> tag (which can also be omitted to avoid problems). Make sure that your script is saved without a BOM (Byte-order mark) because this counts as echoing output. The same things apply to all included files. +Failing to follow the above guidelines may result in corrupt Excel files arriving at the client browser, and/or that headers cannot be set by PHP (resulting in warning messages). + +### Setting the default column width + +Default column width can be set using the following code: + +```php +$objPHPExcel->getActiveSheet()->getDefaultColumnDimension()->setWidth(12); +``` + +### Setting the default row height + +Default row height can be set using the following code: + +```php +$objPHPExcel->getActiveSheet()->getDefaultRowDimension()->setRowHeight(15); +``` + +### Add a GD drawing to a worksheet + +There might be a situation where you want to generate an in-memory image using GD and add it to a PHPExcel worksheet without first having to save this file to a temporary location. + +Here''s an example which generates an image in memory and adds it to the active worksheet: + +```php +// Generate an image +$gdImage = @imagecreatetruecolor(120, 20) or die('Cannot Initialize new GD image stream'); +$textColor = imagecolorallocate($gdImage, 255, 255, 255); +imagestring($gdImage, 1, 5, 5, 'Created with PHPExcel', $textColor); + +// Add a drawing to the worksheet +$objDrawing = new PHPExcel_Worksheet_MemoryDrawing(); +$objDrawing->setName('Sample image'); +$objDrawing->setDescription('Sample image'); +$objDrawing->setImageResource($gdImage); +$objDrawing->setRenderingFunction(PHPExcel_Worksheet_MemoryDrawing::RENDERING_JPEG); +$objDrawing->setMimeType(PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_DEFAULT); +$objDrawing->setHeight(36); +$objDrawing->setWorksheet($objPHPExcel->getActiveSheet()); +``` + +### Setting worksheet zoom level + +To set a worksheet's zoom level, the following code can be used: + +```php +$objPHPExcel->getActiveSheet()->getSheetView()->setZoomScale(75); +``` + +Note that zoom level should be in range 10 – 400. + +### Sheet tab color + +Sometimes you want to set a color for sheet tab. For example you can have a red sheet tab: + +```php +$objWorksheet->getTabColor()->setRGB('FF0000'); +``` + +### Creating worksheets in a workbook + +If you need to create more worksheets in the workbook, here is how: + +```php +$objWorksheet1 = $objPHPExcel->createSheet(); +$objWorksheet1->setTitle('Another sheet'); +``` + +Think of createSheet() as the "Insert sheet" button in Excel. When you hit that button a new sheet is appended to the existing collection of worksheets in the workbook. + +### Hidden worksheets (Sheet states) + +Set a worksheet to be __hidden__ using this code: + +```php +$objPHPExcel->getActiveSheet() + ->setSheetState(PHPExcel_Worksheet::SHEETSTATE_HIDDEN); +``` + +Sometimes you may even want the worksheet to be __"very hidden"__. The available sheet states are : + + - PHPExcel_Worksheet::SHEETSTATE_VISIBLE + - PHPExcel_Worksheet::SHEETSTATE_HIDDEN + - PHPExcel_Worksheet::SHEETSTATE_VERYHIDDEN + +In Excel the sheet state "very hidden" can only be set programmatically, e.g. with Visual Basic Macro. It is not possible to make such a sheet visible via the user interface. + +### Right-to-left worksheet + +Worksheets can be set individually whether column "A" should start at left or right side. Default is left. Here is how to set columns from right-to-left. + +```php +// right-to-left worksheet +$objPHPExcel->getActiveSheet() + ->setRightToLeft(true); +``` + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/09-Calculation-Engine.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/09-Calculation-Engine.md new file mode 100644 index 0000000..c13a18c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/09-Calculation-Engine.md @@ -0,0 +1,52 @@ +# PHPExcel Developer Documentation + +## Using the PHPExcel calculation engine + +### Performing formula calculations + +As PHPExcel represents an in-memory spreadsheet, it also offers formula calculation capabilities. A cell can be of a value type (containing a number or text), or a formula type (containing a formula which can be evaluated). For example, the formula "=SUM(A1:A10)" evaluates to the sum of values in A1, A2, ..., A10. + +To calculate a formula, you can call the cell containing the formula’s method getCalculatedValue(), for example: + +```php +$objPHPExcel->getActiveSheet()->getCell('E11')->getCalculatedValue(); +``` +If you write the following line of code in the invoice demo included with PHPExcel, it evaluates to the value "64": + +![09-command-line-calculation.png](./images/09-command-line-calculation.png "") + +Another nice feature of PHPExcel's formula parser, is that it can automatically adjust a formula when inserting/removing rows/columns. Here's an example: + +![09-formula-in-cell-1.png](./images/09-formula-in-cell-1.png "") + +You see that the formula contained in cell E11 is "SUM(E4:E9)". Now, when I write the following line of code, two new product lines are added: + +```php +$objPHPExcel->getActiveSheet()->insertNewRowBefore(7, 2); +``` + +![09-formula-in-cell-2.png](./images/09-formula-in-cell-2.png "") + +Did you notice? The formula in the former cell E11 (now E13, as I inserted 2 new rows), changed to "SUM(E4:E11)". Also, the inserted cells duplicate style information of the previous cell, just like Excel's behaviour. Note that you can both insert rows and columns. + +### Known limitations + +There are some known limitations to the PHPExcel calculation engine. Most of them are due to the fact that an Excel formula is converted into PHP code before being executed. This means that Excel formula calculation is subject to PHP's language characteristics. + +#### Operator precedence + +In Excel '+' wins over '&', just like '*' wins over '+' in ordinary algebra. The former rule is not what one finds using the calculation engine shipped with PHPExcel. + +Reference for operator precedence in Excel: [http://support.microsoft.com/kb/25189][18] + +Reference for operator precedence in PHP: [http://www.php.net/operators][19] + +#### Formulas involving numbers and text + +Formulas involving numbers and text may produce unexpected results or even unreadable file contents. For example, the formula '=3+"Hello "' is expected to produce an error in Excel (#VALUE!). Due to the fact that PHP converts “Hello†to a numeric value (zero), the result of this formula is evaluated as 3 instead of evaluating as an error. This also causes the Excel document being generated as containing unreadable content. + +Reference for this behaviour in PHP: [http://be.php.net/manual/en/language.types.string.php#language.types.string.conversion][20] + + [18]: http://support.microsoft.com/kb/25189 + [19]: http://www.php.net/operators + [20]: http://be.php.net/manual/en/language.types.string.php#language.types.string.conversion diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/10-Reading-and-Writing.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/10-Reading-and-Writing.md new file mode 100644 index 0000000..1468abc --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/10-Reading-and-Writing.md @@ -0,0 +1,714 @@ +# PHPExcel Developer Documentation + +## Reading and writing to file + +As you already know from part REF _Ref191885438 \w \h 3.3 REF _Ref191885438 \h Readers and writers, reading and writing to a persisted storage is not possible using the base PHPExcel classes. For this purpose, PHPExcel provides readers and writers, which are implementations of PHPExcel_Writer_IReader and PHPExcel_Writer_IWriter. + +### PHPExcel_IOFactory + +The PHPExcel API offers multiple methods to create a PHPExcel_Writer_IReader or PHPExcel_Writer_IWriter instance: + +Direct creation via PHPExcel_IOFactory. All examples underneath demonstrate the direct creation method. Note that you can also use the PHPExcel_IOFactory class to do this. + +#### Creating PHPExcel_Reader_IReader using PHPExcel_IOFactory + +There are 2 methods for reading in a file into PHPExcel: using automatic file type resolving or explicitly. + +Automatic file type resolving checks the different PHPExcel_Reader_IReader distributed with PHPExcel. If one of them can load the specified file name, the file is loaded using that PHPExcel_Reader_IReader. Explicit mode requires you to specify which PHPExcel_Reader_IReader should be used. + +You can create a PHPExcel_Reader_IReader instance using PHPExcel_IOFactory in automatic file type resolving mode using the following code sample: + +```php +$objPHPExcel = PHPExcel_IOFactory::load("05featuredemo.xlsx"); +``` + +A typical use of this feature is when you need to read files uploaded by your users, and you don’t know whether they are uploading xls or xlsx files. + +If you need to set some properties on the reader, (e.g. to only read data, see more about this later), then you may instead want to use this variant: + +```php +$objReader = PHPExcel_IOFactory::createReaderForFile("05featuredemo.xlsx"); +$objReader->setReadDataOnly(true); +$objReader->load("05featuredemo.xlsx"); +``` + +You can create a PHPExcel_Reader_IReader instance using PHPExcel_IOFactory in explicit mode using the following code sample: + +```php +$objReader = PHPExcel_IOFactory::createReader("Excel2007"); +$objPHPExcel = $objReader->load("05featuredemo.xlsx"); +``` + +Note that automatic type resolving mode is slightly slower than explicit mode. + +#### Creating PHPExcel_Writer_IWriter using PHPExcel_IOFactory + +You can create a PHPExcel_Writer_Iwriter instance using PHPExcel_IOFactory: + +```php +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, "Excel2007"); +$objWriter->save("05featuredemo.xlsx"); +``` + +### Excel 2007 (SpreadsheetML) file format + +Excel2007 file format is the main file format of PHPExcel. It allows outputting the in-memory spreadsheet to a .xlsx file. + +#### PHPExcel_Reader_Excel2007 + +##### Reading a spreadsheet + +You can read an .xlsx file using the following code: + +```php +$objReader = new PHPExcel_Reader_Excel2007(); +$objPHPExcel = $objReader->load("05featuredemo.xlsx"); +``` + +##### Read data only + +You can set the option setReadDataOnly on the reader, to instruct the reader to ignore styling, data validation, … and just read cell data: + +```php +$objReader = new PHPExcel_Reader_Excel2007(); +$objReader->setReadDataOnly(true); +$objPHPExcel = $objReader->load("05featuredemo.xlsx"); +``` + +##### Read specific sheets only + +You can set the option setLoadSheetsOnly on the reader, to instruct the reader to only load the sheets with a given name: + +```php +$objReader = new PHPExcel_Reader_Excel2007(); +$objReader->setLoadSheetsOnly( array("Sheet 1", "My special sheet") ); +$objPHPExcel = $objReader->load("05featuredemo.xlsx"); +``` + +##### Read specific cells only + +You can set the option setReadFilter on the reader, to instruct the reader to only load the cells which match a given rule. A read filter can be any class which implements PHPExcel_Reader_IReadFilter. By default, all cells are read using the PHPExcel_Reader_DefaultReadFilter. + +The following code will only read row 1 and rows 20 – 30 of any sheet in the Excel file: + +```php +class MyReadFilter implements PHPExcel_Reader_IReadFilter { + + public function readCell($column, $row, $worksheetName = '') { + // Read title row and rows 20 - 30 + if ($row == 1 || ($row >= 20 && $row <= 30)) { + return true; + } + return false; + } +} + +$objReader = new PHPExcel_Reader_Excel2007(); +$objReader->setReadFilter( new MyReadFilter() ); +$objPHPExcel = $objReader->load("06largescale.xlsx"); +``` + +#### PHPExcel_Writer_Excel2007 + +##### Writing a spreadsheet + +You can write an .xlsx file using the following code: + +```php +$objWriter = new PHPExcel_Writer_Excel2007($objPHPExcel); +$objWriter->save("05featuredemo.xlsx"); +``` + +##### Formula pre-calculation + +By default, this writer pre-calculates all formulas in the spreadsheet. This can be slow on large spreadsheets, and maybe even unwanted. You can however disable formula pre-calculation: + +```php +$objWriter = new PHPExcel_Writer_Excel2007($objPHPExcel); +$objWriter->setPreCalculateFormulas(false); +$objWriter->save("05featuredemo.xlsx"); +``` + +##### Office 2003 compatibility pack + +Because of a bug in the Office2003 compatibility pack, there can be some small issues when opening Excel2007 spreadsheets (mostly related to formula calculation). You can enable Office2003 compatibility with the following code: + +``` +$objWriter = new PHPExcel_Writer_Excel2007($objPHPExcel); +$objWriter->setOffice2003Compatibility(true); +$objWriter->save("05featuredemo.xlsx"); +``` + +__Office2003 compatibility should only be used when needed__ +Office2003 compatibility option should only be used when needed. This option disables several Office2007 file format options, resulting in a lower-featured Office2007 spreadsheet when this option is used. + +### Excel 5 (BIFF) file format + +Excel5 file format is the old Excel file format, implemented in PHPExcel to provide a uniform manner to create both .xlsx and .xls files. It is basically a modified version of [PEAR Spreadsheet_Excel_Writer][21], although it has been extended and has fewer limitations and more features than the old PEAR library. This can read all BIFF versions that use OLE2: BIFF5 (introduced with office 95) through BIFF8, but cannot read earlier versions. + +Excel5 file format will not be developed any further, it just provides an additional file format for PHPExcel. + +__Excel5 (BIFF) limitations__ +Please note that BIFF file format has some limits regarding to styling cells and handling large spreadsheets via PHP. + +#### PHPExcel_Reader_Excel5 + +##### Reading a spreadsheet + +You can read an .xls file using the following code: + +```php +$objReader = new PHPExcel_Reader_Excel5(); +$objPHPExcel = $objReader->load("05featuredemo.xls"); +``` + +##### Read data only + +You can set the option setReadDataOnly on the reader, to instruct the reader to ignore styling, data validation, … and just read cell data: + +```php +$objReader = new PHPExcel_Reader_Excel5(); +$objReader->setReadDataOnly(true); +$objPHPExcel = $objReader->load("05featuredemo.xls"); +``` + +##### Read specific sheets only + +You can set the option setLoadSheetsOnly on the reader, to instruct the reader to only load the sheets with a given name: + +```php +$objReader = new PHPExcel_Reader_Excel5(); +$objReader->setLoadSheetsOnly( array("Sheet 1", "My special sheet") ); +$objPHPExcel = $objReader->load("05featuredemo.xls"); +``` + +##### Read specific cells only + +You can set the option setReadFilter on the reader, to instruct the reader to only load the cells which match a given rule. A read filter can be any class which implements PHPExcel_Reader_IReadFilter. By default, all cells are read using the PHPExcel_Reader_DefaultReadFilter. + +The following code will only read row 1 and rows 20 to 30 of any sheet in the Excel file: + +```php +class MyReadFilter implements PHPExcel_Reader_IReadFilter { + + public function readCell($column, $row, $worksheetName = '') { + // Read title row and rows 20 - 30 + if ($row == 1 || ($row >= 20 && $row <= 30)) { + return true; + } + return false; + } +} + +$objReader = new PHPExcel_Reader_Excel5(); +$objReader->setReadFilter( new MyReadFilter() ); +$objPHPExcel = $objReader->load("06largescale.xls"); +``` + +#### PHPExcel_Writer_Excel5 + +##### Writing a spreadsheet + +You can write an .xls file using the following code: + +```php +$objWriter = new PHPExcel_Writer_Excel5($objPHPExcel); +$objWriter->save("05featuredemo.xls"); +``` + +### Excel 2003 XML file format + +Excel 2003 XML file format is a file format which can be used in older versions of Microsoft Excel. + +__Excel 2003 XML limitations__ +Please note that Excel 2003 XML format has some limits regarding to styling cells and handling large spreadsheets via PHP. + +#### PHPExcel_Reader_Excel2003XML + +##### Reading a spreadsheet + +You can read an Excel 2003 .xml file using the following code: + +```php +$objReader = new PHPExcel_Reader_Excel2003XML(); +$objPHPExcel = $objReader->load("05featuredemo.xml"); +``` + +##### Read specific cells only + +You can set the option setReadFilter on the reader, to instruct the reader to only load the cells which match a given rule. A read filter can be any class which implements PHPExcel_Reader_IReadFilter. By default, all cells are read using the PHPExcel_Reader_DefaultReadFilter. + +The following code will only read row 1 and rows 20 to 30 of any sheet in the Excel file: + +```php +class MyReadFilter implements PHPExcel_Reader_IReadFilter { + + public function readCell($column, $row, $worksheetName = '') { + // Read title row and rows 20 - 30 + if ($row == 1 || ($row >= 20 && $row <= 30)) { + return true; + } + return false; + } + +} + +$objReader = new PHPExcel_Reader_Excel2003XML(); +$objReader->setReadFilter( new MyReadFilter() ); +$objPHPExcel = $objReader->load("06largescale.xml"); +``` + +### Symbolic LinK (SYLK) + +Symbolic Link (SYLK) is a Microsoft file format typically used to exchange data between applications, specifically spreadsheets. SYLK files conventionally have a .slk suffix. Composed of only displayable ANSI characters, it can be easily created and processed by other applications, such as databases. + +__SYLK limitations__ +Please note that SYLK file format has some limits regarding to styling cells and handling large spreadsheets via PHP. + +#### PHPExcel_Reader_SYLK + +##### Reading a spreadsheet + +You can read an .slk file using the following code: + +```php +$objReader = new PHPExcel_Reader_SYLK(); +$objPHPExcel = $objReader->load("05featuredemo.slk"); +``` + +##### Read specific cells only + +You can set the option setReadFilter on the reader, to instruct the reader to only load the cells which match a given rule. A read filter can be any class which implements PHPExcel_Reader_IReadFilter. By default, all cells are read using the PHPExcel_Reader_DefaultReadFilter. + +The following code will only read row 1 and rows 20 to 30 of any sheet in the SYLK file: + +```php +class MyReadFilter implements PHPExcel_Reader_IReadFilter { + + public function readCell($column, $row, $worksheetName = '') { + // Read title row and rows 20 - 30 + if ($row == 1 || ($row >= 20 && $row <= 30)) { + return true; + } + return false; + } + +} + +$objReader = new PHPExcel_Reader_SYLK(); +$objReader->setReadFilter( new MyReadFilter() ); +$objPHPExcel = $objReader->load("06largescale.slk"); +``` + +### Open/Libre Office (.ods) + +Open Office or Libre Office .ods files are the standard file format for Open Office or Libre Office Calc files. + +#### PHPExcel_Reader_OOCalc + +##### Reading a spreadsheet + +You can read an .ods file using the following code: + +```php +$objReader = new PHPExcel_Reader_OOCalc(); +$objPHPExcel = $objReader->load("05featuredemo.ods"); +``` + +##### Read specific cells only + +You can set the option setReadFilter on the reader, to instruct the reader to only load the cells which match a given rule. A read filter can be any class which implements PHPExcel_Reader_IReadFilter. By default, all cells are read using the PHPExcel_Reader_DefaultReadFilter. + +The following code will only read row 1 and rows 20 to 30 of any sheet in the Calc file: + +```php +class MyReadFilter implements PHPExcel_Reader_IReadFilter { + + public function readCell($column, $row, $worksheetName = '') { + // Read title row and rows 20 - 30 + if ($row == 1 || ($row >= 20 && $row <= 30)) { + return true; + } + return false; + } + +} + +$objReader = new PHPExcel_Reader_OOcalc(); +$objReader->setReadFilter( new MyReadFilter() ); +$objPHPExcel = $objReader->load("06largescale.ods"); +``` + +### CSV (Comma Separated Values) + +CSV (Comma Separated Values) are often used as an import/export file format with other systems. PHPExcel allows reading and writing to CSV files. + +__CSV limitations__ +Please note that CSV file format has some limits regarding to styling cells, number formatting, ... + +#### PHPExcel_Reader_CSV + +##### Reading a CSV file + +You can read a .csv file using the following code: + +```php +$objReader = new PHPExcel_Reader_CSV(); +$objPHPExcel = $objReader->load("sample.csv"); +``` + +##### Setting CSV options + +Often, CSV files are not really “comma separatedâ€, or use semicolon (;) as a separator. You can instruct PHPExcel_Reader_CSV some options before reading a CSV file. + +Note that PHPExcel_Reader_CSV by default assumes that the loaded CSV file is UTF-8 encoded. If you are reading CSV files that were created in Microsoft Office Excel the correct input encoding may rather be Windows-1252 (CP1252). Always make sure that the input encoding is set appropriately. + +```php +$objReader = new PHPExcel_Reader_CSV(); +$objReader->setInputEncoding('CP1252'); +$objReader->setDelimiter(';'); +$objReader->setEnclosure(''); +$objReader->setLineEnding("\r\n"); +$objReader->setSheetIndex(0); + +$objPHPExcel = $objReader->load("sample.csv"); +``` + +##### Read a specific worksheet + +CSV files can only contain one worksheet. Therefore, you can specify which sheet to read from CSV: + +```php +$objReader->setSheetIndex(0); +``` + +##### Read into existing spreadsheet + +When working with CSV files, it might occur that you want to import CSV data into an existing PHPExcel object. The following code loads a CSV file into an existing $objPHPExcel containing some sheets, and imports onto the 6th sheet: + +```php +$objReader = new PHPExcel_Reader_CSV(); +$objReader->setDelimiter(';'); +$objReader->setEnclosure(''); +$objReader->setLineEnding("\r\n"); +$objReader->setSheetIndex(5); + +$objReader->loadIntoExisting("05featuredemo.csv", $objPHPExcel); +``` + +#### PHPExcel_Writer_CSV + +##### Writing a CSV file + +You can write a .csv file using the following code: + +```php +$objWriter = new PHPExcel_Writer_CSV($objPHPExcel); +$objWriter->save("05featuredemo.csv"); +``` + +##### Setting CSV options + +Often, CSV files are not really “comma separatedâ€, or use semicolon (;) as a separator. You can instruct PHPExcel_Writer_CSV some options before writing a CSV file: + +```php +$objWriter = new PHPExcel_Writer_CSV($objPHPExcel); +$objWriter->setDelimiter(';'); +$objWriter->setEnclosure(''); +$objWriter->setLineEnding("\r\n"); +$objWriter->setSheetIndex(0); + +$objWriter->save("05featuredemo.csv"); +``` + +##### Write a specific worksheet + +CSV files can only contain one worksheet. Therefore, you can specify which sheet to write to CSV: + +```php +$objWriter->setSheetIndex(0); +``` + +##### Formula pre-calculation + +By default, this writer pre-calculates all formulas in the spreadsheet. This can be slow on large spreadsheets, and maybe even unwanted. You can however disable formula pre-calculation: + +```php +$objWriter = new PHPExcel_Writer_CSV($objPHPExcel); +$objWriter->setPreCalculateFormulas(false); +$objWriter->save("05featuredemo.csv"); +``` + +##### Writing UTF-8 CSV files + +A CSV file can be marked as UTF-8 by writing a BOM file header. This can be enabled by using the following code: + +```php +$objWriter = new PHPExcel_Writer_CSV($objPHPExcel); +$objWriter->setUseBOM(true); +$objWriter->save("05featuredemo.csv"); +``` + +##### Decimal and thousands separators + +If the worksheet you are exporting contains numbers with decimal or thousands separators then you should think about what characters you want to use for those before doing the export. + +By default PHPExcel looks up in the server's locale settings to decide what characters to use. But to avoid problems it is recommended to set the characters explicitly as shown below. + +English users will want to use this before doing the export: + +```php +PHPExcel_Shared_String::setDecimalSeparator('.'); +PHPExcel_Shared_String::setThousandsSeparator(','); +``` + +German users will want to use the opposite values. + +```php +PHPExcel_Shared_String::setDecimalSeparator(','); +PHPExcel_Shared_String::setThousandsSeparator('.'); +``` + +Note that the above code sets decimal and thousand separators as global options. This also affects how HTML and PDF is exported. + +### HTML + +PHPExcel allows you to read or write a spreadsheet as HTML format, for quick representation of the data in it to anyone who does not have a spreadsheet application on their PC, or loading files saved by other scripts that simply create HTML markup and give it a .xls file extension. + +__HTML limitations__ +Please note that HTML file format has some limits regarding to styling cells, number formatting, ... + +#### PHPExcel_Reader_HTML + +##### Reading a spreadsheet + +You can read an .html or .htm file using the following code: + +```php +$objReader = new PHPExcel_Reader_HTML(); + +$objPHPExcel = $objReader->load("05featuredemo.html"); +``` + +__HTML limitations__ +Please note that HTML reader is still experimental and does not yet support merged cells or nested tables cleanly + +#### PHPExcel_Writer_HTML + +Please note that PHPExcel_Writer_HTML only outputs the first worksheet by default. + +##### Writing a spreadsheet + +You can write a .htm file using the following code: + +```php +$objWriter = new PHPExcel_Writer_HTML($objPHPExcel); + +$objWriter->save("05featuredemo.htm"); +``` + +##### Write all worksheets + +HTML files can contain one or more worksheets. If you want to write all sheets into a single HTML file, use the following code: + +```php +$objWriter->writeAllSheets(); +``` + +##### Write a specific worksheet + +HTML files can contain one or more worksheets. Therefore, you can specify which sheet to write to HTML: + +```php +$objWriter->setSheetIndex(0); +``` + +##### Setting the images root of the HTML file + +There might be situations where you want to explicitly set the included images root. For example, one might want to see +```html +<img style="position: relative; left: 0px; top: 0px; width: 140px; height: 78px;" src="http://www.domain.com/*images/logo.jpg" border="0"> +``` + +instead of + +```html +<img style="position: relative; left: 0px; top: 0px; width: 140px; height: 78px;" src="./images/logo.jpg" border="0">. +``` + +You can use the following code to achieve this result: + +```php +$objWriter->setImagesRoot('http://www.example.com'); +``` + +##### Formula pre-calculation + +By default, this writer pre-calculates all formulas in the spreadsheet. This can be slow on large spreadsheets, and maybe even unwanted. You can however disable formula pre-calculation: + +```php +$objWriter = new PHPExcel_Writer_HTML($objPHPExcel); +$objWriter->setPreCalculateFormulas(false); + +$objWriter->save("05featuredemo.htm"); +``` + +##### Embedding generated HTML in a web page + +There might be a situation where you want to embed the generated HTML in an existing website. PHPExcel_Writer_HTML provides support to generate only specific parts of the HTML code, which allows you to use these parts in your website. + +Supported methods: + + - generateHTMLHeader() + - generateStyles() + - generateSheetData() + - generateHTMLFooter() + +Here's an example which retrieves all parts independently and merges them into a resulting HTML page: + +```php +<?php +$objWriter = new PHPExcel_Writer_HTML($objPHPExcel); +echo $objWriter->generateHTMLHeader(); +?> + +<style> +<!-- +html { + font-family: Times New Roman; + font-size: 9pt; + background-color: white; +} + +<?php +echo $objWriter->generateStyles(false); // do not write <style> and </style> +?> + +--> +</style> + +<?php +echo $objWriter->generateSheetData(); +echo $objWriter->generateHTMLFooter(); +?> +``` + +##### Writing UTF-8 HTML files + +A HTML file can be marked as UTF-8 by writing a BOM file header. This can be enabled by using the following code: + +```php +$objWriter = new PHPExcel_Writer_HTML($objPHPExcel); +$objWriter->setUseBOM(true); + +$objWriter->save("05featuredemo.htm"); +``` + +##### Decimal and thousands separators + +See section PHPExcel_Writer_CSV how to control the appearance of these. + +### PDF + +PHPExcel allows you to write a spreadsheet into PDF format, for fast distribution of represented data. + +__PDF limitations__ +Please note that PDF file format has some limits regarding to styling cells, number formatting, ... + +#### PHPExcel_Writer_PDF + +PHPExcel’s PDF Writer is a wrapper for a 3rd-Party PDF Rendering library such as tcPDF, mPDF or DomPDF. Prior to version 1.7.8 of PHPExcel, the tcPDF library was bundled with PHPExcel; but from version 1.7.8 this was removed. Instead, you must now install a PDF Rendering library yourself; but PHPExcel will work with a number of different libraries. + +Currently, the following libraries are supported: + +Library | Version used for testing | Downloadable from | PHPExcel Internal Constant +--------|--------------------------|----------------------------------|---------------------------- +tcPDF | 5.9 | http://www.tcpdf.org/ | PDF_RENDERER_TCPDF +mPDF | 5.4 | http://www.mpdf1.com/mpdf/ | PDF_RENDERER_MPDF +domPDF | 0.6.0 beta 3 | http://code.google.com/p/dompdf/ | PDF_RENDERER_DOMPDF + +The different libraries have different strengths and weaknesses. Some generate better formatted output than others, some are faster or use less memory than others, while some generate smaller .pdf files. It is the developers choice which one they wish to use, appropriate to their own circumstances. + +Before instantiating a Writer to generate PDF output, you will need to indicate which Rendering library you are using, and where it is located. + +```php +$rendererName = PHPExcel_Settings::PDF_RENDERER_MPDF; +$rendererLibrary = 'mPDF5.4'; +$rendererLibraryPath = dirname(__FILE__).'/../../../libraries/PDF/' . $rendererLibrary; + +if (!PHPExcel_Settings::setPdfRenderer( + $rendererName, + $rendererLibraryPath + )) { + die( + 'Please set the $rendererName and $rendererLibraryPath values' . + PHP_EOL . + ' as appropriate for your directory structure' + ); +} +``` + +##### Writing a spreadsheet + +Once you have identified the Renderer that you wish to use for PDF generation, you can write a .pdf file using the following code: + +```php +$objWriter = new PHPExcel_Writer_PDF($objPHPExcel); +$objWriter->save("05featuredemo.pdf"); +``` + +Please note that PHPExcel_Writer_PDF only outputs the first worksheet by default. + +##### Write all worksheets + +PDF files can contain one or more worksheets. If you want to write all sheets into a single PDF file, use the following code: + +```php +$objWriter->writeAllSheets(); +``` + +##### Write a specific worksheet + +PDF files can contain one or more worksheets. Therefore, you can specify which sheet to write to PDF: + +```php +$objWriter->setSheetIndex(0); +``` + +##### Formula pre-calculation + +By default, this writer pre-calculates all formulas in the spreadsheet. This can be slow on large spreadsheets, and maybe even unwanted. You can however disable formula pre-calculation: + +```php +$objWriter = new PHPExcel_Writer_PDF($objPHPExcel); +$objWriter->setPreCalculateFormulas(false); + +$objWriter->save("05featuredemo.pdf"); +``` + +##### Decimal and thousands separators + +See section PHPExcel_Writer_CSV how to control the appearance of these. + +### Generating Excel files from templates (read, modify, write) + +Readers and writers are the tools that allow you to generate Excel files from templates. This requires less coding effort than generating the Excel file from scratch, especially if your template has many styles, page setup properties, headers etc. + +Here is an example how to open a template file, fill in a couple of fields and save it again: + +```php +$objPHPexcel = PHPExcel_IOFactory::load('template.xlsx'); + +$objWorksheet = $objPHPexcel->getActiveSheet(); + +$objWorksheet->getCell('A1')->setValue('John'); +$objWorksheet->getCell('A2')->setValue('Smith'); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPexcel, 'Excel5'); +$objWriter->save('write.xls'); +``` + +Notice that it is ok to load an xlsx file and generate an xls file. + + [21]: http://pear.php.net/package/Spreadsheet_Excel_Writer + [22]: http://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=Credits&referringTitle=Home diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/11-Appendices.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/11-Appendices.md new file mode 100644 index 0000000..1302feb --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/11-Appendices.md @@ -0,0 +1,100 @@ +# PHPExcel Developer Documentation + +## Credits + +Please refer to the internet page [http://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=Credits&referringTitle=Home][22] for up-to-date credits. + +## Valid array keys for style applyFromArray() + +The following table lists the valid array keys for PHPExcel_Style applyFromArray() classes. If the "Maps to property" column maps a key to a setter, the value provided for that key will be applied directly. If the "Maps to property" column maps a key to a getter, the value provided for that key will be applied as another style array. + +__PHPExcel_Style__ + + Array key | Maps to property + -------------|------------------- + fill | getFill() + font | getFont() + borders | getBorders() + alignment | getAlignment() + numberformat | getNumberFormat() + protection | getProtection() + + +__PHPExcel_Style_Fill__ + + Array key | Maps to property + -----------|------------------- + type | setFillType() + rotation | setRotation() + startcolor | getStartColor() + endcolor | getEndColor() + color | getStartColor() + + +__PHPExcel_Style_Font__ + + Array key | Maps to property + ------------|------------------- + name | setName() + bold | setBold() + italic | setItalic() + underline | setUnderline() + strike | setStrikethrough() + color | getColor() + size | setSize() + superScript | setSuperScript() + subScript | setSubScript() + + +__PHPExcel_Style_Borders__ + + Array key | Maps to property + ------------------|------------------- + allborders | getLeft(); getRight(); getTop(); getBottom() + left | getLeft() + right | getRight() + top | getTop() + bottom | getBottom() + diagonal | getDiagonal() + vertical | getVertical() + horizontal | getHorizontal() + diagonaldirection | setDiagonalDirection() + outline | setOutline() + + +__PHPExcel_Style_Border__ + + Array key | Maps to property + ----------|------------------- + style | setBorderStyle() + color | getColor() + + +__PHPExcel_Style_Alignment__ + + Array key | Maps to property + ------------|------------------- + horizontal | setHorizontal() + vertical | setVertical() + rotation | setTextRotation() + wrap | setWrapText() + shrinkToFit | setShrinkToFit() + indent | setIndent() + + +__PHPExcel_Style_NumberFormat__ + + Array key | Maps to property + ----------|------------------- + code | setFormatCode() + + +__PHPExcel_Style_Protection__ + + Array key | Maps to property + ----------|------------------- + locked | setLocked() + hidden | setHidden() + + + [22]: http://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=Credits&referringTitle=Home diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/01-schematic.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/01-schematic.png new file mode 100644 index 0000000000000000000000000000000000000000..8b6779204c7416b176c6a45fd22e8874779da120 GIT binary patch literal 14519 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 Hn}z&eQxVgZ literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/02-readers-writers.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/02-readers-writers.png new file mode 100644 index 0000000000000000000000000000000000000000..0600788ae2d08585abf7e0ea1abd1d22b22350da GIT binary patch literal 55819 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%0Ajzhe?4+C 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 MJXU#BAOnT}H$4rR*8l(j literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/07-simple-example-1.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/07-simple-example-1.png new file mode 100644 index 0000000000000000000000000000000000000000..30d193683aa96b6839237baf5808043bc6000c08 GIT binary patch literal 12239 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%0Du42g>vFf1>WzBRf|-?z3rz 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/07-simple-example-2.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/07-simple-example-2.png new file mode 100644 index 0000000000000000000000000000000000000000..e2b68506ceb7cd25d4bc3e13f7d8de422472fcc0 GIT binary patch literal 9620 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/07-simple-example-3.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/07-simple-example-3.png new file mode 100644 index 0000000000000000000000000000000000000000..459261f3395e71b617d35b0f593ca77704790767 GIT binary patch literal 7157 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/07-simple-example-4.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/07-simple-example-4.png new file mode 100644 index 0000000000000000000000000000000000000000..70725452fb314d1c81e73c25afbcb00b1587e89e GIT binary patch literal 8018 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-cell-comment.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-cell-comment.png new file mode 100644 index 0000000000000000000000000000000000000000..bd8f8e66eef6344d0db52f385801c91d8c4c1c39 GIT binary patch literal 31473 zcmZ6y1yCHovM!9fI|NwV-7O0Qhv3283GTYM>*56WAi*I>aCZn0+&#Fvz0EoI|KF`g z6;<pO(>*QIJ^gi0l!}rJItmF26ciM?oUEi86co%H<nKcy7$_)c+)FzR$OmXwHJMLP z)sv)$kPmQH;)>!>P<3F`7ZZ5MXJjW?9aktQjDE;(AM~=#w^b-8pKv)z@h@J6r#YUW z4^qoRuM5zKq_m--zx7}Q+%N>>yBib6$W9FbqzS9eh=Kw(e`%mUqjn^R(xgBk4~Y4= zlEm+<?^3nWIwY;`vfT@vU!TNk{+N?bGuL>2^!InxY=Hc<aZiZ|3k!d6-&?DxSH1XS zrKfqy*P0ZGr@Be}$k-b6qoG-J_lQ;ZJEKNp_lUoAEN@!HFFqZ9Kh6A?^74g-Ka@pU zR)gI7m_y?!>EbS-3kR#r?98`S>PYF$8U5U*4o6!RnXWpsWBh0eVf1X{30(MSq*KGs z*Axs@qffW<IEmN`VxQ~q@QPOvU?aFq?MG{yQhD9d(s)nsiKk)sxG$<Qq~PGm>-xH> zCx<iPxi=lJ&l)JLWe&&s>}1XRkt4AP3EAyq7C*I9uXp35M_L3DZx5*HXAdL|6XLLr zZepb-ZW|a`R(V@`5wS)M%Pw{|e1O~KR)YzUT6`ERh>fhhM9;zI-Hv6M4|^t#+U{qI zi_RR?cBg<F*@@qb<>-6<R1khJLQKw7r2z;B;6HKWloFzfxqabzNu5Hfo*o*w(li9n zUy(F&<3M}#U&cxfOon&)=&uuhFe016Wb|*+HdffVaq?2%qGt)@a9RDc$nf<?OF0oy zm9tCVacsY|)ZtF;Hzx{L6*1GILX#k?6vT@7o~~`-t9N2z5|X3iV_eaf{;Qahc6lqB zOg+t4&}02hkL1(=YLROGB+^w|(ULE~)6+91j}1yV_>Kxl5G?^>*_TG(BE)B1B4!X& zRUPHV5rE%~6@xbE=<t$;I&_qgL1bGAG`m);wU^Ar-i^Ip`W4p#Wo2$GhGIG~F#$5+ zfjf@{{p3w&u4%F4nZeKC+-VOabwO*pLePg&5{!8D!+7Zu7R1~xYr4`G7oct-6irK< zoK*5yq`BKg-R3_ic3sSIUE+@EpOP!hRHXCwJ!S1-rhXHm?%v!qHZdu9fX;Rzc)mV8 zxp7^h&x^rg5Dy8l^J*EilP=mp$M%*MP=OmA9bFWy1LFuDNv7pSq5fvN7J`3qfQiYN z(>Fk;R}GDogv-Om$WC8gUf!Bmxnyy3Gfe;qL3uy!HuMBs7L!Z85GQ`Mwk8^#u4C`4 z%L{8@v&?FW-rFEs+t@glLnjfo3Z0#wpVzi-Yj$N}5fl_OU1F6X_oguy%I`J|_LLSd zFfe#VN3cjWi2xk5G9trl$HKJ^m6ev#Q?uqM0^>UF=FisJq^!NLPPhuqjg2XId4CeN zzd2DI_1w=#N##Abr2B{js!^#)V#7}g2jFxXE)@C5lY`0!VTaYEP|Ny>Ip?)EV~3}P zN(aUh($|KQFJY_6mlV_-t4Y!FQ<yTplSg`s<M+BJ$2e(4C&eL^S-$axY{aZ^Uox<Y zZ0ew3U|7NV^Ru@38Ks$6TZ`?|ifnqLL%uAo;_PTMbJS{fH!joKm7<ysR(<q>in+q( z+nq~7!V!fDZ#<yba*_@Y56>|96eV~($No-zMb$F}pPk+!AVO9<-dAEQpb;(eK)&N; zn&=fGoA+MJpwzjjs^TO-P5dKI;q6JM^V2_mkWJVKe+s=NuEShKruriNXOkE@01fZW ziiRX_>!fk5>4z`>3nk6y8<EIg<=ze%cPM{Cs>$IddMmic*kM@M!XndDWsv=%=5Z=| z-0&~p<OEhyi4tWlY7~obFj;`lVQgeHu4op!7zKbP-%8=}5oc?Lt2!<-4y<tL-Da<c zPPrZXIjfB;)QX0WNprM>;IhsXT9qttBkZ9oR=Y}5i|qL2vT90FW+Lqvl?B2uA1QEP zZ>$J+`+z(6<M(h=kKuljhNZ`LhAE`QsJ{XoV}&Mt)BR-_-RGZRjAbw~yIroGw%F_3 z-Q7orFs?%U9ci1i0RPBe$3}kYd0vW9*u(HFlkq>Y*ZRlR7?8=b7vcr@votsM-Dp&^ z+Vq&eAp{)6-GASstSDopr750jgIlxf2IWt%5hFS_ycz%T4v~{9x)+Ad(t7SFmpsq2 z7>E#ndf7ns)z<b$RVAKiU^J7*vfDFpkgM}w8icfx@0z@K!`xpGH$5r6q`$MuUMvuA zxw*R^x_h6raQ8bt#xf{iu_y~wm6S-m+#t<CKN!eDEt7ok^Yc4AJUqD~a;8E+II%LH zIkbzoVK`@hM+^`lPc9LH>OxJN9R4m9)OJrsL?o-AU^dki3oC8Dt3EqF$<{e)f)y|P zAEwYO)bicTBU4imHo>BF+2e-Z>L`{cXU~g=2R;IeNRA3HQHu&rlSqj1?d|Q^Ii7;g zcfQy+ZAI#8YW*%=6gu;pcSJ$dS_TFa1pRfmQ^E3c8yoDJp@`zF)J&O~nZNr(i3N1G zA!i7G;VwZovzMw@266c4@KmqnxUSJdka_1?umUUZ)<b+jSt+RV>vHcYe}G{z%8gj< z2$G)r0jtM6HD`ck*sz-Y<n5jQxzciDEAx78n+pD4X(u|z_)DtJ<{1Vm3I-}E{5YE9 z&gYIKo9jBt2orC44bTIYV|2L3n_$E8)BJpejG=OH-gXa90lcW08CtrO`R3S<h-L%F zw~M+UW%ftTACzsCZ*dcY1>&AN@x?u~J0#9(Lj)L7p~_;ty!t#N*&Ss(*9vQc2jg*% zk72)fpSRZy-tz^BbuXx3qI!+KR;px&advjYQt}wG46O`ejG*=eo-3>uWpPb3bV!oe z3`)>ANx*V<8%<DZV0oWx%|zn`xN9g(gUKvJ`Ru{#zMDS?o7XS;(>bR)eDff5BWe7k zig89FsfqPkSg1@ta-KOeP_-k*DOA$`*~H2#Tl9LIZlCAK=Y-e6HiavTgo8WG03Q`- z)5!T-!W(1Pv9<ounJKDrjuVhrhti8mq*oOfQ*m2W`bt{wCtEDyg+cvb)vYf^13)52 z#lz+t))8#yZ=nW-#Jcs|I7Jo1_wOtJ)d5x7w>Y=AYf7VFHzY(Y4MVMbQ?mel)$v=W zmc<w<WTNtj^WEg}j#*SQkfgE2t|1B->$|-!D*7J0oncSF&q#+E8*RV@|7lolkx$6S z-%jME-{jN<6lsP^xFS#O8?@Ad`U*<Gqq;k8C5@N5ld>zSa<Z9s{u?vQPiIV~zgFz@ z9GpBC1fMi6>(=-O_pg8s@us#UmGZKbByC;p1+u^ZUsfHi9aP@9YWAx(4}G0#L&2RH z56_2&g2Evwvlk9$6@9!!#hA^SRbHz32<Ww(oRe?Ki@y|kEnOWQYv{R2o$+A*o?f&v zJ=RYgi&^!a>9ru#Fa$8mz<k<7#Ej?~U6Z3cx+WLjmgz_KWDZUqhdy{m9`elf6tuOo z9LgIZ&oweISeu*M>uj+mz!oiJ`tn8cQ{bG<z`MUf?-eB`G{S?j-XllGXM215Eneb3 z-&m-A_g@@V^%h4WJ*(=(m24$MRsKv}0|{q6Lv{X!r%cyp9Z+++(m8Rw_i%IL;pIhN z{4RoyZ!QIcq4W-~S)i2}c9mczRYvFMcT(I?;AA{bpNkuW1G~2NoBa0X#_O!}0hNgg z8j;OLK|#U8!^1W{p3EKQ_ymVJ1r2>GCO|l#Z!e?S6x;iN`fFIQt(D2cIoM*V!<sKk z#?9yj9zQXki-!kpLPkywxziQqFN$`6s4#6N@6!4-jIZnNr8XXpM-<lNsi)ayk#bC) ziop6Skpx?3MUP!L&qq+m5Mo(mC|WJ_+S*!bYU*Kmx!n*sHcDVlpe?)d4T{)EU;?up zF4)!offyDHRDA)xNqOkHS;@$lnH2@B5i(JkK;xyqy}dm>Jrx%h_uOXHrd)V826+Pe z3prlZE|b+&qk?|(F_tH-Zn=O6A!&Ze2;PE)Fmb@OuljggV)HxUYWmB|%ULvv$IF)+ z;}o&1ZG9jV11XmO-@4=ZDqBZK!l0t?O4*jawe;=n?fN7&5c^FFcP(k4`F$Ad`iMAD zZY?Oxs1u2cPL(i`<0KG3`<uLn)lEY~!^VZH?N*8J7(>%=py|B7`FFu@QZ7!jp~>)Y z1nev)n3zZr%s4gE*F~6U1tTLPMMXs$8>X%tPPvPpMKa{!+-Z2JUr6LbE=LAU=UA@D zZBn?GaLI%BByLFrqG(XZB981G6OOWAcGN4t0<jEp`(_f$dlG^cfogAAS^2|iwY`iS zWj<|CR#qzTOeL9^rjq4+m}%{~EPX#7dH?M7X`2OgRj@lPHo~7dXT$i-4sS4Ce$g5G zLz#PcTiJwYdZqzc_Ov?^sb+sxH1B)wj0c!3rUyhNme`AaQJ0TZE~i5!R;`#A3a<qX z8&K3=vA1?VbP+2~4K(^W`EA`Bp%{65ZjT@n=oci>vrY#etxO)DrFBkdcF?{b<15^M zGkTf7I1Z<BrbA*az80MS%?7XsXK$>9?3s0^BsEyxZY$EVPOze`Z!k~x|3%vGr|b#M z`^_2d@%Y#O030G}^s)W*SI-rC+;h|Ft;yMF@vnuh5qzs&_=Ie2lJpB)p+N{miN220 zxUcqchY}%a@ea1Bw6ilhD)R|UlcA^-f-lT|h!|<<G=(KtK{Kl#TiR)+`S7t#^@Isf z2uKGOCE7q}&6Qu}-?IdLO|%rgdR*l?&UdJ)bv+jqYdh2FLygD<*h`6Lb3HK96(zy! z<c!H&M5bR^Mjp(nIPWr+KPV5|6iTs3+)?bja0g&jKdk2s^8AbB1qMK$@ncln^`N;v zMWYOPf4vNMRF;6wg*6&WsQ$z^p%hGg6JgJmMjBNnCIvgnt4}K0NemN;me3<o{jHV5 z7iv%gz2q71gw1ftE}?*7qQ0;I-Crda=|js3{&w=YS?TqR4)^F&Z=h3HfIj17C;`<+ zBkXcXu5H;tg5^C}&0@c6{rOBQu1?>k%E}ZO`2GxvMyvyCyRCW<7Mw9V;CjD0yVWjx z5>C9O*AO_*@{N<#5+fD!p1}$>fnGc|tt(n+KmTsPO5__q)m6cjcuUAA;uc0&z%S$j zW(C7=wn%Nchxn({BH83_L*T`0x?)Uzipt{!;>@x2)1z1Q?X?N9RZVo7|1#d>`O3)o zjLD<QL@8?U9Gs|lZeR0uO<bh<i8j#7_{$$V0#Q9(q~ogsuXib4b*9LK>SpaLw4sM1 zZgQO@@PHwZ-00)o7~*+#U<e|leA>P#JcbF78S0^WncC?e{4s|3KH_NO9U$|?4%E)0 zSdonsj`GJ!q@D&a_P`8y5>U~1<53zRBcu1UACQXS?j1wSX95tB15oz{o8UueIPg2F zTHwBe7QdTfRPc;OgdiRI_+o&k_*1$Cogc@SK_mv8i2MxxO*|HSN`0(hEby0djrh1{ z+oY?tP?Swkt*UBpvFxdqoCnpjO)W7k)~hw7W#5`ssKujSIBG!`&x9opLcOS@D2Nmj z8E8`CnM%Y7V=`Y@Qou`2bC=6InpmztrFOKS8RbKE0+`NmD=V$a-iMjSacv-lWNQ`6 zVh$+`>XU%#=Z`6ktfuS$Co5*r!ky#655K=i4n?2y3&5VDMovw$g>>cj%!v67QY$R) zg|Np?U15I+qm=-%PYTooW5u8JGpOWU4&#vGiK5vUfh0Z53<669n0$balKp>P)tI|; zkPl%ZyY!P3DAOd^7|mqiQowJWosfDDKv#x#LwbrKDJ6J@F;x#5DY=5qCu9`PT7`v| z3gI@<!@&KTf@y7(ls>VA>vZkD1*O#Xc8uWhYLrPr(w-A$&;aUAyq*vAG=Tamu?YMC zKU_LU+)j%Spfb%H%o;QC?!*R2WInxu4k(>4AlBR~DwP=>|AXo@So>Gh123J2pWj!2 zvBdH*P$*6@1gOLWcv#~!1U@W$G*$)jGErowGd~~>ilIb>T?KW~4thPRMAx7S_UgL1 zMH4@_wJrT{tYfsg(@wxvh_ZaVAe?+dOa&WL#|{Mm`g)z`2h@nnT+fEKVUB%#AXWJD z)01Qiu2WAiOP!hIKUHF@0J|yifrsbxCXc@f<$7X2K8n1x9~-?8E)o?@|D8K14Gw;a zl}Y0nMZ8yTCG1@YOLMSR4BY*~f=;iL+)LBK?sERRT?&^{9372P%V44||IagvRe=vL zEhcKfO&`>QoeM^7lFsME91w;c?o@nUxTrYO0kuCFT(2fCFE6A(?Y#)axg`d(2&Q1p z?Y2+=`Dj8%f6Hy$Gw>Lz3Yb%|h2%NEWc>9e^(SRs15<Lf;Yt<M;m4%J_WsGP*AJ0P zwfkKxw1!R30C*AWoqiAGGsPN*ZNy6-@BYCSFejC4FT8X!R*NS7S;pq`_p~&EnqQw^ zBL2zL_zLEDOn^-RXHMuXk-aBW_QGLTjFjdzT(k9o5iUO%<2SF5uz?S)?a`$eRUyum z<nb8THEVid)(SE}3VKe2RQKaIZUn*+A1@-2H0s=Fvs~!dy6rjAXiBf@y7WVp+py%L zHbhZ(3I2%(aiWrkU%z2A;pC&1>?X&D6Ub17ZT(Ff9IOUPPHIQ&I^Bj)=_CinS2$kY z&w9S2m@^z5A65VOaeRJGhz%3@Z_8Bqpy3Ng>5|gY9RoQn{<}i|H`?b}cT?Vc=5CjZ zh@F0AjQ-uYc>N|Jp(P8>lZ%lM<TkG%T?)tWxqoI^>#Wql>dXs-M(j1MGdDNCp`qLI zEbL}YEiWH%feM!#fd!jxvIY=}3X1O7a|pW&37@WRHH$*7anQ$H|D%C##0`;z*qv-> z(1?Ytt%AbBD}^rtlwIh+fy*GI&_Kr@PsT^sGtKNh?9e1xwX%DEVP-7~fjfyMvNlH9 zLAGCi>Y^jS`oDfXdOQg&_nLe6iql4Kf5QmZ_e*{l8DZ}iJDYLI%;cm&?TUbFg6mp1 z;s57RcuRXBuqDM1u&=DFOtQv`vw;+-grr3VNAPKcliqAId}5paU>J8XG<hq)x~n_k zf+HXw!j$&(&O&!QmZP=nmh^%=KP4qK6`zp6RC#$wVM%1<THsY5J4F3UaF7f+yZ>nR zJ3U%Wm0q)hfs9N9(hcmt@I1o?08!SDA|lEodu7he&1En$o)io%_24e%c9@b`J(Xx< z03Y>VQUvite~MUh9qjEr&cXlF)Qq+@L|io(&noF6XCpNn-%AbBZ^KJTfnl)4g+JpW zN?G*Q=jZ8QUZJx$WMxQ)wV42<47BZIG~C>-4+lT(t`4^kKi|+&g^#n8!=C0NfBpKE z(&sboS!~Z0B`kj*<eufkEmG?(Opqu+Z^B;jSq+7soL0H(_u?W046+RAE9TlLuUQ$$ zshgv*vC-VZ;`TUZv0r_0+w&6l1q`J2(Q@o$Wn^Sz_;`jL)dA|B7=yr)gGbM)?J2wa z`+WH6wX@%MCNA(7xM5ds@E{OVv}`D@Ht<VGh?wc#H`p_k<&_nP9ak~06GB7b0*Eoa zoqlW2Xy1wILu1%!X)V0HK5ymD+wt`&*9AMli1uJgg#xvdutG7BPz$fb^vfNcA|*ei z`jcswd&r<@EwM%(aW7Bm)*OF5{Y#rD_Av|q_oZSju~(B?FJYg68Hu1f_z#bVS9OMK z+Jc>aJ__1Tv>DlOVx=w0xj}fwiiGabTI~qb4fcyy5jTsj-B$9%$wx%JKU)sP%Q?QR zxgm#BD`gn>F=}b+KTs~4B{Q-KaJxsjT+7Arx7k}8C}^J*>o@7O6JEbtV&2}mazFG2 zn4TrV_KA7F*a(J2XxFU9v_35}if~-@$^Dh}`{Vj?+;+Ig^~-<hcepqjj}hTnj=y&( zXl(hbtur6CIGK%K$8Wv;iObt9|MWt8{v<9-!!}nc`ocDMCTqfMBK~FSNWc7H`TB=w zOHF%YaYcJ&MP+4$TNmwP%oc0F<h#e-?~98~EE{7ixULImqW4G+aWB;K1NvUTIg4zc z=+uvwivWYQyDg}`xvZt!uD_kStxLauxjC*S=h00Cc-|+UpZIQ_N^&q33Sfn%M{Y}n zeq7f{sD>xZ1iol#HALO=)RB)lIUa1P1h^K}6_iw!1`L0(Jv=)3dj@#o9C+DIN+~FS zRwZqxpAOEz6_p-Il01|}-=@b#mQ9b1glcb~V71NVX3wzFeM@jY44DIn=09)VcIry> z4c#BuucWD4__@fr$fx<6$<OuDJ_Fy5nhPj5{IJ5{b*T2#gDA;AmE89B6XA``6jC@x z;o*Ug2kN<kX;o32WQ|ZLKY?4wB^P&Qf<GsJm(}=M=C`17=w9i@w-WGyxvi>bH!3$% z!%q-#0pEUEzy6|+Yyn?u*N)NO&U?NpCfRYd^8GU&;<@S*g&Hsnkx~aX%tG8YIC)>; z4w{hWn#zQql!y&}Cs?Y9Hd17(bNri=MzPt!&<I!_qrdNfUNsvR`Xz<Xu1VulA|8dz zjy6TBBr4m$hyIM_A;RxEC_jxPJ6-pxc@wvBu>%!QsiwqA{)kC{l;?{JKRSB2-{0S1 z+}zz_-fP@01T3x0TH1__)EKPHt)N8R-QU;9`Z`^D-p6cjeynDR<RTqqW9bu>dH=-p zTYgCLSIm}_CW>nr>?EZbtYMwhZFog)OXvqJy<r@~t*ymYxv=QCE?Te8-l>b`a#W#A zMbKE&#%(;k!3-YJ{bsdN(Xd*f^i-eLs0;|GU@p$szBky!e0{a}rRX@qZGE%w{yWRt zPIZ6&mX<x>o5$E$A;6|`K!f#Z!1n!eCMh6hTMWyPDw+`c&dW-CxuU@Z_)Ya;Nh91M zJ=NcNB*>AiTHn>#{e^ZZDhmPO`F_9Z-TNT@a;5XZe|8kW=bxC9MHvk%?iIz53$a`d zJoX1{IC0qocuJ&R&qmhaMtI~4Ps4Fi3kq2~NvvFKc0UipCrRF&fW4{Am4IcSLp*?) zo(kO)h}29i9~FnxYgSlTrw%(V<%Z`U9P*w@cu@nyP(*xJkR)*<l)wr-|1V`87Npho z3&+6=|AdU_b*wsU@z7vYHUXI<P0CMw@Pzsl)uAx<fKWZGb<9H2Y$iUcND3GWt-Aa- z1_DOwr18iW0xk%-Q0nC{je3gdE2Gz!zb!dxBe_gzC0!!HNLC7zk^p{<^)&X#uIX#< z&q?%2O61x6h@tQ%;rAbL#9PYN{Uzjex&0Vbw6Rhe;1hfIkZQ32AMi^F@2Ct#MVUMp zjRqu!gS}`4zRq~Nij4(Vb{=2OnR@GvqxlL%Mv{8@qB7(q4NApClyl|A_Wm9cv>Qmq z7uBbb>IotT$sz?HlguPa2g%AZKdf_xQ;E+h6Emt9RLY4b@4HXmiJPO=pUTx!V8@m{ zMpNpo26qQ&6BH+s)Wau6Bi77ZwqIQ%1vV4FB@rt40E0fY^N_>Mrm!LbR1p}*qJFsa zrl-mV9hoYkWb)LYt_@%r7U?9lQyO|mwtre?B(Qi4ANZc*^rH}MdPq^@?MCj1=V$*8 zOPp2&SUUHFpJ%51>`$`17dpEfbWkbVTUjDZ9Yf3+X1Tfq2_5^K&?~5N<mu6;1YQ+x zP<o=tKI{@d%M~{;z?<~2ri0FQFh!G*73nSYSx4ov!K8Gi{^KWoo~duL`tdcbM*euw z8eW@TCzma;L6=nVs|7m=&;h9ISUOl#Fu%C~fp+4u)F`nrOy)ONy}=ik6iM=UW9H(6 zus$dGk>CL!^2fW+!(;?Ay5QRT5ZQ}P%=JeqcnT5mP9`BG_MaEj6!z6@^TqjcTomNm zST7=4<FNz3ax-4k%{XIrHB6~Z?Qj9iT6S+A-kNo=PH=DG%4_A;>TnWZ&O7!7C6y!% zFJj=Gr(c7bG1Z<boOFbxVpz|F)3!ST{ehN*)1O^MqVq7EIqe{s?g=B6c@KXffv1F- z>wx4lg@#vP<I8p#C;J>_NbxrFXx$(DdLH>BvIJk~KV*n}F;E1O9r8D^i<KdN8oJxG zyhhu(gCi1J9x}9y@Qx6PY5V&6Uf0%6s-F>>&+Tli%gW2^bgLksxP-)ZpI=bm0_UaK z_}0<i{D+Fs#wi@Os49h|-KZ9LY{I_5$XAMw-07*qW2V%-2#b+tXJ_l{hV!$1Y1QTd z-+JGiNZTCleq)L@YqLlf)s>V$ZkSe1PQSb6`<YQ;nlWD-`ZZy0n!>zZ*oBlj?YB^; zRcBtq@o1`s9%gLX7qHCuR$->?Jn3aCI~E77%}WLry;^va98!#}Y8A-Q;Cg}+Kv-!g z0~XsY4HPdELPv<s@I>&nWFE5@hX*H{W{c<X(qw#55S(4ugh|+5$oKGPJnSA_(X?qD zq$_}qh8E~c#dnEs#1d&v=9RO@oBck(RnSE7jVn~b`~lg7NCtqIx*>tu%OA>WqSIt# z-THvVo3&NT&QYh1p_6cdmmP43BOvC<*$Lasv}qIx$ZBptrboVp_IX6d#<(jfjLre^ zk)+#N)n)2l=ydZZRz*2>BG;Ii>20gvC%_|D4F^A<m)#iyFZRP`SH~^iCmeveKH{Nc zl@IcjLUvrwmT^etXlD+P0&Bw3RZs6jF~RTZWKJlZgx{m;kOaX2mnrB;8;9upy{l{E z%n$1QEpH99>O*ha9PN}5@X;FVG?rs5DA@v2O9yGvZ015r!jQb}`~OP<2IrN+R0L^) zV;5@GM+}`%w40!R(xNMiqO#B6-PHb+MVQbIt(uI;I1It#Qp4jK+Ed7=GO5W;QC`Sy zro$ZmfzDVFW*YlL!9QWzYbmN}_(+BVA8R+-p_Ex`^&*(7t<vaD9=zUhK~$~@6P3e4 zk9JK~HH#|A=z5Ec(^OYvo-txyOE+^bs&SnH22Up-TKyf(GHeZP1l5k|dus5KyY~Fe zhtjsECVu4*V9fZ{ZcVyLIC1Z<cJoR@vpKx*H4I|W^=gc1Dz&j9L`}A~wjmrxG^-S- zIJ(|;;(V;zo}4iU@}8X0HG`3HgS0BD&zt)eCZsWM)NNPNe6MOA!;-2i1y@<Nk|H&M zE7|N_7G0ug2HvpDYg4&ilMdqhqV(GWuykf?bS<;QhHn-{t%K%VKbxB3BjUB|DGE}D z2>P8RiQ^Er^5GAUL)xNFPEHzA{^UL(+;#T}Z0{tPE%sec6L?8E0@fR{`N#m5M=>05 zYApw%9{h0aIQM86^$Qz45&iiMY^KbeM-H~!np)tkYTSRM2?_dB`=xh?%F<K>3wk0f zH>`OG@bJv7Eaxru(7Ij_+8#aT7iqRz53<geROxGXO1JvfP;1NqplGn;uU|{V2PoIj z(pw#1DRZq#U3<@9jJ)xEkw9>0b?!*hIgAxtEYbrVIy!nzPEPx=q#gdq|2QO|EMxN< zq&;|{7#$tW#m(JQ8R?$M@}5NIhm+-w$h^Y-=?PK$XVk>695U~A4n%#YyzOv%;YCjR zm~S$9W$~-CW8V$B<Ap;ET=3hDjb0BkoPMb5>8(spV^5RSnTvm7uBQlsub>V1je3v0 zx3_1kxXHd^G^vz1INABlz)4W}M8M;zwX#UvF2ArTm&}BlD&Sl2Yfbg=sMJB&P_`G! z%4-&q7PO`5lwn&Q4C;Xa-@`<vE{BUWHK30`hhO*~2X+>ubHofmPmJ5*Cxpi9)l3NN zA4E1XIx4@BE>g*E%I#=zpkH`ugqOa}ZEUy#1_oJ}$2j31W<aVVs^xR~I=dVsPlPjl z%T*TBV1oVv#~EXjtfo4J8fZ+5htvD2xHv=%(!kH3G%5Rx6?>QR|7lL-Cj|&^$<zR> z(~Lu4{rQL?NC;WcPgxn0=b0|KJU<_56}PO>)LrjGgGYW>Eqf}Nxi9B=?DfTTEH@(4 zZ>UQFC&KFiek%QB;de&U;C&Gagw_!>j5<WX(2yAY=P+NYVRI`hE66dHkm$2ETtsI0 zC#WZZByVy8b2%L$r8hGWTUAqB!$xW8Y`5J#3pe1&-B$Ix!$T^+b9)A8$a&zlvRp@> zD&tDtV_S!>h$E=#Q7%*%c72G<bHxa+^VK089L;BktsLOciC*;$-9Y?s-Ay9CQ#bV; zaw27|2UsJY3ROg9k%F>v-roGJUkdivSy?A!mDyPth*q0m{Sq43%x(FXH}W|%7kQiX zk|gMNc0Ta;vl4KM8w1CGQmtmB5qKQA#Ugl^Z!!P<#*vnj)8V)Qj2VE*MFQi~{nO!p zGD>)xKb9QNtV=>*8^XH#%<8JXsw(uHfKllO*(r0*fI*qAdI?Aza=PCNw=y!1AZ4a9 z0^K6PYGh_DrEp8`?o2`nTkvIho-V@&Kv1dPQ|WNX?)PHgRh3i_a6Vu|hkNGS+}$<( z{7D=qouibVmNes&PwFe7oIT3cnmPA}$x#RntA5+oV;8xXs=G?XJ4|~oI&UFrIKPiB z-G05^euZz5`Xm!lcQJXJi0jMQNx~5>Wq$ko9n#Qk{PXAO=&0b%LtjfRTtasXSW=%k z@g~|P2-Q5G!eW1#$-1(Ht-h=H#0FlfHIcBeu<**nBsPqXQlVrEL9eGsg!^Kru^?w- za}>0l6cneov_x39u_9zDexM(V>0rPqFsxavrc^QSy4-raP{Yp5?CRy7Kq399FL;<6 zZ6YQEHo$7emval{i@U{w907)~-1)?~$^FX*dYg}DXm`_U^K*MnU9e4N2jn1Dl_p+9 z#lNk4=Us14%!@_U)ofgVP_33@#0)-9+7|<nbW5UWsQmqFReDxdRww$T<mBXx-1VgN zDTl5YGGC^6ldum2t-_jIq;{hj58+B$3;PpU=m-*!;TZt|D#73jv|lmAAx^fvZA#;o zuHxc7oyEnv$zN+5Vl;>^4`U~$p$PY%&$}X!G=HRyBW}S$Zdt$=OT;r37J@NIjXyg( zs~|7m-QQiY*5-Na_UrD>1F}6wNqgBU!@NC#*7*kt4Wrl5=C4L)Tvf|tU!vA<C3m^~ zClJN4iuxUZ(YC&_G&m!!$kzov&XcK62oW%)Vx@r3ai^{p1}<NX4i|!Ozn?d%i!#mB zC_NOjk4N;_y)w4;bWluBuD^9N{ys!hH+$9>zdd8sB@hsQs`&V%mFVx@OYe6+E@La> zxQX}oCZxR1uR7o79?u`^fB(m8;)INiGpbRbBx{vH?(u#YYJdxh8@1!?y}0944s3v9 zyiOS!T4=jaS{}h<cNnYTt_{yYbY5ul!Q`-$?p{H@kLLmFoi^C7#Q>ixn8I(4e68Z| zDU8N2($(FOEPciBb?=GB(~FBXiY6R`pUU9D44X*W!6Dcfn1qs*sn^dW+xWe%PyH~h zl*i+<Uacb8neKYYc{0INPsY3@8*f?fD_c#x#d7vuMFKW&rt43y$qrD@!8O!e8}l<Q z_%?y3XN{%QDLwc`!`F=&HcxDdakZqqO=vyEgso=gzyjx{W0pw^vXxR6e63Xp@7zw| z>pJ?H9&Iz|%e(|@4TG!*A2A_n3XPTz-l?6AK7NxO7xya%9mA=PS4Y|o(U74Xu0m<o z>Ib>9ij^y$G>Mjj;G?yS%h;i(DZ~#Nl+;KwTBp-hDD5AyY9`ltoZXv1$3$n+h9&H5 zGV}FNC78?4#9iCDqt`bEnP9S|pAdvaUjz<k&C%vgh2KAkp4HBWc8zj1u3dhEzr%%H zmq%|MhJhVStIYLtN;s_TkM$(JDDrIXN-@g4zDkF%8sJuYrg)W;JG<8a<v*OSMA*&r z*K<GSzON~5Rqtv%)vWqrvK6zxE^|VtPQ0Hf7aMr7OwHa`A2*g2ayp^7J@x!q1Zt^t zR6U<z=BMdbEEfgfA8OHqW(fCT`6v=a@G`+-@;`;u7UjQT&aF6S1}_e95^7AeE#Lf& z4KJ;+Hzb;USVs3_Hd|irD6Hy;!!*^vmcas2qNo@TGv6KJ{w3%3pShm|eHk)TNqex> zcnqq5wa_TBm>U@Axa4p0^RZWO9ozgbsN;mxuTE$YMA06ao(Cnq-}f<y3xNLqYxr9Z z4Iey$FJklB%*!O2g4t~5_!HQJ$VgA?ZM<|zxwA8(=Ko#B`rcM1WLvX{M|46a|6se5 zwLoM`(m7$Hd(+|nhS>G-@hlh7XgRBhIqbHO1p)<KT;Wp;gIefS_WPc8ALodp*+nq# zn%*DsuIR1id3pS@Z2S)n#-Em-U<bqBJF+r!zXn1UhNjR)2?W(Xh)W`=U83Nb16Oew zuBUHj2EG>?=_unKe}zNG41xYyZqIRlck@%bEsKQJ;G^GuTJB@sv9uL1&3GQ|a(m(L zW&`+{o|Q^lmXK8?;n7Jse_ZCgR0|X2xpy&W8_{gEaou;TxQGAxqvj0s_|g<Vc@R+L z^~7utRChbU`aRu$DKD)$;*XTh1xY|ACKXN(3>L?KWhwGF6uCaYBoTejyKL~bh&g9x z9zI@wb2uz~&eUB2Zs=T&)*ER2jB^agdVP^;V`i$La91U0N0^A9bw*~9^CZWRJ-$SU zmWhmsiLh|6*`D4>tdq6%7RMVKMFN>c+>989p>IdSA#efCkW(K29<ns>eg9d&CHAr7 zV+fhtd{c045V^XqlEfIat!GXh@6TfYn(`_nHA0IX+mro}d;N=w>PEcU?zrF%TZwvf zKG;A`?=K@jqGFC%3OfuL6l~~G3#vbxQm8}_&2mF#dA=rI#VqL?0}+_dh}kkmMjeRP z1D=g9jdVX?HkOdiCi;J})#@9)S?OGT>xv%S)mUl<Wdon*`XSH^q9jB;ZI4boDB2Y* zkDG?DESok8h1x1aEQf^4gp8yU5lk@M5-G#N(bgBT#jd?m<f6$$3}iqfEV@)&N38ht zWb}bZ5ylZU;Rh=P4g*1Fa=IZxhn&WslnQ}nkuSP#5qSSG-c;E{1O)60>jt5v8VIR4 zHF4gKWM)eZ#)esxgx$jbP!I6=Uh>nzbD#gmg1_d5eyYmDQbos9SNqO)kY51<s$tRJ zXD1Wj!z(Jwm~AU-0s;16x*hLo2Ii%i9kd47+vrciH@Tj|ram8M5_^V#<!vM{wTE|{ z2<w><SSQxAUIZ}ae#m=h>XkGCCK{qlF&WYSxPqRihQf@X#<PO2FQQnt(`*I#Sj}rl zNBC2m#zcmML`a`R-+tQm!Tef6`nl(I(3T7Gpa6mOj@Q<p8Y*;C5}2R8on)AwT_jlI zXCjU#5;5~d(RRRAw>_QMHw44xN94rdQ;(pbFV)*o+AYYM*~}y6NVEAofKl9ND}TAd z8)5QbDJt@Bc8k876xUn1Vj1A?ehoH!Mm9|BxO$lG==e&17jo9jtDf2JCjsutkl__^ zr<|WRBaSswV`I4g9OffoJL$@3QOIM$Jkp1rt@Y4u0`SoG7zh``s0IzXSQ{I>y?EJu zd7dOGqWn@b5y`Nn$4~_|<o}B{rE60Y0cRI^<U_@F(c@-re50+v3f8de9=Y>J7}yNV z`-dKo0P48RMAKsZdCiw^;Iqk_St0ewDtjK*iFQ}-qxO1)oYoG34$w}Kf~m{3i<Axp z5<50L3&;PQR-G5o=+1Ad8BOgS4>Gn(;Q5)F<K|o|!vGz1+nu42_sA9R9n=q|xw^R5 z7fHnToo;f5o#6F|Vckfq42n<DEkr><;}O0v7Qh?Zv#IA@lGhpLXf1u+yIWfP4TCSQ zJ0*|I)i(CF&5a)xX#H<pd(%Z79=D$rnFH1!>9S5P1wQx!M^yy&pD1vnAZ^xE;vYtz z-|t$-=cXXz(R8l2+=m+<vzk1-t*lCAr?6ECka`s)p;6HO8?Y$(P|$*aj6F0ns0qGQ zuYVc*?!9t>8Q?&yL-^s3iT-XWoxUQ<dE+u-kvA~Axw4`{@*5v>OKZLYagwrp2&Qtj zh-CNsP^mhgTIpxN@iU&_gG1YI;9U#X;;_&GAzzBf@rVOSA7~da;eY~6`nFjK6aiTT zw;)4+^uRVl&x1B&X6Pb~vE<Vna^B5PN5cnC=V8#p=VC&Nd#}#>7Hbov8|P_IP!{H% zvIB4zD-fb8$XzDg4`561dm`riKa>xA5sL!nVL<49q|4}UTDp|)vGJe!dfr|Bc|T~T zw0icx(iE-w+NHF(I>SR$6{`GX4utvij}M&B`9EC%50f8}kP;08S8@M#Bts(cL$UHc zHN`&;%K7(7kc_mI{QoN^XkGZfL?D65vIlL2oAB#ughR>8L)!m{3t4hD3KA2*{?u=w zlE3BWbZzoMWS-kq2iXX61O&~2(jl&LKf}Hxe`4Z=Yy>6)Je|MvTdqu=o3U($<9L#v zeI`M@kqmTF-X0Ahnea%2uJYMi&Yh`d?z8AdQ<ISH(+_YKN$HRUjYm1D___8C8J?&x z-#TLgPts;(^s#ZsFD2N2RJ)HwDg0N&ud&IRlixKmFtrCEC@!mrCQ3x{gQlrC7vQqa zK@n|4Zc<C~8|HD6!bfaFHPcn<Q6-8kVHn{OJOb0^^$0ti-R;Q<$@WwFh<3~kxKbr| zsnAE`@Ov4&Z<x;Zu&}$*EK<NAAVDQ;!Oly=_ek0<*df|EC$Ufg<7;5?%*lzLfMfze zVd3{ra3hi9O+%FDee{Axcw7Kzi0_}b2=llH(ZQ>eXMn$Qa`#^ywUHayW70#^RKO1z z=7^*=2}s75ctow?OQ{)Y6aPG8VkUVFjV?^#cM>CvyG<sjy^R`($M%|H`om)j=0Bvi zeHedp09JAvGcfy}&4D25&+VA1^d(QkAHWTcP(B3UcR5Qb-Z2E}XmFVQb|I&JJl%qQ zIlT+qb&ow_-hjlT3u`g*kABSNS@>3IgM7IjJbevkGP?wbhnQFZ@ov?<0BWxY!lwLy z+HP1A;tJ6Xu|>3+4$O{52^w84fVJDr!=CDr^zd`)M1+-p!Y{GpU`9icl>cx2^`-2- zL_MlX@>Wg9jQm^{ySV!x6RYy6nSzXEe->d2eo$8eLZ1EST$JH6)0P~zVcsK{Q+bzr z8!WsJyn6UtntO?lPPANrTwJ<+YO&b*V>i56coWL`A;nZw9xeSwA@iI4K0!sROMy3D z00f!-LUoNzGuZwZhz5tT2>*TzM__6Kyt&@F*{-P{m6Do@=wiC2gl7vAa|$RfZEr}; zx_)ARHHhBP+_4&B{!u6Kc^Ll>l?l7uejh<uUX9g*$hVrfI2=ZXnT@E!op3c$Ur^O+ zbWv?hQoLztN<b|2o4hke1O{?6-V5_V4AppqO<?(V>p$fXH@?6Y;Q2~8Q^>6y8TJ@S z=q|u#_(hNh<zitP!~m2234M3P6g03ee@%(b(bsinQ%Qy^VYe><SFuXvFf0~bReROP zwV{G-WZSjPaPp&@?Lx5yecKXdr+;c6R{IO_MO!vI3M6=OG)>4DgE6Wie-!n7V$s53 zq|&5B3i^dIhaBn71Be!@3<BvHN;!u$3Vsod4Vhap)bh?0!4~}9ixrtIMrx6dr)rM5 zAYIT<B)icAV%WAl*RlZq_TKv86+F|e<6qq5wi}iMstSOYi-8<8NNl9I<|NSv<Uq{K zGf-8$!CU{RqC{ByG*6m=ITfXUT|gRE0FK#LHiX{mOUDK)`Cq{tUKCTvMIe3*1hOer znodtU&p5!F1AEn}voI4TK>3guD7~AB`Bs*?5KuN}3{`AgGali$ifGIY_-5shC6JJB zSG>ud0lrB0+^6<lB6Skmb^7NHt^2S?!UE`O2KyoE15Pee6Np6c{g#;K*Ob`oN!W=T z&Ye)Q%vgK%)JHIiDBrVdVg@H-zOl(RCn*y)hL1<wOV&SPMUBk?(;%VXsN*KVWw&T& z5c(v-j<$Owf#7%g76t}*kPxcN3*Z7SS1VLk_t7n2yd=WkmL*G`;na)~Z)rcD<$P<w z&qjwF7nOytVv*L@oK!_3LM0`?`){YCK8;6w`b(Buuo?WM8upqPp^Z=f5j`lcxB3#1 z_~{XZJEC?HI~y}Z0DTk~t1nkN32g%G=JBFp;HR-Vj2>@Az(peX@&l%Lk5DGgzC1o1 zRh}b&geld`4Ywt3vxr=b>DuI)?qpxWa6l$_I2V4AdITSbE(H8QbzOjy?J<W>d2ZH- zhKY%JbANwxqg^!*0sVV=#F3D1>crr26$&T<We`0mQ6?fD%BAn{#Qsv}f9RD7lMh;z z78CdbYQ#2W2u*wJ&NF4k5~7}2ixa7Z`HYi+nM(8H6bce*VeSe8Y+-zT#A~L%=&8@H zuA)iP$QYqZOZFo{nazWs&L$%A`X?f?FtC#vM7RJ~Cr5>ta|DpgLR^d8(a`}rC+#sw zd$QZGbj|LWuJujv`-U3IuV23q5D;L@B}I4v%gG2)2lZUFx<5C?K$R8Erv1z%;J#d$ zjueWB2&lW_;`U1^?NU%ZF5I>FmH5?d(liHP)EO{p!3CHMJchP}Ngw}t@?CF<a;P@B zs3(%=RFP9tYhhu*)6MPX_7(!D%1yt9^RGu35}}qiW7#m)46DR>pHtTCs(t<{4v6S$ zEyg0(_zLt=qc&ueHDsZ@te*&UdxU{<rf}Df2FFEwOngN09odt#goAkellZ;_ycdB} z9t>OfL&v7YU0YFDykN$_B=KVM;-B9t>gu!W>yvSjUD?=xaYRosued$RRgl<RS`0kf zMJ7uInhAXS4bTpgH#7vc%PySK5F<24EQyM{mXHgONYR=-+`<RQBDn10IqSpU^a(V; zA}Hv{G4QAgc@(f062AN5F;UrRFHCZD6f128=|8L<UUX_OLT_A-fG&PTONXw&KcLRd zS3P!LczxCR>M3#o<fu2tw(A7*tcK_zZMiWJ41**?cU`C?3`&78bWo(x5a{p)`kwBx ztDagJt7#`8%5ICfvIb0BT6g^38!wP+;D)c)T)u88DSaO0Wd?kiVyH=RveB2=rxuag z?{gG;CF~#<Gx*r%z$a`S%mE-Ynz&1k(QvZmK7iJD@5gI;VO|_Ht@}2yuj)gk(lgl9 z?_8luXsyQaZ*d^v^z1CPKh2q0gd#x`?9GuLRd#Y(4_!|97Os-%hh{M-?YQ`O3=S#? z;*}7IDJ`k7G?@Fp2#7i@^cf!T+gWxsw35^34qTy136%a!9eB~H4D-$K*VAG)GnTZm zv4K3)cu+T#)vP3n`knhj?0n7r=|6!25{{s2NnT%HosKE}VVhqiv=M)|%Sh#a{u!0y z60hwm&vX12Zwm)vhf@xcI45;j)P#EaH7awUY|p~*zFC~#uYB?bhdoo0`>oLBTkWn4 zML~7#h^W%~Z7yuK<lKSy2C2Yraf(!{*tIf{3G2}UDu-C43{16)y~KOUEO5q{e2SUa zFvw|>t*EU{?*;1Zy7qN)?=B!xj208fHXp16%*q(2(vQi_CFh{}`SYjd4}1}9ErQT- zM8=1!L6Dtp|G_g9b#LDY2udZdhZjo}s)bYV($0j0F1L5y!MqK3x{HV;xU8}@jP*U~ z)g&6yi}FIPc7e6K8f=qjIJ0J8fTP~F`OWm7Elp3vTxk$q0lz@blqcIZ;>Gx<yJxeo zuPrR$Jr(b55sDpwujj}F_XurA(jG0_QD`je29$h%imQXx*dMtd_UftxkdlV_LLOq) zTzQ25+hbw%tSa=+1(OsXXU5Jgs>(jNyHiY}#l>;9_Fytl?3#^}_%O3$y;6j~IwGV& zvT<gKsN6p+Lkc!v!ZGHBSgjjZ6$790S{$WQKNFJ!Jr}9^*h@3M(<i{9L%_9L7_d~; zcQd9fm5Rilv82vkYo=U>Nt5M9@@!6QYmbYaUG8WcW7xxg=JnD?*D$d%z=T{&5~pa7 z++}g9$Z!64)b(~SUr`YcsFrG}mH@vm;Vw1&e1Yd)BV)n4UUjkj7QuK_VCs}U?Jyv2 zD*7_sbk@y=vjA4rw!m+D-VpecQ;Hz8Ba)^?F)suIj2tnCq3(U9c=VwA2KOZ2s$}$^ z`_)?e1IDVP*xUeZSzSoT$*t!Jwc=DKobN|aQ3*U?;<HHV>&}L$6Vu;6)@iBKRMx6S zR^^ptWi>VDCns*#fplV!D{|h|Fl43|m1#@aaQDL50hnJ7C@VM9(g&Y+y<U=dj58Ki z0Nl`g58bgx^fvtuzOO7M(%18ESiQbJ<gzKdj%HMLzadnRM0)obEv?<7r=(<5{P+Nw zXeDbDk{<@eDtns)?UeQ8_wDNugNH#p00zfr3o_q#+z9_T?kOulZ>l6M9__`6=ADmY z5enbtMtyvjrs<=3de9k}u&1-3jm$<+R@wUl{zi4iR+2Oj$0FTJLdIxe;4;9MjF9|J zlX>2U@MY}o?(X&Z{(Pmm=2xTLLmQwUH*NO&4<nb$&}AVI?tKgQZ`ZAz4ZW2MZ&rRl z`q1W$#ToQ{=#c0WjmOZMgg5+c685F}?;{4vYfc~}czEXX1;fIyf*?(CRaI3Rd3hc2 zo{O3fi@URnI)rtn!k23x%q62qhc;B(x1y=VjeO>sMof;7XX<NNE3-!}DlWp+hw)#2 z##8IdBo|WS{&^dpk^gP@NQewy1;5}^FFFhnw)FwzjR^$$M%P*DJJdOWygbd!lN7mk zb8lD*FpE&KOjfoU%9(WNjKe2c?51EAHV$}jIkOm_f!wWT{){`cs!N8il*Lq=V~UQj zb;YmUDr>`s7b#_C4j&*xuS)EjfgnXtKti0XnHlx!BxFnzZ-4LB!!2^o0jg`KCP3!L z<zz%<+lTjDKThEzIFD176SX?g(bmPeEcale`4xJ8;X}K5>a{mCjOd}h4uR<<CoL^K zTU$sQ!_~DRAP(uDJY0ac(2YqqPfv;0P~D2z!){{iV;)YtonmubrQS|8!{jZ;kg%!; z6r<gA#IBId`R^-ygo$*`uYL2L!a)P$YF#qP86nA8QbxURj~fM3Y0Ww;kS3u&4<rf> zmO=t3pe#;>zQD3K=M$tARxPPm#Up_4Act}z(1X|li?8tjJS(1E)H_#L5rpyNK{c$) z0(*mh9m|c3n9(!SVaZM5ZE@9}c7CZPJHZ?>IXH8+svXL!OG}xTGpZx$!2YkXsa3@6 zLxnRtJApsuboKPwJZ2p;GBT<ZCr(Z=A=a+HX0s|)8uCp}HyqMKvqFei1a~b05H@_f zkUR&Mdknpn-jpU@F=L#pHZ6}F?<0A(&N=BZ-#6CC6ctnP@d;uqcy=cK9fUYL;5@^3 z)XXLdaSX)7M<VQ{$YS%<|F)7K&vnADqPH+bEeKzbk1x93e%J%U!!PBc?eNIG<yY4P z8mwww`3`D#zOfmF3eT>`=ah@k{f$1p^uFMvZ&>oYIhEu25C=&Crnpm(do}Q13K)-Y z*!xW4euQf*>4HwjL3Mh13K^6}2%+Sr?$g$f%_)MszjA1Se-{37gIQ~3)aVPSt^8^c zh)7<i7phQWl2eU1cD_D_kwatpW`Z&{VFj5F(2JO|hCFku?kr%Zt(vsE+hW%IXQ*~= z0H{Ag<SqqLbYGYyI$9ka9YMOuYHDhC$LJCtnrlf)DNX!dPeu+-J^pp5TcT5VKw0ra z(73gb$IG@ZKX@8LZQrgx=Ms|J^>^ZVY^4gk56|(VyL<L^pshLuVP9UXVE<zz^2<BX z(7op{7!pZ|_v*y#cXuW>Eek3uS-81zKSz}n!on_=EH6ZSBzb?S>1gVDFK;ZTt{q8c zU)<5ZC&aEE8LYY^)>a0}yuy&vq#8wnBYHL-4@BlyVIIqCYSKl+4&ETSW#|FVJqH2# zz-&u8RCKSZtZaB>gprNyEWGWTp6TVtFrcQVl&1dcVx5fL_u|f;H~F(I^~L&Bs#W4z z`G)r?Anfs~H<kWC#oS4)+~StYhJ>|B@#kQAm`)rbVJ8VM7OQ{W(8>caCK18b*P5{| zhD`Mw#Swes`_7{4d6v94It=Z{2@5rynl7xz=485T49$~mKQZXk_mWdSffp0EP>PU^ zLbo`<BDwa8SX)fGx=X42#@R(mDw9fork8%&drF5_i>zAG{O`<zgmeamC-Jsk*&;81 z%;nVA<2YC)B_}Pj5M)2>6gNyui#)bp*{aEU)5d>3Ab?(t*07aqp?miqe#1Igf4)Sn zW(Mj~eV(D^b|Qz0f;2ySdq4e{V>+wNM!HFL$?5!0vHr^&87G%CW+w8BmKLOow_3@f z;18YkPMYP$lnJ$`p31Jd1bJvn*=AFO<Vhz?IFvM!xL}X7m3gvCZP*Cys_qdOK}$oE zl9na}8XLss0_;H04a{i+oBvbRSBFKpb#F_9#DEA$ry?yO4Fdv#A|)ja(hbrKFr+jH zNVk;I4bsvf-60*)4MWV#_i#M#`=0arye|H7uIJg$-Yf34*1gugQATTa+(pZv#T8%> z6BF|yePMA0RD35*ctFi?dN!7hmNB4uI=nl3CLbguXv0H5<JeJTKMN7#Y_JM+Gr!22 zp*`@S1)<2u$cVTd6ql6j*9kEW{q6gDJGv#px5nbg42~||wT1L5d1UXLWHUUEkMAgJ z?NAgRK(JC<>|o3U?}XL5y8a+x*j(wUh)(=w5Uhe)<Rf3XwCUCKuy{rZ3`h4-hCmuq zgSr0FiRZKg#8EL<M^sBuL6k%rf%j%-XE(OVrHVAxd{ykE53Um%bfj?>V7`;fo6EQ0 z$YoDFyj40+8uGL4Edb6rY`y2B`0*)JQ2VcS4tYKOMMwxl#^i$)y)Sc%iU!_S9Az_n zyuI}U*cg)ntFY0;r8Xn8A!pasYQ{<-cepLlK^P|PMN<E9BD4mwHI$Z?HZ`R|aVhzM z^iH~4sc>hA#MN>uDu^QFTs1UQd=Mj3=&siuunPIffcbp0+qr;+T_Si-Oo8%3QzW&K zlR81l$XRC<Kx{85Ej`%Z57G-4)D8slb;pligx5dd@AX1Q2h#vYv>bXQSp*QxXUWN% zUCv=|@hs*QsZc>ao&D+;ipqrUPY<>ax{vce+%8c!!)pZE27%u?@)|}Ev!0@aynPdh z?MQAD7;{Cpa1YSGEWaH+b@lkv)S~fiObEpB_x1Ytu}Z0^ya@JQZ`7~%@|q@FbFH{2 z!Zs&EF1!5$14d*AdeL-*FHYCVy6^Ip3^;j2E2_k%`2_+dCY6ncQaW^CDIpskokQ1p zSts1aJ?+MQ*sswm`=<1ajKzrw^o*zwVqu_JFc>IQi!6lvVGkq^nl<ZZCdZ6wyzO3e zClk>CrTC_}h!E&a=hnoF)wJ1J1G^&vA3NWjrWJI^YHSo)FU69WoEKZM7N43az<vF$ zxT>`l1f-NSB*eC)WY)E0VlVfLO1@HEAMxHgbkY-7K%SQ=iyh>&_=#OtKl(c4vS|7d zgKHl^G!+%xRJtJF!a7L%w3qMtR?QghP552vVg=`~BP=Z?h>){-9p+;{c2qEM#On+I z2c*}%M$Oav4*Hd4Eym{hhMC295xqpJn9f(J0ya+pW45#N0olZFp?vPD#FP}R5FUG6 z;JyARIojbPWlU65)b+JzImWWWXMis_W!IUk0g7Mj--4PJtX&e%E+P9)&if#jPo6yS z-^L-HM$6jS&p3KcYbcVdsprr@hZqV6@~^T<9ros*12j}sRprmF5wM!Q6YJycpMh~l zk&EBRDv^y?OCyOb(lvI!gq!t2uFP-#`-$~L$<cBscqp{2V-pi<`uZ7wJB~}Xw6$rE zF<XBB^e1{fE97F&5$UgclnuPOocGR>#>|9-ptq5uFft6=16-4m@omp_awSK_N<Vx` z{-bYV?LFuBvS6_cFV?*y9NR*U3Yq|aXjb(dpz5R%)vNod8>+UQ15C*6-Q55SQ6Is3 z8*kY$F#pQiD{UI<wl&HCL0(+n=gdsd5cVwxCntfxpAUb=L#w$6XMOi6cMOQ5KrMAq z(hM;G9f4)!?G5d6?8CdxeWnMY(hL}i6G+KF|26aB2;4H4V*N}<w(MNkYifQR{OEhw z*=@AC%J(o`twh~9ohF_S7+0FqDkh;jiWV|gZV4Ze$EqJXo_4`O)@}yttYfEO4VevA ze~kS)L|iY)x`DSe(c?mqY?6&7EuT~HnEd>@=>e3l#trKY4yfyAQti_pEDQGc9S{LI zt8SYop^uaWxVT)y2tDrqb_q2w5z%wfG!ZH}4}YOnO7;4M1X~nkHZlgOXvl{oy810~ zx+NlW6hMb8WIW0AS5ZgPzNkzX4xPE}=*v8fTD(wgUENFyI=-m!QO(*F*Y)?MxRO|3 z0wH88vuEc<@nfaxkt)**<c~<2g)SEbPL~fOkaij+C#k5($gI%Jr<NY4?Uqi71wzG< zau_=e>l~TnRYzFrhW8$R`H=S%=c_F;636hD<711~MkfRO2pS(Iv#DSmbw3}{bpsb^ zMBEN4hP0ZSZtw9r)}8~Z-sO10FA*oL7}k;K`_c&64JZ@oyB&6p%5{eWXcEO7TK4+m z%f;$kW$i^CuFXY(4^&gv@_qwQLUmX-)zxj=_Y`jXfF{<rBwu$cjeb-MWil6`qGb`r zvzfk<DDk034?>wc94aP5&B3CH`hFEKSSSI;Jt-4rK)&+!L(RSyFZQf=Tz`gvBPS-N zL4vf{HDZknqxe8D<2G&BKCJu}mqokV_bK7k<tTC{UdKRRy&$$J;f9vvc?n{Ajx7II z<DP&f7+xT;0sh(#-Cu+l46F~N9!4iSBDFo#b6E|iF@`21EQjq$!MusTn7D4#=~*@V zV@IwBPkB+*tQT<S4x`Sl{6<@8qLQx=nCe-XcVZNSTzBw8&25{ahJ>Q3p0*3z9TnYa znc$W3B_liXMXR^xp+e?n5i0zv#5&k_O-a5mg+VhW16je!su{y}27XHurYnh1mwl-9 zrGZ#m1(BY20d8|S3a9(lj)osoBsYwFM-pGuOH#cwl?#<A2Y3;}UwR)*rjLZ39I|5} zrOul_j$)srh<JM<g0{#@Ma%ZCo!HD}QxUF;@L!{YmkM>_e9fn!PK_C@S-Ts!o{J5+ zmpN?Ln);I`i!~&WT30t$cLY(apg&y*9m5+XlLx=ce9$TSp%ysO2(;hO-(~e#w`F9> z`nT4TCq1k!-ZdwU)5=Rt8a4ONJU0pjSX(`EjLsRom-N8Z7n>K+X6w*KpzX}GcWpQe zCr*M8o#<iUcIcb0a9obhP;=DZP%7Bz_f5!95$rc~Qiw(Gm-qYN*O-vt!rC+2wCB}p z!?v_N>(Hvon(wBD4)ryVtd{1o+M2Tbyy=AnYpdUdr8OFp)zezSKpL{Mb{z^lU-#e7 zpIGp)8%HD4^f_~Iaeb@lRyLCz`$J!&*~8(6qeBF_P!HQ_D$_{XrKlyX@k-WiU9X!1 z)lN6nwpgu1V`W^uM#7kdK+Q2HBjFIz=5&)n%XJ;xKi^Tm5vu&Z@8BC2Dce8BEfR;7 zar0I*Hp=cP_ZfmNptoKf%VpEgMcrN<kPSrEM5f|%802d$&KhaM^oGI=#%lNa<>lDl z)iEN|?JH?Ljh9aCkqH^5k7&B}35_0L`_uWO*69%4uYqO<ogBWo2ak>_;QZ}%aa(vv z^L1!uJ_ylMp0hlx3@yqtUAm}Lmp@7LR!fQn<`XT>j3(B!t`sz1E4*r8&G}wOMxFT5 z`Y`%cw=B3%7k1oo_NHS*S?)I49nDO;osg@&-S2TIX$%Kl@rRd$#`jhF7>KQqFK{=O zlJ8y9>Xqp)z^68*l<aq4Mt0D4VyVz!g1nYzNyqKV*G_0GWzHMSco!FV+B`SB`i~Z` zW|m94iW^-VES?U`TuEuH6*T@72~W{!#G(+semgMlGi2rNCO=tKgjdEs{PP~t_!$!- z_)9vdN<;r5qW6X_q>a8%%jCtrfkpPM2(bh*=d?t=VX3j&t&gOct!xK=kkWEkwr}91 zfZQp%X>DwP#})PK-(LDHq#@w*kVL(4VmG^SsnN&Q&}zOKM3NSAW@lArE%p#<eR&YE zng&0YcT;OE&tKoR52wA-y_^Vc-Pk0>$G?!83VMZ2lY$6tR_%<f@2p@${UJfwA0HLv zPdWT@bekdj&8M818IQ-ypP9|Mx>)XCaigz9e5HxO`TKb2GFz#7%LW$B-^^*Ge^yTZ ztXv_Gy;?_20(sEyW-C(eG>@2=XlO`5*jYn=`F%{wJ?UKPm%psjnQ!#ODx#RX+-8lf zd`+PCsATG*Tf^E@|LUUI11GehIBoT!_QGhJTF>Z#e{gfWM(rs9f&cp;23-P|71o)6 znp+A;)(6e|AW3T{2{sIt%GE@%C^2QW2s-Q&@QeE!;A-h4B=>@**g}15G8xbK_|G$T zUa?>vFbEnv=!g~x#y_h8)!OcIq(9evZe4yI+7eZ`_+v<IjVx83v~&RSq<OC~pWi7! zJ@f7P%4TfAbfV~u)A2Z%RIIh)OwYIoMHi4&|KM8WN<;Hhm^~=YctBFyE-Vf=Yejt~ zXWkgHD&6Zy1q9>M^@~Y#-Lzk{rJqb7f=K&YdG%pHu^jN4bSQ|S`CR=C_A{_Hl!mp{ zvL5zc!|O3ym{Hd>C~-kh_X9CohR{2ARpW!E%GJH89T#<-p^|yw?^gRbvp7o=IzL6u z>^WZ5??=*>dRR|3zakfr|M^Ylb%svz)z)Kj0ce`=?yt|Yju1O9`*Ao){6;$yI*0>` z>hNpAnt#n|tDW=}QIAWQuXkP=?iRdWLDDdKjbd7dSn}~AT`4~)?R-!$n}tp_mNh1; z@42=niF^S4qGR5sVtjqnJ(Pq_>3zLdGZ*MY9#ql1z5_#jCxcxe$`rpGNwx6az`53u z7guiGy9m%QJUYAk5DPC6kK{I+@$_e9ZctvsubS@Fk14U3POqB3SC>xBjE(V)%#SWj zE*P>FadLeFqNwft{oO+=%R043mx-G30`Dk1JsUi)=Qv6>`%}hl!#X#<f!G&5bga@I zPH&K5#}SH-9N~O^i62QNYrC`lJc?~^``v@JtI8Zlw+coaV9J1P+GUR14{l40j86J? z{3fegp7}(kWoF%%gA&JRzOkzp+8v$+53s(zb?K(}Z&D@uMqevPK~BYjR?p6e%1s_F zmK1D-8ATAI_D>ycJ(#|T*e&TR(00{VuHLnE>Oy4GS7`olSaP_TT0!I0x+=~NgSypd zID?#X)w$;1-u}G)((|@Rli!8nN*NR}@Nq}@bwYtS?5C1IQ^gLVsr(pREk$%gQM0XT z6JWuIQz?(qtHZ{xYWJm?HrV^?mwBIt2()G4$Os~OAm@8ju<GwL{epJ{(eaI`(7_HN z%Z|B&-5<-gQvKX+#h2k@B6&G==9*EsG#{F5aIeFEmcF)en)pb|iF9{@=rbxZXQ2L@ z(WNcE4rlT0xzd%+5`TOm0X~lTi)RyJ3$Q`M#R{pQ;ERn6t+eL6+P>;Mrh|brkwmj! z7cSjvTBe~T`}+Y>@GQR{;!f71<|4H2tKqw=2}ltxF3qIC<?Qm}`||na`K&i)(T6s$ zhnC;@N<$bj0uyj*wj|hCWDqv>gHhCV<c$8I*9>!|S!OX4c+NHv>5l9uA96}NEl*<@ zBvLqCEg|J!LRK6xKNFGku`$d`Jx7!ElVjt_zTm1>Mx^5`!^We~bPD+wv=D0~GE2JY zRomXG>fak~jLQq^Hn%p#wyK#k=E~u*?Pna%Bl9zH$$XMrd*;7EJ($lE+}<9zLzb2n zXS{EUbnKy)zo>_y$mt$UUF0&>bkor&*y%Lj5OA~Hr9=t;du0}KRJW<d;v9S*oN4sV zCvs)Cl@v;=Q*n{8bAI_qV9|E&7IZq*XjQwQQFXkNf=?!3^Sykv0KD<U*231BxAtN2 zFa$ZM;MPiotdm*#g=n9y6RTUDDo9+s?(C@(y+Ck8H=R#o88mF19xk$Run|A;qr+x+ zid{sWtb9YJ{S-NbK7#zcYg4>%X*$<aSI{EByB0uMDc(T8HBRX)Upk=UYKu6r#?{c( zsYgYU7Dx2yxhjkmR0w?wEh#DSYLf*<85*mqdP^~WML}xUvy)=m9hAEQW!V3?`q7C0 zxO%EvkORf-)0TjYQcijA<_e$$+MoYAD3>s9^qs-<#FQO1m73TW$KYo;=#qqzC~uyH zN}nX6&LHU*0(;RFBi}K!hsw2bu6@@XtpOkq^3E`Pyam}ZG#5vxe<hIRblwMiF8J;s zkGqjG)pAW<B5tOYR`GGYNIF!M$(7!qQa!*c2H)AvmNO_5S1Lf;31wA&d;$)UkZ=+F zkZpapA$MpYq6dNH>cg(h=##*nA=1wN6~IS+zB>-<4}6WMdt_w0y2ELy)Cq4RqQ=8% zIj0(yq@S>|zGjzsqULtz_sN&Kp-exkZW!hmkOA1}YQc<Tt+Ws?_Ih-F8-l?8WM4tM zTTsgs{0UDvamB-A<zF~=kWTah?967~A6LdDr(EXp;EGn7E=!o|JNoY#68(_D&=Ksn zutyZudg#KaMV)U=Ubry-^{FLDW0M%9BsywgM~pmnG<6e5Q$J|y6O!oeQyvpuxgCMq zERS;N8i4?hj~^Wo%o-@o5czTfnT?-DQ6U{j9OI+c?F2-2#s!FIU{66De!bu;+Bs=Y zE%G8|>L^_X_)H%X`)<P@gxo?lp>n*@LQM{A!!o42Qcj$N|Jl6IGh=2XBd{bXdAgHB zOJq+9#(gAO8mNoyS$Y2~2L0a~kthdt1;Iff-A2VJ(iEAo{m5R}>fKr7oPqfYq#ob> zY#l1iX*`eoq)Pxnx74!z{3_RxL7)1b3a#$4DiUi5gU7sL$Wn{`uQwxP*LgJHpg{)~ zW!ukE#jx2=MKkUN4iEa4{A0U`&VOL=A=D^O!0p5*V1~qs6=<(UJklkoTBEY-`f5}~ zWz<o`NQ+j0q}@@A$O1Q$qTupr<soor57{MOt%Y1Kqn?1P>5+`0z~2iLd1r){YW=G) zWtd9u(b|Wghmw_Dikujp_ughP0<|(HlRm$9VdFI~hod`?W<4GHdo5i<^}lD2$DXuL zeo7=kU@2Zwh#3q!$uV5%D31w#5wCCifdtrA@W%i@tBZyKSYvx!g(FCezz;226p2<@ z@|kq?DD9KRtJ-%fZ)Y|heVs)bC2G)JD&C{vRG{S&V$e;|qXr`O`w8V1um8_#{m`}$ z!7yq`i45DT3sL0TH+`fxeaP~hy^H0d_lYm~u5kI^JN3<%(?3>()8-n6l8H!6V3B<S z#NrA_+Fa2hWDZw#PQ{nSSp<*d&cRIXEn>s14^{u1##1B}a2n4lkrn%W<l`A$_YvYP zo`Dj1e`(qkEe}mS0i$dv9TIIUSO?OA_HJ`2uH(jikZa)8_t0<`eH@*qZ;1v{{0NTH zAQ@1W{JE!ba%<Ac2%)<z8ApH=Gy`ry485O_^o%v-wXSbxt>zM`zsxw=*iLdklq6KK z+ob>L7@4}y=Zi+0jzsAb5hAW1u(+whnYR*R{(vx5`*xI+;<p-%FQ<>##d-UtM&(IN zcWAlzzxPP0J3HCg#?rR+p~`35V&n3{67`qW0olH`K_73jV?IBaapyx|?TtjGiS;yv z<+z4~J$1?x7WSd~^JLk7K6&-k-R=)(w9bg1^Kh756g28$vdSQ^h_HK+pH%8D!(6Ac z{V;RgFU~6}Drz|<L*+tB2z9?%WN_oRd=2Z6vU$}vx_3;!_`3&cLG^`!ww6wW(12Wt z-8y%bK^Y}*04gRK7W(nsPzJu`)2}%d3DvxubCay}-V18yBNK!c>t3EuOoio*<GBt4 z6RV>&S!V_J+&-UZ3a>m-nUO8z`iBlY6g(n~0%IIXjTapeR_DAO+6W?w`7%3LG3TP( zl*Z8f2{kee#?qX?pm0cEF5sh$2sZnfSFuV>es9i&sHdgG^H7v}7VT4_BmL0Dmog1; z53g68W6le@38%+aou8Mur!2Df8`oq@lA+Gj?~S>MwrAAA>EoBH?j+MM7*Chgd(9~? z+sCH`Wum6lyp`>SCEVprAi4dk%TV9(Wm!p8Ap7*$|Ngi8<jkmBj4vLW)BMb%;`zcf zU@g$IWA<`1ZDx+uhC06Vqe=5)8;(pV27b$~YJu*0jlF?{mW##b^Y()h!Cv=0V)EHd zg(<kHqXss)v40$>Ek<9osA;))f0Vh-U}DIvCr#1$;a?r^<HI*xc){{Ecg<P(U`S#{ z-o%s1X=@q!b@Lf@qy<8ifl&I|#qT~#LN_gu$NsYCtLX>>{=P4s&KP+Xu1>`krLbJ; z+9!i8#THu+6^QuM4sJpFNf)F<^Uvau+0AY<(hHyE2QwBzgzJj6_bUeY(ghOp-pH~& z$<LYVe6n#6Xvns8TU5CNQ)ToX#IvR@>!=x7c>Nme=~~=W!ZRFZ3K1T{%8Tg;Au40> z{R-lwLrVSEmSMNJI!uZ_%YU8QYnAhcAyV<R0dw(Vbuwu{i`_S&Hrjj~FOT6mI@neR z{U$=n|FM=1DtPnja@0MwC`IlA92#uhesjto8)|q>+(nOy$?F*0C<d+_(cUA$LP`1* zKc4c}>>j=k|F*$@w0_wV8QgJsN%C5s-+Z(3fjV6XpsR#{!?B?fCCs}-VKbaHdfq10 z1?qeLX*y~Xm?Z+j$3mI162|Y}V<q%(UU<zrf-+O}?&Kaz<sZd=D<dQA?eOC(fDgoh z38~5$AO3P^K>X!fqM*UQbsyZ39q)Dqrh4?NCLmDH6SFi8bKzw?r3}wS2_IVe(azkf zn8}yP(iF@urlnp0-w$L&+LSaiu*mLwC>@fKDJz_4{|ha;@-1Exa^?4%&K}lgbgTl& zE3^c?2I454*%7>TcbEOUo!pCm$Vert)`^Ep7fGDGOHaQOfNOF4jei{)$b9FQ=$l>b zZtp7{|9R&u8^$cMZTe-kKH)~u7i06H#jc|#kX%P*XE7$=lTZLZ3T#Y<^qGs6kK;p@ zvB#wwa&ifpm0d8Jd^m~L#;sb|6Dlg~bNP%Y>y26i{aSnf(f|(sH4T;aypT*=q<$-$ zT5poZ?X^;NuIYyE!;>e3UmcVIEBifW9YP0KOJ4v0^&+u(fOdH)fbSm=0C0H#Lco!m zq2WEB7j(rBVt^k9X|HNW1)6w_66QE%S=0tOSYfqosz05Fq`o`?Q}I{GJ~Cp{CA9DW ziKbXdVXc?^_57!t>rfcx73~l7G`u7J>!L`h<XI^N1?v5Mg~&+KaG*Yymy?rIP=K{S zbP)bK?B{DYrplvQd`e?!t8`RKij77j$_p}SUp<2R(dasEUBy~dkg|`>emw+uOu}|8 zW0U0=oRQ(RSPiG(z$He)X6o0kL}EMQm5i7qg|%l@sjx%QS26Gi0SCSgwU9!{j@&Cl zT?k)HNNCCQF$KD1&C_~H8!Ta?1wih9kEP6lC$*@s(8}66H6;a@*E8;d1q_&UpT-ts zh}j5tpZ|zKVqsN|L)1#RMJV7-=wWlF7rMkquccq3LeLE0(peGum|J$0&X<SKBTYT3 zCFrXp^HkTLlWg?>@MA<>3~&(lg#0LabZ}^n)jw-(Uj-gA>`D7cklv{%9<1ky5Aj@a zxSd<9MB^}Xa<y~x_HOQa4-5p}-P!TSXY3_AuEjrn<n<igPOZj3q{5HJKUGlQgK`M{ z2U2+tmEc_s*C4#H|6!nPPj}%^vRPI{-86w~ab+*l7>wvMGzw7sqiP^MiQs6U_Clzp zAOntY4!nHljcT+Zo}Pi1_n?yMlY65DGXT%vZn^-UB#c3Gn5yY!sbi^lyNsWIYT{8* zAuB8E9T6-wb$))nv9Zx(8k>pDgVAU!3fLWwh#X`#>@i0e=_5*G2vzgDPpKALwb}$L z-{j`!#%p_m%V*rT2Gt={dg-yTb=h)pIfCy+Qv5_8Nl|N9V+t?t*96!Uvh#%U`E**d z(g7Odbq0R;I*E+eyh4#g4uQpu+O!1-OTeX3i1N@y`X23NMPC6fvO}wU=jZ8c@qF-- z7gSKFq@=Rnh7TA&e#ITR@EjGgau6aXl>686RCNl^rMB^BnlU{3XiTICRPrrw)nwfk z7eYrTSy+g*AtSmgthJvNu$Jrj(7G`Bo0?reh4eE3s6w`h2IUS_RBdrJ6`^(MMaFhH zZG4ikPUA-bj7&WW6{>@HoBTbb6uKiOmR7bO{F0l0|Ha;g@^|VuMPtpyUJb87ad;Zs zi6)ghPNA7Fb0W===Ei#OsL1}pes&Q>Kcr7hOUsgv0^kz?%nV>Q{{~U<+d8>kFCzQ- zXVEIc*x2^oLKplqQ$OE_P@xr&#JxzP#uk!JZemDTuvug6=@rHN$nxR&wXi9eQ%K9Q zH7s3D5RkDr6`IcxW?6xEqEPTpQOG(jxU(sOZD@}kJ-U|(l<{=X9UB_799bZ)L?S+{ zBCtm_r;e+9z^pcSgQPU3z<WdA$%)F(&KI3dd)3<j$)uv=iBUB!qB8+1q-(pkyMs#B zX~RD~G0`ja@`a$+<UGGk1W|)<&|+}F>5AB*zDVCmVI*+2ik<18JBTO<qh02MsTkVH zF~xtt&!_Tsag{W+^sqH(U9A{crW2+;^y++)@n!VXvGXB7T-qxzm|gx9Qie_yQ`TZS zz3`JDm3@`ghpN#86JV(o6=5+OJ2-qT`Q@24mX`8uDK4#!SqN%i=BRyu_<7sE*S@3M ztfFax`K@xtt<Uxm%ZI#%{8FYn#l3@c^`|IbcY<F3CzyeO958@%HV{}gG&bJc+{iq| zx{db!W;2AgH_~T?Tm!~$4Axae>S$S~hU~p@;)R^sx*nKb*cufXE14pFLbgw2sBpeb z8`lG&ZGL_?uq%_37*4PqcTS+!c29qUmc8tcP%T{D`>%Olam$jq<NcY@+=6OOQ69#Z zPcIp5>Djr7nCLn2-k9MR*%NX<|5jIC2X0GriEqJWm-6T8tZ-$c9Q!Tk$1bT@tik3^ zf6J|q6<ijJB>MgdsK9wVJ@C4BC$_vu<MA(++?*|~Wh4YZT%z2b4zifYwhSiK3+(@V zV1DS`&e;?TAF2Rm53apC%d<I;F3wl%bjBc{@`y=y3hmg;QZ1;0BBP)4TVB%+NnB7+ zP(-}U=`-;U0_Fp59H}3K-(#q~1O)2e?*%}3!KJ-C>2Q~uk#2LMJOYaz4WFNH5%4V| z4ITd2@s`#drQvM$hQU<3%fh!t_r;a8&R7W!9hTPXbY=lsNf_nC0q*ZW%e_)4w{>tZ zA{eipV%dX_pZ}zX@BI86xV50LZ`s>Hx)&Lu3-}wLC)G{-uLv&=nXMx<elf>!MH>h) z*+QeRhq1jd{rGW~@^JOtXpW-85hZ~*rn#i|Ift30^EOn%5DFGg)Pgg%ltE^gf*-mw zn5P9xNzkPXr;{$%OJMF$7H4|vH#)hU`<+n4egF2Y&#LBxo>Bii{QvvtEd&UFN!S7s zad@`C>}W2&Nr1`0pq5_|3Wwnmj0)~Z%T61iimZ8&UOpKoc@~!p--5z6_pR+$noQy+ ziwhF9*xALxy>HMUI~cB$_<IiX)?BRV&ZLl4Ee(Bo*DbUuf`x4{q!Dv^B-b<*gthT7 z8$sPDQmhf)^;T82<3>i5w&gVt(7r%mg|24<vV9j+P(TZTh%85T+pEohh*fo|ZFPDT zYb%X5CGEi=4Fppx;)mqaXsD7oAO_StL@pCJd%bIUWgS#S$0?=k@1DcoUch*548o$t zXg{skx0*vU!+FDd<6_!Mx5V2n_DCF=u5WI>bG_$D{!E)cO2zZy|GxjP0ND6UVtk+n zSiw8eY$|K4`HEEda}BXgH0O!XJp*Kyo1<wPE<mYkGD*~p6eC;?`pO@J5rt|)1DCxx zic3O;aW0}py=aU#-KrG2tcn}fxGa7n82ZbbcD`Ol+7;C+3XsJknR|mPMGXv9d*KlR zcM|cJcK<i1HU2E2gB!_N-9j;h1tX@cEpJ3dR)w+XxE;|DWVV|jX<NeQx6b@Ina1Y& z`w7ZjQfGK^XCqQ)f;5-a3JTIXIGYpFk<5FqJ$~bO>Att@>|Nw}*0!@Vn{O+qzYd70 zAqSWF$#%V~=9igHjAbL=I+W^~n#t*D%E*_nf#3*$D=X&lhW81O#sFaE>JZkQm+M82 ze7prZvC^Y~Sp|{Yv~66wqgR5D=PFz>+w$K4D5ax^Q%{c}pDk+^6O;qJ*W>Ri(1HAL zg}Ht@eZF_yYFHX2OvLO9c4_E7O<z+qj}{+1!R^wZK_id_{sD6j+cVx&&Hkhv_jQ_L z8{|RF=yyMo`Tw`3!#s;Rh`*+;prEme81nF9&(t!Roj2Ijq-sIbOLL>FVy3O=qxTy@ za)`K(Hrrbq0yw<5Hfmqd1lmY>BZ_zyq(|C8+T`!yvxBjxB{XrIPSJa@HhjGd#b%G} z065KZGm~1bS>Ln$piCgI7=WN7Zen6{38;@GLnN`|7TO(1W4!sh7V+a)jO-RsvT4m# z*^7Ks=YY&9sH!rDUX8RO21;9qmK>73D5CN{wGMw7Q(>-5nzcDsVhE)h0k;(vI!=9R zMaC(JlJL6zvPnbZc#NNU!dJJPL$$><n&v1DSuss0JNBL+dPLEVQX;QWX>A6KgI$(A z8EQ@YbxC()syFQSL0;V@-L^O6W~GP-&>E&OL88CS3J|nZA&qVj;>}Qb!8SO^LYk72 za$sNpU+8<6$5l<x^<t;DP2YX0I>-Lmz2C&t`MdSMSubYq8+;7EzE{1me1A{Tr0!Sf znoyLeU%D$N1o1eZs~xXx?uX><$WQQAMUGPC)+g(^puN0lN4zk5iGGffy*j3g{?xs& zUB{*Y+Nh4iz_J!gSZg#0T2Y9U@Q}CFD;Xp^zS%3v4!Q+BuuKaPp}mXojs}s+tVa5H zih+gqnUTh#9eRWof&gaArY<Qi=6i&vrKQ!^*Y}Nug(NSp#N*1lwbXpLHN?P1$cu+S zI^Bmw=ZwOK&8~A+(L28^bDzt62_9mL3?x1_O-KR*mjjtRHZ86jZc#mYkfH-P!<G5k z9Ypl01H}WUl8|jmJw0}oATd}{cX&@vhCkQg?Gn|+=8aTpt#)|WuC>+AC&Wm(4AC{M zK=J&4X@V#O@qTwF>4`4>k<dCJH&Nkh05^}kM0GeMh{9gz>G*ZWQU>U;j*b<I1p{(Q z!*7&^hx@kqAA(Be1J{Iyk;ICp7*W09Wozy+2X--^41WJ^E8q}VvV#_WI12@OTSk#` z1D!NP9($~NZb%g82(<vP1TcamE+%P^A>TeXcWv*9ELE8zmGcqz@3Y$#L8?%mV-v5p z#Js8duc<6-{E25KCQSG!7~Np3{}c;}HKiJQWJk2bICc~^U);#M7jZcF<`4)3;3M<p z0V8#uva`QYQo?e}tuHS>mheE@LmXGRq_{6$MbI3v7HfF@y3E%(vK#<NyX3r%+L!fR zdkx^Vs%XZjj;K$n1#4etF2O&vqztFOk;4?rPAy0rUW;pel+y5inK--&4i--kEg-i- z^|7>{ld<X26ntGb*U4Hq!Zz1JoOypzCrQ*EK0^4lv8oDiTeY>M3q<PEA-72{J3-9< zvI1B@o)r^(zmP37H@37l&H9<&hqFm740ZB`lh4Jm&6d~c5GR4hxuw5u=Tl%Dt#%7n z^NVM!#tJ<aF9UsVP@~!}k6{}7Dz}yc>=!=@ibs5-wI$F31hK3&I2%Oj7DEqPskkw6 z(mxO=vaO01+(;77s0&oa8{CL1nnHyj`?maWp7V!RvNX}EMUsmPFnl<gAPHQ)tOB~w zlK~-$W@~k*cZL?Vn6w%pTdJGVf#!qPV?h5w?&fFHb#)Um4S-qdkg*aNpr+~f(Bf5s z=ARrRfPe};vmcy8Ezk;HvJ?49A5b{@yaBEy`7*u@&~|}2P;9KMK&*!a@E6Qp(>Yl5 zW^ZhEh%Vhcq9!<E&T?tpG)o(+E}`}&P%u1g5w}^MwrkUxA8r__fWCMTxZuoovrXn@ zJ*`6*Tw)8fC5&7t=Xn9%voLjL_43G@N?>_89u4+<S*vcXk+&z^kMhM^V#Us()Fg0# zDo>N0s_ZLEZv};t*@cmjHt<Z*4jGQov|R2q(E0&N&@_#Cm3z$i2gCgxqKh}Vs9iGv zcSMXtQABoER#rAOi8@I0+sxWNdz57wWFfep)DprGVqCWrNjnNZz^b)l1hC@;x32qR zprK=jt3q(C7xCeCq?B3WRCgLc0Tr(b3aNvno~%+GX?-VXiDH(x#l*c?G2eSHbSoIl z2g>M0xZ~>_pZBVkI?@42+-|d5o+Yfz6}<8fZ?O~%TQft9WjPxY#9*+IIsEj7ru>G6 zBXR(LVEqs3|H&f_Zj0%3)vHC)-&H|!{OY1c-n=lzQFy|a=GEI9)tNRn_V!2yIFZ=c z*b^t0!RIvrt&b~^gFT1m0pku6I5T)s5U<}%X>V*cSZ}8ywj|<oRl{|tAz^b!-+cHs zhM;)Iyjf!|o`EQ0ttKg}1NS-cj8Nio+{2tpH0>X_EPUmS2ga?LxjwJ3eA+7la-7y5 zx=tMLO|@2$7@Y6mbKv9O4lXL=8vvz)|G8$-eWZgIlHVvJd|LmmJOaaA6#ihqRFqX% zR3z^Nv(i_LQn9yCdSwc<eYFn%(0Un_)Sj>JYcM?A-&NL+?{TD(l%Y=rz3$hs+CoDg z8sx=weD_uJk-}b1p5Slw__-g%j*BrMantAGk!F)*70d<>DINM_C2sG7@54-X`77PP zW~VeidX$*cyYkaQLAj(YV^tj4HFNK<3WjZ5C!aH1tZM#Chcj=1F~-TRNVKIcmkf%) zyObJ`R2h-@U?6=!W@%;RKks=YgNG?)X12N542g@2WtEo~k?)@www@Kctl%9Ea82AG ziCA#qe&*Z3uCG;WHz5hM5yh1in1v)|7+RVbKzmBl^AvZE)<#_1cQB@aIbxnNKJ+b^ zUfowa<kAGGKg||?`uxhu$j)uVg2&rWm1EHu6=a5UUD9|nv<v_P?Q9NPh7w2}q~AOt zPLmRha}Y;6O9JX||L|NTNGWcl@HGP;@(~e}+B8PWOAE$dcm{*Ly}g4&;>vHwMrQ<P z#@YCtUe0zV9Q5?b`9O=Wzjr$pRGG4A#j8kD#vpubPVAd73f`&bJM~HfOkW^$n|aLp z8;*6lLwN*W0s0)Ugf2$f^uHi`TW(2%XRT0sW+o%!>RPVEMRpmyUY_2B3R3ou;~q7N zQl~pmlxSE3mK^yEKNC;i=MAr?0kE<ETkzkZbVmJm&L$UUUa#l!3}7%V>I#CU4h6Ja z$CQS<{-fu3m-iKm4cu&x<-2Hiwxz5>Tb-JZc6g4IC`wv%q|Q+VF5gkVb6bJXzAk`u z1v`R4czEUJq!mtF=E1@(G<b_+U7A%OuyMK`<K^+$#i|PU0#8KU)640I8<+~7l;_Rz zJ4+6Ln_J~Te_JU5SYaIC_m<)WwtYYMXu|%NvqA*_m4>9zCtH*_DJ61vp0%>~`?rOi zU1?caaOw?k-3dUT24-Nl`}@z0jn(dp%=F0TMTM;$7x9fGu%)_Y;|Ma&x`8X_JS#u| z6JoYh+I3**m^+v?CT_@VxH+&Y?MlL&8L}niEUre)ng!My7T0ZmLqn#0L~|ieO&_O3 z%t9p`n(ocrLSOv6ks_@Fn1LnkN;1TByZ(#*eU16Q5aFM+o%?Esi^?@aVGkd`7YDfQ z--U!&`ufN%E%W``4<_(xT^Um^pYeASD>)|ld+%Vt!pbaj-P9WzE8JGVNL6qPilo0A zJlu3w`c2urt+inHv@iOTrzpaQA1+p{VF{6%XQ1V*Pr;k>%u+XSY0;gl;T5&VimD|* zoJoQAF*f#rp#8Ex9v<E&<O=5hNn`w7>FWDk7QPoQfm?Vc<K8Og>gwvLtqt^2o%^9t z2VMKY3})kotH64}TuU_kp}-Kvn=>bkte$S2s`LHb4lY>0sblW=mR?(YGF%`bW8(t> zpMbB_r*cXWLp3x-N#^tpef^&wPJqQ**t}1zty~+fZryX5F-hZl?8D*Xrz8ougST(T zGQ=Qfo?`5ANN$GM4RuP>|4Hb768=biGEF$c#Y)lk_H1(URUb>qHG@}~$$=<9_7@b{ z5kpFH<<5mL%6Z;6d>H#7Nu^m~3?j%CJZ5i%`lhr+38DxDD(K=9xC}Qa*i2DVh|y*x zF1BTW29u3sJLml3LeePqpV5lK7=Vz4Svvjw>*~eDMTJy;+u6#;K-WqWpP-CGDeNgB z%@3)68ZG}AI4I5BM$&)nhU>nqHoEns-(8)Y-eDR;TXmLtJ8p4rL+a(SD=mdyz>iPB zZ9y3c8d>A&yZF>ydBtBJ8N_`*x}T=KRvdo3>v(h-_zmV-w2<JWARMU&PK7rq?)B*a zI?n7a*6m2eX3?L#hmducx==J|l?9rM#>X=G^~BaUVBhw_?b{mt$44h8Yg~4xZ0Bq9 z^79iC6FYE@2e0n^bGfKWH{fbGP-ECEeWQW#`mfUbkMEqU2I$(llSh+4!$`!L^O1~I zSeS_Fn1gOFfa)#DR;f%2%Qk5|P@`=0u4?4wbZQR_-4+5$KkoG5)?;6ab^6RRf4OQ~ zCLC(K?%RUtS6Efn0LdhKXm8l-6!wJm_4OL-Y5!9dZSA?48Em^`kdnUOI`k7z?);NO z`tkG@l=k`8#vh6S9c)@=I~-t7Tmq`);sRI%Eq2nlzG^5E0bF`y^UXRpzp!6hcdXTp zk%0WW9e-4jpchXABbi=b1{5bV)_u|jgufCDD{Bc=5LMsz@`WDNHO?ML6O9YZ%^lMZ zz(FFpKV9}%_G;?pV`Eq9+pg}Bp#v=-WCRQ5TWECua-a|dL(3^@rNZ;gXBdSafqg`k z?EOns<k@c+A|oST<`7YAFDxto_NF)@Vs&qC>IHoHI#ST|Mu^O~wHIhglg)Tf$zRoQ z9Yakd&j_RpemM$=52|<<BQJX@XM_YF<!Pq0cM4!)j?i9Pgu>xEc~N3D$VfNm*4qZh zj*mdQ+3M<h2XSE$k(Ey?GcxxVrTz&`MqsLUg%73n{f6EHY#0M@9n}IEck&yc_3!HH zYB`*VnVIajbN6lgP?{(Zg$eq}x|YJ@+?TO@F|mSV+mU8wRb;C($z&EyKX6k{@6E?% zd4jt{47qLw9H(l=hbLh_@%NnPg2-|8-@pJ;Bjge|LjwbFe+Fo%{se3iNd6?mG4v}Y zr^6q5MOH&BaHI_kyicbM`zI-@?icbnZ+sIn1=^(=W1WGHsWJe3UxMx7$B896#1HVh zZtez<;`~1726gEn$!^6Lyg@5lh8fzvv?oEI;)YckF|wAFI?1P6;Xdm^ato?D!KXpG zJ|*GFQ&F5gN1^KBVC`cUQ4`3tI5m}=tI>0+l$}qnm>yX2eL;Zyk9a#C*nKS9Twe!v zac{oP9;%`Od8LKq+6~?U2X{zEea@)0aE15+^$X61u>FNK$d)V=+~RNptC|y|Z58qS zJ)=5*SbqbILtJWxxasTbD=0)xT5VLNhdu1(HstIA=qCVC1mLUyauIUx%bAQ?hvwBM zqGO|!2s|kt$sEpB=sxB}`v4I9&Z_hj-7vQq1KG1$7<F3Rgif%b12$L}t7X6d8D;#s zS~qPaN3po^V$)@*WU<0nR#MWh&m=Y-B#0g}B=~Xe4<{x26nvyk)^ll)OIQkYjqk1S z1E7v@sJA8L1I$WQHE!01lZz`@1I)<C`26u>5#Dj#+SW2>@HGRpAxc4zh}m#Mv7<9? zc4@0T)2EBOFvClnOgA_~zt)@!;z{r0{qlKAJT9t|@PNDgUX=P06BE;KXW?FuNkkgx z@q|wx=^cqX9hvO|Aj(BKu6DrD5i&9~GM*TxBqSs>GzfciR{@hYfo3vQ703BSlZ!6a zv>))VYrtqt2jNPvegM}5(_VY>NU??`RnY_s4<FMNl~{3Je7t7)aBF9x4Odh9wy`_E zBy9Ik&FARVoMuriaIZjWst$1R+~T5Qw4R#s%^yCG*KKqLFoVhA1mrC4;HoC1OL|3% zzCyAbe(%F{$QT(5D{DWH9gtH}Qj#y~9k3thrC6*mhxr9N?wlDbwkJY{1!>LiCwqth z?b~;EK$bwwr-$B~XGE)(SrI(-`?OY22^0o4#oK)J&Do#MeD}VYD$xOMA^~b^KyiZ} z?GtftbT5_UzU)_kN0k7u45{+P6p{)&`4~fQ0kI>ufO)iroOJL3Gbex>M1T^Za5{l* zOhh$bGiRAl*}VcHh#9>wF%T)z_N^TR?V0-msazxte==}?-B7L1ngKV$4Sb@suTwGw zbi~-q*K)A26@B^AzBSw!;qevzhlKPR*`afH_&HdO(xQ)AQeqM^GGnz<lLzs-_Bw`V zPRbnYDta=^kRC}KKG8tp7HH+3uS{3hsEAVZdYf~^!Ed)v4>*eIYCZ??m!}?y+@Km- zfb&JGeJ9I~k$X`9UO0P2+Xq}FhgFcBpZ^g=-Ur;Bqy%IvhJ!y%C6Hd)NdxIQ0EjoZ z?DFvN5Ksx;+m`TO_p0~*TUY@nh;9^o!?4W#^<$Zax;hC7$uZ8ml`<gfUh|%k5-2VR zr`vUW#J{=NN81X3>O`f11pYo?AQj|KSB=t&au4f;PgPxWvmQbYP(OV$Gc!+5Vc6qk zt2XU`ALZUR7ZDM72qPVAayZ_uF{KswFX|f%jEsPTDN21jGe*B@0@qaEdnKbNUHZb% G|NjAX=Qhg# literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-column-width.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-column-width.png new file mode 100644 index 0000000000000000000000000000000000000000..1419943413d6f871c495de1fda642ebd7a9f05c2 GIT binary patch literal 14985 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 F{{RpA=L-M; literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-page-setup-margins.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-page-setup-margins.png new file mode 100644 index 0000000000000000000000000000000000000000..36e07a9b69aba676926a0dac959a91b399ea5617 GIT binary patch literal 125173 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 LNkvXXu0mjfu6ewA literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-page-setup-scaling-options.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-page-setup-scaling-options.png new file mode 100644 index 0000000000000000000000000000000000000000..80fb5f00c391d985a94515feb07d92c8a7bfdbad GIT binary patch literal 24136 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 R!R_x9dRoSs_3F;i{{h<TDk}g0 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-styling-border-options.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-styling-border-options.png new file mode 100644 index 0000000000000000000000000000000000000000..4ef59707024e6eb7188af5e67de7e2325ee2d6e6 GIT binary patch literal 18878 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 H;rjmr&#PZ( literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/09-command-line-calculation.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/09-command-line-calculation.png new file mode 100644 index 0000000000000000000000000000000000000000..ceb2b309129cbe205d2080b1a32918d76df485f8 GIT binary patch literal 44332 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 IspAmwKc7C7h5!Hn literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/09-formula-in-cell-1.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/09-formula-in-cell-1.png new file mode 100644 index 0000000000000000000000000000000000000000..e50c6cc84a9682338b41d3bd40a173351d31bcf6 GIT binary patch literal 26053 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/09-formula-in-cell-2.png b/src/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/09-formula-in-cell-2.png new file mode 100644 index 0000000000000000000000000000000000000000..46daf090d83bc3ded7a57bfc8e27cb8585780713 GIT binary patch literal 34014 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/01-File-Formats.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/01-File-Formats.md new file mode 100644 index 0000000..d891664 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/01-File-Formats.md @@ -0,0 +1,60 @@ +# PHPExcel User Documentation – Reading Spreadsheet Files + + +## Spreadsheet File Formats + +PHPExcel can read a number of different spreadsheet and file formats, although not all features are supported by all of the readers. Check the Functionality Cross-Reference document (Functionality Cross-Reference.xls) for a list that identifies which features are supported by which readers. + +Currently, PHPExcel supports the following File Types for Reading: + +### Excel5 + +The Microsoft Excelâ„¢ Binary file format (BIFF5 and BIFF8) is a binary file format that was used by Microsoft Excelâ„¢ between versions 95 and 2003. The format is supported (to various extents) by most spreadsheet programs. BIFF files normally have an extension of .xls. Documentation describing the format can be found online at [http://msdn.microsoft.com/en-us/library/cc313154(v=office.12).aspx][1] or from [http://download.microsoft.com/download/2/4/8/24862317-78F0-4C4B-B355-C7B2C1D997DB/[MS-XLS].pdf][2] (as a downloadable PDF). + +### Excel2003XML + +Microsoft Excelâ„¢ 2003 included options for a file format called SpreadsheetML. This file is a zipped XML document. It is not very common, but its core features are supported. Documentation for the format can be found at [http://msdn.microsoft.com/en-us/library/aa140066%28office.10%29.aspx][3] though it’s sadly rather sparse in its detail. + +### Excel2007 + +Microsoft Excelâ„¢ 2007 shipped with a new file format, namely Microsoft Office Open XML SpreadsheetML, and Excel 2010 extended this still further with its new features such as sparklines. These files typically have an extension of .xlsx. This format is based around a zipped collection of eXtensible Markup Language (XML) files. Microsoft Office Open XML SpreadsheetML is mostly standardized in ECMA 376 ([http://www.ecma-international.org/news/TC45_current_work/TC45_available_docs.htm][4]) and ISO 29500. + +### OOCalc + +aka Open Document Format (ODF) or OASIS, this is the OpenOffice.org XML File Format for spreadsheets. It comprises a zip archive including several components all of which are text files, most of these with markup in the eXtensible Markup Language (XML). It is the standard file format for OpenOffice.org Calc and StarCalc, and files typically have an extension of .ods. The published specification for the file format is available from the OASIS Open Office XML Format Technical Committee web page ([http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=office#technical][5]). Other information is available from the OpenOffice.org XML File Format web page ([http://xml.openoffice.org/general.html][6]), part of the OpenOffice.org project. + +### SYLK + +This is the Microsoft Multiplan Symbolic Link Interchange (SYLK) file format. Multiplan was a predecessor to Microsoft Excelâ„¢. Files normally have an extension of .slk. While not common, there are still a few applications that generate SYLK files as a cross-platform option, because (despite being limited to a single worksheet) it is a simple format to implement, and supports some basic data and cell formatting options (unlike CSV files). + +### Gnumeric + +The Gnumeric file format is used by the Gnome Gnumeric spreadsheet application, and typically files have an extension of .gnumeric. The file contents are stored using eXtensible Markup Language (XML) markup, and the file is then compressed using the GNU project's gzip compression library. [http://projects.gnome.org/gnumeric/doc/file-format-gnumeric.shtml][7] + +### CSV + +Comma Separated Value (CSV) file format is a common structuring strategy for text format files. In CSV flies, each line in the file represents a row of data and (within each line of the file) the different data fields (or columns) are separated from one another using a comma (","). If a data field contains a comma, then it should be enclosed (typically in quotation marks ("). Sometimes tabs "\t", or the pipe symbol ("|"), or a semi-colon (";") are used as separators instead of a comma, although other symbols can be used. Because CSV is a text-only format, it doesn't support any data formatting options. + +"CSV" is not a single, well-defined format (although see RFC 4180 for one definition that is commonly used). Rather, in practice the term "CSV" refers to any file that: + - is plain text using a character set such as ASCII, Unicode, EBCDIC, or Shift JIS, + - consists of records (typically one record per line), + - with the records divided into fields separated by delimiters (typically a single reserved character such as comma, semicolon, or tab, + - where every record has the same sequence of fields. + +Within these general constraints, many variations are in use. Therefore "CSV" files are not entirely portable. Nevertheless, the variations are fairly small, and many implementations allow users to glance at the file (which is feasible because it is plain text), and then specify the delimiter character(s), quoting rules, etc. + +**Warning:** Microsoft Excelâ„¢ will open .csv files, but depending on the system's regional settings, it may expect a semicolon as a separator instead of a comma, since in some languages the comma is used as the decimal separator. Also, many regional versions of Excel will not be able to deal with Unicode characters in a CSV file. + +### HTML + +HyperText Markup Language (HTML) is the main markup language for creating web pages and other information that can be displayed in a web browser. Files typically have an extension of .html or .htm. HTML markup provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items. Since 1996, the HTML specifications have been maintained, with input from commercial software vendors, by the World Wide Web Consortium (W3C). However, in 2000, HTML also became an international standard (ISO/IEC 15445:2000). HTML 4.01 was published in late 1999, with further errata published through 2001. In 2004 development began on HTML5 in the Web Hypertext Application Technology Working Group (WHATWG), which became a joint deliverable with the W3C in 2008. + + + + [1]: http://msdn.microsoft.com/en-us/library/cc313154(v=office.12).aspx + [2]: http://download.microsoft.com/download/2/4/8/24862317-78F0-4C4B-B355-C7B2C1D997DB/%5bMS-XLS%5d.pdf + [3]: http://msdn.microsoft.com/en-us/library/aa140066%28office.10%29.aspx + [4]: http://www.ecma-international.org/news/TC45_current_work/TC45_available_docs.htm + [5]: http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=office + [6]: http://xml.openoffice.org/general.html + [7]: http://projects.gnome.org/gnumeric/doc/file-format-gnumeric.shtml diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/02-Security.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/02-Security.md new file mode 100644 index 0000000..12da958 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/02-Security.md @@ -0,0 +1,13 @@ +# PHPExcel User Documentation – Reading Spreadsheet Files + + +## Security + +XML-based formats such as OfficeOpen XML, Excel2003 XML, OASIS and Gnumeric are susceptible to XML External Entity Processing (XXE) injection attacks (for an explanation of XXE injection see http://websec.io/2012/08/27/Preventing-XEE-in-PHP.html) when reading spreadsheet files. This can lead to: + + - Disclosure whether a file is existent + - Server Side Request Forgery + - Command Execution (depending on the installed PHP wrappers) + + +To prevent this, PHPExcel sets `libxml_disable_entity_loader` to `true` for the XML-based Readers by default. \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/03-Loading-a-Spreadsheet.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/03-Loading-a-Spreadsheet.md new file mode 100644 index 0000000..afa674d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/03-Loading-a-Spreadsheet.md @@ -0,0 +1,21 @@ +# PHPExcel User Documentation – Reading Spreadsheet Files + + +## Loading a Spreadsheet File + +The simplest way to load a workbook file is to let PHPExcel's IO Factory identify the file type and load it, calling the static load() method of the PHPExcel_IOFactory class. + +```php +$inputFileName = './sampleData/example1.xls'; + +/** Load $inputFileName to a PHPExcel Object **/ +$objPHPExcel = PHPExcel_IOFactory::load($inputFileName); +``` + > See Examples/Reader/exampleReader01.php for a working example of this code. + +The load() method will attempt to identify the file type, and instantiate a loader for that file type; using it to load the file and store the data and any formatting in a PHPExcel object. + +The method makes an initial guess at the loader to instantiate based on the file extension; but will test the file before actually executing the load: so if (for example) the file is actually a CSV file or contains HTML markup, but that has been given a .xls extension (quite a common practise), it will reject the Excel5 loader that it would normally use for a .xls file; and test the file using the other loaders until it finds the appropriate loader, and then use that to read the file. + +While easy to implement in your code, and you don't need to worry about the file type; this isn't the most efficient method to load a file; and it lacks the flexibility to configure the loader in any way before actually reading the file into a PHPExcel object. + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/04-Loading-with-a-Reader.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/04-Loading-with-a-Reader.md new file mode 100644 index 0000000..94d07aa --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/04-Loading-with-a-Reader.md @@ -0,0 +1,56 @@ +# PHPExcel User Documentation – Reading Spreadsheet Files + + +## Creating a Reader and Loading a Spreadsheet File + +If you know the file type of the spreadsheet file that you need to load, you can instantiate a new reader object for that file type, then use the reader's load() method to read the file to a PHPExcel object. It is possible to instantiate the reader objects for each of the different supported filetype by name. However, you may get unpredictable results if the file isn't of the right type (e.g. it is a CSV with an extension of .xls), although this type of exception should normally be trapped. + +```php +$inputFileName = './sampleData/example1.xls'; + +/** Create a new Excel5 Reader **/ +$objReader = new PHPExcel_Reader_Excel5(); +// $objReader = new PHPExcel_Reader_Excel2007(); +// $objReader = new PHPExcel_Reader_Excel2003XML(); +// $objReader = new PHPExcel_Reader_OOCalc(); +// $objReader = new PHPExcel_Reader_SYLK(); +// $objReader = new PHPExcel_Reader_Gnumeric(); +// $objReader = new PHPExcel_Reader_CSV(); +/** Load $inputFileName to a PHPExcel Object **/ +$objPHPExcel = $objReader->load($inputFileName); +``` + > See Examples/Reader/exampleReader02.php for a working example of this code. + +Alternatively, you can use the IO Factory's createReader() method to instantiate the reader object for you, simply telling it the file type of the reader that you want instantiating. + +```php +$inputFileType = 'Excel5'; +// $inputFileType = 'Excel2007'; +// $inputFileType = 'Excel2003XML'; +// $inputFileType = 'OOCalc'; +// $inputFileType = 'SYLK'; +// $inputFileType = 'Gnumeric'; +// $inputFileType = 'CSV'; +$inputFileName = './sampleData/example1.xls'; + +/** Create a new Reader of the type defined in $inputFileType **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +/** Load $inputFileName to a PHPExcel Object **/ +$objPHPExcel = $objReader->load($inputFileName); +``` + > See Examples/Reader/exampleReader03.php for a working example of this code. + +If you're uncertain of the filetype, you can use the IO Factory's identify() method to identify the reader that you need, before using the createReader() method to instantiate the reader object. + +```php +$inputFileName = './sampleData/example1.xls'; + +/** Identify the type of $inputFileName **/ +$inputFileType = PHPExcel_IOFactory::identify($inputFileName); +/** Create a new Reader of the type that has been identified **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +/** Load $inputFileName to a PHPExcel Object **/ +$objPHPExcel = $objReader->load($inputFileName); +``` + > See Examples/Reader/exampleReader04.php for a working example of this code. + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/05-Reader-Options.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/05-Reader-Options.md new file mode 100644 index 0000000..137fd1e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/05-Reader-Options.md @@ -0,0 +1,392 @@ +# PHPExcel User Documentation – Reading Spreadsheet Files + +## Spreadsheet Reader Options + +Once you have created a reader object for the workbook that you want to load, you have the opportunity to set additional options before executing the load() method. + +### Reading Only Data from a Spreadsheet File + +If you're only interested in the cell values in a workbook, but don't need any of the cell formatting information, then you can set the reader to read only the data values and any formulae from each cell using the setReadDataOnly() method. + +```php +$inputFileType = 'Excel5'; +$inputFileName = './sampleData/example1.xls'; + +/** Create a new Reader of the type defined in $inputFileType **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +/** Advise the Reader that we only want to load cell data **/ +$objReader->setReadDataOnly(true); +/** Load $inputFileName to a PHPExcel Object **/ +$objPHPExcel = $objReader->load($inputFileName); +``` + > See Examples/Reader/exampleReader05.php for a working example of this code. + +It is important to note that Workbooks (and PHPExcel) store dates and times as simple numeric values: they can only be distinguished from other numeric values by the format mask that is applied to that cell. When setting read data only to true, PHPExcel doesn't read the cell format masks, so it is not possible to differentiate between dates/times and numbers. + +The Gnumeric loader has been written to read the format masks for date values even when read data only has been set to true, so it can differentiate between dates/times and numbers; but this change hasn't yet been implemented for the other readers. + +Reading Only Data from a Spreadsheet File applies to Readers: + +Reader | Y/N |Reader | Y/N |Reader | Y/N | +----------|:---:|--------|:---:|--------------|:---:| +Excel2007 | YES | Excel5 | YES | Excel2003XML | YES | +OOCalc | YES | SYLK | NO | Gnumeric | YES | +CSV | NO | HTML | NO + +### Reading Only Named WorkSheets from a File + +If your workbook contains a number of worksheets, but you are only interested in reading some of those, then you can use the setLoadSheetsOnly() method to identify those sheets you are interested in reading. + +To read a single sheet, you can pass that sheet name as a parameter to the setLoadSheetsOnly() method. + +```php +$inputFileType = 'Excel5'; +$inputFileName = './sampleData/example1.xls'; +$sheetname = 'Data Sheet #2'; + +/** Create a new Reader of the type defined in $inputFileType **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +/** Advise the Reader of which WorkSheets we want to load **/ +$objReader->setLoadSheetsOnly($sheetname); +/** Load $inputFileName to a PHPExcel Object **/ +$objPHPExcel = $objReader->load($inputFileName); +``` + > See Examples/Reader/exampleReader07.php for a working example of this code. + +If you want to read more than just a single sheet, you can pass a list of sheet names as an array parameter to the setLoadSheetsOnly() method. + +```php +$inputFileType = 'Excel5'; +$inputFileName = './sampleData/example1.xls'; +$sheetnames = array('Data Sheet #1','Data Sheet #3'); + +/** Create a new Reader of the type defined in $inputFileType **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +/** Advise the Reader of which WorkSheets we want to load **/ +$objReader->setLoadSheetsOnly($sheetnames); +/** Load $inputFileName to a PHPExcel Object **/ +$objPHPExcel = $objReader->load($inputFileName); +``` + > See Examples/Reader/exampleReader08.php for a working example of this code. + +To reset this option to the default, you can call the setLoadAllSheets() method. + +```php +$inputFileType = 'Excel5'; +$inputFileName = './sampleData/example1.xls'; + +/** Create a new Reader of the type defined in $inputFileType **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +/** Advise the Reader to load all Worksheets **/ +$objReader->setLoadAllSheets(); +/** Load $inputFileName to a PHPExcel Object **/ +$objPHPExcel = $objReader->load($inputFileName); +``` + > See Examples/Reader/exampleReader06.php for a working example of this code. + +Reading Only Named WorkSheets from a File applies to Readers: + +Reader | Y/N |Reader | Y/N |Reader | Y/N | +----------|:---:|--------|:---:|--------------|:---:| +Excel2007 | YES | Excel5 | YES | Excel2003XML | YES | +OOCalc | YES | SYLK | NO | Gnumeric | YES | +CSV | NO | HTML | NO + +### Reading Only Specific Columns and Rows from a File (Read Filters) + +If you are only interested in reading part of a worksheet, then you can write a filter class that identifies whether or not individual cells should be read by the loader. A read filter must implement the PHPExcel_Reader_IReadFilter interface, and contain a readCell() method that accepts arguments of $column, $row and $worksheetName, and return a boolean true or false that indicates whether a workbook cell identified by those arguments should be read or not. + +```php +$inputFileType = 'Excel5'; +$inputFileName = './sampleData/example1.xls'; +$sheetname = 'Data Sheet #3'; + + +/** Define a Read Filter class implementing PHPExcel_Reader_IReadFilter */ +class MyReadFilter implements PHPExcel_Reader_IReadFilter +{ + public function readCell($column, $row, $worksheetName = '') { + // Read rows 1 to 7 and columns A to E only + if ($row >= 1 && $row <= 7) { + if (in_array($column,range('A','E'))) { + return true; + } + } + return false; + } +} + +/** Create an Instance of our Read Filter **/ +$filterSubset = new MyReadFilter(); + +/** Create a new Reader of the type defined in $inputFileType **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +/** Tell the Reader that we want to use the Read Filter **/ +$objReader->setReadFilter($filterSubset); +/** Load only the rows and columns that match our filter to PHPExcel **/ +$objPHPExcel = $objReader->load($inputFileName); +``` + > See Examples/Reader/exampleReader09.php for a working example of this code. + +This example is not particularly useful, because it can only be used in a very specific circumstance (when you only want cells in the range A1:E7 from your worksheet. A generic Read Filter would probably be more useful: + +```php +/** Define a Read Filter class implementing PHPExcel_Reader_IReadFilter */ +class MyReadFilter implements PHPExcel_Reader_IReadFilter +{ + private $_startRow = 0; + private $_endRow = 0; + private $_columns = array(); + + /** Get the list of rows and columns to read */ + public function __construct($startRow, $endRow, $columns) { + $this->_startRow = $startRow; + $this->_endRow = $endRow; + $this->_columns = $columns; + } + + public function readCell($column, $row, $worksheetName = '') { + // Only read the rows and columns that were configured + if ($row >= $this->_startRow && $row <= $this->_endRow) { + if (in_array($column,$this->_columns)) { + return true; + } + } + return false; + } +} + +/** Create an Instance of our Read Filter, passing in the cell range **/ +$filterSubset = new MyReadFilter(9,15,range('G','K')); +``` + > See Examples/Reader/exampleReader10.php for a working example of this code. + +This can be particularly useful for conserving memory, by allowing you to read and process a large workbook in “chunksâ€: an example of this usage might be when transferring data from an Excel worksheet to a database. + +```php +$inputFileType = 'Excel5'; +$inputFileName = './sampleData/example2.xls'; + + +/** Define a Read Filter class implementing PHPExcel_Reader_IReadFilter */ +class chunkReadFilter implements PHPExcel_Reader_IReadFilter +{ + private $_startRow = 0; + private $_endRow = 0; + + /** Set the list of rows that we want to read */ + public function setRows($startRow, $chunkSize) { + $this->_startRow = $startRow; + $this->_endRow = $startRow + $chunkSize; + } + + public function readCell($column, $row, $worksheetName = '') { + // Only read the heading row, and the configured rows + if (($row == 1) || ($row >= $this->_startRow && $row < $this->_endRow)) { + return true; + } + return false; + } +} + + +/** Create a new Reader of the type defined in $inputFileType **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); + + +/** Define how many rows we want to read for each "chunk" **/ +$chunkSize = 2048; +/** Create a new Instance of our Read Filter **/ +$chunkFilter = new chunkReadFilter(); + +/** Tell the Reader that we want to use the Read Filter **/ +$objReader->setReadFilter($chunkFilter); + +/** Loop to read our worksheet in "chunk size" blocks **/ +for ($startRow = 2; $startRow <= 65536; $startRow += $chunkSize) { + /** Tell the Read Filter which rows we want this iteration **/ + $chunkFilter->setRows($startRow,$chunkSize); + /** Load only the rows that match our filter **/ + $objPHPExcel = $objReader->load($inputFileName); + // Do some processing here +} +``` + > See Examples/Reader/exampleReader12.php for a working example of this code. + +Using Read Filters applies to: + +Reader | Y/N |Reader | Y/N |Reader | Y/N | +----------|:---:|--------|:---:|--------------|:---:| +Excel2007 | YES | Excel5 | YES | Excel2003XML | YES | +OOCalc | YES | SYLK | NO | Gnumeric | YES | +CSV | YES | HTML | NO + +### Combining Multiple Files into a Single PHPExcel Object + +While you can limit the number of worksheets that are read from a workbook file using the setLoadSheetsOnly() method, certain readers also allow you to combine several individual "sheets" from different files into a single PHPExcel object, where each individual file is a single worksheet within that workbook. For each file that you read, you need to indicate which worksheet index it should be loaded into using the setSheetIndex() method of the $objReader, then use the loadIntoExisting() method rather than the load() method to actually read the file into that worksheet. + +```php +$inputFileType = 'CSV'; +$inputFileNames = array('./sampleData/example1.csv', + './sampleData/example2.csv' + './sampleData/example3.csv' +); + +/** Create a new Reader of the type defined in $inputFileType **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); + + +/** Extract the first named file from the array list **/ +$inputFileName = array_shift($inputFileNames); +/** Load the initial file to the first worksheet in a PHPExcel Object **/ +$objPHPExcel = $objReader->load($inputFileName); +/** Set the worksheet title (to the filename that we've loaded) **/ +$objPHPExcel->getActiveSheet() + ->setTitle(pathinfo($inputFileName,PATHINFO_BASENAME)); + + +/** Loop through all the remaining files in the list **/ +foreach($inputFileNames as $sheet => $inputFileName) { + /** Increment the worksheet index pointer for the Reader **/ + $objReader->setSheetIndex($sheet+1); + /** Load the current file into a new worksheet in PHPExcel **/ + $objReader->loadIntoExisting($inputFileName,$objPHPExcel); + /** Set the worksheet title (to the filename that we've loaded) **/ + $objPHPExcel->getActiveSheet() + ->setTitle(pathinfo($inputFileName,PATHINFO_BASENAME)); +} +``` + > See Examples/Reader/exampleReader13.php for a working example of this code. + +Note that using the same sheet index for multiple sheets won't append files into the same sheet, but overwrite the results of the previous load. You cannot load multiple CSV files into the same worksheet. + +Combining Multiple Files into a Single PHPExcel Object applies to: + +Reader | Y/N |Reader | Y/N |Reader | Y/N | +----------|:---:|--------|:---:|--------------|:---:| +Excel2007 | NO | Excel5 | NO | Excel2003XML | NO | +OOCalc | NO | SYLK | YES | Gnumeric | NO | +CSV | YES | HTML | NO + +### Combining Read Filters with the setSheetIndex() method to split a large CSV file across multiple Worksheets + +An Excel5 BIFF .xls file is limited to 65536 rows in a worksheet, while the Excel2007 Microsoft Office Open XML SpreadsheetML .xlsx file is limited to 1,048,576 rows in a worksheet; but a CSV file is not limited other than by available disk space. This means that we wouldn’t ordinarily be able to read all the rows from a very large CSV file that exceeded those limits, and save it as an Excel5 or Excel2007 file. However, by using Read Filters to read the CSV file in “chunks†(using the chunkReadFilter Class that we defined in section REF _Ref275604563 \r \p 5.3 above), and the setSheetIndex() method of the $objReader, we can split the CSV file across several individual worksheets. + +```php +$inputFileType = 'CSV'; +$inputFileName = './sampleData/example2.csv'; + + +echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; +/** Create a new Reader of the type defined in $inputFileType **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); + + +/** Define how many rows we want to read for each "chunk" **/ +$chunkSize = 65530; +/** Create a new Instance of our Read Filter **/ +$chunkFilter = new chunkReadFilter(); + +/** Tell the Reader that we want to use the Read Filter **/ +/** and that we want to store it in contiguous rows/columns **/ + +$objReader->setReadFilter($chunkFilter) + ->setContiguous(true); + +/** Instantiate a new PHPExcel object manually **/ +$objPHPExcel = new PHPExcel(); + +/** Set a sheet index **/ +$sheet = 0; +/** Loop to read our worksheet in "chunk size" blocks **/ +/** $startRow is set to 2 initially because we always read the headings in row #1 **/ +for ($startRow = 2; $startRow <= 1000000; $startRow += $chunkSize) { + /** Tell the Read Filter which rows we want to read this loop **/ + $chunkFilter->setRows($startRow,$chunkSize); + + /** Increment the worksheet index pointer for the Reader **/ + $objReader->setSheetIndex($sheet); + /** Load only the rows that match our filter into a new worksheet **/ + $objReader->loadIntoExisting($inputFileName,$objPHPExcel); + /** Set the worksheet title for the sheet that we've justloaded) **/ + /** and increment the sheet index as well **/ + $objPHPExcel->getActiveSheet()->setTitle('Country Data #'.(++$sheet)); +} +``` + > See Examples/Reader/exampleReader14.php for a working example of this code. + +This code will read 65,530 rows at a time from the CSV file that we’re loading, and store each "chunk" in a new worksheet. + +The setContiguous() method for the Reader is important here. It is applicable only when working with a Read Filter, and identifies whether or not the cells should be stored by their position within the CSV file, or their position relative to the filter. + +For example, if the filter returned true for cells in the range B2:C3, then with setContiguous set to false (the default) these would be loaded as B2:C3 in the PHPExcel object; but with setContiguous set to true, they would be loaded as A1:B2. + +Splitting a single loaded file across multiple worksheets applies to: + +Reader | Y/N |Reader | Y/N |Reader | Y/N | +----------|:---:|--------|:---:|--------------|:---:| +Excel2007 | NO | Excel5 | NO | Excel2003XML | NO | +OOCalc | NO | SYLK | NO | Gnumeric | NO | +CSV | YES | HTML | NO + +### Pipe or Tab Separated Value Files + +The CSV loader defaults to loading a file where comma is used as the separator, but you can modify this to load tab- or pipe-separated value files using the setDelimiter() method. + +```php +$inputFileType = 'CSV'; +$inputFileName = './sampleData/example1.tsv'; + +/** Create a new Reader of the type defined in $inputFileType **/ $objReader = PHPExcel_IOFactory::createReader($inputFileType); +/** Set the delimiter to a TAB character **/ +$objReader->setDelimiter("\t"); +// $objReader->setDelimiter('|'); + +/** Load the file to a PHPExcel Object **/ +$objPHPExcel = $objReader->load($inputFileName); +``` + > See Examples/Reader/exampleReader15.php for a working example of this code. + +In addition to the delimiter, you can also use the following methods to set other attributes for the data load: + +setEnclosure() | default is " +setLineEnding() | default is PHP_EOL +setInputEncoding() | default is UTF-8 + +Setting CSV delimiter applies to: + +Reader | Y/N |Reader | Y/N |Reader | Y/N | +----------|:---:|--------|:---:|--------------|:---:| +Excel2007 | NO | Excel5 | NO | Excel2003XML | NO | +OOCalc | NO | SYLK | NO | Gnumeric | NO | +CSV | YES | HTML | NO + +### A Brief Word about the Advanced Value Binder + +When loading data from a file that contains no formatting information, such as a CSV file, then data is read either as strings or numbers (float or integer). This means that PHPExcel does not automatically recognise dates/times (such as "16-Apr-2009" or "13:30"), booleans ("TRUE" or "FALSE"), percentages ("75%"), hyperlinks ("http://www.phpexcel.net"), etc as anything other than simple strings. However, you can apply additional processing that is executed against these values during the load process within a Value Binder. + +A Value Binder is a class that implement the PHPExcel_Cell_IValueBinder interface. It must contain a bindValue() method that accepts a PHPExcel_Cell and a value as arguments, and return a boolean true or false that indicates whether the workbook cell has been populated with the value or not. The Advanced Value Binder implements such a class: amongst other tests, it identifies a string comprising "TRUE" or "FALSE" (based on locale settings) and sets it to a boolean; or a number in scientific format (e.g. "1.234e-5") and converts it to a float; or dates and times, converting them to their Excel timestamp value – before storing the value in the cell object. It also sets formatting for strings that are identified as dates, times or percentages. It could easily be extended to provide additional handling (including text or cell formatting) when it encountered a hyperlink, or HTML markup within a CSV file. + +So using a Value Binder allows a great deal more flexibility in the loader logic when reading unformatted text files. + +```php +/** Tell PHPExcel that we want to use the Advanced Value Binder **/ +PHPExcel_Cell::setValueBinder( new PHPExcel_Cell_AdvancedValueBinder() ); + +$inputFileType = 'CSV'; +$inputFileName = './sampleData/example1.tsv'; + +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +$objReader->setDelimiter("\t"); +$objPHPExcel = $objReader->load($inputFileName); +``` + > See Examples/Reader/exampleReader15.php for a working example of this code. + +Loading using a Value Binder applies to: + +Reader | Y/N |Reader | Y/N |Reader | Y/N | +----------|:---:|--------|:---:|--------------|:---:| +Excel2007 | NO | Excel5 | NO | Excel2003XML | NO | +OOCalc | NO | SYLK | NO | Gnumeric | NO | +CSV | YES | HTML | YES + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/06-Error-Handling.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/06-Error-Handling.md new file mode 100644 index 0000000..d3e064f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/06-Error-Handling.md @@ -0,0 +1,20 @@ +# PHPExcel User Documentation – Reading Spreadsheet Files + +## Error Handling + +Of course, you should always apply some error handling to your scripts as well. PHPExcel throws exceptions, so you can wrap all your code that accesses the library methods within Try/Catch blocks to trap for any problems that are encountered, and deal with them in an appropriate manner. + +The PHPExcel Readers throw a PHPExcel_Reader_Exception. + +```php +$inputFileName = './sampleData/example-1.xls'; + +try { + /** Load $inputFileName to a PHPExcel Object **/ + $objPHPExcel = PHPExcel_IOFactory::load($inputFileName); +} catch(PHPExcel_Reader_Exception $e) { + die('Error loading file: '.$e->getMessage()); +} +``` + > See Examples/Reader/exampleReader16.php for a working example of this code. + diff --git a/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/07-Helper-Methods.md b/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/07-Helper-Methods.md new file mode 100644 index 0000000..57dbec7 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/07-Helper-Methods.md @@ -0,0 +1,47 @@ +# PHPExcel User Documentation – Reading Spreadsheet Files + + +## Helper Methods + +You can retrieve a list of worksheet names contained in a file without loading the whole file by using the Reader’s `listWorksheetNames()` method; similarly, a `listWorksheetInfo()` method will retrieve the dimensions of worksheet in a file without needing to load and parse the whole file. + +### listWorksheetNames + +The `listWorksheetNames()` method returns a simple array listing each worksheet name within the workbook: + +```php +$objReader = PHPExcel_IOFactory::createReader($inputFileType); + +$worksheetNames = $objReader->listWorksheetNames($inputFileName); + +echo '<h3>Worksheet Names</h3>'; +echo '<ol>'; +foreach ($worksheetNames as $worksheetName) { + echo '<li>', $worksheetName, '</li>'; +} +echo '</ol>'; +``` + > See Examples/Reader/exampleReader18.php for a working example of this code. + +### listWorksheetInfo + +The `listWorksheetInfo()` method returns a nested array, with each entry listing the name and dimensions for a worksheet: + +```php +$objReader = PHPExcel_IOFactory::createReader($inputFileType); + +$worksheetData = $objReader->listWorksheetInfo($inputFileName); + +echo '<h3>Worksheet Information</h3>'; +echo '<ol>'; +foreach ($worksheetData as $worksheet) { + echo '<li>', $worksheet['worksheetName'], '<br />'; + echo 'Rows: ', $worksheet['totalRows'], + ' Columns: ', $worksheet['totalColumns'], '<br />'; + echo 'Cell Range: A1:', + $worksheet['lastColumnLetter'], $worksheet['totalRows']; + echo '</li>'; +} +echo '</ol>'; +``` + > See Examples/Reader/exampleReader19.php for a working example of this code. diff --git a/src/vendor/phpoffice/phpexcel/Examples/.gitignore b/src/vendor/phpoffice/phpexcel/Examples/.gitignore new file mode 100644 index 0000000..d53fd7f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/.gitignore @@ -0,0 +1,5 @@ +*.xls +*.xlsx +*.csv +*.jpg +*.pdf diff --git a/src/vendor/phpoffice/phpexcel/Examples/01pharSimple.php b/src/vendor/phpoffice/phpexcel/Examples/01pharSimple.php new file mode 100644 index 0000000..84b86cc --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/01pharSimple.php @@ -0,0 +1,112 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +/** Include PHPExcel */ +require_once '../Build/PHPExcel.phar'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("PHPExcel Test Document") + ->setSubject("PHPExcel Test Document") + ->setDescription("Test document for PHPExcel, generated using PHP classes.") + ->setKeywords("office PHPExcel php") + ->setCategory("Test result file"); + + +// Add some data +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A1', 'Hello') + ->setCellValue('B2', 'world!') + ->setCellValue('C1', 'Hello') + ->setCellValue('D2', 'world!'); + +// Miscellaneous glyphs, UTF-8 +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A4', 'Miscellaneous glyphs') + ->setCellValue('A5', 'éàèùâêîôûëïüÿäöüç'); + +// Rename worksheet +echo date('H:i:s') , " Rename worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Simple'); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Save Excel5 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/01simple-download-ods.php b/src/vendor/phpoffice/phpexcel/Examples/01simple-download-ods.php new file mode 100644 index 0000000..30dbd7e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/01simple-download-ods.php @@ -0,0 +1,89 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +if (PHP_SAPI == 'cli') + die('This example should only be run from a Web Browser'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); + +// Set document properties +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Add some data +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A1', 'Hello') + ->setCellValue('B2', 'world!') + ->setCellValue('C1', 'Hello') + ->setCellValue('D2', 'world!'); + +// Miscellaneous glyphs, UTF-8 +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A4', 'Miscellaneous glyphs') + ->setCellValue('A5', 'éàèùâêîôûëïüÿäöüç'); + +// Rename worksheet +$objPHPExcel->getActiveSheet()->setTitle('Simple'); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Redirect output to a client’s web browser (OpenDocument) +header('Content-Type: application/vnd.oasis.opendocument.spreadsheet'); +header('Content-Disposition: attachment;filename="01simple.ods"'); +header('Cache-Control: max-age=0'); +// If you're serving to IE 9, then the following may be needed +header('Cache-Control: max-age=1'); + +// If you're serving to IE over SSL, then the following may be needed +header ('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past +header ('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); // always modified +header ('Cache-Control: cache, must-revalidate'); // HTTP/1.1 +header ('Pragma: public'); // HTTP/1.0 + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'OpenDocument'); +$objWriter->save('php://output'); +exit; diff --git a/src/vendor/phpoffice/phpexcel/Examples/01simple-download-pdf.php b/src/vendor/phpoffice/phpexcel/Examples/01simple-download-pdf.php new file mode 100644 index 0000000..133af3a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/01simple-download-pdf.php @@ -0,0 +1,104 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +if (PHP_SAPI == 'cli') + die('This example should only be run from a Web Browser'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Change these values to select the Rendering library that you wish to use +// and its directory location on your server +//$rendererName = PHPExcel_Settings::PDF_RENDERER_TCPDF; +$rendererName = PHPExcel_Settings::PDF_RENDERER_MPDF; +//$rendererName = PHPExcel_Settings::PDF_RENDERER_DOMPDF; +//$rendererLibrary = 'tcPDF5.9'; +$rendererLibrary = 'mPDF5.4'; +//$rendererLibrary = 'domPDF0.6.0beta3'; +$rendererLibraryPath = dirname(__FILE__).'/../../../libraries/PDF/' . $rendererLibrary; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); + +// Set document properties +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("PDF Test Document") + ->setSubject("PDF Test Document") + ->setDescription("Test document for PDF, generated using PHP classes.") + ->setKeywords("pdf php") + ->setCategory("Test result file"); + + +// Add some data +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A1', 'Hello') + ->setCellValue('B2', 'world!') + ->setCellValue('C1', 'Hello') + ->setCellValue('D2', 'world!'); + +// Miscellaneous glyphs, UTF-8 +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A4', 'Miscellaneous glyphs') + ->setCellValue('A5', 'éàèùâêîôûëïüÿäöüç'); + +// Rename worksheet +$objPHPExcel->getActiveSheet()->setTitle('Simple'); +$objPHPExcel->getActiveSheet()->setShowGridLines(false); + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +if (!PHPExcel_Settings::setPdfRenderer( + $rendererName, + $rendererLibraryPath + )) { + die( + 'NOTICE: Please set the $rendererName and $rendererLibraryPath values' . + '<br />' . + 'at the top of this script as appropriate for your directory structure' + ); +} + + +// Redirect output to a client’s web browser (PDF) +header('Content-Type: application/pdf'); +header('Content-Disposition: attachment;filename="01simple.pdf"'); +header('Cache-Control: max-age=0'); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'PDF'); +$objWriter->save('php://output'); +exit; diff --git a/src/vendor/phpoffice/phpexcel/Examples/01simple-download-xls.php b/src/vendor/phpoffice/phpexcel/Examples/01simple-download-xls.php new file mode 100644 index 0000000..96bb780 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/01simple-download-xls.php @@ -0,0 +1,89 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +if (PHP_SAPI == 'cli') + die('This example should only be run from a Web Browser'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); + +// Set document properties +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Add some data +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A1', 'Hello') + ->setCellValue('B2', 'world!') + ->setCellValue('C1', 'Hello') + ->setCellValue('D2', 'world!'); + +// Miscellaneous glyphs, UTF-8 +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A4', 'Miscellaneous glyphs') + ->setCellValue('A5', 'éàèùâêîôûëïüÿäöüç'); + +// Rename worksheet +$objPHPExcel->getActiveSheet()->setTitle('Simple'); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Redirect output to a client’s web browser (Excel5) +header('Content-Type: application/vnd.ms-excel'); +header('Content-Disposition: attachment;filename="01simple.xls"'); +header('Cache-Control: max-age=0'); +// If you're serving to IE 9, then the following may be needed +header('Cache-Control: max-age=1'); + +// If you're serving to IE over SSL, then the following may be needed +header ('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past +header ('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); // always modified +header ('Cache-Control: cache, must-revalidate'); // HTTP/1.1 +header ('Pragma: public'); // HTTP/1.0 + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save('php://output'); +exit; diff --git a/src/vendor/phpoffice/phpexcel/Examples/01simple-download-xlsx.php b/src/vendor/phpoffice/phpexcel/Examples/01simple-download-xlsx.php new file mode 100644 index 0000000..d441f41 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/01simple-download-xlsx.php @@ -0,0 +1,89 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +if (PHP_SAPI == 'cli') + die('This example should only be run from a Web Browser'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +$objPHPExcel = new PHPExcel(); + +// Set document properties +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Add some data +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A1', 'Hello') + ->setCellValue('B2', 'world!') + ->setCellValue('C1', 'Hello') + ->setCellValue('D2', 'world!'); + +// Miscellaneous glyphs, UTF-8 +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A4', 'Miscellaneous glyphs') + ->setCellValue('A5', 'éàèùâêîôûëïüÿäöüç'); + +// Rename worksheet +$objPHPExcel->getActiveSheet()->setTitle('Simple'); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Redirect output to a client’s web browser (Excel2007) +header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'); +header('Content-Disposition: attachment;filename="01simple.xlsx"'); +header('Cache-Control: max-age=0'); +// If you're serving to IE 9, then the following may be needed +header('Cache-Control: max-age=1'); + +// If you're serving to IE over SSL, then the following may be needed +header ('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past +header ('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); // always modified +header ('Cache-Control: cache, must-revalidate'); // HTTP/1.1 +header ('Pragma: public'); // HTTP/1.0 + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save('php://output'); +exit; diff --git a/src/vendor/phpoffice/phpexcel/Examples/01simple.php b/src/vendor/phpoffice/phpexcel/Examples/01simple.php new file mode 100644 index 0000000..13f8027 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/01simple.php @@ -0,0 +1,125 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("PHPExcel Test Document") + ->setSubject("PHPExcel Test Document") + ->setDescription("Test document for PHPExcel, generated using PHP classes.") + ->setKeywords("office PHPExcel php") + ->setCategory("Test result file"); + + +// Add some data +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A1', 'Hello') + ->setCellValue('B2', 'world!') + ->setCellValue('C1', 'Hello') + ->setCellValue('D2', 'world!'); + +// Miscellaneous glyphs, UTF-8 +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A4', 'Miscellaneous glyphs') + ->setCellValue('A5', 'éàèùâêîôûëïüÿäöüç'); + + +$objPHPExcel->getActiveSheet()->setCellValue('A8',"Hello\nWorld"); +$objPHPExcel->getActiveSheet()->getRowDimension(8)->setRowHeight(-1); +$objPHPExcel->getActiveSheet()->getStyle('A8')->getAlignment()->setWrapText(true); + + +$value = "-ValueA\n-Value B\n-Value C"; +$objPHPExcel->getActiveSheet()->setCellValue('A10', $value); +$objPHPExcel->getActiveSheet()->getRowDimension(10)->setRowHeight(-1); +$objPHPExcel->getActiveSheet()->getStyle('A10')->getAlignment()->setWrapText(true); +$objPHPExcel->getActiveSheet()->getStyle('A10')->setQuotePrefix(true); + + + +// Rename worksheet +echo date('H:i:s') , " Rename worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Simple'); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/01simplePCLZip.php b/src/vendor/phpoffice/phpexcel/Examples/01simplePCLZip.php new file mode 100644 index 0000000..0af4cbd --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/01simplePCLZip.php @@ -0,0 +1,106 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("PHPExcel Test Document") + ->setSubject("PHPExcel Test Document") + ->setDescription("Test document for PHPExcel, generated using PHP classes.") + ->setKeywords("office PHPExcel php") + ->setCategory("Test result file"); + + +// Add some data +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A1', 'Hello') + ->setCellValue('B2', 'world!') + ->setCellValue('C1', 'Hello') + ->setCellValue('D2', 'world!'); + +// Miscellaneous glyphs, UTF-8 +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A4', 'Miscellaneous glyphs') + ->setCellValue('A5', 'éàèùâêîôûëïüÿäöüç'); + + +$objPHPExcel->getActiveSheet()->setCellValue('A8',"Hello\nWorld"); +$objPHPExcel->getActiveSheet()->getRowDimension(8)->setRowHeight(-1); +$objPHPExcel->getActiveSheet()->getStyle('A8')->getAlignment()->setWrapText(true); + + +// Rename worksheet +echo date('H:i:s') , " Rename worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Simple'); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +// Use PCLZip rather than ZipArchive to create the Excel2007 OfficeOpenXML file +PHPExcel_Settings::setZipClass(PHPExcel_Settings::PCLZIP); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/02types-xls.php b/src/vendor/phpoffice/phpexcel/Examples/02types-xls.php new file mode 100644 index 0000000..93ce17e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/02types-xls.php @@ -0,0 +1,183 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + +// Set default font +echo date('H:i:s') , " Set default font" , EOL; +$objPHPExcel->getDefaultStyle()->getFont()->setName('Arial') + ->setSize(10); + +// Add some data, resembling some different data types +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->getActiveSheet()->setCellValue('A1', 'String') + ->setCellValue('B1', 'Simple') + ->setCellValue('C1', 'PHPExcel'); + +$objPHPExcel->getActiveSheet()->setCellValue('A2', 'String') + ->setCellValue('B2', 'Symbols') + ->setCellValue('C2', '!+&=()~§±æþ'); + +$objPHPExcel->getActiveSheet()->setCellValue('A3', 'String') + ->setCellValue('B3', 'UTF-8') + ->setCellValue('C3', 'Создать MS Excel Книги из PHP Ñкриптов'); + +$objPHPExcel->getActiveSheet()->setCellValue('A4', 'Number') + ->setCellValue('B4', 'Integer') + ->setCellValue('C4', 12); + +$objPHPExcel->getActiveSheet()->setCellValue('A5', 'Number') + ->setCellValue('B5', 'Float') + ->setCellValue('C5', 34.56); + +$objPHPExcel->getActiveSheet()->setCellValue('A6', 'Number') + ->setCellValue('B6', 'Negative') + ->setCellValue('C6', -7.89); + +$objPHPExcel->getActiveSheet()->setCellValue('A7', 'Boolean') + ->setCellValue('B7', 'True') + ->setCellValue('C7', true); + +$objPHPExcel->getActiveSheet()->setCellValue('A8', 'Boolean') + ->setCellValue('B8', 'False') + ->setCellValue('C8', false); + +$dateTimeNow = time(); +$objPHPExcel->getActiveSheet()->setCellValue('A9', 'Date/Time') + ->setCellValue('B9', 'Date') + ->setCellValue('C9', PHPExcel_Shared_Date::PHPToExcel( $dateTimeNow )); +$objPHPExcel->getActiveSheet()->getStyle('C9')->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_DATE_YYYYMMDD2); + +$objPHPExcel->getActiveSheet()->setCellValue('A10', 'Date/Time') + ->setCellValue('B10', 'Time') + ->setCellValue('C10', PHPExcel_Shared_Date::PHPToExcel( $dateTimeNow )); +$objPHPExcel->getActiveSheet()->getStyle('C10')->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME4); + +$objPHPExcel->getActiveSheet()->setCellValue('A11', 'Date/Time') + ->setCellValue('B11', 'Date and Time') + ->setCellValue('C11', PHPExcel_Shared_Date::PHPToExcel( $dateTimeNow )); +$objPHPExcel->getActiveSheet()->getStyle('C11')->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_DATE_DATETIME); + +$objPHPExcel->getActiveSheet()->setCellValue('A12', 'NULL') + ->setCellValue('C12', NULL); + +$objRichText = new PHPExcel_RichText(); +$objRichText->createText('你好 '); +$objPayable = $objRichText->createTextRun('ä½  好 å—?'); +$objPayable->getFont()->setBold(true); +$objPayable->getFont()->setItalic(true); +$objPayable->getFont()->setColor( new PHPExcel_Style_Color( PHPExcel_Style_Color::COLOR_DARKGREEN ) ); + +$objRichText->createText(', unless specified otherwise on the invoice.'); + +$objPHPExcel->getActiveSheet()->setCellValue('A13', 'Rich Text') + ->setCellValue('C13', $objRichText); + + +$objRichText2 = new PHPExcel_RichText(); +$objRichText2->createText("black text\n"); + +$objRed = $objRichText2->createTextRun("red text"); +$objRed->getFont()->setColor( new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_RED ) ); + +$objPHPExcel->getActiveSheet()->getCell("C14")->setValue($objRichText2); +$objPHPExcel->getActiveSheet()->getStyle("C14")->getAlignment()->setWrapText(true); + + +$objPHPExcel->getActiveSheet()->getColumnDimension('B')->setAutoSize(true); +$objPHPExcel->getActiveSheet()->getColumnDimension('C')->setAutoSize(true); + +// Rename worksheet +echo date('H:i:s') , " Rename worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Datatypes'); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +echo date('H:i:s') , " Reload workbook from saved file" , EOL; +$callStartTime = microtime(true); + +$objPHPExcel = PHPExcel_IOFactory::load(str_replace('.php', '.xls', __FILE__)); + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo 'Call time to reload Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +var_dump($objPHPExcel->getActiveSheet()->toArray()); + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done testing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/02types.php b/src/vendor/phpoffice/phpexcel/Examples/02types.php new file mode 100644 index 0000000..394a73d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/02types.php @@ -0,0 +1,204 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + +// Set default font +echo date('H:i:s') , " Set default font" , EOL; +$objPHPExcel->getDefaultStyle()->getFont()->setName('Arial') + ->setSize(10); + +// Add some data, resembling some different data types +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->getActiveSheet()->setCellValue('A1', 'String') + ->setCellValue('B1', 'Simple') + ->setCellValue('C1', 'PHPExcel'); + +$objPHPExcel->getActiveSheet()->setCellValue('A2', 'String') + ->setCellValue('B2', 'Symbols') + ->setCellValue('C2', '!+&=()~§±æþ'); + +$objPHPExcel->getActiveSheet()->setCellValue('A3', 'String') + ->setCellValue('B3', 'UTF-8') + ->setCellValue('C3', 'Создать MS Excel Книги из PHP Ñкриптов'); + +$objPHPExcel->getActiveSheet()->setCellValue('A4', 'Number') + ->setCellValue('B4', 'Integer') + ->setCellValue('C4', 12); + +$objPHPExcel->getActiveSheet()->setCellValue('A5', 'Number') + ->setCellValue('B5', 'Float') + ->setCellValue('C5', 34.56); + +$objPHPExcel->getActiveSheet()->setCellValue('A6', 'Number') + ->setCellValue('B6', 'Negative') + ->setCellValue('C6', -7.89); + +$objPHPExcel->getActiveSheet()->setCellValue('A7', 'Boolean') + ->setCellValue('B7', 'True') + ->setCellValue('C7', true); + +$objPHPExcel->getActiveSheet()->setCellValue('A8', 'Boolean') + ->setCellValue('B8', 'False') + ->setCellValue('C8', false); + +$dateTimeNow = time(); +$objPHPExcel->getActiveSheet()->setCellValue('A9', 'Date/Time') + ->setCellValue('B9', 'Date') + ->setCellValue('C9', PHPExcel_Shared_Date::PHPToExcel( $dateTimeNow )); +$objPHPExcel->getActiveSheet()->getStyle('C9')->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_DATE_YYYYMMDD2); + +$objPHPExcel->getActiveSheet()->setCellValue('A10', 'Date/Time') + ->setCellValue('B10', 'Time') + ->setCellValue('C10', PHPExcel_Shared_Date::PHPToExcel( $dateTimeNow )); +$objPHPExcel->getActiveSheet()->getStyle('C10')->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME4); + +$objPHPExcel->getActiveSheet()->setCellValue('A11', 'Date/Time') + ->setCellValue('B11', 'Date and Time') + ->setCellValue('C11', PHPExcel_Shared_Date::PHPToExcel( $dateTimeNow )); +$objPHPExcel->getActiveSheet()->getStyle('C11')->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_DATE_DATETIME); + +$objPHPExcel->getActiveSheet()->setCellValue('A12', 'NULL') + ->setCellValue('C12', NULL); + +$objRichText = new PHPExcel_RichText(); +$objRichText->createText('你好 '); + +$objPayable = $objRichText->createTextRun('ä½  好 å—?'); +$objPayable->getFont()->setBold(true); +$objPayable->getFont()->setItalic(true); +$objPayable->getFont()->setColor( new PHPExcel_Style_Color( PHPExcel_Style_Color::COLOR_DARKGREEN ) ); + +$objRichText->createText(', unless specified otherwise on the invoice.'); + +$objPHPExcel->getActiveSheet()->setCellValue('A13', 'Rich Text') + ->setCellValue('C13', $objRichText); + + +$objRichText2 = new PHPExcel_RichText(); +$objRichText2->createText("black text\n"); + +$objRed = $objRichText2->createTextRun("red text"); +$objRed->getFont()->setColor( new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_RED ) ); + +$objPHPExcel->getActiveSheet()->getCell("C14")->setValue($objRichText2); +$objPHPExcel->getActiveSheet()->getStyle("C14")->getAlignment()->setWrapText(true); + + +$objPHPExcel->getActiveSheet()->getColumnDimension('B')->setAutoSize(true); +$objPHPExcel->getActiveSheet()->getColumnDimension('C')->setAutoSize(true); + +$objRichText3 = new PHPExcel_RichText(); +$objRichText3->createText("Hello "); + +$objUnderlined = $objRichText3->createTextRun("underlined"); +$objUnderlined->getFont()->setUnderline(true); +$objRichText3->createText(' World.'); + +$objPHPExcel->getActiveSheet() + ->getCell("C15") + ->setValue($objRichText3); + + +$objPHPExcel->getActiveSheet()->setCellValue('A17', 'Hyperlink'); + +$objPHPExcel->getActiveSheet()->setCellValue('C17', 'www.phpexcel.net'); +$objPHPExcel->getActiveSheet()->getCell('C17')->getHyperlink()->setUrl('http://www.phpexcel.net'); +$objPHPExcel->getActiveSheet()->getCell('C17')->getHyperlink()->setTooltip('Navigate to website'); + +$objPHPExcel->getActiveSheet()->setCellValue('C18', '=HYPERLINK("mailto:abc@def.com","abc@def.com")'); + + +// Rename worksheet +echo date('H:i:s') , " Rename worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Datatypes'); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +echo date('H:i:s') , " Reload workbook from saved file" , EOL; +$callStartTime = microtime(true); + +$objPHPExcel = PHPExcel_IOFactory::load(str_replace('.php', '.xlsx', __FILE__)); + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo 'Call time to reload Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +var_dump($objPHPExcel->getActiveSheet()->toArray()); + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done testing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/03formulas.php b/src/vendor/phpoffice/phpexcel/Examples/03formulas.php new file mode 100644 index 0000000..6c5d1dd --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/03formulas.php @@ -0,0 +1,149 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Add some data, we will use some formulas here +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->getActiveSheet()->setCellValue('A5', 'Sum:'); + +$objPHPExcel->getActiveSheet()->setCellValue('B1', 'Range #1') + ->setCellValue('B2', 3) + ->setCellValue('B3', 7) + ->setCellValue('B4', 13) + ->setCellValue('B5', '=SUM(B2:B4)'); +echo date('H:i:s') , " Sum of Range #1 is " , + $objPHPExcel->getActiveSheet()->getCell('B5')->getCalculatedValue() , EOL; + +$objPHPExcel->getActiveSheet()->setCellValue('C1', 'Range #2') + ->setCellValue('C2', 5) + ->setCellValue('C3', 11) + ->setCellValue('C4', 17) + ->setCellValue('C5', '=SUM(C2:C4)'); +echo date('H:i:s') , " Sum of Range #2 is " , + $objPHPExcel->getActiveSheet()->getCell('C5')->getCalculatedValue() , EOL; + +$objPHPExcel->getActiveSheet()->setCellValue('A7', 'Total of both ranges:'); +$objPHPExcel->getActiveSheet()->setCellValue('B7', '=SUM(B5:C5)'); +echo date('H:i:s') , " Sum of both Ranges is " , + $objPHPExcel->getActiveSheet()->getCell('B7')->getCalculatedValue() , EOL; + +$objPHPExcel->getActiveSheet()->setCellValue('A8', 'Minimum of both ranges:'); +$objPHPExcel->getActiveSheet()->setCellValue('B8', '=MIN(B2:C4)'); +echo date('H:i:s') , " Minimum value in either Range is " , + $objPHPExcel->getActiveSheet()->getCell('B8')->getCalculatedValue() , EOL; + +$objPHPExcel->getActiveSheet()->setCellValue('A9', 'Maximum of both ranges:'); +$objPHPExcel->getActiveSheet()->setCellValue('B9', '=MAX(B2:C4)'); +echo date('H:i:s') , " Maximum value in either Range is " , + $objPHPExcel->getActiveSheet()->getCell('B9')->getCalculatedValue() , EOL; + +$objPHPExcel->getActiveSheet()->setCellValue('A10', 'Average of both ranges:'); +$objPHPExcel->getActiveSheet()->setCellValue('B10', '=AVERAGE(B2:C4)'); +echo date('H:i:s') , " Average value of both Ranges is " , + $objPHPExcel->getActiveSheet()->getCell('B10')->getCalculatedValue() , EOL; + + +// Rename worksheet +echo date('H:i:s') , " Rename worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Formulas'); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); + +// +// If we set Pre Calculated Formulas to true then PHPExcel will calculate all formulae in the +// workbook before saving. This adds time and memory overhead, and can cause some problems with formulae +// using functions or features (such as array formulae) that aren't yet supported by the calculation engine +// If the value is false (the default) for the Excel2007 Writer, then MS Excel (or the application used to +// open the file) will need to recalculate values itself to guarantee that the correct results are available. +// +//$objWriter->setPreCalculateFormulas(true); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/04printing.php b/src/vendor/phpoffice/phpexcel/Examples/04printing.php new file mode 100644 index 0000000..58d5f6a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/04printing.php @@ -0,0 +1,125 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Add some data, we will use printing features +echo date('H:i:s') , " Add some data" , EOL; +for ($i = 1; $i < 200; $i++) { + $objPHPExcel->getActiveSheet()->setCellValue('A' . $i, $i); + $objPHPExcel->getActiveSheet()->setCellValue('B' . $i, 'Test value'); +} + +// Set header and footer. When no different headers for odd/even are used, odd header is assumed. +echo date('H:i:s') , " Set header/footer" , EOL; +$objPHPExcel->getActiveSheet()->getHeaderFooter()->setOddHeader('&L&G&C&HPlease treat this document as confidential!'); +$objPHPExcel->getActiveSheet()->getHeaderFooter()->setOddFooter('&L&B' . $objPHPExcel->getProperties()->getTitle() . '&RPage &P of &N'); + +// Add a drawing to the header +echo date('H:i:s') , " Add a drawing to the header" , EOL; +$objDrawing = new PHPExcel_Worksheet_HeaderFooterDrawing(); +$objDrawing->setName('PHPExcel logo'); +$objDrawing->setPath('./images/phpexcel_logo.gif'); +$objDrawing->setHeight(36); +$objPHPExcel->getActiveSheet()->getHeaderFooter()->addImage($objDrawing, PHPExcel_Worksheet_HeaderFooter::IMAGE_HEADER_LEFT); + +// Set page orientation and size +echo date('H:i:s') , " Set page orientation and size" , EOL; +$objPHPExcel->getActiveSheet()->getPageSetup()->setOrientation(PHPExcel_Worksheet_PageSetup::ORIENTATION_LANDSCAPE); +$objPHPExcel->getActiveSheet()->getPageSetup()->setPaperSize(PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4); + +// Rename worksheet +echo date('H:i:s') , " Rename worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Printing'); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/05featuredemo.inc.php b/src/vendor/phpoffice/phpexcel/Examples/05featuredemo.inc.php new file mode 100644 index 0000000..003379c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/05featuredemo.inc.php @@ -0,0 +1,394 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Create a first sheet, representing sales data +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('B1', 'Invoice'); +$objPHPExcel->getActiveSheet()->setCellValue('D1', PHPExcel_Shared_Date::PHPToExcel( gmmktime(0,0,0,date('m'),date('d'),date('Y')) )); +$objPHPExcel->getActiveSheet()->getStyle('D1')->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_DATE_XLSX15); +$objPHPExcel->getActiveSheet()->setCellValue('E1', '#12566'); + +$objPHPExcel->getActiveSheet()->setCellValue('A3', 'Product Id'); +$objPHPExcel->getActiveSheet()->setCellValue('B3', 'Description'); +$objPHPExcel->getActiveSheet()->setCellValue('C3', 'Price'); +$objPHPExcel->getActiveSheet()->setCellValue('D3', 'Amount'); +$objPHPExcel->getActiveSheet()->setCellValue('E3', 'Total'); + +$objPHPExcel->getActiveSheet()->setCellValue('A4', '1001'); +$objPHPExcel->getActiveSheet()->setCellValue('B4', 'PHP for dummies'); +$objPHPExcel->getActiveSheet()->setCellValue('C4', '20'); +$objPHPExcel->getActiveSheet()->setCellValue('D4', '1'); +$objPHPExcel->getActiveSheet()->setCellValue('E4', '=IF(D4<>"",C4*D4,"")'); + +$objPHPExcel->getActiveSheet()->setCellValue('A5', '1012'); +$objPHPExcel->getActiveSheet()->setCellValue('B5', 'OpenXML for dummies'); +$objPHPExcel->getActiveSheet()->setCellValue('C5', '22'); +$objPHPExcel->getActiveSheet()->setCellValue('D5', '2'); +$objPHPExcel->getActiveSheet()->setCellValue('E5', '=IF(D5<>"",C5*D5,"")'); + +$objPHPExcel->getActiveSheet()->setCellValue('E6', '=IF(D6<>"",C6*D6,"")'); +$objPHPExcel->getActiveSheet()->setCellValue('E7', '=IF(D7<>"",C7*D7,"")'); +$objPHPExcel->getActiveSheet()->setCellValue('E8', '=IF(D8<>"",C8*D8,"")'); +$objPHPExcel->getActiveSheet()->setCellValue('E9', '=IF(D9<>"",C9*D9,"")'); + +$objPHPExcel->getActiveSheet()->setCellValue('D11', 'Total excl.:'); +$objPHPExcel->getActiveSheet()->setCellValue('E11', '=SUM(E4:E9)'); + +$objPHPExcel->getActiveSheet()->setCellValue('D12', 'VAT:'); +$objPHPExcel->getActiveSheet()->setCellValue('E12', '=E11*0.21'); + +$objPHPExcel->getActiveSheet()->setCellValue('D13', 'Total incl.:'); +$objPHPExcel->getActiveSheet()->setCellValue('E13', '=E11+E12'); + +// Add comment +echo date('H:i:s') , " Add comments" , EOL; + +$objPHPExcel->getActiveSheet()->getComment('E11')->setAuthor('PHPExcel'); +$objCommentRichText = $objPHPExcel->getActiveSheet()->getComment('E11')->getText()->createTextRun('PHPExcel:'); +$objCommentRichText->getFont()->setBold(true); +$objPHPExcel->getActiveSheet()->getComment('E11')->getText()->createTextRun("\r\n"); +$objPHPExcel->getActiveSheet()->getComment('E11')->getText()->createTextRun('Total amount on the current invoice, excluding VAT.'); + +$objPHPExcel->getActiveSheet()->getComment('E12')->setAuthor('PHPExcel'); +$objCommentRichText = $objPHPExcel->getActiveSheet()->getComment('E12')->getText()->createTextRun('PHPExcel:'); +$objCommentRichText->getFont()->setBold(true); +$objPHPExcel->getActiveSheet()->getComment('E12')->getText()->createTextRun("\r\n"); +$objPHPExcel->getActiveSheet()->getComment('E12')->getText()->createTextRun('Total amount of VAT on the current invoice.'); + +$objPHPExcel->getActiveSheet()->getComment('E13')->setAuthor('PHPExcel'); +$objCommentRichText = $objPHPExcel->getActiveSheet()->getComment('E13')->getText()->createTextRun('PHPExcel:'); +$objCommentRichText->getFont()->setBold(true); +$objPHPExcel->getActiveSheet()->getComment('E13')->getText()->createTextRun("\r\n"); +$objPHPExcel->getActiveSheet()->getComment('E13')->getText()->createTextRun('Total amount on the current invoice, including VAT.'); +$objPHPExcel->getActiveSheet()->getComment('E13')->setWidth('100pt'); +$objPHPExcel->getActiveSheet()->getComment('E13')->setHeight('100pt'); +$objPHPExcel->getActiveSheet()->getComment('E13')->setMarginLeft('150pt'); +$objPHPExcel->getActiveSheet()->getComment('E13')->getFillColor()->setRGB('EEEEEE'); + + +// Add rich-text string +echo date('H:i:s') , " Add rich-text string" , EOL; +$objRichText = new PHPExcel_RichText(); +$objRichText->createText('This invoice is '); + +$objPayable = $objRichText->createTextRun('payable within thirty days after the end of the month'); +$objPayable->getFont()->setBold(true); +$objPayable->getFont()->setItalic(true); +$objPayable->getFont()->setColor( new PHPExcel_Style_Color( PHPExcel_Style_Color::COLOR_DARKGREEN ) ); + +$objRichText->createText(', unless specified otherwise on the invoice.'); + +$objPHPExcel->getActiveSheet()->getCell('A18')->setValue($objRichText); + +// Merge cells +echo date('H:i:s') , " Merge cells" , EOL; +$objPHPExcel->getActiveSheet()->mergeCells('A18:E22'); +$objPHPExcel->getActiveSheet()->mergeCells('A28:B28'); // Just to test... +$objPHPExcel->getActiveSheet()->unmergeCells('A28:B28'); // Just to test... + +// Protect cells +echo date('H:i:s') , " Protect cells" , EOL; +$objPHPExcel->getActiveSheet()->getProtection()->setSheet(true); // Needs to be set to true in order to enable any worksheet protection! +$objPHPExcel->getActiveSheet()->protectCells('A3:E13', 'PHPExcel'); + +// Set cell number formats +echo date('H:i:s') , " Set cell number formats" , EOL; +$objPHPExcel->getActiveSheet()->getStyle('E4:E13')->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_CURRENCY_EUR_SIMPLE); + +// Set column widths +echo date('H:i:s') , " Set column widths" , EOL; +$objPHPExcel->getActiveSheet()->getColumnDimension('B')->setAutoSize(true); +$objPHPExcel->getActiveSheet()->getColumnDimension('D')->setWidth(12); +$objPHPExcel->getActiveSheet()->getColumnDimension('E')->setWidth(12); + +// Set fonts +echo date('H:i:s') , " Set fonts" , EOL; +$objPHPExcel->getActiveSheet()->getStyle('B1')->getFont()->setName('Candara'); +$objPHPExcel->getActiveSheet()->getStyle('B1')->getFont()->setSize(20); +$objPHPExcel->getActiveSheet()->getStyle('B1')->getFont()->setBold(true); +$objPHPExcel->getActiveSheet()->getStyle('B1')->getFont()->setUnderline(PHPExcel_Style_Font::UNDERLINE_SINGLE); +$objPHPExcel->getActiveSheet()->getStyle('B1')->getFont()->getColor()->setARGB(PHPExcel_Style_Color::COLOR_WHITE); + +$objPHPExcel->getActiveSheet()->getStyle('D1')->getFont()->getColor()->setARGB(PHPExcel_Style_Color::COLOR_WHITE); +$objPHPExcel->getActiveSheet()->getStyle('E1')->getFont()->getColor()->setARGB(PHPExcel_Style_Color::COLOR_WHITE); + +$objPHPExcel->getActiveSheet()->getStyle('D13')->getFont()->setBold(true); +$objPHPExcel->getActiveSheet()->getStyle('E13')->getFont()->setBold(true); + +// Set alignments +echo date('H:i:s') , " Set alignments" , EOL; +$objPHPExcel->getActiveSheet()->getStyle('D11')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_RIGHT); +$objPHPExcel->getActiveSheet()->getStyle('D12')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_RIGHT); +$objPHPExcel->getActiveSheet()->getStyle('D13')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_RIGHT); + +$objPHPExcel->getActiveSheet()->getStyle('A18')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_JUSTIFY); +$objPHPExcel->getActiveSheet()->getStyle('A18')->getAlignment()->setVertical(PHPExcel_Style_Alignment::VERTICAL_CENTER); + +$objPHPExcel->getActiveSheet()->getStyle('B5')->getAlignment()->setShrinkToFit(true); + +// Set thin black border outline around column +echo date('H:i:s') , " Set thin black border outline around column" , EOL; +$styleThinBlackBorderOutline = array( + 'borders' => array( + 'outline' => array( + 'style' => PHPExcel_Style_Border::BORDER_THIN, + 'color' => array('argb' => 'FF000000'), + ), + ), +); +$objPHPExcel->getActiveSheet()->getStyle('A4:E10')->applyFromArray($styleThinBlackBorderOutline); + + +// Set thick brown border outline around "Total" +echo date('H:i:s') , " Set thick brown border outline around Total" , EOL; +$styleThickBrownBorderOutline = array( + 'borders' => array( + 'outline' => array( + 'style' => PHPExcel_Style_Border::BORDER_THICK, + 'color' => array('argb' => 'FF993300'), + ), + ), +); +$objPHPExcel->getActiveSheet()->getStyle('D13:E13')->applyFromArray($styleThickBrownBorderOutline); + +// Set fills +echo date('H:i:s') , " Set fills" , EOL; +$objPHPExcel->getActiveSheet()->getStyle('A1:E1')->getFill()->setFillType(PHPExcel_Style_Fill::FILL_SOLID); +$objPHPExcel->getActiveSheet()->getStyle('A1:E1')->getFill()->getStartColor()->setARGB('FF808080'); + +// Set style for header row using alternative method +echo date('H:i:s') , " Set style for header row using alternative method" , EOL; +$objPHPExcel->getActiveSheet()->getStyle('A3:E3')->applyFromArray( + array( + 'font' => array( + 'bold' => true + ), + 'alignment' => array( + 'horizontal' => PHPExcel_Style_Alignment::HORIZONTAL_RIGHT, + ), + 'borders' => array( + 'top' => array( + 'style' => PHPExcel_Style_Border::BORDER_THIN + ) + ), + 'fill' => array( + 'type' => PHPExcel_Style_Fill::FILL_GRADIENT_LINEAR, + 'rotation' => 90, + 'startcolor' => array( + 'argb' => 'FFA0A0A0' + ), + 'endcolor' => array( + 'argb' => 'FFFFFFFF' + ) + ) + ) +); + +$objPHPExcel->getActiveSheet()->getStyle('A3')->applyFromArray( + array( + 'alignment' => array( + 'horizontal' => PHPExcel_Style_Alignment::HORIZONTAL_LEFT, + ), + 'borders' => array( + 'left' => array( + 'style' => PHPExcel_Style_Border::BORDER_THIN + ) + ) + ) +); + +$objPHPExcel->getActiveSheet()->getStyle('B3')->applyFromArray( + array( + 'alignment' => array( + 'horizontal' => PHPExcel_Style_Alignment::HORIZONTAL_LEFT, + ) + ) +); + +$objPHPExcel->getActiveSheet()->getStyle('E3')->applyFromArray( + array( + 'borders' => array( + 'right' => array( + 'style' => PHPExcel_Style_Border::BORDER_THIN + ) + ) + ) +); + +// Unprotect a cell +echo date('H:i:s') , " Unprotect a cell" , EOL; +$objPHPExcel->getActiveSheet()->getStyle('B1')->getProtection()->setLocked(PHPExcel_Style_Protection::PROTECTION_UNPROTECTED); + +// Add a hyperlink to the sheet +echo date('H:i:s') , " Add a hyperlink to an external website" , EOL; +$objPHPExcel->getActiveSheet()->setCellValue('E26', 'www.phpexcel.net'); +$objPHPExcel->getActiveSheet()->getCell('E26')->getHyperlink()->setUrl('http://www.phpexcel.net'); +$objPHPExcel->getActiveSheet()->getCell('E26')->getHyperlink()->setTooltip('Navigate to website'); +$objPHPExcel->getActiveSheet()->getStyle('E26')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_RIGHT); + +echo date('H:i:s') , " Add a hyperlink to another cell on a different worksheet within the workbook" , EOL; +$objPHPExcel->getActiveSheet()->setCellValue('E27', 'Terms and conditions'); +$objPHPExcel->getActiveSheet()->getCell('E27')->getHyperlink()->setUrl("sheet://'Terms and conditions'!A1"); +$objPHPExcel->getActiveSheet()->getCell('E27')->getHyperlink()->setTooltip('Review terms and conditions'); +$objPHPExcel->getActiveSheet()->getStyle('E27')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_RIGHT); + +// Add a drawing to the worksheet +echo date('H:i:s') , " Add a drawing to the worksheet" , EOL; +$objDrawing = new PHPExcel_Worksheet_Drawing(); +$objDrawing->setName('Logo'); +$objDrawing->setDescription('Logo'); +$objDrawing->setPath('./images/officelogo.jpg'); +$objDrawing->setHeight(36); +$objDrawing->setWorksheet($objPHPExcel->getActiveSheet()); + +// Add a drawing to the worksheet +echo date('H:i:s') , " Add a drawing to the worksheet" , EOL; +$objDrawing = new PHPExcel_Worksheet_Drawing(); +$objDrawing->setName('Paid'); +$objDrawing->setDescription('Paid'); +$objDrawing->setPath('./images/paid.png'); +$objDrawing->setCoordinates('B15'); +$objDrawing->setOffsetX(110); +$objDrawing->setRotation(25); +$objDrawing->getShadow()->setVisible(true); +$objDrawing->getShadow()->setDirection(45); +$objDrawing->setWorksheet($objPHPExcel->getActiveSheet()); + +// Add a drawing to the worksheet +echo date('H:i:s') , " Add a drawing to the worksheet" , EOL; +$objDrawing = new PHPExcel_Worksheet_Drawing(); +$objDrawing->setName('PHPExcel logo'); +$objDrawing->setDescription('PHPExcel logo'); +$objDrawing->setPath('./images/phpexcel_logo.gif'); +$objDrawing->setHeight(36); +$objDrawing->setCoordinates('D24'); +$objDrawing->setOffsetX(10); +$objDrawing->setWorksheet($objPHPExcel->getActiveSheet()); + +// Play around with inserting and removing rows and columns +echo date('H:i:s') , " Play around with inserting and removing rows and columns" , EOL; +$objPHPExcel->getActiveSheet()->insertNewRowBefore(6, 10); +$objPHPExcel->getActiveSheet()->removeRow(6, 10); +$objPHPExcel->getActiveSheet()->insertNewColumnBefore('E', 5); +$objPHPExcel->getActiveSheet()->removeColumn('E', 5); + +// Set header and footer. When no different headers for odd/even are used, odd header is assumed. +echo date('H:i:s') , " Set header/footer" , EOL; +$objPHPExcel->getActiveSheet()->getHeaderFooter()->setOddHeader('&L&BInvoice&RPrinted on &D'); +$objPHPExcel->getActiveSheet()->getHeaderFooter()->setOddFooter('&L&B' . $objPHPExcel->getProperties()->getTitle() . '&RPage &P of &N'); + +// Set page orientation and size +echo date('H:i:s') , " Set page orientation and size" , EOL; +$objPHPExcel->getActiveSheet()->getPageSetup()->setOrientation(PHPExcel_Worksheet_PageSetup::ORIENTATION_PORTRAIT); +$objPHPExcel->getActiveSheet()->getPageSetup()->setPaperSize(PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4); + +// Rename first worksheet +echo date('H:i:s') , " Rename first worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Invoice'); + + +// Create a new worksheet, after the default sheet +echo date('H:i:s') , " Create a second Worksheet object" , EOL; +$objPHPExcel->createSheet(); + +// Llorem ipsum... +$sLloremIpsum = 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Vivamus eget ante. Sed cursus nunc semper tortor. Aliquam luctus purus non elit. Fusce vel elit commodo sapien dignissim dignissim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Curabitur accumsan magna sed massa. Nullam bibendum quam ac ipsum. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin augue. Praesent malesuada justo sed orci. Pellentesque lacus ligula, sodales quis, ultricies a, ultricies vitae, elit. Sed luctus consectetuer dolor. Vivamus vel sem ut nisi sodales accumsan. Nunc et felis. Suspendisse semper viverra odio. Morbi at odio. Integer a orci a purus venenatis molestie. Nam mattis. Praesent rhoncus, nisi vel mattis auctor, neque nisi faucibus sem, non dapibus elit pede ac nisl. Cras turpis.'; + +// Add some data to the second sheet, resembling some different data types +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->setActiveSheetIndex(1); +$objPHPExcel->getActiveSheet()->setCellValue('A1', 'Terms and conditions'); +$objPHPExcel->getActiveSheet()->setCellValue('A3', $sLloremIpsum); +$objPHPExcel->getActiveSheet()->setCellValue('A4', $sLloremIpsum); +$objPHPExcel->getActiveSheet()->setCellValue('A5', $sLloremIpsum); +$objPHPExcel->getActiveSheet()->setCellValue('A6', $sLloremIpsum); + +// Set the worksheet tab color +echo date('H:i:s') , " Set the worksheet tab color" , EOL; +$objPHPExcel->getActiveSheet()->getTabColor()->setARGB('FF0094FF');; + +// Set alignments +echo date('H:i:s') , " Set alignments" , EOL; +$objPHPExcel->getActiveSheet()->getStyle('A3:A6')->getAlignment()->setWrapText(true); + +// Set column widths +echo date('H:i:s') , " Set column widths" , EOL; +$objPHPExcel->getActiveSheet()->getColumnDimension('A')->setWidth(80); + +// Set fonts +echo date('H:i:s') , " Set fonts" , EOL; +$objPHPExcel->getActiveSheet()->getStyle('A1')->getFont()->setName('Candara'); +$objPHPExcel->getActiveSheet()->getStyle('A1')->getFont()->setSize(20); +$objPHPExcel->getActiveSheet()->getStyle('A1')->getFont()->setBold(true); +$objPHPExcel->getActiveSheet()->getStyle('A1')->getFont()->setUnderline(PHPExcel_Style_Font::UNDERLINE_SINGLE); + +$objPHPExcel->getActiveSheet()->getStyle('A3:A6')->getFont()->setSize(8); + +// Add a drawing to the worksheet +echo date('H:i:s') , " Add a drawing to the worksheet" , EOL; +$objDrawing = new PHPExcel_Worksheet_Drawing(); +$objDrawing->setName('Terms and conditions'); +$objDrawing->setDescription('Terms and conditions'); +$objDrawing->setPath('./images/termsconditions.jpg'); +$objDrawing->setCoordinates('B14'); +$objDrawing->setWorksheet($objPHPExcel->getActiveSheet()); + +// Set page orientation and size +echo date('H:i:s') , " Set page orientation and size" , EOL; +$objPHPExcel->getActiveSheet()->getPageSetup()->setOrientation(PHPExcel_Worksheet_PageSetup::ORIENTATION_LANDSCAPE); +$objPHPExcel->getActiveSheet()->getPageSetup()->setPaperSize(PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4); + +// Rename second worksheet +echo date('H:i:s') , " Rename second worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Terms and conditions'); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); diff --git a/src/vendor/phpoffice/phpexcel/Examples/05featuredemo.php b/src/vendor/phpoffice/phpexcel/Examples/05featuredemo.php new file mode 100644 index 0000000..9e502ac --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/05featuredemo.php @@ -0,0 +1,78 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +include "05featuredemo.inc.php"; + +/** Include PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching-sqlite.php b/src/vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching-sqlite.php new file mode 100644 index 0000000..8baa743 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching-sqlite.php @@ -0,0 +1,129 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + +$cacheMethod = PHPExcel_CachedObjectStorageFactory::cache_to_sqlite; +if (PHPExcel_Settings::setCacheStorageMethod($cacheMethod)) { + echo date('H:i:s') , " Enable Cell Caching using " , $cacheMethod , " method" , EOL; +} else { + echo date('H:i:s') , " Unable to set Cell Caching using " , $cacheMethod , " method, reverting to memory" , EOL; +} + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Create a first sheet +echo date('H:i:s') , " Add data" , EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', "Firstname"); +$objPHPExcel->getActiveSheet()->setCellValue('B1', "Lastname"); +$objPHPExcel->getActiveSheet()->setCellValue('C1', "Phone"); +$objPHPExcel->getActiveSheet()->setCellValue('D1', "Fax"); +$objPHPExcel->getActiveSheet()->setCellValue('E1', "Is Client ?"); + + +// Hide "Phone" and "fax" column +echo date('H:i:s') , " Hide 'Phone' and 'fax' columns" , EOL; +$objPHPExcel->getActiveSheet()->getColumnDimension('C')->setVisible(false); +$objPHPExcel->getActiveSheet()->getColumnDimension('D')->setVisible(false); + + +// Set outline levels +echo date('H:i:s') , " Set outline levels" , EOL; +$objPHPExcel->getActiveSheet()->getColumnDimension('E')->setOutlineLevel(1) + ->setVisible(false) + ->setCollapsed(true); + +// Freeze panes +echo date('H:i:s') , " Freeze panes" , EOL; +$objPHPExcel->getActiveSheet()->freezePane('A2'); + + +// Rows to repeat at top +echo date('H:i:s') , " Rows to repeat at top" , EOL; +$objPHPExcel->getActiveSheet()->getPageSetup()->setRowsToRepeatAtTopByStartAndEnd(1, 1); + + +// Add data +for ($i = 2; $i <= 5000; $i++) { + $objPHPExcel->getActiveSheet()->setCellValue('A' . $i, "FName $i") + ->setCellValue('B' . $i, "LName $i") + ->setCellValue('C' . $i, "PhoneNo $i") + ->setCellValue('D' . $i, "FaxNo $i") + ->setCellValue('E' . $i, true); +} + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching-sqlite3.php b/src/vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching-sqlite3.php new file mode 100644 index 0000000..1f480d1 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching-sqlite3.php @@ -0,0 +1,129 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + +$cacheMethod = PHPExcel_CachedObjectStorageFactory::cache_to_sqlite3; +if (PHPExcel_Settings::setCacheStorageMethod($cacheMethod)) { + echo date('H:i:s') , " Enable Cell Caching using " , $cacheMethod , " method" , EOL; +} else { + echo date('H:i:s') , " Unable to set Cell Caching using " , $cacheMethod , " method, reverting to memory" , EOL; +} + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Create a first sheet +echo date('H:i:s') , " Add data" , EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', "Firstname"); +$objPHPExcel->getActiveSheet()->setCellValue('B1', "Lastname"); +$objPHPExcel->getActiveSheet()->setCellValue('C1', "Phone"); +$objPHPExcel->getActiveSheet()->setCellValue('D1', "Fax"); +$objPHPExcel->getActiveSheet()->setCellValue('E1', "Is Client ?"); + + +// Hide "Phone" and "fax" column +echo date('H:i:s') , " Hide 'Phone' and 'fax' columns" , EOL; +$objPHPExcel->getActiveSheet()->getColumnDimension('C')->setVisible(false); +$objPHPExcel->getActiveSheet()->getColumnDimension('D')->setVisible(false); + + +// Set outline levels +echo date('H:i:s') , " Set outline levels" , EOL; +$objPHPExcel->getActiveSheet()->getColumnDimension('E')->setOutlineLevel(1) + ->setVisible(false) + ->setCollapsed(true); + +// Freeze panes +echo date('H:i:s') , " Freeze panes" , EOL; +$objPHPExcel->getActiveSheet()->freezePane('A2'); + + +// Rows to repeat at top +echo date('H:i:s') , " Rows to repeat at top" , EOL; +$objPHPExcel->getActiveSheet()->getPageSetup()->setRowsToRepeatAtTopByStartAndEnd(1, 1); + + +// Add data +for ($i = 2; $i <= 5000; $i++) { + $objPHPExcel->getActiveSheet()->setCellValue('A' . $i, "FName $i") + ->setCellValue('B' . $i, "LName $i") + ->setCellValue('C' . $i, "PhoneNo $i") + ->setCellValue('D' . $i, "FaxNo $i") + ->setCellValue('E' . $i, true); +} + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching.php b/src/vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching.php new file mode 100644 index 0000000..d20b29f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching.php @@ -0,0 +1,128 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + +$cacheMethod = PHPExcel_CachedObjectStorageFactory::cache_in_memory_gzip; +if (!PHPExcel_Settings::setCacheStorageMethod($cacheMethod)) { + die($cacheMethod . " caching method is not available" . EOL); +} +echo date('H:i:s') , " Enable Cell Caching using " , $cacheMethod , " method" , EOL; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Create a first sheet +echo date('H:i:s') , " Add data" , EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', "Firstname"); +$objPHPExcel->getActiveSheet()->setCellValue('B1', "Lastname"); +$objPHPExcel->getActiveSheet()->setCellValue('C1', "Phone"); +$objPHPExcel->getActiveSheet()->setCellValue('D1', "Fax"); +$objPHPExcel->getActiveSheet()->setCellValue('E1', "Is Client ?"); + + +// Hide "Phone" and "fax" column +echo date('H:i:s') , " Hide 'Phone' and 'fax' columns" , EOL; +$objPHPExcel->getActiveSheet()->getColumnDimension('C')->setVisible(false); +$objPHPExcel->getActiveSheet()->getColumnDimension('D')->setVisible(false); + + +// Set outline levels +echo date('H:i:s') , " Set outline levels" , EOL; +$objPHPExcel->getActiveSheet()->getColumnDimension('E')->setOutlineLevel(1) + ->setVisible(false) + ->setCollapsed(true); + +// Freeze panes +echo date('H:i:s') , " Freeze panes" , EOL; +$objPHPExcel->getActiveSheet()->freezePane('A2'); + + +// Rows to repeat at top +echo date('H:i:s') , " Rows to repeat at top" , EOL; +$objPHPExcel->getActiveSheet()->getPageSetup()->setRowsToRepeatAtTopByStartAndEnd(1, 1); + + +// Add data +for ($i = 2; $i <= 5000; $i++) { + $objPHPExcel->getActiveSheet()->setCellValue('A' . $i, "FName $i") + ->setCellValue('B' . $i, "LName $i") + ->setCellValue('C' . $i, "PhoneNo $i") + ->setCellValue('D' . $i, "FaxNo $i") + ->setCellValue('E' . $i, true); +} + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/06largescale-xls.php b/src/vendor/phpoffice/phpexcel/Examples/06largescale-xls.php new file mode 100644 index 0000000..5adc3d2 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/06largescale-xls.php @@ -0,0 +1,136 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +/* +After doing some test, I've got these results benchmarked +for writing to Excel2007: + + Number of rows Seconds to generate + 200 3 + 500 4 + 1000 6 + 2000 12 + 4000 36 + 8000 64 + 15000 465 +*/ + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Create a first sheet +echo date('H:i:s') , " Add data" , EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', "Firstname"); +$objPHPExcel->getActiveSheet()->setCellValue('B1', "Lastname"); +$objPHPExcel->getActiveSheet()->setCellValue('C1', "Phone"); +$objPHPExcel->getActiveSheet()->setCellValue('D1', "Fax"); +$objPHPExcel->getActiveSheet()->setCellValue('E1', "Is Client ?"); + + +// Hide "Phone" and "fax" column +echo date('H:i:s') , " Hide 'Phone' and 'fax' columns" , EOL; +$objPHPExcel->getActiveSheet()->getColumnDimension('C')->setVisible(false); +$objPHPExcel->getActiveSheet()->getColumnDimension('D')->setVisible(false); + + +// Set outline levels +echo date('H:i:s') , " Set outline levels" , EOL; +$objPHPExcel->getActiveSheet()->getColumnDimension('E')->setOutlineLevel(1) + ->setVisible(false) + ->setCollapsed(true); + +// Freeze panes +echo date('H:i:s') , " Freeze panes" , EOL; +$objPHPExcel->getActiveSheet()->freezePane('A2'); + + +// Rows to repeat at top +echo date('H:i:s') , " Rows to repeat at top" , EOL; +$objPHPExcel->getActiveSheet()->getPageSetup()->setRowsToRepeatAtTopByStartAndEnd(1, 1); + + +// Add data +for ($i = 2; $i <= 5000; $i++) { + $objPHPExcel->getActiveSheet()->setCellValue('A' . $i, "FName $i") + ->setCellValue('B' . $i, "LName $i") + ->setCellValue('C' . $i, "PhoneNo $i") + ->setCellValue('D' . $i, "FaxNo $i") + ->setCellValue('E' . $i, true); +} + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/06largescale.php b/src/vendor/phpoffice/phpexcel/Examples/06largescale.php new file mode 100644 index 0000000..cb21caf --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/06largescale.php @@ -0,0 +1,136 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +/* +After doing some test, I've got these results benchmarked +for writing to Excel2007: + + Number of rows Seconds to generate + 200 3 + 500 4 + 1000 6 + 2000 12 + 4000 36 + 8000 64 + 15000 465 +*/ + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Create a first sheet +echo date('H:i:s') , " Add data" , EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', "Firstname"); +$objPHPExcel->getActiveSheet()->setCellValue('B1', "Lastname"); +$objPHPExcel->getActiveSheet()->setCellValue('C1', "Phone"); +$objPHPExcel->getActiveSheet()->setCellValue('D1', "Fax"); +$objPHPExcel->getActiveSheet()->setCellValue('E1', "Is Client ?"); + + +// Hide "Phone" and "fax" column +echo date('H:i:s') , " Hide 'Phone' and 'fax' columns" , EOL; +$objPHPExcel->getActiveSheet()->getColumnDimension('C')->setVisible(false); +$objPHPExcel->getActiveSheet()->getColumnDimension('D')->setVisible(false); + + +// Set outline levels +echo date('H:i:s') , " Set outline levels" , EOL; +$objPHPExcel->getActiveSheet()->getColumnDimension('E')->setOutlineLevel(1) + ->setVisible(false) + ->setCollapsed(true); + +// Freeze panes +echo date('H:i:s') , " Freeze panes" , EOL; +$objPHPExcel->getActiveSheet()->freezePane('A2'); + + +// Rows to repeat at top +echo date('H:i:s') , " Rows to repeat at top" , EOL; +$objPHPExcel->getActiveSheet()->getPageSetup()->setRowsToRepeatAtTopByStartAndEnd(1, 1); + + +// Add data +for ($i = 2; $i <= 5000; $i++) { + $objPHPExcel->getActiveSheet()->setCellValue('A' . $i, "FName $i") + ->setCellValue('B' . $i, "LName $i") + ->setCellValue('C' . $i, "PhoneNo $i") + ->setCellValue('D' . $i, "FaxNo $i") + ->setCellValue('E' . $i, true); +} + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/07reader.php b/src/vendor/phpoffice/phpexcel/Examples/07reader.php new file mode 100644 index 0000000..318ba18 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/07reader.php @@ -0,0 +1,76 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + + +if (!file_exists("05featuredemo.xlsx")) { + exit("Please run 05featuredemo.php first." . EOL); +} + +echo date('H:i:s') , " Load from Excel2007 file" , EOL; +$callStartTime = microtime(true); + +$objPHPExcel = PHPExcel_IOFactory::load("05featuredemo.xlsx"); + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo 'Call time to read Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/07readerPCLZip.php b/src/vendor/phpoffice/phpexcel/Examples/07readerPCLZip.php new file mode 100644 index 0000000..f1da9c5 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/07readerPCLZip.php @@ -0,0 +1,79 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + + +if (!file_exists("05featuredemo.xlsx")) { + exit("Please run 05featuredemo.php first." . EOL); +} + +// Use PCLZip rather than ZipArchive to read the Excel2007 OfficeOpenXML file +PHPExcel_Settings::setZipClass(PHPExcel_Settings::PCLZIP); + +echo date('H:i:s') , " Load from Excel2007 file" , EOL; +$callStartTime = microtime(true); + +$objPHPExcel = PHPExcel_IOFactory::load("05featuredemo.xlsx"); + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo 'Call time to read Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/08conditionalformatting.php b/src/vendor/phpoffice/phpexcel/Examples/08conditionalformatting.php new file mode 100644 index 0000000..514a8bb --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/08conditionalformatting.php @@ -0,0 +1,189 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Create a first sheet, representing sales data +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', 'Description') + ->setCellValue('B1', 'Amount'); + +$objPHPExcel->getActiveSheet()->setCellValue('A2', 'Paycheck received') + ->setCellValue('B2', 100); + +$objPHPExcel->getActiveSheet()->setCellValue('A3', 'Cup of coffee bought') + ->setCellValue('B3', -1.5); + +$objPHPExcel->getActiveSheet()->setCellValue('A4', 'Cup of coffee bought') + ->setCellValue('B4', -1.5); + +$objPHPExcel->getActiveSheet()->setCellValue('A5', 'Cup of tea bought') + ->setCellValue('B5', -1.2); + +$objPHPExcel->getActiveSheet()->setCellValue('A6', 'Found some money') + ->setCellValue('B6', 8); + +$objPHPExcel->getActiveSheet()->setCellValue('A7', 'Total:') + ->setCellValue('B7', '=SUM(B2:B6)'); + + +// Set column widths +echo date('H:i:s') , " Set column widths" , EOL; +$objPHPExcel->getActiveSheet()->getColumnDimension('A')->setWidth(30); +$objPHPExcel->getActiveSheet()->getColumnDimension('B')->setWidth(12); + + +// Add conditional formatting +echo date('H:i:s') , " Add conditional formatting" , EOL; +$objConditional1 = new PHPExcel_Style_Conditional(); +$objConditional1->setConditionType(PHPExcel_Style_Conditional::CONDITION_CELLIS) + ->setOperatorType(PHPExcel_Style_Conditional::OPERATOR_BETWEEN) + ->addCondition('200') + ->addCondition('400'); +$objConditional1->getStyle()->getFont()->getColor()->setARGB(PHPExcel_Style_Color::COLOR_YELLOW); +$objConditional1->getStyle()->getFont()->setBold(true); +$objConditional1->getStyle()->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_CURRENCY_EUR_SIMPLE); + +$objConditional2 = new PHPExcel_Style_Conditional(); +$objConditional2->setConditionType(PHPExcel_Style_Conditional::CONDITION_CELLIS) + ->setOperatorType(PHPExcel_Style_Conditional::OPERATOR_LESSTHAN) + ->addCondition('0'); +$objConditional2->getStyle()->getFont()->getColor()->setARGB(PHPExcel_Style_Color::COLOR_RED); +$objConditional2->getStyle()->getFont()->setItalic(true); +$objConditional2->getStyle()->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_CURRENCY_EUR_SIMPLE); + +$objConditional3 = new PHPExcel_Style_Conditional(); +$objConditional3->setConditionType(PHPExcel_Style_Conditional::CONDITION_CELLIS) + ->setOperatorType(PHPExcel_Style_Conditional::OPERATOR_GREATERTHANOREQUAL) + ->addCondition('0'); +$objConditional3->getStyle()->getFont()->getColor()->setARGB(PHPExcel_Style_Color::COLOR_GREEN); +$objConditional3->getStyle()->getFont()->setItalic(true); +$objConditional3->getStyle()->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_CURRENCY_EUR_SIMPLE); + +$conditionalStyles = $objPHPExcel->getActiveSheet()->getStyle('B2')->getConditionalStyles(); +array_push($conditionalStyles, $objConditional1); +array_push($conditionalStyles, $objConditional2); +array_push($conditionalStyles, $objConditional3); +$objPHPExcel->getActiveSheet()->getStyle('B2')->setConditionalStyles($conditionalStyles); + + +// duplicate the conditional styles across a range of cells +echo date('H:i:s') , " Duplicate the conditional formatting across a range of cells" , EOL; +$objPHPExcel->getActiveSheet()->duplicateConditionalStyle( + $objPHPExcel->getActiveSheet()->getStyle('B2')->getConditionalStyles(), + 'B3:B7' + ); + + +// Set fonts +echo date('H:i:s') , " Set fonts" , EOL; +$objPHPExcel->getActiveSheet()->getStyle('A1:B1')->getFont()->setBold(true); +//$objPHPExcel->getActiveSheet()->getStyle('B1')->getFont()->setBold(true); +$objPHPExcel->getActiveSheet()->getStyle('A7:B7')->getFont()->setBold(true); +//$objPHPExcel->getActiveSheet()->getStyle('B7')->getFont()->setBold(true); + + +// Set header and footer. When no different headers for odd/even are used, odd header is assumed. +echo date('H:i:s') , " Set header/footer" , EOL; +$objPHPExcel->getActiveSheet()->getHeaderFooter()->setOddHeader('&L&BPersonal cash register&RPrinted on &D'); +$objPHPExcel->getActiveSheet()->getHeaderFooter()->setOddFooter('&L&B' . $objPHPExcel->getProperties()->getTitle() . '&RPage &P of &N'); + + +// Set page orientation and size +echo date('H:i:s') , " Set page orientation and size" , EOL; +$objPHPExcel->getActiveSheet()->getPageSetup()->setOrientation(PHPExcel_Worksheet_PageSetup::ORIENTATION_PORTRAIT); +$objPHPExcel->getActiveSheet()->getPageSetup()->setPaperSize(PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4); + + +// Rename worksheet +echo date('H:i:s') , " Rename worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Invoice'); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Save Excel5 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/08conditionalformatting2.php b/src/vendor/phpoffice/phpexcel/Examples/08conditionalformatting2.php new file mode 100644 index 0000000..aeb2a31 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/08conditionalformatting2.php @@ -0,0 +1,136 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Create a first sheet, representing sales data +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet() + ->setCellValue('A1', '-0.5') + ->setCellValue('A2', '-0.25') + ->setCellValue('A3', '0.0') + ->setCellValue('A4', '0.25') + ->setCellValue('A5', '0.5') + ->setCellValue('A6', '0.75') + ->setCellValue('A7', '1.0') + ->setCellValue('A8', '1.25') +; + +$objPHPExcel->getActiveSheet()->getStyle('A1:A8') + ->getNumberFormat() + ->setFormatCode( + PHPExcel_Style_NumberFormat::FORMAT_PERCENTAGE_00 + ); + + +// Add conditional formatting +echo date('H:i:s') , " Add conditional formatting" , EOL; +$objConditional1 = new PHPExcel_Style_Conditional(); +$objConditional1->setConditionType(PHPExcel_Style_Conditional::CONDITION_CELLIS) + ->setOperatorType(PHPExcel_Style_Conditional::OPERATOR_LESSTHAN) + ->addCondition('0'); +$objConditional1->getStyle()->getFont()->getColor()->setARGB(PHPExcel_Style_Color::COLOR_RED); + +$objConditional3 = new PHPExcel_Style_Conditional(); +$objConditional3->setConditionType(PHPExcel_Style_Conditional::CONDITION_CELLIS) + ->setOperatorType(PHPExcel_Style_Conditional::OPERATOR_GREATERTHANOREQUAL) + ->addCondition('1'); +$objConditional3->getStyle()->getFont()->getColor()->setARGB(PHPExcel_Style_Color::COLOR_GREEN); + +$conditionalStyles = $objPHPExcel->getActiveSheet()->getStyle('A1')->getConditionalStyles(); +array_push($conditionalStyles, $objConditional1); +array_push($conditionalStyles, $objConditional3); +$objPHPExcel->getActiveSheet()->getStyle('A1')->setConditionalStyles($conditionalStyles); + + +// duplicate the conditional styles across a range of cells +echo date('H:i:s') , " Duplicate the conditional formatting across a range of cells" , EOL; +$objPHPExcel->getActiveSheet()->duplicateConditionalStyle( + $objPHPExcel->getActiveSheet()->getStyle('A1')->getConditionalStyles(), + 'A2:A8' + ); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Save Excel5 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/09pagebreaks.php b/src/vendor/phpoffice/phpexcel/Examples/09pagebreaks.php new file mode 100644 index 0000000..36e21ae --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/09pagebreaks.php @@ -0,0 +1,134 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Create a first sheet +echo date('H:i:s') , " Add data and page breaks" , EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', "Firstname") + ->setCellValue('B1', "Lastname") + ->setCellValue('C1', "Phone") + ->setCellValue('D1', "Fax") + ->setCellValue('E1', "Is Client ?"); + + +// Add data +for ($i = 2; $i <= 50; $i++) { + $objPHPExcel->getActiveSheet()->setCellValue('A' . $i, "FName $i"); + $objPHPExcel->getActiveSheet()->setCellValue('B' . $i, "LName $i"); + $objPHPExcel->getActiveSheet()->setCellValue('C' . $i, "PhoneNo $i"); + $objPHPExcel->getActiveSheet()->setCellValue('D' . $i, "FaxNo $i"); + $objPHPExcel->getActiveSheet()->setCellValue('E' . $i, true); + + // Add page breaks every 10 rows + if ($i % 10 == 0) { + // Add a page break + $objPHPExcel->getActiveSheet()->setBreak( 'A' . $i, PHPExcel_Worksheet::BREAK_ROW ); + } +} + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setTitle('Printing Options'); + +// Set print headers +$objPHPExcel->getActiveSheet() + ->getHeaderFooter()->setOddHeader('&C&24&K0000FF&B&U&A'); +$objPHPExcel->getActiveSheet() + ->getHeaderFooter()->setEvenHeader('&C&24&K0000FF&B&U&A'); + +// Set print footers +$objPHPExcel->getActiveSheet() + ->getHeaderFooter()->setOddFooter('&R&D &T&C&F&LPage &P / &N'); +$objPHPExcel->getActiveSheet() + ->getHeaderFooter()->setEvenFooter('&L&D &T&C&F&RPage &P / &N'); + + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/10autofilter-selection-1.php b/src/vendor/phpoffice/phpexcel/Examples/10autofilter-selection-1.php new file mode 100644 index 0000000..8cdc0de --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/10autofilter-selection-1.php @@ -0,0 +1,221 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s').' Create new PHPExcel object'.EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s').' Set document properties'.EOL; +$objPHPExcel->getProperties()->setCreator('Maarten Balliauw') + ->setLastModifiedBy('Maarten Balliauw') + ->setTitle('PHPExcel Test Document') + ->setSubject('PHPExcel Test Document') + ->setDescription('Test document for PHPExcel, generated using PHP classes.') + ->setKeywords('office PHPExcel php') + ->setCategory('Test result file'); + +// Create the worksheet +echo date('H:i:s').' Add data'.EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', 'Financial Year') + ->setCellValue('B1', 'Financial Period') + ->setCellValue('C1', 'Country') + ->setCellValue('D1', 'Date') + ->setCellValue('E1', 'Sales Value') + ->setCellValue('F1', 'Expenditure') + ; +$startYear = $endYear = $currentYear = date('Y'); +$startYear--; +$endYear++; + +$years = range($startYear,$endYear); +$periods = range(1,12); +$countries = array( 'United States', 'UK', 'France', 'Germany', + 'Italy', 'Spain', 'Portugal', 'Japan' + ); + +$row = 2; +foreach($years as $year) { + foreach($periods as $period) { + foreach($countries as $country) { + $endDays = date('t',mktime(0,0,0,$period,1,$year)); + for($i = 1; $i <= $endDays; ++$i) { + $eDate = PHPExcel_Shared_Date::FormattedPHPToExcel( + $year, + $period, + $i + ); + $value = rand(500,1000) * (1 + rand(-0.25,+0.25)); + $salesValue = $invoiceValue = NULL; + $incomeOrExpenditure = rand(-1,1); + if ($incomeOrExpenditure == -1) { + $expenditure = rand(-500,-1000) * (1 + rand(-0.25,+0.25)); + $income = NULL; + } elseif ($incomeOrExpenditure == 1) { + $expenditure = rand(-500,-1000) * (1 + rand(-0.25,+0.25)); + $income = rand(500,1000) * (1 + rand(-0.25,+0.25));; + } else { + $expenditure = NULL; + $income = rand(500,1000) * (1 + rand(-0.25,+0.25));; + } + $dataArray = array( $year, + $period, + $country, + $eDate, + $income, + $expenditure, + ); + $objPHPExcel->getActiveSheet()->fromArray($dataArray, NULL, 'A'.$row++); + } + } + } +} +$row--; + + +// Set styling +echo date('H:i:s').' Set styling'.EOL; +$objPHPExcel->getActiveSheet()->getStyle('A1:F1')->getFont()->setBold(true); +$objPHPExcel->getActiveSheet()->getStyle('A1:F1')->getAlignment()->setWrapText(TRUE); +$objPHPExcel->getActiveSheet()->getColumnDimension('C')->setWidth(12.5); +$objPHPExcel->getActiveSheet()->getColumnDimension('D')->setWidth(10.5); +$objPHPExcel->getActiveSheet()->getStyle('D2:D'.$row)->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_DATE_YYYYMMDD2); +$objPHPExcel->getActiveSheet()->getStyle('E2:F'.$row)->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_CURRENCY_USD_SIMPLE); +$objPHPExcel->getActiveSheet()->getColumnDimension('F')->setWidth(14); +$objPHPExcel->getActiveSheet()->freezePane('A2'); + + + +// Set autofilter range +echo date('H:i:s').' Set autofilter range'.EOL; +// Always include the complete filter range! +// Excel does support setting only the caption +// row, but that's not a best practise... +$objPHPExcel->getActiveSheet()->setAutoFilter($objPHPExcel->getActiveSheet()->calculateWorksheetDimension()); + +// Set active filters +$autoFilter = $objPHPExcel->getActiveSheet()->getAutoFilter(); +echo date('H:i:s').' Set active filters'.EOL; +// Filter the Country column on a filter value of countries beginning with the letter U (or Japan) +// We use * as a wildcard, so specify as U* and using a wildcard requires customFilter +$autoFilter->getColumn('C') + ->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_CUSTOMFILTER) + ->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL, + 'u*' + ) + ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_CUSTOMFILTER); +$autoFilter->getColumn('C') + ->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL, + 'japan' + ) + ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_CUSTOMFILTER); +// Filter the Date column on a filter value of the first day of every period of the current year +// We us a dateGroup ruletype for this, although it is still a standard filter +foreach($periods as $period) { + $endDate = date('t',mktime(0,0,0,$period,1,$currentYear)); + + $autoFilter->getColumn('D') + ->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_FILTER) + ->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL, + array( + 'year' => $currentYear, + 'month' => $period, + 'day' => $endDate + ) + ) + ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP); +} +// Display only sales values that are blank +// Standard filter, operator equals, and value of NULL +$autoFilter->getColumn('E') + ->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_FILTER) + ->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL, + '' + ); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s').' Peak memory usage: '.(memory_get_peak_usage(true) / 1024 / 1024).' MB'.EOL; + +// Echo done +echo date('H:i:s').' Done writing files'.EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/10autofilter-selection-2.php b/src/vendor/phpoffice/phpexcel/Examples/10autofilter-selection-2.php new file mode 100644 index 0000000..e2aea74 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/10autofilter-selection-2.php @@ -0,0 +1,213 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s').' Create new PHPExcel object'.EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s').' Set document properties'.EOL; +$objPHPExcel->getProperties()->setCreator('Maarten Balliauw') + ->setLastModifiedBy('Maarten Balliauw') + ->setTitle('PHPExcel Test Document') + ->setSubject('PHPExcel Test Document') + ->setDescription('Test document for PHPExcel, generated using PHP classes.') + ->setKeywords('office PHPExcel php') + ->setCategory('Test result file'); + +// Create the worksheet +echo date('H:i:s').' Add data'.EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', 'Financial Year') + ->setCellValue('B1', 'Financial Period') + ->setCellValue('C1', 'Country') + ->setCellValue('D1', 'Date') + ->setCellValue('E1', 'Sales Value') + ->setCellValue('F1', 'Expenditure') + ; +$startYear = $endYear = $currentYear = date('Y'); +$startYear--; +$endYear++; + +$years = range($startYear,$endYear); +$periods = range(1,12); +$countries = array( 'United States', 'UK', 'France', 'Germany', + 'Italy', 'Spain', 'Portugal', 'Japan' + ); + +$row = 2; +foreach($years as $year) { + foreach($periods as $period) { + foreach($countries as $country) { + $endDays = date('t',mktime(0,0,0,$period,1,$year)); + for($i = 1; $i <= $endDays; ++$i) { + $eDate = PHPExcel_Shared_Date::FormattedPHPToExcel( + $year, + $period, + $i + ); + $value = rand(500,1000) * (1 + rand(-0.25,+0.25)); + $salesValue = $invoiceValue = NULL; + $incomeOrExpenditure = rand(-1,1); + if ($incomeOrExpenditure == -1) { + $expenditure = rand(-500,-1000) * (1 + rand(-0.25,+0.25)); + $income = NULL; + } elseif ($incomeOrExpenditure == 1) { + $expenditure = rand(-500,-1000) * (1 + rand(-0.25,+0.25)); + $income = rand(500,1000) * (1 + rand(-0.25,+0.25));; + } else { + $expenditure = NULL; + $income = rand(500,1000) * (1 + rand(-0.25,+0.25));; + } + $dataArray = array( $year, + $period, + $country, + $eDate, + $income, + $expenditure, + ); + $objPHPExcel->getActiveSheet()->fromArray($dataArray, NULL, 'A'.$row++); + } + } + } +} +$row--; + + +// Set styling +echo date('H:i:s').' Set styling'.EOL; +$objPHPExcel->getActiveSheet()->getStyle('A1:F1')->getFont()->setBold(true); +$objPHPExcel->getActiveSheet()->getStyle('A1:F1')->getAlignment()->setWrapText(TRUE); +$objPHPExcel->getActiveSheet()->getColumnDimension('C')->setWidth(12.5); +$objPHPExcel->getActiveSheet()->getColumnDimension('D')->setWidth(10.5); +$objPHPExcel->getActiveSheet()->getStyle('D2:D'.$row)->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_DATE_YYYYMMDD2); +$objPHPExcel->getActiveSheet()->getStyle('E2:F'.$row)->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_CURRENCY_USD_SIMPLE); +$objPHPExcel->getActiveSheet()->getColumnDimension('F')->setWidth(14); +$objPHPExcel->getActiveSheet()->freezePane('A2'); + + + +// Set autofilter range +echo date('H:i:s').' Set autofilter range'.EOL; +// Always include the complete filter range! +// Excel does support setting only the caption +// row, but that's not a best practise... +$objPHPExcel->getActiveSheet()->setAutoFilter($objPHPExcel->getActiveSheet()->calculateWorksheetDimension()); + +// Set active filters +$autoFilter = $objPHPExcel->getActiveSheet()->getAutoFilter(); +echo date('H:i:s').' Set active filters'.EOL; +// Filter the Country column on a filter value of Germany +// As it's just a simple value filter, we can use FILTERTYPE_FILTER +$autoFilter->getColumn('C') + ->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_FILTER) + ->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL, + 'Germany' + ); +// Filter the Date column on a filter value of the year to date +$autoFilter->getColumn('D') + ->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_DYNAMICFILTER) + ->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL, + NULL, + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMIC_YEARTODATE + ) + ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMICFILTER); +// Display only sales values that are between 400 and 600 +$autoFilter->getColumn('E') + ->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_CUSTOMFILTER) + ->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_GREATERTHANOREQUAL, + 400 + ) + ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_CUSTOMFILTER); +$autoFilter->getColumn('E') + ->setJoin(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_COLUMN_JOIN_AND) + ->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_LESSTHANOREQUAL, + 600 + ) + ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_CUSTOMFILTER); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s').' Peak memory usage: '.(memory_get_peak_usage(true) / 1024 / 1024).' MB'.EOL; + +// Echo done +echo date('H:i:s').' Done writing files'.EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/10autofilter-selection-display.php b/src/vendor/phpoffice/phpexcel/Examples/10autofilter-selection-display.php new file mode 100644 index 0000000..ba3fed9 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/10autofilter-selection-display.php @@ -0,0 +1,198 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s').' Create new PHPExcel object'.EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s').' Set document properties'.EOL; +$objPHPExcel->getProperties()->setCreator('Maarten Balliauw') + ->setLastModifiedBy('Maarten Balliauw') + ->setTitle('PHPExcel Test Document') + ->setSubject('PHPExcel Test Document') + ->setDescription('Test document for PHPExcel, generated using PHP classes.') + ->setKeywords('office PHPExcel php') + ->setCategory('Test result file'); + +// Create the worksheet +echo date('H:i:s').' Add data'.EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', 'Financial Year') + ->setCellValue('B1', 'Financial Period') + ->setCellValue('C1', 'Country') + ->setCellValue('D1', 'Date') + ->setCellValue('E1', 'Sales Value') + ->setCellValue('F1', 'Expenditure') + ; +$startYear = $endYear = $currentYear = date('Y'); +$startYear--; +$endYear++; + +$years = range($startYear,$endYear); +$periods = range(1,12); +$countries = array( 'United States', 'UK', 'France', 'Germany', + 'Italy', 'Spain', 'Portugal', 'Japan' + ); + +$row = 2; +foreach($years as $year) { + foreach($periods as $period) { + foreach($countries as $country) { + $endDays = date('t',mktime(0,0,0,$period,1,$year)); + for($i = 1; $i <= $endDays; ++$i) { + $eDate = PHPExcel_Shared_Date::FormattedPHPToExcel( + $year, + $period, + $i + ); + $value = rand(500,1000) * (1 + rand(-0.25,+0.25)); + $salesValue = $invoiceValue = NULL; + $incomeOrExpenditure = rand(-1,1); + if ($incomeOrExpenditure == -1) { + $expenditure = rand(-500,-1000) * (1 + rand(-0.25,+0.25)); + $income = NULL; + } elseif ($incomeOrExpenditure == 1) { + $expenditure = rand(-500,-1000) * (1 + rand(-0.25,+0.25)); + $income = rand(500,1000) * (1 + rand(-0.25,+0.25));; + } else { + $expenditure = NULL; + $income = rand(500,1000) * (1 + rand(-0.25,+0.25));; + } + $dataArray = array( $year, + $period, + $country, + $eDate, + $income, + $expenditure, + ); + $objPHPExcel->getActiveSheet()->fromArray($dataArray, NULL, 'A'.$row++); + } + } + } +} +$row--; + + +// Set styling +echo date('H:i:s').' Set styling'.EOL; +$objPHPExcel->getActiveSheet()->getStyle('A1:F1')->getFont()->setBold(true); +$objPHPExcel->getActiveSheet()->getStyle('A1:F1')->getAlignment()->setWrapText(TRUE); +$objPHPExcel->getActiveSheet()->getColumnDimension('C')->setWidth(12.5); +$objPHPExcel->getActiveSheet()->getColumnDimension('D')->setWidth(10.5); +$objPHPExcel->getActiveSheet()->getStyle('D2:D'.$row)->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_DATE_YYYYMMDD2); +$objPHPExcel->getActiveSheet()->getStyle('E2:F'.$row)->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_CURRENCY_USD_SIMPLE); +$objPHPExcel->getActiveSheet()->getColumnDimension('F')->setWidth(14); +$objPHPExcel->getActiveSheet()->freezePane('A2'); + + + +// Set autofilter range +echo date('H:i:s').' Set autofilter range'.EOL; +// Always include the complete filter range! +// Excel does support setting only the caption +// row, but that's not a best practise... +$objPHPExcel->getActiveSheet()->setAutoFilter($objPHPExcel->getActiveSheet()->calculateWorksheetDimension()); + +// Set active filters +$autoFilter = $objPHPExcel->getActiveSheet()->getAutoFilter(); +echo date('H:i:s').' Set active filters'.EOL; +// Filter the Country column on a filter value of countries beginning with the letter U (or Japan) +// We use * as a wildcard, so specify as U* and using a wildcard requires customFilter +$autoFilter->getColumn('C') + ->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_CUSTOMFILTER) + ->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL, + 'u*' + ) + ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_CUSTOMFILTER); +$autoFilter->getColumn('C') + ->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL, + 'japan' + ) + ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_CUSTOMFILTER); +// Filter the Date column on a filter value of the first day of every period of the current year +// We us a dateGroup ruletype for this, although it is still a standard filter +foreach($periods as $period) { + $endDate = date('t',mktime(0,0,0,$period,1,$currentYear)); + + $autoFilter->getColumn('D') + ->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_FILTER) + ->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL, + array( + 'year' => $currentYear, + 'month' => $period, + 'day' => $endDate + ) + ) + ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP); +} +// Display only sales values that are blank +// Standard filter, operator equals, and value of NULL +$autoFilter->getColumn('E') + ->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_FILTER) + ->createRule() + ->setRule( + PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_EQUAL, + '' + ); + +// Execute filtering +echo date('H:i:s').' Execute filtering'.EOL; +$autoFilter->showHideRows(); + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Display Results of filtering +echo date('H:i:s').' Display filtered rows'.EOL; +foreach ($objPHPExcel->getActiveSheet()->getRowIterator() as $row) { + if ($objPHPExcel->getActiveSheet()->getRowDimension($row->getRowIndex())->getVisible()) { + echo ' Row number - ' , $row->getRowIndex() , ' '; + echo $objPHPExcel->getActiveSheet()->getCell('C'.$row->getRowIndex())->getValue(), ' '; + echo $objPHPExcel->getActiveSheet()->getCell('D'.$row->getRowIndex())->getFormattedValue(), ' '; + echo EOL; + } +} diff --git a/src/vendor/phpoffice/phpexcel/Examples/10autofilter.php b/src/vendor/phpoffice/phpexcel/Examples/10autofilter.php new file mode 100644 index 0000000..015e9cf --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/10autofilter.php @@ -0,0 +1,171 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + +// Create new PHPExcel object +echo date('H:i:s').' Create new PHPExcel object'.EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s').' Set document properties'.EOL; +$objPHPExcel->getProperties()->setCreator('Maarten Balliauw') + ->setLastModifiedBy('Maarten Balliauw') + ->setTitle('PHPExcel Test Document') + ->setSubject('PHPExcel Test Document') + ->setDescription('Test document for PHPExcel, generated using PHP classes.') + ->setKeywords('office PHPExcel php') + ->setCategory('Test result file'); + +// Create the worksheet +echo date('H:i:s').' Add data'.EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', 'Year') + ->setCellValue('B1', 'Quarter') + ->setCellValue('C1', 'Country') + ->setCellValue('D1', 'Sales'); + +$dataArray = array(array('2010', 'Q1', 'United States', 790), + array('2010', 'Q2', 'United States', 730), + array('2010', 'Q3', 'United States', 860), + array('2010', 'Q4', 'United States', 850), + array('2011', 'Q1', 'United States', 800), + array('2011', 'Q2', 'United States', 700), + array('2011', 'Q3', 'United States', 900), + array('2011', 'Q4', 'United States', 950), + array('2010', 'Q1', 'Belgium', 380), + array('2010', 'Q2', 'Belgium', 390), + array('2010', 'Q3', 'Belgium', 420), + array('2010', 'Q4', 'Belgium', 460), + array('2011', 'Q1', 'Belgium', 400), + array('2011', 'Q2', 'Belgium', 350), + array('2011', 'Q3', 'Belgium', 450), + array('2011', 'Q4', 'Belgium', 500), + array('2010', 'Q1', 'UK', 690), + array('2010', 'Q2', 'UK', 610), + array('2010', 'Q3', 'UK', 620), + array('2010', 'Q4', 'UK', 600), + array('2011', 'Q1', 'UK', 720), + array('2011', 'Q2', 'UK', 650), + array('2011', 'Q3', 'UK', 580), + array('2011', 'Q4', 'UK', 510), + array('2010', 'Q1', 'France', 510), + array('2010', 'Q2', 'France', 490), + array('2010', 'Q3', 'France', 460), + array('2010', 'Q4', 'France', 590), + array('2011', 'Q1', 'France', 620), + array('2011', 'Q2', 'France', 650), + array('2011', 'Q3', 'France', 415), + array('2011', 'Q4', 'France', 570), + array('2010', 'Q1', 'Germany', 720), + array('2010', 'Q2', 'Germany', 680), + array('2010', 'Q3', 'Germany', 640), + array('2010', 'Q4', 'Germany', 660), + array('2011', 'Q1', 'Germany', 680), + array('2011', 'Q2', 'Germany', 620), + array('2011', 'Q3', 'Germany', 710), + array('2011', 'Q4', 'Germany', 690), + array('2010', 'Q1', 'Spain', 510), + array('2010', 'Q2', 'Spain', 490), + array('2010', 'Q3', 'Spain', 470), + array('2010', 'Q4', 'Spain', 420), + array('2011', 'Q1', 'Spain', 460), + array('2011', 'Q2', 'Spain', 390), + array('2011', 'Q3', 'Spain', 430), + array('2011', 'Q4', 'Spain', 415), + array('2010', 'Q1', 'Italy', 440), + array('2010', 'Q2', 'Italy', 410), + array('2010', 'Q3', 'Italy', 420), + array('2010', 'Q4', 'Italy', 450), + array('2011', 'Q1', 'Italy', 430), + array('2011', 'Q2', 'Italy', 370), + array('2011', 'Q3', 'Italy', 350), + array('2011', 'Q4', 'Italy', 335), + ); +$objPHPExcel->getActiveSheet()->fromArray($dataArray, NULL, 'A2'); + +// Set title row bold +echo date('H:i:s').' Set title row bold'.EOL; +$objPHPExcel->getActiveSheet()->getStyle('A1:D1')->getFont()->setBold(true); + +// Set autofilter +echo date('H:i:s').' Set autofilter'.EOL; +// Always include the complete filter range! +// Excel does support setting only the caption +// row, but that's not a best practise... +$objPHPExcel->getActiveSheet()->setAutoFilter($objPHPExcel->getActiveSheet()->calculateWorksheetDimension()); + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s').' Peak memory usage: '.(memory_get_peak_usage(true) / 1024 / 1024).' MB'.EOL; + +// Echo done +echo date('H:i:s').' Done writing files'.EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/11documentsecurity-xls.php b/src/vendor/phpoffice/phpexcel/Examples/11documentsecurity-xls.php new file mode 100644 index 0000000..2348ce9 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/11documentsecurity-xls.php @@ -0,0 +1,109 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Add some data +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', 'Hello'); +$objPHPExcel->getActiveSheet()->setCellValue('B2', 'world!'); +$objPHPExcel->getActiveSheet()->setCellValue('C1', 'Hello'); +$objPHPExcel->getActiveSheet()->setCellValue('D2', 'world!'); + +// Rename worksheet +echo date('H:i:s') , " Rename worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Simple'); + + +// Set document security +echo date('H:i:s') , " Set document security" , EOL; +$objPHPExcel->getSecurity()->setLockWindows(true); +$objPHPExcel->getSecurity()->setLockStructure(true); +$objPHPExcel->getSecurity()->setWorkbookPassword("PHPExcel"); + + +// Set sheet security +echo date('H:i:s') , " Set sheet security" , EOL; +$objPHPExcel->getActiveSheet()->getProtection()->setPassword('PHPExcel'); +$objPHPExcel->getActiveSheet()->getProtection()->setSheet(true); // This should be enabled in order to enable any of the following! +$objPHPExcel->getActiveSheet()->getProtection()->setSort(true); +$objPHPExcel->getActiveSheet()->getProtection()->setInsertRows(true); +$objPHPExcel->getActiveSheet()->getProtection()->setFormatCells(true); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/11documentsecurity.php b/src/vendor/phpoffice/phpexcel/Examples/11documentsecurity.php new file mode 100644 index 0000000..9fd4fb2 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/11documentsecurity.php @@ -0,0 +1,109 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Add some data +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', 'Hello'); +$objPHPExcel->getActiveSheet()->setCellValue('B2', 'world!'); +$objPHPExcel->getActiveSheet()->setCellValue('C1', 'Hello'); +$objPHPExcel->getActiveSheet()->setCellValue('D2', 'world!'); + +// Rename worksheet +echo date('H:i:s') , " Rename worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Simple'); + + +// Set document security +echo date('H:i:s') , " Set document security" , EOL; +$objPHPExcel->getSecurity()->setLockWindows(true); +$objPHPExcel->getSecurity()->setLockStructure(true); +$objPHPExcel->getSecurity()->setWorkbookPassword("PHPExcel"); + + +// Set sheet security +echo date('H:i:s') , " Set sheet security" , EOL; +$objPHPExcel->getActiveSheet()->getProtection()->setPassword('PHPExcel'); +$objPHPExcel->getActiveSheet()->getProtection()->setSheet(true); // This should be enabled in order to enable any of the following! +$objPHPExcel->getActiveSheet()->getProtection()->setSort(true); +$objPHPExcel->getActiveSheet()->getProtection()->setInsertRows(true); +$objPHPExcel->getActiveSheet()->getProtection()->setFormatCells(true); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/12cellProtection.php b/src/vendor/phpoffice/phpexcel/Examples/12cellProtection.php new file mode 100644 index 0000000..e12c9ae --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/12cellProtection.php @@ -0,0 +1,107 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Mark Baker") + ->setLastModifiedBy("Mark Baker") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Add some data +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', 'Crouching'); +$objPHPExcel->getActiveSheet()->setCellValue('B1', 'Tiger'); +$objPHPExcel->getActiveSheet()->setCellValue('A2', 'Hidden'); +$objPHPExcel->getActiveSheet()->setCellValue('B2', 'Dragon'); + +// Rename worksheet +echo date('H:i:s') , " Rename worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Simple'); + + +// Set document security +echo date('H:i:s') , " Set cell protection" , EOL; + + +// Set sheet security +echo date('H:i:s') , " Set sheet security" , EOL; +$objPHPExcel->getActiveSheet()->getProtection()->setSheet(true); +$objPHPExcel->getActiveSheet() + ->getStyle('A2:B2') + ->getProtection()->setLocked( + PHPExcel_Style_Protection::PROTECTION_UNPROTECTED + ); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/13calculation.php b/src/vendor/phpoffice/phpexcel/Examples/13calculation.php new file mode 100644 index 0000000..e255d11 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/13calculation.php @@ -0,0 +1,235 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); +mt_srand(1234567890); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// List functions +echo date('H:i:s') , " List implemented functions" , EOL; +$objCalc = PHPExcel_Calculation::getInstance(); +print_r($objCalc->listFunctionNames()); + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Add some data, we will use some formulas here +echo date('H:i:s') , " Add some data and formulas" , EOL; +$objPHPExcel->getActiveSheet()->setCellValue('A14', 'Count:') + ->setCellValue('A15', 'Sum:') + ->setCellValue('A16', 'Max:') + ->setCellValue('A17', 'Min:') + ->setCellValue('A18', 'Average:') + ->setCellValue('A19', 'Median:') + ->setCellValue('A20', 'Mode:'); + +$objPHPExcel->getActiveSheet()->setCellValue('A22', 'CountA:') + ->setCellValue('A23', 'MaxA:') + ->setCellValue('A24', 'MinA:'); + +$objPHPExcel->getActiveSheet()->setCellValue('A26', 'StDev:') + ->setCellValue('A27', 'StDevA:') + ->setCellValue('A28', 'StDevP:') + ->setCellValue('A29', 'StDevPA:'); + +$objPHPExcel->getActiveSheet()->setCellValue('A31', 'DevSq:') + ->setCellValue('A32', 'Var:') + ->setCellValue('A33', 'VarA:') + ->setCellValue('A34', 'VarP:') + ->setCellValue('A35', 'VarPA:'); + +$objPHPExcel->getActiveSheet()->setCellValue('A37', 'Date:'); + + +$objPHPExcel->getActiveSheet()->setCellValue('B1', 'Range 1') + ->setCellValue('B2', 2) + ->setCellValue('B3', 8) + ->setCellValue('B4', 10) + ->setCellValue('B5', True) + ->setCellValue('B6', False) + ->setCellValue('B7', 'Text String') + ->setCellValue('B9', '22') + ->setCellValue('B10', 4) + ->setCellValue('B11', 6) + ->setCellValue('B12', 12); + +$objPHPExcel->getActiveSheet()->setCellValue('B14', '=COUNT(B2:B12)') + ->setCellValue('B15', '=SUM(B2:B12)') + ->setCellValue('B16', '=MAX(B2:B12)') + ->setCellValue('B17', '=MIN(B2:B12)') + ->setCellValue('B18', '=AVERAGE(B2:B12)') + ->setCellValue('B19', '=MEDIAN(B2:B12)') + ->setCellValue('B20', '=MODE(B2:B12)'); + +$objPHPExcel->getActiveSheet()->setCellValue('B22', '=COUNTA(B2:B12)') + ->setCellValue('B23', '=MAXA(B2:B12)') + ->setCellValue('B24', '=MINA(B2:B12)'); + +$objPHPExcel->getActiveSheet()->setCellValue('B26', '=STDEV(B2:B12)') + ->setCellValue('B27', '=STDEVA(B2:B12)') + ->setCellValue('B28', '=STDEVP(B2:B12)') + ->setCellValue('B29', '=STDEVPA(B2:B12)'); + +$objPHPExcel->getActiveSheet()->setCellValue('B31', '=DEVSQ(B2:B12)') + ->setCellValue('B32', '=VAR(B2:B12)') + ->setCellValue('B33', '=VARA(B2:B12)') + ->setCellValue('B34', '=VARP(B2:B12)') + ->setCellValue('B35', '=VARPA(B2:B12)'); + +$objPHPExcel->getActiveSheet()->setCellValue('B37', '=DATE(2007, 12, 21)') + ->setCellValue('B38', '=DATEDIF( DATE(2007, 12, 21), DATE(2007, 12, 22), "D" )') + ->setCellValue('B39', '=DATEVALUE("01-Feb-2006 10:06 AM")') + ->setCellValue('B40', '=DAY( DATE(2006, 1, 2) )') + ->setCellValue('B41', '=DAYS360( DATE(2002, 2, 3), DATE(2005, 5, 31) )'); + + +$objPHPExcel->getActiveSheet()->setCellValue('C1', 'Range 2') + ->setCellValue('C2', 1) + ->setCellValue('C3', 2) + ->setCellValue('C4', 2) + ->setCellValue('C5', 3) + ->setCellValue('C6', 3) + ->setCellValue('C7', 3) + ->setCellValue('C8', '0') + ->setCellValue('C9', 4) + ->setCellValue('C10', 4) + ->setCellValue('C11', 4) + ->setCellValue('C12', 4); + +$objPHPExcel->getActiveSheet()->setCellValue('C14', '=COUNT(C2:C12)') + ->setCellValue('C15', '=SUM(C2:C12)') + ->setCellValue('C16', '=MAX(C2:C12)') + ->setCellValue('C17', '=MIN(C2:C12)') + ->setCellValue('C18', '=AVERAGE(C2:C12)') + ->setCellValue('C19', '=MEDIAN(C2:C12)') + ->setCellValue('C20', '=MODE(C2:C12)'); + +$objPHPExcel->getActiveSheet()->setCellValue('C22', '=COUNTA(C2:C12)') + ->setCellValue('C23', '=MAXA(C2:C12)') + ->setCellValue('C24', '=MINA(C2:C12)'); + +$objPHPExcel->getActiveSheet()->setCellValue('C26', '=STDEV(C2:C12)') + ->setCellValue('C27', '=STDEVA(C2:C12)') + ->setCellValue('C28', '=STDEVP(C2:C12)') + ->setCellValue('C29', '=STDEVPA(C2:C12)'); + +$objPHPExcel->getActiveSheet()->setCellValue('C31', '=DEVSQ(C2:C12)') + ->setCellValue('C32', '=VAR(C2:C12)') + ->setCellValue('C33', '=VARA(C2:C12)') + ->setCellValue('C34', '=VARP(C2:C12)') + ->setCellValue('C35', '=VARPA(C2:C12)'); + + +$objPHPExcel->getActiveSheet()->setCellValue('D1', 'Range 3') + ->setCellValue('D2', 2) + ->setCellValue('D3', 3) + ->setCellValue('D4', 4); + +$objPHPExcel->getActiveSheet()->setCellValue('D14', '=((D2 * D3) + D4) & " should be 10"'); + +$objPHPExcel->getActiveSheet()->setCellValue('E12', 'Other functions') + ->setCellValue('E14', '=PI()') + ->setCellValue('E15', '=RAND()') + ->setCellValue('E16', '=RANDBETWEEN(5, 10)'); + +$objPHPExcel->getActiveSheet()->setCellValue('E17', 'Count of both ranges:') + ->setCellValue('F17', '=COUNT(B2:C12)'); + +$objPHPExcel->getActiveSheet()->setCellValue('E18', 'Total of both ranges:') + ->setCellValue('F18', '=SUM(B2:C12)'); + +$objPHPExcel->getActiveSheet()->setCellValue('E19', 'Maximum of both ranges:') + ->setCellValue('F19', '=MAX(B2:C12)'); + +$objPHPExcel->getActiveSheet()->setCellValue('E20', 'Minimum of both ranges:') + ->setCellValue('F20', '=MIN(B2:C12)'); + +$objPHPExcel->getActiveSheet()->setCellValue('E21', 'Average of both ranges:') + ->setCellValue('F21', '=AVERAGE(B2:C12)'); + +$objPHPExcel->getActiveSheet()->setCellValue('E22', 'Median of both ranges:') + ->setCellValue('F22', '=MEDIAN(B2:C12)'); + +$objPHPExcel->getActiveSheet()->setCellValue('E23', 'Mode of both ranges:') + ->setCellValue('F23', '=MODE(B2:C12)'); + + +// Calculated data +echo date('H:i:s') , " Calculated data" , EOL; +for ($col = 'B'; $col != 'G'; ++$col) { + for($row = 14; $row <= 41; ++$row) { + if ((!is_null($formula = $objPHPExcel->getActiveSheet()->getCell($col.$row)->getValue())) && + ($formula[0] == '=')) { + echo 'Value of ' , $col , $row , ' [' , $formula , ']: ' , + $objPHPExcel->getActiveSheet()->getCell($col.$row)->getCalculatedValue() . EOL; + } + } +} + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); + +// +// If we set Pre Calculated Formulas to true then PHPExcel will calculate all formulae in the +// workbook before saving. This adds time and memory overhead, and can cause some problems with formulae +// using functions or features (such as array formulae) that aren't yet supported by the calculation engine +// If the value is false (the default) for the Excel2007 Writer, then MS Excel (or the application used to +// open the file) will need to recalculate values itself to guarantee that the correct results are available. +// +//$objWriter->setPreCalculateFormulas(true); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/13calculationCyclicFormulae.php b/src/vendor/phpoffice/phpexcel/Examples/13calculationCyclicFormulae.php new file mode 100644 index 0000000..8512a3e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/13calculationCyclicFormulae.php @@ -0,0 +1,97 @@ +<?php +/** + * PHPExcel + * + * Copyright (C) 2006 - 2014 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Add some data, we will use some formulas here +echo date('H:i:s') , " Add some data and formulas" , EOL; +$objPHPExcel->getActiveSheet()->setCellValue('A1', '=B1') + ->setCellValue('A2', '=B2+1') + ->setCellValue('B1', '=A1+1') + ->setCellValue('B2', '=A2'); + +PHPExcel_Calculation::getInstance($objPHPExcel)->cyclicFormulaCount = 100; + +// Calculated data +echo date('H:i:s') , " Calculated data" , EOL; +for($row = 1; $row <= 2; ++$row) { + for ($col = 'A'; $col != 'C'; ++$col) { + if ((!is_null($formula = $objPHPExcel->getActiveSheet()->getCell($col.$row)->getValue())) && + ($formula[0] == '=')) { + echo 'Value of ' , $col , $row , ' [' , $formula , ']: ' , + $objPHPExcel->getActiveSheet()->getCell($col.$row)->getCalculatedValue() . EOL; + } + } +} + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); + +// +// If we set Pre Calculated Formulas to true then PHPExcel will calculate all formulae in the +// workbook before saving. This adds time and memory overhead, and can cause some problems with formulae +// using functions or features (such as array formulae) that aren't yet supported by the calculation engine +// If the value is false (the default) for the Excel2007 Writer, then MS Excel (or the application used to +// open the file) will need to recalculate values itself to guarantee that the correct results are available. +// +//$objWriter->setPreCalculateFormulas(true); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/14excel5.php b/src/vendor/phpoffice/phpexcel/Examples/14excel5.php new file mode 100644 index 0000000..7a9f685 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/14excel5.php @@ -0,0 +1,63 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +include "05featuredemo.inc.php"; + +/** PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/15datavalidation-xls.php b/src/vendor/phpoffice/phpexcel/Examples/15datavalidation-xls.php new file mode 100644 index 0000000..3f0afde --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/15datavalidation-xls.php @@ -0,0 +1,155 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Create a first sheet +echo date('H:i:s') , " Add data" , EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', "Cell B3 and B5 contain data validation...") + ->setCellValue('A3', "Number:") + ->setCellValue('B3', "10") + ->setCellValue('A5', "List:") + ->setCellValue('B5', "Item A") + ->setCellValue('A7', "List #2:") + ->setCellValue('B7', "Item #2") + ->setCellValue('D2', "Item #1") + ->setCellValue('D3', "Item #2") + ->setCellValue('D4', "Item #3") + ->setCellValue('D5', "Item #4") + ->setCellValue('D6', "Item #5") + ->setCellValue('A9', 'Text:') + ; + + +// Set data validation +echo date('H:i:s') , " Set data validation" , EOL; +$objValidation = $objPHPExcel->getActiveSheet()->getCell('B3')->getDataValidation(); +$objValidation->setType( PHPExcel_Cell_DataValidation::TYPE_WHOLE ); +$objValidation->setErrorStyle( PHPExcel_Cell_DataValidation::STYLE_STOP ); +$objValidation->setAllowBlank(true); +$objValidation->setShowInputMessage(true); +$objValidation->setShowErrorMessage(true); +$objValidation->setErrorTitle('Input error'); +$objValidation->setError('Only numbers between 10 and 20 are allowed!'); +$objValidation->setPromptTitle('Allowed input'); +$objValidation->setPrompt('Only numbers between 10 and 20 are allowed.'); +$objValidation->setFormula1(10); +$objValidation->setFormula2(20); + +$objValidation = $objPHPExcel->getActiveSheet()->getCell('B5')->getDataValidation(); +$objValidation->setType( PHPExcel_Cell_DataValidation::TYPE_LIST ); +$objValidation->setErrorStyle( PHPExcel_Cell_DataValidation::STYLE_INFORMATION ); +$objValidation->setAllowBlank(false); +$objValidation->setShowInputMessage(true); +$objValidation->setShowErrorMessage(true); +$objValidation->setShowDropDown(true); +$objValidation->setErrorTitle('Input error'); +$objValidation->setError('Value is not in list.'); +$objValidation->setPromptTitle('Pick from list'); +$objValidation->setPrompt('Please pick a value from the drop-down list.'); +$objValidation->setFormula1('"Item A,Item B,Item C"'); // Make sure to put the list items between " and " !!! + +$objValidation = $objPHPExcel->getActiveSheet()->getCell('B7')->getDataValidation(); +$objValidation->setType( PHPExcel_Cell_DataValidation::TYPE_LIST ); +$objValidation->setErrorStyle( PHPExcel_Cell_DataValidation::STYLE_INFORMATION ); +$objValidation->setAllowBlank(false); +$objValidation->setShowInputMessage(true); +$objValidation->setShowErrorMessage(true); +$objValidation->setShowDropDown(true); +$objValidation->setErrorTitle('Input error'); +$objValidation->setError('Value is not in list.'); +$objValidation->setPromptTitle('Pick from list'); +$objValidation->setPrompt('Please pick a value from the drop-down list.'); +$objValidation->setFormula1('$D$2:$D$6'); // Make sure NOT to put a range of cells or a formula between " and " !!! + +$objValidation = $objPHPExcel->getActiveSheet()->getCell('B9')->getDataValidation(); +$objValidation->setType( PHPExcel_Cell_DataValidation::TYPE_TEXTLENGTH ); +$objValidation->setErrorStyle( PHPExcel_Cell_DataValidation::STYLE_STOP ); +$objValidation->setAllowBlank(true); +$objValidation->setShowInputMessage(true); +$objValidation->setShowErrorMessage(true); +$objValidation->setErrorTitle('Input error'); +$objValidation->setError('Text exceeds maximum length'); +$objValidation->setPromptTitle('Allowed input'); +$objValidation->setPrompt('Maximum text length is 6 characters.'); +$objValidation->setFormula1(6); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/15datavalidation.php b/src/vendor/phpoffice/phpexcel/Examples/15datavalidation.php new file mode 100644 index 0000000..132063d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/15datavalidation.php @@ -0,0 +1,156 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Create a first sheet +echo date('H:i:s') , " Add data" , EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', "Cell B3 and B5 contain data validation...") + ->setCellValue('A3', "Number:") + ->setCellValue('B3', "10") + ->setCellValue('A5', "List:") + ->setCellValue('B5', "Item A") + ->setCellValue('A7', "List #2:") + ->setCellValue('B7', "Item #2") + ->setCellValue('D2', "Item #1") + ->setCellValue('D3', "Item #2") + ->setCellValue('D4', "Item #3") + ->setCellValue('D5', "Item #4") + ->setCellValue('D6', "Item #5") + ->setCellValue('A9', 'Text:') + ; + + +// Set data validation +echo date('H:i:s') , " Set data validation" , EOL; +$objValidation = $objPHPExcel->getActiveSheet()->getCell('B3')->getDataValidation(); +$objValidation->setType( PHPExcel_Cell_DataValidation::TYPE_WHOLE ); +$objValidation->setErrorStyle( PHPExcel_Cell_DataValidation::STYLE_STOP ); +$objValidation->setAllowBlank(true); +$objValidation->setShowInputMessage(true); +$objValidation->setShowErrorMessage(true); +$objValidation->setErrorTitle('Input error'); +$objValidation->setError('Only numbers between 10 and 20 are allowed!'); +$objValidation->setPromptTitle('Allowed input'); +$objValidation->setPrompt('Only numbers between 10 and 20 are allowed.'); +$objValidation->setFormula1(10); +$objValidation->setFormula2(20); + +$objValidation = $objPHPExcel->getActiveSheet()->getCell('B5')->getDataValidation(); +$objValidation->setType( PHPExcel_Cell_DataValidation::TYPE_LIST ); +$objValidation->setErrorStyle( PHPExcel_Cell_DataValidation::STYLE_INFORMATION ); +$objValidation->setAllowBlank(false); +$objValidation->setShowInputMessage(true); +$objValidation->setShowErrorMessage(true); +$objValidation->setShowDropDown(true); +$objValidation->setErrorTitle('Input error'); +$objValidation->setError('Value is not in list.'); +$objValidation->setPromptTitle('Pick from list'); +$objValidation->setPrompt('Please pick a value from the drop-down list.'); +$objValidation->setFormula1('"Item A,Item B,Item C"'); // Make sure to put the list items between " and " if your list is simply a comma-separated list of values !!! + + +$objValidation = $objPHPExcel->getActiveSheet()->getCell('B7')->getDataValidation(); +$objValidation->setType( PHPExcel_Cell_DataValidation::TYPE_LIST ); +$objValidation->setErrorStyle( PHPExcel_Cell_DataValidation::STYLE_INFORMATION ); +$objValidation->setAllowBlank(false); +$objValidation->setShowInputMessage(true); +$objValidation->setShowErrorMessage(true); +$objValidation->setShowDropDown(true); +$objValidation->setErrorTitle('Input error'); +$objValidation->setError('Value is not in list.'); +$objValidation->setPromptTitle('Pick from list'); +$objValidation->setPrompt('Please pick a value from the drop-down list.'); +$objValidation->setFormula1('$D$2:$D$6'); // Make sure NOT to put a range of cells or a formula between " and " !!! + +$objValidation = $objPHPExcel->getActiveSheet()->getCell('B9')->getDataValidation(); +$objValidation->setType( PHPExcel_Cell_DataValidation::TYPE_TEXTLENGTH ); +$objValidation->setErrorStyle( PHPExcel_Cell_DataValidation::STYLE_STOP ); +$objValidation->setAllowBlank(true); +$objValidation->setShowInputMessage(true); +$objValidation->setShowErrorMessage(true); +$objValidation->setErrorTitle('Input error'); +$objValidation->setError('Text exceeds maximum length'); +$objValidation->setPromptTitle('Allowed input'); +$objValidation->setPrompt('Maximum text length is 6 characters.'); +$objValidation->setFormula1(6); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/16csv.php b/src/vendor/phpoffice/phpexcel/Examples/16csv.php new file mode 100644 index 0000000..8d42fcb --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/16csv.php @@ -0,0 +1,105 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +include "05featuredemo.inc.php"; + +/** PHPExcel_IOFactory */ +require_once '../Classes/PHPExcel/IOFactory.php'; + + +echo date('H:i:s') , " Write to CSV format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'CSV')->setDelimiter(',') + ->setEnclosure('"') + ->setSheetIndex(0) + ->save(str_replace('.php', '.csv', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo date('H:i:s') , " File written to " , str_replace('.php', '.csv', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +echo date('H:i:s') , " Read from CSV format" , EOL; +$callStartTime = microtime(true); +$objReader = PHPExcel_IOFactory::createReader('CSV')->setDelimiter(',') + ->setEnclosure('"') + ->setSheetIndex(0); +$objPHPExcelFromCSV = $objReader->load(str_replace('.php', '.csv', __FILE__)); + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo 'Call time to reload Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter2007 = PHPExcel_IOFactory::createWriter($objPHPExcelFromCSV, 'Excel2007'); +$objWriter2007->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +echo date('H:i:s') , " Write to CSV format" , EOL; +$callStartTime = microtime(true); + +$objWriterCSV = PHPExcel_IOFactory::createWriter($objPHPExcelFromCSV, 'CSV'); +$objWriterCSV->setExcelCompatibility(true); +$objWriterCSV->save(str_replace('.php', '_excel.csv', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo date('H:i:s') , " File written to " , str_replace('.php', '_excel.csv', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/17html.php b/src/vendor/phpoffice/phpexcel/Examples/17html.php new file mode 100644 index 0000000..b84f8d4 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/17html.php @@ -0,0 +1,64 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +include "05featuredemo.inc.php"; + +/** PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + + +echo date('H:i:s') , " Write to HTML format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'HTML'); +$objWriter->setSheetIndex(0); +//$objWriter->setImagesRoot('http://www.example.com'); +$objWriter->save(str_replace('.php', '.htm', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo date('H:i:s') , " File written to " , str_replace('.php', '.htm', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/18extendedcalculation.php b/src/vendor/phpoffice/phpexcel/Examples/18extendedcalculation.php new file mode 100644 index 0000000..59aeb30 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/18extendedcalculation.php @@ -0,0 +1,108 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// List functions +echo date('H:i:s') . " List implemented functions\n"; +$objCalc = PHPExcel_Calculation::getInstance(); +print_r($objCalc->listFunctionNames()); + +// Create new PHPExcel object +echo date('H:i:s') . " Create new PHPExcel object\n"; +$objPHPExcel = new PHPExcel(); + +// Add some data, we will use some formulas here +echo date('H:i:s') . " Add some data\n"; +$objPHPExcel->getActiveSheet()->setCellValue('A14', 'Count:'); + +$objPHPExcel->getActiveSheet()->setCellValue('B1', 'Range 1'); +$objPHPExcel->getActiveSheet()->setCellValue('B2', 2); +$objPHPExcel->getActiveSheet()->setCellValue('B3', 8); +$objPHPExcel->getActiveSheet()->setCellValue('B4', 10); +$objPHPExcel->getActiveSheet()->setCellValue('B5', True); +$objPHPExcel->getActiveSheet()->setCellValue('B6', False); +$objPHPExcel->getActiveSheet()->setCellValue('B7', 'Text String'); +$objPHPExcel->getActiveSheet()->setCellValue('B9', '22'); +$objPHPExcel->getActiveSheet()->setCellValue('B10', 4); +$objPHPExcel->getActiveSheet()->setCellValue('B11', 6); +$objPHPExcel->getActiveSheet()->setCellValue('B12', 12); + +$objPHPExcel->getActiveSheet()->setCellValue('B14', '=COUNT(B2:B12)'); + +$objPHPExcel->getActiveSheet()->setCellValue('C1', 'Range 2'); +$objPHPExcel->getActiveSheet()->setCellValue('C2', 1); +$objPHPExcel->getActiveSheet()->setCellValue('C3', 2); +$objPHPExcel->getActiveSheet()->setCellValue('C4', 2); +$objPHPExcel->getActiveSheet()->setCellValue('C5', 3); +$objPHPExcel->getActiveSheet()->setCellValue('C6', 3); +$objPHPExcel->getActiveSheet()->setCellValue('C7', 3); +$objPHPExcel->getActiveSheet()->setCellValue('C8', '0'); +$objPHPExcel->getActiveSheet()->setCellValue('C9', 4); +$objPHPExcel->getActiveSheet()->setCellValue('C10', 4); +$objPHPExcel->getActiveSheet()->setCellValue('C11', 4); +$objPHPExcel->getActiveSheet()->setCellValue('C12', 4); + +$objPHPExcel->getActiveSheet()->setCellValue('C14', '=COUNT(C2:C12)'); + +$objPHPExcel->getActiveSheet()->setCellValue('D1', 'Range 3'); +$objPHPExcel->getActiveSheet()->setCellValue('D2', 2); +$objPHPExcel->getActiveSheet()->setCellValue('D3', 3); +$objPHPExcel->getActiveSheet()->setCellValue('D4', 4); + +$objPHPExcel->getActiveSheet()->setCellValue('D5', '=((D2 * D3) + D4) & " should be 10"'); + +$objPHPExcel->getActiveSheet()->setCellValue('E1', 'Other functions'); +$objPHPExcel->getActiveSheet()->setCellValue('E2', '=PI()'); +$objPHPExcel->getActiveSheet()->setCellValue('E3', '=RAND()'); +$objPHPExcel->getActiveSheet()->setCellValue('E4', '=RANDBETWEEN(5, 10)'); + +$objPHPExcel->getActiveSheet()->setCellValue('E14', 'Count of both ranges:'); +$objPHPExcel->getActiveSheet()->setCellValue('F14', '=COUNT(B2:C12)'); + +// Calculated data +echo date('H:i:s') . " Calculated data\n"; +echo 'Value of B14 [=COUNT(B2:B12)]: ' . $objPHPExcel->getActiveSheet()->getCell('B14')->getCalculatedValue() . "\r\n"; + + +// Echo memory peak usage +echo date('H:i:s') . " Peak memory usage: " . (memory_get_peak_usage(true) / 1024 / 1024) . " MB\r\n"; + +// Echo done +echo date('H:i:s') . " Done" , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/19namedrange.php b/src/vendor/phpoffice/phpexcel/Examples/19namedrange.php new file mode 100644 index 0000000..7876ea5 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/19namedrange.php @@ -0,0 +1,129 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Add some data +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->setActiveSheetIndex(0); +$objPHPExcel->getActiveSheet()->setCellValue('A1', 'Firstname:') + ->setCellValue('A2', 'Lastname:') + ->setCellValue('A3', 'Fullname:') + ->setCellValue('B1', 'Maarten') + ->setCellValue('B2', 'Balliauw') + ->setCellValue('B3', '=B1 & " " & B2'); + +// Define named ranges +echo date('H:i:s') , " Define named ranges" , EOL; +$objPHPExcel->addNamedRange( new PHPExcel_NamedRange('PersonName', $objPHPExcel->getActiveSheet(), 'B1') ); +$objPHPExcel->addNamedRange( new PHPExcel_NamedRange('PersonLN', $objPHPExcel->getActiveSheet(), 'B2') ); + +// Rename named ranges +echo date('H:i:s') , " Rename named ranges" , EOL; +$objPHPExcel->getNamedRange('PersonName')->setName('PersonFN'); + +// Rename worksheet +echo date('H:i:s') , " Rename worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Person'); + + +// Create a new worksheet, after the default sheet +echo date('H:i:s') , " Create new Worksheet object" , EOL; +$objPHPExcel->createSheet(); + +// Add some data to the second sheet, resembling some different data types +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->setActiveSheetIndex(1); +$objPHPExcel->getActiveSheet()->setCellValue('A1', 'Firstname:') + ->setCellValue('A2', 'Lastname:') + ->setCellValue('A3', 'Fullname:') + ->setCellValue('B1', '=PersonFN') + ->setCellValue('B2', '=PersonLN') + ->setCellValue('B3', '=PersonFN & " " & PersonLN'); + +// Resolve range +echo date('H:i:s') , " Resolve range" , EOL; +echo 'Cell B1 {=PersonFN}: ' , $objPHPExcel->getActiveSheet()->getCell('B1')->getCalculatedValue() , EOL; +echo 'Cell B3 {=PersonFN & " " & PersonLN}: ' , $objPHPExcel->getActiveSheet()->getCell('B3')->getCalculatedValue() , EOL; +echo 'Cell Person!B1: ' , $objPHPExcel->getActiveSheet()->getCell('Person!B1')->getCalculatedValue() , EOL; + +// Rename worksheet +echo date('H:i:s') , " Rename worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Person (cloned)'); + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/20readexcel5.php b/src/vendor/phpoffice/phpexcel/Examples/20readexcel5.php new file mode 100644 index 0000000..7625c7b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/20readexcel5.php @@ -0,0 +1,79 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + + +if (!file_exists("14excel5.xls")) { + exit("Please run 14excel5.php first.\n"); +} + +echo date('H:i:s') , " Load workbook from Excel5 file" , EOL; +$callStartTime = microtime(true); + +$objPHPExcel = PHPExcel_IOFactory::load("14excel5.xls"); + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo 'Call time to load Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done reading file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/21pdf.php b/src/vendor/phpoffice/phpexcel/Examples/21pdf.php new file mode 100644 index 0000000..b26ddb8 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/21pdf.php @@ -0,0 +1,94 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +include "05featuredemo.inc.php"; + +/** PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + + +// Change these values to select the Rendering library that you wish to use +// and its directory location on your server +//$rendererName = PHPExcel_Settings::PDF_RENDERER_TCPDF; +//$rendererName = PHPExcel_Settings::PDF_RENDERER_MPDF; +$rendererName = PHPExcel_Settings::PDF_RENDERER_DOMPDF; +//$rendererLibrary = 'tcPDF5.9'; +//$rendererLibrary = 'mPDF5.4'; +$rendererLibrary = 'domPDF0.6.0beta3'; +$rendererLibraryPath = '/php/libraries/PDF/' . $rendererLibrary; + + +echo date('H:i:s') , " Hide grid lines" , EOL; +$objPHPExcel->getActiveSheet()->setShowGridLines(false); + +echo date('H:i:s') , " Set orientation to landscape" , EOL; +$objPHPExcel->getActiveSheet()->getPageSetup()->setOrientation(PHPExcel_Worksheet_PageSetup::ORIENTATION_LANDSCAPE); + + +echo date('H:i:s') , " Write to PDF format using {$rendererName}" , EOL; + +if (!PHPExcel_Settings::setPdfRenderer( + $rendererName, + $rendererLibraryPath + )) { + die( + 'NOTICE: Please set the $rendererName and $rendererLibraryPath values' . + EOL . + 'at the top of this script as appropriate for your directory structure' + ); +} + + +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'PDF'); +$objWriter->setSheetIndex(0); +$objWriter->save(str_replace('.php', '_'.$rendererName.'.pdf', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo date('H:i:s') , " File written to " , str_replace('.php', '_'.$rendererName.'.pdf', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/22heavilyformatted.php b/src/vendor/phpoffice/phpexcel/Examples/22heavilyformatted.php new file mode 100644 index 0000000..98c7d18 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/22heavilyformatted.php @@ -0,0 +1,116 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Add some data +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->setActiveSheetIndex(0); + +$objPHPExcel->getActiveSheet()->getStyle('A1:T100')->applyFromArray( + array('fill' => array( + 'type' => PHPExcel_Style_Fill::FILL_SOLID, + 'color' => array('argb' => 'FFCCFFCC') + ), + 'borders' => array( + 'bottom' => array('style' => PHPExcel_Style_Border::BORDER_THIN), + 'right' => array('style' => PHPExcel_Style_Border::BORDER_MEDIUM) + ) + ) + ); + +$objPHPExcel->getActiveSheet()->getStyle('C5:R95')->applyFromArray( + array('fill' => array( + 'type' => PHPExcel_Style_Fill::FILL_SOLID, + 'color' => array('argb' => 'FFFFFF00') + ), + ) + ); + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/23sharedstyles.php b/src/vendor/phpoffice/phpexcel/Examples/23sharedstyles.php new file mode 100644 index 0000000..22eadba --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/23sharedstyles.php @@ -0,0 +1,124 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + + +// Add some data +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->setActiveSheetIndex(0); + +$sharedStyle1 = new PHPExcel_Style(); +$sharedStyle2 = new PHPExcel_Style(); + +$sharedStyle1->applyFromArray( + array('fill' => array( + 'type' => PHPExcel_Style_Fill::FILL_SOLID, + 'color' => array('argb' => 'FFCCFFCC') + ), + 'borders' => array( + 'bottom' => array('style' => PHPExcel_Style_Border::BORDER_THIN), + 'right' => array('style' => PHPExcel_Style_Border::BORDER_MEDIUM) + ) + )); + +$sharedStyle2->applyFromArray( + array('fill' => array( + 'type' => PHPExcel_Style_Fill::FILL_SOLID, + 'color' => array('argb' => 'FFFFFF00') + ), + 'borders' => array( + 'bottom' => array('style' => PHPExcel_Style_Border::BORDER_THIN), + 'right' => array('style' => PHPExcel_Style_Border::BORDER_MEDIUM) + ) + )); + +$objPHPExcel->getActiveSheet()->setSharedStyle($sharedStyle1, "A1:T100"); +$objPHPExcel->getActiveSheet()->setSharedStyle($sharedStyle2, "C5:R95"); + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/24readfilter.php b/src/vendor/phpoffice/phpexcel/Examples/24readfilter.php new file mode 100644 index 0000000..000d180 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/24readfilter.php @@ -0,0 +1,77 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + + +// Check prerequisites +if (!file_exists("06largescale.xlsx")) { + exit("Please run 06largescale.php first.\n"); +} + +class MyReadFilter implements PHPExcel_Reader_IReadFilter +{ + public function readCell($column, $row, $worksheetName = '') { + // Read title row and rows 20 - 30 + if ($row == 1 || ($row >= 20 && $row <= 30)) { + return true; + } + + return false; + } +} + + +echo date('H:i:s') , " Load from Excel2007 file" , EOL; +$objReader = PHPExcel_IOFactory::createReader('Excel2007'); +$objReader->setReadFilter( new MyReadFilter() ); +$objPHPExcel = $objReader->load("06largescale.xlsx"); + +echo date('H:i:s') , " Remove unnecessary rows" , EOL; +$objPHPExcel->getActiveSheet()->removeRow(2, 18); + +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/25inmemoryimage.php b/src/vendor/phpoffice/phpexcel/Examples/25inmemoryimage.php new file mode 100644 index 0000000..6c3b0b8 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/25inmemoryimage.php @@ -0,0 +1,89 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + +// Generate an image +echo date('H:i:s') , " Generate an image" , EOL; +$gdImage = @imagecreatetruecolor(120, 20) or die('Cannot Initialize new GD image stream'); +$textColor = imagecolorallocate($gdImage, 255, 255, 255); +imagestring($gdImage, 1, 5, 5, 'Created with PHPExcel', $textColor); + +// Add a drawing to the worksheet +echo date('H:i:s') , " Add a drawing to the worksheet" , EOL; +$objDrawing = new PHPExcel_Worksheet_MemoryDrawing(); +$objDrawing->setName('Sample image'); +$objDrawing->setDescription('Sample image'); +$objDrawing->setImageResource($gdImage); +$objDrawing->setRenderingFunction(PHPExcel_Worksheet_MemoryDrawing::RENDERING_JPEG); +$objDrawing->setMimeType(PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_DEFAULT); +$objDrawing->setHeight(36); +$objDrawing->setWorksheet($objPHPExcel->getActiveSheet()); + +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +echo date('H:i:s') , " Write to HTML format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'HTML'); +$objWriter->save(str_replace('.php', '.html', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.html', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/26utf8.php b/src/vendor/phpoffice/phpexcel/Examples/26utf8.php new file mode 100644 index 0000000..112c5c7 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/26utf8.php @@ -0,0 +1,122 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Change these values to select the PDF Rendering library that you wish to use +// and its directory location on your server +//$rendererName = PHPExcel_Settings::PDF_RENDERER_TCPDF; +//$rendererName = PHPExcel_Settings::PDF_RENDERER_MPDF; +$rendererName = PHPExcel_Settings::PDF_RENDERER_DOMPDF; +//$rendererLibrary = 'tcPDF5.9'; +//$rendererLibrary = 'mPDF5.4'; +$rendererLibrary = 'domPDF0.6.0beta3'; +$rendererLibraryPath = '/php/libraries/PDF/' . $rendererLibrary; + + +// Read from Excel2007 (.xlsx) template +echo date('H:i:s') , " Load Excel2007 template file" , EOL; +$objReader = PHPExcel_IOFactory::createReader('Excel2007'); +$objPHPExcel = $objReader->load("templates/26template.xlsx"); + +/** at this point, we could do some manipulations with the template, but we skip this step */ + +// Export to Excel2007 (.xlsx) +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + +// Export to Excel5 (.xls) +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + +// Export to HTML (.html) +echo date('H:i:s') , " Write to HTML format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'HTML'); +$objWriter->save(str_replace('.php', '.htm', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.htm', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + +// Export to PDF (.pdf) +echo date('H:i:s') , " Write to PDF format" , EOL; +try { + if (!PHPExcel_Settings::setPdfRenderer( + $rendererName, + $rendererLibraryPath + )) { + echo ( + 'NOTICE: Please set the $rendererName and $rendererLibraryPath values' . + EOL . + 'at the top of this script as appropriate for your directory structure' . + EOL + ); + } else { + $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'PDF'); + $objWriter->save(str_replace('.php', '.pdf', __FILE__)); + echo date('H:i:s') , " File written to " , str_replace('.php', '.pdf', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + } +} catch (Exception $e) { + echo date('H:i:s') , ' EXCEPTION: ', $e->getMessage() , EOL; +} + +// Remove first two rows with field headers before exporting to CSV +echo date('H:i:s') , " Removing first two heading rows for CSV export" , EOL; +$objWorksheet = $objPHPExcel->getActiveSheet(); +$objWorksheet->removeRow(1, 2); + +// Export to CSV (.csv) +echo date('H:i:s') , " Write to CSV format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'CSV'); +$objWriter->save(str_replace('.php', '.csv', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.csv', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + +// Export to CSV with BOM (.csv) +echo date('H:i:s') , " Write to CSV format (with BOM)" , EOL; +$objWriter->setUseBOM(true); +$objWriter->save(str_replace('.php', '-bom.csv', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '-bom.csv', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/27imagesexcel5.php b/src/vendor/phpoffice/phpexcel/Examples/27imagesexcel5.php new file mode 100644 index 0000000..a4f6a9d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/27imagesexcel5.php @@ -0,0 +1,64 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Read from Excel5 (.xls) template +echo date('H:i:s') , " Load Excel2007 template file" , EOL; +$objReader = PHPExcel_IOFactory::createReader('Excel5'); +$objPHPExcel = $objReader->load("templates/27template.xls"); + +// Export to Excel2007 (.xlsx) +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + +// Export to Excel5 (.xls) +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/28iterator.php b/src/vendor/phpoffice/phpexcel/Examples/28iterator.php new file mode 100644 index 0000000..1ba9cbe --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/28iterator.php @@ -0,0 +1,82 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + + +echo date('H:i:s') , " Load from Excel2007 file" , EOL; +$objReader = PHPExcel_IOFactory::createReader('Excel2007'); +$objPHPExcel = $objReader->load("./templates/28iterators.xlsx"); + +echo date('H:i:s') , " Iterate worksheets by Row" , EOL; +foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) { + echo 'Worksheet - ' , $worksheet->getTitle() , EOL; + + foreach ($worksheet->getRowIterator() as $row) { + echo ' Row number - ' , $row->getRowIndex() , EOL; + + $cellIterator = $row->getCellIterator(); + $cellIterator->setIterateOnlyExistingCells(false); // Loop all cells, even if it is not set + foreach ($cellIterator as $cell) { + if (!is_null($cell)) { + echo ' Cell - ' , $cell->getCoordinate() , ' - ' , $cell->getCalculatedValue() , EOL; + } + } + } +} + + +echo date('H:i:s') , " Iterate worksheets by Column" , EOL; +foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) { + echo 'Worksheet - ' , $worksheet->getTitle() , EOL; + + foreach ($worksheet->getColumnIterator() as $column) { + echo ' Column index - ' , $column->getColumnIndex() , EOL; + + $cellIterator = $column->getCellIterator(); + $cellIterator->setIterateOnlyExistingCells(true); // Loop all cells, even if it is not set + foreach ($cellIterator as $cell) { + if (!is_null($cell)) { + echo ' Cell - ' , $cell->getCoordinate() , ' - ' , $cell->getCalculatedValue() , EOL; + } + } + } +} + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/29advancedvaluebinder.php b/src/vendor/phpoffice/phpexcel/Examples/29advancedvaluebinder.php new file mode 100644 index 0000000..a172c6c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/29advancedvaluebinder.php @@ -0,0 +1,183 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +/** PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Set timezone +echo date('H:i:s') , " Set timezone" , EOL; +date_default_timezone_set('UTC'); + +// Set value binder +echo date('H:i:s') , " Set value binder" , EOL; +PHPExcel_Cell::setValueBinder( new PHPExcel_Cell_AdvancedValueBinder() ); + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") + ->setKeywords("office 2007 openxml php") + ->setCategory("Test result file"); + +// Set default font +echo date('H:i:s') , " Set default font" , EOL; +$objPHPExcel->getActiveSheet()->getDefaultStyle()->getFont()->setName('Arial'); +$objPHPExcel->getActiveSheet()->getDefaultStyle()->getFont()->setSize(10); + +// Set column widths +echo date('H:i:s') , " Set column widths" , EOL; +$objPHPExcel->getActiveSheet()->getColumnDimension('A')->setAutoSize(true); +$objPHPExcel->getActiveSheet()->getColumnDimension('B')->setWidth(14); + +// Add some data, resembling some different data types +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->getActiveSheet()->setCellValue('A1', 'String value:') + ->setCellValue('B1', 'Mark Baker'); + +$objPHPExcel->getActiveSheet()->setCellValue('A2', 'Numeric value #1:') + ->setCellValue('B2', 12345); + +$objPHPExcel->getActiveSheet()->setCellValue('A3', 'Numeric value #2:') + ->setCellValue('B3', -12.345); + +$objPHPExcel->getActiveSheet()->setCellValue('A4', 'Numeric value #3:') + ->setCellValue('B4', .12345); + +$objPHPExcel->getActiveSheet()->setCellValue('A5', 'Numeric value #4:') + ->setCellValue('B5', '12345'); + +$objPHPExcel->getActiveSheet()->setCellValue('A6', 'Numeric value #5:') + ->setCellValue('B6', '1.2345'); + +$objPHPExcel->getActiveSheet()->setCellValue('A7', 'Numeric value #6:') + ->setCellValue('B7', '.12345'); + +$objPHPExcel->getActiveSheet()->setCellValue('A8', 'Numeric value #7:') + ->setCellValue('B8', '1.234e-5'); + +$objPHPExcel->getActiveSheet()->setCellValue('A9', 'Numeric value #8:') + ->setCellValue('B9', '-1.234e+5'); + +$objPHPExcel->getActiveSheet()->setCellValue('A10', 'Boolean value:') + ->setCellValue('B10', 'TRUE'); + +$objPHPExcel->getActiveSheet()->setCellValue('A11', 'Percentage value #1:') + ->setCellValue('B11', '10%'); + +$objPHPExcel->getActiveSheet()->setCellValue('A12', 'Percentage value #2:') + ->setCellValue('B12', '12.5%'); + +$objPHPExcel->getActiveSheet()->setCellValue('A13', 'Fraction value #1:') + ->setCellValue('B13', '-1/2'); + +$objPHPExcel->getActiveSheet()->setCellValue('A14', 'Fraction value #2:') + ->setCellValue('B14', '3 1/2'); + +$objPHPExcel->getActiveSheet()->setCellValue('A15', 'Fraction value #3:') + ->setCellValue('B15', '-12 3/4'); + +$objPHPExcel->getActiveSheet()->setCellValue('A16', 'Fraction value #4:') + ->setCellValue('B16', '13/4'); + +$objPHPExcel->getActiveSheet()->setCellValue('A17', 'Currency value #1:') + ->setCellValue('B17', '$12345'); + +$objPHPExcel->getActiveSheet()->setCellValue('A18', 'Currency value #2:') + ->setCellValue('B18', '$12345.67'); + +$objPHPExcel->getActiveSheet()->setCellValue('A19', 'Currency value #3:') + ->setCellValue('B19', '$12,345.67'); + +$objPHPExcel->getActiveSheet()->setCellValue('A20', 'Date value #1:') + ->setCellValue('B20', '21 December 1983'); + +$objPHPExcel->getActiveSheet()->setCellValue('A21', 'Date value #2:') + ->setCellValue('B21', '19-Dec-1960'); + +$objPHPExcel->getActiveSheet()->setCellValue('A22', 'Date value #3:') + ->setCellValue('B22', '07/12/1982'); + +$objPHPExcel->getActiveSheet()->setCellValue('A23', 'Date value #4:') + ->setCellValue('B23', '24-11-1950'); + +$objPHPExcel->getActiveSheet()->setCellValue('A24', 'Date value #5:') + ->setCellValue('B24', '17-Mar'); + +$objPHPExcel->getActiveSheet()->setCellValue('A25', 'Time value #1:') + ->setCellValue('B25', '01:30'); + +$objPHPExcel->getActiveSheet()->setCellValue('A26', 'Time value #2:') + ->setCellValue('B26', '01:30:15'); + +$objPHPExcel->getActiveSheet()->setCellValue('A27', 'Date/Time value:') + ->setCellValue('B27', '19-Dec-1960 01:30'); + +$objPHPExcel->getActiveSheet()->setCellValue('A28', 'Formula:') + ->setCellValue('B28', '=SUM(B2:B9)'); + +// Rename worksheet +echo date('H:i:s') , " Rename worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Advanced value binder'); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +// Save Excel5 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/30template.php b/src/vendor/phpoffice/phpexcel/Examples/30template.php new file mode 100644 index 0000000..db9cbb4 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/30template.php @@ -0,0 +1,91 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + + + +echo date('H:i:s') , " Load from Excel5 template" , EOL; +$objReader = PHPExcel_IOFactory::createReader('Excel5'); +$objPHPExcel = $objReader->load("templates/30template.xls"); + + + + +echo date('H:i:s') , " Add new data to the template" , EOL; +$data = array(array('title' => 'Excel for dummies', + 'price' => 17.99, + 'quantity' => 2 + ), + array('title' => 'PHP for dummies', + 'price' => 15.99, + 'quantity' => 1 + ), + array('title' => 'Inside OOP', + 'price' => 12.95, + 'quantity' => 1 + ) + ); + +$objPHPExcel->getActiveSheet()->setCellValue('D1', PHPExcel_Shared_Date::PHPToExcel(time())); + +$baseRow = 5; +foreach($data as $r => $dataRow) { + $row = $baseRow + $r; + $objPHPExcel->getActiveSheet()->insertNewRowBefore($row,1); + + $objPHPExcel->getActiveSheet()->setCellValue('A'.$row, $r+1) + ->setCellValue('B'.$row, $dataRow['title']) + ->setCellValue('C'.$row, $dataRow['price']) + ->setCellValue('D'.$row, $dataRow['quantity']) + ->setCellValue('E'.$row, '=C'.$row.'*D'.$row); +} +$objPHPExcel->getActiveSheet()->removeRow($baseRow-1,1); + + +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/31docproperties_write-xls.php b/src/vendor/phpoffice/phpexcel/Examples/31docproperties_write-xls.php new file mode 100644 index 0000000..e9a5e87 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/31docproperties_write-xls.php @@ -0,0 +1,119 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +$inputFileType = 'Excel5'; +$inputFileName = 'templates/31docproperties.xls'; + + +echo date('H:i:s') , " Load Tests from $inputFileType file" , EOL; +$callStartTime = microtime(true); + +$objPHPExcelReader = PHPExcel_IOFactory::createReader($inputFileType); +$objPHPExcel = $objPHPExcelReader->load($inputFileName); + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo 'Call time to read Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +echo date('H:i:s') , " Adjust properties" , EOL; +$objPHPExcel->getProperties()->setTitle("Office 95 XLS Test Document") + ->setSubject("Office 95 XLS Test Document") + ->setDescription("Test XLS document, generated using PHPExcel") + ->setKeywords("office 95 biff php"); + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " . (memory_get_peak_usage(true) / 1024 / 1024) . " MB" , EOL; + + +echo EOL; +// Reread File +echo date('H:i:s') , " Reread Excel5 file" , EOL; +$objPHPExcelRead = PHPExcel_IOFactory::load(str_replace('.php', '.xls', __FILE__)); + +// Set properties +echo date('H:i:s') , " Get properties" , EOL; + +echo 'Core Properties:' , EOL; +echo ' Created by - ' , $objPHPExcel->getProperties()->getCreator() , EOL; +echo ' Created on - ' , date('d-M-Y',$objPHPExcel->getProperties()->getCreated()) , ' at ' , + date('H:i:s',$objPHPExcel->getProperties()->getCreated()) , EOL; +echo ' Last Modified by - ' , $objPHPExcel->getProperties()->getLastModifiedBy() , EOL; +echo ' Last Modified on - ' , date('d-M-Y',$objPHPExcel->getProperties()->getModified()) , ' at ' , + date('H:i:s',$objPHPExcel->getProperties()->getModified()) , EOL; +echo ' Title - ' , $objPHPExcel->getProperties()->getTitle() , EOL; +echo ' Subject - ' , $objPHPExcel->getProperties()->getSubject() , EOL; +echo ' Description - ' , $objPHPExcel->getProperties()->getDescription() , EOL; +echo ' Keywords: - ' , $objPHPExcel->getProperties()->getKeywords() , EOL; + + +echo 'Extended (Application) Properties:' , EOL; +echo ' Category - ' , $objPHPExcel->getProperties()->getCategory() , EOL; +echo ' Company - ' , $objPHPExcel->getProperties()->getCompany() , EOL; +echo ' Manager - ' , $objPHPExcel->getProperties()->getManager() , EOL; + + +echo 'Custom Properties:' , EOL; +$customProperties = $objPHPExcel->getProperties()->getCustomProperties(); +foreach($customProperties as $customProperty) { + $propertyValue = $objPHPExcel->getProperties()->getCustomPropertyValue($customProperty); + $propertyType = $objPHPExcel->getProperties()->getCustomPropertyType($customProperty); + echo ' ' , $customProperty , ' - (' , $propertyType , ') - '; + if ($propertyType == PHPExcel_DocumentProperties::PROPERTY_TYPE_DATE) { + echo date('d-M-Y H:i:s',$propertyValue) , EOL; + } elseif ($propertyType == PHPExcel_DocumentProperties::PROPERTY_TYPE_BOOLEAN) { + echo (($propertyValue) ? 'TRUE' : 'FALSE') , EOL; + } else { + echo $propertyValue , EOL; + } +} + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) . " MB" , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/31docproperties_write.php b/src/vendor/phpoffice/phpexcel/Examples/31docproperties_write.php new file mode 100644 index 0000000..4cd4779 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/31docproperties_write.php @@ -0,0 +1,119 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +$inputFileType = 'Excel2007'; +$inputFileName = 'templates/31docproperties.xlsx'; + + +echo date('H:i:s') , " Load Tests from $inputFileType file" , EOL; +$callStartTime = microtime(true); + +$objPHPExcelReader = PHPExcel_IOFactory::createReader($inputFileType); +$objPHPExcel = $objPHPExcelReader->load($inputFileName); + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo 'Call time to read Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +echo date('H:i:s') , " Adjust properties" , EOL; +$objPHPExcel->getProperties()->setTitle("Office 2007 XLSX Test Document") + ->setSubject("Office 2007 XLSX Test Document") + ->setDescription("Test XLSX document, generated using PHPExcel") + ->setKeywords("office 2007 openxml php"); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " . (memory_get_peak_usage(true) / 1024 / 1024) . " MB" , EOL; + + +echo EOL; +// Reread File +echo date('H:i:s') , " Reread Excel2007 file" , EOL; +$objPHPExcelRead = PHPExcel_IOFactory::load(str_replace('.php', '.xlsx', __FILE__)); + +// Set properties +echo date('H:i:s') , " Get properties" , EOL; + +echo 'Core Properties:' , EOL; +echo ' Created by - ' , $objPHPExcel->getProperties()->getCreator() , EOL; +echo ' Created on - ' , date('d-M-Y',$objPHPExcel->getProperties()->getCreated()) , ' at ' , + date('H:i:s',$objPHPExcel->getProperties()->getCreated()) , EOL; +echo ' Last Modified by - ' , $objPHPExcel->getProperties()->getLastModifiedBy() , EOL; +echo ' Last Modified on - ' , date('d-M-Y',$objPHPExcel->getProperties()->getModified()) , ' at ' , + date('H:i:s',$objPHPExcel->getProperties()->getModified()) , EOL; +echo ' Title - ' , $objPHPExcel->getProperties()->getTitle() , EOL; +echo ' Subject - ' , $objPHPExcel->getProperties()->getSubject() , EOL; +echo ' Description - ' , $objPHPExcel->getProperties()->getDescription() , EOL; +echo ' Keywords: - ' , $objPHPExcel->getProperties()->getKeywords() , EOL; + + +echo 'Extended (Application) Properties:' , EOL; +echo ' Category - ' , $objPHPExcel->getProperties()->getCategory() , EOL; +echo ' Company - ' , $objPHPExcel->getProperties()->getCompany() , EOL; +echo ' Manager - ' , $objPHPExcel->getProperties()->getManager() , EOL; + + +echo 'Custom Properties:' , EOL; +$customProperties = $objPHPExcel->getProperties()->getCustomProperties(); +foreach($customProperties as $customProperty) { + $propertyValue = $objPHPExcel->getProperties()->getCustomPropertyValue($customProperty); + $propertyType = $objPHPExcel->getProperties()->getCustomPropertyType($customProperty); + echo ' ' , $customProperty , ' - (' , $propertyType , ') - '; + if ($propertyType == PHPExcel_DocumentProperties::PROPERTY_TYPE_DATE) { + echo date('d-M-Y H:i:s',$propertyValue) , EOL; + } elseif ($propertyType == PHPExcel_DocumentProperties::PROPERTY_TYPE_BOOLEAN) { + echo (($propertyValue) ? 'TRUE' : 'FALSE') , EOL; + } else { + echo $propertyValue , EOL; + } +} + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) . " MB" , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/32chartreadwrite.php b/src/vendor/phpoffice/phpexcel/Examples/32chartreadwrite.php new file mode 100644 index 0000000..5aeedca --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/32chartreadwrite.php @@ -0,0 +1,131 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + +$inputFileType = 'Excel2007'; +$inputFileNames = 'templates/32readwrite*[0-9].xlsx'; + +if ((isset($argc)) && ($argc > 1)) { + $inputFileNames = array(); + for($i = 1; $i < $argc; ++$i) { + $inputFileNames[] = dirname(__FILE__) . '/templates/' . $argv[$i]; + } +} else { + $inputFileNames = glob($inputFileNames); +} +foreach($inputFileNames as $inputFileName) { + $inputFileNameShort = basename($inputFileName); + + if (!file_exists($inputFileName)) { + echo date('H:i:s') , " File " , $inputFileNameShort , ' does not exist' , EOL; + continue; + } + + echo date('H:i:s') , " Load Test from $inputFileType file " , $inputFileNameShort , EOL; + + $objReader = PHPExcel_IOFactory::createReader($inputFileType); + $objReader->setIncludeCharts(TRUE); + $objPHPExcel = $objReader->load($inputFileName); + + + echo date('H:i:s') , " Iterate worksheets looking at the charts" , EOL; + foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) { + $sheetName = $worksheet->getTitle(); + echo 'Worksheet: ' , $sheetName , EOL; + + $chartNames = $worksheet->getChartNames(); + if(empty($chartNames)) { + echo ' There are no charts in this worksheet' , EOL; + } else { + natsort($chartNames); + foreach($chartNames as $i => $chartName) { + $chart = $worksheet->getChartByName($chartName); + if (!is_null($chart->getTitle())) { + $caption = '"' . implode(' ',$chart->getTitle()->getCaption()) . '"'; + } else { + $caption = 'Untitled'; + } + echo ' ' , $chartName , ' - ' , $caption , EOL; + echo str_repeat(' ',strlen($chartName)+3); + $groupCount = $chart->getPlotArea()->getPlotGroupCount(); + if ($groupCount == 1) { + $chartType = $chart->getPlotArea()->getPlotGroupByIndex(0)->getPlotType(); + echo ' ' , $chartType , EOL; + } else { + $chartTypes = array(); + for($i = 0; $i < $groupCount; ++$i) { + $chartTypes[] = $chart->getPlotArea()->getPlotGroupByIndex($i)->getPlotType(); + } + $chartTypes = array_unique($chartTypes); + if (count($chartTypes) == 1) { + $chartType = 'Multiple Plot ' . array_pop($chartTypes); + echo ' ' , $chartType , EOL; + } elseif (count($chartTypes) == 0) { + echo ' *** Type not yet implemented' , EOL; + } else { + echo ' Combination Chart' , EOL; + } + } + } + } + } + + + $outputFileName = basename($inputFileName); + + echo date('H:i:s') , " Write Tests to Excel2007 file " , EOL; + $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); + $objWriter->setIncludeCharts(TRUE); + $objWriter->save($outputFileName); + echo date('H:i:s') , " File written to " , $outputFileName , EOL; + + $objPHPExcel->disconnectWorksheets(); + unset($objPHPExcel); +} + +// Echo memory peak usage +echo date('H:i:s') , ' Peak memory usage: ' , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-area.php b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-area.php new file mode 100644 index 0000000..fac8ce9 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-area.php @@ -0,0 +1,142 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +$objPHPExcel = new PHPExcel(); +$objWorksheet = $objPHPExcel->getActiveSheet(); +$objWorksheet->fromArray( + array( + array('', 2010, 2011, 2012), + array('Q1', 12, 15, 21), + array('Q2', 56, 73, 86), + array('Q3', 52, 61, 69), + array('Q4', 30, 32, 0), + ) +); + +// Set the Labels for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesLabels = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$B$1', NULL, 1), // 2010 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$C$1', NULL, 1), // 2011 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$D$1', NULL, 1), // 2012 +); +// Set the X-Axis Labels +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$xAxisTickValues = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$A$5', NULL, 4), // Q1 to Q4 +); +// Set the Data values for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesValues = array( + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$B$2:$B$5', NULL, 4), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$C$2:$C$5', NULL, 4), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$D$2:$D$5', NULL, 4), +); + +// Build the dataseries +$series = new PHPExcel_Chart_DataSeries( + PHPExcel_Chart_DataSeries::TYPE_AREACHART, // plotType + PHPExcel_Chart_DataSeries::GROUPING_PERCENT_STACKED, // plotGrouping + range(0, count($dataSeriesValues)-1), // plotOrder + $dataSeriesLabels, // plotLabel + $xAxisTickValues, // plotCategory + $dataSeriesValues // plotValues +); + +// Set the series in the plot area +$plotArea = new PHPExcel_Chart_PlotArea(NULL, array($series)); +// Set the chart legend +$legend = new PHPExcel_Chart_Legend(PHPExcel_Chart_Legend::POSITION_TOPRIGHT, NULL, false); + +$title = new PHPExcel_Chart_Title('Test %age-Stacked Area Chart'); +$yAxisLabel = new PHPExcel_Chart_Title('Value ($k)'); + + +// Create the chart +$chart = new PHPExcel_Chart( + 'chart1', // name + $title, // title + $legend, // legend + $plotArea, // plotArea + true, // plotVisibleOnly + 0, // displayBlanksAs + NULL, // xAxisLabel + $yAxisLabel // yAxisLabel +); + +// Set the position where the chart should appear in the worksheet +$chart->setTopLeftPosition('A7'); +$chart->setBottomRightPosition('H20'); + +// Add the chart to the worksheet +$objWorksheet->addChart($chart); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->setIncludeCharts(TRUE); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-bar-stacked.php b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-bar-stacked.php new file mode 100644 index 0000000..af9493f --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-bar-stacked.php @@ -0,0 +1,145 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +$objPHPExcel = new PHPExcel(); +$objWorksheet = $objPHPExcel->getActiveSheet(); +$objWorksheet->fromArray( + array( + array('', 2010, 2011, 2012), + array('Q1', 12, 15, 21), + array('Q2', 56, 73, 86), + array('Q3', 52, 61, 69), + array('Q4', 30, 32, 0), + ) +); + +// Set the Labels for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesLabels = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$B$1', NULL, 1), // 2010 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$C$1', NULL, 1), // 2011 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$D$1', NULL, 1), // 2012 +); +// Set the X-Axis Labels +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$xAxisTickValues = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$A$5', NULL, 4), // Q1 to Q4 +); +// Set the Data values for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesValues = array( + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$B$2:$B$5', NULL, 4), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$C$2:$C$5', NULL, 4), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$D$2:$D$5', NULL, 4), +); + +// Build the dataseries +$series = new PHPExcel_Chart_DataSeries( + PHPExcel_Chart_DataSeries::TYPE_BARCHART, // plotType + PHPExcel_Chart_DataSeries::GROUPING_STACKED, // plotGrouping + range(0, count($dataSeriesValues)-1), // plotOrder + $dataSeriesLabels, // plotLabel + $xAxisTickValues, // plotCategory + $dataSeriesValues // plotValues +); +// Set additional dataseries parameters +// Make it a horizontal bar rather than a vertical column graph +$series->setPlotDirection(PHPExcel_Chart_DataSeries::DIRECTION_BAR); + +// Set the series in the plot area +$plotArea = new PHPExcel_Chart_PlotArea(NULL, array($series)); +// Set the chart legend +$legend = new PHPExcel_Chart_Legend(PHPExcel_Chart_Legend::POSITION_RIGHT, NULL, false); + +$title = new PHPExcel_Chart_Title('Test Chart'); +$yAxisLabel = new PHPExcel_Chart_Title('Value ($k)'); + + +// Create the chart +$chart = new PHPExcel_Chart( + 'chart1', // name + $title, // title + $legend, // legend + $plotArea, // plotArea + true, // plotVisibleOnly + 0, // displayBlanksAs + NULL, // xAxisLabel + $yAxisLabel // yAxisLabel +); + +// Set the position where the chart should appear in the worksheet +$chart->setTopLeftPosition('A7'); +$chart->setBottomRightPosition('H20'); + +// Add the chart to the worksheet +$objWorksheet->addChart($chart); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->setIncludeCharts(TRUE); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-bar.php b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-bar.php new file mode 100644 index 0000000..653675d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-bar.php @@ -0,0 +1,145 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +$objPHPExcel = new PHPExcel(); +$objWorksheet = $objPHPExcel->getActiveSheet(); +$objWorksheet->fromArray( + array( + array('', 2010, 2011, 2012), + array('Q1', 12, 15, 21), + array('Q2', 56, 73, 86), + array('Q3', 52, 61, 69), + array('Q4', 30, 32, 0), + ) +); + +// Set the Labels for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesLabels = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$B$1', NULL, 1), // 2010 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$C$1', NULL, 1), // 2011 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$D$1', NULL, 1), // 2012 +); +// Set the X-Axis Labels +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$xAxisTickValues = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$A$5', NULL, 4), // Q1 to Q4 +); +// Set the Data values for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesValues = array( + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$B$2:$B$5', NULL, 4), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$C$2:$C$5', NULL, 4), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$D$2:$D$5', NULL, 4), +); + +// Build the dataseries +$series = new PHPExcel_Chart_DataSeries( + PHPExcel_Chart_DataSeries::TYPE_BARCHART, // plotType + PHPExcel_Chart_DataSeries::GROUPING_CLUSTERED, // plotGrouping + range(0, count($dataSeriesValues)-1), // plotOrder + $dataSeriesLabels, // plotLabel + $xAxisTickValues, // plotCategory + $dataSeriesValues // plotValues +); +// Set additional dataseries parameters +// Make it a horizontal bar rather than a vertical column graph +$series->setPlotDirection(PHPExcel_Chart_DataSeries::DIRECTION_BAR); + +// Set the series in the plot area +$plotArea = new PHPExcel_Chart_PlotArea(NULL, array($series)); +// Set the chart legend +$legend = new PHPExcel_Chart_Legend(PHPExcel_Chart_Legend::POSITION_RIGHT, NULL, false); + +$title = new PHPExcel_Chart_Title('Test Bar Chart'); +$yAxisLabel = new PHPExcel_Chart_Title('Value ($k)'); + + +// Create the chart +$chart = new PHPExcel_Chart( + 'chart1', // name + $title, // title + $legend, // legend + $plotArea, // plotArea + true, // plotVisibleOnly + 0, // displayBlanksAs + NULL, // xAxisLabel + $yAxisLabel // yAxisLabel +); + +// Set the position where the chart should appear in the worksheet +$chart->setTopLeftPosition('A7'); +$chart->setBottomRightPosition('H20'); + +// Add the chart to the worksheet +$objWorksheet->addChart($chart); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->setIncludeCharts(TRUE); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-column-2.php b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-column-2.php new file mode 100644 index 0000000..0ade332 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-column-2.php @@ -0,0 +1,154 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +$objPHPExcel = new PHPExcel(); +$objWorksheet = $objPHPExcel->getActiveSheet(); +$objWorksheet->fromArray( + array( + array('', '', 'Budget', 'Forecast', 'Actual'), + array('2010', 'Q1', 47, 44, 43 ), + array('', 'Q2', 56, 53, 50 ), + array('', 'Q3', 52, 46, 45 ), + array('', 'Q4', 45, 40, 40 ), + array('2011', 'Q1', 51, 42, 46 ), + array('', 'Q2', 53, 58, 56 ), + array('', 'Q3', 64, 66, 69 ), + array('', 'Q4', 54, 55, 56 ), + array('2012', 'Q1', 49, 52, 58 ), + array('', 'Q2', 68, 73, 86 ), + array('', 'Q3', 72, 78, 0 ), + array('', 'Q4', 50, 60, 0 ), + ) +); + +// Set the Labels for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesLabels = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$C$1', NULL, 1), // 'Budget' + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$D$1', NULL, 1), // 'Forecast' + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$E$1', NULL, 1), // 'Actual' +); +// Set the X-Axis Labels +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$xAxisTickValues = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$B$13', NULL, 12), // Q1 to Q4 for 2010 to 2012 +); +// Set the Data values for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesValues = array( + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$C$2:$C$13', NULL, 12), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$D$2:$D$13', NULL, 12), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$E$2:$E$13', NULL, 12), +); + +// Build the dataseries +$series = new PHPExcel_Chart_DataSeries( + PHPExcel_Chart_DataSeries::TYPE_BARCHART, // plotType + PHPExcel_Chart_DataSeries::GROUPING_CLUSTERED, // plotGrouping + range(0, count($dataSeriesValues)-1), // plotOrder + $dataSeriesLabels, // plotLabel + $xAxisTickValues, // plotCategory + $dataSeriesValues // plotValues +); +// Set additional dataseries parameters +// Make it a vertical column rather than a horizontal bar graph +$series->setPlotDirection(PHPExcel_Chart_DataSeries::DIRECTION_COL); + +// Set the series in the plot area +$plotArea = new PHPExcel_Chart_PlotArea(NULL, array($series)); +// Set the chart legend +$legend = new PHPExcel_Chart_Legend(PHPExcel_Chart_Legend::POSITION_BOTTOM, NULL, false); + +$title = new PHPExcel_Chart_Title('Test Grouped Column Chart'); +$xAxisLabel = new PHPExcel_Chart_Title('Financial Period'); +$yAxisLabel = new PHPExcel_Chart_Title('Value ($k)'); + + +// Create the chart +$chart = new PHPExcel_Chart( + 'chart1', // name + $title, // title + $legend, // legend + $plotArea, // plotArea + true, // plotVisibleOnly + 0, // displayBlanksAs + $xAxisLabel, // xAxisLabel + $yAxisLabel // yAxisLabel +); + +// Set the position where the chart should appear in the worksheet +$chart->setTopLeftPosition('G2'); +$chart->setBottomRightPosition('P20'); + +// Add the chart to the worksheet +$objWorksheet->addChart($chart); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->setIncludeCharts(TRUE); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-column.php b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-column.php new file mode 100644 index 0000000..67f4178 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-column.php @@ -0,0 +1,145 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +$objPHPExcel = new PHPExcel(); +$objWorksheet = $objPHPExcel->getActiveSheet(); +$objWorksheet->fromArray( + array( + array('', 2010, 2011, 2012), + array('Q1', 12, 15, 21), + array('Q2', 56, 73, 86), + array('Q3', 52, 61, 69), + array('Q4', 30, 32, 0), + ) +); + +// Set the Labels for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesLabels = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$B$1', NULL, 1), // 2010 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$C$1', NULL, 1), // 2011 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$D$1', NULL, 1), // 2012 +); +// Set the X-Axis Labels +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$xAxisTickValues = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$A$5', NULL, 4), // Q1 to Q4 +); +// Set the Data values for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesValues = array( + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$B$2:$B$5', NULL, 4), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$C$2:$C$5', NULL, 4), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$D$2:$D$5', NULL, 4), +); + +// Build the dataseries +$series = new PHPExcel_Chart_DataSeries( + PHPExcel_Chart_DataSeries::TYPE_BARCHART, // plotType + PHPExcel_Chart_DataSeries::GROUPING_STANDARD, // plotGrouping + range(0, count($dataSeriesValues)-1), // plotOrder + $dataSeriesLabels, // plotLabel + $xAxisTickValues, // plotCategory + $dataSeriesValues // plotValues +); +// Set additional dataseries parameters +// Make it a vertical column rather than a horizontal bar graph +$series->setPlotDirection(PHPExcel_Chart_DataSeries::DIRECTION_COL); + +// Set the series in the plot area +$plotArea = new PHPExcel_Chart_PlotArea(NULL, array($series)); +// Set the chart legend +$legend = new PHPExcel_Chart_Legend(PHPExcel_Chart_Legend::POSITION_RIGHT, NULL, false); + +$title = new PHPExcel_Chart_Title('Test Column Chart'); +$yAxisLabel = new PHPExcel_Chart_Title('Value ($k)'); + + +// Create the chart +$chart = new PHPExcel_Chart( + 'chart1', // name + $title, // title + $legend, // legend + $plotArea, // plotArea + true, // plotVisibleOnly + 0, // displayBlanksAs + NULL, // xAxisLabel + $yAxisLabel // yAxisLabel +); + +// Set the position where the chart should appear in the worksheet +$chart->setTopLeftPosition('A7'); +$chart->setBottomRightPosition('H20'); + +// Add the chart to the worksheet +$objWorksheet->addChart($chart); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->setIncludeCharts(TRUE); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-composite.php b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-composite.php new file mode 100644 index 0000000..be7ad94 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-composite.php @@ -0,0 +1,203 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +$objPHPExcel = new PHPExcel(); +$objWorksheet = $objPHPExcel->getActiveSheet(); +$objWorksheet->fromArray( + array( + array('', 'Rainfall (mm)', 'Temperature (°F)', 'Humidity (%)'), + array('Jan', 78, 52, 61), + array('Feb', 64, 54, 62), + array('Mar', 62, 57, 63), + array('Apr', 21, 62, 59), + array('May', 11, 75, 60), + array('Jun', 1, 75, 57), + array('Jul', 1, 79, 56), + array('Aug', 1, 79, 59), + array('Sep', 10, 75, 60), + array('Oct', 40, 68, 63), + array('Nov', 69, 62, 64), + array('Dec', 89, 57, 66), + ) +); + + +// Set the Labels for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesLabels1 = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$B$1', NULL, 1), // Temperature +); +$dataSeriesLabels2 = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$C$1', NULL, 1), // Rainfall +); +$dataSeriesLabels3 = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$D$1', NULL, 1), // Humidity +); + +// Set the X-Axis Labels +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$xAxisTickValues = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$A$13', NULL, 12), // Jan to Dec +); + + +// Set the Data values for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesValues1 = array( + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$B$2:$B$13', NULL, 12), +); + +// Build the dataseries +$series1 = new PHPExcel_Chart_DataSeries( + PHPExcel_Chart_DataSeries::TYPE_BARCHART, // plotType + PHPExcel_Chart_DataSeries::GROUPING_CLUSTERED, // plotGrouping + range(0, count($dataSeriesValues1)-1), // plotOrder + $dataSeriesLabels1, // plotLabel + $xAxisTickValues, // plotCategory + $dataSeriesValues1 // plotValues +); +// Set additional dataseries parameters +// Make it a vertical column rather than a horizontal bar graph +$series1->setPlotDirection(PHPExcel_Chart_DataSeries::DIRECTION_COL); + + +// Set the Data values for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesValues2 = array( + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$C$2:$C$13', NULL, 12), +); + +// Build the dataseries +$series2 = new PHPExcel_Chart_DataSeries( + PHPExcel_Chart_DataSeries::TYPE_LINECHART, // plotType + PHPExcel_Chart_DataSeries::GROUPING_STANDARD, // plotGrouping + range(0, count($dataSeriesValues2)-1), // plotOrder + $dataSeriesLabels2, // plotLabel + NULL, // plotCategory + $dataSeriesValues2 // plotValues +); + + +// Set the Data values for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesValues3 = array( + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$D$2:$D$13', NULL, 12), +); + +// Build the dataseries +$series3 = new PHPExcel_Chart_DataSeries( + PHPExcel_Chart_DataSeries::TYPE_AREACHART, // plotType + PHPExcel_Chart_DataSeries::GROUPING_STANDARD, // plotGrouping + range(0, count($dataSeriesValues2)-1), // plotOrder + $dataSeriesLabels3, // plotLabel + NULL, // plotCategory + $dataSeriesValues3 // plotValues +); + + +// Set the series in the plot area +$plotArea = new PHPExcel_Chart_PlotArea(NULL, array($series1, $series2, $series3)); +// Set the chart legend +$legend = new PHPExcel_Chart_Legend(PHPExcel_Chart_Legend::POSITION_RIGHT, NULL, false); + +$title = new PHPExcel_Chart_Title('Average Weather Chart for Crete'); + + +// Create the chart +$chart = new PHPExcel_Chart( + 'chart1', // name + $title, // title + $legend, // legend + $plotArea, // plotArea + true, // plotVisibleOnly + 0, // displayBlanksAs + NULL, // xAxisLabel + NULL // yAxisLabel +); + +// Set the position where the chart should appear in the worksheet +$chart->setTopLeftPosition('F2'); +$chart->setBottomRightPosition('O16'); + +// Add the chart to the worksheet +$objWorksheet->addChart($chart); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->setIncludeCharts(TRUE); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-line.php b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-line.php new file mode 100644 index 0000000..90c2e60 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-line.php @@ -0,0 +1,142 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +$objPHPExcel = new PHPExcel(); +$objWorksheet = $objPHPExcel->getActiveSheet(); +$objWorksheet->fromArray( + array( + array('', 2010, 2011, 2012), + array('Q1', 12, 15, 21), + array('Q2', 56, 73, 86), + array('Q3', 52, 61, 69), + array('Q4', 30, 32, 0), + ) +); + +// Set the Labels for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesLabels = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$B$1', NULL, 1), // 2010 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$C$1', NULL, 1), // 2011 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$D$1', NULL, 1), // 2012 +); +// Set the X-Axis Labels +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$xAxisTickValues = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$A$5', NULL, 4), // Q1 to Q4 +); +// Set the Data values for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesValues = array( + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$B$2:$B$5', NULL, 4), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$C$2:$C$5', NULL, 4), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$D$2:$D$5', NULL, 4), +); + +// Build the dataseries +$series = new PHPExcel_Chart_DataSeries( + PHPExcel_Chart_DataSeries::TYPE_LINECHART, // plotType + PHPExcel_Chart_DataSeries::GROUPING_STACKED, // plotGrouping + range(0, count($dataSeriesValues)-1), // plotOrder + $dataSeriesLabels, // plotLabel + $xAxisTickValues, // plotCategory + $dataSeriesValues // plotValues +); + +// Set the series in the plot area +$plotArea = new PHPExcel_Chart_PlotArea(NULL, array($series)); +// Set the chart legend +$legend = new PHPExcel_Chart_Legend(PHPExcel_Chart_Legend::POSITION_TOPRIGHT, NULL, false); + +$title = new PHPExcel_Chart_Title('Test Stacked Line Chart'); +$yAxisLabel = new PHPExcel_Chart_Title('Value ($k)'); + + +// Create the chart +$chart = new PHPExcel_Chart( + 'chart1', // name + $title, // title + $legend, // legend + $plotArea, // plotArea + true, // plotVisibleOnly + 0, // displayBlanksAs + NULL, // xAxisLabel + $yAxisLabel // yAxisLabel +); + +// Set the position where the chart should appear in the worksheet +$chart->setTopLeftPosition('A7'); +$chart->setBottomRightPosition('H20'); + +// Add the chart to the worksheet +$objWorksheet->addChart($chart); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->setIncludeCharts(TRUE); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-multiple-charts.php b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-multiple-charts.php new file mode 100644 index 0000000..0e5ac60 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-multiple-charts.php @@ -0,0 +1,220 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +$objPHPExcel = new PHPExcel(); +$objWorksheet = $objPHPExcel->getActiveSheet(); +$objWorksheet->fromArray( + array( + array('', 2010, 2011, 2012), + array('Q1', 12, 15, 21), + array('Q2', 56, 73, 86), + array('Q3', 52, 61, 69), + array('Q4', 30, 32, 0), + ) +); + + +// Set the Labels for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesLabels1 = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$B$1', NULL, 1), // 2010 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$C$1', NULL, 1), // 2011 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$D$1', NULL, 1), // 2012 +); +// Set the X-Axis Labels +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$xAxisTickValues1 = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$A$5', NULL, 4), // Q1 to Q4 +); +// Set the Data values for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesValues1 = array( + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$B$2:$B$5', NULL, 4), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$C$2:$C$5', NULL, 4), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$D$2:$D$5', NULL, 4), +); + +// Build the dataseries +$series1 = new PHPExcel_Chart_DataSeries( + PHPExcel_Chart_DataSeries::TYPE_AREACHART, // plotType + PHPExcel_Chart_DataSeries::GROUPING_PERCENT_STACKED, // plotGrouping + range(0, count($dataSeriesValues1)-1), // plotOrder + $dataSeriesLabels1, // plotLabel + $xAxisTickValues1, // plotCategory + $dataSeriesValues1 // plotValues +); + +// Set the series in the plot area +$plotArea1 = new PHPExcel_Chart_PlotArea(NULL, array($series1)); +// Set the chart legend +$legend1 = new PHPExcel_Chart_Legend(PHPExcel_Chart_Legend::POSITION_TOPRIGHT, NULL, false); + +$title1 = new PHPExcel_Chart_Title('Test %age-Stacked Area Chart'); +$yAxisLabel1 = new PHPExcel_Chart_Title('Value ($k)'); + + +// Create the chart +$chart1 = new PHPExcel_Chart( + 'chart1', // name + $title1, // title + $legend1, // legend + $plotArea1, // plotArea + true, // plotVisibleOnly + 0, // displayBlanksAs + NULL, // xAxisLabel + $yAxisLabel1 // yAxisLabel +); + +// Set the position where the chart should appear in the worksheet +$chart1->setTopLeftPosition('A7'); +$chart1->setBottomRightPosition('H20'); + +// Add the chart to the worksheet +$objWorksheet->addChart($chart1); + + +// Set the Labels for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesLabels2 = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$B$1', NULL, 1), // 2010 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$C$1', NULL, 1), // 2011 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$D$1', NULL, 1), // 2012 +); +// Set the X-Axis Labels +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$xAxisTickValues2 = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$A$5', NULL, 4), // Q1 to Q4 +); +// Set the Data values for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesValues2 = array( + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$B$2:$B$5', NULL, 4), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$C$2:$C$5', NULL, 4), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$D$2:$D$5', NULL, 4), +); + +// Build the dataseries +$series2 = new PHPExcel_Chart_DataSeries( + PHPExcel_Chart_DataSeries::TYPE_BARCHART, // plotType + PHPExcel_Chart_DataSeries::GROUPING_STANDARD, // plotGrouping + range(0, count($dataSeriesValues2)-1), // plotOrder + $dataSeriesLabels2, // plotLabel + $xAxisTickValues2, // plotCategory + $dataSeriesValues2 // plotValues +); +// Set additional dataseries parameters +// Make it a vertical column rather than a horizontal bar graph +$series2->setPlotDirection(PHPExcel_Chart_DataSeries::DIRECTION_COL); + +// Set the series in the plot area +$plotArea2 = new PHPExcel_Chart_PlotArea(NULL, array($series2)); +// Set the chart legend +$legend2 = new PHPExcel_Chart_Legend(PHPExcel_Chart_Legend::POSITION_RIGHT, NULL, false); + +$title2 = new PHPExcel_Chart_Title('Test Column Chart'); +$yAxisLabel2 = new PHPExcel_Chart_Title('Value ($k)'); + + +// Create the chart +$chart2 = new PHPExcel_Chart( + 'chart2', // name + $title2, // title + $legend2, // legend + $plotArea2, // plotArea + true, // plotVisibleOnly + 0, // displayBlanksAs + NULL, // xAxisLabel + $yAxisLabel2 // yAxisLabel +); + +// Set the position where the chart should appear in the worksheet +$chart2->setTopLeftPosition('I7'); +$chart2->setBottomRightPosition('P20'); + +// Add the chart to the worksheet +$objWorksheet->addChart($chart2); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->setIncludeCharts(TRUE); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-pie.php b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-pie.php new file mode 100644 index 0000000..78b6293 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-pie.php @@ -0,0 +1,215 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +$objPHPExcel = new PHPExcel(); +$objWorksheet = $objPHPExcel->getActiveSheet(); +$objWorksheet->fromArray( + array( + array('', 2010, 2011, 2012), + array('Q1', 12, 15, 21), + array('Q2', 56, 73, 86), + array('Q3', 52, 61, 69), + array('Q4', 30, 32, 0), + ) +); + + +// Set the Labels for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesLabels1 = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$C$1', NULL, 1), // 2011 +); +// Set the X-Axis Labels +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$xAxisTickValues1 = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$A$5', NULL, 4), // Q1 to Q4 +); +// Set the Data values for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesValues1 = array( + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$C$2:$C$5', NULL, 4), +); + +// Build the dataseries +$series1 = new PHPExcel_Chart_DataSeries( + PHPExcel_Chart_DataSeries::TYPE_PIECHART, // plotType + NULL, // plotGrouping (Pie charts don't have any grouping) + range(0, count($dataSeriesValues1)-1), // plotOrder + $dataSeriesLabels1, // plotLabel + $xAxisTickValues1, // plotCategory + $dataSeriesValues1 // plotValues +); + +// Set up a layout object for the Pie chart +$layout1 = new PHPExcel_Chart_Layout(); +$layout1->setShowVal(TRUE); +$layout1->setShowPercent(TRUE); + +// Set the series in the plot area +$plotArea1 = new PHPExcel_Chart_PlotArea($layout1, array($series1)); +// Set the chart legend +$legend1 = new PHPExcel_Chart_Legend(PHPExcel_Chart_Legend::POSITION_RIGHT, NULL, false); + +$title1 = new PHPExcel_Chart_Title('Test Pie Chart'); + + +// Create the chart +$chart1 = new PHPExcel_Chart( + 'chart1', // name + $title1, // title + $legend1, // legend + $plotArea1, // plotArea + true, // plotVisibleOnly + 0, // displayBlanksAs + NULL, // xAxisLabel + NULL // yAxisLabel - Pie charts don't have a Y-Axis +); + +// Set the position where the chart should appear in the worksheet +$chart1->setTopLeftPosition('A7'); +$chart1->setBottomRightPosition('H20'); + +// Add the chart to the worksheet +$objWorksheet->addChart($chart1); + + +// Set the Labels for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesLabels2 = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$C$1', NULL, 1), // 2011 +); +// Set the X-Axis Labels +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$xAxisTickValues2 = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$A$5', NULL, 4), // Q1 to Q4 +); +// Set the Data values for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesValues2 = array( + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$C$2:$C$5', NULL, 4), +); + +// Build the dataseries +$series2 = new PHPExcel_Chart_DataSeries( + PHPExcel_Chart_DataSeries::TYPE_DONUTCHART, // plotType + NULL, // plotGrouping (Donut charts don't have any grouping) + range(0, count($dataSeriesValues2)-1), // plotOrder + $dataSeriesLabels2, // plotLabel + $xAxisTickValues2, // plotCategory + $dataSeriesValues2 // plotValues +); + +// Set up a layout object for the Pie chart +$layout2 = new PHPExcel_Chart_Layout(); +$layout2->setShowVal(TRUE); +$layout2->setShowCatName(TRUE); + +// Set the series in the plot area +$plotArea2 = new PHPExcel_Chart_PlotArea($layout2, array($series2)); + +$title2 = new PHPExcel_Chart_Title('Test Donut Chart'); + + +// Create the chart +$chart2 = new PHPExcel_Chart( + 'chart2', // name + $title2, // title + NULL, // legend + $plotArea2, // plotArea + true, // plotVisibleOnly + 0, // displayBlanksAs + NULL, // xAxisLabel + NULL // yAxisLabel - Like Pie charts, Donut charts don't have a Y-Axis +); + +// Set the position where the chart should appear in the worksheet +$chart2->setTopLeftPosition('I7'); +$chart2->setBottomRightPosition('P20'); + +// Add the chart to the worksheet +$objWorksheet->addChart($chart2); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->setIncludeCharts(TRUE); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-radar.php b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-radar.php new file mode 100644 index 0000000..7d1047a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-radar.php @@ -0,0 +1,155 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +$objPHPExcel = new PHPExcel(); +$objWorksheet = $objPHPExcel->getActiveSheet(); +$objWorksheet->fromArray( + array( + array('', 2010, 2011, 2012), + array('Jan', 47, 45, 71), + array('Feb', 56, 73, 86), + array('Mar', 52, 61, 69), + array('Apr', 40, 52, 60), + array('May', 42, 55, 71), + array('Jun', 58, 63, 76), + array('Jul', 53, 61, 89), + array('Aug', 46, 69, 85), + array('Sep', 62, 75, 81), + array('Oct', 51, 70, 96), + array('Nov', 55, 66, 89), + array('Dec', 68, 62, 0), + ) +); + + +// Set the Labels for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesLabels = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$C$1', NULL, 1), // 2011 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$D$1', NULL, 1), // 2012 +); +// Set the X-Axis Labels +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$xAxisTickValues = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$A$13', NULL, 12), // Jan to Dec + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$A$13', NULL, 12), // Jan to Dec +); +// Set the Data values for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesValues = array( + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$C$2:$C$13', NULL, 12), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$D$2:$D$13', NULL, 12), +); + +// Build the dataseries +$series = new PHPExcel_Chart_DataSeries( + PHPExcel_Chart_DataSeries::TYPE_RADARCHART, // plotType + NULL, // plotGrouping (Radar charts don't have any grouping) + range(0, count($dataSeriesValues)-1), // plotOrder + $dataSeriesLabels, // plotLabel + $xAxisTickValues, // plotCategory + $dataSeriesValues, // plotValues + NULL, // plotDirection + NULL, // smooth line + PHPExcel_Chart_DataSeries::STYLE_MARKER // plotStyle +); + +// Set up a layout object for the Pie chart +$layout = new PHPExcel_Chart_Layout(); + +// Set the series in the plot area +$plotArea = new PHPExcel_Chart_PlotArea($layout, array($series)); +// Set the chart legend +$legend = new PHPExcel_Chart_Legend(PHPExcel_Chart_Legend::POSITION_RIGHT, NULL, false); + +$title = new PHPExcel_Chart_Title('Test Radar Chart'); + + +// Create the chart +$chart = new PHPExcel_Chart( + 'chart1', // name + $title, // title + $legend, // legend + $plotArea, // plotArea + true, // plotVisibleOnly + 0, // displayBlanksAs + NULL, // xAxisLabel + NULL // yAxisLabel - Radar charts don't have a Y-Axis +); + +// Set the position where the chart should appear in the worksheet +$chart->setTopLeftPosition('F2'); +$chart->setBottomRightPosition('M15'); + +// Add the chart to the worksheet +$objWorksheet->addChart($chart); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->setIncludeCharts(TRUE); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-scatter.php b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-scatter.php new file mode 100644 index 0000000..a5fab82 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-scatter.php @@ -0,0 +1,139 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +$objPHPExcel = new PHPExcel(); +$objWorksheet = $objPHPExcel->getActiveSheet(); +$objWorksheet->fromArray( + array( + array('', 2010, 2011, 2012), + array('Q1', 12, 15, 21), + array('Q2', 56, 73, 86), + array('Q3', 52, 61, 69), + array('Q4', 30, 32, 0), + ) +); + +// Set the Labels for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesLabels = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$B$1', NULL, 1), // 2010 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$C$1', NULL, 1), // 2011 + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$D$1', NULL, 1), // 2012 +); +// Set the X-Axis Labels +$xAxisTickValues = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$A$5', NULL, 4), // Q1 to Q4 +); +// Set the Data values for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesValues = array( + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$B$2:$B$5', NULL, 4), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$C$2:$C$5', NULL, 4), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$D$2:$D$5', NULL, 4), +); + +// Build the dataseries +$series = new PHPExcel_Chart_DataSeries( + PHPExcel_Chart_DataSeries::TYPE_SCATTERCHART, // plotType + NULL, // plotGrouping (Scatter charts don't have any grouping) + range(0, count($dataSeriesValues)-1), // plotOrder + $dataSeriesLabels, // plotLabel + $xAxisTickValues, // plotCategory + $dataSeriesValues, // plotValues + NULL, // plotDirection + NULL, // smooth line + PHPExcel_Chart_DataSeries::STYLE_LINEMARKER // plotStyle +); + +// Set the series in the plot area +$plotArea = new PHPExcel_Chart_PlotArea(NULL, array($series)); +// Set the chart legend +$legend = new PHPExcel_Chart_Legend(PHPExcel_Chart_Legend::POSITION_TOPRIGHT, NULL, false); + +$title = new PHPExcel_Chart_Title('Test Scatter Chart'); +$yAxisLabel = new PHPExcel_Chart_Title('Value ($k)'); + + +// Create the chart +$chart = new PHPExcel_Chart( + 'chart1', // name + $title, // title + $legend, // legend + $plotArea, // plotArea + true, // plotVisibleOnly + 0, // displayBlanksAs + NULL, // xAxisLabel + $yAxisLabel // yAxisLabel +); + +// Set the position where the chart should appear in the worksheet +$chart->setTopLeftPosition('A7'); +$chart->setBottomRightPosition('H20'); + +// Add the chart to the worksheet +$objWorksheet->addChart($chart); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->setIncludeCharts(TRUE); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-stock.php b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-stock.php new file mode 100644 index 0000000..465107b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/33chartcreate-stock.php @@ -0,0 +1,151 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +$objPHPExcel = new PHPExcel(); +$objWorksheet = $objPHPExcel->getActiveSheet(); +$objWorksheet->fromArray( + array( + array('Counts', 'Max', 'Min', 'Min Threshold', 'Max Threshold' ), + array(10, 10, 5, 0, 50 ), + array(30, 20, 10, 0, 50 ), + array(20, 30, 15, 0, 50 ), + array(40, 10, 0, 0, 50 ), + array(100, 40, 5, 0, 50 ), + ), null, 'A1', true +); +$objWorksheet->getStyle('B2:E6')->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_NUMBER_00); + + +// Set the Labels for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesLabels = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$B$1', NULL, 1), //Max / Open + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$C$1', NULL, 1), //Min / Close + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$D$1', NULL, 1), //Min Threshold / Min + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$E$1', NULL, 1), //Max Threshold / Max +); +// Set the X-Axis Labels +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$xAxisTickValues = array( + new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$A$6', NULL, 5), // Counts +); +// Set the Data values for each data series we want to plot +// Datatype +// Cell reference for data +// Format Code +// Number of datapoints in series +// Data values +// Data Marker +$dataSeriesValues = array( + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$B$2:$B$6', NULL, 5), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$C$2:$C$6', NULL, 5), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$D$2:$D$6', NULL, 5), + new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$E$2:$E$6', NULL, 5), +); + +// Build the dataseries +$series = new PHPExcel_Chart_DataSeries( + PHPExcel_Chart_DataSeries::TYPE_STOCKCHART, // plotType + null, // plotGrouping - if we set this to not null, then xlsx throws error + range(0, count($dataSeriesValues)-1), // plotOrder + $dataSeriesLabels, // plotLabel + $xAxisTickValues, // plotCategory + $dataSeriesValues // plotValues +); + +// Set the series in the plot area +$plotArea = new PHPExcel_Chart_PlotArea(NULL, array($series)); +// Set the chart legend +$legend = new PHPExcel_Chart_Legend(PHPExcel_Chart_Legend::POSITION_RIGHT, NULL, false); + +$title = new PHPExcel_Chart_Title('Test Stock Chart'); +$xAxisLabel = new PHPExcel_Chart_Title('Counts'); +$yAxisLabel = new PHPExcel_Chart_Title('Values'); + +// Create the chart +$chart = new PHPExcel_Chart( + 'stock-chart', // name + $title, // title + $legend, // legend + $plotArea, // plotArea + true, // plotVisibleOnly + 0, // displayBlanksAs + $xAxisLabel, // xAxisLabel + $yAxisLabel // yAxisLabel +); + +// Set the position where the chart should appear in the worksheet +$chart->setTopLeftPosition('A7'); +$chart->setBottomRightPosition('H20'); + +// Add the chart to the worksheet +$objWorksheet->addChart($chart); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->setIncludeCharts(TRUE); +$filename = str_replace('.php', '.xlsx', __FILE__); +if(file_exists($filename)) { + unlink($filename); +} +$objWriter->save($filename); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/34chartupdate.php b/src/vendor/phpoffice/phpexcel/Examples/34chartupdate.php new file mode 100644 index 0000000..f4b36c6 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/34chartupdate.php @@ -0,0 +1,78 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + +if (!file_exists("33chartcreate-bar.xlsx")) { + exit("Please run 33chartcreate-bar.php first." . EOL); +} + +echo date('H:i:s') , " Load from Excel2007 file" , EOL; +$objReader = PHPExcel_IOFactory::createReader("Excel2007"); +$objReader->setIncludeCharts(TRUE); +$objPHPExcel = $objReader->load("33chartcreate-bar.xlsx"); + + +echo date('H:i:s') , " Update cell data values that are displayed in the chart" , EOL; +$objWorksheet = $objPHPExcel->getActiveSheet(); +$objWorksheet->fromArray( + array( + array(50-12, 50-15, 50-21), + array(50-56, 50-73, 50-86), + array(50-52, 50-61, 50-69), + array(50-30, 50-32, 50), + ), + NULL, + 'B2' +); + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->setIncludeCharts(TRUE); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/35chartrender.php b/src/vendor/phpoffice/phpexcel/Examples/35chartrender.php new file mode 100644 index 0000000..62719e5 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/35chartrender.php @@ -0,0 +1,134 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +// Change these values to select the Rendering library that you wish to use +// and its directory location on your server +$rendererName = PHPExcel_Settings::CHART_RENDERER_JPGRAPH; +$rendererLibrary = 'jpgraph3.5.0b1/src/'; +$rendererLibraryPath = '/php/libraries/Charts/' . $rendererLibrary; + + +if (!PHPExcel_Settings::setChartRenderer( + $rendererName, + $rendererLibraryPath + )) { + die( + 'NOTICE: Please set the $rendererName and $rendererLibraryPath values' . + EOL . + 'at the top of this script as appropriate for your directory structure' + ); +} + + +$inputFileType = 'Excel2007'; +$inputFileNames = 'templates/32readwrite*[0-9].xlsx'; + + if ((isset($argc)) && ($argc > 1)) { + $inputFileNames = array(); + for($i = 1; $i < $argc; ++$i) { + $inputFileNames[] = dirname(__FILE__) . '/templates/' . $argv[$i]; + } +} else { + $inputFileNames = glob($inputFileNames); +} +foreach($inputFileNames as $inputFileName) { + $inputFileNameShort = basename($inputFileName); + + if (!file_exists($inputFileName)) { + echo date('H:i:s') , " File " , $inputFileNameShort , ' does not exist' , EOL; + continue; + } + + echo date('H:i:s') , " Load Test from $inputFileType file " , $inputFileNameShort , EOL; + + $objReader = PHPExcel_IOFactory::createReader($inputFileType); + $objReader->setIncludeCharts(TRUE); + $objPHPExcel = $objReader->load($inputFileName); + + + echo date('H:i:s') , " Iterate worksheets looking at the charts" , EOL; + foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) { + $sheetName = $worksheet->getTitle(); + echo 'Worksheet: ' , $sheetName , EOL; + + $chartNames = $worksheet->getChartNames(); + if(empty($chartNames)) { + echo ' There are no charts in this worksheet' , EOL; + } else { + natsort($chartNames); + foreach($chartNames as $i => $chartName) { + $chart = $worksheet->getChartByName($chartName); + if (!is_null($chart->getTitle())) { + $caption = '"' . implode(' ',$chart->getTitle()->getCaption()) . '"'; + } else { + $caption = 'Untitled'; + } + echo ' ' , $chartName , ' - ' , $caption , EOL; + echo str_repeat(' ',strlen($chartName)+3); + + $jpegFile = '35'.str_replace('.xlsx', '.jpg', substr($inputFileNameShort,2)); + if (file_exists($jpegFile)) { + unlink($jpegFile); + } + try { + $chart->render($jpegFile); + } catch (Exception $e) { + echo 'Error rendering chart: ',$e->getMessage(); + } + } + } + } + + + $objPHPExcel->disconnectWorksheets(); + unset($objPHPExcel); +} + +// Echo memory peak usage +echo date('H:i:s') , ' Peak memory usage: ' , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done rendering charts as images" , EOL; +echo 'Image files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/36chartreadwriteHTML.php b/src/vendor/phpoffice/phpexcel/Examples/36chartreadwriteHTML.php new file mode 100644 index 0000000..7fc26fd --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/36chartreadwriteHTML.php @@ -0,0 +1,151 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +// Change these values to select the Rendering library that you wish to use +// and its directory location on your server +$rendererName = PHPExcel_Settings::CHART_RENDERER_JPGRAPH; +$rendererLibrary = 'jpgraph3.5.0b1/src/'; +$rendererLibraryPath = '/php/libraries/Charts/' . $rendererLibrary; + + +if (!PHPExcel_Settings::setChartRenderer( + $rendererName, + $rendererLibraryPath + )) { + die( + 'NOTICE: Please set the $rendererName and $rendererLibraryPath values' . + EOL . + 'at the top of this script as appropriate for your directory structure' + ); +} + + +$inputFileType = 'Excel2007'; +$inputFileNames = 'templates/36write*.xlsx'; + +if ((isset($argc)) && ($argc > 1)) { + $inputFileNames = array(); + for($i = 1; $i < $argc; ++$i) { + $inputFileNames[] = dirname(__FILE__) . '/templates/' . $argv[$i]; + } +} else { + $inputFileNames = glob($inputFileNames); +} +foreach($inputFileNames as $inputFileName) { + $inputFileNameShort = basename($inputFileName); + + if (!file_exists($inputFileName)) { + echo date('H:i:s') , " File " , $inputFileNameShort , ' does not exist' , EOL; + continue; + } + + echo date('H:i:s') , " Load Test from $inputFileType file " , $inputFileNameShort , EOL; + + $objReader = PHPExcel_IOFactory::createReader($inputFileType); + $objReader->setIncludeCharts(TRUE); + $objPHPExcel = $objReader->load($inputFileName); + + + echo date('H:i:s') , " Iterate worksheets looking at the charts" , EOL; + foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) { + $sheetName = $worksheet->getTitle(); + echo 'Worksheet: ' , $sheetName , EOL; + + $chartNames = $worksheet->getChartNames(); + if(empty($chartNames)) { + echo ' There are no charts in this worksheet' , EOL; + } else { + natsort($chartNames); + foreach($chartNames as $i => $chartName) { + $chart = $worksheet->getChartByName($chartName); + if (!is_null($chart->getTitle())) { + $caption = '"' . implode(' ',$chart->getTitle()->getCaption()) . '"'; + } else { + $caption = 'Untitled'; + } + echo ' ' , $chartName , ' - ' , $caption , EOL; + echo str_repeat(' ',strlen($chartName)+3); + $groupCount = $chart->getPlotArea()->getPlotGroupCount(); + if ($groupCount == 1) { + $chartType = $chart->getPlotArea()->getPlotGroupByIndex(0)->getPlotType(); + echo ' ' , $chartType , EOL; + } else { + $chartTypes = array(); + for($i = 0; $i < $groupCount; ++$i) { + $chartTypes[] = $chart->getPlotArea()->getPlotGroupByIndex($i)->getPlotType(); + } + $chartTypes = array_unique($chartTypes); + if (count($chartTypes) == 1) { + $chartType = 'Multiple Plot ' . array_pop($chartTypes); + echo ' ' , $chartType , EOL; + } elseif (count($chartTypes) == 0) { + echo ' *** Type not yet implemented' , EOL; + } else { + echo ' Combination Chart' , EOL; + } + } + } + } + } + + + $outputFileName = str_replace('.xlsx', '.html', basename($inputFileName)); + + echo date('H:i:s') , " Write Tests to HTML file " , EOL; + $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'HTML'); + $objWriter->setIncludeCharts(TRUE); + $objWriter->save($outputFileName); + echo date('H:i:s') , " File written to " , $outputFileName , EOL; + + $objPHPExcel->disconnectWorksheets(); + unset($objPHPExcel); +} + +// Echo memory peak usage +echo date('H:i:s') , ' Peak memory usage: ' , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/36chartreadwritePDF.php b/src/vendor/phpoffice/phpexcel/Examples/36chartreadwritePDF.php new file mode 100644 index 0000000..24d1c85 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/36chartreadwritePDF.php @@ -0,0 +1,174 @@ +<?php + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/../Classes/'); + +/** PHPExcel_IOFactory */ +include 'PHPExcel/IOFactory.php'; + + +// Change these values to select the Rendering library that you wish to use +// for PDF files, and its directory location on your server +//$rendererName = PHPExcel_Settings::PDF_RENDERER_TCPDF; +$rendererName = PHPExcel_Settings::PDF_RENDERER_MPDF; +//$rendererName = PHPExcel_Settings::PDF_RENDERER_DOMPDF; +//$rendererLibrary = 'tcPDF5.9'; +$rendererLibrary = 'mPDF5.4'; +//$rendererLibrary = 'domPDF0.6.0beta3'; +$rendererLibraryPath = '/php/libraries/PDF/' . $rendererLibrary; + + +if (!PHPExcel_Settings::setPdfRenderer( + $rendererName, + $rendererLibraryPath + )) { + die( + 'NOTICE: Please set the $rendererName and $rendererLibraryPath values' . + EOL . + 'at the top of this script as appropriate for your directory structure' + ); +} + + +// Change these values to select the Rendering library that you wish to use +// for Chart images, and its directory location on your server +$rendererName = PHPExcel_Settings::CHART_RENDERER_JPGRAPH; +$rendererLibrary = 'jpgraph3.5.0b1/src/'; +$rendererLibraryPath = '/php/libraries/Charts/' . $rendererLibrary; + + +if (!PHPExcel_Settings::setChartRenderer( + $rendererName, + $rendererLibraryPath + )) { + die( + 'NOTICE: Please set the $rendererName and $rendererLibraryPath values' . + EOL . + 'at the top of this script as appropriate for your directory structure' + ); +} + + +$inputFileType = 'Excel2007'; +$inputFileNames = 'templates/36write*.xlsx'; + +if ((isset($argc)) && ($argc > 1)) { + $inputFileNames = array(); + for($i = 1; $i < $argc; ++$i) { + $inputFileNames[] = dirname(__FILE__) . '/templates/' . $argv[$i]; + } +} else { + $inputFileNames = glob($inputFileNames); +} +foreach($inputFileNames as $inputFileName) { + $inputFileNameShort = basename($inputFileName); + + if (!file_exists($inputFileName)) { + echo date('H:i:s') , " File " , $inputFileNameShort , ' does not exist' , EOL; + continue; + } + + echo date('H:i:s') , " Load Test from $inputFileType file " , $inputFileNameShort , EOL; + + $objReader = PHPExcel_IOFactory::createReader($inputFileType); + $objReader->setIncludeCharts(TRUE); + $objPHPExcel = $objReader->load($inputFileName); + + + echo date('H:i:s') , " Iterate worksheets looking at the charts" , EOL; + foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) { + $sheetName = $worksheet->getTitle(); + echo 'Worksheet: ' , $sheetName , EOL; + + $chartNames = $worksheet->getChartNames(); + if(empty($chartNames)) { + echo ' There are no charts in this worksheet' , EOL; + } else { + natsort($chartNames); + foreach($chartNames as $i => $chartName) { + $chart = $worksheet->getChartByName($chartName); + if (!is_null($chart->getTitle())) { + $caption = '"' . implode(' ',$chart->getTitle()->getCaption()) . '"'; + } else { + $caption = 'Untitled'; + } + echo ' ' , $chartName , ' - ' , $caption , EOL; + echo str_repeat(' ',strlen($chartName)+3); + $groupCount = $chart->getPlotArea()->getPlotGroupCount(); + if ($groupCount == 1) { + $chartType = $chart->getPlotArea()->getPlotGroupByIndex(0)->getPlotType(); + echo ' ' , $chartType , EOL; + } else { + $chartTypes = array(); + for($i = 0; $i < $groupCount; ++$i) { + $chartTypes[] = $chart->getPlotArea()->getPlotGroupByIndex($i)->getPlotType(); + } + $chartTypes = array_unique($chartTypes); + if (count($chartTypes) == 1) { + $chartType = 'Multiple Plot ' . array_pop($chartTypes); + echo ' ' , $chartType , EOL; + } elseif (count($chartTypes) == 0) { + echo ' *** Type not yet implemented' , EOL; + } else { + echo ' Combination Chart' , EOL; + } + } + } + } + } + + + $outputFileName = str_replace('.xlsx', '.pdf', basename($inputFileName)); + + echo date('H:i:s') , " Write Tests to HTML file " , EOL; + $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'PDF'); + $objWriter->setIncludeCharts(TRUE); + $objWriter->save($outputFileName); + echo date('H:i:s') , " File written to " , $outputFileName , EOL; + + $objPHPExcel->disconnectWorksheets(); + unset($objPHPExcel); +} + +// Echo memory peak usage +echo date('H:i:s') , ' Peak memory usage: ' , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/37page_layout_view.php b/src/vendor/phpoffice/phpexcel/Examples/37page_layout_view.php new file mode 100644 index 0000000..810ca3d --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/37page_layout_view.php @@ -0,0 +1,83 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("PHPOffice") + ->setLastModifiedBy("PHPOffice") + ->setTitle("PHPExcel Test Document") + ->setSubject("PHPExcel Test Document") + ->setDescription("Test document for PHPExcel, generated using PHP classes.") + ->setKeywords("Office PHPExcel php") + ->setCategory("Test result file"); + + +// Add some data +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A1', 'Hello') + ->setCellValue('B2', 'world!'); + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + +// Set the page layout view as page layout +$objPHPExcel->getActiveSheet()->getSheetView()->setView(PHPExcel_Worksheet_SheetView::SHEETVIEW_PAGE_LAYOUT); + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +// Save Excel5 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/38cloneWorksheet.php b/src/vendor/phpoffice/phpexcel/Examples/38cloneWorksheet.php new file mode 100644 index 0000000..245f7da --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/38cloneWorksheet.php @@ -0,0 +1,118 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("PHPExcel Test Document") + ->setSubject("PHPExcel Test Document") + ->setDescription("Test document for PHPExcel, generated using PHP classes.") + ->setKeywords("office PHPExcel php") + ->setCategory("Test result file"); + + +// Add some data +echo date('H:i:s') , " Add some data" , EOL; +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A1', 'Hello') + ->setCellValue('B2', 'world!') + ->setCellValue('C1', 'Hello') + ->setCellValue('D2', 'world!'); + +// Miscellaneous glyphs, UTF-8 +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A4', 'Miscellaneous glyphs') + ->setCellValue('A5', 'éàèùâêîôûëïüÿäöüç'); + + +$objPHPExcel->getActiveSheet()->setCellValue('A8',"Hello\nWorld"); +$objPHPExcel->getActiveSheet()->getRowDimension(8)->setRowHeight(-1); +$objPHPExcel->getActiveSheet()->getStyle('A8')->getAlignment()->setWrapText(true); + + +// Rename worksheet +echo date('H:i:s') , " Rename worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Simple'); + + +// Clone worksheet +echo date('H:i:s') , " Clone worksheet" , EOL; +$clonedSheet = clone $objPHPExcel->getActiveSheet(); +$clonedSheet + ->setCellValue('A1', 'Goodbye') + ->setCellValue('A2', 'cruel') + ->setCellValue('C1', 'Goodbye') + ->setCellValue('C2', 'cruel'); + +// Rename cloned worksheet +echo date('H:i:s') , " Rename cloned worksheet" , EOL; +$clonedSheet->setTitle('Simple Clone'); +$objPHPExcel->addSheet($clonedSheet); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/39dropdown.php b/src/vendor/phpoffice/phpexcel/Examples/39dropdown.php new file mode 100644 index 0000000..c8dcff6 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/39dropdown.php @@ -0,0 +1,175 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties() + ->setCreator("PHPOffice") + ->setLastModifiedBy("PHPOffice") + ->setTitle("PHPExcel Test Document") + ->setSubject("PHPExcel Test Document") + ->setDescription("Test document for PHPExcel, generated using PHP classes.") + ->setKeywords("Office PHPExcel php") + ->setCategory("Test result file"); + + +function transpose($value) { + return array($value); +} + +// Add some data +$continentColumn = 'D'; +$column = 'F'; + +// Set data for dropdowns +foreach(glob('./data/continents/*') as $key => $filename) { + $continent = pathinfo($filename, PATHINFO_FILENAME); + echo "Loading $continent", EOL; + $continent = str_replace(' ','_',$continent); + $countries = file($filename, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); + $countryCount = count($countries); + + // Transpose $countries from a row to a column array + $countries = array_map('transpose', $countries); + $objPHPExcel->getActiveSheet() + ->fromArray($countries, null, $column . '1'); + $objPHPExcel->addNamedRange( + new PHPExcel_NamedRange( + $continent, + $objPHPExcel->getActiveSheet(), $column . '1:' . $column . $countryCount + ) + ); + $objPHPExcel->getActiveSheet() + ->getColumnDimension($column) + ->setVisible(false); + + $objPHPExcel->getActiveSheet() + ->setCellValue($continentColumn . ($key+1), $continent); + + ++$column; +} + +// Hide the dropdown data +$objPHPExcel->getActiveSheet() + ->getColumnDimension($continentColumn) + ->setVisible(false); + +$objPHPExcel->addNamedRange( + new PHPExcel_NamedRange( + 'Continents', + $objPHPExcel->getActiveSheet(), $continentColumn . '1:' . $continentColumn . ($key+1) + ) +); + + +// Set selection cells +$objPHPExcel->getActiveSheet() + ->setCellValue('A1', 'Continent:'); +$objPHPExcel->getActiveSheet() + ->setCellValue('B1', 'Select continent'); +$objPHPExcel->getActiveSheet() + ->setCellValue('B3', '=' . $column . 1); +$objPHPExcel->getActiveSheet() + ->setCellValue('B3', 'Select country'); +$objPHPExcel->getActiveSheet() + ->getStyle('A1:A3') + ->getFont()->setBold(true); + +// Set linked validators +$objValidation = $objPHPExcel->getActiveSheet() + ->getCell('B1') + ->getDataValidation(); +$objValidation->setType( PHPExcel_Cell_DataValidation::TYPE_LIST ) + ->setErrorStyle( PHPExcel_Cell_DataValidation::STYLE_INFORMATION ) + ->setAllowBlank(false) + ->setShowInputMessage(true) + ->setShowErrorMessage(true) + ->setShowDropDown(true) + ->setErrorTitle('Input error') + ->setError('Continent is not in the list.') + ->setPromptTitle('Pick from the list') + ->setPrompt('Please pick a continent from the drop-down list.') + ->setFormula1('=Continents'); + +$objPHPExcel->getActiveSheet() + ->setCellValue('A3', 'Country:'); +$objPHPExcel->getActiveSheet() + ->getStyle('A3') + ->getFont()->setBold(true); + +$objValidation = $objPHPExcel->getActiveSheet() + ->getCell('B3') + ->getDataValidation(); +$objValidation->setType( PHPExcel_Cell_DataValidation::TYPE_LIST ) + ->setErrorStyle( PHPExcel_Cell_DataValidation::STYLE_INFORMATION ) + ->setAllowBlank(false) + ->setShowInputMessage(true) + ->setShowErrorMessage(true) + ->setShowDropDown(true) + ->setErrorTitle('Input error') + ->setError('Country is not in the list.') + ->setPromptTitle('Pick from the list') + ->setPrompt('Please pick a country from the drop-down list.') + ->setFormula1('=INDIRECT($B$1)'); + + +$objPHPExcel->getActiveSheet()->getColumnDimension('A')->setWidth(12); +$objPHPExcel->getActiveSheet()->getColumnDimension('B')->setWidth(30); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + +// Save Excel 2007 file +// This linked validation list method only seems to work for Excel2007, not for Excel5 +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/40duplicateStyle.php b/src/vendor/phpoffice/phpexcel/Examples/40duplicateStyle.php new file mode 100644 index 0000000..be31951 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/40duplicateStyle.php @@ -0,0 +1,51 @@ +<?php +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); +$worksheet = $objPHPExcel->getActiveSheet(); + +echo date('H:i:s') , " Create styles array" , EOL; +$styles = array(); +for ($i = 0; $i < 10; $i++) { + $style = new PHPExcel_Style(); + $style->getFont()->setSize($i + 4); + $styles[] = $style; +} + +echo date('H:i:s') , " Add data (begin)" , EOL; +$t = microtime(true); +for ($col = 0; $col < 50; $col++) { + for ($row = 0; $row < 100; $row++) { + $str = ($row + $col); + $style = $styles[$row % 10]; + $coord = PHPExcel_Cell::stringFromColumnIndex($col) . ($row + 1); + $worksheet->setCellValue($coord, $str); + $worksheet->duplicateStyle($style, $coord); + } +} +$d = microtime(true) - $t; +echo date('H:i:s') , " Add data (end), time: " . round($d, 2) . " s", EOL; + + +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; + + +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/41password.php b/src/vendor/phpoffice/phpexcel/Examples/41password.php new file mode 100644 index 0000000..15aea7b --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/41password.php @@ -0,0 +1,84 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +include "05featuredemo.inc.php"; + +/** Include PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + + +// Set password against the spreadsheet file +$objPHPExcel->getSecurity()->setLockWindows(true); +$objPHPExcel->getSecurity()->setLockStructure(true); +$objPHPExcel->getSecurity()->setWorkbookPassword('secret'); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/42richText.php b/src/vendor/phpoffice/phpexcel/Examples/42richText.php new file mode 100644 index 0000000..32bc401 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/42richText.php @@ -0,0 +1,164 @@ +<?php +/** + * PHPExcel + * + * Copyright (C) 2006 - 2014 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); +date_default_timezone_set('Europe/London'); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +/** Include PHPExcel */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; + + +// Create new PHPExcel object +echo date('H:i:s') , " Create new PHPExcel object" , EOL; +$objPHPExcel = new PHPExcel(); + +// Set document properties +echo date('H:i:s') , " Set document properties" , EOL; +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw") + ->setLastModifiedBy("Maarten Balliauw") + ->setTitle("PHPExcel Test Document") + ->setSubject("PHPExcel Test Document") + ->setDescription("Test document for PHPExcel, generated using PHP classes.") + ->setKeywords("office PHPExcel php") + ->setCategory("Test result file"); + + +// Add some data +echo date('H:i:s') , " Add some data" , EOL; + +$html1 = '<font color="#0000ff"> +<h1 align="center">My very first example of rich text<br />generated from html markup</h1> +<p> +<font size="14" COLOR="rgb(0,255,128)"> +<b>This block</b> contains an <i>italicized</i> word; +while this block uses an <u>underline</u>. +</font> +</p> +<p align="right"><font size="9" color="red"> +I want to eat <ins><del>healthy food</del> <strong>pizza</strong></ins>. +</font> +'; + +$html2 = '<p> +<font color="#ff0000"> + 100&deg;C is a hot temperature +</font> +<br> +<font color="#0080ff"> + 10&deg;F is cold +</font> +</p>'; + +$html3 = '2<sup>3</sup> equals 8'; + +$html4 = 'H<sub>2</sub>SO<sub>4</sub> is the chemical formula for Sulphuric acid'; + +$html5 = '<strong>bold</strong>, <em>italic</em>, <strong><em>bold+italic</em></strong>'; + + +$wizard = new PHPExcel_Helper_HTML; +$richText = $wizard->toRichTextObject($html1); + +$objPHPExcel->setActiveSheetIndex(0) + ->setCellValue('A1', $richText); + +$objPHPExcel->getActiveSheet()->getColumnDimension('A')->setWidth(48); +$objPHPExcel->getActiveSheet()->getRowDimension(1)->setRowHeight(-1); +$objPHPExcel->getActiveSheet()->getStyle('A1') + ->getAlignment() + ->setWrapText(true); + +$richText = $wizard->toRichTextObject($html2); + +$objPHPExcel->getActiveSheet() + ->setCellValue('A2', $richText); + +$objPHPExcel->getActiveSheet()->getRowDimension(1)->setRowHeight(-1); +$objPHPExcel->getActiveSheet()->getStyle('A2') + ->getAlignment() + ->setWrapText(true); + +$objPHPExcel->getActiveSheet() + ->setCellValue('A3', $wizard->toRichTextObject($html3)); + +$objPHPExcel->getActiveSheet() + ->setCellValue('A4', $wizard->toRichTextObject($html4)); + +$objPHPExcel->getActiveSheet() + ->setCellValue('A5', $wizard->toRichTextObject($html5)); + + +// Rename worksheet +echo date('H:i:s') , " Rename worksheet" , EOL; +$objPHPExcel->getActiveSheet()->setTitle('Simple'); + + +// Set active sheet index to the first sheet, so Excel opens this as the first sheet +$objPHPExcel->setActiveSheetIndex(0); + + +// Save Excel 2007 file +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Save Excel 95 file +echo date('H:i:s') , " Write to Excel5 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing files" , EOL; +echo 'Files have been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/43mergeWorkbooks.php b/src/vendor/phpoffice/phpexcel/Examples/43mergeWorkbooks.php new file mode 100644 index 0000000..465b60a --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/43mergeWorkbooks.php @@ -0,0 +1,91 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + + +echo date('H:i:s') , " Load MergeBook1 from Excel2007 file" , EOL; +$callStartTime = microtime(true); + +$objPHPExcel1 = PHPExcel_IOFactory::load(dirname(__FILE__) . "/templates/43mergeBook1.xlsx"); + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo 'Call time to read Mergebook1 was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +echo date('H:i:s') , " Load MergeBook2 from Excel2007 file" , EOL; +$callStartTime = microtime(true); + +$objPHPExcel2 = PHPExcel_IOFactory::load(dirname(__FILE__) . "/templates/43mergeBook2.xlsx"); + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo 'Call time to read Mergebook2 was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +foreach($objPHPExcel2->getSheetNames() as $sheetName) { + $sheet = $objPHPExcel2->getSheetByName($sheetName); + $sheet->setTitle($sheet->getTitle() . ' copied'); + $objPHPExcel1->addExternalSheet($sheet); +} + + +echo date('H:i:s') , " Write to Excel2007 format" , EOL; +$callStartTime = microtime(true); + +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel1, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; + +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; +echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , EOL; +echo 'File has been created in ' , getcwd() , EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/44worksheetInfo.php b/src/vendor/phpoffice/phpexcel/Examples/44worksheetInfo.php new file mode 100644 index 0000000..5aeefcb --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/44worksheetInfo.php @@ -0,0 +1,58 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +error_reporting(E_ALL); +ini_set('display_errors', TRUE); +ini_set('display_startup_errors', TRUE); + +define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); + +date_default_timezone_set('Europe/London'); + +/** Include PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + + +if (!file_exists("05featuredemo.xlsx")) { + exit("Please run 05featuredemo.php first." . EOL); +} + +$inputFileName = "05featuredemo.xlsx"; +$inputFileType = PHPExcel_IOFactory::identify($inputFileName); +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +$sheetList = $objReader->listWorksheetNames($inputFileName); +$sheetInfo = $objReader->listWorksheetInfo($inputFileName); + +echo 'File Type:', PHP_EOL; +var_dump($inputFileType); + +echo 'Worksheet Names:', PHP_EOL; +var_dump($sheetList); + +echo 'Worksheet Names:', PHP_EOL; +var_dump($sheetInfo); + diff --git a/src/vendor/phpoffice/phpexcel/Examples/Excel2003XMLReader.php b/src/vendor/phpoffice/phpexcel/Examples/Excel2003XMLReader.php new file mode 100644 index 0000000..e77f8a9 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/Excel2003XMLReader.php @@ -0,0 +1,61 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); + +date_default_timezone_set('Europe/London'); + +/** PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + + +echo date('H:i:s') , " Load from Excel2003XML file" , PHP_EOL; +$callStartTime = microtime(true); + +$objReader = PHPExcel_IOFactory::createReader('Excel2003XML'); +$objPHPExcel = $objReader->load("Excel2003XMLTest.xml"); + + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo 'Call time to read Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , PHP_EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , PHP_EOL; + + +echo date('H:i:s') , " Write to Excel5 format" , PHP_EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); +$objWriter->save(str_replace('.php', '.xls', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', __FILE__) , PHP_EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , PHP_EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , PHP_EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/Excel2003XMLTest.xml b/src/vendor/phpoffice/phpexcel/Examples/Excel2003XMLTest.xml new file mode 100644 index 0000000..fb2d305 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/Excel2003XMLTest.xml @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><?mso-application progid="Excel.Sheet"?><Workbook xmlns:c="urn:schemas-microsoft-com:office:component:spreadsheet" xmlns:html="http://www.w3.org/TR/REC-html40" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:x2="http://schemas.microsoft.com/office/excel/2003/xml" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:x="urn:schemas-microsoft-com:office:excel"><OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office"><Colors><Color><Index>3</Index><RGB>#000000</RGB></Color><Color><Index>4</Index><RGB>#0000ff</RGB></Color><Color><Index>5</Index><RGB>#008000</RGB></Color><Color><Index>6</Index><RGB>#00ccff</RGB></Color><Color><Index>7</Index><RGB>#800080</RGB></Color><Color><Index>8</Index><RGB>#993366</RGB></Color><Color><Index>9</Index><RGB>#c0c0c0</RGB></Color><Color><Index>10</Index><RGB>#c47512</RGB></Color><Color><Index>11</Index><RGB>#ccffcc</RGB></Color><Color><Index>12</Index><RGB>#ddbc7d</RGB></Color><Color><Index>13</Index><RGB>#ff0000</RGB></Color><Color><Index>14</Index><RGB>#ff00ff</RGB></Color><Color><Index>15</Index><RGB>#ff6600</RGB></Color><Color><Index>16</Index><RGB>#ff9900</RGB></Color><Color><Index>17</Index><RGB>#ff99cc</RGB></Color><Color><Index>18</Index><RGB>#ffff00</RGB></Color></Colors></OfficeDocumentSettings><ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel"><WindowHeight>9000</WindowHeight><WindowWidth>13860</WindowWidth><WindowTopX>240</WindowTopX><WindowTopY>75</WindowTopY><ProtectStructure>False</ProtectStructure><ProtectWindows>False</ProtectWindows></ExcelWorkbook><Styles><Style ss:ID="Default" ss:Name="Default"/><Style ss:ID="Result" ss:Name="Result"><Font ss:Bold="1" ss:Italic="1" ss:Underline="Single"/></Style><Style ss:ID="Result2" ss:Name="Result2"><Font ss:Bold="1" ss:Italic="1" ss:Underline="Single"/><NumberFormat ss:Format="Currency"/></Style><Style ss:ID="Heading" ss:Name="Heading"><Font ss:Bold="1" ss:Italic="1" ss:Size="16"/></Style><Style ss:ID="Heading1" ss:Name="Heading1"><Font ss:Bold="1" ss:Italic="1" ss:Size="16"/></Style><Style ss:ID="Gnumeric-default" ss:Name="Gnumeric-default"><Font ss:Color="#000000" ss:FontName="Sans" ss:Size="10"/></Style><Style ss:ID="co1"/><Style ss:ID="co2"/><Style ss:ID="co3"/><Style ss:ID="co4"/><Style ss:ID="co5"/><Style ss:ID="co6"/><Style ss:ID="co7"/><Style ss:ID="co8"/><Style ss:ID="co9"/><Style ss:ID="ta1"/><Style ss:ID="ce1"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Bold="1" ss:Color="#ff0000" ss:FontName="Arial1" ss:Size="11"/></Style><Style ss:ID="ce2"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Bold="1" ss:Color="#000000" ss:FontName="Arial1" ss:Italic="1" ss:Size="11"/></Style><Style ss:ID="ce3"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Arial1" ss:Size="11" ss:Underline="Single"/></Style><Style ss:ID="ce4"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Arial1" ss:Size="11"/></Style><Style ss:ID="ce5"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce6"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11" ss:Underline="Single"/></Style><Style ss:ID="ce7"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11" ss:Underline="Double"/></Style><Style ss:ID="ce8"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11" ss:StrikeThrough="1"/></Style><Style ss:ID="ce9"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Arial1" ss:Size="11"/><NumberFormat ss:Format="Short Date"/></Style><Style ss:ID="ce10"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Arial1" ss:Size="11"/><NumberFormat ss:Format="Fixed"/></Style><Style ss:ID="ce11"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/><NumberFormat ss:Format="Short Time"/></Style><Style ss:ID="ce12"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/><NumberFormat ss:Format="General Date"/></Style><Style ss:ID="ce13"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Sans" ss:Size="10"/></Style><Style ss:ID="ce14"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Sans" ss:Size="10" ss:Underline="Single"/></Style><Style ss:ID="ce15"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Sans" ss:Size="10" ss:Underline="Double"/></Style><Style ss:ID="ce16"><Alignment ss:Vertical="Bottom" ss:WrapText="1" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Sans" ss:Size="10"/></Style><Style ss:ID="ce17"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#0000ff" ss:FontName="Sans" ss:Size="10" ss:Underline="Single"/></Style><Style ss:ID="ce18"><Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:Rotate="0"/><Borders><Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="3" ss:Color="#00b050"/><Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="3" ss:Color="#0070c0"/><Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="3" ss:Color="#ffff00"/><Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="3" ss:Color="#ff0000"/></Borders><Font ss:Color="#000000" ss:FontName="Arial1" ss:Size="11"/></Style><Style ss:ID="ce19"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders><Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="2" ss:Color="#000000"/></Borders><Font ss:Color="#000000" ss:FontName="Arial1" ss:Size="11"/></Style><Style ss:ID="ce20"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders><Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="2" ss:Color="#000000"/></Borders><Font ss:Color="#000000" ss:FontName="Arial1" ss:Size="11"/></Style><Style ss:ID="ce21"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders><Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2" ss:Color="#000000"/></Borders><Font ss:Color="#000000" ss:FontName="Arial1" ss:Size="11"/></Style><Style ss:ID="ce22"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders><Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2" ss:Color="#000000"/></Borders><Font ss:Color="#000000" ss:FontName="Arial1" ss:Size="11"/></Style><Style ss:ID="ce23"><Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:Rotate="90"/><Borders/><Font ss:Color="#000000" ss:FontName="Sans" ss:Size="10"/></Style><Style ss:ID="ce24"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Arial1" ss:Size="11"/><NumberFormat ss:Format="General"/></Style><Style ss:ID="ce25"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/><NumberFormat ss:Format="General"/></Style><Style ss:ID="ce26"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Bold="1" ss:Color="#000000" ss:FontName="Arial1" ss:Size="11"/></Style><Style ss:ID="ce27"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Arial1" ss:Italic="1" ss:Size="11"/></Style><Style ss:ID="ce28"><Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:Rotate="45"/><Borders/><Font ss:Color="#000000" ss:FontName="Sans" ss:Size="10"/></Style><Style ss:ID="ce29"><Alignment ss:Vertical="Top" ss:WrapText="1" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce30"><Alignment ss:Vertical="Bottom" ss:WrapText="1" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce31"><Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:Rotate="-90"/><Borders/><Font ss:Color="#000000" ss:FontName="Sans" ss:Size="10"/></Style><Style ss:ID="ce32"><Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce33"><Alignment ss:Vertical="Bottom" ss:WrapText="1" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce34"><Alignment ss:Vertical="Bottom" ss:WrapText="1" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce35"><Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:Rotate="-45"/><Borders/><Font ss:Color="#000000" ss:FontName="Sans" ss:Size="10"/></Style><Style ss:ID="ce36"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce37"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/><Interior ss:Color="#ff0000" ss:Pattern="Solid"/></Style><Style ss:ID="ce38"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/><Interior ss:Color="#ff9900" ss:Pattern="Solid"/></Style><Style ss:ID="ce39"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/><Interior ss:Color="#ffff00" ss:Pattern="Solid"/></Style><Style ss:ID="ce40"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/><Interior ss:Color="#008000" ss:Pattern="Solid"/></Style><Style ss:ID="ce41"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/><Interior ss:Color="#0000ff" ss:Pattern="Solid"/></Style><Style ss:ID="ce42"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/><Interior ss:Color="#993366" ss:Pattern="Solid"/></Style><Style ss:ID="ce43"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/><Interior ss:Color="#ff99cc" ss:Pattern="Solid"/></Style><Style ss:ID="ce44"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/><Interior ss:Color="#ddbc7d" ss:Pattern="Solid"/></Style><Style ss:ID="ce45"><Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/><Interior ss:Color="#00ccff" ss:Pattern="Solid"/></Style><Style ss:ID="ce46"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#ff0000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce47"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#ff6600" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce48"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#ffff00" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce49"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#008000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce50"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#0000ff" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce51"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#800080" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce52"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#ff00ff" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce53"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#c47512" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce54"><Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1" ss:Rotate="0"/><Borders/><Font ss:Color="#ccffcc" ss:FontName="Calibri" ss:Size="11"/><Interior ss:Color="#ff0000" ss:Pattern="Solid"/></Style><Style ss:ID="ce55"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders><Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1" ss:Color="#000000"/></Borders><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce56"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders><Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1" ss:Color="#000000"/></Borders><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce57"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders><Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1" ss:Color="#000000"/></Borders><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce58"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders><Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1" ss:Color="#000000"/></Borders><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce59"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders><Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="2" ss:Color="#000000"/></Borders><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce60"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders><Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="2" ss:Color="#000000"/></Borders><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce61"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders><Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="2" ss:Color="#000000"/></Borders><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce62"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders><Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="2" ss:Color="#000000"/></Borders><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce63"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders><Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="2" ss:Color="#000000"/></Borders><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce64"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders><Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="3" ss:Color="#000000"/></Borders><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce65"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders><Border ss:Position="Bottom" ss:LineStyle="Double" ss:Weight="3" ss:Color="#000000"/></Borders><Font ss:Color="#000000" ss:FontName="Calibri" ss:Size="11"/></Style><Style ss:ID="ce66"><Alignment ss:Horizontal="Center" ss:Vertical="Bottom" ss:WrapText="1" ss:Rotate="0"/><Borders/><Font ss:Bold="1" ss:Color="#000000" ss:FontName="Arial1" ss:Size="12"/></Style><Style ss:ID="ce67"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Arial1" ss:Size="11"/><NumberFormat ss:Format="General"/></Style><Style ss:ID="ce68"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Arial1" ss:Size="11"/><NumberFormat ss:Format="Medium Date"/></Style><Style ss:ID="ce69"><Alignment ss:Vertical="Bottom" ss:Rotate="0"/><Borders/><Font ss:Color="#000000" ss:FontName="Arial1" ss:Size="11"/><NumberFormat ss:Format="Medium Time"/></Style><Style ss:ID="gr1"/><Style ss:ID="gr2"/><Style ss:ID="ta_extref"/><Style ss:ID="P1"><Font ss:FontName="Sans" ss:Size="10"/></Style><Style ss:ID="T1"/></Styles><ss:Worksheet ss:Name="Sample Data"><Table ss:StyleID="ta1"><Column ss:Width="96.4913"/><Column ss:Span="1" ss:Width="48.3874"/><Column ss:Index="4" ss:Width="35.8866"/><Column ss:Span="6" ss:Width="48.3874"/><Column ss:Index="12" ss:Width="50.2583"/><Column ss:Span="1011" ss:Width="48.3874"/><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce1"><ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">Test String 1</ss:Data><Comment><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Face="Sans" html:Size="10">Test for a simple colour-formatted string</Font></ss:Data></Comment></Cell><Cell ss:StyleID="ce4"><Data ss:Type="Number">1</Data></Cell><Cell ss:StyleID="ce4"><Data ss:Type="Number">5</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce2"><Data ss:Type="String">A</Data></Cell><Cell ss:StyleID="ce26"><Data ss:Type="String">E</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5" ss:Formula="of:=[.B1]+[.C1]"><Data ss:Type="Number">6</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5" ss:Formula="of:=[.E1]&amp;[.F1]"><Data ss:Type="String">AE</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce2"><Data ss:Type="String">Test - String 2</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">2</Data></Cell><Cell ss:StyleID="ce4"><Data ss:Type="Number">6</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="String">B</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="String">F</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5" ss:Formula="of:=[.B2]+[.C2]"><Data ss:Type="Number">8</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5" ss:Formula="of:=[.E2]&amp;[.F2]"><Data ss:Type="String">BF</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce55"><Data ss:Type="String">Dot</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce3"><Data ss:Type="String">Test #3</Data></Cell><Cell ss:StyleID="ce4"><Data ss:Type="Number">3</Data></Cell><Cell ss:StyleID="ce4"><Data ss:Type="Number">7</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce26"><Data ss:Type="String">C</Data></Cell><Cell ss:StyleID="ce2"><Data ss:Type="String">G</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5" ss:Formula="of:=[.B3]+[.C3]"><Data ss:Type="Number">10</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5" ss:Formula="of:=[.E3]&amp;[.F3]"><Data ss:Type="String">CG</Data></Cell><Cell ss:StyleID="ce37"><Data ss:Type="String">Red</Data></Cell><Cell ss:StyleID="ce46"><Data ss:Type="String">Red</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce56"><Data ss:Type="String">Dash</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce4"><Data ss:Type="String">Test with (") in string</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">4</Data></Cell><Cell ss:StyleID="ce4"><Data ss:Type="Number">8</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce27"><Data ss:Type="String">D</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="String">H</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5" ss:Formula="of:=[.B4]+[.C4]"><Data ss:Type="Number">12</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5" ss:Formula="of:=[.E4]&amp;[.F4]"><Data ss:Type="String">DH</Data></Cell><Cell ss:StyleID="ce38"><Data ss:Type="String">Orange</Data></Cell><Cell ss:StyleID="ce47"><Data ss:Type="String">Orange</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce57"><Data ss:Type="String">Dash/Dot/Dot</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5" ss:Formula="of:=SUM([.B1:.B4])"><Data ss:Type="Number">10</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=SUM([.C1:.C4])"><Data ss:Type="Number">26</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=SUM([.B1:.C4])"><Data ss:Type="Number">36</Data></Cell><Cell ss:StyleID="ce39"><Data ss:Type="String">Yellow</Data></Cell><Cell ss:StyleID="ce48"><Data ss:Type="String">Yellow</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce58"><Data ss:Type="String">Dash/Dot</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce6"><Data ss:Type="String">Test #3</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">1.23</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=TRUE()"><Data ss:Type="Boolean">1</Data></Cell><Cell ss:StyleID="ce24"><Data ss:Type="Boolean">1</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce40"><Data ss:Type="String">Green</Data></Cell><Cell ss:StyleID="ce49"><Data ss:Type="String">Green</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce56"><Data ss:Type="String">Thin Line</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce7"><Data ss:Type="String">Test #3</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">2.34</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=FALSE()"><Data ss:Type="Boolean">0</Data></Cell><Cell ss:StyleID="ce25"><Data ss:Type="Boolean">0</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5" ss:Formula="of:=SUM(marksrange)"><Data ss:Type="Number">0</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce41"><Data ss:Type="String">Blue</Data></Cell><Cell ss:StyleID="ce50"><Data ss:Type="String">Blue</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce59"><Data ss:Type="String">Thick Dash/Dot/Dot</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:Index="8" ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce8"><Data ss:Type="String">Test #3</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">3.45</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce42"><Data ss:Type="String">Purple</Data></Cell><Cell ss:StyleID="ce51"><Data ss:Type="String">Purple</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce60"><Data ss:Type="String">Variant Thick Dash/Dot/Dot</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="13.4929"><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce43"><Data ss:Type="String">Pink</Data></Cell><Cell ss:StyleID="ce52"><Data ss:Type="String">Pink</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce61"><Data ss:Type="String">Thick Dash/Dot</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce9"><Data ss:Type="DateTime">1960-12-19T00:00:00.000</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce19"><Data ss:Type="String">TOP</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="Number">0</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce44"><Data ss:Type="String">Brown</Data></Cell><Cell ss:StyleID="ce53"><Data ss:Type="String">Brown</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce62"><Data ss:Type="String">Thick Dash</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce10"><Data ss:Type="Number">1.5</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5" ss:Formula="of:=12/0"><Data ss:Type="Number">0</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce63"><Data ss:Type="String">Thick Line</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="13.4929"><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce20"><Data ss:Type="String">BOTTOM</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce64"><Data ss:Type="String">Extra Thick Line</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce11"><Data ss:Type="DateTime">1899-12-31T02:30:00.000</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">Мойва ÑушенаÑ</ss:Data><Comment><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Face="Sans" html:Size="10">Tests for UTF-8 content</Font></ss:Data></Comment></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce65"><Data ss:Type="String">Double Line</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce21"><Data ss:Type="String">LEFT</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="String">Ärendetext</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce12"><Data ss:Type="DateTime">1960-12-19T01:30:00.000</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="String">Højde</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:Index="16" ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce22"><Data ss:Type="String">RIGHT</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="13.4929"><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:Height="41.7543"><Cell ss:StyleID="ce5"/><Cell ss:MergeAcross="1" ss:MergeDown="1" ss:StyleID="ce18"><Data ss:Type="String">BOX</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce29"><Data ss:Type="String">Test Column 1</Data></Cell><Cell ss:StyleID="ce30"/><Cell ss:StyleID="ce33"/><Cell ss:StyleID="ce36"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:Height="41.7543"><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce30"/><Cell ss:StyleID="ce32"><Data ss:Type="String">Test Column 2</Data></Cell><Cell ss:StyleID="ce30"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce45"><Data ss:Type="String">Patterned</Data></Cell><Cell ss:StyleID="ce54"><Data ss:Type="String">Patterned 2</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:Height="41.7543"><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce30"/><Cell ss:StyleID="ce30"/><Cell ss:StyleID="ce34"><Data ss:Type="String">Test Column 3</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:StyleID="ce13"><Data ss:Type="String">Underline None</Data></Cell><Cell ss:Index="3" ss:MergeAcross="1" ss:MergeDown="4" ss:StyleID="ce23"><Data ss:Type="String">Rotate 90</Data></Cell><Cell ss:MergeAcross="1" ss:MergeDown="4" ss:StyleID="ce28"><Data ss:Type="String">Rotate 45</Data></Cell><Cell ss:MergeAcross="1" ss:MergeDown="4" ss:StyleID="ce31"><Data ss:Type="String">Rotate -90</Data></Cell><Cell ss:MergeAcross="1" ss:MergeDown="4" ss:StyleID="ce35"><Data ss:Type="String">Rotate -45</Data></Cell><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:StyleID="ce14"><Data ss:Type="String">Underline 1</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="String">Subscript</Data></Cell><Cell ss:Index="1016" ss:StyleID="ce13"/></Row><Row ss:Index="24" ss:Height="12.8409"><Cell ss:StyleID="ce15"><Data ss:Type="String">Underline 2</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="String">Superscript</Data></Cell><Cell ss:Index="1016" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:StyleID="ce14"><Data ss:Type="String">Underline 3</Data></Cell><Cell ss:Index="1016" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:StyleID="ce15"><Data ss:Type="String">Underline 4</Data></Cell><Cell ss:Index="1016" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="49.2378"><Cell ss:MergeAcross="2" ss:StyleID="ce16"><ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">I don't know if Gnumeric supports <B><Font html:Face="Sans" html:Color="#000000" html:Size="10">Rich Text</Font></B> in the same way as <B><Font html:Face="Sans" html:Color="#000000" html:Size="10">Excel</Font></B>, And this row should be autofit height with text wrap</ss:Data></Cell><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/><Cell ss:StyleID="ce16"/></Row><Row ss:Height="13.4079"><Cell ss:MergeAcross="2" ss:HRef="http://www.phpexcel.net/" ss:StyleID="ce17"><Data ss:Type="String">PHPExcel</Data></Cell><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Index="65536" ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row></Table><x:WorksheetOptions/></ss:Worksheet><ss:Worksheet ss:Name="Report Data"><Table ss:StyleID="ta1"><Column ss:Span="2" ss:Width="56.2394"/><Column ss:Index="4" ss:Width="78.7465"/><Column ss:Width="58.5071"/><Column ss:Width="27.4961"/><Column ss:Width="78.7465"/><Column ss:Width="68.5984"/><Column ss:Span="1015" ss:Width="48.3874"/><Column ss:Index="1025"/><Column ss:Span="1"/><Row ss:AutoFitHeight="0" ss:Height="31.4929"><Cell ss:StyleID="ce66"/><Cell ss:StyleID="ce66"/><Cell ss:StyleID="ce66"/><Cell ss:StyleID="ce66"/><Cell ss:StyleID="ce66"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce66"/><Cell ss:StyleID="ce66"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="31.4929"><Cell ss:StyleID="ce66"><Data ss:Type="String">Heading 1</Data></Cell><Cell ss:StyleID="ce66"><Data ss:Type="String">Heading 2</Data></Cell><Cell ss:StyleID="ce66"><Data ss:Type="String">Third Heading</Data></Cell><Cell ss:StyleID="ce66"><Data ss:Type="String">Date Heading</Data></Cell><Cell ss:StyleID="ce66"><Data ss:Type="String">Time Heading</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce66"><Data ss:Type="String">Adjusted Date</Data></Cell><Cell ss:StyleID="ce66"><Data ss:Type="String">Adjusted Number</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce13"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row><Cell ss:StyleID="ce13"><Data ss:Type="String"/></Cell><Cell ss:StyleID="ce13"><Data ss:Type="String">Adjusted Number</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="String">Third Heading</Data></Cell></Row><Row><Cell ss:StyleID="ce13"><Data ss:Type="String">1</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">1.11</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">1.11</Data></Cell></Row><Row><Cell ss:StyleID="ce13"><Data ss:Type="String">2</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">4.44</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">2.22</Data></Cell></Row><Row><Cell ss:StyleID="ce13"><Data ss:Type="String">3</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">9.99</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">3.33</Data></Cell></Row><Row><Cell ss:StyleID="ce13"><Data ss:Type="String">4</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">17.76</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">4.44</Data></Cell></Row><Row ss:Index="8"><Cell ss:StyleID="ce13"><Data ss:Type="String">5</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">27.75</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">5.55</Data></Cell></Row><Row><Cell ss:StyleID="ce13"><Data ss:Type="String">6</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">39.96</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">6.66</Data></Cell></Row><Row><Cell ss:StyleID="ce13"><Data ss:Type="String">7</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">54.39</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">7.77</Data></Cell></Row><Row><Cell ss:StyleID="ce13"><Data ss:Type="String">8</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">71.04</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">8.88</Data></Cell></Row><Row><Cell ss:StyleID="ce13"><Data ss:Type="String">9</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">89.91</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">9.99</Data></Cell></Row><Row><Cell ss:StyleID="ce13"><Data ss:Type="String">10</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">111</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">11.1</Data></Cell></Row><Row><Cell ss:StyleID="ce13"><Data ss:Type="String">11</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">134.31</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">12.21</Data></Cell></Row><Row><Cell ss:StyleID="ce13"><Data ss:Type="String">12</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">159.84</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">13.32</Data></Cell></Row><Row ss:Index="16"><Cell ss:StyleID="ce13"><Data ss:Type="String">13</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">1.11</Data></Cell><Cell ss:StyleID="ce13"><Data ss:Type="Number">-1.11</Data></Cell></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce5"><Data ss:Type="String">ABC</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">1</Data></Cell><Cell ss:StyleID="ce67"><Data ss:Type="Number">1.11</Data></Cell><Cell ss:StyleID="ce68"><Data ss:Type="DateTime">2001-01-01T00:00:00.000</Data></Cell><Cell ss:StyleID="ce69"><Data ss:Type="DateTime">1899-12-31T01:00:00.000</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce68" ss:Formula="of:=[.D3]-[.B3]"><Data ss:Type="DateTime">2000-12-31T00:00:00.000</Data></Cell><Cell ss:StyleID="ce67" ss:Formula="of:=[.B3]*[.C3]"><Data ss:Type="Number">1.11</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="String">A</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=[.B3]&amp;[.J3]"><Data ss:Type="String">1A</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce5"><Data ss:Type="String">BCD</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">2</Data></Cell><Cell ss:StyleID="ce67"><Data ss:Type="Number">2.22</Data></Cell><Cell ss:StyleID="ce68"><Data ss:Type="DateTime">2002-02-02T00:00:00.000</Data></Cell><Cell ss:StyleID="ce69"><Data ss:Type="DateTime">1899-12-31T02:00:00.000</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce68" ss:Formula="of:=[.D4]-[.B4]"><Data ss:Type="DateTime">2002-01-31T00:00:00.000</Data></Cell><Cell ss:StyleID="ce67" ss:Formula="of:=[.B4]*[.C4]"><Data ss:Type="Number">4.44</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="String">B</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=[.B4]&amp;[.J4]"><Data ss:Type="String">2B</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce5"><Data ss:Type="String">CDE</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">3</Data></Cell><Cell ss:StyleID="ce67"><Data ss:Type="Number">3.33</Data></Cell><Cell ss:StyleID="ce68"><Data ss:Type="DateTime">2003-03-03T00:00:00.000</Data></Cell><Cell ss:StyleID="ce69"><Data ss:Type="DateTime">1899-12-31T03:00:00.000</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce68" ss:Formula="of:=[.D5]-[.B5]"><Data ss:Type="DateTime">2003-02-28T00:00:00.000</Data></Cell><Cell ss:StyleID="ce67" ss:Formula="of:=[.B5]*[.C5]"><Data ss:Type="Number">9.99</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="String">C</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=[.B5]&amp;[.J5]"><Data ss:Type="String">3C</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce5"><Data ss:Type="String">DEF</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">4</Data></Cell><Cell ss:StyleID="ce67"><Data ss:Type="Number">4.44</Data></Cell><Cell ss:StyleID="ce68"><Data ss:Type="DateTime">2004-04-03T23:00:00.000</Data></Cell><Cell ss:StyleID="ce69"><Data ss:Type="DateTime">1899-12-31T04:00:00.000</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce68" ss:Formula="of:=[.D6]-[.B6]"><Data ss:Type="DateTime">2004-03-30T23:00:00.000</Data></Cell><Cell ss:StyleID="ce67" ss:Formula="of:=[.B6]*[.C6]"><Data ss:Type="Number">17.76</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="String">D</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=[.B6]&amp;[.J6]"><Data ss:Type="String">4D</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce5"><Data ss:Type="String">EFG</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">5</Data></Cell><Cell ss:StyleID="ce67"><Data ss:Type="Number">5.55</Data></Cell><Cell ss:StyleID="ce68"><Data ss:Type="DateTime">2005-05-04T23:00:00.000</Data></Cell><Cell ss:StyleID="ce69"><Data ss:Type="DateTime">1899-12-31T05:00:00.000</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce68" ss:Formula="of:=[.D7]-[.B7]"><Data ss:Type="DateTime">2005-04-29T23:00:00.000</Data></Cell><Cell ss:StyleID="ce67" ss:Formula="of:=[.B7]*[.C7]"><Data ss:Type="Number">27.75</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="String">E</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=[.B7]&amp;[.J7]"><Data ss:Type="String">5E</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce5"><Data ss:Type="String">FGH</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">6</Data></Cell><Cell ss:StyleID="ce67"><Data ss:Type="Number">6.66</Data></Cell><Cell ss:StyleID="ce68"><Data ss:Type="DateTime">2006-06-05T23:00:00.000</Data></Cell><Cell ss:StyleID="ce69"><Data ss:Type="DateTime">1899-12-31T06:00:00.000</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce68" ss:Formula="of:=[.D8]-[.B8]"><Data ss:Type="DateTime">2006-05-30T23:00:00.000</Data></Cell><Cell ss:StyleID="ce67" ss:Formula="of:=[.B8]*[.C8]"><Data ss:Type="Number">39.96</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="String">F</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=[.B8]&amp;[.J8]"><Data ss:Type="String">6F</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce5"><Data ss:Type="String">GHI</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">7</Data></Cell><Cell ss:StyleID="ce67"><Data ss:Type="Number">7.77</Data></Cell><Cell ss:StyleID="ce68"><Data ss:Type="DateTime">2007-07-06T23:00:00.000</Data></Cell><Cell ss:StyleID="ce69"><Data ss:Type="DateTime">1899-12-31T07:00:00.000</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce68" ss:Formula="of:=[.D9]-[.B9]"><Data ss:Type="DateTime">2007-06-29T23:00:00.000</Data></Cell><Cell ss:StyleID="ce67" ss:Formula="of:=[.B9]*[.C9]"><Data ss:Type="Number">54.39</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="String">G</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=[.B9]&amp;[.J9]"><Data ss:Type="String">7G</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:Index="24" ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce5"><Data ss:Type="String">HIJ</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">8</Data></Cell><Cell ss:StyleID="ce67"><Data ss:Type="Number">8.88</Data></Cell><Cell ss:StyleID="ce68"><Data ss:Type="DateTime">2008-08-07T23:00:00.000</Data></Cell><Cell ss:StyleID="ce69"><Data ss:Type="DateTime">1899-12-31T08:00:00.000</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce68" ss:Formula="of:=[.D10]-[.B10]"><Data ss:Type="DateTime">2008-07-30T23:00:00.000</Data></Cell><Cell ss:StyleID="ce67" ss:Formula="of:=[.B10]*[.C10]"><Data ss:Type="Number">71.04</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="String">H</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=[.B10]&amp;[.J10]"><Data ss:Type="String">8H</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce5"><Data ss:Type="String">IJK</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">9</Data></Cell><Cell ss:StyleID="ce67"><Data ss:Type="Number">9.99</Data></Cell><Cell ss:StyleID="ce68"><Data ss:Type="DateTime">2009-09-08T23:00:00.000</Data></Cell><Cell ss:StyleID="ce69"><Data ss:Type="DateTime">1899-12-31T09:00:00.000</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce68" ss:Formula="of:=[.D11]-[.B11]"><Data ss:Type="DateTime">2009-08-30T23:00:00.000</Data></Cell><Cell ss:StyleID="ce67" ss:Formula="of:=[.B11]*[.C11]"><Data ss:Type="Number">89.91</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="String">I</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=[.B11]&amp;[.J11]"><Data ss:Type="String">9I</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce5"><Data ss:Type="String">JKL</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">10</Data></Cell><Cell ss:StyleID="ce67"><Data ss:Type="Number">11.1</Data></Cell><Cell ss:StyleID="ce68"><Data ss:Type="DateTime">2010-10-09T23:00:00.000</Data></Cell><Cell ss:StyleID="ce69"><Data ss:Type="DateTime">1899-12-31T10:00:00.000</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce68" ss:Formula="of:=[.D12]-[.B12]"><Data ss:Type="DateTime">2010-09-29T23:00:00.000</Data></Cell><Cell ss:StyleID="ce67" ss:Formula="of:=[.B12]*[.C12]"><Data ss:Type="Number">111</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="String">J</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=[.B12]&amp;[.J12]"><Data ss:Type="String">10J</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce5"><Data ss:Type="String">KLM</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">11</Data></Cell><Cell ss:StyleID="ce67"><Data ss:Type="Number">12.21</Data></Cell><Cell ss:StyleID="ce68"><Data ss:Type="DateTime">2011-11-11T00:00:00.000</Data></Cell><Cell ss:StyleID="ce69"><Data ss:Type="DateTime">1899-12-31T11:00:00.000</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce68" ss:Formula="of:=[.D13]-[.B13]"><Data ss:Type="DateTime">2011-10-31T00:00:00.000</Data></Cell><Cell ss:StyleID="ce67" ss:Formula="of:=[.B13]*[.C13]"><Data ss:Type="Number">134.31</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="String">K</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=[.B13]&amp;[.J13]"><Data ss:Type="String">11K</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce5"><Data ss:Type="String">LMN</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">12</Data></Cell><Cell ss:StyleID="ce67"><Data ss:Type="Number">13.32</Data></Cell><Cell ss:StyleID="ce68"><Data ss:Type="DateTime">2012-12-12T00:00:00.000</Data></Cell><Cell ss:StyleID="ce69"><Data ss:Type="DateTime">1899-12-31T288:00:00.000</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce68" ss:Formula="of:=[.D14]-[.B14]"><Data ss:Type="DateTime">2012-11-30T00:00:00.000</Data></Cell><Cell ss:StyleID="ce67" ss:Formula="of:=[.B14]*[.C14]"><Data ss:Type="Number">159.84</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="String">L</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=[.B14]&amp;[.J14]"><Data ss:Type="String">12L</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:StyleID="ce5"><Data ss:Type="String">ZYX</Data></Cell><Cell ss:StyleID="ce5"><Data ss:Type="Number">-1</Data></Cell><Cell ss:StyleID="ce67"><Data ss:Type="Number">-1.11</Data></Cell><Cell ss:StyleID="ce68"><Data ss:Type="DateTime">1999-12-01T00:00:00.000</Data></Cell><Cell ss:StyleID="ce69"><Data ss:Type="DateTime">1899-12-31T23:00:00.000</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce68" ss:Formula="of:=[.D15]-[.B15]"><Data ss:Type="DateTime">1999-12-02T00:00:00.000</Data></Cell><Cell ss:StyleID="ce67" ss:Formula="of:=[.B15]*[.C15]"><Data ss:Type="Number">1.11</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"><Data ss:Type="String">M</Data></Cell><Cell ss:StyleID="ce5" ss:Formula="of:=[.B15]&amp;[.J15]"><Data ss:Type="String">-1M</Data></Cell><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/><Cell ss:StyleID="ce5"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:AutoFitHeight="0" ss:Height="14.9953"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row><Row ss:Index="65550" ss:Height="12.8409"><Cell ss:Index="1024" ss:StyleID="ce13"/></Row></Table><x:WorksheetOptions/></ss:Worksheet></Workbook> \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/Examples/GnumericReader.php b/src/vendor/phpoffice/phpexcel/Examples/GnumericReader.php new file mode 100644 index 0000000..1b22e2c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/GnumericReader.php @@ -0,0 +1,60 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); + +date_default_timezone_set('Europe/London'); + +/** PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + +echo date('H:i:s') , " Load from Gnumeric file" , PHP_EOL; +$callStartTime = microtime(true); + +$objReader = PHPExcel_IOFactory::createReader('Gnumeric'); +$objPHPExcel = $objReader->load("GnumericTest.gnumeric"); + + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo 'Call time to read Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , PHP_EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , PHP_EOL; + + +echo date('H:i:s') , " Write to Excel2007 format" , PHP_EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', __FILE__) , PHP_EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , PHP_EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , PHP_EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/GnumericTest.gnumeric b/src/vendor/phpoffice/phpexcel/Examples/GnumericTest.gnumeric new file mode 100644 index 0000000000000000000000000000000000000000..ea2fac379e51e707060c8c8d5314899c60bad287 GIT binary patch literal 7823 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Examples/OOCalcReader.php b/src/vendor/phpoffice/phpexcel/Examples/OOCalcReader.php new file mode 100644 index 0000000..70f3606 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/OOCalcReader.php @@ -0,0 +1,61 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); + +date_default_timezone_set('Europe/London'); + +/** PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + +echo date('H:i:s') , " Load from OOCalc file" , PHP_EOL; +$callStartTime = microtime(true); + +$objReader = PHPExcel_IOFactory::createReader('OOCalc'); +$objPHPExcel = $objReader->load("OOCalcTest.ods"); + + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo 'Call time to read Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , PHP_EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , PHP_EOL; + + +echo date('H:i:s') , " Write to Excel2007 format" , PHP_EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', __FILE__) , PHP_EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , PHP_EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , PHP_EOL; + diff --git a/src/vendor/phpoffice/phpexcel/Examples/OOCalcReaderPCLZip.php b/src/vendor/phpoffice/phpexcel/Examples/OOCalcReaderPCLZip.php new file mode 100644 index 0000000..2fc771c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/OOCalcReaderPCLZip.php @@ -0,0 +1,64 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); + +date_default_timezone_set('Europe/London'); + +/** PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + +// Use PCLZip rather than ZipArchive to read the Excel2007 OfficeOpenXML file +PHPExcel_Settings::setZipClass(PHPExcel_Settings::PCLZIP); + +echo date('H:i:s') , " Load from OOCalc file" , PHP_EOL; +$callStartTime = microtime(true); + +$objReader = PHPExcel_IOFactory::createReader('OOCalc'); +$objPHPExcel = $objReader->load("OOCalcTest.ods"); + + +$callEndTime = microtime(true); +$callTime = $callEndTime - $callStartTime; +echo 'Call time to read Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , PHP_EOL; +// Echo memory usage +echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , PHP_EOL; + + +echo date('H:i:s') , " Write to Excel2007 format" , PHP_EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', __FILE__) , PHP_EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , PHP_EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , PHP_EOL; + diff --git a/src/vendor/phpoffice/phpexcel/Examples/OOCalcTest.ods b/src/vendor/phpoffice/phpexcel/Examples/OOCalcTest.ods new file mode 100644 index 0000000000000000000000000000000000000000..b29db7663dbdbba6f8bb42145b7a0cd9590c7f05 GIT binary patch literal 17931 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 W5};szeg^;bck%TY2Iv2C_5T5<3-_=9 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Examples/Quadratic.php b/src/vendor/phpoffice/phpexcel/Examples/Quadratic.php new file mode 100644 index 0000000..11a712e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/Quadratic.php @@ -0,0 +1,68 @@ +<html> +<head> +<title>Quadratic Equation Solver</title> +</head> +<body> +<?php + +/** Error reporting **/ +error_reporting(E_ALL); + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/../Classes/'); + +?> +<h1>Quadratic Equation Solver</h1> +<form action="Quadratic.php" method="POST"> +Enter the coefficients for the Ax<sup>2</sup> + Bx + C = 0 +<table border="0" cellpadding="0" cellspacing="0"> + <tr><td><b>A&nbsp;</b></td> + <td><input name="A" type="text" size="8" value="<?php echo (isset($_POST['A'])) ? htmlentities($_POST['A']) : ''; ?>"></td> + </tr> + <tr><td><b>B&nbsp;</b></td> + <td><input name="B" type="text" size="8" value="<?php echo (isset($_POST['B'])) ? htmlentities($_POST['B']) : ''; ?>"></td> + </tr> + <tr><td><b>C&nbsp;</b></td> + <td><input name="C" type="text" size="8" value="<?php echo (isset($_POST['C'])) ? htmlentities($_POST['C']) : ''; ?>"></td> + </tr> +</table> +<input name="submit" type="submit" value="calculate"><br /> +If A=0, the equation is not quadratic. +</form> + +<?php +/** If the user has submitted the form, then we need to execute a calculation **/ +if (isset($_POST['submit'])) { + if ($_POST['A'] == 0) { + echo 'The equation is not quadratic'; + } else { + /** So we include PHPExcel to perform the calculations **/ + include 'PHPExcel/IOFactory.php'; + + /** Load the quadratic equation solver worksheet into memory **/ + $objPHPExcel = PHPExcel_IOFactory::load('./Quadratic.xlsx'); + + /** Set our A, B and C values **/ + $objPHPExcel->getActiveSheet()->setCellValue('A1', $_POST['A']); + $objPHPExcel->getActiveSheet()->setCellValue('B1', $_POST['B']); + $objPHPExcel->getActiveSheet()->setCellValue('C1', $_POST['C']); + + + /** Calculate and Display the results **/ + echo '<hr /><b>Roots:</b><br />'; + + $callStartTime = microtime(true); + echo $objPHPExcel->getActiveSheet()->getCell('B5')->getCalculatedValue().'<br />'; + echo $objPHPExcel->getActiveSheet()->getCell('B6')->getCalculatedValue().'<br />'; + $callEndTime = microtime(true); + $callTime = $callEndTime - $callStartTime; + + echo '<hr />Call time for Quadratic Equation Solution was '.sprintf('%.4f',$callTime).' seconds<br /><hr />'; + echo ' Peak memory usage: '.(memory_get_peak_usage(true) / 1024 / 1024).' MB<br />'; + } +} + +?> + +</body> +<html> diff --git a/src/vendor/phpoffice/phpexcel/Examples/Quadratic2.php b/src/vendor/phpoffice/phpexcel/Examples/Quadratic2.php new file mode 100644 index 0000000..5f6013e --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/Quadratic2.php @@ -0,0 +1,65 @@ +<html> +<head> +<title>Quadratic Equation Solver</title> +</head> +<body> +<?php + +/** Error reporting **/ +error_reporting(E_ALL); + +/** Include path **/ +set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/../Classes/'); + +?> +<h1>Quadratic Equation Solver</h1> +<form action="Quadratic2.php" method="POST"> +Enter the coefficients for the Ax<sup>2</sup> + Bx + C = 0 +<table border="0" cellpadding="0" cellspacing="0"> + <tr><td><b>A&nbsp;</b></td> + <td><input name="A" type="text" size="8" value="<?php echo (isset($_POST['A'])) ? htmlentities($_POST['A']) : ''; ?>"></td> + </tr> + <tr><td><b>B&nbsp;</b></td> + <td><input name="B" type="text" size="8" value="<?php echo (isset($_POST['B'])) ? htmlentities($_POST['B']) : ''; ?>"></td> + </tr> + <tr><td><b>C&nbsp;</b></td> + <td><input name="C" type="text" size="8" value="<?php echo (isset($_POST['C'])) ? htmlentities($_POST['C']) : ''; ?>"></td> + </tr> +</table> +<input name="submit" type="submit" value="calculate"><br /> +If A=0, the equation is not quadratic. +</form> + +<?php +/** If the user has submitted the form, then we need to execute a calculation **/ +if (isset($_POST['submit'])) { + if ($_POST['A'] == 0) { + echo 'The equation is not quadratic'; + } else { + /** So we include PHPExcel to perform the calculations **/ + include 'PHPExcel/Calculation.php'; + + /** Calculate and Display the results **/ + echo '<hr /><b>Roots:</b><br />'; + + $callStartTime = microtime(true); + $discriminantFormula = '=POWER('.$_POST['B'].',2) - (4 * '.$_POST['A'].' * '.$_POST['C'].')'; + $discriminant = PHPExcel_Calculation::getInstance()->calculateFormula($discriminantFormula); + + $r1Formula = '=IMDIV(IMSUM(-'.$_POST['B'].',IMSQRT('.$discriminant.')),2 * '.$_POST['A'].')'; + $r2Formula = '=IF('.$discriminant.'=0,"Only one root",IMDIV(IMSUB(-'.$_POST['B'].',IMSQRT('.$discriminant.')),2 * '.$_POST['A'].'))'; + + echo PHPExcel_Calculation::getInstance()->calculateFormula($r1Formula).'<br />'; + echo PHPExcel_Calculation::getInstance()->calculateFormula($r2Formula).'<br />'; + $callEndTime = microtime(true); + $callTime = $callEndTime - $callStartTime; + + echo '<hr />Call time for Quadratic Equation Solution was '.sprintf('%.4f',$callTime).' seconds<br /><hr />'; + echo ' Peak memory usage: '.(memory_get_peak_usage(true) / 1024 / 1024).' MB<br />'; + } +} + +?> + +</body> +<html> diff --git a/src/vendor/phpoffice/phpexcel/Examples/SylkReader.php b/src/vendor/phpoffice/phpexcel/Examples/SylkReader.php new file mode 100644 index 0000000..a16a4f0 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/SylkReader.php @@ -0,0 +1,50 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); + +date_default_timezone_set('Europe/London'); + +/** PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + + +echo date('H:i:s') , " Load from SYLK file" , PHP_EOL; +$objPHPExcel = PHPExcel_IOFactory::load("SylkTest.slk"); + +echo date('H:i:s') , " Write to Excel2007 format" , PHP_EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', __FILE__) , PHP_EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , PHP_EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , PHP_EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/SylkTest.slk b/src/vendor/phpoffice/phpexcel/Examples/SylkTest.slk new file mode 100644 index 0000000..d5dd5bb --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/SylkTest.slk @@ -0,0 +1,152 @@ +ID;PWXL;N;E +P;PGeneral +P;P0 +P;P0.00 +P;P#,##0 +P;P#,##0.00 +P;P#,##0;;\-#,##0 +P;P#,##0;;[Red]\-#,##0 +P;P#,##0.00;;\-#,##0.00 +P;P#,##0.00;;[Red]\-#,##0.00 +P;P"$"#,##0;;\-"$"#,##0 +P;P"$"#,##0;;[Red]\-"$"#,##0 +P;P"$"#,##0.00;;\-"$"#,##0.00 +P;P"$"#,##0.00;;[Red]\-"$"#,##0.00 +P;P0% +P;P0.00% +P;P0.00E+00 +P;P##0.0E+0 +P;P#\ ?/? +P;P#\ ??/?? +P;Pdd/mm/yyyy +P;Pdd\-mmm\-yy +P;Pdd\-mmm +P;Pmmm\-yy +P;Ph:mm\ AM/PM +P;Ph:mm:ss\ AM/PM +P;Phh:mm +P;Phh:mm:ss +P;Pdd/mm/yyyy\ hh:mm +P;Pmm:ss +P;Pmm:ss.0 +P;P@ +P;P[h]:mm:ss +P;P_-"$"* #,##0_-;;\-"$"* #,##0_-;;_-"$"* "-"_-;;_-@_- +P;P_-* #,##0_-;;\-* #,##0_-;;_-* "-"_-;;_-@_- +P;P_-"$"* #,##0.00_-;;\-"$"* #,##0.00_-;;_-"$"* "-"??_-;;_-@_- +P;P_-* #,##0.00_-;;\-* #,##0.00_-;;_-* "-"??_-;;_-@_- +P;FArial;M200 +P;FArial;M200 +P;FArial;M200 +P;FArial;M200 +P;EArial;M200 +P;EArial;M200 +P;EArial;M200 +P;EArial;M200;SB +P;EArial;M200;SBI +P;EArial;M200;SI +P;EArial;M200;SU +P;EArial;M200;L11 +P;EArial;M200;SB +P;EArial;M200 +P;EArial;M200;SI +P;EArial;M200;SBI +P;EArial;M200;SBU +P;EArial;M200;SBIU +P;EArial;M200 +P;EArial;M200;SI +F;P0;DG0G8;M255 +B;Y18;X10;D0 0 17 9 +O;L;D;V0;K47;G100 0.001 +F;W1 1 17 +F;W4 6 6 +F;M270;R9 +F;M270;R12 +F;M270;R17 +F;M270;R18 +F;SM12;Y1;X1 +C;K"Test String 1" +F;SM19;X2 +C;K1 +F;SM19;X3 +C;K5 +F;SIDM18;X5 +C;K"A" +F;SDM17;X6 +C;K"E" +C;X8;K6;ERC[-6]+RC[-5] +C;X10;K"AE";ERC[-5]&RC[-4] +F;SSM0;Y2;X1 +C;K"Test - String 2" +C;X2;K2 +F;SM19;X3 +C;K6 +C;X5;K"B" +C;X6;K"F" +C;X8;K8;ERC[-6]+RC[-5] +C;X10;K"BF";ERC[-5]&RC[-4] +C;Y3;X1;K"Test #3" +F;SM19;X2 +C;K3 +F;SM19;X3 +C;K7 +F;SDM13;X5 +C;K"C" +F;SIDM16;X6 +C;K"G" +C;X8;K10;ERC[-6]+RC[-5] +C;X10;K"CG";ERC[-5]&RC[-4] +F;SM11;Y4;X1 +C;K"Test with (;;) in string" +C;X2;K4 +F;SM19;X3 +C;K8 +F;SIM15;X5 +C;K"D" +C;X6;K"H" +C;X8;K12;ERC[-6]+RC[-5] +C;X10;K"DH";ERC[-5]&RC[-4] +C;Y5;X8;K10;ESUM(R[-4]C[-6]:R[-1]C[-6]) +C;X9;K26;ESUM(R[-4]C[-6]:R[-1]C[-6]) +C;X10;K36;ESUM(R[-4]C[-8]:R[-1]C[-7]) +C;Y6;X2;K1.23 +C;X3;KTRUE +F;P19;FG0G;X4 +C;Y7;X2;K2.34 +C;X3;KFALSE +C;Y8;X2;K3.45 +F;Y9;X1 +F;X2 +F;X3 +F;X4 +F;X5 +F;X6 +F;X7 +F;X8 +F;X9 +F;X10 +F;P19;FG0G;Y10;X1 +C;K22269 +F;STM0;X3 +C;K"TOP" +F;P17;FG0G;Y11;X1 +C;K1.5 +F;Y12 +F;X2 +F;SBM0;X3 +C;K"BOTTOM" +F;X4 +F;X5 +F;X6 +F;X7 +F;X8 +F;X9 +F;X10 +F;SLM0;Y14;X3 +C;K"LEFT" +F;SRM0;Y16 +C;K"RIGHT" +F;Y17 +F;SLRTBM0;Y18 +C;K"BOX" +E diff --git a/src/vendor/phpoffice/phpexcel/Examples/XMLReader.php b/src/vendor/phpoffice/phpexcel/Examples/XMLReader.php new file mode 100644 index 0000000..836f6b2 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/XMLReader.php @@ -0,0 +1,60 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); + +date_default_timezone_set('Europe/London'); + +/** PHPExcel_IOFactory */ +require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; + + +echo date('H:i:s') , " Load from XML file" , PHP_EOL; +$inputFileName = "XMLTest.xml"; + +/** Identify the type of $inputFileName **/ +$inputFileType = PHPExcel_IOFactory::identify($inputFileName); +echo 'Loading ' , $inputFileName , ' using ' , $inputFileType , " Reader" , PHP_EOL; + +/** Create a new Reader of the type that has been identified **/ +$objReader = PHPExcel_IOFactory::createReader($inputFileType); +/** Load $inputFileName to a PHPExcel Object **/ +$objPHPExcel = $objReader->load($inputFileName); + + +echo date('H:i:s') , " Write to Excel2007 format" , PHP_EOL; +$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); +$objWriter->save(str_replace('.php', '.xlsx', __FILE__)); +echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', __FILE__) , PHP_EOL; + + +// Echo memory peak usage +echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , PHP_EOL; + +// Echo done +echo date('H:i:s') , " Done writing file" , PHP_EOL; diff --git a/src/vendor/phpoffice/phpexcel/Examples/XMLTest.xml b/src/vendor/phpoffice/phpexcel/Examples/XMLTest.xml new file mode 100644 index 0000000..95921bc --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/XMLTest.xml @@ -0,0 +1,450 @@ +<?xml version="1.0"?> +<?mso-application progid="Excel.Sheet"?> +<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" + xmlns:o="urn:schemas-microsoft-com:office:office" + xmlns:x="urn:schemas-microsoft-com:office:excel" + xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" + xmlns:html="http://www.w3.org/TR/REC-html40"> + <DocumentProperties xmlns="urn:schemas-microsoft-com:office:office"> + <Title>Excel 2003 XML Test Workbook</Title> + <Subject>This is a test workbook saved as Excel 2003 XML</Subject> + <Author>Mark Baker</Author> + <Keywords>PHPExcel Excel 2003 XML Reader</Keywords> + <Description>This is a test for the PHPExcel Reader for workbooks saved using Excel 2003's XML Format</Description> + <LastAuthor>Mark Baker</LastAuthor> + <Created>2009-09-11T08:26:08Z</Created> + <LastSaved>2009-09-17T22:53:09Z</LastSaved> + <Category>Reader</Category> + <Company>PHPExcel</Company> + <Version>14.00</Version> + </DocumentProperties> + <OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office"> + <AllowPNG/> + </OfficeDocumentSettings> + <ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel"> + <WindowHeight>13176</WindowHeight> + <WindowWidth>28452</WindowWidth> + <WindowTopX>240</WindowTopX> + <WindowTopY>516</WindowTopY> + <ProtectStructure>False</ProtectStructure> + <ProtectWindows>False</ProtectWindows> + </ExcelWorkbook> + <Styles> + <Style ss:ID="Default" ss:Name="Normal"> + <Alignment ss:Vertical="Bottom"/> + <Borders/> + <Font ss:FontName="Calibri" ss:Size="11" ss:Color="#000000"/> + <Interior/> + <NumberFormat/> + <Protection/> + </Style> + <Style ss:ID="m42221568"> + <Alignment ss:Horizontal="Center" ss:Vertical="Center"/> + <Borders> + <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="3" + ss:Color="#00B050"/> + <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="3" + ss:Color="#0070C0"/> + <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="3" + ss:Color="#FFFF00"/> + <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="3" + ss:Color="#FF0000"/> + </Borders> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000"/> + </Style> + <Style ss:ID="s62"> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#FF0000" ss:Bold="1"/> + </Style> + <Style ss:ID="s63"> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000"/> + </Style> + <Style ss:ID="s64"> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000" ss:Bold="1" + ss:Italic="1" ss:Underline="Single"/> + </Style> + <Style ss:ID="s65"> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000" ss:Bold="1" + ss:Underline="Single"/> + </Style> + <Style ss:ID="s66"> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000" ss:Bold="1"/> + <Interior/> + </Style> + <Style ss:ID="s67"> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000"/> + <Interior/> + </Style> + <Style ss:ID="s68"> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000" ss:Bold="1"/> + </Style> + <Style ss:ID="s69"> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000" ss:Bold="1" + ss:Italic="1"/> + </Style> + <Style ss:ID="s70"> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000" ss:Underline="Single"/> + </Style> + <Style ss:ID="s71"> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000" ss:Italic="1"/> + </Style> + <Style ss:ID="s72"> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000"/> + <NumberFormat ss:Format="Short Date"/> + </Style> + <Style ss:ID="s73"> + <Borders> + <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="2" + ss:Color="#000000"/> + </Borders> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000"/> + </Style> + <Style ss:ID="s74"> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000"/> + <NumberFormat ss:Format="#\ ?/?"/> + </Style> + <Style ss:ID="s75"> + <Borders> + <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="2" + ss:Color="#000000"/> + </Borders> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000"/> + </Style> + <Style ss:ID="s76"> + <Borders> + <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2" + ss:Color="#000000"/> + </Borders> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000"/> + </Style> + <Style ss:ID="s77"> + <Borders> + <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2" + ss:Color="#000000"/> + </Borders> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000"/> + </Style> + <Style ss:ID="s85"> + <Borders> + <Border ss:Position="DiagonalLeft" ss:LineStyle="Double" ss:Weight="3" + ss:Color="#FF0000"/> + <Border ss:Position="DiagonalRight" ss:LineStyle="Double" ss:Weight="3" + ss:Color="#FF0000"/> + </Borders> + </Style> + <Style ss:ID="s86"> + <Alignment ss:Horizontal="Center" ss:Vertical="Bottom" ss:WrapText="1"/> + <Font ss:FontName="Arial" ss:Size="12" ss:Color="#000000" ss:Bold="1" + ss:Underline="Single"/> + </Style> + <Style ss:ID="s87"> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000"/> + <NumberFormat ss:Format="0.00;[Red]0.00"/> + </Style> + <Style ss:ID="s88"> + <Font ss:FontName="Arial" ss:Size="11" ss:Color="#000000"/> + <NumberFormat ss:Format="dd\-mmm\-yyyy"/> + </Style> + </Styles> + <Worksheet ss:Name="Sample Data"> + <Table ss:ExpandedColumnCount="10" ss:ExpandedRowCount="20" x:FullColumns="1" + x:FullRows="1" ss:DefaultRowHeight="15"> + <Column ss:AutoFitWidth="0" ss:Width="90.6"/> + <Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="33.6"/> + <Row ss:AutoFitHeight="0"> + <Cell ss:StyleID="s62"><Data ss:Type="String">Test String 1</Data></Cell> + <Cell ss:StyleID="s63"><Data ss:Type="Number">1</Data></Cell> + <Cell ss:StyleID="s63"><Data ss:Type="Number">5</Data></Cell> + <Cell ss:Index="5" ss:StyleID="s64"><Data ss:Type="String">A</Data></Cell> + <Cell ss:StyleID="s65"><Data ss:Type="String">E</Data></Cell> + <Cell ss:Index="8" ss:Formula="=RC[-6]+RC[-5]"><Data ss:Type="Number">6</Data></Cell> + <Cell ss:Index="10" ss:Formula="=RC[-5]&amp;RC[-4]"><Data ss:Type="String">AE</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell ss:StyleID="s66"><Data ss:Type="String">Test - String 2</Data></Cell> + <Cell><Data ss:Type="Number">2</Data></Cell> + <Cell ss:StyleID="s63"><Data ss:Type="Number">6</Data></Cell> + <Cell ss:Index="5"><Data ss:Type="String">B</Data></Cell> + <Cell><Data ss:Type="String">F</Data></Cell> + <Cell ss:Index="8" ss:Formula="=RC[-6]+RC[-5]"><Data ss:Type="Number">8</Data></Cell> + <Cell ss:Index="10" ss:Formula="=RC[-5]&amp;RC[-4]"><Data ss:Type="String">BF</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell ss:StyleID="s67"><Data ss:Type="String">Test #3</Data></Cell> + <Cell ss:StyleID="s63"><Data ss:Type="Number">3</Data></Cell> + <Cell ss:StyleID="s63"><Data ss:Type="Number">7</Data></Cell> + <Cell ss:Index="5" ss:StyleID="s68"><Data ss:Type="String">C</Data></Cell> + <Cell ss:StyleID="s69"><Data ss:Type="String">G</Data></Cell> + <Cell ss:Index="8" ss:Formula="=RC[-6]+RC[-5]"><Data ss:Type="Number">10</Data></Cell> + <Cell ss:Index="10" ss:Formula="=RC[-5]&amp;RC[-4]"><Data ss:Type="String">CG</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell ss:StyleID="s70"><Data ss:Type="String">Test with (&quot;) in string</Data></Cell> + <Cell><Data ss:Type="Number">4</Data></Cell> + <Cell ss:StyleID="s63"><Data ss:Type="Number">8</Data></Cell> + <Cell ss:Index="5" ss:StyleID="s71"><Data ss:Type="String">D</Data></Cell> + <Cell><Data ss:Type="String">H</Data></Cell> + <Cell ss:Index="8" ss:Formula="=RC[-6]+RC[-5]"><Data ss:Type="Number">12</Data></Cell> + <Cell ss:Index="10" ss:Formula="=RC[-5]&amp;RC[-4]"><Data ss:Type="String">DH</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell ss:Index="8" ss:Formula="=SUM(R[-4]C[-6]:R[-1]C[-6])"><Data + ss:Type="Number">10</Data></Cell> + <Cell ss:Formula="=SUM(R[-4]C[-6]:R[-1]C[-6])"><Data ss:Type="Number">26</Data></Cell> + <Cell ss:Formula="=SUM(R[-4]C[-8]:R[-1]C[-7])"><Data ss:Type="Number">36</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell ss:Index="2"><Data ss:Type="Number">1.23</Data></Cell> + <Cell><Data ss:Type="Boolean">1</Data></Cell> + <Cell ss:StyleID="s72"/> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell ss:Index="2"><Data ss:Type="Number">2.34</Data></Cell> + <Cell><Data ss:Type="Boolean">0</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell ss:Index="2"><Data ss:Type="Number">3.45</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0" ss:Height="13.5"/> + <Row ss:AutoFitHeight="0"> + <Cell ss:StyleID="s72"><Data ss:Type="DateTime">1960-12-19T00:00:00.000</Data></Cell> + <Cell ss:Index="3" ss:StyleID="s73"><Data ss:Type="String">TOP</Data></Cell> + <Cell ss:Index="7" ss:Formula="=#N/A"><Data ss:Type="Error">#N/A</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell ss:StyleID="s74"><Data ss:Type="Number">1.5</Data></Cell> + <Cell ss:Index="7" ss:Formula="=12/0"><Data ss:Type="Error">#DIV/0!</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0" ss:Height="13.5"> + <Cell ss:Index="3" ss:StyleID="s75"><Data ss:Type="String">BOTTOM</Data></Cell> + </Row> + <Row ss:Index="14" ss:AutoFitHeight="0"> + <Cell ss:Index="3" ss:StyleID="s76"><Data ss:Type="String">LEFT</Data></Cell> + </Row> + <Row ss:Index="16" ss:AutoFitHeight="0"> + <Cell ss:Index="3" ss:StyleID="s77"><Data ss:Type="String">RIGHT</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0" ss:Height="13.5"/> + <Row ss:AutoFitHeight="0" ss:Height="13.5"> + <Cell ss:Index="2" ss:MergeAcross="1" ss:MergeDown="1" ss:StyleID="m42221568"><Data + ss:Type="String">BOX</Data></Cell> + <Cell ss:Index="5" ss:StyleID="s85"/> + <Cell ss:Index="7"><Data ss:Type="String">Test Column 1</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell ss:Index="8"><Data ss:Type="String">Test Column 2</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell ss:Index="9"><Data ss:Type="String">Test Column 3</Data></Cell> + </Row> + </Table> + <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel"> + <PageSetup> + <Header x:Margin="0.3"/> + <Footer x:Margin="0.3"/> + <PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/> + </PageSetup> + <Unsynced/> + <Print> + <ValidPrinterInfo/> + <HorizontalResolution>600</HorizontalResolution> + <VerticalResolution>600</VerticalResolution> + </Print> + <Selected/> + <Panes> + <Pane> + <Number>3</Number> + <ActiveRow>17</ActiveRow> + <ActiveCol>4</ActiveCol> + </Pane> + </Panes> + <ProtectObjects>False</ProtectObjects> + <ProtectScenarios>False</ProtectScenarios> + <AllowFormatCells/> + <AllowSizeCols/> + <AllowSizeRows/> + <AllowInsertCols/> + <AllowInsertRows/> + <AllowInsertHyperlinks/> + <AllowDeleteCols/> + <AllowDeleteRows/> + <AllowSort/> + <AllowFilter/> + <AllowUsePivotTables/> + </WorksheetOptions> + </Worksheet> + <Worksheet ss:Name="Report Data"> + <Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="14" x:FullColumns="1" + x:FullRows="1" ss:DefaultRowHeight="15"> + <Column ss:AutoFitWidth="0" ss:Width="66.600000000000009"/> + <Column ss:AutoFitWidth="0" ss:Width="68.399999999999991"/> + <Column ss:AutoFitWidth="0" ss:Width="62.400000000000006"/> + <Column ss:Width="69.599999999999994"/> + <Column ss:Index="6" ss:Width="69.599999999999994"/> + <Column ss:AutoFitWidth="0" ss:Width="64.8"/> + <Row ss:AutoFitHeight="0" ss:Height="31.5"> + <Cell ss:StyleID="s86"><Data ss:Type="String">Heading 1</Data></Cell> + <Cell ss:StyleID="s86"><Data ss:Type="String">Heading 2</Data></Cell> + <Cell ss:StyleID="s86"><Data ss:Type="String">Third Heading</Data></Cell> + <Cell ss:StyleID="s86"><Data ss:Type="String">Date Heading</Data></Cell> + <Cell ss:Index="6" ss:StyleID="s86"><Data ss:Type="String">Adjusted Date</Data></Cell> + <Cell ss:StyleID="s86"><Data ss:Type="String">Adjusted Number</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell><Data ss:Type="String">ABC</Data></Cell> + <Cell><Data ss:Type="Number">1</Data></Cell> + <Cell ss:StyleID="s87"><Data ss:Type="Number">1.1100000000000001</Data></Cell> + <Cell ss:StyleID="s88"><Data ss:Type="DateTime">2001-01-01T00:00:00.000</Data></Cell> + <Cell ss:Index="6" ss:StyleID="s88" ss:Formula="=RC[-2]-RC[-4]"><Data + ss:Type="DateTime">2000-12-31T00:00:00.000</Data></Cell> + <Cell ss:StyleID="s87" ss:Formula="=RC[-5]*RC[-4]"><Data ss:Type="Number">1.1100000000000001</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell><Data ss:Type="String">BCD</Data></Cell> + <Cell><Data ss:Type="Number">2</Data></Cell> + <Cell ss:StyleID="s87"><Data ss:Type="Number">2.2200000000000002</Data></Cell> + <Cell ss:StyleID="s88"><Data ss:Type="DateTime">2002-02-02T00:00:00.000</Data></Cell> + <Cell ss:Index="6" ss:StyleID="s88" ss:Formula="=RC[-2]-RC[-4]"><Data + ss:Type="DateTime">2002-01-31T00:00:00.000</Data></Cell> + <Cell ss:StyleID="s87" ss:Formula="=RC[-5]*RC[-4]"><Data ss:Type="Number">4.4400000000000004</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell><Data ss:Type="String">CDE</Data></Cell> + <Cell><Data ss:Type="Number">3</Data></Cell> + <Cell ss:StyleID="s87"><Data ss:Type="Number">3.33</Data></Cell> + <Cell ss:StyleID="s88"><Data ss:Type="DateTime">2003-03-03T00:00:00.000</Data></Cell> + <Cell ss:Index="6" ss:StyleID="s88" ss:Formula="=RC[-2]-RC[-4]"><Data + ss:Type="DateTime">2003-02-28T00:00:00.000</Data></Cell> + <Cell ss:StyleID="s87" ss:Formula="=RC[-5]*RC[-4]"><Data ss:Type="Number">9.99</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell><Data ss:Type="String">DEF</Data></Cell> + <Cell><Data ss:Type="Number">4</Data></Cell> + <Cell ss:StyleID="s87"><Data ss:Type="Number">4.4400000000000004</Data></Cell> + <Cell ss:StyleID="s88"><Data ss:Type="DateTime">2004-04-03T23:00:00.000</Data></Cell> + <Cell ss:Index="6" ss:StyleID="s88" ss:Formula="=RC[-2]-RC[-4]"><Data + ss:Type="DateTime">2004-03-30T23:00:00.000</Data></Cell> + <Cell ss:StyleID="s87" ss:Formula="=RC[-5]*RC[-4]"><Data ss:Type="Number">17.760000000000002</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell><Data ss:Type="String">EFG</Data></Cell> + <Cell><Data ss:Type="Number">5</Data></Cell> + <Cell ss:StyleID="s87"><Data ss:Type="Number">5.55</Data></Cell> + <Cell ss:StyleID="s88"><Data ss:Type="DateTime">2005-05-04T23:00:00.000</Data></Cell> + <Cell ss:Index="6" ss:StyleID="s88" ss:Formula="=RC[-2]-RC[-4]"><Data + ss:Type="DateTime">2005-04-29T23:00:00.000</Data></Cell> + <Cell ss:StyleID="s87" ss:Formula="=RC[-5]*RC[-4]"><Data ss:Type="Number">27.75</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell><Data ss:Type="String">FGH</Data></Cell> + <Cell><Data ss:Type="Number">6</Data></Cell> + <Cell ss:StyleID="s87"><Data ss:Type="Number">6.66</Data></Cell> + <Cell ss:StyleID="s88"><Data ss:Type="DateTime">2006-06-05T23:00:00.000</Data></Cell> + <Cell ss:Index="6" ss:StyleID="s88" ss:Formula="=RC[-2]-RC[-4]"><Data + ss:Type="DateTime">2006-05-30T23:00:00.000</Data></Cell> + <Cell ss:StyleID="s87" ss:Formula="=RC[-5]*RC[-4]"><Data ss:Type="Number">39.96</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell><Data ss:Type="String">GHI</Data></Cell> + <Cell><Data ss:Type="Number">7</Data></Cell> + <Cell ss:StyleID="s87"><Data ss:Type="Number">7.77</Data></Cell> + <Cell ss:StyleID="s88"><Data ss:Type="DateTime">2007-07-06T23:00:00.000</Data></Cell> + <Cell ss:Index="6" ss:StyleID="s88" ss:Formula="=RC[-2]-RC[-4]"><Data + ss:Type="DateTime">2007-06-29T23:00:00.000</Data></Cell> + <Cell ss:StyleID="s87" ss:Formula="=RC[-5]*RC[-4]"><Data ss:Type="Number">54.39</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell><Data ss:Type="String">HIJ</Data></Cell> + <Cell><Data ss:Type="Number">8</Data></Cell> + <Cell ss:StyleID="s87"><Data ss:Type="Number">8.8800000000000008</Data></Cell> + <Cell ss:StyleID="s88"><Data ss:Type="DateTime">2008-08-07T23:00:00.000</Data></Cell> + <Cell ss:Index="6" ss:StyleID="s88" ss:Formula="=RC[-2]-RC[-4]"><Data + ss:Type="DateTime">2008-07-30T23:00:00.000</Data></Cell> + <Cell ss:StyleID="s87" ss:Formula="=RC[-5]*RC[-4]"><Data ss:Type="Number">71.040000000000006</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell><Data ss:Type="String">IJK</Data></Cell> + <Cell><Data ss:Type="Number">9</Data></Cell> + <Cell ss:StyleID="s87"><Data ss:Type="Number">9.99</Data></Cell> + <Cell ss:StyleID="s88"><Data ss:Type="DateTime">2009-09-08T23:00:00.000</Data></Cell> + <Cell ss:Index="6" ss:StyleID="s88" ss:Formula="=RC[-2]-RC[-4]"><Data + ss:Type="DateTime">2009-08-30T23:00:00.000</Data></Cell> + <Cell ss:StyleID="s87" ss:Formula="=RC[-5]*RC[-4]"><Data ss:Type="Number">89.91</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell><Data ss:Type="String">JKL</Data></Cell> + <Cell><Data ss:Type="Number">10</Data></Cell> + <Cell ss:StyleID="s87"><Data ss:Type="Number">11.1</Data></Cell> + <Cell ss:StyleID="s88"><Data ss:Type="DateTime">2010-10-09T23:00:00.000</Data></Cell> + <Cell ss:Index="6" ss:StyleID="s88" ss:Formula="=RC[-2]-RC[-4]"><Data + ss:Type="DateTime">2010-09-29T23:00:00.000</Data></Cell> + <Cell ss:StyleID="s87" ss:Formula="=RC[-5]*RC[-4]"><Data ss:Type="Number">111</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell><Data ss:Type="String">KLM</Data></Cell> + <Cell><Data ss:Type="Number">11</Data></Cell> + <Cell ss:StyleID="s87"><Data ss:Type="Number">12.21</Data></Cell> + <Cell ss:StyleID="s88"><Data ss:Type="DateTime">2011-11-11T00:00:00.000</Data></Cell> + <Cell ss:Index="6" ss:StyleID="s88" ss:Formula="=RC[-2]-RC[-4]"><Data + ss:Type="DateTime">2011-10-31T00:00:00.000</Data></Cell> + <Cell ss:StyleID="s87" ss:Formula="=RC[-5]*RC[-4]"><Data ss:Type="Number">134.31</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell><Data ss:Type="String">LMN</Data></Cell> + <Cell><Data ss:Type="Number">12</Data></Cell> + <Cell ss:StyleID="s87"><Data ss:Type="Number">13.32</Data></Cell> + <Cell ss:StyleID="s88"><Data ss:Type="DateTime">2012-12-12T00:00:00.000</Data></Cell> + <Cell ss:Index="6" ss:StyleID="s88" ss:Formula="=RC[-2]-RC[-4]"><Data + ss:Type="DateTime">2012-11-30T00:00:00.000</Data></Cell> + <Cell ss:StyleID="s87" ss:Formula="=RC[-5]*RC[-4]"><Data ss:Type="Number">159.84</Data></Cell> + </Row> + <Row ss:AutoFitHeight="0"> + <Cell><Data ss:Type="String">ZYX</Data></Cell> + <Cell><Data ss:Type="Number">-1</Data></Cell> + <Cell ss:StyleID="s87"><Data ss:Type="Number">-1.1100000000000001</Data></Cell> + <Cell ss:StyleID="s88"><Data ss:Type="DateTime">1999-12-01T00:00:00.000</Data></Cell> + <Cell ss:Index="6" ss:StyleID="s88" ss:Formula="=RC[-2]-RC[-4]"><Data + ss:Type="DateTime">1999-12-02T00:00:00.000</Data></Cell> + <Cell ss:StyleID="s87" ss:Formula="=RC[-5]*RC[-4]"><Data ss:Type="Number">1.1100000000000001</Data></Cell> + </Row> + </Table> + <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel"> + <PageSetup> + <Header x:Margin="0.3"/> + <Footer x:Margin="0.3"/> + <PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/> + </PageSetup> + <Unsynced/> + <Print> + <ValidPrinterInfo/> + <HorizontalResolution>600</HorizontalResolution> + <VerticalResolution>600</VerticalResolution> + </Print> + <ProtectObjects>False</ProtectObjects> + <ProtectScenarios>False</ProtectScenarios> + <AllowFormatCells/> + <AllowSizeCols/> + <AllowSizeRows/> + <AllowInsertCols/> + <AllowInsertRows/> + <AllowInsertHyperlinks/> + <AllowDeleteCols/> + <AllowDeleteRows/> + <AllowSort/> + <AllowFilter/> + <AllowUsePivotTables/> + </WorksheetOptions> + <ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel"> + <Range>R2C3:R14C3</Range> + <Condition> + <Qualifier>Greater</Qualifier> + <Value1>0</Value1> + <Format Style='color:#006100;background:#C6EFCE'/> + </Condition> + <Condition> + <Qualifier>Less</Qualifier> + <Value1>0</Value1> + <Format Style='color:#9C0006;background:#FFC7CE'/> + </Condition> + </ConditionalFormatting> + </Worksheet> +</Workbook> diff --git a/src/vendor/phpoffice/phpexcel/Examples/data/continents/Africa.txt b/src/vendor/phpoffice/phpexcel/Examples/data/continents/Africa.txt new file mode 100644 index 0000000..407fa76 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/data/continents/Africa.txt @@ -0,0 +1,54 @@ +Algeria +Angola +Benin +Botswana +Burkina +Burundi +Cameroon +Cape Verde +Central African Republic +Chad +Comoros +Congo +Congo, Democratic Republic of +Djibouti +Egypt +Equatorial Guinea +Eritrea +Ethiopia +Gabon +Gambia +Ghana +Guinea +Guinea-Bissau +Ivory Coast +Kenya +Lesotho +Liberia +Libya +Madagascar +Malawi +Mali +Mauritania +Mauritius +Morocco +Mozambique +Namibia +Niger +Nigeria +Rwanda +Sao Tome and Principe +Senegal +Seychelles +Sierra Leone +Somalia +South Africa +South Sudan +Sudan +Swaziland +Tanzania +Togo +Tunisia +Uganda +Zambia +Zimbabwe diff --git a/src/vendor/phpoffice/phpexcel/Examples/data/continents/Asia.txt b/src/vendor/phpoffice/phpexcel/Examples/data/continents/Asia.txt new file mode 100644 index 0000000..9ce006c --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/data/continents/Asia.txt @@ -0,0 +1,44 @@ +Afghanistan +Bahrain +Bangladesh +Bhutan +Brunei +Burma (Myanmar) +Cambodia +China +East Timor +India +Indonesia +Iran +Iraq +Israel +Japan +Jordan +Kazakhstan +Korea, North +Korea, South +Kuwait +Kyrgyzstan +Laos +Lebanon +Malaysia +Maldives +Mongolia +Nepal +Oman +Pakistan +Philippines +Qatar +Russian Federation +Saudi Arabia +Singapore +Sri Lanka +Syria +Tajikistan +Thailand +Turkey +Turkmenistan +United Arab Emirates +Uzbekistan +Vietnam +Yemen diff --git a/src/vendor/phpoffice/phpexcel/Examples/data/continents/Europe.txt b/src/vendor/phpoffice/phpexcel/Examples/data/continents/Europe.txt new file mode 100644 index 0000000..70c1160 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/data/continents/Europe.txt @@ -0,0 +1,47 @@ +Albania +Andorra +Armenia +Austria +Azerbaijan +Belarus +Belgium +Bosnia and Herzegovina +Bulgaria +Croatia +Cyprus +Czech Republic +Denmark +Estonia +Finland +France +Georgia +Germany +Greece +Hungary +Iceland +Ireland +Italy +Latvia +Liechtenstein +Lithuania +Luxembourg +Macedonia +Malta +Moldova +Monaco +Montenegro +Netherlands +Norway +Poland +Portugal +Romania +San Marino +Serbia +Slovakia +Slovenia +Spain +Sweden +Switzerland +Ukraine +United Kingdom +Vatican City diff --git a/src/vendor/phpoffice/phpexcel/Examples/data/continents/North America.txt b/src/vendor/phpoffice/phpexcel/Examples/data/continents/North America.txt new file mode 100644 index 0000000..5881ae1 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/data/continents/North America.txt @@ -0,0 +1,23 @@ +Antigua and Barbuda +Bahamas +Barbados +Belize +Canada +Costa Rica +Cuba +Dominica +Dominican Republic +El Salvador +Grenada +Guatemala +Haiti +Honduras +Jamaica +Mexico +Nicaragua +Panama +Saint Kitts and Nevis +Saint Lucia +Saint Vincent and the Grenadines +Trinidad and Tobago +United States diff --git a/src/vendor/phpoffice/phpexcel/Examples/data/continents/Oceania.txt b/src/vendor/phpoffice/phpexcel/Examples/data/continents/Oceania.txt new file mode 100644 index 0000000..cbdc896 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/data/continents/Oceania.txt @@ -0,0 +1,14 @@ +Australia +Fiji +Kiribati +Marshall Islands +Micronesia +Nauru +New Zealand +Palau +Papua New Guinea +Samoa +Solomon Islands +Tonga +Tuvalu +Vanuatu diff --git a/src/vendor/phpoffice/phpexcel/Examples/data/continents/South America.txt b/src/vendor/phpoffice/phpexcel/Examples/data/continents/South America.txt new file mode 100644 index 0000000..777ffbf --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/data/continents/South America.txt @@ -0,0 +1,12 @@ +Argentina +Bolivia +Brazil +Chile +Colombia +Ecuador +Guyana +Paraguay +Peru +Suriname +Uruguay +Venezuela diff --git a/src/vendor/phpoffice/phpexcel/Examples/images/paid.png b/src/vendor/phpoffice/phpexcel/Examples/images/paid.png new file mode 100644 index 0000000000000000000000000000000000000000..a4355bd6de59bcba25c7092654086f7e3898745c GIT binary patch literal 1605 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 D4Ug;C literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Examples/images/phpexcel_logo.gif b/src/vendor/phpoffice/phpexcel/Examples/images/phpexcel_logo.gif new file mode 100644 index 0000000000000000000000000000000000000000..6e1b5ee45266afddac77bc2b71b3e65f0a3e4037 GIT binary patch literal 6104 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 literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpexcel/Examples/runall.php b/src/vendor/phpoffice/phpexcel/Examples/runall.php new file mode 100644 index 0000000..153cb76 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/Examples/runall.php @@ -0,0 +1,132 @@ +<?php +/** + * PHPExcel + * + * Copyright (c) 2006 - 2015 PHPExcel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * @category PHPExcel + * @package PHPExcel + * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) + * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL + * @version ##VERSION##, ##DATE## + */ + +/** Error reporting */ +error_reporting(E_ALL); + +if (PHP_SAPI != 'cli') { + die ('This script executes all tests, and should only be run from the command line'); +} + +// List of tests +$aTests = array( + '01simple.php' + , '01simplePCLZip.php' + , '02types.php' + , '02types-xls.php' + , '03formulas.php' + , '04printing.php' + , '05featuredemo.php' + , '06largescale.php' + , '06largescale-with-cellcaching.php' + , '06largescale-with-cellcaching-sqlite.php' + , '06largescale-with-cellcaching-sqlite3.php' + , '06largescale-xls.php' + , '07reader.php' + , '07readerPCLZip.php' + , '08conditionalformatting.php' + , '08conditionalformatting2.php' + , '09pagebreaks.php' + , '10autofilter.php' + , '10autofilter-selection-1.php' + , '10autofilter-selection-2.php' + , '10autofilter-selection-display.php' + , '11documentsecurity.php' + , '11documentsecurity-xls.php' + , '12cellProtection.php' + , '13calculation.php' + , '13calculationCyclicFormulae.php' + , '14excel5.php' + , '15datavalidation.php' + , '15datavalidation-xls.php' + , '16csv.php' + , '17html.php' + , '18extendedcalculation.php' + , '19namedrange.php' + , '20readexcel5.php' + , '21pdf.php' + , '22heavilyformatted.php' + , '23sharedstyles.php' + , '24readfilter.php' + , '25inmemoryimage.php' + , '26utf8.php' + , '27imagesexcel5.php' + , '28iterator.php' + , '29advancedvaluebinder.php' + , '30template.php' + , '31docproperties_write.php' + , '31docproperties_write-xls.php' + , '32chartreadwrite.php' + , '33chartcreate-area.php' + , '33chartcreate-bar.php' + , '33chartcreate-bar-stacked.php' + , '33chartcreate-column.php' + , '33chartcreate-column-2.php' + , '33chartcreate-line.php' + , '33chartcreate-pie.php' + , '33chartcreate-radar.php' + , '33chartcreate-stock.php' + , '33chartcreate-multiple-charts.php' + , '33chartcreate-composite.php' + , '34chartupdate.php' + , '35chartrender.php' + , '36chartreadwriteHTML.php' + , '36chartreadwritePDF.php' + , '37page_layout_view.php' + , '38cloneWorksheet.php' + , '39dropdown.php' + , '40duplicateStyle.php' + , '41password.php' + , '42richText.php' + , '43mergeWorkbooks.php' + , '44worksheetInfo.php' + , 'OOCalcReader.php' + , 'OOCalcReaderPCLZip.php' + , 'SylkReader.php' + , 'Excel2003XMLReader.php' + , 'XMLReader.php' + , 'GnumericReader.php' +); + +// First, clear all previous run results +foreach ($aTests as $sTest) { + @unlink( str_replace('.php', '.xls', $sTest) ); + @unlink( str_replace('.php', '.xlsx', $sTest) ); + @unlink( str_replace('.php', '.csv', $sTest) ); + @unlink( str_replace('.php', '.htm', $sTest) ); + @unlink( str_replace('.php', '.pdf', $sTest) ); +} + +// Run all tests +foreach ($aTests as $sTest) { + echo '============== TEST ==============' . "\r\n"; + echo 'Test name: ' . $sTest . "\r\n"; + echo "\r\n"; + echo shell_exec('php ' . $sTest); + echo "\r\n"; + echo "\r\n"; +} \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/changelog.txt b/src/vendor/phpoffice/phpexcel/changelog.txt new file mode 100644 index 0000000..d929232 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/changelog.txt @@ -0,0 +1,1445 @@ +************************************************************************************** +* PHPExcel +* +* Copyright (c) 2006 - 2014 PHPExcel +* +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU Lesser General Public +* License as published by the Free Software Foundation; either +* version 2.1 of the License, or (at your option) any later version. +* +* This library is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +* Lesser General Public License for more details. +* +* You should have received a copy of the GNU Lesser General Public +* License along with this library; if not, write to the Free Software +* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +* +* @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel) +* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +* @version ##VERSION##, ##DATE## +************************************************************************************** + + +2018-11-22 (v1.8.2): +- Security (MBaker) - Fix and improve XXE security scanning for XML-based Readers +- Bugfix: (MBaker) - Fix to getCell() method when cell reference includes a worksheet reference +- Bugfix: (ncrypthic) Work Item GH-570 - Ignore inlineStr type if formula element exists +- Bugfix: (hernst42) Work Item GH-709 - Fixed missing renames of writeRelationShip (from _writeRelationShip) +- General: (umpirsky) Work Item GH-548 - Optimize vlookup() sort +- Bugfix: (MBaker) Work Item GH-554 - Whitespace after toRichTextObject() +- Feature: (MBaker) - Initial implementation of SUMIFS() function +- Feature: (MBaker) - Additional codepages +- Feature: (Tomino2112) Work Item GH-808 - MemoryDrawing not working in HTML writer +- General: (rentalhost) Work Item GH-575 - Excel 2007 Reader freezes because of conditional formatting +- Bugfix: (vitalyrepin) Pull Request 869 - c:max and c:min elements shall NOT be inside c:orientation elements +- General: (sim642) Pull Request 489 - Implement actual timezone adjustment into PHPExcel_Shared_Date::PHPToExcel + + +2015-04-30 (v1.8.1): +- Bugfix: (goncons) Work Item GH-397 - Fix for Writing an Open Document cell with non-numeric formula +- Bugfix: (sarciszewski) Work Item GH-329 - Avoid potential divide by zero in basedrawing +- Bugfix: (ymaerschalck) Work Item GH-405 - XML External Entity (XXE) Processing, different behaviour between simplexml_load_string() and simplexml_load_file(). +- Bugfix: (MBaker) - Fix to ensure that current cell is maintained when executing formula calculations +- Bugfix: (MBaker) Work Item GH-350 - Keep/set the value on Reader _loadSheetsOnly as NULL, courtesy of Restless-ET +- Bugfix: (MBaker) Work Item CP18105 - Loading an Excel 2007 spreadsheet throws an "Autofilter must be set on a range of cells" exception +- Bugfix: (MBaker) Work Item GH-388 - Fix to autoloader registration for backward compatibility with PHP 5.2.0 not accepting the prepend flag +- Bugfix: (MBaker) Work Item GH-384 - DOM loadHTMLFile() failing with options flags when using PHP < 5.4.0 +- Bugfix: (MBaker) - Fix for percentage operator in formulae for BIFF Writer +- Bugfix: (MBaker) - Fix to getStyle() call for cell object +- Bugfix: (MBaker) - Discard Autofilters in Excel2007 Reader when filter range isn't a valid range +- Bugfix: (frozenstupidity) Work Item GH-423 - Fix invalid NA return in VLOOKUP +- Bugfix: (wiseloren) Work Item CP21454 - "No Impact" conditional formatting fix for NumberFormat +- Bugfix: (bobwitlox) Work Item GH-467 - Bug in Excel2003XML reader, parsing merged cells +- Bugfix: (MBaker) Work Item GH-302 - Fix for CEIL() and FLOOR() when number argument is zero +- Bugfix: (MBaker) - Remove cells cleanly when calling RemoveRow() or RemoveColumn() +- General: (MBaker) - Small performance improvement for autosize columns +- General: (frost-nzcr4) Work Item GH-379 - Change the getter/setter for zeroHeight to camel case +- General: (MBaker) Work Item GH-394 - DefaultValueBinder is too much aggressive when converting string to numeric +- General: (MBaker) - Default precalculate formulas to false for writers +- General: (MBaker) - Set default Cyclic Reference behaviour to 1 to eliminate exception when using a single cyclic iteration in formulae +- General: (MBaker) Work Item GH-396 - Some Excel writer libraries erroneously use Codepage 21010 for UTF-16LE +- Feature: (WiktrzGE) Work Item GH-404 - Methods to manage most of the existing options for Chart Axis, Major Grid-lines and Minor Grid-lines +- Feature: (frost-nzcr4) Work Item GH-403 - ODS read/write comments in the cell +- Feature: (CQD) Work Item GH-389 - Additional Mac CJK codepage definitions +- Feature: (bolovincev) Work Item GH-269 - Update Worksheet.php getStyleByColumnAndRow() to allow a range of cells rather than just a single cell +- Feature: (MBaker) - New methods added for testing cell status within merge groups +- Feature: (cifren/MBaker) Work Item GH-205 - Handling merge cells in HTML Reader +- Feature: (MBaker) - Helper to convert basic HTML markup to a Rich Text object +- Feature: (MBaker) - Improved Iterators + New Column Iterator + Support for row and column ranges + Improved handling for next/prev +- Security: (MBaker) - XML filescan in XML-based Readers to prevent XML Entity Expansion (XEE) + (see http://projects.webappsec.org/w/page/13247002/XML%20Entity%20Expansion for an explanation of XEE injection) attacks + Reference CVE-2015-3542 - Identification of problem courtesy of Dawid Golunski (Pentest Ltd.) + +2014-03-02 (v1.8.0): +- Bugfix: (MBaker) Work item CP19830 - Undefined variable: fileHandle in CSV Reader +- Bugfix: (MBaker) Work item CP19968 - Out of memory in style/supervisor.php +- Bugfix: (MBaker) - Style error with merged cells in PDF Writer +- Bugfix: (MBaker) - Problem with cloning worksheets +- Bugfix: (tavoarcila) Work Item GH-259 - Bug fix reading Open Office files +- Bugfix: (MBaker) Work item CP20397 - Serious bug in absolute cell reference used in shared formula + Would also have affected insert/delete column/row +- Bugfix: (RomanSyroeshko) Work Item GH-267 - CHOOSE() returns "#VALUE!" if the 1st entry is chosen +- Bugfix: (Gemorroj) Work Item GH-268 - When duplicating styles, styles shifted by one column to the right + Fix also applied to duplicating conditional styles +- Bugfix: (IndrekHaav) Work Item GH-212 - Fix for formulae that reference a sheet whose name begins with a digit: + these were erroneously identified as numeric values, causing the parser to throw an undefined variable error. +- Bugfix: (IndrekHaav) Work Item CP16208 - Fixed undefined variable error due to $styleArray being used before it's initialised +- Bugfix: (PowerKiKi) Work Item GH-273 - ISTEXT() return wrong result if referencing an empty but formatted cell +- Bugfix: (PowerKiKi) Work Item GH-270/GH-31 - Binary comparison of strings are case insensitive +- Bugfix: (MBaker) Work Item GH-275 - Insert New Row/Column Before is not correctly updating formula references +- Bugfix: (MBaker) Work Item GH-257 - Passing an array of cells to _generateRow() in the HTML/PDF Writer causes caching problems with last cell in the range +- Bugfix: (MBaker) Work Item GH-193 - Fix to empty worksheet garbage collection when using cell caching +- Bugfix: (Jazzo) Work Item GH-248 - Excel2007 does not correctly mark rows as hidden +- Bugfix: (Roy Shahbazian) Work Item GH-299 - Fixed typo in Chart/Layout set/getYMode() +- Bugfix: (EliuFlorez) Work item GH-279 - Fatal error: Call to a member function cellExists() line: 3327 in calculation.php if referenced worksheet doesn't exist +- Bugfix: (MBaker) Work Item GH-290 - AdvancedValueBinder "Division by zero"-error +- Bugfix: (MBaker) Work Item CP20604 - Adding Sheet to Workbook Bug +- Bugfix: (MBaker) Work item CP20703 - Calculation engine incorrectly evaluates empty cells as #VALUE +- Bugfix: (MBaker) Work item CP20760 - Formula references to cell on another sheet in ODS files +- Bugfix: (MBaker) Work item GH321,GH158,CP17824 - LibreOffice created XLSX files results in an empty file. +- Feature: (amerov) - Implementation of the Excel HLOOKUP() function +- Feature: (MBaker) - Added "Quote Prefix" to style settings (Excel2007 Reader and Writer only) +- Feature: (MBaker) - Added Horizontal FILL alignment for Excel5 and Excel2007 Readers/Writers, and Horizontal DISTRIBUTED alignment for Excel2007 Reader/Writer +- Feature: (trvrnrth) Work Item GH-261 - Add support for reading protected (RC4 encrypted) .xls files +- Feature: (LWol) Work Item GH-252 - Adding support for macros, Ribbon in Excel 2007 +- General: (cdhutch) Work item CP20055 - Remove array_shift in ReferenceHelper::insertNewBefore improves column or row delete speed +- General: (MBaker) - Improve stock chart handling and rendering, with help from Swashata Ghosh +- General: (MBaker) - Fix to calculation properties for Excel2007 so that the opening application will only recalculate on load if it's actually required +- General: (MBaker) - Modified Excel2007 Writer to default preCalculateFormulas to false + Note that autosize columns will still recalculate affected formulae internally +- General: (dresenhista) Work Item GH-242 - Functionality to getHighestRow() for a specified column, and getHighestColumn() for a specified row +- General: (adamriyadi) Work Item GH-247 - Modify PHPExcel_Reader_Excel2007 to use zipClass from PHPExcel_Settings::getZipClass() + This allows the use of PCLZip when reading for people that don't have access to ZipArchive +- General: (infojunkie) Work Item GH-276 - Convert properties to string in OOCalc reader +- Security: (maartenba) Work Item GH-322 - Disable libxml external entity loading by default. + This is to prevent XML External Entity Processing (XXE) injection attacks (see http://websec.io/2012/08/27/Preventing-XEE-in-PHP.html for an explanation of XXE injection). + Reference CVE-2014-2054 + + +2013-06-02 (v1.7.9): +- Feature: (MBaker) Include charts option for HTML Writer +- Feature: (MBaker) Added composer file +- Feature: (MBaker) Added getStyle() method to Cell object +- Bugfix: (Asker) Work item 18777 - Error in PHPEXCEL/Calculation.php script on line 2976 (stack pop check) +- Bugfix: (MBaker) Work item 18794 - CSV files without a file extension being identified as HTML +- Bugfix: (AndreKR) Work item GH-66 - Wrong check for maximum number of rows in Excel5 Writer +- Bugfix: (MBaker) Work item GH-67 - Cache directory for DiscISAM cache storage cannot be set +- Bugfix: (MBaker) Work item 17976 - Fix to Excel2007 Reader for hyperlinks with an anchor fragment (following a #), otherwise they were treated as sheet references +- Bugfix: (MBaker) Work item 18963 - getSheetNames() fails on numeric (floating point style) names with trailing zeroes +- Bugfix: (MBaker) Work item GH-130 - Single cell print area +- General: (kea) Work item GH-69 - Improved AdvancedValueBinder for currency +- General: (MBaker) Work items 17936 and 17840 - Fix for environments where there is no access to /tmp but to upload_tmp_dir + Provided an option to set the sys_get_temp_dir() call to use the upload_tmp_dir; though by default the standard temp directory will still be used +- General: (amironov ) Work item GH-84 - Search style by identity in PHPExcel_Worksheet::duplicateStyle() +- General: (karak) Work item GH-85 - Fill SheetView IO in Excel5 +- General: (cfhay) Work item 18958 - Memory and Speed improvements in PHPExcel_Reader_Excel5 +- General: (MBaker) Work item GH-78 - Modify listWorksheetNames() and listWorksheetInfo to use XMLReader with streamed XML rather than SimpleXML +- General: (dbonsch) Restructuring of PHPExcel Exceptions +- General: (MBaker) Work items 16926 and 15145 - Refactor Calculation Engine from singleton to a Multiton + Ensures that calculation cache is maintained independently for different workbooks +- General: (MBaker) Modify cell's getCalculatedValue() method to return the content of RichText objects rather than the RichText object itself +- Bugfix: (techhead) Work item GH-70 - Fixed formula/formatting bug when removing rows +- Bugfix: (alexgann) Work item GH-63 - Fix to cellExists for non-existent namedRanges +- Bugfix: (MBaker) Work item 18844 - cache_in_memory_gzip "eats" last worksheet line, cache_in_memory doesn't +- Feature: (Progi1984) Work item GH-22 - Sheet View in Excel5 Writer +- Bugfix: (amironov) Work item GH-82 - PHPExcel_Worksheet::getCellCollection() may not return last cached cell +- Bugfix: (teso) Work item 18551 - Rich Text containing UTF-8 characters creating unreadable content with Excel5 Writer +- Bugfix: (MBaker) Work item GH-104 - echo statements in HTML.php +- Feature: (Progi1984) Work item GH-8/CP11704 : Conditional formatting in Excel 5 Writer +- Bugfix: (MBaker) Work item GH-113 - canRead() Error for GoogleDocs ODS files: in ODS files from Google Docs there is no mimetype file +- Bugfix: (MBaker) Work item GH-80 - "Sheet index is out of bounds." Exception +- Bugfix: (ccorliss) Work item GH-105 - Fixed number format fatal error +- Bugfix: (MBaker) - Add DROP TABLE in destructor for SQLite and SQLite3 cache controllers +- Bugfix: (alexgann) Work item GH-154 - Fix merged-cell borders on HTML/PDF output +- Bugfix: (Shanto) Work item GH-161 - Fix: Hyperlinks break when removing rows +- Bugfix: (neclimdul) Work item GH-166 - Fix Extra Table Row From Images and Charts + + +2012-10-12 (v1.7.8): +- Special: (kkamkou) Phar builder script to add phar file as a distribution option +- Feature: (MBaker) Refactor PDF Writer to allow use with a choice of PDF Rendering library + rather than restricting to tcPDF + Current options are tcPDF, mPDF, DomPDF + tcPDF Library has now been removed from the deployment bundle +- Feature: (MBaker) Initial version of HTML Reader +- Feature: (Progi1984) & (blazzy) Work items 9605 - Implement support for AutoFilter in PHPExcel_Writer_Excel5 +- Feature: (MBaker) Modified ERF and ERFC Engineering functions to accept Excel 2010's modified acceptance of negative arguments +- Feature: (k1LoW) Support SheetView `view` attribute (Excel2007) +- Feature: (MBaker) Excel compatibility option added for writing CSV files + While Excel 2010 can read CSV files with a simple UTF-8 BOM, Excel2007 and earlier require UTF-16LE encoded tab-separated files. + The new setExcelCompatibility(TRUE) option for the CSV Writer will generate files with this formatting for easy import into Excel2007 and below. +- Feature: (MBaker) Language implementations for Turkish (tr) +- Feature: (MBaker) Added fraction tests to advanced value binder +- Feature: (MBaker) Allow call to font setUnderline() for underline format to specify a simple boolean for UNDERLINE_NONE or UNDERLINE_SINGLE +- General: (alexgann) Add Currency detection to the Advanced Value Binder +- General: (MBaker) Work item 18404 - setCellValueExplicitByColumnAndRow() do not return PHPExcel_Worksheet +- General: (MBaker) Work item 18324 - Reader factory doesn't read anymore XLTX and XLT files +- General: (MBaker) Magic __toString() method added to Cell object to return raw data value as a string +- General: (alexgann) Add cell indent to html rendering +- General: (Raghav1981) ZeroHeight for rows in sheet format +- Bugfix: (cyberconte) Patch 12318 - OOCalc cells containing <text:span> inside the <text:p> tag +- Bugfix: (schir1964) Fix to listWorksheetInfo() method for OOCalc Reader +- Bugfix: (MBaker) Support for "e" (epoch) date format mask + Rendered as a 4-digit CE year in non-Excel outputs +- Bugfix: (MBaker) Work items 15799 and 18278 - Background color cell is always black when editing cell +- Bugfix: (MBaker) Work items 15905 and 18183 - Allow "no impact" to formats on Conditional Formatting +- Bugfix: (wackonline) OOCalc Reader fix for NULL cells +- Bugfix: (seltzlab) Fix to excel2007 Chart Writer when a $plotSeriesValues is empty +- Bugfix: (MBaker) Various fixes to Chart handling +- Bugfix: (MBaker) Work item 18370 - Error loading xlsx file with column breaks +- Bugfix: (MBaker) OOCalc Reader now handles percentage and currency data types +- Bugfix: (MBaker) Work Item 18415 - mb_stripos empty delimiter +- Bugfix: (takaakik) Work Item 15455 - getNestingLevel() Error on Excel5 Read +- Bugfix: (MBaker) Fix to Excel5 Reader when cell annotations are defined before their referenced text objects +- Bugfix: (MBaker) OOCalc Reader modified to process number-rows-repeated +- Bugfix: (MBaker) Work item 18377 - Chart Title compatibility on Excel 2007 +- Bugfix: (MBaker) Work item 18146 - Chart Refresh returning cell reference rather than values +- Bugfix: (MBaker) Work item 18145 - Autoshape being identified in twoCellAnchor when includeCharts is TRUE triggering load error +- Bugfix: (MBaker) Work item 18325 - v-type texts for series labels now recognised and parsed correctly +- Bugfix: (wolf5x) Work item 18492 - load file failed if the file has no extensionType +- Bugfix: (dverspui) Pattern fill colours in Excel2007 Style Writer +- Bugfix: (MBaker) Excel2007 Writer order of font style elements to conform with Excel2003 using compatibility pack +- Bugfix: (MBaker) Work item 18425 - Problems with $_activeSheetIndex when decreased below 0. +- Bugfix: (MBaker) Work item 18597 - PHPExcel_CachedObjectStorage_SQLite3::cacheMethodIsAvailable() uses class_exists - autoloader throws error +- Bugfix: (MBaker) Work item 18598 - Cannot access private property PHPExcel_CachedObjectStorageFactory::$_cacheStorageMethod +- Bugfix: (MBaker) Work item 18397 - Data titles for charts + PHPExcel_Chart_Layout now has methods for getting/setting switches for displaying/hiding chart data labels +- Bugfix: (MBaker) Discard single cell merge ranges when reading (stupid that Excel allows them in the first place) +- Bugfix: (MBaker) Discard hidden autoFilter named ranges + + +2012-05-19 (v1.7.7): +- Bugfix: (Progi1984) Work item 8916 - Support for Rich-Text in PHPExcel_Writer_Excel5 +- Bugfix: (cyberconte) Work item 17471 - OOCalc cells contain same data bug? +- Feature: (schir1964) listWorksheetInfo() method added to Readers... courtesy of Christopher Mullins +- Feature: (MBaker) Options for cell caching using Igbinary and SQLite/SQlite3. +- Feature: (MBaker) Additional row iterator options: allow a start row to be defined in the constructor; seek(), and prev() methods added. +- Feature: (Progi1984) Work item 9759 - Implement document properties in Excel5 writer +- Feature: (MBaker) Work item 16 - Implement chart functionality (EXPERIMENTAL) + Initial definition of chart objects. + Reading Chart definitions through the Excel2007 Reader + Facility to render charts to images using the 3rd-party jpgraph library + Writing Charts using the Excel2007 Writer +- General: (MBaker) Fix to build to ensure that Examples are included with the documentation +- General: (MBaker) Reduce cell caching overhead using dirty flag to ensure that cells are only rewritten to the cache if they have actually been changed +- General: (MBaker) Improved memory usage in CSV Writer +- General: (MBaker) Improved speed and memory usage in Excel5 Writer +- General: (MBaker) Experimental - + Added getHighestDataColumn(), getHighestDataRow(), getHighestRowAndColumn() and calculateWorksheetDataDimension() methods for the worksheet that return the highest row and column that have cell records +- General: (MBaker) Change iterators to implement Iterator rather than extend CachingIterator, as a fix for PHP 5.4. changes in SPL +- Bugfix: (MBaker) Work item 15459 - Invalid cell coordinate in Autofilter for Excel2007 Writer +- Bugfix: (MBaker) Work item 15518 - PCLZip library issue +- Bugfix: (MBaker) Work item 15537 - Excel2007 Reader canRead function bug +- Bugfix: (MBaker) Support for Excel functions whose return can be used as either a value or as a cell reference depending on its context within a formula +- Bugfix: (gilles06) Work item 15707 - ini_set() call in Calculation class destructor +- Bugfix: (MBaker) Work item 15786 - RangeToArray strange array keys +- Bugfix: (MBaker) Work item 15762 - INDIRECT() function doesn't work with named ranges +- Bugfix: (MBaker) Locale-specific fix to text functions when passing a boolean argument instead of a string +- Bugfix: (MBaker) Work item 16246 - reader/CSV fails on this file + auto_detect_line_endings now set in CSV reader +- Bugfix: (MBaker) Work item 16212 - $arguments improperly used in CachedObjectStorage/PHPTemp.php +- Bugfix: (MBaker) Work item 16643 - Bug In Cache System (cell reference when throwing caching errors) +- Bugfix: (MBaker) Work item 16895 - PHP Invalid index notice on writing excel file when active sheet has been deleted +- Bugfix: (MBaker) Work item 16956 - External links in Excel2010 files cause Fatal error +- Bugfix: (MBaker) Work item 16960 - Previous calculation engine error conditions trigger cyclic reference errors +- Bugfix: (mkopinsky) Work item 16266 - PHPExcel_Style::applyFromArray() returns null rather than style object in advanced mode +- Bugfix: (fauvel) Work item 16958 - Cell::getFormattedValue returns RichText object instead of string +- Bugfix: (MBaker) Work item 17166 - Indexed colors do not refer to Excel's indexed colors? +- Bugfix: (MBaker) Work item 17199 - Indexed colors should be consistent with Excel and start from 1 (current index starts at 0) +- Bugfix: (MBaker) Work item 17262 - Named Range definition in .xls when sheet reeference is quote wrapped +- Bugfix: (MBaker) Work item 17403 - duplicateStyle() method doesn't duplicate conditional formats + Added an equivalent duplicateConditionalStyle() method for duplicating conditional styles +- Bugfix: (bnr) Work item 17501 - =sumproduct(A,B) <> =sumproduct(B,A) in xlsx +- Bugfix: (Progi1984) Work item 8916 - Support for Rich-Text in PHPExcel_Writer_Excel5 +- General: (MBaker) Work item 15405 - Two easy to fix Issues concerning PHPExcel_Token_Stack (l10n/UC) +- General: (MBaker) Work item 15461 - Locale file paths not fit for windows +- General: (MBaker) Work item 16643 - Add file directory as a cache option for cache_to_discISAM +- General: (MBaker) Work item 16923 - Datatype.php & constant TYPE_NULL +- General: (MBaker) Ensure use of system temp directory for all temporary work files, unless explicitly specified +- General: (char101) Work item 16359 - [Patch] faster stringFromColumnIndex() +- General: (whit1206) Work item 16028 - Fix for projects that still use old autoloaders +- General: (atz) Work item 17024 - Unknown codepage: 10007 + Additional Mac codepages + + +2011-02-27 (v1.7.6): +- Feature: (MBaker) Provide option to use PCLZip as an alternative to ZipArchive. + This allows the writing of Excel2007 files, even without ZipArchive enabled (it does require zlib), or when php_zip is one of the buggy PHP 5.2.6 or 5.2.8 versions + It can be enabled using PHPExcel_Settings::setZipClass(PHPExcel_Settings::PCLZIP); + Note that it is not yet implemented as an alternative to ZipArchive for those Readers that are extracting from zips +- Feature: (MBaker) Work item 14979 - Added listWorksheetNames() method to Readers that support multiple worksheets in a workbook, allowing a user to extract a list of all the worksheet names from a file without parsing/loading the whole file. +- Feature: (MBaker) Speed boost and memory reduction in the Worksheet toArray() method. +- Feature: (MBaker) Added new rangeToArray() and namedRangeToArray() methods to the PHPExcel_Worksheet object. + Functionally, these are identical to the toArray() method, except that they take an additional first parameter of a Range (e.g. 'B2:C3') or a Named Range name. + Modified the toArray() method so that it actually uses rangeToArray(). +- Feature: (MBaker) Added support for cell comments in the OOCalc, Gnumeric and Excel2003XML Readers, and in the Excel5 Reader +- Feature: (MBaker) Improved toFormattedString() handling for Currency and Accounting formats to render currency symbols +- Feature: (MBaker) Work Item 2346 - Implement more Excel calculation functions + Implemented the DAVERAGE(), DCOUNT(), DCOUNTA(), DGET(), DMAX(), DMIN(), DPRODUCT(), DSTDEV(), DSTDEVP(), DSUM(), DVAR() and DVARP() Database functions +- Bugfix: (MBaker) Work item 14888 - Simple =IF() formula disappears +- Bugfix: (MBaker) Work item 14898 - PHP Warning: preg_match(): Compilation failed: PCRE does not support \\L, \\l, \\N, \\P, \\p, \\U, \\u, or \\X +- Bugfix: (MBaker) Work item 14901 - VLOOKUP choking on parameters in PHPExcel.1.7.5/PHPExcel_Writer_Excel2007 +- Bugfix: (MBaker) Work item 14973 - PHPExcel_Cell::isInRange() incorrect results - offset by one column +- Bugfix: (MBaker) Treat CodePage of 0 as CP1251 (for .xls files written by applications that don't set the CodePage correctly, such as Apple Numbers) +- Bugfix: (MB) Work item 11583 - Need method for removing autoFilter +- Bugfix: (MBaker) Work item 15029 - coordinateFromString throws exception for rows greater than 99,999 +- Bugfix: (MBaker) Work item 14999 - PHPExcel Excel2007 Reader colour problems with solidfill +- Bugfix: (MBaker) Work item 13215 - Formatting get lost and edit a template XLSX file +- Bugfix: (MBaker) Work item 14029 - Excel 2007 Reader /writer lost fontcolor +- Bugfix: (MBaker) Work item 13374 - file that makes cells go black +- Bugfix: (MBaker) Minor patchfix for Excel2003XML Reader when XML is defined with a charset attribute +- Bugfix: (MBaker) Work item 15089 - PHPExcel_Worksheet->toArray() index problem +- Bugfix: (MBaker) Work item 15094 - Merge cells 'un-merge' when using an existing spreadsheet +- Bugfix: (MBaker) Work item 15129 - Worksheet fromArray() only working with 2-D arrays +- Bugfix: (xkeshav) Work item 15172 - rangeToarray function modified for non-existent cells +- Bugfix: (MBaker) Work item 14980 - Images not getting copyied with the ->clone function +- Bugfix: (MBaker) Work item 11576 - AdvancedValueBinder.php: String sometimes becomes a date when it shouldn't +- Bugfix: (MBaker) Fix Excel5 Writer so that it only writes column dimensions for columns that are actually used rather than the full range (A to IV) +- Bugfix: (MBaker) Work item 15198 - FreezePane causing damaged or modified error + The freezePaneByColumnAndRow() method row argument should default to 1 rather than 0. + Default row argument for all __ByColumnAndRow() methods should be 1 +- Bugfix: (MBaker) Work item 15121 - Column reference rather than cell reference in Print Area definition + Fix Excel2007 Writer to handle print areas that are defined as row or column ranges rather than just as cell ranges +- Bugfix: (MBaker) Reduced false positives from isDateTimeFormatCode() method by suppressing testing within quoted strings +- Bugfix: (MBaker) Work item 15312 - Caching and tmp partition exhaustion +- Bugfix: (MBaker) Work item 15308 - Writing to Variable No Longer Works. $_tmp_dir Missing in PHPExcel\PHPExcel\Shared\OLE\PPS\Root.php +- Bugfix: (MBaker) Work item 15379 - Named ranges with dot don't get parsed properly +- Bugfix: (MBaker) Work item 15096 - insertNewRowBefore fails to consistently update references +- Bugfix: (MBaker) "i" is not a valid character for Excel date format masks (in isDateTimeFormatCode() method) +- Bugfix: (MKunert) Work item 15421 - PHPExcel_ReferenceHelper::insertNewBefore() is missing an 'Update worksheet: comments' section +- Bugfix: (MBaker) Work item 15409 - Full column/row references in named ranges not supported by updateCellReference() +- General: (MBaker) Improved performance (speed), for building the Shared Strings table in the Excel2007 Writer. +- General: (MBaker) Improved performance (speed), for PHP to Excel date conversions +- General: (MBaker) Enhanced SheetViews element structures in the Excel2007 Writer for frozen panes. +- General: (MBaker) Removed Serialized Reader/Writer as these no longer work. + + +2010-12-10 (v1.7.5): +- Feature: (MBaker) Work item 8769 - Implement Gnumeric File Format + Initial work on Gnumeric Reader (Worksheet Data, Document Properties and basic Formatting) +- Feature: (MBaker) (incorporating part of Workitem 9759) - Support for Extended Workbook Properties in Excel2007, Excel5 and OOCalc Readers; support for User-defined Workbook Properties in Excel2007 and OOCalc Readers +- Feature: (MBaker) Support for Extended and User-defined Workbook Properties in Excel2007 Writer +- Feature: (MBaker) Provided a setGenerateSheetNavigationBlock(false); option to suppress generation of the sheet navigation block when writing multiple worksheets to HTML +- Feature: (MBaker) Advanced Value Binder now recognises TRUE/FALSE strings (locale-specific) and converts to boolean +- Feature: (MBaker) Work item 14301 - PHPExcel_Worksheet->toArray() is returning truncated values +- Feature: (MBaker) Configure PDF Writer margins based on Excel Worksheet Margin Settings value +- Feature: (MBaker) Added Contiguous flag for the CSV Reader, when working with Read Filters +- Feature: (MBaker) Added getFormattedValue() method for cell object +- Feature: (MBaker) Added strictNullComparison argument to the worksheet fromArray() method +- Feature: (MBaker) Fix to toFormattedString() method in PHPExcel_Style_NumberFormat to handle fractions with a # code for the integer part +- Bugfix: (MB) Work item 14143 - NA() doesn't propagate in matrix calc - quick fix in JAMA/Matrix.php +- Bugfix: (Progi1984) Work item 7895 - Excel5 : Formula : String constant containing double quotation mark +- Bugfix: (Progi1984) Work item 7895 - Excel5 : Formula : Percent +- Bugfix: (Progi1984) Work item 7895 - Excel5 : Formula : Error constant +- Bugfix: (Progi1984) Work item 7895 - Excel5 : Formula : Concatenation operator +- Bugfix: (MBaker) Work item 14146 - Worksheet clone broken for CachedObjectStorage_Memory +- Bugfix: (MBaker) Work item 12998 - PHPExcel_Reader_Excel2007 fails when gradient fill without type is present in a file +- Bugfix: (MBaker) Work item 14176 - @ format for numeric strings in XLSX to CSV conversion +- Bugfix: (MBaker) Work item 14223 - Advanced Value Binder Not Working? +- Bugfix: (MBaker) Work item 14226 - unassigned object variable in PHPExcel->removeCellXfByIndex +- Bugfix: (MBaker) Work item 14236 - problem with getting cell values from another worksheet... (if cell doesn't exist) +- Bugfix: (MBaker) Work items 14260 & 14233 - Setting cell values to one char strings & Trouble reading one character string (thanks gorfou) +- Bugfix: (MBaker) Work item 14256 - Worksheet title exception when duplicate worksheet is being renamed but exceeds the 31 character limit +- Bugfix: (MBaker) Work item 14086 - Named range with sheet name that contains the $ throws exception when getting the cell +- Bugfix: (MBaker) Added autoloader to DefaultValueBinder and AdvancedValueBinder +- Bugfix: (MBaker) Modified PHPExcel_Shared_Date::isDateTimeFormatCode() to return false if format code begins with "_" or with "0 " to prevent false positives + These leading characters are most commonly associated with number, currency or accounting (or occasionally fraction) formats +- Bugfix: (MBaker) Work item 14374 - BUG : Excel5 and setReadFilter ? +- Bugfix: (MBaker) Work item 14425 - Wrong exception message while deleting column +- Bugfix: (MBaker) Work item 14679 - Formula evaluation fails with Japanese sheet refs +- Bugfix: (MBaker) Work item 13559 - PHPExcel_Writer_PDF does not handle cell borders correctly +- Bugfix: (MBaker) Work item 14831 - Style : applyFromArray() for 'allborders' not working +- Bugfix: (MBaker) Work item 14837 - Using $this when not in object context in Excel5 Reader +- General: (MBaker) Applied patch 6609 - Removes a unnecessary loop through each cell when applying conditional formatting to a range. +- General: (MBaker) Applied patch 7169 - Removed spurious PHP end tags (?>) +- General: (MBaker) Improved performance (speed) and reduced memory overheads, particularly for the Writers, but across the whole library. + + +2010-08-26 (v1.7.4): +- Bugfix: (Progi1984) Work item 7895 - Excel5 : Formula : Power +- Bugfix: (Progi1984) Work item 7895 - Excel5 : Formula : Unary plus +- Bugfix: (Progi1984) Excel5 : Just write the Escher stream if necessary in Worksheet +- Bugfix: (MBaker) Work item 13433 - Syntax errors in memcache.php 1.7.3c +- Bugfix: (MBaker) Work item 13450 - Standard Deviation functions returning DIV/0 Error when Standard Deviation is zero +- Feature: (MBaker) Support for print area with several ranges in the Excel2007 reader, and improved features for editing print area with several ranges +- Feature: (MBaker) Work item 13769 - Improved Cell Exception Reporting +- Feature: (MBaker) Support for row or column ranges in the calculation engine, e.g. =SUM(C:C) or =SUM(1:2) + Also support in the calculation engine for absolute row or column ranges e.g. =SUM($C:$E) or =SUM($3:5) +- Bugfix: (ET) Work item 13455 - Picture problem with Excel 2003 +- Bugfix: (MBaker) Work item 13484 - Wrong variable used in addExternalSheet in PHPExcel.php +- Bugfix: (MBaker) Work item 13515 - "Invalid cell coordinate" error when formula access data from an other sheet +- Bugfix: (MBaker) (related to Work item 13515) Calculation engine confusing cell range worksheet when referencing cells in a different worksheet to the formula +- Bugfix: (MBaker) Work item 13752 - Wrong var naming in Worksheet->garbageCollect() +- Bugfix: (MBaker) Work item 13764 - PHPExcel_Style_*::__clone() methods cause cloning loops? +- Bugfix: (MBaker) Work item 11488 - Recent builds causing problems loading xlsx files? (ZipArchive issue?) +- Bugfix: (MBaker) Work item 13856 - cache_to_apc causes fatal error when processing large data sets +- Bugfix: (MBaker) Work item 13880 - OOCalc reader misses first line if it's a 'table-header-row' +- Bugfix: (MBaker) Work item 14011 - using cache with copy or clone bug? + Fixed $worksheet->copy() or clone $worksheet when using cache_in_memory, cache_in_memory_gzip, cache_in_memory_serialized, cache_to_discISAM, cache_to_phpTemp, cache_to_apc and cache_to_memcache; + Fixed but untested when using cache_to_wincache. +- Bugfix: (MBaker) Fixed problems with reading Excel2007 Properties +- General: (MB) Applied patch 6324 - PHP Strict Standards: Non-static method PHPExcel_Shared_String::utf16_decode() should not be called statically +- General: (MBaker) Applied patch 6360 - Array functions were ignored when loading an existing file containing them, and as a result, they would lose their 'cse' status. +- General: (MBaker) Minor memory tweaks to Excel2007 Writer +- General: (MBaker) Modified ReferenceHelper updateFormulaReferences() method to handle updates to row and column cell ranges (including absolute references e.g. =SUM(A:$E) or =SUM($5:5), and range/cell references that reference a worksheet by name), and to provide both performance and memory improvements. +- General: (MBaker) Modified Excel2007 Reader so that ReferenceHelper class is instantiated only once rather than for every shared formula in a workbook. +- General: (MBaker) Correct handling for additional (synonym) formula tokens in Excel5 Reader +- General: (MBaker) Additional reading of some Excel2007 Extended Properties (Company, Manager) + + +2010-06-01 (v1.7.3c): +- Bugfix: (MB) Work item 13012 - Fatal error: Class 'ZipArchive' not found... ...Reader/Excel2007.php on line 217 +- Bugfix: (MBaker) Work item 13398 - PHPExcel_Writer_Excel2007 error after 1.7.3b + + +2010-05-31 (v1.7.3b): +- Bugfix: (MBaker) Work item 12903 - Infinite loop when reading +- Bugfix: (MB) Work item 13381 - Wrong method chaining on PHPExcel_Worksheet class + + +2010-05-17 (v1.7.3): +- General: (ET) Applied patch 4990 (modified) +- General: (MB) Applied patch 5568 (modified) +- General: (MB) Applied patch 5943 +- General: (MB) Work item 13042 - Upgrade build script to use Phing +- General: (ET) Work item 11586 - Replacing var with public/private +- General: (MBaker) Applied Anthony's Sterling's Class Autoloader to reduce memory overhead by "Lazy Loading" of classes +- General: (MBaker) Modification to functions that accept a date parameter to support string values containing ordinals as per Excel (English language only) +- General: (MBaker) Modify PHPExcel_Style_NumberFormat::toFormattedString() to handle dates that fall outside of PHP's 32-bit date range +- General: (MBaker) Applied patch 5207 +- General: (ET) Work item 11970 - PHPExcel developer documentation: Set page margins +- Feature: (ET) Work item 11038 - Special characters and accents in SYLK reader +- Feature: (MBaker) Work Item 2346 - Implement more Excel calculation functions + - Implemented the COUPDAYS(), COUPDAYBS(), COUPDAYSNC(), COUPNCD(), COUPPCD() and PRICE() Financial functions + - Implemented the N() and TYPE() Information functions + - Implemented the HYPERLINK() Lookup and Reference function +- Feature: (ET) Work item 11526 - Horizontal page break support in PHPExcel_Writer_PDF +- Feature: (ET) Work item 11529 - Introduce method setActiveSheetIndexByName() +- Feature: (ET) Work item 11550 - AdvancedValueBinder.php: Automatically wrap text when there is new line in string (ALT+"Enter") +- Feature: (ET) Work item 10300 - Data validation support in PHPExcel_Reader_Excel5 and PHPExcel_Writer_Excel5 +- Feature: (MB) Work item 11616 - Improve autosize calculation +- Feature: (MBaker) Methods to translate locale-specific function names in formulae + - Language implementations for Czech (cs), Danish (da), German (de), English (uk), Spanish (es), Finnish (fi), French (fr), Hungarian (hu), Italian (it), Dutch (nl), Norwegian (no), Polish (pl), Portuguese (pt), Brazilian Portuguese (pt_br), Russian (ru) and Swedish (sv) +- Feature: (ET) Work item 9759 - Implement document properties in Excel5 reader/writer + - Fixed so far for PHPExcel_Reader_Excel5 +- Feature: (ET) Work item 11849 - Show/hide row and column headers in worksheet +- Feature: (ET) Work item 11919 - Can't set font on writing PDF (by key) +- Feature: (ET) Work item 12096 - Thousands scale (1000^n) support in PHPExcel_Style_NumberFormat::toFormattedString +- Feature: (ET) Work item 6911 - Implement repeating rows in PDF and HTML writer +- Feature: (ET) Work item 12289 - Sheet tabs in PHPExcel_Writer_HTML +- Feature: (MB) Work item 13041 - Add Wincache CachedObjectProvider +- Feature: (MBaker) Configure PDF Writer paper size based on Excel Page Settings value, and provided methods to override paper size and page orientation with the writer + - Note PHPExcel defaults to Letter size, while the previous PDF writer enforced A4 size, so PDF writer will now default to Letter +- Feature: (MBaker) Initial implementation of cell caching: allowing larger workbooks to be managed, but at a cost in speed +- Feature: (MBaker) Added an identify() method to the IO Factory that identifies the reader which will be used to load a particular file without actually loading it. +- Bugfix: (MBaker) Work item 10979 - Warning messages with INDEX function having 2 arguments +- Bugfix: (ET) Work item 11473 - setValue('=') should result in string instead of formula +- Bugfix: (MBaker) Work item 11471 - method _raiseFormulaError should no be private +- Bugfix: (ET) Work item 11485 - Fatal error: Call to undefined function mb_substr() in ...Classes\PHPExcel\Reader\Excel5.php on line 2903 +- Bugfix: (ET) Work item 11487 - getBold(), getItallic(), getStrikeThrough() not always working with PHPExcel_Reader_Excel2007 +- Bugfix: (ET) Work item 11492 - AdvancedValueBinder.php not working correctly for $cell->setValue('hh:mm:ss') +- Bugfix: (MBaker) Fixed leap year handling for the YEARFRAC() Date/Time function when basis ia 1 (Actual/actual) +- Bugfix: (MBaker) Work item 11490 - Warning messages + - Calculation Engine code modified to enforce strict standards for pass by reference +- Bugfix: (ET) Work item 11483 - PHPExcel_Cell_AdvancedValueBinder doesnt work for dates in far future +- Bugfix: (ET) Work item 11528 - MSODRAWING bug with long CONTINUE record in PHPExcel_Reader_Excel5 +- Bugfix: (ET) Work item 11571 - PHPExcel_Reader_Excel2007 reads print titles as named range when there is more than one sheet +- Bugfix: (ET) Work item 11561 - missing @return in phpdocblock in reader classes +- Bugfix: (ET) Work item 11576 - AdvancedValueBinder.php: String sometimes becomes a date when it shouldn't +- Bugfix: (ET) Work item 11588 - Small numbers escape treatment in PHPExcel_Style_NumberFormat::toFormattedString() +- Bugfix: (ET) Work item 11590 - Blank styled cells are not blank in output by HTML writer due to &nbsp; +- Bugfix: (MBaker) Work item 11587 - Calculation engine bug: Existing, blank cell + number gives #NUM +- Bugfix: (ET) Work item 11608 - AutoSize only measures length of first line in cell with multiple lines (ALT+Enter) +- Bugfix: (ET) Work item 11608 - Fatal error running Tests/12serializedfileformat.php (PHPExcel 1.7.2) +- Bugfix: (MBaker) Fixed various errors in the WORKDAY() and NETWORKDAYS() Date/Time functions (particularly related to holidays) +- Bugfix: (ET) Work item 11660 - Uncaught exception 'Exception' with message 'Valid scale is between 10 and 400.' in Classes/PHPExcel/Worksheet/SheetView.php:115 +- Bugfix: (ET) Work item 11551 - "Unrecognized token 39 in formula" with PHPExcel_Reader_Excel5 (occuring with add-in functions) +- Bugfix: (ET) Work item 11668 - Excel2007 reader not reading PHPExcel_Style_Conditional::CONDITION_EXPRESSION +- Bugfix: (MBaker) Fix to the BESSELI(), BESSELJ(), BESSELK(), BESSELY() and COMPLEX() Engineering functions to use correct default values for parameters +- Bugfix: (MBaker) Work item 11525 - DATEVALUE function not working for pure time values + allow DATEVALUE() function to handle partial dates (e.g. "1-Jun" or "12/2010") +- Bugfix: (MBaker) Fix for empty quoted strings in formulae +- Bugfix: (MBaker) Trap for division by zero in Bessel functions +- Bugfix: (MBaker) Fix to OOCalc Reader to convert semi-colon (;) argument separator in formulae to a comma (,) +- Bugfix: (ET) Work item 11693 - PHPExcel_Writer_Excel5_Parser cannot parse formula like =SUM(C$5:C5) +- Bugfix: (MBaker) Fix to OOCalc Reader to handle dates that fall outside 32-bit PHP's date range +- Bugfix: (ET) Work item 11692 - File->sys_get_temp_dir() can fail in safe mode +- Bugfix: (ET) Work item 11727 - Sheet references in Excel5 writer do not work when referenced sheet title contains non-Latin symbols +- Bugfix: (ET) Work item 11743 - Bug in HTML writer can result in missing rows in output +- Bugfix: (ET) Work item 11674 - setShowGridLines(true) not working with PHPExcel_Writer_PDF +- Bugfix: (ET) Work item 11836 - PHPExcel_Worksheet_RowIterator initial position incorrect +- Bugfix: (ET) Work item 11835 - PHPExcel_Worksheet_HeaderFooterDrawing Strict Exception thrown (by jshaw86) +- Bugfix: (ET) Work item 11850 - Parts of worksheet lost when there are embedded charts (Excel5 reader) +- Bugfix: (MBaker) VLOOKUP() function error when lookup value is passed as a cell reference rather than an absolute value +- Bugfix: (ET) Work item 12041 - First segment of Rich-Text not read correctly by PHPExcel_Reader_Excel2007 +- Bugfix: (MBaker) Work item 12048 - Fatal Error with getCell('name') when name matches the pattern for a cell reference +- Bugfix: (ET) Work item 12039 - excel5 writer appears to be swapping image locations +- Bugfix: (ET) Work item 11954 - Undefined index: host in ZipStreamWrapper.php, line 94 and line 101 +- Bugfix: (ET) Work item 11672 - BIFF8 File Format problem (too short COLINFO record) +- Bugfix: (ET) Work item 12121 - Column width sometimes changed after read/write with Excel2007 reader/writer +- Bugfix: (ET) Work item 11964 - Worksheet.php throws a fatal error when styling is turned off via setReadDataOnly on the reader +- Bugfix: (MBaker) Work item 11851 - Checking for Circular References in Formulae + - Calculation Engine code now traps for cyclic references, raising an error or throwing an exception, or allows 1 or more iterations through cyclic references, based on a configuration setting +- Bugfix: (ET) Work item 12244 - PNG transparency using Excel2007 writer +- Bugfix: (ET) Work item 12221 - Custom readfilter error when cell formulas reference excluded cells (Excel5 reader) +- Bugfix: (ET) Work item 12288 - Protection problem in XLS +- Bugfix: (ET) Work item 12300 - getColumnDimension()->setAutoSize() incorrect on cells with Number Formatting +- Bugfix: (ET) Work item 12378 - Notices reading Excel file with Add-in funcitons (PHPExcel_Reader_Excel5) +- Bugfix: (ET) Work item 12380 - Excel5 reader not reading formulas with deleted sheet references +- Bugfix: (ET) Work item 12404 - Named range (defined name) scope problems for in PHPExcel +- Bugfix: (ET) Work item 12423 - PHP Parse error: syntax error, unexpected T_PUBLIC in PHPExcel/Calculation.php on line 3482 +- Bugfix: (ET) Work item 12505 - Named ranges don't appear in name box using Excel5 writer +- Bugfix: (ET) Work item 12509 - Many merged cells + autoSize column -> slows down the writer +- Bugfix: (ET) Work item 12539 - Incorrect fallback order comment in Shared/Strings.php ConvertEncoding() +- Bugfix: (ET) Work item 12538 - IBM AIX iconv() will not work, should revert to mbstring etc. instead +- Bugfix: (ET) Work item 12568 - Excel5 writer and mbstring functions overload +- Bugfix: (MBaker) Work item 12672 - OFFSET needs to flattenSingleValue the $rows and $columns args +- Bugfix: (MBaker) Work item 12546 - Formula with DMAX(): Notice: Undefined offset: 2 in ...\PHPExcel\Calculation.php on line 2365 + - Note that the Database functions have not yet been implemented +- Bugfix: (MBaker) Work item 12839 - Call to a member function getParent() on a non-object in Classes\\PHPExcel\\Calculation.php Title is required +- Bugfix: (MBaker) Work item 12935 - Cyclic Reference in Formula +- Bugfix: (MBaker) Work item 13025 - Memory error...data validation? + + +2010/01/11 (v1.7.2): +- General: (ET) Applied patch 4362 +- General: (ET) Applied patch 4363 (modified) +- General: (MBaker) Work item 10874 - 1.7.1 Extremely Slow - Refactored PHPExcel_Calculation_Functions::flattenArray() method and set calculation cache timer default to 2.5 seconds +- General: (MBaker) Allow formulae to contain line breaks +- General: (ET) Work item 10910 - split() function deprecated in PHP 5.3.0 +- General: (ET) sys_get_temp_dir() requires PHP 5.2.1, not PHP 5.2 [provide fallback function for PHP 5.2.0] +- General: (MBaker) Applied patch 4640 - Implementation of the ISPMT() Financial function by Matt Groves +- General: (MBaker) Work item 11052 - Put the example of formula with more arguments in documentation +- General: (MBaker) Improved accuracy for the GAMMAINV() Statistical Function +- Feature: (ET) Work item 10409 - XFEXT record support to fix colors change from Excel5 reader, and copy/paste color change with Excel5 writer + - Excel5 reader reads RGB color information in XFEXT records for borders, font color and fill color +- Feature: (MBaker) Work Item 2346 - Implement more Excel calculation functions + - Implemented the FVSCHEDULE(), XNPV(), IRR(), MIRR(), XIRR() and RATE() Financial functions + - Implemented the SUMPRODUCT() Mathematical function + - Implemented the ZTEST() Statistical Function +- Feature: (ET) Work item 10919 - Multiple print areas in one sheet +- Feature: (ET) Work item 10930 - Store calculated values in output by PHPExcel_Writer_Excel5 +- Feature: (ET) Work item 10939 - Sheet protection options in Excel5 reader/writer +- Feature: (MBaker) Modification of the COUNT(), AVERAGE(), AVERAGEA(), DEVSQ, AVEDEV(), STDEV(), STDEVA(), STDEVP(), STDEVPA(), VARA() and VARPA() SKEW() and KURT() functions to correctly handle boolean values depending on whether they're passed in as values, values within a matrix or values within a range of cells. +- Feature: (ET) Work item 9932 - Cell range selection +- Feature: (MB) Work item 10266 - Root-relative path handling +- Feature: (ET) Work item 11315 - Named Ranges not working with PHPExcel_Writer_Excel5 +- Bugfix: (MB) Work item 11206 - Excel2007 Reader fails to load Apache POI generated Excel +- Bugfix: (MB) Work item 11154 - Number format is broken when system's thousands separator is empty +- Bugfix: (MB) Work item 11401 - ReferenceHelper::updateNamedFormulas throws errors if oldName is empty +- Bugfix: (MB) Work item 11296 - parse_url() fails to parse path to an image in xlsx +- Bugfix: (ET) Work item 10876 - Workaround for iconv_substr() bug in PHP 5.2.0 +- Bugfix: (ET) Work item 10877 - 1 pixel error for image width and height with PHPExcel_Writer_Excel5 +- Bugfix: (MBaker) Fix to GEOMEAN() Statistical function +- Bugfix: (ET) Work item 10884 - setValue('-') and setValue('.') sets numeric 0 instead of 1-character string +- Bugfix: (ET) Work item 10885 - Row height sometimes much too low after read with PHPExcel_Reader_Excel5 +- Bugfix: (ET) Work item 10888 - Diagonal border. Miscellaneous missing support. + - Constant PHPExcel_Style_Borders::DIAGONAL_BOTH added to support double-diagonal (cross) + - PHPExcel_Reader_Excel2007 not always reading diagonal borders (only recognizes 'true' and not '1') + - PHPExcel_Reader_Excel5 support for diagonal borders + - PHPExcel_Writer_Excel5 support for diagonal borders +- Bugfix: (ET) Work item 10894 - Session bug: Fatal error: Call to a member function bindValue() on a non-object in ...\Classes\PHPExcel\Cell.php on line 217 +- Bugfix: (ET) Work item 10896 - Colors messed up saving twice with same instance of PHPExcel_Writer_Excel5 (regression since 1.7.0) +- Bugfix: (ET) Work item 10917 - Method PHPExcel_Worksheet::setDefaultStyle is not working +- Bugfix: (ET) Work item 10897 - PHPExcel_Reader_CSV::canRead() sometimes says false when it shouldn't +- Bugfix: (ET) Work item 10922 - Changes in workbook not picked up between two saves with PHPExcel_Writer_Excel2007 +- Bugfix: (ET) Work item 10913 - Decimal and thousands separators missing in HTML and PDF output +- Bugfix: (ET) Work item 10936 - Notices with PHPExcel_Reader_Excel5 and named array constants +- Bugfix: (MBaker) Work item 10938 - Calculation engine limitation on 32-bit platform with integers > 2147483647 +- Bugfix: (ET) Work item 10959 - Shared(?) formulae containing absolute cell references not read correctly using Excel5 Reader +- Bugfix: (MBaker) Work item 10962 - Warning messages with intersection operator involving single cell +- Bugfix: (ET) Work item 10980 - Infinite loop in Excel5 reader caused by zero-length string in SST +- Bugfix: (ET) Work item 10983 - Remove unnecessary cell sorting to improve speed by approx. 18% in HTML and PDF writers +- Bugfix: (MBaker) Work item 10977 - Cannot read A1 cell content - OO_Reader +- Bugfix: (ET) Work item 11000 - Transliteration failed, invalid encoding + + +2009/11/02 (v1.7.1): +- General: (ET) Work item 10687 - ereg() function deprecated in PHP 5.3.0 +- General: (MB) Work item 10739 - Writer Interface Inconsequence - setTempDir and setUseDiskCaching +- General: (ET) Upgrade to TCPDF 4.8.009 +- Feature: (ET) Work item 7333 - Support for row and column styles (feature request) + - Basic implementation for Excel2007/Excel5 reader/writer +- Feature: (ET) Work item 10459 - Hyperlink to local file in Excel5 reader/writer +- Feature: (MB) Work item 10472 - Color Tab (Color Sheet's name) +- Feature: (ET) Work item 10488 - Border style "double" support in PHPExcel_Writer_HTML +- Feature: (ET) Work item 10492 - Multi-section number format support in HTML/PDF/CSV writers +- Feature: (MBaker) - Some additional performance tweaks in the calculation engine +- Feature: (MBaker) - Fix result of DB() and DDB() Financial functions to 2dp when in Gnumeric Compatibility mode +- Feature: (MBaker) - Added AMORDEGRC(), AMORLINC() and COUPNUM() Financial function (no validation of parameters yet) +- Feature: (MBaker) - Improved accuracy of TBILLEQ(), TBILLPRICE() and TBILLYIELD() Financial functions when in Excel or Gnumeric mode +- Feature: (MBaker) - Added INDIRECT() Lookup/Reference function (only supports full addresses at the moment) +- Feature: (MB) Work item 10498 - PHPExcel_Reader_CSV::canRead() improvements +- Feature: (ET) Work item 10500 - Input encoding option for PHPExcel_Reader_CSV +- Feature: (ET) Work item 10493 - Colored number format support, e.g. [Red], in HTML/PDF output +- Feature: (ET) Work item 10559 - Color Tab (Color Sheet's name) [Excel5 reader/writer support] +- Feature: (MBaker) Initial version of SYLK (slk) and Excel 2003 XML Readers (Cell data and basic cell formatting) +- Feature: (MBaker) Initial version of Open Office Calc (ods) Reader (Cell data only) +- Feature: (MBaker) Initial use of "pass by reference" in the calculation engine for ROW() and COLUMN() Lookup/Reference functions +- Feature: (MBaker) Work item 2346 - COLUMNS() and ROWS() Lookup/Reference functions, and SUBSTITUTE() Text function +- Feature: (ET) Work item 10502 - AdvancedValueBinder(): Re-enable zero-padded string-to-number conversion, e.g '0004' -> 4 +- Feature: (ET) Work item 10600 - Make PHP type match Excel datatype +- Feature: (MB) Work item 10630 - Change first page number on header +- Feature: (MB) Applied patch 3941 +- Feature: (MB,ET) Work item 10745 - Hidden sheets +- Feature: (ET) Work item 10761 - mbstring fallback when iconv is broken +- Feature: (MBaker) Added support for matrix/value comparisons (e.g. ={1,2;3,4}>=3 or 2<>{1,2;3,4}) - Note, can't yet handle comparison of two matrices +- Feature: (MBaker) Improved handling for validation and error trapping in a number of functions +- Feature: (MBaker) Improved support for fraction number formatting +- Feature: (ET) Work item 10455 - Support Reading CSV with Byte Order Mark (BOM) +- Feature: (ET) Work item 10860 - addExternalSheet() at specified index +- Bugfix: (MBaker) Work item 10684 - Named range can no longer be passed to worksheet->getCell() +- Bugfix: (ET) Work item 10455 - RichText HTML entities no longer working in PHPExcel 1.7.0 +- Bugfix: (ET) Work item 7610 - Fit-to-width value of 1 is lost after read/write of Excel2007 spreadsheet [+ support for simultaneous scale/fitToPage] +- Bugfix: (MB) Work item 10469 - Performance issue identified by profiling +- Bugfix: (ET) Work item 10473 - setSelectedCell is wrong +- Bugfix: (ET) Work item 10481 - Images get squeezed/stretched with (Mac) Verdana 10 Excel files using Excel5 reader/writer +- Bugfix: (MBaker) Work item 10482 - Error in argument count for DATEDIF() function +- Bugfix: (MBaker) Work item 10452 - updateFormulaReferences is buggy +- Bugfix: (MB) Work item 10485 - CellIterator returns null Cell if onlyExistingCells is set and key() is in use +- Bugfix: (MBaker) Work item 10453 - Wrong RegEx for parsing cell references in formulas +- Bugfix: (MB) Work item 10486 - Optimisation subverted to devastating effect if IterateOnlyExistingCells is clear +- Bugfix: (ET) Work item 10494 - Fatal error: Uncaught exception 'Exception' with message 'Unrecognized token 6C in formula'... with PHPExcel_Reader_Excel5 +- Bugfix: (MBaker) Work item 10490 - Fractions stored as text are not treated as numbers by PHPExcel's calculation engine +- Bugfix: (ET) Work item 10503 - AutoFit (autosize) row height not working in PHPExcel_Writer_Excel5 +- Bugfix: (MBaker) Fixed problem with null values breaking the calculation stack +- Bugfix: (ET) Work item 10524 - Date number formats sometimes fail with PHPExcel_Style_NumberFormat::toFormattedString, e.g. [$-40047]mmmm d yyyy +- Bugfix: (MBaker) Fixed minor problem with DATEDIFF YM calculation +- Bugfix: (MB) Applied patch 3695 +- Bugfix: (ET) Work item 10536 - setAutosize() and Date cells not working properly +- Bugfix: (ET) Work item 10556 - Time value hour offset in output by HTML/PDF/CSV writers (system timezone problem) +- Bugfix: (ET) Work item 10558 - Control characters 0x14-0x1F are not treated by PHPExcel +- Bugfix: (ET) Work item 10560 - PHPExcel_Writer_Excel5 not working when open_basedir restriction is in effect +- Bugfix: (MBaker) Work item 10563 - IF formula calculation problem in PHPExcel 1.7.0 (string comparisons) +- Bugfix: (MBaker) Improved CODE() Text function result for UTF-8 characters +- Bugfix: (ET) Work item 10568 - Empty rows are collapsed with HTML/PDF writer +- Bugfix: (ET) Work item 10569 - Gaps between rows in output by PHPExcel_Writer_PDF (Upgrading to TCPDF 4.7.003) +- Bugfix: (ET) Work item 10575 - Problem reading formulas (Excel5 reader problem with "fake" shared formulas) +- Bugfix: (MBaker) Work item 10588 - Error type in formula: "_raiseFormulaError message is Formula Error: An unexpected error occured" +- Bugfix: (ET) Work item 10599 - Miscellaneous column width problems in Excel5/Excel2007 writer +- Bugfix: (ET) Work item 10615 - Reader/Excel5 'Unrecognized token 2D in formula' in latest version +- Bugfix: (ET) Work item 10623 - on php 5.3 PHPExcel 1.7 Excel 5 reader fails in _getNextToken, token = 2C, throws exception +- Bugfix: (ET) Work item 10617 - Fatal error when altering styles after workbook has been saved +- Bugfix: (ET) Work item 10661 - Images vertically stretched or squeezed when default font size is changed (PHPExcel_Writer_Excel5) +- Bugfix: (ET) Work item 10676 - Styles not read in "manipulated" Excel2007 workbook +- Bugfix: (ET) Work item 10059 - Windows 7 says corrupt file by PHPExcel_Writer_Excel5 when opening in Excel +- Bugfix: (MBaker) Work item 10708 - Calculations sometimes not working with cell references to other sheets +- Bugfix: (ET) Work item 10706 - Problem with merged cells after insertNewRowBefore() +- Bugfix: (MBaker) Applied patch 4023 +- Bugfix: (MBaker) Fix to SUMIF() and COUNTIF() Statistical functions for when condition is a match against a string value +- Bugfix: (ET) Work item 10721 - PHPExcel_Cell::coordinateFromString should throw exception for bad string parameter +- Bugfix: (ET) Work item 10723 - EucrosiaUPC (Thai font) not working with PHPExcel_Writer_Excel5 +- Bugfix: (MBaker) Improved the return of calculated results when the result value is an array +- Bugfix: (MBaker) Allow calculation engine to support Functions prefixed with @ within formulae +- Bugfix: (MBaker) Work item 10632 - Intersection operator (space operator) fatal error with calculation engine +- Bugfix: (ET) Work item 10742 - Chinese, Japanese, Korean characters show as squares in PDF +- Bugfix: (ET) Work item 10756 - sheet title allows invalid characters +- Bugfix: (ET) Work item 10757 - Sheet!$A$1 as function argument in formula causes infinite loop in Excel5 writer +- Bugfix: (MBaker) Work item 10740 - Cell range involving name not working with calculation engine - Modified calculation parser to handle range operator (:), but doesn't currently handle worksheet references with spaces or other non-alphameric characters, or trap erroneous references +- Bugfix: (MBaker) Work item 10798 - DATE function problem with calculation engine (says too few arguments given) +- Bugfix: (MBaker) Work item 10799 - Blank cell can cause wrong calculated value +- Bugfix: (MBaker) Modified ROW() and COLUMN() Lookup/Reference Functions to return an array when passed a cell range, plus some additional work on INDEX() +- Bugfix: (ET) Work item 10817 - Images not showing in Excel 97 using PHPExcel_Writer_Excel5 (patch by Jordi Gutiérrez Hermoso) +- Bugfix: (ET) Work item 10785 - When figures are contained in the excel sheet, Reader was stopped +- Bugfix: (MBaker) Work item 10818 - Formulas changed after insertNewRowBefore() +- Bugfix: (ET) Work item 10825 - Cell range row offset problem with shared formulas using PHPExcel_Reader_Excel5 +- Bugfix: (MBaker) Work item 10832 - Warning: Call-time pass-by-reference has been deprecated +- Bugfix: (ET) Work item 10849 - Image should "Move but don't size with cells" instead of "Move and size with cells" with PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 10856 - Opening a Excel5 generated XLS in Excel 2007 results in header/footer entry not showing on input +- Bugfix: (ET) Work item 10859 - addExternalSheet() not returning worksheet +- Bugfix: (MBaker) Work item 10629 - Invalid results in formulas with named ranges + + +2009/08/10 (v1.7.0): +- General: (ET) Work item 9893 - Expand documentation: Number formats +- General: (ET) Work item 9941 - Class 'PHPExcel_Cell_AdvancedValueBinder' not found +- General: (MB) Work item 9960 - Change return type of date functions to PHPExcel_Calculation_Functions::RETURNDATE_EXCEL +- Feature: (MBaker) - New RPN and stack-based calculation engine for improved performance of formula calculation + - Faster (anything between 2 and 12 times faster than the old parser, depending on the complexity and nature of the formula) + - Significantly more memory efficient when formulae reference cells across worksheets + - Correct behaviour when referencing Named Ranges that exist on several worksheets + - Support for Excel ^ (Exponential) and % (Percentage) operators + - Support for matrices within basic arithmetic formulae (e.g. ={1,2,3;4,5,6;7,8,9}/2) + - Better trapping/handling of NaN and infinity results (return #NUM! error) + - Improved handling of empty parameters for Excel functions + - Optional logging of calculation steps +- Feature: (MBaker) - New calculation engine can be accessed independently of workbooks (for use as a standalone calculator) +- Feature: (MBaker) Work Item 2346 - Implement more Excel calculation functions + - Initial implementation of the COUNTIF() and SUMIF() Statistical functions + - Added ACCRINT() Financial function +- Feature: (MBaker) - Modifications to number format handling for dddd and ddd masks in dates, use of thousand separators even when locale only implements it for money, and basic fraction masks (0 ?/? and ?/?) +- Feature: (ET) Work item 9794 - Support arbitrary fixed number of decimals in PHPExcel_Style_NumberFormat::toFormattedString() +- Feature: (ET) Work item 6857 - Improving performance and memory on data dumps + - Various style optimizations (merging from branch wi6857-memory) + - Moving hyperlink and dataValidation properties from cell to worksheet for lower PHP memory usage +- Feature: (MB) Work item 9869 - Provide fluent interfaces where possible +- Feature: (ET) Work item 9899 - Make easy way to apply a border to a rectangular selection +- Feature: (ET) Work item 9906 - Support for system window colors in PHPExcel_Reader_Excel5 +- Feature: (ET) Work item 9911 - Horizontal center across selection +- Feature: (ET) Work item 9919 - Merged cells record, write to full record size in PHPExcel_Writer_Excel5 +- Feature: (MB) Work item 9895 - Add page break between sheets in exported PDF +- Feature: (ET) Work item 9902 - Sanitization of UTF-8 input for cell values +- Feature: (ET) Work item 9930 - Read cached calculated value with PHPExcel_Reader_Excel5 +- Feature: (ET) Work item 9896 - Miscellaneous CSS improvements for PHPExcel_Writer_HTML +- Feature: (ET) Work item 9947 - getProperties: setCompany feature request +- Feature: (MB) Patch 2981 - Insert worksheet at a specified index +- Feature: (MB) Patch 3018 - Change worksheet index +- Feature: (MB) Patch 3039 - Readfilter for CSV reader +- Feature: (ET) Work item 10172 - Check value of mbstring.func_overload when saving with PHPExcel_Writer_Excel5 +- Feature: (ET) Work item 10251 - Eliminate dependency of an include path pointing to class directory +- Feature: (ET) Work item 10292 - Method for getting the correct reader for a certain file (contribution) +- Feature: (ET) Work item 10287 - Choosing specific row in fromArray method +- Feature: (ET) Work item 10319 - Shared formula support in PHPExcel_Reader_Excel5 +- Feature: (MB,ET) Work item 10345 - Right-to-left column direction in worksheet +- Bugfix: (ET) Work item 9824 - PHPExcel_Reader_Excel5 not reading PHPExcel_Style_NumberFormat::FORMAT_NUMBER ('0') +- Bugfix: (ET) Work item 9858 - Fractional row height in locale other than English results in corrupt output using PHPExcel_Writer_Excel2007 +- Bugfix: (ET) Work item 9846 - Fractional (decimal) numbers not inserted correctly when locale is other than English +- Bugfix: (ET) Work item 9863 - Fractional calculated value in locale other than English results in corrupt output using PHPExcel_Writer_Excel2007 +- Bugfix: (ET) Work item 9830 - Locale aware decimal and thousands separator in exported formats HTML, CSV, PDF +- Bugfix: (MB) Work item 9819 - Cannot Add Image with Space on its Name +- Bugfix: (ET) Work item 9884 - Black line at top of every page in output by PHPExcel_Writer_PDF +- Bugfix: (ET) Work item 9885 - Border styles and border colors not showing in HTML output (regression since 1.6.4) +- Bugfix: (ET) Work item 9888 - Hidden screen gridlines setting in worksheet not read by PHPExcel_Reader_Excel2007 +- Bugfix: (MB) Work item 9913 - Some valid sheet names causes corrupt output using PHPExcel_Writer_Excel2007 +- Bugfix: (ET) Work item 9934 - More than 32,767 characters in a cell gives corrupt Excel file +- Bugfix: (ET) Work item 9937 - Images not getting copyied with the ->copy() function +- Bugfix: (ET) Work item 9940 - Bad calculation of column width setAutoSize(true) function +- Bugfix: (ET) Work item 9968 - Dates are sometimes offset by 1 day in output by HTML and PDF writers depending on system timezone setting +- Bugfix: (ET) Work item 10003 - Wingdings symbol fonts not working with PHPExcel_Writer_Excel5 +- Bugfix: (MB) Work item 10010 - White space string prefix stripped by PHPExcel_Writer_Excel2007 +- Bugfix: (ET) Work item 10023 - The name of the Workbook stream MUST be "Workbook", not "Book" +- Bugfix: (ET) Work item 10030 - Avoid message "Microsoft Excel recalculates formulas..." when closing xls file from Excel +- Bugfix: (ET) Work item 10031 - Non-unique newline representation causes problems with LEN formula +- Bugfix: (ET) Work item 10033 - Newline in cell not showing with PHPExcel_Writer_HTML and PHPExcel_Writer_PDF +- Bugfix: (ET) Work item 10046 - Rich-Text strings get prefixed by &nbsp; when output by HTML writer +- Bugfix: (ET) Work item 10052 - Leading spaces do not appear in output by HTML/PDF writers +- Bugfix: (MB) Work item 10061 - Empty Apache POI-generated file can not be read +- Bugfix: (ET) Work item 10068 - Column width not scaling correctly with font size in HTML and PDF writers +- Bugfix: (ET) Work item 10069 - Inaccurate row heights with HTML writer +- Bugfix: (MB) Patch 2992 - Reference helper +- Bugfix: (MBaker) - Excel 5 Named ranges should not be local to the worksheet, but accessible from all worksheets +- Bugfix: (ET) Work item 10088 - Row heights are ignored by PHPExcel_Writer_PDF +- Bugfix: (MB) Patch 3003 - Write raw XML +- Bugfix: (ET) Work item 10098 - removeRow(), removeColumn() not always clearing cell values +- Bugfix: (ET) Work item 10142 - Problem reading certain hyperlink records with PHPExcel_Reader_Excel5 +- Bugfix: (ET) Work item 10143 - Hyperlink cell range read failure with PHPExcel_Reader_Excel2007 +- Bugfix: (MB) Work item 10149 - 'Column string index can not be empty.' +- Bugfix: (ET) Work item 10204 - getHighestColumn() sometimes says there are 256 columns with PHPExcel_Reader_Excel5 +- Bugfix: (ET) Work item 10220 - extractSheetTitle fails when sheet title contains exclamation mark (!) +- Bugfix: (ET) Work item 10221 - setTitle() sometimes erroneously appends integer to sheet name +- Bugfix: (ET) Work item 10229 - Mac BIFF5 Excel file read failure (missing support for Mac OS Roman character set) +- Bugfix: (ET) Work item 10230 - BIFF5 header and footer incorrectly read by PHPExcel_Reader_Excel5 +- Bugfix: (ET) Work item 10259 - iconv notices when reading hyperlinks with PHPExcel_Reader_Excel5 +- Bugfix: (ET) Work item 10252 - Excel5 reader OLE read failure with small Mac BIFF5 Excel files +- Bugfix: (ET) Work item 10272 - Problem in reading formula : IF( IF ) with PHPExcel_Reader_Excel5 +- Bugfix: (ET) Work item 10274 - Error reading formulas referencing external sheets with PHPExcel_Reader_Excel5 +- Bugfix: (ET) Work item 10291 - Image horizontally stretched when default font size is increased (PHPExcel_Writer_Excel5) +- Bugfix: (ET) Work item 10333 - Undefined offset in Reader\Excel5.php on line 3572 +- Bugfix: (MB) Work item 10340 - PDF output different then XLS (copied data) +- Bugfix: (ET) Work item 10352 - Internal hyperlinks with UTF-8 sheet names not working in PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 10361 - String shared formula result read error with PHPExcel_Reader_Excel5 +- Bugfix: (ET) Work item 10363 - Uncaught exception 'Exception' with message 'Valid scale is between 10 and 400.' in Classes/PHPExcel/Worksheet/PageSetup.php:338 +- Bugfix: (ET) Work item 10355 - Using setLoadSheetsOnly fails if you do not use setReadDataOnly(true) and sheet is not the first sheet +- Bugfix: (MB) Work item 10362 - getCalculatedValue() sometimes incorrect with IF formula and 0-values +- Bugfix: (MBaker) Work Item 10198 - Excel Reader 2007 problem with "shared" formulae when "master" is an error +- Bugfix: (MBaker) Work Item 10106 - Named Range Bug, using the same range name on different worksheets +- Bugfix: (MBaker) Work Item 10004 - Java code in JAMA classes +- Bugfix: (MBaker) Work Item 9659 - getCalculatedValue() not working with some formulas involving error types +- Bugfix: (MBaker) Work Item 9447 - evaluation of both return values in an IF() statement returning an error if either result was an error, irrespective of the IF evaluation +- Bugfix: (MBaker) Work Item 6203 - Power in formulas: new calculation engine no longer treats ^ as a bitwise XOR operator +- Bugfix: (MBaker) - Bugfixes and improvements to many of the Excel functions in PHPExcel + - Added optional "places" parameter in the BIN2HEX(), BIN2OCT, DEC2BIN(), DEC2OCT(), DEC2HEX(), HEX2BIN(), HEX2OCT(), OCT2BIN() and OCT2HEX() Engineering Functions + - Trap for unbalanced matrix sizes in MDETERM() and MINVERSE() Mathematic and Trigonometric functions + - Fix for default characters parameter value for LEFT() and RIGHT() Text functions + - Fix for GCD() and LCB() Mathematical functions when the parameters include a zero (0) value + - Fix for BIN2OCT() Engineering Function for 2s complement values (which were returning hex values) + - Fix for BESSELK() and BESSELY() Engineering functions + - Fix for IMDIV() Engineering Function when result imaginary component is positive (wasn't setting the sign) + - Fix for ERF() Engineering Function when called with an upper limit value for the integration + - Fix to DATE() Date/Time Function for year value of 0 + - Set ISPMT() function as category FINANCIAL + - Fix for DOLLARDE() and DOLLARFR() Financial functions + - Fix to EFFECT() Financial function (treating $nominal_rate value as a variable name rather than a value) + - Fix to CRITBINOM() Statistical function (CurrentValue and EssentiallyZero treated as constants rather than variables) + Note that an Error in the function logic can still lead to a permanent loop + - Fix to MOD() Mathematical function to work with floating point results + - Fix for QUOTIENT() Mathematical function + - Fix to HOUR(), MINUTE() and SECOND() Date/Time functions to return an error when passing in a floating point value of 1.0 or greater, or less than 0 + - LOG() Function now correctly returns base-10 log when called with only one parameter, rather than the natural log as the default base + - Modified text functions to handle multibyte character set (UTF-8). + + +2009/04/22 (v1.6.7): +- General: (MB) Work item 9416 - Deprecate misspelled setStriketrough() and getStriketrough() methods +- General: (MB) Work item 9526 - Performance improvement when saving file +- Feature: (MB) Work item 9598 - Check that sheet title has maximum 31 characters +- Feature: (MB, ET) Work item 9631 - True support for Excel built-in number format codes +- Feature: (ET) Work item 9683 - Ability to read defect BIFF5 Excel file without CODEPAGE record +- Feature: (MB) Work item 9701 - Auto-detect which reader to invoke +- Feature: (ET) Work item 9214 - Deprecate insertion of dates using PHP-time (Unix time) [request for removal of feature] +- Feature: (ET) Work item 9747 - Support for entering time values like '9:45', '09:45' using AdvancedValueBinder +- Feature: (ET) Work item 9797 - DataType dependent horizontal alignment in HTML and PDF writer +- Bugfix: (MB) Work item 9375 - Cloning data validation object causes script to stop +- Bugfix: (ET) Work item 9400 - Simultaneous repeating rows and repeating columns not working with PHPExcel_Writer_Excel5 +- Bugfix: (MB) Work item 9399 - Simultaneous repeating rows and repeating columns not working with PHPExcel_Writer_Excel2007 +- Bugfix: (ET) Work item 9437 - Row outline level not working with PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 9452 - Occasional notices with PHPExcel_Reader_Excel5 when Excel file contains drawing elements +- Bugfix: (ET) Work item 9453 - PHPExcel_Reader_Excel5 fails as a whole when workbook contains images other than JPEG/PNG +- Bugfix: (ET) Work item 9444 - Excel5 writer checks for iconv but does not necessarily use it +- Bugfix: (ET) Work item 9463 - Altering a style on copied worksheet alters also the original +- Bugfix: (MB) Work item 9480 - Formulas are incorrectly updated when a sheet is renamed +- Bugfix: (MB) Work item 9513 - PHPExcel_Worksheet::extractSheetTitle not treating single quotes correctly +- Bugfix: (MB) Work item 9477 - PHP Warning raised in function array_key_exists +- Bugfix: (MB) Work item 9599 - getAlignWithMargins() gives wrong value when using PHPExcel_Reader_Excel2007 +- Bugfix: (MB) Work item 9600 - getScaleWithDocument() gives wrong value when using PHPExcel_Reader_Excel2007 +- Bugfix: (MB) Work item 9630 - PHPExcel_Reader_Excel2007 not reading the first user-defined number format +- Bugfix: (MB) Work item 9647 - Print area converted to uppercase after read with PHPExcel_Reader_Excel2007 +- Bugfix: (MB) Work item 9661 - Incorrect reading of scope for named range using PHPExcel_Reader_Excel2007 +- Bugfix: (MB) Work item 9690 - Error with pattern (getFillType) and rbg (getRGB) +- Bugfix: (ET) Work item 9712 - AdvancedValueBinder affected by system timezone setting when inserting date values +- Bugfix: (ET) Work item 9743 - PHPExcel_Reader_Excel2007 not reading value of active sheet index +- Bugfix: (ET) Work item 9742 - getARGB() sometimes returns SimpleXMLElement object instead of string with PHPExcel_Reader_Excel2007 +- Bugfix: (ET) Work item 9731 - Negative image offset causes defects in 14excel5.xls and 20readexcel5.xlsx +- Bugfix: (ET) Work item 9758 - HTML & PDF Writer not working with mergeCells (regression since 1.6.5) +- Bugfix: (ET) Work item 9774 - Too wide columns with HTML and PDF writer +- Bugfix: (MB) Work item 9775 - PDF and cyrillic fonts +- Bugfix: (ET) Work item 9793 - Percentages not working correctly with HTML and PDF writers (shows 0.25% instead of 25%) +- Bugfix: (ET) Work item 9791 - PHPExcel_Writer_HTML creates extra borders around cell contents using setUseInlineCss(true) +- Bugfix: (ET) Work item 9784 - Problem with text wrap + merged cells in HTML and PDF writer +- Bugfix: (ET) Work item 9814 - Adjacent path separators in include_path causing IOFactory to violate open_basedir restriction + + +-------------------------------------------------------------------------------- +BREAKING CHANGE! In previous versions of PHPExcel up to and including 1.6.6, +when a cell had a date-like number format code, it was possible to enter a date +directly using an integer PHP-time without converting to Excel date format. + +Starting with PHPExcel 1.6.7 this is no longer supported. Refer to the developer +documentation for more information on entering dates into a cell. +-------------------------------------------------------------------------------- + + +2009/03/02 (v1.6.6): +- General: (MB) Work item 9102 - Improve support for built-in number formats in PHPExcel_Reader_Excel2007 +- General: (ET) Work item 9281 - Source files are in both UNIX and DOS formats - changed to UNIX +- General: (MB) Work item 9338 - Update documentation: Which language to write formulas in? +- Feature: (ET) Work item 8817 - Ignore DEFCOLWIDTH records with value 8 in PHPExcel_Reader_Excel5 +- Feature: (ET) Work item 8847 - Support for width, height, offsetX, offsetY for images in PHPExcel_Reader_Excel5 +- Feature: (MB) Work item 8870 - Disk Caching in specific folder +- Feature: (MBaker) Work item 2346 - Added SUMX2MY2, SUMX2PY2, SUMXMY2, MDETERM and MINVERSE Mathematical and Trigonometric Functions +- Feature: (MBaker) Work item 2346 - Added CONVERT Engineering Function +- Feature: (MBaker) Work item 2346 - Added DB, DDB, DISC, DOLLARDE, DOLLARFR, INTRATE, IPMT, PPMT, PRICEDISC, PRICEMAT and RECEIVED Financial Functions +- Feature: (MBaker) Work item 2346 - Added ACCRINTM, CUMIPMT, CUMPRINC, TBILLEQ, TBILLPRICE, TBILLYIELD, YIELDDISC and YIELDMAT Financial Functions +- Feature: (MBaker) Work item 2346 - Added DOLLAR Text Function +- Feature: (MBaker) Work item 2346 - Added CORREL, COVAR, FORECAST, INTERCEPT, RSQ, SLOPE and STEYX Statistical Functions +- Feature: (MBaker) Work item 2346 - Added PEARSON Statistical Functions as a synonym for CORREL +- Feature: (MBaker) Work item 2346 - Added LINEST, LOGEST (currently only valid for stats = false), TREND and GROWTH Statistical Functions +- Feature: (MBaker) Work item 2346 - Added RANK and PERCENTRANK Statistical Functions +- Feature: (MBaker) Work item 2346 - Added ROMAN Mathematical Function (Classic form only) +- Feature: (MB) Work item 8931 - Update documentation to show example of getCellByColumnAndRow($col, $row) +- Feature: (MB) Work item 8770 - Implement worksheet, row and cell iterators +- Feature: (MB) Work item 9001 - Support for arbitrary defined names (named range) +- Feature: (MB, ET) Work item 9016 - Update formulas when sheet title / named range title changes +- Feature: (MB) Work item 9103 - Ability to read cached calculated value +- Feature: (MBaker, ET) Work item 8483 - Support for Excel 1904 calendar date mode (Mac) +- Feature: (ET) Work item 9194 - PHPExcel_Writer_Excel5 improvements writing shared strings table +- Feature: (ET) Work item 9248 - PHPExcel_Writer_Excel5 iconv fallback when mbstring extension is not enabled +- Feature: (ET) Work item 9253 - UTF-8 support in font names in PHPExcel_Writer_Excel5 +- Feature: (MB) Work item 9215 - Implement value binding architecture +- Feature: (MB) Work item 6742 - PDF writer not working with UTF-8 +- Feature: (ET) Work item 9355 - Eliminate duplicate style entries in multisheet workbook written by PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 8810 - Redirect to client browser fails due to trailing white space in class definitions +- Bugfix: (MB) Work item 8816 - Spurious column dimension element introduced in blank worksheet after using PHPExcel_Writer_Excel2007 +- Bugfix: (ET) Work item 8830 - Image gets slightly narrower than expected when using PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 8831 - Image laid over non-visible row gets squeezed in height when using PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 8860 - PHPExcel_Reader_Excel5 fails when there are 10 or more images in the workbook +- Bugfix: (MB) Work item 8909 - Different header/footer images in different sheets not working with PHPExcel_Writer_Excel2007 +- Bugfix: (MB, ET) Work item 8924 - Fractional seconds disappear when using PHPExcel_Reader_Excel2007 and PHPExcel_Reader_Excel5 +- Bugfix: (ET) Work item 7994 - Images not showing in OpenOffice when using PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 9047 - Images not showing on print using PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 9085 - PHPExcel_Writer_Excel5 maximum allowed record size 4 bytes too short +- Bugfix: (MB) Work item 9119 - Not numeric strings are formatted as dates and numbers using worksheet's toArray method +- Bugfix: (ET) Work item 9132 - Excel5 simple formula parsing error +- Bugfix: (ET) Work item 9206 - Problems writing dates with CSV +- Bugfix: (ET) Work item 9203 - PHPExcel_Reader_Excel5 reader fails with fatal error when reading group shapes +- Bugfix: (ET) Work item 9231 - PHPExcel_Writer_Excel5 fails completely when workbook contains more than 57 colors +- Bugfix: (ET) Work item 9244 - PHPExcel_Writer_PDF not compatible with autoload +- Bugfix: (ET) Work item 9250 - Fatal error: Call to a member function getNestingLevel() on a non-object in PHPExcel/Reader/Excel5.php on line 690 +- Bugfix: (MB) Work item 9246 - Notices when running test 04printing.php on PHP 5.2.8 +- Bugfix: (MB) Work item 9294 - insertColumn() spawns creation of spurious RowDimension +- BugFix: (MBaker) Work item 9296 - Fix declarations for methods in extended Trend classes +- Bugfix: (MBaker) Work item 2346 - Fix to parameters for the FORECAST Statistical Function +- Bugfix: (MB) Work item 7083 - PDF writer problems with cell height and text wrapping +- Bugfix: (MBaker) Work Item 9337 - Fix test for calculated value in case the returned result is an array +- Bugfix: (ET) Work Item 9354 - Column greater than 256 results in corrupt Excel file using PHPExcel_Writer_Excel5 +- Bugfix: (MB) Work item 9351 - Excel Numberformat 0.00 results in non internal decimal places values in toArray() Method +- Bugfix: (MB,ET) Work item 9356 - setAutoSize not taking into account text rotation +- Bugfix: (ET) Work item 9372 - Call to undefined method PHPExcel_Worksheet_MemoryDrawing::getPath() in PHPExcel/Writer/HTML.php + + +2009/01/05 (v1.6.5): +- General: (MB) Applied patch 2063 +- General: (MB) Applied patch from work item 8073 - Optimise Shared Strings +- General: (MB) Applied patch from work item 8074 - Optimise Cell Sorting +- General: (MB) Applied patch from work item 8075 - Optimise Style Hashing +- General: (ET) Applied patch from work item 8245 - UTF-8 enhancements +- General: (ET) Applied patch from work item 8283 - PHPExcel_Writer_HTML validation errors against strict HTML 4.01 / CSS 2.1 +- General: (MB) Documented work items 6203 and 8110 in manual +- General: (ET) Restructure package hierachy so classes can be found more easily in auto-generated API (from work item 8468) +- General: (MB) Work item 8806 - Redirect output to a client's browser: Update recommendation in documentation +- Feature: (ET) Work item 7897 - PHPExcel_Reader_Excel5 support for print gridlines +- Feature: (ET) Work item 7899 - Screen gridlines support in Excel5 reader/writer +- Feature: (MB, ET) Work item 7552 - Option for adding image to spreadsheet from image resource in memory +- Feature: (ET) Work item 7862 - PHPExcel_Reader_Excel5 style support for BIFF5 files (Excel 5.0 - Excel 95) +- Feature: (ET) Work item 7918 - PHPExcel_Reader_Excel5 support for user-defined colors and special built-in colors +- Feature: (ET) Work item 7992 - Support for freeze panes in PHPExcel_Reader_Excel5 +- Feature: (ET) Work item 7996 - Support for header and footer margins in PHPExcel_Reader_Excel5 +- Feature: (ET) Work item 7997 - Support for active sheet index in Excel5 reader/writer +- Feature: (MB) Work item 7991 - Freeze panes not read by PHPExcel_Reader_Excel2007 +- Feature: (MB, ET) Work item 7993 - Support for screen zoom level (feature request) +- Feature: (ET) Work item 8012 - Support for default style in PHPExcel_Reader_Excel5 +- Feature: (MB) Work item 8094 - Apple iWork / Numbers.app incompatibility +- Feature: (MB) Work item 7931 - Support "between rule" in conditional formatting +- Feature: (MB) Work item 8308 - Comment size, width and height control (feature request) +- Feature: (ET) Work item 8418 - Improve method for storing MERGEDCELLS records in PHPExcel_Writer_Excel5 +- Feature: (ET) Work item 8435 - Support for protectCells() in Excel5 reader/writer +- Feature: (ET) Work item 8472 - Support for fitToWidth and fitToHeight pagesetup properties in PHPExcel_Reader_Excel5 +- Feature: (ET) Work item 8489 - Support for setShowSummaryBelow() and setShowSummaryRight() in PHPExcel_Writer_Excel5 +- Feature: (MB) Work item 8483 - Support for Excel 1904 calendar date mode (Mac) +- Feature: (ET) Work item 7538 - Excel5 reader: Support for reading images (bitmaps) +- Feature: (ET) Work item 8787 - Support for default style in PHPExcel_Writer_Excel5 +- Feature: (MBaker) Modified calculate() method to return either an array or the first value from the array for those functions that return arrays rather than single values (e.g the MMULT and TRANSPOSE function). This performance can be modified based on the $returnArrayAsType which can be set/retrieved by calling the setArrayReturnType() and getArrayReturnType() methods of the PHPExcel_Calculation class. +- Feature: (MBaker) Work item 2346 - Added ERROR.TYPE Information Function, MMULT Mathematical and Trigonometry Function, and TRANSPOSE Lookup and Reference Function +- Bugfix: (ET) Work item 7896 - setPrintGridlines(true) not working with PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 7907 - Incorrect mapping of fill patterns in PHPExcel_Writer_Excel5 +- Bugfix: (MB) Work item 7898 - setShowGridlines(false) not working with PHPExcel_Writer_Excel2007 +- Bugfix: (MB) Work item 7905 - getShowGridlines() gives inverted value when reading sheet with PHPExcel_Reader_Excel2007 +- Bugfix: (ET) Work item 7944 - User-defined column width becomes slightly larger after read/write with Excel5 +- Bugfix: (ET) Work item 7949 - Incomplete border style support in PHPExcel_Writer_Excel5 +- Bugfix: (MB) Work item 7928 - Conditional formatting "containsText" read/write results in MS Office Excel 2007 crash +- Bugfix: (MB) Work item 7995 - All sheets are always selected in output when using PHPExcel_Writer_Excel2007 +- Bugfix: (MB) Work item 8013 - COLUMN function warning message during plain read/write +- Bugfix: (MB) Work item 8155 - setValue(0) results in string data type '0' +- Bugfix: (MB) Work item 8226 - Styles not removed when removing rows from sheet +- Bugfix: (MB) Work item 8301 - =IF formula causes fatal error during $objWriter->save() in Excel2007 format +- Bugfix: (ET) Work item 8333 - Exception thrown reading valid xls file: "Excel file is corrupt. Didn't find CONTINUE record while reading shared strings" +- Bugfix: (ET) Work item 8320 - MS Outlook corrupts files generated by PHPExcel_Writer_Excel5 +- Bugfix: (MB) Work item 8351 - Undefined method PHPExcel_Worksheet::setFreezePane() in ReferenceHelper.php on line 271 +- Bugfix: (MB) Work item 8401 - Ampersands (&), left and right angles (<, >) in Rich-Text strings leads to corrupt output using PHPExcel_Writer_Excel2007 +- Bugfix: (ET) Work item 8408 - Print header and footer not supporting UTF-8 in PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 8463 - Vertical page breaks not working with PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 8476 - Missing support for accounting underline types in PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 8482 - Infinite loops when reading corrupt xls file using PHPExcel_Reader_Excel5 +- Bugfix: (ET) Work item 8566 - Sheet protection password not working with PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 8596 - PHPExcel_Style_NumberFormat::FORMAT_NUMBER ignored by PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 8781 - PHPExcel_Reader_Excel5 fails a whole when workbook contains a chart +- Bugfix: (ET) Work item 8788 - Occasional loss of column widths using PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 8795 - Notices while reading formulas with deleted sheet references using PHPExcel_Reader_Excel5 +- Bugfix: (MB) Work item 8807 - Default style not read by PHPExcel_Reader_Excel2007 +- Bugfix: (MB) Work item 9341 - Blank rows occupy too much space in file generated by PHPExcel_Writer_Excel2007 + + +2008/10/27 (v1.6.4): +- General: (ET) Work item 7882 - RK record number error in MS developer documentation: 0x007E should be 0x027E +- Feature: (MBaker) Work item 7878 - getHighestColumn() returning "@" for blank worksheet causes corrupt output +- Feature: (MBaker) Work item 2346 - Implement ROW and COLUMN Lookup/Reference Functions (when specified with a parameter) +- Feature: (MBaker) Work item 2346 - Implement initial work on OFFSET Lookup/Reference Function (returning address rather than value at address) +- Feature: (ET) Work item 7416 - Excel5 reader: Page margins +- Feature: (ET) Work item 7417 - Excel5 reader: Header & Footer +- Feature: (ET) Work item 7449 - Excel5 reader support for page setup (paper size etc.) +- Feature: (MB) Work item 7445 - Improve speed and memory consumption of PHPExcel_Writer_CSV +- Feature: (MB) Work item 7432 - Better recognition of number format in HTML, CSV, and PDF writer +- Feature: (MB) Work item 7485 - Font support: Superscript and Subscript +- Feature: (ET) Work item 7509 - Excel5 reader font support: Super- and subscript +- Feature: (ET) Work item 7521 - Excel5 reader style support: Text rotation and stacked text +- Feature: (ET) Work item 7530 - Excel5 reader: Support for hyperlinks +- Feature: (MB, ET) Work item 7557 - Import sheet by request +- Feature: (ET) Work item 7607 - PHPExcel_Reader_Excel5 support for page breaks +- Feature: (ET) Work item 7622 - PHPExcel_Reader_Excel5 support for shrink-to-fit +- Feature: (MB, ET) Work item 7675 - Support for error types +- Feature: (ET) Work item 7388 - Excel5 reader true formula support +- Feature: (ET) Work item 7701 - Support for named ranges (defined names) in PHPExcel_Reader_Excel5 +- Feature: (ET) Work item 7781 - Support for repeating rows and repeating columns (print titles) in PHPExcel_Reader_Excel5 +- Feature: (ET) Work item 7783 - Support for print area in PHPExcel_Reader_Excel5 +- Feature: (ET) Work item 7795 - Excel5 reader and writer support for horizontal and vertical centering of page +- Feature: (MB) Applied patch 1962 +- Feature: (ET) Work item 7866 - Excel5 reader and writer support for hidden cells (formulas) +- Feature: (MB, ET) Work item 7612 - Support for indentation in cells (feature request) +- Feature: (MB, ET) Work item 7828 - Option for reading only specified interval of rows in a sheet +- Bugfix: (MBaker) Work item 7367 - PHPExcel_Calculation_Functions::DATETIMENOW() and PHPExcel_Calculation_Functions::DATENOW() to force UTC +- Bugfix: (MBaker) Work item 7395 - Modified PHPExcel_Shared_Date::FormattedPHPToExcel() and PHPExcel_Shared_Date::ExcelToPHP to force datatype for return values +- Bugfix: (ET) Work item 7450 - Excel5 reader not producing UTF-8 strings with BIFF5 files +- Bugfix: (MB) Work item 7470 - Array constant in formula gives run-time notice with Excel2007 writer +- Bugfix: (MB) Work item 7494 - PHPExcel_Reader_Excel2007 setReadDataOnly(true) returns Rich-Text +- Bugfix: (ET) Work item 7496 - PHPExcel_Reader_Excel5 setReadDataOnly(true) returns Rich-Text +- Bugfix: (MB) Work item 7497 - Characters before superscript or subscript losing style +- Bugfix: (MB) Work item 7507 - Subscript not working with HTML writer +- Bugfix: (MB) Work item 7508 - DefaultColumnDimension not working on first column (A) +- Bugfix: (MB) Work item 7527 - Negative numbers are stored as text in PHPExcel_Writer_2007 +- Bugfix: (ET) Work item 7531 - Text rotation and stacked text not working with PHPExcel_Writer_Excel5 +- Bugfix: (MB) Work item 7536 - PHPExcel_Shared_Date::isDateTimeFormatCode erroneously says true +- Bugfix: (MB) Work item 7559 - Different images with same filename in separate directories become duplicates +- Bugfix: (ET) Work item 7568 - PHPExcel_Reader_Excel5 not returning sheet names as UTF-8 using for Excel 95 files +- Bugfix: (MB) Work item 7575 - setAutoSize(true) on empty column gives column width of 10 using PHPExcel_Writer_Excel2007 +- Bugfix: (MB, ET) Work item 7573 - setAutoSize(true) on empty column gives column width of 255 using PHPExcel_Writer_Excel5 +- Bugfix: (MB) Work item 7514 - Worksheet_Drawing bug +- Bugfix: (MB) Work item 7593 - getCalculatedValue() with REPT function causes script to stop +- Bugfix: (MB) Work item 7594 - getCalculatedValue() with LEN function causes script to stop +- Bugfix: (MB) Work item 7600 - Explicit fit-to-width (page setup) results in fit-to-height becoming 1 +- Bugfix: (MB) Work item 7610 - Fit-to-width value of 1 is lost after read/write of Excel2007 spreadsheet +- Bugfix: (MB) Work item 7516 - Conditional styles not read properly using PHPExcel_Reader_Excel2007 +- Bugfix: (MB) Work item 7611 - PHPExcel_Writer_2007: Default worksheet style works only for first sheet +- Bugfix: (ET) Work item 6940 - Cannot Lock Cells using PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 7621 - Incorrect cell protection values found when using Excel5 reader +- Bugfix: (ET) Work item 7623 - Default row height not working above highest row using PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 7637 - Default column width does not get applied when using PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 7642 - Broken support for UTF-8 string formula results in PHPExcel_Reader_Excel5 +- Bugfix: (ET) Work item 7643 - UTF-8 sheet names not working with PHPExcel_Writer_Excel5 +- Bugfix: (MB) Work item 7631 - getCalculatedValue() with ISNONTEXT function causes script to stop +- Bugfix: (ET) Work item 7652 - Missing BIFF3 functions in PHPExcel_Writer_Excel5: USDOLLAR (YEN), FINDB, SEARCHB, REPLACEB, LEFTB, RIGHTB, MIDB, LENB, ASC, DBCS (JIS) +- Bugfix: (ET) Work item 7663 - Excel5 reader doesn't read numbers correctly in 64-bit systems +- Bugfix: (ET) Work item 7667 - Missing BIFF5 functions in PHPExcel_Writer_Excel5: ISPMT, DATEDIF, DATESTRING, NUMBERSTRING +- Bugfix: (ET) Work item 7668 - Missing BIFF8 functions in PHPExcel_Writer_Excel5: GETPIVOTDATA, HYPERLINK, PHONETIC, AVERAGEA, MAXA, MINA, STDEVPA, VARPA, STDEVA, VARA +- Bugfix: (MB) Work item 7657 - Wrong host value in PHPExcel_Shared_ZipStreamWrapper::stream_open() +- Bugfix: (ET) Work item 7676 - PHPExcel_Reader_Excel5 not reading explicitly entered error types in cells +- Bugfix: (ET) Work item 7678 - Boolean and error data types not preserved for formula results in PHPExcel_Reader_Excel5 +- Bugfix: (MB) Work item 7695 - PHPExcel_Reader_Excel2007 ignores cell data type +- Bugfix: (ET) Work item 7712 - PHPExcel_Reader_Excel5 ignores cell data type +- Bugfix: (ET) Work item 7587 - PHPExcel_Writer_Excel5 not aware of data type +- Bugfix: (ET) Work item 7713 - Long strings sometimes truncated when using PHPExcel_Reader_Excel5 +- Bugfix: (ET) Work item 7727 - Direct entry of boolean or error type in cell not supported by PHPExcel_Writer_Excel5 +- Bugfix: (MB) Work item 7714 - PHPExcel_Reader_Excel2007: Error reading cell with data type string, date number format, and numeric-like cell value +- Bugfix: (ET) Work item 7735 - Row and column outlines (group indent level) not showing after using PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 7737 - Missing UTF-8 support in number format codes for PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 7750 - Missing UTF-8 support with PHPExcel_Writer_Excel5 for explicit string in formula +- Bugfix: (MB) Work item 7726 - Problem with class constants in PHPExcel_Style_NumberFormat +- Bugfix: (ET) Work item 7758 - Sometimes errors with PHPExcel_Reader_Excel5 reading hyperlinks +- Bugfix: (ET) Work item 7759 - Hyperlink in cell always results in string data type when using PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 7771 - Excel file with blank sheet seen as broken in MS Office Excel 2007 when created by PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 7785 - PHPExcel_Reader_Excel5: Incorrect reading of formula with explicit string containing (escaped) double-quote +- Bugfix: (MB) Work item 7787 - getCalculatedValue() fails on formula with sheet name containing (escaped) single-quote +- Bugfix: (MB) Work item 7786 - getCalculatedValue() fails on formula with explicit string containing (escaped) double-quote +- Bugfix: (MB) Work item 7780 - Problems with simultaneous repeatRowsAtTop and repeatColumnsAtLeft using Excel2007 reader and writer +- Bugfix: (ET) Work item 7802 - PHPExcel_Reader_Excel5: Error reading formulas with sheet reference containing special characters +- Bugfix: (ET) Work item 7831 - Off-sheet references sheet!A1 not working with PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 7834 - Repeating rows/columns (print titles), print area not working with PHPExcel_Writer_Excel5 +- Bugfix: (ET) Work item 7849 - Formula having datetime number format shows as text when using PHPExcel_Writer_Excel5 +- Bugfix: (MBaker) Work item 7863 - Cannot set formula to hidden using applyFromArray() +- Bugfix: (MBaker) Work item 7805 - HTML/PDF Writers limited to 26 columns by calculateWorksheetDimension (erroneous comparison in getHighestColumn() method) +- Bugfix: (MB) Work item 7873 - Formula returning error type is lost when read by PHPExcel_Reader_Excel2007 +- Bugfix: (ET) Work item 7883 - PHPExcel_Reader_Excel5: Cell style lost for last column in group of blank cells +- Bugfix: (MB) Work item 7886 - Column width sometimes collapses to auto size using Excel2007 reader/writer +- Bugfix: (MB) Work item 9343 - Data Validation Formula = 0 crashes Excel + + +2008/08/25 (v1.6.3): +- Bugfix: (MBaker) Work item 7367 - Modified PHPExcel_Shared_Date::PHPToExcel() to force UTC +- General: (MB) Applied patch 1629 +- General: (MB) Applied patch 1644 +- General: (MB) Work item 6485 - Implement repeatRow and repeatColumn in Excel5 writer +- General: (MB) Work item 6838 - Remove scene3d filter in Excel2007 drawing +- Feature: (MBaker) Work item 2346 - Implement CHOOSE and INDEX Lookup/Reference Functions +- Feature: (MBaker) Work item 2346 - Implement CLEAN Text Functions +- Feature: (MBaker) Work item 2346 - Implement YEARFRAC Date/Time Functions +- Feature: (MB) Work item 6508 - Implement 2 options for print/show gridlines +- Feature: (MB) Work item 7270 - Add VLOOKUP function (contribution) +- Feature: (MB) Work item 7182 - Implemented: ShrinkToFit +- Feature: (MB) Work item 7218 - Row heights not updated correctly when inserting new rows +- Feature: (MB) Work item 7157 - Copy worksheets within the same workbook +- Feature: (ET) Work item 7290 - Excel5 reader style support: horizontal and vertical alignment plus text wrap +- Feature: (ET) Work item 7294 - Excel5 reader support for merged cells +- Feature: (ET) Work item 7296 - Excel5 reader: Sheet Protection +- Feature: (ET) Work item 7297 - Excel5 reader: Password for sheet protection +- Feature: (ET) Work item 7299 - Excel5 reader: Column width +- Feature: (ET) Work item 7301 - Excel5 reader: Row height +- Feature: (ET) Work item 7304 - Excel5 reader: Font support +- Feature: (ET) Work item 7324 - Excel5 reader: support for locked cells +- Feature: (ET) Work item 7330 - Excel5 reader style support: Fill (background colors and patterns) +- Feature: (ET) Work item 7332 - Excel5 reader style support: Borders (style and color) +- Feature: (ET) Work item 7346 - Excel5 reader: Rich-Text support +- Feature: (MB) Work item 7313 - Read Excel built-in number formats with Excel 2007 reader +- Feature: (ET) Work item 7317 - Excel5 reader: Number format support +- Feature: (MB) Work item 7362 - Creating a copy of PHPExcel object +- Feature: (ET) Work item 7373 - Excel5 reader: support for row / column outline (group) +- Feature: (MB) Work item 7380 - Implement default row/column sizes +- Feature: (MB) Work item 7364 - Writer HTML - option to return styles and table separately +- Feature: (ET) Work item 7393 - Excel5 reader: Support for remaining built-in number formats +- Bugfix: (MBaker) Fixed rounding in HOUR MINUTE and SECOND Time functions, and improved performance for these +- Bugfix: (MBaker) Fix to TRIM function +- Bugfix: (MBaker) Fixed range validation in TIME Functions.php +- Bugfix: (MBaker) EDATE and EOMONTH functions now return date values based on the returnDateType flag +- Bugfix: (MBaker) Write date values that are the result of a calculation function correctly as Excel serialized dates rather than PHP serialized date values +- Bugfix: (MB) Work item 6690 - Excel2007 reader not always reading boolean correctly +- Bugfix: (MB) Work item 6275 - Columns above IZ +- Bugfix: (MB) Work item 6853 - Other locale than English causes Excel2007 writer to produce broken xlsx +- Bugfix: (MB) Work item 7061 - Typo: Number_fromat in NumberFormat.php +- Bugfix: (MB) Work item 6865 - Bug in Worksheet_BaseDrawing setWidth() +- Bugfix: (MB) Work item 6891 - PDF writer collapses column width for merged cells +- Bugfix: (MB) Work item 6867 - Issues with drawings filenames +- Bugfix: (MB) Work item 7073 - fromArray() local variable isn't defined +- Bugfix: (MB) Work item 7276 - PHPExcel_Writer_Excel5->setTempDir() not passed to all classes involved in writing to a file +- Bugfix: (MB) Work item 7277 - Excel5 reader not handling UTF-8 properly +- Bugfix: (MB) Work item 7327 - If you write a 0 value in cell, cell shows as empty +- Bugfix: (MB) Work item 7302 - Excel2007 writer: Row height ignored for empty rows +- Bugfix: (MB) Work item 7281 - Excel2007 (comments related error) +- Bugfix: (MB) Work item 7345 - Column width in other locale +- Bugfix: (MB) Work item 7347 - Excel2007 reader not reading underlined Rich-Text +- Bugfix: (ET) Work item 7357 - Excel5 reader converting booleans to strings +- Bugfix: (MB) Work item 7365 - Recursive Object Memory Leak +- Bugfix: (MB) Work item 7372 - Excel2007 writer ignoring row dimensions without cells +- Bugfix: (ET) Work item 7382 - Excel5 reader is converting formatted numbers / dates to strings + + +2008/06/23 (v1.6.2): +- General: (MB) Work item 6088 - Document style array values +- General: (MB) Applied patch 1195 +- General: (MB) Work item 6178 - Redirecting output to a client’s web browser - http headers +- General: (MB) Work item 6187 - Improve worksheet garbage collection +- General: (MBaker) Functions that return date values can now be configured to return as Excel serialized date/time, PHP serialized date/time, or a PHP date/time object. +- General: (MBaker) Functions that explicitly accept dates as parameters now permit values as Excel serialized date/time, PHP serialized date/time, a valid date string, or a PHP date/time object. +- General: (MBaker) Implement ACOSH, ASINH and ATANH functions for those operating platforms/PHP versions that don't include these functions +- General: (MBaker) Implement ATAN2 logic reversing the arguments as per Excel +- General: (MBaker) Additional validation of parameters for COMBIN +- General: (MBaker) Fixed validation for CEILING and FLOOR when the value and significance parameters have different signs; and allowed default value of 1 or -1 for significance when in GNUMERIC compatibility mode +- Feature: (MBaker) Work item 2346 - Implement ADDRESS, ISLOGICAL, ISTEXT and ISNONTEXT functions +- Feature: (MBaker) Work item 2346 - Implement COMPLEX, IMAGINARY, IMREAL, IMARGUMENT, IMCONJUGATE, IMABS, IMSUB, IMDIV, IMSUM, IMPRODUCT, IMSQRT, IMEXP, IMLN, IMLOG10, IMLOG2, IMPOWER IMCOS and IMSIN Engineering functions +- Feature: (MBaker) Work item 2346 - Implement NETWORKDAYS and WORKDAY Date/Time functions +- Feature: (MB) Work item 6100 - Make cell column AAA available +- Feature: (MB) Work item 6095 - Mark particular cell as selected when opening Excel +- Feature: (MB) Work item 6120 - Multiple sheets in PDF and HTML +- Feature: (MB) Work item 6227 - Implement PHPExcel_ReaderFactory and PHPExcel_WriterFactory +- Feature: (MB) Work item 6249 - Set image root of PHPExcel_Writer_HTML +- Feature: (MB) Work item 6264 - Enable/disable calculation cache +- Feature: (MB) Work item 6259 - PDF writer and multi-line text +- Feature: (MB) Work item 6350 - Feature request - setCacheExpirationTime() +- Feature: (JB) Work item 6370 - Implement late-binding mechanisms to reduce memory footprint +- Feature: (JB) Work item 6430 - Implement shared styles +- Feature: (MB) Work item 6391 - Copy sheet from external Workbook to active Workbook +- Feature: (MB) Work item 6428 - Functions in Conditional Formatting +- Bugfix: (MB) Work item 6096 - Default Style in Excel5 +- Bugfix: (MB) Work item 6150 - Numbers starting with '+' cause Excel 2007 errors +- Bugfix: (MB) Work item 6092 - ExcelWriter5 is not PHP5 compatible, using it with E_STRICT results in a bunch of errors (applied patches) +- Bugfix: (MB) Work item 6179 - Error Reader Excel2007 line 653 foreach ($relsDrawing->Relationship as $ele) +- Bugfix: (MB) Work item 6229 - Worksheet toArray() screws up DATE +- Bugfix: (MB) Work item 6253 - References to a Richtext cell in a formula +- Bugfix: (MB) Work item 6285 - insertNewColumnBefore Bug +- Bugfix: (MB) Work item 6319 - Error reading Excel2007 file with shapes +- Bugfix: (MBaker) Work item 6302 - Determine whether date values need conversion from PHP dates to Excel dates before writing to file, based on the data type (float or integer) +- Bugfix: (MBaker) Fixes to DATE function when it is given negative input parameters +- Bugfix: (MB) Work item 6347 - PHPExcel handles empty cells other than Excel +- Bugfix: (MB) Work item 6348 - PHPExcel handles 0 and "" as being the same +- Bugfix: (MB) Work item 6357 - Problem Using Excel2007 Reader for Spreadsheets containing images +- Bugfix: (MB) Work item 6359 - ShowGridLines ignored when reading/writing Excel 2007 +- Bugfix: (MB) Work item 6426 - Bug With Word Wrap in Excel 2007 Reader + + +2008/04/28 (v1.6.1): +- General: (MB) Work item 5532 - Fix documentation printing +- General: (MB) Work item 5586 - Memory usage improvements +- General: (MB) Applied patch 990 +- General: (MB) Applied patch 991 +- Feature: (BM) Work item 2841 - Implement PHPExcel_Reader_Excel5 +- Feature: (MB) Work item 5564 - Implement "toArray" and "fromArray" method +- Feature: (MB) Work item 5665 - Read shared formula +- Feature: (MB) Work item 5681 - Read image twoCellAnchor +- Feature: (MB) Work item 4446 - &G Image as bg for headerfooter +- Feature: (MB) Work item 5834 - Implement page layout functionality for Excel5 format +- Feature: (MB) Work item 6039 - Feature request: PHPExcel_Writer_PDF +- Bugfix: (MB) Work item 5517 - DefinedNames null check +- Bugfix: (MB) Work item 5463 - Hyperlinks should not always have trailing slash +- Bugfix: (MB) Work item 5592 - Saving Error - Uncaught exception (#REF! named range) +- Bugfix: (MB) Work item 5634 - Error when creating Zip file on Linux System (Not Windows) +- Bugfix: (MB) Work item 5876 - Time incorrecly formated +- Bugfix: (MB) Work item 5914 - Conditional formatting - second rule not applied +- Bugfix: (MB) Work item 5978 - PHPExcel_Reader_Excel2007 cannot load PHPExcel_Shared_File +- Bugfix: (MB) Work item 6020 - Output redirection to web browser + + +2008/02/14 (v1.6.0): +- General: (MB) Work item 3156 - Use PHPExcel datatypes in formula calculation +- Feature: (MB) Work item 5019 - Center on page when printing +- Feature: (MB) Work item 5099 - Hyperlink to other spreadsheet +- Feature: (MB) Work item 5104 - Set the print area of a worksheet +- Feature: (MB) Work item 5118 - Read "definedNames" property of worksheet +- Feature: (MB) Work item 5338 - Set default style for all cells +- Feature: (MB) Work item 4216 - Named Ranges +- Feature: (MB) Work item 5398 - Implement worksheet references (Sheet1!A1) +- Bugfix: (MB) Work item 4967 - Redirect output to a client's web browser +- Bugfix: (MB) Work item 5008 - "File Error: data may have been lost." seen in Excel 2007 and Excel 2003 SP3 when opening XLS file +- Bugfix: (MB) Work item 5165 - Bug in style's getHashCode() +- Bugfix: (MB) Work item 5165 - PHPExcel_Reader not correctly reading numeric values +- Bugfix: (MB) Work item 5324 - Text rotation is read incorrectly +- Bugfix: (MB) Work item 5326 - Enclosure " and data " result a bad data : \" instead of "" +- Bugfix: (MB) Work item 5332 - Formula parser - IF statement returning array instead of scalar +- Bugfix: (MB) Work item 5351 - setFitToWidth(nbpage) & setFitToWidth(nbpage) work partially +- Bugfix: (MB) Work item 5361 - Worksheet::setTitle() causes unwanted renaming +- Bugfix: (MB) Work item 5407 - Hyperlinks not working. Results in broken xlsx file. + + +2007/12/24 (v1.5.5): +- General: (MB) Work item 4135 - Grouping Rows +- General: (MB) Work item 4427 - Semi-nightly builds +- Feature: (MB) Work item 3155 - Implement "date" datatype +- Feature: (MB) Work item 4150 - Date format not honored in CSV writer +- Feature: (MB) Work item 4199 - RichText and sharedStrings +- Feature: (MB) Work item 2346 - Implement more Excel calculation functions + - Addition of DATE, DATEDIF, DATEVALUE, DAY, DAYS360 +- Feature: (MBaker) Work item 2346 - Implement more Excel calculation functions + - Addition of AVEDEV, HARMEAN and GEOMEAN + - Addition of the BINOMDIST (Non-cumulative only), COUNTBLANK, EXPONDIST, FISHER, FISHERINV, NORMDIST, NORMSDIST, PERMUT, POISSON (Non-cumulative only) and STANDARDIZE Statistical Functions + - Addition of the CEILING, COMBIN, EVEN, FACT, FACTDOUBLE, FLOOR, MULTINOMIAL, ODD, ROUNDDOWN, ROUNDUP, SIGN, SQRTPI and SUMSQ Mathematical Functions + - Addition of the NORMINV, NORMSINV, CONFIDENCE and SKEW Statistical Functions + - Addition of the CRITBINOM, HYPGEOMDIST, KURT, LOGINV, LOGNORMDIST, NEGBINOMDIST and WEIBULL Statistical Functions + - Addition of the LARGE, PERCENTILE, QUARTILE, SMALL and TRIMMEAN Statistical Functions + - Addition of the BIN2HEX, BIN2OCT, DELTA, ERF, ERFC, GESTEP, HEX2BIN, HEX2DEC, HEX2OCT, OCT2BIN and OCT2HEX Engineering Functions + - Addition of the CHIDIST, GAMMADIST and GAMMALN Statistical Functions + - Addition of the GCD, LCM, MROUND and SUBTOTAL Mathematical Functions + - Addition of the LOWER, PROPER and UPPER Text Functions + - Addition of the BETADIST and BETAINV Statistical Functions + - Addition of the CHIINV and GAMMAINV Statistical Functions + - Addition of the SERIESSUM Mathematical Function + - Addition of the CHAR, CODE, FIND, LEN, REPT, SEARCH, T, TRIM Text Functions + - Addition of the FALSE and TRUE Boolean Functions + - Addition of the TDIST and TINV Statistical Functions + - Addition of the EDATE, EOMONTH, YEAR, MONTH, TIME, TIMEVALUE, HOUR, MINUTE, SECOND, WEEKDAY, WEEKNUM, NOW, TODAY and Date/Time Function + - Addition of the BESSELI, BESSELJ, BESSELK and BESSELY Engineering Functions + - Addition of the SLN and SYD Financial Functions + - reworked MODE calculation to handle floating point numbers + - Improved error trapping for invalid input values + - Fix to SMALL, LARGE, PERCENTILE and TRIMMEAN to eliminate non-numeric values + - Added CDF to BINOMDIST and POISSON + - Fix to a potential endless loop in CRITBINOM, together with other bugfixes to the algorithm + - Fix to SQRTPI so that it will work with a real value parameter rather than just integers + - Trap for passing negative values to FACT + - Improved accuracy of the NORMDIST cumulative function, and of the ERF and ERFC functions + - Replicated Excel data-type and error handling for BIN, DEC, OCT and HEX conversion functions + - Replicated Excel data-type and error handling for AND and OR Boolean functions + - Bugfix to MROUND + - Rework of the DATE, DATEVALUE, DAY, DAYS360 and DATEDIF date/Time functions to use Excel dates rather than straight PHP dates + - Rework of the AND, OR Boolean functions to ignore string values + - Rework of the BIN2DEC, BIN2HEX, BIN2OCT, DEC2BIN, DEC2HEX, DEC2OCT Engineering functions to handle two's complement + - Excel, Gnumeric and OpenOffice Calc compatibility flag for functions + Note, not all functions have yet been written to work with the Gnumeric and OpenOffice Calc compatibility flags + - 1900 or 1904 Calendar flag for date functions + - Reworked ExcelToPHP date method to handle the Excel 1900 leap year + Note that this will not correctly return values prior to 13-Dec-1901 20:45:52 as this is the minimum value that PHP date serial values can handle. If you need to work with dates prior to this, then an ExcelToPHPObject method has been added which will work correctly with values between Excel's 1900 calendar base date of 1-Jan-1900, and 13-Dec-1901 + - Addition of ExcelToPHPObject date method to return a PHP DateTime object from an Excel date serial value + - PHPToExcel method modified to accept either PHP date serial numbers or PHP DateTime objects + - Addition of FormattedPHPToExcel which will accept a date and time broken to into year, month, day, hour, minute, second and return an Excel date serial value +- Feature: (MB) Work item 4485 - Control characters in Excel 2007 +- Feature: (MB) Work item 4796 - BaseDrawing::setWidthAndHeight method request +- Feature: (MB) Work item 4798 - Page Setup -> Print Titles -> Sheet -> 'Rows to repeat at top' +- Feature: (MB) Work item 4433 - Comment functionality +- Bugfix: (MB) Work item 4124 - Undefined variable in PHPExcel_Writer_Serialized +- Bugfix: (MB) Work item 4125 - Notice: Object of class PHPExcel_RichText could not be converted to int +- Bugfix: (MB) Work item 4126 - Excel5Writer: utf8 string not converted to utf16 +- Bugfix: (MB) Work item 4180 - PHPExcel_RichText and autosize +- Bugfix: (MB) Work item 4574 - Excel5Writer produces broken xls files after change mentioned in work item 4126 +- Bugfix: (MB) Work item 4797 - Small bug in PHPExcel_Reader_Excel2007 function _readStyle + + +2007/10/23 (v 1.5.0): +- General: (MB) Work item 3265 - Refactor PHPExcel Drawing +- Feature: (CS) Work item 3079 - Update Shared/OLE.php to latest version from PEAR +- Feature: (MB) Work item 3217 - Excel2007 vs Excel2003 compatibility pack +- Feature: (MB) Work item 3234 - Cell protection (lock/unlock) +- Feature: (MB) Work item 3543 - Create clickable links (hyperlinks) +- Feature: (MB) Work item 3241 - Additional page setup parameters +- Feature: (MB) Work item 3300 - Make temporary file path configurable (Excel5) +- Feature: (MB) Work item 3306 - Small addition to applyFromArray for font +- Feature: (MB) Work item 3373 - Better feedback when save of file is not possible +- Bugfix: (MB) Work item 3181 - Text Rotation +- Bugfix: (MB) Work item 3237 - Small bug in Page Orientation +- Bugfix: (MB) Work item 3812 - insertNewColumnBeforeByColumn undefined +- Bugfix: (MB) Work item 3893 - Sheet references not working in formula (Excel5 Writer) + + +2007/08/23 (v 1.4.5): +- General: (MB) Work item 3003 - Class file endings +- General: (MB) Work item 3081 - Different calculation engine improvements +- General: (MB) Work item 3082 - Different improvements in PHPExcel_Reader_Excel2007 +- General: (MB) Work item 3146 - Set XML indentation in PHPExcel_Writer_Excel2007 +- Feature: (MB) Work item 3159 - Optionally store temporary Excel2007 writer data in file instead of memory +- Feature: (MB) Work item 3063 - Implement show/hide gridlines +- Feature: (MB) Work item 3064 - Implement option to read only data +- Feature: (MB) Work item 3080 - Optionally disable formula precalculation +- Feature: (MB) Work item 3154 - Explicitly set cell datatype +- Feature: (MBaker) Work item 2346 - Implement more Excel calculation functions + - Addition of MINA, MAXA, COUNTA, AVERAGEA, MEDIAN, MODE, DEVSQ, STDEV, STDEVA, STDEVP, STDEVPA, VAR, VARA, VARP and VARPA Excel Functions + - Fix to SUM, PRODUCT, QUOTIENT, MIN, MAX, COUNT and AVERAGE functions when cell contains a numeric value in a string datatype, bringing it in line with MS Excel behaviour +- Bugfix: (MB) Work item 2881 - File_exists on ZIP fails on some installations +- Bugfix: (MB) Work item 2879 - Argument in textRotation should be -90..90 +- Bugfix: (MB) Work item 2883 - Excel2007 reader/writer not implementing OpenXML/SpreadsheetML styles 100% correct +- Bugfix: (MB) Work item 2513 - Active sheet index not read/saved +- Bugfix: (MB) Work item 2935 - Print and print preview of generated XLSX causes Excel2007 to crash +- Bugfix: (MB) Work item 2952 - Error in Calculations - COUNT() function +- Bugfix: (MB) Work item 3002 - HTML and CSV writer not writing last row +- Bugfix: (MB) Work item 3017 - Memory leak in Excel5 writer +- Bugfix: (MB) Work item 3044 - Printing (PHPExcel_Writer_Excel5) +- Bugfix: (MB) Work item 3046 - Problems reading zip:// +- Bugfix: (MB) Work item 3047 - Error reading conditional formatting +- Bugfix: (MB) Work item 3067 - Bug in Excel5 writer (storePanes) +- Bugfix: (MB) Work item 3077 - Memory leak in PHPExcel_Style_Color + + +2007/07/23 (v 1.4.0): +- General: (MB) Work item 2687 - Coding convention / code cleanup +- General: (MB) Work item 2717 - Use set_include_path in tests +- General: (MB) Work item 2812 - Move PHPExcel_Writer_Excel5 OLE to PHPExcel_Shared_OLE +- Feature: (MB) Work item 2679 - Hide/Unhide Column or Row +- Feature: (MB) Work item 2271 - Implement multi-cell styling +- Feature: (MB) Work item 2720 - Implement CSV file format (reader/writer) +- Feature: (MB) Work item 2845 - Implement HTML file format +- Bugfix: (MB) Work item 2513 - Active sheet index not read/saved +- Bugfix: (MB) Work item 2678 - Freeze Panes with PHPExcel_Writer_Excel5 +- Bugfix: (MB) Work item 2680 - OLE.php +- Bugfix: (MB) Work item 2736 - Copy and pasting multiple drop-down list cells breaks reader +- Bugfix: (MB) Work item 2775 - Function setAutoFilterByColumnAndRow takes wrong arguments +- Bugfix: (MB) Work item 2858 - Simplexml_load_file fails on ZipArchive + + +2007/06/27 (v 1.3.5): +- General: (MB) Work item 15 - Documentation +- Feature: (JV) PHPExcel_Writer_Excel5 +- Feature: (JV) PHPExcel_Reader_Excel2007: Image shadows +- Feature: (MB) Work item 2385 - Data validation +- Feature: (MB) Work item 187 - Implement richtext strings +- Bugfix: (MB) Work item 2443 - Empty relations when adding image to any sheet but the first one +- Bugfix: (MB) Work item 2536 - Excel2007 crashes on print preview + + +2007/06/05 (v 1.3.0): +- General: (MB) Work item 1942 - Create PEAR package +- General: (MB) Work item 2331 - Replace *->duplicate() by __clone() +- Feature: (JV) PHPExcel_Reader_Excel2007: Column auto-size, Protection, Merged cells, Wrap text, Page breaks, Auto filter, Images +- Feature: (MB) Work item 245 - Implement "freezing" panes +- Feature: (MB) Work item 2273 - Cell addressing alternative +- Feature: (MB) Work item 2270 - Implement cell word-wrap attribute +- Feature: (MB) Work item 2282 - Auto-size column +- Feature: (MB) Work item 241 - Implement formula calculation +- Feature: (MB) Work item 2375 - Insert/remove row/column +- Bugfix: (MB) Work item 1931 - PHPExcel_Worksheet::getCell() should not accept absolute coordinates +- Bugfix: (MB) Work item 2272 - Cell reference without row number +- Bugfix: (MB) Work item 2276 - Styles with same coordinate but different worksheet +- Bugfix: (MB) Work item 2290 - PHPExcel_Worksheet->getCellCollection() usort error +- Bugfix: (SS) Work item 2353 - Bug in PHPExcel_Cell::stringFromColumnIndex +- Bugfix: (JV) Work item 2353 - Reader: numFmts can be missing, use cellStyleXfs instead of cellXfs in styles + + +2007/04/26 (v 1.2.0): +- General: (MB) Stringtable attribute "count" not necessary, provides wrong info to Excel sometimes... +- General: (MB) Updated tests to address more document properties +- General: (MB) Some refactoring in PHPExcel_Writer_Excel2007_Workbook +- General: (MB) New package: PHPExcel_Shared +- General: (MB) Password hashing algorithm implemented in PHPExcel_Shared_PasswordHasher +- General: (MB) Moved pixel conversion functions to PHPExcel_Shared_Drawing +- General: (MB) Work item 244 - Switch over to LGPL license +- General: (MB) Work item 5 - Include PHPExcel version in file headers +- Feature: (MB) Work item 6 - Autofilter +- Feature: (MB) Work item 7 - Extra document property: keywords +- Feature: (MB) Work item 8 - Extra document property: category +- Feature: (MB) Work item 9 - Document security +- Feature: (MB) Work item 10 - PHPExcel_Writer_Serialized and PHPExcel_Reader_Serialized +- Feature: (MB) Work item 11 - Alternative syntax: Addressing a cell +- Feature: (MB) Work item 12 - Merge cells +- Feature: (MB) Work item 13 - Protect ranges of cells with a password +- Bugfix: (JV) Work item 14 - (style/fill/patternFill/fgColor or bgColor can be empty) + + +2007/03/26 (v 1.1.1): +- Bugfix: (MB) Work item 1250 - Syntax error in "Classes/PHPExcel/Writer/Excel2007.php" on line 243 +- General: (MB) Work item 1282 - Reader should check if file exists and throws an exception when it doesn't + + +2007/03/22 (v 1.1.0): +- Changed filenames of tests +- Bugfix: (MB) Work item 836 - Style information lost after passing trough Excel2007_Reader +- Bugfix: (MB) Work item 913 - Number of columns > AZ fails fixed in PHPExcel_Cell::columnIndexFromString +- General: (MB) Added a brief file with installation instructions +- Feature: (MB) Page breaks (horizontal and vertical) +- Feature: (MB) Image shadows + + + +2007/02/22 (v 1.0.0): +- Changelog now includes developer initials +- Bugfix: (JV) PHPExcel->removeSheetByIndex now re-orders sheets after deletion, so no array indexes are lost +- Bugfix: (JV) PHPExcel_Writer_Excel2007_Worksheet::_writeCols() used direct assignment to $pSheet->getColumnDimension('A')->Width instead of $pSheet->getColumnDimension('A')->setWidth() +- Bugfix: (JV) DocumentProperties used $this->LastModifiedBy instead of $this->_lastModifiedBy. +- Bugfix: (JV) Only first = should be removed when writing formula in PHPExcel_Writer_Excel2007_Worksheet. +- General: (JV) Consistency of method names to camelCase +- General: (JV) Updated tests to match consistency changes +- General: (JV) Detection of mime-types now with image_type_to_mime_type() +- General: (JV) Constants now hold string value used in Excel 2007 +- General: (MB) Fixed folder name case (WorkSheet -> Worksheet) +- Feature: (MB) PHPExcel classes (not the Writer classes) can be duplicated, using a duplicate() method. +- Feature: (MB) Cell styles can now be duplicated to a range of cells using PHPExcel_Worksheet->duplicateStyle() +- Feature: (MB) Conditional formatting +- Feature: (JV) Reader for Excel 2007 (not supporting full specification yet!) + + + +2007/01/31 (v 1.0.0 RC): +- Project name has been changed to PHPExcel +- Project homepage is now http://www.codeplex.com/PHPExcel +- Started versioning at number: PHPExcel 1.0.0 RC + + + +2007/01/22: +- Fixed some performance issues on large-scale worksheets (mainly loops vs. indexed arrays) +- Performance on creating StringTable has been increased +- Performance on writing Excel2007 worksheet has been increased + + + +2007/01/18: +- Images can now be rotated +- Fixed bug: When drawings have full path specified, no mime type can be deducted +- Fixed bug: Only one drawing can be added to a worksheet + + + +2007/01/12: +- Refactoring of some classes to use ArrayObject instead of array() +- Cell style now has support for number format (i.e. #,##0) +- Implemented embedding images + + + +2007/01/02: +- Cell style now has support for fills, including gradient fills +- Cell style now has support for fonts +- Cell style now has support for border colors +- Cell style now has support for font colors +- Cell style now has support for alignment + + + +2006/12/21: +- Support for cell style borders +- Support for cell styles +- Refactoring of Excel2007 Writer into multiple classes in package SpreadSheet_Writer_Excel2007 +- Refactoring of all classes, changed public members to public properties using getter/setter +- Worksheet names are now unique. On duplicate worksheet names, a number is appended. +- Worksheet now has parent SpreadSheet object +- Worksheet now has support for page header and footer +- Worksheet now has support for page margins +- Worksheet now has support for page setup (only Paper size and Orientation) +- Worksheet properties now accessible by using getProperties() +- Worksheet now has support for row and column dimensions (height / width) +- Exceptions thrown have a more clear description + + + +Initial version: +- Create a Spreadsheet object +- Add one or more Worksheet objects +- Add cells to Worksheet objects +- Export Spreadsheet object to Excel 2007 OpenXML format +- Each cell supports the following data formats: string, number, formula, boolean. \ No newline at end of file diff --git a/src/vendor/phpoffice/phpexcel/composer.json b/src/vendor/phpoffice/phpexcel/composer.json new file mode 100644 index 0000000..8aa4480 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/composer.json @@ -0,0 +1,43 @@ +{ + "name": "phpoffice/phpexcel", + "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine", + "keywords": ["PHP","Excel","OpenXML","xlsx","xls","spreadsheet"], + "homepage": "https://github.com/PHPOffice/PHPExcel", + "type": "library", + "license": "LGPL-2.1", + "authors": [ + { + "name": "Maarten Balliauw", + "homepage": "http://blog.maartenballiauw.be" + }, + { + "name": "Mark Baker", + "homepage": "http://markbakeruk.net" + }, + { + "name": "Franck Lefevre", + "homepage": "http://rootslabs.net" + }, + { + "name": "Erik Tilt" + } + ], + "require": { + "php": "^5.2|^7.0", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*" + }, + "require-dev": { + "squizlabs/php_codesniffer": "2.*" + }, + "recommend": { + "ext-zip": "*", + "ext-gd": "*" + }, + "autoload": { + "psr-0": { + "PHPExcel": "Classes/" + } + } +} diff --git a/src/vendor/phpoffice/phpexcel/install.txt b/src/vendor/phpoffice/phpexcel/install.txt new file mode 100644 index 0000000..1a999d2 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/install.txt @@ -0,0 +1,75 @@ +************************************************************************************** +* PHPExcel +* +* Copyright (c) 2006 - 2011 PHPExcel +* +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU Lesser General Public +* License as published by the Free Software Foundation; either +* version 2.1 of the License, or (at your option) any later version. +* +* This library is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +* Lesser General Public License for more details. +* +* You should have received a copy of the GNU Lesser General Public +* License along with this library; if not, write to the Free Software +* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +* +* @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) +* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL +* @version ##VERSION##, ##DATE## +************************************************************************************** + +Requirements +------------ + +The following requirements should be met prior to using PHPExcel: +* PHP version 5.2.0 or higher +* PHP extension php_zip enabled *) +* PHP extension php_xml enabled +* PHP extension php_gd2 enabled (if not compiled in) + +*) php_zip is only needed by PHPExcel_Reader_Excel2007, PHPExcel_Writer_Excel2007, + PHPExcel_Reader_OOCalc. In other words, if you need PHPExcel to handle .xlsx or .ods + files you will need the zip extension, but otherwise not. + + + +Installation instructions +------------------------- + +Installation is quite easy: copy the contents of the Classes folder to any location +in your application required. + +Example: + +If your web root folder is /var/www/ you may want to create a subfolder called +/var/www/Classes/ and copy the files into that folder so you end up with files: + +/var/www/Classes/PHPExcel.php +/var/www/Classes/PHPExcel/Calculation.php +/var/www/Classes/PHPExcel/Cell.php +... + + + +Getting started +--------------- + +A good way to get started is to run some of the tests included in the download. +Copy the "Examples" folder next to your "Classes" folder from above so you end up with: + +/var/www/Examples/01simple.php +/var/www/Examples/02types.php +... + +Start running the test by pointing your browser to the test scripts: + +http://example.com/Examples/01simple.php +http://example.com/Examples/02types.php +... + +Note: It may be necessary to modify the include/require statements at the beginning of +each of the test scripts if your "Classes" folder from above is named differently. diff --git a/src/vendor/phpoffice/phpexcel/license.md b/src/vendor/phpoffice/phpexcel/license.md new file mode 100644 index 0000000..57b74d4 --- /dev/null +++ b/src/vendor/phpoffice/phpexcel/license.md @@ -0,0 +1,345 @@ +GNU LESSER GENERAL PUBLIC LICENSE + + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + +NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/vendor/phpoffice/phpspreadsheet/.php-cs-fixer.dist.php b/src/vendor/phpoffice/phpspreadsheet/.php-cs-fixer.dist.php new file mode 100644 index 0000000..ca2feb4 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/.php-cs-fixer.dist.php @@ -0,0 +1,226 @@ +<?php + +$finder = PhpCsFixer\Finder::create() + ->exclude('vendor') + ->in(__DIR__); + +$config = new PhpCsFixer\Config(); +$config + ->setRiskyAllowed(true) + ->setFinder($finder) + ->setCacheFile(sys_get_temp_dir() . '/php-cs-fixer' . preg_replace('~\W~', '-', __DIR__)) + ->setRules([ + 'align_multiline_comment' => true, + 'array_indentation' => true, + 'array_syntax' => ['syntax' => 'short'], + 'backtick_to_shell_exec' => true, + 'binary_operator_spaces' => true, + 'blank_line_after_namespace' => true, + 'blank_line_after_opening_tag' => true, + 'blank_line_before_statement' => true, + 'braces' => true, + 'cast_spaces' => true, + 'class_attributes_separation' => ['elements' => ['method' => 'one', 'property' => 'one']], // const are often grouped with other related const + 'class_definition' => false, + 'class_keyword_remove' => false, // ::class keyword gives us better support in IDE + 'combine_consecutive_issets' => true, + 'combine_consecutive_unsets' => true, + 'combine_nested_dirname' => true, + 'comment_to_phpdoc' => false, // interferes with annotations + 'compact_nullable_typehint' => true, + 'concat_space' => ['spacing' => 'one'], + 'constant_case' => true, + 'date_time_immutable' => false, // Break our unit tests + 'declare_equal_normalize' => true, + 'declare_strict_types' => false, // Too early to adopt strict types + 'dir_constant' => true, + 'doctrine_annotation_array_assignment' => true, + 'doctrine_annotation_braces' => true, + 'doctrine_annotation_indentation' => true, + 'doctrine_annotation_spaces' => true, + 'elseif' => true, + 'encoding' => true, + 'ereg_to_preg' => true, + 'escape_implicit_backslashes' => true, + 'explicit_indirect_variable' => false, // I feel it makes the code actually harder to read + 'explicit_string_variable' => false, // I feel it makes the code actually harder to read + 'final_class' => false, // We need non-final classes + 'final_internal_class' => true, + 'final_public_method_for_abstract_class' => false, // We need non-final methods + 'self_static_accessor' => true, + 'fopen_flag_order' => true, + 'fopen_flags' => true, + 'full_opening_tag' => true, + 'fully_qualified_strict_types' => true, + 'function_declaration' => true, + 'function_to_constant' => true, + 'function_typehint_space' => true, + 'general_phpdoc_annotation_remove' => ['annotations' => ['access', 'category', 'copyright', 'throws']], + 'global_namespace_import' => true, + 'header_comment' => false, // We don't use common header in all our files + 'heredoc_indentation' => false, // Requires PHP >= 7.3 + 'heredoc_to_nowdoc' => false, // Not sure about this one + 'implode_call' => true, + 'include' => true, + 'increment_style' => true, + 'indentation_type' => true, + 'is_null' => true, + 'line_ending' => true, + 'linebreak_after_opening_tag' => true, + 'list_syntax' => ['syntax' => 'short'], + 'logical_operators' => true, + 'lowercase_cast' => true, + 'lowercase_keywords' => true, + 'lowercase_static_reference' => true, + 'magic_constant_casing' => true, + 'magic_method_casing' => true, + 'mb_str_functions' => false, // No, too dangerous to change that + 'method_argument_space' => true, + 'method_chaining_indentation' => true, + 'modernize_types_casting' => true, + 'multiline_comment_opening_closing' => true, + 'multiline_whitespace_before_semicolons' => true, + 'native_constant_invocation' => false, // Micro optimization that look messy + 'native_function_casing' => true, + 'native_function_invocation' => false, // I suppose this would be best, but I am still unconvinced about the visual aspect of it + 'native_function_type_declaration_casing' => true, + 'new_with_braces' => true, + 'no_alias_functions' => true, + 'no_alternative_syntax' => true, + 'no_binary_string' => true, + 'no_blank_lines_after_class_opening' => true, + 'no_blank_lines_after_phpdoc' => true, + 'no_blank_lines_before_namespace' => false, // we want 1 blank line before namespace + 'no_break_comment' => true, + 'no_closing_tag' => true, + 'no_empty_comment' => true, + 'no_empty_phpdoc' => true, + 'no_empty_statement' => true, + 'no_extra_blank_lines' => true, + 'no_homoglyph_names' => true, + 'no_leading_import_slash' => true, + 'no_leading_namespace_whitespace' => true, + 'no_mixed_echo_print' => true, + 'no_multiline_whitespace_around_double_arrow' => true, + 'no_null_property_initialization' => true, + 'no_php4_constructor' => true, + 'no_short_bool_cast' => true, + 'echo_tag_syntax' => ['format' => 'long'], + 'no_singleline_whitespace_before_semicolons' => true, + 'no_spaces_after_function_name' => true, + 'no_spaces_around_offset' => true, + 'no_spaces_inside_parenthesis' => true, + 'no_superfluous_elseif' => false, // Might be risky on a huge code base + 'no_superfluous_phpdoc_tags' => ['allow_mixed' => true], + 'no_trailing_comma_in_list_call' => true, + 'no_trailing_comma_in_singleline_array' => true, + 'no_trailing_whitespace' => true, + 'no_trailing_whitespace_in_comment' => true, + 'no_unneeded_control_parentheses' => true, + 'no_unneeded_curly_braces' => true, + 'no_unneeded_final_method' => true, + 'no_unreachable_default_argument_value' => true, + 'no_unset_cast' => true, + 'no_unset_on_property' => true, + 'no_unused_imports' => true, + 'no_useless_else' => true, + 'no_useless_return' => true, + 'no_whitespace_before_comma_in_array' => true, + 'no_whitespace_in_blank_line' => true, + 'non_printable_character' => true, + 'normalize_index_brace' => true, + 'not_operator_with_space' => false, // No we prefer to keep '!' without spaces + 'not_operator_with_successor_space' => false, // idem + 'nullable_type_declaration_for_default_null_value' => true, + 'object_operator_without_whitespace' => true, + 'ordered_class_elements' => false, // We prefer to keep some freedom + 'ordered_imports' => true, + 'ordered_interfaces' => true, + 'php_unit_construct' => true, + 'php_unit_dedicate_assert' => true, + 'php_unit_dedicate_assert_internal_type' => true, + 'php_unit_expectation' => true, + 'php_unit_fqcn_annotation' => true, + 'php_unit_internal_class' => false, // Because tests are excluded from package + 'php_unit_method_casing' => true, + 'php_unit_mock' => true, + 'php_unit_mock_short_will_return' => true, + 'php_unit_namespaced' => true, + 'php_unit_no_expectation_annotation' => true, + 'phpdoc_order_by_value' => ['annotations' => ['covers']], + 'php_unit_set_up_tear_down_visibility' => true, + 'php_unit_size_class' => false, // That seems extra work to maintain for little benefits + 'php_unit_strict' => false, // We sometime actually need assertEquals + 'php_unit_test_annotation' => true, + 'php_unit_test_case_static_method_calls' => ['call_type' => 'self'], + 'php_unit_test_class_requires_covers' => false, // We don't care as much as we should about coverage + 'phpdoc_add_missing_param_annotation' => false, // Don't add things that bring no value + 'phpdoc_align' => false, // Waste of time + 'phpdoc_annotation_without_dot' => true, + 'phpdoc_indent' => true, + //'phpdoc_inline_tag' => true, + 'phpdoc_line_span' => false, // Unfortunately our old comments turn even uglier with this + 'phpdoc_no_access' => true, + 'phpdoc_no_alias_tag' => true, + 'phpdoc_no_empty_return' => true, + 'phpdoc_no_package' => true, + 'phpdoc_no_useless_inheritdoc' => true, + 'phpdoc_order' => true, + 'phpdoc_return_self_reference' => true, + 'phpdoc_scalar' => true, + 'phpdoc_separation' => true, + 'phpdoc_single_line_var_spacing' => true, + 'phpdoc_summary' => true, + 'phpdoc_to_comment' => false, // interferes with annotations + 'phpdoc_to_param_type' => false, // Because experimental, but interesting for one shot use + 'phpdoc_to_return_type' => false, // idem + 'phpdoc_trim' => true, + 'phpdoc_trim_consecutive_blank_line_separation' => true, + 'phpdoc_types' => true, + 'phpdoc_types_order' => true, + 'phpdoc_var_annotation_correct_order' => true, + 'phpdoc_var_without_name' => true, + 'pow_to_exponentiation' => true, + 'protected_to_private' => true, + //'psr0' => true, + //'psr4' => true, + 'random_api_migration' => true, + 'return_assignment' => false, // Sometimes useful for clarity or debug + 'return_type_declaration' => true, + 'self_accessor' => true, + 'self_static_accessor' => true, + 'semicolon_after_instruction' => false, // Buggy in `samples/index.php` + 'set_type_to_cast' => true, + 'short_scalar_cast' => true, + 'simple_to_complex_string_variable' => false, // Would differ from TypeScript without obvious advantages + 'simplified_null_return' => false, // Even if technically correct we prefer to be explicit + 'single_blank_line_at_eof' => true, + 'single_blank_line_before_namespace' => true, + 'single_class_element_per_statement' => true, + 'single_import_per_statement' => true, + 'single_line_after_imports' => true, + 'single_line_comment_style' => true, + 'single_line_throw' => false, // I don't see any reason for having a special case for Exception + 'single_quote' => true, + 'single_trait_insert_per_statement' => true, + 'space_after_semicolon' => true, + 'standardize_increment' => true, + 'standardize_not_equals' => true, + 'static_lambda' => false, // Risky if we can't guarantee nobody use `bindTo()` + 'strict_comparison' => false, // No, too dangerous to change that + 'strict_param' => false, // No, too dangerous to change that + 'string_line_ending' => true, + 'switch_case_semicolon_to_colon' => true, + 'switch_case_space' => true, + 'ternary_operator_spaces' => true, + 'ternary_to_null_coalescing' => true, + 'trailing_comma_in_multiline' => true, + 'trim_array_spaces' => true, + 'unary_operator_spaces' => true, + 'visibility_required' => ['elements' => ['property', 'method']], // not const + 'void_return' => true, + 'whitespace_after_comma_in_array' => true, + 'yoda_style' => false, + ]); + +return $config; diff --git a/src/vendor/phpoffice/phpspreadsheet/.phpcs.xml.dist b/src/vendor/phpoffice/phpspreadsheet/.phpcs.xml.dist new file mode 100644 index 0000000..3eafb6c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/.phpcs.xml.dist @@ -0,0 +1,22 @@ +<?xml version="1.0"?> +<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="PHP_CodeSniffer" + xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd"> + + <file>samples</file> + <file>src</file> + <file>tests</file> + + <exclude-pattern>samples/Header.php</exclude-pattern> + <exclude-pattern>*/tests/Core/*/*Test\.(inc|css|js)$</exclude-pattern> + + <arg name="report-width" value="200"/> + <arg name="parallel" value="80"/> + <arg name="cache" value="/tmp/.phpspreadsheet.phpcs-cache"/> + <arg name="colors"/> + <arg value="np"/> + + <!-- Include the whole PSR12 standard --> + <rule ref="PSR12"> + <exclude name="PSR2.Methods.MethodDeclaration.Underscore"/> + </rule> +</ruleset> diff --git a/src/vendor/phpoffice/phpspreadsheet/CHANGELOG.md b/src/vendor/phpoffice/phpspreadsheet/CHANGELOG.md new file mode 100644 index 0000000..3356440 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/CHANGELOG.md @@ -0,0 +1,1114 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com) +and this project adheres to [Semantic Versioning](https://semver.org). + +## 1.24.1 - 2022-07-18 + +### Added + +- Add Chart Axis Option textRotation [Issue #2705](https://github.com/PHPOffice/PhpSpreadsheet/issues/2705) [PR #2940](https://github.com/PHPOffice/PhpSpreadsheet/pull/2940) + +### Changed + +- Nothing + +### Deprecated + +- Nothing + +### Removed + +- Nothing + +### Fixed + +- Fix Encoding issue with Html reader (PHP 8.2 deprecation for mb_convert_encoding) [Issue #2942](https://github.com/PHPOffice/PhpSpreadsheet/issues/2942) [PR #2943](https://github.com/PHPOffice/PhpSpreadsheet/pull/2943) +- Additional Chart fixes + - Pie chart with part separated unwantedly [Issue #2506](https://github.com/PHPOffice/PhpSpreadsheet/issues/2506) [PR #2928](https://github.com/PHPOffice/PhpSpreadsheet/pull/2928) + - Chart styling is lost on simple load / save process [Issue #1797](https://github.com/PHPOffice/PhpSpreadsheet/issues/1797) [Issue #2077](https://github.com/PHPOffice/PhpSpreadsheet/issues/2077) [PR #2930](https://github.com/PHPOffice/PhpSpreadsheet/pull/2930) + - Can't create contour chart (surface 2d) [Issue #2931](https://github.com/PHPOffice/PhpSpreadsheet/issues/2931) [PR #2933](https://github.com/PHPOffice/PhpSpreadsheet/pull/2933) +- VLOOKUP Breaks When Array Contains Null Cells [Issue #2934](https://github.com/PHPOffice/PhpSpreadsheet/issues/2934) [PR #2939](https://github.com/PHPOffice/PhpSpreadsheet/pull/2939) + +## 1.24.0 - 2022-07-09 + +Note that this will be the last 1.x branch release before the 2.x release. We will maintain both branches in parallel for a time; but users are requested to update to version 2.0 once that is fully available. + +### Added + +- Added `removeComment()` method for Worksheet [PR #2875](https://github.com/PHPOffice/PhpSpreadsheet/pull/2875/files) +- Add point size option for scatter charts [Issue #2298](https://github.com/PHPOffice/PhpSpreadsheet/issues/2298) [PR #2801](https://github.com/PHPOffice/PhpSpreadsheet/pull/2801) +- Basic support for Xlsx reading/writing Chart Sheets [PR #2830](https://github.com/PHPOffice/PhpSpreadsheet/pull/2830) + + Note that a ChartSheet is still only written as a normal Worksheet containing a single chart, not as an actual ChartSheet. + +- Added Worksheet visibility in Ods Reader [PR #2851](https://github.com/PHPOffice/PhpSpreadsheet/pull/2851) and Gnumeric Reader [PR #2853](https://github.com/PHPOffice/PhpSpreadsheet/pull/2853) +- Added Worksheet visibility in Ods Writer [PR #2850](https://github.com/PHPOffice/PhpSpreadsheet/pull/2850) +- Allow Csv Reader to treat string as contents of file [Issue #1285](https://github.com/PHPOffice/PhpSpreadsheet/issues/1285) [PR #2792](https://github.com/PHPOffice/PhpSpreadsheet/pull/2792) +- Allow Csv Reader to store null string rather than leave cell empty [Issue #2840](https://github.com/PHPOffice/PhpSpreadsheet/issues/2840) [PR #2842](https://github.com/PHPOffice/PhpSpreadsheet/pull/2842) +- Provide new Worksheet methods to identify if a row or column is "empty", making allowance for different definitions of "empty": + - Treat rows/columns containing no cell records as empty (default) + - Treat cells containing a null value as empty + - Treat cells containing an empty string as empty + +### Changed + +- Modify `rangeBoundaries()`, `rangeDimension()` and `getRangeBoundaries()` Coordinate methods to work with row/column ranges as well as with cell ranges and cells [PR #2926](https://github.com/PHPOffice/PhpSpreadsheet/pull/2926) +- Better enforcement of value modification to match specified datatype when using `setValueExplicit()` +- Relax validation of merge cells to allow merge for a single cell reference [Issue #2776](https://github.com/PHPOffice/PhpSpreadsheet/issues/2776) +- Memory and speed improvements, particularly for the Cell Collection, and the Writers. + + See [the Discussion section on github](https://github.com/PHPOffice/PhpSpreadsheet/discussions/2821) for details of performance across versions +- Improved performance for removing rows/columns from a worksheet + +### Deprecated + +- Nothing + +### Removed + +- Nothing + +### Fixed + +- Xls Reader resolving absolute named ranges to relative ranges [Issue #2826](https://github.com/PHPOffice/PhpSpreadsheet/issues/2826) [PR #2827](https://github.com/PHPOffice/PhpSpreadsheet/pull/2827) +- Null value handling in the Excel Math/Trig PRODUCT() function [Issue #2833](https://github.com/PHPOffice/PhpSpreadsheet/issues/2833) [PR #2834](https://github.com/PHPOffice/PhpSpreadsheet/pull/2834) +- Invalid Print Area defined in Xlsx corrupts internal storage of print area [Issue #2848](https://github.com/PHPOffice/PhpSpreadsheet/issues/2848) [PR #2849](https://github.com/PHPOffice/PhpSpreadsheet/pull/2849) +- Time interval formatting [Issue #2768](https://github.com/PHPOffice/PhpSpreadsheet/issues/2768) [PR #2772](https://github.com/PHPOffice/PhpSpreadsheet/pull/2772) +- Copy from Xls(x) to Html/Pdf loses drawings [PR #2788](https://github.com/PHPOffice/PhpSpreadsheet/pull/2788) +- Html Reader converting cell containing 0 to null string [Issue #2810](https://github.com/PHPOffice/PhpSpreadsheet/issues/2810) [PR #2813](https://github.com/PHPOffice/PhpSpreadsheet/pull/2813) +- Many fixes for Charts, especially, but not limited to, Scatter, Bubble, and Surface charts. [Issue #2762](https://github.com/PHPOffice/PhpSpreadsheet/issues/2762) [Issue #2299](https://github.com/PHPOffice/PhpSpreadsheet/issues/2299) [Issue #2700](https://github.com/PHPOffice/PhpSpreadsheet/issues/2700) [Issue #2817](https://github.com/PHPOffice/PhpSpreadsheet/issues/2817) [Issue #2763](https://github.com/PHPOffice/PhpSpreadsheet/issues/2763) [Issue #2219](https://github.com/PHPOffice/PhpSpreadsheet/issues/2219) [Issue #2863](https://github.com/PHPOffice/PhpSpreadsheet/issues/2863) [PR #2828](https://github.com/PHPOffice/PhpSpreadsheet/pull/2828) [PR #2841](https://github.com/PHPOffice/PhpSpreadsheet/pull/2841) [PR #2846](https://github.com/PHPOffice/PhpSpreadsheet/pull/2846) [PR #2852](https://github.com/PHPOffice/PhpSpreadsheet/pull/2852) [PR #2856](https://github.com/PHPOffice/PhpSpreadsheet/pull/2856) [PR #2865](https://github.com/PHPOffice/PhpSpreadsheet/pull/2865) [PR #2872](https://github.com/PHPOffice/PhpSpreadsheet/pull/2872) [PR #2879](https://github.com/PHPOffice/PhpSpreadsheet/pull/2879) [PR #2898](https://github.com/PHPOffice/PhpSpreadsheet/pull/2898) [PR #2906](https://github.com/PHPOffice/PhpSpreadsheet/pull/2906) [PR #2922](https://github.com/PHPOffice/PhpSpreadsheet/pull/2922) [PR #2923](https://github.com/PHPOffice/PhpSpreadsheet/pull/2923) +- Adjust both coordinates for two-cell anchors when rows/columns are added/deleted. [Issue #2908](https://github.com/PHPOffice/PhpSpreadsheet/issues/2908) [PR #2909](https://github.com/PHPOffice/PhpSpreadsheet/pull/2909) +- Keep calculated string results below 32K. [PR #2921](https://github.com/PHPOffice/PhpSpreadsheet/pull/2921) +- Filter out illegal Unicode char values FFFE/FFFF. [Issue #2897](https://github.com/PHPOffice/PhpSpreadsheet/issues/2897) [PR #2910](https://github.com/PHPOffice/PhpSpreadsheet/pull/2910) +- Better handling of REF errors and propagation of all errors in Calculation engine. [PR #2902](https://github.com/PHPOffice/PhpSpreadsheet/pull/2902) +- Calculating Engine regexp for Column/Row references when there are multiple quoted worksheet references in the formula [Issue #2874](https://github.com/PHPOffice/PhpSpreadsheet/issues/2874) [PR #2899](https://github.com/PHPOffice/PhpSpreadsheet/pull/2899) + +## 1.23.0 - 2022-04-24 + +### Added + +- Ods Writer support for Freeze Pane [Issue #2013](https://github.com/PHPOffice/PhpSpreadsheet/issues/2013) [PR #2755](https://github.com/PHPOffice/PhpSpreadsheet/pull/2755) +- Ods Writer support for setting column width/row height (including the use of AutoSize) [Issue #2346](https://github.com/PHPOffice/PhpSpreadsheet/issues/2346) [PR #2753](https://github.com/PHPOffice/PhpSpreadsheet/pull/2753) +- Introduced CellAddress, CellRange, RowRange and ColumnRange value objects that can be used as an alternative to a string value (e.g. `'C5'`, `'B2:D4'`, `'2:2'` or `'B:C'`) in appropriate contexts. +- Implementation of the FILTER(), SORT(), SORTBY() and UNIQUE() Lookup/Reference (array) functions. +- Implementation of the ISREF() Information function. +- Added support for reading "formatted" numeric values from Csv files; although default behaviour of reading these values as strings is preserved. + + (i.e a value of "12,345.67" can be read as numeric `12345.67`, not simply as a string `"12,345.67"`, if the `castFormattedNumberToNumeric()` setting is enabled. + + This functionality is locale-aware, using the server's locale settings to identify the thousands and decimal separators. + +- Support for two cell anchor drawing of images. [#2532](https://github.com/PHPOffice/PhpSpreadsheet/pull/2532) [#2674](https://github.com/PHPOffice/PhpSpreadsheet/pull/2674) +- Limited support for Xls Reader to handle Conditional Formatting: + + Ranges and Rules are read, but style is currently limited to font size, weight and color; and to fill style and color. + +- Add ability to suppress Mac line ending check for CSV [#2623](https://github.com/PHPOffice/PhpSpreadsheet/pull/2623) +- Initial support for creating and writing Tables (Xlsx Writer only) [PR #2671](https://github.com/PHPOffice/PhpSpreadsheet/pull/2671) + + See `/samples/Table` for examples of use. + + Note that PreCalculateFormulas needs to be disabled when saving spreadsheets containing tables with formulae (totals or column formulae). + +### Changed + +- Gnumeric Reader now loads number formatting for cells. +- Gnumeric Reader now correctly identifies selected worksheet and selected cells in a worksheet. +- Some Refactoring of the Ods Reader, moving all formula and address translation from Ods to Excel into a separate class to eliminate code duplication and ensure consistency. +- Make Boolean Conversion in Csv Reader locale-aware when using the String Value Binder. + + This is determined by the Calculation Engine locale setting. + + (i.e. `"Vrai"` wil be converted to a boolean `true` if the Locale is set to `fr`.) +- Allow `psr/simple-cache` 2.x + +### Deprecated + +- All Excel Function implementations in `Calculation\Functions` (including the Error functions) have been moved to dedicated classes for groups of related functions. See the docblocks against all the deprecated methods for details of the new methods to call instead. At some point, these old classes will be deleted. +- Worksheet methods that reference cells "byColumnandRow". All such methods have an equivalent that references the cell by its address (e.g. '`E3'` rather than `5, 3`). + + These functions now accept either a cell address string (`'E3')` or an array with columnId and rowId (`[5, 3]`) or a new `CellAddress` object as their `cellAddress`/`coordinate` argument. + This includes the methods: + - `setCellValueByColumnAndRow()` use the equivalent `setCellValue()` + - `setCellValueExplicitByColumnAndRow()` use the equivalent `setCellValueExplicit()` + - `getCellByColumnAndRow()` use the equivalent `getCell()` + - `cellExistsByColumnAndRow()` use the equivalent `cellExists()` + - `getStyleByColumnAndRow()` use the equivalent `getStyle()` + - `setBreakByColumnAndRow()` use the equivalent `setBreak()` + - `mergeCellsByColumnAndRow()` use the equivalent `mergeCells()` + - `unmergeCellsByColumnAndRow()` use the equivalent `unmergeCells()` + - `protectCellsByColumnAndRow()` use the equivalent `protectCells()` + - `unprotectCellsByColumnAndRow()` use the equivalent `unprotectCells()` + - `setAutoFilterByColumnAndRow()` use the equivalent `setAutoFilter()` + - `freezePaneByColumnAndRow()` use the equivalent `freezePane()` + - `getCommentByColumnAndRow()` use the equivalent `getComment()` + - `setSelectedCellByColumnAndRow()` use the equivalent `setSelectedCells()` + + This change provides more consistency in the methods (not every "by cell address" method has an equivalent "byColumnAndRow" method); + and the "by cell address" methods often provide more flexibility, such as allowing a range of cells, or referencing them by passing the defined name of a named range as the argument. + +### Removed + +- Nothing + +### Fixed + +- Make allowance for the AutoFilter dropdown icon in the first row of an Autofilter range when using Autosize columns. [Issue #2413](https://github.com/PHPOffice/PhpSpreadsheet/issues/2413) [PR #2754](https://github.com/PHPOffice/PhpSpreadsheet/pull/2754) +- Support for "chained" ranges (e.g. `A5:C10:C20:F1`) in the Calculation Engine; and also support for using named ranges with the Range operator (e.g. `NamedRange1:NamedRange2`) [Issue #2730](https://github.com/PHPOffice/PhpSpreadsheet/issues/2730) [PR #2746](https://github.com/PHPOffice/PhpSpreadsheet/pull/2746) +- Update Conditional Formatting ranges and rule conditions when inserting/deleting rows/columns [Issue #2678](https://github.com/PHPOffice/PhpSpreadsheet/issues/2678) [PR #2689](https://github.com/PHPOffice/PhpSpreadsheet/pull/2689) +- Allow `INDIRECT()` to accept row/column ranges as well as cell ranges [PR #2687](https://github.com/PHPOffice/PhpSpreadsheet/pull/2687) +- Fix bug when deleting cells with hyperlinks, where the hyperlink was then being "inherited" by whatever cell moved to that cell address. +- Fix bug in Conditional Formatting in the Xls Writer that resulted in a broken file when there were multiple conditional ranges in a worksheet. +- Fix Conditional Formatting in the Xls Writer to work with rules that contain string literals, cell references and formulae. +- Fix for setting Active Sheet to the first loaded worksheet when bookViews element isn't defined [Issue #2666](https://github.com/PHPOffice/PhpSpreadsheet/issues/2666) [PR #2669](https://github.com/PHPOffice/PhpSpreadsheet/pull/2669) +- Fixed behaviour of XLSX font style vertical align settings [PR #2619](https://github.com/PHPOffice/PhpSpreadsheet/pull/2619) +- Resolved formula translations to handle separators (row and column) for array functions as well as for function argument separators; and cleanly handle nesting levels. + + Note that this method is used when translating Excel functions between `en_us` and other locale languages, as well as when converting formulae between different spreadsheet formats (e.g. Ods to Excel). + + Nor is this a perfect solution, as there may still be issues when function calls have array arguments that themselves contain function calls; but it's still better than the current logic. +- Fix for escaping double quotes within a formula [Issue #1971](https://github.com/PHPOffice/PhpSpreadsheet/issues/1971) [PR #2651](https://github.com/PHPOffice/PhpSpreadsheet/pull/2651) +- Change open mode for output from `wb+` to `wb` [Issue #2372](https://github.com/PHPOffice/PhpSpreadsheet/issues/2372) [PR #2657](https://github.com/PHPOffice/PhpSpreadsheet/pull/2657) +- Use color palette if supplied [Issue #2499](https://github.com/PHPOffice/PhpSpreadsheet/issues/2499) [PR #2595](https://github.com/PHPOffice/PhpSpreadsheet/pull/2595) +- Xls reader treat drawing offsets as int rather than float [PR #2648](https://github.com/PHPOffice/PhpSpreadsheet/pull/2648) +- Handle booleans in conditional styles properly [PR #2654](https://github.com/PHPOffice/PhpSpreadsheet/pull/2654) +- Fix for reading files in the root directory of a ZipFile, which should not be prefixed by relative paths ("./") as dirname($filename) does by default. +- Fix invalid style of cells in empty columns with columnDimensions and rows with rowDimensions in added external sheet. [PR #2739](https://github.com/PHPOffice/PhpSpreadsheet/pull/2739) +- Time Interval Formatting [Issue #2768](https://github.com/PHPOffice/PhpSpreadsheet/issues/2768) [PR #2772](https://github.com/PHPOffice/PhpSpreadsheet/pull/2772) + +## 1.22.0 - 2022-02-18 + +### Added + +- Namespacing phase 2 - styles. +[PR #2471](https://github.com/PHPOffice/PhpSpreadsheet/pull/2471) + +- Improved support for passing of array arguments to Excel function implementations to return array results (where appropriate). [Issue #2551](https://github.com/PHPOffice/PhpSpreadsheet/issues/2551) + + This is the first stage in an ongoing process of adding array support to all appropriate function implementations, +- Support for the Excel365 Math/Trig SEQUENCE() function [PR #2536](https://github.com/PHPOffice/PhpSpreadsheet/pull/2536) +- Support for the Excel365 Math/Trig RANDARRAY() function [PR #2540](https://github.com/PHPOffice/PhpSpreadsheet/pull/2540) + + Note that the Spill Operator is not yet supported in the Calculation Engine; but this can still be useful for defining array constants. +- Improved support for Conditional Formatting Rules [PR #2491](https://github.com/PHPOffice/PhpSpreadsheet/pull/2491) + - Provide support for a wider range of Conditional Formatting Rules for Xlsx Reader/Writer: + - Cells Containing (cellIs) + - Specific Text (containing, notContaining, beginsWith, endsWith) + - Dates Occurring (all supported timePeriods) + - Blanks/NoBlanks + - Errors/NoErrors + - Duplicates/Unique + - Expression + - Provision of CF Wizards (for all the above listed rule types) to help create/modify CF Rules without having to manage all the combinations of types/operators, and the complexities of formula expressions, or the text/timePeriod attributes. + + See [documentation](https://phpspreadsheet.readthedocs.io/en/latest/topics/conditional-formatting/) for details + + - Full support of the above CF Rules for the Xlsx Reader and Writer; even when the file being loaded has CF rules listed in the `<extLst><ext><ConditionalFormattings>` element for the worksheet rather than the `<ConditionalFormatting>` element. + - Provision of a CellMatcher to identify if rules are matched for a cell, and which matching style will be applied. + - Improved documentation and examples, covering all supported CF rule types. + - Add support for one digit decimals (FORMAT_NUMBER_0, FORMAT_PERCENTAGE_0). [PR #2525](https://github.com/PHPOffice/PhpSpreadsheet/pull/2525) + - Initial work enabling Excel function implementations for handling arrays as arguments when used in "array formulae" [#2562](https://github.com/PHPOffice/PhpSpreadsheet/issues/2562) + - Enable most of the Date/Time functions to accept array arguments [#2573](https://github.com/PHPOffice/PhpSpreadsheet/issues/2573) + - Array ready functions - Text, Math/Trig, Statistical, Engineering and Logical [#2580](https://github.com/PHPOffice/PhpSpreadsheet/issues/2580) + +### Changed + +- Additional Russian translations for Excel Functions (courtesy of aleks-samurai). +- Improved code coverage for NumberFormat. [PR #2556](https://github.com/PHPOffice/PhpSpreadsheet/pull/2556) +- Extract some methods from the Calculation Engine into dedicated classes [#2537](https://github.com/PHPOffice/PhpSpreadsheet/issues/2537) +- Eliminate calls to `flattenSingleValue()` that are no longer required when we're checking for array values as arguments [#2590](https://github.com/PHPOffice/PhpSpreadsheet/issues/2590) + +### Deprecated + +- Nothing + +### Removed + +- Nothing + +### Fixed + +- Fixed `ReferenceHelper@insertNewBefore` behavior when removing column before last column with null value [PR #2541](https://github.com/PHPOffice/PhpSpreadsheet/pull/2541) +- Fix bug with `DOLLARDE()` and `DOLLARFR()` functions when the dollar value is negative [Issue #2578](https://github.com/PHPOffice/PhpSpreadsheet/issues/2578) [PR #2579](https://github.com/PHPOffice/PhpSpreadsheet/pull/2579) +- Fix partial function name matching when translating formulae from Russian to English [Issue #2533](https://github.com/PHPOffice/PhpSpreadsheet/issues/2533) [PR #2534](https://github.com/PHPOffice/PhpSpreadsheet/pull/2534) +- Various bugs related to Conditional Formatting Rules, and errors in the Xlsx Writer for Conditional Formatting [PR #2491](https://github.com/PHPOffice/PhpSpreadsheet/pull/2491) +- Xlsx Reader merge range fixes. [Issue #2501](https://github.com/PHPOffice/PhpSpreadsheet/issues/2501) [PR #2504](https://github.com/PHPOffice/PhpSpreadsheet/pull/2504) +- Handle explicit "date" type for Cell in Xlsx Reader. [Issue #2373](https://github.com/PHPOffice/PhpSpreadsheet/issues/2373) [PR #2485](https://github.com/PHPOffice/PhpSpreadsheet/pull/2485) +- Recalibrate Row/Column Dimensions after removeRow/Column. [Issue #2442](https://github.com/PHPOffice/PhpSpreadsheet/issues/2442) [PR #2486](https://github.com/PHPOffice/PhpSpreadsheet/pull/2486) +- Refinement for XIRR. [Issue #2469](https://github.com/PHPOffice/PhpSpreadsheet/issues/2469) [PR #2487](https://github.com/PHPOffice/PhpSpreadsheet/pull/2487) +- Xlsx Reader handle cell with non-null explicit type but null value. [Issue #2488](https://github.com/PHPOffice/PhpSpreadsheet/issues/2488) [PR #2489](https://github.com/PHPOffice/PhpSpreadsheet/pull/2489) +- Xlsx Reader fix height and width for oneCellAnchorDrawings. [PR #2492](https://github.com/PHPOffice/PhpSpreadsheet/pull/2492) +- Fix rounding error in NumberFormat::NUMBER_PERCENTAGE, NumberFormat::NUMBER_PERCENTAGE_00. [PR #2555](https://github.com/PHPOffice/PhpSpreadsheet/pull/2555) +- Don't treat thumbnail file as xml. [Issue #2516](https://github.com/PHPOffice/PhpSpreadsheet/issues/2516) [PR #2517](https://github.com/PHPOffice/PhpSpreadsheet/pull/2517) +- Eliminating Xlsx Reader warning when no sz tag for RichText. [Issue #2542](https://github.com/PHPOffice/PhpSpreadsheet/issues/2542) [PR #2550](https://github.com/PHPOffice/PhpSpreadsheet/pull/2550) +- Fix Xlsx/Xls Writer handling of inline strings. [Issue #353](https://github.com/PHPOffice/PhpSpreadsheet/issues/353) [PR #2569](https://github.com/PHPOffice/PhpSpreadsheet/pull/2569) +- Richtext colors were not being read correctly after namespace change [#2458](https://github.com/PHPOffice/PhpSpreadsheet/issues/2458) +- Fix discrepancy between the way markdown tables are rendered in ReadTheDocs and in PHPStorm [#2520](https://github.com/PHPOffice/PhpSpreadsheet/issues/2520) +- Update Russian Functions Text File [#2557](https://github.com/PHPOffice/PhpSpreadsheet/issues/2557) +- Fix documentation, instantiation example [#2564](https://github.com/PHPOffice/PhpSpreadsheet/issues/2564) + + +## 1.21.0 - 2022-01-06 + +### Added + +- Ability to add a picture to the background of the comment. Supports four image formats: png, jpeg, gif, bmp. New `Comment::setSizeAsBackgroundImage()` to change the size of a comment to the size of a background image. [Issue #1547](https://github.com/PHPOffice/PhpSpreadsheet/issues/1547) [PR #2422](https://github.com/PHPOffice/PhpSpreadsheet/pull/2422) +- Ability to set default paper size and orientation [PR #2410](https://github.com/PHPOffice/PhpSpreadsheet/pull/2410) +- Ability to extend AutoFilter to Maximum Row [PR #2414](https://github.com/PHPOffice/PhpSpreadsheet/pull/2414) + +### Changed + +- Xlsx Writer will evaluate AutoFilter only if it is as yet unevaluated, or has changed since it was last evaluated [PR #2414](https://github.com/PHPOffice/PhpSpreadsheet/pull/2414) + +### Deprecated + +- Nothing + +### Removed + +- Nothing + +### Fixed + +- Rounding in `NumberFormatter` [Issue #2385](https://github.com/PHPOffice/PhpSpreadsheet/issues/2385) [PR #2399](https://github.com/PHPOffice/PhpSpreadsheet/pull/2399) +- Support for themes [Issue #2075](https://github.com/PHPOffice/PhpSpreadsheet/issues/2075) [Issue #2387](https://github.com/PHPOffice/PhpSpreadsheet/issues/2387) [PR #2403](https://github.com/PHPOffice/PhpSpreadsheet/pull/2403) +- Read spreadsheet with `#` in name [Issue #2405](https://github.com/PHPOffice/PhpSpreadsheet/issues/2405) [PR #2409](https://github.com/PHPOffice/PhpSpreadsheet/pull/2409) +- Improve PDF support for page size and orientation [Issue #1691](https://github.com/PHPOffice/PhpSpreadsheet/issues/1691) [PR #2410](https://github.com/PHPOffice/PhpSpreadsheet/pull/2410) +- Wildcard handling issues in text match [Issue #2430](https://github.com/PHPOffice/PhpSpreadsheet/issues/2430) [PR #2431](https://github.com/PHPOffice/PhpSpreadsheet/pull/2431) +- Respect DataType in `insertNewBefore` [PR #2433](https://github.com/PHPOffice/PhpSpreadsheet/pull/2433) +- Handle rows explicitly hidden after AutoFilter [Issue #1641](https://github.com/PHPOffice/PhpSpreadsheet/issues/1641) [PR #2414](https://github.com/PHPOffice/PhpSpreadsheet/pull/2414) +- Special characters in image file name [Issue #1470](https://github.com/PHPOffice/PhpSpreadsheet/issues/1470) [Issue #2415](https://github.com/PHPOffice/PhpSpreadsheet/issues/2415) [PR #2416](https://github.com/PHPOffice/PhpSpreadsheet/pull/2416) +- Mpdf with very many styles [Issue #2432](https://github.com/PHPOffice/PhpSpreadsheet/issues/2432) [PR #2434](https://github.com/PHPOffice/PhpSpreadsheet/pull/2434) +- Name clashes between parsed and unparsed drawings [Issue #1767](https://github.com/PHPOffice/PhpSpreadsheet/issues/1767) [Issue #2396](https://github.com/PHPOffice/PhpSpreadsheet/issues/2396) [PR #2423](https://github.com/PHPOffice/PhpSpreadsheet/pull/2423) +- Fill pattern start and end colors [Issue #2441](https://github.com/PHPOffice/PhpSpreadsheet/issues/2441) [PR #2444](https://github.com/PHPOffice/PhpSpreadsheet/pull/2444) +- General style specified in wrong case [Issue #2450](https://github.com/PHPOffice/PhpSpreadsheet/issues/2450) [PR #2451](https://github.com/PHPOffice/PhpSpreadsheet/pull/2451) +- Null passed to `AutoFilter::setRange()` [Issue #2281](https://github.com/PHPOffice/PhpSpreadsheet/issues/2281) [PR #2454](https://github.com/PHPOffice/PhpSpreadsheet/pull/2454) +- Another undefined index in Xls reader (#2470) [Issue #2463](https://github.com/PHPOffice/PhpSpreadsheet/issues/2463) [PR #2470](https://github.com/PHPOffice/PhpSpreadsheet/pull/2470) +- Allow single-cell checks on conditional styles, even when the style is configured for a range of cells (#) [PR #2483](https://github.com/PHPOffice/PhpSpreadsheet/pull/2483) + +## 1.20.0 - 2021-11-23 + +### Added + +- Xlsx Writer Support for WMF Files [#2339](https://github.com/PHPOffice/PhpSpreadsheet/issues/2339) +- Use standard temporary file for internal use of HTMLPurifier [#2383](https://github.com/PHPOffice/PhpSpreadsheet/issues/2383) + +### Changed + +- Drop support for PHP 7.2, according to https://phpspreadsheet.readthedocs.io/en/latest/#php-version-support +- Use native typing for objects that were already documented as such + +### Deprecated + +- Nothing + +### Removed + +- Nothing + +### Fixed + +- Fixed null conversation for strToUpper [#2292](https://github.com/PHPOffice/PhpSpreadsheet/issues/2292) +- Fixed Trying to access array offset on value of type null (Xls Reader) [#2315](https://github.com/PHPOffice/PhpSpreadsheet/issues/2315) +- Don't corrupt XLSX files containing data validation [#2377](https://github.com/PHPOffice/PhpSpreadsheet/issues/2377) +- Non-fixed cells were not updated if shared formula has a fixed cell [#2354](https://github.com/PHPOffice/PhpSpreadsheet/issues/2354) +- Declare key of generic ArrayObject +- CSV reader better support for boolean values [#2374](https://github.com/PHPOffice/PhpSpreadsheet/pull/2374) +- Some ZIP file could not be read [#2376](https://github.com/PHPOffice/PhpSpreadsheet/pull/2376) +- Fix regression were hyperlinks could not be read [#2391](https://github.com/PHPOffice/PhpSpreadsheet/pull/2391) +- AutoFilter Improvements [#2393](https://github.com/PHPOffice/PhpSpreadsheet/pull/2393) +- Don't corrupt file when using chart with fill color [#589](https://github.com/PHPOffice/PhpSpreadsheet/pull/589) +- Restore imperfect array formula values in xlsx writer [#2343](https://github.com/PHPOffice/PhpSpreadsheet/pull/2343) +- Restore explicit list of changes to PHPExcel migration document [#1546](https://github.com/PHPOffice/PhpSpreadsheet/issues/1546) + +## 1.19.0 - 2021-10-31 + +### Added + +- Ability to set style on named range, and validate input to setSelectedCells [Issue #2279](https://github.com/PHPOffice/PhpSpreadsheet/issues/2279) [PR #2280](https://github.com/PHPOffice/PhpSpreadsheet/pull/2280) +- Process comments in Sylk file [Issue #2276](https://github.com/PHPOffice/PhpSpreadsheet/issues/2276) [PR #2277](https://github.com/PHPOffice/PhpSpreadsheet/pull/2277) +- Addition of Custom Properties to Ods Writer, and 32-bit-safe timestamps for Document Properties [PR #2113](https://github.com/PHPOffice/PhpSpreadsheet/pull/2113) +- Added callback to CSV reader to set user-specified defaults for various properties (especially for escape which has a poor PHP-inherited default of backslash which does not correspond with Excel) [PR #2103](https://github.com/PHPOffice/PhpSpreadsheet/pull/2103) +- Phase 1 of better namespace handling for Xlsx, resolving many open issues [PR #2173](https://github.com/PHPOffice/PhpSpreadsheet/pull/2173) [PR #2204](https://github.com/PHPOffice/PhpSpreadsheet/pull/2204) [PR #2303](https://github.com/PHPOffice/PhpSpreadsheet/pull/2303) +- Add ability to extract images if source is a URL [Issue #1997](https://github.com/PHPOffice/PhpSpreadsheet/issues/1997) [PR #2072](https://github.com/PHPOffice/PhpSpreadsheet/pull/2072) +- Support for passing flags in the Reader `load()` and Writer `save()`methods, and through the IOFactory, to set behaviours [PR #2136](https://github.com/PHPOffice/PhpSpreadsheet/pull/2136) + - See [documentation](https://phpspreadsheet.readthedocs.io/en/latest/topics/reading-and-writing-to-file/#readerwriter-flags) for details +- More flexibility in the StringValueBinder to determine what datatypes should be treated as strings [PR #2138](https://github.com/PHPOffice/PhpSpreadsheet/pull/2138) +- Helper class for conversion between css size Units of measure (`px`, `pt`, `pc`, `in`, `cm`, `mm`) [PR #2152](https://github.com/PHPOffice/PhpSpreadsheet/issues/2145) +- Allow Row height and Column Width to be set using different units of measure (`px`, `pt`, `pc`, `in`, `cm`, `mm`), rather than only in points or MS Excel column width units [PR #2152](https://github.com/PHPOffice/PhpSpreadsheet/issues/2145) +- Ability to stream to an Amazon S3 bucket [Issue #2249](https://github.com/PHPOffice/PhpSpreadsheet/issues/2249) +- Provided a Size Helper class to validate size values (pt, px, em) [PR #1694](https://github.com/PHPOffice/PhpSpreadsheet/pull/1694) + +### Changed + +- Nothing. + +### Deprecated + +- PHP 8.1 will deprecate auto_detect_line_endings. As a result of this change, Csv Reader using some release after PHP8.1 will no longer be able to handle a Csv with Mac line endings. + +### Removed + +- Nothing. + +### Fixed + +- Unexpected format in Xlsx Timestamp [Issue #2331](https://github.com/PHPOffice/PhpSpreadsheet/issues/2331) [PR #2332](https://github.com/PHPOffice/PhpSpreadsheet/pull/2332) +- Corrections for HLOOKUP [Issue #2123](https://github.com/PHPOffice/PhpSpreadsheet/issues/2123) [PR #2330](https://github.com/PHPOffice/PhpSpreadsheet/pull/2330) +- Corrections for Xlsx Read Comments [Issue #2316](https://github.com/PHPOffice/PhpSpreadsheet/issues/2316) [PR #2329](https://github.com/PHPOffice/PhpSpreadsheet/pull/2329) +- Lowercase Calibri font names [Issue #2273](https://github.com/PHPOffice/PhpSpreadsheet/issues/2273) [PR #2325](https://github.com/PHPOffice/PhpSpreadsheet/pull/2325) +- isFormula Referencing Sheet with Space in Title [Issue #2304](https://github.com/PHPOffice/PhpSpreadsheet/issues/2304) [PR #2306](https://github.com/PHPOffice/PhpSpreadsheet/pull/2306) +- Xls Reader Fatal Error due to Undefined Offset [Issue #1114](https://github.com/PHPOffice/PhpSpreadsheet/issues/1114) [PR #2308](https://github.com/PHPOffice/PhpSpreadsheet/pull/2308) +- Permit Csv Reader delimiter to be set to null [Issue #2287](https://github.com/PHPOffice/PhpSpreadsheet/issues/2287) [PR #2288](https://github.com/PHPOffice/PhpSpreadsheet/pull/2288) +- Csv Reader did not handle booleans correctly [PR #2232](https://github.com/PHPOffice/PhpSpreadsheet/pull/2232) +- Problems when deleting sheet with local defined name [Issue #2266](https://github.com/PHPOffice/PhpSpreadsheet/issues/2266) [PR #2284](https://github.com/PHPOffice/PhpSpreadsheet/pull/2284) +- Worksheet passwords were not always handled correctly [Issue #1897](https://github.com/PHPOffice/PhpSpreadsheet/issues/1897) [PR #2197](https://github.com/PHPOffice/PhpSpreadsheet/pull/2197) +- Gnumeric Reader will now distinguish between Created and Modified timestamp [PR #2133](https://github.com/PHPOffice/PhpSpreadsheet/pull/2133) +- Xls Reader will now handle MACCENTRALEUROPE with or without hyphen [Issue #549](https://github.com/PHPOffice/PhpSpreadsheet/issues/549) [PR #2213](https://github.com/PHPOffice/PhpSpreadsheet/pull/2213) +- Tweaks to input file validation [Issue #1718](https://github.com/PHPOffice/PhpSpreadsheet/issues/1718) [PR #2217](https://github.com/PHPOffice/PhpSpreadsheet/pull/2217) +- Html Reader did not handle comments correctly [Issue #2234](https://github.com/PHPOffice/PhpSpreadsheet/issues/2234) [PR #2235](https://github.com/PHPOffice/PhpSpreadsheet/pull/2235) +- Apache OpenOffice Uses Unexpected Case for General format [Issue #2239](https://github.com/PHPOffice/PhpSpreadsheet/issues/2239) [PR #2242](https://github.com/PHPOffice/PhpSpreadsheet/pull/2242) +- Problems with fraction formatting [Issue #2253](https://github.com/PHPOffice/PhpSpreadsheet/issues/2253) [PR #2254](https://github.com/PHPOffice/PhpSpreadsheet/pull/2254) +- Xlsx Reader had problems reading file with no styles.xml or empty styles.xml [Issue #2246](https://github.com/PHPOffice/PhpSpreadsheet/issues/2246) [PR #2247](https://github.com/PHPOffice/PhpSpreadsheet/pull/2247) +- Xlsx Reader did not read Data Validation flags correctly [Issue #2224](https://github.com/PHPOffice/PhpSpreadsheet/issues/2224) [PR #2225](https://github.com/PHPOffice/PhpSpreadsheet/pull/2225) +- Better handling of empty arguments in Calculation engine [PR #2143](https://github.com/PHPOffice/PhpSpreadsheet/pull/2143) +- Many fixes for Autofilter [Issue #2216](https://github.com/PHPOffice/PhpSpreadsheet/issues/2216) [PR #2141](https://github.com/PHPOffice/PhpSpreadsheet/pull/2141) [PR #2162](https://github.com/PHPOffice/PhpSpreadsheet/pull/2162) [PR #2218](https://github.com/PHPOffice/PhpSpreadsheet/pull/2218) +- Locale generator will now use Unix line endings even on Windows [Issue #2172](https://github.com/PHPOffice/PhpSpreadsheet/issues/2172) [PR #2174](https://github.com/PHPOffice/PhpSpreadsheet/pull/2174) +- Support differences in implementation of Text functions between Excel/Ods/Gnumeric [PR #2151](https://github.com/PHPOffice/PhpSpreadsheet/pull/2151) +- Fixes to places where PHP8.1 enforces new or previously unenforced restrictions [PR #2137](https://github.com/PHPOffice/PhpSpreadsheet/pull/2137) [PR #2191](https://github.com/PHPOffice/PhpSpreadsheet/pull/2191) [PR #2231](https://github.com/PHPOffice/PhpSpreadsheet/pull/2231) +- Clone for HashTable was incorrect [PR #2130](https://github.com/PHPOffice/PhpSpreadsheet/pull/2130) +- Xlsx Reader was not evaluating Document Security Lock correctly [PR #2128](https://github.com/PHPOffice/PhpSpreadsheet/pull/2128) +- Error in COUPNCD handling end of month [Issue #2116](https://github.com/PHPOffice/PhpSpreadsheet/issues/2116) [PR #2119](https://github.com/PHPOffice/PhpSpreadsheet/pull/2119) +- Xls Writer Parser did not handle concatenation operator correctly [PR #2080](https://github.com/PHPOffice/PhpSpreadsheet/pull/2080) +- Xlsx Writer did not handle boolean false correctly [Issue #2082](https://github.com/PHPOffice/PhpSpreadsheet/issues/2082) [PR #2087](https://github.com/PHPOffice/PhpSpreadsheet/pull/2087) +- SUM needs to treat invalid strings differently depending on whether they come from a cell or are used as literals [Issue #2042](https://github.com/PHPOffice/PhpSpreadsheet/issues/2042) [PR #2045](https://github.com/PHPOffice/PhpSpreadsheet/pull/2045) +- Html reader could have set illegal coordinates when dealing with embedded tables [Issue #2029](https://github.com/PHPOffice/PhpSpreadsheet/issues/2029) [PR #2032](https://github.com/PHPOffice/PhpSpreadsheet/pull/2032) +- Documentation for printing gridlines was wrong [PR #2188](https://github.com/PHPOffice/PhpSpreadsheet/pull/2188) +- Return Value Error - DatabaseAbstruct::buildQuery() return null but must be string [Issue #2158](https://github.com/PHPOffice/PhpSpreadsheet/issues/2158) [PR #2160](https://github.com/PHPOffice/PhpSpreadsheet/pull/2160) +- Xlsx reader not recognize data validations that references another sheet [Issue #1432](https://github.com/PHPOffice/PhpSpreadsheet/issues/1432) [Issue #2149](https://github.com/PHPOffice/PhpSpreadsheet/issues/2149) [PR #2150](https://github.com/PHPOffice/PhpSpreadsheet/pull/2150) [PR #2265](https://github.com/PHPOffice/PhpSpreadsheet/pull/2265) +- Don't calculate cell width for autosize columns if a cell contains a null or empty string value [Issue #2165](https://github.com/PHPOffice/PhpSpreadsheet/issues/2165) [PR #2167](https://github.com/PHPOffice/PhpSpreadsheet/pull/2167) +- Allow negative interest rate values in a number of the Financial functions (`PPMT()`, `PMT()`, `FV()`, `PV()`, `NPER()`, etc) [Issue #2163](https://github.com/PHPOffice/PhpSpreadsheet/issues/2163) [PR #2164](https://github.com/PHPOffice/PhpSpreadsheet/pull/2164) +- Xls Reader changing grey background to black in Excel template [Issue #2147](https://github.com/PHPOffice/PhpSpreadsheet/issues/2147) [PR #2156](https://github.com/PHPOffice/PhpSpreadsheet/pull/2156) +- Column width and Row height styles in the Html Reader when the value includes a unit of measure [Issue #2145](https://github.com/PHPOffice/PhpSpreadsheet/issues/2145). +- Data Validation flags not set correctly when reading XLSX files [Issue #2224](https://github.com/PHPOffice/PhpSpreadsheet/issues/2224) [PR #2225](https://github.com/PHPOffice/PhpSpreadsheet/pull/2225) +- Reading XLSX files without styles.xml throws an exception [Issue #2246](https://github.com/PHPOffice/PhpSpreadsheet/issues/2246) +- Improved performance of `Style::applyFromArray()` when applied to several cells [PR #1785](https://github.com/PHPOffice/PhpSpreadsheet/issues/1785). +- Improve XLSX parsing speed if no readFilter is applied (again) - [#772](https://github.com/PHPOffice/PhpSpreadsheet/issues/772) + +## 1.18.0 - 2021-05-31 + +### Added + +- Enhancements to CSV Reader, allowing options to be set when using `IOFactory::load()` with a callback to set delimiter, enclosure, charset etc [PR #2103](https://github.com/PHPOffice/PhpSpreadsheet/pull/2103) - See [documentation](https://github.com/PHPOffice/PhpSpreadsheet/blob/master/docs/topics/reading-and-writing-to-file.md#csv-comma-separated-values) for details. +- Implemented basic AutoFiltering for Ods Reader and Writer [PR #2053](https://github.com/PHPOffice/PhpSpreadsheet/pull/2053) +- Implemented basic AutoFiltering for Gnumeric Reader [PR #2055](https://github.com/PHPOffice/PhpSpreadsheet/pull/2055) +- Improved support for Row and Column ranges in formulae [Issue #1755](https://github.com/PHPOffice/PhpSpreadsheet/issues/1755) [PR #2028](https://github.com/PHPOffice/PhpSpreadsheet/pull/2028) +- Implemented URLENCODE() Web Function +- Implemented the CHITEST(), CHISQ.DIST() and CHISQ.INV() and equivalent Statistical functions, for both left- and right-tailed distributions. +- Support for ActiveSheet and SelectedCells in the ODS Reader and Writer [PR #1908](https://github.com/PHPOffice/PhpSpreadsheet/pull/1908) +- Support for notContainsText Conditional Style in xlsx [Issue #984](https://github.com/PHPOffice/PhpSpreadsheet/issues/984) + +### Changed + +- Use of `nb` rather than `no` as the locale code for Norsk Bokmål. + +### Deprecated + +- All Excel Function implementations in `Calculation\Database`, `Calculation\DateTime`, `Calculation\Engineering`, `Calculation\Financial`, `Calculation\Logical`, `Calculation\LookupRef`, `Calculation\MathTrig`, `Calculation\Statistical`, `Calculation\TextData` and `Calculation\Web` have been moved to dedicated classes for individual functions or groups of related functions. See the docblocks against all the deprecated methods for details of the new methods to call instead. At some point, these old classes will be deleted. + +### Removed + +- Use of `nb` rather than `no` as the locale language code for Norsk Bokmål. + +### Fixed + +- Fixed error in COUPNCD() calculation for end of month [Issue #2116](https://github.com/PHPOffice/PhpSpreadsheet/issues/2116) - [PR #2119](https://github.com/PHPOffice/PhpSpreadsheet/pull/2119) +- Resolve default values when a null argument is passed for HLOOKUP(), VLOOKUP() and ADDRESS() functions [Issue #2120](https://github.com/PHPOffice/PhpSpreadsheet/issues/2120) - [PR #2121](https://github.com/PHPOffice/PhpSpreadsheet/pull/2121) +- Fixed incorrect R1C1 to A1 subtraction formula conversion (`R[-2]C-R[2]C`) [Issue #2076](https://github.com/PHPOffice/PhpSpreadsheet/pull/2076) [PR #2086](https://github.com/PHPOffice/PhpSpreadsheet/pull/2086) +- Correctly handle absolute A1 references when converting to R1C1 format [PR #2060](https://github.com/PHPOffice/PhpSpreadsheet/pull/2060) +- Correct default fill style for conditional without a pattern defined [Issue #2035](https://github.com/PHPOffice/PhpSpreadsheet/issues/2035) [PR #2050](https://github.com/PHPOffice/PhpSpreadsheet/pull/2050) +- Fixed issue where array key check for existince before accessing arrays in Xlsx.php [PR #1970](https://github.com/PHPOffice/PhpSpreadsheet/pull/1970) +- Fixed issue with quoted strings in number format mask rendered with toFormattedString() [Issue 1972#](https://github.com/PHPOffice/PhpSpreadsheet/issues/1972) [PR #1978](https://github.com/PHPOffice/PhpSpreadsheet/pull/1978) +- Fixed issue with percentage formats in number format mask rendered with toFormattedString() [Issue 1929#](https://github.com/PHPOffice/PhpSpreadsheet/issues/1929) [PR #1928](https://github.com/PHPOffice/PhpSpreadsheet/pull/1928) +- Fixed issue with _ spacing character in number format mask corrupting output from toFormattedString() [Issue 1924#](https://github.com/PHPOffice/PhpSpreadsheet/issues/1924) [PR #1927](https://github.com/PHPOffice/PhpSpreadsheet/pull/1927) +- Fix for [Issue #1887](https://github.com/PHPOffice/PhpSpreadsheet/issues/1887) - Lose Track of Selected Cells After Save +- Fixed issue with Xlsx@listWorksheetInfo not returning any data +- Fixed invalid arguments triggering mb_substr() error in LEFT(), MID() and RIGHT() text functions [Issue #640](https://github.com/PHPOffice/PhpSpreadsheet/issues/640) +- Fix for [Issue #1916](https://github.com/PHPOffice/PhpSpreadsheet/issues/1916) - Invalid signature check for XML files +- Fix change in `Font::setSize()` behavior for PHP8 [PR #2100](https://github.com/PHPOffice/PhpSpreadsheet/pull/2100) + +## 1.17.1 - 2021-03-01 + +### Added + +- Implementation of the Excel `AVERAGEIFS()` functions as part of a restructuring of Database functions and Conditional Statistical functions. +- Support for date values and percentages in query parameters for Database functions, and the IF expressions in functions like COUNTIF() and AVERAGEIF(). [#1875](https://github.com/PHPOffice/PhpSpreadsheet/pull/1875) +- Support for booleans, and for wildcard text search in query parameters for Database functions, and the IF expressions in functions like COUNTIF() and AVERAGEIF(). [#1876](https://github.com/PHPOffice/PhpSpreadsheet/pull/1876) +- Implemented DataBar for conditional formatting in Xlsx, providing read/write and creation of (type, value, direction, fills, border, axis position, color settings) as DataBar options in Excel. [#1754](https://github.com/PHPOffice/PhpSpreadsheet/pull/1754) +- Alignment for ODS Writer [#1796](https://github.com/PHPOffice/PhpSpreadsheet/issues/1796) +- Basic implementation of the PERMUTATIONA() Statistical Function + +### Changed + +- Formula functions that previously called PHP functions directly are now processed through the Excel Functions classes; resolving issues with PHP8 stricter typing. [#1789](https://github.com/PHPOffice/PhpSpreadsheet/issues/1789) + + The following MathTrig functions are affected: + `ABS()`, `ACOS()`, `ACOSH()`, `ASIN()`, `ASINH()`, `ATAN()`, `ATANH()`, + `COS()`, `COSH()`, `DEGREES()` (rad2deg), `EXP()`, `LN()` (log), `LOG10()`, + `RADIANS()` (deg2rad), `SIN()`, `SINH()`, `SQRT()`, `TAN()`, `TANH()`. + + One TextData function is also affected: `REPT()` (str_repeat). +- `formatAsDate` correctly matches language metadata, reverting c55272e +- Formulae that previously crashed on sub function call returning excel error value now return said value. + The following functions are affected `CUMPRINC()`, `CUMIPMT()`, `AMORLINC()`, + `AMORDEGRC()`. +- Adapt some function error return value to match excel's error. + The following functions are affected `PPMT()`, `IPMT()`. + +### Deprecated + +- Calling many of the Excel formula functions directly rather than through the Calculation Engine. + + The logic for these Functions is now being moved out of the categorised `Database`, `DateTime`, `Engineering`, `Financial`, `Logical`, `LookupRef`, `MathTrig`, `Statistical`, `TextData` and `Web` classes into small, dedicated classes for individual functions or related groups of functions. + + This makes the logic in these classes easier to maintain; and will reduce the memory footprint required to execute formulae when calling these functions. + +### Removed + +- Nothing. + +### Fixed + +- Avoid Duplicate Titles When Reading Multiple HTML Files.[Issue #1823](https://github.com/PHPOffice/PhpSpreadsheet/issues/1823) [PR #1829](https://github.com/PHPOffice/PhpSpreadsheet/pull/1829) +- Fixed issue with Worksheet's `getCell()` method when trying to get a cell by defined name. [#1858](https://github.com/PHPOffice/PhpSpreadsheet/issues/1858) +- Fix possible endless loop in NumberFormat Masks [#1792](https://github.com/PHPOffice/PhpSpreadsheet/issues/1792) +- Fix problem resulting from literal dot inside quotes in number format masks [PR #1830](https://github.com/PHPOffice/PhpSpreadsheet/pull/1830) +- Resolve Google Sheets Xlsx charts issue. Google Sheets uses oneCellAnchor positioning and does not include *Cache values in the exported Xlsx [PR #1761](https://github.com/PHPOffice/PhpSpreadsheet/pull/1761) +- Fix for Xlsx Chart axis titles mapping to correct X or Y axis label when only one is present [PR #1760](https://github.com/PHPOffice/PhpSpreadsheet/pull/1760) +- Fix For Null Exception on ODS Read of Page Settings. [#1772](https://github.com/PHPOffice/PhpSpreadsheet/issues/1772) +- Fix Xlsx reader overriding manually set number format with builtin number format [PR #1805](https://github.com/PHPOffice/PhpSpreadsheet/pull/1805) +- Fix Xlsx reader cell alignment [PR #1710](https://github.com/PHPOffice/PhpSpreadsheet/pull/1710) +- Fix for not yet implemented data-types in Open Document writer [Issue #1674](https://github.com/PHPOffice/PhpSpreadsheet/issues/1674) +- Fix XLSX reader when having a corrupt numeric cell data type [PR #1664](https://github.com/phpoffice/phpspreadsheet/pull/1664) +- Fix on `CUMPRINC()`, `CUMIPMT()`, `AMORLINC()`, `AMORDEGRC()` usage. When those functions called one of `YEARFRAC()`, `PPMT()`, `IPMT()` and they would get back an error value (represented as a string), trying to use numeral operands (`+`, `/`, `-`, `*`) on said return value and a number (`float or `int`) would fail. + +## 1.16.0 - 2020-12-31 + +### Added + +- CSV Reader - Best Guess for Encoding, and Handle Null-string Escape [#1647](https://github.com/PHPOffice/PhpSpreadsheet/issues/1647) + +### Changed + +- Updated the CONVERT() function to support all current MS Excel categories and Units of Measure. + +### Deprecated + +- All Excel Function implementations in `Calculation\Database`, `Calculation\DateTime`, `Calculation\Engineering`, `Calculation\Financial`, `Calculation\Logical`, `Calculation\LookupRef`, `Calculation\MathTrig`, `Calculation\Statistical`, `Calculation\TextData` and `Calculation\Web` have been moved to dedicated classes for individual functions or groups of related functions. See the docblocks against all the deprecated methods for details of the new methods to call instead. At some point, these old classes will be deleted. + +### Removed + +- Nothing. + +### Fixed + +- Fixed issue with absolute path in worksheets' Target [PR #1769](https://github.com/PHPOffice/PhpSpreadsheet/pull/1769) +- Fix for Xls Reader when SST has a bad length [#1592](https://github.com/PHPOffice/PhpSpreadsheet/issues/1592) +- Resolve Xlsx loader issue whe hyperlinks don't have a destination +- Resolve issues when printer settings resources IDs clash with drawing IDs +- Resolve issue with SLK long filenames [#1612](https://github.com/PHPOffice/PhpSpreadsheet/issues/1612) +- ROUNDUP and ROUNDDOWN return incorrect results for values of 0 [#1627](https://github.com/phpoffice/phpspreadsheet/pull/1627) +- Apply Column and Row Styles to Existing Cells [#1712](https://github.com/PHPOffice/PhpSpreadsheet/issues/1712) [PR #1721](https://github.com/PHPOffice/PhpSpreadsheet/pull/1721) +- Resolve issues with defined names where worksheet doesn't exist (#1686)[https://github.com/PHPOffice/PhpSpreadsheet/issues/1686] and [#1723](https://github.com/PHPOffice/PhpSpreadsheet/issues/1723) - [PR #1742](https://github.com/PHPOffice/PhpSpreadsheet/pull/1742) +- Fix for issue [#1735](https://github.com/PHPOffice/PhpSpreadsheet/issues/1735) Incorrect activeSheetIndex after RemoveSheetByIndex - [PR #1743](https://github.com/PHPOffice/PhpSpreadsheet/pull/1743) +- Ensure that the list of shared formulae is maintained when an xlsx file is chunked with readFilter[Issue #169](https://github.com/PHPOffice/PhpSpreadsheet/issues/1669). +- Fix for notice during accessing "cached magnification factor" offset [#1354](https://github.com/PHPOffice/PhpSpreadsheet/pull/1354) +- Fix compatibility with ext-gd on php 8 + +### Security Fix (CVE-2020-7776) + +- Prevent XSS through cell comments in the HTML Writer. + +## 1.15.0 - 2020-10-11 + +### Added + +- Implemented Page Order for Xlsx and Xls Readers, and provided Page Settings (Orientation, Scale, Horizontal/Vertical Centering, Page Order, Margins) support for Ods, Gnumeric and Xls Readers [#1559](https://github.com/PHPOffice/PhpSpreadsheet/pull/1559) +- Implementation of the Excel `LOGNORM.DIST()`, `NORM.S.DIST()`, `GAMMA()` and `GAUSS()` functions. [#1588](https://github.com/PHPOffice/PhpSpreadsheet/pull/1588) +- Named formula implementation, and improved handling of Defined Names generally [#1535](https://github.com/PHPOffice/PhpSpreadsheet/pull/1535) + - Defined Names are now case-insensitive + - Distinction between named ranges and named formulae + - Correct handling of union and intersection operators in named ranges + - Correct evaluation of named range operators in calculations + - fix resolution of relative named range values in the calculation engine; previously all named range values had been treated as absolute. + - Calculation support for named formulae + - Support for nested ranges and formulae (named ranges and formulae that reference other named ranges/formulae) in calculations + - Introduction of a helper to convert address formats between R1C1 and A1 (and the reverse) + - Proper support for both named ranges and named formulae in all appropriate Readers + - **Xlsx** (Previously only simple named ranges were supported) + - **Xls** (Previously only simple named ranges were supported) + - **Gnumeric** (Previously neither named ranges nor formulae were supported) + - **Ods** (Previously neither named ranges nor formulae were supported) + - **Xml** (Previously neither named ranges nor formulae were supported) + - Proper support for named ranges and named formulae in all appropriate Writers + - **Xlsx** (Previously only simple named ranges were supported) + - **Xls** (Previously neither named ranges nor formulae were supported) - Still not supported, but some parser issues resolved that previously failed to differentiate between a defined name and a function name + - **Ods** (Previously neither named ranges nor formulae were supported) +- Support for PHP 8.0 + +### Changed + +- Improve Coverage for ODS Reader [#1545](https://github.com/phpoffice/phpspreadsheet/pull/1545) +- Named formula implementation, and improved handling of Defined Names generally [#1535](https://github.com/PHPOffice/PhpSpreadsheet/pull/1535) +- fix resolution of relative named range values in the calculation engine; previously all named range values had been treated as absolute. +- Drop $this->spreadSheet null check from Xlsx Writer [#1646](https://github.com/phpoffice/phpspreadsheet/pull/1646) +- Improving Coverage for Excel2003 XML Reader [#1557](https://github.com/phpoffice/phpspreadsheet/pull/1557) + +### Deprecated + +- **IMPORTANT NOTE:** This Introduces a **BC break** in the handling of named ranges. Previously, a named range cell reference of `B2` would be treated identically to a named range cell reference of `$B2` or `B$2` or `$B$2` because the calculation engine treated then all as absolute references. These changes "fix" that, so the calculation engine now handles relative references in named ranges correctly. + This change that resolves previously incorrect behaviour in the calculation may affect users who have dynamically defined named ranges using relative references when they should have used absolute references. + +### Removed + +- Nothing. + +### Fixed + +- PrintArea causes exception [#1544](https://github.com/phpoffice/phpspreadsheet/pull/1544) +- Calculation/DateTime Failure With PHP8 [#1661](https://github.com/phpoffice/phpspreadsheet/pull/1661) +- Reader/Gnumeric Failure with PHP8 [#1662](https://github.com/phpoffice/phpspreadsheet/pull/1662) +- ReverseSort bug, exposed but not caused by PHP8 [#1660](https://github.com/phpoffice/phpspreadsheet/pull/1660) +- Bug setting Superscript/Subscript to false [#1567](https://github.com/phpoffice/phpspreadsheet/pull/1567) + +## 1.14.1 - 2020-07-19 + +### Added + +- nothing + +### Fixed + +- WEBSERVICE is HTTP client agnostic and must be configured via `Settings::setHttpClient()` [#1562](https://github.com/PHPOffice/PhpSpreadsheet/issues/1562) +- Borders were not complete on rowspanned columns using HTML reader [#1473](https://github.com/PHPOffice/PhpSpreadsheet/pull/1473) + +### Changed + +## 1.14.0 - 2020-06-29 + +### Added + +- Add support for IFS() logical function [#1442](https://github.com/PHPOffice/PhpSpreadsheet/pull/1442) +- Add Cell Address Helper to provide conversions between the R1C1 and A1 address formats [#1558](https://github.com/PHPOffice/PhpSpreadsheet/pull/1558) +- Add ability to edit Html/Pdf before saving [#1499](https://github.com/PHPOffice/PhpSpreadsheet/pull/1499) +- Add ability to set codepage explicitly for BIFF5 [#1018](https://github.com/PHPOffice/PhpSpreadsheet/issues/1018) +- Added support for the WEBSERVICE function [#1409](https://github.com/PHPOffice/PhpSpreadsheet/pull/1409) + +### Fixed + +- Resolve evaluation of utf-8 named ranges in calculation engine [#1522](https://github.com/PHPOffice/PhpSpreadsheet/pull/1522) +- Fix HLOOKUP on single row [#1512](https://github.com/PHPOffice/PhpSpreadsheet/pull/1512) +- Fix MATCH when comparing different numeric types [#1521](https://github.com/PHPOffice/PhpSpreadsheet/pull/1521) +- Fix exact MATCH on ranges with empty cells [#1520](https://github.com/PHPOffice/PhpSpreadsheet/pull/1520) +- Fix for Issue [#1516](https://github.com/PHPOffice/PhpSpreadsheet/issues/1516) (Cloning worksheet makes corrupted Xlsx) [#1530](https://github.com/PHPOffice/PhpSpreadsheet/pull/1530) +- Fix For Issue [#1509](https://github.com/PHPOffice/PhpSpreadsheet/issues/1509) (Can not set empty enclosure for CSV) [#1518](https://github.com/PHPOffice/PhpSpreadsheet/pull/1518) +- Fix for Issue [#1505](https://github.com/PHPOffice/PhpSpreadsheet/issues/1505) (TypeError : Argument 4 passed to PhpOffice\PhpSpreadsheet\Writer\Xlsx\Worksheet::writeAttributeIf() must be of the type string) [#1525](https://github.com/PHPOffice/PhpSpreadsheet/pull/1525) +- Fix for Issue [#1495](https://github.com/PHPOffice/PhpSpreadsheet/issues/1495) (Sheet index being changed when multiple sheets are used in formula) [#1500]((https://github.com/PHPOffice/PhpSpreadsheet/pull/1500)) +- Fix for Issue [#1533](https://github.com/PHPOffice/PhpSpreadsheet/issues/1533) (A reference to a cell containing a string starting with "#" leads to errors in the generated xlsx.) [#1534](https://github.com/PHPOffice/PhpSpreadsheet/pull/1534) +- Xls Writer - Correct Timestamp Bug [#1493](https://github.com/PHPOffice/PhpSpreadsheet/pull/1493) +- Don't ouput row and columns without any cells in HTML writer [#1235](https://github.com/PHPOffice/PhpSpreadsheet/issues/1235) + +## 1.13.0 - 2020-05-31 + +### Added + +- Support writing to streams in all writers [#1292](https://github.com/PHPOffice/PhpSpreadsheet/issues/1292) +- Support CSV files with data wrapping a lot of lines [#1468](https://github.com/PHPOffice/PhpSpreadsheet/pull/1468) +- Support protection of worksheet by a specific hash algorithm [#1485](https://github.com/PHPOffice/PhpSpreadsheet/pull/1485) + +### Fixed + +- Fix Chart samples by updating chart parameter from 0 to DataSeries::EMPTY_AS_GAP [#1448](https://github.com/PHPOffice/PhpSpreadsheet/pull/1448) +- Fix return type in docblock for the Cells::get() [#1398](https://github.com/PHPOffice/PhpSpreadsheet/pull/1398) +- Fix RATE, PRICE, XIRR, and XNPV Functions [#1456](https://github.com/PHPOffice/PhpSpreadsheet/pull/1456) +- Save Excel 2010+ functions properly in XLSX [#1461](https://github.com/PHPOffice/PhpSpreadsheet/pull/1461) +- Several improvements in HTML writer [#1464](https://github.com/PHPOffice/PhpSpreadsheet/pull/1464) +- Fix incorrect behaviour when saving XLSX file with drawings [#1462](https://github.com/PHPOffice/PhpSpreadsheet/pull/1462), +- Fix Crash while trying setting a cell the value "123456\n" [#1476](https://github.com/PHPOffice/PhpSpreadsheet/pull/1481) +- Improved DATEDIF() function and reduced errors for Y and YM units [#1466](https://github.com/PHPOffice/PhpSpreadsheet/pull/1466) +- Stricter typing for mergeCells [#1494](https://github.com/PHPOffice/PhpSpreadsheet/pull/1494) + +### Changed + +- Drop support for PHP 7.1, according to https://phpspreadsheet.readthedocs.io/en/latest/#php-version-support +- Drop partial migration tool in favor of complete migration via RectorPHP [#1445](https://github.com/PHPOffice/PhpSpreadsheet/issues/1445) +- Limit composer package to `src/` [#1424](https://github.com/PHPOffice/PhpSpreadsheet/pull/1424) + +## 1.12.0 - 2020-04-27 + +### Added + +- Improved the ARABIC function to also handle short-hand roman numerals +- Added support for the FLOOR.MATH and FLOOR.PRECISE functions [#1351](https://github.com/PHPOffice/PhpSpreadsheet/pull/1351) + +### Fixed + +- Fix ROUNDUP and ROUNDDOWN for floating-point rounding error [#1404](https://github.com/PHPOffice/PhpSpreadsheet/pull/1404) +- Fix ROUNDUP and ROUNDDOWN for negative number [#1417](https://github.com/PHPOffice/PhpSpreadsheet/pull/1417) +- Fix loading styles from vmlDrawings when containing whitespace [#1347](https://github.com/PHPOffice/PhpSpreadsheet/issues/1347) +- Fix incorrect behavior when removing last row [#1365](https://github.com/PHPOffice/PhpSpreadsheet/pull/1365) +- MATCH with a static array should return the position of the found value based on the values submitted [#1332](https://github.com/PHPOffice/PhpSpreadsheet/pull/1332) +- Fix Xlsx Reader's handling of undefined fill color [#1353](https://github.com/PHPOffice/PhpSpreadsheet/pull/1353) + +## 1.11.0 - 2020-03-02 + +### Added + +- Added support for the BASE function +- Added support for the ARABIC function +- Conditionals - Extend Support for (NOT)CONTAINSBLANKS [#1278](https://github.com/PHPOffice/PhpSpreadsheet/pull/1278) + +### Fixed + +- Handle Error in Formula Processing Better for Xls [#1267](https://github.com/PHPOffice/PhpSpreadsheet/pull/1267) +- Handle ConditionalStyle NumberFormat When Reading Xlsx File [#1296](https://github.com/PHPOffice/PhpSpreadsheet/pull/1296) +- Fix Xlsx Writer's handling of decimal commas [#1282](https://github.com/PHPOffice/PhpSpreadsheet/pull/1282) +- Fix for issue by removing test code mistakenly left in [#1328](https://github.com/PHPOffice/PhpSpreadsheet/pull/1328) +- Fix for Xls writer wrong selected cells and active sheet [#1256](https://github.com/PHPOffice/PhpSpreadsheet/pull/1256) +- Fix active cell when freeze pane is used [#1323](https://github.com/PHPOffice/PhpSpreadsheet/pull/1323) +- Fix XLSX file loading with autofilter containing '$' [#1326](https://github.com/PHPOffice/PhpSpreadsheet/pull/1326) +- PHPDoc - Use `@return $this` for fluent methods [#1362](https://github.com/PHPOffice/PhpSpreadsheet/pull/1362) + +## 1.10.1 - 2019-12-02 + +### Changed + +- PHP 7.4 compatibility + +### Fixed + +- FLOOR() function accept negative number and negative significance [#1245](https://github.com/PHPOffice/PhpSpreadsheet/pull/1245) +- Correct column style even when using rowspan [#1249](https://github.com/PHPOffice/PhpSpreadsheet/pull/1249) +- Do not confuse defined names and cell refs [#1263](https://github.com/PHPOffice/PhpSpreadsheet/pull/1263) +- XLSX reader/writer keep decimal for floats with a zero decimal part [#1262](https://github.com/PHPOffice/PhpSpreadsheet/pull/1262) +- ODS writer prevent invalid numeric value if locale decimal separator is comma [#1268](https://github.com/PHPOffice/PhpSpreadsheet/pull/1268) +- Xlsx writer actually writes plotVisOnly and dispBlanksAs from chart properties [#1266](https://github.com/PHPOffice/PhpSpreadsheet/pull/1266) + +## 1.10.0 - 2019-11-18 + +### Changed + +- Change license from LGPL 2.1 to MIT [#140](https://github.com/PHPOffice/PhpSpreadsheet/issues/140) + +### Added + +- Implementation of IFNA() logical function +- Support "showZeros" worksheet option to change how Excel shows and handles "null" values returned from a calculation +- Allow HTML Reader to accept HTML as a string into an existing spreadsheet [#1212](https://github.com/PHPOffice/PhpSpreadsheet/pull/1212) + +### Fixed + +- IF implementation properly handles the value `#N/A` [#1165](https://github.com/PHPOffice/PhpSpreadsheet/pull/1165) +- Formula Parser: Wrong line count for stuff like "MyOtherSheet!A:D" [#1215](https://github.com/PHPOffice/PhpSpreadsheet/issues/1215) +- Call garbage collector after removing a column to prevent stale cached values +- Trying to remove a column that doesn't exist deletes the latest column +- Keep big integer as integer instead of lossely casting to float [#874](https://github.com/PHPOffice/PhpSpreadsheet/pull/874) +- Fix branch pruning handling of non boolean conditions [#1167](https://github.com/PHPOffice/PhpSpreadsheet/pull/1167) +- Fix ODS Reader when no DC namespace are defined [#1182](https://github.com/PHPOffice/PhpSpreadsheet/pull/1182) +- Fixed Functions->ifCondition for allowing <> and empty condition [#1206](https://github.com/PHPOffice/PhpSpreadsheet/pull/1206) +- Validate XIRR inputs and return correct error values [#1120](https://github.com/PHPOffice/PhpSpreadsheet/issues/1120) +- Allow to read xlsx files with exotic workbook names like "workbook2.xml" [#1183](https://github.com/PHPOffice/PhpSpreadsheet/pull/1183) + +## 1.9.0 - 2019-08-17 + +### Changed + +- Drop support for PHP 5.6 and 7.0, according to https://phpspreadsheet.readthedocs.io/en/latest/#php-version-support + +### Added + +- When &lt;br&gt; appears in a table cell, set the cell to wrap [#1071](https://github.com/PHPOffice/PhpSpreadsheet/issues/1071) and [#1070](https://github.com/PHPOffice/PhpSpreadsheet/pull/1070) +- Add MAXIFS, MINIFS, COUNTIFS and Remove MINIF, MAXIF [#1056](https://github.com/PHPOffice/PhpSpreadsheet/issues/1056) +- HLookup needs an ordered list even if range_lookup is set to false [#1055](https://github.com/PHPOffice/PhpSpreadsheet/issues/1055) and [#1076](https://github.com/PHPOffice/PhpSpreadsheet/pull/1076) +- Improve performance of IF function calls via ranch pruning to avoid resolution of every branches [#844](https://github.com/PHPOffice/PhpSpreadsheet/pull/844) +- MATCH function supports `*?~` Excel functionality, when match_type=0 [#1116](https://github.com/PHPOffice/PhpSpreadsheet/issues/1116) +- Allow HTML Reader to accept HTML as a string [#1136](https://github.com/PHPOffice/PhpSpreadsheet/pull/1136) + +### Fixed + +- Fix to AVERAGEIF() function when called with a third argument +- Eliminate duplicate fill none style entries [#1066](https://github.com/PHPOffice/PhpSpreadsheet/issues/1066) +- Fix number format masks containing literal (non-decimal point) dots [#1079](https://github.com/PHPOffice/PhpSpreadsheet/issues/1079) +- Fix number format masks containing named colours that were being misinterpreted as date formats; and add support for masks that fully replace the value with a full text string [#1009](https://github.com/PHPOffice/PhpSpreadsheet/issues/1009) +- Stricter-typed comparison testing in COUNTIF() and COUNTIFS() evaluation [#1046](https://github.com/PHPOffice/PhpSpreadsheet/issues/1046) +- COUPNUM should not return zero when settlement is in the last period [#1020](https://github.com/PHPOffice/PhpSpreadsheet/issues/1020) and [#1021](https://github.com/PHPOffice/PhpSpreadsheet/pull/1021) +- Fix handling of named ranges referencing sheets with spaces or "!" in their title +- Cover `getSheetByName()` with tests for name with quote and spaces [#739](https://github.com/PHPOffice/PhpSpreadsheet/issues/739) +- Best effort to support invalid colspan values in HTML reader - [#878](https://github.com/PHPOffice/PhpSpreadsheet/pull/878) +- Fixes incorrect rows deletion [#868](https://github.com/PHPOffice/PhpSpreadsheet/issues/868) +- MATCH function fix (value search by type, stop search when match_type=-1 and unordered element encountered) [#1116](https://github.com/PHPOffice/PhpSpreadsheet/issues/1116) +- Fix `getCalculatedValue()` error with more than two INDIRECT [#1115](https://github.com/PHPOffice/PhpSpreadsheet/pull/1115) +- Writer\Html did not hide columns [#985](https://github.com/PHPOffice/PhpSpreadsheet/pull/985) + +## 1.8.2 - 2019-07-08 + +### Fixed + +- Uncaught error when opening ods file and properties aren't defined [#1047](https://github.com/PHPOffice/PhpSpreadsheet/issues/1047) +- Xlsx Reader Cell datavalidations bug [#1052](https://github.com/PHPOffice/PhpSpreadsheet/pull/1052) + +## 1.8.1 - 2019-07-02 + +### Fixed + +- Allow nullable theme for Xlsx Style Reader class [#1043](https://github.com/PHPOffice/PhpSpreadsheet/issues/1043) + +## 1.8.0 - 2019-07-01 + +### Security Fix (CVE-2019-12331) + +- Detect double-encoded xml in the Security scanner, and reject as suspicious. +- This change also broadens the scope of the `libxml_disable_entity_loader` setting when reading XML-based formats, so that it is enabled while the xml is being parsed and not simply while it is loaded. + On some versions of PHP, this can cause problems because it is not thread-safe, and can affect other PHP scripts running on the same server. This flag is set to true when instantiating a loader, and back to its original setting when the Reader is no longer in scope, or manually unset. +- Provide a check to identify whether libxml_disable_entity_loader is thread-safe or not. + + `XmlScanner::threadSafeLibxmlDisableEntityLoaderAvailability()` +- Provide an option to disable the libxml_disable_entity_loader call through settings. This is not recommended as it reduces the security of the XML-based readers, and should only be used if you understand the consequences and have no other choice. + +### Added + +- Added support for the SWITCH function [#963](https://github.com/PHPOffice/PhpSpreadsheet/issues/963) and [#983](https://github.com/PHPOffice/PhpSpreadsheet/pull/983) +- Add accounting number format style [#974](https://github.com/PHPOffice/PhpSpreadsheet/pull/974) + +### Fixed + +- Whitelist `tsv` extension when opening CSV files [#429](https://github.com/PHPOffice/PhpSpreadsheet/issues/429) +- Fix a SUMIF warning with some versions of PHP when having different length of arrays provided as input [#873](https://github.com/PHPOffice/PhpSpreadsheet/pull/873) +- Fix incorrectly handled backslash-escaped space characters in number format + +## 1.7.0 - 2019-05-26 + +- Added support for inline styles in Html reader (borders, alignment, width, height) +- QuotedText cells no longer treated as formulae if the content begins with a `=` +- Clean handling for DDE in formulae + +### Fixed + +- Fix handling for escaped enclosures and new lines in CSV Separator Inference +- Fix MATCH an error was appearing when comparing strings against 0 (always true) +- Fix wrong calculation of highest column with specified row [#700](https://github.com/PHPOffice/PhpSpreadsheet/issues/700) +- Fix VLOOKUP +- Fix return type hint + +## 1.6.0 - 2019-01-02 + +### Added + +- Refactored Matrix Functions to use external Matrix library +- Possibility to specify custom colors of values for pie and donut charts [#768](https://github.com/PHPOffice/PhpSpreadsheet/pull/768) + +### Fixed + +- Improve XLSX parsing speed if no readFilter is applied [#772](https://github.com/PHPOffice/PhpSpreadsheet/issues/772) +- Fix column names if read filter calls in XLSX reader skip columns [#777](https://github.com/PHPOffice/PhpSpreadsheet/pull/777) +- XLSX reader can now ignore blank cells, using the setReadEmptyCells(false) method. [#810](https://github.com/PHPOffice/PhpSpreadsheet/issues/810) +- Fix LOOKUP function which was breaking on edge cases [#796](https://github.com/PHPOffice/PhpSpreadsheet/issues/796) +- Fix VLOOKUP with exact matches [#809](https://github.com/PHPOffice/PhpSpreadsheet/pull/809) +- Support COUNTIFS multiple arguments [#830](https://github.com/PHPOffice/PhpSpreadsheet/pull/830) +- Change `libxml_disable_entity_loader()` as shortly as possible [#819](https://github.com/PHPOffice/PhpSpreadsheet/pull/819) +- Improved memory usage and performance when loading large spreadsheets [#822](https://github.com/PHPOffice/PhpSpreadsheet/pull/822) +- Improved performance when loading large spreadsheets [#825](https://github.com/PHPOffice/PhpSpreadsheet/pull/825) +- Improved performance when loading large spreadsheets [#824](https://github.com/PHPOffice/PhpSpreadsheet/pull/824) +- Fix color from CSS when reading from HTML [#831](https://github.com/PHPOffice/PhpSpreadsheet/pull/831) +- Fix infinite loop when reading invalid ODS files [#832](https://github.com/PHPOffice/PhpSpreadsheet/pull/832) +- Fix time format for duration is incorrect [#666](https://github.com/PHPOffice/PhpSpreadsheet/pull/666) +- Fix iconv unsupported `//IGNORE//TRANSLIT` on IBM i [#791](https://github.com/PHPOffice/PhpSpreadsheet/issues/791) + +### Changed + +- `master` is the new default branch, `develop` does not exist anymore + +## 1.5.2 - 2018-11-25 + +### Security + +- Improvements to the design of the XML Security Scanner [#771](https://github.com/PHPOffice/PhpSpreadsheet/issues/771) + +## 1.5.1 - 2018-11-20 + +### Security + +- Fix and improve XXE security scanning for XML-based and HTML Readers [#771](https://github.com/PHPOffice/PhpSpreadsheet/issues/771) + +### Added + +- Support page margin in mPDF [#750](https://github.com/PHPOffice/PhpSpreadsheet/issues/750) + +### Fixed + +- Support numeric condition in SUMIF, SUMIFS, AVERAGEIF, COUNTIF, MAXIF and MINIF [#683](https://github.com/PHPOffice/PhpSpreadsheet/issues/683) +- SUMIFS containing multiple conditions [#704](https://github.com/PHPOffice/PhpSpreadsheet/issues/704) +- Csv reader avoid notice when the file is empty [#743](https://github.com/PHPOffice/PhpSpreadsheet/pull/743) +- Fix print area parser for XLSX reader [#734](https://github.com/PHPOffice/PhpSpreadsheet/pull/734) +- Support overriding `DefaultValueBinder::dataTypeForValue()` without overriding `DefaultValueBinder::bindValue()` [#735](https://github.com/PHPOffice/PhpSpreadsheet/pull/735) +- Mpdf export can exceed pcre.backtrack_limit [#637](https://github.com/PHPOffice/PhpSpreadsheet/issues/637) +- Fix index overflow on data values array [#748](https://github.com/PHPOffice/PhpSpreadsheet/pull/748) + +## 1.5.0 - 2018-10-21 + +### Added + +- PHP 7.3 support +- Add the DAYS() function [#594](https://github.com/PHPOffice/PhpSpreadsheet/pull/594) + +### Fixed + +- Sheet title can contain exclamation mark [#325](https://github.com/PHPOffice/PhpSpreadsheet/issues/325) +- Xls file cause the exception during open by Xls reader [#402](https://github.com/PHPOffice/PhpSpreadsheet/issues/402) +- Skip non numeric value in SUMIF [#618](https://github.com/PHPOffice/PhpSpreadsheet/pull/618) +- OFFSET should allow omitted height and width [#561](https://github.com/PHPOffice/PhpSpreadsheet/issues/561) +- Correctly determine delimiter when CSV contains line breaks inside enclosures [#716](https://github.com/PHPOffice/PhpSpreadsheet/issues/716) + +## 1.4.1 - 2018-09-30 + +### Fixed + +- Remove locale from formatting string [#644](https://github.com/PHPOffice/PhpSpreadsheet/pull/644) +- Allow iterators to go out of bounds with prev [#587](https://github.com/PHPOffice/PhpSpreadsheet/issues/587) +- Fix warning when reading xlsx without styles [#631](https://github.com/PHPOffice/PhpSpreadsheet/pull/631) +- Fix broken sample links on windows due to $baseDir having backslash [#653](https://github.com/PHPOffice/PhpSpreadsheet/pull/653) + +## 1.4.0 - 2018-08-06 + +### Added + +- Add excel function EXACT(value1, value2) support [#595](https://github.com/PHPOffice/PhpSpreadsheet/pull/595) +- Support workbook view attributes for Xlsx format [#523](https://github.com/PHPOffice/PhpSpreadsheet/issues/523) +- Read and write hyperlink for drawing image [#490](https://github.com/PHPOffice/PhpSpreadsheet/pull/490) +- Added calculation engine support for the new bitwise functions that were added in MS Excel 2013 + - BITAND() Returns a Bitwise 'And' of two numbers + - BITOR() Returns a Bitwise 'Or' of two number + - BITXOR() Returns a Bitwise 'Exclusive Or' of two numbers + - BITLSHIFT() Returns a number shifted left by a specified number of bits + - BITRSHIFT() Returns a number shifted right by a specified number of bits +- Added calculation engine support for other new functions that were added in MS Excel 2013 and MS Excel 2016 + - Text Functions + - CONCAT() Synonym for CONCATENATE() + - NUMBERVALUE() Converts text to a number, in a locale-independent way + - UNICHAR() Synonym for CHAR() in PHPSpreadsheet, which has always used UTF-8 internally + - UNIORD() Synonym for ORD() in PHPSpreadsheet, which has always used UTF-8 internally + - TEXTJOIN() Joins together two or more text strings, separated by a delimiter + - Logical Functions + - XOR() Returns a logical Exclusive Or of all arguments + - Date/Time Functions + - ISOWEEKNUM() Returns the ISO 8601 week number of the year for a given date + - Lookup and Reference Functions + - FORMULATEXT() Returns a formula as a string + - Financial Functions + - PDURATION() Calculates the number of periods required for an investment to reach a specified value + - RRI() Calculates the interest rate required for an investment to grow to a specified future value + - Engineering Functions + - ERF.PRECISE() Returns the error function integrated between 0 and a supplied limit + - ERFC.PRECISE() Synonym for ERFC + - Math and Trig Functions + - SEC() Returns the secant of an angle + - SECH() Returns the hyperbolic secant of an angle + - CSC() Returns the cosecant of an angle + - CSCH() Returns the hyperbolic cosecant of an angle + - COT() Returns the cotangent of an angle + - COTH() Returns the hyperbolic cotangent of an angle + - ACOT() Returns the cotangent of an angle + - ACOTH() Returns the hyperbolic cotangent of an angle +- Refactored Complex Engineering Functions to use external complex number library +- Added calculation engine support for the new complex number functions that were added in MS Excel 2013 + - IMCOSH() Returns the hyperbolic cosine of a complex number + - IMCOT() Returns the cotangent of a complex number + - IMCSC() Returns the cosecant of a complex number + - IMCSCH() Returns the hyperbolic cosecant of a complex number + - IMSEC() Returns the secant of a complex number + - IMSECH() Returns the hyperbolic secant of a complex number + - IMSINH() Returns the hyperbolic sine of a complex number + - IMTAN() Returns the tangent of a complex number + +### Fixed + +- Fix ISFORMULA() function to work with a cell reference to another worksheet +- Xlsx reader crashed when reading a file with workbook protection [#553](https://github.com/PHPOffice/PhpSpreadsheet/pull/553) +- Cell formats with escaped spaces were causing incorrect date formatting [#557](https://github.com/PHPOffice/PhpSpreadsheet/issues/557) +- Could not open CSV file containing HTML fragment [#564](https://github.com/PHPOffice/PhpSpreadsheet/issues/564) +- Exclude the vendor folder in migration [#481](https://github.com/PHPOffice/PhpSpreadsheet/issues/481) +- Chained operations on cell ranges involving borders operated on last cell only [#428](https://github.com/PHPOffice/PhpSpreadsheet/issues/428) +- Avoid memory exhaustion when cloning worksheet with a drawing [#437](https://github.com/PHPOffice/PhpSpreadsheet/issues/437) +- Migration tool keep variables containing $PHPExcel untouched [#598](https://github.com/PHPOffice/PhpSpreadsheet/issues/598) +- Rowspans/colspans were incorrect when adding worksheet using loadIntoExisting [#619](https://github.com/PHPOffice/PhpSpreadsheet/issues/619) + +## 1.3.1 - 2018-06-12 + +### Fixed + +- Ranges across Z and AA columns incorrectly threw an exception [#545](https://github.com/PHPOffice/PhpSpreadsheet/issues/545) + +## 1.3.0 - 2018-06-10 + +### Added + +- Support to read Xlsm templates with form elements, macros, printer settings, protected elements and back compatibility drawing, and save result without losing important elements of document [#435](https://github.com/PHPOffice/PhpSpreadsheet/issues/435) +- Expose sheet title maximum length as `Worksheet::SHEET_TITLE_MAXIMUM_LENGTH` [#482](https://github.com/PHPOffice/PhpSpreadsheet/issues/482) +- Allow escape character to be set in CSV reader [#492](https://github.com/PHPOffice/PhpSpreadsheet/issues/492) + +### Fixed + +- Subtotal 9 in a group that has other subtotals 9 exclude the totals of the other subtotals in the range [#332](https://github.com/PHPOffice/PhpSpreadsheet/issues/332) +- `Helper\Html` support UTF-8 HTML input [#444](https://github.com/PHPOffice/PhpSpreadsheet/issues/444) +- Xlsx loaded an extra empty comment for each real comment [#375](https://github.com/PHPOffice/PhpSpreadsheet/issues/375) +- Xlsx reader do not read rows and columns filtered out in readFilter at all [#370](https://github.com/PHPOffice/PhpSpreadsheet/issues/370) +- Make newer Excel versions properly recalculate formulas on document open [#456](https://github.com/PHPOffice/PhpSpreadsheet/issues/456) +- `Coordinate::extractAllCellReferencesInRange()` throws an exception for an invalid range [#519](https://github.com/PHPOffice/PhpSpreadsheet/issues/519) +- Fixed parsing of conditionals in COUNTIF functions [#526](https://github.com/PHPOffice/PhpSpreadsheet/issues/526) +- Corruption errors for saved Xlsx docs with frozen panes [#532](https://github.com/PHPOffice/PhpSpreadsheet/issues/532) + +## 1.2.1 - 2018-04-10 + +### Fixed + +- Plain text and richtext mixed in same cell can be read [#442](https://github.com/PHPOffice/PhpSpreadsheet/issues/442) + +## 1.2.0 - 2018-03-04 + +### Added + +- HTML writer creates a generator meta tag [#312](https://github.com/PHPOffice/PhpSpreadsheet/issues/312) +- Support invalid zoom value in XLSX format [#350](https://github.com/PHPOffice/PhpSpreadsheet/pull/350) +- Support for `_xlfn.` prefixed functions and `ISFORMULA`, `MODE.SNGL`, `STDEV.S`, `STDEV.P` [#390](https://github.com/PHPOffice/PhpSpreadsheet/pull/390) + +### Fixed + +- Avoid potentially unsupported PSR-16 cache keys [#354](https://github.com/PHPOffice/PhpSpreadsheet/issues/354) +- Check for MIME type to know if CSV reader can read a file [#167](https://github.com/PHPOffice/PhpSpreadsheet/issues/167) +- Use proper € symbol for currency format [#379](https://github.com/PHPOffice/PhpSpreadsheet/pull/379) +- Read printing area correctly when skipping some sheets [#371](https://github.com/PHPOffice/PhpSpreadsheet/issues/371) +- Avoid incorrectly overwriting calculated value type [#394](https://github.com/PHPOffice/PhpSpreadsheet/issues/394) +- Select correct cell when calling freezePane [#389](https://github.com/PHPOffice/PhpSpreadsheet/issues/389) +- `setStrikethrough()` did not set the font [#403](https://github.com/PHPOffice/PhpSpreadsheet/issues/403) + +## 1.1.0 - 2018-01-28 + +### Added + +- Support for PHP 7.2 +- Support cell comments in HTML writer and reader [#308](https://github.com/PHPOffice/PhpSpreadsheet/issues/308) +- Option to stop at a conditional styling, if it matches (only XLSX format) [#292](https://github.com/PHPOffice/PhpSpreadsheet/pull/292) +- Support for line width for data series when rendering Xlsx [#329](https://github.com/PHPOffice/PhpSpreadsheet/pull/329) + +### Fixed + +- Better auto-detection of CSV separators [#305](https://github.com/PHPOffice/PhpSpreadsheet/issues/305) +- Support for shape style ending with `;` [#304](https://github.com/PHPOffice/PhpSpreadsheet/issues/304) +- Freeze Panes takes wrong coordinates for XLSX [#322](https://github.com/PHPOffice/PhpSpreadsheet/issues/322) +- `COLUMNS` and `ROWS` functions crashed in some cases [#336](https://github.com/PHPOffice/PhpSpreadsheet/issues/336) +- Support XML file without styles [#331](https://github.com/PHPOffice/PhpSpreadsheet/pull/331) +- Cell coordinates which are already a range cause an exception [#319](https://github.com/PHPOffice/PhpSpreadsheet/issues/319) + +## 1.0.0 - 2017-12-25 + +### Added + +- Support to write merged cells in ODS format [#287](https://github.com/PHPOffice/PhpSpreadsheet/issues/287) +- Able to set the `topLeftCell` in freeze panes [#261](https://github.com/PHPOffice/PhpSpreadsheet/pull/261) +- Support `DateTimeImmutable` as cell value +- Support migration of prefixed classes + +### Fixed + +- Can read very small HTML files [#194](https://github.com/PHPOffice/PhpSpreadsheet/issues/194) +- Written DataValidation was corrupted [#290](https://github.com/PHPOffice/PhpSpreadsheet/issues/290) +- Date format compatible with both LibreOffice and Excel [#298](https://github.com/PHPOffice/PhpSpreadsheet/issues/298) + +### BREAKING CHANGE + +- Constant `TYPE_DOUGHTNUTCHART` is now `TYPE_DOUGHNUTCHART`. + +## 1.0.0-beta2 - 2017-11-26 + +### Added + +- Support for chart fill color - @CrazyBite [#158](https://github.com/PHPOffice/PhpSpreadsheet/pull/158) +- Support for read Hyperlink for xml - @GreatHumorist [#223](https://github.com/PHPOffice/PhpSpreadsheet/pull/223) +- Support for cell value validation according to data validation rules - @SailorMax [#257](https://github.com/PHPOffice/PhpSpreadsheet/pull/257) +- Support for custom implementation, or configuration, of PDF libraries - @SailorMax [#266](https://github.com/PHPOffice/PhpSpreadsheet/pull/266) + +### Changed + +- Merge data-validations to reduce written worksheet size - @billblume [#131](https://github.com/PHPOffice/PhpSpreadSheet/issues/131) +- Throws exception if a XML file is invalid - @GreatHumorist [#222](https://github.com/PHPOffice/PhpSpreadsheet/pull/222) +- Upgrade to mPDF 7.0+ [#144](https://github.com/PHPOffice/PhpSpreadsheet/issues/144) + +### Fixed + +- Control characters in cell values are automatically escaped [#212](https://github.com/PHPOffice/PhpSpreadsheet/issues/212) +- Prevent color changing when copy/pasting xls files written by PhpSpreadsheet to another file - @al-lala [#218](https://github.com/PHPOffice/PhpSpreadsheet/issues/218) +- Add cell reference automatic when there is no cell reference('r' attribute) in Xlsx file. - @GreatHumorist [#225](https://github.com/PHPOffice/PhpSpreadsheet/pull/225) Refer to [#201](https://github.com/PHPOffice/PhpSpreadsheet/issues/201) +- `Reader\Xlsx::getFromZipArchive()` function return false if the zip entry could not be located. - @anton-harvey [#268](https://github.com/PHPOffice/PhpSpreadsheet/pull/268) + +### BREAKING CHANGE + +- Extracted coordinate method to dedicate class [migration guide](./docs/topics/migration-from-PHPExcel.md). +- Column indexes are based on 1, see the [migration guide](./docs/topics/migration-from-PHPExcel.md). +- Standardization of array keys used for style, see the [migration guide](./docs/topics/migration-from-PHPExcel.md). +- Easier usage of PDF writers, and other custom readers and writers, see the [migration guide](./docs/topics/migration-from-PHPExcel.md). +- Easier usage of chart renderers, see the [migration guide](./docs/topics/migration-from-PHPExcel.md). +- Rename a few more classes to keep them in their related namespaces: + - `CalcEngine` => `Calculation\Engine` + - `PhpSpreadsheet\Calculation` => `PhpSpreadsheet\Calculation\Calculation` + - `PhpSpreadsheet\Cell` => `PhpSpreadsheet\Cell\Cell` + - `PhpSpreadsheet\Chart` => `PhpSpreadsheet\Chart\Chart` + - `PhpSpreadsheet\RichText` => `PhpSpreadsheet\RichText\RichText` + - `PhpSpreadsheet\Style` => `PhpSpreadsheet\Style\Style` + - `PhpSpreadsheet\Worksheet` => `PhpSpreadsheet\Worksheet\Worksheet` + +## 1.0.0-beta - 2017-08-17 + +### Added + +- Initial implementation of SUMIFS() function +- Additional codepages +- MemoryDrawing not working in HTML writer [#808](https://github.com/PHPOffice/PHPExcel/issues/808) +- CSV Reader can auto-detect the separator used in file [#141](https://github.com/PHPOffice/PhpSpreadsheet/pull/141) +- HTML Reader supports some basic inline styles [#180](https://github.com/PHPOffice/PhpSpreadsheet/pull/180) + +### Changed + +- Start following [SemVer](https://semver.org) properly. + +### Fixed + +- Fix to getCell() method when cell reference includes a worksheet reference - @MarkBaker +- Ignore inlineStr type if formula element exists - @ncrypthic [#570](https://github.com/PHPOffice/PHPExcel/issues/570) +- Excel 2007 Reader freezes because of conditional formatting - @rentalhost [#575](https://github.com/PHPOffice/PHPExcel/issues/575) +- Readers will now parse files containing worksheet titles over 31 characters [#176](https://github.com/PHPOffice/PhpSpreadsheet/pull/176) +- Fixed PHP8 deprecation warning for libxml_disable_entity_loader() [#1625](https://github.com/phpoffice/phpspreadsheet/pull/1625) + +### General + +- Whitespace after toRichTextObject() - @MarkBaker [#554](https://github.com/PHPOffice/PHPExcel/issues/554) +- Optimize vlookup() sort - @umpirsky [#548](https://github.com/PHPOffice/PHPExcel/issues/548) +- c:max and c:min elements shall NOT be inside c:orientation elements - @vitalyrepin [#869](https://github.com/PHPOffice/PHPExcel/pull/869) +- Implement actual timezone adjustment into PHPExcel_Shared_Date::PHPToExcel - @sim642 [#489](https://github.com/PHPOffice/PHPExcel/pull/489) + +### BREAKING CHANGE + +- Introduction of namespaces for all classes, eg: `PHPExcel_Calculation_Functions` becomes `PhpOffice\PhpSpreadsheet\Calculation\Functions` +- Some classes were renamed for clarity and/or consistency: + +For a comprehensive list of all class changes, and a semi-automated migration path, read the [migration guide](./docs/topics/migration-from-PHPExcel.md). + +- Dropped `PHPExcel_Calculation_Functions::VERSION()`. Composer or git should be used to know the version. +- Dropped `PHPExcel_Settings::setPdfRenderer()` and `PHPExcel_Settings::setPdfRenderer()`. Composer should be used to autoload PDF libs. +- Dropped support for HHVM + +## Previous versions of PHPExcel + +The changelog for the project when it was called PHPExcel is [still available](./CHANGELOG.PHPExcel.md). diff --git a/src/vendor/phpoffice/phpspreadsheet/CONTRIBUTING.md b/src/vendor/phpoffice/phpspreadsheet/CONTRIBUTING.md new file mode 100644 index 0000000..f595353 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/CONTRIBUTING.md @@ -0,0 +1,20 @@ +# Want to contribute? + +If you would like to contribute, here are some notes and guidelines: + + - All new development happens on feature/fix branches, and are then merged to the `master` branch once stable; so the `master` branch is always the most up-to-date, working code + - Tagged releases are made from the `master` branch + - If you are going to be submitting a pull request, please fork from `master`, and submit your pull request back as a fix/feature branch referencing the GitHub issue number + - Code style might be automatically fixed by `composer fix` + - All code changes must be validated by `composer check` + - [Helpful article about forking](https://help.github.com/articles/fork-a-repo/ "Forking a GitHub repository") + - [Helpful article about pull requests](https://help.github.com/articles/using-pull-requests/ "Pull Requests") + +## How to release + +1. Complete CHANGELOG.md and commit +2. Create an annotated tag + 1. `git tag -a 1.2.3` + 2. Tag subject must be the version number, eg: `1.2.3` + 3. Tag body must be a copy-paste of the changelog entries +3. Push tag with `git push --tags`, GitHub Actions will create a GitHub release automatically diff --git a/src/vendor/phpoffice/phpspreadsheet/LICENSE b/src/vendor/phpoffice/phpspreadsheet/LICENSE new file mode 100644 index 0000000..3ec5723 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 PhpSpreadsheet Authors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/vendor/phpoffice/phpspreadsheet/README.md b/src/vendor/phpoffice/phpspreadsheet/README.md new file mode 100644 index 0000000..5756070 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/README.md @@ -0,0 +1,100 @@ +# PhpSpreadsheet + +[![Build Status](https://github.com/PHPOffice/PhpSpreadsheet/workflows/main/badge.svg)](https://github.com/PHPOffice/PhpSpreadsheet/actions) +[![Code Quality](https://scrutinizer-ci.com/g/PHPOffice/PhpSpreadsheet/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/PHPOffice/PhpSpreadsheet/?branch=master) +[![Code Coverage](https://scrutinizer-ci.com/g/PHPOffice/PhpSpreadsheet/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/PHPOffice/PhpSpreadsheet/?branch=master) +[![Total Downloads](https://img.shields.io/packagist/dt/PHPOffice/PhpSpreadsheet)](https://packagist.org/packages/phpoffice/phpspreadsheet) +[![Latest Stable Version](https://img.shields.io/github/v/release/PHPOffice/PhpSpreadsheet)](https://packagist.org/packages/phpoffice/phpspreadsheet) +[![License](https://img.shields.io/github/license/PHPOffice/PhpSpreadsheet)](https://packagist.org/packages/phpoffice/phpspreadsheet) +[![Join the chat at https://gitter.im/PHPOffice/PhpSpreadsheet](https://img.shields.io/badge/GITTER-join%20chat-green.svg)](https://gitter.im/PHPOffice/PhpSpreadsheet) + +PhpSpreadsheet is a library written in pure PHP and offers a set of classes that +allow you to read and write various spreadsheet file formats such as Excel and LibreOffice Calc. + +## PHP version support + +LTS: Support for PHP versions will only be maintained for a period of six months beyond the +[end of life of that PHP version](https://www.php.net/eol.php). + +Currently the required PHP minimum version is PHP __7.3__. + +See the `composer.json` for other requirements. + +## Installation + +Use [composer](https://getcomposer.org) to install PhpSpreadsheet into your project: + +```sh +composer require phpoffice/phpspreadsheet +``` + +If you are building your installation on a development machine that is on a different PHP version to the server where it will be deployed, or if your PHP CLI version is not the same as your run-time such as `php-fpm` or Apache's `mod_php`, then you might want to add the following to your `composer.json` before installing: +```json lines +{ + "require": { + "phpoffice/phpspreadsheet": "^1.23" + }, + "config": { + "platform": { + "php": "7.3" + } + } +} +``` +and then run +```sh +composer install +``` +to ensure that the correct dependencies are retrieved to match your deployment environment. + +See [CLI vs Application run-time](https://php.watch/articles/composer-platform-check) for more details. + +### Additional Installation Options + +If you want to write to PDF, or to include Charts when you write to HTML or PDF, then you will need to install additional libraries: + +#### PDF + +For PDF Generation, you can install any of the following, and then configure PhpSpreadsheet to indicate which library you are going to use: + - mpdf/mpdf + - dompdf/dompdf + - tecnickcom/tcpdf + +and configure PhpSpreadsheet using: + +```php +// Dompdf, Mpdf or Tcpdf (as appropriate) +$className = \PhpOffice\PhpSpreadsheet\Writer\Pdf\Dompdf::class; +IOFactory::registerWriter('Pdf', $className); +``` +or the appropriate PDF Writer wrapper for the library that you have chosen to install. + +#### Chart Export + +For Chart export, we support, which you will also need to install yourself + - jpgraph/jpgraph + +and then configure PhpSpreadsheet using: +```php +Settings::setChartRenderer(\PhpOffice\PhpSpreadsheet\Chart\Renderer\JpGraph::class); +``` + +You can `composer/require` the github version of jpgraph, but this was abandoned at version 4.0; or manually download the latest version that supports PHP 8 and above from [jpgraph.net](https://jpgraph.net/) + +## Documentation + +Read more about it, including install instructions, in the [official documentation](https://phpspreadsheet.readthedocs.io). Or check out the [API documentation](https://phpoffice.github.io/PhpSpreadsheet). + +Please ask your support questions on [StackOverflow](https://stackoverflow.com/questions/tagged/phpspreadsheet), or have a quick chat on [Gitter](https://gitter.im/PHPOffice/PhpSpreadsheet). + +## PHPExcel vs PhpSpreadsheet ? + +PhpSpreadsheet is the next version of PHPExcel. It breaks compatibility to dramatically improve the code base quality (namespaces, PSR compliance, use of latest PHP language features, etc.). + +Because all efforts have shifted to PhpSpreadsheet, PHPExcel will no longer be maintained. All contributions for PHPExcel, patches and new features, should target PhpSpreadsheet `master` branch. + +Do you need to migrate? There is [an automated tool](/docs/topics/migration-from-PHPExcel.md) for that. + +## License + +PhpSpreadsheet is licensed under [MIT](https://github.com/PHPOffice/PhpSpreadsheet/blob/master/LICENSE). diff --git a/src/vendor/phpoffice/phpspreadsheet/composer.json b/src/vendor/phpoffice/phpspreadsheet/composer.json new file mode 100644 index 0000000..1699151 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/composer.json @@ -0,0 +1,110 @@ +{ + "name": "phpoffice/phpspreadsheet", + "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine", + "keywords": [ + "PHP", + "OpenXML", + "Excel", + "xlsx", + "xls", + "ods", + "gnumeric", + "spreadsheet" + ], + "config": { + "sort-packages": true, + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + } + }, + "homepage": "https://github.com/PHPOffice/PhpSpreadsheet", + "type": "library", + "license": "MIT", + "authors": [ + { + "name": "Maarten Balliauw", + "homepage": "https://blog.maartenballiauw.be" + }, + { + "name": "Mark Baker", + "homepage": "https://markbakeruk.net" + }, + { + "name": "Franck Lefevre", + "homepage": "https://rootslabs.net" + }, + { + "name": "Erik Tilt" + }, + { + "name": "Adrien Crivelli" + } + ], + "scripts": { + "check": [ + "php-cs-fixer fix --ansi --dry-run --diff", + "phpcs", + "phpunit --color=always", + "phpstan analyse --ansi" + ], + "fix": [ + "php-cs-fixer fix --ansi" + ], + "versions": [ + "phpcs --report-width=200 samples/ src/ tests/ --ignore=samples/Header.php --standard=PHPCompatibility --runtime-set testVersion 7.3- -n" + ] + }, + "require": { + "php": "^7.3 || ^8.0", + "ext-ctype": "*", + "ext-dom": "*", + "ext-fileinfo": "*", + "ext-gd": "*", + "ext-iconv": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-simplexml": "*", + "ext-xml": "*", + "ext-xmlreader": "*", + "ext-xmlwriter": "*", + "ext-zip": "*", + "ext-zlib": "*", + "ezyang/htmlpurifier": "^4.13", + "maennchen/zipstream-php": "^2.1", + "markbaker/complex": "^3.0", + "markbaker/matrix": "^3.0", + "psr/http-client": "^1.0", + "psr/http-factory": "^1.0", + "psr/simple-cache": "^1.0 || ^2.0" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "dev-master", + "dompdf/dompdf": "^1.0 || ^2.0", + "friendsofphp/php-cs-fixer": "^3.2", + "jpgraph/jpgraph": "^4.0", + "mpdf/mpdf": "8.1.1", + "phpcompatibility/php-compatibility": "^9.3", + "phpstan/phpstan": "^1.1", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^8.5 || ^9.0", + "squizlabs/php_codesniffer": "^3.7", + "tecnickcom/tcpdf": "^6.4" + }, + "suggest": { + "mpdf/mpdf": "Option for rendering PDF with PDF Writer", + "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)", + "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)", + "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers" + }, + "autoload": { + "psr-4": { + "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet" + } + }, + "autoload-dev": { + "psr-4": { + "PhpOffice\\PhpSpreadsheetTests\\": "tests/PhpSpreadsheetTests", + "PhpOffice\\PhpSpreadsheetInfra\\": "infra" + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/phpstan-baseline.neon b/src/vendor/phpoffice/phpspreadsheet/phpstan-baseline.neon new file mode 100644 index 0000000..5ef5522 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/phpstan-baseline.neon @@ -0,0 +1,4157 @@ +parameters: + ignoreErrors: + - + message: "#^Argument of an invalid type array\\<int, string\\>\\|false supplied for foreach, only iterables are supported\\.$#" + count: 3 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Cannot call method attach\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Cell\\\\Cell\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Cannot call method cellExists\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\|null\\.$#" + count: 4 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Cannot call method getCell\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\|null\\.$#" + count: 6 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Cannot call method getHighestColumn\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Cannot call method getHighestRow\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:_translateFormulaToEnglish\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:_translateFormulaToEnglish\\(\\) has parameter \\$formula with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:_translateFormulaToLocale\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:_translateFormulaToLocale\\(\\) has parameter \\$formula with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:dataTestReference\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:dataTestReference\\(\\) has parameter \\$operandData with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:getTokensAsString\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:getTokensAsString\\(\\) has parameter \\$tokens with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:localeFunc\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:localeFunc\\(\\) has parameter \\$function with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:validateBinaryOperand\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:validateBinaryOperand\\(\\) has parameter \\$operand with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:validateBinaryOperand\\(\\) has parameter \\$stack with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Offset 'value' does not exist on array\\|null\\.$#" + count: 5 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Parameter \\#1 \\$haystack of function stripos expects string, float\\|int\\|string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Parameter \\#1 \\$haystack of function strpos expects string, float\\|int\\|string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Parameter \\#1 \\$str of function preg_quote expects string, int\\|string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Parameter \\#2 \\$worksheet of static method PhpOffice\\\\PhpSpreadsheet\\\\DefinedName\\:\\:resolveName\\(\\) expects PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet, PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$cellStack has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$comparisonOperators has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$controlFunctions has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$cyclicFormulaCell has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$functionReplaceFromExcel has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$functionReplaceFromLocale has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$functionReplaceToExcel has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$functionReplaceToLocale has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$localeFunctions has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$operatorAssociativity has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$operatorPrecedence has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$phpSpreadsheetFunctions has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$returnArrayAsType has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$spreadsheet \\(PhpOffice\\\\PhpSpreadsheet\\\\Spreadsheet\\) does not accept PhpOffice\\\\PhpSpreadsheet\\\\Spreadsheet\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Static property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$instance \\(PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Strict comparison using \\=\\=\\= between array and '\\(' will always evaluate to false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Strict comparison using \\=\\=\\= between non\\-empty\\-array and null will always evaluate to false\\.$#" + count: 2 + path: src/PhpSpreadsheet/Calculation/Calculation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Database\\:\\:DMAX\\(\\) should return float but returns float\\|string\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Database.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Database\\:\\:DMIN\\(\\) should return float but returns float\\|string\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Database.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Database\\:\\:DPRODUCT\\(\\) should return float\\|string but returns float\\|string\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Database.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Database\\:\\:DSTDEV\\(\\) should return float\\|string but returns float\\|string\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Database.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Database\\:\\:DSTDEVP\\(\\) should return float\\|string but returns float\\|string\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Database.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Database\\:\\:DSUM\\(\\) should return float\\|string but returns float\\|string\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Database.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Database\\:\\:DVAR\\(\\) should return float\\|string but returns float\\|string\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Database.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Database\\:\\:DVARP\\(\\) should return float\\|string but returns float\\|string\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Database.php + + - + message: "#^Parameter \\#2 \\$field of static method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Database\\\\DCountA\\:\\:evaluate\\(\\) expects int\\|string, int\\|string\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Database.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Database\\\\DatabaseAbstract\\:\\:buildCondition\\(\\) has parameter \\$criterion with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Database/DatabaseAbstract.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Database\\\\DatabaseAbstract\\:\\:evaluate\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Database/DatabaseAbstract.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Database\\\\DatabaseAbstract\\:\\:evaluate\\(\\) has parameter \\$criteria with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Database/DatabaseAbstract.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Database\\\\DatabaseAbstract\\:\\:evaluate\\(\\) has parameter \\$database with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Database/DatabaseAbstract.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Database\\\\DatabaseAbstract\\:\\:evaluate\\(\\) has parameter \\$field with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Database/DatabaseAbstract.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Database\\\\DatabaseAbstract\\:\\:processCondition\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Database/DatabaseAbstract.php + + - + message: "#^Variable \\$dateValue on left side of \\?\\? always exists and is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/DateTimeExcel/DateValue.php + + - + message: "#^Variable \\$timeValue on left side of \\?\\? always exists and is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/DateTimeExcel/TimeValue.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Engineering\\\\BesselJ\\:\\:besselj2a\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Engineering/BesselJ.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Engineering\\\\BesselJ\\:\\:besselj2b\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Engineering/BesselJ.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Engineering\\\\ConvertBase\\:\\:validatePlaces\\(\\) has parameter \\$places with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Engineering/ConvertBase.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Engineering\\\\ConvertBase\\:\\:validateValue\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Engineering/ConvertBase.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Engineering\\\\ConvertUOM\\:\\:getUOMDetails\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Engineering/ConvertUOM.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Engineering\\\\ConvertUOM\\:\\:resolveTemperatureSynonyms\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Engineering/ConvertUOM.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Engineering\\\\Erf\\:\\:erfValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Engineering/Erf.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Engineering\\\\Erf\\:\\:erfValue\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Engineering/Erf.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Engineering\\\\Erf\\:\\:\\$twoSqrtPi has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Engineering/Erf.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Engineering\\\\ErfC\\:\\:erfcValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Engineering/ErfC.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Engineering\\\\ErfC\\:\\:erfcValue\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Engineering/ErfC.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Engineering\\\\ErfC\\:\\:\\$oneSqrtPi has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Engineering/ErfC.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\:\\:ISPMT\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\:\\:ISPMT\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\:\\:NPV\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial.php + + - + message: "#^Parameter \\#1 \\$year of static method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\DateTimeExcel\\\\Helpers\\:\\:isLeapYear\\(\\) expects int\\|string, array\\|int\\|string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/Amortization.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\CashFlow\\\\Constant\\\\Periodic\\\\Interest\\:\\:rateNextGuess\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Interest.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\CashFlow\\\\Constant\\\\Periodic\\\\Interest\\:\\:rateNextGuess\\(\\) has parameter \\$futureValue with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Interest.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\CashFlow\\\\Constant\\\\Periodic\\\\Interest\\:\\:rateNextGuess\\(\\) has parameter \\$numberOfPeriods with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Interest.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\CashFlow\\\\Constant\\\\Periodic\\\\Interest\\:\\:rateNextGuess\\(\\) has parameter \\$payment with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Interest.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\CashFlow\\\\Constant\\\\Periodic\\\\Interest\\:\\:rateNextGuess\\(\\) has parameter \\$presentValue with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Interest.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\CashFlow\\\\Constant\\\\Periodic\\\\Interest\\:\\:rateNextGuess\\(\\) has parameter \\$rate with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Interest.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\CashFlow\\\\Constant\\\\Periodic\\\\Interest\\:\\:rateNextGuess\\(\\) has parameter \\$type with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Interest.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\CashFlow\\\\Constant\\\\Periodic\\\\Interest\\:\\:schedulePayment\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Interest.php + + - + message: "#^Binary operation \"\\-\" between float\\|string and 0\\|float results in an error\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/InterestAndPrincipal.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\CashFlow\\\\Constant\\\\Periodic\\\\InterestAndPrincipal\\:\\:\\$interest has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/InterestAndPrincipal.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\CashFlow\\\\Constant\\\\Periodic\\\\InterestAndPrincipal\\:\\:\\$principal has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/InterestAndPrincipal.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\CashFlow\\\\Variable\\\\NonPeriodic\\:\\:xnpvOrdered\\(\\) should return float\\|string but returns array\\|string\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/CashFlow/Variable/NonPeriodic.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\CashFlow\\\\Variable\\\\Periodic\\:\\:presentValue\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/CashFlow/Variable/Periodic.php + + - + message: "#^Parameter \\#1 \\$year of static method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\Helpers\\:\\:daysPerYear\\(\\) expects int\\|string, array\\|int\\|string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/Coupons.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\Depreciation\\:\\:validateCost\\(\\) has parameter \\$cost with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/Depreciation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\Depreciation\\:\\:validateFactor\\(\\) has parameter \\$factor with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/Depreciation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\Depreciation\\:\\:validateLife\\(\\) has parameter \\$life with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/Depreciation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\Depreciation\\:\\:validateMonth\\(\\) has parameter \\$month with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/Depreciation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\Depreciation\\:\\:validatePeriod\\(\\) has parameter \\$period with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/Depreciation.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\Depreciation\\:\\:validateSalvage\\(\\) has parameter \\$salvage with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/Depreciation.php + + - + message: "#^Binary operation \"/\" between float\\|string and float\\|string results in an error\\.$#" + count: 2 + path: src/PhpSpreadsheet/Calculation/Financial/Securities/Price.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\Securities\\\\Price\\:\\:received\\(\\) should return float\\|string but returns array\\|string\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/Securities/Price.php + + - + message: "#^Parameter \\#1 \\$year of static method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\Helpers\\:\\:daysPerYear\\(\\) expects int\\|string, array\\|int\\|string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Financial/Securities/Price.php + + - + message: "#^Parameter \\#1 \\$year of static method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Financial\\\\Helpers\\:\\:daysPerYear\\(\\) expects int\\|string, array\\|int\\|string given\\.$#" + count: 2 + path: src/PhpSpreadsheet/Calculation/Financial/Securities/Yields.php + + - + message: "#^Cannot call method getTokenSubType\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\FormulaToken\\|null\\.$#" + count: 4 + path: src/PhpSpreadsheet/Calculation/FormulaParser.php + + - + message: "#^Cannot call method getTokenType\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\FormulaToken\\|null\\.$#" + count: 9 + path: src/PhpSpreadsheet/Calculation/FormulaParser.php + + - + message: "#^Cannot call method setTokenSubType\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\FormulaToken\\|null\\.$#" + count: 5 + path: src/PhpSpreadsheet/Calculation/FormulaParser.php + + - + message: "#^Cannot call method setValue\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\FormulaToken\\|null\\.$#" + count: 5 + path: src/PhpSpreadsheet/Calculation/FormulaParser.php + + - + message: "#^Strict comparison using \\=\\=\\= between PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\FormulaToken and null will always evaluate to false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/FormulaParser.php + + - + message: "#^Strict comparison using \\=\\=\\= between string and null will always evaluate to false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/FormulaParser.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Functions\\:\\:ifCondition\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Functions.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Functions\\:\\:ifCondition\\(\\) has parameter \\$condition with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Functions.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Functions\\:\\:isCellValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Functions.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Functions\\:\\:isCellValue\\(\\) has parameter \\$idx with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Functions.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Functions\\:\\:isMatrixValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Functions.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Functions\\:\\:isMatrixValue\\(\\) has parameter \\$idx with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Functions.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Functions\\:\\:isValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Functions.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Functions\\:\\:isValue\\(\\) has parameter \\$idx with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Functions.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Functions\\:\\:operandSpecialHandling\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Functions.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Functions\\:\\:operandSpecialHandling\\(\\) has parameter \\$operand with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Functions.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Internal\\\\MakeMatrix\\:\\:make\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Internal/MakeMatrix.php + + - + message: "#^Call to function is_string\\(\\) with null will always evaluate to false\\.$#" + count: 3 + path: src/PhpSpreadsheet/Calculation/Logical/Operations.php + + - + message: "#^Result of && is always false\\.$#" + count: 3 + path: src/PhpSpreadsheet/Calculation/Logical/Operations.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\:\\:CHOOSE\\(\\) has parameter \\$chooseArgs with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\:\\:OFFSET\\(\\) should return array\\|string but returns array\\|int\\|string\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\Address\\:\\:sheetName\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/Address.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\ExcelMatch\\:\\:matchFirstValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\ExcelMatch\\:\\:matchFirstValue\\(\\) has parameter \\$lookupArray with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\ExcelMatch\\:\\:matchFirstValue\\(\\) has parameter \\$lookupValue with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\ExcelMatch\\:\\:matchLargestValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\ExcelMatch\\:\\:matchLargestValue\\(\\) has parameter \\$keySet with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\ExcelMatch\\:\\:matchLargestValue\\(\\) has parameter \\$lookupArray with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\ExcelMatch\\:\\:matchLargestValue\\(\\) has parameter \\$lookupValue with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\ExcelMatch\\:\\:matchSmallestValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\ExcelMatch\\:\\:matchSmallestValue\\(\\) has parameter \\$lookupArray with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\ExcelMatch\\:\\:matchSmallestValue\\(\\) has parameter \\$lookupValue with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\ExcelMatch\\:\\:prepareLookupArray\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\ExcelMatch\\:\\:prepareLookupArray\\(\\) has parameter \\$lookupArray with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\ExcelMatch\\:\\:prepareLookupArray\\(\\) has parameter \\$matchType with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\ExcelMatch\\:\\:validateLookupArray\\(\\) has parameter \\$lookupArray with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\ExcelMatch\\:\\:validateLookupValue\\(\\) has parameter \\$lookupValue with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\ExcelMatch\\:\\:validateMatchType\\(\\) has parameter \\$matchType with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\Lookup\\:\\:verifyResultVector\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/Lookup.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\Lookup\\:\\:verifyResultVector\\(\\) has parameter \\$resultVector with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/Lookup.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\LookupBase\\:\\:validateIndexLookup\\(\\) has parameter \\$index_number with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/LookupBase.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\Matrix\\:\\:extractRowValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/Matrix.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\Offset\\:\\:adjustEndCellColumnForWidth\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/Offset.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\Offset\\:\\:adjustEndCellColumnForWidth\\(\\) has parameter \\$columns with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/Offset.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\Offset\\:\\:adjustEndCellColumnForWidth\\(\\) has parameter \\$width with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/Offset.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\Offset\\:\\:adustEndCellRowForHeight\\(\\) has parameter \\$endCellRow with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/Offset.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\Offset\\:\\:adustEndCellRowForHeight\\(\\) has parameter \\$height with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/Offset.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\Offset\\:\\:adustEndCellRowForHeight\\(\\) has parameter \\$rows with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/Offset.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\Offset\\:\\:extractRequiredCells\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/Offset.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\LookupRef\\\\Offset\\:\\:extractWorksheet\\(\\) has parameter \\$cellAddress with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/LookupRef/Offset.php + + - + message: "#^Binary operation \"/\" between array\\|float\\|int\\|string and array\\|float\\|int\\|string results in an error\\.$#" + count: 2 + path: src/PhpSpreadsheet/Calculation/MathTrig/Combinations.php + + - + message: "#^Parameter \\#1 \\$factVal of static method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\MathTrig\\\\Factorial\\:\\:fact\\(\\) expects array\\|float, int\\<min, \\-2\\>\\|int\\<0, max\\> given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/MathTrig/Combinations.php + + - + message: "#^Binary operation \"/\" between array\\|float\\|int\\|string and float\\|int results in an error\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/MathTrig/Factorial.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\MathTrig\\\\IntClass\\:\\:evaluate\\(\\) should return array\\|string but returns int\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/MathTrig/IntClass.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\:\\:MAXIFS\\(\\) should return float but returns float\\|string\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\:\\:MINIFS\\(\\) should return float but returns float\\|string\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Averages\\:\\:filterArguments\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Averages.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Averages\\:\\:filterArguments\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Averages.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Averages\\:\\:modeCalc\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Averages.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Averages\\:\\:modeCalc\\(\\) has parameter \\$data with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Averages.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Conditional\\:\\:SUMIF\\(\\) should return float\\|string but returns float\\|string\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Conditional.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Conditional\\:\\:buildConditionSet\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Conditional.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Conditional\\:\\:buildConditionSetForValueRange\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Conditional.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Conditional\\:\\:buildConditions\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Conditional.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Conditional\\:\\:buildDataSet\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Conditional.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Conditional\\:\\:buildDatabase\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Conditional.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Conditional\\:\\:buildDatabaseWithValueRange\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Conditional.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\Beta\\:\\:\\$logBetaCacheP has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/Beta.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\Beta\\:\\:\\$logBetaCacheQ has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/Beta.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\Beta\\:\\:\\$logBetaCacheResult has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/Beta.php + + - + message: "#^Constant PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\ChiSquared\\:\\:MAX_ITERATIONS is unused\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\ChiSquared\\:\\:gammp\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\ChiSquared\\:\\:gammp\\(\\) has parameter \\$n with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\ChiSquared\\:\\:gammp\\(\\) has parameter \\$x with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\ChiSquared\\:\\:gcf\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\ChiSquared\\:\\:gcf\\(\\) has parameter \\$n with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\ChiSquared\\:\\:gcf\\(\\) has parameter \\$x with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\ChiSquared\\:\\:gser\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\ChiSquared\\:\\:gser\\(\\) has parameter \\$n with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\ChiSquared\\:\\:gser\\(\\) has parameter \\$x with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\ChiSquared\\:\\:pchisq\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\ChiSquared\\:\\:pchisq\\(\\) has parameter \\$chi2 with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\ChiSquared\\:\\:pchisq\\(\\) has parameter \\$degrees with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php + + - + message: "#^Parameter \\#2 \\$columns of static method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\ChiSquared\\:\\:degrees\\(\\) expects int, float\\|int\\<0, max\\> given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\GammaBase\\:\\:calculateDistribution\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/GammaBase.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\GammaBase\\:\\:calculateInverse\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/GammaBase.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\GammaBase\\:\\:logGamma1\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/GammaBase.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\GammaBase\\:\\:logGamma2\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/GammaBase.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\GammaBase\\:\\:logGamma3\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/GammaBase.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\GammaBase\\:\\:logGamma4\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/GammaBase.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\GammaBase\\:\\:\\$logGammaCacheResult has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/GammaBase.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\GammaBase\\:\\:\\$logGammaCacheX has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/GammaBase.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\NewtonRaphson\\:\\:execute\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/NewtonRaphson.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\NewtonRaphson\\:\\:\\$callback has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/NewtonRaphson.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\Normal\\:\\:inverseNcdf\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/Normal.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\Normal\\:\\:inverseNcdf\\(\\) has parameter \\$p with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/Normal.php + + - + message: "#^Parameter \\#1 \\$factVal of static method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\MathTrig\\\\Factorial\\:\\:fact\\(\\) expects array\\|float, int\\<0, max\\> given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/Poisson.php + + - + message: "#^Binary operation \"\\-\" between float\\|string and float\\|int\\|numeric\\-string results in an error\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/StandardNormal.php + + - + message: "#^Constant PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Distributions\\\\StudentT\\:\\:MAX_ITERATIONS is unused\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Distributions/StudentT.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\MaxMinBase\\:\\:datatypeAdjustmentAllowStrings\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/MaxMinBase.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\MaxMinBase\\:\\:datatypeAdjustmentAllowStrings\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/MaxMinBase.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Percentiles\\:\\:percentileFilterValues\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Percentiles.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Percentiles\\:\\:rankFilterValues\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Percentiles.php + + - + message: "#^Binary operation \"/\" between array\\|float\\|int\\|string and array\\|float\\|int\\|string results in an error\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Permutations.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Trends\\:\\:GROWTH\\(\\) should return array\\<float\\> but returns array\\<int, array\\<int, array\\<int, mixed\\>\\>\\>\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Trends.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Trends\\:\\:TREND\\(\\) should return array\\<float\\> but returns array\\<int, array\\<int, array\\<int, mixed\\>\\>\\>\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Trends.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Trends\\:\\:checkTrendArrays\\(\\) has parameter \\$array1 with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Trends.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\Trends\\:\\:checkTrendArrays\\(\\) has parameter \\$array2 with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/Trends.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\VarianceBase\\:\\:datatypeAdjustmentAllowStrings\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/VarianceBase.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\VarianceBase\\:\\:datatypeAdjustmentAllowStrings\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/VarianceBase.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\VarianceBase\\:\\:datatypeAdjustmentBooleans\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/VarianceBase.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Statistical\\\\VarianceBase\\:\\:datatypeAdjustmentBooleans\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/Statistical/VarianceBase.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\TextData\\:\\:CONCATENATE\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/TextData.php + + - + message: "#^Variable \\$value on left side of \\?\\? always exists and is not nullable\\.$#" + count: 4 + path: src/PhpSpreadsheet/Calculation/TextData/Extract.php + + - + message: "#^Variable \\$value on left side of \\?\\? always exists and is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Calculation/TextData/Text.php + + - + message: "#^Elseif branch is unreachable because previous condition is always true\\.$#" + count: 1 + path: src/PhpSpreadsheet/Cell/Cell.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Cell\\\\Cell\\:\\:getFormulaAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Cell/Cell.php + + - + message: "#^Parameter \\#2 \\$format of static method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\NumberFormat\\:\\:toFormattedString\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Cell/Cell.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Cell\\\\Cell\\:\\:\\$formulaAttributes has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Cell/Cell.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Cell\\\\Cell\\:\\:\\$parent \\(PhpOffice\\\\PhpSpreadsheet\\\\Collection\\\\Cells\\) in isset\\(\\) is not nullable\\.$#" + count: 6 + path: src/PhpSpreadsheet/Cell/Cell.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: src/PhpSpreadsheet/Cell/Cell.php + + - + message: "#^Call to an undefined method object\\:\\:getHashCode\\(\\)\\.$#" + count: 1 + path: src/PhpSpreadsheet/Cell/Coordinate.php + + - + message: "#^Parameter \\#4 \\$currentRow of static method PhpOffice\\\\PhpSpreadsheet\\\\Cell\\\\Coordinate\\:\\:validateRange\\(\\) expects int, string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Cell/Coordinate.php + + - + message: "#^Parameter \\#5 \\$endRow of static method PhpOffice\\\\PhpSpreadsheet\\\\Cell\\\\Coordinate\\:\\:validateRange\\(\\) expects int, string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Cell/Coordinate.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Collection\\\\Memory\\:\\:\\$cache has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Collection/Memory.php + + - + message: "#^Parameter \\#1 \\$namedRange of method PhpOffice\\\\PhpSpreadsheet\\\\Spreadsheet\\:\\:addNamedRange\\(\\) expects PhpOffice\\\\PhpSpreadsheet\\\\NamedRange, \\$this\\(PhpOffice\\\\PhpSpreadsheet\\\\DefinedName\\) given\\.$#" + count: 1 + path: src/PhpSpreadsheet/DefinedName.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\DefinedName\\:\\:\\$scope \\(PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\) does not accept PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\|null\\.$#" + count: 3 + path: src/PhpSpreadsheet/DefinedName.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\DefinedName\\:\\:\\$worksheet \\(PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\) does not accept PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\|null\\.$#" + count: 2 + path: src/PhpSpreadsheet/DefinedName.php + + - + message: "#^Cannot call method setBold\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Cannot call method setColor\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Cannot call method setItalic\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Cannot call method setName\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Cannot call method setSize\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Cannot call method setStrikethrough\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Cannot call method setSubscript\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Cannot call method setSuperscript\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Cannot call method setUnderline\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Html\\:\\:startFontTag\\(\\) has parameter \\$tag with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Html\\:\\:\\$bold has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Html\\:\\:\\$color has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Html\\:\\:\\$colourMap has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Html\\:\\:\\$endTagCallbacks has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Html\\:\\:\\$face has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Html\\:\\:\\$italic has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Html\\:\\:\\$size has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Html\\:\\:\\$stack has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Html\\:\\:\\$startTagCallbacks has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Html\\:\\:\\$strikethrough has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Html\\:\\:\\$stringData has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Html\\:\\:\\$subscript has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Html\\:\\:\\$superscript has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Html\\:\\:\\$underline has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Sample\\:\\:getSamples\\(\\) should return array\\<array\\<string\\>\\> but returns array\\<string, array\\<string, array\\|string\\>\\>\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Sample.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Helper\\\\Sample\\:\\:log\\(\\) has parameter \\$message with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Sample.php + + - + message: "#^Parameter \\#1 \\$directory of class RecursiveDirectoryIterator constructor expects string, string\\|false given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Sample.php + + - + message: "#^Parameter \\#1 \\$filename of function unlink expects string, string\\|false given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Sample.php + + - + message: "#^Parameter \\#1 \\$path of function pathinfo expects string, array\\|string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Sample.php + + - + message: "#^Parameter \\#3 \\$subject of function str_replace expects array\\|string, string\\|false given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Helper/Sample.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\IOFactory\\:\\:createReader\\(\\) should return PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\IReader but returns object\\.$#" + count: 1 + path: src/PhpSpreadsheet/IOFactory.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\IOFactory\\:\\:createWriter\\(\\) should return PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\IWriter but returns object\\.$#" + count: 1 + path: src/PhpSpreadsheet/IOFactory.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\IOFactory\\:\\:\\$readers has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/IOFactory.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\IOFactory\\:\\:\\$writers has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/IOFactory.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\BaseReader\\:\\:getSecurityScanner\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/BaseReader.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\BaseReader\\:\\:\\$fileHandle has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/BaseReader.php + + - + message: "#^Comparison operation \"\\<\" between int and SimpleXMLElement\\|null results in an error\\.$#" + count: 2 + path: src/PhpSpreadsheet/Reader/Gnumeric.php + + - + message: "#^Offset 'percentage' does not exist on SimpleXMLElement\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Gnumeric/PageSetup.php + + - + message: "#^Offset 'value' does not exist on SimpleXMLElement\\|null\\.$#" + count: 2 + path: src/PhpSpreadsheet/Reader/Gnumeric/PageSetup.php + + - + message: "#^Variable \\$orientation on left side of \\?\\? always exists and is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Gnumeric/PageSetup.php + + - + message: "#^Comparison operation \"\\<\\=\" between SimpleXMLElement\\|null and int results in an error\\.$#" + count: 2 + path: src/PhpSpreadsheet/Reader/Gnumeric/Styles.php + + - + message: "#^Comparison operation \"\\>\" between SimpleXMLElement\\|null and int results in an error\\.$#" + count: 2 + path: src/PhpSpreadsheet/Reader/Gnumeric/Styles.php + + - + message: "#^Variable \\$value on left side of \\?\\? always exists and is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Html.php + + - + message: "#^Cannot call method children\\(\\) on SimpleXMLElement\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Ods.php + + - + message: "#^Cannot call method getAttributeNS\\(\\) on DOMElement\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Ods.php + + - + message: "#^Cannot call method getElementsByTagNameNS\\(\\) on DOMElement\\|null\\.$#" + count: 2 + path: src/PhpSpreadsheet/Reader/Ods.php + + - + message: "#^Cannot call method getNamedItem\\(\\) on DOMNamedNodeMap\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Ods.php + + - + message: "#^Cannot call method getNamespaces\\(\\) on SimpleXMLElement\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Ods.php + + - + message: "#^Cannot call method setSelectedCellByColumnAndRow\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Ods.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Ods\\:\\:listWorksheetNames\\(\\) should return array\\<string\\> but returns array\\<int, string\\|null\\>\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Ods.php + + - + message: "#^Parameter \\#1 \\$element of method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Ods\\:\\:scanElementForText\\(\\) expects DOMNode, DOMElement\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Ods.php + + - + message: "#^Parameter \\#1 \\$settings of method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Ods\\:\\:lookForActiveSheet\\(\\) expects DOMElement, DOMElement\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Ods.php + + - + message: "#^Parameter \\#1 \\$settings of method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Ods\\:\\:lookForSelectedCells\\(\\) expects DOMElement, DOMElement\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Ods.php + + - + message: "#^Cannot call method getElementsByTagNameNS\\(\\) on DOMElement\\|null\\.$#" + count: 3 + path: src/PhpSpreadsheet/Reader/Ods/PageSettings.php + + - + message: "#^Expression on left side of \\?\\? is not nullable\\.$#" + count: 6 + path: src/PhpSpreadsheet/Reader/Ods/PageSettings.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Ods\\\\PageSettings\\:\\:\\$pageLayoutStyles has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Ods/PageSettings.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Ods\\\\Properties\\:\\:load\\(\\) has parameter \\$namespacesMeta with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Ods/Properties.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Ods\\\\Properties\\:\\:setMetaProperties\\(\\) has parameter \\$namespacesMeta with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Ods/Properties.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Ods\\\\Properties\\:\\:setMetaProperties\\(\\) has parameter \\$propertyName with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Ods/Properties.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Ods\\\\Properties\\:\\:setUserDefinedProperty\\(\\) has parameter \\$propertyValue with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Ods/Properties.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Ods\\\\Properties\\:\\:setUserDefinedProperty\\(\\) has parameter \\$propertyValueAttributes with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Ods/Properties.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Ods\\\\Properties\\:\\:\\$spreadsheet has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Ods/Properties.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Security\\\\XmlScanner\\:\\:__construct\\(\\) has parameter \\$pattern with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Security/XmlScanner.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Security\\\\XmlScanner\\:\\:getInstance\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Security/XmlScanner.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Security\\\\XmlScanner\\:\\:threadSafeLibxmlDisableEntityLoaderAvailability\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Security/XmlScanner.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Security\\\\XmlScanner\\:\\:toUtf8\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Security/XmlScanner.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Security\\\\XmlScanner\\:\\:toUtf8\\(\\) has parameter \\$xml with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Security/XmlScanner.php + + - + message: "#^Parameter \\#2 \\$subject of function preg_match expects string, array\\<int, string\\>\\|string\\|false given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Security/XmlScanner.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Security\\\\XmlScanner\\:\\:\\$callback has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Security/XmlScanner.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Security\\\\XmlScanner\\:\\:\\$libxmlDisableEntityLoaderValue has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Security/XmlScanner.php + + - + message: "#^Call to an undefined method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\|PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DgContainer\\|PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DgContainer\\\\SpgrContainer\\|PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DgContainer\\\\SpgrContainer\\\\SpContainer\\|PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DggContainer\\|PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DggContainer\\\\BstoreContainer\\|PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DggContainer\\\\BstoreContainer\\\\BSE\\:\\:getDgContainer\\(\\)\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Call to an undefined method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\|PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DgContainer\\|PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DgContainer\\\\SpgrContainer\\|PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DgContainer\\\\SpgrContainer\\\\SpContainer\\|PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DggContainer\\|PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DggContainer\\\\BstoreContainer\\|PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DggContainer\\\\BstoreContainer\\\\BSE\\:\\:getDggContainer\\(\\)\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Call to an undefined method object\\:\\:getEndCoordinates\\(\\)\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Call to an undefined method object\\:\\:getEndOffsetX\\(\\)\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Call to an undefined method object\\:\\:getEndOffsetY\\(\\)\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Call to an undefined method object\\:\\:getNestingLevel\\(\\)\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Call to an undefined method object\\:\\:getOPT\\(\\)\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Call to an undefined method object\\:\\:getStartCoordinates\\(\\)\\.$#" + count: 2 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Call to an undefined method object\\:\\:getStartOffsetX\\(\\)\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Call to an undefined method object\\:\\:getStartOffsetY\\(\\)\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Cannot access offset 1 on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^If condition is always true\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\:\\:includeCellRangeFiltered\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\:\\:includeCellRangeFiltered\\(\\) has parameter \\$cellRangeAddress with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\:\\:parseRichText\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\:\\:parseRichText\\(\\) has parameter \\$is with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Parameter \\#1 \\$block of method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\:\\:makeKey\\(\\) expects int, float given\\.$#" + count: 2 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Parameter \\#1 \\$showSummaryBelow of method PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\:\\:setShowSummaryBelow\\(\\) expects bool, int given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Parameter \\#1 \\$showSummaryRight of method PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\:\\:setShowSummaryRight\\(\\) expects bool, int given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Parameter \\#2 \\$row of method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\IReadFilter\\:\\:readCell\\(\\) expects int, string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Parameter \\#2 \\$row of static method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Xls\\:\\:sizeRow\\(\\) expects int, string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Parameter \\#2 \\$startRow of static method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Xls\\:\\:getDistanceY\\(\\) expects int, string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Parameter \\#3 \\$subject of function str_replace expects array\\|string, int\\|string\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Parameter \\#4 \\$endRow of static method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Xls\\:\\:getDistanceY\\(\\) expects int, string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\:\\:\\$data \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\:\\:\\$documentSummaryInformation \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\:\\:\\$documentSummaryInformation \\(string\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\:\\:\\$md5Ctxt is never written, only read\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\:\\:\\$summaryInformation \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\:\\:\\$summaryInformation \\(string\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 8 + path: src/PhpSpreadsheet/Reader/Xls.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\\\Color\\\\BIFF5\\:\\:\\$map has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls/Color/BIFF5.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\\\Color\\\\BIFF8\\:\\:\\$map has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls/Color/BIFF8.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\\\Color\\\\BuiltIn\\:\\:\\$map has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls/Color/BuiltIn.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\\\ErrorCode\\:\\:\\$map has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls/ErrorCode.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\\\RC4\\:\\:\\$i has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls/RC4.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\\\RC4\\:\\:\\$j has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls/RC4.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xls\\\\RC4\\:\\:\\$s has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xls/RC4.php + + - + message: "#^Argument of an invalid type array\\<int, string\\>\\|false supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Cannot access offset 0 on array\\<int, string\\>\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Cannot access property \\$r on SimpleXMLElement\\|null\\.$#" + count: 2 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Cannot call method addChart\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Cannot call method setBold\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Cannot call method setColor\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Cannot call method setItalic\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Cannot call method setName\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Cannot call method setSize\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Cannot call method setStrikethrough\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Cannot call method setSubscript\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Cannot call method setSuperscript\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Cannot call method setUnderline\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 2 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Comparison operation \"\\>\" between SimpleXMLElement\\|null and 0 results in an error\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:boolean\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:castToBoolean\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:castToBoolean\\(\\) has parameter \\$c with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:castToError\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:castToError\\(\\) has parameter \\$c with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:castToFormula\\(\\) has parameter \\$c with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:castToFormula\\(\\) has parameter \\$calculatedValue with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:castToFormula\\(\\) has parameter \\$castBaseType with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:castToFormula\\(\\) has parameter \\$cellDataType with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:castToFormula\\(\\) has parameter \\$r with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:castToFormula\\(\\) has parameter \\$sharedFormulas with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:castToFormula\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:castToString\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:castToString\\(\\) has parameter \\$c with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:dirAdd\\(\\) has parameter \\$add with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:dirAdd\\(\\) has parameter \\$base with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:getArrayItem\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:getArrayItem\\(\\) has parameter \\$array with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:getArrayItem\\(\\) has parameter \\$key with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:getFromZipArchive\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:readFormControlProperties\\(\\) has parameter \\$dir with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:readFormControlProperties\\(\\) has parameter \\$docSheet with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:readFormControlProperties\\(\\) has parameter \\$fileWorksheet with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:readPrinterSettings\\(\\) has parameter \\$dir with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:readPrinterSettings\\(\\) has parameter \\$docSheet with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:readPrinterSettings\\(\\) has parameter \\$fileWorksheet with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:stripWhiteSpaceFromStyleString\\(\\) has parameter \\$string with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\:\\:toCSSArray\\(\\) has parameter \\$style with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Negated boolean expression is always true\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Parameter \\#1 \\$fontSizeInPoints of static method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Font\\:\\:fontSizeToPixels\\(\\) expects int, string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Parameter \\#1 \\$haystack of function strpos expects string, int\\|string given\\.$#" + count: 2 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Parameter \\#1 \\$sizeInCm of static method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Font\\:\\:centimeterSizeToPixels\\(\\) expects int, string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Parameter \\#1 \\$sizeInInch of static method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Font\\:\\:inchSizeToPixels\\(\\) expects int, string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Parameter \\#1 \\$worksheetName of method PhpOffice\\\\PhpSpreadsheet\\\\Spreadsheet\\:\\:getSheetByName\\(\\) expects string, array\\|string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Parameter \\#3 \\$subject of function str_replace expects array\\|string, int\\|string given\\.$#" + count: 2 + path: src/PhpSpreadsheet/Reader/Xlsx.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\AutoFilter\\:\\:readAutoFilter\\(\\) has parameter \\$autoFilterRange with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/AutoFilter.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\AutoFilter\\:\\:readAutoFilter\\(\\) has parameter \\$xmlSheet with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/AutoFilter.php + + - + message: "#^Parameter \\#1 \\$operator of method PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\AutoFilter\\\\Column\\\\Rule\\:\\:setRule\\(\\) expects string, null given\\.$#" + count: 2 + path: src/PhpSpreadsheet/Reader/Xlsx/AutoFilter.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\AutoFilter\\:\\:\\$worksheet has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/AutoFilter.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\AutoFilter\\:\\:\\$worksheetXml has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/AutoFilter.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\BaseParserClass\\:\\:boolean\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/BaseParserClass.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\BaseParserClass\\:\\:boolean\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/BaseParserClass.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ColumnAndRowAttributes\\:\\:isFilteredColumn\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ColumnAndRowAttributes\\:\\:isFilteredColumn\\(\\) has parameter \\$columnCoordinate with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ColumnAndRowAttributes\\:\\:isFilteredRow\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ColumnAndRowAttributes\\:\\:isFilteredRow\\(\\) has parameter \\$rowCoordinate with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ColumnAndRowAttributes\\:\\:readColumnAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ColumnAndRowAttributes\\:\\:readColumnAttributes\\(\\) has parameter \\$readDataOnly with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ColumnAndRowAttributes\\:\\:readColumnRangeAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ColumnAndRowAttributes\\:\\:readColumnRangeAttributes\\(\\) has parameter \\$readDataOnly with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ColumnAndRowAttributes\\:\\:readRowAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ColumnAndRowAttributes\\:\\:readRowAttributes\\(\\) has parameter \\$readDataOnly with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ColumnAndRowAttributes\\:\\:\\$worksheet has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ColumnAndRowAttributes\\:\\:\\$worksheetXml has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ConditionalStyles\\:\\:readConditionalStyles\\(\\) has parameter \\$xmlSheet with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ConditionalStyles\\:\\:readDataBarExtLstOfConditionalRule\\(\\) has parameter \\$cfRule with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ConditionalStyles\\:\\:readDataBarExtLstOfConditionalRule\\(\\) has parameter \\$conditionalFormattingRuleExtensions with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ConditionalStyles\\:\\:readDataBarOfConditionalRule\\(\\) has parameter \\$cfRule with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ConditionalStyles\\:\\:readDataBarOfConditionalRule\\(\\) has parameter \\$conditionalFormattingRuleExtensions with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ConditionalStyles\\:\\:readStyleRules\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ConditionalStyles\\:\\:readStyleRules\\(\\) has parameter \\$cfRules with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ConditionalStyles\\:\\:readStyleRules\\(\\) has parameter \\$extLst with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ConditionalStyles\\:\\:setConditionalStyles\\(\\) has parameter \\$xmlExtLst with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ConditionalStyles\\:\\:\\$dxfs has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ConditionalStyles\\:\\:\\$worksheet has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\ConditionalStyles\\:\\:\\$worksheetXml has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\DataValidations\\:\\:\\$worksheet has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/DataValidations.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\DataValidations\\:\\:\\$worksheetXml has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/DataValidations.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\Hyperlinks\\:\\:\\$hyperlinks has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/Hyperlinks.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\Hyperlinks\\:\\:\\$worksheet has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/Hyperlinks.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\PageSetup\\:\\:load\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/PageSetup.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\PageSetup\\:\\:pageSetup\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/PageSetup.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\PageSetup\\:\\:\\$worksheet has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/PageSetup.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\PageSetup\\:\\:\\$worksheetXml has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/PageSetup.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\SheetViewOptions\\:\\:\\$worksheet has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/SheetViewOptions.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xlsx\\\\SheetViewOptions\\:\\:\\$worksheetXml has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xlsx/SheetViewOptions.php + + - + message: "#^Parameter \\#1 \\$haystack of function strpos expects string, string\\|false given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xml.php + + - + message: "#^Parameter \\#1 \\$textValue of static method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\StringHelper\\:\\:convertEncoding\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xml.php + + - + message: "#^Parameter \\#2 \\$subject of function preg_match expects string, string\\|false given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xml.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Reader\\\\Xml\\:\\:\\$fileContents has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xml.php + + - + message: "#^Argument of an invalid type SimpleXMLElement\\|null supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xml/Properties.php + + - + message: "#^Argument of an invalid type SimpleXMLElement\\|null supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: src/PhpSpreadsheet/Reader/Xml/Style.php + + - + message: "#^Elseif condition is always true\\.$#" + count: 1 + path: src/PhpSpreadsheet/ReferenceHelper.php + + - + message: "#^Expression on left side of \\?\\? is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/ReferenceHelper.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\RichText\\\\Run\\:\\:\\$font \\(PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\) does not accept PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/RichText/Run.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Settings\\:\\:getHttpClient\\(\\) should return Psr\\\\Http\\\\Client\\\\ClientInterface but returns Psr\\\\Http\\\\Client\\\\ClientInterface\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Settings.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Settings\\:\\:getRequestFactory\\(\\) should return Psr\\\\Http\\\\Message\\\\RequestFactoryInterface but returns Psr\\\\Http\\\\Message\\\\RequestFactoryInterface\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Settings.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Settings.php + + - + message: "#^Result of && is always false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Settings.php + + - + message: "#^Strict comparison using \\=\\=\\= between int and null will always evaluate to false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Settings.php + + - + message: "#^Parameter \\#1 \\$excelFormatCode of static method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Date\\:\\:isDateTimeFormatCode\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Date.php + + - + message: "#^Parameter \\#1 \\$string of function substr expects string, int given\\.$#" + count: 2 + path: src/PhpSpreadsheet/Shared/Date.php + + - + message: "#^Parameter \\#1 \\$unixTimestamp of static method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Date\\:\\:timestampToExcel\\(\\) expects int, float\\|int\\|string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Date.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Date\\:\\:\\$possibleDateFormatCharacters has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Date.php + + - + message: "#^Cannot access offset 1 on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Drawing.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DgContainer\\:\\:getDgId\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Escher/DgContainer.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DgContainer\\:\\:getLastSpId\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Escher/DgContainer.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DgContainer\\:\\:getSpgrContainer\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Escher/DgContainer.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DgContainer\\:\\:setDgId\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Escher/DgContainer.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DgContainer\\:\\:setLastSpId\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Escher/DgContainer.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DgContainer\\:\\:setSpgrContainer\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Escher/DgContainer.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DgContainer\\:\\:setSpgrContainer\\(\\) has parameter \\$spgrContainer with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Escher/DgContainer.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DgContainer\\:\\:\\$spgrContainer has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Escher/DgContainer.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DgContainer\\\\SpgrContainer\\:\\:getChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Escher/DgContainer/SpgrContainer.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DggContainer\\\\BstoreContainer\\\\BSE\\:\\:\\$parent is never read, only written\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer/BSE.php + + - + message: "#^Cannot access offset 0 on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Font.php + + - + message: "#^Cannot access offset 2 on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Font.php + + - + message: "#^Cannot access offset 4 on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Font.php + + - + message: "#^Cannot access offset 6 on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Font.php + + - + message: "#^Parameter \\#1 \\$size of function imagettfbbox expects float, float\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Font.php + + - + message: "#^Parameter \\#2 \\$defaultFont of static method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Drawing\\:\\:pixelsToCellDimension\\(\\) expects PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font, PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Font.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Font\\:\\:\\$autoSizeMethods has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Font.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Font.php + + - + message: "#^Variable \\$cellText on left side of \\?\\? always exists and is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Font.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\EigenvalueDecomposition\\:\\:\\$cdivi has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/EigenvalueDecomposition.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\EigenvalueDecomposition\\:\\:\\$e has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/EigenvalueDecomposition.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/LUDecomposition.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\LUDecomposition\\:\\:getDoublePivot\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/LUDecomposition.php + + - + message: "#^Call to function is_string\\(\\) with float\\|int will always evaluate to false\\.$#" + count: 5 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\Matrix\\:\\:__construct\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\Matrix\\:\\:arrayLeftDivide\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\Matrix\\:\\:arrayLeftDivideEquals\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\Matrix\\:\\:arrayRightDivide\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\Matrix\\:\\:arrayRightDivideEquals\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\Matrix\\:\\:arrayTimes\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\Matrix\\:\\:arrayTimesEquals\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\Matrix\\:\\:concat\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\Matrix\\:\\:getMatrix\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\Matrix\\:\\:minus\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\Matrix\\:\\:minusEquals\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\Matrix\\:\\:plus\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\Matrix\\:\\:plusEquals\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\Matrix\\:\\:power\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\Matrix\\:\\:times\\(\\) has parameter \\$args with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Parameter \\#3 \\$c of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\JAMA\\\\Matrix\\:\\:set\\(\\) expects float\\|int\\|null, string given\\.$#" + count: 2 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Result of && is always false\\.$#" + count: 10 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 19 + path: src/PhpSpreadsheet/Shared/JAMA/Matrix.php + + - + message: "#^If condition is always true\\.$#" + count: 7 + path: src/PhpSpreadsheet/Shared/JAMA/SingularValueDecomposition.php + + - + message: "#^Left side of && is always true\\.$#" + count: 4 + path: src/PhpSpreadsheet/Shared/JAMA/SingularValueDecomposition.php + + - + message: "#^Cannot access offset 1 on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE.php + + - + message: "#^Cannot access offset 2 on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE.php + + - + message: "#^Cannot access offset 3 on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE.php + + - + message: "#^Cannot access offset 4 on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\:\\:getData\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\:\\:getStream\\(\\) should return resource but returns resource\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE.php + + - + message: "#^Parameter \\#1 \\$No of class PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS constructor expects int, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE.php + + - + message: "#^Parameter \\#1 \\$oleTimestamp of static method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\:\\:OLE2LocalDate\\(\\) expects string, string\\|false given\\.$#" + count: 2 + path: src/PhpSpreadsheet/Shared/OLE.php + + - + message: "#^Parameter \\#1 \\$string of function substr expects string, string\\|false given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE.php + + - + message: "#^Parameter \\#2 \\$name of class PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS constructor expects string, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE.php + + - + message: "#^Parameter \\#3 \\$type of class PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS constructor expects int, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE.php + + - + message: "#^Parameter \\#4 \\$prev of class PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS constructor expects int, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE.php + + - + message: "#^Parameter \\#5 \\$next of class PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS constructor expects int, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE.php + + - + message: "#^Parameter \\#6 \\$dir of class PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS constructor expects int, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE.php + + - + message: "#^Parameter \\#9 \\$data of class PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS constructor expects string, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\:\\:\\$root \\(PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\\\Root\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE.php + + - + message: "#^Parameter \\#2 \\$offset of function array_slice expects int, float given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS.php + + - + message: "#^Parameter \\#3 \\$length of function array_slice expects int\\|null, float given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\:\\:\\$_data \\(string\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\:\\:\\$startBlock \\(int\\) on left side of \\?\\? is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS.php + + - + message: "#^Parameter \\#1 \\$No of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\:\\:__construct\\(\\) expects int, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/File.php + + - + message: "#^Parameter \\#4 \\$prev of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\:\\:__construct\\(\\) expects int, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/File.php + + - + message: "#^Parameter \\#5 \\$next of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\:\\:__construct\\(\\) expects int, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/File.php + + - + message: "#^Parameter \\#6 \\$dir of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\:\\:__construct\\(\\) expects int, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/File.php + + - + message: "#^Parameter \\#1 \\$No of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\:\\:__construct\\(\\) expects int, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/Root.php + + - + message: "#^Parameter \\#1 \\$iSBDcnt of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\\\Root\\:\\:saveHeader\\(\\) expects int, float given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/Root.php + + - + message: "#^Parameter \\#1 \\$iSbdSize of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\\\Root\\:\\:saveBbd\\(\\) expects int, float given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/Root.php + + - + message: "#^Parameter \\#1 \\$iStBlk of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\\\Root\\:\\:saveBigData\\(\\) expects int, float given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/Root.php + + - + message: "#^Parameter \\#2 \\$iBBcnt of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\\\Root\\:\\:saveHeader\\(\\) expects int, float given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/Root.php + + - + message: "#^Parameter \\#2 \\$iBsize of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\\\Root\\:\\:saveBbd\\(\\) expects int, float given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/Root.php + + - + message: "#^Parameter \\#3 \\$iPPScnt of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\\\Root\\:\\:saveHeader\\(\\) expects int, float given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/Root.php + + - + message: "#^Parameter \\#3 \\$iPpsCnt of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\\\Root\\:\\:saveBbd\\(\\) expects int, float given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/Root.php + + - + message: "#^Parameter \\#4 \\$prev of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\:\\:__construct\\(\\) expects int, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/Root.php + + - + message: "#^Parameter \\#5 \\$next of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\:\\:__construct\\(\\) expects int, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/Root.php + + - + message: "#^Parameter \\#6 \\$dir of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\:\\:__construct\\(\\) expects int, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/Root.php + + - + message: "#^Parameter \\#9 \\$data of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\:\\:__construct\\(\\) expects string, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/Root.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\\\Root\\:\\:\\$bigBlockSize \\(int\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/Root.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLE\\\\PPS\\\\Root\\:\\:\\$smallBlockSize \\(int\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLE/PPS/Root.php + + - + message: "#^Parameter \\#1 \\$data of static method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLERead\\:\\:getInt4d\\(\\) expects string, string\\|false given\\.$#" + count: 8 + path: src/PhpSpreadsheet/Shared/OLERead.php + + - + message: "#^Parameter \\#1 \\$string of function substr expects string, string\\|false given\\.$#" + count: 2 + path: src/PhpSpreadsheet/Shared/OLERead.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLERead\\:\\:\\$data has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLERead.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLERead\\:\\:\\$documentSummaryInformation has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLERead.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLERead\\:\\:\\$summaryInformation has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLERead.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\OLERead\\:\\:\\$wrkbook has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLERead.php + + - + message: "#^Strict comparison using \\=\\=\\= between int and null will always evaluate to false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/OLERead.php + + - + message: "#^Static method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\TimeZone\\:\\:validateTimeZone\\(\\) is unused\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/TimeZone.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:calculateGoodnessOfFit\\(\\) has parameter \\$const with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:calculateGoodnessOfFit\\(\\) has parameter \\$meanX with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:calculateGoodnessOfFit\\(\\) has parameter \\$meanY with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:calculateGoodnessOfFit\\(\\) has parameter \\$sumX with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:calculateGoodnessOfFit\\(\\) has parameter \\$sumX2 with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:calculateGoodnessOfFit\\(\\) has parameter \\$sumXY with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:calculateGoodnessOfFit\\(\\) has parameter \\$sumY with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:calculateGoodnessOfFit\\(\\) has parameter \\$sumY2 with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:getBestFitType\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:getError\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:sumSquares\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:\\$DFResiduals has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:\\$SSRegression has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:\\$SSResiduals has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:\\$correlation has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:\\$covariance has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:\\$f has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:\\$goodnessOfFit has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:\\$intersect has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:\\$intersectSE has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:\\$slope has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:\\$slopeSE has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:\\$stdevOfResiduals has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:\\$xOffset has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\BestFit\\:\\:\\$yOffset has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/BestFit.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\PolynomialBestFit\\:\\:getCoefficients\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/PolynomialBestFit.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\PolynomialBestFit\\:\\:getCoefficients\\(\\) has parameter \\$dp with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/PolynomialBestFit.php + + - + message: "#^Call to an undefined method object\\:\\:getGoodnessOfFit\\(\\)\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/Trend.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\Trend\\:\\:calculate\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/Trend.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\Trend\\:\\:calculate\\(\\) has parameter \\$const with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/Trend.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\Trend\\:\\:calculate\\(\\) has parameter \\$trendType with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/Trend.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\Trend\\:\\:calculate\\(\\) has parameter \\$xValues with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/Trend.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Trend\\\\Trend\\:\\:calculate\\(\\) has parameter \\$yValues with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/Trend/Trend.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\XMLWriter\\:\\:getData\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/XMLWriter.php + + - + message: "#^Parameter \\#1 \\$uri of method XMLWriter\\:\\:openUri\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/XMLWriter.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\XMLWriter\\:\\:\\$debugEnabled has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/XMLWriter.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\XMLWriter\\:\\:\\$tempFileName \\(string\\) does not accept string\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Shared/XMLWriter.php + + - + message: "#^Call to function is_array\\(\\) with string will always evaluate to false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Spreadsheet.php + + - + message: "#^Comparison operation \"\\<\\=\" between int\\<min, \\-1\\> and 1000 is always true\\.$#" + count: 1 + path: src/PhpSpreadsheet/Spreadsheet.php + + - + message: "#^Parameter \\#1 \\$worksheet of method PhpOffice\\\\PhpSpreadsheet\\\\Spreadsheet\\:\\:getIndex\\(\\) expects PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet, PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Spreadsheet.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Spreadsheet\\:\\:\\$workbookViewVisibilityValues has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Spreadsheet.php + + - + message: "#^Result of \\|\\| is always true\\.$#" + count: 1 + path: src/PhpSpreadsheet/Spreadsheet.php + + - + message: "#^Strict comparison using \\=\\=\\= between PhpOffice\\\\PhpSpreadsheet\\\\Spreadsheet and null will always evaluate to false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Spreadsheet.php + + - + message: "#^Strict comparison using \\=\\=\\= between string and null will always evaluate to false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Spreadsheet.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: src/PhpSpreadsheet/Spreadsheet.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalDataBar\\:\\:setConditionalFormattingRuleExt\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBar.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalDataBar\\:\\:setMaximumConditionalFormatValueObject\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBar.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalDataBar\\:\\:setMinimumConditionalFormatValueObject\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBar.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalDataBar\\:\\:setShowValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBar.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalDataBarExtension\\:\\:getXmlAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBarExtension.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalDataBarExtension\\:\\:getXmlElements\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBarExtension.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalDataBarExtension\\:\\:setMaximumConditionalFormatValueObject\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBarExtension.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalDataBarExtension\\:\\:setMinimumConditionalFormatValueObject\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBarExtension.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalFormatValueObject\\:\\:__construct\\(\\) has parameter \\$type with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormatValueObject.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalFormatValueObject\\:\\:__construct\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormatValueObject.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalFormatValueObject\\:\\:setCellFormula\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormatValueObject.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalFormatValueObject\\:\\:setType\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormatValueObject.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalFormatValueObject\\:\\:setValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormatValueObject.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalFormatValueObject\\:\\:\\$cellFormula has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormatValueObject.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalFormatValueObject\\:\\:\\$type has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormatValueObject.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalFormatValueObject\\:\\:\\$value has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormatValueObject.php + + - + message: "#^Cannot access property \\$axisPosition on SimpleXMLElement\\|null\\.$#" + count: 2 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php + + - + message: "#^Cannot access property \\$border on SimpleXMLElement\\|null\\.$#" + count: 2 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php + + - + message: "#^Cannot access property \\$direction on SimpleXMLElement\\|null\\.$#" + count: 2 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php + + - + message: "#^Cannot access property \\$gradient on SimpleXMLElement\\|null\\.$#" + count: 2 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php + + - + message: "#^Cannot access property \\$maxLength on SimpleXMLElement\\|null\\.$#" + count: 2 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php + + - + message: "#^Cannot access property \\$minLength on SimpleXMLElement\\|null\\.$#" + count: 2 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php + + - + message: "#^Cannot access property \\$negativeBarBorderColorSameAsPositive on SimpleXMLElement\\|null\\.$#" + count: 2 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalFormattingRuleExtension\\:\\:__construct\\(\\) has parameter \\$id with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalFormattingRuleExtension\\:\\:generateUuid\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalFormattingRuleExtension\\:\\:parseExtDataBarElementChildrenFromXml\\(\\) has parameter \\$ns with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalFormattingRuleExtension\\:\\:parseExtLstXml\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalFormattingRuleExtension\\:\\:parseExtLstXml\\(\\) has parameter \\$extLstXml with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php + + - + message: "#^Offset 'rgb' does not exist on SimpleXMLElement\\|null\\.$#" + count: 4 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php + + - + message: "#^Offset 'theme' does not exist on SimpleXMLElement\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php + + - + message: "#^Offset 'tint' does not exist on SimpleXMLElement\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\ConditionalFormatting\\\\ConditionalFormattingRuleExtension\\:\\:\\$id has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\NumberFormat\\\\Formatter\\:\\:splitFormat\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/NumberFormat/Formatter.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\NumberFormat\\\\Formatter\\:\\:splitFormat\\(\\) has parameter \\$sections with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/NumberFormat/Formatter.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\NumberFormat\\\\Formatter\\:\\:splitFormat\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/NumberFormat/Formatter.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\NumberFormat\\\\Formatter\\:\\:splitFormatCompare\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/NumberFormat/Formatter.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\NumberFormat\\\\Formatter\\:\\:splitFormatCompare\\(\\) has parameter \\$cond with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/NumberFormat/Formatter.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\NumberFormat\\\\Formatter\\:\\:splitFormatCompare\\(\\) has parameter \\$dfcond with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/NumberFormat/Formatter.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\NumberFormat\\\\Formatter\\:\\:splitFormatCompare\\(\\) has parameter \\$dfval with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/NumberFormat/Formatter.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\NumberFormat\\\\Formatter\\:\\:splitFormatCompare\\(\\) has parameter \\$val with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/NumberFormat/Formatter.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\NumberFormat\\\\Formatter\\:\\:splitFormatCompare\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/NumberFormat/Formatter.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\NumberFormat\\\\Formatter\\:\\:toFormattedString\\(\\) should return string but returns float\\|int\\|string\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/NumberFormat/Formatter.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\NumberFormat\\\\PercentageFormatter\\:\\:format\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Style/NumberFormat/PercentageFormatter.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\CellIterator\\:\\:adjustForExistingOnlyRange\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/CellIterator.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Drawing\\\\Shadow\\:\\:\\$color \\(PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Color\\) does not accept PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Color\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/Drawing/Shadow.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\PageSetup\\:\\:getPrintArea\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/PageSetup.php + + - + message: "#^Parameter \\#1 \\$value of method PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\PageSetup\\:\\:setFirstPageNumber\\(\\) expects int, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/PageSetup.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\PageSetup\\:\\:\\$pageOrder has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/PageSetup.php + + - + message: "#^Strict comparison using \\=\\=\\= between int\\<min, \\-1\\> and null will always evaluate to false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/PageSetup.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\SheetView\\:\\:\\$sheetViewTypes has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/SheetView.php + + - + message: "#^Strict comparison using \\=\\=\\= between int\\<min, 0\\> and null will always evaluate to false\\.$#" + count: 2 + path: src/PhpSpreadsheet/Worksheet/SheetView.php + + - + message: "#^Strict comparison using \\=\\=\\= between string and null will always evaluate to false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/SheetView.php + + - + message: "#^Cannot call method getCalculatedValue\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Cell\\\\Cell\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^Cannot call method getHashCode\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^Cannot call method getValue\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Cell\\\\Cell\\|null\\.$#" + count: 4 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^Cannot call method getWorksheet\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\DefinedName\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^Cannot call method getXfIndex\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Cell\\\\Cell\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^Cannot call method rangeToArray\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^If condition is always true\\.$#" + count: 2 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^Left side of && is always true\\.$#" + count: 2 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\:\\:getChartByName\\(\\) should return PhpOffice\\\\PhpSpreadsheet\\\\Chart\\\\Chart\\|false but returns PhpOffice\\\\PhpSpreadsheet\\\\Chart\\\\Chart\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^Parameter \\#1 \\$index of class PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\ColumnDimension constructor expects string, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^Parameter \\#1 \\$index of class PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\RowDimension constructor expects int, null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^Parameter \\#1 \\$range of static method PhpOffice\\\\PhpSpreadsheet\\\\Cell\\\\Coordinate\\:\\:rangeDimension\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^Parameter \\#2 \\$format of static method PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\NumberFormat\\:\\:toFormattedString\\(\\) expects string, string\\|null given\\.$#" + count: 2 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^Parameter \\#3 \\$rotation of static method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Font\\:\\:calculateColumnWidth\\(\\) expects int, int\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Worksheet\\\\Worksheet\\:\\:\\$parent \\(PhpOffice\\\\PhpSpreadsheet\\\\Spreadsheet\\) does not accept PhpOffice\\\\PhpSpreadsheet\\\\Spreadsheet\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^Right side of && is always true\\.$#" + count: 1 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^Strict comparison using \\=\\=\\= between string and null will always evaluate to false\\.$#" + count: 2 + path: src/PhpSpreadsheet/Worksheet/Worksheet.php + + - + message: "#^Call to function array_key_exists\\(\\) with int and array\\{none\\: 'none', dashDot\\: '1px dashed', dashDotDot\\: '1px dotted', dashed\\: '1px dashed', dotted\\: '1px dotted', double\\: '3px double', hair\\: '1px solid', medium\\: '2px solid', \\.\\.\\.\\} will always evaluate to false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Cannot access offset 'mime' on array\\|false\\.$#" + count: 2 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Cannot access offset 0 on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Cannot access offset 1 on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Cannot call method getSubscript\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Cannot call method getSuperscript\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:calculateSpansOmitRows\\(\\) has parameter \\$candidateSpannedRow with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:calculateSpansOmitRows\\(\\) has parameter \\$sheet with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:calculateSpansOmitRows\\(\\) has parameter \\$sheetIndex with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateHTMLFooter\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateMeta\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateMeta\\(\\) has parameter \\$desc with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateMeta\\(\\) has parameter \\$val with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowCellCss\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowCellCss\\(\\) has parameter \\$cellAddress with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowCellCss\\(\\) has parameter \\$columnNumber with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowCellCss\\(\\) has parameter \\$row with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowCellData\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowCellData\\(\\) has parameter \\$cell with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowCellData\\(\\) has parameter \\$cellType with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowCellData\\(\\) has parameter \\$cssClass with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowCellDataValue\\(\\) has parameter \\$cell with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowCellDataValue\\(\\) has parameter \\$cellData with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowCellDataValueRich\\(\\) has parameter \\$cell with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowCellDataValueRich\\(\\) has parameter \\$cellData with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowIncludeCharts\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowIncludeCharts\\(\\) has parameter \\$coordinate with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowSpans\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowSpans\\(\\) has parameter \\$colSpan with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowSpans\\(\\) has parameter \\$html with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowSpans\\(\\) has parameter \\$rowSpan with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowWriteCell\\(\\) has parameter \\$cellData with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowWriteCell\\(\\) has parameter \\$cellType with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowWriteCell\\(\\) has parameter \\$colNum with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowWriteCell\\(\\) has parameter \\$colSpan with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowWriteCell\\(\\) has parameter \\$coordinate with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowWriteCell\\(\\) has parameter \\$cssClass with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowWriteCell\\(\\) has parameter \\$html with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowWriteCell\\(\\) has parameter \\$row with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowWriteCell\\(\\) has parameter \\$rowSpan with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateRowWriteCell\\(\\) has parameter \\$sheetIndex with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateSheetPrep\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateSheetStarts\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateSheetStarts\\(\\) has parameter \\$rowMin with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateSheetStarts\\(\\) has parameter \\$sheet with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateSheetTags\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateSheetTags\\(\\) has parameter \\$row with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateSheetTags\\(\\) has parameter \\$tbodyStart with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateSheetTags\\(\\) has parameter \\$theadEnd with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateSheetTags\\(\\) has parameter \\$theadStart with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateTableFooter\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateTableTag\\(\\) has parameter \\$html with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateTableTag\\(\\) has parameter \\$id with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateTableTag\\(\\) has parameter \\$sheetIndex with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateTableTagInline\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:generateTableTagInline\\(\\) has parameter \\$id with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Parameter \\#1 \\$borderStyle of method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:mapBorderStyle\\(\\) expects int, string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Parameter \\#1 \\$font of method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:createCSSStyleFont\\(\\) expects PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font, PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Parameter \\#1 \\$hAlign of method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:mapHAlign\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Parameter \\#1 \\$vAlign of method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Html\\:\\:mapVAlign\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Parameter \\#2 \\$length of function fread expects int\\<0, max\\>, int\\<0, max\\>\\|false given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Parameter \\#3 \\$use_include_path of function fopen expects bool, int given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Html.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Ods.php + + - + message: "#^If condition is always true\\.$#" + count: 2 + path: src/PhpSpreadsheet/Writer/Ods/Cell/Style.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Ods\\\\Cell\\\\Style\\:\\:\\$writer has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Ods/Cell/Style.php + + - + message: "#^Parameter \\#1 \\$range of static method PhpOffice\\\\PhpSpreadsheet\\\\Cell\\\\Coordinate\\:\\:splitRange\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Ods/Content.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, int\\<2, max\\> given\\.$#" + count: 3 + path: src/PhpSpreadsheet/Writer/Ods/Content.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Ods\\\\Content\\:\\:\\$formulaConvertor has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Ods/Content.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Ods\\\\Formula\\:\\:\\$definedNames has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Ods/Formula.php + + - + message: "#^Cannot call method getHashCode\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls.php + + - + message: "#^Cannot use array destructuring on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls.php + + - + message: "#^Offset 'endCoordinates' does not exist on array\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls.php + + - + message: "#^Offset 'endOffsetX' does not exist on array\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls.php + + - + message: "#^Offset 'endOffsetY' does not exist on array\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls.php + + - + message: "#^Offset 'startCoordinates' does not exist on array\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls.php + + - + message: "#^Offset 'startOffsetX' does not exist on array\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls.php + + - + message: "#^Offset 'startOffsetY' does not exist on array\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls.php + + - + message: "#^Parameter \\#1 \\$blipType of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DggContainer\\\\BstoreContainer\\\\BSE\\:\\:setBlipType\\(\\) expects int, int\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls.php + + - + message: "#^Parameter \\#1 \\$data of method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Escher\\\\DggContainer\\\\BstoreContainer\\\\BSE\\\\Blip\\:\\:setData\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls.php + + - + message: "#^Parameter \\#1 \\$font of method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Workbook\\:\\:addFont\\(\\) expects PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font, PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\:\\:\\$documentSummaryInformation \\(string\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\:\\:\\$summaryInformation \\(string\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\BIFFwriter\\:\\:writeEof\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/BIFFwriter.php + + - + message: "#^Static property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\BIFFwriter\\:\\:\\$byteOrder \\(int\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/BIFFwriter.php + + - + message: "#^Elseif condition is always true\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Escher.php + + - + message: "#^If condition is always true\\.$#" + count: 3 + path: src/PhpSpreadsheet/Writer/Xls/Escher.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Escher\\:\\:\\$data has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Escher.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Escher\\:\\:\\$object has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Escher.php + + - + message: "#^If condition is always false\\.$#" + count: 2 + path: src/PhpSpreadsheet/Writer/Xls/Font.php + + - + message: "#^Parameter \\#1 \\$bold of static method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Font\\:\\:mapBold\\(\\) expects bool, bool\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Font.php + + - + message: "#^Parameter \\#1 \\$fontName of static method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\Font\\:\\:getCharsetFromFontName\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Font.php + + - + message: "#^Parameter \\#1 \\$textValue of static method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\StringHelper\\:\\:UTF8toBIFF8UnicodeShort\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Font.php + + - + message: "#^Parameter \\#1 \\$underline of static method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Font\\:\\:mapUnderline\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Font.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Parser\\:\\:advance\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Parser.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Parser\\:\\:\\$spreadsheet has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Parser.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 5 + path: src/PhpSpreadsheet/Writer/Xls/Parser.php + + - + message: "#^Cannot access offset 'encoding' on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Workbook.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Workbook\\:\\:writeAllDefinedNamesBiff8\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Workbook.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Workbook\\:\\:writeExternalsheetBiff8\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Workbook.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Workbook\\:\\:writeMsoDrawingGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Workbook.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Workbook\\:\\:writeSupbookInternal\\(\\) has no return type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Workbook.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Workbook\\:\\:\\$biffSize is never read, only written\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Workbook.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Workbook\\:\\:\\$colors has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Workbook.php + + - + message: "#^Cannot access offset 'comp' on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Cannot access offset 'ident' on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Cannot access offset 'sa' on array\\|false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Cannot access offset 1 on array\\|false\\.$#" + count: 2 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Cannot access offset 2 on array\\|false\\.$#" + count: 2 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Cannot call method getHashCode\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Expression on left side of \\?\\? is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Parameter \\#1 \\$coordinates of static method PhpOffice\\\\PhpSpreadsheet\\\\Cell\\\\Coordinate\\:\\:indexesFromString\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Parameter \\#1 \\$string of function strlen expects string, string\\|false given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Parameter \\#1 \\$string of function substr expects string, string\\|false given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Parameter \\#2 \\$length of function fread expects int\\<0, max\\>, int\\<0, max\\>\\|false given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Parameter \\#4 \\$isError of method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Worksheet\\:\\:writeBoolErr\\(\\) expects bool, int given\\.$#" + count: 3 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Parameter \\#5 \\$width of method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Worksheet\\:\\:positionImage\\(\\) expects int, float given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Parameter \\#6 \\$height of method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Worksheet\\:\\:positionImage\\(\\) expects int, float given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Worksheet\\:\\:\\$activePane \\(int\\) does not accept int\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Worksheet\\:\\:\\$colors has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Worksheet\\:\\:\\$countCellStyleXfs is never read, only written\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Worksheet\\:\\:\\$outlineBelow is never read, only written\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Worksheet\\:\\:\\$outlineRight is never read, only written\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Worksheet\\:\\:\\$selection is never read, only written\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Worksheet\\:\\:\\$xlsStringMaxLength is never read, only written\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Worksheet.php + + - + message: "#^Parameter \\#1 \\$textRotation of static method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Xf\\:\\:mapTextRotation\\(\\) expects int, int\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Xf.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xls\\\\Xf\\:\\:\\$diag is never read, only written\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xls/Xf.php + + - + message: "#^Argument of an invalid type array\\|null supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx.php + + - + message: "#^Parameter \\#1 \\$path of function basename expects string, array\\|string\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx.php + + - + message: "#^Parameter \\#1 \\$path of function dirname expects string, array\\|string\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx.php + + - + message: "#^Possibly invalid array key type array\\|string\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx.php + + - + message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xlsx\\:\\:\\$pathNames has no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx.php + + - + message: "#^Parameter \\#1 \\$string of function substr expects string, int given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Comments.php + + - + message: "#^Parameter \\#2 \\$content of method XMLWriter\\:\\:writeElement\\(\\) expects string\\|null, int given\\.$#" + count: 2 + path: src/PhpSpreadsheet/Writer/Xlsx/Comments.php + + - + message: "#^Expression on left side of \\?\\? is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/DefinedNames.php + + - + message: "#^Parameter \\#2 \\$content of method XMLWriter\\:\\:writeElement\\(\\) expects string\\|null, int given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/DocProps.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, int given\\.$#" + count: 2 + path: src/PhpSpreadsheet/Writer/Xlsx/DocProps.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xlsx\\\\Rels\\:\\:writeUnparsedRelationship\\(\\) has parameter \\$relationship with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Rels.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xlsx\\\\Rels\\:\\:writeUnparsedRelationship\\(\\) has parameter \\$type with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Rels.php + + - + message: "#^Parameter \\#2 \\$id of method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xlsx\\\\Rels\\:\\:writeRelationship\\(\\) expects int, string given\\.$#" + count: 5 + path: src/PhpSpreadsheet/Writer/Xlsx/Rels.php + + - + message: "#^Parameter \\#4 \\$target of method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xlsx\\\\Rels\\:\\:writeRelationship\\(\\) expects string, array\\|string\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Rels.php + + - + message: "#^Cannot call method getBold\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/StringTable.php + + - + message: "#^Cannot call method getColor\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/StringTable.php + + - + message: "#^Cannot call method getItalic\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/StringTable.php + + - + message: "#^Cannot call method getName\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/StringTable.php + + - + message: "#^Cannot call method getSize\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/StringTable.php + + - + message: "#^Cannot call method getStrikethrough\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/StringTable.php + + - + message: "#^Cannot call method getSubscript\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 2 + path: src/PhpSpreadsheet/Writer/Xlsx/StringTable.php + + - + message: "#^Cannot call method getSuperscript\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 2 + path: src/PhpSpreadsheet/Writer/Xlsx/StringTable.php + + - + message: "#^Cannot call method getUnderline\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/StringTable.php + + - + message: "#^Instanceof between \\*NEVER\\* and PhpOffice\\\\PhpSpreadsheet\\\\RichText\\\\RichText will always evaluate to false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/StringTable.php + + - + message: "#^Instanceof between string and PhpOffice\\\\PhpSpreadsheet\\\\RichText\\\\RichText will always evaluate to false\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/StringTable.php + + - + message: "#^Parameter \\#1 \\$text of method PhpOffice\\\\PhpSpreadsheet\\\\RichText\\\\RichText\\:\\:createTextRun\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/StringTable.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, float\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/StringTable.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, int given\\.$#" + count: 2 + path: src/PhpSpreadsheet/Writer/Xlsx/StringTable.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, int\\<0, max\\> given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/StringTable.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, string\\|null given\\.$#" + count: 4 + path: src/PhpSpreadsheet/Writer/Xlsx/StringTable.php + + - + message: "#^Cannot call method getStyle\\(\\) on PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Conditional\\|null\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Style.php + + - + message: "#^Comparison operation \"\\<\" between int\\<min, \\-1\\> and 0 is always true\\.$#" + count: 2 + path: src/PhpSpreadsheet/Writer/Xlsx/Style.php + + - + message: "#^Parameter \\#2 \\$borders of method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xlsx\\\\Style\\:\\:writeBorder\\(\\) expects PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Borders, PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Borders\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Style.php + + - + message: "#^Parameter \\#2 \\$fill of method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xlsx\\\\Style\\:\\:writeFill\\(\\) expects PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Fill, PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Fill\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Style.php + + - + message: "#^Parameter \\#2 \\$font of method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xlsx\\\\Style\\:\\:writeFont\\(\\) expects PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font, PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\Font\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Style.php + + - + message: "#^Parameter \\#2 \\$numberFormat of method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xlsx\\\\Style\\:\\:writeNumFmt\\(\\) expects PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\NumberFormat, PhpOffice\\\\PhpSpreadsheet\\\\Style\\\\NumberFormat\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Style.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, float given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Style.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, int given\\.$#" + count: 22 + path: src/PhpSpreadsheet/Writer/Xlsx/Style.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, int\\<0, max\\> given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Style.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, int\\<1, max\\> given\\.$#" + count: 2 + path: src/PhpSpreadsheet/Writer/Xlsx/Style.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, int\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Style.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, string\\|null given\\.$#" + count: 7 + path: src/PhpSpreadsheet/Writer/Xlsx/Style.php + + - + message: "#^Result of \\|\\| is always true\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Style.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, int given\\.$#" + count: 7 + path: src/PhpSpreadsheet/Writer/Xlsx/Workbook.php + + - + message: "#^Expression on left side of \\?\\? is not nullable\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php + + - + message: "#^If condition is always true\\.$#" + count: 6 + path: src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xlsx\\\\Worksheet\\:\\:writeAttributeIf\\(\\) has parameter \\$condition with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xlsx\\\\Worksheet\\:\\:writeDataBarElements\\(\\) has parameter \\$dataBar with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php + + - + message: "#^Method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xlsx\\\\Worksheet\\:\\:writeElementIf\\(\\) has parameter \\$condition with no type specified\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php + + - + message: "#^Parameter \\#2 \\$content of method XMLWriter\\:\\:writeElement\\(\\) expects string\\|null, int\\|string given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, int given\\.$#" + count: 15 + path: src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, int\\<0, max\\> given\\.$#" + count: 3 + path: src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, int\\<1, max\\> given\\.$#" + count: 9 + path: src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, int\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php + + - + message: "#^Parameter \\#2 \\$value of method XMLWriter\\:\\:writeAttribute\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php + + - + message: "#^Parameter \\#3 \\$stringTable of method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xlsx\\\\Worksheet\\:\\:writeSheetData\\(\\) expects array\\<string\\>, array\\<string\\>\\|null given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php + + - + message: "#^Parameter \\#4 \\$val of static method PhpOffice\\\\PhpSpreadsheet\\\\Writer\\\\Xlsx\\\\Worksheet\\:\\:writeAttributeIf\\(\\) expects string, int given\\.$#" + count: 1 + path: src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php + diff --git a/src/vendor/phpoffice/phpspreadsheet/phpstan-conditional.php b/src/vendor/phpoffice/phpspreadsheet/phpstan-conditional.php new file mode 100644 index 0000000..adb390d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/phpstan-conditional.php @@ -0,0 +1,58 @@ +<?php + +$config = []; + +if (PHP_VERSION_ID < 80000) { + // GdImage not available before PHP8 + $config['parameters']['ignoreErrors'][] = [ + 'message' => '~^Method .* has invalid return type GdImage\.$~', + 'path' => __DIR__ . '/src/PhpSpreadsheet/Shared/Drawing.php', + 'count' => 1, + ]; + $config['parameters']['ignoreErrors'][] = [ + 'message' => '~^Property .* has unknown class GdImage as its type\.$~', + 'path' => __DIR__ . '/src/PhpSpreadsheet/Worksheet/MemoryDrawing.php', + 'count' => 1, + ]; + $config['parameters']['ignoreErrors'][] = [ + 'message' => '~^Method .* has invalid return type GdImage\.$~', + 'path' => __DIR__ . '/src/PhpSpreadsheet/Worksheet/MemoryDrawing.php', + 'count' => 1, + ]; + $config['parameters']['ignoreErrors'][] = [ + 'message' => '~^Parameter .* of method .* has invalid type GdImage\.$~', + 'path' => __DIR__ . '/src/PhpSpreadsheet/Worksheet/MemoryDrawing.php', + 'count' => 1, + ]; + $config['parameters']['ignoreErrors'][] = [ + 'message' => '~^Class GdImage not found\.$~', + 'path' => __DIR__ . '/src/PhpSpreadsheet/Writer/Xls/Worksheet.php', + 'count' => 1, + ]; + $config['parameters']['ignoreErrors'][] = [ + 'message' => '~^Parameter .* of method .* has invalid type GdImage\.$~', + 'path' => __DIR__ . '/src/PhpSpreadsheet/Writer/Xls/Worksheet.php', + 'count' => 1, + ]; + // Erroneous analysis by Phpstan before PHP8 - 3rd parameter is nullable + $config['parameters']['ignoreErrors'][] = [ + 'message' => '#^Parameter \\#3 \\$namespace of method XMLWriter\\:\\:startElementNs\\(\\) expects string, null given\\.$#', + 'path' => __DIR__ . '/src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php', + 'count' => 8, + ]; + // Erroneous analysis by Phpstan before PHP8 - mb_strlen does not return false + $config['parameters']['ignoreErrors'][] = [ + 'message' => '#^Method PhpOffice\\\\PhpSpreadsheet\\\\Shared\\\\StringHelper\\:\\:countCharacters\\(\\) should return int but returns int(<0, max>)?\\|false\\.$#', + 'path' => __DIR__ . '/src/PhpSpreadsheet/Shared/StringHelper.php', + 'count' => 1, + ]; +} else { + // Flagged in Php8+ - unsure how to correct code + $config['parameters']['ignoreErrors'][] = [ + 'message' => '#^Binary operation "/" between float and array[|]float[|]int[|]string results in an error.#', + 'path' => __DIR__ . '/src/PhpSpreadsheet/Calculation/MathTrig/Combinations.php', + 'count' => 2, + ]; +} + +return $config; diff --git a/src/vendor/phpoffice/phpspreadsheet/phpstan.neon.dist b/src/vendor/phpoffice/phpspreadsheet/phpstan.neon.dist new file mode 100644 index 0000000..61672b2 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/phpstan.neon.dist @@ -0,0 +1,27 @@ +includes: + - phpstan-baseline.neon + - phpstan-conditional.php + - vendor/phpstan/phpstan-phpunit/extension.neon + - vendor/phpstan/phpstan-phpunit/rules.neon + +parameters: + level: 8 + paths: + - src/ + - tests/ + excludePaths: + - src/PhpSpreadsheet/Chart/Renderer/JpGraph.php + parallel: + processTimeout: 300.0 + checkMissingIterableValueType: false + ignoreErrors: + - '~^Parameter \#1 \$im(age)? of function (imagedestroy|imageistruecolor|imagealphablending|imagesavealpha|imagecolortransparent|imagecolorsforindex|imagesavealpha|imagesx|imagesy) expects (GdImage|resource), GdImage\|resource given\.$~' + - '~^Parameter \#2 \$src_im(age)? of function imagecopy expects (GdImage|resource), GdImage\|resource given\.$~' + # Accept a bit anything for assert methods + - '~^Parameter \#2 .* of static method PHPUnit\\Framework\\Assert\:\:assert\w+\(\) expects .*, .* given\.$~' + - '~^Method PhpOffice\\PhpSpreadsheetTests\\.*\:\:test.*\(\) has parameter \$args with no type specified\.$~' + + # Some issues in Xls/Parser between 1.6.3 and 1.7.7 + - + message: "#^Offset '(left|right|value)' does not exist on (non-empty-array\\|string|array\\|null)\\.$#" + path: src/PhpSpreadsheet/Writer/Xls/Parser.php diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/ArrayEnabled.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/ArrayEnabled.php new file mode 100644 index 0000000..1e3f697 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/ArrayEnabled.php @@ -0,0 +1,133 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +use PhpOffice\PhpSpreadsheet\Calculation\Engine\ArrayArgumentHelper; +use PhpOffice\PhpSpreadsheet\Calculation\Engine\ArrayArgumentProcessor; + +trait ArrayEnabled +{ + /** + * @var ArrayArgumentHelper + */ + private static $arrayArgumentHelper; + + /** + * @param array|false $arguments Can be changed to array for Php8.1+ + */ + private static function initialiseHelper($arguments): void + { + if (self::$arrayArgumentHelper === null) { + self::$arrayArgumentHelper = new ArrayArgumentHelper(); + } + self::$arrayArgumentHelper->initialise(($arguments === false) ? [] : $arguments); + } + + /** + * Handles array argument processing when the function accepts a single argument that can be an array argument. + * Example use for: + * DAYOFMONTH() or FACT(). + */ + protected static function evaluateSingleArgumentArray(callable $method, array $values): array + { + $result = []; + foreach ($values as $value) { + $result[] = $method($value); + } + + return $result; + } + + /** + * Handles array argument processing when the function accepts multiple arguments, + * and any of them can be an array argument. + * Example use for: + * ROUND() or DATE(). + * + * @param mixed ...$arguments + */ + protected static function evaluateArrayArguments(callable $method, ...$arguments): array + { + self::initialiseHelper($arguments); + $arguments = self::$arrayArgumentHelper->arguments(); + + return ArrayArgumentProcessor::processArguments(self::$arrayArgumentHelper, $method, ...$arguments); + } + + /** + * Handles array argument processing when the function accepts multiple arguments, + * but only the first few (up to limit) can be an array arguments. + * Example use for: + * NETWORKDAYS() or CONCATENATE(), where the last argument is a matrix (or a series of values) that need + * to be treated as a such rather than as an array arguments. + * + * @param mixed ...$arguments + */ + protected static function evaluateArrayArgumentsSubset(callable $method, int $limit, ...$arguments): array + { + self::initialiseHelper(array_slice($arguments, 0, $limit)); + $trailingArguments = array_slice($arguments, $limit); + $arguments = self::$arrayArgumentHelper->arguments(); + $arguments = array_merge($arguments, $trailingArguments); + + return ArrayArgumentProcessor::processArguments(self::$arrayArgumentHelper, $method, ...$arguments); + } + + /** + * @param mixed $value + */ + private static function testFalse($value): bool + { + return $value === false; + } + + /** + * Handles array argument processing when the function accepts multiple arguments, + * but only the last few (from start) can be an array arguments. + * Example use for: + * Z.TEST() or INDEX(), where the first argument 1 is a matrix that needs to be treated as a dataset + * rather than as an array argument. + * + * @param mixed ...$arguments + */ + protected static function evaluateArrayArgumentsSubsetFrom(callable $method, int $start, ...$arguments): array + { + $arrayArgumentsSubset = array_combine( + range($start, count($arguments) - $start), + array_slice($arguments, $start) + ); + if (self::testFalse($arrayArgumentsSubset)) { + return ['#VALUE!']; + } + + self::initialiseHelper($arrayArgumentsSubset); + $leadingArguments = array_slice($arguments, 0, $start); + $arguments = self::$arrayArgumentHelper->arguments(); + $arguments = array_merge($leadingArguments, $arguments); + + return ArrayArgumentProcessor::processArguments(self::$arrayArgumentHelper, $method, ...$arguments); + } + + /** + * Handles array argument processing when the function accepts multiple arguments, + * and any of them can be an array argument except for the one specified by ignore. + * Example use for: + * HLOOKUP() and VLOOKUP(), where argument 1 is a matrix that needs to be treated as a database + * rather than as an array argument. + * + * @param mixed ...$arguments + */ + protected static function evaluateArrayArgumentsIgnore(callable $method, int $ignore, ...$arguments): array + { + $leadingArguments = array_slice($arguments, 0, $ignore); + $ignoreArgument = array_slice($arguments, $ignore, 1); + $trailingArguments = array_slice($arguments, $ignore + 1); + + self::initialiseHelper(array_merge($leadingArguments, [[null]], $trailingArguments)); + $arguments = self::$arrayArgumentHelper->arguments(); + + array_splice($arguments, $ignore, 1, $ignoreArgument); + + return ArrayArgumentProcessor::processArguments(self::$arrayArgumentHelper, $method, ...$arguments); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/BinaryComparison.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/BinaryComparison.php new file mode 100644 index 0000000..5d4f261 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/BinaryComparison.php @@ -0,0 +1,181 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; + +class BinaryComparison +{ + /** + * Epsilon Precision used for comparisons in calculations. + */ + private const DELTA = 0.1e-12; + + /** + * Compare two strings in the same way as strcmp() except that lowercase come before uppercase letters. + * + * @param null|string $str1 First string value for the comparison + * @param null|string $str2 Second string value for the comparison + */ + private static function strcmpLowercaseFirst($str1, $str2): int + { + $inversedStr1 = StringHelper::strCaseReverse($str1 ?? ''); + $inversedStr2 = StringHelper::strCaseReverse($str2 ?? ''); + + return strcmp($inversedStr1, $inversedStr2); + } + + /** + * PHP8.1 deprecates passing null to strcmp. + * + * @param null|string $str1 First string value for the comparison + * @param null|string $str2 Second string value for the comparison + */ + private static function strcmpAllowNull($str1, $str2): int + { + return strcmp($str1 ?? '', $str2 ?? ''); + } + + /** + * @param mixed $operand1 + * @param mixed $operand2 + */ + public static function compare($operand1, $operand2, string $operator): bool + { + // Simple validate the two operands if they are string values + if (is_string($operand1) && $operand1 > '' && $operand1[0] == Calculation::FORMULA_STRING_QUOTE) { + $operand1 = Calculation::unwrapResult($operand1); + } + if (is_string($operand2) && $operand2 > '' && $operand2[0] == Calculation::FORMULA_STRING_QUOTE) { + $operand2 = Calculation::unwrapResult($operand2); + } + + // Use case insensitive comparaison if not OpenOffice mode + if (Functions::getCompatibilityMode() != Functions::COMPATIBILITY_OPENOFFICE) { + if (is_string($operand1)) { + $operand1 = StringHelper::strToUpper($operand1); + } + if (is_string($operand2)) { + $operand2 = StringHelper::strToUpper($operand2); + } + } + + $useLowercaseFirstComparison = is_string($operand1) && + is_string($operand2) && + Functions::getCompatibilityMode() === Functions::COMPATIBILITY_OPENOFFICE; + + return self::evaluateComparison($operand1, $operand2, $operator, $useLowercaseFirstComparison); + } + + /** + * @param mixed $operand1 + * @param mixed $operand2 + */ + private static function evaluateComparison($operand1, $operand2, string $operator, bool $useLowercaseFirstComparison): bool + { + switch ($operator) { + // Equality + case '=': + return self::equal($operand1, $operand2); + // Greater than + case '>': + return self::greaterThan($operand1, $operand2, $useLowercaseFirstComparison); + // Less than + case '<': + return self::lessThan($operand1, $operand2, $useLowercaseFirstComparison); + // Greater than or equal + case '>=': + return self::greaterThanOrEqual($operand1, $operand2, $useLowercaseFirstComparison); + // Less than or equal + case '<=': + return self::lessThanOrEqual($operand1, $operand2, $useLowercaseFirstComparison); + // Inequality + case '<>': + return self::notEqual($operand1, $operand2); + default: + throw new Exception('Unsupported binary comparison operator'); + } + } + + /** + * @param mixed $operand1 + * @param mixed $operand2 + */ + private static function equal($operand1, $operand2): bool + { + if (is_numeric($operand1) && is_numeric($operand2)) { + $result = (abs($operand1 - $operand2) < self::DELTA); + } elseif (($operand1 === null && is_numeric($operand2)) || ($operand2 === null && is_numeric($operand1))) { + $result = $operand1 == $operand2; + } else { + $result = self::strcmpAllowNull($operand1, $operand2) == 0; + } + + return $result; + } + + /** + * @param mixed $operand1 + * @param mixed $operand2 + */ + private static function greaterThanOrEqual($operand1, $operand2, bool $useLowercaseFirstComparison): bool + { + if (is_numeric($operand1) && is_numeric($operand2)) { + $result = ((abs($operand1 - $operand2) < self::DELTA) || ($operand1 > $operand2)); + } elseif (($operand1 === null && is_numeric($operand2)) || ($operand2 === null && is_numeric($operand1))) { + $result = $operand1 >= $operand2; + } elseif ($useLowercaseFirstComparison) { + $result = self::strcmpLowercaseFirst($operand1, $operand2) >= 0; + } else { + $result = self::strcmpAllowNull($operand1, $operand2) >= 0; + } + + return $result; + } + + /** + * @param mixed $operand1 + * @param mixed $operand2 + */ + private static function lessThanOrEqual($operand1, $operand2, bool $useLowercaseFirstComparison): bool + { + if (is_numeric($operand1) && is_numeric($operand2)) { + $result = ((abs($operand1 - $operand2) < self::DELTA) || ($operand1 < $operand2)); + } elseif (($operand1 === null && is_numeric($operand2)) || ($operand2 === null && is_numeric($operand1))) { + $result = $operand1 <= $operand2; + } elseif ($useLowercaseFirstComparison) { + $result = self::strcmpLowercaseFirst($operand1, $operand2) <= 0; + } else { + $result = self::strcmpAllowNull($operand1, $operand2) <= 0; + } + + return $result; + } + + /** + * @param mixed $operand1 + * @param mixed $operand2 + */ + private static function greaterThan($operand1, $operand2, bool $useLowercaseFirstComparison): bool + { + return self::lessThanOrEqual($operand1, $operand2, $useLowercaseFirstComparison) !== true; + } + + /** + * @param mixed $operand1 + * @param mixed $operand2 + */ + private static function lessThan($operand1, $operand2, bool $useLowercaseFirstComparison): bool + { + return self::greaterThanOrEqual($operand1, $operand2, $useLowercaseFirstComparison) !== true; + } + + /** + * @param mixed $operand1 + * @param mixed $operand2 + */ + private static function notEqual($operand1, $operand2): bool + { + return self::equal($operand1, $operand2) !== true; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Calculation.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Calculation.php new file mode 100644 index 0000000..5b1c552 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Calculation.php @@ -0,0 +1,5533 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +use PhpOffice\PhpSpreadsheet\Calculation\Engine\BranchPruner; +use PhpOffice\PhpSpreadsheet\Calculation\Engine\CyclicReferenceStack; +use PhpOffice\PhpSpreadsheet\Calculation\Engine\Logger; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ErrorValue; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Calculation\Information\Value; +use PhpOffice\PhpSpreadsheet\Calculation\Token\Stack; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Cell\DataType; +use PhpOffice\PhpSpreadsheet\DefinedName; +use PhpOffice\PhpSpreadsheet\ReferenceHelper; +use PhpOffice\PhpSpreadsheet\Shared; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; +use ReflectionClassConstant; +use ReflectionMethod; +use ReflectionParameter; + +class Calculation +{ + /** Constants */ + /** Regular Expressions */ + // Numeric operand + const CALCULATION_REGEXP_NUMBER = '[-+]?\d*\.?\d+(e[-+]?\d+)?'; + // String operand + const CALCULATION_REGEXP_STRING = '"(?:[^"]|"")*"'; + // Opening bracket + const CALCULATION_REGEXP_OPENBRACE = '\('; + // Function (allow for the old @ symbol that could be used to prefix a function, but we'll ignore it) + const CALCULATION_REGEXP_FUNCTION = '@?(?:_xlfn\.)?([\p{L}][\p{L}\p{N}\.]*)[\s]*\('; + // Cell reference (cell or range of cells, with or without a sheet reference) + const CALCULATION_REGEXP_CELLREF = '((([^\s,!&%^\/\*\+<>=:`-]*)|(\'(?:[^\']|\'[^!])+?\')|(\"(?:[^\"]|\"[^!])+?\"))!)?\$?\b([a-z]{1,3})\$?(\d{1,7})(?![\w.])'; + // Cell reference (with or without a sheet reference) ensuring absolute/relative + const CALCULATION_REGEXP_CELLREF_RELATIVE = '((([^\s\(,!&%^\/\*\+<>=:`-]*)|(\'(?:[^\']|\'[^!])+?\')|(\"(?:[^\"]|\"[^!])+?\"))!)?(\$?\b[a-z]{1,3})(\$?\d{1,7})(?![\w.])'; + const CALCULATION_REGEXP_COLUMN_RANGE = '(((([^\s\(,!&%^\/\*\+<>=:`-]*)|(\'(?:[^\']|\'[^!])+?\')|(\".(?:[^\"]|\"[^!])?\"))!)?(\$?[a-z]{1,3})):(?![.*])'; + const CALCULATION_REGEXP_ROW_RANGE = '(((([^\s\(,!&%^\/\*\+<>=:`-]*)|(\'(?:[^\']|\'[^!])+?\')|(\"(?:[^\"]|\"[^!])+?\"))!)?(\$?[1-9][0-9]{0,6})):(?![.*])'; + // Cell reference (with or without a sheet reference) ensuring absolute/relative + // Cell ranges ensuring absolute/relative + const CALCULATION_REGEXP_COLUMNRANGE_RELATIVE = '(\$?[a-z]{1,3}):(\$?[a-z]{1,3})'; + const CALCULATION_REGEXP_ROWRANGE_RELATIVE = '(\$?\d{1,7}):(\$?\d{1,7})'; + // Defined Names: Named Range of cells, or Named Formulae + const CALCULATION_REGEXP_DEFINEDNAME = '((([^\s,!&%^\/\*\+<>=-]*)|(\'(?:[^\']|\'[^!])+?\')|(\"(?:[^\"]|\"[^!])+?\"))!)?([_\p{L}][_\p{L}\p{N}\.]*)'; + // Error + const CALCULATION_REGEXP_ERROR = '\#[A-Z][A-Z0_\/]*[!\?]?'; + + /** constants */ + const RETURN_ARRAY_AS_ERROR = 'error'; + const RETURN_ARRAY_AS_VALUE = 'value'; + const RETURN_ARRAY_AS_ARRAY = 'array'; + + const FORMULA_OPEN_FUNCTION_BRACE = '('; + const FORMULA_CLOSE_FUNCTION_BRACE = ')'; + const FORMULA_OPEN_MATRIX_BRACE = '{'; + const FORMULA_CLOSE_MATRIX_BRACE = '}'; + const FORMULA_STRING_QUOTE = '"'; + + private static $returnArrayAsType = self::RETURN_ARRAY_AS_VALUE; + + /** + * Instance of this class. + * + * @var Calculation + */ + private static $instance; + + /** + * Instance of the spreadsheet this Calculation Engine is using. + * + * @var Spreadsheet + */ + private $spreadsheet; + + /** + * Calculation cache. + * + * @var array + */ + private $calculationCache = []; + + /** + * Calculation cache enabled. + * + * @var bool + */ + private $calculationCacheEnabled = true; + + /** + * @var BranchPruner + */ + private $branchPruner; + + /** + * @var bool + */ + private $branchPruningEnabled = true; + + /** + * List of operators that can be used within formulae + * The true/false value indicates whether it is a binary operator or a unary operator. + * + * @var array + */ + private static $operators = [ + '+' => true, '-' => true, '*' => true, '/' => true, + '^' => true, '&' => true, '%' => false, '~' => false, + '>' => true, '<' => true, '=' => true, '>=' => true, + '<=' => true, '<>' => true, '∩' => true, '∪' => true, + ':' => true, + ]; + + /** + * List of binary operators (those that expect two operands). + * + * @var array + */ + private static $binaryOperators = [ + '+' => true, '-' => true, '*' => true, '/' => true, + '^' => true, '&' => true, '>' => true, '<' => true, + '=' => true, '>=' => true, '<=' => true, '<>' => true, + '∩' => true, '∪' => true, ':' => true, + ]; + + /** + * The debug log generated by the calculation engine. + * + * @var Logger + */ + private $debugLog; + + /** + * Flag to determine how formula errors should be handled + * If true, then a user error will be triggered + * If false, then an exception will be thrown. + * + * @var bool + */ + public $suppressFormulaErrors = false; + + /** + * Error message for any error that was raised/thrown by the calculation engine. + * + * @var null|string + */ + public $formulaError; + + /** + * Reference Helper. + * + * @var ReferenceHelper + */ + private static $referenceHelper; + + /** + * An array of the nested cell references accessed by the calculation engine, used for the debug log. + * + * @var CyclicReferenceStack + */ + private $cyclicReferenceStack; + + private $cellStack = []; + + /** + * Current iteration counter for cyclic formulae + * If the value is 0 (or less) then cyclic formulae will throw an exception, + * otherwise they will iterate to the limit defined here before returning a result. + * + * @var int + */ + private $cyclicFormulaCounter = 1; + + private $cyclicFormulaCell = ''; + + /** + * Number of iterations for cyclic formulae. + * + * @var int + */ + public $cyclicFormulaCount = 1; + + /** + * The current locale setting. + * + * @var string + */ + private static $localeLanguage = 'en_us'; // US English (default locale) + + /** + * List of available locale settings + * Note that this is read for the locale subdirectory only when requested. + * + * @var string[] + */ + private static $validLocaleLanguages = [ + 'en', // English (default language) + ]; + + /** + * Locale-specific argument separator for function arguments. + * + * @var string + */ + private static $localeArgumentSeparator = ','; + + private static $localeFunctions = []; + + /** + * Locale-specific translations for Excel constants (True, False and Null). + * + * @var array<string, string> + */ + public static $localeBoolean = [ + 'TRUE' => 'TRUE', + 'FALSE' => 'FALSE', + 'NULL' => 'NULL', + ]; + + /** + * Excel constant string translations to their PHP equivalents + * Constant conversion from text name/value to actual (datatyped) value. + * + * @var array<string, mixed> + */ + public static $excelConstants = [ + 'TRUE' => true, + 'FALSE' => false, + 'NULL' => null, + ]; + + // PhpSpreadsheet functions + private static $phpSpreadsheetFunctions = [ + 'ABS' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Absolute::class, 'evaluate'], + 'argumentCount' => '1', + ], + 'ACCRINT' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Securities\AccruedInterest::class, 'periodic'], + 'argumentCount' => '4-8', + ], + 'ACCRINTM' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Securities\AccruedInterest::class, 'atMaturity'], + 'argumentCount' => '3-5', + ], + 'ACOS' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Cosine::class, 'acos'], + 'argumentCount' => '1', + ], + 'ACOSH' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Cosine::class, 'acosh'], + 'argumentCount' => '1', + ], + 'ACOT' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Cotangent::class, 'acot'], + 'argumentCount' => '1', + ], + 'ACOTH' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Cotangent::class, 'acoth'], + 'argumentCount' => '1', + ], + 'ADDRESS' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\Address::class, 'cell'], + 'argumentCount' => '2-5', + ], + 'AGGREGATE' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '3+', + ], + 'AMORDEGRC' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Amortization::class, 'AMORDEGRC'], + 'argumentCount' => '6,7', + ], + 'AMORLINC' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Amortization::class, 'AMORLINC'], + 'argumentCount' => '6,7', + ], + 'AND' => [ + 'category' => Category::CATEGORY_LOGICAL, + 'functionCall' => [Logical\Operations::class, 'logicalAnd'], + 'argumentCount' => '1+', + ], + 'ARABIC' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Arabic::class, 'evaluate'], + 'argumentCount' => '1', + ], + 'AREAS' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1', + ], + 'ARRAYTOTEXT' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'ASC' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1', + ], + 'ASIN' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Sine::class, 'asin'], + 'argumentCount' => '1', + ], + 'ASINH' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Sine::class, 'asinh'], + 'argumentCount' => '1', + ], + 'ATAN' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Tangent::class, 'atan'], + 'argumentCount' => '1', + ], + 'ATAN2' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Tangent::class, 'atan2'], + 'argumentCount' => '2', + ], + 'ATANH' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Tangent::class, 'atanh'], + 'argumentCount' => '1', + ], + 'AVEDEV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Averages::class, 'averageDeviations'], + 'argumentCount' => '1+', + ], + 'AVERAGE' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Averages::class, 'average'], + 'argumentCount' => '1+', + ], + 'AVERAGEA' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Averages::class, 'averageA'], + 'argumentCount' => '1+', + ], + 'AVERAGEIF' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Conditional::class, 'AVERAGEIF'], + 'argumentCount' => '2,3', + ], + 'AVERAGEIFS' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Conditional::class, 'AVERAGEIFS'], + 'argumentCount' => '3+', + ], + 'BAHTTEXT' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1', + ], + 'BASE' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Base::class, 'evaluate'], + 'argumentCount' => '2,3', + ], + 'BESSELI' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\BesselI::class, 'BESSELI'], + 'argumentCount' => '2', + ], + 'BESSELJ' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\BesselJ::class, 'BESSELJ'], + 'argumentCount' => '2', + ], + 'BESSELK' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\BesselK::class, 'BESSELK'], + 'argumentCount' => '2', + ], + 'BESSELY' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\BesselY::class, 'BESSELY'], + 'argumentCount' => '2', + ], + 'BETADIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Beta::class, 'distribution'], + 'argumentCount' => '3-5', + ], + 'BETA.DIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '4-6', + ], + 'BETAINV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Beta::class, 'inverse'], + 'argumentCount' => '3-5', + ], + 'BETA.INV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Beta::class, 'inverse'], + 'argumentCount' => '3-5', + ], + 'BIN2DEC' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ConvertBinary::class, 'toDecimal'], + 'argumentCount' => '1', + ], + 'BIN2HEX' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ConvertBinary::class, 'toHex'], + 'argumentCount' => '1,2', + ], + 'BIN2OCT' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ConvertBinary::class, 'toOctal'], + 'argumentCount' => '1,2', + ], + 'BINOMDIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Binomial::class, 'distribution'], + 'argumentCount' => '4', + ], + 'BINOM.DIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Binomial::class, 'distribution'], + 'argumentCount' => '4', + ], + 'BINOM.DIST.RANGE' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Binomial::class, 'range'], + 'argumentCount' => '3,4', + ], + 'BINOM.INV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Binomial::class, 'inverse'], + 'argumentCount' => '3', + ], + 'BITAND' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\BitWise::class, 'BITAND'], + 'argumentCount' => '2', + ], + 'BITOR' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\BitWise::class, 'BITOR'], + 'argumentCount' => '2', + ], + 'BITXOR' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\BitWise::class, 'BITXOR'], + 'argumentCount' => '2', + ], + 'BITLSHIFT' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\BitWise::class, 'BITLSHIFT'], + 'argumentCount' => '2', + ], + 'BITRSHIFT' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\BitWise::class, 'BITRSHIFT'], + 'argumentCount' => '2', + ], + 'CEILING' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Ceiling::class, 'ceiling'], + 'argumentCount' => '1-2', // 2 for Excel, 1-2 for Ods/Gnumeric + ], + 'CEILING.MATH' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Ceiling::class, 'math'], + 'argumentCount' => '1-3', + ], + 'CEILING.PRECISE' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Ceiling::class, 'precise'], + 'argumentCount' => '1,2', + ], + 'CELL' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1,2', + ], + 'CHAR' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\CharacterConvert::class, 'character'], + 'argumentCount' => '1', + ], + 'CHIDIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\ChiSquared::class, 'distributionRightTail'], + 'argumentCount' => '2', + ], + 'CHISQ.DIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\ChiSquared::class, 'distributionLeftTail'], + 'argumentCount' => '3', + ], + 'CHISQ.DIST.RT' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\ChiSquared::class, 'distributionRightTail'], + 'argumentCount' => '2', + ], + 'CHIINV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\ChiSquared::class, 'inverseRightTail'], + 'argumentCount' => '2', + ], + 'CHISQ.INV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\ChiSquared::class, 'inverseLeftTail'], + 'argumentCount' => '2', + ], + 'CHISQ.INV.RT' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\ChiSquared::class, 'inverseRightTail'], + 'argumentCount' => '2', + ], + 'CHITEST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\ChiSquared::class, 'test'], + 'argumentCount' => '2', + ], + 'CHISQ.TEST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\ChiSquared::class, 'test'], + 'argumentCount' => '2', + ], + 'CHOOSE' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\Selection::class, 'CHOOSE'], + 'argumentCount' => '2+', + ], + 'CHOOSECOLS' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2+', + ], + 'CHOOSEROWS' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2+', + ], + 'CLEAN' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Trim::class, 'nonPrintable'], + 'argumentCount' => '1', + ], + 'CODE' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\CharacterConvert::class, 'code'], + 'argumentCount' => '1', + ], + 'COLUMN' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\RowColumnInformation::class, 'COLUMN'], + 'argumentCount' => '-1', + 'passCellReference' => true, + 'passByReference' => [true], + ], + 'COLUMNS' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\RowColumnInformation::class, 'COLUMNS'], + 'argumentCount' => '1', + ], + 'COMBIN' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Combinations::class, 'withoutRepetition'], + 'argumentCount' => '2', + ], + 'COMBINA' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Combinations::class, 'withRepetition'], + 'argumentCount' => '2', + ], + 'COMPLEX' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\Complex::class, 'COMPLEX'], + 'argumentCount' => '2,3', + ], + 'CONCAT' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Concatenate::class, 'CONCATENATE'], + 'argumentCount' => '1+', + ], + 'CONCATENATE' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Concatenate::class, 'CONCATENATE'], + 'argumentCount' => '1+', + ], + 'CONFIDENCE' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Confidence::class, 'CONFIDENCE'], + 'argumentCount' => '3', + ], + 'CONFIDENCE.NORM' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Confidence::class, 'CONFIDENCE'], + 'argumentCount' => '3', + ], + 'CONFIDENCE.T' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '3', + ], + 'CONVERT' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ConvertUOM::class, 'CONVERT'], + 'argumentCount' => '3', + ], + 'CORREL' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Trends::class, 'CORREL'], + 'argumentCount' => '2', + ], + 'COS' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Cosine::class, 'cos'], + 'argumentCount' => '1', + ], + 'COSH' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Cosine::class, 'cosh'], + 'argumentCount' => '1', + ], + 'COT' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Cotangent::class, 'cot'], + 'argumentCount' => '1', + ], + 'COTH' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Cotangent::class, 'coth'], + 'argumentCount' => '1', + ], + 'COUNT' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Counts::class, 'COUNT'], + 'argumentCount' => '1+', + ], + 'COUNTA' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Counts::class, 'COUNTA'], + 'argumentCount' => '1+', + ], + 'COUNTBLANK' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Counts::class, 'COUNTBLANK'], + 'argumentCount' => '1', + ], + 'COUNTIF' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Conditional::class, 'COUNTIF'], + 'argumentCount' => '2', + ], + 'COUNTIFS' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Conditional::class, 'COUNTIFS'], + 'argumentCount' => '2+', + ], + 'COUPDAYBS' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Coupons::class, 'COUPDAYBS'], + 'argumentCount' => '3,4', + ], + 'COUPDAYS' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Coupons::class, 'COUPDAYS'], + 'argumentCount' => '3,4', + ], + 'COUPDAYSNC' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Coupons::class, 'COUPDAYSNC'], + 'argumentCount' => '3,4', + ], + 'COUPNCD' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Coupons::class, 'COUPNCD'], + 'argumentCount' => '3,4', + ], + 'COUPNUM' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Coupons::class, 'COUPNUM'], + 'argumentCount' => '3,4', + ], + 'COUPPCD' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Coupons::class, 'COUPPCD'], + 'argumentCount' => '3,4', + ], + 'COVAR' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Trends::class, 'COVAR'], + 'argumentCount' => '2', + ], + 'COVARIANCE.P' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Trends::class, 'COVAR'], + 'argumentCount' => '2', + ], + 'COVARIANCE.S' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2', + ], + 'CRITBINOM' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Binomial::class, 'inverse'], + 'argumentCount' => '3', + ], + 'CSC' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Cosecant::class, 'csc'], + 'argumentCount' => '1', + ], + 'CSCH' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Cosecant::class, 'csch'], + 'argumentCount' => '1', + ], + 'CUBEKPIMEMBER' => [ + 'category' => Category::CATEGORY_CUBE, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'CUBEMEMBER' => [ + 'category' => Category::CATEGORY_CUBE, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'CUBEMEMBERPROPERTY' => [ + 'category' => Category::CATEGORY_CUBE, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'CUBERANKEDMEMBER' => [ + 'category' => Category::CATEGORY_CUBE, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'CUBESET' => [ + 'category' => Category::CATEGORY_CUBE, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'CUBESETCOUNT' => [ + 'category' => Category::CATEGORY_CUBE, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'CUBEVALUE' => [ + 'category' => Category::CATEGORY_CUBE, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'CUMIPMT' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Constant\Periodic\Cumulative::class, 'interest'], + 'argumentCount' => '6', + ], + 'CUMPRINC' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Constant\Periodic\Cumulative::class, 'principal'], + 'argumentCount' => '6', + ], + 'DATE' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\Date::class, 'fromYMD'], + 'argumentCount' => '3', + ], + 'DATEDIF' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\Difference::class, 'interval'], + 'argumentCount' => '2,3', + ], + 'DATESTRING' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'DATEVALUE' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\DateValue::class, 'fromString'], + 'argumentCount' => '1', + ], + 'DAVERAGE' => [ + 'category' => Category::CATEGORY_DATABASE, + 'functionCall' => [Database\DAverage::class, 'evaluate'], + 'argumentCount' => '3', + ], + 'DAY' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\DateParts::class, 'day'], + 'argumentCount' => '1', + ], + 'DAYS' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\Days::class, 'between'], + 'argumentCount' => '2', + ], + 'DAYS360' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\Days360::class, 'between'], + 'argumentCount' => '2,3', + ], + 'DB' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Depreciation::class, 'DB'], + 'argumentCount' => '4,5', + ], + 'DBCS' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1', + ], + 'DCOUNT' => [ + 'category' => Category::CATEGORY_DATABASE, + 'functionCall' => [Database\DCount::class, 'evaluate'], + 'argumentCount' => '3', + ], + 'DCOUNTA' => [ + 'category' => Category::CATEGORY_DATABASE, + 'functionCall' => [Database\DCountA::class, 'evaluate'], + 'argumentCount' => '3', + ], + 'DDB' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Depreciation::class, 'DDB'], + 'argumentCount' => '4,5', + ], + 'DEC2BIN' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ConvertDecimal::class, 'toBinary'], + 'argumentCount' => '1,2', + ], + 'DEC2HEX' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ConvertDecimal::class, 'toHex'], + 'argumentCount' => '1,2', + ], + 'DEC2OCT' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ConvertDecimal::class, 'toOctal'], + 'argumentCount' => '1,2', + ], + 'DECIMAL' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2', + ], + 'DEGREES' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Angle::class, 'toDegrees'], + 'argumentCount' => '1', + ], + 'DELTA' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\Compare::class, 'DELTA'], + 'argumentCount' => '1,2', + ], + 'DEVSQ' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Deviations::class, 'sumSquares'], + 'argumentCount' => '1+', + ], + 'DGET' => [ + 'category' => Category::CATEGORY_DATABASE, + 'functionCall' => [Database\DGet::class, 'evaluate'], + 'argumentCount' => '3', + ], + 'DISC' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Securities\Rates::class, 'discount'], + 'argumentCount' => '4,5', + ], + 'DMAX' => [ + 'category' => Category::CATEGORY_DATABASE, + 'functionCall' => [Database\DMax::class, 'evaluate'], + 'argumentCount' => '3', + ], + 'DMIN' => [ + 'category' => Category::CATEGORY_DATABASE, + 'functionCall' => [Database\DMin::class, 'evaluate'], + 'argumentCount' => '3', + ], + 'DOLLAR' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Format::class, 'DOLLAR'], + 'argumentCount' => '1,2', + ], + 'DOLLARDE' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Dollar::class, 'decimal'], + 'argumentCount' => '2', + ], + 'DOLLARFR' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Dollar::class, 'fractional'], + 'argumentCount' => '2', + ], + 'DPRODUCT' => [ + 'category' => Category::CATEGORY_DATABASE, + 'functionCall' => [Database\DProduct::class, 'evaluate'], + 'argumentCount' => '3', + ], + 'DROP' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2-3', + ], + 'DSTDEV' => [ + 'category' => Category::CATEGORY_DATABASE, + 'functionCall' => [Database\DStDev::class, 'evaluate'], + 'argumentCount' => '3', + ], + 'DSTDEVP' => [ + 'category' => Category::CATEGORY_DATABASE, + 'functionCall' => [Database\DStDevP::class, 'evaluate'], + 'argumentCount' => '3', + ], + 'DSUM' => [ + 'category' => Category::CATEGORY_DATABASE, + 'functionCall' => [Database\DSum::class, 'evaluate'], + 'argumentCount' => '3', + ], + 'DURATION' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '5,6', + ], + 'DVAR' => [ + 'category' => Category::CATEGORY_DATABASE, + 'functionCall' => [Database\DVar::class, 'evaluate'], + 'argumentCount' => '3', + ], + 'DVARP' => [ + 'category' => Category::CATEGORY_DATABASE, + 'functionCall' => [Database\DVarP::class, 'evaluate'], + 'argumentCount' => '3', + ], + 'ECMA.CEILING' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1,2', + ], + 'EDATE' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\Month::class, 'adjust'], + 'argumentCount' => '2', + ], + 'EFFECT' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\InterestRate::class, 'effective'], + 'argumentCount' => '2', + ], + 'ENCODEURL' => [ + 'category' => Category::CATEGORY_WEB, + 'functionCall' => [Web\Service::class, 'urlEncode'], + 'argumentCount' => '1', + ], + 'EOMONTH' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\Month::class, 'lastDay'], + 'argumentCount' => '2', + ], + 'ERF' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\Erf::class, 'ERF'], + 'argumentCount' => '1,2', + ], + 'ERF.PRECISE' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\Erf::class, 'ERFPRECISE'], + 'argumentCount' => '1', + ], + 'ERFC' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ErfC::class, 'ERFC'], + 'argumentCount' => '1', + ], + 'ERFC.PRECISE' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ErfC::class, 'ERFC'], + 'argumentCount' => '1', + ], + 'ERROR.TYPE' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Information\ExcelError::class, 'type'], + 'argumentCount' => '1', + ], + 'EVEN' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Round::class, 'even'], + 'argumentCount' => '1', + ], + 'EXACT' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Text::class, 'exact'], + 'argumentCount' => '2', + ], + 'EXP' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Exp::class, 'evaluate'], + 'argumentCount' => '1', + ], + 'EXPAND' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2-4', + ], + 'EXPONDIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Exponential::class, 'distribution'], + 'argumentCount' => '3', + ], + 'EXPON.DIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Exponential::class, 'distribution'], + 'argumentCount' => '3', + ], + 'FACT' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Factorial::class, 'fact'], + 'argumentCount' => '1', + ], + 'FACTDOUBLE' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Factorial::class, 'factDouble'], + 'argumentCount' => '1', + ], + 'FALSE' => [ + 'category' => Category::CATEGORY_LOGICAL, + 'functionCall' => [Logical\Boolean::class, 'FALSE'], + 'argumentCount' => '0', + ], + 'FDIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '3', + ], + 'F.DIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\F::class, 'distribution'], + 'argumentCount' => '4', + ], + 'F.DIST.RT' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '3', + ], + 'FILTER' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\Filter::class, 'filter'], + 'argumentCount' => '2-3', + ], + 'FILTERXML' => [ + 'category' => Category::CATEGORY_WEB, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2', + ], + 'FIND' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Search::class, 'sensitive'], + 'argumentCount' => '2,3', + ], + 'FINDB' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Search::class, 'sensitive'], + 'argumentCount' => '2,3', + ], + 'FINV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '3', + ], + 'F.INV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '3', + ], + 'F.INV.RT' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '3', + ], + 'FISHER' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Fisher::class, 'distribution'], + 'argumentCount' => '1', + ], + 'FISHERINV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Fisher::class, 'inverse'], + 'argumentCount' => '1', + ], + 'FIXED' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Format::class, 'FIXEDFORMAT'], + 'argumentCount' => '1-3', + ], + 'FLOOR' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Floor::class, 'floor'], + 'argumentCount' => '1-2', // Excel requries 2, Ods/Gnumeric 1-2 + ], + 'FLOOR.MATH' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Floor::class, 'math'], + 'argumentCount' => '1-3', + ], + 'FLOOR.PRECISE' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Floor::class, 'precise'], + 'argumentCount' => '1-2', + ], + 'FORECAST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Trends::class, 'FORECAST'], + 'argumentCount' => '3', + ], + 'FORECAST.ETS' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '3-6', + ], + 'FORECAST.ETS.CONFINT' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '3-6', + ], + 'FORECAST.ETS.SEASONALITY' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2-4', + ], + 'FORECAST.ETS.STAT' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '3-6', + ], + 'FORECAST.LINEAR' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Trends::class, 'FORECAST'], + 'argumentCount' => '3', + ], + 'FORMULATEXT' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\Formula::class, 'text'], + 'argumentCount' => '1', + 'passCellReference' => true, + 'passByReference' => [true], + ], + 'FREQUENCY' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2', + ], + 'FTEST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2', + ], + 'F.TEST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2', + ], + 'FV' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Constant\Periodic::class, 'futureValue'], + 'argumentCount' => '3-5', + ], + 'FVSCHEDULE' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Single::class, 'futureValue'], + 'argumentCount' => '2', + ], + 'GAMMA' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Gamma::class, 'gamma'], + 'argumentCount' => '1', + ], + 'GAMMADIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Gamma::class, 'distribution'], + 'argumentCount' => '4', + ], + 'GAMMA.DIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Gamma::class, 'distribution'], + 'argumentCount' => '4', + ], + 'GAMMAINV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Gamma::class, 'inverse'], + 'argumentCount' => '3', + ], + 'GAMMA.INV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Gamma::class, 'inverse'], + 'argumentCount' => '3', + ], + 'GAMMALN' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Gamma::class, 'ln'], + 'argumentCount' => '1', + ], + 'GAMMALN.PRECISE' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Gamma::class, 'ln'], + 'argumentCount' => '1', + ], + 'GAUSS' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\StandardNormal::class, 'gauss'], + 'argumentCount' => '1', + ], + 'GCD' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Gcd::class, 'evaluate'], + 'argumentCount' => '1+', + ], + 'GEOMEAN' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Averages\Mean::class, 'geometric'], + 'argumentCount' => '1+', + ], + 'GESTEP' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\Compare::class, 'GESTEP'], + 'argumentCount' => '1,2', + ], + 'GETPIVOTDATA' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2+', + ], + 'GROWTH' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Trends::class, 'GROWTH'], + 'argumentCount' => '1-4', + ], + 'HARMEAN' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Averages\Mean::class, 'harmonic'], + 'argumentCount' => '1+', + ], + 'HEX2BIN' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ConvertHex::class, 'toBinary'], + 'argumentCount' => '1,2', + ], + 'HEX2DEC' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ConvertHex::class, 'toDecimal'], + 'argumentCount' => '1', + ], + 'HEX2OCT' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ConvertHex::class, 'toOctal'], + 'argumentCount' => '1,2', + ], + 'HLOOKUP' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\HLookup::class, 'lookup'], + 'argumentCount' => '3,4', + ], + 'HOUR' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\TimeParts::class, 'hour'], + 'argumentCount' => '1', + ], + 'HSTACK' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1+', + ], + 'HYPERLINK' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\Hyperlink::class, 'set'], + 'argumentCount' => '1,2', + 'passCellReference' => true, + ], + 'HYPGEOMDIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\HyperGeometric::class, 'distribution'], + 'argumentCount' => '4', + ], + 'HYPGEOM.DIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '5', + ], + 'IF' => [ + 'category' => Category::CATEGORY_LOGICAL, + 'functionCall' => [Logical\Conditional::class, 'statementIf'], + 'argumentCount' => '1-3', + ], + 'IFERROR' => [ + 'category' => Category::CATEGORY_LOGICAL, + 'functionCall' => [Logical\Conditional::class, 'IFERROR'], + 'argumentCount' => '2', + ], + 'IFNA' => [ + 'category' => Category::CATEGORY_LOGICAL, + 'functionCall' => [Logical\Conditional::class, 'IFNA'], + 'argumentCount' => '2', + ], + 'IFS' => [ + 'category' => Category::CATEGORY_LOGICAL, + 'functionCall' => [Logical\Conditional::class, 'IFS'], + 'argumentCount' => '2+', + ], + 'IMABS' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMABS'], + 'argumentCount' => '1', + ], + 'IMAGINARY' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\Complex::class, 'IMAGINARY'], + 'argumentCount' => '1', + ], + 'IMARGUMENT' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMARGUMENT'], + 'argumentCount' => '1', + ], + 'IMCONJUGATE' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMCONJUGATE'], + 'argumentCount' => '1', + ], + 'IMCOS' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMCOS'], + 'argumentCount' => '1', + ], + 'IMCOSH' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMCOSH'], + 'argumentCount' => '1', + ], + 'IMCOT' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMCOT'], + 'argumentCount' => '1', + ], + 'IMCSC' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMCSC'], + 'argumentCount' => '1', + ], + 'IMCSCH' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMCSCH'], + 'argumentCount' => '1', + ], + 'IMDIV' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexOperations::class, 'IMDIV'], + 'argumentCount' => '2', + ], + 'IMEXP' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMEXP'], + 'argumentCount' => '1', + ], + 'IMLN' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMLN'], + 'argumentCount' => '1', + ], + 'IMLOG10' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMLOG10'], + 'argumentCount' => '1', + ], + 'IMLOG2' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMLOG2'], + 'argumentCount' => '1', + ], + 'IMPOWER' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMPOWER'], + 'argumentCount' => '2', + ], + 'IMPRODUCT' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexOperations::class, 'IMPRODUCT'], + 'argumentCount' => '1+', + ], + 'IMREAL' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\Complex::class, 'IMREAL'], + 'argumentCount' => '1', + ], + 'IMSEC' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMSEC'], + 'argumentCount' => '1', + ], + 'IMSECH' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMSECH'], + 'argumentCount' => '1', + ], + 'IMSIN' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMSIN'], + 'argumentCount' => '1', + ], + 'IMSINH' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMSINH'], + 'argumentCount' => '1', + ], + 'IMSQRT' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMSQRT'], + 'argumentCount' => '1', + ], + 'IMSUB' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexOperations::class, 'IMSUB'], + 'argumentCount' => '2', + ], + 'IMSUM' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexOperations::class, 'IMSUM'], + 'argumentCount' => '1+', + ], + 'IMTAN' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ComplexFunctions::class, 'IMTAN'], + 'argumentCount' => '1', + ], + 'INDEX' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\Matrix::class, 'index'], + 'argumentCount' => '1-4', + ], + 'INDIRECT' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\Indirect::class, 'INDIRECT'], + 'argumentCount' => '1,2', + 'passCellReference' => true, + ], + 'INFO' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1', + ], + 'INT' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\IntClass::class, 'evaluate'], + 'argumentCount' => '1', + ], + 'INTERCEPT' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Trends::class, 'INTERCEPT'], + 'argumentCount' => '2', + ], + 'INTRATE' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Securities\Rates::class, 'interest'], + 'argumentCount' => '4,5', + ], + 'IPMT' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Constant\Periodic\Interest::class, 'payment'], + 'argumentCount' => '4-6', + ], + 'IRR' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Variable\Periodic::class, 'rate'], + 'argumentCount' => '1,2', + ], + 'ISBLANK' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Information\Value::class, 'isBlank'], + 'argumentCount' => '1', + ], + 'ISERR' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Information\ErrorValue::class, 'isErr'], + 'argumentCount' => '1', + ], + 'ISERROR' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Information\ErrorValue::class, 'isError'], + 'argumentCount' => '1', + ], + 'ISEVEN' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Information\Value::class, 'isEven'], + 'argumentCount' => '1', + ], + 'ISFORMULA' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Information\Value::class, 'isFormula'], + 'argumentCount' => '1', + 'passCellReference' => true, + 'passByReference' => [true], + ], + 'ISLOGICAL' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Information\Value::class, 'isLogical'], + 'argumentCount' => '1', + ], + 'ISNA' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Information\ErrorValue::class, 'isNa'], + 'argumentCount' => '1', + ], + 'ISNONTEXT' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Information\Value::class, 'isNonText'], + 'argumentCount' => '1', + ], + 'ISNUMBER' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Information\Value::class, 'isNumber'], + 'argumentCount' => '1', + ], + 'ISO.CEILING' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1,2', + ], + 'ISODD' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Information\Value::class, 'isOdd'], + 'argumentCount' => '1', + ], + 'ISOWEEKNUM' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\Week::class, 'isoWeekNumber'], + 'argumentCount' => '1', + ], + 'ISPMT' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Constant\Periodic\Interest::class, 'schedulePayment'], + 'argumentCount' => '4', + ], + 'ISREF' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Information\Value::class, 'isRef'], + 'argumentCount' => '1', + 'passCellReference' => true, + 'passByReference' => [true], + ], + 'ISTEXT' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Information\Value::class, 'isText'], + 'argumentCount' => '1', + ], + 'ISTHAIDIGIT' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'JIS' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1', + ], + 'KURT' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Deviations::class, 'kurtosis'], + 'argumentCount' => '1+', + ], + 'LARGE' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Size::class, 'large'], + 'argumentCount' => '2', + ], + 'LCM' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Lcm::class, 'evaluate'], + 'argumentCount' => '1+', + ], + 'LEFT' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Extract::class, 'left'], + 'argumentCount' => '1,2', + ], + 'LEFTB' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Extract::class, 'left'], + 'argumentCount' => '1,2', + ], + 'LEN' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Text::class, 'length'], + 'argumentCount' => '1', + ], + 'LENB' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Text::class, 'length'], + 'argumentCount' => '1', + ], + 'LINEST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Trends::class, 'LINEST'], + 'argumentCount' => '1-4', + ], + 'LN' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Logarithms::class, 'natural'], + 'argumentCount' => '1', + ], + 'LOG' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Logarithms::class, 'withBase'], + 'argumentCount' => '1,2', + ], + 'LOG10' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Logarithms::class, 'base10'], + 'argumentCount' => '1', + ], + 'LOGEST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Trends::class, 'LOGEST'], + 'argumentCount' => '1-4', + ], + 'LOGINV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\LogNormal::class, 'inverse'], + 'argumentCount' => '3', + ], + 'LOGNORMDIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\LogNormal::class, 'cumulative'], + 'argumentCount' => '3', + ], + 'LOGNORM.DIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\LogNormal::class, 'distribution'], + 'argumentCount' => '4', + ], + 'LOGNORM.INV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\LogNormal::class, 'inverse'], + 'argumentCount' => '3', + ], + 'LOOKUP' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\Lookup::class, 'lookup'], + 'argumentCount' => '2,3', + ], + 'LOWER' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\CaseConvert::class, 'lower'], + 'argumentCount' => '1', + ], + 'MATCH' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\ExcelMatch::class, 'MATCH'], + 'argumentCount' => '2,3', + ], + 'MAX' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Maximum::class, 'max'], + 'argumentCount' => '1+', + ], + 'MAXA' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Maximum::class, 'maxA'], + 'argumentCount' => '1+', + ], + 'MAXIFS' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Conditional::class, 'MAXIFS'], + 'argumentCount' => '3+', + ], + 'MDETERM' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\MatrixFunctions::class, 'determinant'], + 'argumentCount' => '1', + ], + 'MDURATION' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '5,6', + ], + 'MEDIAN' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Averages::class, 'median'], + 'argumentCount' => '1+', + ], + 'MEDIANIF' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2+', + ], + 'MID' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Extract::class, 'mid'], + 'argumentCount' => '3', + ], + 'MIDB' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Extract::class, 'mid'], + 'argumentCount' => '3', + ], + 'MIN' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Minimum::class, 'min'], + 'argumentCount' => '1+', + ], + 'MINA' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Minimum::class, 'minA'], + 'argumentCount' => '1+', + ], + 'MINIFS' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Conditional::class, 'MINIFS'], + 'argumentCount' => '3+', + ], + 'MINUTE' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\TimeParts::class, 'minute'], + 'argumentCount' => '1', + ], + 'MINVERSE' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\MatrixFunctions::class, 'inverse'], + 'argumentCount' => '1', + ], + 'MIRR' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Variable\Periodic::class, 'modifiedRate'], + 'argumentCount' => '3', + ], + 'MMULT' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\MatrixFunctions::class, 'multiply'], + 'argumentCount' => '2', + ], + 'MOD' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Operations::class, 'mod'], + 'argumentCount' => '2', + ], + 'MODE' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Averages::class, 'mode'], + 'argumentCount' => '1+', + ], + 'MODE.MULT' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1+', + ], + 'MODE.SNGL' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Averages::class, 'mode'], + 'argumentCount' => '1+', + ], + 'MONTH' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\DateParts::class, 'month'], + 'argumentCount' => '1', + ], + 'MROUND' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Round::class, 'multiple'], + 'argumentCount' => '2', + ], + 'MULTINOMIAL' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Factorial::class, 'multinomial'], + 'argumentCount' => '1+', + ], + 'MUNIT' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\MatrixFunctions::class, 'identity'], + 'argumentCount' => '1', + ], + 'N' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Information\Value::class, 'asNumber'], + 'argumentCount' => '1', + ], + 'NA' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Information\ExcelError::class, 'NA'], + 'argumentCount' => '0', + ], + 'NEGBINOMDIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Binomial::class, 'negative'], + 'argumentCount' => '3', + ], + 'NEGBINOM.DIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '4', + ], + 'NETWORKDAYS' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\NetworkDays::class, 'count'], + 'argumentCount' => '2-3', + ], + 'NETWORKDAYS.INTL' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2-4', + ], + 'NOMINAL' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\InterestRate::class, 'nominal'], + 'argumentCount' => '2', + ], + 'NORMDIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Normal::class, 'distribution'], + 'argumentCount' => '4', + ], + 'NORM.DIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Normal::class, 'distribution'], + 'argumentCount' => '4', + ], + 'NORMINV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Normal::class, 'inverse'], + 'argumentCount' => '3', + ], + 'NORM.INV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Normal::class, 'inverse'], + 'argumentCount' => '3', + ], + 'NORMSDIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\StandardNormal::class, 'cumulative'], + 'argumentCount' => '1', + ], + 'NORM.S.DIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\StandardNormal::class, 'distribution'], + 'argumentCount' => '1,2', + ], + 'NORMSINV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\StandardNormal::class, 'inverse'], + 'argumentCount' => '1', + ], + 'NORM.S.INV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\StandardNormal::class, 'inverse'], + 'argumentCount' => '1', + ], + 'NOT' => [ + 'category' => Category::CATEGORY_LOGICAL, + 'functionCall' => [Logical\Operations::class, 'NOT'], + 'argumentCount' => '1', + ], + 'NOW' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\Current::class, 'now'], + 'argumentCount' => '0', + ], + 'NPER' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Constant\Periodic::class, 'periods'], + 'argumentCount' => '3-5', + ], + 'NPV' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Variable\Periodic::class, 'presentValue'], + 'argumentCount' => '2+', + ], + 'NUMBERSTRING' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'NUMBERVALUE' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Format::class, 'NUMBERVALUE'], + 'argumentCount' => '1+', + ], + 'OCT2BIN' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ConvertOctal::class, 'toBinary'], + 'argumentCount' => '1,2', + ], + 'OCT2DEC' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ConvertOctal::class, 'toDecimal'], + 'argumentCount' => '1', + ], + 'OCT2HEX' => [ + 'category' => Category::CATEGORY_ENGINEERING, + 'functionCall' => [Engineering\ConvertOctal::class, 'toHex'], + 'argumentCount' => '1,2', + ], + 'ODD' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Round::class, 'odd'], + 'argumentCount' => '1', + ], + 'ODDFPRICE' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '8,9', + ], + 'ODDFYIELD' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '8,9', + ], + 'ODDLPRICE' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '7,8', + ], + 'ODDLYIELD' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '7,8', + ], + 'OFFSET' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\Offset::class, 'OFFSET'], + 'argumentCount' => '3-5', + 'passCellReference' => true, + 'passByReference' => [true], + ], + 'OR' => [ + 'category' => Category::CATEGORY_LOGICAL, + 'functionCall' => [Logical\Operations::class, 'logicalOr'], + 'argumentCount' => '1+', + ], + 'PDURATION' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Single::class, 'periods'], + 'argumentCount' => '3', + ], + 'PEARSON' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Trends::class, 'CORREL'], + 'argumentCount' => '2', + ], + 'PERCENTILE' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Percentiles::class, 'PERCENTILE'], + 'argumentCount' => '2', + ], + 'PERCENTILE.EXC' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2', + ], + 'PERCENTILE.INC' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Percentiles::class, 'PERCENTILE'], + 'argumentCount' => '2', + ], + 'PERCENTRANK' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Percentiles::class, 'PERCENTRANK'], + 'argumentCount' => '2,3', + ], + 'PERCENTRANK.EXC' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2,3', + ], + 'PERCENTRANK.INC' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Percentiles::class, 'PERCENTRANK'], + 'argumentCount' => '2,3', + ], + 'PERMUT' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Permutations::class, 'PERMUT'], + 'argumentCount' => '2', + ], + 'PERMUTATIONA' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Permutations::class, 'PERMUTATIONA'], + 'argumentCount' => '2', + ], + 'PHONETIC' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1', + ], + 'PHI' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1', + ], + 'PI' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => 'pi', + 'argumentCount' => '0', + ], + 'PMT' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Constant\Periodic\Payments::class, 'annuity'], + 'argumentCount' => '3-5', + ], + 'POISSON' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Poisson::class, 'distribution'], + 'argumentCount' => '3', + ], + 'POISSON.DIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Poisson::class, 'distribution'], + 'argumentCount' => '3', + ], + 'POWER' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Operations::class, 'power'], + 'argumentCount' => '2', + ], + 'PPMT' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Constant\Periodic\Payments::class, 'interestPayment'], + 'argumentCount' => '4-6', + ], + 'PRICE' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Securities\Price::class, 'price'], + 'argumentCount' => '6,7', + ], + 'PRICEDISC' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Securities\Price::class, 'priceDiscounted'], + 'argumentCount' => '4,5', + ], + 'PRICEMAT' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Securities\Price::class, 'priceAtMaturity'], + 'argumentCount' => '5,6', + ], + 'PROB' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '3,4', + ], + 'PRODUCT' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Operations::class, 'product'], + 'argumentCount' => '1+', + ], + 'PROPER' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\CaseConvert::class, 'proper'], + 'argumentCount' => '1', + ], + 'PV' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Constant\Periodic::class, 'presentValue'], + 'argumentCount' => '3-5', + ], + 'QUARTILE' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Percentiles::class, 'QUARTILE'], + 'argumentCount' => '2', + ], + 'QUARTILE.EXC' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2', + ], + 'QUARTILE.INC' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Percentiles::class, 'QUARTILE'], + 'argumentCount' => '2', + ], + 'QUOTIENT' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Operations::class, 'quotient'], + 'argumentCount' => '2', + ], + 'RADIANS' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Angle::class, 'toRadians'], + 'argumentCount' => '1', + ], + 'RAND' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Random::class, 'rand'], + 'argumentCount' => '0', + ], + 'RANDARRAY' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Random::class, 'randArray'], + 'argumentCount' => '0-5', + ], + 'RANDBETWEEN' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Random::class, 'randBetween'], + 'argumentCount' => '2', + ], + 'RANK' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Percentiles::class, 'RANK'], + 'argumentCount' => '2,3', + ], + 'RANK.AVG' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2,3', + ], + 'RANK.EQ' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Percentiles::class, 'RANK'], + 'argumentCount' => '2,3', + ], + 'RATE' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Constant\Periodic\Interest::class, 'rate'], + 'argumentCount' => '3-6', + ], + 'RECEIVED' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Securities\Price::class, 'received'], + 'argumentCount' => '4-5', + ], + 'REPLACE' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Replace::class, 'replace'], + 'argumentCount' => '4', + ], + 'REPLACEB' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Replace::class, 'replace'], + 'argumentCount' => '4', + ], + 'REPT' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Concatenate::class, 'builtinREPT'], + 'argumentCount' => '2', + ], + 'RIGHT' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Extract::class, 'right'], + 'argumentCount' => '1,2', + ], + 'RIGHTB' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Extract::class, 'right'], + 'argumentCount' => '1,2', + ], + 'ROMAN' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Roman::class, 'evaluate'], + 'argumentCount' => '1,2', + ], + 'ROUND' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Round::class, 'round'], + 'argumentCount' => '2', + ], + 'ROUNDBAHTDOWN' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'ROUNDBAHTUP' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'ROUNDDOWN' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Round::class, 'down'], + 'argumentCount' => '2', + ], + 'ROUNDUP' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Round::class, 'up'], + 'argumentCount' => '2', + ], + 'ROW' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\RowColumnInformation::class, 'ROW'], + 'argumentCount' => '-1', + 'passCellReference' => true, + 'passByReference' => [true], + ], + 'ROWS' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\RowColumnInformation::class, 'ROWS'], + 'argumentCount' => '1', + ], + 'RRI' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Single::class, 'interestRate'], + 'argumentCount' => '3', + ], + 'RSQ' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Trends::class, 'RSQ'], + 'argumentCount' => '2', + ], + 'RTD' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1+', + ], + 'SEARCH' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Search::class, 'insensitive'], + 'argumentCount' => '2,3', + ], + 'SEARCHB' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Search::class, 'insensitive'], + 'argumentCount' => '2,3', + ], + 'SEC' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Secant::class, 'sec'], + 'argumentCount' => '1', + ], + 'SECH' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Secant::class, 'sech'], + 'argumentCount' => '1', + ], + 'SECOND' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\TimeParts::class, 'second'], + 'argumentCount' => '1', + ], + 'SEQUENCE' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\MatrixFunctions::class, 'sequence'], + 'argumentCount' => '1-4', + ], + 'SERIESSUM' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\SeriesSum::class, 'evaluate'], + 'argumentCount' => '4', + ], + 'SHEET' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '0,1', + ], + 'SHEETS' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '0,1', + ], + 'SIGN' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Sign::class, 'evaluate'], + 'argumentCount' => '1', + ], + 'SIN' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Sine::class, 'sin'], + 'argumentCount' => '1', + ], + 'SINH' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Sine::class, 'sinh'], + 'argumentCount' => '1', + ], + 'SKEW' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Deviations::class, 'skew'], + 'argumentCount' => '1+', + ], + 'SKEW.P' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1+', + ], + 'SLN' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Depreciation::class, 'SLN'], + 'argumentCount' => '3', + ], + 'SLOPE' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Trends::class, 'SLOPE'], + 'argumentCount' => '2', + ], + 'SMALL' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Size::class, 'small'], + 'argumentCount' => '2', + ], + 'SORT' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\Sort::class, 'sort'], + 'argumentCount' => '1-4', + ], + 'SORTBY' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\Sort::class, 'sortBy'], + 'argumentCount' => '2+', + ], + 'SQRT' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Sqrt::class, 'sqrt'], + 'argumentCount' => '1', + ], + 'SQRTPI' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Sqrt::class, 'pi'], + 'argumentCount' => '1', + ], + 'STANDARDIZE' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Standardize::class, 'execute'], + 'argumentCount' => '3', + ], + 'STDEV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\StandardDeviations::class, 'STDEV'], + 'argumentCount' => '1+', + ], + 'STDEV.S' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\StandardDeviations::class, 'STDEV'], + 'argumentCount' => '1+', + ], + 'STDEV.P' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\StandardDeviations::class, 'STDEVP'], + 'argumentCount' => '1+', + ], + 'STDEVA' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\StandardDeviations::class, 'STDEVA'], + 'argumentCount' => '1+', + ], + 'STDEVP' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\StandardDeviations::class, 'STDEVP'], + 'argumentCount' => '1+', + ], + 'STDEVPA' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\StandardDeviations::class, 'STDEVPA'], + 'argumentCount' => '1+', + ], + 'STEYX' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Trends::class, 'STEYX'], + 'argumentCount' => '2', + ], + 'SUBSTITUTE' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Replace::class, 'substitute'], + 'argumentCount' => '3,4', + ], + 'SUBTOTAL' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Subtotal::class, 'evaluate'], + 'argumentCount' => '2+', + 'passCellReference' => true, + ], + 'SUM' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Sum::class, 'sumErroringStrings'], + 'argumentCount' => '1+', + ], + 'SUMIF' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Statistical\Conditional::class, 'SUMIF'], + 'argumentCount' => '2,3', + ], + 'SUMIFS' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Statistical\Conditional::class, 'SUMIFS'], + 'argumentCount' => '3+', + ], + 'SUMPRODUCT' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Sum::class, 'product'], + 'argumentCount' => '1+', + ], + 'SUMSQ' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\SumSquares::class, 'sumSquare'], + 'argumentCount' => '1+', + ], + 'SUMX2MY2' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\SumSquares::class, 'sumXSquaredMinusYSquared'], + 'argumentCount' => '2', + ], + 'SUMX2PY2' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\SumSquares::class, 'sumXSquaredPlusYSquared'], + 'argumentCount' => '2', + ], + 'SUMXMY2' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\SumSquares::class, 'sumXMinusYSquared'], + 'argumentCount' => '2', + ], + 'SWITCH' => [ + 'category' => Category::CATEGORY_LOGICAL, + 'functionCall' => [Logical\Conditional::class, 'statementSwitch'], + 'argumentCount' => '3+', + ], + 'SYD' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Depreciation::class, 'SYD'], + 'argumentCount' => '4', + ], + 'T' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Text::class, 'test'], + 'argumentCount' => '1', + ], + 'TAKE' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2-3', + ], + 'TAN' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Tangent::class, 'tan'], + 'argumentCount' => '1', + ], + 'TANH' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trig\Tangent::class, 'tanh'], + 'argumentCount' => '1', + ], + 'TBILLEQ' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\TreasuryBill::class, 'bondEquivalentYield'], + 'argumentCount' => '3', + ], + 'TBILLPRICE' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\TreasuryBill::class, 'price'], + 'argumentCount' => '3', + ], + 'TBILLYIELD' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\TreasuryBill::class, 'yield'], + 'argumentCount' => '3', + ], + 'TDIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\StudentT::class, 'distribution'], + 'argumentCount' => '3', + ], + 'T.DIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '3', + ], + 'T.DIST.2T' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2', + ], + 'T.DIST.RT' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2', + ], + 'TEXT' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Format::class, 'TEXTFORMAT'], + 'argumentCount' => '2', + ], + 'TEXTAFTER' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2-4', + ], + 'TEXTBEFORE' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2-4', + ], + 'TEXTJOIN' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Concatenate::class, 'TEXTJOIN'], + 'argumentCount' => '3+', + ], + 'TEXTSPLIT' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2-5', + ], + 'THAIDAYOFWEEK' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'THAIDIGIT' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'THAIMONTHOFYEAR' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'THAINUMSOUND' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'THAINUMSTRING' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'THAISTRINGLENGTH' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'THAIYEAR' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'TIME' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\Time::class, 'fromHMS'], + 'argumentCount' => '3', + ], + 'TIMEVALUE' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\TimeValue::class, 'fromString'], + 'argumentCount' => '1', + ], + 'TINV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\StudentT::class, 'inverse'], + 'argumentCount' => '2', + ], + 'T.INV' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\StudentT::class, 'inverse'], + 'argumentCount' => '2', + ], + 'T.INV.2T' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2', + ], + 'TODAY' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\Current::class, 'today'], + 'argumentCount' => '0', + ], + 'TOCOL' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1-3', + ], + 'TOROW' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1-3', + ], + 'TRANSPOSE' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\Matrix::class, 'transpose'], + 'argumentCount' => '1', + ], + 'TREND' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Trends::class, 'TREND'], + 'argumentCount' => '1-4', + ], + 'TRIM' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Trim::class, 'spaces'], + 'argumentCount' => '1', + ], + 'TRIMMEAN' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Averages\Mean::class, 'trim'], + 'argumentCount' => '2', + ], + 'TRUE' => [ + 'category' => Category::CATEGORY_LOGICAL, + 'functionCall' => [Logical\Boolean::class, 'TRUE'], + 'argumentCount' => '0', + ], + 'TRUNC' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [MathTrig\Trunc::class, 'evaluate'], + 'argumentCount' => '1,2', + ], + 'TTEST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '4', + ], + 'T.TEST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '4', + ], + 'TYPE' => [ + 'category' => Category::CATEGORY_INFORMATION, + 'functionCall' => [Information\Value::class, 'type'], + 'argumentCount' => '1', + ], + 'UNICHAR' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\CharacterConvert::class, 'character'], + 'argumentCount' => '1', + ], + 'UNICODE' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\CharacterConvert::class, 'code'], + 'argumentCount' => '1', + ], + 'UNIQUE' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\Unique::class, 'unique'], + 'argumentCount' => '1+', + ], + 'UPPER' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\CaseConvert::class, 'upper'], + 'argumentCount' => '1', + ], + 'USDOLLAR' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Dollar::class, 'format'], + 'argumentCount' => '2', + ], + 'VALUE' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [TextData\Format::class, 'VALUE'], + 'argumentCount' => '1', + ], + 'VALUETOTEXT' => [ + 'category' => Category::CATEGORY_TEXT_AND_DATA, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '?', + ], + 'VAR' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Variances::class, 'VAR'], + 'argumentCount' => '1+', + ], + 'VAR.P' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Variances::class, 'VARP'], + 'argumentCount' => '1+', + ], + 'VAR.S' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Variances::class, 'VAR'], + 'argumentCount' => '1+', + ], + 'VARA' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Variances::class, 'VARA'], + 'argumentCount' => '1+', + ], + 'VARP' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Variances::class, 'VARP'], + 'argumentCount' => '1+', + ], + 'VARPA' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Variances::class, 'VARPA'], + 'argumentCount' => '1+', + ], + 'VDB' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '5-7', + ], + 'VLOOKUP' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [LookupRef\VLookup::class, 'lookup'], + 'argumentCount' => '3,4', + ], + 'VSTACK' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '1+', + ], + 'WEBSERVICE' => [ + 'category' => Category::CATEGORY_WEB, + 'functionCall' => [Web\Service::class, 'webService'], + 'argumentCount' => '1', + ], + 'WEEKDAY' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\Week::class, 'day'], + 'argumentCount' => '1,2', + ], + 'WEEKNUM' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\Week::class, 'number'], + 'argumentCount' => '1,2', + ], + 'WEIBULL' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Weibull::class, 'distribution'], + 'argumentCount' => '4', + ], + 'WEIBULL.DIST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\Weibull::class, 'distribution'], + 'argumentCount' => '4', + ], + 'WORKDAY' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\WorkDay::class, 'date'], + 'argumentCount' => '2-3', + ], + 'WORKDAY.INTL' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2-4', + ], + 'WRAPCOLS' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2-3', + ], + 'WRAPROWS' => [ + 'category' => Category::CATEGORY_MATH_AND_TRIG, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2-3', + ], + 'XIRR' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Variable\NonPeriodic::class, 'rate'], + 'argumentCount' => '2,3', + ], + 'XLOOKUP' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '3-6', + ], + 'XNPV' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\CashFlow\Variable\NonPeriodic::class, 'presentValue'], + 'argumentCount' => '3', + ], + 'XMATCH' => [ + 'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '2,3', + ], + 'XOR' => [ + 'category' => Category::CATEGORY_LOGICAL, + 'functionCall' => [Logical\Operations::class, 'logicalXor'], + 'argumentCount' => '1+', + ], + 'YEAR' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\DateParts::class, 'year'], + 'argumentCount' => '1', + ], + 'YEARFRAC' => [ + 'category' => Category::CATEGORY_DATE_AND_TIME, + 'functionCall' => [DateTimeExcel\YearFrac::class, 'fraction'], + 'argumentCount' => '2,3', + ], + 'YIELD' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Functions::class, 'DUMMY'], + 'argumentCount' => '6,7', + ], + 'YIELDDISC' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Securities\Yields::class, 'yieldDiscounted'], + 'argumentCount' => '4,5', + ], + 'YIELDMAT' => [ + 'category' => Category::CATEGORY_FINANCIAL, + 'functionCall' => [Financial\Securities\Yields::class, 'yieldAtMaturity'], + 'argumentCount' => '5,6', + ], + 'ZTEST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\StandardNormal::class, 'zTest'], + 'argumentCount' => '2-3', + ], + 'Z.TEST' => [ + 'category' => Category::CATEGORY_STATISTICAL, + 'functionCall' => [Statistical\Distributions\StandardNormal::class, 'zTest'], + 'argumentCount' => '2-3', + ], + ]; + + // Internal functions used for special control purposes + private static $controlFunctions = [ + 'MKMATRIX' => [ + 'argumentCount' => '*', + 'functionCall' => [Internal\MakeMatrix::class, 'make'], + ], + 'NAME.ERROR' => [ + 'argumentCount' => '*', + 'functionCall' => [Functions::class, 'NAME'], + ], + 'WILDCARDMATCH' => [ + 'argumentCount' => '2', + 'functionCall' => [Internal\WildcardMatch::class, 'compare'], + ], + ]; + + public function __construct(?Spreadsheet $spreadsheet = null) + { + $this->spreadsheet = $spreadsheet; + $this->cyclicReferenceStack = new CyclicReferenceStack(); + $this->debugLog = new Logger($this->cyclicReferenceStack); + $this->branchPruner = new BranchPruner($this->branchPruningEnabled); + self::$referenceHelper = ReferenceHelper::getInstance(); + } + + private static function loadLocales(): void + { + $localeFileDirectory = __DIR__ . '/locale/'; + foreach (glob($localeFileDirectory . '*', GLOB_ONLYDIR) as $filename) { + $filename = substr($filename, strlen($localeFileDirectory)); + if ($filename != 'en') { + self::$validLocaleLanguages[] = $filename; + } + } + } + + /** + * Get an instance of this class. + * + * @param ?Spreadsheet $spreadsheet Injected spreadsheet for working with a PhpSpreadsheet Spreadsheet object, + * or NULL to create a standalone calculation engine + */ + public static function getInstance(?Spreadsheet $spreadsheet = null): self + { + if ($spreadsheet !== null) { + $instance = $spreadsheet->getCalculationEngine(); + if (isset($instance)) { + return $instance; + } + } + + if (!isset(self::$instance) || (self::$instance === null)) { + self::$instance = new self(); + } + + return self::$instance; + } + + /** + * Flush the calculation cache for any existing instance of this class + * but only if a Calculation instance exists. + */ + public function flushInstance(): void + { + $this->clearCalculationCache(); + $this->branchPruner->clearBranchStore(); + } + + /** + * Get the Logger for this calculation engine instance. + * + * @return Logger + */ + public function getDebugLog() + { + return $this->debugLog; + } + + /** + * __clone implementation. Cloning should not be allowed in a Singleton! + */ + final public function __clone() + { + throw new Exception('Cloning the calculation engine is not allowed!'); + } + + /** + * Return the locale-specific translation of TRUE. + * + * @return string locale-specific translation of TRUE + */ + public static function getTRUE(): string + { + return self::$localeBoolean['TRUE']; + } + + /** + * Return the locale-specific translation of FALSE. + * + * @return string locale-specific translation of FALSE + */ + public static function getFALSE(): string + { + return self::$localeBoolean['FALSE']; + } + + /** + * Set the Array Return Type (Array or Value of first element in the array). + * + * @param string $returnType Array return type + * + * @return bool Success or failure + */ + public static function setArrayReturnType($returnType) + { + if ( + ($returnType == self::RETURN_ARRAY_AS_VALUE) || + ($returnType == self::RETURN_ARRAY_AS_ERROR) || + ($returnType == self::RETURN_ARRAY_AS_ARRAY) + ) { + self::$returnArrayAsType = $returnType; + + return true; + } + + return false; + } + + /** + * Return the Array Return Type (Array or Value of first element in the array). + * + * @return string $returnType Array return type + */ + public static function getArrayReturnType() + { + return self::$returnArrayAsType; + } + + /** + * Is calculation caching enabled? + * + * @return bool + */ + public function getCalculationCacheEnabled() + { + return $this->calculationCacheEnabled; + } + + /** + * Enable/disable calculation cache. + * + * @param bool $calculationCacheEnabled + */ + public function setCalculationCacheEnabled($calculationCacheEnabled): void + { + $this->calculationCacheEnabled = $calculationCacheEnabled; + $this->clearCalculationCache(); + } + + /** + * Enable calculation cache. + */ + public function enableCalculationCache(): void + { + $this->setCalculationCacheEnabled(true); + } + + /** + * Disable calculation cache. + */ + public function disableCalculationCache(): void + { + $this->setCalculationCacheEnabled(false); + } + + /** + * Clear calculation cache. + */ + public function clearCalculationCache(): void + { + $this->calculationCache = []; + } + + /** + * Clear calculation cache for a specified worksheet. + * + * @param string $worksheetName + */ + public function clearCalculationCacheForWorksheet($worksheetName): void + { + if (isset($this->calculationCache[$worksheetName])) { + unset($this->calculationCache[$worksheetName]); + } + } + + /** + * Rename calculation cache for a specified worksheet. + * + * @param string $fromWorksheetName + * @param string $toWorksheetName + */ + public function renameCalculationCacheForWorksheet($fromWorksheetName, $toWorksheetName): void + { + if (isset($this->calculationCache[$fromWorksheetName])) { + $this->calculationCache[$toWorksheetName] = &$this->calculationCache[$fromWorksheetName]; + unset($this->calculationCache[$fromWorksheetName]); + } + } + + /** + * Enable/disable calculation cache. + * + * @param mixed $enabled + */ + public function setBranchPruningEnabled($enabled): void + { + $this->branchPruningEnabled = $enabled; + $this->branchPruner = new BranchPruner($this->branchPruningEnabled); + } + + public function enableBranchPruning(): void + { + $this->setBranchPruningEnabled(true); + } + + public function disableBranchPruning(): void + { + $this->setBranchPruningEnabled(false); + } + + /** + * Get the currently defined locale code. + * + * @return string + */ + public function getLocale() + { + return self::$localeLanguage; + } + + private function getLocaleFile(string $localeDir, string $locale, string $language, string $file): string + { + $localeFileName = $localeDir . str_replace('_', DIRECTORY_SEPARATOR, $locale) . + DIRECTORY_SEPARATOR . $file; + if (!file_exists($localeFileName)) { + // If there isn't a locale specific file, look for a language specific file + $localeFileName = $localeDir . $language . DIRECTORY_SEPARATOR . $file; + if (!file_exists($localeFileName)) { + throw new Exception('Locale file not found'); + } + } + + return $localeFileName; + } + + /** + * Set the locale code. + * + * @param string $locale The locale to use for formula translation, eg: 'en_us' + * + * @return bool + */ + public function setLocale(string $locale) + { + // Identify our locale and language + $language = $locale = strtolower($locale); + if (strpos($locale, '_') !== false) { + [$language] = explode('_', $locale); + } + if (count(self::$validLocaleLanguages) == 1) { + self::loadLocales(); + } + + // Test whether we have any language data for this language (any locale) + if (in_array($language, self::$validLocaleLanguages, true)) { + // initialise language/locale settings + self::$localeFunctions = []; + self::$localeArgumentSeparator = ','; + self::$localeBoolean = ['TRUE' => 'TRUE', 'FALSE' => 'FALSE', 'NULL' => 'NULL']; + + // Default is US English, if user isn't requesting US english, then read the necessary data from the locale files + if ($locale !== 'en_us') { + $localeDir = implode(DIRECTORY_SEPARATOR, [__DIR__, 'locale', null]); + // Search for a file with a list of function names for locale + try { + $functionNamesFile = $this->getLocaleFile($localeDir, $locale, $language, 'functions'); + } catch (Exception $e) { + return false; + } + + // Retrieve the list of locale or language specific function names + $localeFunctions = file($functionNamesFile, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); + foreach ($localeFunctions as $localeFunction) { + [$localeFunction] = explode('##', $localeFunction); // Strip out comments + if (strpos($localeFunction, '=') !== false) { + [$fName, $lfName] = array_map('trim', explode('=', $localeFunction)); + if ((isset(self::$phpSpreadsheetFunctions[$fName])) && ($lfName != '') && ($fName != $lfName)) { + self::$localeFunctions[$fName] = $lfName; + } + } + } + // Default the TRUE and FALSE constants to the locale names of the TRUE() and FALSE() functions + if (isset(self::$localeFunctions['TRUE'])) { + self::$localeBoolean['TRUE'] = self::$localeFunctions['TRUE']; + } + if (isset(self::$localeFunctions['FALSE'])) { + self::$localeBoolean['FALSE'] = self::$localeFunctions['FALSE']; + } + + try { + $configFile = $this->getLocaleFile($localeDir, $locale, $language, 'config'); + } catch (Exception $e) { + return false; + } + + $localeSettings = file($configFile, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); + foreach ($localeSettings as $localeSetting) { + [$localeSetting] = explode('##', $localeSetting); // Strip out comments + if (strpos($localeSetting, '=') !== false) { + [$settingName, $settingValue] = array_map('trim', explode('=', $localeSetting)); + $settingName = strtoupper($settingName); + if ($settingValue !== '') { + switch ($settingName) { + case 'ARGUMENTSEPARATOR': + self::$localeArgumentSeparator = $settingValue; + + break; + } + } + } + } + } + + self::$functionReplaceFromExcel = self::$functionReplaceToExcel = + self::$functionReplaceFromLocale = self::$functionReplaceToLocale = null; + self::$localeLanguage = $locale; + + return true; + } + + return false; + } + + public static function translateSeparator( + string $fromSeparator, + string $toSeparator, + string $formula, + int &$inBracesLevel, + string $openBrace = self::FORMULA_OPEN_FUNCTION_BRACE, + string $closeBrace = self::FORMULA_CLOSE_FUNCTION_BRACE + ): string { + $strlen = mb_strlen($formula); + for ($i = 0; $i < $strlen; ++$i) { + $chr = mb_substr($formula, $i, 1); + switch ($chr) { + case $openBrace: + ++$inBracesLevel; + + break; + case $closeBrace: + --$inBracesLevel; + + break; + case $fromSeparator: + if ($inBracesLevel > 0) { + $formula = mb_substr($formula, 0, $i) . $toSeparator . mb_substr($formula, $i + 1); + } + } + } + + return $formula; + } + + private static function translateFormulaBlock( + array $from, + array $to, + string $formula, + int &$inFunctionBracesLevel, + int &$inMatrixBracesLevel, + string $fromSeparator, + string $toSeparator + ): string { + // Function Names + $formula = (string) preg_replace($from, $to, $formula); + + // Temporarily adjust matrix separators so that they won't be confused with function arguments + $formula = self::translateSeparator(';', '|', $formula, $inMatrixBracesLevel, self::FORMULA_OPEN_MATRIX_BRACE, self::FORMULA_CLOSE_MATRIX_BRACE); + $formula = self::translateSeparator(',', '!', $formula, $inMatrixBracesLevel, self::FORMULA_OPEN_MATRIX_BRACE, self::FORMULA_CLOSE_MATRIX_BRACE); + // Function Argument Separators + $formula = self::translateSeparator($fromSeparator, $toSeparator, $formula, $inFunctionBracesLevel); + // Restore matrix separators + $formula = self::translateSeparator('|', ';', $formula, $inMatrixBracesLevel, self::FORMULA_OPEN_MATRIX_BRACE, self::FORMULA_CLOSE_MATRIX_BRACE); + $formula = self::translateSeparator('!', ',', $formula, $inMatrixBracesLevel, self::FORMULA_OPEN_MATRIX_BRACE, self::FORMULA_CLOSE_MATRIX_BRACE); + + return $formula; + } + + private static function translateFormula(array $from, array $to, string $formula, string $fromSeparator, string $toSeparator): string + { + // Convert any Excel function names and constant names to the required language; + // and adjust function argument separators + if (self::$localeLanguage !== 'en_us') { + $inFunctionBracesLevel = 0; + $inMatrixBracesLevel = 0; + // If there is the possibility of separators within a quoted string, then we treat them as literals + if (strpos($formula, self::FORMULA_STRING_QUOTE) !== false) { + // So instead we skip replacing in any quoted strings by only replacing in every other array element + // after we've exploded the formula + $temp = explode(self::FORMULA_STRING_QUOTE, $formula); + $notWithinQuotes = false; + foreach ($temp as &$value) { + // Only adjust in alternating array entries + $notWithinQuotes = !$notWithinQuotes; + if ($notWithinQuotes === true) { + $value = self::translateFormulaBlock($from, $to, $value, $inFunctionBracesLevel, $inMatrixBracesLevel, $fromSeparator, $toSeparator); + } + } + unset($value); + // Then rebuild the formula string + $formula = implode(self::FORMULA_STRING_QUOTE, $temp); + } else { + // If there's no quoted strings, then we do a simple count/replace + $formula = self::translateFormulaBlock($from, $to, $formula, $inFunctionBracesLevel, $inMatrixBracesLevel, $fromSeparator, $toSeparator); + } + } + + return $formula; + } + + private static $functionReplaceFromExcel; + + private static $functionReplaceToLocale; + + public function _translateFormulaToLocale($formula) + { + // Build list of function names and constants for translation + if (self::$functionReplaceFromExcel === null) { + self::$functionReplaceFromExcel = []; + foreach (array_keys(self::$localeFunctions) as $excelFunctionName) { + self::$functionReplaceFromExcel[] = '/(@?[^\w\.])' . preg_quote($excelFunctionName, '/') . '([\s]*\()/ui'; + } + foreach (array_keys(self::$localeBoolean) as $excelBoolean) { + self::$functionReplaceFromExcel[] = '/(@?[^\w\.])' . preg_quote($excelBoolean, '/') . '([^\w\.])/ui'; + } + } + + if (self::$functionReplaceToLocale === null) { + self::$functionReplaceToLocale = []; + foreach (self::$localeFunctions as $localeFunctionName) { + self::$functionReplaceToLocale[] = '$1' . trim($localeFunctionName) . '$2'; + } + foreach (self::$localeBoolean as $localeBoolean) { + self::$functionReplaceToLocale[] = '$1' . trim($localeBoolean) . '$2'; + } + } + + return self::translateFormula( + self::$functionReplaceFromExcel, + self::$functionReplaceToLocale, + $formula, + ',', + self::$localeArgumentSeparator + ); + } + + private static $functionReplaceFromLocale; + + private static $functionReplaceToExcel; + + public function _translateFormulaToEnglish($formula) + { + if (self::$functionReplaceFromLocale === null) { + self::$functionReplaceFromLocale = []; + foreach (self::$localeFunctions as $localeFunctionName) { + self::$functionReplaceFromLocale[] = '/(@?[^\w\.])' . preg_quote($localeFunctionName, '/') . '([\s]*\()/ui'; + } + foreach (self::$localeBoolean as $excelBoolean) { + self::$functionReplaceFromLocale[] = '/(@?[^\w\.])' . preg_quote($excelBoolean, '/') . '([^\w\.])/ui'; + } + } + + if (self::$functionReplaceToExcel === null) { + self::$functionReplaceToExcel = []; + foreach (array_keys(self::$localeFunctions) as $excelFunctionName) { + // @phpstan-ignore-next-line + self::$functionReplaceToExcel[] = '$1' . trim($excelFunctionName) . '$2'; + } + foreach (array_keys(self::$localeBoolean) as $excelBoolean) { + self::$functionReplaceToExcel[] = '$1' . trim($excelBoolean) . '$2'; + } + } + + return self::translateFormula(self::$functionReplaceFromLocale, self::$functionReplaceToExcel, $formula, self::$localeArgumentSeparator, ','); + } + + public static function localeFunc($function) + { + if (self::$localeLanguage !== 'en_us') { + $functionName = trim($function, '('); + if (isset(self::$localeFunctions[$functionName])) { + $brace = ($functionName != $function); + $function = self::$localeFunctions[$functionName]; + if ($brace) { + $function .= '('; + } + } + } + + return $function; + } + + /** + * Wrap string values in quotes. + * + * @param mixed $value + * + * @return mixed + */ + public static function wrapResult($value) + { + if (is_string($value)) { + // Error values cannot be "wrapped" + if (preg_match('/^' . self::CALCULATION_REGEXP_ERROR . '$/i', $value, $match)) { + // Return Excel errors "as is" + return $value; + } + + // Return strings wrapped in quotes + return self::FORMULA_STRING_QUOTE . $value . self::FORMULA_STRING_QUOTE; + } elseif ((is_float($value)) && ((is_nan($value)) || (is_infinite($value)))) { + // Convert numeric errors to NaN error + return Information\ExcelError::NAN(); + } + + return $value; + } + + /** + * Remove quotes used as a wrapper to identify string values. + * + * @param mixed $value + * + * @return mixed + */ + public static function unwrapResult($value) + { + if (is_string($value)) { + if ((isset($value[0])) && ($value[0] == self::FORMULA_STRING_QUOTE) && (substr($value, -1) == self::FORMULA_STRING_QUOTE)) { + return substr($value, 1, -1); + } + // Convert numeric errors to NAN error + } elseif ((is_float($value)) && ((is_nan($value)) || (is_infinite($value)))) { + return Information\ExcelError::NAN(); + } + + return $value; + } + + /** + * Calculate cell value (using formula from a cell ID) + * Retained for backward compatibility. + * + * @param Cell $cell Cell to calculate + * + * @return mixed + */ + public function calculate(?Cell $cell = null) + { + try { + return $this->calculateCellValue($cell); + } catch (\Exception $e) { + throw new Exception($e->getMessage()); + } + } + + /** + * Calculate the value of a cell formula. + * + * @param Cell $cell Cell to calculate + * @param bool $resetLog Flag indicating whether the debug log should be reset or not + * + * @return mixed + */ + public function calculateCellValue(?Cell $cell = null, $resetLog = true) + { + if ($cell === null) { + return null; + } + + $returnArrayAsType = self::$returnArrayAsType; + if ($resetLog) { + // Initialise the logging settings if requested + $this->formulaError = null; + $this->debugLog->clearLog(); + $this->cyclicReferenceStack->clear(); + $this->cyclicFormulaCounter = 1; + + self::$returnArrayAsType = self::RETURN_ARRAY_AS_ARRAY; + } + + // Execute the calculation for the cell formula + $this->cellStack[] = [ + 'sheet' => $cell->getWorksheet()->getTitle(), + 'cell' => $cell->getCoordinate(), + ]; + + try { + $result = self::unwrapResult($this->_calculateFormulaValue($cell->getValue(), $cell->getCoordinate(), $cell)); + $cellAddress = array_pop($this->cellStack); + $this->spreadsheet->getSheetByName($cellAddress['sheet'])->getCell($cellAddress['cell']); + } catch (\Exception $e) { + $cellAddress = array_pop($this->cellStack); + $this->spreadsheet->getSheetByName($cellAddress['sheet'])->getCell($cellAddress['cell']); + + throw new Exception($e->getMessage()); + } + + if ((is_array($result)) && (self::$returnArrayAsType != self::RETURN_ARRAY_AS_ARRAY)) { + self::$returnArrayAsType = $returnArrayAsType; + $testResult = Functions::flattenArray($result); + if (self::$returnArrayAsType == self::RETURN_ARRAY_AS_ERROR) { + return Information\ExcelError::VALUE(); + } + // If there's only a single cell in the array, then we allow it + if (count($testResult) != 1) { + // If keys are numeric, then it's a matrix result rather than a cell range result, so we permit it + $r = array_keys($result); + $r = array_shift($r); + if (!is_numeric($r)) { + return Information\ExcelError::VALUE(); + } + if (is_array($result[$r])) { + $c = array_keys($result[$r]); + $c = array_shift($c); + if (!is_numeric($c)) { + return Information\ExcelError::VALUE(); + } + } + } + $result = array_shift($testResult); + } + self::$returnArrayAsType = $returnArrayAsType; + + if ($result === null && $cell->getWorksheet()->getSheetView()->getShowZeros()) { + return 0; + } elseif ((is_float($result)) && ((is_nan($result)) || (is_infinite($result)))) { + return Information\ExcelError::NAN(); + } + + return $result; + } + + /** + * Validate and parse a formula string. + * + * @param string $formula Formula to parse + * + * @return array|bool + */ + public function parseFormula($formula) + { + // Basic validation that this is indeed a formula + // We return an empty array if not + $formula = trim($formula); + if ((!isset($formula[0])) || ($formula[0] != '=')) { + return []; + } + $formula = ltrim(substr($formula, 1)); + if (!isset($formula[0])) { + return []; + } + + // Parse the formula and return the token stack + return $this->internalParseFormula($formula); + } + + /** + * Calculate the value of a formula. + * + * @param string $formula Formula to parse + * @param string $cellID Address of the cell to calculate + * @param Cell $cell Cell to calculate + * + * @return mixed + */ + public function calculateFormula($formula, $cellID = null, ?Cell $cell = null) + { + // Initialise the logging settings + $this->formulaError = null; + $this->debugLog->clearLog(); + $this->cyclicReferenceStack->clear(); + + $resetCache = $this->getCalculationCacheEnabled(); + if ($this->spreadsheet !== null && $cellID === null && $cell === null) { + $cellID = 'A1'; + $cell = $this->spreadsheet->getActiveSheet()->getCell($cellID); + } else { + // Disable calculation cacheing because it only applies to cell calculations, not straight formulae + // But don't actually flush any cache + $this->calculationCacheEnabled = false; + } + + // Execute the calculation + try { + $result = self::unwrapResult($this->_calculateFormulaValue($formula, $cellID, $cell)); + } catch (\Exception $e) { + throw new Exception($e->getMessage()); + } + + if ($this->spreadsheet === null) { + // Reset calculation cacheing to its previous state + $this->calculationCacheEnabled = $resetCache; + } + + return $result; + } + + /** + * @param mixed $cellValue + */ + public function getValueFromCache(string $cellReference, &$cellValue): bool + { + $this->debugLog->writeDebugLog('Testing cache value for cell %s', $cellReference); + // Is calculation cacheing enabled? + // If so, is the required value present in calculation cache? + if (($this->calculationCacheEnabled) && (isset($this->calculationCache[$cellReference]))) { + $this->debugLog->writeDebugLog('Retrieving value for cell %s from cache', $cellReference); + // Return the cached result + + $cellValue = $this->calculationCache[$cellReference]; + + return true; + } + + return false; + } + + /** + * @param string $cellReference + * @param mixed $cellValue + */ + public function saveValueToCache($cellReference, $cellValue): void + { + if ($this->calculationCacheEnabled) { + $this->calculationCache[$cellReference] = $cellValue; + } + } + + /** + * Parse a cell formula and calculate its value. + * + * @param string $formula The formula to parse and calculate + * @param string $cellID The ID (e.g. A3) of the cell that we are calculating + * @param Cell $cell Cell to calculate + * + * @return mixed + */ + public function _calculateFormulaValue($formula, $cellID = null, ?Cell $cell = null) + { + $cellValue = null; + + // Quote-Prefixed cell values cannot be formulae, but are treated as strings + if ($cell !== null && $cell->getStyle()->getQuotePrefix() === true) { + return self::wrapResult((string) $formula); + } + + if (preg_match('/^=\s*cmd\s*\|/miu', $formula) !== 0) { + return self::wrapResult($formula); + } + + // Basic validation that this is indeed a formula + // We simply return the cell value if not + $formula = trim($formula); + if ($formula[0] != '=') { + return self::wrapResult($formula); + } + $formula = ltrim(substr($formula, 1)); + if (!isset($formula[0])) { + return self::wrapResult($formula); + } + + $pCellParent = ($cell !== null) ? $cell->getWorksheet() : null; + $wsTitle = ($pCellParent !== null) ? $pCellParent->getTitle() : "\x00Wrk"; + $wsCellReference = $wsTitle . '!' . $cellID; + + if (($cellID !== null) && ($this->getValueFromCache($wsCellReference, $cellValue))) { + return $cellValue; + } + $this->debugLog->writeDebugLog('Evaluating formula for cell %s', $wsCellReference); + + if (($wsTitle[0] !== "\x00") && ($this->cyclicReferenceStack->onStack($wsCellReference))) { + if ($this->cyclicFormulaCount <= 0) { + $this->cyclicFormulaCell = ''; + + return $this->raiseFormulaError('Cyclic Reference in Formula'); + } elseif ($this->cyclicFormulaCell === $wsCellReference) { + ++$this->cyclicFormulaCounter; + if ($this->cyclicFormulaCounter >= $this->cyclicFormulaCount) { + $this->cyclicFormulaCell = ''; + + return $cellValue; + } + } elseif ($this->cyclicFormulaCell == '') { + if ($this->cyclicFormulaCounter >= $this->cyclicFormulaCount) { + return $cellValue; + } + $this->cyclicFormulaCell = $wsCellReference; + } + } + + $this->debugLog->writeDebugLog('Formula for cell %s is %s', $wsCellReference, $formula); + // Parse the formula onto the token stack and calculate the value + $this->cyclicReferenceStack->push($wsCellReference); + + $cellValue = $this->processTokenStack($this->internalParseFormula($formula, $cell), $cellID, $cell); + $this->cyclicReferenceStack->pop(); + + // Save to calculation cache + if ($cellID !== null) { + $this->saveValueToCache($wsCellReference, $cellValue); + } + + // Return the calculated value + return $cellValue; + } + + /** + * Ensure that paired matrix operands are both matrices and of the same size. + * + * @param mixed $operand1 First matrix operand + * @param mixed $operand2 Second matrix operand + * @param int $resize Flag indicating whether the matrices should be resized to match + * and (if so), whether the smaller dimension should grow or the + * larger should shrink. + * 0 = no resize + * 1 = shrink to fit + * 2 = extend to fit + * + * @return array + */ + private static function checkMatrixOperands(&$operand1, &$operand2, $resize = 1) + { + // Examine each of the two operands, and turn them into an array if they aren't one already + // Note that this function should only be called if one or both of the operand is already an array + if (!is_array($operand1)) { + [$matrixRows, $matrixColumns] = self::getMatrixDimensions($operand2); + $operand1 = array_fill(0, $matrixRows, array_fill(0, $matrixColumns, $operand1)); + $resize = 0; + } elseif (!is_array($operand2)) { + [$matrixRows, $matrixColumns] = self::getMatrixDimensions($operand1); + $operand2 = array_fill(0, $matrixRows, array_fill(0, $matrixColumns, $operand2)); + $resize = 0; + } + + [$matrix1Rows, $matrix1Columns] = self::getMatrixDimensions($operand1); + [$matrix2Rows, $matrix2Columns] = self::getMatrixDimensions($operand2); + if (($matrix1Rows == $matrix2Columns) && ($matrix2Rows == $matrix1Columns)) { + $resize = 1; + } + + if ($resize == 2) { + // Given two matrices of (potentially) unequal size, convert the smaller in each dimension to match the larger + self::resizeMatricesExtend($operand1, $operand2, $matrix1Rows, $matrix1Columns, $matrix2Rows, $matrix2Columns); + } elseif ($resize == 1) { + // Given two matrices of (potentially) unequal size, convert the larger in each dimension to match the smaller + self::resizeMatricesShrink($operand1, $operand2, $matrix1Rows, $matrix1Columns, $matrix2Rows, $matrix2Columns); + } + + return [$matrix1Rows, $matrix1Columns, $matrix2Rows, $matrix2Columns]; + } + + /** + * Read the dimensions of a matrix, and re-index it with straight numeric keys starting from row 0, column 0. + * + * @param array $matrix matrix operand + * + * @return int[] An array comprising the number of rows, and number of columns + */ + public static function getMatrixDimensions(array &$matrix) + { + $matrixRows = count($matrix); + $matrixColumns = 0; + foreach ($matrix as $rowKey => $rowValue) { + if (!is_array($rowValue)) { + $matrix[$rowKey] = [$rowValue]; + $matrixColumns = max(1, $matrixColumns); + } else { + $matrix[$rowKey] = array_values($rowValue); + $matrixColumns = max(count($rowValue), $matrixColumns); + } + } + $matrix = array_values($matrix); + + return [$matrixRows, $matrixColumns]; + } + + /** + * Ensure that paired matrix operands are both matrices of the same size. + * + * @param mixed $matrix1 First matrix operand + * @param mixed $matrix2 Second matrix operand + * @param int $matrix1Rows Row size of first matrix operand + * @param int $matrix1Columns Column size of first matrix operand + * @param int $matrix2Rows Row size of second matrix operand + * @param int $matrix2Columns Column size of second matrix operand + */ + private static function resizeMatricesShrink(&$matrix1, &$matrix2, $matrix1Rows, $matrix1Columns, $matrix2Rows, $matrix2Columns): void + { + if (($matrix2Columns < $matrix1Columns) || ($matrix2Rows < $matrix1Rows)) { + if ($matrix2Rows < $matrix1Rows) { + for ($i = $matrix2Rows; $i < $matrix1Rows; ++$i) { + unset($matrix1[$i]); + } + } + if ($matrix2Columns < $matrix1Columns) { + for ($i = 0; $i < $matrix1Rows; ++$i) { + for ($j = $matrix2Columns; $j < $matrix1Columns; ++$j) { + unset($matrix1[$i][$j]); + } + } + } + } + + if (($matrix1Columns < $matrix2Columns) || ($matrix1Rows < $matrix2Rows)) { + if ($matrix1Rows < $matrix2Rows) { + for ($i = $matrix1Rows; $i < $matrix2Rows; ++$i) { + unset($matrix2[$i]); + } + } + if ($matrix1Columns < $matrix2Columns) { + for ($i = 0; $i < $matrix2Rows; ++$i) { + for ($j = $matrix1Columns; $j < $matrix2Columns; ++$j) { + unset($matrix2[$i][$j]); + } + } + } + } + } + + /** + * Ensure that paired matrix operands are both matrices of the same size. + * + * @param mixed $matrix1 First matrix operand + * @param mixed $matrix2 Second matrix operand + * @param int $matrix1Rows Row size of first matrix operand + * @param int $matrix1Columns Column size of first matrix operand + * @param int $matrix2Rows Row size of second matrix operand + * @param int $matrix2Columns Column size of second matrix operand + */ + private static function resizeMatricesExtend(&$matrix1, &$matrix2, $matrix1Rows, $matrix1Columns, $matrix2Rows, $matrix2Columns): void + { + if (($matrix2Columns < $matrix1Columns) || ($matrix2Rows < $matrix1Rows)) { + if ($matrix2Columns < $matrix1Columns) { + for ($i = 0; $i < $matrix2Rows; ++$i) { + $x = $matrix2[$i][$matrix2Columns - 1]; + for ($j = $matrix2Columns; $j < $matrix1Columns; ++$j) { + $matrix2[$i][$j] = $x; + } + } + } + if ($matrix2Rows < $matrix1Rows) { + $x = $matrix2[$matrix2Rows - 1]; + for ($i = 0; $i < $matrix1Rows; ++$i) { + $matrix2[$i] = $x; + } + } + } + + if (($matrix1Columns < $matrix2Columns) || ($matrix1Rows < $matrix2Rows)) { + if ($matrix1Columns < $matrix2Columns) { + for ($i = 0; $i < $matrix1Rows; ++$i) { + $x = $matrix1[$i][$matrix1Columns - 1]; + for ($j = $matrix1Columns; $j < $matrix2Columns; ++$j) { + $matrix1[$i][$j] = $x; + } + } + } + if ($matrix1Rows < $matrix2Rows) { + $x = $matrix1[$matrix1Rows - 1]; + for ($i = 0; $i < $matrix2Rows; ++$i) { + $matrix1[$i] = $x; + } + } + } + } + + /** + * Format details of an operand for display in the log (based on operand type). + * + * @param mixed $value First matrix operand + * + * @return mixed + */ + private function showValue($value) + { + if ($this->debugLog->getWriteDebugLog()) { + $testArray = Functions::flattenArray($value); + if (count($testArray) == 1) { + $value = array_pop($testArray); + } + + if (is_array($value)) { + $returnMatrix = []; + $pad = $rpad = ', '; + foreach ($value as $row) { + if (is_array($row)) { + $returnMatrix[] = implode($pad, array_map([$this, 'showValue'], $row)); + $rpad = '; '; + } else { + $returnMatrix[] = $this->showValue($row); + } + } + + return '{ ' . implode($rpad, $returnMatrix) . ' }'; + } elseif (is_string($value) && (trim($value, self::FORMULA_STRING_QUOTE) == $value)) { + return self::FORMULA_STRING_QUOTE . $value . self::FORMULA_STRING_QUOTE; + } elseif (is_bool($value)) { + return ($value) ? self::$localeBoolean['TRUE'] : self::$localeBoolean['FALSE']; + } elseif ($value === null) { + return self::$localeBoolean['NULL']; + } + } + + return Functions::flattenSingleValue($value); + } + + /** + * Format type and details of an operand for display in the log (based on operand type). + * + * @param mixed $value First matrix operand + * + * @return null|string + */ + private function showTypeDetails($value) + { + if ($this->debugLog->getWriteDebugLog()) { + $testArray = Functions::flattenArray($value); + if (count($testArray) == 1) { + $value = array_pop($testArray); + } + + if ($value === null) { + return 'a NULL value'; + } elseif (is_float($value)) { + $typeString = 'a floating point number'; + } elseif (is_int($value)) { + $typeString = 'an integer number'; + } elseif (is_bool($value)) { + $typeString = 'a boolean'; + } elseif (is_array($value)) { + $typeString = 'a matrix'; + } else { + if ($value == '') { + return 'an empty string'; + } elseif ($value[0] == '#') { + return 'a ' . $value . ' error'; + } + $typeString = 'a string'; + } + + return $typeString . ' with a value of ' . $this->showValue($value); + } + + return null; + } + + /** + * @param string $formula + * + * @return false|string False indicates an error + */ + private function convertMatrixReferences($formula) + { + static $matrixReplaceFrom = [self::FORMULA_OPEN_MATRIX_BRACE, ';', self::FORMULA_CLOSE_MATRIX_BRACE]; + static $matrixReplaceTo = ['MKMATRIX(MKMATRIX(', '),MKMATRIX(', '))']; + + // Convert any Excel matrix references to the MKMATRIX() function + if (strpos($formula, self::FORMULA_OPEN_MATRIX_BRACE) !== false) { + // If there is the possibility of braces within a quoted string, then we don't treat those as matrix indicators + if (strpos($formula, self::FORMULA_STRING_QUOTE) !== false) { + // So instead we skip replacing in any quoted strings by only replacing in every other array element after we've exploded + // the formula + $temp = explode(self::FORMULA_STRING_QUOTE, $formula); + // Open and Closed counts used for trapping mismatched braces in the formula + $openCount = $closeCount = 0; + $notWithinQuotes = false; + foreach ($temp as &$value) { + // Only count/replace in alternating array entries + $notWithinQuotes = !$notWithinQuotes; + if ($notWithinQuotes === true) { + $openCount += substr_count($value, self::FORMULA_OPEN_MATRIX_BRACE); + $closeCount += substr_count($value, self::FORMULA_CLOSE_MATRIX_BRACE); + $value = str_replace($matrixReplaceFrom, $matrixReplaceTo, $value); + } + } + unset($value); + // Then rebuild the formula string + $formula = implode(self::FORMULA_STRING_QUOTE, $temp); + } else { + // If there's no quoted strings, then we do a simple count/replace + $openCount = substr_count($formula, self::FORMULA_OPEN_MATRIX_BRACE); + $closeCount = substr_count($formula, self::FORMULA_CLOSE_MATRIX_BRACE); + $formula = str_replace($matrixReplaceFrom, $matrixReplaceTo, $formula); + } + // Trap for mismatched braces and trigger an appropriate error + if ($openCount < $closeCount) { + if ($openCount > 0) { + return $this->raiseFormulaError("Formula Error: Mismatched matrix braces '}'"); + } + + return $this->raiseFormulaError("Formula Error: Unexpected '}' encountered"); + } elseif ($openCount > $closeCount) { + if ($closeCount > 0) { + return $this->raiseFormulaError("Formula Error: Mismatched matrix braces '{'"); + } + + return $this->raiseFormulaError("Formula Error: Unexpected '{' encountered"); + } + } + + return $formula; + } + + // Binary Operators + // These operators always work on two values + // Array key is the operator, the value indicates whether this is a left or right associative operator + private static $operatorAssociativity = [ + '^' => 0, // Exponentiation + '*' => 0, '/' => 0, // Multiplication and Division + '+' => 0, '-' => 0, // Addition and Subtraction + '&' => 0, // Concatenation + '∪' => 0, '∩' => 0, ':' => 0, // Union, Intersect and Range + '>' => 0, '<' => 0, '=' => 0, '>=' => 0, '<=' => 0, '<>' => 0, // Comparison + ]; + + // Comparison (Boolean) Operators + // These operators work on two values, but always return a boolean result + private static $comparisonOperators = ['>' => true, '<' => true, '=' => true, '>=' => true, '<=' => true, '<>' => true]; + + // Operator Precedence + // This list includes all valid operators, whether binary (including boolean) or unary (such as %) + // Array key is the operator, the value is its precedence + private static $operatorPrecedence = [ + ':' => 9, // Range + '∩' => 8, // Intersect + '∪' => 7, // Union + '~' => 6, // Negation + '%' => 5, // Percentage + '^' => 4, // Exponentiation + '*' => 3, '/' => 3, // Multiplication and Division + '+' => 2, '-' => 2, // Addition and Subtraction + '&' => 1, // Concatenation + '>' => 0, '<' => 0, '=' => 0, '>=' => 0, '<=' => 0, '<>' => 0, // Comparison + ]; + + // Convert infix to postfix notation + + /** + * @param string $formula + * + * @return array<int, mixed>|false + */ + private function internalParseFormula($formula, ?Cell $cell = null) + { + if (($formula = $this->convertMatrixReferences(trim($formula))) === false) { + return false; + } + + // If we're using cell caching, then $pCell may well be flushed back to the cache (which detaches the parent worksheet), + // so we store the parent worksheet so that we can re-attach it when necessary + $pCellParent = ($cell !== null) ? $cell->getWorksheet() : null; + + $regexpMatchString = '/^(' . self::CALCULATION_REGEXP_STRING . + '|' . self::CALCULATION_REGEXP_FUNCTION . + '|' . self::CALCULATION_REGEXP_CELLREF . + '|' . self::CALCULATION_REGEXP_COLUMN_RANGE . + '|' . self::CALCULATION_REGEXP_ROW_RANGE . + '|' . self::CALCULATION_REGEXP_NUMBER . + '|' . self::CALCULATION_REGEXP_OPENBRACE . + '|' . self::CALCULATION_REGEXP_DEFINEDNAME . + '|' . self::CALCULATION_REGEXP_ERROR . + ')/sui'; + + // Start with initialisation + $index = 0; + $stack = new Stack($this->branchPruner); + $output = []; + $expectingOperator = false; // We use this test in syntax-checking the expression to determine when a + // - is a negation or + is a positive operator rather than an operation + $expectingOperand = false; // We use this test in syntax-checking the expression to determine whether an operand + // should be null in a function call + + // The guts of the lexical parser + // Loop through the formula extracting each operator and operand in turn + while (true) { + // Branch pruning: we adapt the output item to the context (it will + // be used to limit its computation) + $this->branchPruner->initialiseForLoop(); + + $opCharacter = $formula[$index]; // Get the first character of the value at the current index position + + if ((isset(self::$comparisonOperators[$opCharacter])) && (strlen($formula) > $index) && (isset(self::$comparisonOperators[$formula[$index + 1]]))) { + $opCharacter .= $formula[++$index]; + } + // Find out if we're currently at the beginning of a number, variable, cell reference, function, parenthesis or operand + $isOperandOrFunction = (bool) preg_match($regexpMatchString, substr($formula, $index), $match); + + $expectingOperatorCopy = $expectingOperator; + if ($opCharacter == '-' && !$expectingOperator) { // Is it a negation instead of a minus? + // Put a negation on the stack + $stack->push('Unary Operator', '~'); + ++$index; // and drop the negation symbol + } elseif ($opCharacter == '%' && $expectingOperator) { + // Put a percentage on the stack + $stack->push('Unary Operator', '%'); + ++$index; + } elseif ($opCharacter == '+' && !$expectingOperator) { // Positive (unary plus rather than binary operator plus) can be discarded? + ++$index; // Drop the redundant plus symbol + } elseif ((($opCharacter == '~') || ($opCharacter == '∩') || ($opCharacter == '∪')) && (!$isOperandOrFunction)) { // We have to explicitly deny a tilde, union or intersect because they are legal + return $this->raiseFormulaError("Formula Error: Illegal character '~'"); // on the stack but not in the input expression + } elseif ((isset(self::$operators[$opCharacter]) || $isOperandOrFunction) && $expectingOperator) { // Are we putting an operator on the stack? + while ( + $stack->count() > 0 && + ($o2 = $stack->last()) && + isset(self::$operators[$o2['value']]) && + @(self::$operatorAssociativity[$opCharacter] ? self::$operatorPrecedence[$opCharacter] < self::$operatorPrecedence[$o2['value']] : self::$operatorPrecedence[$opCharacter] <= self::$operatorPrecedence[$o2['value']]) + ) { + $output[] = $stack->pop(); // Swap operands and higher precedence operators from the stack to the output + } + + // Finally put our current operator onto the stack + $stack->push('Binary Operator', $opCharacter); + + ++$index; + $expectingOperator = false; + } elseif ($opCharacter == ')' && $expectingOperator) { // Are we expecting to close a parenthesis? + $expectingOperand = false; + while (($o2 = $stack->pop()) && $o2['value'] !== '(') { // Pop off the stack back to the last ( + if ($o2 === null) { + return $this->raiseFormulaError('Formula Error: Unexpected closing brace ")"'); + } + $output[] = $o2; + } + $d = $stack->last(2); + + // Branch pruning we decrease the depth whether is it a function + // call or a parenthesis + $this->branchPruner->decrementDepth(); + + if (is_array($d) && preg_match('/^' . self::CALCULATION_REGEXP_FUNCTION . '$/miu', $d['value'], $matches)) { + // Did this parenthesis just close a function? + try { + $this->branchPruner->closingBrace($d['value']); + } catch (Exception $e) { + return $this->raiseFormulaError($e->getMessage()); + } + + $functionName = $matches[1]; // Get the function name + $d = $stack->pop(); + $argumentCount = $d['value'] ?? 0; // See how many arguments there were (argument count is the next value stored on the stack) + $output[] = $d; // Dump the argument count on the output + $output[] = $stack->pop(); // Pop the function and push onto the output + if (isset(self::$controlFunctions[$functionName])) { + $expectedArgumentCount = self::$controlFunctions[$functionName]['argumentCount']; + $functionCall = self::$controlFunctions[$functionName]['functionCall']; + } elseif (isset(self::$phpSpreadsheetFunctions[$functionName])) { + $expectedArgumentCount = self::$phpSpreadsheetFunctions[$functionName]['argumentCount']; + $functionCall = self::$phpSpreadsheetFunctions[$functionName]['functionCall']; + } else { // did we somehow push a non-function on the stack? this should never happen + return $this->raiseFormulaError('Formula Error: Internal error, non-function on stack'); + } + // Check the argument count + $argumentCountError = false; + $expectedArgumentCountString = null; + if (is_numeric($expectedArgumentCount)) { + if ($expectedArgumentCount < 0) { + if ($argumentCount > abs($expectedArgumentCount)) { + $argumentCountError = true; + $expectedArgumentCountString = 'no more than ' . abs($expectedArgumentCount); + } + } else { + if ($argumentCount != $expectedArgumentCount) { + $argumentCountError = true; + $expectedArgumentCountString = $expectedArgumentCount; + } + } + } elseif ($expectedArgumentCount != '*') { + $isOperandOrFunction = preg_match('/(\d*)([-+,])(\d*)/', $expectedArgumentCount, $argMatch); + switch ($argMatch[2]) { + case '+': + if ($argumentCount < $argMatch[1]) { + $argumentCountError = true; + $expectedArgumentCountString = $argMatch[1] . ' or more '; + } + + break; + case '-': + if (($argumentCount < $argMatch[1]) || ($argumentCount > $argMatch[3])) { + $argumentCountError = true; + $expectedArgumentCountString = 'between ' . $argMatch[1] . ' and ' . $argMatch[3]; + } + + break; + case ',': + if (($argumentCount != $argMatch[1]) && ($argumentCount != $argMatch[3])) { + $argumentCountError = true; + $expectedArgumentCountString = 'either ' . $argMatch[1] . ' or ' . $argMatch[3]; + } + + break; + } + } + if ($argumentCountError) { + return $this->raiseFormulaError("Formula Error: Wrong number of arguments for $functionName() function: $argumentCount given, " . $expectedArgumentCountString . ' expected'); + } + } + ++$index; + } elseif ($opCharacter == ',') { // Is this the separator for function arguments? + try { + $this->branchPruner->argumentSeparator(); + } catch (Exception $e) { + return $this->raiseFormulaError($e->getMessage()); + } + + while (($o2 = $stack->pop()) && $o2['value'] !== '(') { // Pop off the stack back to the last ( + if ($o2 === null) { + return $this->raiseFormulaError('Formula Error: Unexpected ,'); + } + $output[] = $o2; // pop the argument expression stuff and push onto the output + } + // If we've a comma when we're expecting an operand, then what we actually have is a null operand; + // so push a null onto the stack + if (($expectingOperand) || (!$expectingOperator)) { + $output[] = ['type' => 'Empty Argument', 'value' => self::$excelConstants['NULL'], 'reference' => 'NULL']; + } + // make sure there was a function + $d = $stack->last(2); + if (!preg_match('/^' . self::CALCULATION_REGEXP_FUNCTION . '$/miu', $d['value'] ?? '', $matches)) { + // Can we inject a dummy function at this point so that the braces at least have some context + // because at least the braces are paired up (at this stage in the formula) + // MS Excel allows this if the content is cell references; but doesn't allow actual values, + // but at this point, we can't differentiate (so allow both) + return $this->raiseFormulaError('Formula Error: Unexpected ,'); + } + + /** @var array $d */ + $d = $stack->pop(); + ++$d['value']; // increment the argument count + + $stack->pushStackItem($d); + $stack->push('Brace', '('); // put the ( back on, we'll need to pop back to it again + + $expectingOperator = false; + $expectingOperand = true; + ++$index; + } elseif ($opCharacter == '(' && !$expectingOperator) { + // Branch pruning: we go deeper + $this->branchPruner->incrementDepth(); + $stack->push('Brace', '(', null); + ++$index; + } elseif ($isOperandOrFunction && !$expectingOperatorCopy) { // do we now have a function/variable/number? + $expectingOperator = true; + $expectingOperand = false; + $val = $match[1]; + $length = strlen($val); + + if (preg_match('/^' . self::CALCULATION_REGEXP_FUNCTION . '$/miu', $val, $matches)) { + $val = (string) preg_replace('/\s/u', '', $val); + if (isset(self::$phpSpreadsheetFunctions[strtoupper($matches[1])]) || isset(self::$controlFunctions[strtoupper($matches[1])])) { // it's a function + $valToUpper = strtoupper($val); + } else { + $valToUpper = 'NAME.ERROR('; + } + // here $matches[1] will contain values like "IF" + // and $val "IF(" + + $this->branchPruner->functionCall($valToUpper); + + $stack->push('Function', $valToUpper); + // tests if the function is closed right after opening + $ax = preg_match('/^\s*\)/u', substr($formula, $index + $length)); + if ($ax) { + $stack->push('Operand Count for Function ' . $valToUpper . ')', 0); + $expectingOperator = true; + } else { + $stack->push('Operand Count for Function ' . $valToUpper . ')', 1); + $expectingOperator = false; + } + $stack->push('Brace', '('); + } elseif (preg_match('/^' . self::CALCULATION_REGEXP_CELLREF . '$/miu', $val, $matches)) { + // Watch for this case-change when modifying to allow cell references in different worksheets... + // Should only be applied to the actual cell column, not the worksheet name + // If the last entry on the stack was a : operator, then we have a cell range reference + $testPrevOp = $stack->last(1); + if ($testPrevOp !== null && $testPrevOp['value'] === ':') { + // If we have a worksheet reference, then we're playing with a 3D reference + if ($matches[2] === '') { + // Otherwise, we 'inherit' the worksheet reference from the start cell reference + // The start of the cell range reference should be the last entry in $output + $rangeStartCellRef = $output[count($output) - 1]['value']; + if ($rangeStartCellRef === ':') { + // Do we have chained range operators? + $rangeStartCellRef = $output[count($output) - 2]['value']; + } + preg_match('/^' . self::CALCULATION_REGEXP_CELLREF . '$/miu', $rangeStartCellRef, $rangeStartMatches); + if ($rangeStartMatches[2] > '') { + $val = $rangeStartMatches[2] . '!' . $val; + } + } else { + $rangeStartCellRef = $output[count($output) - 1]['value']; + if ($rangeStartCellRef === ':') { + // Do we have chained range operators? + $rangeStartCellRef = $output[count($output) - 2]['value']; + } + preg_match('/^' . self::CALCULATION_REGEXP_CELLREF . '$/miu', $rangeStartCellRef, $rangeStartMatches); + if ($rangeStartMatches[2] !== $matches[2]) { + return $this->raiseFormulaError('3D Range references are not yet supported'); + } + } + } elseif (strpos($val, '!') === false && $pCellParent !== null) { + $worksheet = $pCellParent->getTitle(); + $val = "'{$worksheet}'!{$val}"; + } + // unescape any apostrophes or double quotes in worksheet name + $val = str_replace(["''", '""'], ["'", '"'], $val); + $outputItem = $stack->getStackItem('Cell Reference', $val, $val); + + $output[] = $outputItem; + } else { // it's a variable, constant, string, number or boolean + $localeConstant = false; + $stackItemType = 'Value'; + $stackItemReference = null; + + // If the last entry on the stack was a : operator, then we may have a row or column range reference + $testPrevOp = $stack->last(1); + if ($testPrevOp !== null && $testPrevOp['value'] === ':') { + $stackItemType = 'Cell Reference'; + + if ( + !is_numeric($val) && + ((ctype_alpha($val) === false || strlen($val) > 3)) && + (preg_match('/^' . self::CALCULATION_REGEXP_DEFINEDNAME . '$/mui', $val) !== false) && + ($this->spreadsheet->getNamedRange($val) !== null) + ) { + $namedRange = $this->spreadsheet->getNamedRange($val); + if ($namedRange !== null) { + $stackItemType = 'Defined Name'; + $address = str_replace('$', '', $namedRange->getValue()); + $stackItemReference = $val; + if (strpos($address, ':') !== false) { + // We'll need to manipulate the stack for an actual named range rather than a named cell + $fromTo = explode(':', $address); + $to = array_pop($fromTo); + foreach ($fromTo as $from) { + $output[] = $stack->getStackItem($stackItemType, $from, $stackItemReference); + $output[] = $stack->getStackItem('Binary Operator', ':'); + } + $address = $to; + } + $val = $address; + } + } else { + $startRowColRef = $output[count($output) - 1]['value']; + [$rangeWS1, $startRowColRef] = Worksheet::extractSheetTitle($startRowColRef, true); + $rangeSheetRef = $rangeWS1; + if ($rangeWS1 !== '') { + $rangeWS1 .= '!'; + } + $rangeSheetRef = trim($rangeSheetRef, "'"); + [$rangeWS2, $val] = Worksheet::extractSheetTitle($val, true); + if ($rangeWS2 !== '') { + $rangeWS2 .= '!'; + } else { + $rangeWS2 = $rangeWS1; + } + + $refSheet = $pCellParent; + if ($pCellParent !== null && $rangeSheetRef !== '' && $rangeSheetRef !== $pCellParent->getTitle()) { + $refSheet = $pCellParent->getParent()->getSheetByName($rangeSheetRef); + } + + if (ctype_digit($val) && $val <= 1048576) { + // Row range + $stackItemType = 'Row Reference'; + /** @var int $valx */ + $valx = $val; + $endRowColRef = ($refSheet !== null) ? $refSheet->getHighestDataColumn($valx) : 'XFD'; // Max 16,384 columns for Excel2007 + $val = "{$rangeWS2}{$endRowColRef}{$val}"; + } elseif (ctype_alpha($val) && strlen($val) <= 3) { + // Column range + $stackItemType = 'Column Reference'; + $endRowColRef = ($refSheet !== null) ? $refSheet->getHighestDataRow($val) : 1048576; // Max 1,048,576 rows for Excel2007 + $val = "{$rangeWS2}{$val}{$endRowColRef}"; + } + $stackItemReference = $val; + } + } elseif ($opCharacter == self::FORMULA_STRING_QUOTE) { + // UnEscape any quotes within the string + $val = self::wrapResult(str_replace('""', self::FORMULA_STRING_QUOTE, self::unwrapResult($val))); + } elseif (isset(self::$excelConstants[trim(strtoupper($val))])) { + $stackItemType = 'Constant'; + $excelConstant = trim(strtoupper($val)); + $val = self::$excelConstants[$excelConstant]; + } elseif (($localeConstant = array_search(trim(strtoupper($val)), self::$localeBoolean)) !== false) { + $stackItemType = 'Constant'; + $val = self::$excelConstants[$localeConstant]; + } elseif ( + preg_match('/^' . self::CALCULATION_REGEXP_ROW_RANGE . '/miu', substr($formula, $index), $rowRangeReference) + ) { + $val = $rowRangeReference[1]; + $length = strlen($rowRangeReference[1]); + $stackItemType = 'Row Reference'; + // unescape any apostrophes or double quotes in worksheet name + $val = str_replace(["''", '""'], ["'", '"'], $val); + $column = 'A'; + if (($testPrevOp !== null && $testPrevOp['value'] === ':') && $pCellParent !== null) { + $column = $pCellParent->getHighestDataColumn($val); + } + $val = "{$rowRangeReference[2]}{$column}{$rowRangeReference[7]}"; + $stackItemReference = $val; + } elseif ( + preg_match('/^' . self::CALCULATION_REGEXP_COLUMN_RANGE . '/miu', substr($formula, $index), $columnRangeReference) + ) { + $val = $columnRangeReference[1]; + $length = strlen($val); + $stackItemType = 'Column Reference'; + // unescape any apostrophes or double quotes in worksheet name + $val = str_replace(["''", '""'], ["'", '"'], $val); + $row = '1'; + if (($testPrevOp !== null && $testPrevOp['value'] === ':') && $pCellParent !== null) { + $row = $pCellParent->getHighestDataRow($val); + } + $val = "{$val}{$row}"; + $stackItemReference = $val; + } elseif (preg_match('/^' . self::CALCULATION_REGEXP_DEFINEDNAME . '.*/miu', $val, $match)) { + $stackItemType = 'Defined Name'; + $stackItemReference = $val; + } elseif (is_numeric($val)) { + if ((strpos($val, '.') !== false) || (stripos($val, 'e') !== false) || ($val > PHP_INT_MAX) || ($val < -PHP_INT_MAX)) { + $val = (float) $val; + } else { + $val = (int) $val; + } + } + + $details = $stack->getStackItem($stackItemType, $val, $stackItemReference); + if ($localeConstant) { + $details['localeValue'] = $localeConstant; + } + $output[] = $details; + } + $index += $length; + } elseif ($opCharacter == '$') { // absolute row or column range + ++$index; + } elseif ($opCharacter == ')') { // miscellaneous error checking + if ($expectingOperand) { + $output[] = ['type' => 'Empty Argument', 'value' => self::$excelConstants['NULL'], 'reference' => 'NULL']; + $expectingOperand = false; + $expectingOperator = true; + } else { + return $this->raiseFormulaError("Formula Error: Unexpected ')'"); + } + } elseif (isset(self::$operators[$opCharacter]) && !$expectingOperator) { + return $this->raiseFormulaError("Formula Error: Unexpected operator '$opCharacter'"); + } else { // I don't even want to know what you did to get here + return $this->raiseFormulaError('Formula Error: An unexpected error occurred'); + } + // Test for end of formula string + if ($index == strlen($formula)) { + // Did we end with an operator?. + // Only valid for the % unary operator + if ((isset(self::$operators[$opCharacter])) && ($opCharacter != '%')) { + return $this->raiseFormulaError("Formula Error: Operator '$opCharacter' has no operands"); + } + + break; + } + // Ignore white space + while (($formula[$index] == "\n") || ($formula[$index] == "\r")) { + ++$index; + } + + if ($formula[$index] == ' ') { + while ($formula[$index] === ' ') { + ++$index; + } + + // If we're expecting an operator, but only have a space between the previous and next operands (and both are + // Cell References) then we have an INTERSECTION operator + $countOutputMinus1 = count($output) - 1; + if ( + ($expectingOperator) && + array_key_exists($countOutputMinus1, $output) && + is_array($output[$countOutputMinus1]) && + array_key_exists('type', $output[$countOutputMinus1]) && + ( + (preg_match('/^' . self::CALCULATION_REGEXP_CELLREF . '.*/Ui', substr($formula, $index), $match)) && + ($output[$countOutputMinus1]['type'] === 'Cell Reference') || + (preg_match('/^' . self::CALCULATION_REGEXP_DEFINEDNAME . '.*/miu', substr($formula, $index), $match)) && + ($output[$countOutputMinus1]['type'] === 'Defined Name' || $output[$countOutputMinus1]['type'] === 'Value') + ) + ) { + while ( + $stack->count() > 0 && + ($o2 = $stack->last()) && + isset(self::$operators[$o2['value']]) && + @(self::$operatorAssociativity[$opCharacter] ? self::$operatorPrecedence[$opCharacter] < self::$operatorPrecedence[$o2['value']] : self::$operatorPrecedence[$opCharacter] <= self::$operatorPrecedence[$o2['value']]) + ) { + $output[] = $stack->pop(); // Swap operands and higher precedence operators from the stack to the output + } + $stack->push('Binary Operator', '∩'); // Put an Intersect Operator on the stack + $expectingOperator = false; + } + } + } + + while (($op = $stack->pop()) !== null) { + // pop everything off the stack and push onto output + if ((is_array($op) && $op['value'] == '(') || ($op === '(')) { + return $this->raiseFormulaError("Formula Error: Expecting ')'"); // if there are any opening braces on the stack, then braces were unbalanced + } + $output[] = $op; + } + + return $output; + } + + private static function dataTestReference(&$operandData) + { + $operand = $operandData['value']; + if (($operandData['reference'] === null) && (is_array($operand))) { + $rKeys = array_keys($operand); + $rowKey = array_shift($rKeys); + if (is_array($operand[$rowKey]) === false) { + $operandData['value'] = $operand[$rowKey]; + + return $operand[$rowKey]; + } + + $cKeys = array_keys(array_keys($operand[$rowKey])); + $colKey = array_shift($cKeys); + if (ctype_upper("$colKey")) { + $operandData['reference'] = $colKey . $rowKey; + } + } + + return $operand; + } + + // evaluate postfix notation + + /** + * @param mixed $tokens + * @param null|string $cellID + * + * @return array<int, mixed>|false + */ + private function processTokenStack($tokens, $cellID = null, ?Cell $cell = null) + { + if ($tokens === false) { + return false; + } + + // If we're using cell caching, then $pCell may well be flushed back to the cache (which detaches the parent cell collection), + // so we store the parent cell collection so that we can re-attach it when necessary + $pCellWorksheet = ($cell !== null) ? $cell->getWorksheet() : null; + $pCellParent = ($cell !== null) ? $cell->getParent() : null; + $stack = new Stack($this->branchPruner); + + // Stores branches that have been pruned + $fakedForBranchPruning = []; + // help us to know when pruning ['branchTestId' => true/false] + $branchStore = []; + // Loop through each token in turn + foreach ($tokens as $tokenData) { + $token = $tokenData['value']; + // Branch pruning: skip useless resolutions + $storeKey = $tokenData['storeKey'] ?? null; + if ($this->branchPruningEnabled && isset($tokenData['onlyIf'])) { + $onlyIfStoreKey = $tokenData['onlyIf']; + $storeValue = $branchStore[$onlyIfStoreKey] ?? null; + $storeValueAsBool = ($storeValue === null) ? + true : (bool) Functions::flattenSingleValue($storeValue); + if (is_array($storeValue)) { + $wrappedItem = end($storeValue); + $storeValue = is_array($wrappedItem) ? end($wrappedItem) : $wrappedItem; + } + + if ( + (isset($storeValue) || $tokenData['reference'] === 'NULL') + && (!$storeValueAsBool || ErrorValue::isError($storeValue) || ($storeValue === 'Pruned branch')) + ) { + // If branching value is not true, we don't need to compute + if (!isset($fakedForBranchPruning['onlyIf-' . $onlyIfStoreKey])) { + $stack->push('Value', 'Pruned branch (only if ' . $onlyIfStoreKey . ') ' . $token); + $fakedForBranchPruning['onlyIf-' . $onlyIfStoreKey] = true; + } + + if (isset($storeKey)) { + // We are processing an if condition + // We cascade the pruning to the depending branches + $branchStore[$storeKey] = 'Pruned branch'; + $fakedForBranchPruning['onlyIfNot-' . $storeKey] = true; + $fakedForBranchPruning['onlyIf-' . $storeKey] = true; + } + + continue; + } + } + + if ($this->branchPruningEnabled && isset($tokenData['onlyIfNot'])) { + $onlyIfNotStoreKey = $tokenData['onlyIfNot']; + $storeValue = $branchStore[$onlyIfNotStoreKey] ?? null; + $storeValueAsBool = ($storeValue === null) ? + true : (bool) Functions::flattenSingleValue($storeValue); + if (is_array($storeValue)) { + $wrappedItem = end($storeValue); + $storeValue = is_array($wrappedItem) ? end($wrappedItem) : $wrappedItem; + } + + if ( + (isset($storeValue) || $tokenData['reference'] === 'NULL') + && ($storeValueAsBool || ErrorValue::isError($storeValue) || ($storeValue === 'Pruned branch')) + ) { + // If branching value is true, we don't need to compute + if (!isset($fakedForBranchPruning['onlyIfNot-' . $onlyIfNotStoreKey])) { + $stack->push('Value', 'Pruned branch (only if not ' . $onlyIfNotStoreKey . ') ' . $token); + $fakedForBranchPruning['onlyIfNot-' . $onlyIfNotStoreKey] = true; + } + + if (isset($storeKey)) { + // We are processing an if condition + // We cascade the pruning to the depending branches + $branchStore[$storeKey] = 'Pruned branch'; + $fakedForBranchPruning['onlyIfNot-' . $storeKey] = true; + $fakedForBranchPruning['onlyIf-' . $storeKey] = true; + } + + continue; + } + } + + // if the token is a binary operator, pop the top two values off the stack, do the operation, and push the result back on the stack + if (!is_numeric($token) && isset(self::$binaryOperators[$token])) { + // We must have two operands, error if we don't + if (($operand2Data = $stack->pop()) === null) { + return $this->raiseFormulaError('Internal error - Operand value missing from stack'); + } + if (($operand1Data = $stack->pop()) === null) { + return $this->raiseFormulaError('Internal error - Operand value missing from stack'); + } + + $operand1 = self::dataTestReference($operand1Data); + $operand2 = self::dataTestReference($operand2Data); + + // Log what we're doing + if ($token == ':') { + $this->debugLog->writeDebugLog('Evaluating Range %s %s %s', $this->showValue($operand1Data['reference']), $token, $this->showValue($operand2Data['reference'])); + } else { + $this->debugLog->writeDebugLog('Evaluating %s %s %s', $this->showValue($operand1), $token, $this->showValue($operand2)); + } + + // Process the operation in the appropriate manner + switch ($token) { + // Comparison (Boolean) Operators + case '>': // Greater than + case '<': // Less than + case '>=': // Greater than or Equal to + case '<=': // Less than or Equal to + case '=': // Equality + case '<>': // Inequality + $result = $this->executeBinaryComparisonOperation($operand1, $operand2, (string) $token, $stack); + if (isset($storeKey)) { + $branchStore[$storeKey] = $result; + } + + break; + // Binary Operators + case ':': // Range + if ($operand1Data['type'] === 'Defined Name') { + if (preg_match('/$' . self::CALCULATION_REGEXP_DEFINEDNAME . '^/mui', $operand1Data['reference']) !== false) { + $definedName = $this->spreadsheet->getNamedRange($operand1Data['reference']); + if ($definedName !== null) { + $operand1Data['reference'] = $operand1Data['value'] = str_replace('$', '', $definedName->getValue()); + } + } + } + if (strpos($operand1Data['reference'], '!') !== false) { + [$sheet1, $operand1Data['reference']] = Worksheet::extractSheetTitle($operand1Data['reference'], true); + } else { + $sheet1 = ($pCellWorksheet !== null) ? $pCellWorksheet->getTitle() : ''; + } + + [$sheet2, $operand2Data['reference']] = Worksheet::extractSheetTitle($operand2Data['reference'], true); + if (empty($sheet2)) { + $sheet2 = $sheet1; + } + + if (trim($sheet1, "'") === trim($sheet2, "'")) { + if ($operand1Data['reference'] === null && $cell !== null) { + if (is_array($operand1Data['value'])) { + $operand1Data['reference'] = $cell->getCoordinate(); + } elseif ((trim($operand1Data['value']) != '') && (is_numeric($operand1Data['value']))) { + $operand1Data['reference'] = $cell->getColumn() . $operand1Data['value']; + } elseif (trim($operand1Data['value']) == '') { + $operand1Data['reference'] = $cell->getCoordinate(); + } else { + $operand1Data['reference'] = $operand1Data['value'] . $cell->getRow(); + } + } + if ($operand2Data['reference'] === null && $cell !== null) { + if (is_array($operand2Data['value'])) { + $operand2Data['reference'] = $cell->getCoordinate(); + } elseif ((trim($operand2Data['value']) != '') && (is_numeric($operand2Data['value']))) { + $operand2Data['reference'] = $cell->getColumn() . $operand2Data['value']; + } elseif (trim($operand2Data['value']) == '') { + $operand2Data['reference'] = $cell->getCoordinate(); + } else { + $operand2Data['reference'] = $operand2Data['value'] . $cell->getRow(); + } + } + + $oData = array_merge(explode(':', $operand1Data['reference']), explode(':', $operand2Data['reference'])); + $oCol = $oRow = []; + foreach ($oData as $oDatum) { + $oCR = Coordinate::coordinateFromString($oDatum); + $oCol[] = Coordinate::columnIndexFromString($oCR[0]) - 1; + $oRow[] = $oCR[1]; + } + $cellRef = Coordinate::stringFromColumnIndex(min($oCol) + 1) . min($oRow) . ':' . Coordinate::stringFromColumnIndex(max($oCol) + 1) . max($oRow); + if ($pCellParent !== null) { + $cellValue = $this->extractCellRange($cellRef, $this->spreadsheet->getSheetByName($sheet1), false); + } else { + return $this->raiseFormulaError('Unable to access Cell Reference'); + } + + $stack->push('Cell Reference', $cellValue, $cellRef); + } else { + $stack->push('Error', Information\ExcelError::REF(), null); + } + + break; + case '+': // Addition + $result = $this->executeNumericBinaryOperation($operand1, $operand2, $token, 'plusEquals', $stack); + if (isset($storeKey)) { + $branchStore[$storeKey] = $result; + } + + break; + case '-': // Subtraction + $result = $this->executeNumericBinaryOperation($operand1, $operand2, $token, 'minusEquals', $stack); + if (isset($storeKey)) { + $branchStore[$storeKey] = $result; + } + + break; + case '*': // Multiplication + $result = $this->executeNumericBinaryOperation($operand1, $operand2, $token, 'arrayTimesEquals', $stack); + if (isset($storeKey)) { + $branchStore[$storeKey] = $result; + } + + break; + case '/': // Division + $result = $this->executeNumericBinaryOperation($operand1, $operand2, $token, 'arrayRightDivide', $stack); + if (isset($storeKey)) { + $branchStore[$storeKey] = $result; + } + + break; + case '^': // Exponential + $result = $this->executeNumericBinaryOperation($operand1, $operand2, $token, 'power', $stack); + if (isset($storeKey)) { + $branchStore[$storeKey] = $result; + } + + break; + case '&': // Concatenation + // If either of the operands is a matrix, we need to treat them both as matrices + // (converting the other operand to a matrix if need be); then perform the required + // matrix operation + if (is_bool($operand1)) { + $operand1 = ($operand1) ? self::$localeBoolean['TRUE'] : self::$localeBoolean['FALSE']; + } + if (is_bool($operand2)) { + $operand2 = ($operand2) ? self::$localeBoolean['TRUE'] : self::$localeBoolean['FALSE']; + } + if ((is_array($operand1)) || (is_array($operand2))) { + // Ensure that both operands are arrays/matrices + self::checkMatrixOperands($operand1, $operand2, 2); + + try { + // Convert operand 1 from a PHP array to a matrix + $matrix = new Shared\JAMA\Matrix($operand1); + // Perform the required operation against the operand 1 matrix, passing in operand 2 + $matrixResult = $matrix->concat($operand2); + $result = $matrixResult->getArray(); + if (isset($result[0][0])) { + $result[0][0] = Shared\StringHelper::substring($result[0][0], 0, DataType::MAX_STRING_LENGTH); + } + } catch (\Exception $ex) { + $this->debugLog->writeDebugLog('JAMA Matrix Exception: %s', $ex->getMessage()); + $result = '#VALUE!'; + } + } else { + // In theory, we should truncate here. + // But I can't figure out a formula + // using the concatenation operator + // with literals that fits in 32K, + // so I don't think we can overflow here. + $result = self::FORMULA_STRING_QUOTE . str_replace('""', self::FORMULA_STRING_QUOTE, self::unwrapResult($operand1) . self::unwrapResult($operand2)) . self::FORMULA_STRING_QUOTE; + } + $this->debugLog->writeDebugLog('Evaluation Result is %s', $this->showTypeDetails($result)); + $stack->push('Value', $result); + + if (isset($storeKey)) { + $branchStore[$storeKey] = $result; + } + + break; + case '∩': // Intersect + $rowIntersect = array_intersect_key($operand1, $operand2); + $cellIntersect = $oCol = $oRow = []; + foreach (array_keys($rowIntersect) as $row) { + $oRow[] = $row; + foreach ($rowIntersect[$row] as $col => $data) { + $oCol[] = Coordinate::columnIndexFromString($col) - 1; + $cellIntersect[$row] = array_intersect_key($operand1[$row], $operand2[$row]); + } + } + if (count(Functions::flattenArray($cellIntersect)) === 0) { + $this->debugLog->writeDebugLog('Evaluation Result is %s', $this->showTypeDetails($cellIntersect)); + $stack->push('Error', Functions::null(), null); + } else { + $cellRef = Coordinate::stringFromColumnIndex(min($oCol) + 1) . min($oRow) . ':' . + Coordinate::stringFromColumnIndex(max($oCol) + 1) . max($oRow); + $this->debugLog->writeDebugLog('Evaluation Result is %s', $this->showTypeDetails($cellIntersect)); + $stack->push('Value', $cellIntersect, $cellRef); + } + + break; + } + + // if the token is a unary operator, pop one value off the stack, do the operation, and push it back on + } elseif (($token === '~') || ($token === '%')) { + if (($arg = $stack->pop()) === null) { + return $this->raiseFormulaError('Internal error - Operand value missing from stack'); + } + $arg = $arg['value']; + if ($token === '~') { + $this->debugLog->writeDebugLog('Evaluating Negation of %s', $this->showValue($arg)); + $multiplier = -1; + } else { + $this->debugLog->writeDebugLog('Evaluating Percentile of %s', $this->showValue($arg)); + $multiplier = 0.01; + } + if (is_array($arg)) { + self::checkMatrixOperands($arg, $multiplier, 2); + + try { + $matrix1 = new Shared\JAMA\Matrix($arg); + $matrixResult = $matrix1->arrayTimesEquals($multiplier); + $result = $matrixResult->getArray(); + } catch (\Exception $ex) { + $this->debugLog->writeDebugLog('JAMA Matrix Exception: %s', $ex->getMessage()); + $result = '#VALUE!'; + } + $this->debugLog->writeDebugLog('Evaluation Result is %s', $this->showTypeDetails($result)); + $stack->push('Value', $result); + if (isset($storeKey)) { + $branchStore[$storeKey] = $result; + } + } else { + $this->executeNumericBinaryOperation($multiplier, $arg, '*', 'arrayTimesEquals', $stack); + } + } elseif (preg_match('/^' . self::CALCULATION_REGEXP_CELLREF . '$/i', $token ?? '', $matches)) { + $cellRef = null; + + if (isset($matches[8])) { + if ($cell === null) { + // We can't access the range, so return a REF error + $cellValue = Information\ExcelError::REF(); + } else { + $cellRef = $matches[6] . $matches[7] . ':' . $matches[9] . $matches[10]; + if ($matches[2] > '') { + $matches[2] = trim($matches[2], "\"'"); + if ((strpos($matches[2], '[') !== false) || (strpos($matches[2], ']') !== false)) { + // It's a Reference to an external spreadsheet (not currently supported) + return $this->raiseFormulaError('Unable to access External Workbook'); + } + $matches[2] = trim($matches[2], "\"'"); + $this->debugLog->writeDebugLog('Evaluating Cell Range %s in worksheet %s', $cellRef, $matches[2]); + if ($pCellParent !== null) { + $cellValue = $this->extractCellRange($cellRef, $this->spreadsheet->getSheetByName($matches[2]), false); + } else { + return $this->raiseFormulaError('Unable to access Cell Reference'); + } + $this->debugLog->writeDebugLog('Evaluation Result for cells %s in worksheet %s is %s', $cellRef, $matches[2], $this->showTypeDetails($cellValue)); + } else { + $this->debugLog->writeDebugLog('Evaluating Cell Range %s in current worksheet', $cellRef); + if ($pCellParent !== null) { + $cellValue = $this->extractCellRange($cellRef, $pCellWorksheet, false); + } else { + return $this->raiseFormulaError('Unable to access Cell Reference'); + } + $this->debugLog->writeDebugLog('Evaluation Result for cells %s is %s', $cellRef, $this->showTypeDetails($cellValue)); + } + } + } else { + if ($cell === null) { + // We can't access the cell, so return a REF error + $cellValue = Information\ExcelError::REF(); + } else { + $cellRef = $matches[6] . $matches[7]; + if ($matches[2] > '') { + $matches[2] = trim($matches[2], "\"'"); + if ((strpos($matches[2], '[') !== false) || (strpos($matches[2], ']') !== false)) { + // It's a Reference to an external spreadsheet (not currently supported) + return $this->raiseFormulaError('Unable to access External Workbook'); + } + $this->debugLog->writeDebugLog('Evaluating Cell %s in worksheet %s', $cellRef, $matches[2]); + if ($pCellParent !== null) { + $cellSheet = $this->spreadsheet->getSheetByName($matches[2]); + if ($cellSheet && $cellSheet->cellExists($cellRef)) { + $cellValue = $this->extractCellRange($cellRef, $this->spreadsheet->getSheetByName($matches[2]), false); + $cell->attach($pCellParent); + } else { + $cellRef = ($cellSheet !== null) ? "'{$matches[2]}'!{$cellRef}" : $cellRef; + $cellValue = ($cellSheet !== null) ? null : Information\ExcelError::REF(); + } + } else { + return $this->raiseFormulaError('Unable to access Cell Reference'); + } + $this->debugLog->writeDebugLog('Evaluation Result for cell %s in worksheet %s is %s', $cellRef, $matches[2], $this->showTypeDetails($cellValue)); + } else { + $this->debugLog->writeDebugLog('Evaluating Cell %s in current worksheet', $cellRef); + if ($pCellParent !== null && $pCellParent->has($cellRef)) { + $cellValue = $this->extractCellRange($cellRef, $pCellWorksheet, false); + $cell->attach($pCellParent); + } else { + $cellValue = null; + } + $this->debugLog->writeDebugLog('Evaluation Result for cell %s is %s', $cellRef, $this->showTypeDetails($cellValue)); + } + } + } + + $stack->push('Cell Value', $cellValue, $cellRef); + if (isset($storeKey)) { + $branchStore[$storeKey] = $cellValue; + } + + // if the token is a function, pop arguments off the stack, hand them to the function, and push the result back on + } elseif (preg_match('/^' . self::CALCULATION_REGEXP_FUNCTION . '$/miu', $token ?? '', $matches)) { + if ($pCellParent) { + $cell->attach($pCellParent); + } + + $functionName = $matches[1]; + $argCount = $stack->pop(); + $argCount = $argCount['value']; + if ($functionName !== 'MKMATRIX') { + $this->debugLog->writeDebugLog('Evaluating Function %s() with %s argument%s', self::localeFunc($functionName), (($argCount == 0) ? 'no' : $argCount), (($argCount == 1) ? '' : 's')); + } + if ((isset(self::$phpSpreadsheetFunctions[$functionName])) || (isset(self::$controlFunctions[$functionName]))) { // function + $passByReference = false; + $passCellReference = false; + $functionCall = null; + if (isset(self::$phpSpreadsheetFunctions[$functionName])) { + $functionCall = self::$phpSpreadsheetFunctions[$functionName]['functionCall']; + $passByReference = isset(self::$phpSpreadsheetFunctions[$functionName]['passByReference']); + $passCellReference = isset(self::$phpSpreadsheetFunctions[$functionName]['passCellReference']); + } elseif (isset(self::$controlFunctions[$functionName])) { + $functionCall = self::$controlFunctions[$functionName]['functionCall']; + $passByReference = isset(self::$controlFunctions[$functionName]['passByReference']); + $passCellReference = isset(self::$controlFunctions[$functionName]['passCellReference']); + } + + // get the arguments for this function + $args = $argArrayVals = []; + $emptyArguments = []; + for ($i = 0; $i < $argCount; ++$i) { + $arg = $stack->pop(); + $a = $argCount - $i - 1; + if ( + ($passByReference) && + (isset(self::$phpSpreadsheetFunctions[$functionName]['passByReference'][$a])) && + (self::$phpSpreadsheetFunctions[$functionName]['passByReference'][$a]) + ) { + if ($arg['reference'] === null) { + $args[] = $cellID; + if ($functionName !== 'MKMATRIX') { + $argArrayVals[] = $this->showValue($cellID); + } + } else { + $args[] = $arg['reference']; + if ($functionName !== 'MKMATRIX') { + $argArrayVals[] = $this->showValue($arg['reference']); + } + } + } else { + $emptyArguments[] = ($arg['type'] === 'Empty Argument'); + $args[] = self::unwrapResult($arg['value']); + if ($functionName !== 'MKMATRIX') { + $argArrayVals[] = $this->showValue($arg['value']); + } + } + } + + // Reverse the order of the arguments + krsort($args); + krsort($emptyArguments); + + if ($argCount > 0) { + $args = $this->addDefaultArgumentValues($functionCall, $args, $emptyArguments); + } + + if (($passByReference) && ($argCount == 0)) { + $args[] = $cellID; + $argArrayVals[] = $this->showValue($cellID); + } + + if ($functionName !== 'MKMATRIX') { + if ($this->debugLog->getWriteDebugLog()) { + krsort($argArrayVals); + $this->debugLog->writeDebugLog('Evaluating %s ( %s )', self::localeFunc($functionName), implode(self::$localeArgumentSeparator . ' ', Functions::flattenArray($argArrayVals))); + } + } + + // Process the argument with the appropriate function call + $args = $this->addCellReference($args, $passCellReference, $functionCall, $cell); + + if (!is_array($functionCall)) { + foreach ($args as &$arg) { + $arg = Functions::flattenSingleValue($arg); + } + unset($arg); + } + + $result = call_user_func_array($functionCall, $args); + + if ($functionName !== 'MKMATRIX') { + $this->debugLog->writeDebugLog('Evaluation Result for %s() function call is %s', self::localeFunc($functionName), $this->showTypeDetails($result)); + } + $stack->push('Value', self::wrapResult($result)); + if (isset($storeKey)) { + $branchStore[$storeKey] = $result; + } + } + } else { + // if the token is a number, boolean, string or an Excel error, push it onto the stack + if (isset(self::$excelConstants[strtoupper($token ?? '')])) { + $excelConstant = strtoupper($token); + $stack->push('Constant Value', self::$excelConstants[$excelConstant]); + if (isset($storeKey)) { + $branchStore[$storeKey] = self::$excelConstants[$excelConstant]; + } + $this->debugLog->writeDebugLog('Evaluating Constant %s as %s', $excelConstant, $this->showTypeDetails(self::$excelConstants[$excelConstant])); + } elseif ((is_numeric($token)) || ($token === null) || (is_bool($token)) || ($token == '') || ($token[0] == self::FORMULA_STRING_QUOTE) || ($token[0] == '#')) { + $stack->push($tokenData['type'], $token, $tokenData['reference']); + if (isset($storeKey)) { + $branchStore[$storeKey] = $token; + } + // if the token is a named range or formula, evaluate it and push the result onto the stack + } elseif (preg_match('/^' . self::CALCULATION_REGEXP_DEFINEDNAME . '$/miu', $token, $matches)) { + $definedName = $matches[6]; + if ($cell === null || $pCellWorksheet === null) { + return $this->raiseFormulaError("undefined name '$token'"); + } + + $this->debugLog->writeDebugLog('Evaluating Defined Name %s', $definedName); + $namedRange = DefinedName::resolveName($definedName, $pCellWorksheet); + if ($namedRange === null) { + return $this->raiseFormulaError("undefined name '$definedName'"); + } + + $result = $this->evaluateDefinedName($cell, $namedRange, $pCellWorksheet, $stack); + if (isset($storeKey)) { + $branchStore[$storeKey] = $result; + } + } else { + return $this->raiseFormulaError("undefined name '$token'"); + } + } + } + // when we're out of tokens, the stack should have a single element, the final result + if ($stack->count() != 1) { + return $this->raiseFormulaError('internal error'); + } + $output = $stack->pop(); + $output = $output['value']; + + return $output; + } + + private function validateBinaryOperand(&$operand, &$stack) + { + if (is_array($operand)) { + if ((count($operand, COUNT_RECURSIVE) - count($operand)) == 1) { + do { + $operand = array_pop($operand); + } while (is_array($operand)); + } + } + // Numbers, matrices and booleans can pass straight through, as they're already valid + if (is_string($operand)) { + // We only need special validations for the operand if it is a string + // Start by stripping off the quotation marks we use to identify true excel string values internally + if ($operand > '' && $operand[0] == self::FORMULA_STRING_QUOTE) { + $operand = self::unwrapResult($operand); + } + // If the string is a numeric value, we treat it as a numeric, so no further testing + if (!is_numeric($operand)) { + // If not a numeric, test to see if the value is an Excel error, and so can't be used in normal binary operations + if ($operand > '' && $operand[0] == '#') { + $stack->push('Value', $operand); + $this->debugLog->writeDebugLog('Evaluation Result is %s', $this->showTypeDetails($operand)); + + return false; + } elseif (!Shared\StringHelper::convertToNumberIfFraction($operand)) { + // If not a numeric or a fraction, then it's a text string, and so can't be used in mathematical binary operations + $stack->push('Error', '#VALUE!'); + $this->debugLog->writeDebugLog('Evaluation Result is a %s', $this->showTypeDetails('#VALUE!')); + + return false; + } + } + } + + // return a true if the value of the operand is one that we can use in normal binary operations + return true; + } + + /** + * @param mixed $operand1 + * @param mixed $operand2 + * @param string $operation + * + * @return array + */ + private function executeArrayComparison($operand1, $operand2, $operation, Stack &$stack, bool $recursingArrays) + { + $result = []; + if (!is_array($operand2)) { + // Operand 1 is an array, Operand 2 is a scalar + foreach ($operand1 as $x => $operandData) { + $this->debugLog->writeDebugLog('Evaluating Comparison %s %s %s', $this->showValue($operandData), $operation, $this->showValue($operand2)); + $this->executeBinaryComparisonOperation($operandData, $operand2, $operation, $stack); + $r = $stack->pop(); + $result[$x] = $r['value']; + } + } elseif (!is_array($operand1)) { + // Operand 1 is a scalar, Operand 2 is an array + foreach ($operand2 as $x => $operandData) { + $this->debugLog->writeDebugLog('Evaluating Comparison %s %s %s', $this->showValue($operand1), $operation, $this->showValue($operandData)); + $this->executeBinaryComparisonOperation($operand1, $operandData, $operation, $stack); + $r = $stack->pop(); + $result[$x] = $r['value']; + } + } else { + // Operand 1 and Operand 2 are both arrays + if (!$recursingArrays) { + self::checkMatrixOperands($operand1, $operand2, 2); + } + foreach ($operand1 as $x => $operandData) { + $this->debugLog->writeDebugLog('Evaluating Comparison %s %s %s', $this->showValue($operandData), $operation, $this->showValue($operand2[$x])); + $this->executeBinaryComparisonOperation($operandData, $operand2[$x], $operation, $stack, true); + $r = $stack->pop(); + $result[$x] = $r['value']; + } + } + // Log the result details + $this->debugLog->writeDebugLog('Comparison Evaluation Result is %s', $this->showTypeDetails($result)); + // And push the result onto the stack + $stack->push('Array', $result); + + return $result; + } + + /** + * @param mixed $operand1 + * @param mixed $operand2 + * @param string $operation + * @param bool $recursingArrays + * + * @return mixed + */ + private function executeBinaryComparisonOperation($operand1, $operand2, $operation, Stack &$stack, $recursingArrays = false) + { + // If we're dealing with matrix operations, we want a matrix result + if ((is_array($operand1)) || (is_array($operand2))) { + return $this->executeArrayComparison($operand1, $operand2, $operation, $stack, $recursingArrays); + } + + $result = BinaryComparison::compare($operand1, $operand2, $operation); + + // Log the result details + $this->debugLog->writeDebugLog('Evaluation Result is %s', $this->showTypeDetails($result)); + // And push the result onto the stack + $stack->push('Value', $result); + + return $result; + } + + /** + * @param mixed $operand1 + * @param mixed $operand2 + * @param mixed $operation + * @param string $matrixFunction + * @param mixed $stack + * + * @return bool|mixed + */ + private function executeNumericBinaryOperation($operand1, $operand2, $operation, $matrixFunction, &$stack) + { + // Validate the two operands + if (!$this->validateBinaryOperand($operand1, $stack)) { + return false; + } + if (!$this->validateBinaryOperand($operand2, $stack)) { + return false; + } + + // If either of the operands is a matrix, we need to treat them both as matrices + // (converting the other operand to a matrix if need be); then perform the required + // matrix operation + if ((is_array($operand1)) || (is_array($operand2))) { + // Ensure that both operands are arrays/matrices of the same size + self::checkMatrixOperands($operand1, $operand2, 2); + + try { + // Convert operand 1 from a PHP array to a matrix + $matrix = new Shared\JAMA\Matrix($operand1); + // Perform the required operation against the operand 1 matrix, passing in operand 2 + $matrixResult = $matrix->$matrixFunction($operand2); + $result = $matrixResult->getArray(); + } catch (\Exception $ex) { + $this->debugLog->writeDebugLog('JAMA Matrix Exception: %s', $ex->getMessage()); + $result = '#VALUE!'; + } + } else { + if ( + (Functions::getCompatibilityMode() != Functions::COMPATIBILITY_OPENOFFICE) && + ((is_string($operand1) && !is_numeric($operand1) && strlen($operand1) > 0) || + (is_string($operand2) && !is_numeric($operand2) && strlen($operand2) > 0)) + ) { + $result = Information\ExcelError::VALUE(); + } else { + // If we're dealing with non-matrix operations, execute the necessary operation + switch ($operation) { + // Addition + case '+': + $result = $operand1 + $operand2; + + break; + // Subtraction + case '-': + $result = $operand1 - $operand2; + + break; + // Multiplication + case '*': + $result = $operand1 * $operand2; + + break; + // Division + case '/': + if ($operand2 == 0) { + // Trap for Divide by Zero error + $stack->push('Error', ExcelError::DIV0()); + $this->debugLog->writeDebugLog('Evaluation Result is %s', $this->showTypeDetails(ExcelError::DIV0())); + + return false; + } + $result = $operand1 / $operand2; + + break; + // Power + case '^': + $result = $operand1 ** $operand2; + + break; + + default: + throw new Exception('Unsupported numeric binary operation'); + } + } + } + + // Log the result details + $this->debugLog->writeDebugLog('Evaluation Result is %s', $this->showTypeDetails($result)); + // And push the result onto the stack + $stack->push('Value', $result); + + return $result; + } + + /** + * Trigger an error, but nicely, if need be. + * + * @return false + */ + protected function raiseFormulaError(string $errorMessage) + { + $this->formulaError = $errorMessage; + $this->cyclicReferenceStack->clear(); + if (!$this->suppressFormulaErrors) { + throw new Exception($errorMessage); + } + + if (strlen($errorMessage) > 0) { + trigger_error($errorMessage, E_USER_ERROR); + } + + return false; + } + + /** + * Extract range values. + * + * @param string $range String based range representation + * @param Worksheet $worksheet Worksheet + * @param bool $resetLog Flag indicating whether calculation log should be reset or not + * + * @return mixed Array of values in range if range contains more than one element. Otherwise, a single value is returned. + */ + public function extractCellRange(&$range = 'A1', ?Worksheet $worksheet = null, $resetLog = true) + { + // Return value + $returnValue = []; + + if ($worksheet !== null) { + $worksheetName = $worksheet->getTitle(); + + if (strpos($range, '!') !== false) { + [$worksheetName, $range] = Worksheet::extractSheetTitle($range, true); + $worksheet = $this->spreadsheet->getSheetByName($worksheetName); + } + + // Extract range + $aReferences = Coordinate::extractAllCellReferencesInRange($range); + $range = "'" . $worksheetName . "'" . '!' . $range; + if (!isset($aReferences[1])) { + // Single cell in range + sscanf($aReferences[0], '%[A-Z]%d', $currentCol, $currentRow); + if ($worksheet->cellExists($aReferences[0])) { + $returnValue[$currentRow][$currentCol] = $worksheet->getCell($aReferences[0])->getCalculatedValue($resetLog); + } else { + $returnValue[$currentRow][$currentCol] = null; + } + } else { + // Extract cell data for all cells in the range + foreach ($aReferences as $reference) { + // Extract range + sscanf($reference, '%[A-Z]%d', $currentCol, $currentRow); + if ($worksheet->cellExists($reference)) { + $returnValue[$currentRow][$currentCol] = $worksheet->getCell($reference)->getCalculatedValue($resetLog); + } else { + $returnValue[$currentRow][$currentCol] = null; + } + } + } + } + + return $returnValue; + } + + /** + * Extract range values. + * + * @param string $range String based range representation + * @param null|Worksheet $worksheet Worksheet + * @param bool $resetLog Flag indicating whether calculation log should be reset or not + * + * @return mixed Array of values in range if range contains more than one element. Otherwise, a single value is returned. + */ + public function extractNamedRange(string &$range = 'A1', ?Worksheet $worksheet = null, $resetLog = true) + { + // Return value + $returnValue = []; + + if ($worksheet !== null) { + if (strpos($range, '!') !== false) { + [$worksheetName, $range] = Worksheet::extractSheetTitle($range, true); + $worksheet = $this->spreadsheet->getSheetByName($worksheetName); + } + + // Named range? + $namedRange = DefinedName::resolveName($range, /** @scrutinizer ignore-type */ $worksheet); + if ($namedRange === null) { + return Information\ExcelError::REF(); + } + + $worksheet = $namedRange->getWorksheet(); + $range = $namedRange->getValue(); + $splitRange = Coordinate::splitRange($range); + // Convert row and column references + if (ctype_alpha($splitRange[0][0])) { + $range = $splitRange[0][0] . '1:' . $splitRange[0][1] . $namedRange->getWorksheet()->getHighestRow(); + } elseif (ctype_digit($splitRange[0][0])) { + $range = 'A' . $splitRange[0][0] . ':' . $namedRange->getWorksheet()->getHighestColumn() . $splitRange[0][1]; + } + + // Extract range + $aReferences = Coordinate::extractAllCellReferencesInRange($range); + if (!isset($aReferences[1])) { + // Single cell (or single column or row) in range + [$currentCol, $currentRow] = Coordinate::coordinateFromString($aReferences[0]); + if ($worksheet->cellExists($aReferences[0])) { + $returnValue[$currentRow][$currentCol] = $worksheet->getCell($aReferences[0])->getCalculatedValue($resetLog); + } else { + $returnValue[$currentRow][$currentCol] = null; + } + } else { + // Extract cell data for all cells in the range + foreach ($aReferences as $reference) { + // Extract range + [$currentCol, $currentRow] = Coordinate::coordinateFromString($reference); + if ($worksheet->cellExists($reference)) { + $returnValue[$currentRow][$currentCol] = $worksheet->getCell($reference)->getCalculatedValue($resetLog); + } else { + $returnValue[$currentRow][$currentCol] = null; + } + } + } + } + + return $returnValue; + } + + /** + * Is a specific function implemented? + * + * @param string $function Function Name + * + * @return bool + */ + public function isImplemented($function) + { + $function = strtoupper($function); + $notImplemented = !isset(self::$phpSpreadsheetFunctions[$function]) || (is_array(self::$phpSpreadsheetFunctions[$function]['functionCall']) && self::$phpSpreadsheetFunctions[$function]['functionCall'][1] === 'DUMMY'); + + return !$notImplemented; + } + + /** + * Get a list of all implemented functions as an array of function objects. + */ + public function getFunctions(): array + { + return self::$phpSpreadsheetFunctions; + } + + /** + * Get a list of implemented Excel function names. + * + * @return array + */ + public function getImplementedFunctionNames() + { + $returnValue = []; + foreach (self::$phpSpreadsheetFunctions as $functionName => $function) { + if ($this->isImplemented($functionName)) { + $returnValue[] = $functionName; + } + } + + return $returnValue; + } + + private function addDefaultArgumentValues(array $functionCall, array $args, array $emptyArguments): array + { + $reflector = new ReflectionMethod(implode('::', $functionCall)); + $methodArguments = $reflector->getParameters(); + + if (count($methodArguments) > 0) { + // Apply any defaults for empty argument values + foreach ($emptyArguments as $argumentId => $isArgumentEmpty) { + if ($isArgumentEmpty === true) { + $reflectedArgumentId = count($args) - (int) $argumentId - 1; + if ( + !array_key_exists($reflectedArgumentId, $methodArguments) || + $methodArguments[$reflectedArgumentId]->isVariadic() + ) { + break; + } + + $args[$argumentId] = $this->getArgumentDefaultValue($methodArguments[$reflectedArgumentId]); + } + } + } + + return $args; + } + + /** + * @return null|mixed + */ + private function getArgumentDefaultValue(ReflectionParameter $methodArgument) + { + $defaultValue = null; + + if ($methodArgument->isDefaultValueAvailable()) { + $defaultValue = $methodArgument->getDefaultValue(); + if ($methodArgument->isDefaultValueConstant()) { + $constantName = $methodArgument->getDefaultValueConstantName() ?? ''; + // read constant value + if (strpos($constantName, '::') !== false) { + [$className, $constantName] = explode('::', $constantName); + $constantReflector = new ReflectionClassConstant($className, $constantName); + + return $constantReflector->getValue(); + } + + return constant($constantName); + } + } + + return $defaultValue; + } + + /** + * Add cell reference if needed while making sure that it is the last argument. + * + * @param bool $passCellReference + * @param array|string $functionCall + * + * @return array + */ + private function addCellReference(array $args, $passCellReference, $functionCall, ?Cell $cell = null) + { + if ($passCellReference) { + if (is_array($functionCall)) { + $className = $functionCall[0]; + $methodName = $functionCall[1]; + + $reflectionMethod = new ReflectionMethod($className, $methodName); + $argumentCount = count($reflectionMethod->getParameters()); + while (count($args) < $argumentCount - 1) { + $args[] = null; + } + } + + $args[] = $cell; + } + + return $args; + } + + private function getTokensAsString($tokens) + { + $tokensStr = array_map(function ($token) { + $value = $token['value'] ?? 'no value'; + while (is_array($value)) { + $value = array_pop($value); + } + + return $value; + }, $tokens); + + return '[ ' . implode(' | ', $tokensStr) . ' ]'; + } + + /** + * @return mixed|string + */ + private function evaluateDefinedName(Cell $cell, DefinedName $namedRange, Worksheet $cellWorksheet, Stack $stack) + { + $definedNameScope = $namedRange->getScope(); + if ($definedNameScope !== null && $definedNameScope !== $cellWorksheet) { + // The defined name isn't in our current scope, so #REF + $result = Information\ExcelError::REF(); + $stack->push('Error', $result, $namedRange->getName()); + + return $result; + } + + $definedNameValue = $namedRange->getValue(); + $definedNameType = $namedRange->isFormula() ? 'Formula' : 'Range'; + $definedNameWorksheet = $namedRange->getWorksheet(); + + if ($definedNameValue[0] !== '=') { + $definedNameValue = '=' . $definedNameValue; + } + + $this->debugLog->writeDebugLog('Defined Name is a %s with a value of %s', $definedNameType, $definedNameValue); + + $recursiveCalculationCell = ($definedNameWorksheet !== null && $definedNameWorksheet !== $cellWorksheet) + ? $definedNameWorksheet->getCell('A1') + : $cell; + $recursiveCalculationCellAddress = $recursiveCalculationCell->getCoordinate(); + + // Adjust relative references in ranges and formulae so that we execute the calculation for the correct rows and columns + $definedNameValue = self::$referenceHelper->updateFormulaReferencesAnyWorksheet( + $definedNameValue, + Coordinate::columnIndexFromString($cell->getColumn()) - 1, + $cell->getRow() - 1 + ); + + $this->debugLog->writeDebugLog('Value adjusted for relative references is %s', $definedNameValue); + + $recursiveCalculator = new self($this->spreadsheet); + $recursiveCalculator->getDebugLog()->setWriteDebugLog($this->getDebugLog()->getWriteDebugLog()); + $recursiveCalculator->getDebugLog()->setEchoDebugLog($this->getDebugLog()->getEchoDebugLog()); + $result = $recursiveCalculator->_calculateFormulaValue($definedNameValue, $recursiveCalculationCellAddress, $recursiveCalculationCell); + + if ($this->getDebugLog()->getWriteDebugLog()) { + $this->debugLog->mergeDebugLog(array_slice($recursiveCalculator->getDebugLog()->getLog(), 3)); + $this->debugLog->writeDebugLog('Evaluation Result for Named %s %s is %s', $definedNameType, $namedRange->getName(), $this->showTypeDetails($result)); + } + + $stack->push('Defined Name', $result, $namedRange->getName()); + + return $result; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Category.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Category.php new file mode 100644 index 0000000..96bb72a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Category.php @@ -0,0 +1,20 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +abstract class Category +{ + // Function categories + const CATEGORY_CUBE = 'Cube'; + const CATEGORY_DATABASE = 'Database'; + const CATEGORY_DATE_AND_TIME = 'Date and Time'; + const CATEGORY_ENGINEERING = 'Engineering'; + const CATEGORY_FINANCIAL = 'Financial'; + const CATEGORY_INFORMATION = 'Information'; + const CATEGORY_LOGICAL = 'Logical'; + const CATEGORY_LOOKUP_AND_REFERENCE = 'Lookup and Reference'; + const CATEGORY_MATH_AND_TRIG = 'Math and Trig'; + const CATEGORY_STATISTICAL = 'Statistical'; + const CATEGORY_TEXT_AND_DATA = 'Text and Data'; + const CATEGORY_WEB = 'Web'; +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database.php new file mode 100644 index 0000000..6503167 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database.php @@ -0,0 +1,440 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +/** + * @deprecated 1.17.0 + */ +class Database +{ + /** + * DAVERAGE. + * + * Averages the values in a column of a list or database that match conditions you specify. + * + * Excel Function: + * DAVERAGE(database,field,criteria) + * + * @Deprecated 1.17.0 + * + * @see Database\DAverage::evaluate() + * Use the evaluate() method in the Database\DAverage class instead + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return null|float|string + */ + public static function DAVERAGE($database, $field, $criteria) + { + return Database\DAverage::evaluate($database, $field, $criteria); + } + + /** + * DCOUNT. + * + * Counts the cells that contain numbers in a column of a list or database that match conditions + * that you specify. + * + * Excel Function: + * DCOUNT(database,[field],criteria) + * + * @Deprecated 1.17.0 + * + * @see Database\DCount::evaluate() + * Use the evaluate() method in the Database\DCount class instead + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param null|int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return int + * + * @TODO The field argument is optional. If field is omitted, DCOUNT counts all records in the + * database that match the criteria. + */ + public static function DCOUNT($database, $field, $criteria) + { + return Database\DCount::evaluate($database, $field, $criteria); + } + + /** + * DCOUNTA. + * + * Counts the nonblank cells in a column of a list or database that match conditions that you specify. + * + * Excel Function: + * DCOUNTA(database,[field],criteria) + * + * @Deprecated 1.17.0 + * + * @see Database\DCountA::evaluate() + * Use the evaluate() method in the Database\DCountA class instead + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param null|int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return int + */ + public static function DCOUNTA($database, $field, $criteria) + { + return Database\DCountA::evaluate($database, $field, $criteria); + } + + /** + * DGET. + * + * Extracts a single value from a column of a list or database that matches conditions that you + * specify. + * + * Excel Function: + * DGET(database,field,criteria) + * + * @Deprecated 1.17.0 + * + * @see Database\DGet::evaluate() + * Use the evaluate() method in the Database\DGet class instead + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return mixed + */ + public static function DGET($database, $field, $criteria) + { + return Database\DGet::evaluate($database, $field, $criteria); + } + + /** + * DMAX. + * + * Returns the largest number in a column of a list or database that matches conditions you that + * specify. + * + * Excel Function: + * DMAX(database,field,criteria) + * + * @Deprecated 1.17.0 + * + * @see Database\DMax::evaluate() + * Use the evaluate() method in the Database\DMax class instead + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return float + */ + public static function DMAX($database, $field, $criteria) + { + return Database\DMax::evaluate($database, $field, $criteria); + } + + /** + * DMIN. + * + * Returns the smallest number in a column of a list or database that matches conditions you that + * specify. + * + * Excel Function: + * DMIN(database,field,criteria) + * + * @Deprecated 1.17.0 + * + * @see Database\DMin::evaluate() + * Use the evaluate() method in the Database\DMin class instead + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return float + */ + public static function DMIN($database, $field, $criteria) + { + return Database\DMin::evaluate($database, $field, $criteria); + } + + /** + * DPRODUCT. + * + * Multiplies the values in a column of a list or database that match conditions that you specify. + * + * Excel Function: + * DPRODUCT(database,field,criteria) + * + * @Deprecated 1.17.0 + * + * @see Database\DProduct::evaluate() + * Use the evaluate() method in the Database\DProduct class instead + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return float|string + */ + public static function DPRODUCT($database, $field, $criteria) + { + return Database\DProduct::evaluate($database, $field, $criteria); + } + + /** + * DSTDEV. + * + * Estimates the standard deviation of a population based on a sample by using the numbers in a + * column of a list or database that match conditions that you specify. + * + * Excel Function: + * DSTDEV(database,field,criteria) + * + * @Deprecated 1.17.0 + * + * @see Database\DStDev::evaluate() + * Use the evaluate() method in the Database\DStDev class instead + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return float|string + */ + public static function DSTDEV($database, $field, $criteria) + { + return Database\DStDev::evaluate($database, $field, $criteria); + } + + /** + * DSTDEVP. + * + * Calculates the standard deviation of a population based on the entire population by using the + * numbers in a column of a list or database that match conditions that you specify. + * + * Excel Function: + * DSTDEVP(database,field,criteria) + * + * @Deprecated 1.17.0 + * + * @see Database\DStDevP::evaluate() + * Use the evaluate() method in the Database\DStDevP class instead + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return float|string + */ + public static function DSTDEVP($database, $field, $criteria) + { + return Database\DStDevP::evaluate($database, $field, $criteria); + } + + /** + * DSUM. + * + * Adds the numbers in a column of a list or database that match conditions that you specify. + * + * Excel Function: + * DSUM(database,field,criteria) + * + * @Deprecated 1.17.0 + * + * @see Database\DSum::evaluate() + * Use the evaluate() method in the Database\DSum class instead + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return float|string + */ + public static function DSUM($database, $field, $criteria) + { + return Database\DSum::evaluate($database, $field, $criteria); + } + + /** + * DVAR. + * + * Estimates the variance of a population based on a sample by using the numbers in a column + * of a list or database that match conditions that you specify. + * + * Excel Function: + * DVAR(database,field,criteria) + * + * @Deprecated 1.17.0 + * + * @see Database\DVar::evaluate() + * Use the evaluate() method in the Database\DVar class instead + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return float|string (string if result is an error) + */ + public static function DVAR($database, $field, $criteria) + { + return Database\DVar::evaluate($database, $field, $criteria); + } + + /** + * DVARP. + * + * Calculates the variance of a population based on the entire population by using the numbers + * in a column of a list or database that match conditions that you specify. + * + * Excel Function: + * DVARP(database,field,criteria) + * + * @Deprecated 1.17.0 + * + * @see Database\DVarP::evaluate() + * Use the evaluate() method in the Database\DVarP class instead + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return float|string (string if result is an error) + */ + public static function DVARP($database, $field, $criteria) + { + return Database\DVarP::evaluate($database, $field, $criteria); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DAverage.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DAverage.php new file mode 100644 index 0000000..e30842d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DAverage.php @@ -0,0 +1,45 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Database; + +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Averages; + +class DAverage extends DatabaseAbstract +{ + /** + * DAVERAGE. + * + * Averages the values in a column of a list or database that match conditions you specify. + * + * Excel Function: + * DAVERAGE(database,field,criteria) + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return null|float|string + */ + public static function evaluate($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if ($field === null) { + return null; + } + + return Averages::average( + self::getFilteredColumn($database, $field, $criteria) + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DCount.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DCount.php new file mode 100644 index 0000000..bf41d6b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DCount.php @@ -0,0 +1,43 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Database; + +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Counts; + +class DCount extends DatabaseAbstract +{ + /** + * DCOUNT. + * + * Counts the cells that contain numbers in a column of a list or database that match conditions + * that you specify. + * + * Excel Function: + * DCOUNT(database,[field],criteria) + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param null|int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return int + */ + public static function evaluate($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + + return Counts::COUNT( + self::getFilteredColumn($database, $field, $criteria) + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DCountA.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DCountA.php new file mode 100644 index 0000000..c48e53c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DCountA.php @@ -0,0 +1,42 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Database; + +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Counts; + +class DCountA extends DatabaseAbstract +{ + /** + * DCOUNTA. + * + * Counts the nonblank cells in a column of a list or database that match conditions that you specify. + * + * Excel Function: + * DCOUNTA(database,[field],criteria) + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return int + */ + public static function evaluate($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + + return Counts::COUNTA( + self::getFilteredColumn($database, $field ?? 0, $criteria) + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DGet.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DGet.php new file mode 100644 index 0000000..abe06e6 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DGet.php @@ -0,0 +1,51 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Database; + +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class DGet extends DatabaseAbstract +{ + /** + * DGET. + * + * Extracts a single value from a column of a list or database that matches conditions that you + * specify. + * + * Excel Function: + * DGET(database,field,criteria) + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return mixed + */ + public static function evaluate($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if ($field === null) { + return null; + } + + $columnData = self::getFilteredColumn($database, $field, $criteria); + if (count($columnData) > 1) { + return ExcelError::NAN(); + } + + $row = array_pop($columnData); + + return array_pop($row); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DMax.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DMax.php new file mode 100644 index 0000000..9c5c730 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DMax.php @@ -0,0 +1,46 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Database; + +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Maximum; + +class DMax extends DatabaseAbstract +{ + /** + * DMAX. + * + * Returns the largest number in a column of a list or database that matches conditions you that + * specify. + * + * Excel Function: + * DMAX(database,field,criteria) + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return null|float|string + */ + public static function evaluate($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if ($field === null) { + return null; + } + + return Maximum::max( + self::getFilteredColumn($database, $field, $criteria) + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DMin.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DMin.php new file mode 100644 index 0000000..e7b473a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DMin.php @@ -0,0 +1,46 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Database; + +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Minimum; + +class DMin extends DatabaseAbstract +{ + /** + * DMIN. + * + * Returns the smallest number in a column of a list or database that matches conditions you that + * specify. + * + * Excel Function: + * DMIN(database,field,criteria) + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return null|float|string + */ + public static function evaluate($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if ($field === null) { + return null; + } + + return Minimum::min( + self::getFilteredColumn($database, $field, $criteria) + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DProduct.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DProduct.php new file mode 100644 index 0000000..35e3d47 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DProduct.php @@ -0,0 +1,45 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Database; + +use PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +class DProduct extends DatabaseAbstract +{ + /** + * DPRODUCT. + * + * Multiplies the values in a column of a list or database that match conditions that you specify. + * + * Excel Function: + * DPRODUCT(database,field,criteria) + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return null|float|string + */ + public static function evaluate($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if ($field === null) { + return null; + } + + return MathTrig\Operations::product( + self::getFilteredColumn($database, $field, $criteria) + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DStDev.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DStDev.php new file mode 100644 index 0000000..7ec42bc --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DStDev.php @@ -0,0 +1,46 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Database; + +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\StandardDeviations; + +class DStDev extends DatabaseAbstract +{ + /** + * DSTDEV. + * + * Estimates the standard deviation of a population based on a sample by using the numbers in a + * column of a list or database that match conditions that you specify. + * + * Excel Function: + * DSTDEV(database,field,criteria) + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return null|float|string + */ + public static function evaluate($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if ($field === null) { + return null; + } + + return StandardDeviations::STDEV( + self::getFilteredColumn($database, $field, $criteria) + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DStDevP.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DStDevP.php new file mode 100644 index 0000000..cbe241f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DStDevP.php @@ -0,0 +1,46 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Database; + +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\StandardDeviations; + +class DStDevP extends DatabaseAbstract +{ + /** + * DSTDEVP. + * + * Calculates the standard deviation of a population based on the entire population by using the + * numbers in a column of a list or database that match conditions that you specify. + * + * Excel Function: + * DSTDEVP(database,field,criteria) + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return null|float|string + */ + public static function evaluate($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if ($field === null) { + return null; + } + + return StandardDeviations::STDEVP( + self::getFilteredColumn($database, $field, $criteria) + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DSum.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DSum.php new file mode 100644 index 0000000..03841c4 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DSum.php @@ -0,0 +1,45 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Database; + +use PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +class DSum extends DatabaseAbstract +{ + /** + * DSUM. + * + * Adds the numbers in a column of a list or database that match conditions that you specify. + * + * Excel Function: + * DSUM(database,field,criteria) + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return null|float|string + */ + public static function evaluate($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if ($field === null) { + return null; + } + + return MathTrig\Sum::sumIgnoringStrings( + self::getFilteredColumn($database, $field, $criteria) + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DVar.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DVar.php new file mode 100644 index 0000000..0a998c0 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DVar.php @@ -0,0 +1,46 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Database; + +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Variances; + +class DVar extends DatabaseAbstract +{ + /** + * DVAR. + * + * Estimates the variance of a population based on a sample by using the numbers in a column + * of a list or database that match conditions that you specify. + * + * Excel Function: + * DVAR(database,field,criteria) + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return null|float|string (string if result is an error) + */ + public static function evaluate($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if ($field === null) { + return null; + } + + return Variances::VAR( + self::getFilteredColumn($database, $field, $criteria) + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DVarP.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DVarP.php new file mode 100644 index 0000000..77acbdf --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DVarP.php @@ -0,0 +1,46 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Database; + +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Variances; + +class DVarP extends DatabaseAbstract +{ + /** + * DVARP. + * + * Calculates the variance of a population based on the entire population by using the numbers + * in a column of a list or database that match conditions that you specify. + * + * Excel Function: + * DVARP(database,field,criteria) + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param int|string $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return null|float|string (string if result is an error) + */ + public static function evaluate($database, $field, $criteria) + { + $field = self::fieldExtract($database, $field); + if ($field === null) { + return null; + } + + return Variances::VARP( + self::getFilteredColumn($database, $field, $criteria) + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DatabaseAbstract.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DatabaseAbstract.php new file mode 100644 index 0000000..3c8b176 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DatabaseAbstract.php @@ -0,0 +1,174 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Database; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Internal\WildcardMatch; + +abstract class DatabaseAbstract +{ + abstract public static function evaluate($database, $field, $criteria); + + /** + * fieldExtract. + * + * Extracts the column ID to use for the data field. + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param mixed $field Indicates which column is used in the function. Enter the + * column label enclosed between double quotation marks, such as + * "Age" or "Yield," or a number (without quotation marks) that + * represents the position of the column within the list: 1 for + * the first column, 2 for the second column, and so on. + */ + protected static function fieldExtract(array $database, $field): ?int + { + $field = strtoupper(Functions::flattenSingleValue($field ?? '')); + if ($field === '') { + return null; + } + + $fieldNames = array_map('strtoupper', array_shift($database)); + if (is_numeric($field)) { + return ((int) $field) - 1; + } + $key = array_search($field, array_values($fieldNames), true); + + return ($key !== false) ? (int) $key : null; + } + + /** + * filter. + * + * Parses the selection criteria, extracts the database rows that match those criteria, and + * returns that subset of rows. + * + * @param mixed[] $database The range of cells that makes up the list or database. + * A database is a list of related data in which rows of related + * information are records, and columns of data are fields. The + * first row of the list contains labels for each column. + * @param mixed[] $criteria The range of cells that contains the conditions you specify. + * You can use any range for the criteria argument, as long as it + * includes at least one column label and at least one cell below + * the column label in which you specify a condition for the + * column. + * + * @return mixed[] + */ + protected static function filter(array $database, array $criteria): array + { + $fieldNames = array_shift($database); + $criteriaNames = array_shift($criteria); + + // Convert the criteria into a set of AND/OR conditions with [:placeholders] + $query = self::buildQuery($criteriaNames, $criteria); + + // Loop through each row of the database + return self::executeQuery($database, $query, $criteriaNames, $fieldNames); + } + + protected static function getFilteredColumn(array $database, ?int $field, array $criteria): array + { + // reduce the database to a set of rows that match all the criteria + $database = self::filter($database, $criteria); + $defaultReturnColumnValue = ($field === null) ? 1 : null; + + // extract an array of values for the requested column + $columnData = []; + foreach ($database as $rowKey => $row) { + $keys = array_keys($row); + $key = $keys[$field] ?? null; + $columnKey = $key ?? 'A'; + $columnData[$rowKey][$columnKey] = $row[$key] ?? $defaultReturnColumnValue; + } + + return $columnData; + } + + private static function buildQuery(array $criteriaNames, array $criteria): string + { + $baseQuery = []; + foreach ($criteria as $key => $criterion) { + foreach ($criterion as $field => $value) { + $criterionName = $criteriaNames[$field]; + if ($value !== null) { + $condition = self::buildCondition($value, $criterionName); + $baseQuery[$key][] = $condition; + } + } + } + + $rowQuery = array_map( + function ($rowValue) { + return (count($rowValue) > 1) ? 'AND(' . implode(',', $rowValue) . ')' : ($rowValue[0] ?? ''); + }, + $baseQuery + ); + + return (count($rowQuery) > 1) ? 'OR(' . implode(',', $rowQuery) . ')' : ($rowQuery[0] ?? ''); + } + + private static function buildCondition($criterion, string $criterionName): string + { + $ifCondition = Functions::ifCondition($criterion); + + // Check for wildcard characters used in the condition + $result = preg_match('/(?<operator>[^"]*)(?<operand>".*[*?].*")/ui', $ifCondition, $matches); + if ($result !== 1) { + return "[:{$criterionName}]{$ifCondition}"; + } + + $trueFalse = ($matches['operator'] !== '<>'); + $wildcard = WildcardMatch::wildcard($matches['operand']); + $condition = "WILDCARDMATCH([:{$criterionName}],{$wildcard})"; + if ($trueFalse === false) { + $condition = "NOT({$condition})"; + } + + return $condition; + } + + private static function executeQuery(array $database, string $query, array $criteria, array $fields): array + { + foreach ($database as $dataRow => $dataValues) { + // Substitute actual values from the database row for our [:placeholders] + $conditions = $query; + foreach ($criteria as $criterion) { + $conditions = self::processCondition($criterion, $fields, $dataValues, $conditions); + } + + // evaluate the criteria against the row data + $result = Calculation::getInstance()->_calculateFormulaValue('=' . $conditions); + + // If the row failed to meet the criteria, remove it from the database + if ($result !== true) { + unset($database[$dataRow]); + } + } + + return $database; + } + + private static function processCondition(string $criterion, array $fields, array $dataValues, string $conditions) + { + $key = array_search($criterion, $fields, true); + + $dataValue = 'NULL'; + if (is_bool($dataValues[$key])) { + $dataValue = ($dataValues[$key]) ? 'TRUE' : 'FALSE'; + } elseif ($dataValues[$key] !== null) { + $dataValue = $dataValues[$key]; + // escape quotes if we have a string containing quotes + if (is_string($dataValue) && strpos($dataValue, '"') !== false) { + $dataValue = str_replace('"', '""', $dataValue); + } + $dataValue = (is_string($dataValue)) ? Calculation::wrapResult(strtoupper($dataValue)) : $dataValue; + } + + return str_replace('[:' . $criterion . ']', $dataValue, $conditions); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTime.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTime.php new file mode 100644 index 0000000..79fa8dc --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTime.php @@ -0,0 +1,915 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +use DateTimeInterface; + +/** + * @deprecated 1.18.0 + */ +class DateTime +{ + /** + * Identify if a year is a leap year or not. + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\Helpers::isLeapYear() + * Use the isLeapYear method in the DateTimeExcel\Helpers class instead + * + * @param int|string $year The year to test + * + * @return bool TRUE if the year is a leap year, otherwise FALSE + */ + public static function isLeapYear($year) + { + return DateTimeExcel\Helpers::isLeapYear($year); + } + + /** + * getDateValue. + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\Helpers::getDateValue() + * Use the getDateValue method in the DateTimeExcel\Helpers class instead + * + * @param mixed $dateValue + * + * @return mixed Excel date/time serial value, or string if error + */ + public static function getDateValue($dateValue) + { + try { + return DateTimeExcel\Helpers::getDateValue($dateValue); + } catch (Exception $e) { + return $e->getMessage(); + } + } + + /** + * DATETIMENOW. + * + * Returns the current date and time. + * The NOW function is useful when you need to display the current date and time on a worksheet or + * calculate a value based on the current date and time, and have that value updated each time you + * open the worksheet. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the date + * and time format of your regional settings. PhpSpreadsheet does not change cell formatting in this way. + * + * Excel Function: + * NOW() + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\Current::now() + * Use the now method in the DateTimeExcel\Current class instead + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function DATETIMENOW() + { + return DateTimeExcel\Current::now(); + } + + /** + * DATENOW. + * + * Returns the current date. + * The NOW function is useful when you need to display the current date and time on a worksheet or + * calculate a value based on the current date and time, and have that value updated each time you + * open the worksheet. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the date + * and time format of your regional settings. PhpSpreadsheet does not change cell formatting in this way. + * + * Excel Function: + * TODAY() + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\Current::today() + * Use the today method in the DateTimeExcel\Current class instead + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function DATENOW() + { + return DateTimeExcel\Current::today(); + } + + /** + * DATE. + * + * The DATE function returns a value that represents a particular date. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the date + * format of your regional settings. PhpSpreadsheet does not change cell formatting in this way. + * + * + * Excel Function: + * DATE(year,month,day) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\Date::fromYMD() + * Use the fromYMD method in the DateTimeExcel\Date class instead + * + * PhpSpreadsheet is a lot more forgiving than MS Excel when passing non numeric values to this function. + * A Month name or abbreviation (English only at this point) such as 'January' or 'Jan' will still be accepted, + * as will a day value with a suffix (e.g. '21st' rather than simply 21); again only English language. + * + * @param int $year The value of the year argument can include one to four digits. + * Excel interprets the year argument according to the configured + * date system: 1900 or 1904. + * If year is between 0 (zero) and 1899 (inclusive), Excel adds that + * value to 1900 to calculate the year. For example, DATE(108,1,2) + * returns January 2, 2008 (1900+108). + * If year is between 1900 and 9999 (inclusive), Excel uses that + * value as the year. For example, DATE(2008,1,2) returns January 2, + * 2008. + * If year is less than 0 or is 10000 or greater, Excel returns the + * #NUM! error value. + * @param int $month A positive or negative integer representing the month of the year + * from 1 to 12 (January to December). + * If month is greater than 12, month adds that number of months to + * the first month in the year specified. For example, DATE(2008,14,2) + * returns the serial number representing February 2, 2009. + * If month is less than 1, month subtracts the magnitude of that + * number of months, plus 1, from the first month in the year + * specified. For example, DATE(2008,-3,2) returns the serial number + * representing September 2, 2007. + * @param int $day A positive or negative integer representing the day of the month + * from 1 to 31. + * If day is greater than the number of days in the month specified, + * day adds that number of days to the first day in the month. For + * example, DATE(2008,1,35) returns the serial number representing + * February 4, 2008. + * If day is less than 1, day subtracts the magnitude that number of + * days, plus one, from the first day of the month specified. For + * example, DATE(2008,1,-15) returns the serial number representing + * December 16, 2007. + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function DATE($year = 0, $month = 1, $day = 1) + { + return DateTimeExcel\Date::fromYMD($year, $month, $day); + } + + /** + * TIME. + * + * The TIME function returns a value that represents a particular time. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the time + * format of your regional settings. PhpSpreadsheet does not change cell formatting in this way. + * + * Excel Function: + * TIME(hour,minute,second) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\Time::fromHMS() + * Use the fromHMS method in the DateTimeExcel\Time class instead + * + * @param int $hour A number from 0 (zero) to 32767 representing the hour. + * Any value greater than 23 will be divided by 24 and the remainder + * will be treated as the hour value. For example, TIME(27,0,0) = + * TIME(3,0,0) = .125 or 3:00 AM. + * @param int $minute A number from 0 to 32767 representing the minute. + * Any value greater than 59 will be converted to hours and minutes. + * For example, TIME(0,750,0) = TIME(12,30,0) = .520833 or 12:30 PM. + * @param int $second A number from 0 to 32767 representing the second. + * Any value greater than 59 will be converted to hours, minutes, + * and seconds. For example, TIME(0,0,2000) = TIME(0,33,22) = .023148 + * or 12:33:20 AM + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function TIME($hour = 0, $minute = 0, $second = 0) + { + return DateTimeExcel\Time::fromHMS($hour, $minute, $second); + } + + /** + * DATEVALUE. + * + * Returns a value that represents a particular date. + * Use DATEVALUE to convert a date represented by a text string to an Excel or PHP date/time stamp + * value. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the date + * format of your regional settings. PhpSpreadsheet does not change cell formatting in this way. + * + * Excel Function: + * DATEVALUE(dateValue) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\DateValue::fromString() + * Use the fromString method in the DateTimeExcel\DateValue class instead + * + * @param string $dateValue Text that represents a date in a Microsoft Excel date format. + * For example, "1/30/2008" or "30-Jan-2008" are text strings within + * quotation marks that represent dates. Using the default date + * system in Excel for Windows, date_text must represent a date from + * January 1, 1900, to December 31, 9999. Using the default date + * system in Excel for the Macintosh, date_text must represent a date + * from January 1, 1904, to December 31, 9999. DATEVALUE returns the + * #VALUE! error value if date_text is out of this range. + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function DATEVALUE($dateValue) + { + return DateTimeExcel\DateValue::fromString($dateValue); + } + + /** + * TIMEVALUE. + * + * Returns a value that represents a particular time. + * Use TIMEVALUE to convert a time represented by a text string to an Excel or PHP date/time stamp + * value. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the time + * format of your regional settings. PhpSpreadsheet does not change cell formatting in this way. + * + * Excel Function: + * TIMEVALUE(timeValue) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\TimeValue::fromString() + * Use the fromString method in the DateTimeExcel\TimeValue class instead + * + * @param string $timeValue A text string that represents a time in any one of the Microsoft + * Excel time formats; for example, "6:45 PM" and "18:45" text strings + * within quotation marks that represent time. + * Date information in time_text is ignored. + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function TIMEVALUE($timeValue) + { + return DateTimeExcel\TimeValue::fromString($timeValue); + } + + /** + * DATEDIF. + * + * Excel Function: + * DATEDIF(startdate, enddate, unit) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\Difference::interval() + * Use the interval method in the DateTimeExcel\Difference class instead + * + * @param mixed $startDate Excel date serial value, PHP date/time stamp, PHP DateTime object + * or a standard date string + * @param mixed $endDate Excel date serial value, PHP date/time stamp, PHP DateTime object + * or a standard date string + * @param array|string $unit + * + * @return array|int|string Interval between the dates + */ + public static function DATEDIF($startDate = 0, $endDate = 0, $unit = 'D') + { + return DateTimeExcel\Difference::interval($startDate, $endDate, $unit); + } + + /** + * DAYS. + * + * Returns the number of days between two dates + * + * Excel Function: + * DAYS(endDate, startDate) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\Days::between() + * Use the between method in the DateTimeExcel\Days class instead + * + * @param array|DateTimeInterface|float|int|string $endDate Excel date serial value (float), + * PHP date timestamp (integer), PHP DateTime object, or a standard date string + * @param array|DateTimeInterface|float|int|string $startDate Excel date serial value (float), + * PHP date timestamp (integer), PHP DateTime object, or a standard date string + * + * @return array|int|string Number of days between start date and end date or an error + */ + public static function DAYS($endDate = 0, $startDate = 0) + { + return DateTimeExcel\Days::between($endDate, $startDate); + } + + /** + * DAYS360. + * + * Returns the number of days between two dates based on a 360-day year (twelve 30-day months), + * which is used in some accounting calculations. Use this function to help compute payments if + * your accounting system is based on twelve 30-day months. + * + * Excel Function: + * DAYS360(startDate,endDate[,method]) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\Days360::between() + * Use the between method in the DateTimeExcel\Days360 class instead + * + * @param mixed $startDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param mixed $endDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param array|bool $method US or European Method + * FALSE or omitted: U.S. (NASD) method. If the starting date is + * the last day of a month, it becomes equal to the 30th of the + * same month. If the ending date is the last day of a month and + * the starting date is earlier than the 30th of a month, the + * ending date becomes equal to the 1st of the next month; + * otherwise the ending date becomes equal to the 30th of the + * same month. + * TRUE: European method. Starting dates and ending dates that + * occur on the 31st of a month become equal to the 30th of the + * same month. + * + * @return array|int|string Number of days between start date and end date + */ + public static function DAYS360($startDate = 0, $endDate = 0, $method = false) + { + return DateTimeExcel\Days360::between($startDate, $endDate, $method); + } + + /** + * YEARFRAC. + * + * Calculates the fraction of the year represented by the number of whole days between two dates + * (the start_date and the end_date). + * Use the YEARFRAC worksheet function to identify the proportion of a whole year's benefits or + * obligations to assign to a specific term. + * + * Excel Function: + * YEARFRAC(startDate,endDate[,method]) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\YearFrac::fraction() + * Use the fraction method in the DateTimeExcel\YearFrac class instead + * + * See https://lists.oasis-open.org/archives/office-formula/200806/msg00039.html + * for description of algorithm used in Excel + * + * @param mixed $startDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param mixed $endDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param array|int $method Method used for the calculation + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return array|float|string fraction of the year, or a string containing an error + */ + public static function YEARFRAC($startDate = 0, $endDate = 0, $method = 0) + { + return DateTimeExcel\YearFrac::fraction($startDate, $endDate, $method); + } + + /** + * NETWORKDAYS. + * + * Returns the number of whole working days between start_date and end_date. Working days + * exclude weekends and any dates identified in holidays. + * Use NETWORKDAYS to calculate employee benefits that accrue based on the number of days + * worked during a specific term. + * + * Excel Function: + * NETWORKDAYS(startDate,endDate[,holidays[,holiday[,...]]]) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\NetworkDays::count() + * Use the count method in the DateTimeExcel\NetworkDays class instead + * + * @param mixed $startDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param mixed $endDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param mixed $dateArgs + * + * @return array|int|string Interval between the dates + */ + public static function NETWORKDAYS($startDate, $endDate, ...$dateArgs) + { + return DateTimeExcel\NetworkDays::count($startDate, $endDate, ...$dateArgs); + } + + /** + * WORKDAY. + * + * Returns the date that is the indicated number of working days before or after a date (the + * starting date). Working days exclude weekends and any dates identified as holidays. + * Use WORKDAY to exclude weekends or holidays when you calculate invoice due dates, expected + * delivery times, or the number of days of work performed. + * + * Excel Function: + * WORKDAY(startDate,endDays[,holidays[,holiday[,...]]]) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\WorkDay::date() + * Use the date method in the DateTimeExcel\WorkDay class instead + * + * @param mixed $startDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param int $endDays The number of nonweekend and nonholiday days before or after + * startDate. A positive value for days yields a future date; a + * negative value yields a past date. + * @param mixed $dateArgs + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function WORKDAY($startDate, $endDays, ...$dateArgs) + { + return DateTimeExcel\WorkDay::date($startDate, $endDays, ...$dateArgs); + } + + /** + * DAYOFMONTH. + * + * Returns the day of the month, for a specified date. The day is given as an integer + * ranging from 1 to 31. + * + * Excel Function: + * DAY(dateValue) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\DateParts::day() + * Use the day method in the DateTimeExcel\DateParts class instead + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * + * @return array|int|string Day of the month + */ + public static function DAYOFMONTH($dateValue = 1) + { + return DateTimeExcel\DateParts::day($dateValue); + } + + /** + * WEEKDAY. + * + * Returns the day of the week for a specified date. The day is given as an integer + * ranging from 0 to 7 (dependent on the requested style). + * + * Excel Function: + * WEEKDAY(dateValue[,style]) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\Week::day() + * Use the day method in the DateTimeExcel\Week class instead + * + * @param float|int|string $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param int $style A number that determines the type of return value + * 1 or omitted Numbers 1 (Sunday) through 7 (Saturday). + * 2 Numbers 1 (Monday) through 7 (Sunday). + * 3 Numbers 0 (Monday) through 6 (Sunday). + * + * @return array|int|string Day of the week value + */ + public static function WEEKDAY($dateValue = 1, $style = 1) + { + return DateTimeExcel\Week::day($dateValue, $style); + } + + /** + * STARTWEEK_SUNDAY. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\STARTWEEK_SUNDAY instead + */ + const STARTWEEK_SUNDAY = 1; + + /** + * STARTWEEK_MONDAY. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\STARTWEEK_MONDAY instead + */ + const STARTWEEK_MONDAY = 2; + + /** + * STARTWEEK_MONDAY_ALT. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\STARTWEEK_MONDAY_ALT instead + */ + const STARTWEEK_MONDAY_ALT = 11; + + /** + * STARTWEEK_TUESDAY. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\STARTWEEK_TUESDAY instead + */ + const STARTWEEK_TUESDAY = 12; + + /** + * STARTWEEK_WEDNESDAY. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\STARTWEEK_WEDNESDAY instead + */ + const STARTWEEK_WEDNESDAY = 13; + + /** + * STARTWEEK_THURSDAY. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\STARTWEEK_THURSDAY instead + */ + const STARTWEEK_THURSDAY = 14; + + /** + * STARTWEEK_FRIDAY. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\STARTWEEK_FRIDAY instead + */ + const STARTWEEK_FRIDAY = 15; + + /** + * STARTWEEK_SATURDAY. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\STARTWEEK_SATURDAY instead + */ + const STARTWEEK_SATURDAY = 16; + + /** + * STARTWEEK_SUNDAY_ALT. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\STARTWEEK_SUNDAY_ALT instead + */ + const STARTWEEK_SUNDAY_ALT = 17; + + /** + * DOW_SUNDAY. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\DOW_SUNDAY instead + */ + const DOW_SUNDAY = 1; + + /** + * DOW_MONDAY. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\DOW_MONDAY instead + */ + const DOW_MONDAY = 2; + + /** + * DOW_TUESDAY. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\DOW_TUESDAY instead + */ + const DOW_TUESDAY = 3; + + /** + * DOW_WEDNESDAY. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\DOW_WEDNESDAY instead + */ + const DOW_WEDNESDAY = 4; + + /** + * DOW_THURSDAY. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\DOW_THURSDAY instead + */ + const DOW_THURSDAY = 5; + + /** + * DOW_FRIDAY. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\DOW_FRIDAY instead + */ + const DOW_FRIDAY = 6; + + /** + * DOW_SATURDAY. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\DOW_SATURDAY instead + */ + const DOW_SATURDAY = 7; + + /** + * STARTWEEK_MONDAY_ISO. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\STARTWEEK_MONDAY_ISO instead + */ + const STARTWEEK_MONDAY_ISO = 21; + + /** + * METHODARR. + * + * @Deprecated 1.18.0 + * + * @see Use DateTimeExcel\Constants\METHODARR instead + */ + const METHODARR = [ + self::STARTWEEK_SUNDAY => self::DOW_SUNDAY, + self::DOW_MONDAY, + self::STARTWEEK_MONDAY_ALT => self::DOW_MONDAY, + self::DOW_TUESDAY, + self::DOW_WEDNESDAY, + self::DOW_THURSDAY, + self::DOW_FRIDAY, + self::DOW_SATURDAY, + self::DOW_SUNDAY, + self::STARTWEEK_MONDAY_ISO => self::STARTWEEK_MONDAY_ISO, + ]; + + /** + * WEEKNUM. + * + * Returns the week of the year for a specified date. + * The WEEKNUM function considers the week containing January 1 to be the first week of the year. + * However, there is a European standard that defines the first week as the one with the majority + * of days (four or more) falling in the new year. This means that for years in which there are + * three days or less in the first week of January, the WEEKNUM function returns week numbers + * that are incorrect according to the European standard. + * + * Excel Function: + * WEEKNUM(dateValue[,style]) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\Week::number(() + * Use the number method in the DateTimeExcel\Week class instead + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param int $method Week begins on Sunday or Monday + * 1 or omitted Week begins on Sunday. + * 2 Week begins on Monday. + * 11 Week begins on Monday. + * 12 Week begins on Tuesday. + * 13 Week begins on Wednesday. + * 14 Week begins on Thursday. + * 15 Week begins on Friday. + * 16 Week begins on Saturday. + * 17 Week begins on Sunday. + * 21 ISO (Jan. 4 is week 1, begins on Monday). + * + * @return array|int|string Week Number + */ + public static function WEEKNUM($dateValue = 1, $method = self::STARTWEEK_SUNDAY) + { + return DateTimeExcel\Week::number($dateValue, $method); + } + + /** + * ISOWEEKNUM. + * + * Returns the ISO 8601 week number of the year for a specified date. + * + * Excel Function: + * ISOWEEKNUM(dateValue) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\Week::isoWeekNumber() + * Use the isoWeekNumber method in the DateTimeExcel\Week class instead + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * + * @return array|int|string Week Number + */ + public static function ISOWEEKNUM($dateValue = 1) + { + return DateTimeExcel\Week::isoWeekNumber($dateValue); + } + + /** + * MONTHOFYEAR. + * + * Returns the month of a date represented by a serial number. + * The month is given as an integer, ranging from 1 (January) to 12 (December). + * + * Excel Function: + * MONTH(dateValue) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\DateParts::month() + * Use the month method in the DateTimeExcel\DateParts class instead + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * + * @return array|int|string Month of the year + */ + public static function MONTHOFYEAR($dateValue = 1) + { + return DateTimeExcel\DateParts::month($dateValue); + } + + /** + * YEAR. + * + * Returns the year corresponding to a date. + * The year is returned as an integer in the range 1900-9999. + * + * Excel Function: + * YEAR(dateValue) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\DateParts::year() + * Use the ear method in the DateTimeExcel\DateParts class instead + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * + * @return array|int|string Year + */ + public static function YEAR($dateValue = 1) + { + return DateTimeExcel\DateParts::year($dateValue); + } + + /** + * HOUROFDAY. + * + * Returns the hour of a time value. + * The hour is given as an integer, ranging from 0 (12:00 A.M.) to 23 (11:00 P.M.). + * + * Excel Function: + * HOUR(timeValue) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\TimeParts::hour() + * Use the hour method in the DateTimeExcel\TimeParts class instead + * + * @param mixed $timeValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard time string + * + * @return array|int|string Hour + */ + public static function HOUROFDAY($timeValue = 0) + { + return DateTimeExcel\TimeParts::hour($timeValue); + } + + /** + * MINUTE. + * + * Returns the minutes of a time value. + * The minute is given as an integer, ranging from 0 to 59. + * + * Excel Function: + * MINUTE(timeValue) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\TimeParts::minute() + * Use the minute method in the DateTimeExcel\TimeParts class instead + * + * @param mixed $timeValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard time string + * + * @return array|int|string Minute + */ + public static function MINUTE($timeValue = 0) + { + return DateTimeExcel\TimeParts::minute($timeValue); + } + + /** + * SECOND. + * + * Returns the seconds of a time value. + * The second is given as an integer in the range 0 (zero) to 59. + * + * Excel Function: + * SECOND(timeValue) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\TimeParts::second() + * Use the second method in the DateTimeExcel\TimeParts class instead + * + * @param mixed $timeValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard time string + * + * @return array|int|string Second + */ + public static function SECOND($timeValue = 0) + { + return DateTimeExcel\TimeParts::second($timeValue); + } + + /** + * EDATE. + * + * Returns the serial number that represents the date that is the indicated number of months + * before or after a specified date (the start_date). + * Use EDATE to calculate maturity dates or due dates that fall on the same day of the month + * as the date of issue. + * + * Excel Function: + * EDATE(dateValue,adjustmentMonths) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\Month::adjust() + * Use the adjust method in the DateTimeExcel\Edate class instead + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param int $adjustmentMonths The number of months before or after start_date. + * A positive value for months yields a future date; + * a negative value yields a past date. + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function EDATE($dateValue = 1, $adjustmentMonths = 0) + { + return DateTimeExcel\Month::adjust($dateValue, $adjustmentMonths); + } + + /** + * EOMONTH. + * + * Returns the date value for the last day of the month that is the indicated number of months + * before or after start_date. + * Use EOMONTH to calculate maturity dates or due dates that fall on the last day of the month. + * + * Excel Function: + * EOMONTH(dateValue,adjustmentMonths) + * + * @Deprecated 1.18.0 + * + * @See DateTimeExcel\Month::lastDay() + * Use the lastDay method in the DateTimeExcel\EoMonth class instead + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * @param int $adjustmentMonths The number of months before or after start_date. + * A positive value for months yields a future date; + * a negative value yields a past date. + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function EOMONTH($dateValue = 1, $adjustmentMonths = 0) + { + return DateTimeExcel\Month::lastDay($dateValue, $adjustmentMonths); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Constants.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Constants.php new file mode 100644 index 0000000..1165eb1 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Constants.php @@ -0,0 +1,38 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +class Constants +{ + // Constants currently used by WeekNum; will eventually be used by WEEKDAY + const STARTWEEK_SUNDAY = 1; + const STARTWEEK_MONDAY = 2; + const STARTWEEK_MONDAY_ALT = 11; + const STARTWEEK_TUESDAY = 12; + const STARTWEEK_WEDNESDAY = 13; + const STARTWEEK_THURSDAY = 14; + const STARTWEEK_FRIDAY = 15; + const STARTWEEK_SATURDAY = 16; + const STARTWEEK_SUNDAY_ALT = 17; + const DOW_SUNDAY = 1; + const DOW_MONDAY = 2; + const DOW_TUESDAY = 3; + const DOW_WEDNESDAY = 4; + const DOW_THURSDAY = 5; + const DOW_FRIDAY = 6; + const DOW_SATURDAY = 7; + const STARTWEEK_MONDAY_ISO = 21; + + const METHODARR = [ + self::STARTWEEK_SUNDAY => self::DOW_SUNDAY, + self::DOW_MONDAY, + self::STARTWEEK_MONDAY_ALT => self::DOW_MONDAY, + self::DOW_TUESDAY, + self::DOW_WEDNESDAY, + self::DOW_THURSDAY, + self::DOW_FRIDAY, + self::DOW_SATURDAY, + self::DOW_SUNDAY, + self::STARTWEEK_MONDAY_ISO => self::STARTWEEK_MONDAY_ISO, + ]; +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Current.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Current.php new file mode 100644 index 0000000..5de671d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Current.php @@ -0,0 +1,59 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +use DateTimeImmutable; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Current +{ + /** + * DATENOW. + * + * Returns the current date. + * The NOW function is useful when you need to display the current date and time on a worksheet or + * calculate a value based on the current date and time, and have that value updated each time you + * open the worksheet. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the date + * and time format of your regional settings. PhpSpreadsheet does not change cell formatting in this way. + * + * Excel Function: + * TODAY() + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function today() + { + $dti = new DateTimeImmutable(); + $dateArray = Helpers::dateParse($dti->format('c')); + + return Helpers::dateParseSucceeded($dateArray) ? Helpers::returnIn3FormatsArray($dateArray, true) : ExcelError::VALUE(); + } + + /** + * DATETIMENOW. + * + * Returns the current date and time. + * The NOW function is useful when you need to display the current date and time on a worksheet or + * calculate a value based on the current date and time, and have that value updated each time you + * open the worksheet. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the date + * and time format of your regional settings. PhpSpreadsheet does not change cell formatting in this way. + * + * Excel Function: + * NOW() + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function now() + { + $dti = new DateTimeImmutable(); + $dateArray = Helpers::dateParse($dti->format('c')); + + return Helpers::dateParseSucceeded($dateArray) ? Helpers::returnIn3FormatsArray($dateArray) : ExcelError::VALUE(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Date.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Date.php new file mode 100644 index 0000000..56982c5 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Date.php @@ -0,0 +1,172 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Shared\Date as SharedDateHelper; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; + +class Date +{ + use ArrayEnabled; + + /** + * DATE. + * + * The DATE function returns a value that represents a particular date. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the date + * format of your regional settings. PhpSpreadsheet does not change cell formatting in this way. + * + * Excel Function: + * DATE(year,month,day) + * + * PhpSpreadsheet is a lot more forgiving than MS Excel when passing non numeric values to this function. + * A Month name or abbreviation (English only at this point) such as 'January' or 'Jan' will still be accepted, + * as will a day value with a suffix (e.g. '21st' rather than simply 21); again only English language. + * + * @param array|int $year The value of the year argument can include one to four digits. + * Excel interprets the year argument according to the configured + * date system: 1900 or 1904. + * If year is between 0 (zero) and 1899 (inclusive), Excel adds that + * value to 1900 to calculate the year. For example, DATE(108,1,2) + * returns January 2, 2008 (1900+108). + * If year is between 1900 and 9999 (inclusive), Excel uses that + * value as the year. For example, DATE(2008,1,2) returns January 2, + * 2008. + * If year is less than 0 or is 10000 or greater, Excel returns the + * #NUM! error value. + * @param array|int $month A positive or negative integer representing the month of the year + * from 1 to 12 (January to December). + * If month is greater than 12, month adds that number of months to + * the first month in the year specified. For example, DATE(2008,14,2) + * returns the serial number representing February 2, 2009. + * If month is less than 1, month subtracts the magnitude of that + * number of months, plus 1, from the first month in the year + * specified. For example, DATE(2008,-3,2) returns the serial number + * representing September 2, 2007. + * @param array|int $day A positive or negative integer representing the day of the month + * from 1 to 31. + * If day is greater than the number of days in the month specified, + * day adds that number of days to the first day in the month. For + * example, DATE(2008,1,35) returns the serial number representing + * February 4, 2008. + * If day is less than 1, day subtracts the magnitude that number of + * days, plus one, from the first day of the month specified. For + * example, DATE(2008,1,-15) returns the serial number representing + * December 16, 2007. + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function fromYMD($year, $month, $day) + { + if (is_array($year) || is_array($month) || is_array($day)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $year, $month, $day); + } + + $baseYear = SharedDateHelper::getExcelCalendar(); + + try { + $year = self::getYear($year, $baseYear); + $month = self::getMonth($month); + $day = self::getDay($day); + self::adjustYearMonth($year, $month, $baseYear); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Execute function + $excelDateValue = SharedDateHelper::formattedPHPToExcel($year, $month, $day); + + return Helpers::returnIn3FormatsFloat($excelDateValue); + } + + /** + * Convert year from multiple formats to int. + * + * @param mixed $year + */ + private static function getYear($year, int $baseYear): int + { + $year = ($year !== null) ? StringHelper::testStringAsNumeric((string) $year) : 0; + if (!is_numeric($year)) { + throw new Exception(ExcelError::VALUE()); + } + $year = (int) $year; + + if ($year < ($baseYear - 1900)) { + throw new Exception(ExcelError::NAN()); + } + if ((($baseYear - 1900) !== 0) && ($year < $baseYear) && ($year >= 1900)) { + throw new Exception(ExcelError::NAN()); + } + + if (($year < $baseYear) && ($year >= ($baseYear - 1900))) { + $year += 1900; + } + + return (int) $year; + } + + /** + * Convert month from multiple formats to int. + * + * @param mixed $month + */ + private static function getMonth($month): int + { + if (($month !== null) && (!is_numeric($month))) { + $month = SharedDateHelper::monthStringToNumber($month); + } + + $month = ($month !== null) ? StringHelper::testStringAsNumeric((string) $month) : 0; + if (!is_numeric($month)) { + throw new Exception(ExcelError::VALUE()); + } + + return (int) $month; + } + + /** + * Convert day from multiple formats to int. + * + * @param mixed $day + */ + private static function getDay($day): int + { + if (($day !== null) && (!is_numeric($day))) { + $day = SharedDateHelper::dayStringToNumber($day); + } + + $day = ($day !== null) ? StringHelper::testStringAsNumeric((string) $day) : 0; + if (!is_numeric($day)) { + throw new Exception(ExcelError::VALUE()); + } + + return (int) $day; + } + + private static function adjustYearMonth(int &$year, int &$month, int $baseYear): void + { + if ($month < 1) { + // Handle year/month adjustment if month < 1 + --$month; + $year += ceil($month / 12) - 1; + $month = 13 - abs($month % 12); + } elseif ($month > 12) { + // Handle year/month adjustment if month > 12 + $year += floor($month / 12); + $month = ($month % 12); + } + + // Re-validate the year parameter after adjustments + if (($year < $baseYear) || ($year >= 10000)) { + throw new Exception(ExcelError::NAN()); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/DateParts.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/DateParts.php new file mode 100644 index 0000000..b669eb0 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/DateParts.php @@ -0,0 +1,151 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Shared\Date as SharedDateHelper; + +class DateParts +{ + use ArrayEnabled; + + /** + * DAYOFMONTH. + * + * Returns the day of the month, for a specified date. The day is given as an integer + * ranging from 1 to 31. + * + * Excel Function: + * DAY(dateValue) + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * Or can be an array of date values + * + * @return array|int|string Day of the month + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function day($dateValue) + { + if (is_array($dateValue)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $dateValue); + } + + $weirdResult = self::weirdCondition($dateValue); + if ($weirdResult >= 0) { + return $weirdResult; + } + + try { + $dateValue = Helpers::getDateValue($dateValue); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Execute function + $PHPDateObject = SharedDateHelper::excelToDateTimeObject($dateValue); + + return (int) $PHPDateObject->format('j'); + } + + /** + * MONTHOFYEAR. + * + * Returns the month of a date represented by a serial number. + * The month is given as an integer, ranging from 1 (January) to 12 (December). + * + * Excel Function: + * MONTH(dateValue) + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * Or can be an array of date values + * + * @return array|int|string Month of the year + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function month($dateValue) + { + if (is_array($dateValue)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $dateValue); + } + + try { + $dateValue = Helpers::getDateValue($dateValue); + } catch (Exception $e) { + return $e->getMessage(); + } + if ($dateValue < 1 && SharedDateHelper::getExcelCalendar() === SharedDateHelper::CALENDAR_WINDOWS_1900) { + return 1; + } + + // Execute function + $PHPDateObject = SharedDateHelper::excelToDateTimeObject($dateValue); + + return (int) $PHPDateObject->format('n'); + } + + /** + * YEAR. + * + * Returns the year corresponding to a date. + * The year is returned as an integer in the range 1900-9999. + * + * Excel Function: + * YEAR(dateValue) + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * Or can be an array of date values + * + * @return array|int|string Year + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function year($dateValue) + { + if (is_array($dateValue)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $dateValue); + } + + try { + $dateValue = Helpers::getDateValue($dateValue); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($dateValue < 1 && SharedDateHelper::getExcelCalendar() === SharedDateHelper::CALENDAR_WINDOWS_1900) { + return 1900; + } + // Execute function + $PHPDateObject = SharedDateHelper::excelToDateTimeObject($dateValue); + + return (int) $PHPDateObject->format('Y'); + } + + /** + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + */ + private static function weirdCondition($dateValue): int + { + // Excel does not treat 0 consistently for DAY vs. (MONTH or YEAR) + if (SharedDateHelper::getExcelCalendar() === SharedDateHelper::CALENDAR_WINDOWS_1900 && Functions::getCompatibilityMode() == Functions::COMPATIBILITY_EXCEL) { + if (is_bool($dateValue)) { + return (int) $dateValue; + } + if ($dateValue === null) { + return 0; + } + if (is_numeric($dateValue) && $dateValue < 1 && $dateValue >= 0) { + return 0; + } + } + + return -1; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/DateValue.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/DateValue.php new file mode 100644 index 0000000..52543a7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/DateValue.php @@ -0,0 +1,157 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +use DateTimeImmutable; +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Shared\Date as SharedDateHelper; + +class DateValue +{ + use ArrayEnabled; + + /** + * DATEVALUE. + * + * Returns a value that represents a particular date. + * Use DATEVALUE to convert a date represented by a text string to an Excel or PHP date/time stamp + * value. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the date + * format of your regional settings. PhpSpreadsheet does not change cell formatting in this way. + * + * Excel Function: + * DATEVALUE(dateValue) + * + * @param array|string $dateValue Text that represents a date in a Microsoft Excel date format. + * For example, "1/30/2008" or "30-Jan-2008" are text strings within + * quotation marks that represent dates. Using the default date + * system in Excel for Windows, date_text must represent a date from + * January 1, 1900, to December 31, 9999. Using the default date + * system in Excel for the Macintosh, date_text must represent a date + * from January 1, 1904, to December 31, 9999. DATEVALUE returns the + * #VALUE! error value if date_text is out of this range. + * Or can be an array of date values + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function fromString($dateValue) + { + if (is_array($dateValue)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $dateValue); + } + + $dti = new DateTimeImmutable(); + $baseYear = SharedDateHelper::getExcelCalendar(); + $dateValue = trim($dateValue ?? '', '"'); + // Strip any ordinals because they're allowed in Excel (English only) + $dateValue = (string) preg_replace('/(\d)(st|nd|rd|th)([ -\/])/Ui', '$1$3', $dateValue); + // Convert separators (/ . or space) to hyphens (should also handle dot used for ordinals in some countries, e.g. Denmark, Germany) + $dateValue = str_replace(['/', '.', '-', ' '], ' ', $dateValue); + + $yearFound = false; + $t1 = explode(' ', $dateValue); + $t = ''; + foreach ($t1 as &$t) { + if ((is_numeric($t)) && ($t > 31)) { + if ($yearFound) { + return ExcelError::VALUE(); + } + if ($t < 100) { + $t += 1900; + } + $yearFound = true; + } + } + if (count($t1) === 1) { + // We've been fed a time value without any date + return ((strpos((string) $t, ':') === false)) ? ExcelError::Value() : 0.0; + } + unset($t); + + $dateValue = self::t1ToString($t1, $dti, $yearFound); + + $PHPDateArray = self::setUpArray($dateValue, $dti); + + return self::finalResults($PHPDateArray, $dti, $baseYear); + } + + private static function t1ToString(array $t1, DateTimeImmutable $dti, bool $yearFound): string + { + if (count($t1) == 2) { + // We only have two parts of the date: either day/month or month/year + if ($yearFound) { + array_unshift($t1, 1); + } else { + if (is_numeric($t1[1]) && $t1[1] > 29) { + $t1[1] += 1900; + array_unshift($t1, 1); + } else { + $t1[] = $dti->format('Y'); + } + } + } + $dateValue = implode(' ', $t1); + + return $dateValue; + } + + /** + * Parse date. + */ + private static function setUpArray(string $dateValue, DateTimeImmutable $dti): array + { + $PHPDateArray = Helpers::dateParse($dateValue); + if (!Helpers::dateParseSucceeded($PHPDateArray)) { + // If original count was 1, we've already returned. + // If it was 2, we added another. + // Therefore, neither of the first 2 stroks below can fail. + $testVal1 = strtok($dateValue, '- '); + $testVal2 = strtok('- '); + $testVal3 = strtok('- ') ?: $dti->format('Y'); + Helpers::adjustYear((string) $testVal1, (string) $testVal2, $testVal3); + $PHPDateArray = Helpers::dateParse($testVal1 . '-' . $testVal2 . '-' . $testVal3); + if (!Helpers::dateParseSucceeded($PHPDateArray)) { + $PHPDateArray = Helpers::dateParse($testVal2 . '-' . $testVal1 . '-' . $testVal3); + } + } + + return $PHPDateArray; + } + + /** + * Final results. + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + private static function finalResults(array $PHPDateArray, DateTimeImmutable $dti, int $baseYear) + { + $retValue = ExcelError::Value(); + if (Helpers::dateParseSucceeded($PHPDateArray)) { + // Execute function + Helpers::replaceIfEmpty($PHPDateArray['year'], $dti->format('Y')); + if ($PHPDateArray['year'] < $baseYear) { + return ExcelError::VALUE(); + } + Helpers::replaceIfEmpty($PHPDateArray['month'], $dti->format('m')); + Helpers::replaceIfEmpty($PHPDateArray['day'], $dti->format('d')); + $PHPDateArray['hour'] = 0; + $PHPDateArray['minute'] = 0; + $PHPDateArray['second'] = 0; + $month = (int) $PHPDateArray['month']; + $day = (int) $PHPDateArray['day']; + $year = (int) $PHPDateArray['year']; + if (!checkdate($month, $day, $year)) { + return ($year === 1900 && $month === 2 && $day === 29) ? Helpers::returnIn3FormatsFloat(60.0) : ExcelError::VALUE(); + } + $retValue = Helpers::returnIn3FormatsArray($PHPDateArray, true); + } + + return $retValue; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Days.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Days.php new file mode 100644 index 0000000..a3b9745 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Days.php @@ -0,0 +1,62 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +use DateTimeInterface; +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Shared\Date as SharedDateHelper; + +class Days +{ + use ArrayEnabled; + + /** + * DAYS. + * + * Returns the number of days between two dates + * + * Excel Function: + * DAYS(endDate, startDate) + * + * @param array|DateTimeInterface|float|int|string $endDate Excel date serial value (float), + * PHP date timestamp (integer), PHP DateTime object, or a standard date string + * Or can be an array of date values + * @param array|DateTimeInterface|float|int|string $startDate Excel date serial value (float), + * PHP date timestamp (integer), PHP DateTime object, or a standard date string + * Or can be an array of date values + * + * @return array|int|string Number of days between start date and end date or an error + * If an array of values is passed for the $startDate or $endDays,arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function between($endDate, $startDate) + { + if (is_array($endDate) || is_array($startDate)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $endDate, $startDate); + } + + try { + $startDate = Helpers::getDateValue($startDate); + $endDate = Helpers::getDateValue($endDate); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Execute function + $PHPStartDateObject = SharedDateHelper::excelToDateTimeObject($startDate); + $PHPEndDateObject = SharedDateHelper::excelToDateTimeObject($endDate); + + $days = ExcelError::VALUE(); + $diff = $PHPStartDateObject->diff($PHPEndDateObject); + if ($diff !== false && !is_bool($diff->days)) { + $days = $diff->days; + if ($diff->invert) { + $days = -$days; + } + } + + return $days; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Days360.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Days360.php new file mode 100644 index 0000000..6f71621 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Days360.php @@ -0,0 +1,118 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Shared\Date as SharedDateHelper; + +class Days360 +{ + use ArrayEnabled; + + /** + * DAYS360. + * + * Returns the number of days between two dates based on a 360-day year (twelve 30-day months), + * which is used in some accounting calculations. Use this function to help compute payments if + * your accounting system is based on twelve 30-day months. + * + * Excel Function: + * DAYS360(startDate,endDate[,method]) + * + * @param array|mixed $startDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * Or can be an array of date values + * @param array|mixed $endDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * Or can be an array of date values + * @param array|mixed $method US or European Method as a bool + * FALSE or omitted: U.S. (NASD) method. If the starting date is + * the last day of a month, it becomes equal to the 30th of the + * same month. If the ending date is the last day of a month and + * the starting date is earlier than the 30th of a month, the + * ending date becomes equal to the 1st of the next month; + * otherwise the ending date becomes equal to the 30th of the + * same month. + * TRUE: European method. Starting dates and ending dates that + * occur on the 31st of a month become equal to the 30th of the + * same month. + * Or can be an array of methods + * + * @return array|int|string Number of days between start date and end date + * If an array of values is passed for the $startDate or $endDays,arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function between($startDate = 0, $endDate = 0, $method = false) + { + if (is_array($startDate) || is_array($endDate) || is_array($method)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $startDate, $endDate, $method); + } + + try { + $startDate = Helpers::getDateValue($startDate); + $endDate = Helpers::getDateValue($endDate); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (!is_bool($method)) { + return ExcelError::VALUE(); + } + + // Execute function + $PHPStartDateObject = SharedDateHelper::excelToDateTimeObject($startDate); + $startDay = $PHPStartDateObject->format('j'); + $startMonth = $PHPStartDateObject->format('n'); + $startYear = $PHPStartDateObject->format('Y'); + + $PHPEndDateObject = SharedDateHelper::excelToDateTimeObject($endDate); + $endDay = $PHPEndDateObject->format('j'); + $endMonth = $PHPEndDateObject->format('n'); + $endYear = $PHPEndDateObject->format('Y'); + + return self::dateDiff360((int) $startDay, (int) $startMonth, (int) $startYear, (int) $endDay, (int) $endMonth, (int) $endYear, !$method); + } + + /** + * Return the number of days between two dates based on a 360 day calendar. + */ + private static function dateDiff360(int $startDay, int $startMonth, int $startYear, int $endDay, int $endMonth, int $endYear, bool $methodUS): int + { + $startDay = self::getStartDay($startDay, $startMonth, $startYear, $methodUS); + $endDay = self::getEndDay($endDay, $endMonth, $endYear, $startDay, $methodUS); + + return $endDay + $endMonth * 30 + $endYear * 360 - $startDay - $startMonth * 30 - $startYear * 360; + } + + private static function getStartDay(int $startDay, int $startMonth, int $startYear, bool $methodUS): int + { + if ($startDay == 31) { + --$startDay; + } elseif ($methodUS && ($startMonth == 2 && ($startDay == 29 || ($startDay == 28 && !Helpers::isLeapYear($startYear))))) { + $startDay = 30; + } + + return $startDay; + } + + private static function getEndDay(int $endDay, int &$endMonth, int &$endYear, int $startDay, bool $methodUS): int + { + if ($endDay == 31) { + if ($methodUS && $startDay != 30) { + $endDay = 1; + if ($endMonth == 12) { + ++$endYear; + $endMonth = 1; + } else { + ++$endMonth; + } + } else { + $endDay = 30; + } + } + + return $endDay; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Difference.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Difference.php new file mode 100644 index 0000000..ecb1cf0 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Difference.php @@ -0,0 +1,158 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +use DateInterval; +use DateTime; +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Shared\Date as SharedDateHelper; + +class Difference +{ + use ArrayEnabled; + + /** + * DATEDIF. + * + * @param mixed $startDate Excel date serial value, PHP date/time stamp, PHP DateTime object + * or a standard date string + * Or can be an array of date values + * @param mixed $endDate Excel date serial value, PHP date/time stamp, PHP DateTime object + * or a standard date string + * Or can be an array of date values + * @param array|string $unit + * Or can be an array of unit values + * + * @return array|int|string Interval between the dates + * If an array of values is passed for the $startDate or $endDays,arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function interval($startDate, $endDate, $unit = 'D') + { + if (is_array($startDate) || is_array($endDate) || is_array($unit)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $startDate, $endDate, $unit); + } + + try { + $startDate = Helpers::getDateValue($startDate); + $endDate = Helpers::getDateValue($endDate); + $difference = self::initialDiff($startDate, $endDate); + $unit = strtoupper($unit); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Execute function + $PHPStartDateObject = SharedDateHelper::excelToDateTimeObject($startDate); + $startDays = (int) $PHPStartDateObject->format('j'); + $startMonths = (int) $PHPStartDateObject->format('n'); + $startYears = (int) $PHPStartDateObject->format('Y'); + + $PHPEndDateObject = SharedDateHelper::excelToDateTimeObject($endDate); + $endDays = (int) $PHPEndDateObject->format('j'); + $endMonths = (int) $PHPEndDateObject->format('n'); + $endYears = (int) $PHPEndDateObject->format('Y'); + + $PHPDiffDateObject = $PHPEndDateObject->diff($PHPStartDateObject); + + $retVal = false; + $retVal = self::replaceRetValue($retVal, $unit, 'D') ?? self::datedifD($difference); + $retVal = self::replaceRetValue($retVal, $unit, 'M') ?? self::datedifM($PHPDiffDateObject); + $retVal = self::replaceRetValue($retVal, $unit, 'MD') ?? self::datedifMD($startDays, $endDays, $PHPEndDateObject, $PHPDiffDateObject); + $retVal = self::replaceRetValue($retVal, $unit, 'Y') ?? self::datedifY($PHPDiffDateObject); + $retVal = self::replaceRetValue($retVal, $unit, 'YD') ?? self::datedifYD($difference, $startYears, $endYears, $PHPStartDateObject, $PHPEndDateObject); + $retVal = self::replaceRetValue($retVal, $unit, 'YM') ?? self::datedifYM($PHPDiffDateObject); + + return is_bool($retVal) ? ExcelError::VALUE() : $retVal; + } + + private static function initialDiff(float $startDate, float $endDate): float + { + // Validate parameters + if ($startDate > $endDate) { + throw new Exception(ExcelError::NAN()); + } + + return $endDate - $startDate; + } + + /** + * Decide whether it's time to set retVal. + * + * @param bool|int $retVal + * + * @return null|bool|int + */ + private static function replaceRetValue($retVal, string $unit, string $compare) + { + if ($retVal !== false || $unit !== $compare) { + return $retVal; + } + + return null; + } + + private static function datedifD(float $difference): int + { + return (int) $difference; + } + + private static function datedifM(DateInterval $PHPDiffDateObject): int + { + return 12 * (int) $PHPDiffDateObject->format('%y') + (int) $PHPDiffDateObject->format('%m'); + } + + private static function datedifMD(int $startDays, int $endDays, DateTime $PHPEndDateObject, DateInterval $PHPDiffDateObject): int + { + if ($endDays < $startDays) { + $retVal = $endDays; + $PHPEndDateObject->modify('-' . $endDays . ' days'); + $adjustDays = (int) $PHPEndDateObject->format('j'); + $retVal += ($adjustDays - $startDays); + } else { + $retVal = (int) $PHPDiffDateObject->format('%d'); + } + + return $retVal; + } + + private static function datedifY(DateInterval $PHPDiffDateObject): int + { + return (int) $PHPDiffDateObject->format('%y'); + } + + private static function datedifYD(float $difference, int $startYears, int $endYears, DateTime $PHPStartDateObject, DateTime $PHPEndDateObject): int + { + $retVal = (int) $difference; + if ($endYears > $startYears) { + $isLeapStartYear = $PHPStartDateObject->format('L'); + $wasLeapEndYear = $PHPEndDateObject->format('L'); + + // Adjust end year to be as close as possible as start year + while ($PHPEndDateObject >= $PHPStartDateObject) { + $PHPEndDateObject->modify('-1 year'); + $endYears = $PHPEndDateObject->format('Y'); + } + $PHPEndDateObject->modify('+1 year'); + + // Get the result + $retVal = $PHPEndDateObject->diff($PHPStartDateObject)->days; + + // Adjust for leap years cases + $isLeapEndYear = $PHPEndDateObject->format('L'); + $limit = new DateTime($PHPEndDateObject->format('Y-02-29')); + if (!$isLeapStartYear && !$wasLeapEndYear && $isLeapEndYear && $PHPEndDateObject >= $limit) { + --$retVal; + } + } + + return (int) $retVal; + } + + private static function datedifYM(DateInterval $PHPDiffDateObject): int + { + return (int) $PHPDiffDateObject->format('%m'); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Helpers.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Helpers.php new file mode 100644 index 0000000..2384515 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Helpers.php @@ -0,0 +1,307 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +use DateTime; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Shared\Date as SharedDateHelper; + +class Helpers +{ + /** + * Identify if a year is a leap year or not. + * + * @param int|string $year The year to test + * + * @return bool TRUE if the year is a leap year, otherwise FALSE + */ + public static function isLeapYear($year): bool + { + return (($year % 4) === 0) && (($year % 100) !== 0) || (($year % 400) === 0); + } + + /** + * getDateValue. + * + * @param mixed $dateValue + * + * @return float Excel date/time serial value + */ + public static function getDateValue($dateValue, bool $allowBool = true): float + { + if (is_object($dateValue)) { + $retval = SharedDateHelper::PHPToExcel($dateValue); + if (is_bool($retval)) { + throw new Exception(ExcelError::VALUE()); + } + + return $retval; + } + + self::nullFalseTrueToNumber($dateValue, $allowBool); + if (!is_numeric($dateValue)) { + $saveReturnDateType = Functions::getReturnDateType(); + Functions::setReturnDateType(Functions::RETURNDATE_EXCEL); + $dateValue = DateValue::fromString($dateValue); + Functions::setReturnDateType($saveReturnDateType); + if (!is_numeric($dateValue)) { + throw new Exception(ExcelError::VALUE()); + } + } + if ($dateValue < 0 && Functions::getCompatibilityMode() !== Functions::COMPATIBILITY_OPENOFFICE) { + throw new Exception(ExcelError::NAN()); + } + + return (float) $dateValue; + } + + /** + * getTimeValue. + * + * @param string $timeValue + * + * @return mixed Excel date/time serial value, or string if error + */ + public static function getTimeValue($timeValue) + { + $saveReturnDateType = Functions::getReturnDateType(); + Functions::setReturnDateType(Functions::RETURNDATE_EXCEL); + $timeValue = TimeValue::fromString($timeValue); + Functions::setReturnDateType($saveReturnDateType); + + return $timeValue; + } + + /** + * Adjust date by given months. + * + * @param mixed $dateValue + */ + public static function adjustDateByMonths($dateValue = 0, float $adjustmentMonths = 0): DateTime + { + // Execute function + $PHPDateObject = SharedDateHelper::excelToDateTimeObject($dateValue); + $oMonth = (int) $PHPDateObject->format('m'); + $oYear = (int) $PHPDateObject->format('Y'); + + $adjustmentMonthsString = (string) $adjustmentMonths; + if ($adjustmentMonths > 0) { + $adjustmentMonthsString = '+' . $adjustmentMonths; + } + if ($adjustmentMonths != 0) { + $PHPDateObject->modify($adjustmentMonthsString . ' months'); + } + $nMonth = (int) $PHPDateObject->format('m'); + $nYear = (int) $PHPDateObject->format('Y'); + + $monthDiff = ($nMonth - $oMonth) + (($nYear - $oYear) * 12); + if ($monthDiff != $adjustmentMonths) { + $adjustDays = (int) $PHPDateObject->format('d'); + $adjustDaysString = '-' . $adjustDays . ' days'; + $PHPDateObject->modify($adjustDaysString); + } + + return $PHPDateObject; + } + + /** + * Help reduce perceived complexity of some tests. + * + * @param mixed $value + * @param mixed $altValue + */ + public static function replaceIfEmpty(&$value, $altValue): void + { + $value = $value ?: $altValue; + } + + /** + * Adjust year in ambiguous situations. + */ + public static function adjustYear(string $testVal1, string $testVal2, string &$testVal3): void + { + if (!is_numeric($testVal1) || $testVal1 < 31) { + if (!is_numeric($testVal2) || $testVal2 < 12) { + if (is_numeric($testVal3) && $testVal3 < 12) { + $testVal3 += 2000; + } + } + } + } + + /** + * Return result in one of three formats. + * + * @return mixed + */ + public static function returnIn3FormatsArray(array $dateArray, bool $noFrac = false) + { + $retType = Functions::getReturnDateType(); + if ($retType === Functions::RETURNDATE_PHP_DATETIME_OBJECT) { + return new DateTime( + $dateArray['year'] + . '-' . $dateArray['month'] + . '-' . $dateArray['day'] + . ' ' . $dateArray['hour'] + . ':' . $dateArray['minute'] + . ':' . $dateArray['second'] + ); + } + $excelDateValue = + SharedDateHelper::formattedPHPToExcel( + $dateArray['year'], + $dateArray['month'], + $dateArray['day'], + $dateArray['hour'], + $dateArray['minute'], + $dateArray['second'] + ); + if ($retType === Functions::RETURNDATE_EXCEL) { + return $noFrac ? floor($excelDateValue) : (float) $excelDateValue; + } + // RETURNDATE_UNIX_TIMESTAMP) + + return (int) SharedDateHelper::excelToTimestamp($excelDateValue); + } + + /** + * Return result in one of three formats. + * + * @return mixed + */ + public static function returnIn3FormatsFloat(float $excelDateValue) + { + $retType = Functions::getReturnDateType(); + if ($retType === Functions::RETURNDATE_EXCEL) { + return $excelDateValue; + } + if ($retType === Functions::RETURNDATE_UNIX_TIMESTAMP) { + return (int) SharedDateHelper::excelToTimestamp($excelDateValue); + } + // RETURNDATE_PHP_DATETIME_OBJECT + + return SharedDateHelper::excelToDateTimeObject($excelDateValue); + } + + /** + * Return result in one of three formats. + * + * @return mixed + */ + public static function returnIn3FormatsObject(DateTime $PHPDateObject) + { + $retType = Functions::getReturnDateType(); + if ($retType === Functions::RETURNDATE_PHP_DATETIME_OBJECT) { + return $PHPDateObject; + } + if ($retType === Functions::RETURNDATE_EXCEL) { + return (float) SharedDateHelper::PHPToExcel($PHPDateObject); + } + // RETURNDATE_UNIX_TIMESTAMP + $stamp = SharedDateHelper::PHPToExcel($PHPDateObject); + $stamp = is_bool($stamp) ? ((int) $stamp) : $stamp; + + return (int) SharedDateHelper::excelToTimestamp($stamp); + } + + private static function baseDate(): int + { + if (Functions::getCompatibilityMode() === Functions::COMPATIBILITY_OPENOFFICE) { + return 0; + } + if (SharedDateHelper::getExcelCalendar() === SharedDateHelper::CALENDAR_MAC_1904) { + return 0; + } + + return 1; + } + + /** + * Many functions accept null/false/true argument treated as 0/0/1. + * + * @param mixed $number + */ + public static function nullFalseTrueToNumber(&$number, bool $allowBool = true): void + { + $number = Functions::flattenSingleValue($number); + $nullVal = self::baseDate(); + if ($number === null) { + $number = $nullVal; + } elseif ($allowBool && is_bool($number)) { + $number = $nullVal + (int) $number; + } + } + + /** + * Many functions accept null argument treated as 0. + * + * @param mixed $number + * + * @return float|int + */ + public static function validateNumericNull($number) + { + $number = Functions::flattenSingleValue($number); + if ($number === null) { + return 0; + } + if (is_int($number)) { + return $number; + } + if (is_numeric($number)) { + return (float) $number; + } + + throw new Exception(ExcelError::VALUE()); + } + + /** + * Many functions accept null/false/true argument treated as 0/0/1. + * + * @param mixed $number + * + * @return float + */ + public static function validateNotNegative($number) + { + if (!is_numeric($number)) { + throw new Exception(ExcelError::VALUE()); + } + if ($number >= 0) { + return (float) $number; + } + + throw new Exception(ExcelError::NAN()); + } + + public static function silly1900(DateTime $PHPDateObject, string $mod = '-1 day'): void + { + $isoDate = $PHPDateObject->format('c'); + if ($isoDate < '1900-03-01') { + $PHPDateObject->modify($mod); + } + } + + public static function dateParse(string $string): array + { + return self::forceArray(date_parse($string)); + } + + public static function dateParseSucceeded(array $dateArray): bool + { + return $dateArray['error_count'] === 0; + } + + /** + * Despite documentation, date_parse probably never returns false. + * Just in case, this routine helps guarantee it. + * + * @param array|false $dateArray + */ + private static function forceArray($dateArray): array + { + return is_array($dateArray) ? $dateArray : ['error_count' => 1]; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Month.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Month.php new file mode 100644 index 0000000..c72d006 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Month.php @@ -0,0 +1,101 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; + +class Month +{ + use ArrayEnabled; + + /** + * EDATE. + * + * Returns the serial number that represents the date that is the indicated number of months + * before or after a specified date (the start_date). + * Use EDATE to calculate maturity dates or due dates that fall on the same day of the month + * as the date of issue. + * + * Excel Function: + * EDATE(dateValue,adjustmentMonths) + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * Or can be an array of date values + * @param array|int $adjustmentMonths The number of months before or after start_date. + * A positive value for months yields a future date; + * a negative value yields a past date. + * Or can be an array of adjustment values + * + * @return array|mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + * If an array of values is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function adjust($dateValue, $adjustmentMonths) + { + if (is_array($dateValue) || is_array($adjustmentMonths)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $dateValue, $adjustmentMonths); + } + + try { + $dateValue = Helpers::getDateValue($dateValue, false); + $adjustmentMonths = Helpers::validateNumericNull($adjustmentMonths); + } catch (Exception $e) { + return $e->getMessage(); + } + $adjustmentMonths = floor($adjustmentMonths); + + // Execute function + $PHPDateObject = Helpers::adjustDateByMonths($dateValue, $adjustmentMonths); + + return Helpers::returnIn3FormatsObject($PHPDateObject); + } + + /** + * EOMONTH. + * + * Returns the date value for the last day of the month that is the indicated number of months + * before or after start_date. + * Use EOMONTH to calculate maturity dates or due dates that fall on the last day of the month. + * + * Excel Function: + * EOMONTH(dateValue,adjustmentMonths) + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * Or can be an array of date values + * @param array|int $adjustmentMonths The number of months before or after start_date. + * A positive value for months yields a future date; + * a negative value yields a past date. + * Or can be an array of adjustment values + * + * @return array|mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + * If an array of values is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function lastDay($dateValue, $adjustmentMonths) + { + if (is_array($dateValue) || is_array($adjustmentMonths)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $dateValue, $adjustmentMonths); + } + + try { + $dateValue = Helpers::getDateValue($dateValue, false); + $adjustmentMonths = Helpers::validateNumericNull($adjustmentMonths); + } catch (Exception $e) { + return $e->getMessage(); + } + $adjustmentMonths = floor($adjustmentMonths); + + // Execute function + $PHPDateObject = Helpers::adjustDateByMonths($dateValue, $adjustmentMonths + 1); + $adjustDays = (int) $PHPDateObject->format('d'); + $adjustDaysString = '-' . $adjustDays . ' days'; + $PHPDateObject->modify($adjustDaysString); + + return Helpers::returnIn3FormatsObject($PHPDateObject); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/NetworkDays.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/NetworkDays.php new file mode 100644 index 0000000..3b8942b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/NetworkDays.php @@ -0,0 +1,119 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; + +class NetworkDays +{ + use ArrayEnabled; + + /** + * NETWORKDAYS. + * + * Returns the number of whole working days between start_date and end_date. Working days + * exclude weekends and any dates identified in holidays. + * Use NETWORKDAYS to calculate employee benefits that accrue based on the number of days + * worked during a specific term. + * + * Excel Function: + * NETWORKDAYS(startDate,endDate[,holidays[,holiday[,...]]]) + * + * @param mixed $startDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * Or can be an array of date values + * @param mixed $endDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * Or can be an array of date values + * @param mixed $dateArgs An array of dates (such as holidays) to exclude from the calculation + * + * @return array|int|string Interval between the dates + * If an array of values is passed for the $startDate or $endDate arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function count($startDate, $endDate, ...$dateArgs) + { + if (is_array($startDate) || is_array($endDate)) { + return self::evaluateArrayArgumentsSubset( + [self::class, __FUNCTION__], + 2, + $startDate, + $endDate, + ...$dateArgs + ); + } + + try { + // Retrieve the mandatory start and end date that are referenced in the function definition + $sDate = Helpers::getDateValue($startDate); + $eDate = Helpers::getDateValue($endDate); + $startDate = min($sDate, $eDate); + $endDate = max($sDate, $eDate); + // Get the optional days + $dateArgs = Functions::flattenArray($dateArgs); + // Test any extra holiday parameters + $holidayArray = []; + foreach ($dateArgs as $holidayDate) { + $holidayArray[] = Helpers::getDateValue($holidayDate); + } + } catch (Exception $e) { + return $e->getMessage(); + } + + // Execute function + $startDow = self::calcStartDow($startDate); + $endDow = self::calcEndDow($endDate); + $wholeWeekDays = (int) floor(($endDate - $startDate) / 7) * 5; + $partWeekDays = self::calcPartWeekDays($startDow, $endDow); + + // Test any extra holiday parameters + $holidayCountedArray = []; + foreach ($holidayArray as $holidayDate) { + if (($holidayDate >= $startDate) && ($holidayDate <= $endDate)) { + if ((Week::day($holidayDate, 2) < 6) && (!in_array($holidayDate, $holidayCountedArray))) { + --$partWeekDays; + $holidayCountedArray[] = $holidayDate; + } + } + } + + return self::applySign($wholeWeekDays + $partWeekDays, $sDate, $eDate); + } + + private static function calcStartDow(float $startDate): int + { + $startDow = 6 - (int) Week::day($startDate, 2); + if ($startDow < 0) { + $startDow = 5; + } + + return $startDow; + } + + private static function calcEndDow(float $endDate): int + { + $endDow = (int) Week::day($endDate, 2); + if ($endDow >= 6) { + $endDow = 0; + } + + return $endDow; + } + + private static function calcPartWeekDays(int $startDow, int $endDow): int + { + $partWeekDays = $endDow + $startDow; + if ($partWeekDays > 5) { + $partWeekDays -= 5; + } + + return $partWeekDays; + } + + private static function applySign(int $result, float $sDate, float $eDate): int + { + return ($sDate > $eDate) ? -$result : $result; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Time.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Time.php new file mode 100644 index 0000000..4ff7198 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Time.php @@ -0,0 +1,130 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +use DateTime; +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Shared\Date as SharedDateHelper; + +class Time +{ + use ArrayEnabled; + + /** + * TIME. + * + * The TIME function returns a value that represents a particular time. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the time + * format of your regional settings. PhpSpreadsheet does not change cell formatting in this way. + * + * Excel Function: + * TIME(hour,minute,second) + * + * @param array|int $hour A number from 0 (zero) to 32767 representing the hour. + * Any value greater than 23 will be divided by 24 and the remainder + * will be treated as the hour value. For example, TIME(27,0,0) = + * TIME(3,0,0) = .125 or 3:00 AM. + * @param array|int $minute A number from 0 to 32767 representing the minute. + * Any value greater than 59 will be converted to hours and minutes. + * For example, TIME(0,750,0) = TIME(12,30,0) = .520833 or 12:30 PM. + * @param array|int $second A number from 0 to 32767 representing the second. + * Any value greater than 59 will be converted to hours, minutes, + * and seconds. For example, TIME(0,0,2000) = TIME(0,33,22) = .023148 + * or 12:33:20 AM + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + * + * @return array|mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function fromHMS($hour, $minute, $second) + { + if (is_array($hour) || is_array($minute) || is_array($second)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $hour, $minute, $second); + } + + try { + $hour = self::toIntWithNullBool($hour); + $minute = self::toIntWithNullBool($minute); + $second = self::toIntWithNullBool($second); + } catch (Exception $e) { + return $e->getMessage(); + } + + self::adjustSecond($second, $minute); + self::adjustMinute($minute, $hour); + + if ($hour > 23) { + $hour = $hour % 24; + } elseif ($hour < 0) { + return ExcelError::NAN(); + } + + // Execute function + $retType = Functions::getReturnDateType(); + if ($retType === Functions::RETURNDATE_EXCEL) { + $calendar = SharedDateHelper::getExcelCalendar(); + $date = (int) ($calendar !== SharedDateHelper::CALENDAR_WINDOWS_1900); + + return (float) SharedDateHelper::formattedPHPToExcel($calendar, 1, $date, $hour, $minute, $second); + } + if ($retType === Functions::RETURNDATE_UNIX_TIMESTAMP) { + return (int) SharedDateHelper::excelToTimestamp(SharedDateHelper::formattedPHPToExcel(1970, 1, 1, $hour, $minute, $second)); // -2147468400; // -2147472000 + 3600 + } + // RETURNDATE_PHP_DATETIME_OBJECT + // Hour has already been normalized (0-23) above + $phpDateObject = new DateTime('1900-01-01 ' . $hour . ':' . $minute . ':' . $second); + + return $phpDateObject; + } + + private static function adjustSecond(int &$second, int &$minute): void + { + if ($second < 0) { + $minute += floor($second / 60); + $second = 60 - abs($second % 60); + if ($second == 60) { + $second = 0; + } + } elseif ($second >= 60) { + $minute += floor($second / 60); + $second = $second % 60; + } + } + + private static function adjustMinute(int &$minute, int &$hour): void + { + if ($minute < 0) { + $hour += floor($minute / 60); + $minute = 60 - abs($minute % 60); + if ($minute == 60) { + $minute = 0; + } + } elseif ($minute >= 60) { + $hour += floor($minute / 60); + $minute = $minute % 60; + } + } + + /** + * @param mixed $value expect int + */ + private static function toIntWithNullBool($value): int + { + $value = $value ?? 0; + if (is_bool($value)) { + $value = (int) $value; + } + if (!is_numeric($value)) { + throw new Exception(ExcelError::VALUE()); + } + + return (int) $value; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/TimeParts.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/TimeParts.php new file mode 100644 index 0000000..d9b99f3 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/TimeParts.php @@ -0,0 +1,132 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Shared\Date as SharedDateHelper; + +class TimeParts +{ + use ArrayEnabled; + + /** + * HOUROFDAY. + * + * Returns the hour of a time value. + * The hour is given as an integer, ranging from 0 (12:00 A.M.) to 23 (11:00 P.M.). + * + * Excel Function: + * HOUR(timeValue) + * + * @param mixed $timeValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard time string + * Or can be an array of date/time values + * + * @return array|int|string Hour + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function hour($timeValue) + { + if (is_array($timeValue)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $timeValue); + } + + try { + Helpers::nullFalseTrueToNumber($timeValue); + if (!is_numeric($timeValue)) { + $timeValue = Helpers::getTimeValue($timeValue); + } + Helpers::validateNotNegative($timeValue); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Execute function + $timeValue = fmod($timeValue, 1); + $timeValue = SharedDateHelper::excelToDateTimeObject($timeValue); + + return (int) $timeValue->format('H'); + } + + /** + * MINUTE. + * + * Returns the minutes of a time value. + * The minute is given as an integer, ranging from 0 to 59. + * + * Excel Function: + * MINUTE(timeValue) + * + * @param mixed $timeValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard time string + * Or can be an array of date/time values + * + * @return array|int|string Minute + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function minute($timeValue) + { + if (is_array($timeValue)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $timeValue); + } + + try { + Helpers::nullFalseTrueToNumber($timeValue); + if (!is_numeric($timeValue)) { + $timeValue = Helpers::getTimeValue($timeValue); + } + Helpers::validateNotNegative($timeValue); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Execute function + $timeValue = fmod($timeValue, 1); + $timeValue = SharedDateHelper::excelToDateTimeObject($timeValue); + + return (int) $timeValue->format('i'); + } + + /** + * SECOND. + * + * Returns the seconds of a time value. + * The minute is given as an integer, ranging from 0 to 59. + * + * Excel Function: + * SECOND(timeValue) + * + * @param mixed $timeValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard time string + * Or can be an array of date/time values + * + * @return array|int|string Second + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function second($timeValue) + { + if (is_array($timeValue)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $timeValue); + } + + try { + Helpers::nullFalseTrueToNumber($timeValue); + if (!is_numeric($timeValue)) { + $timeValue = Helpers::getTimeValue($timeValue); + } + Helpers::validateNotNegative($timeValue); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Execute function + $timeValue = fmod($timeValue, 1); + $timeValue = SharedDateHelper::excelToDateTimeObject($timeValue); + + return (int) $timeValue->format('s'); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/TimeValue.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/TimeValue.php new file mode 100644 index 0000000..aa27206 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/TimeValue.php @@ -0,0 +1,78 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +use Datetime; +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Shared\Date as SharedDateHelper; + +class TimeValue +{ + use ArrayEnabled; + + /** + * TIMEVALUE. + * + * Returns a value that represents a particular time. + * Use TIMEVALUE to convert a time represented by a text string to an Excel or PHP date/time stamp + * value. + * + * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the time + * format of your regional settings. PhpSpreadsheet does not change cell formatting in this way. + * + * Excel Function: + * TIMEVALUE(timeValue) + * + * @param array|string $timeValue A text string that represents a time in any one of the Microsoft + * Excel time formats; for example, "6:45 PM" and "18:45" text strings + * within quotation marks that represent time. + * Date information in time_text is ignored. + * Or can be an array of date/time values + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function fromString($timeValue) + { + if (is_array($timeValue)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $timeValue); + } + + $timeValue = trim($timeValue ?? '', '"'); + $timeValue = str_replace(['/', '.'], '-', $timeValue); + + $arraySplit = preg_split('/[\/:\-\s]/', $timeValue) ?: []; + if ((count($arraySplit) == 2 || count($arraySplit) == 3) && $arraySplit[0] > 24) { + $arraySplit[0] = ($arraySplit[0] % 24); + $timeValue = implode(':', $arraySplit); + } + + $PHPDateArray = Helpers::dateParse($timeValue); + $retValue = ExcelError::VALUE(); + if (Helpers::dateParseSucceeded($PHPDateArray)) { + /** @var int */ + $hour = $PHPDateArray['hour']; + /** @var int */ + $minute = $PHPDateArray['minute']; + /** @var int */ + $second = $PHPDateArray['second']; + // OpenOffice-specific code removed - it works just like Excel + $excelDateValue = SharedDateHelper::formattedPHPToExcel(1900, 1, 1, $hour, $minute, $second) - 1; + + $retType = Functions::getReturnDateType(); + if ($retType === Functions::RETURNDATE_EXCEL) { + $retValue = (float) $excelDateValue; + } elseif ($retType === Functions::RETURNDATE_UNIX_TIMESTAMP) { + $retValue = (int) $phpDateValue = SharedDateHelper::excelToTimestamp($excelDateValue + 25569) - 3600; + } else { + $retValue = new DateTime('1900-01-01 ' . $PHPDateArray['hour'] . ':' . $PHPDateArray['minute'] . ':' . $PHPDateArray['second']); + } + } + + return $retValue; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Week.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Week.php new file mode 100644 index 0000000..2f69007 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Week.php @@ -0,0 +1,278 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +use DateTime; +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Shared\Date as SharedDateHelper; + +class Week +{ + use ArrayEnabled; + + /** + * WEEKNUM. + * + * Returns the week of the year for a specified date. + * The WEEKNUM function considers the week containing January 1 to be the first week of the year. + * However, there is a European standard that defines the first week as the one with the majority + * of days (four or more) falling in the new year. This means that for years in which there are + * three days or less in the first week of January, the WEEKNUM function returns week numbers + * that are incorrect according to the European standard. + * + * Excel Function: + * WEEKNUM(dateValue[,style]) + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * Or can be an array of date values + * @param array|int $method Week begins on Sunday or Monday + * 1 or omitted Week begins on Sunday. + * 2 Week begins on Monday. + * 11 Week begins on Monday. + * 12 Week begins on Tuesday. + * 13 Week begins on Wednesday. + * 14 Week begins on Thursday. + * 15 Week begins on Friday. + * 16 Week begins on Saturday. + * 17 Week begins on Sunday. + * 21 ISO (Jan. 4 is week 1, begins on Monday). + * Or can be an array of methods + * + * @return array|int|string Week Number + * If an array of values is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function number($dateValue, $method = Constants::STARTWEEK_SUNDAY) + { + if (is_array($dateValue) || is_array($method)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $dateValue, $method); + } + + $origDateValueNull = empty($dateValue); + + try { + $method = self::validateMethod($method); + if ($dateValue === null) { // boolean not allowed + $dateValue = (SharedDateHelper::getExcelCalendar() === SharedDateHelper::CALENDAR_MAC_1904 || $method === Constants::DOW_SUNDAY) ? 0 : 1; + } + $dateValue = self::validateDateValue($dateValue); + if (!$dateValue && self::buggyWeekNum1900($method)) { + // This seems to be an additional Excel bug. + return 0; + } + } catch (Exception $e) { + return $e->getMessage(); + } + + // Execute function + $PHPDateObject = SharedDateHelper::excelToDateTimeObject($dateValue); + if ($method == Constants::STARTWEEK_MONDAY_ISO) { + Helpers::silly1900($PHPDateObject); + + return (int) $PHPDateObject->format('W'); + } + if (self::buggyWeekNum1904($method, $origDateValueNull, $PHPDateObject)) { + return 0; + } + Helpers::silly1900($PHPDateObject, '+ 5 years'); // 1905 calendar matches + $dayOfYear = (int) $PHPDateObject->format('z'); + $PHPDateObject->modify('-' . $dayOfYear . ' days'); + $firstDayOfFirstWeek = (int) $PHPDateObject->format('w'); + $daysInFirstWeek = (6 - $firstDayOfFirstWeek + $method) % 7; + $daysInFirstWeek += 7 * !$daysInFirstWeek; + $endFirstWeek = $daysInFirstWeek - 1; + $weekOfYear = floor(($dayOfYear - $endFirstWeek + 13) / 7); + + return (int) $weekOfYear; + } + + /** + * ISOWEEKNUM. + * + * Returns the ISO 8601 week number of the year for a specified date. + * + * Excel Function: + * ISOWEEKNUM(dateValue) + * + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * Or can be an array of date values + * + * @return array|int|string Week Number + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function isoWeekNumber($dateValue) + { + if (is_array($dateValue)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $dateValue); + } + + if (self::apparentBug($dateValue)) { + return 52; + } + + try { + $dateValue = Helpers::getDateValue($dateValue); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Execute function + $PHPDateObject = SharedDateHelper::excelToDateTimeObject($dateValue); + Helpers::silly1900($PHPDateObject); + + return (int) $PHPDateObject->format('W'); + } + + /** + * WEEKDAY. + * + * Returns the day of the week for a specified date. The day is given as an integer + * ranging from 0 to 7 (dependent on the requested style). + * + * Excel Function: + * WEEKDAY(dateValue[,style]) + * + * @param null|array|float|int|string $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * Or can be an array of date values + * @param mixed $style A number that determines the type of return value + * 1 or omitted Numbers 1 (Sunday) through 7 (Saturday). + * 2 Numbers 1 (Monday) through 7 (Sunday). + * 3 Numbers 0 (Monday) through 6 (Sunday). + * Or can be an array of styles + * + * @return array|int|string Day of the week value + * If an array of values is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function day($dateValue, $style = 1) + { + if (is_array($dateValue) || is_array($style)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $dateValue, $style); + } + + try { + $dateValue = Helpers::getDateValue($dateValue); + $style = self::validateStyle($style); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Execute function + $PHPDateObject = SharedDateHelper::excelToDateTimeObject($dateValue); + Helpers::silly1900($PHPDateObject); + $DoW = (int) $PHPDateObject->format('w'); + + switch ($style) { + case 1: + ++$DoW; + + break; + case 2: + $DoW = self::dow0Becomes7($DoW); + + break; + case 3: + $DoW = self::dow0Becomes7($DoW) - 1; + + break; + } + + return $DoW; + } + + /** + * @param mixed $style expect int + */ + private static function validateStyle($style): int + { + if (!is_numeric($style)) { + throw new Exception(ExcelError::VALUE()); + } + $style = (int) $style; + if (($style < 1) || ($style > 3)) { + throw new Exception(ExcelError::NAN()); + } + + return $style; + } + + private static function dow0Becomes7(int $DoW): int + { + return ($DoW === 0) ? 7 : $DoW; + } + + /** + * @param mixed $dateValue Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + */ + private static function apparentBug($dateValue): bool + { + if (SharedDateHelper::getExcelCalendar() !== SharedDateHelper::CALENDAR_MAC_1904) { + if (is_bool($dateValue)) { + return true; + } + if (is_numeric($dateValue) && !((int) $dateValue)) { + return true; + } + } + + return false; + } + + /** + * Validate dateValue parameter. + * + * @param mixed $dateValue + */ + private static function validateDateValue($dateValue): float + { + if (is_bool($dateValue)) { + throw new Exception(ExcelError::VALUE()); + } + + return Helpers::getDateValue($dateValue); + } + + /** + * Validate method parameter. + * + * @param mixed $method + */ + private static function validateMethod($method): int + { + if ($method === null) { + $method = Constants::STARTWEEK_SUNDAY; + } + + if (!is_numeric($method)) { + throw new Exception(ExcelError::VALUE()); + } + + $method = (int) $method; + if (!array_key_exists($method, Constants::METHODARR)) { + throw new Exception(ExcelError::NAN()); + } + $method = Constants::METHODARR[$method]; + + return $method; + } + + private static function buggyWeekNum1900(int $method): bool + { + return $method === Constants::DOW_SUNDAY && SharedDateHelper::getExcelCalendar() === SharedDateHelper::CALENDAR_WINDOWS_1900; + } + + private static function buggyWeekNum1904(int $method, bool $origNull, DateTime $dateObject): bool + { + // This appears to be another Excel bug. + + return $method === Constants::DOW_SUNDAY && SharedDateHelper::getExcelCalendar() === SharedDateHelper::CALENDAR_MAC_1904 && + !$origNull && $dateObject->format('Y-m-d') === '1904-01-01'; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/WorkDay.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/WorkDay.php new file mode 100644 index 0000000..1f5735e --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/WorkDay.php @@ -0,0 +1,201 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; + +class WorkDay +{ + use ArrayEnabled; + + /** + * WORKDAY. + * + * Returns the date that is the indicated number of working days before or after a date (the + * starting date). Working days exclude weekends and any dates identified as holidays. + * Use WORKDAY to exclude weekends or holidays when you calculate invoice due dates, expected + * delivery times, or the number of days of work performed. + * + * Excel Function: + * WORKDAY(startDate,endDays[,holidays[,holiday[,...]]]) + * + * @param array|mixed $startDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * Or can be an array of date values + * @param array|int $endDays The number of nonweekend and nonholiday days before or after + * startDate. A positive value for days yields a future date; a + * negative value yields a past date. + * Or can be an array of int values + * @param null|mixed $dateArgs An array of dates (such as holidays) to exclude from the calculation + * + * @return array|mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + * If an array of values is passed for the $startDate or $endDays,arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function date($startDate, $endDays, ...$dateArgs) + { + if (is_array($startDate) || is_array($endDays)) { + return self::evaluateArrayArgumentsSubset( + [self::class, __FUNCTION__], + 2, + $startDate, + $endDays, + ...$dateArgs + ); + } + + // Retrieve the mandatory start date and days that are referenced in the function definition + try { + $startDate = Helpers::getDateValue($startDate); + $endDays = Helpers::validateNumericNull($endDays); + $holidayArray = array_map([Helpers::class, 'getDateValue'], Functions::flattenArray($dateArgs)); + } catch (Exception $e) { + return $e->getMessage(); + } + + $startDate = (float) floor($startDate); + $endDays = (int) floor($endDays); + // If endDays is 0, we always return startDate + if ($endDays == 0) { + return $startDate; + } + if ($endDays < 0) { + return self::decrementing($startDate, $endDays, $holidayArray); + } + + return self::incrementing($startDate, $endDays, $holidayArray); + } + + /** + * Use incrementing logic to determine Workday. + * + * @return mixed + */ + private static function incrementing(float $startDate, int $endDays, array $holidayArray) + { + // Adjust the start date if it falls over a weekend + $startDoW = self::getWeekDay($startDate, 3); + if ($startDoW >= 5) { + $startDate += 7 - $startDoW; + --$endDays; + } + + // Add endDays + $endDate = (float) $startDate + ((int) ($endDays / 5) * 7); + $endDays = $endDays % 5; + while ($endDays > 0) { + ++$endDate; + // Adjust the calculated end date if it falls over a weekend + $endDow = self::getWeekDay($endDate, 3); + if ($endDow >= 5) { + $endDate += 7 - $endDow; + } + --$endDays; + } + + // Test any extra holiday parameters + if (!empty($holidayArray)) { + $endDate = self::incrementingArray($startDate, $endDate, $holidayArray); + } + + return Helpers::returnIn3FormatsFloat($endDate); + } + + private static function incrementingArray(float $startDate, float $endDate, array $holidayArray): float + { + $holidayCountedArray = $holidayDates = []; + foreach ($holidayArray as $holidayDate) { + if (self::getWeekDay($holidayDate, 3) < 5) { + $holidayDates[] = $holidayDate; + } + } + sort($holidayDates, SORT_NUMERIC); + foreach ($holidayDates as $holidayDate) { + if (($holidayDate >= $startDate) && ($holidayDate <= $endDate)) { + if (!in_array($holidayDate, $holidayCountedArray)) { + ++$endDate; + $holidayCountedArray[] = $holidayDate; + } + } + // Adjust the calculated end date if it falls over a weekend + $endDoW = self::getWeekDay($endDate, 3); + if ($endDoW >= 5) { + $endDate += 7 - $endDoW; + } + } + + return $endDate; + } + + /** + * Use decrementing logic to determine Workday. + * + * @return mixed + */ + private static function decrementing(float $startDate, int $endDays, array $holidayArray) + { + // Adjust the start date if it falls over a weekend + $startDoW = self::getWeekDay($startDate, 3); + if ($startDoW >= 5) { + $startDate += -$startDoW + 4; + ++$endDays; + } + + // Add endDays + $endDate = (float) $startDate + ((int) ($endDays / 5) * 7); + $endDays = $endDays % 5; + while ($endDays < 0) { + --$endDate; + // Adjust the calculated end date if it falls over a weekend + $endDow = self::getWeekDay($endDate, 3); + if ($endDow >= 5) { + $endDate += 4 - $endDow; + } + ++$endDays; + } + + // Test any extra holiday parameters + if (!empty($holidayArray)) { + $endDate = self::decrementingArray($startDate, $endDate, $holidayArray); + } + + return Helpers::returnIn3FormatsFloat($endDate); + } + + private static function decrementingArray(float $startDate, float $endDate, array $holidayArray): float + { + $holidayCountedArray = $holidayDates = []; + foreach ($holidayArray as $holidayDate) { + if (self::getWeekDay($holidayDate, 3) < 5) { + $holidayDates[] = $holidayDate; + } + } + rsort($holidayDates, SORT_NUMERIC); + foreach ($holidayDates as $holidayDate) { + if (($holidayDate <= $startDate) && ($holidayDate >= $endDate)) { + if (!in_array($holidayDate, $holidayCountedArray)) { + --$endDate; + $holidayCountedArray[] = $holidayDate; + } + } + // Adjust the calculated end date if it falls over a weekend + $endDoW = self::getWeekDay($endDate, 3); + /** int $endDoW */ + if ($endDoW >= 5) { + $endDate += -$endDoW + 4; + } + } + + return $endDate; + } + + private static function getWeekDay(float $date, int $wd): int + { + $result = Functions::scalar(Week::day($date, $wd)); + + return is_int($result) ? $result : -1; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/YearFrac.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/YearFrac.php new file mode 100644 index 0000000..394c6b7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/YearFrac.php @@ -0,0 +1,133 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Shared\Date as SharedDateHelper; + +class YearFrac +{ + use ArrayEnabled; + + /** + * YEARFRAC. + * + * Calculates the fraction of the year represented by the number of whole days between two dates + * (the start_date and the end_date). + * Use the YEARFRAC worksheet function to identify the proportion of a whole year's benefits or + * obligations to assign to a specific term. + * + * Excel Function: + * YEARFRAC(startDate,endDate[,method]) + * See https://lists.oasis-open.org/archives/office-formula/200806/msg00039.html + * for description of algorithm used in Excel + * + * @param mixed $startDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * Or can be an array of values + * @param mixed $endDate Excel date serial value (float), PHP date timestamp (integer), + * PHP DateTime object, or a standard date string + * Or can be an array of methods + * @param array|int $method Method used for the calculation + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * Or can be an array of methods + * + * @return array|float|string fraction of the year, or a string containing an error + * If an array of values is passed for the $startDate or $endDays,arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function fraction($startDate, $endDate, $method = 0) + { + if (is_array($startDate) || is_array($endDate) || is_array($method)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $startDate, $endDate, $method); + } + + try { + $method = (int) Helpers::validateNumericNull($method); + $sDate = Helpers::getDateValue($startDate); + $eDate = Helpers::getDateValue($endDate); + $sDate = self::excelBug($sDate, $startDate, $endDate, $method); + $eDate = self::excelBug($eDate, $endDate, $startDate, $method); + $startDate = min($sDate, $eDate); + $endDate = max($sDate, $eDate); + } catch (Exception $e) { + return $e->getMessage(); + } + + switch ($method) { + case 0: + return Functions::scalar(Days360::between($startDate, $endDate)) / 360; + case 1: + return self::method1($startDate, $endDate); + case 2: + return Functions::scalar(Difference::interval($startDate, $endDate)) / 360; + case 3: + return Functions::scalar(Difference::interval($startDate, $endDate)) / 365; + case 4: + return Functions::scalar(Days360::between($startDate, $endDate, true)) / 360; + } + + return ExcelError::NAN(); + } + + /** + * Excel 1900 calendar treats date argument of null as 1900-01-00. Really. + * + * @param mixed $startDate + * @param mixed $endDate + */ + private static function excelBug(float $sDate, $startDate, $endDate, int $method): float + { + if (Functions::getCompatibilityMode() !== Functions::COMPATIBILITY_OPENOFFICE && SharedDateHelper::getExcelCalendar() !== SharedDateHelper::CALENDAR_MAC_1904) { + if ($endDate === null && $startDate !== null) { + if (DateParts::month($sDate) == 12 && DateParts::day($sDate) === 31 && $method === 0) { + $sDate += 2; + } else { + ++$sDate; + } + } + } + + return $sDate; + } + + private static function method1(float $startDate, float $endDate): float + { + $days = Functions::scalar(Difference::interval($startDate, $endDate)); + $startYear = (int) DateParts::year($startDate); + $endYear = (int) DateParts::year($endDate); + $years = $endYear - $startYear + 1; + $startMonth = (int) DateParts::month($startDate); + $startDay = (int) DateParts::day($startDate); + $endMonth = (int) DateParts::month($endDate); + $endDay = (int) DateParts::day($endDate); + $startMonthDay = 100 * $startMonth + $startDay; + $endMonthDay = 100 * $endMonth + $endDay; + if ($years == 1) { + $tmpCalcAnnualBasis = 365 + (int) Helpers::isLeapYear($endYear); + } elseif ($years == 2 && $startMonthDay >= $endMonthDay) { + if (Helpers::isLeapYear($startYear)) { + $tmpCalcAnnualBasis = 365 + (int) ($startMonthDay <= 229); + } elseif (Helpers::isLeapYear($endYear)) { + $tmpCalcAnnualBasis = 365 + (int) ($endMonthDay >= 229); + } else { + $tmpCalcAnnualBasis = 365; + } + } else { + $tmpCalcAnnualBasis = 0; + for ($year = $startYear; $year <= $endYear; ++$year) { + $tmpCalcAnnualBasis += 365 + (int) Helpers::isLeapYear($year); + } + $tmpCalcAnnualBasis /= $years; + } + + return $days / $tmpCalcAnnualBasis; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/ArrayArgumentHelper.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/ArrayArgumentHelper.php new file mode 100644 index 0000000..fae9d90 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/ArrayArgumentHelper.php @@ -0,0 +1,209 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engine; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; + +class ArrayArgumentHelper +{ + /** + * @var int + */ + protected $indexStart = 0; + + /** + * @var array + */ + protected $arguments; + + /** + * @var int + */ + protected $argumentCount; + + /** + * @var array + */ + protected $rows; + + /** + * @var array + */ + protected $columns; + + public function initialise(array $arguments): void + { + $keys = array_keys($arguments); + $this->indexStart = (int) array_shift($keys); + $this->rows = $this->rows($arguments); + $this->columns = $this->columns($arguments); + + $this->argumentCount = count($arguments); + $this->arguments = $this->flattenSingleCellArrays($arguments, $this->rows, $this->columns); + + $this->rows = $this->rows($arguments); + $this->columns = $this->columns($arguments); + + if ($this->arrayArguments() > 2) { + throw new Exception('Formulae with more than two array arguments are not supported'); + } + } + + public function arguments(): array + { + return $this->arguments; + } + + public function hasArrayArgument(): bool + { + return $this->arrayArguments() > 0; + } + + public function getFirstArrayArgumentNumber(): int + { + $rowArrays = $this->filterArray($this->rows); + $columnArrays = $this->filterArray($this->columns); + + for ($index = $this->indexStart; $index < $this->argumentCount; ++$index) { + if (isset($rowArrays[$index]) || isset($columnArrays[$index])) { + return ++$index; + } + } + + return 0; + } + + public function getSingleRowVector(): ?int + { + $rowVectors = $this->getRowVectors(); + + return count($rowVectors) === 1 ? array_pop($rowVectors) : null; + } + + private function getRowVectors(): array + { + $rowVectors = []; + for ($index = $this->indexStart; $index < ($this->indexStart + $this->argumentCount); ++$index) { + if ($this->rows[$index] === 1 && $this->columns[$index] > 1) { + $rowVectors[] = $index; + } + } + + return $rowVectors; + } + + public function getSingleColumnVector(): ?int + { + $columnVectors = $this->getColumnVectors(); + + return count($columnVectors) === 1 ? array_pop($columnVectors) : null; + } + + private function getColumnVectors(): array + { + $columnVectors = []; + for ($index = $this->indexStart; $index < ($this->indexStart + $this->argumentCount); ++$index) { + if ($this->rows[$index] > 1 && $this->columns[$index] === 1) { + $columnVectors[] = $index; + } + } + + return $columnVectors; + } + + public function getMatrixPair(): array + { + for ($i = $this->indexStart; $i < ($this->indexStart + $this->argumentCount - 1); ++$i) { + for ($j = $i + 1; $j < $this->argumentCount; ++$j) { + if (isset($this->rows[$i], $this->rows[$j])) { + return [$i, $j]; + } + } + } + + return []; + } + + public function isVector(int $argument): bool + { + return $this->rows[$argument] === 1 || $this->columns[$argument] === 1; + } + + public function isRowVector(int $argument): bool + { + return $this->rows[$argument] === 1; + } + + public function isColumnVector(int $argument): bool + { + return $this->columns[$argument] === 1; + } + + public function rowCount(int $argument): int + { + return $this->rows[$argument]; + } + + public function columnCount(int $argument): int + { + return $this->columns[$argument]; + } + + private function rows(array $arguments): array + { + return array_map( + function ($argument) { + return is_countable($argument) ? count($argument) : 1; + }, + $arguments + ); + } + + private function columns(array $arguments): array + { + return array_map( + function ($argument) { + return is_array($argument) && is_array($argument[array_keys($argument)[0]]) + ? count($argument[array_keys($argument)[0]]) + : 1; + }, + $arguments + ); + } + + public function arrayArguments(): int + { + $count = 0; + foreach (array_keys($this->arguments) as $argument) { + if ($this->rows[$argument] > 1 || $this->columns[$argument] > 1) { + ++$count; + } + } + + return $count; + } + + private function flattenSingleCellArrays(array $arguments, array $rows, array $columns): array + { + foreach ($arguments as $index => $argument) { + if ($rows[$index] === 1 && $columns[$index] === 1) { + while (is_array($argument)) { + $argument = array_pop($argument); + } + $arguments[$index] = $argument; + } + } + + return $arguments; + } + + private function filterArray(array $array): array + { + return array_filter( + $array, + function ($value) { + return $value > 1; + } + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/ArrayArgumentProcessor.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/ArrayArgumentProcessor.php new file mode 100644 index 0000000..3e69d77 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/ArrayArgumentProcessor.php @@ -0,0 +1,175 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engine; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; + +class ArrayArgumentProcessor +{ + /** + * @var ArrayArgumentHelper + */ + private static $arrayArgumentHelper; + + /** + * @param mixed ...$arguments + */ + public static function processArguments( + ArrayArgumentHelper $arrayArgumentHelper, + callable $method, + ...$arguments + ): array { + self::$arrayArgumentHelper = $arrayArgumentHelper; + + if (self::$arrayArgumentHelper->hasArrayArgument() === false) { + return [$method(...$arguments)]; + } + + if (self::$arrayArgumentHelper->arrayArguments() === 1) { + $nthArgument = self::$arrayArgumentHelper->getFirstArrayArgumentNumber(); + + return self::evaluateNthArgumentAsArray($method, $nthArgument, ...$arguments); + } + + $singleRowVectorIndex = self::$arrayArgumentHelper->getSingleRowVector(); + $singleColumnVectorIndex = self::$arrayArgumentHelper->getSingleColumnVector(); + + if ($singleRowVectorIndex !== null && $singleColumnVectorIndex !== null) { + // Basic logic for a single row vector and a single column vector + return self::evaluateVectorPair($method, $singleRowVectorIndex, $singleColumnVectorIndex, ...$arguments); + } + + $matrixPair = self::$arrayArgumentHelper->getMatrixPair(); + if ($matrixPair !== []) { + if ( + (self::$arrayArgumentHelper->isVector($matrixPair[0]) === true && + self::$arrayArgumentHelper->isVector($matrixPair[1]) === false) || + (self::$arrayArgumentHelper->isVector($matrixPair[0]) === false && + self::$arrayArgumentHelper->isVector($matrixPair[1]) === true) + ) { + // Logic for a matrix and a vector (row or column) + return self::evaluateVectorMatrixPair($method, $matrixPair, ...$arguments); + } + // Logic for matrix/matrix, column vector/column vector or row vector/row vector + return self::evaluateMatrixPair($method, $matrixPair, ...$arguments); + } + + // Still need to work out the logic for more than two array arguments, + // For the moment, we're throwing an Exception when we initialise the ArrayArgumentHelper + return ['#VALUE!']; + } + + /** + * @param mixed ...$arguments + */ + private static function evaluateVectorMatrixPair(callable $method, array $matrixIndexes, ...$arguments): array + { + $matrix2 = array_pop($matrixIndexes); + /** @var array $matrixValues2 */ + $matrixValues2 = $arguments[$matrix2]; + $matrix1 = array_pop($matrixIndexes); + /** @var array $matrixValues1 */ + $matrixValues1 = $arguments[$matrix1]; + + $rows = min(array_map([self::$arrayArgumentHelper, 'rowCount'], [$matrix1, $matrix2])); + $columns = min(array_map([self::$arrayArgumentHelper, 'columnCount'], [$matrix1, $matrix2])); + + if ($rows === 1) { + $rows = max(array_map([self::$arrayArgumentHelper, 'rowCount'], [$matrix1, $matrix2])); + } + if ($columns === 1) { + $columns = max(array_map([self::$arrayArgumentHelper, 'columnCount'], [$matrix1, $matrix2])); + } + + $result = []; + for ($rowIndex = 0; $rowIndex < $rows; ++$rowIndex) { + for ($columnIndex = 0; $columnIndex < $columns; ++$columnIndex) { + $rowIndex1 = self::$arrayArgumentHelper->isRowVector($matrix1) ? 0 : $rowIndex; + $columnIndex1 = self::$arrayArgumentHelper->isColumnVector($matrix1) ? 0 : $columnIndex; + $value1 = $matrixValues1[$rowIndex1][$columnIndex1]; + $rowIndex2 = self::$arrayArgumentHelper->isRowVector($matrix2) ? 0 : $rowIndex; + $columnIndex2 = self::$arrayArgumentHelper->isColumnVector($matrix2) ? 0 : $columnIndex; + $value2 = $matrixValues2[$rowIndex2][$columnIndex2]; + $arguments[$matrix1] = $value1; + $arguments[$matrix2] = $value2; + + $result[$rowIndex][$columnIndex] = $method(...$arguments); + } + } + + return $result; + } + + /** + * @param mixed ...$arguments + */ + private static function evaluateMatrixPair(callable $method, array $matrixIndexes, ...$arguments): array + { + $matrix2 = array_pop($matrixIndexes); + /** @var array $matrixValues2 */ + $matrixValues2 = $arguments[$matrix2]; + $matrix1 = array_pop($matrixIndexes); + /** @var array $matrixValues1 */ + $matrixValues1 = $arguments[$matrix1]; + + $result = []; + foreach ($matrixValues1 as $rowIndex => $row) { + foreach ($row as $columnIndex => $value1) { + if (isset($matrixValues2[$rowIndex][$columnIndex]) === false) { + continue; + } + + $value2 = $matrixValues2[$rowIndex][$columnIndex]; + $arguments[$matrix1] = $value1; + $arguments[$matrix2] = $value2; + + $result[$rowIndex][$columnIndex] = $method(...$arguments); + } + } + + return $result; + } + + /** + * @param mixed ...$arguments + */ + private static function evaluateVectorPair(callable $method, int $rowIndex, int $columnIndex, ...$arguments): array + { + $rowVector = Functions::flattenArray($arguments[$rowIndex]); + $columnVector = Functions::flattenArray($arguments[$columnIndex]); + + $result = []; + foreach ($columnVector as $column) { + $rowResults = []; + foreach ($rowVector as $row) { + $arguments[$rowIndex] = $row; + $arguments[$columnIndex] = $column; + + $rowResults[] = $method(...$arguments); + } + $result[] = $rowResults; + } + + return $result; + } + + /** + * Note, offset is from 1 (for the first argument) rather than from 0. + * + * @param mixed ...$arguments + */ + private static function evaluateNthArgumentAsArray(callable $method, int $nthArgument, ...$arguments): array + { + $values = array_slice($arguments, $nthArgument - 1, 1); + /** @var array $values */ + $values = array_pop($values); + + $result = []; + foreach ($values as $value) { + $arguments[$nthArgument - 1] = $value; + $result[] = $method(...$arguments); + } + + return $result; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/BranchPruner.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/BranchPruner.php new file mode 100644 index 0000000..9cd767e --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/BranchPruner.php @@ -0,0 +1,223 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engine; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; + +class BranchPruner +{ + /** + * @var bool + */ + protected $branchPruningEnabled = true; + + /** + * Used to generate unique store keys. + * + * @var int + */ + private $branchStoreKeyCounter = 0; + + /** + * currently pending storeKey (last item of the storeKeysStack. + * + * @var ?string + */ + protected $pendingStoreKey; + + /** + * @var string[] + */ + protected $storeKeysStack = []; + + /** + * @var bool[] + */ + protected $conditionMap = []; + + /** + * @var bool[] + */ + protected $thenMap = []; + + /** + * @var bool[] + */ + protected $elseMap = []; + + /** + * @var int[] + */ + protected $braceDepthMap = []; + + /** + * @var null|string + */ + protected $currentCondition; + + /** + * @var null|string + */ + protected $currentOnlyIf; + + /** + * @var null|string + */ + protected $currentOnlyIfNot; + + /** + * @var null|string + */ + protected $previousStoreKey; + + public function __construct(bool $branchPruningEnabled) + { + $this->branchPruningEnabled = $branchPruningEnabled; + } + + public function clearBranchStore(): void + { + $this->branchStoreKeyCounter = 0; + } + + public function initialiseForLoop(): void + { + $this->currentCondition = null; + $this->currentOnlyIf = null; + $this->currentOnlyIfNot = null; + $this->previousStoreKey = null; + $this->pendingStoreKey = empty($this->storeKeysStack) ? null : end($this->storeKeysStack); + + if ($this->branchPruningEnabled) { + $this->initialiseCondition(); + $this->initialiseThen(); + $this->initialiseElse(); + } + } + + private function initialiseCondition(): void + { + if (isset($this->conditionMap[$this->pendingStoreKey]) && $this->conditionMap[$this->pendingStoreKey]) { + $this->currentCondition = $this->pendingStoreKey; + $stackDepth = count($this->storeKeysStack); + if ($stackDepth > 1) { + // nested if + $this->previousStoreKey = $this->storeKeysStack[$stackDepth - 2]; + } + } + } + + private function initialiseThen(): void + { + if (isset($this->thenMap[$this->pendingStoreKey]) && $this->thenMap[$this->pendingStoreKey]) { + $this->currentOnlyIf = $this->pendingStoreKey; + } elseif ( + isset($this->previousStoreKey, $this->thenMap[$this->previousStoreKey]) + && $this->thenMap[$this->previousStoreKey] + ) { + $this->currentOnlyIf = $this->previousStoreKey; + } + } + + private function initialiseElse(): void + { + if (isset($this->elseMap[$this->pendingStoreKey]) && $this->elseMap[$this->pendingStoreKey]) { + $this->currentOnlyIfNot = $this->pendingStoreKey; + } elseif ( + isset($this->previousStoreKey, $this->elseMap[$this->previousStoreKey]) + && $this->elseMap[$this->previousStoreKey] + ) { + $this->currentOnlyIfNot = $this->previousStoreKey; + } + } + + public function decrementDepth(): void + { + if (!empty($this->pendingStoreKey)) { + --$this->braceDepthMap[$this->pendingStoreKey]; + } + } + + public function incrementDepth(): void + { + if (!empty($this->pendingStoreKey)) { + ++$this->braceDepthMap[$this->pendingStoreKey]; + } + } + + public function functionCall(string $functionName): void + { + if ($this->branchPruningEnabled && ($functionName === 'IF(')) { + // we handle a new if + $this->pendingStoreKey = $this->getUnusedBranchStoreKey(); + $this->storeKeysStack[] = $this->pendingStoreKey; + $this->conditionMap[$this->pendingStoreKey] = true; + $this->braceDepthMap[$this->pendingStoreKey] = 0; + } elseif (!empty($this->pendingStoreKey) && array_key_exists($this->pendingStoreKey, $this->braceDepthMap)) { + // this is not an if but we go deeper + ++$this->braceDepthMap[$this->pendingStoreKey]; + } + } + + public function argumentSeparator(): void + { + if (!empty($this->pendingStoreKey) && $this->braceDepthMap[$this->pendingStoreKey] === 0) { + // We must go to the IF next argument + if ($this->conditionMap[$this->pendingStoreKey]) { + $this->conditionMap[$this->pendingStoreKey] = false; + $this->thenMap[$this->pendingStoreKey] = true; + } elseif ($this->thenMap[$this->pendingStoreKey]) { + $this->thenMap[$this->pendingStoreKey] = false; + $this->elseMap[$this->pendingStoreKey] = true; + } elseif ($this->elseMap[$this->pendingStoreKey]) { + throw new Exception('Reaching fourth argument of an IF'); + } + } + } + + /** + * @param mixed $value + */ + public function closingBrace($value): void + { + if (!empty($this->pendingStoreKey) && $this->braceDepthMap[$this->pendingStoreKey] === -1) { + // we are closing an IF( + if ($value !== 'IF(') { + throw new Exception('Parser bug we should be in an "IF("'); + } + + if ($this->conditionMap[$this->pendingStoreKey]) { + throw new Exception('We should not be expecting a condition'); + } + + $this->thenMap[$this->pendingStoreKey] = false; + $this->elseMap[$this->pendingStoreKey] = false; + --$this->braceDepthMap[$this->pendingStoreKey]; + array_pop($this->storeKeysStack); + $this->pendingStoreKey = null; + } + } + + public function currentCondition(): ?string + { + return $this->currentCondition; + } + + public function currentOnlyIf(): ?string + { + return $this->currentOnlyIf; + } + + public function currentOnlyIfNot(): ?string + { + return $this->currentOnlyIfNot; + } + + private function getUnusedBranchStoreKey(): string + { + $storeKeyValue = 'storeKey-' . $this->branchStoreKeyCounter; + ++$this->branchStoreKeyCounter; + + return $storeKeyValue; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/CyclicReferenceStack.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/CyclicReferenceStack.php new file mode 100644 index 0000000..b688e05 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/CyclicReferenceStack.php @@ -0,0 +1,73 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engine; + +class CyclicReferenceStack +{ + /** + * The call stack for calculated cells. + * + * @var mixed[] + */ + private $stack = []; + + /** + * Return the number of entries on the stack. + * + * @return int + */ + public function count() + { + return count($this->stack); + } + + /** + * Push a new entry onto the stack. + * + * @param mixed $value + */ + public function push($value): void + { + $this->stack[$value] = $value; + } + + /** + * Pop the last entry from the stack. + * + * @return mixed + */ + public function pop() + { + return array_pop($this->stack); + } + + /** + * Test to see if a specified entry exists on the stack. + * + * @param mixed $value The value to test + * + * @return bool + */ + public function onStack($value) + { + return isset($this->stack[$value]); + } + + /** + * Clear the stack. + */ + public function clear(): void + { + $this->stack = []; + } + + /** + * Return an array of all entries on the stack. + * + * @return mixed[] + */ + public function showStack() + { + return $this->stack; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/Logger.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/Logger.php new file mode 100644 index 0000000..c6ee596 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/Logger.php @@ -0,0 +1,142 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engine; + +class Logger +{ + /** + * Flag to determine whether a debug log should be generated by the calculation engine + * If true, then a debug log will be generated + * If false, then a debug log will not be generated. + * + * @var bool + */ + private $writeDebugLog = false; + + /** + * Flag to determine whether a debug log should be echoed by the calculation engine + * If true, then a debug log will be echoed + * If false, then a debug log will not be echoed + * A debug log can only be echoed if it is generated. + * + * @var bool + */ + private $echoDebugLog = false; + + /** + * The debug log generated by the calculation engine. + * + * @var string[] + */ + private $debugLog = []; + + /** + * The calculation engine cell reference stack. + * + * @var CyclicReferenceStack + */ + private $cellStack; + + /** + * Instantiate a Calculation engine logger. + */ + public function __construct(CyclicReferenceStack $stack) + { + $this->cellStack = $stack; + } + + /** + * Enable/Disable Calculation engine logging. + * + * @param bool $writeDebugLog + */ + public function setWriteDebugLog($writeDebugLog): void + { + $this->writeDebugLog = $writeDebugLog; + } + + /** + * Return whether calculation engine logging is enabled or disabled. + * + * @return bool + */ + public function getWriteDebugLog() + { + return $this->writeDebugLog; + } + + /** + * Enable/Disable echoing of debug log information. + * + * @param bool $echoDebugLog + */ + public function setEchoDebugLog($echoDebugLog): void + { + $this->echoDebugLog = $echoDebugLog; + } + + /** + * Return whether echoing of debug log information is enabled or disabled. + * + * @return bool + */ + public function getEchoDebugLog() + { + return $this->echoDebugLog; + } + + /** + * Write an entry to the calculation engine debug log. + * + * @param mixed $args + */ + public function writeDebugLog(string $message, ...$args): void + { + // Only write the debug log if logging is enabled + if ($this->writeDebugLog) { + $message = sprintf($message, ...$args); + $cellReference = implode(' -> ', $this->cellStack->showStack()); + if ($this->echoDebugLog) { + echo $cellReference, + ($this->cellStack->count() > 0 ? ' => ' : ''), + $message, + PHP_EOL; + } + $this->debugLog[] = $cellReference . + ($this->cellStack->count() > 0 ? ' => ' : '') . + $message; + } + } + + /** + * Write a series of entries to the calculation engine debug log. + * + * @param string[] $args + */ + public function mergeDebugLog(array $args): void + { + if ($this->writeDebugLog) { + foreach ($args as $entry) { + $this->writeDebugLog($entry); + } + } + } + + /** + * Clear the calculation engine debug log. + */ + public function clearLog(): void + { + $this->debugLog = []; + } + + /** + * Return the calculation engine debug log. + * + * @return string[] + */ + public function getLog() + { + return $this->debugLog; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering.php new file mode 100644 index 0000000..d70b32d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering.php @@ -0,0 +1,1446 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +use Complex\Complex; +use PhpOffice\PhpSpreadsheet\Calculation\Engineering\ComplexFunctions; +use PhpOffice\PhpSpreadsheet\Calculation\Engineering\ComplexOperations; + +/** + * @deprecated 1.18.0 + */ +class Engineering +{ + /** + * EULER. + * + * @deprecated 1.18.0 + * @see Use Engineering\Constants\EULER instead + */ + public const EULER = 2.71828182845904523536; + + /** + * parseComplex. + * + * Parses a complex number into its real and imaginary parts, and an I or J suffix + * + * @deprecated 1.12.0 No longer used by internal code. Please use the \Complex\Complex class instead + * + * @param string $complexNumber The complex number + * + * @return mixed[] Indexed on "real", "imaginary" and "suffix" + */ + public static function parseComplex($complexNumber) + { + $complex = new Complex($complexNumber); + + return [ + 'real' => $complex->getReal(), + 'imaginary' => $complex->getImaginary(), + 'suffix' => $complex->getSuffix(), + ]; + } + + /** + * BESSELI. + * + * Returns the modified Bessel function In(x), which is equivalent to the Bessel function evaluated + * for purely imaginary arguments + * + * Excel Function: + * BESSELI(x,ord) + * + * @Deprecated 1.17.0 + * + * @see Use the BESSELI() method in the Engineering\BesselI class instead + * + * @param float $x The value at which to evaluate the function. + * If x is nonnumeric, BESSELI returns the #VALUE! error value. + * @param int $ord The order of the Bessel function. + * If ord is not an integer, it is truncated. + * If $ord is nonnumeric, BESSELI returns the #VALUE! error value. + * If $ord < 0, BESSELI returns the #NUM! error value. + * + * @return array|float|string Result, or a string containing an error + */ + public static function BESSELI($x, $ord) + { + return Engineering\BesselI::BESSELI($x, $ord); + } + + /** + * BESSELJ. + * + * Returns the Bessel function + * + * Excel Function: + * BESSELJ(x,ord) + * + * @Deprecated 1.17.0 + * + * @see Use the BESSELJ() method in the Engineering\BesselJ class instead + * + * @param float $x The value at which to evaluate the function. + * If x is nonnumeric, BESSELJ returns the #VALUE! error value. + * @param int $ord The order of the Bessel function. If n is not an integer, it is truncated. + * If $ord is nonnumeric, BESSELJ returns the #VALUE! error value. + * If $ord < 0, BESSELJ returns the #NUM! error value. + * + * @return array|float|string Result, or a string containing an error + */ + public static function BESSELJ($x, $ord) + { + return Engineering\BesselJ::BESSELJ($x, $ord); + } + + /** + * BESSELK. + * + * Returns the modified Bessel function Kn(x), which is equivalent to the Bessel functions evaluated + * for purely imaginary arguments. + * + * Excel Function: + * BESSELK(x,ord) + * + * @Deprecated 1.17.0 + * + * @see Use the BESSELK() method in the Engineering\BesselK class instead + * + * @param float $x The value at which to evaluate the function. + * If x is nonnumeric, BESSELK returns the #VALUE! error value. + * @param int $ord The order of the Bessel function. If n is not an integer, it is truncated. + * If $ord is nonnumeric, BESSELK returns the #VALUE! error value. + * If $ord < 0, BESSELK returns the #NUM! error value. + * + * @return array|float|string Result, or a string containing an error + */ + public static function BESSELK($x, $ord) + { + return Engineering\BesselK::BESSELK($x, $ord); + } + + /** + * BESSELY. + * + * Returns the Bessel function, which is also called the Weber function or the Neumann function. + * + * Excel Function: + * BESSELY(x,ord) + * + * @Deprecated 1.17.0 + * + * @see Use the BESSELY() method in the Engineering\BesselY class instead + * + * @param float $x The value at which to evaluate the function. + * If x is nonnumeric, BESSELY returns the #VALUE! error value. + * @param int $ord The order of the Bessel function. If n is not an integer, it is truncated. + * If $ord is nonnumeric, BESSELY returns the #VALUE! error value. + * If $ord < 0, BESSELY returns the #NUM! error value. + * + * @return array|float|string Result, or a string containing an error + */ + public static function BESSELY($x, $ord) + { + return Engineering\BesselY::BESSELY($x, $ord); + } + + /** + * BINTODEC. + * + * Return a binary value as decimal. + * + * Excel Function: + * BIN2DEC(x) + * + * @Deprecated 1.17.0 + * + * @see Use the toDecimal() method in the Engineering\ConvertBinary class instead + * + * @param mixed $x The binary number (as a string) that you want to convert. The number + * cannot contain more than 10 characters (10 bits). The most significant + * bit of number is the sign bit. The remaining 9 bits are magnitude bits. + * Negative numbers are represented using two's-complement notation. + * If number is not a valid binary number, or if number contains more than + * 10 characters (10 bits), BIN2DEC returns the #NUM! error value. + * + * @return array|string + */ + public static function BINTODEC($x) + { + return Engineering\ConvertBinary::toDecimal($x); + } + + /** + * BINTOHEX. + * + * Return a binary value as hex. + * + * Excel Function: + * BIN2HEX(x[,places]) + * + * @Deprecated 1.17.0 + * + * @see Use the toHex() method in the Engineering\ConvertBinary class instead + * + * @param mixed $x The binary number (as a string) that you want to convert. The number + * cannot contain more than 10 characters (10 bits). The most significant + * bit of number is the sign bit. The remaining 9 bits are magnitude bits. + * Negative numbers are represented using two's-complement notation. + * If number is not a valid binary number, or if number contains more than + * 10 characters (10 bits), BIN2HEX returns the #NUM! error value. + * @param mixed $places The number of characters to use. If places is omitted, BIN2HEX uses the + * minimum number of characters necessary. Places is useful for padding the + * return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, BIN2HEX returns the #VALUE! error value. + * If places is negative, BIN2HEX returns the #NUM! error value. + * + * @return array|string + */ + public static function BINTOHEX($x, $places = null) + { + return Engineering\ConvertBinary::toHex($x, $places); + } + + /** + * BINTOOCT. + * + * Return a binary value as octal. + * + * Excel Function: + * BIN2OCT(x[,places]) + * + * @Deprecated 1.17.0 + * + * @see Use the toOctal() method in the Engineering\ConvertBinary class instead + * + * @param mixed $x The binary number (as a string) that you want to convert. The number + * cannot contain more than 10 characters (10 bits). The most significant + * bit of number is the sign bit. The remaining 9 bits are magnitude bits. + * Negative numbers are represented using two's-complement notation. + * If number is not a valid binary number, or if number contains more than + * 10 characters (10 bits), BIN2OCT returns the #NUM! error value. + * @param mixed $places The number of characters to use. If places is omitted, BIN2OCT uses the + * minimum number of characters necessary. Places is useful for padding the + * return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, BIN2OCT returns the #VALUE! error value. + * If places is negative, BIN2OCT returns the #NUM! error value. + * + * @return array|string + */ + public static function BINTOOCT($x, $places = null) + { + return Engineering\ConvertBinary::toOctal($x, $places); + } + + /** + * DECTOBIN. + * + * Return a decimal value as binary. + * + * Excel Function: + * DEC2BIN(x[,places]) + * + * @Deprecated 1.17.0 + * + * @see Use the toBinary() method in the Engineering\ConvertDecimal class instead + * + * @param mixed $x The decimal integer you want to convert. If number is negative, + * valid place values are ignored and DEC2BIN returns a 10-character + * (10-bit) binary number in which the most significant bit is the sign + * bit. The remaining 9 bits are magnitude bits. Negative numbers are + * represented using two's-complement notation. + * If number < -512 or if number > 511, DEC2BIN returns the #NUM! error + * value. + * If number is nonnumeric, DEC2BIN returns the #VALUE! error value. + * If DEC2BIN requires more than places characters, it returns the #NUM! + * error value. + * @param mixed $places The number of characters to use. If places is omitted, DEC2BIN uses + * the minimum number of characters necessary. Places is useful for + * padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, DEC2BIN returns the #VALUE! error value. + * If places is zero or negative, DEC2BIN returns the #NUM! error value. + * + * @return array|string + */ + public static function DECTOBIN($x, $places = null) + { + return Engineering\ConvertDecimal::toBinary($x, $places); + } + + /** + * DECTOHEX. + * + * Return a decimal value as hex. + * + * Excel Function: + * DEC2HEX(x[,places]) + * + * @Deprecated 1.17.0 + * + * @see Use the toHex() method in the Engineering\ConvertDecimal class instead + * + * @param mixed $x The decimal integer you want to convert. If number is negative, + * places is ignored and DEC2HEX returns a 10-character (40-bit) + * hexadecimal number in which the most significant bit is the sign + * bit. The remaining 39 bits are magnitude bits. Negative numbers + * are represented using two's-complement notation. + * If number < -549,755,813,888 or if number > 549,755,813,887, + * DEC2HEX returns the #NUM! error value. + * If number is nonnumeric, DEC2HEX returns the #VALUE! error value. + * If DEC2HEX requires more than places characters, it returns the + * #NUM! error value. + * @param mixed $places The number of characters to use. If places is omitted, DEC2HEX uses + * the minimum number of characters necessary. Places is useful for + * padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, DEC2HEX returns the #VALUE! error value. + * If places is zero or negative, DEC2HEX returns the #NUM! error value. + * + * @return array|string + */ + public static function DECTOHEX($x, $places = null) + { + return Engineering\ConvertDecimal::toHex($x, $places); + } + + /** + * DECTOOCT. + * + * Return an decimal value as octal. + * + * Excel Function: + * DEC2OCT(x[,places]) + * + * @Deprecated 1.17.0 + * + * @see Use the toOctal() method in the Engineering\ConvertDecimal class instead + * + * @param mixed $x The decimal integer you want to convert. If number is negative, + * places is ignored and DEC2OCT returns a 10-character (30-bit) + * octal number in which the most significant bit is the sign bit. + * The remaining 29 bits are magnitude bits. Negative numbers are + * represented using two's-complement notation. + * If number < -536,870,912 or if number > 536,870,911, DEC2OCT + * returns the #NUM! error value. + * If number is nonnumeric, DEC2OCT returns the #VALUE! error value. + * If DEC2OCT requires more than places characters, it returns the + * #NUM! error value. + * @param mixed $places The number of characters to use. If places is omitted, DEC2OCT uses + * the minimum number of characters necessary. Places is useful for + * padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, DEC2OCT returns the #VALUE! error value. + * If places is zero or negative, DEC2OCT returns the #NUM! error value. + * + * @return array|string + */ + public static function DECTOOCT($x, $places = null) + { + return Engineering\ConvertDecimal::toOctal($x, $places); + } + + /** + * HEXTOBIN. + * + * Return a hex value as binary. + * + * Excel Function: + * HEX2BIN(x[,places]) + * + * @Deprecated 1.17.0 + * + * @see Use the toBinary() method in the Engineering\ConvertHex class instead + * + * @param mixed $x the hexadecimal number (as a string) that you want to convert. + * Number cannot contain more than 10 characters. + * The most significant bit of number is the sign bit (40th bit from the right). + * The remaining 9 bits are magnitude bits. + * Negative numbers are represented using two's-complement notation. + * If number is negative, HEX2BIN ignores places and returns a 10-character binary number. + * If number is negative, it cannot be less than FFFFFFFE00, + * and if number is positive, it cannot be greater than 1FF. + * If number is not a valid hexadecimal number, HEX2BIN returns the #NUM! error value. + * If HEX2BIN requires more than places characters, it returns the #NUM! error value. + * @param mixed $places The number of characters to use. If places is omitted, + * HEX2BIN uses the minimum number of characters necessary. Places + * is useful for padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, HEX2BIN returns the #VALUE! error value. + * If places is negative, HEX2BIN returns the #NUM! error value. + * + * @return array|string + */ + public static function HEXTOBIN($x, $places = null) + { + return Engineering\ConvertHex::toBinary($x, $places); + } + + /** + * HEXTODEC. + * + * Return a hex value as decimal. + * + * Excel Function: + * HEX2DEC(x) + * + * @Deprecated 1.17.0 + * + * @see Use the toDecimal() method in the Engineering\ConvertHex class instead + * + * @param mixed $x The hexadecimal number (as a string) that you want to convert. This number cannot + * contain more than 10 characters (40 bits). The most significant + * bit of number is the sign bit. The remaining 39 bits are magnitude + * bits. Negative numbers are represented using two's-complement + * notation. + * If number is not a valid hexadecimal number, HEX2DEC returns the + * #NUM! error value. + * + * @return array|string + */ + public static function HEXTODEC($x) + { + return Engineering\ConvertHex::toDecimal($x); + } + + /** + * HEXTOOCT. + * + * Return a hex value as octal. + * + * Excel Function: + * HEX2OCT(x[,places]) + * + * @Deprecated 1.17.0 + * + * @see Use the toOctal() method in the Engineering\ConvertHex class instead + * + * @param mixed $x The hexadecimal number (as a string) that you want to convert. Number cannot + * contain more than 10 characters. The most significant bit of + * number is the sign bit. The remaining 39 bits are magnitude + * bits. Negative numbers are represented using two's-complement + * notation. + * If number is negative, HEX2OCT ignores places and returns a + * 10-character octal number. + * If number is negative, it cannot be less than FFE0000000, and + * if number is positive, it cannot be greater than 1FFFFFFF. + * If number is not a valid hexadecimal number, HEX2OCT returns + * the #NUM! error value. + * If HEX2OCT requires more than places characters, it returns + * the #NUM! error value. + * @param mixed $places The number of characters to use. If places is omitted, HEX2OCT + * uses the minimum number of characters necessary. Places is + * useful for padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, HEX2OCT returns the #VALUE! error + * value. + * If places is negative, HEX2OCT returns the #NUM! error value. + * + * @return array|string + */ + public static function HEXTOOCT($x, $places = null) + { + return Engineering\ConvertHex::toOctal($x, $places); + } + + /** + * OCTTOBIN. + * + * Return an octal value as binary. + * + * Excel Function: + * OCT2BIN(x[,places]) + * + * @Deprecated 1.17.0 + * + * @see Use the toBinary() method in the Engineering\ConvertOctal class instead + * + * @param mixed $x The octal number you want to convert. Number may not + * contain more than 10 characters. The most significant + * bit of number is the sign bit. The remaining 29 bits + * are magnitude bits. Negative numbers are represented + * using two's-complement notation. + * If number is negative, OCT2BIN ignores places and returns + * a 10-character binary number. + * If number is negative, it cannot be less than 7777777000, + * and if number is positive, it cannot be greater than 777. + * If number is not a valid octal number, OCT2BIN returns + * the #NUM! error value. + * If OCT2BIN requires more than places characters, it + * returns the #NUM! error value. + * @param mixed $places The number of characters to use. If places is omitted, + * OCT2BIN uses the minimum number of characters necessary. + * Places is useful for padding the return value with + * leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, OCT2BIN returns the #VALUE! + * error value. + * If places is negative, OCT2BIN returns the #NUM! error + * value. + * + * @return array|string + */ + public static function OCTTOBIN($x, $places = null) + { + return Engineering\ConvertOctal::toBinary($x, $places); + } + + /** + * OCTTODEC. + * + * Return an octal value as decimal. + * + * Excel Function: + * OCT2DEC(x) + * + * @Deprecated 1.17.0 + * + * @see Use the toDecimal() method in the Engineering\ConvertOctal class instead + * + * @param mixed $x The octal number you want to convert. Number may not contain + * more than 10 octal characters (30 bits). The most significant + * bit of number is the sign bit. The remaining 29 bits are + * magnitude bits. Negative numbers are represented using + * two's-complement notation. + * If number is not a valid octal number, OCT2DEC returns the + * #NUM! error value. + * + * @return array|string + */ + public static function OCTTODEC($x) + { + return Engineering\ConvertOctal::toDecimal($x); + } + + /** + * OCTTOHEX. + * + * Return an octal value as hex. + * + * Excel Function: + * OCT2HEX(x[,places]) + * + * @Deprecated 1.17.0 + * + * @see Use the toHex() method in the Engineering\ConvertOctal class instead + * + * @param mixed $x The octal number you want to convert. Number may not contain + * more than 10 octal characters (30 bits). The most significant + * bit of number is the sign bit. The remaining 29 bits are + * magnitude bits. Negative numbers are represented using + * two's-complement notation. + * If number is negative, OCT2HEX ignores places and returns a + * 10-character hexadecimal number. + * If number is not a valid octal number, OCT2HEX returns the + * #NUM! error value. + * If OCT2HEX requires more than places characters, it returns + * the #NUM! error value. + * @param mixed $places The number of characters to use. If places is omitted, OCT2HEX + * uses the minimum number of characters necessary. Places is useful + * for padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, OCT2HEX returns the #VALUE! error value. + * If places is negative, OCT2HEX returns the #NUM! error value. + * + * @return array|string + */ + public static function OCTTOHEX($x, $places = null) + { + return Engineering\ConvertOctal::toHex($x, $places); + } + + /** + * COMPLEX. + * + * Converts real and imaginary coefficients into a complex number of the form x +/- yi or x +/- yj. + * + * Excel Function: + * COMPLEX(realNumber,imaginary[,suffix]) + * + * @Deprecated 1.18.0 + * + * @see Use the COMPLEX() method in the Engineering\Complex class instead + * + * @param array|float $realNumber the real coefficient of the complex number + * @param array|float $imaginary the imaginary coefficient of the complex number + * @param array|string $suffix The suffix for the imaginary component of the complex number. + * If omitted, the suffix is assumed to be "i". + * + * @return array|string + */ + public static function COMPLEX($realNumber = 0.0, $imaginary = 0.0, $suffix = 'i') + { + return Engineering\Complex::COMPLEX($realNumber, $imaginary, $suffix); + } + + /** + * IMAGINARY. + * + * Returns the imaginary coefficient of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMAGINARY(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMAGINARY() method in the Engineering\Complex class instead + * + * @param string $complexNumber the complex number for which you want the imaginary + * coefficient + * + * @return array|float|string + */ + public static function IMAGINARY($complexNumber) + { + return Engineering\Complex::IMAGINARY($complexNumber); + } + + /** + * IMREAL. + * + * Returns the real coefficient of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMREAL(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMREAL() method in the Engineering\Complex class instead + * + * @param string $complexNumber the complex number for which you want the real coefficient + * + * @return array|float|string + */ + public static function IMREAL($complexNumber) + { + return Engineering\Complex::IMREAL($complexNumber); + } + + /** + * IMABS. + * + * Returns the absolute value (modulus) of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMABS(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMABS() method in the Engineering\ComplexFunctions class instead + * + * @param string $complexNumber the complex number for which you want the absolute value + * + * @return array|float|string + */ + public static function IMABS($complexNumber) + { + return ComplexFunctions::IMABS($complexNumber); + } + + /** + * IMARGUMENT. + * + * Returns the argument theta of a complex number, i.e. the angle in radians from the real + * axis to the representation of the number in polar coordinates. + * + * Excel Function: + * IMARGUMENT(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMARGUMENT() method in the Engineering\ComplexFunctions class instead + * + * @param array|string $complexNumber the complex number for which you want the argument theta + * + * @return array|float|string + */ + public static function IMARGUMENT($complexNumber) + { + return ComplexFunctions::IMARGUMENT($complexNumber); + } + + /** + * IMCONJUGATE. + * + * Returns the complex conjugate of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMCONJUGATE(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMARGUMENT() method in the Engineering\ComplexFunctions class instead + * + * @param array|string $complexNumber the complex number for which you want the conjugate + * + * @return array|string + */ + public static function IMCONJUGATE($complexNumber) + { + return ComplexFunctions::IMCONJUGATE($complexNumber); + } + + /** + * IMCOS. + * + * Returns the cosine of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMCOS(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMCOS() method in the Engineering\ComplexFunctions class instead + * + * @param array|string $complexNumber the complex number for which you want the cosine + * + * @return array|float|string + */ + public static function IMCOS($complexNumber) + { + return ComplexFunctions::IMCOS($complexNumber); + } + + /** + * IMCOSH. + * + * Returns the hyperbolic cosine of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMCOSH(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMCOSH() method in the Engineering\ComplexFunctions class instead + * + * @param array|string $complexNumber the complex number for which you want the hyperbolic cosine + * + * @return array|float|string + */ + public static function IMCOSH($complexNumber) + { + return ComplexFunctions::IMCOSH($complexNumber); + } + + /** + * IMCOT. + * + * Returns the cotangent of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMCOT(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMCOT() method in the Engineering\ComplexFunctions class instead + * + * @param array|string $complexNumber the complex number for which you want the cotangent + * + * @return array|float|string + */ + public static function IMCOT($complexNumber) + { + return ComplexFunctions::IMCOT($complexNumber); + } + + /** + * IMCSC. + * + * Returns the cosecant of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMCSC(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMCSC() method in the Engineering\ComplexFunctions class instead + * + * @param array|string $complexNumber the complex number for which you want the cosecant + * + * @return array|float|string + */ + public static function IMCSC($complexNumber) + { + return ComplexFunctions::IMCSC($complexNumber); + } + + /** + * IMCSCH. + * + * Returns the hyperbolic cosecant of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMCSCH(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMCSCH() method in the Engineering\ComplexFunctions class instead + * + * @param array|string $complexNumber the complex number for which you want the hyperbolic cosecant + * + * @return array|float|string + */ + public static function IMCSCH($complexNumber) + { + return ComplexFunctions::IMCSCH($complexNumber); + } + + /** + * IMSIN. + * + * Returns the sine of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMSIN(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMSIN() method in the Engineering\ComplexFunctions class instead + * + * @param string $complexNumber the complex number for which you want the sine + * + * @return array|float|string + */ + public static function IMSIN($complexNumber) + { + return ComplexFunctions::IMSIN($complexNumber); + } + + /** + * IMSINH. + * + * Returns the hyperbolic sine of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMSINH(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMSINH() method in the Engineering\ComplexFunctions class instead + * + * @param string $complexNumber the complex number for which you want the hyperbolic sine + * + * @return array|float|string + */ + public static function IMSINH($complexNumber) + { + return ComplexFunctions::IMSINH($complexNumber); + } + + /** + * IMSEC. + * + * Returns the secant of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMSEC(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMSEC() method in the Engineering\ComplexFunctions class instead + * + * @param string $complexNumber the complex number for which you want the secant + * + * @return array|float|string + */ + public static function IMSEC($complexNumber) + { + return ComplexFunctions::IMSEC($complexNumber); + } + + /** + * IMSECH. + * + * Returns the hyperbolic secant of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMSECH(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMSECH() method in the Engineering\ComplexFunctions class instead + * + * @param string $complexNumber the complex number for which you want the hyperbolic secant + * + * @return array|float|string + */ + public static function IMSECH($complexNumber) + { + return ComplexFunctions::IMSECH($complexNumber); + } + + /** + * IMTAN. + * + * Returns the tangent of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMTAN(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMTAN() method in the Engineering\ComplexFunctions class instead + * + * @param string $complexNumber the complex number for which you want the tangent + * + * @return array|float|string + */ + public static function IMTAN($complexNumber) + { + return ComplexFunctions::IMTAN($complexNumber); + } + + /** + * IMSQRT. + * + * Returns the square root of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMSQRT(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMSQRT() method in the Engineering\ComplexFunctions class instead + * + * @param string $complexNumber the complex number for which you want the square root + * + * @return array|string + */ + public static function IMSQRT($complexNumber) + { + return ComplexFunctions::IMSQRT($complexNumber); + } + + /** + * IMLN. + * + * Returns the natural logarithm of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMLN(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMLN() method in the Engineering\ComplexFunctions class instead + * + * @param string $complexNumber the complex number for which you want the natural logarithm + * + * @return array|string + */ + public static function IMLN($complexNumber) + { + return ComplexFunctions::IMLN($complexNumber); + } + + /** + * IMLOG10. + * + * Returns the common logarithm (base 10) of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMLOG10(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMLOG10() method in the Engineering\ComplexFunctions class instead + * + * @param string $complexNumber the complex number for which you want the common logarithm + * + * @return array|string + */ + public static function IMLOG10($complexNumber) + { + return ComplexFunctions::IMLOG10($complexNumber); + } + + /** + * IMLOG2. + * + * Returns the base-2 logarithm of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMLOG2(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMLOG2() method in the Engineering\ComplexFunctions class instead + * + * @param string $complexNumber the complex number for which you want the base-2 logarithm + * + * @return array|string + */ + public static function IMLOG2($complexNumber) + { + return ComplexFunctions::IMLOG2($complexNumber); + } + + /** + * IMEXP. + * + * Returns the exponential of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMEXP(complexNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMEXP() method in the Engineering\ComplexFunctions class instead + * + * @param string $complexNumber the complex number for which you want the exponential + * + * @return array|string + */ + public static function IMEXP($complexNumber) + { + return ComplexFunctions::IMEXP($complexNumber); + } + + /** + * IMPOWER. + * + * Returns a complex number in x + yi or x + yj text format raised to a power. + * + * Excel Function: + * IMPOWER(complexNumber,realNumber) + * + * @Deprecated 1.18.0 + * + * @see Use the IMPOWER() method in the Engineering\ComplexFunctions class instead + * + * @param string $complexNumber the complex number you want to raise to a power + * @param float $realNumber the power to which you want to raise the complex number + * + * @return array|string + */ + public static function IMPOWER($complexNumber, $realNumber) + { + return ComplexFunctions::IMPOWER($complexNumber, $realNumber); + } + + /** + * IMDIV. + * + * Returns the quotient of two complex numbers in x + yi or x + yj text format. + * + * Excel Function: + * IMDIV(complexDividend,complexDivisor) + * + * @Deprecated 1.18.0 + * + * @see Use the IMDIV() method in the Engineering\ComplexOperations class instead + * + * @param string $complexDividend the complex numerator or dividend + * @param string $complexDivisor the complex denominator or divisor + * + * @return array|string + */ + public static function IMDIV($complexDividend, $complexDivisor) + { + return ComplexOperations::IMDIV($complexDividend, $complexDivisor); + } + + /** + * IMSUB. + * + * Returns the difference of two complex numbers in x + yi or x + yj text format. + * + * Excel Function: + * IMSUB(complexNumber1,complexNumber2) + * + * @Deprecated 1.18.0 + * + * @see Use the IMSUB() method in the Engineering\ComplexOperations class instead + * + * @param string $complexNumber1 the complex number from which to subtract complexNumber2 + * @param string $complexNumber2 the complex number to subtract from complexNumber1 + * + * @return array|string + */ + public static function IMSUB($complexNumber1, $complexNumber2) + { + return ComplexOperations::IMSUB($complexNumber1, $complexNumber2); + } + + /** + * IMSUM. + * + * Returns the sum of two or more complex numbers in x + yi or x + yj text format. + * + * Excel Function: + * IMSUM(complexNumber[,complexNumber[,...]]) + * + * @Deprecated 1.18.0 + * + * @see Use the IMSUM() method in the Engineering\ComplexOperations class instead + * + * @param string ...$complexNumbers Series of complex numbers to add + * + * @return string + */ + public static function IMSUM(...$complexNumbers) + { + return ComplexOperations::IMSUM(...$complexNumbers); + } + + /** + * IMPRODUCT. + * + * Returns the product of two or more complex numbers in x + yi or x + yj text format. + * + * Excel Function: + * IMPRODUCT(complexNumber[,complexNumber[,...]]) + * + * @Deprecated 1.18.0 + * + * @see Use the IMPRODUCT() method in the Engineering\ComplexOperations class instead + * + * @param string ...$complexNumbers Series of complex numbers to multiply + * + * @return string + */ + public static function IMPRODUCT(...$complexNumbers) + { + return ComplexOperations::IMPRODUCT(...$complexNumbers); + } + + /** + * DELTA. + * + * Tests whether two values are equal. Returns 1 if number1 = number2; returns 0 otherwise. + * Use this function to filter a set of values. For example, by summing several DELTA + * functions you calculate the count of equal pairs. This function is also known as the + * Kronecker Delta function. + * + * Excel Function: + * DELTA(a[,b]) + * + * @Deprecated 1.17.0 + * + * @see Use the DELTA() method in the Engineering\Compare class instead + * + * @param float $a the first number + * @param float $b The second number. If omitted, b is assumed to be zero. + * + * @return array|int|string (string in the event of an error) + */ + public static function DELTA($a, $b = 0) + { + return Engineering\Compare::DELTA($a, $b); + } + + /** + * GESTEP. + * + * Excel Function: + * GESTEP(number[,step]) + * + * Returns 1 if number >= step; returns 0 (zero) otherwise + * Use this function to filter a set of values. For example, by summing several GESTEP + * functions you calculate the count of values that exceed a threshold. + * + * @Deprecated 1.17.0 + * + * @see Use the GESTEP() method in the Engineering\Compare class instead + * + * @param float $number the value to test against step + * @param float $step The threshold value. If you omit a value for step, GESTEP uses zero. + * + * @return array|int|string (string in the event of an error) + */ + public static function GESTEP($number, $step = 0) + { + return Engineering\Compare::GESTEP($number, $step); + } + + /** + * BITAND. + * + * Returns the bitwise AND of two integer values. + * + * Excel Function: + * BITAND(number1, number2) + * + * @Deprecated 1.17.0 + * + * @see Use the BITAND() method in the Engineering\BitWise class instead + * + * @param int $number1 + * @param int $number2 + * + * @return array|int|string + */ + public static function BITAND($number1, $number2) + { + return Engineering\BitWise::BITAND($number1, $number2); + } + + /** + * BITOR. + * + * Returns the bitwise OR of two integer values. + * + * Excel Function: + * BITOR(number1, number2) + * + * @Deprecated 1.17.0 + * + * @see Use the BITOR() method in the Engineering\BitWise class instead + * + * @param int $number1 + * @param int $number2 + * + * @return array|int|string + */ + public static function BITOR($number1, $number2) + { + return Engineering\BitWise::BITOR($number1, $number2); + } + + /** + * BITXOR. + * + * Returns the bitwise XOR of two integer values. + * + * Excel Function: + * BITXOR(number1, number2) + * + * @Deprecated 1.17.0 + * + * @see Use the BITXOR() method in the Engineering\BitWise class instead + * + * @param int $number1 + * @param int $number2 + * + * @return array|int|string + */ + public static function BITXOR($number1, $number2) + { + return Engineering\BitWise::BITXOR($number1, $number2); + } + + /** + * BITLSHIFT. + * + * Returns the number value shifted left by shift_amount bits. + * + * Excel Function: + * BITLSHIFT(number, shift_amount) + * + * @Deprecated 1.17.0 + * + * @see Use the BITLSHIFT() method in the Engineering\BitWise class instead + * + * @param int $number + * @param int $shiftAmount + * + * @return array|float|int|string + */ + public static function BITLSHIFT($number, $shiftAmount) + { + return Engineering\BitWise::BITLSHIFT($number, $shiftAmount); + } + + /** + * BITRSHIFT. + * + * Returns the number value shifted right by shift_amount bits. + * + * Excel Function: + * BITRSHIFT(number, shift_amount) + * + * @Deprecated 1.17.0 + * + * @see Use the BITRSHIFT() method in the Engineering\BitWise class instead + * + * @param int $number + * @param int $shiftAmount + * + * @return array|float|int|string + */ + public static function BITRSHIFT($number, $shiftAmount) + { + return Engineering\BitWise::BITRSHIFT($number, $shiftAmount); + } + + /** + * ERF. + * + * Returns the error function integrated between the lower and upper bound arguments. + * + * Note: In Excel 2007 or earlier, if you input a negative value for the upper or lower bound arguments, + * the function would return a #NUM! error. However, in Excel 2010, the function algorithm was + * improved, so that it can now calculate the function for both positive and negative ranges. + * PhpSpreadsheet follows Excel 2010 behaviour, and accepts negative arguments. + * + * Excel Function: + * ERF(lower[,upper]) + * + * @Deprecated 1.17.0 + * + * @see Use the ERF() method in the Engineering\Erf class instead + * + * @param float $lower lower bound for integrating ERF + * @param float $upper upper bound for integrating ERF. + * If omitted, ERF integrates between zero and lower_limit + * + * @return array|float|string + */ + public static function ERF($lower, $upper = null) + { + return Engineering\Erf::ERF($lower, $upper); + } + + /** + * ERFPRECISE. + * + * Returns the error function integrated between the lower and upper bound arguments. + * + * Excel Function: + * ERF.PRECISE(limit) + * + * @Deprecated 1.17.0 + * + * @see Use the ERFPRECISE() method in the Engineering\Erf class instead + * + * @param float $limit bound for integrating ERF + * + * @return array|float|string + */ + public static function ERFPRECISE($limit) + { + return Engineering\Erf::ERFPRECISE($limit); + } + + /** + * ERFC. + * + * Returns the complementary ERF function integrated between x and infinity + * + * Note: In Excel 2007 or earlier, if you input a negative value for the lower bound argument, + * the function would return a #NUM! error. However, in Excel 2010, the function algorithm was + * improved, so that it can now calculate the function for both positive and negative x values. + * PhpSpreadsheet follows Excel 2010 behaviour, and accepts nagative arguments. + * + * Excel Function: + * ERFC(x) + * + * @Deprecated 1.17.0 + * + * @see Use the ERFC() method in the Engineering\ErfC class instead + * + * @param float $x The lower bound for integrating ERFC + * + * @return array|float|string + */ + public static function ERFC($x) + { + return Engineering\ErfC::ERFC($x); + } + + /** + * getConversionGroups + * Returns a list of the different conversion groups for UOM conversions. + * + * @Deprecated 1.16.0 + * + * @see Use the getConversionCategories() method in the Engineering\ConvertUOM class instead + * + * @return array + */ + public static function getConversionGroups() + { + return Engineering\ConvertUOM::getConversionCategories(); + } + + /** + * getConversionGroupUnits + * Returns an array of units of measure, for a specified conversion group, or for all groups. + * + * @Deprecated 1.16.0 + * + * @see Use the getConversionCategoryUnits() method in the ConvertUOM class instead + * + * @param null|mixed $category + * + * @return array + */ + public static function getConversionGroupUnits($category = null) + { + return Engineering\ConvertUOM::getConversionCategoryUnits($category); + } + + /** + * getConversionGroupUnitDetails. + * + * @Deprecated 1.16.0 + * + * @see Use the getConversionCategoryUnitDetails() method in the ConvertUOM class instead + * + * @param null|mixed $category + * + * @return array + */ + public static function getConversionGroupUnitDetails($category = null) + { + return Engineering\ConvertUOM::getConversionCategoryUnitDetails($category); + } + + /** + * getConversionMultipliers + * Returns an array of the Multiplier prefixes that can be used with Units of Measure in CONVERTUOM(). + * + * @Deprecated 1.16.0 + * + * @see Use the getConversionMultipliers() method in the ConvertUOM class instead + * + * @return mixed[] + */ + public static function getConversionMultipliers() + { + return Engineering\ConvertUOM::getConversionMultipliers(); + } + + /** + * getBinaryConversionMultipliers. + * + * Returns an array of the additional Multiplier prefixes that can be used with Information Units of Measure + * in CONVERTUOM(). + * + * @Deprecated 1.16.0 + * + * @see Use the getBinaryConversionMultipliers() method in the ConvertUOM class instead + * + * @return mixed[] + */ + public static function getBinaryConversionMultipliers() + { + return Engineering\ConvertUOM::getBinaryConversionMultipliers(); + } + + /** + * CONVERTUOM. + * + * Converts a number from one measurement system to another. + * For example, CONVERT can translate a table of distances in miles to a table of distances + * in kilometers. + * + * Excel Function: + * CONVERT(value,fromUOM,toUOM) + * + * @Deprecated 1.16.0 + * + * @see Use the CONVERT() method in the ConvertUOM class instead + * + * @param float|int $value the value in fromUOM to convert + * @param string $fromUOM the units for value + * @param string $toUOM the units for the result + * + * @return array|float|string + */ + public static function CONVERTUOM($value, $fromUOM, $toUOM) + { + return Engineering\ConvertUOM::CONVERT($value, $fromUOM, $toUOM); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselI.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselI.php new file mode 100644 index 0000000..2afb52b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselI.php @@ -0,0 +1,145 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class BesselI +{ + use ArrayEnabled; + + /** + * BESSELI. + * + * Returns the modified Bessel function In(x), which is equivalent to the Bessel function evaluated + * for purely imaginary arguments + * + * Excel Function: + * BESSELI(x,ord) + * + * NOTE: The MS Excel implementation of the BESSELI function is still not accurate. + * This code provides a more accurate calculation + * + * @param mixed $x A float value at which to evaluate the function. + * If x is nonnumeric, BESSELI returns the #VALUE! error value. + * Or can be an array of values + * @param mixed $ord The integer order of the Bessel function. + * If ord is not an integer, it is truncated. + * If $ord is nonnumeric, BESSELI returns the #VALUE! error value. + * If $ord < 0, BESSELI returns the #NUM! error value. + * Or can be an array of values + * + * @return array|float|string Result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function BESSELI($x, $ord) + { + if (is_array($x) || is_array($ord)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $x, $ord); + } + + try { + $x = EngineeringValidations::validateFloat($x); + $ord = EngineeringValidations::validateInt($ord); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($ord < 0) { + return ExcelError::NAN(); + } + + $fResult = self::calculate($x, $ord); + + return (is_nan($fResult)) ? ExcelError::NAN() : $fResult; + } + + private static function calculate(float $x, int $ord): float + { + // special cases + switch ($ord) { + case 0: + return self::besselI0($x); + case 1: + return self::besselI1($x); + } + + return self::besselI2($x, $ord); + } + + private static function besselI0(float $x): float + { + $ax = abs($x); + + if ($ax < 3.75) { + $y = $x / 3.75; + $y = $y * $y; + + return 1.0 + $y * (3.5156229 + $y * (3.0899424 + $y * (1.2067492 + + $y * (0.2659732 + $y * (0.360768e-1 + $y * 0.45813e-2))))); + } + + $y = 3.75 / $ax; + + return (exp($ax) / sqrt($ax)) * (0.39894228 + $y * (0.1328592e-1 + $y * (0.225319e-2 + $y * (-0.157565e-2 + + $y * (0.916281e-2 + $y * (-0.2057706e-1 + $y * (0.2635537e-1 + + $y * (-0.1647633e-1 + $y * 0.392377e-2)))))))); + } + + private static function besselI1(float $x): float + { + $ax = abs($x); + + if ($ax < 3.75) { + $y = $x / 3.75; + $y = $y * $y; + $ans = $ax * (0.5 + $y * (0.87890594 + $y * (0.51498869 + $y * (0.15084934 + $y * (0.2658733e-1 + + $y * (0.301532e-2 + $y * 0.32411e-3)))))); + + return ($x < 0.0) ? -$ans : $ans; + } + + $y = 3.75 / $ax; + $ans = 0.2282967e-1 + $y * (-0.2895312e-1 + $y * (0.1787654e-1 - $y * 0.420059e-2)); + $ans = 0.39894228 + $y * (-0.3988024e-1 + $y * (-0.362018e-2 + $y * (0.163801e-2 + + $y * (-0.1031555e-1 + $y * $ans)))); + $ans *= exp($ax) / sqrt($ax); + + return ($x < 0.0) ? -$ans : $ans; + } + + private static function besselI2(float $x, int $ord): float + { + if ($x === 0.0) { + return 0.0; + } + + $tox = 2.0 / abs($x); + $bip = 0; + $ans = 0.0; + $bi = 1.0; + + for ($j = 2 * ($ord + (int) sqrt(40.0 * $ord)); $j > 0; --$j) { + $bim = $bip + $j * $tox * $bi; + $bip = $bi; + $bi = $bim; + + if (abs($bi) > 1.0e+12) { + $ans *= 1.0e-12; + $bi *= 1.0e-12; + $bip *= 1.0e-12; + } + + if ($j === $ord) { + $ans = $bip; + } + } + + $ans *= self::besselI0($x) / $bi; + + return ($x < 0.0 && (($ord % 2) === 1)) ? -$ans : $ans; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselJ.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselJ.php new file mode 100644 index 0000000..e23b015 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselJ.php @@ -0,0 +1,180 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class BesselJ +{ + use ArrayEnabled; + + /** + * BESSELJ. + * + * Returns the Bessel function + * + * Excel Function: + * BESSELJ(x,ord) + * + * NOTE: The MS Excel implementation of the BESSELJ function is still not accurate, particularly for higher order + * values with x < -8 and x > 8. This code provides a more accurate calculation + * + * @param mixed $x A float value at which to evaluate the function. + * If x is nonnumeric, BESSELJ returns the #VALUE! error value. + * Or can be an array of values + * @param mixed $ord The integer order of the Bessel function. + * If ord is not an integer, it is truncated. + * If $ord is nonnumeric, BESSELJ returns the #VALUE! error value. + * If $ord < 0, BESSELJ returns the #NUM! error value. + * Or can be an array of values + * + * @return array|float|string Result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function BESSELJ($x, $ord) + { + if (is_array($x) || is_array($ord)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $x, $ord); + } + + try { + $x = EngineeringValidations::validateFloat($x); + $ord = EngineeringValidations::validateInt($ord); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($ord < 0) { + return ExcelError::NAN(); + } + + $fResult = self::calculate($x, $ord); + + return (is_nan($fResult)) ? ExcelError::NAN() : $fResult; + } + + private static function calculate(float $x, int $ord): float + { + // special cases + switch ($ord) { + case 0: + return self::besselJ0($x); + case 1: + return self::besselJ1($x); + } + + return self::besselJ2($x, $ord); + } + + private static function besselJ0(float $x): float + { + $ax = abs($x); + + if ($ax < 8.0) { + $y = $x * $x; + $ans1 = 57568490574.0 + $y * (-13362590354.0 + $y * (651619640.7 + $y * (-11214424.18 + $y * + (77392.33017 + $y * (-184.9052456))))); + $ans2 = 57568490411.0 + $y * (1029532985.0 + $y * (9494680.718 + $y * (59272.64853 + $y * + (267.8532712 + $y * 1.0)))); + + return $ans1 / $ans2; + } + + $z = 8.0 / $ax; + $y = $z * $z; + $xx = $ax - 0.785398164; + $ans1 = 1.0 + $y * (-0.1098628627e-2 + $y * (0.2734510407e-4 + $y * (-0.2073370639e-5 + $y * 0.2093887211e-6))); + $ans2 = -0.1562499995e-1 + $y * (0.1430488765e-3 + $y * (-0.6911147651e-5 + $y * + (0.7621095161e-6 - $y * 0.934935152e-7))); + + return sqrt(0.636619772 / $ax) * (cos($xx) * $ans1 - $z * sin($xx) * $ans2); + } + + private static function besselJ1(float $x): float + { + $ax = abs($x); + + if ($ax < 8.0) { + $y = $x * $x; + $ans1 = $x * (72362614232.0 + $y * (-7895059235.0 + $y * (242396853.1 + $y * + (-2972611.439 + $y * (15704.48260 + $y * (-30.16036606)))))); + $ans2 = 144725228442.0 + $y * (2300535178.0 + $y * (18583304.74 + $y * (99447.43394 + $y * + (376.9991397 + $y * 1.0)))); + + return $ans1 / $ans2; + } + + $z = 8.0 / $ax; + $y = $z * $z; + $xx = $ax - 2.356194491; + + $ans1 = 1.0 + $y * (0.183105e-2 + $y * (-0.3516396496e-4 + $y * (0.2457520174e-5 + $y * (-0.240337019e-6)))); + $ans2 = 0.04687499995 + $y * (-0.2002690873e-3 + $y * (0.8449199096e-5 + $y * + (-0.88228987e-6 + $y * 0.105787412e-6))); + $ans = sqrt(0.636619772 / $ax) * (cos($xx) * $ans1 - $z * sin($xx) * $ans2); + + return ($x < 0.0) ? -$ans : $ans; + } + + private static function besselJ2(float $x, int $ord): float + { + $ax = abs($x); + if ($ax === 0.0) { + return 0.0; + } + + if ($ax > $ord) { + return self::besselj2a($ax, $ord, $x); + } + + return self::besselj2b($ax, $ord, $x); + } + + private static function besselj2a(float $ax, int $ord, float $x) + { + $tox = 2.0 / $ax; + $bjm = self::besselJ0($ax); + $bj = self::besselJ1($ax); + for ($j = 1; $j < $ord; ++$j) { + $bjp = $j * $tox * $bj - $bjm; + $bjm = $bj; + $bj = $bjp; + } + $ans = $bj; + + return ($x < 0.0 && ($ord % 2) == 1) ? -$ans : $ans; + } + + private static function besselj2b(float $ax, int $ord, float $x) + { + $tox = 2.0 / $ax; + $jsum = false; + $bjp = $ans = $sum = 0.0; + $bj = 1.0; + for ($j = 2 * ($ord + (int) sqrt(40.0 * $ord)); $j > 0; --$j) { + $bjm = $j * $tox * $bj - $bjp; + $bjp = $bj; + $bj = $bjm; + if (abs($bj) > 1.0e+10) { + $bj *= 1.0e-10; + $bjp *= 1.0e-10; + $ans *= 1.0e-10; + $sum *= 1.0e-10; + } + if ($jsum === true) { + $sum += $bj; + } + $jsum = !$jsum; + if ($j === $ord) { + $ans = $bjp; + } + } + $sum = 2.0 * $sum - $bj; + $ans /= $sum; + + return ($x < 0.0 && ($ord % 2) === 1) ? -$ans : $ans; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselK.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselK.php new file mode 100644 index 0000000..2d21e75 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselK.php @@ -0,0 +1,135 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class BesselK +{ + use ArrayEnabled; + + /** + * BESSELK. + * + * Returns the modified Bessel function Kn(x), which is equivalent to the Bessel functions evaluated + * for purely imaginary arguments. + * + * Excel Function: + * BESSELK(x,ord) + * + * @param mixed $x A float value at which to evaluate the function. + * If x is nonnumeric, BESSELK returns the #VALUE! error value. + * Or can be an array of values + * @param mixed $ord The integer order of the Bessel function. + * If ord is not an integer, it is truncated. + * If $ord is nonnumeric, BESSELK returns the #VALUE! error value. + * If $ord < 0, BESSELKI returns the #NUM! error value. + * Or can be an array of values + * + * @return array|float|string Result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function BESSELK($x, $ord) + { + if (is_array($x) || is_array($ord)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $x, $ord); + } + + try { + $x = EngineeringValidations::validateFloat($x); + $ord = EngineeringValidations::validateInt($ord); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($ord < 0) || ($x <= 0.0)) { + return ExcelError::NAN(); + } + + $fBk = self::calculate($x, $ord); + + return (is_nan($fBk)) ? ExcelError::NAN() : $fBk; + } + + private static function calculate(float $x, int $ord): float + { + // special cases + switch ($ord) { + case 0: + return self::besselK0($x); + case 1: + return self::besselK1($x); + } + + return self::besselK2($x, $ord); + } + + /** + * Mollify Phpstan. + * + * @codeCoverageIgnore + */ + private static function callBesselI(float $x, int $ord): float + { + $rslt = BesselI::BESSELI($x, $ord); + if (!is_float($rslt)) { + throw new Exception('Unexpected array or string'); + } + + return $rslt; + } + + private static function besselK0(float $x): float + { + if ($x <= 2) { + $fNum2 = $x * 0.5; + $y = ($fNum2 * $fNum2); + + return -log($fNum2) * self::callBesselI($x, 0) + + (-0.57721566 + $y * (0.42278420 + $y * (0.23069756 + $y * (0.3488590e-1 + $y * (0.262698e-2 + $y * + (0.10750e-3 + $y * 0.74e-5)))))); + } + + $y = 2 / $x; + + return exp(-$x) / sqrt($x) * + (1.25331414 + $y * (-0.7832358e-1 + $y * (0.2189568e-1 + $y * (-0.1062446e-1 + $y * + (0.587872e-2 + $y * (-0.251540e-2 + $y * 0.53208e-3)))))); + } + + private static function besselK1(float $x): float + { + if ($x <= 2) { + $fNum2 = $x * 0.5; + $y = ($fNum2 * $fNum2); + + return log($fNum2) * self::callBesselI($x, 1) + + (1 + $y * (0.15443144 + $y * (-0.67278579 + $y * (-0.18156897 + $y * (-0.1919402e-1 + $y * + (-0.110404e-2 + $y * (-0.4686e-4))))))) / $x; + } + + $y = 2 / $x; + + return exp(-$x) / sqrt($x) * + (1.25331414 + $y * (0.23498619 + $y * (-0.3655620e-1 + $y * (0.1504268e-1 + $y * (-0.780353e-2 + $y * + (0.325614e-2 + $y * (-0.68245e-3))))))); + } + + private static function besselK2(float $x, int $ord): float + { + $fTox = 2 / $x; + $fBkm = self::besselK0($x); + $fBk = self::besselK1($x); + for ($n = 1; $n < $ord; ++$n) { + $fBkp = $fBkm + $n * $fTox * $fBk; + $fBkm = $fBk; + $fBk = $fBkp; + } + + return $fBk; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselY.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselY.php new file mode 100644 index 0000000..31d9694 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselY.php @@ -0,0 +1,141 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class BesselY +{ + use ArrayEnabled; + + /** + * BESSELY. + * + * Returns the Bessel function, which is also called the Weber function or the Neumann function. + * + * Excel Function: + * BESSELY(x,ord) + * + * @param mixed $x A float value at which to evaluate the function. + * If x is nonnumeric, BESSELY returns the #VALUE! error value. + * Or can be an array of values + * @param mixed $ord The integer order of the Bessel function. + * If ord is not an integer, it is truncated. + * If $ord is nonnumeric, BESSELY returns the #VALUE! error value. + * If $ord < 0, BESSELY returns the #NUM! error value. + * Or can be an array of values + * + * @return array|float|string Result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function BESSELY($x, $ord) + { + if (is_array($x) || is_array($ord)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $x, $ord); + } + + try { + $x = EngineeringValidations::validateFloat($x); + $ord = EngineeringValidations::validateInt($ord); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($ord < 0) || ($x <= 0.0)) { + return ExcelError::NAN(); + } + + $fBy = self::calculate($x, $ord); + + return (is_nan($fBy)) ? ExcelError::NAN() : $fBy; + } + + private static function calculate(float $x, int $ord): float + { + // special cases + switch ($ord) { + case 0: + return self::besselY0($x); + case 1: + return self::besselY1($x); + } + + return self::besselY2($x, $ord); + } + + /** + * Mollify Phpstan. + * + * @codeCoverageIgnore + */ + private static function callBesselJ(float $x, int $ord): float + { + $rslt = BesselJ::BESSELJ($x, $ord); + if (!is_float($rslt)) { + throw new Exception('Unexpected array or string'); + } + + return $rslt; + } + + private static function besselY0(float $x): float + { + if ($x < 8.0) { + $y = ($x * $x); + $ans1 = -2957821389.0 + $y * (7062834065.0 + $y * (-512359803.6 + $y * (10879881.29 + $y * + (-86327.92757 + $y * 228.4622733)))); + $ans2 = 40076544269.0 + $y * (745249964.8 + $y * (7189466.438 + $y * + (47447.26470 + $y * (226.1030244 + $y)))); + + return $ans1 / $ans2 + 0.636619772 * self::callBesselJ($x, 0) * log($x); + } + + $z = 8.0 / $x; + $y = ($z * $z); + $xx = $x - 0.785398164; + $ans1 = 1 + $y * (-0.1098628627e-2 + $y * (0.2734510407e-4 + $y * (-0.2073370639e-5 + $y * 0.2093887211e-6))); + $ans2 = -0.1562499995e-1 + $y * (0.1430488765e-3 + $y * (-0.6911147651e-5 + $y * (0.7621095161e-6 + $y * + (-0.934945152e-7)))); + + return sqrt(0.636619772 / $x) * (sin($xx) * $ans1 + $z * cos($xx) * $ans2); + } + + private static function besselY1(float $x): float + { + if ($x < 8.0) { + $y = ($x * $x); + $ans1 = $x * (-0.4900604943e13 + $y * (0.1275274390e13 + $y * (-0.5153438139e11 + $y * + (0.7349264551e9 + $y * (-0.4237922726e7 + $y * 0.8511937935e4))))); + $ans2 = 0.2499580570e14 + $y * (0.4244419664e12 + $y * (0.3733650367e10 + $y * (0.2245904002e8 + $y * + (0.1020426050e6 + $y * (0.3549632885e3 + $y))))); + + return ($ans1 / $ans2) + 0.636619772 * (self::callBesselJ($x, 1) * log($x) - 1 / $x); + } + + $z = 8.0 / $x; + $y = $z * $z; + $xx = $x - 2.356194491; + $ans1 = 1.0 + $y * (0.183105e-2 + $y * (-0.3516396496e-4 + $y * (0.2457520174e-5 + $y * (-0.240337019e-6)))); + $ans2 = 0.04687499995 + $y * (-0.2002690873e-3 + $y * (0.8449199096e-5 + $y * + (-0.88228987e-6 + $y * 0.105787412e-6))); + + return sqrt(0.636619772 / $x) * (sin($xx) * $ans1 + $z * cos($xx) * $ans2); + } + + private static function besselY2(float $x, int $ord): float + { + $fTox = 2.0 / $x; + $fBym = self::besselY0($x); + $fBy = self::besselY1($x); + for ($n = 1; $n < $ord; ++$n) { + $fByp = $n * $fTox * $fBy - $fBym; + $fBym = $fBy; + $fBy = $fByp; + } + + return $fBy; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BitWise.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BitWise.php new file mode 100644 index 0000000..adeb1b5 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BitWise.php @@ -0,0 +1,275 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class BitWise +{ + use ArrayEnabled; + + const SPLIT_DIVISOR = 2 ** 24; + + /** + * Split a number into upper and lower portions for full 32-bit support. + * + * @param float|int $number + */ + private static function splitNumber($number): array + { + return [floor($number / self::SPLIT_DIVISOR), fmod($number, self::SPLIT_DIVISOR)]; + } + + /** + * BITAND. + * + * Returns the bitwise AND of two integer values. + * + * Excel Function: + * BITAND(number1, number2) + * + * @param array|int $number1 + * Or can be an array of values + * @param array|int $number2 + * Or can be an array of values + * + * @return array|int|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function BITAND($number1, $number2) + { + if (is_array($number1) || is_array($number2)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number1, $number2); + } + + try { + $number1 = self::validateBitwiseArgument($number1); + $number2 = self::validateBitwiseArgument($number2); + } catch (Exception $e) { + return $e->getMessage(); + } + $split1 = self::splitNumber($number1); + $split2 = self::splitNumber($number2); + + return self::SPLIT_DIVISOR * ($split1[0] & $split2[0]) + ($split1[1] & $split2[1]); + } + + /** + * BITOR. + * + * Returns the bitwise OR of two integer values. + * + * Excel Function: + * BITOR(number1, number2) + * + * @param array|int $number1 + * Or can be an array of values + * @param array|int $number2 + * Or can be an array of values + * + * @return array|int|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function BITOR($number1, $number2) + { + if (is_array($number1) || is_array($number2)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number1, $number2); + } + + try { + $number1 = self::validateBitwiseArgument($number1); + $number2 = self::validateBitwiseArgument($number2); + } catch (Exception $e) { + return $e->getMessage(); + } + + $split1 = self::splitNumber($number1); + $split2 = self::splitNumber($number2); + + return self::SPLIT_DIVISOR * ($split1[0] | $split2[0]) + ($split1[1] | $split2[1]); + } + + /** + * BITXOR. + * + * Returns the bitwise XOR of two integer values. + * + * Excel Function: + * BITXOR(number1, number2) + * + * @param array|int $number1 + * Or can be an array of values + * @param array|int $number2 + * Or can be an array of values + * + * @return array|int|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function BITXOR($number1, $number2) + { + if (is_array($number1) || is_array($number2)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number1, $number2); + } + + try { + $number1 = self::validateBitwiseArgument($number1); + $number2 = self::validateBitwiseArgument($number2); + } catch (Exception $e) { + return $e->getMessage(); + } + + $split1 = self::splitNumber($number1); + $split2 = self::splitNumber($number2); + + return self::SPLIT_DIVISOR * ($split1[0] ^ $split2[0]) + ($split1[1] ^ $split2[1]); + } + + /** + * BITLSHIFT. + * + * Returns the number value shifted left by shift_amount bits. + * + * Excel Function: + * BITLSHIFT(number, shift_amount) + * + * @param array|int $number + * Or can be an array of values + * @param array|int $shiftAmount + * Or can be an array of values + * + * @return array|float|int|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function BITLSHIFT($number, $shiftAmount) + { + if (is_array($number) || is_array($shiftAmount)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number, $shiftAmount); + } + + try { + $number = self::validateBitwiseArgument($number); + $shiftAmount = self::validateShiftAmount($shiftAmount); + } catch (Exception $e) { + return $e->getMessage(); + } + + $result = floor($number * (2 ** $shiftAmount)); + if ($result > 2 ** 48 - 1) { + return ExcelError::NAN(); + } + + return $result; + } + + /** + * BITRSHIFT. + * + * Returns the number value shifted right by shift_amount bits. + * + * Excel Function: + * BITRSHIFT(number, shift_amount) + * + * @param array|int $number + * Or can be an array of values + * @param array|int $shiftAmount + * Or can be an array of values + * + * @return array|float|int|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function BITRSHIFT($number, $shiftAmount) + { + if (is_array($number) || is_array($shiftAmount)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number, $shiftAmount); + } + + try { + $number = self::validateBitwiseArgument($number); + $shiftAmount = self::validateShiftAmount($shiftAmount); + } catch (Exception $e) { + return $e->getMessage(); + } + + $result = floor($number / (2 ** $shiftAmount)); + if ($result > 2 ** 48 - 1) { // possible because shiftAmount can be negative + return ExcelError::NAN(); + } + + return $result; + } + + /** + * Validate arguments passed to the bitwise functions. + * + * @param mixed $value + * + * @return float + */ + private static function validateBitwiseArgument($value) + { + $value = self::nullFalseTrueToNumber($value); + + if (is_numeric($value)) { + $value = (float) $value; + if ($value == floor($value)) { + if (($value > 2 ** 48 - 1) || ($value < 0)) { + throw new Exception(ExcelError::NAN()); + } + + return floor($value); + } + + throw new Exception(ExcelError::NAN()); + } + + throw new Exception(ExcelError::VALUE()); + } + + /** + * Validate arguments passed to the bitwise functions. + * + * @param mixed $value + * + * @return int + */ + private static function validateShiftAmount($value) + { + $value = self::nullFalseTrueToNumber($value); + + if (is_numeric($value)) { + if (abs($value) > 53) { + throw new Exception(ExcelError::NAN()); + } + + return (int) $value; + } + + throw new Exception(ExcelError::VALUE()); + } + + /** + * Many functions accept null/false/true argument treated as 0/0/1. + * + * @param mixed $number + * + * @return mixed + */ + private static function nullFalseTrueToNumber(&$number) + { + if ($number === null) { + $number = 0; + } elseif (is_bool($number)) { + $number = (int) $number; + } + + return $number; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Compare.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Compare.php new file mode 100644 index 0000000..4d4bc07 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Compare.php @@ -0,0 +1,82 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; + +class Compare +{ + use ArrayEnabled; + + /** + * DELTA. + * + * Excel Function: + * DELTA(a[,b]) + * + * Tests whether two values are equal. Returns 1 if number1 = number2; returns 0 otherwise. + * Use this function to filter a set of values. For example, by summing several DELTA + * functions you calculate the count of equal pairs. This function is also known as the + * Kronecker Delta function. + * + * @param array|float $a the first number + * Or can be an array of values + * @param array|float $b The second number. If omitted, b is assumed to be zero. + * Or can be an array of values + * + * @return array|int|string (string in the event of an error) + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function DELTA($a, $b = 0.0) + { + if (is_array($a) || is_array($b)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $a, $b); + } + + try { + $a = EngineeringValidations::validateFloat($a); + $b = EngineeringValidations::validateFloat($b); + } catch (Exception $e) { + return $e->getMessage(); + } + + return (int) (abs($a - $b) < 1.0e-15); + } + + /** + * GESTEP. + * + * Excel Function: + * GESTEP(number[,step]) + * + * Returns 1 if number >= step; returns 0 (zero) otherwise + * Use this function to filter a set of values. For example, by summing several GESTEP + * functions you calculate the count of values that exceed a threshold. + * + * @param array|float $number the value to test against step + * Or can be an array of values + * @param array|float $step The threshold value. If you omit a value for step, GESTEP uses zero. + * Or can be an array of values + * + * @return array|int|string (string in the event of an error) + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function GESTEP($number, $step = 0.0) + { + if (is_array($number) || is_array($step)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number, $step); + } + + try { + $number = EngineeringValidations::validateFloat($number); + $step = EngineeringValidations::validateFloat($step); + } catch (Exception $e) { + return $e->getMessage(); + } + + return (int) ($number >= $step); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Complex.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Complex.php new file mode 100644 index 0000000..691de8b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Complex.php @@ -0,0 +1,121 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use Complex\Complex as ComplexObject; +use Complex\Exception as ComplexException; +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Complex +{ + use ArrayEnabled; + + /** + * COMPLEX. + * + * Converts real and imaginary coefficients into a complex number of the form x +/- yi or x +/- yj. + * + * Excel Function: + * COMPLEX(realNumber,imaginary[,suffix]) + * + * @param mixed $realNumber the real float coefficient of the complex number + * Or can be an array of values + * @param mixed $imaginary the imaginary float coefficient of the complex number + * Or can be an array of values + * @param mixed $suffix The character suffix for the imaginary component of the complex number. + * If omitted, the suffix is assumed to be "i". + * Or can be an array of values + * + * @return array|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function COMPLEX($realNumber = 0.0, $imaginary = 0.0, $suffix = 'i') + { + if (is_array($realNumber) || is_array($imaginary) || is_array($suffix)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $realNumber, $imaginary, $suffix); + } + + $realNumber = $realNumber ?? 0.0; + $imaginary = $imaginary ?? 0.0; + $suffix = $suffix ?? 'i'; + + try { + $realNumber = EngineeringValidations::validateFloat($realNumber); + $imaginary = EngineeringValidations::validateFloat($imaginary); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($suffix == 'i') || ($suffix == 'j') || ($suffix == '')) { + $complex = new ComplexObject($realNumber, $imaginary, $suffix); + + return (string) $complex; + } + + return ExcelError::VALUE(); + } + + /** + * IMAGINARY. + * + * Returns the imaginary coefficient of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMAGINARY(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the imaginary + * coefficient + * Or can be an array of values + * + * @return array|float|string (string if an error) + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMAGINARY($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return $complex->getImaginary(); + } + + /** + * IMREAL. + * + * Returns the real coefficient of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMREAL(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the real coefficient + * Or can be an array of values + * + * @return array|float|string (string if an error) + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMREAL($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return $complex->getReal(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ComplexFunctions.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ComplexFunctions.php new file mode 100644 index 0000000..28a27a0 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ComplexFunctions.php @@ -0,0 +1,611 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use Complex\Complex as ComplexObject; +use Complex\Exception as ComplexException; +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class ComplexFunctions +{ + use ArrayEnabled; + + /** + * IMABS. + * + * Returns the absolute value (modulus) of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMABS(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the absolute value + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMABS($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return $complex->abs(); + } + + /** + * IMARGUMENT. + * + * Returns the argument theta of a complex number, i.e. the angle in radians from the real + * axis to the representation of the number in polar coordinates. + * + * Excel Function: + * IMARGUMENT(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the argument theta + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMARGUMENT($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + if ($complex->getReal() == 0.0 && $complex->getImaginary() == 0.0) { + return ExcelError::DIV0(); + } + + return $complex->argument(); + } + + /** + * IMCONJUGATE. + * + * Returns the complex conjugate of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMCONJUGATE(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the conjugate + * Or can be an array of values + * + * @return array|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMCONJUGATE($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return (string) $complex->conjugate(); + } + + /** + * IMCOS. + * + * Returns the cosine of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMCOS(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the cosine + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMCOS($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return (string) $complex->cos(); + } + + /** + * IMCOSH. + * + * Returns the hyperbolic cosine of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMCOSH(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the hyperbolic cosine + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMCOSH($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return (string) $complex->cosh(); + } + + /** + * IMCOT. + * + * Returns the cotangent of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMCOT(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the cotangent + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMCOT($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return (string) $complex->cot(); + } + + /** + * IMCSC. + * + * Returns the cosecant of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMCSC(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the cosecant + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMCSC($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return (string) $complex->csc(); + } + + /** + * IMCSCH. + * + * Returns the hyperbolic cosecant of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMCSCH(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the hyperbolic cosecant + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMCSCH($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return (string) $complex->csch(); + } + + /** + * IMSIN. + * + * Returns the sine of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMSIN(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the sine + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMSIN($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return (string) $complex->sin(); + } + + /** + * IMSINH. + * + * Returns the hyperbolic sine of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMSINH(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the hyperbolic sine + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMSINH($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return (string) $complex->sinh(); + } + + /** + * IMSEC. + * + * Returns the secant of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMSEC(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the secant + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMSEC($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return (string) $complex->sec(); + } + + /** + * IMSECH. + * + * Returns the hyperbolic secant of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMSECH(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the hyperbolic secant + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMSECH($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return (string) $complex->sech(); + } + + /** + * IMTAN. + * + * Returns the tangent of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMTAN(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the tangent + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMTAN($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return (string) $complex->tan(); + } + + /** + * IMSQRT. + * + * Returns the square root of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMSQRT(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the square root + * Or can be an array of values + * + * @return array|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMSQRT($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + $theta = self::IMARGUMENT($complexNumber); + if ($theta === ExcelError::DIV0()) { + return '0'; + } + + return (string) $complex->sqrt(); + } + + /** + * IMLN. + * + * Returns the natural logarithm of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMLN(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the natural logarithm + * Or can be an array of values + * + * @return array|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMLN($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + if ($complex->getReal() == 0.0 && $complex->getImaginary() == 0.0) { + return ExcelError::NAN(); + } + + return (string) $complex->ln(); + } + + /** + * IMLOG10. + * + * Returns the common logarithm (base 10) of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMLOG10(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the common logarithm + * Or can be an array of values + * + * @return array|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMLOG10($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + if ($complex->getReal() == 0.0 && $complex->getImaginary() == 0.0) { + return ExcelError::NAN(); + } + + return (string) $complex->log10(); + } + + /** + * IMLOG2. + * + * Returns the base-2 logarithm of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMLOG2(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the base-2 logarithm + * Or can be an array of values + * + * @return array|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMLOG2($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + if ($complex->getReal() == 0.0 && $complex->getImaginary() == 0.0) { + return ExcelError::NAN(); + } + + return (string) $complex->log2(); + } + + /** + * IMEXP. + * + * Returns the exponential of a complex number in x + yi or x + yj text format. + * + * Excel Function: + * IMEXP(complexNumber) + * + * @param array|string $complexNumber the complex number for which you want the exponential + * Or can be an array of values + * + * @return array|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMEXP($complexNumber) + { + if (is_array($complexNumber)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $complexNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return (string) $complex->exp(); + } + + /** + * IMPOWER. + * + * Returns a complex number in x + yi or x + yj text format raised to a power. + * + * Excel Function: + * IMPOWER(complexNumber,realNumber) + * + * @param array|string $complexNumber the complex number you want to raise to a power + * Or can be an array of values + * @param array|float|int|string $realNumber the power to which you want to raise the complex number + * Or can be an array of values + * + * @return array|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMPOWER($complexNumber, $realNumber) + { + if (is_array($complexNumber) || is_array($realNumber)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $complexNumber, $realNumber); + } + + try { + $complex = new ComplexObject($complexNumber); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + if (!is_numeric($realNumber)) { + return ExcelError::VALUE(); + } + + return (string) $complex->pow((float) $realNumber); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ComplexOperations.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ComplexOperations.php new file mode 100644 index 0000000..e525b4b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ComplexOperations.php @@ -0,0 +1,134 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use Complex\Complex as ComplexObject; +use Complex\Exception as ComplexException; +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class ComplexOperations +{ + use ArrayEnabled; + + /** + * IMDIV. + * + * Returns the quotient of two complex numbers in x + yi or x + yj text format. + * + * Excel Function: + * IMDIV(complexDividend,complexDivisor) + * + * @param array|string $complexDividend the complex numerator or dividend + * Or can be an array of values + * @param array|string $complexDivisor the complex denominator or divisor + * Or can be an array of values + * + * @return array|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMDIV($complexDividend, $complexDivisor) + { + if (is_array($complexDividend) || is_array($complexDivisor)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $complexDividend, $complexDivisor); + } + + try { + return (string) (new ComplexObject($complexDividend))->divideby(new ComplexObject($complexDivisor)); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + } + + /** + * IMSUB. + * + * Returns the difference of two complex numbers in x + yi or x + yj text format. + * + * Excel Function: + * IMSUB(complexNumber1,complexNumber2) + * + * @param array|string $complexNumber1 the complex number from which to subtract complexNumber2 + * Or can be an array of values + * @param array|string $complexNumber2 the complex number to subtract from complexNumber1 + * Or can be an array of values + * + * @return array|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function IMSUB($complexNumber1, $complexNumber2) + { + if (is_array($complexNumber1) || is_array($complexNumber2)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $complexNumber1, $complexNumber2); + } + + try { + return (string) (new ComplexObject($complexNumber1))->subtract(new ComplexObject($complexNumber2)); + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + } + + /** + * IMSUM. + * + * Returns the sum of two or more complex numbers in x + yi or x + yj text format. + * + * Excel Function: + * IMSUM(complexNumber[,complexNumber[,...]]) + * + * @param string ...$complexNumbers Series of complex numbers to add + * + * @return string + */ + public static function IMSUM(...$complexNumbers) + { + // Return value + $returnValue = new ComplexObject(0.0); + $aArgs = Functions::flattenArray($complexNumbers); + + try { + // Loop through the arguments + foreach ($aArgs as $complex) { + $returnValue = $returnValue->add(new ComplexObject($complex)); + } + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return (string) $returnValue; + } + + /** + * IMPRODUCT. + * + * Returns the product of two or more complex numbers in x + yi or x + yj text format. + * + * Excel Function: + * IMPRODUCT(complexNumber[,complexNumber[,...]]) + * + * @param string ...$complexNumbers Series of complex numbers to multiply + * + * @return string + */ + public static function IMPRODUCT(...$complexNumbers) + { + // Return value + $returnValue = new ComplexObject(1.0); + $aArgs = Functions::flattenArray($complexNumbers); + + try { + // Loop through the arguments + foreach ($aArgs as $complex) { + $returnValue = $returnValue->multiply(new ComplexObject($complex)); + } + } catch (ComplexException $e) { + return ExcelError::NAN(); + } + + return (string) $returnValue; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Constants.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Constants.php new file mode 100644 index 0000000..a926db6 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Constants.php @@ -0,0 +1,11 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +class Constants +{ + /** + * EULER. + */ + public const EULER = 2.71828182845904523536; +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertBase.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertBase.php new file mode 100644 index 0000000..e80490b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertBase.php @@ -0,0 +1,69 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +abstract class ConvertBase +{ + use ArrayEnabled; + + protected static function validateValue($value): string + { + if (is_bool($value)) { + if (Functions::getCompatibilityMode() !== Functions::COMPATIBILITY_OPENOFFICE) { + throw new Exception(ExcelError::VALUE()); + } + $value = (int) $value; + } + + if (is_numeric($value)) { + if (Functions::getCompatibilityMode() == Functions::COMPATIBILITY_GNUMERIC) { + $value = floor((float) $value); + } + } + + return strtoupper((string) $value); + } + + protected static function validatePlaces($places = null): ?int + { + if ($places === null) { + return $places; + } + + if (is_numeric($places)) { + if ($places < 0 || $places > 10) { + throw new Exception(ExcelError::NAN()); + } + + return (int) $places; + } + + throw new Exception(ExcelError::VALUE()); + } + + /** + * Formats a number base string value with leading zeroes. + * + * @param string $value The "number" to pad + * @param ?int $places The length that we want to pad this value + * + * @return string The padded "number" + */ + protected static function nbrConversionFormat(string $value, ?int $places): string + { + if ($places !== null) { + if (strlen($value) <= $places) { + return substr(str_pad($value, $places, '0', STR_PAD_LEFT), -10); + } + + return ExcelError::NAN(); + } + + return substr($value, -10); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertBinary.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertBinary.php new file mode 100644 index 0000000..4741f30 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertBinary.php @@ -0,0 +1,163 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class ConvertBinary extends ConvertBase +{ + /** + * toDecimal. + * + * Return a binary value as decimal. + * + * Excel Function: + * BIN2DEC(x) + * + * @param array|string $value The binary number (as a string) that you want to convert. The number + * cannot contain more than 10 characters (10 bits). The most significant + * bit of number is the sign bit. The remaining 9 bits are magnitude bits. + * Negative numbers are represented using two's-complement notation. + * If number is not a valid binary number, or if number contains more than + * 10 characters (10 bits), BIN2DEC returns the #NUM! error value. + * Or can be an array of values + * + * @return array|string Result, or an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function toDecimal($value) + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + try { + $value = self::validateValue($value); + $value = self::validateBinary($value); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (strlen($value) == 10) { + // Two's Complement + $value = substr($value, -9); + + return '-' . (512 - bindec($value)); + } + + return (string) bindec($value); + } + + /** + * toHex. + * + * Return a binary value as hex. + * + * Excel Function: + * BIN2HEX(x[,places]) + * + * @param array|string $value The binary number (as a string) that you want to convert. The number + * cannot contain more than 10 characters (10 bits). The most significant + * bit of number is the sign bit. The remaining 9 bits are magnitude bits. + * Negative numbers are represented using two's-complement notation. + * If number is not a valid binary number, or if number contains more than + * 10 characters (10 bits), BIN2HEX returns the #NUM! error value. + * Or can be an array of values + * @param array|int $places The number of characters to use. If places is omitted, BIN2HEX uses the + * minimum number of characters necessary. Places is useful for padding the + * return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, BIN2HEX returns the #VALUE! error value. + * If places is negative, BIN2HEX returns the #NUM! error value. + * Or can be an array of values + * + * @return array|string Result, or an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function toHex($value, $places = null) + { + if (is_array($value) || is_array($places)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $places); + } + + try { + $value = self::validateValue($value); + $value = self::validateBinary($value); + $places = self::validatePlaces($places); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (strlen($value) == 10) { + $high2 = substr($value, 0, 2); + $low8 = substr($value, 2); + $xarr = ['00' => '00000000', '01' => '00000001', '10' => 'FFFFFFFE', '11' => 'FFFFFFFF']; + + return $xarr[$high2] . strtoupper(substr('0' . dechex((int) bindec($low8)), -2)); + } + $hexVal = (string) strtoupper(dechex((int) bindec($value))); + + return self::nbrConversionFormat($hexVal, $places); + } + + /** + * toOctal. + * + * Return a binary value as octal. + * + * Excel Function: + * BIN2OCT(x[,places]) + * + * @param array|string $value The binary number (as a string) that you want to convert. The number + * cannot contain more than 10 characters (10 bits). The most significant + * bit of number is the sign bit. The remaining 9 bits are magnitude bits. + * Negative numbers are represented using two's-complement notation. + * If number is not a valid binary number, or if number contains more than + * 10 characters (10 bits), BIN2OCT returns the #NUM! error value. + * Or can be an array of values + * @param array|int $places The number of characters to use. If places is omitted, BIN2OCT uses the + * minimum number of characters necessary. Places is useful for padding the + * return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, BIN2OCT returns the #VALUE! error value. + * If places is negative, BIN2OCT returns the #NUM! error value. + * Or can be an array of values + * + * @return array|string Result, or an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function toOctal($value, $places = null) + { + if (is_array($value) || is_array($places)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $places); + } + + try { + $value = self::validateValue($value); + $value = self::validateBinary($value); + $places = self::validatePlaces($places); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (strlen($value) == 10 && substr($value, 0, 1) === '1') { // Two's Complement + return str_repeat('7', 6) . strtoupper(decoct((int) bindec("11$value"))); + } + $octVal = (string) decoct((int) bindec($value)); + + return self::nbrConversionFormat($octVal, $places); + } + + protected static function validateBinary(string $value): string + { + if ((strlen($value) > preg_match_all('/[01]/', $value)) || (strlen($value) > 10)) { + throw new Exception(ExcelError::NAN()); + } + + return $value; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertDecimal.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertDecimal.php new file mode 100644 index 0000000..9b59d39 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertDecimal.php @@ -0,0 +1,213 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class ConvertDecimal extends ConvertBase +{ + const LARGEST_OCTAL_IN_DECIMAL = 536870911; + const SMALLEST_OCTAL_IN_DECIMAL = -536870912; + const LARGEST_BINARY_IN_DECIMAL = 511; + const SMALLEST_BINARY_IN_DECIMAL = -512; + const LARGEST_HEX_IN_DECIMAL = 549755813887; + const SMALLEST_HEX_IN_DECIMAL = -549755813888; + + /** + * toBinary. + * + * Return a decimal value as binary. + * + * Excel Function: + * DEC2BIN(x[,places]) + * + * @param array|string $value The decimal integer you want to convert. If number is negative, + * valid place values are ignored and DEC2BIN returns a 10-character + * (10-bit) binary number in which the most significant bit is the sign + * bit. The remaining 9 bits are magnitude bits. Negative numbers are + * represented using two's-complement notation. + * If number < -512 or if number > 511, DEC2BIN returns the #NUM! error + * value. + * If number is nonnumeric, DEC2BIN returns the #VALUE! error value. + * If DEC2BIN requires more than places characters, it returns the #NUM! + * error value. + * Or can be an array of values + * @param array|int $places The number of characters to use. If places is omitted, DEC2BIN uses + * the minimum number of characters necessary. Places is useful for + * padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, DEC2BIN returns the #VALUE! error value. + * If places is zero or negative, DEC2BIN returns the #NUM! error value. + * Or can be an array of values + * + * @return array|string Result, or an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function toBinary($value, $places = null) + { + if (is_array($value) || is_array($places)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $places); + } + + try { + $value = self::validateValue($value); + $value = self::validateDecimal($value); + $places = self::validatePlaces($places); + } catch (Exception $e) { + return $e->getMessage(); + } + + $value = (int) floor((float) $value); + if ($value > self::LARGEST_BINARY_IN_DECIMAL || $value < self::SMALLEST_BINARY_IN_DECIMAL) { + return ExcelError::NAN(); + } + + $r = decbin($value); + // Two's Complement + $r = substr($r, -10); + + return self::nbrConversionFormat($r, $places); + } + + /** + * toHex. + * + * Return a decimal value as hex. + * + * Excel Function: + * DEC2HEX(x[,places]) + * + * @param array|string $value The decimal integer you want to convert. If number is negative, + * places is ignored and DEC2HEX returns a 10-character (40-bit) + * hexadecimal number in which the most significant bit is the sign + * bit. The remaining 39 bits are magnitude bits. Negative numbers + * are represented using two's-complement notation. + * If number < -549,755,813,888 or if number > 549,755,813,887, + * DEC2HEX returns the #NUM! error value. + * If number is nonnumeric, DEC2HEX returns the #VALUE! error value. + * If DEC2HEX requires more than places characters, it returns the + * #NUM! error value. + * Or can be an array of values + * @param array|int $places The number of characters to use. If places is omitted, DEC2HEX uses + * the minimum number of characters necessary. Places is useful for + * padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, DEC2HEX returns the #VALUE! error value. + * If places is zero or negative, DEC2HEX returns the #NUM! error value. + * Or can be an array of values + * + * @return array|string Result, or an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function toHex($value, $places = null) + { + if (is_array($value) || is_array($places)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $places); + } + + try { + $value = self::validateValue($value); + $value = self::validateDecimal($value); + $places = self::validatePlaces($places); + } catch (Exception $e) { + return $e->getMessage(); + } + + $value = floor((float) $value); + if ($value > self::LARGEST_HEX_IN_DECIMAL || $value < self::SMALLEST_HEX_IN_DECIMAL) { + return ExcelError::NAN(); + } + $r = strtoupper(dechex((int) $value)); + $r = self::hex32bit($value, $r); + + return self::nbrConversionFormat($r, $places); + } + + public static function hex32bit(float $value, string $hexstr, bool $force = false): string + { + if (PHP_INT_SIZE === 4 || $force) { + if ($value >= 2 ** 32) { + $quotient = (int) ($value / (2 ** 32)); + + return strtoupper(substr('0' . dechex($quotient), -2) . $hexstr); + } + if ($value < -(2 ** 32)) { + $quotient = 256 - (int) ceil((-$value) / (2 ** 32)); + + return strtoupper(substr('0' . dechex($quotient), -2) . substr("00000000$hexstr", -8)); + } + if ($value < 0) { + return "FF$hexstr"; + } + } + + return $hexstr; + } + + /** + * toOctal. + * + * Return an decimal value as octal. + * + * Excel Function: + * DEC2OCT(x[,places]) + * + * @param array|string $value The decimal integer you want to convert. If number is negative, + * places is ignored and DEC2OCT returns a 10-character (30-bit) + * octal number in which the most significant bit is the sign bit. + * The remaining 29 bits are magnitude bits. Negative numbers are + * represented using two's-complement notation. + * If number < -536,870,912 or if number > 536,870,911, DEC2OCT + * returns the #NUM! error value. + * If number is nonnumeric, DEC2OCT returns the #VALUE! error value. + * If DEC2OCT requires more than places characters, it returns the + * #NUM! error value. + * Or can be an array of values + * @param array|int $places The number of characters to use. If places is omitted, DEC2OCT uses + * the minimum number of characters necessary. Places is useful for + * padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, DEC2OCT returns the #VALUE! error value. + * If places is zero or negative, DEC2OCT returns the #NUM! error value. + * Or can be an array of values + * + * @return array|string Result, or an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function toOctal($value, $places = null) + { + if (is_array($value) || is_array($places)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $places); + } + + try { + $value = self::validateValue($value); + $value = self::validateDecimal($value); + $places = self::validatePlaces($places); + } catch (Exception $e) { + return $e->getMessage(); + } + + $value = (int) floor((float) $value); + if ($value > self::LARGEST_OCTAL_IN_DECIMAL || $value < self::SMALLEST_OCTAL_IN_DECIMAL) { + return ExcelError::NAN(); + } + $r = decoct($value); + $r = substr($r, -10); + + return self::nbrConversionFormat($r, $places); + } + + protected static function validateDecimal(string $value): string + { + if (strlen($value) > preg_match_all('/[-0123456789.]/', $value)) { + throw new Exception(ExcelError::VALUE()); + } + + return $value; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertHex.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertHex.php new file mode 100644 index 0000000..55ce209 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertHex.php @@ -0,0 +1,175 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class ConvertHex extends ConvertBase +{ + /** + * toBinary. + * + * Return a hex value as binary. + * + * Excel Function: + * HEX2BIN(x[,places]) + * + * @param array|string $value The hexadecimal number you want to convert. + * Number cannot contain more than 10 characters. + * The most significant bit of number is the sign bit (40th bit from the right). + * The remaining 9 bits are magnitude bits. + * Negative numbers are represented using two's-complement notation. + * If number is negative, HEX2BIN ignores places and returns a 10-character binary number. + * If number is negative, it cannot be less than FFFFFFFE00, + * and if number is positive, it cannot be greater than 1FF. + * If number is not a valid hexadecimal number, HEX2BIN returns the #NUM! error value. + * If HEX2BIN requires more than places characters, it returns the #NUM! error value. + * Or can be an array of values + * @param array|int $places The number of characters to use. If places is omitted, + * HEX2BIN uses the minimum number of characters necessary. Places + * is useful for padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, HEX2BIN returns the #VALUE! error value. + * If places is negative, HEX2BIN returns the #NUM! error value. + * Or can be an array of values + * + * @return array|string Result, or an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function toBinary($value, $places = null) + { + if (is_array($value) || is_array($places)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $places); + } + + try { + $value = self::validateValue($value); + $value = self::validateHex($value); + $places = self::validatePlaces($places); + } catch (Exception $e) { + return $e->getMessage(); + } + + $dec = self::toDecimal($value); + + return ConvertDecimal::toBinary($dec, $places); + } + + /** + * toDecimal. + * + * Return a hex value as decimal. + * + * Excel Function: + * HEX2DEC(x) + * + * @param array|string $value The hexadecimal number you want to convert. This number cannot + * contain more than 10 characters (40 bits). The most significant + * bit of number is the sign bit. The remaining 39 bits are magnitude + * bits. Negative numbers are represented using two's-complement + * notation. + * If number is not a valid hexadecimal number, HEX2DEC returns the + * #NUM! error value. + * Or can be an array of values + * + * @return array|string Result, or an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function toDecimal($value) + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + try { + $value = self::validateValue($value); + $value = self::validateHex($value); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (strlen($value) > 10) { + return ExcelError::NAN(); + } + + $binX = ''; + foreach (str_split($value) as $char) { + $binX .= str_pad(base_convert($char, 16, 2), 4, '0', STR_PAD_LEFT); + } + if (strlen($binX) == 40 && $binX[0] == '1') { + for ($i = 0; $i < 40; ++$i) { + $binX[$i] = ($binX[$i] == '1' ? '0' : '1'); + } + + return (string) ((bindec($binX) + 1) * -1); + } + + return (string) bindec($binX); + } + + /** + * toOctal. + * + * Return a hex value as octal. + * + * Excel Function: + * HEX2OCT(x[,places]) + * + * @param array|string $value The hexadecimal number you want to convert. Number cannot + * contain more than 10 characters. The most significant bit of + * number is the sign bit. The remaining 39 bits are magnitude + * bits. Negative numbers are represented using two's-complement + * notation. + * If number is negative, HEX2OCT ignores places and returns a + * 10-character octal number. + * If number is negative, it cannot be less than FFE0000000, and + * if number is positive, it cannot be greater than 1FFFFFFF. + * If number is not a valid hexadecimal number, HEX2OCT returns + * the #NUM! error value. + * If HEX2OCT requires more than places characters, it returns + * the #NUM! error value. + * Or can be an array of values + * @param array|int $places The number of characters to use. If places is omitted, HEX2OCT + * uses the minimum number of characters necessary. Places is + * useful for padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, HEX2OCT returns the #VALUE! error + * value. + * If places is negative, HEX2OCT returns the #NUM! error value. + * Or can be an array of values + * + * @return array|string Result, or an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function toOctal($value, $places = null) + { + if (is_array($value) || is_array($places)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $places); + } + + try { + $value = self::validateValue($value); + $value = self::validateHex($value); + $places = self::validatePlaces($places); + } catch (Exception $e) { + return $e->getMessage(); + } + + $decimal = self::toDecimal($value); + + return ConvertDecimal::toOctal($decimal, $places); + } + + protected static function validateHex(string $value): string + { + if (strlen($value) > preg_match_all('/[0123456789ABCDEF]/', $value)) { + throw new Exception(ExcelError::NAN()); + } + + return $value; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertOctal.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertOctal.php new file mode 100644 index 0000000..add7aba --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertOctal.php @@ -0,0 +1,174 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class ConvertOctal extends ConvertBase +{ + /** + * toBinary. + * + * Return an octal value as binary. + * + * Excel Function: + * OCT2BIN(x[,places]) + * + * @param array|string $value The octal number you want to convert. Number may not + * contain more than 10 characters. The most significant + * bit of number is the sign bit. The remaining 29 bits + * are magnitude bits. Negative numbers are represented + * using two's-complement notation. + * If number is negative, OCT2BIN ignores places and returns + * a 10-character binary number. + * If number is negative, it cannot be less than 7777777000, + * and if number is positive, it cannot be greater than 777. + * If number is not a valid octal number, OCT2BIN returns + * the #NUM! error value. + * If OCT2BIN requires more than places characters, it + * returns the #NUM! error value. + * Or can be an array of values + * @param array|int $places The number of characters to use. If places is omitted, + * OCT2BIN uses the minimum number of characters necessary. + * Places is useful for padding the return value with + * leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, OCT2BIN returns the #VALUE! + * error value. + * If places is negative, OCT2BIN returns the #NUM! error + * value. + * Or can be an array of values + * + * @return array|string Result, or an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function toBinary($value, $places = null) + { + if (is_array($value) || is_array($places)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $places); + } + + try { + $value = self::validateValue($value); + $value = self::validateOctal($value); + $places = self::validatePlaces($places); + } catch (Exception $e) { + return $e->getMessage(); + } + + return ConvertDecimal::toBinary(self::toDecimal($value), $places); + } + + /** + * toDecimal. + * + * Return an octal value as decimal. + * + * Excel Function: + * OCT2DEC(x) + * + * @param array|string $value The octal number you want to convert. Number may not contain + * more than 10 octal characters (30 bits). The most significant + * bit of number is the sign bit. The remaining 29 bits are + * magnitude bits. Negative numbers are represented using + * two's-complement notation. + * If number is not a valid octal number, OCT2DEC returns the + * #NUM! error value. + * Or can be an array of values + * + * @return array|string Result, or an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function toDecimal($value) + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + try { + $value = self::validateValue($value); + $value = self::validateOctal($value); + } catch (Exception $e) { + return $e->getMessage(); + } + + $binX = ''; + foreach (str_split($value) as $char) { + $binX .= str_pad(decbin((int) $char), 3, '0', STR_PAD_LEFT); + } + if (strlen($binX) == 30 && $binX[0] == '1') { + for ($i = 0; $i < 30; ++$i) { + $binX[$i] = ($binX[$i] == '1' ? '0' : '1'); + } + + return (string) ((bindec($binX) + 1) * -1); + } + + return (string) bindec($binX); + } + + /** + * toHex. + * + * Return an octal value as hex. + * + * Excel Function: + * OCT2HEX(x[,places]) + * + * @param array|string $value The octal number you want to convert. Number may not contain + * more than 10 octal characters (30 bits). The most significant + * bit of number is the sign bit. The remaining 29 bits are + * magnitude bits. Negative numbers are represented using + * two's-complement notation. + * If number is negative, OCT2HEX ignores places and returns a + * 10-character hexadecimal number. + * If number is not a valid octal number, OCT2HEX returns the + * #NUM! error value. + * If OCT2HEX requires more than places characters, it returns + * the #NUM! error value. + * Or can be an array of values + * @param array|int $places The number of characters to use. If places is omitted, OCT2HEX + * uses the minimum number of characters necessary. Places is useful + * for padding the return value with leading 0s (zeros). + * If places is not an integer, it is truncated. + * If places is nonnumeric, OCT2HEX returns the #VALUE! error value. + * If places is negative, OCT2HEX returns the #NUM! error value. + * Or can be an array of values + * + * @return array|string Result, or an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function toHex($value, $places = null) + { + if (is_array($value) || is_array($places)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $places); + } + + try { + $value = self::validateValue($value); + $value = self::validateOctal($value); + $places = self::validatePlaces($places); + } catch (Exception $e) { + return $e->getMessage(); + } + + $hexVal = strtoupper(dechex((int) self::toDecimal($value))); + $hexVal = (PHP_INT_SIZE === 4 && strlen($value) === 10 && $value[0] >= '4') ? "FF{$hexVal}" : $hexVal; + + return self::nbrConversionFormat($hexVal, $places); + } + + protected static function validateOctal(string $value): string + { + $numDigits = (int) preg_match_all('/[01234567]/', $value); + if (strlen($value) > $numDigits || $numDigits > 10) { + throw new Exception(ExcelError::NAN()); + } + + return $value; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertUOM.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertUOM.php new file mode 100644 index 0000000..677fb0f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertUOM.php @@ -0,0 +1,693 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class ConvertUOM +{ + use ArrayEnabled; + + public const CATEGORY_WEIGHT_AND_MASS = 'Weight and Mass'; + public const CATEGORY_DISTANCE = 'Distance'; + public const CATEGORY_TIME = 'Time'; + public const CATEGORY_PRESSURE = 'Pressure'; + public const CATEGORY_FORCE = 'Force'; + public const CATEGORY_ENERGY = 'Energy'; + public const CATEGORY_POWER = 'Power'; + public const CATEGORY_MAGNETISM = 'Magnetism'; + public const CATEGORY_TEMPERATURE = 'Temperature'; + public const CATEGORY_VOLUME = 'Volume and Liquid Measure'; + public const CATEGORY_AREA = 'Area'; + public const CATEGORY_INFORMATION = 'Information'; + public const CATEGORY_SPEED = 'Speed'; + + /** + * Details of the Units of measure that can be used in CONVERTUOM(). + * + * @var mixed[] + */ + private static $conversionUnits = [ + // Weight and Mass + 'g' => ['Group' => self::CATEGORY_WEIGHT_AND_MASS, 'Unit Name' => 'Gram', 'AllowPrefix' => true], + 'sg' => ['Group' => self::CATEGORY_WEIGHT_AND_MASS, 'Unit Name' => 'Slug', 'AllowPrefix' => false], + 'lbm' => ['Group' => self::CATEGORY_WEIGHT_AND_MASS, 'Unit Name' => 'Pound mass (avoirdupois)', 'AllowPrefix' => false], + 'u' => ['Group' => self::CATEGORY_WEIGHT_AND_MASS, 'Unit Name' => 'U (atomic mass unit)', 'AllowPrefix' => true], + 'ozm' => ['Group' => self::CATEGORY_WEIGHT_AND_MASS, 'Unit Name' => 'Ounce mass (avoirdupois)', 'AllowPrefix' => false], + 'grain' => ['Group' => self::CATEGORY_WEIGHT_AND_MASS, 'Unit Name' => 'Grain', 'AllowPrefix' => false], + 'cwt' => ['Group' => self::CATEGORY_WEIGHT_AND_MASS, 'Unit Name' => 'U.S. (short) hundredweight', 'AllowPrefix' => false], + 'shweight' => ['Group' => self::CATEGORY_WEIGHT_AND_MASS, 'Unit Name' => 'U.S. (short) hundredweight', 'AllowPrefix' => false], + 'uk_cwt' => ['Group' => self::CATEGORY_WEIGHT_AND_MASS, 'Unit Name' => 'Imperial hundredweight', 'AllowPrefix' => false], + 'lcwt' => ['Group' => self::CATEGORY_WEIGHT_AND_MASS, 'Unit Name' => 'Imperial hundredweight', 'AllowPrefix' => false], + 'hweight' => ['Group' => self::CATEGORY_WEIGHT_AND_MASS, 'Unit Name' => 'Imperial hundredweight', 'AllowPrefix' => false], + 'stone' => ['Group' => self::CATEGORY_WEIGHT_AND_MASS, 'Unit Name' => 'Stone', 'AllowPrefix' => false], + 'ton' => ['Group' => self::CATEGORY_WEIGHT_AND_MASS, 'Unit Name' => 'Ton', 'AllowPrefix' => false], + 'uk_ton' => ['Group' => self::CATEGORY_WEIGHT_AND_MASS, 'Unit Name' => 'Imperial ton', 'AllowPrefix' => false], + 'LTON' => ['Group' => self::CATEGORY_WEIGHT_AND_MASS, 'Unit Name' => 'Imperial ton', 'AllowPrefix' => false], + 'brton' => ['Group' => self::CATEGORY_WEIGHT_AND_MASS, 'Unit Name' => 'Imperial ton', 'AllowPrefix' => false], + // Distance + 'm' => ['Group' => self::CATEGORY_DISTANCE, 'Unit Name' => 'Meter', 'AllowPrefix' => true], + 'mi' => ['Group' => self::CATEGORY_DISTANCE, 'Unit Name' => 'Statute mile', 'AllowPrefix' => false], + 'Nmi' => ['Group' => self::CATEGORY_DISTANCE, 'Unit Name' => 'Nautical mile', 'AllowPrefix' => false], + 'in' => ['Group' => self::CATEGORY_DISTANCE, 'Unit Name' => 'Inch', 'AllowPrefix' => false], + 'ft' => ['Group' => self::CATEGORY_DISTANCE, 'Unit Name' => 'Foot', 'AllowPrefix' => false], + 'yd' => ['Group' => self::CATEGORY_DISTANCE, 'Unit Name' => 'Yard', 'AllowPrefix' => false], + 'ang' => ['Group' => self::CATEGORY_DISTANCE, 'Unit Name' => 'Angstrom', 'AllowPrefix' => true], + 'ell' => ['Group' => self::CATEGORY_DISTANCE, 'Unit Name' => 'Ell', 'AllowPrefix' => false], + 'ly' => ['Group' => self::CATEGORY_DISTANCE, 'Unit Name' => 'Light Year', 'AllowPrefix' => false], + 'parsec' => ['Group' => self::CATEGORY_DISTANCE, 'Unit Name' => 'Parsec', 'AllowPrefix' => false], + 'pc' => ['Group' => self::CATEGORY_DISTANCE, 'Unit Name' => 'Parsec', 'AllowPrefix' => false], + 'Pica' => ['Group' => self::CATEGORY_DISTANCE, 'Unit Name' => 'Pica (1/72 in)', 'AllowPrefix' => false], + 'Picapt' => ['Group' => self::CATEGORY_DISTANCE, 'Unit Name' => 'Pica (1/72 in)', 'AllowPrefix' => false], + 'pica' => ['Group' => self::CATEGORY_DISTANCE, 'Unit Name' => 'Pica (1/6 in)', 'AllowPrefix' => false], + 'survey_mi' => ['Group' => self::CATEGORY_DISTANCE, 'Unit Name' => 'U.S survey mile (statute mile)', 'AllowPrefix' => false], + // Time + 'yr' => ['Group' => self::CATEGORY_TIME, 'Unit Name' => 'Year', 'AllowPrefix' => false], + 'day' => ['Group' => self::CATEGORY_TIME, 'Unit Name' => 'Day', 'AllowPrefix' => false], + 'd' => ['Group' => self::CATEGORY_TIME, 'Unit Name' => 'Day', 'AllowPrefix' => false], + 'hr' => ['Group' => self::CATEGORY_TIME, 'Unit Name' => 'Hour', 'AllowPrefix' => false], + 'mn' => ['Group' => self::CATEGORY_TIME, 'Unit Name' => 'Minute', 'AllowPrefix' => false], + 'min' => ['Group' => self::CATEGORY_TIME, 'Unit Name' => 'Minute', 'AllowPrefix' => false], + 'sec' => ['Group' => self::CATEGORY_TIME, 'Unit Name' => 'Second', 'AllowPrefix' => true], + 's' => ['Group' => self::CATEGORY_TIME, 'Unit Name' => 'Second', 'AllowPrefix' => true], + // Pressure + 'Pa' => ['Group' => self::CATEGORY_PRESSURE, 'Unit Name' => 'Pascal', 'AllowPrefix' => true], + 'p' => ['Group' => self::CATEGORY_PRESSURE, 'Unit Name' => 'Pascal', 'AllowPrefix' => true], + 'atm' => ['Group' => self::CATEGORY_PRESSURE, 'Unit Name' => 'Atmosphere', 'AllowPrefix' => true], + 'at' => ['Group' => self::CATEGORY_PRESSURE, 'Unit Name' => 'Atmosphere', 'AllowPrefix' => true], + 'mmHg' => ['Group' => self::CATEGORY_PRESSURE, 'Unit Name' => 'mm of Mercury', 'AllowPrefix' => true], + 'psi' => ['Group' => self::CATEGORY_PRESSURE, 'Unit Name' => 'PSI', 'AllowPrefix' => true], + 'Torr' => ['Group' => self::CATEGORY_PRESSURE, 'Unit Name' => 'Torr', 'AllowPrefix' => true], + // Force + 'N' => ['Group' => self::CATEGORY_FORCE, 'Unit Name' => 'Newton', 'AllowPrefix' => true], + 'dyn' => ['Group' => self::CATEGORY_FORCE, 'Unit Name' => 'Dyne', 'AllowPrefix' => true], + 'dy' => ['Group' => self::CATEGORY_FORCE, 'Unit Name' => 'Dyne', 'AllowPrefix' => true], + 'lbf' => ['Group' => self::CATEGORY_FORCE, 'Unit Name' => 'Pound force', 'AllowPrefix' => false], + 'pond' => ['Group' => self::CATEGORY_FORCE, 'Unit Name' => 'Pond', 'AllowPrefix' => true], + // Energy + 'J' => ['Group' => self::CATEGORY_ENERGY, 'Unit Name' => 'Joule', 'AllowPrefix' => true], + 'e' => ['Group' => self::CATEGORY_ENERGY, 'Unit Name' => 'Erg', 'AllowPrefix' => true], + 'c' => ['Group' => self::CATEGORY_ENERGY, 'Unit Name' => 'Thermodynamic calorie', 'AllowPrefix' => true], + 'cal' => ['Group' => self::CATEGORY_ENERGY, 'Unit Name' => 'IT calorie', 'AllowPrefix' => true], + 'eV' => ['Group' => self::CATEGORY_ENERGY, 'Unit Name' => 'Electron volt', 'AllowPrefix' => true], + 'ev' => ['Group' => self::CATEGORY_ENERGY, 'Unit Name' => 'Electron volt', 'AllowPrefix' => true], + 'HPh' => ['Group' => self::CATEGORY_ENERGY, 'Unit Name' => 'Horsepower-hour', 'AllowPrefix' => false], + 'hh' => ['Group' => self::CATEGORY_ENERGY, 'Unit Name' => 'Horsepower-hour', 'AllowPrefix' => false], + 'Wh' => ['Group' => self::CATEGORY_ENERGY, 'Unit Name' => 'Watt-hour', 'AllowPrefix' => true], + 'wh' => ['Group' => self::CATEGORY_ENERGY, 'Unit Name' => 'Watt-hour', 'AllowPrefix' => true], + 'flb' => ['Group' => self::CATEGORY_ENERGY, 'Unit Name' => 'Foot-pound', 'AllowPrefix' => false], + 'BTU' => ['Group' => self::CATEGORY_ENERGY, 'Unit Name' => 'BTU', 'AllowPrefix' => false], + 'btu' => ['Group' => self::CATEGORY_ENERGY, 'Unit Name' => 'BTU', 'AllowPrefix' => false], + // Power + 'HP' => ['Group' => self::CATEGORY_POWER, 'Unit Name' => 'Horsepower', 'AllowPrefix' => false], + 'h' => ['Group' => self::CATEGORY_POWER, 'Unit Name' => 'Horsepower', 'AllowPrefix' => false], + 'W' => ['Group' => self::CATEGORY_POWER, 'Unit Name' => 'Watt', 'AllowPrefix' => true], + 'w' => ['Group' => self::CATEGORY_POWER, 'Unit Name' => 'Watt', 'AllowPrefix' => true], + 'PS' => ['Group' => self::CATEGORY_POWER, 'Unit Name' => 'Pferdestärke', 'AllowPrefix' => false], + 'T' => ['Group' => self::CATEGORY_MAGNETISM, 'Unit Name' => 'Tesla', 'AllowPrefix' => true], + 'ga' => ['Group' => self::CATEGORY_MAGNETISM, 'Unit Name' => 'Gauss', 'AllowPrefix' => true], + // Temperature + 'C' => ['Group' => self::CATEGORY_TEMPERATURE, 'Unit Name' => 'Degrees Celsius', 'AllowPrefix' => false], + 'cel' => ['Group' => self::CATEGORY_TEMPERATURE, 'Unit Name' => 'Degrees Celsius', 'AllowPrefix' => false], + 'F' => ['Group' => self::CATEGORY_TEMPERATURE, 'Unit Name' => 'Degrees Fahrenheit', 'AllowPrefix' => false], + 'fah' => ['Group' => self::CATEGORY_TEMPERATURE, 'Unit Name' => 'Degrees Fahrenheit', 'AllowPrefix' => false], + 'K' => ['Group' => self::CATEGORY_TEMPERATURE, 'Unit Name' => 'Kelvin', 'AllowPrefix' => false], + 'kel' => ['Group' => self::CATEGORY_TEMPERATURE, 'Unit Name' => 'Kelvin', 'AllowPrefix' => false], + 'Rank' => ['Group' => self::CATEGORY_TEMPERATURE, 'Unit Name' => 'Degrees Rankine', 'AllowPrefix' => false], + 'Reau' => ['Group' => self::CATEGORY_TEMPERATURE, 'Unit Name' => 'Degrees Réaumur', 'AllowPrefix' => false], + // Volume + 'l' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Litre', 'AllowPrefix' => true], + 'L' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Litre', 'AllowPrefix' => true], + 'lt' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Litre', 'AllowPrefix' => true], + 'tsp' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Teaspoon', 'AllowPrefix' => false], + 'tspm' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Modern Teaspoon', 'AllowPrefix' => false], + 'tbs' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Tablespoon', 'AllowPrefix' => false], + 'oz' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Fluid Ounce', 'AllowPrefix' => false], + 'cup' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cup', 'AllowPrefix' => false], + 'pt' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'U.S. Pint', 'AllowPrefix' => false], + 'us_pt' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'U.S. Pint', 'AllowPrefix' => false], + 'uk_pt' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'U.K. Pint', 'AllowPrefix' => false], + 'qt' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Quart', 'AllowPrefix' => false], + 'uk_qt' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Imperial Quart (UK)', 'AllowPrefix' => false], + 'gal' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Gallon', 'AllowPrefix' => false], + 'uk_gal' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Imperial Gallon (UK)', 'AllowPrefix' => false], + 'ang3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Angstrom', 'AllowPrefix' => true], + 'ang^3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Angstrom', 'AllowPrefix' => true], + 'barrel' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'US Oil Barrel', 'AllowPrefix' => false], + 'bushel' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'US Bushel', 'AllowPrefix' => false], + 'in3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Inch', 'AllowPrefix' => false], + 'in^3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Inch', 'AllowPrefix' => false], + 'ft3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Foot', 'AllowPrefix' => false], + 'ft^3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Foot', 'AllowPrefix' => false], + 'ly3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Light Year', 'AllowPrefix' => false], + 'ly^3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Light Year', 'AllowPrefix' => false], + 'm3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Meter', 'AllowPrefix' => true], + 'm^3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Meter', 'AllowPrefix' => true], + 'mi3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Mile', 'AllowPrefix' => false], + 'mi^3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Mile', 'AllowPrefix' => false], + 'yd3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Yard', 'AllowPrefix' => false], + 'yd^3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Yard', 'AllowPrefix' => false], + 'Nmi3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Nautical Mile', 'AllowPrefix' => false], + 'Nmi^3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Nautical Mile', 'AllowPrefix' => false], + 'Pica3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Pica', 'AllowPrefix' => false], + 'Pica^3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Pica', 'AllowPrefix' => false], + 'Picapt3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Pica', 'AllowPrefix' => false], + 'Picapt^3' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Cubic Pica', 'AllowPrefix' => false], + 'GRT' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Gross Registered Ton', 'AllowPrefix' => false], + 'regton' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Gross Registered Ton', 'AllowPrefix' => false], + 'MTON' => ['Group' => self::CATEGORY_VOLUME, 'Unit Name' => 'Measurement Ton (Freight Ton)', 'AllowPrefix' => false], + // Area + 'ha' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Hectare', 'AllowPrefix' => true], + 'uk_acre' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'International Acre', 'AllowPrefix' => false], + 'us_acre' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'US Survey/Statute Acre', 'AllowPrefix' => false], + 'ang2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Angstrom', 'AllowPrefix' => true], + 'ang^2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Angstrom', 'AllowPrefix' => true], + 'ar' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Are', 'AllowPrefix' => true], + 'ft2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Feet', 'AllowPrefix' => false], + 'ft^2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Feet', 'AllowPrefix' => false], + 'in2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Inches', 'AllowPrefix' => false], + 'in^2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Inches', 'AllowPrefix' => false], + 'ly2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Light Years', 'AllowPrefix' => false], + 'ly^2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Light Years', 'AllowPrefix' => false], + 'm2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Meters', 'AllowPrefix' => true], + 'm^2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Meters', 'AllowPrefix' => true], + 'Morgen' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Morgen', 'AllowPrefix' => false], + 'mi2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Miles', 'AllowPrefix' => false], + 'mi^2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Miles', 'AllowPrefix' => false], + 'Nmi2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Nautical Miles', 'AllowPrefix' => false], + 'Nmi^2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Nautical Miles', 'AllowPrefix' => false], + 'Pica2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Pica', 'AllowPrefix' => false], + 'Pica^2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Pica', 'AllowPrefix' => false], + 'Picapt2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Pica', 'AllowPrefix' => false], + 'Picapt^2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Pica', 'AllowPrefix' => false], + 'yd2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Yards', 'AllowPrefix' => false], + 'yd^2' => ['Group' => self::CATEGORY_AREA, 'Unit Name' => 'Square Yards', 'AllowPrefix' => false], + // Information + 'byte' => ['Group' => self::CATEGORY_INFORMATION, 'Unit Name' => 'Byte', 'AllowPrefix' => true], + 'bit' => ['Group' => self::CATEGORY_INFORMATION, 'Unit Name' => 'Bit', 'AllowPrefix' => true], + // Speed + 'm/s' => ['Group' => self::CATEGORY_SPEED, 'Unit Name' => 'Meters per second', 'AllowPrefix' => true], + 'm/sec' => ['Group' => self::CATEGORY_SPEED, 'Unit Name' => 'Meters per second', 'AllowPrefix' => true], + 'm/h' => ['Group' => self::CATEGORY_SPEED, 'Unit Name' => 'Meters per hour', 'AllowPrefix' => true], + 'm/hr' => ['Group' => self::CATEGORY_SPEED, 'Unit Name' => 'Meters per hour', 'AllowPrefix' => true], + 'mph' => ['Group' => self::CATEGORY_SPEED, 'Unit Name' => 'Miles per hour', 'AllowPrefix' => false], + 'admkn' => ['Group' => self::CATEGORY_SPEED, 'Unit Name' => 'Admiralty Knot', 'AllowPrefix' => false], + 'kn' => ['Group' => self::CATEGORY_SPEED, 'Unit Name' => 'Knot', 'AllowPrefix' => false], + ]; + + /** + * Details of the Multiplier prefixes that can be used with Units of Measure in CONVERTUOM(). + * + * @var mixed[] + */ + private static $conversionMultipliers = [ + 'Y' => ['multiplier' => 1E24, 'name' => 'yotta'], + 'Z' => ['multiplier' => 1E21, 'name' => 'zetta'], + 'E' => ['multiplier' => 1E18, 'name' => 'exa'], + 'P' => ['multiplier' => 1E15, 'name' => 'peta'], + 'T' => ['multiplier' => 1E12, 'name' => 'tera'], + 'G' => ['multiplier' => 1E9, 'name' => 'giga'], + 'M' => ['multiplier' => 1E6, 'name' => 'mega'], + 'k' => ['multiplier' => 1E3, 'name' => 'kilo'], + 'h' => ['multiplier' => 1E2, 'name' => 'hecto'], + 'e' => ['multiplier' => 1E1, 'name' => 'dekao'], + 'da' => ['multiplier' => 1E1, 'name' => 'dekao'], + 'd' => ['multiplier' => 1E-1, 'name' => 'deci'], + 'c' => ['multiplier' => 1E-2, 'name' => 'centi'], + 'm' => ['multiplier' => 1E-3, 'name' => 'milli'], + 'u' => ['multiplier' => 1E-6, 'name' => 'micro'], + 'n' => ['multiplier' => 1E-9, 'name' => 'nano'], + 'p' => ['multiplier' => 1E-12, 'name' => 'pico'], + 'f' => ['multiplier' => 1E-15, 'name' => 'femto'], + 'a' => ['multiplier' => 1E-18, 'name' => 'atto'], + 'z' => ['multiplier' => 1E-21, 'name' => 'zepto'], + 'y' => ['multiplier' => 1E-24, 'name' => 'yocto'], + ]; + + /** + * Details of the Multiplier prefixes that can be used with Units of Measure in CONVERTUOM(). + * + * @var mixed[] + */ + private static $binaryConversionMultipliers = [ + 'Yi' => ['multiplier' => 2 ** 80, 'name' => 'yobi'], + 'Zi' => ['multiplier' => 2 ** 70, 'name' => 'zebi'], + 'Ei' => ['multiplier' => 2 ** 60, 'name' => 'exbi'], + 'Pi' => ['multiplier' => 2 ** 50, 'name' => 'pebi'], + 'Ti' => ['multiplier' => 2 ** 40, 'name' => 'tebi'], + 'Gi' => ['multiplier' => 2 ** 30, 'name' => 'gibi'], + 'Mi' => ['multiplier' => 2 ** 20, 'name' => 'mebi'], + 'ki' => ['multiplier' => 2 ** 10, 'name' => 'kibi'], + ]; + + /** + * Details of the Units of measure conversion factors, organised by group. + * + * @var mixed[] + */ + private static $unitConversions = [ + // Conversion uses gram (g) as an intermediate unit + self::CATEGORY_WEIGHT_AND_MASS => [ + 'g' => 1.0, + 'sg' => 6.85217658567918E-05, + 'lbm' => 2.20462262184878E-03, + 'u' => 6.02214179421676E+23, + 'ozm' => 3.52739619495804E-02, + 'grain' => 1.54323583529414E+01, + 'cwt' => 2.20462262184878E-05, + 'shweight' => 2.20462262184878E-05, + 'uk_cwt' => 1.96841305522212E-05, + 'lcwt' => 1.96841305522212E-05, + 'hweight' => 1.96841305522212E-05, + 'stone' => 1.57473044417770E-04, + 'ton' => 1.10231131092439E-06, + 'uk_ton' => 9.84206527611061E-07, + 'LTON' => 9.84206527611061E-07, + 'brton' => 9.84206527611061E-07, + ], + // Conversion uses meter (m) as an intermediate unit + self::CATEGORY_DISTANCE => [ + 'm' => 1.0, + 'mi' => 6.21371192237334E-04, + 'Nmi' => 5.39956803455724E-04, + 'in' => 3.93700787401575E+01, + 'ft' => 3.28083989501312E+00, + 'yd' => 1.09361329833771E+00, + 'ang' => 1.0E+10, + 'ell' => 8.74890638670166E-01, + 'ly' => 1.05700083402462E-16, + 'parsec' => 3.24077928966473E-17, + 'pc' => 3.24077928966473E-17, + 'Pica' => 2.83464566929134E+03, + 'Picapt' => 2.83464566929134E+03, + 'pica' => 2.36220472440945E+02, + 'survey_mi' => 6.21369949494950E-04, + ], + // Conversion uses second (s) as an intermediate unit + self::CATEGORY_TIME => [ + 'yr' => 3.16880878140289E-08, + 'day' => 1.15740740740741E-05, + 'd' => 1.15740740740741E-05, + 'hr' => 2.77777777777778E-04, + 'mn' => 1.66666666666667E-02, + 'min' => 1.66666666666667E-02, + 'sec' => 1.0, + 's' => 1.0, + ], + // Conversion uses Pascal (Pa) as an intermediate unit + self::CATEGORY_PRESSURE => [ + 'Pa' => 1.0, + 'p' => 1.0, + 'atm' => 9.86923266716013E-06, + 'at' => 9.86923266716013E-06, + 'mmHg' => 7.50063755419211E-03, + 'psi' => 1.45037737730209E-04, + 'Torr' => 7.50061682704170E-03, + ], + // Conversion uses Newton (N) as an intermediate unit + self::CATEGORY_FORCE => [ + 'N' => 1.0, + 'dyn' => 1.0E+5, + 'dy' => 1.0E+5, + 'lbf' => 2.24808923655339E-01, + 'pond' => 1.01971621297793E+02, + ], + // Conversion uses Joule (J) as an intermediate unit + self::CATEGORY_ENERGY => [ + 'J' => 1.0, + 'e' => 9.99999519343231E+06, + 'c' => 2.39006249473467E-01, + 'cal' => 2.38846190642017E-01, + 'eV' => 6.24145700000000E+18, + 'ev' => 6.24145700000000E+18, + 'HPh' => 3.72506430801000E-07, + 'hh' => 3.72506430801000E-07, + 'Wh' => 2.77777916238711E-04, + 'wh' => 2.77777916238711E-04, + 'flb' => 2.37304222192651E+01, + 'BTU' => 9.47815067349015E-04, + 'btu' => 9.47815067349015E-04, + ], + // Conversion uses Horsepower (HP) as an intermediate unit + self::CATEGORY_POWER => [ + 'HP' => 1.0, + 'h' => 1.0, + 'W' => 7.45699871582270E+02, + 'w' => 7.45699871582270E+02, + 'PS' => 1.01386966542400E+00, + ], + // Conversion uses Tesla (T) as an intermediate unit + self::CATEGORY_MAGNETISM => [ + 'T' => 1.0, + 'ga' => 10000.0, + ], + // Conversion uses litre (l) as an intermediate unit + self::CATEGORY_VOLUME => [ + 'l' => 1.0, + 'L' => 1.0, + 'lt' => 1.0, + 'tsp' => 2.02884136211058E+02, + 'tspm' => 2.0E+02, + 'tbs' => 6.76280454036860E+01, + 'oz' => 3.38140227018430E+01, + 'cup' => 4.22675283773038E+00, + 'pt' => 2.11337641886519E+00, + 'us_pt' => 2.11337641886519E+00, + 'uk_pt' => 1.75975398639270E+00, + 'qt' => 1.05668820943259E+00, + 'uk_qt' => 8.79876993196351E-01, + 'gal' => 2.64172052358148E-01, + 'uk_gal' => 2.19969248299088E-01, + 'ang3' => 1.0E+27, + 'ang^3' => 1.0E+27, + 'barrel' => 6.28981077043211E-03, + 'bushel' => 2.83775932584017E-02, + 'in3' => 6.10237440947323E+01, + 'in^3' => 6.10237440947323E+01, + 'ft3' => 3.53146667214886E-02, + 'ft^3' => 3.53146667214886E-02, + 'ly3' => 1.18093498844171E-51, + 'ly^3' => 1.18093498844171E-51, + 'm3' => 1.0E-03, + 'm^3' => 1.0E-03, + 'mi3' => 2.39912758578928E-13, + 'mi^3' => 2.39912758578928E-13, + 'yd3' => 1.30795061931439E-03, + 'yd^3' => 1.30795061931439E-03, + 'Nmi3' => 1.57426214685811E-13, + 'Nmi^3' => 1.57426214685811E-13, + 'Pica3' => 2.27769904358706E+07, + 'Pica^3' => 2.27769904358706E+07, + 'Picapt3' => 2.27769904358706E+07, + 'Picapt^3' => 2.27769904358706E+07, + 'GRT' => 3.53146667214886E-04, + 'regton' => 3.53146667214886E-04, + 'MTON' => 8.82866668037215E-04, + ], + // Conversion uses hectare (ha) as an intermediate unit + self::CATEGORY_AREA => [ + 'ha' => 1.0, + 'uk_acre' => 2.47105381467165E+00, + 'us_acre' => 2.47104393046628E+00, + 'ang2' => 1.0E+24, + 'ang^2' => 1.0E+24, + 'ar' => 1.0E+02, + 'ft2' => 1.07639104167097E+05, + 'ft^2' => 1.07639104167097E+05, + 'in2' => 1.55000310000620E+07, + 'in^2' => 1.55000310000620E+07, + 'ly2' => 1.11725076312873E-28, + 'ly^2' => 1.11725076312873E-28, + 'm2' => 1.0E+04, + 'm^2' => 1.0E+04, + 'Morgen' => 4.0E+00, + 'mi2' => 3.86102158542446E-03, + 'mi^2' => 3.86102158542446E-03, + 'Nmi2' => 2.91553349598123E-03, + 'Nmi^2' => 2.91553349598123E-03, + 'Pica2' => 8.03521607043214E+10, + 'Pica^2' => 8.03521607043214E+10, + 'Picapt2' => 8.03521607043214E+10, + 'Picapt^2' => 8.03521607043214E+10, + 'yd2' => 1.19599004630108E+04, + 'yd^2' => 1.19599004630108E+04, + ], + // Conversion uses bit (bit) as an intermediate unit + self::CATEGORY_INFORMATION => [ + 'bit' => 1.0, + 'byte' => 0.125, + ], + // Conversion uses Meters per Second (m/s) as an intermediate unit + self::CATEGORY_SPEED => [ + 'm/s' => 1.0, + 'm/sec' => 1.0, + 'm/h' => 3.60E+03, + 'm/hr' => 3.60E+03, + 'mph' => 2.23693629205440E+00, + 'admkn' => 1.94260256941567E+00, + 'kn' => 1.94384449244060E+00, + ], + ]; + + /** + * getConversionGroups + * Returns a list of the different conversion groups for UOM conversions. + * + * @return array + */ + public static function getConversionCategories() + { + $conversionGroups = []; + foreach (self::$conversionUnits as $conversionUnit) { + $conversionGroups[] = $conversionUnit['Group']; + } + + return array_merge(array_unique($conversionGroups)); + } + + /** + * getConversionGroupUnits + * Returns an array of units of measure, for a specified conversion group, or for all groups. + * + * @param string $category The group whose units of measure you want to retrieve + * + * @return array + */ + public static function getConversionCategoryUnits($category = null) + { + $conversionGroups = []; + foreach (self::$conversionUnits as $conversionUnit => $conversionGroup) { + if (($category === null) || ($conversionGroup['Group'] == $category)) { + $conversionGroups[$conversionGroup['Group']][] = $conversionUnit; + } + } + + return $conversionGroups; + } + + /** + * getConversionGroupUnitDetails. + * + * @param string $category The group whose units of measure you want to retrieve + * + * @return array + */ + public static function getConversionCategoryUnitDetails($category = null) + { + $conversionGroups = []; + foreach (self::$conversionUnits as $conversionUnit => $conversionGroup) { + if (($category === null) || ($conversionGroup['Group'] == $category)) { + $conversionGroups[$conversionGroup['Group']][] = [ + 'unit' => $conversionUnit, + 'description' => $conversionGroup['Unit Name'], + ]; + } + } + + return $conversionGroups; + } + + /** + * getConversionMultipliers + * Returns an array of the Multiplier prefixes that can be used with Units of Measure in CONVERTUOM(). + * + * @return mixed[] + */ + public static function getConversionMultipliers() + { + return self::$conversionMultipliers; + } + + /** + * getBinaryConversionMultipliers + * Returns an array of the additional Multiplier prefixes that can be used with Information Units of Measure in CONVERTUOM(). + * + * @return mixed[] + */ + public static function getBinaryConversionMultipliers() + { + return self::$binaryConversionMultipliers; + } + + /** + * CONVERT. + * + * Converts a number from one measurement system to another. + * For example, CONVERT can translate a table of distances in miles to a table of distances + * in kilometers. + * + * Excel Function: + * CONVERT(value,fromUOM,toUOM) + * + * @param array|float|int|string $value the value in fromUOM to convert + * Or can be an array of values + * @param array|string $fromUOM the units for value + * Or can be an array of values + * @param array|string $toUOM the units for the result + * Or can be an array of values + * + * @return array|float|string Result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function CONVERT($value, $fromUOM, $toUOM) + { + if (is_array($value) || is_array($fromUOM) || is_array($toUOM)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $fromUOM, $toUOM); + } + + if (!is_numeric($value)) { + return ExcelError::VALUE(); + } + + try { + [$fromUOM, $fromCategory, $fromMultiplier] = self::getUOMDetails($fromUOM); + [$toUOM, $toCategory, $toMultiplier] = self::getUOMDetails($toUOM); + } catch (Exception $e) { + return ExcelError::NA(); + } + + if ($fromCategory !== $toCategory) { + return ExcelError::NA(); + } + + // @var float $value + $value *= $fromMultiplier; + + if (($fromUOM === $toUOM) && ($fromMultiplier === $toMultiplier)) { + // We've already factored $fromMultiplier into the value, so we need + // to reverse it again + return $value / $fromMultiplier; + } elseif ($fromUOM === $toUOM) { + return $value / $toMultiplier; + } elseif ($fromCategory === self::CATEGORY_TEMPERATURE) { + return self::convertTemperature($fromUOM, $toUOM, $value); + } + + $baseValue = $value * (1.0 / self::$unitConversions[$fromCategory][$fromUOM]); + + return ($baseValue * self::$unitConversions[$fromCategory][$toUOM]) / $toMultiplier; + } + + private static function getUOMDetails(string $uom) + { + if (isset(self::$conversionUnits[$uom])) { + $unitCategory = self::$conversionUnits[$uom]['Group']; + + return [$uom, $unitCategory, 1.0]; + } + + // Check 1-character standard metric multiplier prefixes + $multiplierType = substr($uom, 0, 1); + $uom = substr($uom, 1); + if (isset(self::$conversionUnits[$uom], self::$conversionMultipliers[$multiplierType])) { + if (self::$conversionUnits[$uom]['AllowPrefix'] === false) { + throw new Exception('Prefix not allowed for UoM'); + } + $unitCategory = self::$conversionUnits[$uom]['Group']; + + return [$uom, $unitCategory, self::$conversionMultipliers[$multiplierType]['multiplier']]; + } + + $multiplierType .= substr($uom, 0, 1); + $uom = substr($uom, 1); + + // Check 2-character standard metric multiplier prefixes + if (isset(self::$conversionUnits[$uom], self::$conversionMultipliers[$multiplierType])) { + if (self::$conversionUnits[$uom]['AllowPrefix'] === false) { + throw new Exception('Prefix not allowed for UoM'); + } + $unitCategory = self::$conversionUnits[$uom]['Group']; + + return [$uom, $unitCategory, self::$conversionMultipliers[$multiplierType]['multiplier']]; + } + + // Check 2-character binary multiplier prefixes + if (isset(self::$conversionUnits[$uom], self::$binaryConversionMultipliers[$multiplierType])) { + if (self::$conversionUnits[$uom]['AllowPrefix'] === false) { + throw new Exception('Prefix not allowed for UoM'); + } + $unitCategory = self::$conversionUnits[$uom]['Group']; + if ($unitCategory !== 'Information') { + throw new Exception('Binary Prefix is only allowed for Information UoM'); + } + + return [$uom, $unitCategory, self::$binaryConversionMultipliers[$multiplierType]['multiplier']]; + } + + throw new Exception('UoM Not Found'); + } + + /** + * @param float|int $value + * + * @return float|int + */ + protected static function convertTemperature(string $fromUOM, string $toUOM, $value) + { + $fromUOM = self::resolveTemperatureSynonyms($fromUOM); + $toUOM = self::resolveTemperatureSynonyms($toUOM); + + if ($fromUOM === $toUOM) { + return $value; + } + + // Convert to Kelvin + switch ($fromUOM) { + case 'F': + $value = ($value - 32) / 1.8 + 273.15; + + break; + case 'C': + $value += 273.15; + + break; + case 'Rank': + $value /= 1.8; + + break; + case 'Reau': + $value = $value * 1.25 + 273.15; + + break; + } + + // Convert from Kelvin + switch ($toUOM) { + case 'F': + $value = ($value - 273.15) * 1.8 + 32.00; + + break; + case 'C': + $value -= 273.15; + + break; + case 'Rank': + $value *= 1.8; + + break; + case 'Reau': + $value = ($value - 273.15) * 0.80000; + + break; + } + + return $value; + } + + private static function resolveTemperatureSynonyms(string $uom) + { + switch ($uom) { + case 'fah': + return 'F'; + case 'cel': + return 'C'; + case 'kel': + return 'K'; + } + + return $uom; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/EngineeringValidations.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/EngineeringValidations.php new file mode 100644 index 0000000..c0202ea --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/EngineeringValidations.php @@ -0,0 +1,33 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class EngineeringValidations +{ + /** + * @param mixed $value + */ + public static function validateFloat($value): float + { + if (!is_numeric($value)) { + throw new Exception(ExcelError::VALUE()); + } + + return (float) $value; + } + + /** + * @param mixed $value + */ + public static function validateInt($value): int + { + if (!is_numeric($value)) { + throw new Exception(ExcelError::VALUE()); + } + + return (int) floor((float) $value); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Erf.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Erf.php new file mode 100644 index 0000000..6254d47 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Erf.php @@ -0,0 +1,105 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Erf +{ + use ArrayEnabled; + + private static $twoSqrtPi = 1.128379167095512574; + + /** + * ERF. + * + * Returns the error function integrated between the lower and upper bound arguments. + * + * Note: In Excel 2007 or earlier, if you input a negative value for the upper or lower bound arguments, + * the function would return a #NUM! error. However, in Excel 2010, the function algorithm was + * improved, so that it can now calculate the function for both positive and negative ranges. + * PhpSpreadsheet follows Excel 2010 behaviour, and accepts negative arguments. + * + * Excel Function: + * ERF(lower[,upper]) + * + * @param mixed $lower Lower bound float for integrating ERF + * Or can be an array of values + * @param mixed $upper Upper bound float for integrating ERF. + * If omitted, ERF integrates between zero and lower_limit + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function ERF($lower, $upper = null) + { + if (is_array($lower) || is_array($upper)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $lower, $upper); + } + + if (is_numeric($lower)) { + if ($upper === null) { + return self::erfValue($lower); + } + if (is_numeric($upper)) { + return self::erfValue($upper) - self::erfValue($lower); + } + } + + return ExcelError::VALUE(); + } + + /** + * ERFPRECISE. + * + * Returns the error function integrated between the lower and upper bound arguments. + * + * Excel Function: + * ERF.PRECISE(limit) + * + * @param mixed $limit Float bound for integrating ERF, other bound is zero + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function ERFPRECISE($limit) + { + if (is_array($limit)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $limit); + } + + return self::ERF($limit); + } + + // + // Private method to calculate the erf value + // + public static function erfValue($value) + { + if (abs($value) > 2.2) { + return 1 - ErfC::ERFC($value); + } + $sum = $term = $value; + $xsqr = ($value * $value); + $j = 1; + do { + $term *= $xsqr / $j; + $sum -= $term / (2 * $j + 1); + ++$j; + $term *= $xsqr / $j; + $sum += $term / (2 * $j + 1); + ++$j; + if ($sum == 0.0) { + break; + } + } while (abs($term / $sum) > Functions::PRECISION); + + return self::$twoSqrtPi * $sum; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ErfC.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ErfC.php new file mode 100644 index 0000000..7b023be --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ErfC.php @@ -0,0 +1,77 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class ErfC +{ + use ArrayEnabled; + + /** + * ERFC. + * + * Returns the complementary ERF function integrated between x and infinity + * + * Note: In Excel 2007 or earlier, if you input a negative value for the lower bound argument, + * the function would return a #NUM! error. However, in Excel 2010, the function algorithm was + * improved, so that it can now calculate the function for both positive and negative x values. + * PhpSpreadsheet follows Excel 2010 behaviour, and accepts nagative arguments. + * + * Excel Function: + * ERFC(x) + * + * @param mixed $value The float lower bound for integrating ERFC + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function ERFC($value) + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + if (is_numeric($value)) { + return self::erfcValue($value); + } + + return ExcelError::VALUE(); + } + + // + // Private method to calculate the erfc value + // + private static $oneSqrtPi = 0.564189583547756287; + + private static function erfcValue($value) + { + if (abs($value) < 2.2) { + return 1 - Erf::erfValue($value); + } + if ($value < 0) { + return 2 - self::erfcValue(-$value); + } + $a = $n = 1; + $b = $c = $value; + $d = ($value * $value) + 0.5; + $q1 = $q2 = $b / $d; + do { + $t = $a * $n + $b * $value; + $a = $b; + $b = $t; + $t = $c * $n + $d * $value; + $c = $d; + $d = $t; + $n += 0.5; + $q1 = $q2; + $q2 = $b / $d; + } while ((abs($q1 - $q2) / $q2) > Functions::PRECISION); + + return self::$oneSqrtPi * exp(-$value * $value) * $q2; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Exception.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Exception.php new file mode 100644 index 0000000..87c7d22 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Exception.php @@ -0,0 +1,26 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; + +class Exception extends PhpSpreadsheetException +{ + /** + * Error handler callback. + * + * @param mixed $code + * @param mixed $string + * @param mixed $file + * @param mixed $line + * @param mixed $context + */ + public static function errorHandlerCallback($code, $string, $file, $line, $context): void + { + $e = new self($string, $code); + $e->line = $line; + $e->file = $file; + + throw $e; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/ExceptionHandler.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/ExceptionHandler.php new file mode 100644 index 0000000..6461961 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/ExceptionHandler.php @@ -0,0 +1,24 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +class ExceptionHandler +{ + /** + * Register errorhandler. + */ + public function __construct() + { + /** @var callable */ + $callable = [Exception::class, 'errorHandlerCallback']; + set_error_handler($callable, E_ALL); + } + + /** + * Unregister errorhandler. + */ + public function __destruct() + { + restore_error_handler(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial.php new file mode 100644 index 0000000..4215a51 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial.php @@ -0,0 +1,1430 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Amortization; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Coupons; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Depreciation; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Dollar; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\InterestRate; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Securities; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\TreasuryBill; + +/** + * @deprecated 1.18.0 + */ +class Financial +{ + const FINANCIAL_MAX_ITERATIONS = 128; + + const FINANCIAL_PRECISION = 1.0e-08; + + /** + * ACCRINT. + * + * Returns the accrued interest for a security that pays periodic interest. + * + * Excel Function: + * ACCRINT(issue,firstinterest,settlement,rate,par,frequency[,basis][,calc_method]) + * + * @Deprecated 1.18.0 + * + * @see Financial\Securities\AccruedInterest::periodic() + * Use the periodic() method in the Financial\Securities\AccruedInterest class instead + * + * @param mixed $issue the security's issue date + * @param mixed $firstInterest the security's first interest date + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue date + * when the security is traded to the buyer. + * @param mixed $rate the security's annual coupon rate + * @param mixed $parValue The security's par value. + * If you omit par, ACCRINT uses $1,000. + * @param mixed $frequency The number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * @param mixed $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @param mixed $calcMethod + * If true, use Issue to Settlement + * If false, use FirstInterest to Settlement + * + * @return float|string Result, or a string containing an error + */ + public static function ACCRINT( + $issue, + $firstInterest, + $settlement, + $rate, + $parValue = 1000, + $frequency = 1, + $basis = 0, + $calcMethod = true + ) { + return Securities\AccruedInterest::periodic( + $issue, + $firstInterest, + $settlement, + $rate, + $parValue, + $frequency, + $basis, + $calcMethod + ); + } + + /** + * ACCRINTM. + * + * Returns the accrued interest for a security that pays interest at maturity. + * + * Excel Function: + * ACCRINTM(issue,settlement,rate[,par[,basis]]) + * + * @Deprecated 1.18.0 + * + * @see Financial\Securities\AccruedInterest::atMaturity() + * Use the atMaturity() method in the Financial\Securities\AccruedInterest class instead + * + * @param mixed $issue The security's issue date + * @param mixed $settlement The security's settlement (or maturity) date + * @param mixed $rate The security's annual coupon rate + * @param mixed $parValue The security's par value. + * If you omit par, ACCRINT uses $1,000. + * @param mixed $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string Result, or a string containing an error + */ + public static function ACCRINTM($issue, $settlement, $rate, $parValue = 1000, $basis = 0) + { + return Securities\AccruedInterest::atMaturity($issue, $settlement, $rate, $parValue, $basis); + } + + /** + * AMORDEGRC. + * + * Returns the depreciation for each accounting period. + * This function is provided for the French accounting system. If an asset is purchased in + * the middle of the accounting period, the prorated depreciation is taken into account. + * The function is similar to AMORLINC, except that a depreciation coefficient is applied in + * the calculation depending on the life of the assets. + * This function will return the depreciation until the last period of the life of the assets + * or until the cumulated value of depreciation is greater than the cost of the assets minus + * the salvage value. + * + * Excel Function: + * AMORDEGRC(cost,purchased,firstPeriod,salvage,period,rate[,basis]) + * + * @Deprecated 1.18.0 + * + * @see Financial\Amortization::AMORDEGRC() + * Use the AMORDEGRC() method in the Financial\Amortization class instead + * + * @param float $cost The cost of the asset + * @param mixed $purchased Date of the purchase of the asset + * @param mixed $firstPeriod Date of the end of the first period + * @param mixed $salvage The salvage value at the end of the life of the asset + * @param float $period The period + * @param float $rate Rate of depreciation + * @param int $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string (string containing the error type if there is an error) + */ + public static function AMORDEGRC($cost, $purchased, $firstPeriod, $salvage, $period, $rate, $basis = 0) + { + return Amortization::AMORDEGRC($cost, $purchased, $firstPeriod, $salvage, $period, $rate, $basis); + } + + /** + * AMORLINC. + * + * Returns the depreciation for each accounting period. + * This function is provided for the French accounting system. If an asset is purchased in + * the middle of the accounting period, the prorated depreciation is taken into account. + * + * Excel Function: + * AMORLINC(cost,purchased,firstPeriod,salvage,period,rate[,basis]) + * + * @Deprecated 1.18.0 + * + * @see Financial\Amortization::AMORLINC() + * Use the AMORLINC() method in the Financial\Amortization class instead + * + * @param float $cost The cost of the asset + * @param mixed $purchased Date of the purchase of the asset + * @param mixed $firstPeriod Date of the end of the first period + * @param mixed $salvage The salvage value at the end of the life of the asset + * @param float $period The period + * @param float $rate Rate of depreciation + * @param int $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string (string containing the error type if there is an error) + */ + public static function AMORLINC($cost, $purchased, $firstPeriod, $salvage, $period, $rate, $basis = 0) + { + return Amortization::AMORLINC($cost, $purchased, $firstPeriod, $salvage, $period, $rate, $basis); + } + + /** + * COUPDAYBS. + * + * Returns the number of days from the beginning of the coupon period to the settlement date. + * + * Excel Function: + * COUPDAYBS(settlement,maturity,frequency[,basis]) + * + * @Deprecated 1.18.0 + * + * @see Financial\Coupons::COUPDAYBS() + * Use the COUPDAYBS() method in the Financial\Coupons class instead + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param int $frequency the number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * @param int $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string + */ + public static function COUPDAYBS($settlement, $maturity, $frequency, $basis = 0) + { + return Coupons::COUPDAYBS($settlement, $maturity, $frequency, $basis); + } + + /** + * COUPDAYS. + * + * Returns the number of days in the coupon period that contains the settlement date. + * + * Excel Function: + * COUPDAYS(settlement,maturity,frequency[,basis]) + * + * @Deprecated 1.18.0 + * + * @see Financial\Coupons::COUPDAYS() + * Use the COUPDAYS() method in the Financial\Coupons class instead + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $frequency the number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * @param int $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string + */ + public static function COUPDAYS($settlement, $maturity, $frequency, $basis = 0) + { + return Coupons::COUPDAYS($settlement, $maturity, $frequency, $basis); + } + + /** + * COUPDAYSNC. + * + * Returns the number of days from the settlement date to the next coupon date. + * + * Excel Function: + * COUPDAYSNC(settlement,maturity,frequency[,basis]) + * + * @Deprecated 1.18.0 + * + * @see Financial\Coupons::COUPDAYSNC() + * Use the COUPDAYSNC() method in the Financial\Coupons class instead + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $frequency the number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * @param int $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string + */ + public static function COUPDAYSNC($settlement, $maturity, $frequency, $basis = 0) + { + return Coupons::COUPDAYSNC($settlement, $maturity, $frequency, $basis); + } + + /** + * COUPNCD. + * + * Returns the next coupon date after the settlement date. + * + * Excel Function: + * COUPNCD(settlement,maturity,frequency[,basis]) + * + * @Deprecated 1.18.0 + * + * @see Financial\Coupons::COUPNCD() + * Use the COUPNCD() method in the Financial\Coupons class instead + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $frequency the number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * @param int $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function COUPNCD($settlement, $maturity, $frequency, $basis = 0) + { + return Coupons::COUPNCD($settlement, $maturity, $frequency, $basis); + } + + /** + * COUPNUM. + * + * Returns the number of coupons payable between the settlement date and maturity date, + * rounded up to the nearest whole coupon. + * + * Excel Function: + * COUPNUM(settlement,maturity,frequency[,basis]) + * + * @Deprecated 1.18.0 + * + * @see Financial\Coupons::COUPNUM() + * Use the COUPNUM() method in the Financial\Coupons class instead + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $frequency the number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * @param int $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return int|string + */ + public static function COUPNUM($settlement, $maturity, $frequency, $basis = 0) + { + return Coupons::COUPNUM($settlement, $maturity, $frequency, $basis); + } + + /** + * COUPPCD. + * + * Returns the previous coupon date before the settlement date. + * + * Excel Function: + * COUPPCD(settlement,maturity,frequency[,basis]) + * + * @Deprecated 1.18.0 + * + * @see Financial\Coupons::COUPPCD() + * Use the COUPPCD() method in the Financial\Coupons class instead + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $frequency the number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * @param int $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function COUPPCD($settlement, $maturity, $frequency, $basis = 0) + { + return Coupons::COUPPCD($settlement, $maturity, $frequency, $basis); + } + + /** + * CUMIPMT. + * + * Returns the cumulative interest paid on a loan between the start and end periods. + * + * Excel Function: + * CUMIPMT(rate,nper,pv,start,end[,type]) + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Constant\Periodic\Cumulative::interest() + * Use the interest() method in the Financial\CashFlow\Constant\Periodic\Cumulative class instead + * + * @param float $rate The Interest rate + * @param int $nper The total number of payment periods + * @param float $pv Present Value + * @param int $start The first period in the calculation. + * Payment periods are numbered beginning with 1. + * @param int $end the last period in the calculation + * @param int $type A number 0 or 1 and indicates when payments are due: + * 0 or omitted At the end of the period. + * 1 At the beginning of the period. + * + * @return float|string + */ + public static function CUMIPMT($rate, $nper, $pv, $start, $end, $type = 0) + { + return Financial\CashFlow\Constant\Periodic\Cumulative::interest($rate, $nper, $pv, $start, $end, $type); + } + + /** + * CUMPRINC. + * + * Returns the cumulative principal paid on a loan between the start and end periods. + * + * Excel Function: + * CUMPRINC(rate,nper,pv,start,end[,type]) + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Constant\Periodic\Cumulative::principal() + * Use the principal() method in the Financial\CashFlow\Constant\Periodic\Cumulative class instead + * + * @param float $rate The Interest rate + * @param int $nper The total number of payment periods + * @param float $pv Present Value + * @param int $start The first period in the calculation. + * Payment periods are numbered beginning with 1. + * @param int $end the last period in the calculation + * @param int $type A number 0 or 1 and indicates when payments are due: + * 0 or omitted At the end of the period. + * 1 At the beginning of the period. + * + * @return float|string + */ + public static function CUMPRINC($rate, $nper, $pv, $start, $end, $type = 0) + { + return Financial\CashFlow\Constant\Periodic\Cumulative::principal($rate, $nper, $pv, $start, $end, $type); + } + + /** + * DB. + * + * Returns the depreciation of an asset for a specified period using the + * fixed-declining balance method. + * This form of depreciation is used if you want to get a higher depreciation value + * at the beginning of the depreciation (as opposed to linear depreciation). The + * depreciation value is reduced with every depreciation period by the depreciation + * already deducted from the initial cost. + * + * Excel Function: + * DB(cost,salvage,life,period[,month]) + * + * @Deprecated 1.18.0 + * + * @see Financial\Depreciation::DB() + * Use the DB() method in the Financial\Depreciation class instead + * + * @param float $cost Initial cost of the asset + * @param float $salvage Value at the end of the depreciation. + * (Sometimes called the salvage value of the asset) + * @param int $life Number of periods over which the asset is depreciated. + * (Sometimes called the useful life of the asset) + * @param int $period The period for which you want to calculate the + * depreciation. Period must use the same units as life. + * @param int $month Number of months in the first year. If month is omitted, + * it defaults to 12. + * + * @return float|string + */ + public static function DB($cost, $salvage, $life, $period, $month = 12) + { + return Depreciation::DB($cost, $salvage, $life, $period, $month); + } + + /** + * DDB. + * + * Returns the depreciation of an asset for a specified period using the + * double-declining balance method or some other method you specify. + * + * Excel Function: + * DDB(cost,salvage,life,period[,factor]) + * + * @Deprecated 1.18.0 + * + * @see Financial\Depreciation::DDB() + * Use the DDB() method in the Financial\Depreciation class instead + * + * @param float $cost Initial cost of the asset + * @param float $salvage Value at the end of the depreciation. + * (Sometimes called the salvage value of the asset) + * @param int $life Number of periods over which the asset is depreciated. + * (Sometimes called the useful life of the asset) + * @param int $period The period for which you want to calculate the + * depreciation. Period must use the same units as life. + * @param float $factor The rate at which the balance declines. + * If factor is omitted, it is assumed to be 2 (the + * double-declining balance method). + * + * @return float|string + */ + public static function DDB($cost, $salvage, $life, $period, $factor = 2.0) + { + return Depreciation::DDB($cost, $salvage, $life, $period, $factor); + } + + /** + * DISC. + * + * Returns the discount rate for a security. + * + * Excel Function: + * DISC(settlement,maturity,price,redemption[,basis]) + * + * @Deprecated 1.18.0 + * + * @see Financial\Securities\Rates::discount() + * Use the discount() method in the Financial\Securities\Rates class instead + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param int $price The security's price per $100 face value + * @param int $redemption The security's redemption value per $100 face value + * @param int $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string + */ + public static function DISC($settlement, $maturity, $price, $redemption, $basis = 0) + { + return Financial\Securities\Rates::discount($settlement, $maturity, $price, $redemption, $basis); + } + + /** + * DOLLARDE. + * + * Converts a dollar price expressed as an integer part and a fraction + * part into a dollar price expressed as a decimal number. + * Fractional dollar numbers are sometimes used for security prices. + * + * Excel Function: + * DOLLARDE(fractional_dollar,fraction) + * + * @Deprecated 1.18.0 + * + * @see Financial\Dollar::decimal() + * Use the decimal() method in the Financial\Dollar class instead + * + * @param array|float $fractional_dollar Fractional Dollar + * @param array|int $fraction Fraction + * + * @return array|float|string + */ + public static function DOLLARDE($fractional_dollar = null, $fraction = 0) + { + return Dollar::decimal($fractional_dollar, $fraction); + } + + /** + * DOLLARFR. + * + * Converts a dollar price expressed as a decimal number into a dollar price + * expressed as a fraction. + * Fractional dollar numbers are sometimes used for security prices. + * + * Excel Function: + * DOLLARFR(decimal_dollar,fraction) + * + * @Deprecated 1.18.0 + * + * @see Financial\Dollar::fractional() + * Use the fractional() method in the Financial\Dollar class instead + * + * @param array|float $decimal_dollar Decimal Dollar + * @param array|int $fraction Fraction + * + * @return array|float|string + */ + public static function DOLLARFR($decimal_dollar = null, $fraction = 0) + { + return Dollar::fractional($decimal_dollar, $fraction); + } + + /** + * EFFECT. + * + * Returns the effective interest rate given the nominal rate and the number of + * compounding payments per year. + * + * Excel Function: + * EFFECT(nominal_rate,npery) + * + * @Deprecated 1.18.0 + * + * @see Financial\InterestRate::effective() + * Use the effective() method in the Financial\InterestRate class instead + * + * @param float $nominalRate Nominal interest rate + * @param int $periodsPerYear Number of compounding payments per year + * + * @return float|string + */ + public static function EFFECT($nominalRate = 0, $periodsPerYear = 0) + { + return Financial\InterestRate::effective($nominalRate, $periodsPerYear); + } + + /** + * FV. + * + * Returns the Future Value of a cash flow with constant payments and interest rate (annuities). + * + * Excel Function: + * FV(rate,nper,pmt[,pv[,type]]) + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Constant\Periodic::futureValue() + * Use the futureValue() method in the Financial\CashFlow\Constant\Periodic class instead + * + * @param float $rate The interest rate per period + * @param int $nper Total number of payment periods in an annuity + * @param float $pmt The payment made each period: it cannot change over the + * life of the annuity. Typically, pmt contains principal + * and interest but no other fees or taxes. + * @param float $pv present Value, or the lump-sum amount that a series of + * future payments is worth right now + * @param int $type A number 0 or 1 and indicates when payments are due: + * 0 or omitted At the end of the period. + * 1 At the beginning of the period. + * + * @return float|string + */ + public static function FV($rate = 0, $nper = 0, $pmt = 0, $pv = 0, $type = 0) + { + return Financial\CashFlow\Constant\Periodic::futureValue($rate, $nper, $pmt, $pv, $type); + } + + /** + * FVSCHEDULE. + * + * Returns the future value of an initial principal after applying a series of compound interest rates. + * Use FVSCHEDULE to calculate the future value of an investment with a variable or adjustable rate. + * + * Excel Function: + * FVSCHEDULE(principal,schedule) + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Single::futureValue() + * Use the futureValue() method in the Financial\CashFlow\Single class instead + * + * @param float $principal the present value + * @param float[] $schedule an array of interest rates to apply + * + * @return float|string + */ + public static function FVSCHEDULE($principal, $schedule) + { + return Financial\CashFlow\Single::futureValue($principal, $schedule); + } + + /** + * INTRATE. + * + * Returns the interest rate for a fully invested security. + * + * Excel Function: + * INTRATE(settlement,maturity,investment,redemption[,basis]) + * + * @Deprecated 1.18.0 + * + * @see Financial\Securities\Rates::interest() + * Use the interest() method in the Financial\Securities\Rates class instead + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue date when the security + * is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param int $investment the amount invested in the security + * @param int $redemption the amount to be received at maturity + * @param int $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string + */ + public static function INTRATE($settlement, $maturity, $investment, $redemption, $basis = 0) + { + return Financial\Securities\Rates::interest($settlement, $maturity, $investment, $redemption, $basis); + } + + /** + * IPMT. + * + * Returns the interest payment for a given period for an investment based on periodic, constant payments + * and a constant interest rate. + * + * Excel Function: + * IPMT(rate,per,nper,pv[,fv][,type]) + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Constant\Periodic\Interest::payment() + * Use the payment() method in the Financial\CashFlow\Constant\Periodic class instead + * + * @param float $rate Interest rate per period + * @param int $per Period for which we want to find the interest + * @param int $nper Number of periods + * @param float $pv Present Value + * @param float $fv Future Value + * @param int $type Payment type: 0 = at the end of each period, 1 = at the beginning of each period + * + * @return float|string + */ + public static function IPMT($rate, $per, $nper, $pv, $fv = 0, $type = 0) + { + return Financial\CashFlow\Constant\Periodic\Interest::payment($rate, $per, $nper, $pv, $fv, $type); + } + + /** + * IRR. + * + * Returns the internal rate of return for a series of cash flows represented by the numbers in values. + * These cash flows do not have to be even, as they would be for an annuity. However, the cash flows must occur + * at regular intervals, such as monthly or annually. The internal rate of return is the interest rate received + * for an investment consisting of payments (negative values) and income (positive values) that occur at regular + * periods. + * + * Excel Function: + * IRR(values[,guess]) + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Variable\Periodic::rate() + * Use the rate() method in the Financial\CashFlow\Variable\Periodic class instead + * + * @param mixed $values An array or a reference to cells that contain numbers for which you want + * to calculate the internal rate of return. + * Values must contain at least one positive value and one negative value to + * calculate the internal rate of return. + * @param mixed $guess A number that you guess is close to the result of IRR + * + * @return float|string + */ + public static function IRR($values, $guess = 0.1) + { + return Financial\CashFlow\Variable\Periodic::rate($values, $guess); + } + + /** + * ISPMT. + * + * Returns the interest payment for an investment based on an interest rate and a constant payment schedule. + * + * Excel Function: + * =ISPMT(interest_rate, period, number_payments, pv) + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Constant\Periodic\Interest::schedulePayment() + * Use the schedulePayment() method in the Financial\CashFlow\Constant\Periodic class instead + * + * interest_rate is the interest rate for the investment + * + * period is the period to calculate the interest rate. It must be betweeen 1 and number_payments. + * + * number_payments is the number of payments for the annuity + * + * pv is the loan amount or present value of the payments + */ + public static function ISPMT(...$args) + { + return Financial\CashFlow\Constant\Periodic\Interest::schedulePayment(...$args); + } + + /** + * MIRR. + * + * Returns the modified internal rate of return for a series of periodic cash flows. MIRR considers both + * the cost of the investment and the interest received on reinvestment of cash. + * + * Excel Function: + * MIRR(values,finance_rate, reinvestment_rate) + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Variable\Periodic::modifiedRate() + * Use the modifiedRate() method in the Financial\CashFlow\Variable\Periodic class instead + * + * @param mixed $values An array or a reference to cells that contain a series of payments and + * income occurring at regular intervals. + * Payments are negative value, income is positive values. + * @param mixed $finance_rate The interest rate you pay on the money used in the cash flows + * @param mixed $reinvestment_rate The interest rate you receive on the cash flows as you reinvest them + * + * @return float|string Result, or a string containing an error + */ + public static function MIRR($values, $finance_rate, $reinvestment_rate) + { + return Financial\CashFlow\Variable\Periodic::modifiedRate($values, $finance_rate, $reinvestment_rate); + } + + /** + * NOMINAL. + * + * Returns the nominal interest rate given the effective rate and the number of compounding payments per year. + * + * Excel Function: + * NOMINAL(effect_rate, npery) + * + * @Deprecated 1.18.0 + * + * @see Financial\InterestRate::nominal() + * Use the nominal() method in the Financial\InterestRate class instead + * + * @param float $effectiveRate Effective interest rate + * @param int $periodsPerYear Number of compounding payments per year + * + * @return float|string Result, or a string containing an error + */ + public static function NOMINAL($effectiveRate = 0, $periodsPerYear = 0) + { + return InterestRate::nominal($effectiveRate, $periodsPerYear); + } + + /** + * NPER. + * + * Returns the number of periods for a cash flow with constant periodic payments (annuities), and interest rate. + * + * @Deprecated 1.18.0 + * + * @param float $rate Interest rate per period + * @param int $pmt Periodic payment (annuity) + * @param float $pv Present Value + * @param float $fv Future Value + * @param int $type Payment type: 0 = at the end of each period, 1 = at the beginning of each period + * + * @return float|string Result, or a string containing an error + * + *@see Financial\CashFlow\Constant\Periodic::periods() + * Use the periods() method in the Financial\CashFlow\Constant\Periodic class instead + */ + public static function NPER($rate = 0, $pmt = 0, $pv = 0, $fv = 0, $type = 0) + { + return Financial\CashFlow\Constant\Periodic::periods($rate, $pmt, $pv, $fv, $type); + } + + /** + * NPV. + * + * Returns the Net Present Value of a cash flow series given a discount rate. + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Variable\Periodic::presentValue() + * Use the presentValue() method in the Financial\CashFlow\Variable\Periodic class instead + * + * @return float + */ + public static function NPV(...$args) + { + return Financial\CashFlow\Variable\Periodic::presentValue(...$args); + } + + /** + * PDURATION. + * + * Calculates the number of periods required for an investment to reach a specified value. + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Single::periods() + * Use the periods() method in the Financial\CashFlow\Single class instead + * + * @param float $rate Interest rate per period + * @param float $pv Present Value + * @param float $fv Future Value + * + * @return float|string Result, or a string containing an error + */ + public static function PDURATION($rate = 0, $pv = 0, $fv = 0) + { + return Financial\CashFlow\Single::periods($rate, $pv, $fv); + } + + /** + * PMT. + * + * Returns the constant payment (annuity) for a cash flow with a constant interest rate. + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Constant\Periodic\Payments::annuity() + * Use the annuity() method in the Financial\CashFlow\Constant\Periodic\Payments class instead + * + * @param float $rate Interest rate per period + * @param int $nper Number of periods + * @param float $pv Present Value + * @param float $fv Future Value + * @param int $type Payment type: 0 = at the end of each period, 1 = at the beginning of each period + * + * @return float|string Result, or a string containing an error + */ + public static function PMT($rate = 0, $nper = 0, $pv = 0, $fv = 0, $type = 0) + { + return Financial\CashFlow\Constant\Periodic\Payments::annuity($rate, $nper, $pv, $fv, $type); + } + + /** + * PPMT. + * + * Returns the interest payment for a given period for an investment based on periodic, constant payments + * and a constant interest rate. + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Constant\Periodic\Payments::interestPayment() + * Use the interestPayment() method in the Financial\CashFlow\Constant\Periodic\Payments class instead + * + * @param float $rate Interest rate per period + * @param int $per Period for which we want to find the interest + * @param int $nper Number of periods + * @param float $pv Present Value + * @param float $fv Future Value + * @param int $type Payment type: 0 = at the end of each period, 1 = at the beginning of each period + * + * @return float|string Result, or a string containing an error + */ + public static function PPMT($rate, $per, $nper, $pv, $fv = 0, $type = 0) + { + return Financial\CashFlow\Constant\Periodic\Payments::interestPayment($rate, $per, $nper, $pv, $fv, $type); + } + + /** + * PRICE. + * + * Returns the price per $100 face value of a security that pays periodic interest. + * + * @Deprecated 1.18.0 + * + * @see Financial\Securities\Price::price() + * Use the price() method in the Financial\Securities\Price class instead + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue date when the security + * is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param float $rate the security's annual coupon rate + * @param float $yield the security's annual yield + * @param float $redemption The number of coupon payments per year. + * For annual payments, frequency = 1; + * for semiannual, frequency = 2; + * for quarterly, frequency = 4. + * @param int $frequency + * @param int $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string Result, or a string containing an error + */ + public static function PRICE($settlement, $maturity, $rate, $yield, $redemption, $frequency, $basis = 0) + { + return Securities\Price::price($settlement, $maturity, $rate, $yield, $redemption, $frequency, $basis); + } + + /** + * PRICEDISC. + * + * Returns the price per $100 face value of a discounted security. + * + * @Deprecated 1.18.0 + * + * @see Financial\Securities\Price::priceDiscounted() + * Use the priceDiscounted() method in the Financial\Securities\Price class instead + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue date when the security + * is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param int $discount The security's discount rate + * @param int $redemption The security's redemption value per $100 face value + * @param int $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string Result, or a string containing an error + */ + public static function PRICEDISC($settlement, $maturity, $discount, $redemption, $basis = 0) + { + return Securities\Price::priceDiscounted($settlement, $maturity, $discount, $redemption, $basis); + } + + /** + * PRICEMAT. + * + * Returns the price per $100 face value of a security that pays interest at maturity. + * + * @Deprecated 1.18.0 + * + * @see Financial\Securities\Price::priceAtMaturity() + * Use the priceAtMaturity() method in the Financial\Securities\Price class instead + * + * @param mixed $settlement The security's settlement date. + * The security's settlement date is the date after the issue date when the security + * is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $issue The security's issue date + * @param int $rate The security's interest rate at date of issue + * @param int $yield The security's annual yield + * @param int $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string Result, or a string containing an error + */ + public static function PRICEMAT($settlement, $maturity, $issue, $rate, $yield, $basis = 0) + { + return Securities\Price::priceAtMaturity($settlement, $maturity, $issue, $rate, $yield, $basis); + } + + /** + * PV. + * + * Returns the Present Value of a cash flow with constant payments and interest rate (annuities). + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Constant\Periodic::presentValue() + * Use the presentValue() method in the Financial\CashFlow\Constant\Periodic class instead + * + * @param float $rate Interest rate per period + * @param int $nper Number of periods + * @param float $pmt Periodic payment (annuity) + * @param float $fv Future Value + * @param int $type Payment type: 0 = at the end of each period, 1 = at the beginning of each period + * + * @return float|string Result, or a string containing an error + */ + public static function PV($rate = 0, $nper = 0, $pmt = 0, $fv = 0, $type = 0) + { + return Financial\CashFlow\Constant\Periodic::presentValue($rate, $nper, $pmt, $fv, $type); + } + + /** + * RATE. + * + * Returns the interest rate per period of an annuity. + * RATE is calculated by iteration and can have zero or more solutions. + * If the successive results of RATE do not converge to within 0.0000001 after 20 iterations, + * RATE returns the #NUM! error value. + * + * Excel Function: + * RATE(nper,pmt,pv[,fv[,type[,guess]]]) + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Constant\Periodic\Interest::rate() + * Use the rate() method in the Financial\CashFlow\Constant\Periodic class instead + * + * @param mixed $nper The total number of payment periods in an annuity + * @param mixed $pmt The payment made each period and cannot change over the life + * of the annuity. + * Typically, pmt includes principal and interest but no other + * fees or taxes. + * @param mixed $pv The present value - the total amount that a series of future + * payments is worth now + * @param mixed $fv The future value, or a cash balance you want to attain after + * the last payment is made. If fv is omitted, it is assumed + * to be 0 (the future value of a loan, for example, is 0). + * @param mixed $type A number 0 or 1 and indicates when payments are due: + * 0 or omitted At the end of the period. + * 1 At the beginning of the period. + * @param mixed $guess Your guess for what the rate will be. + * If you omit guess, it is assumed to be 10 percent. + * + * @return float|string + */ + public static function RATE($nper, $pmt, $pv, $fv = 0.0, $type = 0, $guess = 0.1) + { + return Financial\CashFlow\Constant\Periodic\Interest::rate($nper, $pmt, $pv, $fv, $type, $guess); + } + + /** + * RECEIVED. + * + * Returns the amount received at maturity for a fully invested Security. + * + * @Deprecated 1.18.0 + * + * @see Financial\Securities\Price::received() + * Use the received() method in the Financial\Securities\Price class instead + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue date when the security + * is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $investment The amount invested in the security + * @param mixed $discount The security's discount rate + * @param mixed $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string Result, or a string containing an error + */ + public static function RECEIVED($settlement, $maturity, $investment, $discount, $basis = 0) + { + return Financial\Securities\Price::received($settlement, $maturity, $investment, $discount, $basis); + } + + /** + * RRI. + * + * Calculates the interest rate required for an investment to grow to a specified future value . + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Single::interestRate() + * Use the interestRate() method in the Financial\CashFlow\Single class instead + * + * @param float $nper The number of periods over which the investment is made + * @param float $pv Present Value + * @param float $fv Future Value + * + * @return float|string Result, or a string containing an error + */ + public static function RRI($nper = 0, $pv = 0, $fv = 0) + { + return Financial\CashFlow\Single::interestRate($nper, $pv, $fv); + } + + /** + * SLN. + * + * Returns the straight-line depreciation of an asset for one period + * + * @Deprecated 1.18.0 + * + * @see Financial\Depreciation::SLN() + * Use the SLN() method in the Financial\Depreciation class instead + * + * @param mixed $cost Initial cost of the asset + * @param mixed $salvage Value at the end of the depreciation + * @param mixed $life Number of periods over which the asset is depreciated + * + * @return float|string Result, or a string containing an error + */ + public static function SLN($cost, $salvage, $life) + { + return Depreciation::SLN($cost, $salvage, $life); + } + + /** + * SYD. + * + * Returns the sum-of-years' digits depreciation of an asset for a specified period. + * + * @Deprecated 1.18.0 + * + * @see Financial\Depreciation::SYD() + * Use the SYD() method in the Financial\Depreciation class instead + * + * @param mixed $cost Initial cost of the asset + * @param mixed $salvage Value at the end of the depreciation + * @param mixed $life Number of periods over which the asset is depreciated + * @param mixed $period Period + * + * @return float|string Result, or a string containing an error + */ + public static function SYD($cost, $salvage, $life, $period) + { + return Depreciation::SYD($cost, $salvage, $life, $period); + } + + /** + * TBILLEQ. + * + * Returns the bond-equivalent yield for a Treasury bill. + * + * @Deprecated 1.18.0 + * + * @see Financial\TreasuryBill::bondEquivalentYield() + * Use the bondEquivalentYield() method in the Financial\TreasuryBill class instead + * + * @param mixed $settlement The Treasury bill's settlement date. + * The Treasury bill's settlement date is the date after the issue date when the + * Treasury bill is traded to the buyer. + * @param mixed $maturity The Treasury bill's maturity date. + * The maturity date is the date when the Treasury bill expires. + * @param int $discount The Treasury bill's discount rate + * + * @return float|string Result, or a string containing an error + */ + public static function TBILLEQ($settlement, $maturity, $discount) + { + return TreasuryBill::bondEquivalentYield($settlement, $maturity, $discount); + } + + /** + * TBILLPRICE. + * + * Returns the price per $100 face value for a Treasury bill. + * + * @Deprecated 1.18.0 + * + * @see Financial\TreasuryBill::price() + * Use the price() method in the Financial\TreasuryBill class instead + * + * @param mixed $settlement The Treasury bill's settlement date. + * The Treasury bill's settlement date is the date after the issue date + * when the Treasury bill is traded to the buyer. + * @param mixed $maturity The Treasury bill's maturity date. + * The maturity date is the date when the Treasury bill expires. + * @param int $discount The Treasury bill's discount rate + * + * @return float|string Result, or a string containing an error + */ + public static function TBILLPRICE($settlement, $maturity, $discount) + { + return TreasuryBill::price($settlement, $maturity, $discount); + } + + /** + * TBILLYIELD. + * + * Returns the yield for a Treasury bill. + * + * @Deprecated 1.18.0 + * + * @see Financial\TreasuryBill::yield() + * Use the yield() method in the Financial\TreasuryBill class instead + * + * @param mixed $settlement The Treasury bill's settlement date. + * The Treasury bill's settlement date is the date after the issue date + * when the Treasury bill is traded to the buyer. + * @param mixed $maturity The Treasury bill's maturity date. + * The maturity date is the date when the Treasury bill expires. + * @param int $price The Treasury bill's price per $100 face value + * + * @return float|mixed|string + */ + public static function TBILLYIELD($settlement, $maturity, $price) + { + return TreasuryBill::yield($settlement, $maturity, $price); + } + + /** + * XIRR. + * + * Returns the internal rate of return for a schedule of cash flows that is not necessarily periodic. + * + * Excel Function: + * =XIRR(values,dates,guess) + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Variable\NonPeriodic::rate() + * Use the rate() method in the Financial\CashFlow\Variable\NonPeriodic class instead + * + * @param float[] $values A series of cash flow payments + * The series of values must contain at least one positive value & one negative value + * @param mixed[] $dates A series of payment dates + * The first payment date indicates the beginning of the schedule of payments + * All other dates must be later than this date, but they may occur in any order + * @param float $guess An optional guess at the expected answer + * + * @return float|mixed|string + */ + public static function XIRR($values, $dates, $guess = 0.1) + { + return Financial\CashFlow\Variable\NonPeriodic::rate($values, $dates, $guess); + } + + /** + * XNPV. + * + * Returns the net present value for a schedule of cash flows that is not necessarily periodic. + * To calculate the net present value for a series of cash flows that is periodic, use the NPV function. + * + * Excel Function: + * =XNPV(rate,values,dates) + * + * @Deprecated 1.18.0 + * + * @see Financial\CashFlow\Variable\NonPeriodic::presentValue() + * Use the presentValue() method in the Financial\CashFlow\Variable\NonPeriodic class instead + * + * @param float $rate the discount rate to apply to the cash flows + * @param float[] $values A series of cash flows that corresponds to a schedule of payments in dates. + * The first payment is optional and corresponds to a cost or payment that occurs + * at the beginning of the investment. + * If the first value is a cost or payment, it must be a negative value. + * All succeeding payments are discounted based on a 365-day year. + * The series of values must contain at least one positive value and one negative value. + * @param mixed[] $dates A schedule of payment dates that corresponds to the cash flow payments. + * The first payment date indicates the beginning of the schedule of payments. + * All other dates must be later than this date, but they may occur in any order. + * + * @return float|mixed|string + */ + public static function XNPV($rate, $values, $dates) + { + return Financial\CashFlow\Variable\NonPeriodic::presentValue($rate, $values, $dates); + } + + /** + * YIELDDISC. + * + * Returns the annual yield of a security that pays interest at maturity. + * + * @Deprecated 1.18.0 + * + * @see Financial\Securities\Yields::yieldDiscounted() + * Use the yieldDiscounted() method in the Financial\Securities\Yields class instead + * + * @param mixed $settlement The security's settlement date. + * The security's settlement date is the date after the issue date when the security + * is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param int $price The security's price per $100 face value + * @param int $redemption The security's redemption value per $100 face value + * @param int $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string Result, or a string containing an error + */ + public static function YIELDDISC($settlement, $maturity, $price, $redemption, $basis = 0) + { + return Securities\Yields::yieldDiscounted($settlement, $maturity, $price, $redemption, $basis); + } + + /** + * YIELDMAT. + * + * Returns the annual yield of a security that pays interest at maturity. + * + * @Deprecated 1.18.0 + * + * @see Financial\Securities\Yields::yieldAtMaturity() + * Use the yieldAtMaturity() method in the Financial\Securities\Yields class instead + * + * @param mixed $settlement The security's settlement date. + * The security's settlement date is the date after the issue date when the security + * is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $issue The security's issue date + * @param int $rate The security's interest rate at date of issue + * @param int $price The security's price per $100 face value + * @param int $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string Result, or a string containing an error + */ + public static function YIELDMAT($settlement, $maturity, $issue, $rate, $price, $basis = 0) + { + return Securities\Yields::yieldAtMaturity($settlement, $maturity, $issue, $rate, $price, $basis); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Amortization.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Amortization.php new file mode 100644 index 0000000..691ba40 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Amortization.php @@ -0,0 +1,214 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial; + +use PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; + +class Amortization +{ + /** + * AMORDEGRC. + * + * Returns the depreciation for each accounting period. + * This function is provided for the French accounting system. If an asset is purchased in + * the middle of the accounting period, the prorated depreciation is taken into account. + * The function is similar to AMORLINC, except that a depreciation coefficient is applied in + * the calculation depending on the life of the assets. + * This function will return the depreciation until the last period of the life of the assets + * or until the cumulated value of depreciation is greater than the cost of the assets minus + * the salvage value. + * + * Excel Function: + * AMORDEGRC(cost,purchased,firstPeriod,salvage,period,rate[,basis]) + * + * @param mixed $cost The float cost of the asset + * @param mixed $purchased Date of the purchase of the asset + * @param mixed $firstPeriod Date of the end of the first period + * @param mixed $salvage The salvage value at the end of the life of the asset + * @param mixed $period the period (float) + * @param mixed $rate rate of depreciation (float) + * @param mixed $basis The type of day count to use (int). + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string (string containing the error type if there is an error) + */ + public static function AMORDEGRC( + $cost, + $purchased, + $firstPeriod, + $salvage, + $period, + $rate, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $cost = Functions::flattenSingleValue($cost); + $purchased = Functions::flattenSingleValue($purchased); + $firstPeriod = Functions::flattenSingleValue($firstPeriod); + $salvage = Functions::flattenSingleValue($salvage); + $period = Functions::flattenSingleValue($period); + $rate = Functions::flattenSingleValue($rate); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $cost = FinancialValidations::validateFloat($cost); + $purchased = FinancialValidations::validateDate($purchased); + $firstPeriod = FinancialValidations::validateDate($firstPeriod); + $salvage = FinancialValidations::validateFloat($salvage); + $period = FinancialValidations::validateInt($period); + $rate = FinancialValidations::validateFloat($rate); + $basis = FinancialValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + $yearFracx = DateTimeExcel\YearFrac::fraction($purchased, $firstPeriod, $basis); + if (is_string($yearFracx)) { + return $yearFracx; + } + /** @var float */ + $yearFrac = $yearFracx; + + $amortiseCoeff = self::getAmortizationCoefficient($rate); + + $rate *= $amortiseCoeff; + $fNRate = round($yearFrac * $rate * $cost, 0); + $cost -= $fNRate; + $fRest = $cost - $salvage; + + for ($n = 0; $n < $period; ++$n) { + $fNRate = round($rate * $cost, 0); + $fRest -= $fNRate; + + if ($fRest < 0.0) { + switch ($period - $n) { + case 0: + case 1: + return round($cost * 0.5, 0); + default: + return 0.0; + } + } + $cost -= $fNRate; + } + + return $fNRate; + } + + /** + * AMORLINC. + * + * Returns the depreciation for each accounting period. + * This function is provided for the French accounting system. If an asset is purchased in + * the middle of the accounting period, the prorated depreciation is taken into account. + * + * Excel Function: + * AMORLINC(cost,purchased,firstPeriod,salvage,period,rate[,basis]) + * + * @param mixed $cost The cost of the asset as a float + * @param mixed $purchased Date of the purchase of the asset + * @param mixed $firstPeriod Date of the end of the first period + * @param mixed $salvage The salvage value at the end of the life of the asset + * @param mixed $period The period as a float + * @param mixed $rate Rate of depreciation as float + * @param mixed $basis Integer indicating the type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string (string containing the error type if there is an error) + */ + public static function AMORLINC( + $cost, + $purchased, + $firstPeriod, + $salvage, + $period, + $rate, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $cost = Functions::flattenSingleValue($cost); + $purchased = Functions::flattenSingleValue($purchased); + $firstPeriod = Functions::flattenSingleValue($firstPeriod); + $salvage = Functions::flattenSingleValue($salvage); + $period = Functions::flattenSingleValue($period); + $rate = Functions::flattenSingleValue($rate); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $cost = FinancialValidations::validateFloat($cost); + $purchased = FinancialValidations::validateDate($purchased); + $firstPeriod = FinancialValidations::validateDate($firstPeriod); + $salvage = FinancialValidations::validateFloat($salvage); + $period = FinancialValidations::validateFloat($period); + $rate = FinancialValidations::validateFloat($rate); + $basis = FinancialValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + $fOneRate = $cost * $rate; + $fCostDelta = $cost - $salvage; + // Note, quirky variation for leap years on the YEARFRAC for this function + $purchasedYear = DateTimeExcel\DateParts::year($purchased); + $yearFracx = DateTimeExcel\YearFrac::fraction($purchased, $firstPeriod, $basis); + if (is_string($yearFracx)) { + return $yearFracx; + } + /** @var float */ + $yearFrac = $yearFracx; + + if ( + ($basis == FinancialConstants::BASIS_DAYS_PER_YEAR_ACTUAL) && + ($yearFrac < 1) && (Functions::scalar(DateTimeExcel\Helpers::isLeapYear($purchasedYear))) + ) { + $yearFrac *= 365 / 366; + } + + $f0Rate = $yearFrac * $rate * $cost; + $nNumOfFullPeriods = (int) (($cost - $salvage - $f0Rate) / $fOneRate); + + if ($period == 0) { + return $f0Rate; + } elseif ($period <= $nNumOfFullPeriods) { + return $fOneRate; + } elseif ($period == ($nNumOfFullPeriods + 1)) { + return $fCostDelta - $fOneRate * $nNumOfFullPeriods - $f0Rate; + } + + return 0.0; + } + + private static function getAmortizationCoefficient(float $rate): float + { + // The depreciation coefficients are: + // Life of assets (1/rate) Depreciation coefficient + // Less than 3 years 1 + // Between 3 and 4 years 1.5 + // Between 5 and 6 years 2 + // More than 6 years 2.5 + $fUsePer = 1.0 / $rate; + + if ($fUsePer < 3.0) { + return 1.0; + } elseif ($fUsePer < 4.0) { + return 1.5; + } elseif ($fUsePer <= 6.0) { + return 2.0; + } + + return 2.5; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/CashFlowValidations.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/CashFlowValidations.php new file mode 100644 index 0000000..8ebe9ed --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/CashFlowValidations.php @@ -0,0 +1,53 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial\CashFlow; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\FinancialValidations; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class CashFlowValidations extends FinancialValidations +{ + /** + * @param mixed $rate + */ + public static function validateRate($rate): float + { + $rate = self::validateFloat($rate); + + return $rate; + } + + /** + * @param mixed $type + */ + public static function validatePeriodType($type): int + { + $rate = self::validateInt($type); + if ( + $type !== FinancialConstants::PAYMENT_END_OF_PERIOD && + $type !== FinancialConstants::PAYMENT_BEGINNING_OF_PERIOD + ) { + throw new Exception(ExcelError::NAN()); + } + + return $rate; + } + + /** + * @param mixed $presentValue + */ + public static function validatePresentValue($presentValue): float + { + return self::validateFloat($presentValue); + } + + /** + * @param mixed $futureValue + */ + public static function validateFutureValue($futureValue): float + { + return self::validateFloat($futureValue); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic.php new file mode 100644 index 0000000..a19c37f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic.php @@ -0,0 +1,200 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial\CashFlow\Constant; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\CashFlow\CashFlowValidations; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Periodic +{ + /** + * FV. + * + * Returns the Future Value of a cash flow with constant payments and interest rate (annuities). + * + * Excel Function: + * FV(rate,nper,pmt[,pv[,type]]) + * + * @param mixed $rate The interest rate per period + * @param mixed $numberOfPeriods Total number of payment periods in an annuity as an integer + * @param mixed $payment The payment made each period: it cannot change over the + * life of the annuity. Typically, pmt contains principal + * and interest but no other fees or taxes. + * @param mixed $presentValue present Value, or the lump-sum amount that a series of + * future payments is worth right now + * @param mixed $type A number 0 or 1 and indicates when payments are due: + * 0 or omitted At the end of the period. + * 1 At the beginning of the period. + * + * @return float|string + */ + public static function futureValue( + $rate, + $numberOfPeriods, + $payment = 0.0, + $presentValue = 0.0, + $type = FinancialConstants::PAYMENT_END_OF_PERIOD + ) { + $rate = Functions::flattenSingleValue($rate); + $numberOfPeriods = Functions::flattenSingleValue($numberOfPeriods); + $payment = ($payment === null) ? 0.0 : Functions::flattenSingleValue($payment); + $presentValue = ($presentValue === null) ? 0.0 : Functions::flattenSingleValue($presentValue); + $type = ($type === null) ? FinancialConstants::PAYMENT_END_OF_PERIOD : Functions::flattenSingleValue($type); + + try { + $rate = CashFlowValidations::validateRate($rate); + $numberOfPeriods = CashFlowValidations::validateInt($numberOfPeriods); + $payment = CashFlowValidations::validateFloat($payment); + $presentValue = CashFlowValidations::validatePresentValue($presentValue); + $type = CashFlowValidations::validatePeriodType($type); + } catch (Exception $e) { + return $e->getMessage(); + } + + return self::calculateFutureValue($rate, $numberOfPeriods, $payment, $presentValue, $type); + } + + /** + * PV. + * + * Returns the Present Value of a cash flow with constant payments and interest rate (annuities). + * + * @param mixed $rate Interest rate per period + * @param mixed $numberOfPeriods Number of periods as an integer + * @param mixed $payment Periodic payment (annuity) + * @param mixed $futureValue Future Value + * @param mixed $type Payment type: 0 = at the end of each period, 1 = at the beginning of each period + * + * @return float|string Result, or a string containing an error + */ + public static function presentValue( + $rate, + $numberOfPeriods, + $payment = 0.0, + $futureValue = 0.0, + $type = FinancialConstants::PAYMENT_END_OF_PERIOD + ) { + $rate = Functions::flattenSingleValue($rate); + $numberOfPeriods = Functions::flattenSingleValue($numberOfPeriods); + $payment = ($payment === null) ? 0.0 : Functions::flattenSingleValue($payment); + $futureValue = ($futureValue === null) ? 0.0 : Functions::flattenSingleValue($futureValue); + $type = ($type === null) ? FinancialConstants::PAYMENT_END_OF_PERIOD : Functions::flattenSingleValue($type); + + try { + $rate = CashFlowValidations::validateRate($rate); + $numberOfPeriods = CashFlowValidations::validateInt($numberOfPeriods); + $payment = CashFlowValidations::validateFloat($payment); + $futureValue = CashFlowValidations::validateFutureValue($futureValue); + $type = CashFlowValidations::validatePeriodType($type); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Validate parameters + if ($numberOfPeriods < 0) { + return ExcelError::NAN(); + } + + return self::calculatePresentValue($rate, $numberOfPeriods, $payment, $futureValue, $type); + } + + /** + * NPER. + * + * Returns the number of periods for a cash flow with constant periodic payments (annuities), and interest rate. + * + * @param mixed $rate Interest rate per period + * @param mixed $payment Periodic payment (annuity) + * @param mixed $presentValue Present Value + * @param mixed $futureValue Future Value + * @param mixed $type Payment type: 0 = at the end of each period, 1 = at the beginning of each period + * + * @return float|string Result, or a string containing an error + */ + public static function periods( + $rate, + $payment, + $presentValue, + $futureValue = 0.0, + $type = FinancialConstants::PAYMENT_END_OF_PERIOD + ) { + $rate = Functions::flattenSingleValue($rate); + $payment = Functions::flattenSingleValue($payment); + $presentValue = Functions::flattenSingleValue($presentValue); + $futureValue = ($futureValue === null) ? 0.0 : Functions::flattenSingleValue($futureValue); + $type = ($type === null) ? FinancialConstants::PAYMENT_END_OF_PERIOD : Functions::flattenSingleValue($type); + + try { + $rate = CashFlowValidations::validateRate($rate); + $payment = CashFlowValidations::validateFloat($payment); + $presentValue = CashFlowValidations::validatePresentValue($presentValue); + $futureValue = CashFlowValidations::validateFutureValue($futureValue); + $type = CashFlowValidations::validatePeriodType($type); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Validate parameters + if ($payment == 0.0) { + return ExcelError::NAN(); + } + + return self::calculatePeriods($rate, $payment, $presentValue, $futureValue, $type); + } + + private static function calculateFutureValue( + float $rate, + int $numberOfPeriods, + float $payment, + float $presentValue, + int $type + ): float { + if ($rate !== null && $rate != 0) { + return -$presentValue * + (1 + $rate) ** $numberOfPeriods - $payment * (1 + $rate * $type) * ((1 + $rate) ** $numberOfPeriods - 1) + / $rate; + } + + return -$presentValue - $payment * $numberOfPeriods; + } + + private static function calculatePresentValue( + float $rate, + int $numberOfPeriods, + float $payment, + float $futureValue, + int $type + ): float { + if ($rate != 0.0) { + return (-$payment * (1 + $rate * $type) + * (((1 + $rate) ** $numberOfPeriods - 1) / $rate) - $futureValue) / (1 + $rate) ** $numberOfPeriods; + } + + return -$futureValue - $payment * $numberOfPeriods; + } + + /** + * @return float|string + */ + private static function calculatePeriods( + float $rate, + float $payment, + float $presentValue, + float $futureValue, + int $type + ) { + if ($rate != 0.0) { + if ($presentValue == 0.0) { + return ExcelError::NAN(); + } + + return log(($payment * (1 + $rate * $type) / $rate - $futureValue) / + ($presentValue + $payment * (1 + $rate * $type) / $rate)) / log(1 + $rate); + } + + return (-$presentValue - $futureValue) / $payment; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Cumulative.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Cumulative.php new file mode 100644 index 0000000..b7aaffd --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Cumulative.php @@ -0,0 +1,142 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial\CashFlow\Constant\Periodic; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\CashFlow\CashFlowValidations; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Cumulative +{ + /** + * CUMIPMT. + * + * Returns the cumulative interest paid on a loan between the start and end periods. + * + * Excel Function: + * CUMIPMT(rate,nper,pv,start,end[,type]) + * + * @param mixed $rate The Interest rate + * @param mixed $periods The total number of payment periods + * @param mixed $presentValue Present Value + * @param mixed $start The first period in the calculation. + * Payment periods are numbered beginning with 1. + * @param mixed $end the last period in the calculation + * @param mixed $type A number 0 or 1 and indicates when payments are due: + * 0 or omitted At the end of the period. + * 1 At the beginning of the period. + * + * @return float|string + */ + public static function interest( + $rate, + $periods, + $presentValue, + $start, + $end, + $type = FinancialConstants::PAYMENT_END_OF_PERIOD + ) { + $rate = Functions::flattenSingleValue($rate); + $periods = Functions::flattenSingleValue($periods); + $presentValue = Functions::flattenSingleValue($presentValue); + $start = Functions::flattenSingleValue($start); + $end = Functions::flattenSingleValue($end); + $type = ($type === null) ? FinancialConstants::PAYMENT_END_OF_PERIOD : Functions::flattenSingleValue($type); + + try { + $rate = CashFlowValidations::validateRate($rate); + $periods = CashFlowValidations::validateInt($periods); + $presentValue = CashFlowValidations::validatePresentValue($presentValue); + $start = CashFlowValidations::validateInt($start); + $end = CashFlowValidations::validateInt($end); + $type = CashFlowValidations::validatePeriodType($type); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Validate parameters + if ($start < 1 || $start > $end) { + return ExcelError::NAN(); + } + + // Calculate + $interest = 0; + for ($per = $start; $per <= $end; ++$per) { + $ipmt = Interest::payment($rate, $per, $periods, $presentValue, 0, $type); + if (is_string($ipmt)) { + return $ipmt; + } + + $interest += $ipmt; + } + + return $interest; + } + + /** + * CUMPRINC. + * + * Returns the cumulative principal paid on a loan between the start and end periods. + * + * Excel Function: + * CUMPRINC(rate,nper,pv,start,end[,type]) + * + * @param mixed $rate The Interest rate + * @param mixed $periods The total number of payment periods as an integer + * @param mixed $presentValue Present Value + * @param mixed $start The first period in the calculation. + * Payment periods are numbered beginning with 1. + * @param mixed $end the last period in the calculation + * @param mixed $type A number 0 or 1 and indicates when payments are due: + * 0 or omitted At the end of the period. + * 1 At the beginning of the period. + * + * @return float|string + */ + public static function principal( + $rate, + $periods, + $presentValue, + $start, + $end, + $type = FinancialConstants::PAYMENT_END_OF_PERIOD + ) { + $rate = Functions::flattenSingleValue($rate); + $periods = Functions::flattenSingleValue($periods); + $presentValue = Functions::flattenSingleValue($presentValue); + $start = Functions::flattenSingleValue($start); + $end = Functions::flattenSingleValue($end); + $type = ($type === null) ? FinancialConstants::PAYMENT_END_OF_PERIOD : Functions::flattenSingleValue($type); + + try { + $rate = CashFlowValidations::validateRate($rate); + $periods = CashFlowValidations::validateInt($periods); + $presentValue = CashFlowValidations::validatePresentValue($presentValue); + $start = CashFlowValidations::validateInt($start); + $end = CashFlowValidations::validateInt($end); + $type = CashFlowValidations::validatePeriodType($type); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Validate parameters + if ($start < 1 || $start > $end) { + return ExcelError::VALUE(); + } + + // Calculate + $principal = 0; + for ($per = $start; $per <= $end; ++$per) { + $ppmt = Payments::interestPayment($rate, $per, $periods, $presentValue, 0, $type); + if (is_string($ppmt)) { + return $ppmt; + } + + $principal += $ppmt; + } + + return $principal; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Interest.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Interest.php new file mode 100644 index 0000000..8041208 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Interest.php @@ -0,0 +1,217 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial\CashFlow\Constant\Periodic; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\CashFlow\CashFlowValidations; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Interest +{ + private const FINANCIAL_MAX_ITERATIONS = 128; + + private const FINANCIAL_PRECISION = 1.0e-08; + + /** + * IPMT. + * + * Returns the interest payment for a given period for an investment based on periodic, constant payments + * and a constant interest rate. + * + * Excel Function: + * IPMT(rate,per,nper,pv[,fv][,type]) + * + * @param mixed $interestRate Interest rate per period + * @param mixed $period Period for which we want to find the interest + * @param mixed $numberOfPeriods Number of periods + * @param mixed $presentValue Present Value + * @param mixed $futureValue Future Value + * @param mixed $type Payment type: 0 = at the end of each period, 1 = at the beginning of each period + * + * @return float|string + */ + public static function payment( + $interestRate, + $period, + $numberOfPeriods, + $presentValue, + $futureValue = 0, + $type = FinancialConstants::PAYMENT_END_OF_PERIOD + ) { + $interestRate = Functions::flattenSingleValue($interestRate); + $period = Functions::flattenSingleValue($period); + $numberOfPeriods = Functions::flattenSingleValue($numberOfPeriods); + $presentValue = Functions::flattenSingleValue($presentValue); + $futureValue = ($futureValue === null) ? 0.0 : Functions::flattenSingleValue($futureValue); + $type = ($type === null) ? FinancialConstants::PAYMENT_END_OF_PERIOD : Functions::flattenSingleValue($type); + + try { + $interestRate = CashFlowValidations::validateRate($interestRate); + $period = CashFlowValidations::validateInt($period); + $numberOfPeriods = CashFlowValidations::validateInt($numberOfPeriods); + $presentValue = CashFlowValidations::validatePresentValue($presentValue); + $futureValue = CashFlowValidations::validateFutureValue($futureValue); + $type = CashFlowValidations::validatePeriodType($type); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Validate parameters + if ($period <= 0 || $period > $numberOfPeriods) { + return ExcelError::NAN(); + } + + // Calculate + $interestAndPrincipal = new InterestAndPrincipal( + $interestRate, + $period, + $numberOfPeriods, + $presentValue, + $futureValue, + $type + ); + + return $interestAndPrincipal->interest(); + } + + /** + * ISPMT. + * + * Returns the interest payment for an investment based on an interest rate and a constant payment schedule. + * + * Excel Function: + * =ISPMT(interest_rate, period, number_payments, pv) + * + * @param mixed $interestRate is the interest rate for the investment + * @param mixed $period is the period to calculate the interest rate. It must be betweeen 1 and number_payments. + * @param mixed $numberOfPeriods is the number of payments for the annuity + * @param mixed $principleRemaining is the loan amount or present value of the payments + */ + public static function schedulePayment($interestRate, $period, $numberOfPeriods, $principleRemaining) + { + $interestRate = Functions::flattenSingleValue($interestRate); + $period = Functions::flattenSingleValue($period); + $numberOfPeriods = Functions::flattenSingleValue($numberOfPeriods); + $principleRemaining = Functions::flattenSingleValue($principleRemaining); + + try { + $interestRate = CashFlowValidations::validateRate($interestRate); + $period = CashFlowValidations::validateInt($period); + $numberOfPeriods = CashFlowValidations::validateInt($numberOfPeriods); + $principleRemaining = CashFlowValidations::validateFloat($principleRemaining); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Validate parameters + if ($period <= 0 || $period > $numberOfPeriods) { + return ExcelError::NAN(); + } + + // Return value + $returnValue = 0; + + // Calculate + $principlePayment = ($principleRemaining * 1.0) / ($numberOfPeriods * 1.0); + for ($i = 0; $i <= $period; ++$i) { + $returnValue = $interestRate * $principleRemaining * -1; + $principleRemaining -= $principlePayment; + // principle needs to be 0 after the last payment, don't let floating point screw it up + if ($i == $numberOfPeriods) { + $returnValue = 0.0; + } + } + + return $returnValue; + } + + /** + * RATE. + * + * Returns the interest rate per period of an annuity. + * RATE is calculated by iteration and can have zero or more solutions. + * If the successive results of RATE do not converge to within 0.0000001 after 20 iterations, + * RATE returns the #NUM! error value. + * + * Excel Function: + * RATE(nper,pmt,pv[,fv[,type[,guess]]]) + * + * @param mixed $numberOfPeriods The total number of payment periods in an annuity + * @param mixed $payment The payment made each period and cannot change over the life of the annuity. + * Typically, pmt includes principal and interest but no other fees or taxes. + * @param mixed $presentValue The present value - the total amount that a series of future payments is worth now + * @param mixed $futureValue The future value, or a cash balance you want to attain after the last payment is made. + * If fv is omitted, it is assumed to be 0 (the future value of a loan, + * for example, is 0). + * @param mixed $type A number 0 or 1 and indicates when payments are due: + * 0 or omitted At the end of the period. + * 1 At the beginning of the period. + * @param mixed $guess Your guess for what the rate will be. + * If you omit guess, it is assumed to be 10 percent. + * + * @return float|string + */ + public static function rate( + $numberOfPeriods, + $payment, + $presentValue, + $futureValue = 0.0, + $type = FinancialConstants::PAYMENT_END_OF_PERIOD, + $guess = 0.1 + ) { + $numberOfPeriods = Functions::flattenSingleValue($numberOfPeriods); + $payment = Functions::flattenSingleValue($payment); + $presentValue = Functions::flattenSingleValue($presentValue); + $futureValue = ($futureValue === null) ? 0.0 : Functions::flattenSingleValue($futureValue); + $type = ($type === null) ? FinancialConstants::PAYMENT_END_OF_PERIOD : Functions::flattenSingleValue($type); + $guess = ($guess === null) ? 0.1 : Functions::flattenSingleValue($guess); + + try { + $numberOfPeriods = CashFlowValidations::validateInt($numberOfPeriods); + $payment = CashFlowValidations::validateFloat($payment); + $presentValue = CashFlowValidations::validatePresentValue($presentValue); + $futureValue = CashFlowValidations::validateFutureValue($futureValue); + $type = CashFlowValidations::validatePeriodType($type); + $guess = CashFlowValidations::validateFloat($guess); + } catch (Exception $e) { + return $e->getMessage(); + } + + $rate = $guess; + // rest of code adapted from python/numpy + $close = false; + $iter = 0; + while (!$close && $iter < self::FINANCIAL_MAX_ITERATIONS) { + $nextdiff = self::rateNextGuess($rate, $numberOfPeriods, $payment, $presentValue, $futureValue, $type); + if (!is_numeric($nextdiff)) { + break; + } + $rate1 = $rate - $nextdiff; + $close = abs($rate1 - $rate) < self::FINANCIAL_PRECISION; + ++$iter; + $rate = $rate1; + } + + return $close ? $rate : ExcelError::NAN(); + } + + private static function rateNextGuess($rate, $numberOfPeriods, $payment, $presentValue, $futureValue, $type) + { + if ($rate == 0.0) { + return ExcelError::NAN(); + } + $tt1 = ($rate + 1) ** $numberOfPeriods; + $tt2 = ($rate + 1) ** ($numberOfPeriods - 1); + $numerator = $futureValue + $tt1 * $presentValue + $payment * ($tt1 - 1) * ($rate * $type + 1) / $rate; + $denominator = $numberOfPeriods * $tt2 * $presentValue - $payment * ($tt1 - 1) + * ($rate * $type + 1) / ($rate * $rate) + $numberOfPeriods + * $payment * $tt2 * ($rate * $type + 1) / $rate + $payment * ($tt1 - 1) * $type / $rate; + if ($denominator == 0) { + return ExcelError::NAN(); + } + + return $numerator / $denominator; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/InterestAndPrincipal.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/InterestAndPrincipal.php new file mode 100644 index 0000000..ca989e0 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/InterestAndPrincipal.php @@ -0,0 +1,44 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial\CashFlow\Constant\Periodic; + +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants; + +class InterestAndPrincipal +{ + protected $interest; + + protected $principal; + + public function __construct( + float $rate = 0.0, + int $period = 0, + int $numberOfPeriods = 0, + float $presentValue = 0, + float $futureValue = 0, + int $type = FinancialConstants::PAYMENT_END_OF_PERIOD + ) { + $payment = Payments::annuity($rate, $numberOfPeriods, $presentValue, $futureValue, $type); + $capital = $presentValue; + $interest = 0.0; + $principal = 0.0; + for ($i = 1; $i <= $period; ++$i) { + $interest = ($type === FinancialConstants::PAYMENT_BEGINNING_OF_PERIOD && $i == 1) ? 0 : -$capital * $rate; + $principal = $payment - $interest; + $capital += $principal; + } + + $this->interest = $interest; + $this->principal = $principal; + } + + public function interest(): float + { + return $this->interest; + } + + public function principal(): float + { + return $this->principal; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Payments.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Payments.php new file mode 100644 index 0000000..83965f9 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Payments.php @@ -0,0 +1,116 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial\CashFlow\Constant\Periodic; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\CashFlow\CashFlowValidations; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Payments +{ + /** + * PMT. + * + * Returns the constant payment (annuity) for a cash flow with a constant interest rate. + * + * @param mixed $interestRate Interest rate per period + * @param mixed $numberOfPeriods Number of periods + * @param mixed $presentValue Present Value + * @param mixed $futureValue Future Value + * @param mixed $type Payment type: 0 = at the end of each period, 1 = at the beginning of each period + * + * @return float|string Result, or a string containing an error + */ + public static function annuity( + $interestRate, + $numberOfPeriods, + $presentValue, + $futureValue = 0, + $type = FinancialConstants::PAYMENT_END_OF_PERIOD + ) { + $interestRate = Functions::flattenSingleValue($interestRate); + $numberOfPeriods = Functions::flattenSingleValue($numberOfPeriods); + $presentValue = Functions::flattenSingleValue($presentValue); + $futureValue = ($futureValue === null) ? 0.0 : Functions::flattenSingleValue($futureValue); + $type = ($type === null) ? FinancialConstants::PAYMENT_END_OF_PERIOD : Functions::flattenSingleValue($type); + + try { + $interestRate = CashFlowValidations::validateRate($interestRate); + $numberOfPeriods = CashFlowValidations::validateInt($numberOfPeriods); + $presentValue = CashFlowValidations::validatePresentValue($presentValue); + $futureValue = CashFlowValidations::validateFutureValue($futureValue); + $type = CashFlowValidations::validatePeriodType($type); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Calculate + if ($interestRate != 0.0) { + return (-$futureValue - $presentValue * (1 + $interestRate) ** $numberOfPeriods) / + (1 + $interestRate * $type) / (((1 + $interestRate) ** $numberOfPeriods - 1) / $interestRate); + } + + return (-$presentValue - $futureValue) / $numberOfPeriods; + } + + /** + * PPMT. + * + * Returns the interest payment for a given period for an investment based on periodic, constant payments + * and a constant interest rate. + * + * @param mixed $interestRate Interest rate per period + * @param mixed $period Period for which we want to find the interest + * @param mixed $numberOfPeriods Number of periods + * @param mixed $presentValue Present Value + * @param mixed $futureValue Future Value + * @param mixed $type Payment type: 0 = at the end of each period, 1 = at the beginning of each period + * + * @return float|string Result, or a string containing an error + */ + public static function interestPayment( + $interestRate, + $period, + $numberOfPeriods, + $presentValue, + $futureValue = 0, + $type = FinancialConstants::PAYMENT_END_OF_PERIOD + ) { + $interestRate = Functions::flattenSingleValue($interestRate); + $period = Functions::flattenSingleValue($period); + $numberOfPeriods = Functions::flattenSingleValue($numberOfPeriods); + $presentValue = Functions::flattenSingleValue($presentValue); + $futureValue = ($futureValue === null) ? 0.0 : Functions::flattenSingleValue($futureValue); + $type = ($type === null) ? FinancialConstants::PAYMENT_END_OF_PERIOD : Functions::flattenSingleValue($type); + + try { + $interestRate = CashFlowValidations::validateRate($interestRate); + $period = CashFlowValidations::validateInt($period); + $numberOfPeriods = CashFlowValidations::validateInt($numberOfPeriods); + $presentValue = CashFlowValidations::validatePresentValue($presentValue); + $futureValue = CashFlowValidations::validateFutureValue($futureValue); + $type = CashFlowValidations::validatePeriodType($type); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Validate parameters + if ($period <= 0 || $period > $numberOfPeriods) { + return ExcelError::NAN(); + } + + // Calculate + $interestAndPrincipal = new InterestAndPrincipal( + $interestRate, + $period, + $numberOfPeriods, + $presentValue, + $futureValue, + $type + ); + + return $interestAndPrincipal->principal(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Single.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Single.php new file mode 100644 index 0000000..058e89c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Single.php @@ -0,0 +1,109 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial\CashFlow; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Single +{ + /** + * FVSCHEDULE. + * + * Returns the future value of an initial principal after applying a series of compound interest rates. + * Use FVSCHEDULE to calculate the future value of an investment with a variable or adjustable rate. + * + * Excel Function: + * FVSCHEDULE(principal,schedule) + * + * @param mixed $principal the present value + * @param float[] $schedule an array of interest rates to apply + * + * @return float|string + */ + public static function futureValue($principal, $schedule) + { + $principal = Functions::flattenSingleValue($principal); + $schedule = Functions::flattenArray($schedule); + + try { + $principal = CashFlowValidations::validateFloat($principal); + + foreach ($schedule as $rate) { + $rate = CashFlowValidations::validateFloat($rate); + $principal *= 1 + $rate; + } + } catch (Exception $e) { + return $e->getMessage(); + } + + return $principal; + } + + /** + * PDURATION. + * + * Calculates the number of periods required for an investment to reach a specified value. + * + * @param mixed $rate Interest rate per period + * @param mixed $presentValue Present Value + * @param mixed $futureValue Future Value + * + * @return float|string Result, or a string containing an error + */ + public static function periods($rate, $presentValue, $futureValue) + { + $rate = Functions::flattenSingleValue($rate); + $presentValue = Functions::flattenSingleValue($presentValue); + $futureValue = Functions::flattenSingleValue($futureValue); + + try { + $rate = CashFlowValidations::validateRate($rate); + $presentValue = CashFlowValidations::validatePresentValue($presentValue); + $futureValue = CashFlowValidations::validateFutureValue($futureValue); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Validate parameters + if ($rate <= 0.0 || $presentValue <= 0.0 || $futureValue <= 0.0) { + return ExcelError::NAN(); + } + + return (log($futureValue) - log($presentValue)) / log(1 + $rate); + } + + /** + * RRI. + * + * Calculates the interest rate required for an investment to grow to a specified future value . + * + * @param float $periods The number of periods over which the investment is made + * @param float $presentValue Present Value + * @param float $futureValue Future Value + * + * @return float|string Result, or a string containing an error + */ + public static function interestRate($periods = 0.0, $presentValue = 0.0, $futureValue = 0.0) + { + $periods = Functions::flattenSingleValue($periods); + $presentValue = Functions::flattenSingleValue($presentValue); + $futureValue = Functions::flattenSingleValue($futureValue); + + try { + $periods = CashFlowValidations::validateFloat($periods); + $presentValue = CashFlowValidations::validatePresentValue($presentValue); + $futureValue = CashFlowValidations::validateFutureValue($futureValue); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Validate parameters + if ($periods <= 0.0 || $presentValue <= 0.0 || $futureValue < 0.0) { + return ExcelError::NAN(); + } + + return ($futureValue / $presentValue) ** (1 / $periods) - 1; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Variable/NonPeriodic.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Variable/NonPeriodic.php new file mode 100644 index 0000000..b812613 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Variable/NonPeriodic.php @@ -0,0 +1,259 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial\CashFlow\Variable; + +use PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class NonPeriodic +{ + const FINANCIAL_MAX_ITERATIONS = 128; + + const FINANCIAL_PRECISION = 1.0e-08; + + const DEFAULT_GUESS = 0.1; + + /** + * XIRR. + * + * Returns the internal rate of return for a schedule of cash flows that is not necessarily periodic. + * + * Excel Function: + * =XIRR(values,dates,guess) + * + * @param float[] $values A series of cash flow payments + * The series of values must contain at least one positive value & one negative value + * @param mixed[] $dates A series of payment dates + * The first payment date indicates the beginning of the schedule of payments + * All other dates must be later than this date, but they may occur in any order + * @param mixed $guess An optional guess at the expected answer + * + * @return float|string + */ + public static function rate($values, $dates, $guess = self::DEFAULT_GUESS) + { + $rslt = self::xirrPart1($values, $dates); + if ($rslt !== '') { + return $rslt; + } + + // create an initial range, with a root somewhere between 0 and guess + $guess = Functions::flattenSingleValue($guess) ?? self::DEFAULT_GUESS; + if (!is_numeric($guess)) { + return ExcelError::VALUE(); + } + $guess = ($guess + 0.0) ?: self::DEFAULT_GUESS; + $x1 = 0.0; + $x2 = $guess + 0.0; + $f1 = self::xnpvOrdered($x1, $values, $dates, false); + $f2 = self::xnpvOrdered($x2, $values, $dates, false); + $found = false; + for ($i = 0; $i < self::FINANCIAL_MAX_ITERATIONS; ++$i) { + if (!is_numeric($f1) || !is_numeric($f2)) { + break; + } + $f1 = (float) $f1; + $f2 = (float) $f2; + if (($f1 * $f2) < 0.0) { + $found = true; + + break; + } elseif (abs($f1) < abs($f2)) { + $x1 += 1.6 * ($x1 - $x2); + $f1 = self::xnpvOrdered($x1, $values, $dates, false); + } else { + $x2 += 1.6 * ($x2 - $x1); + $f2 = self::xnpvOrdered($x2, $values, $dates, false); + } + } + if (!$found) { + return ExcelError::NAN(); + } + + return self::xirrPart3($values, $dates, $x1, $x2); + } + + /** + * XNPV. + * + * Returns the net present value for a schedule of cash flows that is not necessarily periodic. + * To calculate the net present value for a series of cash flows that is periodic, use the NPV function. + * + * Excel Function: + * =XNPV(rate,values,dates) + * + * @param float $rate the discount rate to apply to the cash flows + * @param float[] $values A series of cash flows that corresponds to a schedule of payments in dates. + * The first payment is optional and corresponds to a cost or payment that occurs + * at the beginning of the investment. + * If the first value is a cost or payment, it must be a negative value. + * All succeeding payments are discounted based on a 365-day year. + * The series of values must contain at least one positive value and one negative value. + * @param mixed[] $dates A schedule of payment dates that corresponds to the cash flow payments. + * The first payment date indicates the beginning of the schedule of payments. + * All other dates must be later than this date, but they may occur in any order. + * + * @return float|string + */ + public static function presentValue($rate, $values, $dates) + { + return self::xnpvOrdered($rate, $values, $dates, true); + } + + private static function bothNegAndPos(bool $neg, bool $pos): bool + { + return $neg && $pos; + } + + /** + * @param mixed $values + * @param mixed $dates + */ + private static function xirrPart1(&$values, &$dates): string + { + $values = Functions::flattenArray($values); + $dates = Functions::flattenArray($dates); + $valuesIsArray = count($values) > 1; + $datesIsArray = count($dates) > 1; + if (!$valuesIsArray && !$datesIsArray) { + return ExcelError::NA(); + } + if (count($values) != count($dates)) { + return ExcelError::NAN(); + } + + $datesCount = count($dates); + for ($i = 0; $i < $datesCount; ++$i) { + try { + $dates[$i] = DateTimeExcel\Helpers::getDateValue($dates[$i]); + } catch (Exception $e) { + return $e->getMessage(); + } + } + + return self::xirrPart2($values); + } + + private static function xirrPart2(array &$values): string + { + $valCount = count($values); + $foundpos = false; + $foundneg = false; + for ($i = 0; $i < $valCount; ++$i) { + $fld = $values[$i]; + if (!is_numeric($fld)) { + return ExcelError::VALUE(); + } elseif ($fld > 0) { + $foundpos = true; + } elseif ($fld < 0) { + $foundneg = true; + } + } + if (!self::bothNegAndPos($foundneg, $foundpos)) { + return ExcelError::NAN(); + } + + return ''; + } + + /** + * @return float|string + */ + private static function xirrPart3(array $values, array $dates, float $x1, float $x2) + { + $f = self::xnpvOrdered($x1, $values, $dates, false); + if ($f < 0.0) { + $rtb = $x1; + $dx = $x2 - $x1; + } else { + $rtb = $x2; + $dx = $x1 - $x2; + } + + $rslt = ExcelError::VALUE(); + for ($i = 0; $i < self::FINANCIAL_MAX_ITERATIONS; ++$i) { + $dx *= 0.5; + $x_mid = $rtb + $dx; + $f_mid = (float) self::xnpvOrdered($x_mid, $values, $dates, false); + if ($f_mid <= 0.0) { + $rtb = $x_mid; + } + if ((abs($f_mid) < self::FINANCIAL_PRECISION) || (abs($dx) < self::FINANCIAL_PRECISION)) { + $rslt = $x_mid; + + break; + } + } + + return $rslt; + } + + /** + * @param mixed $rate + * @param mixed $values + * @param mixed $dates + * + * @return float|string + */ + private static function xnpvOrdered($rate, $values, $dates, bool $ordered = true) + { + $rate = Functions::flattenSingleValue($rate); + $values = Functions::flattenArray($values); + $dates = Functions::flattenArray($dates); + $valCount = count($values); + + try { + self::validateXnpv($rate, $values, $dates); + $date0 = DateTimeExcel\Helpers::getDateValue($dates[0]); + } catch (Exception $e) { + return $e->getMessage(); + } + + $xnpv = 0.0; + for ($i = 0; $i < $valCount; ++$i) { + if (!is_numeric($values[$i])) { + return ExcelError::VALUE(); + } + + try { + $datei = DateTimeExcel\Helpers::getDateValue($dates[$i]); + } catch (Exception $e) { + return $e->getMessage(); + } + if ($date0 > $datei) { + $dif = $ordered ? ExcelError::NAN() : -((int) DateTimeExcel\Difference::interval($datei, $date0, 'd')); + } else { + $dif = DateTimeExcel\Difference::interval($date0, $datei, 'd'); + } + if (!is_numeric($dif)) { + return $dif; + } + if ($rate <= -1.0) { + $xnpv += -abs($values[$i]) / (-1 - $rate) ** ($dif / 365); + } else { + $xnpv += $values[$i] / (1 + $rate) ** ($dif / 365); + } + } + + return is_finite($xnpv) ? $xnpv : ExcelError::VALUE(); + } + + /** + * @param mixed $rate + */ + private static function validateXnpv($rate, array $values, array $dates): void + { + if (!is_numeric($rate)) { + throw new Exception(ExcelError::VALUE()); + } + $valCount = count($values); + if ($valCount != count($dates)) { + throw new Exception(ExcelError::NAN()); + } + if ($valCount > 1 && ((min($values) > 0) || (max($values) < 0))) { + throw new Exception(ExcelError::NAN()); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Variable/Periodic.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Variable/Periodic.php new file mode 100644 index 0000000..49d063c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Variable/Periodic.php @@ -0,0 +1,161 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial\CashFlow\Variable; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Periodic +{ + const FINANCIAL_MAX_ITERATIONS = 128; + + const FINANCIAL_PRECISION = 1.0e-08; + + /** + * IRR. + * + * Returns the internal rate of return for a series of cash flows represented by the numbers in values. + * These cash flows do not have to be even, as they would be for an annuity. However, the cash flows must occur + * at regular intervals, such as monthly or annually. The internal rate of return is the interest rate received + * for an investment consisting of payments (negative values) and income (positive values) that occur at regular + * periods. + * + * Excel Function: + * IRR(values[,guess]) + * + * @param mixed $values An array or a reference to cells that contain numbers for which you want + * to calculate the internal rate of return. + * Values must contain at least one positive value and one negative value to + * calculate the internal rate of return. + * @param mixed $guess A number that you guess is close to the result of IRR + * + * @return float|string + */ + public static function rate($values, $guess = 0.1) + { + if (!is_array($values)) { + return ExcelError::VALUE(); + } + $values = Functions::flattenArray($values); + $guess = Functions::flattenSingleValue($guess); + + // create an initial range, with a root somewhere between 0 and guess + $x1 = 0.0; + $x2 = $guess; + $f1 = self::presentValue($x1, $values); + $f2 = self::presentValue($x2, $values); + for ($i = 0; $i < self::FINANCIAL_MAX_ITERATIONS; ++$i) { + if (($f1 * $f2) < 0.0) { + break; + } + if (abs($f1) < abs($f2)) { + $f1 = self::presentValue($x1 += 1.6 * ($x1 - $x2), $values); + } else { + $f2 = self::presentValue($x2 += 1.6 * ($x2 - $x1), $values); + } + } + if (($f1 * $f2) > 0.0) { + return ExcelError::VALUE(); + } + + $f = self::presentValue($x1, $values); + if ($f < 0.0) { + $rtb = $x1; + $dx = $x2 - $x1; + } else { + $rtb = $x2; + $dx = $x1 - $x2; + } + + for ($i = 0; $i < self::FINANCIAL_MAX_ITERATIONS; ++$i) { + $dx *= 0.5; + $x_mid = $rtb + $dx; + $f_mid = self::presentValue($x_mid, $values); + if ($f_mid <= 0.0) { + $rtb = $x_mid; + } + if ((abs($f_mid) < self::FINANCIAL_PRECISION) || (abs($dx) < self::FINANCIAL_PRECISION)) { + return $x_mid; + } + } + + return ExcelError::VALUE(); + } + + /** + * MIRR. + * + * Returns the modified internal rate of return for a series of periodic cash flows. MIRR considers both + * the cost of the investment and the interest received on reinvestment of cash. + * + * Excel Function: + * MIRR(values,finance_rate, reinvestment_rate) + * + * @param mixed $values An array or a reference to cells that contain a series of payments and + * income occurring at regular intervals. + * Payments are negative value, income is positive values. + * @param mixed $financeRate The interest rate you pay on the money used in the cash flows + * @param mixed $reinvestmentRate The interest rate you receive on the cash flows as you reinvest them + * + * @return float|string Result, or a string containing an error + */ + public static function modifiedRate($values, $financeRate, $reinvestmentRate) + { + if (!is_array($values)) { + return ExcelError::VALUE(); + } + $values = Functions::flattenArray($values); + $financeRate = Functions::flattenSingleValue($financeRate); + $reinvestmentRate = Functions::flattenSingleValue($reinvestmentRate); + $n = count($values); + + $rr = 1.0 + $reinvestmentRate; + $fr = 1.0 + $financeRate; + + $npvPos = $npvNeg = 0.0; + foreach ($values as $i => $v) { + if ($v >= 0) { + $npvPos += $v / $rr ** $i; + } else { + $npvNeg += $v / $fr ** $i; + } + } + + if (($npvNeg === 0.0) || ($npvPos === 0.0) || ($reinvestmentRate <= -1.0)) { + return ExcelError::VALUE(); + } + + $mirr = ((-$npvPos * $rr ** $n) + / ($npvNeg * ($rr))) ** (1.0 / ($n - 1)) - 1.0; + + return is_finite($mirr) ? $mirr : ExcelError::VALUE(); + } + + /** + * NPV. + * + * Returns the Net Present Value of a cash flow series given a discount rate. + * + * @param mixed $rate + * + * @return float + */ + public static function presentValue($rate, ...$args) + { + $returnValue = 0; + + $rate = Functions::flattenSingleValue($rate); + $aArgs = Functions::flattenArray($args); + + // Calculate + $countArgs = count($aArgs); + for ($i = 1; $i <= $countArgs; ++$i) { + // Is it a numeric value? + if (is_numeric($aArgs[$i - 1])) { + $returnValue += $aArgs[$i - 1] / (1 + $rate) ** $i; + } + } + + return $returnValue; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Constants.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Constants.php new file mode 100644 index 0000000..17740b0 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Constants.php @@ -0,0 +1,19 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial; + +class Constants +{ + public const BASIS_DAYS_PER_YEAR_NASD = 0; + public const BASIS_DAYS_PER_YEAR_ACTUAL = 1; + public const BASIS_DAYS_PER_YEAR_360 = 2; + public const BASIS_DAYS_PER_YEAR_365 = 3; + public const BASIS_DAYS_PER_YEAR_360_EUROPEAN = 4; + + public const FREQUENCY_ANNUAL = 1; + public const FREQUENCY_SEMI_ANNUAL = 2; + public const FREQUENCY_QUARTERLY = 4; + + public const PAYMENT_END_OF_PERIOD = 0; + public const PAYMENT_BEGINNING_OF_PERIOD = 1; +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Coupons.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Coupons.php new file mode 100644 index 0000000..6138075 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Coupons.php @@ -0,0 +1,417 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial; + +use DateTime; +use PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Shared\Date; + +class Coupons +{ + private const PERIOD_DATE_PREVIOUS = false; + private const PERIOD_DATE_NEXT = true; + + /** + * COUPDAYBS. + * + * Returns the number of days from the beginning of the coupon period to the settlement date. + * + * Excel Function: + * COUPDAYBS(settlement,maturity,frequency[,basis]) + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $frequency The number of coupon payments per year (int). + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * @param mixed $basis The type of day count to use (int). + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string + */ + public static function COUPDAYBS( + $settlement, + $maturity, + $frequency, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $frequency = Functions::flattenSingleValue($frequency); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $settlement = FinancialValidations::validateSettlementDate($settlement); + $maturity = FinancialValidations::validateMaturityDate($maturity); + self::validateCouponPeriod($settlement, $maturity); + $frequency = FinancialValidations::validateFrequency($frequency); + $basis = FinancialValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + $daysPerYear = Helpers::daysPerYear(Functions::scalar(DateTimeExcel\DateParts::year($settlement)), $basis); + if (is_string($daysPerYear)) { + return ExcelError::VALUE(); + } + $prev = self::couponFirstPeriodDate($settlement, $maturity, $frequency, self::PERIOD_DATE_PREVIOUS); + + if ($basis === FinancialConstants::BASIS_DAYS_PER_YEAR_ACTUAL) { + return abs((float) DateTimeExcel\Days::between($prev, $settlement)); + } + + return (float) DateTimeExcel\YearFrac::fraction($prev, $settlement, $basis) * $daysPerYear; + } + + /** + * COUPDAYS. + * + * Returns the number of days in the coupon period that contains the settlement date. + * + * Excel Function: + * COUPDAYS(settlement,maturity,frequency[,basis]) + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $frequency The number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * @param mixed $basis The type of day count to use (int). + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string + */ + public static function COUPDAYS( + $settlement, + $maturity, + $frequency, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $frequency = Functions::flattenSingleValue($frequency); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $settlement = FinancialValidations::validateSettlementDate($settlement); + $maturity = FinancialValidations::validateMaturityDate($maturity); + self::validateCouponPeriod($settlement, $maturity); + $frequency = FinancialValidations::validateFrequency($frequency); + $basis = FinancialValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + switch ($basis) { + case FinancialConstants::BASIS_DAYS_PER_YEAR_365: + // Actual/365 + return 365 / $frequency; + case FinancialConstants::BASIS_DAYS_PER_YEAR_ACTUAL: + // Actual/actual + if ($frequency == FinancialConstants::FREQUENCY_ANNUAL) { + $daysPerYear = (int) Helpers::daysPerYear(Functions::scalar(DateTimeExcel\DateParts::year($settlement)), $basis); + + return $daysPerYear / $frequency; + } + $prev = self::couponFirstPeriodDate($settlement, $maturity, $frequency, self::PERIOD_DATE_PREVIOUS); + $next = self::couponFirstPeriodDate($settlement, $maturity, $frequency, self::PERIOD_DATE_NEXT); + + return $next - $prev; + default: + // US (NASD) 30/360, Actual/360 or European 30/360 + return 360 / $frequency; + } + } + + /** + * COUPDAYSNC. + * + * Returns the number of days from the settlement date to the next coupon date. + * + * Excel Function: + * COUPDAYSNC(settlement,maturity,frequency[,basis]) + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $frequency The number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * @param mixed $basis The type of day count to use (int) . + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string + */ + public static function COUPDAYSNC( + $settlement, + $maturity, + $frequency, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $frequency = Functions::flattenSingleValue($frequency); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $settlement = FinancialValidations::validateSettlementDate($settlement); + $maturity = FinancialValidations::validateMaturityDate($maturity); + self::validateCouponPeriod($settlement, $maturity); + $frequency = FinancialValidations::validateFrequency($frequency); + $basis = FinancialValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + /** @var int */ + $daysPerYear = Helpers::daysPerYear(DateTimeExcel\DateParts::year($settlement), $basis); + $next = self::couponFirstPeriodDate($settlement, $maturity, $frequency, self::PERIOD_DATE_NEXT); + + if ($basis === FinancialConstants::BASIS_DAYS_PER_YEAR_NASD) { + $settlementDate = Date::excelToDateTimeObject($settlement); + $settlementEoM = Helpers::isLastDayOfMonth($settlementDate); + if ($settlementEoM) { + ++$settlement; + } + } + + return (float) DateTimeExcel\YearFrac::fraction($settlement, $next, $basis) * $daysPerYear; + } + + /** + * COUPNCD. + * + * Returns the next coupon date after the settlement date. + * + * Excel Function: + * COUPNCD(settlement,maturity,frequency[,basis]) + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $frequency The number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * @param mixed $basis The type of day count to use (int). + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function COUPNCD( + $settlement, + $maturity, + $frequency, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $frequency = Functions::flattenSingleValue($frequency); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $settlement = FinancialValidations::validateSettlementDate($settlement); + $maturity = FinancialValidations::validateMaturityDate($maturity); + self::validateCouponPeriod($settlement, $maturity); + $frequency = FinancialValidations::validateFrequency($frequency); + $basis = FinancialValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + return self::couponFirstPeriodDate($settlement, $maturity, $frequency, self::PERIOD_DATE_NEXT); + } + + /** + * COUPNUM. + * + * Returns the number of coupons payable between the settlement date and maturity date, + * rounded up to the nearest whole coupon. + * + * Excel Function: + * COUPNUM(settlement,maturity,frequency[,basis]) + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $frequency The number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * @param mixed $basis The type of day count to use (int). + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return int|string + */ + public static function COUPNUM( + $settlement, + $maturity, + $frequency, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $frequency = Functions::flattenSingleValue($frequency); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $settlement = FinancialValidations::validateSettlementDate($settlement); + $maturity = FinancialValidations::validateMaturityDate($maturity); + self::validateCouponPeriod($settlement, $maturity); + $frequency = FinancialValidations::validateFrequency($frequency); + $basis = FinancialValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + $yearsBetweenSettlementAndMaturity = DateTimeExcel\YearFrac::fraction( + $settlement, + $maturity, + FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ); + + return (int) ceil((float) $yearsBetweenSettlementAndMaturity * $frequency); + } + + /** + * COUPPCD. + * + * Returns the previous coupon date before the settlement date. + * + * Excel Function: + * COUPPCD(settlement,maturity,frequency[,basis]) + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $frequency The number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * @param mixed $basis The type of day count to use (int). + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return mixed Excel date/time serial value, PHP date/time serial value or PHP date/time object, + * depending on the value of the ReturnDateType flag + */ + public static function COUPPCD( + $settlement, + $maturity, + $frequency, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $frequency = Functions::flattenSingleValue($frequency); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $settlement = FinancialValidations::validateSettlementDate($settlement); + $maturity = FinancialValidations::validateMaturityDate($maturity); + self::validateCouponPeriod($settlement, $maturity); + $frequency = FinancialValidations::validateFrequency($frequency); + $basis = FinancialValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + return self::couponFirstPeriodDate($settlement, $maturity, $frequency, self::PERIOD_DATE_PREVIOUS); + } + + private static function monthsDiff(DateTime $result, int $months, string $plusOrMinus, int $day, bool $lastDayFlag): void + { + $result->setDate((int) $result->format('Y'), (int) $result->format('m'), 1); + $result->modify("$plusOrMinus $months months"); + $daysInMonth = (int) $result->format('t'); + $result->setDate((int) $result->format('Y'), (int) $result->format('m'), $lastDayFlag ? $daysInMonth : min($day, $daysInMonth)); + } + + private static function couponFirstPeriodDate(float $settlement, float $maturity, int $frequency, bool $next): float + { + $months = 12 / $frequency; + + $result = Date::excelToDateTimeObject($maturity); + $day = (int) $result->format('d'); + $lastDayFlag = Helpers::isLastDayOfMonth($result); + + while ($settlement < Date::PHPToExcel($result)) { + self::monthsDiff($result, $months, '-', $day, $lastDayFlag); + } + if ($next === true) { + self::monthsDiff($result, $months, '+', $day, $lastDayFlag); + } + + return (float) Date::PHPToExcel($result); + } + + private static function validateCouponPeriod(float $settlement, float $maturity): void + { + if ($settlement >= $maturity) { + throw new Exception(ExcelError::NAN()); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Depreciation.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Depreciation.php new file mode 100644 index 0000000..3d72757 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Depreciation.php @@ -0,0 +1,267 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Depreciation +{ + /** + * DB. + * + * Returns the depreciation of an asset for a specified period using the + * fixed-declining balance method. + * This form of depreciation is used if you want to get a higher depreciation value + * at the beginning of the depreciation (as opposed to linear depreciation). The + * depreciation value is reduced with every depreciation period by the depreciation + * already deducted from the initial cost. + * + * Excel Function: + * DB(cost,salvage,life,period[,month]) + * + * @param mixed $cost Initial cost of the asset + * @param mixed $salvage Value at the end of the depreciation. + * (Sometimes called the salvage value of the asset) + * @param mixed $life Number of periods over which the asset is depreciated. + * (Sometimes called the useful life of the asset) + * @param mixed $period The period for which you want to calculate the + * depreciation. Period must use the same units as life. + * @param mixed $month Number of months in the first year. If month is omitted, + * it defaults to 12. + * + * @return float|string + */ + public static function DB($cost, $salvage, $life, $period, $month = 12) + { + $cost = Functions::flattenSingleValue($cost); + $salvage = Functions::flattenSingleValue($salvage); + $life = Functions::flattenSingleValue($life); + $period = Functions::flattenSingleValue($period); + $month = Functions::flattenSingleValue($month); + + try { + $cost = self::validateCost($cost); + $salvage = self::validateSalvage($salvage); + $life = self::validateLife($life); + $period = self::validatePeriod($period); + $month = self::validateMonth($month); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($cost === 0.0) { + return 0.0; + } + + // Set Fixed Depreciation Rate + $fixedDepreciationRate = 1 - ($salvage / $cost) ** (1 / $life); + $fixedDepreciationRate = round($fixedDepreciationRate, 3); + + // Loop through each period calculating the depreciation + // TODO Handle period value between 0 and 1 (e.g. 0.5) + $previousDepreciation = 0; + $depreciation = 0; + for ($per = 1; $per <= $period; ++$per) { + if ($per == 1) { + $depreciation = $cost * $fixedDepreciationRate * $month / 12; + } elseif ($per == ($life + 1)) { + $depreciation = ($cost - $previousDepreciation) * $fixedDepreciationRate * (12 - $month) / 12; + } else { + $depreciation = ($cost - $previousDepreciation) * $fixedDepreciationRate; + } + $previousDepreciation += $depreciation; + } + + return $depreciation; + } + + /** + * DDB. + * + * Returns the depreciation of an asset for a specified period using the + * double-declining balance method or some other method you specify. + * + * Excel Function: + * DDB(cost,salvage,life,period[,factor]) + * + * @param mixed $cost Initial cost of the asset + * @param mixed $salvage Value at the end of the depreciation. + * (Sometimes called the salvage value of the asset) + * @param mixed $life Number of periods over which the asset is depreciated. + * (Sometimes called the useful life of the asset) + * @param mixed $period The period for which you want to calculate the + * depreciation. Period must use the same units as life. + * @param mixed $factor The rate at which the balance declines. + * If factor is omitted, it is assumed to be 2 (the + * double-declining balance method). + * + * @return float|string + */ + public static function DDB($cost, $salvage, $life, $period, $factor = 2.0) + { + $cost = Functions::flattenSingleValue($cost); + $salvage = Functions::flattenSingleValue($salvage); + $life = Functions::flattenSingleValue($life); + $period = Functions::flattenSingleValue($period); + $factor = Functions::flattenSingleValue($factor); + + try { + $cost = self::validateCost($cost); + $salvage = self::validateSalvage($salvage); + $life = self::validateLife($life); + $period = self::validatePeriod($period); + $factor = self::validateFactor($factor); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($period > $life) { + return ExcelError::NAN(); + } + + // Loop through each period calculating the depreciation + // TODO Handling for fractional $period values + $previousDepreciation = 0; + $depreciation = 0; + for ($per = 1; $per <= $period; ++$per) { + $depreciation = min( + ($cost - $previousDepreciation) * ($factor / $life), + ($cost - $salvage - $previousDepreciation) + ); + $previousDepreciation += $depreciation; + } + + return $depreciation; + } + + /** + * SLN. + * + * Returns the straight-line depreciation of an asset for one period + * + * @param mixed $cost Initial cost of the asset + * @param mixed $salvage Value at the end of the depreciation + * @param mixed $life Number of periods over which the asset is depreciated + * + * @return float|string Result, or a string containing an error + */ + public static function SLN($cost, $salvage, $life) + { + $cost = Functions::flattenSingleValue($cost); + $salvage = Functions::flattenSingleValue($salvage); + $life = Functions::flattenSingleValue($life); + + try { + $cost = self::validateCost($cost, true); + $salvage = self::validateSalvage($salvage, true); + $life = self::validateLife($life, true); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($life === 0.0) { + return ExcelError::DIV0(); + } + + return ($cost - $salvage) / $life; + } + + /** + * SYD. + * + * Returns the sum-of-years' digits depreciation of an asset for a specified period. + * + * @param mixed $cost Initial cost of the asset + * @param mixed $salvage Value at the end of the depreciation + * @param mixed $life Number of periods over which the asset is depreciated + * @param mixed $period Period + * + * @return float|string Result, or a string containing an error + */ + public static function SYD($cost, $salvage, $life, $period) + { + $cost = Functions::flattenSingleValue($cost); + $salvage = Functions::flattenSingleValue($salvage); + $life = Functions::flattenSingleValue($life); + $period = Functions::flattenSingleValue($period); + + try { + $cost = self::validateCost($cost, true); + $salvage = self::validateSalvage($salvage); + $life = self::validateLife($life); + $period = self::validatePeriod($period); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($period > $life) { + return ExcelError::NAN(); + } + + $syd = (($cost - $salvage) * ($life - $period + 1) * 2) / ($life * ($life + 1)); + + return $syd; + } + + private static function validateCost($cost, bool $negativeValueAllowed = false): float + { + $cost = FinancialValidations::validateFloat($cost); + if ($cost < 0.0 && $negativeValueAllowed === false) { + throw new Exception(ExcelError::NAN()); + } + + return $cost; + } + + private static function validateSalvage($salvage, bool $negativeValueAllowed = false): float + { + $salvage = FinancialValidations::validateFloat($salvage); + if ($salvage < 0.0 && $negativeValueAllowed === false) { + throw new Exception(ExcelError::NAN()); + } + + return $salvage; + } + + private static function validateLife($life, bool $negativeValueAllowed = false): float + { + $life = FinancialValidations::validateFloat($life); + if ($life < 0.0 && $negativeValueAllowed === false) { + throw new Exception(ExcelError::NAN()); + } + + return $life; + } + + private static function validatePeriod($period, bool $negativeValueAllowed = false): float + { + $period = FinancialValidations::validateFloat($period); + if ($period <= 0.0 && $negativeValueAllowed === false) { + throw new Exception(ExcelError::NAN()); + } + + return $period; + } + + private static function validateMonth($month): int + { + $month = FinancialValidations::validateInt($month); + if ($month < 1) { + throw new Exception(ExcelError::NAN()); + } + + return $month; + } + + private static function validateFactor($factor): float + { + $factor = FinancialValidations::validateFloat($factor); + if ($factor <= 0.0) { + throw new Exception(ExcelError::NAN()); + } + + return $factor; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Dollar.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Dollar.php new file mode 100644 index 0000000..b1f0d25 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Dollar.php @@ -0,0 +1,132 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Calculation\TextData\Format; + +class Dollar +{ + use ArrayEnabled; + + /** + * DOLLAR. + * + * This function converts a number to text using currency format, with the decimals rounded to the specified place. + * The format used is $#,##0.00_);($#,##0.00).. + * + * @param mixed $number The value to format, or can be an array of numbers + * Or can be an array of values + * @param mixed $precision The number of digits to display to the right of the decimal point (as an integer). + * If precision is negative, number is rounded to the left of the decimal point. + * If you omit precision, it is assumed to be 2 + * Or can be an array of precision values + * + * @return array|string + * If an array of values is passed for either of the arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function format($number, $precision = 2) + { + return Format::DOLLAR($number, $precision); + } + + /** + * DOLLARDE. + * + * Converts a dollar price expressed as an integer part and a fraction + * part into a dollar price expressed as a decimal number. + * Fractional dollar numbers are sometimes used for security prices. + * + * Excel Function: + * DOLLARDE(fractional_dollar,fraction) + * + * @param mixed $fractionalDollar Fractional Dollar + * Or can be an array of values + * @param mixed $fraction Fraction + * Or can be an array of values + * + * @return array|float|string + */ + public static function decimal($fractionalDollar = null, $fraction = 0) + { + if (is_array($fractionalDollar) || is_array($fraction)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $fractionalDollar, $fraction); + } + + try { + $fractionalDollar = FinancialValidations::validateFloat( + Functions::flattenSingleValue($fractionalDollar) ?? 0.0 + ); + $fraction = FinancialValidations::validateInt(Functions::flattenSingleValue($fraction)); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Additional parameter validations + if ($fraction < 0) { + return ExcelError::NAN(); + } + if ($fraction == 0) { + return ExcelError::DIV0(); + } + + $dollars = ($fractionalDollar < 0) ? ceil($fractionalDollar) : floor($fractionalDollar); + $cents = fmod($fractionalDollar, 1.0); + $cents /= $fraction; + $cents *= 10 ** ceil(log10($fraction)); + + return $dollars + $cents; + } + + /** + * DOLLARFR. + * + * Converts a dollar price expressed as a decimal number into a dollar price + * expressed as a fraction. + * Fractional dollar numbers are sometimes used for security prices. + * + * Excel Function: + * DOLLARFR(decimal_dollar,fraction) + * + * @param mixed $decimalDollar Decimal Dollar + * Or can be an array of values + * @param mixed $fraction Fraction + * Or can be an array of values + * + * @return array|float|string + */ + public static function fractional($decimalDollar = null, $fraction = 0) + { + if (is_array($decimalDollar) || is_array($fraction)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $decimalDollar, $fraction); + } + + try { + $decimalDollar = FinancialValidations::validateFloat( + Functions::flattenSingleValue($decimalDollar) ?? 0.0 + ); + $fraction = FinancialValidations::validateInt(Functions::flattenSingleValue($fraction)); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Additional parameter validations + if ($fraction < 0) { + return ExcelError::NAN(); + } + if ($fraction == 0) { + return ExcelError::DIV0(); + } + + $dollars = ($decimalDollar < 0.0) ? ceil($decimalDollar) : floor($decimalDollar); + $cents = fmod($decimalDollar, 1); + $cents *= $fraction; + $cents *= 10 ** (-ceil(log10($fraction))); + + return $dollars + $cents; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/FinancialValidations.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/FinancialValidations.php new file mode 100644 index 0000000..1b04419 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/FinancialValidations.php @@ -0,0 +1,158 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial; + +use PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class FinancialValidations +{ + /** + * @param mixed $date + */ + public static function validateDate($date): float + { + return DateTimeExcel\Helpers::getDateValue($date); + } + + /** + * @param mixed $settlement + */ + public static function validateSettlementDate($settlement): float + { + return self::validateDate($settlement); + } + + /** + * @param mixed $maturity + */ + public static function validateMaturityDate($maturity): float + { + return self::validateDate($maturity); + } + + /** + * @param mixed $value + */ + public static function validateFloat($value): float + { + if (!is_numeric($value)) { + throw new Exception(ExcelError::VALUE()); + } + + return (float) $value; + } + + /** + * @param mixed $value + */ + public static function validateInt($value): int + { + if (!is_numeric($value)) { + throw new Exception(ExcelError::VALUE()); + } + + return (int) floor((float) $value); + } + + /** + * @param mixed $rate + */ + public static function validateRate($rate): float + { + $rate = self::validateFloat($rate); + if ($rate < 0.0) { + throw new Exception(ExcelError::NAN()); + } + + return $rate; + } + + /** + * @param mixed $frequency + */ + public static function validateFrequency($frequency): int + { + $frequency = self::validateInt($frequency); + if ( + ($frequency !== FinancialConstants::FREQUENCY_ANNUAL) && + ($frequency !== FinancialConstants::FREQUENCY_SEMI_ANNUAL) && + ($frequency !== FinancialConstants::FREQUENCY_QUARTERLY) + ) { + throw new Exception(ExcelError::NAN()); + } + + return $frequency; + } + + /** + * @param mixed $basis + */ + public static function validateBasis($basis): int + { + if (!is_numeric($basis)) { + throw new Exception(ExcelError::VALUE()); + } + + $basis = (int) $basis; + if (($basis < 0) || ($basis > 4)) { + throw new Exception(ExcelError::NAN()); + } + + return $basis; + } + + /** + * @param mixed $price + */ + public static function validatePrice($price): float + { + $price = self::validateFloat($price); + if ($price < 0.0) { + throw new Exception(ExcelError::NAN()); + } + + return $price; + } + + /** + * @param mixed $parValue + */ + public static function validateParValue($parValue): float + { + $parValue = self::validateFloat($parValue); + if ($parValue < 0.0) { + throw new Exception(ExcelError::NAN()); + } + + return $parValue; + } + + /** + * @param mixed $yield + */ + public static function validateYield($yield): float + { + $yield = self::validateFloat($yield); + if ($yield < 0.0) { + throw new Exception(ExcelError::NAN()); + } + + return $yield; + } + + /** + * @param mixed $discount + */ + public static function validateDiscount($discount): float + { + $discount = self::validateFloat($discount); + if ($discount <= 0.0) { + throw new Exception(ExcelError::NAN()); + } + + return $discount; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Helpers.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Helpers.php new file mode 100644 index 0000000..c7f1f46 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Helpers.php @@ -0,0 +1,58 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial; + +use DateTimeInterface; +use PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Helpers +{ + /** + * daysPerYear. + * + * Returns the number of days in a specified year, as defined by the "basis" value + * + * @param int|string $year The year against which we're testing + * @param int|string $basis The type of day count: + * 0 or omitted US (NASD) 360 + * 1 Actual (365 or 366 in a leap year) + * 2 360 + * 3 365 + * 4 European 360 + * + * @return int|string Result, or a string containing an error + */ + public static function daysPerYear($year, $basis = 0) + { + if (!is_numeric($basis)) { + return ExcelError::NAN(); + } + + switch ($basis) { + case FinancialConstants::BASIS_DAYS_PER_YEAR_NASD: + case FinancialConstants::BASIS_DAYS_PER_YEAR_360: + case FinancialConstants::BASIS_DAYS_PER_YEAR_360_EUROPEAN: + return 360; + case FinancialConstants::BASIS_DAYS_PER_YEAR_365: + return 365; + case FinancialConstants::BASIS_DAYS_PER_YEAR_ACTUAL: + return (DateTimeExcel\Helpers::isLeapYear($year)) ? 366 : 365; + } + + return ExcelError::NAN(); + } + + /** + * isLastDayOfMonth. + * + * Returns a boolean TRUE/FALSE indicating if this date is the last date of the month + * + * @param DateTimeInterface $date The date for testing + */ + public static function isLastDayOfMonth(DateTimeInterface $date): bool + { + return $date->format('d') === $date->format('t'); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/InterestRate.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/InterestRate.php new file mode 100644 index 0000000..1cbe265 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/InterestRate.php @@ -0,0 +1,73 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class InterestRate +{ + /** + * EFFECT. + * + * Returns the effective interest rate given the nominal rate and the number of + * compounding payments per year. + * + * Excel Function: + * EFFECT(nominal_rate,npery) + * + * @param mixed $nominalRate Nominal interest rate as a float + * @param mixed $periodsPerYear Integer number of compounding payments per year + * + * @return float|string + */ + public static function effective($nominalRate = 0, $periodsPerYear = 0) + { + $nominalRate = Functions::flattenSingleValue($nominalRate); + $periodsPerYear = Functions::flattenSingleValue($periodsPerYear); + + try { + $nominalRate = FinancialValidations::validateFloat($nominalRate); + $periodsPerYear = FinancialValidations::validateInt($periodsPerYear); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($nominalRate <= 0 || $periodsPerYear < 1) { + return ExcelError::NAN(); + } + + return ((1 + $nominalRate / $periodsPerYear) ** $periodsPerYear) - 1; + } + + /** + * NOMINAL. + * + * Returns the nominal interest rate given the effective rate and the number of compounding payments per year. + * + * @param mixed $effectiveRate Effective interest rate as a float + * @param mixed $periodsPerYear Integer number of compounding payments per year + * + * @return float|string Result, or a string containing an error + */ + public static function nominal($effectiveRate = 0, $periodsPerYear = 0) + { + $effectiveRate = Functions::flattenSingleValue($effectiveRate); + $periodsPerYear = Functions::flattenSingleValue($periodsPerYear); + + try { + $effectiveRate = FinancialValidations::validateFloat($effectiveRate); + $periodsPerYear = FinancialValidations::validateInt($periodsPerYear); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($effectiveRate <= 0 || $periodsPerYear < 1) { + return ExcelError::NAN(); + } + + // Calculate + return $periodsPerYear * (($effectiveRate + 1) ** (1 / $periodsPerYear) - 1); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/AccruedInterest.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/AccruedInterest.php new file mode 100644 index 0000000..95996b4 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/AccruedInterest.php @@ -0,0 +1,151 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial\Securities; + +use PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel\YearFrac; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; + +class AccruedInterest +{ + public const ACCRINT_CALCMODE_ISSUE_TO_SETTLEMENT = true; + + public const ACCRINT_CALCMODE_FIRST_INTEREST_TO_SETTLEMENT = false; + + /** + * ACCRINT. + * + * Returns the accrued interest for a security that pays periodic interest. + * + * Excel Function: + * ACCRINT(issue,firstinterest,settlement,rate,par,frequency[,basis][,calc_method]) + * + * @param mixed $issue the security's issue date + * @param mixed $firstInterest the security's first interest date + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue date + * when the security is traded to the buyer. + * @param mixed $rate The security's annual coupon rate + * @param mixed $parValue The security's par value. + * If you omit par, ACCRINT uses $1,000. + * @param mixed $frequency The number of coupon payments per year. + * Valid frequency values are: + * 1 Annual + * 2 Semi-Annual + * 4 Quarterly + * @param mixed $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * @param mixed $calcMethod + * + * @return float|string Result, or a string containing an error + */ + public static function periodic( + $issue, + $firstInterest, + $settlement, + $rate, + $parValue = 1000, + $frequency = FinancialConstants::FREQUENCY_ANNUAL, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD, + $calcMethod = self::ACCRINT_CALCMODE_ISSUE_TO_SETTLEMENT + ) { + $issue = Functions::flattenSingleValue($issue); + $firstInterest = Functions::flattenSingleValue($firstInterest); + $settlement = Functions::flattenSingleValue($settlement); + $rate = Functions::flattenSingleValue($rate); + $parValue = ($parValue === null) ? 1000 : Functions::flattenSingleValue($parValue); + $frequency = ($frequency === null) + ? FinancialConstants::FREQUENCY_ANNUAL + : Functions::flattenSingleValue($frequency); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $issue = SecurityValidations::validateIssueDate($issue); + $settlement = SecurityValidations::validateSettlementDate($settlement); + SecurityValidations::validateSecurityPeriod($issue, $settlement); + $rate = SecurityValidations::validateRate($rate); + $parValue = SecurityValidations::validateParValue($parValue); + $frequency = SecurityValidations::validateFrequency($frequency); + $basis = SecurityValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + $daysBetweenIssueAndSettlement = Functions::scalar(YearFrac::fraction($issue, $settlement, $basis)); + if (!is_numeric($daysBetweenIssueAndSettlement)) { + // return date error + return $daysBetweenIssueAndSettlement; + } + $daysBetweenFirstInterestAndSettlement = Functions::scalar(YearFrac::fraction($firstInterest, $settlement, $basis)); + if (!is_numeric($daysBetweenFirstInterestAndSettlement)) { + // return date error + return $daysBetweenFirstInterestAndSettlement; + } + + return $parValue * $rate * $daysBetweenIssueAndSettlement; + } + + /** + * ACCRINTM. + * + * Returns the accrued interest for a security that pays interest at maturity. + * + * Excel Function: + * ACCRINTM(issue,settlement,rate[,par[,basis]]) + * + * @param mixed $issue The security's issue date + * @param mixed $settlement The security's settlement (or maturity) date + * @param mixed $rate The security's annual coupon rate + * @param mixed $parValue The security's par value. + * If you omit parValue, ACCRINT uses $1,000. + * @param mixed $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string Result, or a string containing an error + */ + public static function atMaturity( + $issue, + $settlement, + $rate, + $parValue = 1000, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $issue = Functions::flattenSingleValue($issue); + $settlement = Functions::flattenSingleValue($settlement); + $rate = Functions::flattenSingleValue($rate); + $parValue = ($parValue === null) ? 1000 : Functions::flattenSingleValue($parValue); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $issue = SecurityValidations::validateIssueDate($issue); + $settlement = SecurityValidations::validateSettlementDate($settlement); + SecurityValidations::validateSecurityPeriod($issue, $settlement); + $rate = SecurityValidations::validateRate($rate); + $parValue = SecurityValidations::validateParValue($parValue); + $basis = SecurityValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + $daysBetweenIssueAndSettlement = Functions::scalar(YearFrac::fraction($issue, $settlement, $basis)); + if (!is_numeric($daysBetweenIssueAndSettlement)) { + // return date error + return $daysBetweenIssueAndSettlement; + } + + return $parValue * $rate * $daysBetweenIssueAndSettlement; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/Price.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/Price.php new file mode 100644 index 0000000..de1748a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/Price.php @@ -0,0 +1,284 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial\Securities; + +use PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Coupons; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Helpers; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Price +{ + /** + * PRICE. + * + * Returns the price per $100 face value of a security that pays periodic interest. + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue date when the security + * is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $rate the security's annual coupon rate + * @param mixed $yield the security's annual yield + * @param mixed $redemption The number of coupon payments per year. + * For annual payments, frequency = 1; + * for semiannual, frequency = 2; + * for quarterly, frequency = 4. + * @param mixed $frequency + * @param mixed $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string Result, or a string containing an error + */ + public static function price( + $settlement, + $maturity, + $rate, + $yield, + $redemption, + $frequency, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $rate = Functions::flattenSingleValue($rate); + $yield = Functions::flattenSingleValue($yield); + $redemption = Functions::flattenSingleValue($redemption); + $frequency = Functions::flattenSingleValue($frequency); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $settlement = SecurityValidations::validateSettlementDate($settlement); + $maturity = SecurityValidations::validateMaturityDate($maturity); + SecurityValidations::validateSecurityPeriod($settlement, $maturity); + $rate = SecurityValidations::validateRate($rate); + $yield = SecurityValidations::validateYield($yield); + $redemption = SecurityValidations::validateRedemption($redemption); + $frequency = SecurityValidations::validateFrequency($frequency); + $basis = SecurityValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + $dsc = Coupons::COUPDAYSNC($settlement, $maturity, $frequency, $basis); + $e = Coupons::COUPDAYS($settlement, $maturity, $frequency, $basis); + $n = Coupons::COUPNUM($settlement, $maturity, $frequency, $basis); + $a = Coupons::COUPDAYBS($settlement, $maturity, $frequency, $basis); + + $baseYF = 1.0 + ($yield / $frequency); + $rfp = 100 * ($rate / $frequency); + $de = $dsc / $e; + + $result = $redemption / $baseYF ** (--$n + $de); + for ($k = 0; $k <= $n; ++$k) { + $result += $rfp / ($baseYF ** ($k + $de)); + } + $result -= $rfp * ($a / $e); + + return $result; + } + + /** + * PRICEDISC. + * + * Returns the price per $100 face value of a discounted security. + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue date when the security + * is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $discount The security's discount rate + * @param mixed $redemption The security's redemption value per $100 face value + * @param mixed $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string Result, or a string containing an error + */ + public static function priceDiscounted( + $settlement, + $maturity, + $discount, + $redemption, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $discount = Functions::flattenSingleValue($discount); + $redemption = Functions::flattenSingleValue($redemption); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $settlement = SecurityValidations::validateSettlementDate($settlement); + $maturity = SecurityValidations::validateMaturityDate($maturity); + SecurityValidations::validateSecurityPeriod($settlement, $maturity); + $discount = SecurityValidations::validateDiscount($discount); + $redemption = SecurityValidations::validateRedemption($redemption); + $basis = SecurityValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + $daysBetweenSettlementAndMaturity = Functions::scalar(DateTimeExcel\YearFrac::fraction($settlement, $maturity, $basis)); + if (!is_numeric($daysBetweenSettlementAndMaturity)) { + // return date error + return $daysBetweenSettlementAndMaturity; + } + + return $redemption * (1 - $discount * $daysBetweenSettlementAndMaturity); + } + + /** + * PRICEMAT. + * + * Returns the price per $100 face value of a security that pays interest at maturity. + * + * @param mixed $settlement The security's settlement date. + * The security's settlement date is the date after the issue date when the + * security is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $issue The security's issue date + * @param mixed $rate The security's interest rate at date of issue + * @param mixed $yield The security's annual yield + * @param mixed $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string Result, or a string containing an error + */ + public static function priceAtMaturity( + $settlement, + $maturity, + $issue, + $rate, + $yield, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $issue = Functions::flattenSingleValue($issue); + $rate = Functions::flattenSingleValue($rate); + $yield = Functions::flattenSingleValue($yield); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $settlement = SecurityValidations::validateSettlementDate($settlement); + $maturity = SecurityValidations::validateMaturityDate($maturity); + SecurityValidations::validateSecurityPeriod($settlement, $maturity); + $issue = SecurityValidations::validateIssueDate($issue); + $rate = SecurityValidations::validateRate($rate); + $yield = SecurityValidations::validateYield($yield); + $basis = SecurityValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + $daysPerYear = Functions::scalar(Helpers::daysPerYear(DateTimeExcel\DateParts::year($settlement), $basis)); + if (!is_numeric($daysPerYear)) { + return $daysPerYear; + } + $daysBetweenIssueAndSettlement = Functions::scalar(DateTimeExcel\YearFrac::fraction($issue, $settlement, $basis)); + if (!is_numeric($daysBetweenIssueAndSettlement)) { + // return date error + return $daysBetweenIssueAndSettlement; + } + $daysBetweenIssueAndSettlement *= $daysPerYear; + $daysBetweenIssueAndMaturity = Functions::scalar(DateTimeExcel\YearFrac::fraction($issue, $maturity, $basis)); + if (!is_numeric($daysBetweenIssueAndMaturity)) { + // return date error + return $daysBetweenIssueAndMaturity; + } + $daysBetweenIssueAndMaturity *= $daysPerYear; + $daysBetweenSettlementAndMaturity = Functions::scalar(DateTimeExcel\YearFrac::fraction($settlement, $maturity, $basis)); + if (!is_numeric($daysBetweenSettlementAndMaturity)) { + // return date error + return $daysBetweenSettlementAndMaturity; + } + $daysBetweenSettlementAndMaturity *= $daysPerYear; + + return (100 + (($daysBetweenIssueAndMaturity / $daysPerYear) * $rate * 100)) / + (1 + (($daysBetweenSettlementAndMaturity / $daysPerYear) * $yield)) - + (($daysBetweenIssueAndSettlement / $daysPerYear) * $rate * 100); + } + + /** + * RECEIVED. + * + * Returns the amount received at maturity for a fully invested Security. + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue date when the security + * is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $investment The amount invested in the security + * @param mixed $discount The security's discount rate + * @param mixed $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string Result, or a string containing an error + */ + public static function received( + $settlement, + $maturity, + $investment, + $discount, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $investment = Functions::flattenSingleValue($investment); + $discount = Functions::flattenSingleValue($discount); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $settlement = SecurityValidations::validateSettlementDate($settlement); + $maturity = SecurityValidations::validateMaturityDate($maturity); + SecurityValidations::validateSecurityPeriod($settlement, $maturity); + $investment = SecurityValidations::validateFloat($investment); + $discount = SecurityValidations::validateDiscount($discount); + $basis = SecurityValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($investment <= 0) { + return ExcelError::NAN(); + } + $daysBetweenSettlementAndMaturity = DateTimeExcel\YearFrac::fraction($settlement, $maturity, $basis); + if (!is_numeric($daysBetweenSettlementAndMaturity)) { + // return date error + return $daysBetweenSettlementAndMaturity; + } + + return $investment / (1 - ($discount * $daysBetweenSettlementAndMaturity)); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/Rates.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/Rates.php new file mode 100644 index 0000000..f8d8673 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/Rates.php @@ -0,0 +1,138 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial\Securities; + +use PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Rates +{ + /** + * DISC. + * + * Returns the discount rate for a security. + * + * Excel Function: + * DISC(settlement,maturity,price,redemption[,basis]) + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue + * date when the security is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $price The security's price per $100 face value + * @param mixed $redemption The security's redemption value per $100 face value + * @param mixed $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string + */ + public static function discount( + $settlement, + $maturity, + $price, + $redemption, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $price = Functions::flattenSingleValue($price); + $redemption = Functions::flattenSingleValue($redemption); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $settlement = SecurityValidations::validateSettlementDate($settlement); + $maturity = SecurityValidations::validateMaturityDate($maturity); + SecurityValidations::validateSecurityPeriod($settlement, $maturity); + $price = SecurityValidations::validatePrice($price); + $redemption = SecurityValidations::validateRedemption($redemption); + $basis = SecurityValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($price <= 0.0) { + return ExcelError::NAN(); + } + + $daysBetweenSettlementAndMaturity = Functions::scalar(DateTimeExcel\YearFrac::fraction($settlement, $maturity, $basis)); + if (!is_numeric($daysBetweenSettlementAndMaturity)) { + // return date error + return $daysBetweenSettlementAndMaturity; + } + + return (1 - $price / $redemption) / $daysBetweenSettlementAndMaturity; + } + + /** + * INTRATE. + * + * Returns the interest rate for a fully invested security. + * + * Excel Function: + * INTRATE(settlement,maturity,investment,redemption[,basis]) + * + * @param mixed $settlement The security's settlement date. + * The security settlement date is the date after the issue date when the security + * is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $investment the amount invested in the security + * @param mixed $redemption the amount to be received at maturity + * @param mixed $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string + */ + public static function interest( + $settlement, + $maturity, + $investment, + $redemption, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $investment = Functions::flattenSingleValue($investment); + $redemption = Functions::flattenSingleValue($redemption); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $settlement = SecurityValidations::validateSettlementDate($settlement); + $maturity = SecurityValidations::validateMaturityDate($maturity); + SecurityValidations::validateSecurityPeriod($settlement, $maturity); + $investment = SecurityValidations::validateFloat($investment); + $redemption = SecurityValidations::validateRedemption($redemption); + $basis = SecurityValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($investment <= 0) { + return ExcelError::NAN(); + } + + $daysBetweenSettlementAndMaturity = Functions::scalar(DateTimeExcel\YearFrac::fraction($settlement, $maturity, $basis)); + if (!is_numeric($daysBetweenSettlementAndMaturity)) { + // return date error + return $daysBetweenSettlementAndMaturity; + } + + return (($redemption / $investment) - 1) / ($daysBetweenSettlementAndMaturity); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/SecurityValidations.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/SecurityValidations.php new file mode 100644 index 0000000..d3196f0 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/SecurityValidations.php @@ -0,0 +1,42 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial\Securities; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\FinancialValidations; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class SecurityValidations extends FinancialValidations +{ + /** + * @param mixed $issue + */ + public static function validateIssueDate($issue): float + { + return self::validateDate($issue); + } + + /** + * @param mixed $settlement + * @param mixed $maturity + */ + public static function validateSecurityPeriod($settlement, $maturity): void + { + if ($settlement >= $maturity) { + throw new Exception(ExcelError::NAN()); + } + } + + /** + * @param mixed $redemption + */ + public static function validateRedemption($redemption): float + { + $redemption = self::validateFloat($redemption); + if ($redemption <= 0.0) { + throw new Exception(ExcelError::NAN()); + } + + return $redemption; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/Yields.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/Yields.php new file mode 100644 index 0000000..bb2e8ae --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/Yields.php @@ -0,0 +1,153 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial\Securities; + +use PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Helpers; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; + +class Yields +{ + /** + * YIELDDISC. + * + * Returns the annual yield of a security that pays interest at maturity. + * + * @param mixed $settlement The security's settlement date. + * The security's settlement date is the date after the issue date when the security + * is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $price The security's price per $100 face value + * @param mixed $redemption The security's redemption value per $100 face value + * @param mixed $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string Result, or a string containing an error + */ + public static function yieldDiscounted( + $settlement, + $maturity, + $price, + $redemption, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $price = Functions::flattenSingleValue($price); + $redemption = Functions::flattenSingleValue($redemption); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $settlement = SecurityValidations::validateSettlementDate($settlement); + $maturity = SecurityValidations::validateMaturityDate($maturity); + SecurityValidations::validateSecurityPeriod($settlement, $maturity); + $price = SecurityValidations::validatePrice($price); + $redemption = SecurityValidations::validateRedemption($redemption); + $basis = SecurityValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + $daysPerYear = Helpers::daysPerYear(DateTimeExcel\DateParts::year($settlement), $basis); + if (!is_numeric($daysPerYear)) { + return $daysPerYear; + } + $daysBetweenSettlementAndMaturity = Functions::scalar(DateTimeExcel\YearFrac::fraction($settlement, $maturity, $basis)); + if (!is_numeric($daysBetweenSettlementAndMaturity)) { + // return date error + return $daysBetweenSettlementAndMaturity; + } + $daysBetweenSettlementAndMaturity *= $daysPerYear; + + return (($redemption - $price) / $price) * ($daysPerYear / $daysBetweenSettlementAndMaturity); + } + + /** + * YIELDMAT. + * + * Returns the annual yield of a security that pays interest at maturity. + * + * @param mixed $settlement The security's settlement date. + * The security's settlement date is the date after the issue date when the security + * is traded to the buyer. + * @param mixed $maturity The security's maturity date. + * The maturity date is the date when the security expires. + * @param mixed $issue The security's issue date + * @param mixed $rate The security's interest rate at date of issue + * @param mixed $price The security's price per $100 face value + * @param mixed $basis The type of day count to use. + * 0 or omitted US (NASD) 30/360 + * 1 Actual/actual + * 2 Actual/360 + * 3 Actual/365 + * 4 European 30/360 + * + * @return float|string Result, or a string containing an error + */ + public static function yieldAtMaturity( + $settlement, + $maturity, + $issue, + $rate, + $price, + $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + ) { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $issue = Functions::flattenSingleValue($issue); + $rate = Functions::flattenSingleValue($rate); + $price = Functions::flattenSingleValue($price); + $basis = ($basis === null) + ? FinancialConstants::BASIS_DAYS_PER_YEAR_NASD + : Functions::flattenSingleValue($basis); + + try { + $settlement = SecurityValidations::validateSettlementDate($settlement); + $maturity = SecurityValidations::validateMaturityDate($maturity); + SecurityValidations::validateSecurityPeriod($settlement, $maturity); + $issue = SecurityValidations::validateIssueDate($issue); + $rate = SecurityValidations::validateRate($rate); + $price = SecurityValidations::validatePrice($price); + $basis = SecurityValidations::validateBasis($basis); + } catch (Exception $e) { + return $e->getMessage(); + } + + $daysPerYear = Helpers::daysPerYear(DateTimeExcel\DateParts::year($settlement), $basis); + if (!is_numeric($daysPerYear)) { + return $daysPerYear; + } + $daysBetweenIssueAndSettlement = Functions::scalar(DateTimeExcel\YearFrac::fraction($issue, $settlement, $basis)); + if (!is_numeric($daysBetweenIssueAndSettlement)) { + // return date error + return $daysBetweenIssueAndSettlement; + } + $daysBetweenIssueAndSettlement *= $daysPerYear; + $daysBetweenIssueAndMaturity = Functions::scalar(DateTimeExcel\YearFrac::fraction($issue, $maturity, $basis)); + if (!is_numeric($daysBetweenIssueAndMaturity)) { + // return date error + return $daysBetweenIssueAndMaturity; + } + $daysBetweenIssueAndMaturity *= $daysPerYear; + $daysBetweenSettlementAndMaturity = Functions::scalar(DateTimeExcel\YearFrac::fraction($settlement, $maturity, $basis)); + if (!is_numeric($daysBetweenSettlementAndMaturity)) { + // return date error + return $daysBetweenSettlementAndMaturity; + } + $daysBetweenSettlementAndMaturity *= $daysPerYear; + + return ((1 + (($daysBetweenIssueAndMaturity / $daysPerYear) * $rate) - + (($price / 100) + (($daysBetweenIssueAndSettlement / $daysPerYear) * $rate))) / + (($price / 100) + (($daysBetweenIssueAndSettlement / $daysPerYear) * $rate))) * + ($daysPerYear / $daysBetweenSettlementAndMaturity); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/TreasuryBill.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/TreasuryBill.php new file mode 100644 index 0000000..7ee34f7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/TreasuryBill.php @@ -0,0 +1,148 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Financial; + +use PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class TreasuryBill +{ + /** + * TBILLEQ. + * + * Returns the bond-equivalent yield for a Treasury bill. + * + * @param mixed $settlement The Treasury bill's settlement date. + * The Treasury bill's settlement date is the date after the issue date + * when the Treasury bill is traded to the buyer. + * @param mixed $maturity The Treasury bill's maturity date. + * The maturity date is the date when the Treasury bill expires. + * @param mixed $discount The Treasury bill's discount rate + * + * @return float|string Result, or a string containing an error + */ + public static function bondEquivalentYield($settlement, $maturity, $discount) + { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $discount = Functions::flattenSingleValue($discount); + + try { + $settlement = FinancialValidations::validateSettlementDate($settlement); + $maturity = FinancialValidations::validateMaturityDate($maturity); + $discount = FinancialValidations::validateFloat($discount); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($discount <= 0) { + return ExcelError::NAN(); + } + + $daysBetweenSettlementAndMaturity = $maturity - $settlement; + $daysPerYear = Helpers::daysPerYear( + Functions::scalar(DateTimeExcel\DateParts::year($maturity)), + FinancialConstants::BASIS_DAYS_PER_YEAR_ACTUAL + ); + + if ($daysBetweenSettlementAndMaturity > $daysPerYear || $daysBetweenSettlementAndMaturity < 0) { + return ExcelError::NAN(); + } + + return (365 * $discount) / (360 - $discount * $daysBetweenSettlementAndMaturity); + } + + /** + * TBILLPRICE. + * + * Returns the price per $100 face value for a Treasury bill. + * + * @param mixed $settlement The Treasury bill's settlement date. + * The Treasury bill's settlement date is the date after the issue date + * when the Treasury bill is traded to the buyer. + * @param mixed $maturity The Treasury bill's maturity date. + * The maturity date is the date when the Treasury bill expires. + * @param mixed $discount The Treasury bill's discount rate + * + * @return float|string Result, or a string containing an error + */ + public static function price($settlement, $maturity, $discount) + { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $discount = Functions::flattenSingleValue($discount); + + try { + $settlement = FinancialValidations::validateSettlementDate($settlement); + $maturity = FinancialValidations::validateMaturityDate($maturity); + $discount = FinancialValidations::validateFloat($discount); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($discount <= 0) { + return ExcelError::NAN(); + } + + $daysBetweenSettlementAndMaturity = $maturity - $settlement; + $daysPerYear = Helpers::daysPerYear( + Functions::scalar(DateTimeExcel\DateParts::year($maturity)), + FinancialConstants::BASIS_DAYS_PER_YEAR_ACTUAL + ); + + if ($daysBetweenSettlementAndMaturity > $daysPerYear || $daysBetweenSettlementAndMaturity < 0) { + return ExcelError::NAN(); + } + + $price = 100 * (1 - (($discount * $daysBetweenSettlementAndMaturity) / 360)); + if ($price < 0.0) { + return ExcelError::NAN(); + } + + return $price; + } + + /** + * TBILLYIELD. + * + * Returns the yield for a Treasury bill. + * + * @param mixed $settlement The Treasury bill's settlement date. + * The Treasury bill's settlement date is the date after the issue date when + * the Treasury bill is traded to the buyer. + * @param mixed $maturity The Treasury bill's maturity date. + * The maturity date is the date when the Treasury bill expires. + * @param mixed $price The Treasury bill's price per $100 face value + * + * @return float|string + */ + public static function yield($settlement, $maturity, $price) + { + $settlement = Functions::flattenSingleValue($settlement); + $maturity = Functions::flattenSingleValue($maturity); + $price = Functions::flattenSingleValue($price); + + try { + $settlement = FinancialValidations::validateSettlementDate($settlement); + $maturity = FinancialValidations::validateMaturityDate($maturity); + $price = FinancialValidations::validatePrice($price); + } catch (Exception $e) { + return $e->getMessage(); + } + + $daysBetweenSettlementAndMaturity = $maturity - $settlement; + $daysPerYear = Helpers::daysPerYear( + Functions::scalar(DateTimeExcel\DateParts::year($maturity)), + FinancialConstants::BASIS_DAYS_PER_YEAR_ACTUAL + ); + + if ($daysBetweenSettlementAndMaturity > $daysPerYear || $daysBetweenSettlementAndMaturity < 0) { + return ExcelError::NAN(); + } + + return ((100 - $price) / $price) * (360 / $daysBetweenSettlementAndMaturity); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/FormulaParser.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/FormulaParser.php new file mode 100644 index 0000000..ddf45b2 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/FormulaParser.php @@ -0,0 +1,629 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +/** + * PARTLY BASED ON: + * Copyright (c) 2007 E. W. Bachtal, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software + * and associated documentation files (the "Software"), to deal in the Software without restriction, + * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or substantial + * portions of the Software. + * + * The software is provided "as is", without warranty of any kind, express or implied, including but not + * limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In + * no event shall the authors or copyright holders be liable for any claim, damages or other liability, + * whether in an action of contract, tort or otherwise, arising from, out of or in connection with the + * software or the use or other dealings in the software. + * + * https://ewbi.blogs.com/develops/2007/03/excel_formula_p.html + * https://ewbi.blogs.com/develops/2004/12/excel_formula_p.html + */ +class FormulaParser +{ + // Character constants + const QUOTE_DOUBLE = '"'; + const QUOTE_SINGLE = '\''; + const BRACKET_CLOSE = ']'; + const BRACKET_OPEN = '['; + const BRACE_OPEN = '{'; + const BRACE_CLOSE = '}'; + const PAREN_OPEN = '('; + const PAREN_CLOSE = ')'; + const SEMICOLON = ';'; + const WHITESPACE = ' '; + const COMMA = ','; + const ERROR_START = '#'; + + const OPERATORS_SN = '+-'; + const OPERATORS_INFIX = '+-*/^&=><'; + const OPERATORS_POSTFIX = '%'; + + /** + * Formula. + * + * @var string + */ + private $formula; + + /** + * Tokens. + * + * @var FormulaToken[] + */ + private $tokens = []; + + /** + * Create a new FormulaParser. + * + * @param string $formula Formula to parse + */ + public function __construct($formula = '') + { + // Check parameters + if ($formula === null) { + throw new Exception('Invalid parameter passed: formula'); + } + + // Initialise values + $this->formula = trim($formula); + // Parse! + $this->parseToTokens(); + } + + /** + * Get Formula. + * + * @return string + */ + public function getFormula() + { + return $this->formula; + } + + /** + * Get Token. + * + * @param int $id Token id + */ + public function getToken(int $id = 0): FormulaToken + { + if (isset($this->tokens[$id])) { + return $this->tokens[$id]; + } + + throw new Exception("Token with id $id does not exist."); + } + + /** + * Get Token count. + * + * @return int + */ + public function getTokenCount() + { + return count($this->tokens); + } + + /** + * Get Tokens. + * + * @return FormulaToken[] + */ + public function getTokens() + { + return $this->tokens; + } + + /** + * Parse to tokens. + */ + private function parseToTokens(): void + { + // No attempt is made to verify formulas; assumes formulas are derived from Excel, where + // they can only exist if valid; stack overflows/underflows sunk as nulls without exceptions. + + // Check if the formula has a valid starting = + $formulaLength = strlen($this->formula); + if ($formulaLength < 2 || $this->formula[0] != '=') { + return; + } + + // Helper variables + $tokens1 = $tokens2 = $stack = []; + $inString = $inPath = $inRange = $inError = false; + $token = $previousToken = $nextToken = null; + + $index = 1; + $value = ''; + + $ERRORS = ['#NULL!', '#DIV/0!', '#VALUE!', '#REF!', '#NAME?', '#NUM!', '#N/A']; + $COMPARATORS_MULTI = ['>=', '<=', '<>']; + + while ($index < $formulaLength) { + // state-dependent character evaluation (order is important) + + // double-quoted strings + // embeds are doubled + // end marks token + if ($inString) { + if ($this->formula[$index] == self::QUOTE_DOUBLE) { + if ((($index + 2) <= $formulaLength) && ($this->formula[$index + 1] == self::QUOTE_DOUBLE)) { + $value .= self::QUOTE_DOUBLE; + ++$index; + } else { + $inString = false; + $tokens1[] = new FormulaToken($value, FormulaToken::TOKEN_TYPE_OPERAND, FormulaToken::TOKEN_SUBTYPE_TEXT); + $value = ''; + } + } else { + $value .= $this->formula[$index]; + } + ++$index; + + continue; + } + + // single-quoted strings (links) + // embeds are double + // end does not mark a token + if ($inPath) { + if ($this->formula[$index] == self::QUOTE_SINGLE) { + if ((($index + 2) <= $formulaLength) && ($this->formula[$index + 1] == self::QUOTE_SINGLE)) { + $value .= self::QUOTE_SINGLE; + ++$index; + } else { + $inPath = false; + } + } else { + $value .= $this->formula[$index]; + } + ++$index; + + continue; + } + + // bracked strings (R1C1 range index or linked workbook name) + // no embeds (changed to "()" by Excel) + // end does not mark a token + if ($inRange) { + if ($this->formula[$index] == self::BRACKET_CLOSE) { + $inRange = false; + } + $value .= $this->formula[$index]; + ++$index; + + continue; + } + + // error values + // end marks a token, determined from absolute list of values + if ($inError) { + $value .= $this->formula[$index]; + ++$index; + if (in_array($value, $ERRORS)) { + $inError = false; + $tokens1[] = new FormulaToken($value, FormulaToken::TOKEN_TYPE_OPERAND, FormulaToken::TOKEN_SUBTYPE_ERROR); + $value = ''; + } + + continue; + } + + // scientific notation check + if (strpos(self::OPERATORS_SN, $this->formula[$index]) !== false) { + if (strlen($value) > 1) { + if (preg_match('/^[1-9]{1}(\\.\\d+)?E{1}$/', $this->formula[$index]) != 0) { + $value .= $this->formula[$index]; + ++$index; + + continue; + } + } + } + + // independent character evaluation (order not important) + + // establish state-dependent character evaluations + if ($this->formula[$index] == self::QUOTE_DOUBLE) { + if (strlen($value) > 0) { + // unexpected + $tokens1[] = new FormulaToken($value, FormulaToken::TOKEN_TYPE_UNKNOWN); + $value = ''; + } + $inString = true; + ++$index; + + continue; + } + + if ($this->formula[$index] == self::QUOTE_SINGLE) { + if (strlen($value) > 0) { + // unexpected + $tokens1[] = new FormulaToken($value, FormulaToken::TOKEN_TYPE_UNKNOWN); + $value = ''; + } + $inPath = true; + ++$index; + + continue; + } + + if ($this->formula[$index] == self::BRACKET_OPEN) { + $inRange = true; + $value .= self::BRACKET_OPEN; + ++$index; + + continue; + } + + if ($this->formula[$index] == self::ERROR_START) { + if (strlen($value) > 0) { + // unexpected + $tokens1[] = new FormulaToken($value, FormulaToken::TOKEN_TYPE_UNKNOWN); + $value = ''; + } + $inError = true; + $value .= self::ERROR_START; + ++$index; + + continue; + } + + // mark start and end of arrays and array rows + if ($this->formula[$index] == self::BRACE_OPEN) { + if (strlen($value) > 0) { + // unexpected + $tokens1[] = new FormulaToken($value, FormulaToken::TOKEN_TYPE_UNKNOWN); + $value = ''; + } + + $tmp = new FormulaToken('ARRAY', FormulaToken::TOKEN_TYPE_FUNCTION, FormulaToken::TOKEN_SUBTYPE_START); + $tokens1[] = $tmp; + $stack[] = clone $tmp; + + $tmp = new FormulaToken('ARRAYROW', FormulaToken::TOKEN_TYPE_FUNCTION, FormulaToken::TOKEN_SUBTYPE_START); + $tokens1[] = $tmp; + $stack[] = clone $tmp; + + ++$index; + + continue; + } + + if ($this->formula[$index] == self::SEMICOLON) { + if (strlen($value) > 0) { + $tokens1[] = new FormulaToken($value, FormulaToken::TOKEN_TYPE_OPERAND); + $value = ''; + } + + $tmp = array_pop($stack); + $tmp->setValue(''); + $tmp->setTokenSubType(FormulaToken::TOKEN_SUBTYPE_STOP); + $tokens1[] = $tmp; + + $tmp = new FormulaToken(',', FormulaToken::TOKEN_TYPE_ARGUMENT); + $tokens1[] = $tmp; + + $tmp = new FormulaToken('ARRAYROW', FormulaToken::TOKEN_TYPE_FUNCTION, FormulaToken::TOKEN_SUBTYPE_START); + $tokens1[] = $tmp; + $stack[] = clone $tmp; + + ++$index; + + continue; + } + + if ($this->formula[$index] == self::BRACE_CLOSE) { + if (strlen($value) > 0) { + $tokens1[] = new FormulaToken($value, FormulaToken::TOKEN_TYPE_OPERAND); + $value = ''; + } + + $tmp = array_pop($stack); + $tmp->setValue(''); + $tmp->setTokenSubType(FormulaToken::TOKEN_SUBTYPE_STOP); + $tokens1[] = $tmp; + + $tmp = array_pop($stack); + $tmp->setValue(''); + $tmp->setTokenSubType(FormulaToken::TOKEN_SUBTYPE_STOP); + $tokens1[] = $tmp; + + ++$index; + + continue; + } + + // trim white-space + if ($this->formula[$index] == self::WHITESPACE) { + if (strlen($value) > 0) { + $tokens1[] = new FormulaToken($value, FormulaToken::TOKEN_TYPE_OPERAND); + $value = ''; + } + $tokens1[] = new FormulaToken('', FormulaToken::TOKEN_TYPE_WHITESPACE); + ++$index; + while (($this->formula[$index] == self::WHITESPACE) && ($index < $formulaLength)) { + ++$index; + } + + continue; + } + + // multi-character comparators + if (($index + 2) <= $formulaLength) { + if (in_array(substr($this->formula, $index, 2), $COMPARATORS_MULTI)) { + if (strlen($value) > 0) { + $tokens1[] = new FormulaToken($value, FormulaToken::TOKEN_TYPE_OPERAND); + $value = ''; + } + $tokens1[] = new FormulaToken(substr($this->formula, $index, 2), FormulaToken::TOKEN_TYPE_OPERATORINFIX, FormulaToken::TOKEN_SUBTYPE_LOGICAL); + $index += 2; + + continue; + } + } + + // standard infix operators + if (strpos(self::OPERATORS_INFIX, $this->formula[$index]) !== false) { + if (strlen($value) > 0) { + $tokens1[] = new FormulaToken($value, FormulaToken::TOKEN_TYPE_OPERAND); + $value = ''; + } + $tokens1[] = new FormulaToken($this->formula[$index], FormulaToken::TOKEN_TYPE_OPERATORINFIX); + ++$index; + + continue; + } + + // standard postfix operators (only one) + if (strpos(self::OPERATORS_POSTFIX, $this->formula[$index]) !== false) { + if (strlen($value) > 0) { + $tokens1[] = new FormulaToken($value, FormulaToken::TOKEN_TYPE_OPERAND); + $value = ''; + } + $tokens1[] = new FormulaToken($this->formula[$index], FormulaToken::TOKEN_TYPE_OPERATORPOSTFIX); + ++$index; + + continue; + } + + // start subexpression or function + if ($this->formula[$index] == self::PAREN_OPEN) { + if (strlen($value) > 0) { + $tmp = new FormulaToken($value, FormulaToken::TOKEN_TYPE_FUNCTION, FormulaToken::TOKEN_SUBTYPE_START); + $tokens1[] = $tmp; + $stack[] = clone $tmp; + $value = ''; + } else { + $tmp = new FormulaToken('', FormulaToken::TOKEN_TYPE_SUBEXPRESSION, FormulaToken::TOKEN_SUBTYPE_START); + $tokens1[] = $tmp; + $stack[] = clone $tmp; + } + ++$index; + + continue; + } + + // function, subexpression, or array parameters, or operand unions + if ($this->formula[$index] == self::COMMA) { + if (strlen($value) > 0) { + $tokens1[] = new FormulaToken($value, FormulaToken::TOKEN_TYPE_OPERAND); + $value = ''; + } + + $tmp = array_pop($stack); + $tmp->setValue(''); + $tmp->setTokenSubType(FormulaToken::TOKEN_SUBTYPE_STOP); + $stack[] = $tmp; + + if ($tmp->getTokenType() == FormulaToken::TOKEN_TYPE_FUNCTION) { + $tokens1[] = new FormulaToken(',', FormulaToken::TOKEN_TYPE_OPERATORINFIX, FormulaToken::TOKEN_SUBTYPE_UNION); + } else { + $tokens1[] = new FormulaToken(',', FormulaToken::TOKEN_TYPE_ARGUMENT); + } + ++$index; + + continue; + } + + // stop subexpression + if ($this->formula[$index] == self::PAREN_CLOSE) { + if (strlen($value) > 0) { + $tokens1[] = new FormulaToken($value, FormulaToken::TOKEN_TYPE_OPERAND); + $value = ''; + } + + $tmp = array_pop($stack); + $tmp->setValue(''); + $tmp->setTokenSubType(FormulaToken::TOKEN_SUBTYPE_STOP); + $tokens1[] = $tmp; + + ++$index; + + continue; + } + + // token accumulation + $value .= $this->formula[$index]; + ++$index; + } + + // dump remaining accumulation + if (strlen($value) > 0) { + $tokens1[] = new FormulaToken($value, FormulaToken::TOKEN_TYPE_OPERAND); + } + + // move tokenList to new set, excluding unnecessary white-space tokens and converting necessary ones to intersections + $tokenCount = count($tokens1); + for ($i = 0; $i < $tokenCount; ++$i) { + $token = $tokens1[$i]; + if (isset($tokens1[$i - 1])) { + $previousToken = $tokens1[$i - 1]; + } else { + $previousToken = null; + } + if (isset($tokens1[$i + 1])) { + $nextToken = $tokens1[$i + 1]; + } else { + $nextToken = null; + } + + if ($token === null) { + continue; + } + + if ($token->getTokenType() != FormulaToken::TOKEN_TYPE_WHITESPACE) { + $tokens2[] = $token; + + continue; + } + + if ($previousToken === null) { + continue; + } + + if ( + !( + (($previousToken->getTokenType() == FormulaToken::TOKEN_TYPE_FUNCTION) && ($previousToken->getTokenSubType() == FormulaToken::TOKEN_SUBTYPE_STOP)) || + (($previousToken->getTokenType() == FormulaToken::TOKEN_TYPE_SUBEXPRESSION) && ($previousToken->getTokenSubType() == FormulaToken::TOKEN_SUBTYPE_STOP)) || + ($previousToken->getTokenType() == FormulaToken::TOKEN_TYPE_OPERAND) + ) + ) { + continue; + } + + if ($nextToken === null) { + continue; + } + + if ( + !( + (($nextToken->getTokenType() == FormulaToken::TOKEN_TYPE_FUNCTION) && ($nextToken->getTokenSubType() == FormulaToken::TOKEN_SUBTYPE_START)) || + (($nextToken->getTokenType() == FormulaToken::TOKEN_TYPE_SUBEXPRESSION) && ($nextToken->getTokenSubType() == FormulaToken::TOKEN_SUBTYPE_START)) || + ($nextToken->getTokenType() == FormulaToken::TOKEN_TYPE_OPERAND) + ) + ) { + continue; + } + + $tokens2[] = new FormulaToken($value, FormulaToken::TOKEN_TYPE_OPERATORINFIX, FormulaToken::TOKEN_SUBTYPE_INTERSECTION); + } + + // move tokens to final list, switching infix "-" operators to prefix when appropriate, switching infix "+" operators + // to noop when appropriate, identifying operand and infix-operator subtypes, and pulling "@" from function names + $this->tokens = []; + + $tokenCount = count($tokens2); + for ($i = 0; $i < $tokenCount; ++$i) { + $token = $tokens2[$i]; + if (isset($tokens2[$i - 1])) { + $previousToken = $tokens2[$i - 1]; + } else { + $previousToken = null; + } + if (isset($tokens2[$i + 1])) { + $nextToken = $tokens2[$i + 1]; + } else { + $nextToken = null; + } + + if ($token === null) { + continue; + } + + if ($token->getTokenType() == FormulaToken::TOKEN_TYPE_OPERATORINFIX && $token->getValue() == '-') { + if ($i == 0) { + $token->setTokenType(FormulaToken::TOKEN_TYPE_OPERATORPREFIX); + } elseif ( + (($previousToken->getTokenType() == FormulaToken::TOKEN_TYPE_FUNCTION) && + ($previousToken->getTokenSubType() == FormulaToken::TOKEN_SUBTYPE_STOP)) || + (($previousToken->getTokenType() == FormulaToken::TOKEN_TYPE_SUBEXPRESSION) && + ($previousToken->getTokenSubType() == FormulaToken::TOKEN_SUBTYPE_STOP)) || + ($previousToken->getTokenType() == FormulaToken::TOKEN_TYPE_OPERATORPOSTFIX) || + ($previousToken->getTokenType() == FormulaToken::TOKEN_TYPE_OPERAND) + ) { + $token->setTokenSubType(FormulaToken::TOKEN_SUBTYPE_MATH); + } else { + $token->setTokenType(FormulaToken::TOKEN_TYPE_OPERATORPREFIX); + } + + $this->tokens[] = $token; + + continue; + } + + if ($token->getTokenType() == FormulaToken::TOKEN_TYPE_OPERATORINFIX && $token->getValue() == '+') { + if ($i == 0) { + continue; + } elseif ( + (($previousToken->getTokenType() == FormulaToken::TOKEN_TYPE_FUNCTION) && + ($previousToken->getTokenSubType() == FormulaToken::TOKEN_SUBTYPE_STOP)) || + (($previousToken->getTokenType() == FormulaToken::TOKEN_TYPE_SUBEXPRESSION) && + ($previousToken->getTokenSubType() == FormulaToken::TOKEN_SUBTYPE_STOP)) || + ($previousToken->getTokenType() == FormulaToken::TOKEN_TYPE_OPERATORPOSTFIX) || + ($previousToken->getTokenType() == FormulaToken::TOKEN_TYPE_OPERAND) + ) { + $token->setTokenSubType(FormulaToken::TOKEN_SUBTYPE_MATH); + } else { + continue; + } + + $this->tokens[] = $token; + + continue; + } + + if ( + $token->getTokenType() == FormulaToken::TOKEN_TYPE_OPERATORINFIX && + $token->getTokenSubType() == FormulaToken::TOKEN_SUBTYPE_NOTHING + ) { + if (strpos('<>=', substr($token->getValue(), 0, 1)) !== false) { + $token->setTokenSubType(FormulaToken::TOKEN_SUBTYPE_LOGICAL); + } elseif ($token->getValue() == '&') { + $token->setTokenSubType(FormulaToken::TOKEN_SUBTYPE_CONCATENATION); + } else { + $token->setTokenSubType(FormulaToken::TOKEN_SUBTYPE_MATH); + } + + $this->tokens[] = $token; + + continue; + } + + if ( + $token->getTokenType() == FormulaToken::TOKEN_TYPE_OPERAND && + $token->getTokenSubType() == FormulaToken::TOKEN_SUBTYPE_NOTHING + ) { + if (!is_numeric($token->getValue())) { + if (strtoupper($token->getValue()) == 'TRUE' || strtoupper($token->getValue()) == 'FALSE') { + $token->setTokenSubType(FormulaToken::TOKEN_SUBTYPE_LOGICAL); + } else { + $token->setTokenSubType(FormulaToken::TOKEN_SUBTYPE_RANGE); + } + } else { + $token->setTokenSubType(FormulaToken::TOKEN_SUBTYPE_NUMBER); + } + + $this->tokens[] = $token; + + continue; + } + + if ($token->getTokenType() == FormulaToken::TOKEN_TYPE_FUNCTION) { + if (strlen($token->getValue()) > 0) { + if (substr($token->getValue(), 0, 1) == '@') { + $token->setValue(substr($token->getValue(), 1)); + } + } + } + + $this->tokens[] = $token; + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/FormulaToken.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/FormulaToken.php new file mode 100644 index 0000000..68e5eea --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/FormulaToken.php @@ -0,0 +1,150 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +/** + * PARTLY BASED ON: + * Copyright (c) 2007 E. W. Bachtal, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software + * and associated documentation files (the "Software"), to deal in the Software without restriction, + * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or substantial + * portions of the Software. + * + * The software is provided "as is", without warranty of any kind, express or implied, including but not + * limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In + * no event shall the authors or copyright holders be liable for any claim, damages or other liability, + * whether in an action of contract, tort or otherwise, arising from, out of or in connection with the + * software or the use or other dealings in the software. + * + * https://ewbi.blogs.com/develops/2007/03/excel_formula_p.html + * https://ewbi.blogs.com/develops/2004/12/excel_formula_p.html + */ +class FormulaToken +{ + // Token types + const TOKEN_TYPE_NOOP = 'Noop'; + const TOKEN_TYPE_OPERAND = 'Operand'; + const TOKEN_TYPE_FUNCTION = 'Function'; + const TOKEN_TYPE_SUBEXPRESSION = 'Subexpression'; + const TOKEN_TYPE_ARGUMENT = 'Argument'; + const TOKEN_TYPE_OPERATORPREFIX = 'OperatorPrefix'; + const TOKEN_TYPE_OPERATORINFIX = 'OperatorInfix'; + const TOKEN_TYPE_OPERATORPOSTFIX = 'OperatorPostfix'; + const TOKEN_TYPE_WHITESPACE = 'Whitespace'; + const TOKEN_TYPE_UNKNOWN = 'Unknown'; + + // Token subtypes + const TOKEN_SUBTYPE_NOTHING = 'Nothing'; + const TOKEN_SUBTYPE_START = 'Start'; + const TOKEN_SUBTYPE_STOP = 'Stop'; + const TOKEN_SUBTYPE_TEXT = 'Text'; + const TOKEN_SUBTYPE_NUMBER = 'Number'; + const TOKEN_SUBTYPE_LOGICAL = 'Logical'; + const TOKEN_SUBTYPE_ERROR = 'Error'; + const TOKEN_SUBTYPE_RANGE = 'Range'; + const TOKEN_SUBTYPE_MATH = 'Math'; + const TOKEN_SUBTYPE_CONCATENATION = 'Concatenation'; + const TOKEN_SUBTYPE_INTERSECTION = 'Intersection'; + const TOKEN_SUBTYPE_UNION = 'Union'; + + /** + * Value. + * + * @var string + */ + private $value; + + /** + * Token Type (represented by TOKEN_TYPE_*). + * + * @var string + */ + private $tokenType; + + /** + * Token SubType (represented by TOKEN_SUBTYPE_*). + * + * @var string + */ + private $tokenSubType; + + /** + * Create a new FormulaToken. + * + * @param string $value + * @param string $tokenType Token type (represented by TOKEN_TYPE_*) + * @param string $tokenSubType Token Subtype (represented by TOKEN_SUBTYPE_*) + */ + public function __construct($value, $tokenType = self::TOKEN_TYPE_UNKNOWN, $tokenSubType = self::TOKEN_SUBTYPE_NOTHING) + { + // Initialise values + $this->value = $value; + $this->tokenType = $tokenType; + $this->tokenSubType = $tokenSubType; + } + + /** + * Get Value. + * + * @return string + */ + public function getValue() + { + return $this->value; + } + + /** + * Set Value. + * + * @param string $value + */ + public function setValue($value): void + { + $this->value = $value; + } + + /** + * Get Token Type (represented by TOKEN_TYPE_*). + * + * @return string + */ + public function getTokenType() + { + return $this->tokenType; + } + + /** + * Set Token Type (represented by TOKEN_TYPE_*). + * + * @param string $value + */ + public function setTokenType($value): void + { + $this->tokenType = $value; + } + + /** + * Get Token SubType (represented by TOKEN_SUBTYPE_*). + * + * @return string + */ + public function getTokenSubType() + { + return $this->tokenSubType; + } + + /** + * Set Token SubType (represented by TOKEN_SUBTYPE_*). + * + * @param string $value + */ + public function setTokenSubType($value): void + { + $this->tokenSubType = $value; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Functions.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Functions.php new file mode 100644 index 0000000..ddd3e20 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Functions.php @@ -0,0 +1,714 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Shared\Date; + +class Functions +{ + const PRECISION = 8.88E-016; + + /** + * 2 / PI. + */ + const M_2DIVPI = 0.63661977236758134307553505349006; + + const COMPATIBILITY_EXCEL = 'Excel'; + const COMPATIBILITY_GNUMERIC = 'Gnumeric'; + const COMPATIBILITY_OPENOFFICE = 'OpenOfficeCalc'; + + /** Use of RETURNDATE_PHP_NUMERIC is discouraged - not 32-bit Y2038-safe, no timezone. */ + const RETURNDATE_PHP_NUMERIC = 'P'; + /** Use of RETURNDATE_UNIX_TIMESTAMP is discouraged - not 32-bit Y2038-safe, no timezone. */ + const RETURNDATE_UNIX_TIMESTAMP = 'P'; + const RETURNDATE_PHP_OBJECT = 'O'; + const RETURNDATE_PHP_DATETIME_OBJECT = 'O'; + const RETURNDATE_EXCEL = 'E'; + + /** + * Compatibility mode to use for error checking and responses. + * + * @var string + */ + protected static $compatibilityMode = self::COMPATIBILITY_EXCEL; + + /** + * Data Type to use when returning date values. + * + * @var string + */ + protected static $returnDateType = self::RETURNDATE_EXCEL; + + /** + * Set the Compatibility Mode. + * + * @param string $compatibilityMode Compatibility Mode + * Permitted values are: + * Functions::COMPATIBILITY_EXCEL 'Excel' + * Functions::COMPATIBILITY_GNUMERIC 'Gnumeric' + * Functions::COMPATIBILITY_OPENOFFICE 'OpenOfficeCalc' + * + * @return bool (Success or Failure) + */ + public static function setCompatibilityMode($compatibilityMode) + { + if ( + ($compatibilityMode == self::COMPATIBILITY_EXCEL) || + ($compatibilityMode == self::COMPATIBILITY_GNUMERIC) || + ($compatibilityMode == self::COMPATIBILITY_OPENOFFICE) + ) { + self::$compatibilityMode = $compatibilityMode; + + return true; + } + + return false; + } + + /** + * Return the current Compatibility Mode. + * + * @return string Compatibility Mode + * Possible Return values are: + * Functions::COMPATIBILITY_EXCEL 'Excel' + * Functions::COMPATIBILITY_GNUMERIC 'Gnumeric' + * Functions::COMPATIBILITY_OPENOFFICE 'OpenOfficeCalc' + */ + public static function getCompatibilityMode() + { + return self::$compatibilityMode; + } + + /** + * Set the Return Date Format used by functions that return a date/time (Excel, PHP Serialized Numeric or PHP DateTime Object). + * + * @param string $returnDateType Return Date Format + * Permitted values are: + * Functions::RETURNDATE_UNIX_TIMESTAMP 'P' + * Functions::RETURNDATE_PHP_DATETIME_OBJECT 'O' + * Functions::RETURNDATE_EXCEL 'E' + * + * @return bool Success or failure + */ + public static function setReturnDateType($returnDateType) + { + if ( + ($returnDateType == self::RETURNDATE_UNIX_TIMESTAMP) || + ($returnDateType == self::RETURNDATE_PHP_DATETIME_OBJECT) || + ($returnDateType == self::RETURNDATE_EXCEL) + ) { + self::$returnDateType = $returnDateType; + + return true; + } + + return false; + } + + /** + * Return the current Return Date Format for functions that return a date/time (Excel, PHP Serialized Numeric or PHP Object). + * + * @return string Return Date Format + * Possible Return values are: + * Functions::RETURNDATE_UNIX_TIMESTAMP 'P' + * Functions::RETURNDATE_PHP_DATETIME_OBJECT 'O' + * Functions::RETURNDATE_EXCEL ' 'E' + */ + public static function getReturnDateType() + { + return self::$returnDateType; + } + + /** + * DUMMY. + * + * @return string #Not Yet Implemented + */ + public static function DUMMY() + { + return '#Not Yet Implemented'; + } + + public static function isMatrixValue($idx) + { + return (substr_count($idx, '.') <= 1) || (preg_match('/\.[A-Z]/', $idx) > 0); + } + + public static function isValue($idx) + { + return substr_count($idx, '.') === 0; + } + + public static function isCellValue($idx) + { + return substr_count($idx, '.') > 1; + } + + public static function ifCondition($condition) + { + $condition = self::flattenSingleValue($condition); + + if ($condition === '') { + return '=""'; + } + if (!is_string($condition) || !in_array($condition[0], ['>', '<', '='], true)) { + $condition = self::operandSpecialHandling($condition); + if (is_bool($condition)) { + return '=' . ($condition ? 'TRUE' : 'FALSE'); + } elseif (!is_numeric($condition)) { + if ($condition !== '""') { // Not an empty string + // Escape any quotes in the string value + $condition = (string) preg_replace('/"/ui', '""', $condition); + } + $condition = Calculation::wrapResult(strtoupper($condition)); + } + + return str_replace('""""', '""', '=' . $condition); + } + preg_match('/(=|<[>=]?|>=?)(.*)/', $condition, $matches); + [, $operator, $operand] = $matches; + + $operand = self::operandSpecialHandling($operand); + if (is_numeric(trim($operand, '"'))) { + $operand = trim($operand, '"'); + } elseif (!is_numeric($operand) && $operand !== 'FALSE' && $operand !== 'TRUE') { + $operand = str_replace('"', '""', $operand); + $operand = Calculation::wrapResult(strtoupper($operand)); + } + + return str_replace('""""', '""', $operator . $operand); + } + + private static function operandSpecialHandling($operand) + { + if (is_numeric($operand) || is_bool($operand)) { + return $operand; + } elseif (strtoupper($operand) === Calculation::getTRUE() || strtoupper($operand) === Calculation::getFALSE()) { + return strtoupper($operand); + } + + // Check for percentage + if (preg_match('/^\-?\d*\.?\d*\s?\%$/', $operand)) { + return ((float) rtrim($operand, '%')) / 100; + } + + // Check for dates + if (($dateValueOperand = Date::stringToExcel($operand)) !== false) { + return $dateValueOperand; + } + + return $operand; + } + + /** + * NULL. + * + * Returns the error value #NULL! + * + * @Deprecated 1.23.0 + * + * @return string #NULL! + * + *@see Information\ExcelError::null() + * Use the null() method in the Information\Error class instead + */ + public static function null() + { + return Information\ExcelError::null(); + } + + /** + * NaN. + * + * Returns the error value #NUM! + * + * @Deprecated 1.23.0 + * + * @return string #NUM! + * + * @see Information\ExcelError::NAN() + * Use the NAN() method in the Information\Error class instead + */ + public static function NAN() + { + return Information\ExcelError::NAN(); + } + + /** + * REF. + * + * Returns the error value #REF! + * + * @Deprecated 1.23.0 + * + * @return string #REF! + * + * @see Information\ExcelError::REF() + * Use the REF() method in the Information\Error class instead + */ + public static function REF() + { + return Information\ExcelError::REF(); + } + + /** + * NA. + * + * Excel Function: + * =NA() + * + * Returns the error value #N/A + * #N/A is the error value that means "no value is available." + * + * @Deprecated 1.23.0 + * + * @return string #N/A! + * + * @see Information\ExcelError::NA() + * Use the NA() method in the Information\Error class instead + */ + public static function NA() + { + return Information\ExcelError::NA(); + } + + /** + * VALUE. + * + * Returns the error value #VALUE! + * + * @Deprecated 1.23.0 + * + * @return string #VALUE! + * + * @see Information\ExcelError::VALUE() + * Use the VALUE() method in the Information\Error class instead + */ + public static function VALUE() + { + return Information\ExcelError::VALUE(); + } + + /** + * NAME. + * + * Returns the error value #NAME? + * + * @Deprecated 1.23.0 + * + * @return string #NAME? + * + * @see Information\ExcelError::NAME() + * Use the NAME() method in the Information\Error class instead + */ + public static function NAME() + { + return Information\ExcelError::NAME(); + } + + /** + * DIV0. + * + * @Deprecated 1.23.0 + * + * @return string #Not Yet Implemented + * + *@see Information\ExcelError::DIV0() + * Use the DIV0() method in the Information\Error class instead + */ + public static function DIV0() + { + return Information\ExcelError::DIV0(); + } + + /** + * ERROR_TYPE. + * + * @param mixed $value Value to check + * + * @Deprecated 1.23.0 + * + * @return array|int|string + * + * @see Information\ExcelError::type() + * Use the type() method in the Information\Error class instead + */ + public static function errorType($value = '') + { + return Information\ExcelError::type($value); + } + + /** + * IS_BLANK. + * + * @param mixed $value Value to check + * + * @Deprecated 1.23.0 + * + * @see Information\Value::isBlank() + * Use the isBlank() method in the Information\Value class instead + * + * @return array|bool + */ + public static function isBlank($value = null) + { + return Information\Value::isBlank($value); + } + + /** + * IS_ERR. + * + * @param mixed $value Value to check + * + * @Deprecated 1.23.0 + * + * @see Information\Value::isErr() + * Use the isErr() method in the Information\Value class instead + * + * @return array|bool + */ + public static function isErr($value = '') + { + return Information\ErrorValue::isErr($value); + } + + /** + * IS_ERROR. + * + * @param mixed $value Value to check + * + * @Deprecated 1.23.0 + * + * @see Information\Value::isError() + * Use the isError() method in the Information\Value class instead + * + * @return array|bool + */ + public static function isError($value = '') + { + return Information\ErrorValue::isError($value); + } + + /** + * IS_NA. + * + * @param mixed $value Value to check + * + * @Deprecated 1.23.0 + * + * @see Information\Value::isNa() + * Use the isNa() method in the Information\Value class instead + * + * @return array|bool + */ + public static function isNa($value = '') + { + return Information\ErrorValue::isNa($value); + } + + /** + * IS_EVEN. + * + * @param mixed $value Value to check + * + * @Deprecated 1.23.0 + * + * @see Information\Value::isEven() + * Use the isEven() method in the Information\Value class instead + * + * @return array|bool|string + */ + public static function isEven($value = null) + { + return Information\Value::isEven($value); + } + + /** + * IS_ODD. + * + * @param mixed $value Value to check + * + * @Deprecated 1.23.0 + * + * @see Information\Value::isOdd() + * Use the isOdd() method in the Information\Value class instead + * + * @return array|bool|string + */ + public static function isOdd($value = null) + { + return Information\Value::isOdd($value); + } + + /** + * IS_NUMBER. + * + * @param mixed $value Value to check + * + * @Deprecated 1.23.0 + * + * @see Information\Value::isNumber() + * Use the isNumber() method in the Information\Value class instead + * + * @return array|bool + */ + public static function isNumber($value = null) + { + return Information\Value::isNumber($value); + } + + /** + * IS_LOGICAL. + * + * @param mixed $value Value to check + * + * @Deprecated 1.23.0 + * + * @see Information\Value::isLogical() + * Use the isLogical() method in the Information\Value class instead + * + * @return array|bool + */ + public static function isLogical($value = null) + { + return Information\Value::isLogical($value); + } + + /** + * IS_TEXT. + * + * @param mixed $value Value to check + * + * @Deprecated 1.23.0 + * + * @see Information\Value::isText() + * Use the isText() method in the Information\Value class instead + * + * @return array|bool + */ + public static function isText($value = null) + { + return Information\Value::isText($value); + } + + /** + * IS_NONTEXT. + * + * @param mixed $value Value to check + * + * @Deprecated 1.23.0 + * + * @see Information\Value::isNonText() + * Use the isNonText() method in the Information\Value class instead + * + * @return array|bool + */ + public static function isNonText($value = null) + { + return Information\Value::isNonText($value); + } + + /** + * N. + * + * Returns a value converted to a number + * + * @Deprecated 1.23.0 + * + * @see Information\Value::asNumber() + * Use the asNumber() method in the Information\Value class instead + * + * @param null|mixed $value The value you want converted + * + * @return number|string N converts values listed in the following table + * If value is or refers to N returns + * A number That number + * A date The serial number of that date + * TRUE 1 + * FALSE 0 + * An error value The error value + * Anything else 0 + */ + public static function n($value = null) + { + return Information\Value::asNumber($value); + } + + /** + * TYPE. + * + * Returns a number that identifies the type of a value + * + * @Deprecated 1.23.0 + * + * @see Information\Value::type() + * Use the type() method in the Information\Value class instead + * + * @param null|mixed $value The value you want tested + * + * @return number N converts values listed in the following table + * If value is or refers to N returns + * A number 1 + * Text 2 + * Logical Value 4 + * An error value 16 + * Array or Matrix 64 + */ + public static function TYPE($value = null) + { + return Information\Value::type($value); + } + + /** + * Convert a multi-dimensional array to a simple 1-dimensional array. + * + * @param array|mixed $array Array to be flattened + * + * @return array Flattened array + */ + public static function flattenArray($array) + { + if (!is_array($array)) { + return (array) $array; + } + + $arrayValues = []; + foreach ($array as $value) { + if (is_array($value)) { + foreach ($value as $val) { + if (is_array($val)) { + foreach ($val as $v) { + $arrayValues[] = $v; + } + } else { + $arrayValues[] = $val; + } + } + } else { + $arrayValues[] = $value; + } + } + + return $arrayValues; + } + + /** + * @param mixed $value + * + * @return null|mixed + */ + public static function scalar($value) + { + if (!is_array($value)) { + return $value; + } + + do { + $value = array_pop($value); + } while (is_array($value)); + + return $value; + } + + /** + * Convert a multi-dimensional array to a simple 1-dimensional array, but retain an element of indexing. + * + * @param array|mixed $array Array to be flattened + * + * @return array Flattened array + */ + public static function flattenArrayIndexed($array) + { + if (!is_array($array)) { + return (array) $array; + } + + $arrayValues = []; + foreach ($array as $k1 => $value) { + if (is_array($value)) { + foreach ($value as $k2 => $val) { + if (is_array($val)) { + foreach ($val as $k3 => $v) { + $arrayValues[$k1 . '.' . $k2 . '.' . $k3] = $v; + } + } else { + $arrayValues[$k1 . '.' . $k2] = $val; + } + } + } else { + $arrayValues[$k1] = $value; + } + } + + return $arrayValues; + } + + /** + * Convert an array to a single scalar value by extracting the first element. + * + * @param mixed $value Array or scalar value + * + * @return mixed + */ + public static function flattenSingleValue($value = '') + { + while (is_array($value)) { + $value = array_shift($value); + } + + return $value; + } + + /** + * ISFORMULA. + * + * @Deprecated 1.23.0 + * + * @see Information\Value::isFormula() + * Use the isFormula() method in the Information\Value class instead + * + * @param mixed $cellReference The cell to check + * @param ?Cell $cell The current cell (containing this formula) + * + * @return array|bool|string + */ + public static function isFormula($cellReference = '', ?Cell $cell = null) + { + return Information\Value::isFormula($cellReference, $cell); + } + + public static function expandDefinedName(string $coordinate, Cell $cell): string + { + $worksheet = $cell->getWorksheet(); + $spreadsheet = $worksheet->getParent(); + // Uppercase coordinate + $pCoordinatex = strtoupper($coordinate); + // Eliminate leading equal sign + $pCoordinatex = (string) preg_replace('/^=/', '', $pCoordinatex); + $defined = $spreadsheet->getDefinedName($pCoordinatex, $worksheet); + if ($defined !== null) { + $worksheet2 = $defined->getWorkSheet(); + if (!$defined->isFormula() && $worksheet2 !== null) { + $coordinate = "'" . $worksheet2->getTitle() . "'!" . + (string) preg_replace('/^=/', '', $defined->getValue()); + } + } + + return $coordinate; + } + + public static function trimTrailingRange(string $coordinate): string + { + return (string) preg_replace('/:[\\w\$]+$/', '', $coordinate); + } + + public static function trimSheetFromCellReference(string $coordinate): string + { + if (strpos($coordinate, '!') !== false) { + $coordinate = substr($coordinate, strrpos($coordinate, '!') + 1); + } + + return $coordinate; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Information/ErrorValue.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Information/ErrorValue.php new file mode 100644 index 0000000..4b9f818 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Information/ErrorValue.php @@ -0,0 +1,71 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Information; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; + +class ErrorValue +{ + use ArrayEnabled; + + /** + * IS_ERR. + * + * @param mixed $value Value to check + * Or can be an array of values + * + * @return array|bool + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function isErr($value = '') + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + return self::isError($value) && (!self::isNa(($value))); + } + + /** + * IS_ERROR. + * + * @param mixed $value Value to check + * Or can be an array of values + * + * @return array|bool + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function isError($value = '') + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + if (!is_string($value)) { + return false; + } + + return in_array($value, ExcelError::ERROR_CODES, true); + } + + /** + * IS_NA. + * + * @param mixed $value Value to check + * Or can be an array of values + * + * @return array|bool + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function isNa($value = '') + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + return $value === ExcelError::NA(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Information/ExcelError.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Information/ExcelError.php new file mode 100644 index 0000000..06f3866 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Information/ExcelError.php @@ -0,0 +1,171 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Information; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; + +class ExcelError +{ + use ArrayEnabled; + + /** + * List of error codes. + * + * @var array<string, string> + */ + public const ERROR_CODES = [ + 'null' => '#NULL!', // 1 + 'divisionbyzero' => '#DIV/0!', // 2 + 'value' => '#VALUE!', // 3 + 'reference' => '#REF!', // 4 + 'name' => '#NAME?', // 5 + 'num' => '#NUM!', // 6 + 'na' => '#N/A', // 7 + 'gettingdata' => '#GETTING_DATA', // 8 + 'spill' => '#SPILL!', // 9 + 'connect' => '#CONNECT!', //10 + 'blocked' => '#BLOCKED!', //11 + 'unknown' => '#UNKNOWN!', //12 + 'field' => '#FIELD!', //13 + 'calculation' => '#CALC!', //14 + ]; + + /** + * List of error codes. Replaced by constant; + * previously it was public and updateable, allowing + * user to make inappropriate alterations. + * + * @deprecated 1.25.0 Use ERROR_CODES constant instead. + * + * @var array<string, string> + */ + public static $errorCodes = self::ERROR_CODES; + + /** + * @param mixed $value + */ + public static function throwError($value): string + { + return in_array($value, self::ERROR_CODES, true) ? $value : self::ERROR_CODES['value']; + } + + /** + * ERROR_TYPE. + * + * @param mixed $value Value to check + * + * @return array|int|string + */ + public static function type($value = '') + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + $i = 1; + foreach (self::ERROR_CODES as $errorCode) { + if ($value === $errorCode) { + return $i; + } + ++$i; + } + + return self::NA(); + } + + /** + * NULL. + * + * Returns the error value #NULL! + * + * @return string #NULL! + */ + public static function null(): string + { + return self::ERROR_CODES['null']; + } + + /** + * NaN. + * + * Returns the error value #NUM! + * + * @return string #NUM! + */ + public static function NAN(): string + { + return self::ERROR_CODES['num']; + } + + /** + * REF. + * + * Returns the error value #REF! + * + * @return string #REF! + */ + public static function REF(): string + { + return self::ERROR_CODES['reference']; + } + + /** + * NA. + * + * Excel Function: + * =NA() + * + * Returns the error value #N/A + * #N/A is the error value that means "no value is available." + * + * @return string #N/A! + */ + public static function NA(): string + { + return self::ERROR_CODES['na']; + } + + /** + * VALUE. + * + * Returns the error value #VALUE! + * + * @return string #VALUE! + */ + public static function VALUE(): string + { + return self::ERROR_CODES['value']; + } + + /** + * NAME. + * + * Returns the error value #NAME? + * + * @return string #NAME? + */ + public static function NAME(): string + { + return self::ERROR_CODES['name']; + } + + /** + * DIV0. + * + * @return string #DIV/0! + */ + public static function DIV0(): string + { + return self::ERROR_CODES['divisionbyzero']; + } + + /** + * CALC. + * + * @return string #CALC! + */ + public static function CALC(): string + { + return self::ERROR_CODES['calculation']; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Information/Value.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Information/Value.php new file mode 100644 index 0000000..0ac6b66 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Information/Value.php @@ -0,0 +1,328 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Information; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\NamedRange; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class Value +{ + use ArrayEnabled; + + /** + * IS_BLANK. + * + * @param mixed $value Value to check + * Or can be an array of values + * + * @return array|bool + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function isBlank($value = null) + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + return $value === null; + } + + /** + * IS_REF. + * + * @param mixed $value Value to check + * + * @return bool + */ + public static function isRef($value, ?Cell $cell = null) + { + if ($cell === null || $value === $cell->getCoordinate()) { + return false; + } + + $cellValue = Functions::trimTrailingRange($value); + if (preg_match('/^' . Calculation::CALCULATION_REGEXP_CELLREF . '$/ui', $cellValue) === 1) { + [$worksheet, $cellValue] = Worksheet::extractSheetTitle($cellValue, true); + if (!empty($worksheet) && $cell->getWorksheet()->getParent()->getSheetByName($worksheet) === null) { + return false; + } + [$column, $row] = Coordinate::indexesFromString($cellValue); + if ($column > 16384 || $row > 1048576) { + return false; + } + + return true; + } + + $namedRange = $cell->getWorksheet()->getParent()->getNamedRange($value); + + return $namedRange instanceof NamedRange; + } + + /** + * IS_EVEN. + * + * @param mixed $value Value to check + * Or can be an array of values + * + * @return array|bool|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function isEven($value = null) + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + if ($value === null) { + return ExcelError::NAME(); + } elseif ((is_bool($value)) || ((is_string($value)) && (!is_numeric($value)))) { + return ExcelError::VALUE(); + } + + return ((int) fmod($value, 2)) === 0; + } + + /** + * IS_ODD. + * + * @param mixed $value Value to check + * Or can be an array of values + * + * @return array|bool|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function isOdd($value = null) + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + if ($value === null) { + return ExcelError::NAME(); + } elseif ((is_bool($value)) || ((is_string($value)) && (!is_numeric($value)))) { + return ExcelError::VALUE(); + } + + return ((int) fmod($value, 2)) !== 0; + } + + /** + * IS_NUMBER. + * + * @param mixed $value Value to check + * Or can be an array of values + * + * @return array|bool + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function isNumber($value = null) + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + if (is_string($value)) { + return false; + } + + return is_numeric($value); + } + + /** + * IS_LOGICAL. + * + * @param mixed $value Value to check + * Or can be an array of values + * + * @return array|bool + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function isLogical($value = null) + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + return is_bool($value); + } + + /** + * IS_TEXT. + * + * @param mixed $value Value to check + * Or can be an array of values + * + * @return array|bool + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function isText($value = null) + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + return is_string($value) && !ErrorValue::isError($value); + } + + /** + * IS_NONTEXT. + * + * @param mixed $value Value to check + * Or can be an array of values + * + * @return array|bool + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function isNonText($value = null) + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + return !self::isText($value); + } + + /** + * ISFORMULA. + * + * @param mixed $cellReference The cell to check + * @param ?Cell $cell The current cell (containing this formula) + * + * @return array|bool|string + */ + public static function isFormula($cellReference = '', ?Cell $cell = null) + { + if ($cell === null) { + return ExcelError::REF(); + } + + $fullCellReference = Functions::expandDefinedName((string) $cellReference, $cell); + + if (strpos($cellReference, '!') !== false) { + $cellReference = Functions::trimSheetFromCellReference($cellReference); + $cellReferences = Coordinate::extractAllCellReferencesInRange($cellReference); + if (count($cellReferences) > 1) { + return self::evaluateArrayArgumentsSubset([self::class, __FUNCTION__], 1, $cellReferences, $cell); + } + } + + $fullCellReference = Functions::trimTrailingRange($fullCellReference); + + preg_match('/^' . Calculation::CALCULATION_REGEXP_CELLREF . '$/i', $fullCellReference, $matches); + + $fullCellReference = $matches[6] . $matches[7]; + $worksheetName = str_replace("''", "'", trim($matches[2], "'")); + + $worksheet = (!empty($worksheetName)) + ? $cell->getWorksheet()->getParent()->getSheetByName($worksheetName) + : $cell->getWorksheet(); + + return ($worksheet !== null) ? $worksheet->getCell($fullCellReference)->isFormula() : ExcelError::REF(); + } + + /** + * N. + * + * Returns a value converted to a number + * + * @param null|mixed $value The value you want converted + * + * @return number N converts values listed in the following table + * If value is or refers to N returns + * A number That number value + * A date The Excel serialized number of that date + * TRUE 1 + * FALSE 0 + * An error value The error value + * Anything else 0 + */ + public static function asNumber($value = null) + { + while (is_array($value)) { + $value = array_shift($value); + } + + switch (gettype($value)) { + case 'double': + case 'float': + case 'integer': + return $value; + case 'boolean': + return (int) $value; + case 'string': + // Errors + if ((strlen($value) > 0) && ($value[0] == '#')) { + return $value; + } + + break; + } + + return 0; + } + + /** + * TYPE. + * + * Returns a number that identifies the type of a value + * + * @param null|mixed $value The value you want tested + * + * @return number N converts values listed in the following table + * If value is or refers to N returns + * A number 1 + * Text 2 + * Logical Value 4 + * An error value 16 + * Array or Matrix 64 + */ + public static function type($value = null) + { + $value = Functions::flattenArrayIndexed($value); + if (is_array($value) && (count($value) > 1)) { + end($value); + $a = key($value); + // Range of cells is an error + if (Functions::isCellValue($a)) { + return 16; + // Test for Matrix + } elseif (Functions::isMatrixValue($a)) { + return 64; + } + } elseif (empty($value)) { + // Empty Cell + return 1; + } + + $value = Functions::flattenSingleValue($value); + if (($value === null) || (is_float($value)) || (is_int($value))) { + return 1; + } elseif (is_bool($value)) { + return 4; + } elseif (is_array($value)) { + return 64; + } elseif (is_string($value)) { + // Errors + if ((strlen($value) > 0) && ($value[0] == '#')) { + return 16; + } + + return 2; + } + + return 0; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Internal/MakeMatrix.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Internal/MakeMatrix.php new file mode 100644 index 0000000..8b53464 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Internal/MakeMatrix.php @@ -0,0 +1,11 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Internal; + +class MakeMatrix +{ + public static function make(...$args): array + { + return $args; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Internal/WildcardMatch.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Internal/WildcardMatch.php new file mode 100644 index 0000000..371ad8b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Internal/WildcardMatch.php @@ -0,0 +1,39 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Internal; + +class WildcardMatch +{ + private const SEARCH_SET = [ + '~~', // convert double tilde to unprintable value + '~\\*', // convert tilde backslash asterisk to [*] (matches literal asterisk in regexp) + '\\*', // convert backslash asterisk to .* (matches string of any length in regexp) + '~\\?', // convert tilde backslash question to [?] (matches literal question mark in regexp) + '\\?', // convert backslash question to . (matches one character in regexp) + "\x1c", // convert original double tilde to single tilde + ]; + + private const REPLACEMENT_SET = [ + "\x1c", + '[*]', + '.*', + '[?]', + '.', + '~', + ]; + + public static function wildcard(string $wildcard): string + { + // Preg Escape the wildcard, but protecting the Excel * and ? search characters + return str_replace(self::SEARCH_SET, self::REPLACEMENT_SET, preg_quote($wildcard, '/')); + } + + public static function compare(?string $value, string $wildcard): bool + { + if ($value === '' || $value === null) { + return false; + } + + return (bool) preg_match("/^{$wildcard}\$/mui", $value); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical.php new file mode 100644 index 0000000..d5d993a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical.php @@ -0,0 +1,314 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +use PhpOffice\PhpSpreadsheet\Calculation\Logical\Boolean; + +/** + * @deprecated 1.17.0 + */ +class Logical +{ + /** + * TRUE. + * + * Returns the boolean TRUE. + * + * Excel Function: + * =TRUE() + * + * @Deprecated 1.17.0 + * + * @see Logical\Boolean::TRUE() + * Use the TRUE() method in the Logical\Boolean class instead + * + * @return bool True + */ + public static function true(): bool + { + return Boolean::true(); + } + + /** + * FALSE. + * + * Returns the boolean FALSE. + * + * Excel Function: + * =FALSE() + * + * @Deprecated 1.17.0 + * + * @see Logical\Boolean::FALSE() + * Use the FALSE() method in the Logical\Boolean class instead + * + * @return bool False + */ + public static function false(): bool + { + return Boolean::false(); + } + + /** + * LOGICAL_AND. + * + * Returns boolean TRUE if all its arguments are TRUE; returns FALSE if one or more argument is FALSE. + * + * Excel Function: + * =AND(logical1[,logical2[, ...]]) + * + * The arguments must evaluate to logical values such as TRUE or FALSE, or the arguments must be arrays + * or references that contain logical values. + * + * Boolean arguments are treated as True or False as appropriate + * Integer or floating point arguments are treated as True, except for 0 or 0.0 which are False + * If any argument value is a string, or a Null, the function returns a #VALUE! error, unless the string + * holds the value TRUE or FALSE, in which case it is evaluated as the corresponding boolean value + * + * @Deprecated 1.17.0 + * + * @see Logical\Operations::logicalAnd() + * Use the logicalAnd() method in the Logical\Operations class instead + * + * @param mixed ...$args Data values + * + * @return bool|string the logical AND of the arguments + */ + public static function logicalAnd(...$args) + { + return Logical\Operations::logicalAnd(...$args); + } + + /** + * LOGICAL_OR. + * + * Returns boolean TRUE if any argument is TRUE; returns FALSE if all arguments are FALSE. + * + * Excel Function: + * =OR(logical1[,logical2[, ...]]) + * + * The arguments must evaluate to logical values such as TRUE or FALSE, or the arguments must be arrays + * or references that contain logical values. + * + * Boolean arguments are treated as True or False as appropriate + * Integer or floating point arguments are treated as True, except for 0 or 0.0 which are False + * If any argument value is a string, or a Null, the function returns a #VALUE! error, unless the string + * holds the value TRUE or FALSE, in which case it is evaluated as the corresponding boolean value + * + * @Deprecated 1.17.0 + * + * @see Logical\Operations::logicalOr() + * Use the logicalOr() method in the Logical\Operations class instead + * + * @param mixed $args Data values + * + * @return bool|string the logical OR of the arguments + */ + public static function logicalOr(...$args) + { + return Logical\Operations::logicalOr(...$args); + } + + /** + * LOGICAL_XOR. + * + * Returns the Exclusive Or logical operation for one or more supplied conditions. + * i.e. the Xor function returns TRUE if an odd number of the supplied conditions evaluate to TRUE, + * and FALSE otherwise. + * + * Excel Function: + * =XOR(logical1[,logical2[, ...]]) + * + * The arguments must evaluate to logical values such as TRUE or FALSE, or the arguments must be arrays + * or references that contain logical values. + * + * Boolean arguments are treated as True or False as appropriate + * Integer or floating point arguments are treated as True, except for 0 or 0.0 which are False + * If any argument value is a string, or a Null, the function returns a #VALUE! error, unless the string + * holds the value TRUE or FALSE, in which case it is evaluated as the corresponding boolean value + * + * @Deprecated 1.17.0 + * + * @see Logical\Operations::logicalXor() + * Use the logicalXor() method in the Logical\Operations class instead + * + * @param mixed $args Data values + * + * @return bool|string the logical XOR of the arguments + */ + public static function logicalXor(...$args) + { + return Logical\Operations::logicalXor(...$args); + } + + /** + * NOT. + * + * Returns the boolean inverse of the argument. + * + * Excel Function: + * =NOT(logical) + * + * The argument must evaluate to a logical value such as TRUE or FALSE + * + * Boolean arguments are treated as True or False as appropriate + * Integer or floating point arguments are treated as True, except for 0 or 0.0 which are False + * If any argument value is a string, or a Null, the function returns a #VALUE! error, unless the string + * holds the value TRUE or FALSE, in which case it is evaluated as the corresponding boolean value + * + * @Deprecated 1.17.0 + * + * @see Logical\Operations::NOT() + * Use the NOT() method in the Logical\Operations class instead + * + * @param mixed $logical A value or expression that can be evaluated to TRUE or FALSE + * + * @return array|bool|string the boolean inverse of the argument + */ + public static function NOT($logical = false) + { + return Logical\Operations::NOT($logical); + } + + /** + * STATEMENT_IF. + * + * Returns one value if a condition you specify evaluates to TRUE and another value if it evaluates to FALSE. + * + * Excel Function: + * =IF(condition[,returnIfTrue[,returnIfFalse]]) + * + * Condition is any value or expression that can be evaluated to TRUE or FALSE. + * For example, A10=100 is a logical expression; if the value in cell A10 is equal to 100, + * the expression evaluates to TRUE. Otherwise, the expression evaluates to FALSE. + * This argument can use any comparison calculation operator. + * ReturnIfTrue is the value that is returned if condition evaluates to TRUE. + * For example, if this argument is the text string "Within budget" and the condition argument + * evaluates to TRUE, then the IF function returns the text "Within budget" + * If condition is TRUE and ReturnIfTrue is blank, this argument returns 0 (zero). + * To display the word TRUE, use the logical value TRUE for this argument. + * ReturnIfTrue can be another formula. + * ReturnIfFalse is the value that is returned if condition evaluates to FALSE. + * For example, if this argument is the text string "Over budget" and the condition argument + * evaluates to FALSE, then the IF function returns the text "Over budget". + * If condition is FALSE and ReturnIfFalse is omitted, then the logical value FALSE is returned. + * If condition is FALSE and ReturnIfFalse is blank, then the value 0 (zero) is returned. + * ReturnIfFalse can be another formula. + * + * @Deprecated 1.17.0 + * + * @see Logical\Conditional::statementIf() + * Use the statementIf() method in the Logical\Conditional class instead + * + * @param mixed $condition Condition to evaluate + * @param mixed $returnIfTrue Value to return when condition is true + * @param mixed $returnIfFalse Optional value to return when condition is false + * + * @return mixed The value of returnIfTrue or returnIfFalse determined by condition + */ + public static function statementIf($condition = true, $returnIfTrue = 0, $returnIfFalse = false) + { + return Logical\Conditional::statementIf($condition, $returnIfTrue, $returnIfFalse); + } + + /** + * STATEMENT_SWITCH. + * + * Returns corresponding with first match (any data type such as a string, numeric, date, etc). + * + * Excel Function: + * =SWITCH (expression, value1, result1, value2, result2, ... value_n, result_n [, default]) + * + * Expression + * The expression to compare to a list of values. + * value1, value2, ... value_n + * A list of values that are compared to expression. + * The SWITCH function is looking for the first value that matches the expression. + * result1, result2, ... result_n + * A list of results. The SWITCH function returns the corresponding result when a value + * matches expression. + * default + * Optional. It is the default to return if expression does not match any of the values + * (value1, value2, ... value_n). + * + * @Deprecated 1.17.0 + * + * @see Logical\Conditional::statementSwitch() + * Use the statementSwitch() method in the Logical\Conditional class instead + * + * @param mixed $arguments Statement arguments + * + * @return mixed The value of matched expression + */ + public static function statementSwitch(...$arguments) + { + return Logical\Conditional::statementSwitch(...$arguments); + } + + /** + * IFERROR. + * + * Excel Function: + * =IFERROR(testValue,errorpart) + * + * @Deprecated 1.17.0 + * + * @see Logical\Conditional::IFERROR() + * Use the IFERROR() method in the Logical\Conditional class instead + * + * @param mixed $testValue Value to check, is also the value returned when no error + * @param mixed $errorpart Value to return when testValue is an error condition + * + * @return mixed The value of errorpart or testValue determined by error condition + */ + public static function IFERROR($testValue = '', $errorpart = '') + { + return Logical\Conditional::IFERROR($testValue, $errorpart); + } + + /** + * IFNA. + * + * Excel Function: + * =IFNA(testValue,napart) + * + * @Deprecated 1.17.0 + * + * @see Logical\Conditional::IFNA() + * Use the IFNA() method in the Logical\Conditional class instead + * + * @param mixed $testValue Value to check, is also the value returned when not an NA + * @param mixed $napart Value to return when testValue is an NA condition + * + * @return mixed The value of errorpart or testValue determined by error condition + */ + public static function IFNA($testValue = '', $napart = '') + { + return Logical\Conditional::IFNA($testValue, $napart); + } + + /** + * IFS. + * + * Excel Function: + * =IFS(testValue1;returnIfTrue1;testValue2;returnIfTrue2;...;testValue_n;returnIfTrue_n) + * + * testValue1 ... testValue_n + * Conditions to Evaluate + * returnIfTrue1 ... returnIfTrue_n + * Value returned if corresponding testValue (nth) was true + * + * @Deprecated 1.17.0 + * + * @see Logical\Conditional::IFS() + * Use the IFS() method in the Logical\Conditional class instead + * + * @param mixed ...$arguments Statement arguments + * + * @return mixed|string The value of returnIfTrue_n, if testValue_n was true. #N/A if none of testValues was true + */ + public static function IFS(...$arguments) + { + return Logical\Conditional::IFS(...$arguments); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Boolean.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Boolean.php new file mode 100644 index 0000000..8f1e935 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Boolean.php @@ -0,0 +1,36 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Logical; + +class Boolean +{ + /** + * TRUE. + * + * Returns the boolean TRUE. + * + * Excel Function: + * =TRUE() + * + * @return bool True + */ + public static function true(): bool + { + return true; + } + + /** + * FALSE. + * + * Returns the boolean FALSE. + * + * Excel Function: + * =FALSE() + * + * @return bool False + */ + public static function false(): bool + { + return false; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Conditional.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Conditional.php new file mode 100644 index 0000000..6a7757c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Conditional.php @@ -0,0 +1,209 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Logical; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ErrorValue; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Calculation\Information\Value; + +class Conditional +{ + use ArrayEnabled; + + /** + * STATEMENT_IF. + * + * Returns one value if a condition you specify evaluates to TRUE and another value if it evaluates to FALSE. + * + * Excel Function: + * =IF(condition[,returnIfTrue[,returnIfFalse]]) + * + * Condition is any value or expression that can be evaluated to TRUE or FALSE. + * For example, A10=100 is a logical expression; if the value in cell A10 is equal to 100, + * the expression evaluates to TRUE. Otherwise, the expression evaluates to FALSE. + * This argument can use any comparison calculation operator. + * ReturnIfTrue is the value that is returned if condition evaluates to TRUE. + * For example, if this argument is the text string "Within budget" and + * the condition argument evaluates to TRUE, then the IF function returns the text "Within budget" + * If condition is TRUE and ReturnIfTrue is blank, this argument returns 0 (zero). + * To display the word TRUE, use the logical value TRUE for this argument. + * ReturnIfTrue can be another formula. + * ReturnIfFalse is the value that is returned if condition evaluates to FALSE. + * For example, if this argument is the text string "Over budget" and the condition argument evaluates + * to FALSE, then the IF function returns the text "Over budget". + * If condition is FALSE and ReturnIfFalse is omitted, then the logical value FALSE is returned. + * If condition is FALSE and ReturnIfFalse is blank, then the value 0 (zero) is returned. + * ReturnIfFalse can be another formula. + * + * @param mixed $condition Condition to evaluate + * @param mixed $returnIfTrue Value to return when condition is true + * Note that this can be an array value + * @param mixed $returnIfFalse Optional value to return when condition is false + * Note that this can be an array value + * + * @return mixed The value of returnIfTrue or returnIfFalse determined by condition + */ + public static function statementIf($condition = true, $returnIfTrue = 0, $returnIfFalse = false) + { + $condition = ($condition === null) ? true : Functions::flattenSingleValue($condition); + + if (ErrorValue::isError($condition)) { + return $condition; + } + + $returnIfTrue = $returnIfTrue ?? 0; + $returnIfFalse = $returnIfFalse ?? false; + + return ((bool) $condition) ? $returnIfTrue : $returnIfFalse; + } + + /** + * STATEMENT_SWITCH. + * + * Returns corresponding with first match (any data type such as a string, numeric, date, etc). + * + * Excel Function: + * =SWITCH (expression, value1, result1, value2, result2, ... value_n, result_n [, default]) + * + * Expression + * The expression to compare to a list of values. + * value1, value2, ... value_n + * A list of values that are compared to expression. + * The SWITCH function is looking for the first value that matches the expression. + * result1, result2, ... result_n + * A list of results. The SWITCH function returns the corresponding result when a value + * matches expression. + * Note that these can be array values to be returned + * default + * Optional. It is the default to return if expression does not match any of the values + * (value1, value2, ... value_n). + * Note that this can be an array value to be returned + * + * @param mixed $arguments Statement arguments + * + * @return mixed The value of matched expression + */ + public static function statementSwitch(...$arguments) + { + $result = ExcelError::VALUE(); + + if (count($arguments) > 0) { + $targetValue = Functions::flattenSingleValue($arguments[0]); + $argc = count($arguments) - 1; + $switchCount = floor($argc / 2); + $hasDefaultClause = $argc % 2 !== 0; + $defaultClause = $argc % 2 === 0 ? null : $arguments[$argc]; + + $switchSatisfied = false; + if ($switchCount > 0) { + for ($index = 0; $index < $switchCount; ++$index) { + if ($targetValue == $arguments[$index * 2 + 1]) { + $result = $arguments[$index * 2 + 2]; + $switchSatisfied = true; + + break; + } + } + } + + if ($switchSatisfied !== true) { + $result = $hasDefaultClause ? $defaultClause : ExcelError::NA(); + } + } + + return $result; + } + + /** + * IFERROR. + * + * Excel Function: + * =IFERROR(testValue,errorpart) + * + * @param mixed $testValue Value to check, is also the value returned when no error + * Or can be an array of values + * @param mixed $errorpart Value to return when testValue is an error condition + * Note that this can be an array value to be returned + * + * @return mixed The value of errorpart or testValue determined by error condition + * If an array of values is passed as the $testValue argument, then the returned result will also be + * an array with the same dimensions + */ + public static function IFERROR($testValue = '', $errorpart = '') + { + if (is_array($testValue)) { + return self::evaluateArrayArgumentsSubset([self::class, __FUNCTION__], 1, $testValue, $errorpart); + } + + $errorpart = $errorpart ?? ''; + + return self::statementIf(ErrorValue::isError($testValue), $errorpart, $testValue); + } + + /** + * IFNA. + * + * Excel Function: + * =IFNA(testValue,napart) + * + * @param mixed $testValue Value to check, is also the value returned when not an NA + * Or can be an array of values + * @param mixed $napart Value to return when testValue is an NA condition + * Note that this can be an array value to be returned + * + * @return mixed The value of errorpart or testValue determined by error condition + * If an array of values is passed as the $testValue argument, then the returned result will also be + * an array with the same dimensions + */ + public static function IFNA($testValue = '', $napart = '') + { + if (is_array($testValue)) { + return self::evaluateArrayArgumentsSubset([self::class, __FUNCTION__], 1, $testValue, $napart); + } + + $napart = $napart ?? ''; + + return self::statementIf(ErrorValue::isNa($testValue), $napart, $testValue); + } + + /** + * IFS. + * + * Excel Function: + * =IFS(testValue1;returnIfTrue1;testValue2;returnIfTrue2;...;testValue_n;returnIfTrue_n) + * + * testValue1 ... testValue_n + * Conditions to Evaluate + * returnIfTrue1 ... returnIfTrue_n + * Value returned if corresponding testValue (nth) was true + * + * @param mixed ...$arguments Statement arguments + * Note that this can be an array value to be returned + * + * @return mixed|string The value of returnIfTrue_n, if testValue_n was true. #N/A if none of testValues was true + */ + public static function IFS(...$arguments) + { + $argumentCount = count($arguments); + + if ($argumentCount % 2 != 0) { + return ExcelError::NA(); + } + // We use instance of Exception as a falseValue in order to prevent string collision with value in cell + $falseValueException = new Exception(); + for ($i = 0; $i < $argumentCount; $i += 2) { + $testValue = ($arguments[$i] === null) ? '' : Functions::flattenSingleValue($arguments[$i]); + $returnIfTrue = ($arguments[$i + 1] === null) ? '' : $arguments[$i + 1]; + $result = self::statementIf($testValue, $returnIfTrue, $falseValueException); + + if ($result !== $falseValueException) { + return $result; + } + } + + return ExcelError::NA(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Operations.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Operations.php new file mode 100644 index 0000000..2e2faa1 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Operations.php @@ -0,0 +1,207 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Logical; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Operations +{ + use ArrayEnabled; + + /** + * LOGICAL_AND. + * + * Returns boolean TRUE if all its arguments are TRUE; returns FALSE if one or more argument is FALSE. + * + * Excel Function: + * =AND(logical1[,logical2[, ...]]) + * + * The arguments must evaluate to logical values such as TRUE or FALSE, or the arguments must be arrays + * or references that contain logical values. + * + * Boolean arguments are treated as True or False as appropriate + * Integer or floating point arguments are treated as True, except for 0 or 0.0 which are False + * If any argument value is a string, or a Null, the function returns a #VALUE! error, unless the string + * holds the value TRUE or FALSE, in which case it is evaluated as the corresponding boolean value + * + * @param mixed ...$args Data values + * + * @return bool|string the logical AND of the arguments + */ + public static function logicalAnd(...$args) + { + $args = Functions::flattenArray($args); + + if (count($args) == 0) { + return ExcelError::VALUE(); + } + + $args = array_filter($args, function ($value) { + return $value !== null || (is_string($value) && trim($value) == ''); + }); + + $returnValue = self::countTrueValues($args); + if (is_string($returnValue)) { + return $returnValue; + } + $argCount = count($args); + + return ($returnValue > 0) && ($returnValue == $argCount); + } + + /** + * LOGICAL_OR. + * + * Returns boolean TRUE if any argument is TRUE; returns FALSE if all arguments are FALSE. + * + * Excel Function: + * =OR(logical1[,logical2[, ...]]) + * + * The arguments must evaluate to logical values such as TRUE or FALSE, or the arguments must be arrays + * or references that contain logical values. + * + * Boolean arguments are treated as True or False as appropriate + * Integer or floating point arguments are treated as True, except for 0 or 0.0 which are False + * If any argument value is a string, or a Null, the function returns a #VALUE! error, unless the string + * holds the value TRUE or FALSE, in which case it is evaluated as the corresponding boolean value + * + * @param mixed $args Data values + * + * @return bool|string the logical OR of the arguments + */ + public static function logicalOr(...$args) + { + $args = Functions::flattenArray($args); + + if (count($args) == 0) { + return ExcelError::VALUE(); + } + + $args = array_filter($args, function ($value) { + return $value !== null || (is_string($value) && trim($value) == ''); + }); + + $returnValue = self::countTrueValues($args); + if (is_string($returnValue)) { + return $returnValue; + } + + return $returnValue > 0; + } + + /** + * LOGICAL_XOR. + * + * Returns the Exclusive Or logical operation for one or more supplied conditions. + * i.e. the Xor function returns TRUE if an odd number of the supplied conditions evaluate to TRUE, + * and FALSE otherwise. + * + * Excel Function: + * =XOR(logical1[,logical2[, ...]]) + * + * The arguments must evaluate to logical values such as TRUE or FALSE, or the arguments must be arrays + * or references that contain logical values. + * + * Boolean arguments are treated as True or False as appropriate + * Integer or floating point arguments are treated as True, except for 0 or 0.0 which are False + * If any argument value is a string, or a Null, the function returns a #VALUE! error, unless the string + * holds the value TRUE or FALSE, in which case it is evaluated as the corresponding boolean value + * + * @param mixed $args Data values + * + * @return bool|string the logical XOR of the arguments + */ + public static function logicalXor(...$args) + { + $args = Functions::flattenArray($args); + + if (count($args) == 0) { + return ExcelError::VALUE(); + } + + $args = array_filter($args, function ($value) { + return $value !== null || (is_string($value) && trim($value) == ''); + }); + + $returnValue = self::countTrueValues($args); + if (is_string($returnValue)) { + return $returnValue; + } + + return $returnValue % 2 == 1; + } + + /** + * NOT. + * + * Returns the boolean inverse of the argument. + * + * Excel Function: + * =NOT(logical) + * + * The argument must evaluate to a logical value such as TRUE or FALSE + * + * Boolean arguments are treated as True or False as appropriate + * Integer or floating point arguments are treated as True, except for 0 or 0.0 which are False + * If any argument value is a string, or a Null, the function returns a #VALUE! error, unless the string + * holds the value TRUE or FALSE, in which case it is evaluated as the corresponding boolean value + * + * @param mixed $logical A value or expression that can be evaluated to TRUE or FALSE + * Or can be an array of values + * + * @return array|bool|string the boolean inverse of the argument + * If an array of values is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function NOT($logical = false) + { + if (is_array($logical)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $logical); + } + + if (is_string($logical)) { + $logical = mb_strtoupper($logical, 'UTF-8'); + if (($logical == 'TRUE') || ($logical == Calculation::getTRUE())) { + return false; + } elseif (($logical == 'FALSE') || ($logical == Calculation::getFALSE())) { + return true; + } + + return ExcelError::VALUE(); + } + + return !$logical; + } + + /** + * @return int|string + */ + private static function countTrueValues(array $args) + { + $trueValueCount = 0; + + foreach ($args as $arg) { + // Is it a boolean value? + if (is_bool($arg)) { + $trueValueCount += $arg; + } elseif ((is_numeric($arg)) && (!is_string($arg))) { + $trueValueCount += ((int) $arg != 0); + } elseif (is_string($arg)) { + $arg = mb_strtoupper($arg, 'UTF-8'); + if (($arg == 'TRUE') || ($arg == Calculation::getTRUE())) { + $arg = true; + } elseif (($arg == 'FALSE') || ($arg == Calculation::getFALSE())) { + $arg = false; + } else { + return ExcelError::VALUE(); + } + $trueValueCount += ($arg != 0); + } + } + + return $trueValueCount; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef.php new file mode 100644 index 0000000..758c4ef --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef.php @@ -0,0 +1,416 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\Address; +use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\HLookup; +use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\Indirect; +use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\Lookup; +use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\Matrix; +use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\Offset; +use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\RowColumnInformation; +use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\VLookup; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +/** + * @deprecated 1.18.0 + */ +class LookupRef +{ + /** + * CELL_ADDRESS. + * + * Creates a cell address as text, given specified row and column numbers. + * + * Excel Function: + * =ADDRESS(row, column, [relativity], [referenceStyle], [sheetText]) + * + * @Deprecated 1.18.0 + * + * @see LookupRef\Address::cell() + * Use the cell() method in the LookupRef\Address class instead + * + * @param mixed $row Row number to use in the cell reference + * @param mixed $column Column number to use in the cell reference + * @param int $relativity Flag indicating the type of reference to return + * 1 or omitted Absolute + * 2 Absolute row; relative column + * 3 Relative row; absolute column + * 4 Relative + * @param bool $referenceStyle A logical value that specifies the A1 or R1C1 reference style. + * TRUE or omitted CELL_ADDRESS returns an A1-style reference + * FALSE CELL_ADDRESS returns an R1C1-style reference + * @param array|string $sheetText Optional Name of worksheet to use + * + * @return array|string + */ + public static function cellAddress($row, $column, $relativity = 1, $referenceStyle = true, $sheetText = '') + { + return Address::cell($row, $column, $relativity, $referenceStyle, $sheetText); + } + + /** + * COLUMN. + * + * Returns the column number of the given cell reference + * If the cell reference is a range of cells, COLUMN returns the column numbers of each column + * in the reference as a horizontal array. + * If cell reference is omitted, and the function is being called through the calculation engine, + * then it is assumed to be the reference of the cell in which the COLUMN function appears; + * otherwise this function returns 1. + * + * Excel Function: + * =COLUMN([cellAddress]) + * + * @Deprecated 1.18.0 + * + * @see LookupRef\RowColumnInformation::COLUMN() + * Use the COLUMN() method in the LookupRef\RowColumnInformation class instead + * + * @param null|array|string $cellAddress A reference to a range of cells for which you want the column numbers + * + * @return int|int[]|string + */ + public static function COLUMN($cellAddress = null, ?Cell $cell = null) + { + return RowColumnInformation::COLUMN($cellAddress, $cell); + } + + /** + * COLUMNS. + * + * Returns the number of columns in an array or reference. + * + * Excel Function: + * =COLUMNS(cellAddress) + * + * @Deprecated 1.18.0 + * + * @see LookupRef\RowColumnInformation::COLUMNS() + * Use the COLUMNS() method in the LookupRef\RowColumnInformation class instead + * + * @param null|array|string $cellAddress An array or array formula, or a reference to a range of cells + * for which you want the number of columns + * + * @return int|string The number of columns in cellAddress, or a string if arguments are invalid + */ + public static function COLUMNS($cellAddress = null) + { + return RowColumnInformation::COLUMNS($cellAddress); + } + + /** + * ROW. + * + * Returns the row number of the given cell reference + * If the cell reference is a range of cells, ROW returns the row numbers of each row in the reference + * as a vertical array. + * If cell reference is omitted, and the function is being called through the calculation engine, + * then it is assumed to be the reference of the cell in which the ROW function appears; + * otherwise this function returns 1. + * + * Excel Function: + * =ROW([cellAddress]) + * + * @Deprecated 1.18.0 + * + * @see LookupRef\RowColumnInformation::ROW() + * Use the ROW() method in the LookupRef\RowColumnInformation class instead + * + * @param null|array|string $cellAddress A reference to a range of cells for which you want the row numbers + * + * @return int|mixed[]|string + */ + public static function ROW($cellAddress = null, ?Cell $cell = null) + { + return RowColumnInformation::ROW($cellAddress, $cell); + } + + /** + * ROWS. + * + * Returns the number of rows in an array or reference. + * + * Excel Function: + * =ROWS(cellAddress) + * + * @Deprecated 1.18.0 + * + * @see LookupRef\RowColumnInformation::ROWS() + * Use the ROWS() method in the LookupRef\RowColumnInformation class instead + * + * @param null|array|string $cellAddress An array or array formula, or a reference to a range of cells + * for which you want the number of rows + * + * @return int|string The number of rows in cellAddress, or a string if arguments are invalid + */ + public static function ROWS($cellAddress = null) + { + return RowColumnInformation::ROWS($cellAddress); + } + + /** + * HYPERLINK. + * + * Excel Function: + * =HYPERLINK(linkURL,displayName) + * + * @Deprecated 1.18.0 + * + * @param mixed $linkURL Expect string. Value to check, is also the value returned when no error + * @param mixed $displayName Expect string. Value to return when testValue is an error condition + * @param Cell $cell The cell to set the hyperlink in + * + * @return string The value of $displayName (or $linkURL if $displayName was blank) + * + *@see LookupRef\Hyperlink::set() + * Use the set() method in the LookupRef\Hyperlink class instead + */ + public static function HYPERLINK($linkURL = '', $displayName = null, ?Cell $cell = null) + { + return LookupRef\Hyperlink::set($linkURL, $displayName, $cell); + } + + /** + * INDIRECT. + * + * Returns the reference specified by a text string. + * References are immediately evaluated to display their contents. + * + * Excel Function: + * =INDIRECT(cellAddress) + * + * @Deprecated 1.18.0 + * + * @param array|string $cellAddress $cellAddress The cell address of the current cell (containing this formula) + * @param Cell $cell The current cell (containing this formula) + * + * @return array|string An array containing a cell or range of cells, or a string on error + * + *@see LookupRef\Indirect::INDIRECT() + * Use the INDIRECT() method in the LookupRef\Indirect class instead + * + * NOTE - INDIRECT() does not yet support the optional a1 parameter introduced in Excel 2010 + */ + public static function INDIRECT($cellAddress, Cell $cell) + { + return Indirect::INDIRECT($cellAddress, true, $cell); + } + + /** + * OFFSET. + * + * Returns a reference to a range that is a specified number of rows and columns from a cell or range of cells. + * The reference that is returned can be a single cell or a range of cells. You can specify the number of rows and + * the number of columns to be returned. + * + * Excel Function: + * =OFFSET(cellAddress, rows, cols, [height], [width]) + * + * @Deprecated 1.18.0 + * + * @see LookupRef\Offset::OFFSET() + * Use the OFFSET() method in the LookupRef\Offset class instead + * + * @param null|string $cellAddress The reference from which you want to base the offset. + * Reference must refer to a cell or range of adjacent cells; + * otherwise, OFFSET returns the #VALUE! error value. + * @param mixed $rows The number of rows, up or down, that you want the upper-left cell to refer to. + * Using 5 as the rows argument specifies that the upper-left cell in the + * reference is five rows below reference. Rows can be positive (which means + * below the starting reference) or negative (which means above the starting + * reference). + * @param mixed $columns The number of columns, to the left or right, that you want the upper-left cell + * of the result to refer to. Using 5 as the cols argument specifies that the + * upper-left cell in the reference is five columns to the right of reference. + * Cols can be positive (which means to the right of the starting reference) + * or negative (which means to the left of the starting reference). + * @param mixed $height The height, in number of rows, that you want the returned reference to be. + * Height must be a positive number. + * @param mixed $width The width, in number of columns, that you want the returned reference to be. + * Width must be a positive number. + * + * @return array|string An array containing a cell or range of cells, or a string on error + */ + public static function OFFSET($cellAddress = null, $rows = 0, $columns = 0, $height = null, $width = null, ?Cell $cell = null) + { + return Offset::OFFSET($cellAddress, $rows, $columns, $height, $width, $cell); + } + + /** + * CHOOSE. + * + * Uses lookup_value to return a value from the list of value arguments. + * Use CHOOSE to select one of up to 254 values based on the lookup_value. + * + * Excel Function: + * =CHOOSE(index_num, value1, [value2], ...) + * + * @Deprecated 1.18.0 + * + * @see LookupRef\Selection::choose() + * Use the choose() method in the LookupRef\Selection class instead + * + * @return mixed The selected value + */ + public static function CHOOSE(...$chooseArgs) + { + return LookupRef\Selection::choose(...$chooseArgs); + } + + /** + * MATCH. + * + * The MATCH function searches for a specified item in a range of cells + * + * Excel Function: + * =MATCH(lookup_value, lookup_array, [match_type]) + * + * @Deprecated 1.18.0 + * + * @see LookupRef\ExcelMatch::MATCH() + * Use the MATCH() method in the LookupRef\ExcelMatch class instead + * + * @param mixed $lookupValue The value that you want to match in lookup_array + * @param mixed $lookupArray The range of cells being searched + * @param mixed $matchType The number -1, 0, or 1. -1 means above, 0 means exact match, 1 means below. + * If match_type is 1 or -1, the list has to be ordered. + * + * @return array|int|string The relative position of the found item + */ + public static function MATCH($lookupValue, $lookupArray, $matchType = 1) + { + return LookupRef\ExcelMatch::MATCH($lookupValue, $lookupArray, $matchType); + } + + /** + * INDEX. + * + * Uses an index to choose a value from a reference or array + * + * Excel Function: + * =INDEX(range_array, row_num, [column_num]) + * + * @Deprecated 1.18.0 + * + * @see LookupRef\Matrix::index() + * Use the index() method in the LookupRef\Matrix class instead + * + * @param mixed $rowNum The row in the array or range from which to return a value. + * If row_num is omitted, column_num is required. + * @param mixed $columnNum The column in the array or range from which to return a value. + * If column_num is omitted, row_num is required. + * @param mixed $matrix + * + * @return mixed the value of a specified cell or array of cells + */ + public static function INDEX($matrix, $rowNum = 0, $columnNum = 0) + { + return Matrix::index($matrix, $rowNum, $columnNum); + } + + /** + * TRANSPOSE. + * + * @Deprecated 1.18.0 + * + * @see LookupRef\Matrix::transpose() + * Use the transpose() method in the LookupRef\Matrix class instead + * + * @param array $matrixData A matrix of values + * + * @return array + * + * Unlike the Excel TRANSPOSE function, which will only work on a single row or column, + * this function will transpose a full matrix + */ + public static function TRANSPOSE($matrixData) + { + return Matrix::transpose($matrixData); + } + + /** + * VLOOKUP + * The VLOOKUP function searches for value in the left-most column of lookup_array and returns the value + * in the same row based on the index_number. + * + * @Deprecated 1.18.0 + * + * @see LookupRef\VLookup::lookup() + * Use the lookup() method in the LookupRef\VLookup class instead + * + * @param mixed $lookup_value The value that you want to match in lookup_array + * @param mixed $lookup_array The range of cells being searched + * @param mixed $index_number The column number in table_array from which the matching value must be returned. + * The first column is 1. + * @param mixed $not_exact_match determines if you are looking for an exact match based on lookup_value + * + * @return mixed The value of the found cell + */ + public static function VLOOKUP($lookup_value, $lookup_array, $index_number, $not_exact_match = true) + { + return VLookup::lookup($lookup_value, $lookup_array, $index_number, $not_exact_match); + } + + /** + * HLOOKUP + * The HLOOKUP function searches for value in the top-most row of lookup_array and returns the value + * in the same column based on the index_number. + * + * @Deprecated 1.18.0 + * + * @see LookupRef\HLookup::lookup() + * Use the lookup() method in the LookupRef\HLookup class instead + * + * @param mixed $lookup_value The value that you want to match in lookup_array + * @param mixed $lookup_array The range of cells being searched + * @param mixed $index_number The row number in table_array from which the matching value must be returned. + * The first row is 1. + * @param mixed $not_exact_match determines if you are looking for an exact match based on lookup_value + * + * @return mixed The value of the found cell + */ + public static function HLOOKUP($lookup_value, $lookup_array, $index_number, $not_exact_match = true) + { + return HLookup::lookup($lookup_value, $lookup_array, $index_number, $not_exact_match); + } + + /** + * LOOKUP + * The LOOKUP function searches for value either from a one-row or one-column range or from an array. + * + * @Deprecated 1.18.0 + * + * @see LookupRef\Lookup::lookup() + * Use the lookup() method in the LookupRef\Lookup class instead + * + * @param mixed $lookup_value The value that you want to match in lookup_array + * @param mixed $lookup_vector The range of cells being searched + * @param null|mixed $result_vector The column from which the matching value must be returned + * + * @return mixed The value of the found cell + */ + public static function LOOKUP($lookup_value, $lookup_vector, $result_vector = null) + { + return Lookup::lookup($lookup_value, $lookup_vector, $result_vector); + } + + /** + * FORMULATEXT. + * + * @Deprecated 1.18.0 + * + * @param mixed $cellReference The cell to check + * @param Cell $cell The current cell (containing this formula) + * + * @return string + * + *@see LookupRef\Formula::text() + * Use the text() method in the LookupRef\Formula class instead + */ + public static function FORMULATEXT($cellReference = '', ?Cell $cell = null) + { + return LookupRef\Formula::text($cellReference, $cell); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Address.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Address.php new file mode 100644 index 0000000..c8cdf2d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Address.php @@ -0,0 +1,119 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; + +class Address +{ + use ArrayEnabled; + + public const ADDRESS_ABSOLUTE = 1; + public const ADDRESS_COLUMN_RELATIVE = 2; + public const ADDRESS_ROW_RELATIVE = 3; + public const ADDRESS_RELATIVE = 4; + + public const REFERENCE_STYLE_A1 = true; + public const REFERENCE_STYLE_R1C1 = false; + + /** + * ADDRESS. + * + * Creates a cell address as text, given specified row and column numbers. + * + * Excel Function: + * =ADDRESS(row, column, [relativity], [referenceStyle], [sheetText]) + * + * @param mixed $row Row number (integer) to use in the cell reference + * Or can be an array of values + * @param mixed $column Column number (integer) to use in the cell reference + * Or can be an array of values + * @param mixed $relativity Integer flag indicating the type of reference to return + * 1 or omitted Absolute + * 2 Absolute row; relative column + * 3 Relative row; absolute column + * 4 Relative + * Or can be an array of values + * @param mixed $referenceStyle A logical (boolean) value that specifies the A1 or R1C1 reference style. + * TRUE or omitted ADDRESS returns an A1-style reference + * FALSE ADDRESS returns an R1C1-style reference + * Or can be an array of values + * @param mixed $sheetName Optional Name of worksheet to use + * Or can be an array of values + * + * @return array|string + * If an array of values is passed as the $testValue argument, then the returned result will also be + * an array with the same dimensions + */ + public static function cell($row, $column, $relativity = 1, $referenceStyle = true, $sheetName = '') + { + if ( + is_array($row) || is_array($column) || + is_array($relativity) || is_array($referenceStyle) || is_array($sheetName) + ) { + return self::evaluateArrayArguments( + [self::class, __FUNCTION__], + $row, + $column, + $relativity, + $referenceStyle, + $sheetName + ); + } + + $relativity = $relativity ?? 1; + $referenceStyle = $referenceStyle ?? true; + + if (($row < 1) || ($column < 1)) { + return ExcelError::VALUE(); + } + + $sheetName = self::sheetName($sheetName); + + if ((!is_bool($referenceStyle)) || $referenceStyle === self::REFERENCE_STYLE_A1) { + return self::formatAsA1($row, $column, $relativity, $sheetName); + } + + return self::formatAsR1C1($row, $column, $relativity, $sheetName); + } + + private static function sheetName(string $sheetName) + { + if ($sheetName > '') { + if (strpos($sheetName, ' ') !== false || strpos($sheetName, '[') !== false) { + $sheetName = "'{$sheetName}'"; + } + $sheetName .= '!'; + } + + return $sheetName; + } + + private static function formatAsA1(int $row, int $column, int $relativity, string $sheetName): string + { + $rowRelative = $columnRelative = '$'; + if (($relativity == self::ADDRESS_COLUMN_RELATIVE) || ($relativity == self::ADDRESS_RELATIVE)) { + $columnRelative = ''; + } + if (($relativity == self::ADDRESS_ROW_RELATIVE) || ($relativity == self::ADDRESS_RELATIVE)) { + $rowRelative = ''; + } + $column = Coordinate::stringFromColumnIndex($column); + + return "{$sheetName}{$columnRelative}{$column}{$rowRelative}{$row}"; + } + + private static function formatAsR1C1(int $row, int $column, int $relativity, string $sheetName): string + { + if (($relativity == self::ADDRESS_COLUMN_RELATIVE) || ($relativity == self::ADDRESS_RELATIVE)) { + $column = "[{$column}]"; + } + if (($relativity == self::ADDRESS_ROW_RELATIVE) || ($relativity == self::ADDRESS_RELATIVE)) { + $row = "[{$row}]"; + } + + return "{$sheetName}R{$row}C{$column}"; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php new file mode 100644 index 0000000..2f691be --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php @@ -0,0 +1,203 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Calculation\Internal\WildcardMatch; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; + +class ExcelMatch +{ + use ArrayEnabled; + + public const MATCHTYPE_SMALLEST_VALUE = -1; + public const MATCHTYPE_FIRST_VALUE = 0; + public const MATCHTYPE_LARGEST_VALUE = 1; + + /** + * MATCH. + * + * The MATCH function searches for a specified item in a range of cells + * + * Excel Function: + * =MATCH(lookup_value, lookup_array, [match_type]) + * + * @param mixed $lookupValue The value that you want to match in lookup_array + * @param mixed $lookupArray The range of cells being searched + * @param mixed $matchType The number -1, 0, or 1. -1 means above, 0 means exact match, 1 means below. + * If match_type is 1 or -1, the list has to be ordered. + * + * @return array|int|string The relative position of the found item + */ + public static function MATCH($lookupValue, $lookupArray, $matchType = self::MATCHTYPE_LARGEST_VALUE) + { + if (is_array($lookupValue)) { + return self::evaluateArrayArgumentsIgnore([self::class, __FUNCTION__], 1, $lookupValue, $lookupArray, $matchType); + } + + $lookupArray = Functions::flattenArray($lookupArray); + $matchType = (int) ($matchType ?? self::MATCHTYPE_LARGEST_VALUE); + + try { + // Input validation + self::validateLookupValue($lookupValue); + self::validateMatchType($matchType); + self::validateLookupArray($lookupArray); + + $keySet = array_keys($lookupArray); + if ($matchType == self::MATCHTYPE_LARGEST_VALUE) { + // If match_type is 1 the list has to be processed from last to first + $lookupArray = array_reverse($lookupArray); + $keySet = array_reverse($keySet); + } + + $lookupArray = self::prepareLookupArray($lookupArray, $matchType); + } catch (Exception $e) { + return $e->getMessage(); + } + + // MATCH() is not case sensitive, so we convert lookup value to be lower cased if it's a string type. + if (is_string($lookupValue)) { + $lookupValue = StringHelper::strToLower($lookupValue); + } + + $valueKey = null; + switch ($matchType) { + case self::MATCHTYPE_LARGEST_VALUE: + $valueKey = self::matchLargestValue($lookupArray, $lookupValue, $keySet); + + break; + case self::MATCHTYPE_FIRST_VALUE: + $valueKey = self::matchFirstValue($lookupArray, $lookupValue); + + break; + case self::MATCHTYPE_SMALLEST_VALUE: + default: + $valueKey = self::matchSmallestValue($lookupArray, $lookupValue); + } + + if ($valueKey !== null) { + return ++$valueKey; + } + + // Unsuccessful in finding a match, return #N/A error value + return ExcelError::NA(); + } + + private static function matchFirstValue($lookupArray, $lookupValue) + { + $wildcardLookup = ((bool) preg_match('/([\?\*])/', $lookupValue)); + $wildcard = WildcardMatch::wildcard($lookupValue); + + foreach ($lookupArray as $i => $lookupArrayValue) { + $typeMatch = ((gettype($lookupValue) === gettype($lookupArrayValue)) || + (is_numeric($lookupValue) && is_numeric($lookupArrayValue))); + + if ( + $typeMatch && is_string($lookupValue) && + $wildcardLookup && WildcardMatch::compare($lookupArrayValue, $wildcard) + ) { + // wildcard match + return $i; + } elseif ($lookupArrayValue === $lookupValue) { + // exact match + return $i; + } + } + + return null; + } + + private static function matchLargestValue($lookupArray, $lookupValue, $keySet) + { + foreach ($lookupArray as $i => $lookupArrayValue) { + $typeMatch = ((gettype($lookupValue) === gettype($lookupArrayValue)) || + (is_numeric($lookupValue) && is_numeric($lookupArrayValue))); + + if ($typeMatch && ($lookupArrayValue <= $lookupValue)) { + return array_search($i, $keySet); + } + } + + return null; + } + + private static function matchSmallestValue($lookupArray, $lookupValue) + { + $valueKey = null; + + // The basic algorithm is: + // Iterate and keep the highest match until the next element is smaller than the searched value. + // Return immediately if perfect match is found + foreach ($lookupArray as $i => $lookupArrayValue) { + $typeMatch = gettype($lookupValue) === gettype($lookupArrayValue); + + if ($lookupArrayValue === $lookupValue) { + // Another "special" case. If a perfect match is found, + // the algorithm gives up immediately + return $i; + } elseif ($typeMatch && $lookupArrayValue >= $lookupValue) { + $valueKey = $i; + } elseif ($typeMatch && $lookupArrayValue < $lookupValue) { + //Excel algorithm gives up immediately if the first element is smaller than the searched value + break; + } + } + + return $valueKey; + } + + private static function validateLookupValue($lookupValue): void + { + // Lookup_value type has to be number, text, or logical values + if ((!is_numeric($lookupValue)) && (!is_string($lookupValue)) && (!is_bool($lookupValue))) { + throw new Exception(ExcelError::NA()); + } + } + + private static function validateMatchType($matchType): void + { + // Match_type is 0, 1 or -1 + if ( + ($matchType !== self::MATCHTYPE_FIRST_VALUE) && + ($matchType !== self::MATCHTYPE_LARGEST_VALUE) && ($matchType !== self::MATCHTYPE_SMALLEST_VALUE) + ) { + throw new Exception(ExcelError::NA()); + } + } + + private static function validateLookupArray($lookupArray): void + { + // Lookup_array should not be empty + $lookupArraySize = count($lookupArray); + if ($lookupArraySize <= 0) { + throw new Exception(ExcelError::NA()); + } + } + + private static function prepareLookupArray($lookupArray, $matchType) + { + // Lookup_array should contain only number, text, or logical values, or empty (null) cells + foreach ($lookupArray as $i => $value) { + // check the type of the value + if ((!is_numeric($value)) && (!is_string($value)) && (!is_bool($value)) && ($value !== null)) { + throw new Exception(ExcelError::NA()); + } + // Convert strings to lowercase for case-insensitive testing + if (is_string($value)) { + $lookupArray[$i] = StringHelper::strToLower($value); + } + if ( + ($value === null) && + (($matchType == self::MATCHTYPE_LARGEST_VALUE) || ($matchType == self::MATCHTYPE_SMALLEST_VALUE)) + ) { + unset($lookupArray[$i]); + } + } + + return $lookupArray; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Filter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Filter.php new file mode 100644 index 0000000..74fa832 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Filter.php @@ -0,0 +1,81 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Filter +{ + /** + * @param mixed $lookupArray + * @param mixed $matchArray + * @param mixed $ifEmpty + * + * @return mixed + */ + public static function filter($lookupArray, $matchArray, $ifEmpty = null) + { + if (!is_array($matchArray)) { + return ExcelError::VALUE(); + } + + $matchArray = self::enumerateArrayKeys($matchArray); + + $result = (Matrix::isColumnVector($matchArray)) + ? self::filterByRow($lookupArray, $matchArray) + : self::filterByColumn($lookupArray, $matchArray); + + if (empty($result)) { + return $ifEmpty ?? ExcelError::CALC(); + } + + return array_values(array_map('array_values', $result)); + } + + private static function enumerateArrayKeys(array $sortArray): array + { + array_walk( + $sortArray, + function (&$columns): void { + if (is_array($columns)) { + $columns = array_values($columns); + } + } + ); + + return array_values($sortArray); + } + + private static function filterByRow(array $lookupArray, array $matchArray): array + { + $matchArray = array_values(array_column($matchArray, 0)); + + return array_filter( + array_values($lookupArray), + function ($index) use ($matchArray): bool { + return (bool) $matchArray[$index]; + }, + ARRAY_FILTER_USE_KEY + ); + } + + private static function filterByColumn(array $lookupArray, array $matchArray): array + { + $lookupArray = Matrix::transpose($lookupArray); + + if (count($matchArray) === 1) { + $matchArray = array_pop($matchArray); + } + + array_walk( + $matchArray, + function (&$value): void { + $value = [$value]; + } + ); + + $result = self::filterByRow($lookupArray, $matchArray); + + return Matrix::transpose($result); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Formula.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Formula.php new file mode 100644 index 0000000..834fe52 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Formula.php @@ -0,0 +1,43 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Cell\Cell; + +class Formula +{ + /** + * FORMULATEXT. + * + * @param mixed $cellReference The cell to check + * @param Cell $cell The current cell (containing this formula) + * + * @return string + */ + public static function text($cellReference = '', ?Cell $cell = null) + { + if ($cell === null) { + return ExcelError::REF(); + } + + preg_match('/^' . Calculation::CALCULATION_REGEXP_CELLREF . '$/i', $cellReference, $matches); + + $cellReference = $matches[6] . $matches[7]; + $worksheetName = trim($matches[3], "'"); + $worksheet = (!empty($worksheetName)) + ? $cell->getWorksheet()->getParent()->getSheetByName($worksheetName) + : $cell->getWorksheet(); + + if ( + $worksheet === null || + !$worksheet->cellExists($cellReference) || + !$worksheet->getCell($cellReference)->isFormula() + ) { + return ExcelError::NA(); + } + + return $worksheet->getCell($cellReference)->getValue(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/HLookup.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/HLookup.php new file mode 100644 index 0000000..e2d27bd --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/HLookup.php @@ -0,0 +1,121 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; + +class HLookup extends LookupBase +{ + use ArrayEnabled; + + /** + * HLOOKUP + * The HLOOKUP function searches for value in the top-most row of lookup_array and returns the value + * in the same column based on the index_number. + * + * @param mixed $lookupValue The value that you want to match in lookup_array + * @param mixed $lookupArray The range of cells being searched + * @param mixed $indexNumber The row number in table_array from which the matching value must be returned. + * The first row is 1. + * @param mixed $notExactMatch determines if you are looking for an exact match based on lookup_value + * + * @return mixed The value of the found cell + */ + public static function lookup($lookupValue, $lookupArray, $indexNumber, $notExactMatch = true) + { + if (is_array($lookupValue)) { + return self::evaluateArrayArgumentsIgnore([self::class, __FUNCTION__], 1, $lookupValue, $lookupArray, $indexNumber, $notExactMatch); + } + + $notExactMatch = (bool) ($notExactMatch ?? true); + + try { + self::validateLookupArray($lookupArray); + $lookupArray = self::convertLiteralArray($lookupArray); + $indexNumber = self::validateIndexLookup($lookupArray, $indexNumber); + } catch (Exception $e) { + return $e->getMessage(); + } + + $f = array_keys($lookupArray); + $firstRow = reset($f); + if ((!is_array($lookupArray[$firstRow])) || ($indexNumber > count($lookupArray))) { + return ExcelError::REF(); + } + + $firstkey = $f[0] - 1; + $returnColumn = $firstkey + $indexNumber; + $firstColumn = array_shift($f) ?? 1; + $rowNumber = self::hLookupSearch($lookupValue, $lookupArray, $firstColumn, $notExactMatch); + + if ($rowNumber !== null) { + // otherwise return the appropriate value + return $lookupArray[$returnColumn][Coordinate::stringFromColumnIndex($rowNumber)]; + } + + return ExcelError::NA(); + } + + /** + * @param mixed $lookupValue The value that you want to match in lookup_array + * @param int|string $column + */ + private static function hLookupSearch($lookupValue, array $lookupArray, $column, bool $notExactMatch): ?int + { + $lookupLower = StringHelper::strToLower((string) $lookupValue); + + $rowNumber = null; + foreach ($lookupArray[$column] as $rowKey => $rowData) { + // break if we have passed possible keys + $bothNumeric = is_numeric($lookupValue) && is_numeric($rowData); + $bothNotNumeric = !is_numeric($lookupValue) && !is_numeric($rowData); + $cellDataLower = StringHelper::strToLower((string) $rowData); + + if ( + $notExactMatch && + (($bothNumeric && $rowData > $lookupValue) || ($bothNotNumeric && $cellDataLower > $lookupLower)) + ) { + break; + } + + $rowNumber = self::checkMatch( + $bothNumeric, + $bothNotNumeric, + $notExactMatch, + Coordinate::columnIndexFromString($rowKey), + $cellDataLower, + $lookupLower, + $rowNumber + ); + } + + return $rowNumber; + } + + private static function convertLiteralArray(array $lookupArray): array + { + if (array_key_exists(0, $lookupArray)) { + $lookupArray2 = []; + $row = 0; + foreach ($lookupArray as $arrayVal) { + ++$row; + if (!is_array($arrayVal)) { + $arrayVal = [$arrayVal]; + } + $arrayVal2 = []; + foreach ($arrayVal as $key2 => $val2) { + $index = Coordinate::stringFromColumnIndex($key2 + 1); + $arrayVal2[$index] = $val2; + } + $lookupArray2[$row] = $arrayVal2; + } + $lookupArray = $lookupArray2; + } + + return $lookupArray; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Helpers.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Helpers.php new file mode 100644 index 0000000..7408a66 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Helpers.php @@ -0,0 +1,74 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Cell\AddressHelper; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\DefinedName; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class Helpers +{ + public const CELLADDRESS_USE_A1 = true; + + public const CELLADDRESS_USE_R1C1 = false; + + private static function convertR1C1(string &$cellAddress1, ?string &$cellAddress2, bool $a1): string + { + if ($a1 === self::CELLADDRESS_USE_R1C1) { + $cellAddress1 = AddressHelper::convertToA1($cellAddress1); + if ($cellAddress2) { + $cellAddress2 = AddressHelper::convertToA1($cellAddress2); + } + } + + return $cellAddress1 . ($cellAddress2 ? ":$cellAddress2" : ''); + } + + private static function adjustSheetTitle(string &$sheetTitle, ?string $value): void + { + if ($sheetTitle) { + $sheetTitle .= '!'; + if (stripos($value ?? '', $sheetTitle) === 0) { + $sheetTitle = ''; + } + } + } + + public static function extractCellAddresses(string $cellAddress, bool $a1, Worksheet $sheet, string $sheetName = ''): array + { + $cellAddress1 = $cellAddress; + $cellAddress2 = null; + $namedRange = DefinedName::resolveName($cellAddress1, $sheet, $sheetName); + if ($namedRange !== null) { + $workSheet = $namedRange->getWorkSheet(); + $sheetTitle = ($workSheet === null) ? '' : $workSheet->getTitle(); + $value = (string) preg_replace('/^=/', '', $namedRange->getValue()); + self::adjustSheetTitle($sheetTitle, $value); + $cellAddress1 = $sheetTitle . $value; + $cellAddress = $cellAddress1; + $a1 = self::CELLADDRESS_USE_A1; + } + if (strpos($cellAddress, ':') !== false) { + [$cellAddress1, $cellAddress2] = explode(':', $cellAddress); + } + $cellAddress = self::convertR1C1($cellAddress1, $cellAddress2, $a1); + + return [$cellAddress1, $cellAddress2, $cellAddress]; + } + + public static function extractWorksheet(string $cellAddress, Cell $cell): array + { + $sheetName = ''; + if (strpos($cellAddress, '!') !== false) { + [$sheetName, $cellAddress] = Worksheet::extractSheetTitle($cellAddress, true); + $sheetName = trim($sheetName, "'"); + } + + $worksheet = ($sheetName !== '') + ? $cell->getWorksheet()->getParent()->getSheetByName($sheetName) + : $cell->getWorksheet(); + + return [$cellAddress, $worksheet, $sheetName]; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Hyperlink.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Hyperlink.php new file mode 100644 index 0000000..5387833 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Hyperlink.php @@ -0,0 +1,41 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Cell\Cell; + +class Hyperlink +{ + /** + * HYPERLINK. + * + * Excel Function: + * =HYPERLINK(linkURL, [displayName]) + * + * @param mixed $linkURL Expect string. Value to check, is also the value returned when no error + * @param mixed $displayName Expect string. Value to return when testValue is an error condition + * @param Cell $cell The cell to set the hyperlink in + * + * @return mixed The value of $displayName (or $linkURL if $displayName was blank) + */ + public static function set($linkURL = '', $displayName = null, ?Cell $cell = null) + { + $linkURL = ($linkURL === null) ? '' : Functions::flattenSingleValue($linkURL); + $displayName = ($displayName === null) ? '' : Functions::flattenSingleValue($displayName); + + if ((!is_object($cell)) || (trim($linkURL) == '')) { + return ExcelError::REF(); + } + + if ((is_object($displayName)) || trim($displayName) == '') { + $displayName = $linkURL; + } + + $cell->getHyperlink()->setUrl($linkURL); + $cell->getHyperlink()->setTooltip($displayName); + + return $displayName; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Indirect.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Indirect.php new file mode 100644 index 0000000..417a1f7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Indirect.php @@ -0,0 +1,122 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class Indirect +{ + /** + * Determine whether cell address is in A1 (true) or R1C1 (false) format. + * + * @param mixed $a1fmt Expect bool Helpers::CELLADDRESS_USE_A1 or CELLADDRESS_USE_R1C1, + * but can be provided as numeric which is cast to bool + */ + private static function a1Format($a1fmt): bool + { + $a1fmt = Functions::flattenSingleValue($a1fmt); + if ($a1fmt === null) { + return Helpers::CELLADDRESS_USE_A1; + } + if (is_string($a1fmt)) { + throw new Exception(ExcelError::VALUE()); + } + + return (bool) $a1fmt; + } + + /** + * Convert cellAddress to string, verify not null string. + * + * @param array|string $cellAddress + */ + private static function validateAddress($cellAddress): string + { + $cellAddress = Functions::flattenSingleValue($cellAddress); + if (!is_string($cellAddress) || !$cellAddress) { + throw new Exception(ExcelError::REF()); + } + + return $cellAddress; + } + + /** + * INDIRECT. + * + * Returns the reference specified by a text string. + * References are immediately evaluated to display their contents. + * + * Excel Function: + * =INDIRECT(cellAddress, bool) where the bool argument is optional + * + * @param array|string $cellAddress $cellAddress The cell address of the current cell (containing this formula) + * @param mixed $a1fmt Expect bool Helpers::CELLADDRESS_USE_A1 or CELLADDRESS_USE_R1C1, + * but can be provided as numeric which is cast to bool + * @param Cell $cell The current cell (containing this formula) + * + * @return array|string An array containing a cell or range of cells, or a string on error + */ + public static function INDIRECT($cellAddress, $a1fmt, Cell $cell) + { + try { + $a1 = self::a1Format($a1fmt); + $cellAddress = self::validateAddress($cellAddress); + } catch (Exception $e) { + return $e->getMessage(); + } + + [$cellAddress, $worksheet, $sheetName] = Helpers::extractWorksheet($cellAddress, $cell); + + if (preg_match('/^' . Calculation::CALCULATION_REGEXP_COLUMNRANGE_RELATIVE . '$/miu', $cellAddress, $matches)) { + $cellAddress = self::handleRowColumnRanges($worksheet, ...explode(':', $cellAddress)); + } elseif (preg_match('/^' . Calculation::CALCULATION_REGEXP_ROWRANGE_RELATIVE . '$/miu', $cellAddress, $matches)) { + $cellAddress = self::handleRowColumnRanges($worksheet, ...explode(':', $cellAddress)); + } + + [$cellAddress1, $cellAddress2, $cellAddress] = Helpers::extractCellAddresses($cellAddress, $a1, $cell->getWorkSheet(), $sheetName); + + if ( + (!preg_match('/^' . Calculation::CALCULATION_REGEXP_CELLREF . '$/miu', $cellAddress1, $matches)) || + (($cellAddress2 !== null) && (!preg_match('/^' . Calculation::CALCULATION_REGEXP_CELLREF . '$/miu', $cellAddress2, $matches))) + ) { + return ExcelError::REF(); + } + + return self::extractRequiredCells($worksheet, $cellAddress); + } + + /** + * Extract range values. + * + * @return mixed Array of values in range if range contains more than one element. + * Otherwise, a single value is returned. + */ + private static function extractRequiredCells(?Worksheet $worksheet, string $cellAddress) + { + return Calculation::getInstance($worksheet !== null ? $worksheet->getParent() : null) + ->extractCellRange($cellAddress, $worksheet, false); + } + + private static function handleRowColumnRanges(?Worksheet $worksheet, string $start, string $end): string + { + // Being lazy, we're only checking a single row/column to get the max + if (ctype_digit($start) && $start <= 1048576) { + // Max 16,384 columns for Excel2007 + $endColRef = ($worksheet !== null) ? $worksheet->getHighestDataColumn((int) $start) : 'XFD'; + + return "A{$start}:{$endColRef}{$end}"; + } elseif (ctype_alpha($start) && strlen($start) <= 3) { + // Max 1,048,576 rows for Excel2007 + $endRowRef = ($worksheet !== null) ? $worksheet->getHighestDataRow($start) : 1048576; + + return "{$start}1:{$end}{$endRowRef}"; + } + + return "{$start}:{$end}"; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Lookup.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Lookup.php new file mode 100644 index 0000000..76a360b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Lookup.php @@ -0,0 +1,110 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +class Lookup +{ + use ArrayEnabled; + + /** + * LOOKUP + * The LOOKUP function searches for value either from a one-row or one-column range or from an array. + * + * @param mixed $lookupValue The value that you want to match in lookup_array + * @param mixed $lookupVector The range of cells being searched + * @param null|mixed $resultVector The column from which the matching value must be returned + * + * @return mixed The value of the found cell + */ + public static function lookup($lookupValue, $lookupVector, $resultVector = null) + { + if (is_array($lookupValue)) { + return self::evaluateArrayArgumentsSubset([self::class, __FUNCTION__], 1, $lookupValue, $lookupVector, $resultVector); + } + + if (!is_array($lookupVector)) { + return ExcelError::NA(); + } + $hasResultVector = isset($resultVector); + $lookupRows = self::rowCount($lookupVector); + $lookupColumns = self::columnCount($lookupVector); + // we correctly orient our results + if (($lookupRows === 1 && $lookupColumns > 1) || (!$hasResultVector && $lookupRows === 2 && $lookupColumns !== 2)) { + $lookupVector = LookupRef\Matrix::transpose($lookupVector); + $lookupRows = self::rowCount($lookupVector); + $lookupColumns = self::columnCount($lookupVector); + } + + $resultVector = self::verifyResultVector($lookupVector, $resultVector); + + if ($lookupRows === 2 && !$hasResultVector) { + $resultVector = array_pop($lookupVector); + $lookupVector = array_shift($lookupVector); + } + + if ($lookupColumns !== 2) { + $lookupVector = self::verifyLookupValues($lookupVector, $resultVector); + } + + return VLookup::lookup($lookupValue, $lookupVector, 2); + } + + private static function verifyLookupValues(array $lookupVector, array $resultVector): array + { + foreach ($lookupVector as &$value) { + if (is_array($value)) { + $k = array_keys($value); + $key1 = $key2 = array_shift($k); + ++$key2; + $dataValue1 = $value[$key1]; + } else { + $key1 = 0; + $key2 = 1; + $dataValue1 = $value; + } + + $dataValue2 = array_shift($resultVector); + if (is_array($dataValue2)) { + $dataValue2 = array_shift($dataValue2); + } + $value = [$key1 => $dataValue1, $key2 => $dataValue2]; + } + unset($value); + + return $lookupVector; + } + + private static function verifyResultVector(array $lookupVector, $resultVector) + { + if ($resultVector === null) { + $resultVector = $lookupVector; + } + + $resultRows = self::rowCount($resultVector); + $resultColumns = self::columnCount($resultVector); + + // we correctly orient our results + if ($resultRows === 1 && $resultColumns > 1) { + $resultVector = LookupRef\Matrix::transpose($resultVector); + } + + return $resultVector; + } + + private static function rowCount(array $dataArray): int + { + return count($dataArray); + } + + private static function columnCount(array $dataArray): int + { + $rowKeys = array_keys($dataArray); + $row = array_shift($rowKeys); + + return count($dataArray[$row]); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/LookupBase.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/LookupBase.php new file mode 100644 index 0000000..a001540 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/LookupBase.php @@ -0,0 +1,66 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +abstract class LookupBase +{ + /** + * @param mixed $lookup_array + */ + protected static function validateLookupArray($lookup_array): void + { + if (!is_array($lookup_array)) { + throw new Exception(ExcelError::REF()); + } + } + + protected static function validateIndexLookup(array $lookup_array, $index_number): int + { + // index_number must be a number greater than or equal to 1. + // Excel results are inconsistent when index is non-numeric. + // VLOOKUP(whatever, whatever, SQRT(-1)) yields NUM error, but + // VLOOKUP(whatever, whatever, cellref) yields REF error + // when cellref is '=SQRT(-1)'. So just try our best here. + // Similar results if string (literal yields VALUE, cellRef REF). + if (!is_numeric($index_number)) { + throw new Exception(ExcelError::throwError($index_number)); + } + if ($index_number < 1) { + throw new Exception(ExcelError::VALUE()); + } + + // index_number must be less than or equal to the number of columns in lookup_array + if ((!is_array($lookup_array)) || (empty($lookup_array))) { + throw new Exception(ExcelError::REF()); + } + + return (int) $index_number; + } + + protected static function checkMatch( + bool $bothNumeric, + bool $bothNotNumeric, + bool $notExactMatch, + int $rowKey, + string $cellDataLower, + string $lookupLower, + ?int $rowNumber + ): ?int { + // remember the last key, but only if datatypes match + if ($bothNumeric || $bothNotNumeric) { + // Spreadsheets software returns first exact match, + // we have sorted and we might have broken key orders + // we want the first one (by its initial index) + if ($notExactMatch) { + $rowNumber = $rowKey; + } elseif (($cellDataLower == $lookupLower) && (($rowNumber === null) || ($rowKey < $rowNumber))) { + $rowNumber = $rowKey; + } + } + + return $rowNumber; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/LookupRefValidations.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/LookupRefValidations.php new file mode 100644 index 0000000..2282bf4 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/LookupRefValidations.php @@ -0,0 +1,40 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ErrorValue; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class LookupRefValidations +{ + /** + * @param mixed $value + */ + public static function validateInt($value): int + { + if (!is_numeric($value)) { + if (ErrorValue::isError($value)) { + throw new Exception($value); + } + + throw new Exception(ExcelError::VALUE()); + } + + return (int) floor((float) $value); + } + + /** + * @param mixed $value + */ + public static function validatePositiveInt($value, bool $allowZero = true): int + { + $value = self::validateInt($value); + + if (($allowZero === false && $value <= 0) || $value < 0) { + throw new Exception(ExcelError::VALUE()); + } + + return $value; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Matrix.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Matrix.php new file mode 100644 index 0000000..a447e20 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Matrix.php @@ -0,0 +1,138 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Matrix +{ + use ArrayEnabled; + + /** + * Helper function; NOT an implementation of any Excel Function. + */ + public static function isColumnVector(array $values): bool + { + return count($values, COUNT_RECURSIVE) === (count($values, COUNT_NORMAL) * 2); + } + + /** + * Helper function; NOT an implementation of any Excel Function. + */ + public static function isRowVector(array $values): bool + { + return count($values, COUNT_RECURSIVE) > 1 && + (count($values, COUNT_NORMAL) === 1 || count($values, COUNT_RECURSIVE) === count($values, COUNT_NORMAL)); + } + + /** + * TRANSPOSE. + * + * @param array|mixed $matrixData A matrix of values + * + * @return array + */ + public static function transpose($matrixData) + { + $returnMatrix = []; + if (!is_array($matrixData)) { + $matrixData = [[$matrixData]]; + } + + $column = 0; + foreach ($matrixData as $matrixRow) { + $row = 0; + foreach ($matrixRow as $matrixCell) { + $returnMatrix[$row][$column] = $matrixCell; + ++$row; + } + ++$column; + } + + return $returnMatrix; + } + + /** + * INDEX. + * + * Uses an index to choose a value from a reference or array + * + * Excel Function: + * =INDEX(range_array, row_num, [column_num], [area_num]) + * + * @param mixed $matrix A range of cells or an array constant + * @param mixed $rowNum The row in the array or range from which to return a value. + * If row_num is omitted, column_num is required. + * Or can be an array of values + * @param mixed $columnNum The column in the array or range from which to return a value. + * If column_num is omitted, row_num is required. + * Or can be an array of values + * + * TODO Provide support for area_num, currently not supported + * + * @return mixed the value of a specified cell or array of cells + * If an array of values is passed as the $rowNum and/or $columnNum arguments, then the returned result + * will also be an array with the same dimensions + */ + public static function index($matrix, $rowNum = 0, $columnNum = 0) + { + if (is_array($rowNum) || is_array($columnNum)) { + return self::evaluateArrayArgumentsSubsetFrom([self::class, __FUNCTION__], 1, $matrix, $rowNum, $columnNum); + } + + $rowNum = $rowNum ?? 0; + $columnNum = $columnNum ?? 0; + + try { + $rowNum = LookupRefValidations::validatePositiveInt($rowNum); + $columnNum = LookupRefValidations::validatePositiveInt($columnNum); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (!is_array($matrix) || ($rowNum > count($matrix))) { + return ExcelError::REF(); + } + + $rowKeys = array_keys($matrix); + $columnKeys = @array_keys($matrix[$rowKeys[0]]); + + if ($columnNum > count($columnKeys)) { + return ExcelError::REF(); + } + + if ($columnNum === 0) { + return self::extractRowValue($matrix, $rowKeys, $rowNum); + } + + $columnNum = $columnKeys[--$columnNum]; + if ($rowNum === 0) { + return array_map( + function ($value) { + return [$value]; + }, + array_column($matrix, $columnNum) + ); + } + $rowNum = $rowKeys[--$rowNum]; + + return $matrix[$rowNum][$columnNum]; + } + + private static function extractRowValue(array $matrix, array $rowKeys, int $rowNum) + { + if ($rowNum === 0) { + return $matrix; + } + + $rowNum = $rowKeys[--$rowNum]; + $row = $matrix[$rowNum]; + if (is_array($row)) { + return [$rowNum => $row]; + } + + return $row; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Offset.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Offset.php new file mode 100644 index 0000000..9f3377f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Offset.php @@ -0,0 +1,137 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class Offset +{ + /** + * OFFSET. + * + * Returns a reference to a range that is a specified number of rows and columns from a cell or range of cells. + * The reference that is returned can be a single cell or a range of cells. You can specify the number of rows and + * the number of columns to be returned. + * + * Excel Function: + * =OFFSET(cellAddress, rows, cols, [height], [width]) + * + * @param null|string $cellAddress The reference from which you want to base the offset. + * Reference must refer to a cell or range of adjacent cells; + * otherwise, OFFSET returns the #VALUE! error value. + * @param mixed $rows The number of rows, up or down, that you want the upper-left cell to refer to. + * Using 5 as the rows argument specifies that the upper-left cell in the + * reference is five rows below reference. Rows can be positive (which means + * below the starting reference) or negative (which means above the starting + * reference). + * @param mixed $columns The number of columns, to the left or right, that you want the upper-left cell + * of the result to refer to. Using 5 as the cols argument specifies that the + * upper-left cell in the reference is five columns to the right of reference. + * Cols can be positive (which means to the right of the starting reference) + * or negative (which means to the left of the starting reference). + * @param mixed $height The height, in number of rows, that you want the returned reference to be. + * Height must be a positive number. + * @param mixed $width The width, in number of columns, that you want the returned reference to be. + * Width must be a positive number. + * + * @return array|int|string An array containing a cell or range of cells, or a string on error + */ + public static function OFFSET($cellAddress = null, $rows = 0, $columns = 0, $height = null, $width = null, ?Cell $cell = null) + { + $rows = Functions::flattenSingleValue($rows); + $columns = Functions::flattenSingleValue($columns); + $height = Functions::flattenSingleValue($height); + $width = Functions::flattenSingleValue($width); + + if ($cellAddress === null || $cellAddress === '') { + return ExcelError::VALUE(); + } + + if (!is_object($cell)) { + return ExcelError::REF(); + } + + [$cellAddress, $worksheet] = self::extractWorksheet($cellAddress, $cell); + + $startCell = $endCell = $cellAddress; + if (strpos($cellAddress, ':')) { + [$startCell, $endCell] = explode(':', $cellAddress); + } + [$startCellColumn, $startCellRow] = Coordinate::coordinateFromString($startCell); + [$endCellColumn, $endCellRow] = Coordinate::coordinateFromString($endCell); + + $startCellRow += $rows; + $startCellColumn = Coordinate::columnIndexFromString($startCellColumn) - 1; + $startCellColumn += $columns; + + if (($startCellRow <= 0) || ($startCellColumn < 0)) { + return ExcelError::REF(); + } + + $endCellColumn = self::adjustEndCellColumnForWidth($endCellColumn, $width, $startCellColumn, $columns); + $startCellColumn = Coordinate::stringFromColumnIndex($startCellColumn + 1); + + $endCellRow = self::adustEndCellRowForHeight($height, $startCellRow, $rows, $endCellRow); + + if (($endCellRow <= 0) || ($endCellColumn < 0)) { + return ExcelError::REF(); + } + $endCellColumn = Coordinate::stringFromColumnIndex($endCellColumn + 1); + + $cellAddress = "{$startCellColumn}{$startCellRow}"; + if (($startCellColumn != $endCellColumn) || ($startCellRow != $endCellRow)) { + $cellAddress .= ":{$endCellColumn}{$endCellRow}"; + } + + return self::extractRequiredCells($worksheet, $cellAddress); + } + + private static function extractRequiredCells(?Worksheet $worksheet, string $cellAddress) + { + return Calculation::getInstance($worksheet !== null ? $worksheet->getParent() : null) + ->extractCellRange($cellAddress, $worksheet, false); + } + + private static function extractWorksheet($cellAddress, Cell $cell): array + { + $sheetName = ''; + if (strpos($cellAddress, '!') !== false) { + [$sheetName, $cellAddress] = Worksheet::extractSheetTitle($cellAddress, true); + $sheetName = trim($sheetName, "'"); + } + + $worksheet = ($sheetName !== '') + ? $cell->getWorksheet()->getParent()->getSheetByName($sheetName) + : $cell->getWorksheet(); + + return [$cellAddress, $worksheet]; + } + + private static function adjustEndCellColumnForWidth(string $endCellColumn, $width, int $startCellColumn, $columns) + { + $endCellColumn = Coordinate::columnIndexFromString($endCellColumn) - 1; + if (($width !== null) && (!is_object($width))) { + $endCellColumn = $startCellColumn + (int) $width - 1; + } else { + $endCellColumn += (int) $columns; + } + + return $endCellColumn; + } + + private static function adustEndCellRowForHeight($height, int $startCellRow, $rows, $endCellRow): int + { + if (($height !== null) && (!is_object($height))) { + $endCellRow = $startCellRow + (int) $height - 1; + } else { + $endCellRow += (int) $rows; + } + + return $endCellRow; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/RowColumnInformation.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/RowColumnInformation.php new file mode 100644 index 0000000..8bce07e --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/RowColumnInformation.php @@ -0,0 +1,209 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class RowColumnInformation +{ + /** + * Test if cellAddress is null or whitespace string. + * + * @param null|array|string $cellAddress A reference to a range of cells + */ + private static function cellAddressNullOrWhitespace($cellAddress): bool + { + return $cellAddress === null || (!is_array($cellAddress) && trim($cellAddress) === ''); + } + + private static function cellColumn(?Cell $cell): int + { + return ($cell !== null) ? (int) Coordinate::columnIndexFromString($cell->getColumn()) : 1; + } + + /** + * COLUMN. + * + * Returns the column number of the given cell reference + * If the cell reference is a range of cells, COLUMN returns the column numbers of each column + * in the reference as a horizontal array. + * If cell reference is omitted, and the function is being called through the calculation engine, + * then it is assumed to be the reference of the cell in which the COLUMN function appears; + * otherwise this function returns 1. + * + * Excel Function: + * =COLUMN([cellAddress]) + * + * @param null|array|string $cellAddress A reference to a range of cells for which you want the column numbers + * + * @return int|int[] + */ + public static function COLUMN($cellAddress = null, ?Cell $cell = null) + { + if (self::cellAddressNullOrWhitespace($cellAddress)) { + return self::cellColumn($cell); + } + + if (is_array($cellAddress)) { + foreach ($cellAddress as $columnKey => $value) { + $columnKey = (string) preg_replace('/[^a-z]/i', '', $columnKey); + + return (int) Coordinate::columnIndexFromString($columnKey); + } + + return self::cellColumn($cell); + } + + $cellAddress = $cellAddress ?? ''; + if ($cell != null) { + [,, $sheetName] = Helpers::extractWorksheet($cellAddress, $cell); + [,, $cellAddress] = Helpers::extractCellAddresses($cellAddress, true, $cell->getWorksheet(), $sheetName); + } + [, $cellAddress] = Worksheet::extractSheetTitle($cellAddress, true); + if (strpos($cellAddress, ':') !== false) { + [$startAddress, $endAddress] = explode(':', $cellAddress); + $startAddress = (string) preg_replace('/[^a-z]/i', '', $startAddress); + $endAddress = (string) preg_replace('/[^a-z]/i', '', $endAddress); + + return range( + (int) Coordinate::columnIndexFromString($startAddress), + (int) Coordinate::columnIndexFromString($endAddress) + ); + } + + $cellAddress = (string) preg_replace('/[^a-z]/i', '', $cellAddress); + + return (int) Coordinate::columnIndexFromString($cellAddress); + } + + /** + * COLUMNS. + * + * Returns the number of columns in an array or reference. + * + * Excel Function: + * =COLUMNS(cellAddress) + * + * @param null|array|string $cellAddress An array or array formula, or a reference to a range of cells + * for which you want the number of columns + * + * @return int|string The number of columns in cellAddress, or a string if arguments are invalid + */ + public static function COLUMNS($cellAddress = null) + { + if (self::cellAddressNullOrWhitespace($cellAddress)) { + return 1; + } + if (!is_array($cellAddress)) { + return ExcelError::VALUE(); + } + + reset($cellAddress); + $isMatrix = (is_numeric(key($cellAddress))); + [$columns, $rows] = Calculation::getMatrixDimensions($cellAddress); + + if ($isMatrix) { + return $rows; + } + + return $columns; + } + + private static function cellRow(?Cell $cell): int + { + return ($cell !== null) ? $cell->getRow() : 1; + } + + /** + * ROW. + * + * Returns the row number of the given cell reference + * If the cell reference is a range of cells, ROW returns the row numbers of each row in the reference + * as a vertical array. + * If cell reference is omitted, and the function is being called through the calculation engine, + * then it is assumed to be the reference of the cell in which the ROW function appears; + * otherwise this function returns 1. + * + * Excel Function: + * =ROW([cellAddress]) + * + * @param null|array|string $cellAddress A reference to a range of cells for which you want the row numbers + * + * @return int|mixed[]|string + */ + public static function ROW($cellAddress = null, ?Cell $cell = null) + { + if (self::cellAddressNullOrWhitespace($cellAddress)) { + return self::cellRow($cell); + } + + if (is_array($cellAddress)) { + foreach ($cellAddress as $rowKey => $rowValue) { + foreach ($rowValue as $columnKey => $cellValue) { + return (int) preg_replace('/\D/', '', $rowKey); + } + } + + return self::cellRow($cell); + } + + $cellAddress = $cellAddress ?? ''; + if ($cell !== null) { + [,, $sheetName] = Helpers::extractWorksheet($cellAddress, $cell); + [,, $cellAddress] = Helpers::extractCellAddresses($cellAddress, true, $cell->getWorksheet(), $sheetName); + } + [, $cellAddress] = Worksheet::extractSheetTitle($cellAddress, true); + if (strpos($cellAddress, ':') !== false) { + [$startAddress, $endAddress] = explode(':', $cellAddress); + $startAddress = (string) preg_replace('/\D/', '', $startAddress); + $endAddress = (string) preg_replace('/\D/', '', $endAddress); + + return array_map( + function ($value) { + return [$value]; + }, + range($startAddress, $endAddress) + ); + } + [$cellAddress] = explode(':', $cellAddress); + + return (int) preg_replace('/\D/', '', $cellAddress); + } + + /** + * ROWS. + * + * Returns the number of rows in an array or reference. + * + * Excel Function: + * =ROWS(cellAddress) + * + * @param null|array|string $cellAddress An array or array formula, or a reference to a range of cells + * for which you want the number of rows + * + * @return int|string The number of rows in cellAddress, or a string if arguments are invalid + */ + public static function ROWS($cellAddress = null) + { + if (self::cellAddressNullOrWhitespace($cellAddress)) { + return 1; + } + if (!is_array($cellAddress)) { + return ExcelError::VALUE(); + } + + reset($cellAddress); + $isMatrix = (is_numeric(key($cellAddress))); + [$columns, $rows] = Calculation::getMatrixDimensions($cellAddress); + + if ($isMatrix) { + return $columns; + } + + return $rows; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Selection.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Selection.php new file mode 100644 index 0000000..0ac9177 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Selection.php @@ -0,0 +1,51 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Selection +{ + use ArrayEnabled; + + /** + * CHOOSE. + * + * Uses lookup_value to return a value from the list of value arguments. + * Use CHOOSE to select one of up to 254 values based on the lookup_value. + * + * Excel Function: + * =CHOOSE(index_num, value1, [value2], ...) + * + * @param mixed $chosenEntry The entry to select from the list (indexed from 1) + * @param mixed ...$chooseArgs Data values + * + * @return mixed The selected value + */ + public static function choose($chosenEntry, ...$chooseArgs) + { + if (is_array($chosenEntry)) { + return self::evaluateArrayArgumentsSubset([self::class, __FUNCTION__], 1, $chosenEntry, ...$chooseArgs); + } + + $entryCount = count($chooseArgs) - 1; + + if (is_numeric($chosenEntry)) { + --$chosenEntry; + } else { + return ExcelError::VALUE(); + } + $chosenEntry = floor($chosenEntry); + if (($chosenEntry < 0) || ($chosenEntry > $entryCount)) { + return ExcelError::VALUE(); + } + + if (is_array($chooseArgs[$chosenEntry])) { + return Functions::flattenArray($chooseArgs[$chosenEntry]); + } + + return $chooseArgs[$chosenEntry]; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Sort.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Sort.php new file mode 100644 index 0000000..ff78fbe --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Sort.php @@ -0,0 +1,342 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; + +class Sort extends LookupRefValidations +{ + public const ORDER_ASCENDING = 1; + public const ORDER_DESCENDING = -1; + + /** + * SORT + * The SORT function returns a sorted array of the elements in an array. + * The returned array is the same shape as the provided array argument. + * Both $sortIndex and $sortOrder can be arrays, to provide multi-level sorting. + * + * @param mixed $sortArray The range of cells being sorted + * @param mixed $sortIndex The column or row number within the sortArray to sort on + * @param mixed $sortOrder Flag indicating whether to sort ascending or descending + * Ascending = 1 (self::ORDER_ASCENDING) + * Descending = -1 (self::ORDER_DESCENDING) + * @param mixed $byColumn Whether the sort should be determined by row (the default) or by column + * + * @return mixed The sorted values from the sort range + */ + public static function sort($sortArray, $sortIndex = 1, $sortOrder = self::ORDER_ASCENDING, $byColumn = false) + { + if (!is_array($sortArray)) { + // Scalars are always returned "as is" + return $sortArray; + } + + $sortArray = self::enumerateArrayKeys($sortArray); + + $byColumn = (bool) $byColumn; + $lookupIndexSize = $byColumn ? count($sortArray) : count($sortArray[0]); + + try { + // If $sortIndex and $sortOrder are scalars, then convert them into arrays + if (is_scalar($sortIndex)) { + $sortIndex = [$sortIndex]; + $sortOrder = is_scalar($sortOrder) ? [$sortOrder] : $sortOrder; + } + // but the values of those array arguments still need validation + $sortOrder = (empty($sortOrder) ? [self::ORDER_ASCENDING] : $sortOrder); + self::validateArrayArgumentsForSort($sortIndex, $sortOrder, $lookupIndexSize); + } catch (Exception $e) { + return $e->getMessage(); + } + + // We want a simple, enumrated array of arrays where we can reference column by its index number. + $sortArray = array_values(array_map('array_values', $sortArray)); + + return ($byColumn === true) + ? self::sortByColumn($sortArray, $sortIndex, $sortOrder) + : self::sortByRow($sortArray, $sortIndex, $sortOrder); + } + + /** + * SORTBY + * The SORTBY function sorts the contents of a range or array based on the values in a corresponding range or array. + * The returned array is the same shape as the provided array argument. + * Both $sortIndex and $sortOrder can be arrays, to provide multi-level sorting. + * + * @param mixed $sortArray The range of cells being sorted + * @param mixed $args + * At least one additional argument must be provided, The vector or range to sort on + * After that, arguments are passed as pairs: + * sort order: ascending or descending + * Ascending = 1 (self::ORDER_ASCENDING) + * Descending = -1 (self::ORDER_DESCENDING) + * additional arrays or ranges for multi-level sorting + * + * @return mixed The sorted values from the sort range + */ + public static function sortBy($sortArray, ...$args) + { + if (!is_array($sortArray)) { + // Scalars are always returned "as is" + return $sortArray; + } + + $sortArray = self::enumerateArrayKeys($sortArray); + + $lookupArraySize = count($sortArray); + $argumentCount = count($args); + + try { + $sortBy = $sortOrder = []; + for ($i = 0; $i < $argumentCount; $i += 2) { + $sortBy[] = self::validateSortVector($args[$i], $lookupArraySize); + $sortOrder[] = self::validateSortOrder($args[$i + 1] ?? self::ORDER_ASCENDING); + } + } catch (Exception $e) { + return $e->getMessage(); + } + + return self::processSortBy($sortArray, $sortBy, $sortOrder); + } + + private static function enumerateArrayKeys(array $sortArray): array + { + array_walk( + $sortArray, + function (&$columns): void { + if (is_array($columns)) { + $columns = array_values($columns); + } + } + ); + + return array_values($sortArray); + } + + /** + * @param mixed $sortIndex + * @param mixed $sortOrder + */ + private static function validateScalarArgumentsForSort(&$sortIndex, &$sortOrder, int $sortArraySize): void + { + if (is_array($sortIndex) || is_array($sortOrder)) { + throw new Exception(ExcelError::VALUE()); + } + + $sortIndex = self::validatePositiveInt($sortIndex, false); + + if ($sortIndex > $sortArraySize) { + throw new Exception(ExcelError::VALUE()); + } + + $sortOrder = self::validateSortOrder($sortOrder); + } + + /** + * @param mixed $sortVector + */ + private static function validateSortVector($sortVector, int $sortArraySize): array + { + if (!is_array($sortVector)) { + throw new Exception(ExcelError::VALUE()); + } + + // It doesn't matter if it's a row or a column vectors, it works either way + $sortVector = Functions::flattenArray($sortVector); + if (count($sortVector) !== $sortArraySize) { + throw new Exception(ExcelError::VALUE()); + } + + return $sortVector; + } + + /** + * @param mixed $sortOrder + */ + private static function validateSortOrder($sortOrder): int + { + $sortOrder = self::validateInt($sortOrder); + if (($sortOrder == self::ORDER_ASCENDING || $sortOrder === self::ORDER_DESCENDING) === false) { + throw new Exception(ExcelError::VALUE()); + } + + return $sortOrder; + } + + /** + * @param array $sortIndex + * @param mixed $sortOrder + */ + private static function validateArrayArgumentsForSort(&$sortIndex, &$sortOrder, int $sortArraySize): void + { + // It doesn't matter if they're row or column vectors, it works either way + $sortIndex = Functions::flattenArray($sortIndex); + $sortOrder = Functions::flattenArray($sortOrder); + + if ( + count($sortOrder) === 0 || count($sortOrder) > $sortArraySize || + (count($sortOrder) > count($sortIndex)) + ) { + throw new Exception(ExcelError::VALUE()); + } + + if (count($sortIndex) > count($sortOrder)) { + // If $sortOrder has fewer elements than $sortIndex, then the last order element is repeated. + $sortOrder = array_merge( + $sortOrder, + array_fill(0, count($sortIndex) - count($sortOrder), array_pop($sortOrder)) + ); + } + + foreach ($sortIndex as $key => &$value) { + self::validateScalarArgumentsForSort($value, $sortOrder[$key], $sortArraySize); + } + } + + private static function prepareSortVectorValues(array $sortVector): array + { + // Strings should be sorted case-insensitive; with booleans converted to locale-strings + return array_map( + function ($value) { + if (is_bool($value)) { + return ($value) ? Calculation::getTRUE() : Calculation::getFALSE(); + } elseif (is_string($value)) { + return StringHelper::strToLower($value); + } + + return $value; + }, + $sortVector + ); + } + + /** + * @param array[] $sortIndex + * @param int[] $sortOrder + */ + private static function processSortBy(array $sortArray, array $sortIndex, $sortOrder): array + { + $sortArguments = []; + $sortData = []; + foreach ($sortIndex as $index => $sortValues) { + $sortData[] = $sortValues; + $sortArguments[] = self::prepareSortVectorValues($sortValues); + $sortArguments[] = $sortOrder[$index] === self::ORDER_ASCENDING ? SORT_ASC : SORT_DESC; + } + $sortArguments = self::applyPHP7Patch($sortArray, $sortArguments); + + $sortVector = self::executeVectorSortQuery($sortData, $sortArguments); + + return self::sortLookupArrayFromVector($sortArray, $sortVector); + } + + /** + * @param int[] $sortIndex + * @param int[] $sortOrder + */ + private static function sortByRow(array $sortArray, array $sortIndex, array $sortOrder): array + { + $sortVector = self::buildVectorForSort($sortArray, $sortIndex, $sortOrder); + + return self::sortLookupArrayFromVector($sortArray, $sortVector); + } + + /** + * @param int[] $sortIndex + * @param int[] $sortOrder + */ + private static function sortByColumn(array $sortArray, array $sortIndex, array $sortOrder): array + { + $sortArray = Matrix::transpose($sortArray); + $result = self::sortByRow($sortArray, $sortIndex, $sortOrder); + + return Matrix::transpose($result); + } + + /** + * @param int[] $sortIndex + * @param int[] $sortOrder + */ + private static function buildVectorForSort(array $sortArray, array $sortIndex, array $sortOrder): array + { + $sortArguments = []; + $sortData = []; + foreach ($sortIndex as $index => $sortIndexValue) { + $sortValues = array_column($sortArray, $sortIndexValue - 1); + $sortData[] = $sortValues; + $sortArguments[] = self::prepareSortVectorValues($sortValues); + $sortArguments[] = $sortOrder[$index] === self::ORDER_ASCENDING ? SORT_ASC : SORT_DESC; + } + $sortArguments = self::applyPHP7Patch($sortArray, $sortArguments); + + $sortData = self::executeVectorSortQuery($sortData, $sortArguments); + + return $sortData; + } + + private static function executeVectorSortQuery(array $sortData, array $sortArguments): array + { + $sortData = Matrix::transpose($sortData); + + // We need to set an index that can be retained, as array_multisort doesn't maintain numeric keys. + $sortDataIndexed = []; + foreach ($sortData as $key => $value) { + $sortDataIndexed[Coordinate::stringFromColumnIndex($key + 1)] = $value; + } + unset($sortData); + + $sortArguments[] = &$sortDataIndexed; + + array_multisort(...$sortArguments); + + // After the sort, we restore the numeric keys that will now be in the correct, sorted order + $sortedData = []; + foreach (array_keys($sortDataIndexed) as $key) { + $sortedData[] = Coordinate::columnIndexFromString($key) - 1; + } + + return $sortedData; + } + + private static function sortLookupArrayFromVector(array $sortArray, array $sortVector): array + { + // Building a new array in the correct (sorted) order works; but may be memory heavy for larger arrays + $sortedArray = []; + foreach ($sortVector as $index) { + $sortedArray[] = $sortArray[$index]; + } + + return $sortedArray; + +// uksort( +// $lookupArray, +// function (int $a, int $b) use (array $sortVector) { +// return $sortVector[$a] <=> $sortVector[$b]; +// } +// ); +// +// return $lookupArray; + } + + /** + * Hack to handle PHP 7: + * From PHP 8.0.0, If two members compare as equal in a sort, they retain their original order; + * but prior to PHP 8.0.0, their relative order in the sorted array was undefined. + * MS Excel replicates the PHP 8.0.0 behaviour, retaining the original order of matching elements. + * To replicate that behaviour with PHP 7, we add an extra sort based on the row index. + */ + private static function applyPHP7Patch(array $sortArray, array $sortArguments): array + { + if (PHP_VERSION_ID < 80000) { + $sortArguments[] = range(1, count($sortArray)); + $sortArguments[] = SORT_ASC; + } + + return $sortArguments; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Unique.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Unique.php new file mode 100644 index 0000000..2ba5128 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Unique.php @@ -0,0 +1,141 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; + +class Unique +{ + /** + * UNIQUE + * The UNIQUE function searches for value either from a one-row or one-column range or from an array. + * + * @param mixed $lookupVector The range of cells being searched + * @param mixed $byColumn Whether the uniqueness should be determined by row (the default) or by column + * @param mixed $exactlyOnce Whether the function should return only entries that occur just once in the list + * + * @return mixed The unique values from the search range + */ + public static function unique($lookupVector, $byColumn = false, $exactlyOnce = false) + { + if (!is_array($lookupVector)) { + // Scalars are always returned "as is" + return $lookupVector; + } + + $byColumn = (bool) $byColumn; + $exactlyOnce = (bool) $exactlyOnce; + + return ($byColumn === true) + ? self::uniqueByColumn($lookupVector, $exactlyOnce) + : self::uniqueByRow($lookupVector, $exactlyOnce); + } + + /** + * @return mixed + */ + private static function uniqueByRow(array $lookupVector, bool $exactlyOnce) + { + // When not $byColumn, we count whole rows or values, not individual values + // so implode each row into a single string value + array_walk( + $lookupVector, + function (array &$value): void { + $value = implode(chr(0x00), $value); + } + ); + + $result = self::countValuesCaseInsensitive($lookupVector); + + if ($exactlyOnce === true) { + $result = self::exactlyOnceFilter($result); + } + + if (count($result) === 0) { + return ExcelError::CALC(); + } + + $result = array_keys($result); + + // restore rows from their strings + array_walk( + $result, + function (string &$value): void { + $value = explode(chr(0x00), $value); + } + ); + + return (count($result) === 1) ? array_pop($result) : $result; + } + + /** + * @return mixed + */ + private static function uniqueByColumn(array $lookupVector, bool $exactlyOnce) + { + $flattenedLookupVector = Functions::flattenArray($lookupVector); + + if (count($lookupVector, COUNT_RECURSIVE) > count($flattenedLookupVector, COUNT_RECURSIVE) + 1) { + // We're looking at a full column check (multiple rows) + $transpose = Matrix::transpose($lookupVector); + $result = self::uniqueByRow($transpose, $exactlyOnce); + + return (is_array($result)) ? Matrix::transpose($result) : $result; + } + + $result = self::countValuesCaseInsensitive($flattenedLookupVector); + + if ($exactlyOnce === true) { + $result = self::exactlyOnceFilter($result); + } + + if (count($result) === 0) { + return ExcelError::CALC(); + } + + $result = array_keys($result); + + return $result; + } + + private static function countValuesCaseInsensitive(array $caseSensitiveLookupValues): array + { + $caseInsensitiveCounts = array_count_values( + array_map( + function (string $value) { + return StringHelper::strToUpper($value); + }, + $caseSensitiveLookupValues + ) + ); + + $caseSensitiveCounts = []; + foreach ($caseInsensitiveCounts as $caseInsensitiveKey => $count) { + if (is_numeric($caseInsensitiveKey)) { + $caseSensitiveCounts[$caseInsensitiveKey] = $count; + } else { + foreach ($caseSensitiveLookupValues as $caseSensitiveValue) { + if ($caseInsensitiveKey === StringHelper::strToUpper($caseSensitiveValue)) { + $caseSensitiveCounts[$caseSensitiveValue] = $count; + + break; + } + } + } + } + + return $caseSensitiveCounts; + } + + private static function exactlyOnceFilter(array $values): array + { + return array_filter( + $values, + function ($value) { + return $value === 1; + } + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/VLookup.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/VLookup.php new file mode 100644 index 0000000..edeb1aa --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/VLookup.php @@ -0,0 +1,117 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; + +class VLookup extends LookupBase +{ + use ArrayEnabled; + + /** + * VLOOKUP + * The VLOOKUP function searches for value in the left-most column of lookup_array and returns the value + * in the same row based on the index_number. + * + * @param mixed $lookupValue The value that you want to match in lookup_array + * @param mixed $lookupArray The range of cells being searched + * @param mixed $indexNumber The column number in table_array from which the matching value must be returned. + * The first column is 1. + * @param mixed $notExactMatch determines if you are looking for an exact match based on lookup_value + * + * @return mixed The value of the found cell + */ + public static function lookup($lookupValue, $lookupArray, $indexNumber, $notExactMatch = true) + { + if (is_array($lookupValue)) { + return self::evaluateArrayArgumentsIgnore([self::class, __FUNCTION__], 1, $lookupValue, $lookupArray, $indexNumber, $notExactMatch); + } + + $notExactMatch = (bool) ($notExactMatch ?? true); + + try { + self::validateLookupArray($lookupArray); + $indexNumber = self::validateIndexLookup($lookupArray, $indexNumber); + } catch (Exception $e) { + return $e->getMessage(); + } + + $f = array_keys($lookupArray); + $firstRow = array_pop($f); + if ((!is_array($lookupArray[$firstRow])) || ($indexNumber > count($lookupArray[$firstRow]))) { + return ExcelError::REF(); + } + $columnKeys = array_keys($lookupArray[$firstRow]); + $returnColumn = $columnKeys[--$indexNumber]; + $firstColumn = array_shift($columnKeys) ?? 1; + + if (!$notExactMatch) { + /** @var callable */ + $callable = [self::class, 'vlookupSort']; + uasort($lookupArray, $callable); + } + + $rowNumber = self::vLookupSearch($lookupValue, $lookupArray, $firstColumn, $notExactMatch); + + if ($rowNumber !== null) { + // return the appropriate value + return $lookupArray[$rowNumber][$returnColumn]; + } + + return ExcelError::NA(); + } + + private static function vlookupSort(array $a, array $b): int + { + reset($a); + $firstColumn = key($a); + $aLower = StringHelper::strToLower((string) $a[$firstColumn]); + $bLower = StringHelper::strToLower((string) $b[$firstColumn]); + + if ($aLower == $bLower) { + return 0; + } + + return ($aLower < $bLower) ? -1 : 1; + } + + /** + * @param mixed $lookupValue The value that you want to match in lookup_array + * @param int|string $column + */ + private static function vLookupSearch($lookupValue, array $lookupArray, $column, bool $notExactMatch): ?int + { + $lookupLower = StringHelper::strToLower((string) $lookupValue); + + $rowNumber = null; + foreach ($lookupArray as $rowKey => $rowData) { + $bothNumeric = is_numeric($lookupValue) && is_numeric($rowData[$column]); + $bothNotNumeric = !is_numeric($lookupValue) && !is_numeric($rowData[$column]); + $cellDataLower = StringHelper::strToLower((string) $rowData[$column]); + + // break if we have passed possible keys + if ( + $notExactMatch && + (($bothNumeric && ($rowData[$column] > $lookupValue)) || + ($bothNotNumeric && ($cellDataLower > $lookupLower))) + ) { + break; + } + + $rowNumber = self::checkMatch( + $bothNumeric, + $bothNotNumeric, + $notExactMatch, + $rowKey, + $cellDataLower, + $lookupLower, + $rowNumber + ); + } + + return $rowNumber; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig.php new file mode 100644 index 0000000..993154c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig.php @@ -0,0 +1,1520 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +/** + * @deprecated 1.18.0 + */ +class MathTrig +{ + /** + * ARABIC. + * + * Converts a Roman numeral to an Arabic numeral. + * + * Excel Function: + * ARABIC(text) + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Arabic::evaluate() + * Use the evaluate method in the MathTrig\Arabic class instead + * + * @param array|string $roman + * + * @return array|int|string the arabic numberal contrived from the roman numeral + */ + public static function ARABIC($roman) + { + return MathTrig\Arabic::evaluate($roman); + } + + /** + * ATAN2. + * + * This function calculates the arc tangent of the two variables x and y. It is similar to + * calculating the arc tangent of y ÷ x, except that the signs of both arguments are used + * to determine the quadrant of the result. + * The arctangent is the angle from the x-axis to a line containing the origin (0, 0) and a + * point with coordinates (xCoordinate, yCoordinate). The angle is given in radians between + * -pi and pi, excluding -pi. + * + * Note that the Excel ATAN2() function accepts its arguments in the reverse order to the standard + * PHP atan2() function, so we need to reverse them here before calling the PHP atan() function. + * + * Excel Function: + * ATAN2(xCoordinate,yCoordinate) + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Tangent::atan2() + * Use the atan2 method in the MathTrig\Trig\Tangent class instead + * + * @param array|float $xCoordinate the x-coordinate of the point + * @param array|float $yCoordinate the y-coordinate of the point + * + * @return array|float|string the inverse tangent of the specified x- and y-coordinates, or a string containing an error + */ + public static function ATAN2($xCoordinate = null, $yCoordinate = null) + { + return MathTrig\Trig\Tangent::atan2($xCoordinate, $yCoordinate); + } + + /** + * BASE. + * + * Converts a number into a text representation with the given radix (base). + * + * Excel Function: + * BASE(Number, Radix [Min_length]) + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Base::evaluate() + * Use the evaluate method in the MathTrig\Base class instead + * + * @param float $number + * @param float $radix + * @param int $minLength + * + * @return array|string the text representation with the given radix (base) + */ + public static function BASE($number, $radix, $minLength = null) + { + return MathTrig\Base::evaluate($number, $radix, $minLength); + } + + /** + * CEILING. + * + * Returns number rounded up, away from zero, to the nearest multiple of significance. + * For example, if you want to avoid using pennies in your prices and your product is + * priced at $4.42, use the formula =CEILING(4.42,0.05) to round prices up to the + * nearest nickel. + * + * Excel Function: + * CEILING(number[,significance]) + * + * @Deprecated 1.17.0 + * + * @param float $number the number you want to round + * @param float $significance the multiple to which you want to round + * + * @return array|float|string Rounded Number, or a string containing an error + * + * @see MathTrig\Ceiling::ceiling() + * Use the ceiling() method in the MathTrig\Ceiling class instead + */ + public static function CEILING($number, $significance = null) + { + return MathTrig\Ceiling::ceiling($number, $significance); + } + + /** + * COMBIN. + * + * Returns the number of combinations for a given number of items. Use COMBIN to + * determine the total possible number of groups for a given number of items. + * + * Excel Function: + * COMBIN(numObjs,numInSet) + * + * @Deprecated 1.18.0 + * + * @see MathTrig\Combinations::withoutRepetition() + * Use the withoutRepetition() method in the MathTrig\Combinations class instead + * + * @param array|int $numObjs Number of different objects + * @param array|int $numInSet Number of objects in each combination + * + * @return array|float|int|string Number of combinations, or a string containing an error + */ + public static function COMBIN($numObjs, $numInSet) + { + return MathTrig\Combinations::withoutRepetition($numObjs, $numInSet); + } + + /** + * EVEN. + * + * Returns number rounded up to the nearest even integer. + * You can use this function for processing items that come in twos. For example, + * a packing crate accepts rows of one or two items. The crate is full when + * the number of items, rounded up to the nearest two, matches the crate's + * capacity. + * + * Excel Function: + * EVEN(number) + * + * @Deprecated 1.18.0 + * + * @see MathTrig\Round::even() + * Use the even() method in the MathTrig\Round class instead + * + * @param array|float $number Number to round + * + * @return array|float|int|string Rounded Number, or a string containing an error + */ + public static function EVEN($number) + { + return MathTrig\Round::even($number); + } + + /** + * Helper function for Even. + * + * @Deprecated 1.18.0 + * + * @see MathTrig\Helpers::getEven() + * Use the evaluate() method in the MathTrig\Helpers class instead + */ + public static function getEven(float $number): int + { + return (int) MathTrig\Helpers::getEven($number); + } + + /** + * FACT. + * + * Returns the factorial of a number. + * The factorial of a number is equal to 1*2*3*...* number. + * + * Excel Function: + * FACT(factVal) + * + * @Deprecated 1.18.0 + * + * @param array|float $factVal Factorial Value + * + * @return array|float|int|string Factorial, or a string containing an error + * + *@see MathTrig\Factorial::fact() + * Use the fact() method in the MathTrig\Factorial class instead + */ + public static function FACT($factVal) + { + return MathTrig\Factorial::fact($factVal); + } + + /** + * FACTDOUBLE. + * + * Returns the double factorial of a number. + * + * Excel Function: + * FACTDOUBLE(factVal) + * + * @Deprecated 1.18.0 + * + * @param array|float $factVal Factorial Value + * + * @return array|float|int|string Double Factorial, or a string containing an error + * + *@see MathTrig\Factorial::factDouble() + * Use the factDouble() method in the MathTrig\Factorial class instead + */ + public static function FACTDOUBLE($factVal) + { + return MathTrig\Factorial::factDouble($factVal); + } + + /** + * FLOOR. + * + * Rounds number down, toward zero, to the nearest multiple of significance. + * + * Excel Function: + * FLOOR(number[,significance]) + * + * @Deprecated 1.17.0 + * + * @param float $number Number to round + * @param float $significance Significance + * + * @return array|float|string Rounded Number, or a string containing an error + * + *@see MathTrig\Floor::floor() + * Use the floor() method in the MathTrig\Floor class instead + */ + public static function FLOOR($number, $significance = null) + { + return MathTrig\Floor::floor($number, $significance); + } + + /** + * FLOOR.MATH. + * + * Round a number down to the nearest integer or to the nearest multiple of significance. + * + * Excel Function: + * FLOOR.MATH(number[,significance[,mode]]) + * + * @Deprecated 1.17.0 + * + * @param float $number Number to round + * @param float $significance Significance + * @param int $mode direction to round negative numbers + * + * @return array|float|string Rounded Number, or a string containing an error + * + *@see MathTrig\Floor::math() + * Use the math() method in the MathTrig\Floor class instead + */ + public static function FLOORMATH($number, $significance = null, $mode = 0) + { + return MathTrig\Floor::math($number, $significance, $mode); + } + + /** + * FLOOR.PRECISE. + * + * Rounds number down, toward zero, to the nearest multiple of significance. + * + * Excel Function: + * FLOOR.PRECISE(number[,significance]) + * + * @Deprecated 1.17.0 + * + * @param float $number Number to round + * @param float $significance Significance + * + * @return array|float|string Rounded Number, or a string containing an error + * + *@see MathTrig\Floor::precise() + * Use the precise() method in the MathTrig\Floor class instead + */ + public static function FLOORPRECISE($number, $significance = 1) + { + return MathTrig\Floor::precise($number, $significance); + } + + /** + * INT. + * + * Casts a floating point value to an integer + * + * Excel Function: + * INT(number) + * + * @Deprecated 1.17.0 + * + * @see MathTrig\IntClass::evaluate() + * Use the evaluate() method in the MathTrig\IntClass class instead + * + * @param array|float $number Number to cast to an integer + * + * @return array|int|string Integer value, or a string containing an error + */ + public static function INT($number) + { + return MathTrig\IntClass::evaluate($number); + } + + /** + * GCD. + * + * Returns the greatest common divisor of a series of numbers. + * The greatest common divisor is the largest integer that divides both + * number1 and number2 without a remainder. + * + * Excel Function: + * GCD(number1[,number2[, ...]]) + * + * @Deprecated 1.18.0 + * + * @see MathTrig\Gcd::evaluate() + * Use the evaluate() method in the MathTrig\Gcd class instead + * + * @param mixed ...$args Data values + * + * @return int|mixed|string Greatest Common Divisor, or a string containing an error + */ + public static function GCD(...$args) + { + return MathTrig\Gcd::evaluate(...$args); + } + + /** + * LCM. + * + * Returns the lowest common multiplier of a series of numbers + * The least common multiple is the smallest positive integer that is a multiple + * of all integer arguments number1, number2, and so on. Use LCM to add fractions + * with different denominators. + * + * Excel Function: + * LCM(number1[,number2[, ...]]) + * + * @Deprecated 1.18.0 + * + * @see MathTrig\Lcm::evaluate() + * Use the evaluate() method in the MathTrig\Lcm class instead + * + * @param mixed ...$args Data values + * + * @return int|string Lowest Common Multiplier, or a string containing an error + */ + public static function LCM(...$args) + { + return MathTrig\Lcm::evaluate(...$args); + } + + /** + * LOG_BASE. + * + * Returns the logarithm of a number to a specified base. The default base is 10. + * + * Excel Function: + * LOG(number[,base]) + * + * @Deprecated 1.18.0 + * + * @see MathTrig\Logarithms::withBase() + * Use the withBase() method in the MathTrig\Logarithms class instead + * + * @param float $number The positive real number for which you want the logarithm + * @param float $base The base of the logarithm. If base is omitted, it is assumed to be 10. + * + * @return array|float|string The result, or a string containing an error + */ + public static function logBase($number, $base = 10) + { + return MathTrig\Logarithms::withBase($number, $base); + } + + /** + * MDETERM. + * + * Returns the matrix determinant of an array. + * + * Excel Function: + * MDETERM(array) + * + * @Deprecated 1.18.0 + * + * @see MathTrig\MatrixFunctions::determinant() + * Use the determinant() method in the MathTrig\MatrixFunctions class instead + * + * @param array $matrixValues A matrix of values + * + * @return float|string The result, or a string containing an error + */ + public static function MDETERM($matrixValues) + { + return MathTrig\MatrixFunctions::determinant($matrixValues); + } + + /** + * MINVERSE. + * + * Returns the inverse matrix for the matrix stored in an array. + * + * Excel Function: + * MINVERSE(array) + * + * @Deprecated 1.18.0 + * + * @see MathTrig\MatrixFunctions::inverse() + * Use the inverse() method in the MathTrig\MatrixFunctions class instead + * + * @param array $matrixValues A matrix of values + * + * @return array|string The result, or a string containing an error + */ + public static function MINVERSE($matrixValues) + { + return MathTrig\MatrixFunctions::inverse($matrixValues); + } + + /** + * MMULT. + * + * @Deprecated 1.18.0 + * + * @see MathTrig\MatrixFunctions::multiply() + * Use the multiply() method in the MathTrig\MatrixFunctions class instead + * + * @param array $matrixData1 A matrix of values + * @param array $matrixData2 A matrix of values + * + * @return array|string The result, or a string containing an error + */ + public static function MMULT($matrixData1, $matrixData2) + { + return MathTrig\MatrixFunctions::multiply($matrixData1, $matrixData2); + } + + /** + * MOD. + * + * @Deprecated 1.18.0 + * + * @see MathTrig\Operations::mod() + * Use the mod() method in the MathTrig\Operations class instead + * + * @param int $a Dividend + * @param int $b Divisor + * + * @return array|float|int|string Remainder, or a string containing an error + */ + public static function MOD($a = 1, $b = 1) + { + return MathTrig\Operations::mod($a, $b); + } + + /** + * MROUND. + * + * Rounds a number to the nearest multiple of a specified value + * + * @Deprecated 1.17.0 + * + * @param float $number Number to round + * @param array|int $multiple Multiple to which you want to round $number + * + * @return array|float|string Rounded Number, or a string containing an error + * + *@see MathTrig\Round::multiple() + * Use the multiple() method in the MathTrig\Mround class instead + */ + public static function MROUND($number, $multiple) + { + return MathTrig\Round::multiple($number, $multiple); + } + + /** + * MULTINOMIAL. + * + * Returns the ratio of the factorial of a sum of values to the product of factorials. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Factorial::multinomial() + * Use the multinomial method in the MathTrig\Factorial class instead + * + * @param mixed[] $args An array of mixed values for the Data Series + * + * @return float|string The result, or a string containing an error + */ + public static function MULTINOMIAL(...$args) + { + return MathTrig\Factorial::multinomial(...$args); + } + + /** + * ODD. + * + * Returns number rounded up to the nearest odd integer. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Round::odd() + * Use the odd method in the MathTrig\Round class instead + * + * @param array|float $number Number to round + * + * @return array|float|int|string Rounded Number, or a string containing an error + */ + public static function ODD($number) + { + return MathTrig\Round::odd($number); + } + + /** + * POWER. + * + * Computes x raised to the power y. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Operations::power() + * Use the evaluate method in the MathTrig\Power class instead + * + * @param float $x + * @param float $y + * + * @return array|float|int|string The result, or a string containing an error + */ + public static function POWER($x = 0, $y = 2) + { + return MathTrig\Operations::power($x, $y); + } + + /** + * PRODUCT. + * + * PRODUCT returns the product of all the values and cells referenced in the argument list. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Operations::product() + * Use the product method in the MathTrig\Operations class instead + * + * Excel Function: + * PRODUCT(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function PRODUCT(...$args) + { + return MathTrig\Operations::product(...$args); + } + + /** + * QUOTIENT. + * + * QUOTIENT function returns the integer portion of a division. Numerator is the divided number + * and denominator is the divisor. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Operations::quotient() + * Use the quotient method in the MathTrig\Operations class instead + * + * Excel Function: + * QUOTIENT(value1[,value2[, ...]]) + * + * @param mixed $numerator + * @param mixed $denominator + * + * @return array|int|string + */ + public static function QUOTIENT($numerator, $denominator) + { + return MathTrig\Operations::quotient($numerator, $denominator); + } + + /** + * RAND/RANDBETWEEN. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Random::randBetween() + * Use the randBetween or randBetween method in the MathTrig\Random class instead + * + * @param int $min Minimal value + * @param int $max Maximal value + * + * @return array|float|int|string Random number + */ + public static function RAND($min = 0, $max = 0) + { + return MathTrig\Random::randBetween($min, $max); + } + + /** + * ROMAN. + * + * Converts a number to Roman numeral + * + * @Deprecated 1.17.0 + * + * @Ssee MathTrig\Roman::evaluate() + * Use the evaluate() method in the MathTrig\Roman class instead + * + * @param mixed $aValue Number to convert + * @param mixed $style Number indicating one of five possible forms + * + * @return array|string Roman numeral, or a string containing an error + */ + public static function ROMAN($aValue, $style = 0) + { + return MathTrig\Roman::evaluate($aValue, $style); + } + + /** + * ROUNDUP. + * + * Rounds a number up to a specified number of decimal places + * + * @Deprecated 1.17.0 + * + * @See MathTrig\Round::up() + * Use the up() method in the MathTrig\Round class instead + * + * @param array|float $number Number to round + * @param array|int $digits Number of digits to which you want to round $number + * + * @return array|float|string Rounded Number, or a string containing an error + */ + public static function ROUNDUP($number, $digits) + { + return MathTrig\Round::up($number, $digits); + } + + /** + * ROUNDDOWN. + * + * Rounds a number down to a specified number of decimal places + * + * @Deprecated 1.17.0 + * + * @See MathTrig\Round::down() + * Use the down() method in the MathTrig\Round class instead + * + * @param array|float $number Number to round + * @param array|int $digits Number of digits to which you want to round $number + * + * @return array|float|string Rounded Number, or a string containing an error + */ + public static function ROUNDDOWN($number, $digits) + { + return MathTrig\Round::down($number, $digits); + } + + /** + * SERIESSUM. + * + * Returns the sum of a power series + * + * @Deprecated 1.18.0 + * + * @See MathTrig\SeriesSum::evaluate() + * Use the evaluate method in the MathTrig\SeriesSum class instead + * + * @param mixed $x Input value + * @param mixed $n Initial power + * @param mixed $m Step + * @param mixed[] $args An array of coefficients for the Data Series + * + * @return array|float|string The result, or a string containing an error + */ + public static function SERIESSUM($x, $n, $m, ...$args) + { + return MathTrig\SeriesSum::evaluate($x, $n, $m, ...$args); + } + + /** + * SIGN. + * + * Determines the sign of a number. Returns 1 if the number is positive, zero (0) + * if the number is 0, and -1 if the number is negative. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Sign::evaluate() + * Use the evaluate method in the MathTrig\Sign class instead + * + * @param array|float $number Number to round + * + * @return array|int|string sign value, or a string containing an error + */ + public static function SIGN($number) + { + return MathTrig\Sign::evaluate($number); + } + + /** + * returnSign = returns 0/-1/+1. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Helpers::returnSign() + * Use the returnSign method in the MathTrig\Helpers class instead + */ + public static function returnSign(float $number): int + { + return MathTrig\Helpers::returnSign($number); + } + + /** + * SQRTPI. + * + * Returns the square root of (number * pi). + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Sqrt::sqrt() + * Use the pi method in the MathTrig\Sqrt class instead + * + * @param array|float $number Number + * + * @return array|float|string Square Root of Number * Pi, or a string containing an error + */ + public static function SQRTPI($number) + { + return MathTrig\Sqrt::pi($number); + } + + /** + * SUBTOTAL. + * + * Returns a subtotal in a list or database. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Subtotal::evaluate() + * Use the evaluate method in the MathTrig\Subtotal class instead + * + * @param int $functionType + * A number 1 to 11 that specifies which function to + * use in calculating subtotals within a range + * list + * Numbers 101 to 111 shadow the functions of 1 to 11 + * but ignore any values in the range that are + * in hidden rows or columns + * @param mixed[] $args A mixed data series of values + * + * @return float|string + */ + public static function SUBTOTAL($functionType, ...$args) + { + return MathTrig\Subtotal::evaluate($functionType, ...$args); + } + + /** + * SUM. + * + * SUM computes the sum of all the values and cells referenced in the argument list. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Sum::sumErroringStrings() + * Use the sumErroringStrings method in the MathTrig\Sum class instead + * + * Excel Function: + * SUM(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function SUM(...$args) + { + return MathTrig\Sum::sumIgnoringStrings(...$args); + } + + /** + * SUMIF. + * + * Totals the values of cells that contain numbers within the list of arguments + * + * Excel Function: + * SUMIF(range, criteria, [sum_range]) + * + * @Deprecated 1.17.0 + * + * @see Statistical\Conditional::SUMIF() + * Use the SUMIF() method in the Statistical\Conditional class instead + * + * @param mixed $range Data values + * @param string $criteria the criteria that defines which cells will be summed + * @param mixed $sumRange + * + * @return float|string + */ + public static function SUMIF($range, $criteria, $sumRange = []) + { + return Statistical\Conditional::SUMIF($range, $criteria, $sumRange); + } + + /** + * SUMIFS. + * + * Totals the values of cells that contain numbers within the list of arguments + * + * Excel Function: + * SUMIFS(sum_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...) + * + * @Deprecated 1.17.0 + * + * @see Statistical\Conditional::SUMIFS() + * Use the SUMIFS() method in the Statistical\Conditional class instead + * + * @param mixed $args Data values + * + * @return null|float|string + */ + public static function SUMIFS(...$args) + { + return Statistical\Conditional::SUMIFS(...$args); + } + + /** + * SUMPRODUCT. + * + * Excel Function: + * SUMPRODUCT(value1[,value2[, ...]]) + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Sum::product() + * Use the product method in the MathTrig\Sum class instead + * + * @param mixed ...$args Data values + * + * @return float|string The result, or a string containing an error + */ + public static function SUMPRODUCT(...$args) + { + return MathTrig\Sum::product(...$args); + } + + /** + * SUMSQ. + * + * SUMSQ returns the sum of the squares of the arguments + * + * @Deprecated 1.18.0 + * + * @See MathTrig\SumSquares::sumSquare() + * Use the sumSquare method in the MathTrig\SumSquares class instead + * + * Excel Function: + * SUMSQ(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function SUMSQ(...$args) + { + return MathTrig\SumSquares::sumSquare(...$args); + } + + /** + * SUMX2MY2. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\SumSquares::sumXSquaredMinusYSquared() + * Use the sumXSquaredMinusYSquared method in the MathTrig\SumSquares class instead + * + * @param mixed[] $matrixData1 Matrix #1 + * @param mixed[] $matrixData2 Matrix #2 + * + * @return float|string + */ + public static function SUMX2MY2($matrixData1, $matrixData2) + { + return MathTrig\SumSquares::sumXSquaredMinusYSquared($matrixData1, $matrixData2); + } + + /** + * SUMX2PY2. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\SumSquares::sumXSquaredPlusYSquared() + * Use the sumXSquaredPlusYSquared method in the MathTrig\SumSquares class instead + * + * @param mixed[] $matrixData1 Matrix #1 + * @param mixed[] $matrixData2 Matrix #2 + * + * @return float|string + */ + public static function SUMX2PY2($matrixData1, $matrixData2) + { + return MathTrig\SumSquares::sumXSquaredPlusYSquared($matrixData1, $matrixData2); + } + + /** + * SUMXMY2. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\SumSquares::sumXMinusYSquared() + * Use the sumXMinusYSquared method in the MathTrig\SumSquares class instead + * + * @param mixed[] $matrixData1 Matrix #1 + * @param mixed[] $matrixData2 Matrix #2 + * + * @return float|string + */ + public static function SUMXMY2($matrixData1, $matrixData2) + { + return MathTrig\SumSquares::sumXMinusYSquared($matrixData1, $matrixData2); + } + + /** + * TRUNC. + * + * Truncates value to the number of fractional digits by number_digits. + * + * @Deprecated 1.17.0 + * + * @see MathTrig\Trunc::evaluate() + * Use the evaluate() method in the MathTrig\Trunc class instead + * + * @param float $value + * @param int $digits + * + * @return array|float|string Truncated value, or a string containing an error + */ + public static function TRUNC($value = 0, $digits = 0) + { + return MathTrig\Trunc::evaluate($value, $digits); + } + + /** + * SEC. + * + * Returns the secant of an angle. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Secant::sec() + * Use the sec method in the MathTrig\Trig\Secant class instead + * + * @param array|float $angle Number + * + * @return array|float|string The secant of the angle + */ + public static function SEC($angle) + { + return MathTrig\Trig\Secant::sec($angle); + } + + /** + * SECH. + * + * Returns the hyperbolic secant of an angle. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Secant::sech() + * Use the sech method in the MathTrig\Trig\Secant class instead + * + * @param array|float $angle Number + * + * @return array|float|string The hyperbolic secant of the angle + */ + public static function SECH($angle) + { + return MathTrig\Trig\Secant::sech($angle); + } + + /** + * CSC. + * + * Returns the cosecant of an angle. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Cosecant::csc() + * Use the csc method in the MathTrig\Trig\Cosecant class instead + * + * @param array|float $angle Number + * + * @return array|float|string The cosecant of the angle + */ + public static function CSC($angle) + { + return MathTrig\Trig\Cosecant::csc($angle); + } + + /** + * CSCH. + * + * Returns the hyperbolic cosecant of an angle. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Cosecant::csch() + * Use the csch method in the MathTrig\Trig\Cosecant class instead + * + * @param array|float $angle Number + * + * @return array|float|string The hyperbolic cosecant of the angle + */ + public static function CSCH($angle) + { + return MathTrig\Trig\Cosecant::csch($angle); + } + + /** + * COT. + * + * Returns the cotangent of an angle. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Cotangent::cot() + * Use the cot method in the MathTrig\Trig\Cotangent class instead + * + * @param array|float $angle Number + * + * @return array|float|string The cotangent of the angle + */ + public static function COT($angle) + { + return MathTrig\Trig\Cotangent::cot($angle); + } + + /** + * COTH. + * + * Returns the hyperbolic cotangent of an angle. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Cotangent::coth() + * Use the coth method in the MathTrig\Trig\Cotangent class instead + * + * @param array|float $angle Number + * + * @return array|float|string The hyperbolic cotangent of the angle + */ + public static function COTH($angle) + { + return MathTrig\Trig\Cotangent::coth($angle); + } + + /** + * ACOT. + * + * Returns the arccotangent of a number. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Cotangent::acot() + * Use the acot method in the MathTrig\Trig\Cotangent class instead + * + * @param array|float $number Number + * + * @return array|float|string The arccotangent of the number + */ + public static function ACOT($number) + { + return MathTrig\Trig\Cotangent::acot($number); + } + + /** + * Return NAN or value depending on argument. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Helpers::numberOrNan() + * Use the numberOrNan method in the MathTrig\Helpers class instead + * + * @param float $result Number + * + * @return float|string + */ + public static function numberOrNan($result) + { + return MathTrig\Helpers::numberOrNan($result); + } + + /** + * ACOTH. + * + * Returns the hyperbolic arccotangent of a number. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Cotangent::acoth() + * Use the acoth method in the MathTrig\Trig\Cotangent class instead + * + * @param array|float $number Number + * + * @return array|float|string The hyperbolic arccotangent of the number + */ + public static function ACOTH($number) + { + return MathTrig\Trig\Cotangent::acoth($number); + } + + /** + * ROUND. + * + * Returns the result of builtin function round after validating args. + * + * @Deprecated 1.17.0 + * + * @See MathTrig\Round::round() + * Use the round() method in the MathTrig\Round class instead + * + * @param array|mixed $number Should be numeric + * @param array|mixed $precision Should be int + * + * @return array|float|string Rounded number + */ + public static function builtinROUND($number, $precision) + { + return MathTrig\Round::round($number, $precision); + } + + /** + * ABS. + * + * Returns the result of builtin function abs after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Absolute::evaluate() + * Use the evaluate method in the MathTrig\Absolute class instead + * + * @param array|mixed $number Should be numeric + * + * @return array|float|int|string Rounded number + */ + public static function builtinABS($number) + { + return MathTrig\Absolute::evaluate($number); + } + + /** + * ACOS. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Cosine::acos() + * Use the acos method in the MathTrig\Trig\Cosine class instead + * + * Returns the result of builtin function acos after validating args. + * + * @param array|float $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinACOS($number) + { + return MathTrig\Trig\Cosine::acos($number); + } + + /** + * ACOSH. + * + * Returns the result of builtin function acosh after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Cosine::acosh() + * Use the acosh method in the MathTrig\Trig\Cosine class instead + * + * @param array|float $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinACOSH($number) + { + return MathTrig\Trig\Cosine::acosh($number); + } + + /** + * ASIN. + * + * Returns the result of builtin function asin after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Sine::asin() + * Use the asin method in the MathTrig\Trig\Sine class instead + * + * @param array|float $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinASIN($number) + { + return MathTrig\Trig\Sine::asin($number); + } + + /** + * ASINH. + * + * Returns the result of builtin function asinh after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Sine::asinh() + * Use the asinh method in the MathTrig\Trig\Sine class instead + * + * @param array|float $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinASINH($number) + { + return MathTrig\Trig\Sine::asinh($number); + } + + /** + * ATAN. + * + * Returns the result of builtin function atan after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Tangent::atan() + * Use the atan method in the MathTrig\Trig\Tangent class instead + * + * @param array|float $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinATAN($number) + { + return MathTrig\Trig\Tangent::atan($number); + } + + /** + * ATANH. + * + * Returns the result of builtin function atanh after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Tangent::atanh() + * Use the atanh method in the MathTrig\Trig\Tangent class instead + * + * @param array|float $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinATANH($number) + { + return MathTrig\Trig\Tangent::atanh($number); + } + + /** + * COS. + * + * Returns the result of builtin function cos after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Cosine::cos() + * Use the cos method in the MathTrig\Trig\Cosine class instead + * + * @param array|mixed $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinCOS($number) + { + return MathTrig\Trig\Cosine::cos($number); + } + + /** + * COSH. + * + * Returns the result of builtin function cos after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Cosine::cosh() + * Use the cosh method in the MathTrig\Trig\Cosine class instead + * + * @param array|mixed $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinCOSH($number) + { + return MathTrig\Trig\Cosine::cosh($number); + } + + /** + * DEGREES. + * + * Returns the result of builtin function rad2deg after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Angle::toDegrees() + * Use the toDegrees method in the MathTrig\Angle class instead + * + * @param array|mixed $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinDEGREES($number) + { + return MathTrig\Angle::toDegrees($number); + } + + /** + * EXP. + * + * Returns the result of builtin function exp after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Exp::evaluate() + * Use the evaluate method in the MathTrig\Exp class instead + * + * @param array|mixed $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinEXP($number) + { + return MathTrig\Exp::evaluate($number); + } + + /** + * LN. + * + * Returns the result of builtin function log after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Logarithms::natural() + * Use the natural method in the MathTrig\Logarithms class instead + * + * @param mixed $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinLN($number) + { + return MathTrig\Logarithms::natural($number); + } + + /** + * LOG10. + * + * Returns the result of builtin function log after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Logarithms::base10() + * Use the natural method in the MathTrig\Logarithms class instead + * + * @param mixed $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinLOG10($number) + { + return MathTrig\Logarithms::base10($number); + } + + /** + * RADIANS. + * + * Returns the result of builtin function deg2rad after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Angle::toRadians() + * Use the toRadians method in the MathTrig\Angle class instead + * + * @param array|mixed $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinRADIANS($number) + { + return MathTrig\Angle::toRadians($number); + } + + /** + * SIN. + * + * Returns the result of builtin function sin after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Sine::evaluate() + * Use the sin method in the MathTrig\Trig\Sine class instead + * + * @param array|mixed $number Should be numeric + * + * @return array|float|string sine + */ + public static function builtinSIN($number) + { + return MathTrig\Trig\Sine::sin($number); + } + + /** + * SINH. + * + * Returns the result of builtin function sinh after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Sine::sinh() + * Use the sinh method in the MathTrig\Trig\Sine class instead + * + * @param array|mixed $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinSINH($number) + { + return MathTrig\Trig\Sine::sinh($number); + } + + /** + * SQRT. + * + * Returns the result of builtin function sqrt after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Sqrt::sqrt() + * Use the sqrt method in the MathTrig\Sqrt class instead + * + * @param array|mixed $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinSQRT($number) + { + return MathTrig\Sqrt::sqrt($number); + } + + /** + * TAN. + * + * Returns the result of builtin function tan after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Tangent::tan() + * Use the tan method in the MathTrig\Trig\Tangent class instead + * + * @param array|mixed $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinTAN($number) + { + return MathTrig\Trig\Tangent::tan($number); + } + + /** + * TANH. + * + * Returns the result of builtin function sinh after validating args. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Trig\Tangent::tanh() + * Use the tanh method in the MathTrig\Trig\Tangent class instead + * + * @param array|mixed $number Should be numeric + * + * @return array|float|string Rounded number + */ + public static function builtinTANH($number) + { + return MathTrig\Trig\Tangent::tanh($number); + } + + /** + * Many functions accept null/false/true argument treated as 0/0/1. + * + * @Deprecated 1.18.0 + * + * @See MathTrig\Helpers::validateNumericNullBool() + * Use the validateNumericNullBool method in the MathTrig\Helpers class instead + * + * @param mixed $number + */ + public static function nullFalseTrueToNumber(&$number): void + { + $number = Functions::flattenSingleValue($number); + if ($number === null) { + $number = 0; + } elseif (is_bool($number)) { + $number = (int) $number; + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Absolute.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Absolute.php new file mode 100644 index 0000000..f21c6b7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Absolute.php @@ -0,0 +1,37 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; + +class Absolute +{ + use ArrayEnabled; + + /** + * ABS. + * + * Returns the result of builtin function abs after validating args. + * + * @param mixed $number Should be numeric, or can be an array of numbers + * + * @return array|float|int|string rounded number + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function evaluate($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return abs($number); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Angle.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Angle.php new file mode 100644 index 0000000..cbeec6f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Angle.php @@ -0,0 +1,63 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; + +class Angle +{ + use ArrayEnabled; + + /** + * DEGREES. + * + * Returns the result of builtin function rad2deg after validating args. + * + * @param mixed $number Should be numeric, or can be an array of numbers + * + * @return array|float|string Rounded number + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function toDegrees($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return rad2deg($number); + } + + /** + * RADIANS. + * + * Returns the result of builtin function deg2rad after validating args. + * + * @param mixed $number Should be numeric, or can be an array of numbers + * + * @return array|float|string Rounded number + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function toRadians($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return deg2rad($number); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Arabic.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Arabic.php new file mode 100644 index 0000000..ee48850 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Arabic.php @@ -0,0 +1,112 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Arabic +{ + use ArrayEnabled; + + private const ROMAN_LOOKUP = [ + 'M' => 1000, + 'D' => 500, + 'C' => 100, + 'L' => 50, + 'X' => 10, + 'V' => 5, + 'I' => 1, + ]; + + /** + * Recursively calculate the arabic value of a roman numeral. + * + * @param int $sum + * @param int $subtract + * + * @return int + */ + private static function calculateArabic(array $roman, &$sum = 0, $subtract = 0) + { + $numeral = array_shift($roman); + if (!isset(self::ROMAN_LOOKUP[$numeral])) { + throw new Exception('Invalid character detected'); + } + + $arabic = self::ROMAN_LOOKUP[$numeral]; + if (count($roman) > 0 && isset(self::ROMAN_LOOKUP[$roman[0]]) && $arabic < self::ROMAN_LOOKUP[$roman[0]]) { + $subtract += $arabic; + } else { + $sum += ($arabic - $subtract); + $subtract = 0; + } + + if (count($roman) > 0) { + self::calculateArabic($roman, $sum, $subtract); + } + + return $sum; + } + + /** + * @param mixed $value + */ + private static function mollifyScrutinizer($value): array + { + return is_array($value) ? $value : []; + } + + private static function strSplit(string $roman): array + { + $rslt = str_split($roman); + + return self::mollifyScrutinizer($rslt); + } + + /** + * ARABIC. + * + * Converts a Roman numeral to an Arabic numeral. + * + * Excel Function: + * ARABIC(text) + * + * @param mixed $roman Should be a string, or can be an array of strings + * + * @return array|int|string the arabic numberal contrived from the roman numeral + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function evaluate($roman) + { + if (is_array($roman)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $roman); + } + + // An empty string should return 0 + $roman = substr(trim(strtoupper((string) $roman)), 0, 255); + if ($roman === '') { + return 0; + } + + // Convert the roman numeral to an arabic number + $negativeNumber = $roman[0] === '-'; + if ($negativeNumber) { + $roman = substr($roman, 1); + } + + try { + $arabic = self::calculateArabic(self::strSplit($roman)); + } catch (Exception $e) { + return ExcelError::VALUE(); // Invalid character detected + } + + if ($negativeNumber) { + $arabic *= -1; // The number should be negative + } + + return $arabic; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Base.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Base.php new file mode 100644 index 0000000..2fec947 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Base.php @@ -0,0 +1,68 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Base +{ + use ArrayEnabled; + + /** + * BASE. + * + * Converts a number into a text representation with the given radix (base). + * + * Excel Function: + * BASE(Number, Radix [Min_length]) + * + * @param mixed $number expect float + * Or can be an array of values + * @param mixed $radix expect float + * Or can be an array of values + * @param mixed $minLength expect int or null + * Or can be an array of values + * + * @return array|string the text representation with the given radix (base) + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function evaluate($number, $radix, $minLength = null) + { + if (is_array($number) || is_array($radix) || is_array($minLength)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number, $radix, $minLength); + } + + try { + $number = (float) floor(Helpers::validateNumericNullBool($number)); + $radix = (int) Helpers::validateNumericNullBool($radix); + } catch (Exception $e) { + return $e->getMessage(); + } + + return self::calculate($number, $radix, $minLength); + } + + /** + * @param mixed $minLength + */ + private static function calculate(float $number, int $radix, $minLength): string + { + if ($minLength === null || is_numeric($minLength)) { + if ($number < 0 || $number >= 2 ** 53 || $radix < 2 || $radix > 36) { + return ExcelError::NAN(); // Numeric range constraints + } + + $outcome = strtoupper((string) base_convert("$number", 10, $radix)); + if ($minLength !== null) { + $outcome = str_pad($outcome, (int) $minLength, '0', STR_PAD_LEFT); // String padding + } + + return $outcome; + } + + return ExcelError::VALUE(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Ceiling.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Ceiling.php new file mode 100644 index 0000000..635f1bb --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Ceiling.php @@ -0,0 +1,167 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Ceiling +{ + use ArrayEnabled; + + /** + * CEILING. + * + * Returns number rounded up, away from zero, to the nearest multiple of significance. + * For example, if you want to avoid using pennies in your prices and your product is + * priced at $4.42, use the formula =CEILING(4.42,0.05) to round prices up to the + * nearest nickel. + * + * Excel Function: + * CEILING(number[,significance]) + * + * @param array|float $number the number you want the ceiling + * Or can be an array of values + * @param array|float $significance the multiple to which you want to round + * Or can be an array of values + * + * @return array|float|string Rounded Number, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function ceiling($number, $significance = null) + { + if (is_array($number) || is_array($significance)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number, $significance); + } + + if ($significance === null) { + self::floorCheck1Arg(); + } + + try { + $number = Helpers::validateNumericNullBool($number); + $significance = Helpers::validateNumericNullSubstitution($significance, ($number < 0) ? -1 : 1); + } catch (Exception $e) { + return $e->getMessage(); + } + + return self::argumentsOk((float) $number, (float) $significance); + } + + /** + * CEILING.MATH. + * + * Round a number down to the nearest integer or to the nearest multiple of significance. + * + * Excel Function: + * CEILING.MATH(number[,significance[,mode]]) + * + * @param mixed $number Number to round + * Or can be an array of values + * @param mixed $significance Significance + * Or can be an array of values + * @param array|int $mode direction to round negative numbers + * Or can be an array of values + * + * @return array|float|string Rounded Number, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function math($number, $significance = null, $mode = 0) + { + if (is_array($number) || is_array($significance) || is_array($mode)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number, $significance, $mode); + } + + try { + $number = Helpers::validateNumericNullBool($number); + $significance = Helpers::validateNumericNullSubstitution($significance, ($number < 0) ? -1 : 1); + $mode = Helpers::validateNumericNullSubstitution($mode, null); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (empty($significance * $number)) { + return 0.0; + } + if (self::ceilingMathTest((float) $significance, (float) $number, (int) $mode)) { + return floor($number / $significance) * $significance; + } + + return ceil($number / $significance) * $significance; + } + + /** + * CEILING.PRECISE. + * + * Rounds number up, away from zero, to the nearest multiple of significance. + * + * Excel Function: + * CEILING.PRECISE(number[,significance]) + * + * @param mixed $number the number you want to round + * Or can be an array of values + * @param array|float $significance the multiple to which you want to round + * Or can be an array of values + * + * @return array|float|string Rounded Number, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function precise($number, $significance = 1) + { + if (is_array($number) || is_array($significance)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number, $significance); + } + + try { + $number = Helpers::validateNumericNullBool($number); + $significance = Helpers::validateNumericNullSubstitution($significance, null); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (!$significance) { + return 0.0; + } + $result = $number / abs($significance); + + return ceil($result) * $significance * (($significance < 0) ? -1 : 1); + } + + /** + * Let CEILINGMATH complexity pass Scrutinizer. + */ + private static function ceilingMathTest(float $significance, float $number, int $mode): bool + { + return ((float) $significance < 0) || ((float) $number < 0 && !empty($mode)); + } + + /** + * Avoid Scrutinizer problems concerning complexity. + * + * @return float|string + */ + private static function argumentsOk(float $number, float $significance) + { + if (empty($number * $significance)) { + return 0.0; + } + if (Helpers::returnSign($number) == Helpers::returnSign($significance)) { + return ceil($number / $significance) * $significance; + } + + return ExcelError::NAN(); + } + + private static function floorCheck1Arg(): void + { + $compatibility = Functions::getCompatibilityMode(); + if ($compatibility === Functions::COMPATIBILITY_EXCEL) { + throw new Exception('Excel requires 2 arguments for CEILING'); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Combinations.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Combinations.php new file mode 100644 index 0000000..5a652da --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Combinations.php @@ -0,0 +1,91 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; + +class Combinations +{ + use ArrayEnabled; + + /** + * COMBIN. + * + * Returns the number of combinations for a given number of items. Use COMBIN to + * determine the total possible number of groups for a given number of items. + * + * Excel Function: + * COMBIN(numObjs,numInSet) + * + * @param mixed $numObjs Number of different objects, or can be an array of numbers + * @param mixed $numInSet Number of objects in each combination, or can be an array of numbers + * + * @return array|float|int|string Number of combinations, or a string containing an error + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function withoutRepetition($numObjs, $numInSet) + { + if (is_array($numObjs) || is_array($numInSet)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $numObjs, $numInSet); + } + + try { + $numObjs = Helpers::validateNumericNullSubstitution($numObjs, null); + $numInSet = Helpers::validateNumericNullSubstitution($numInSet, null); + Helpers::validateNotNegative($numInSet); + Helpers::validateNotNegative($numObjs - $numInSet); + } catch (Exception $e) { + return $e->getMessage(); + } + + return round(Factorial::fact($numObjs) / Factorial::fact($numObjs - $numInSet)) / Factorial::fact($numInSet); + } + + /** + * COMBINA. + * + * Returns the number of combinations for a given number of items. Use COMBIN to + * determine the total possible number of groups for a given number of items. + * + * Excel Function: + * COMBINA(numObjs,numInSet) + * + * @param mixed $numObjs Number of different objects, or can be an array of numbers + * @param mixed $numInSet Number of objects in each combination, or can be an array of numbers + * + * @return array|float|int|string Number of combinations, or a string containing an error + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function withRepetition($numObjs, $numInSet) + { + if (is_array($numObjs) || is_array($numInSet)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $numObjs, $numInSet); + } + + try { + $numObjs = Helpers::validateNumericNullSubstitution($numObjs, null); + $numInSet = Helpers::validateNumericNullSubstitution($numInSet, null); + Helpers::validateNotNegative($numInSet); + Helpers::validateNotNegative($numObjs); + $numObjs = (int) $numObjs; + $numInSet = (int) $numInSet; + // Microsoft documentation says following is true, but Excel + // does not enforce this restriction. + //Helpers::validateNotNegative($numObjs - $numInSet); + if ($numObjs === 0) { + Helpers::validateNotNegative(-$numInSet); + + return 1; + } + } catch (Exception $e) { + return $e->getMessage(); + } + + return round( + Factorial::fact($numObjs + $numInSet - 1) / Factorial::fact($numObjs - 1) + ) / Factorial::fact($numInSet); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Exp.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Exp.php new file mode 100644 index 0000000..f65c2c1 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Exp.php @@ -0,0 +1,37 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; + +class Exp +{ + use ArrayEnabled; + + /** + * EXP. + * + * Returns the result of builtin function exp after validating args. + * + * @param mixed $number Should be numeric, or can be an array of numbers + * + * @return array|float|string Rounded number + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function evaluate($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return exp($number); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Factorial.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Factorial.php new file mode 100644 index 0000000..b6883e2 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Factorial.php @@ -0,0 +1,125 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +class Factorial +{ + use ArrayEnabled; + + /** + * FACT. + * + * Returns the factorial of a number. + * The factorial of a number is equal to 1*2*3*...* number. + * + * Excel Function: + * FACT(factVal) + * + * @param array|float $factVal Factorial Value, or can be an array of numbers + * + * @return array|float|int|string Factorial, or a string containing an error + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function fact($factVal) + { + if (is_array($factVal)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $factVal); + } + + try { + $factVal = Helpers::validateNumericNullBool($factVal); + Helpers::validateNotNegative($factVal); + } catch (Exception $e) { + return $e->getMessage(); + } + + $factLoop = floor($factVal); + if ($factVal > $factLoop) { + if (Functions::getCompatibilityMode() == Functions::COMPATIBILITY_GNUMERIC) { + return Statistical\Distributions\Gamma::gammaValue($factVal + 1); + } + } + + $factorial = 1; + while ($factLoop > 1) { + $factorial *= $factLoop--; + } + + return $factorial; + } + + /** + * FACTDOUBLE. + * + * Returns the double factorial of a number. + * + * Excel Function: + * FACTDOUBLE(factVal) + * + * @param array|float $factVal Factorial Value, or can be an array of numbers + * + * @return array|float|int|string Double Factorial, or a string containing an error + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function factDouble($factVal) + { + if (is_array($factVal)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $factVal); + } + + try { + $factVal = Helpers::validateNumericNullSubstitution($factVal, 0); + Helpers::validateNotNegative($factVal); + } catch (Exception $e) { + return $e->getMessage(); + } + + $factLoop = floor($factVal); + $factorial = 1; + while ($factLoop > 1) { + $factorial *= $factLoop; + $factLoop -= 2; + } + + return $factorial; + } + + /** + * MULTINOMIAL. + * + * Returns the ratio of the factorial of a sum of values to the product of factorials. + * + * @param mixed[] $args An array of mixed values for the Data Series + * + * @return float|string The result, or a string containing an error + */ + public static function multinomial(...$args) + { + $summer = 0; + $divisor = 1; + + try { + // Loop through arguments + foreach (Functions::flattenArray($args) as $argx) { + $arg = Helpers::validateNumericNullSubstitution($argx, null); + Helpers::validateNotNegative($arg); + $arg = (int) $arg; + $summer += $arg; + $divisor *= self::fact($arg); + } + } catch (Exception $e) { + return $e->getMessage(); + } + + $summer = self::fact($summer); + + return $summer / $divisor; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Floor.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Floor.php new file mode 100644 index 0000000..2199dda --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Floor.php @@ -0,0 +1,195 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Floor +{ + use ArrayEnabled; + + private static function floorCheck1Arg(): void + { + $compatibility = Functions::getCompatibilityMode(); + if ($compatibility === Functions::COMPATIBILITY_EXCEL) { + throw new Exception('Excel requires 2 arguments for FLOOR'); + } + } + + /** + * FLOOR. + * + * Rounds number down, toward zero, to the nearest multiple of significance. + * + * Excel Function: + * FLOOR(number[,significance]) + * + * @param mixed $number Expect float. Number to round + * Or can be an array of values + * @param mixed $significance Expect float. Significance + * Or can be an array of values + * + * @return array|float|string Rounded Number, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function floor($number, $significance = null) + { + if (is_array($number) || is_array($significance)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number, $significance); + } + + if ($significance === null) { + self::floorCheck1Arg(); + } + + try { + $number = Helpers::validateNumericNullBool($number); + $significance = Helpers::validateNumericNullSubstitution($significance, ($number < 0) ? -1 : 1); + } catch (Exception $e) { + return $e->getMessage(); + } + + return self::argumentsOk((float) $number, (float) $significance); + } + + /** + * FLOOR.MATH. + * + * Round a number down to the nearest integer or to the nearest multiple of significance. + * + * Excel Function: + * FLOOR.MATH(number[,significance[,mode]]) + * + * @param mixed $number Number to round + * Or can be an array of values + * @param mixed $significance Significance + * Or can be an array of values + * @param mixed $mode direction to round negative numbers + * Or can be an array of values + * + * @return array|float|string Rounded Number, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function math($number, $significance = null, $mode = 0) + { + if (is_array($number) || is_array($significance) || is_array($mode)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number, $significance, $mode); + } + + try { + $number = Helpers::validateNumericNullBool($number); + $significance = Helpers::validateNumericNullSubstitution($significance, ($number < 0) ? -1 : 1); + $mode = Helpers::validateNumericNullSubstitution($mode, null); + } catch (Exception $e) { + return $e->getMessage(); + } + + return self::argsOk((float) $number, (float) $significance, (int) $mode); + } + + /** + * FLOOR.PRECISE. + * + * Rounds number down, toward zero, to the nearest multiple of significance. + * + * Excel Function: + * FLOOR.PRECISE(number[,significance]) + * + * @param array|float $number Number to round + * Or can be an array of values + * @param array|float $significance Significance + * Or can be an array of values + * + * @return array|float|string Rounded Number, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function precise($number, $significance = 1) + { + if (is_array($number) || is_array($significance)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number, $significance); + } + + try { + $number = Helpers::validateNumericNullBool($number); + $significance = Helpers::validateNumericNullSubstitution($significance, null); + } catch (Exception $e) { + return $e->getMessage(); + } + + return self::argumentsOkPrecise((float) $number, (float) $significance); + } + + /** + * Avoid Scrutinizer problems concerning complexity. + * + * @return float|string + */ + private static function argumentsOkPrecise(float $number, float $significance) + { + if ($significance == 0.0) { + return ExcelError::DIV0(); + } + if ($number == 0.0) { + return 0.0; + } + + return floor($number / abs($significance)) * abs($significance); + } + + /** + * Avoid Scrutinizer complexity problems. + * + * @return float|string Rounded Number, or a string containing an error + */ + private static function argsOk(float $number, float $significance, int $mode) + { + if (!$significance) { + return ExcelError::DIV0(); + } + if (!$number) { + return 0.0; + } + if (self::floorMathTest($number, $significance, $mode)) { + return ceil($number / $significance) * $significance; + } + + return floor($number / $significance) * $significance; + } + + /** + * Let FLOORMATH complexity pass Scrutinizer. + */ + private static function floorMathTest(float $number, float $significance, int $mode): bool + { + return Helpers::returnSign($significance) == -1 || (Helpers::returnSign($number) == -1 && !empty($mode)); + } + + /** + * Avoid Scrutinizer problems concerning complexity. + * + * @return float|string + */ + private static function argumentsOk(float $number, float $significance) + { + if ($significance == 0.0) { + return ExcelError::DIV0(); + } + if ($number == 0.0) { + return 0.0; + } + if (Helpers::returnSign($significance) == 1) { + return floor($number / $significance) * $significance; + } + if (Helpers::returnSign($number) == -1 && Helpers::returnSign($significance) == -1) { + return floor($number / $significance) * $significance; + } + + return ExcelError::NAN(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Gcd.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Gcd.php new file mode 100644 index 0000000..f703599 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Gcd.php @@ -0,0 +1,70 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Gcd +{ + /** + * Recursively determine GCD. + * + * Returns the greatest common divisor of a series of numbers. + * The greatest common divisor is the largest integer that divides both + * number1 and number2 without a remainder. + * + * Excel Function: + * GCD(number1[,number2[, ...]]) + * + * @param float|int $a + * @param float|int $b + * + * @return float|int + */ + private static function evaluateGCD($a, $b) + { + return $b ? self::evaluateGCD($b, $a % $b) : $a; + } + + /** + * GCD. + * + * Returns the greatest common divisor of a series of numbers. + * The greatest common divisor is the largest integer that divides both + * number1 and number2 without a remainder. + * + * Excel Function: + * GCD(number1[,number2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|int|string Greatest Common Divisor, or a string containing an error + */ + public static function evaluate(...$args) + { + try { + $arrayArgs = []; + foreach (Functions::flattenArray($args) as $value1) { + if ($value1 !== null) { + $value = Helpers::validateNumericNullSubstitution($value1, 1); + Helpers::validateNotNegative($value); + $arrayArgs[] = (int) $value; + } + } + } catch (Exception $e) { + return $e->getMessage(); + } + + if (count($arrayArgs) <= 0) { + return ExcelError::VALUE(); + } + $gcd = (int) array_pop($arrayArgs); + do { + $gcd = self::evaluateGCD($gcd, (int) array_pop($arrayArgs)); + } while (!empty($arrayArgs)); + + return $gcd; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Helpers.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Helpers.php new file mode 100644 index 0000000..f34f159 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Helpers.php @@ -0,0 +1,130 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Helpers +{ + /** + * Many functions accept null/false/true argument treated as 0/0/1. + * + * @return float|string quotient or DIV0 if denominator is too small + */ + public static function verySmallDenominator(float $numerator, float $denominator) + { + return (abs($denominator) < 1.0E-12) ? ExcelError::DIV0() : ($numerator / $denominator); + } + + /** + * Many functions accept null/false/true argument treated as 0/0/1. + * + * @param mixed $number + * + * @return float|int + */ + public static function validateNumericNullBool($number) + { + $number = Functions::flattenSingleValue($number); + if ($number === null) { + return 0; + } + if (is_bool($number)) { + return (int) $number; + } + if (is_numeric($number)) { + return 0 + $number; + } + + throw new Exception(ExcelError::throwError($number)); + } + + /** + * Validate numeric, but allow substitute for null. + * + * @param mixed $number + * @param null|float|int $substitute + * + * @return float|int + */ + public static function validateNumericNullSubstitution($number, $substitute) + { + $number = Functions::flattenSingleValue($number); + if ($number === null && $substitute !== null) { + return $substitute; + } + if (is_numeric($number)) { + return 0 + $number; + } + + throw new Exception(ExcelError::throwError($number)); + } + + /** + * Confirm number >= 0. + * + * @param float|int $number + */ + public static function validateNotNegative($number, ?string $except = null): void + { + if ($number >= 0) { + return; + } + + throw new Exception($except ?? ExcelError::NAN()); + } + + /** + * Confirm number > 0. + * + * @param float|int $number + */ + public static function validatePositive($number, ?string $except = null): void + { + if ($number > 0) { + return; + } + + throw new Exception($except ?? ExcelError::NAN()); + } + + /** + * Confirm number != 0. + * + * @param float|int $number + */ + public static function validateNotZero($number): void + { + if ($number) { + return; + } + + throw new Exception(ExcelError::DIV0()); + } + + public static function returnSign(float $number): int + { + return $number ? (($number > 0) ? 1 : -1) : 0; + } + + public static function getEven(float $number): float + { + $significance = 2 * self::returnSign($number); + + return $significance ? (ceil($number / $significance) * $significance) : 0; + } + + /** + * Return NAN or value depending on argument. + * + * @param float $result Number + * + * @return float|string + */ + public static function numberOrNan($result) + { + return is_nan($result) ? ExcelError::NAN() : $result; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/IntClass.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/IntClass.php new file mode 100644 index 0000000..f7f7764 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/IntClass.php @@ -0,0 +1,40 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; + +class IntClass +{ + use ArrayEnabled; + + /** + * INT. + * + * Casts a floating point value to an integer + * + * Excel Function: + * INT(number) + * + * @param array|float $number Number to cast to an integer, or can be an array of numbers + * + * @return array|string Integer value, or a string containing an error + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function evaluate($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return (int) floor($number); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Lcm.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Lcm.php new file mode 100644 index 0000000..3b23c1d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Lcm.php @@ -0,0 +1,111 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Lcm +{ + // + // Private method to return an array of the factors of the input value + // + private static function factors(float $value): array + { + $startVal = floor(sqrt($value)); + + $factorArray = []; + for ($i = $startVal; $i > 1; --$i) { + if (($value % $i) == 0) { + $factorArray = array_merge($factorArray, self::factors($value / $i)); + $factorArray = array_merge($factorArray, self::factors($i)); + if ($i <= sqrt($value)) { + break; + } + } + } + if (!empty($factorArray)) { + rsort($factorArray); + + return $factorArray; + } + + return [(int) $value]; + } + + /** + * LCM. + * + * Returns the lowest common multiplier of a series of numbers + * The least common multiple is the smallest positive integer that is a multiple + * of all integer arguments number1, number2, and so on. Use LCM to add fractions + * with different denominators. + * + * Excel Function: + * LCM(number1[,number2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return int|string Lowest Common Multiplier, or a string containing an error + */ + public static function evaluate(...$args) + { + try { + $arrayArgs = []; + $anyZeros = 0; + $anyNonNulls = 0; + foreach (Functions::flattenArray($args) as $value1) { + $anyNonNulls += (int) ($value1 !== null); + $value = Helpers::validateNumericNullSubstitution($value1, 1); + Helpers::validateNotNegative($value); + $arrayArgs[] = (int) $value; + $anyZeros += (int) !((bool) $value); + } + self::testNonNulls($anyNonNulls); + if ($anyZeros) { + return 0; + } + } catch (Exception $e) { + return $e->getMessage(); + } + + $returnValue = 1; + $allPoweredFactors = []; + // Loop through arguments + foreach ($arrayArgs as $value) { + $myFactors = self::factors(floor($value)); + $myCountedFactors = array_count_values($myFactors); + $myPoweredFactors = []; + foreach ($myCountedFactors as $myCountedFactor => $myCountedPower) { + $myPoweredFactors[$myCountedFactor] = $myCountedFactor ** $myCountedPower; + } + self::processPoweredFactors($allPoweredFactors, $myPoweredFactors); + } + foreach ($allPoweredFactors as $allPoweredFactor) { + $returnValue *= (int) $allPoweredFactor; + } + + return $returnValue; + } + + private static function processPoweredFactors(array &$allPoweredFactors, array &$myPoweredFactors): void + { + foreach ($myPoweredFactors as $myPoweredValue => $myPoweredFactor) { + if (isset($allPoweredFactors[$myPoweredValue])) { + if ($allPoweredFactors[$myPoweredValue] < $myPoweredFactor) { + $allPoweredFactors[$myPoweredValue] = $myPoweredFactor; + } + } else { + $allPoweredFactors[$myPoweredValue] = $myPoweredFactor; + } + } + } + + private static function testNonNulls(int $anyNonNulls): void + { + if (!$anyNonNulls) { + throw new Exception(ExcelError::VALUE()); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Logarithms.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Logarithms.php new file mode 100644 index 0000000..7b07f09 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Logarithms.php @@ -0,0 +1,102 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; + +class Logarithms +{ + use ArrayEnabled; + + /** + * LOG_BASE. + * + * Returns the logarithm of a number to a specified base. The default base is 10. + * + * Excel Function: + * LOG(number[,base]) + * + * @param mixed $number The positive real number for which you want the logarithm + * Or can be an array of values + * @param mixed $base The base of the logarithm. If base is omitted, it is assumed to be 10. + * Or can be an array of values + * + * @return array|float|string The result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function withBase($number, $base = 10) + { + if (is_array($number) || is_array($base)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number, $base); + } + + try { + $number = Helpers::validateNumericNullBool($number); + Helpers::validatePositive($number); + $base = Helpers::validateNumericNullBool($base); + Helpers::validatePositive($base); + } catch (Exception $e) { + return $e->getMessage(); + } + + return log($number, $base); + } + + /** + * LOG10. + * + * Returns the result of builtin function log after validating args. + * + * @param mixed $number Should be numeric + * Or can be an array of values + * + * @return array|float|string Rounded number + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function base10($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + Helpers::validatePositive($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return log10($number); + } + + /** + * LN. + * + * Returns the result of builtin function log after validating args. + * + * @param mixed $number Should be numeric + * Or can be an array of values + * + * @return array|float|string Rounded number + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function natural($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + Helpers::validatePositive($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return log($number); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/MatrixFunctions.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/MatrixFunctions.php new file mode 100644 index 0000000..5a5125a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/MatrixFunctions.php @@ -0,0 +1,179 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use Matrix\Builder; +use Matrix\Div0Exception as MatrixDiv0Exception; +use Matrix\Exception as MatrixException; +use Matrix\Matrix; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class MatrixFunctions +{ + /** + * Convert parameter to Matrix. + * + * @param mixed $matrixValues A matrix of values + */ + private static function getMatrix($matrixValues): Matrix + { + $matrixData = []; + if (!is_array($matrixValues)) { + $matrixValues = [[$matrixValues]]; + } + + $row = 0; + foreach ($matrixValues as $matrixRow) { + if (!is_array($matrixRow)) { + $matrixRow = [$matrixRow]; + } + $column = 0; + foreach ($matrixRow as $matrixCell) { + if ((is_string($matrixCell)) || ($matrixCell === null)) { + throw new Exception(ExcelError::VALUE()); + } + $matrixData[$row][$column] = $matrixCell; + ++$column; + } + ++$row; + } + + return new Matrix($matrixData); + } + + /** + * SEQUENCE. + * + * Generates a list of sequential numbers in an array. + * + * Excel Function: + * SEQUENCE(rows,[columns],[start],[step]) + * + * @param mixed $rows the number of rows to return, defaults to 1 + * @param mixed $columns the number of columns to return, defaults to 1 + * @param mixed $start the first number in the sequence, defaults to 1 + * @param mixed $step the amount to increment each subsequent value in the array, defaults to 1 + * + * @return array|string The resulting array, or a string containing an error + */ + public static function sequence($rows = 1, $columns = 1, $start = 1, $step = 1) + { + try { + $rows = (int) Helpers::validateNumericNullSubstitution($rows, 1); + Helpers::validatePositive($rows); + $columns = (int) Helpers::validateNumericNullSubstitution($columns, 1); + Helpers::validatePositive($columns); + $start = Helpers::validateNumericNullSubstitution($start, 1); + $step = Helpers::validateNumericNullSubstitution($step, 1); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($step === 0) { + return array_chunk( + array_fill(0, $rows * $columns, $start), + max($columns, 1) + ); + } + + return array_chunk( + range($start, $start + (($rows * $columns - 1) * $step), $step), + max($columns, 1) + ); + } + + /** + * MDETERM. + * + * Returns the matrix determinant of an array. + * + * Excel Function: + * MDETERM(array) + * + * @param mixed $matrixValues A matrix of values + * + * @return float|string The result, or a string containing an error + */ + public static function determinant($matrixValues) + { + try { + $matrix = self::getMatrix($matrixValues); + + return $matrix->determinant(); + } catch (MatrixException $ex) { + return ExcelError::VALUE(); + } catch (Exception $e) { + return $e->getMessage(); + } + } + + /** + * MINVERSE. + * + * Returns the inverse matrix for the matrix stored in an array. + * + * Excel Function: + * MINVERSE(array) + * + * @param mixed $matrixValues A matrix of values + * + * @return array|string The result, or a string containing an error + */ + public static function inverse($matrixValues) + { + try { + $matrix = self::getMatrix($matrixValues); + + return $matrix->inverse()->toArray(); + } catch (MatrixDiv0Exception $e) { + return ExcelError::NAN(); + } catch (MatrixException $e) { + return ExcelError::VALUE(); + } catch (Exception $e) { + return $e->getMessage(); + } + } + + /** + * MMULT. + * + * @param mixed $matrixData1 A matrix of values + * @param mixed $matrixData2 A matrix of values + * + * @return array|string The result, or a string containing an error + */ + public static function multiply($matrixData1, $matrixData2) + { + try { + $matrixA = self::getMatrix($matrixData1); + $matrixB = self::getMatrix($matrixData2); + + return $matrixA->multiply($matrixB)->toArray(); + } catch (MatrixException $ex) { + return ExcelError::VALUE(); + } catch (Exception $e) { + return $e->getMessage(); + } + } + + /** + * MUnit. + * + * @param mixed $dimension Number of rows and columns + * + * @return array|string The result, or a string containing an error + */ + public static function identity($dimension) + { + try { + $dimension = (int) Helpers::validateNumericNullBool($dimension); + Helpers::validatePositive($dimension, ExcelError::VALUE()); + $matrix = Builder::createIdentityMatrix($dimension, 0)->toArray(); + + return $matrix; + } catch (Exception $e) { + return $e->getMessage(); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Operations.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Operations.php new file mode 100644 index 0000000..0625845 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Operations.php @@ -0,0 +1,162 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Operations +{ + use ArrayEnabled; + + /** + * MOD. + * + * @param mixed $dividend Dividend + * Or can be an array of values + * @param mixed $divisor Divisor + * Or can be an array of values + * + * @return array|float|int|string Remainder, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function mod($dividend, $divisor) + { + if (is_array($dividend) || is_array($divisor)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $dividend, $divisor); + } + + try { + $dividend = Helpers::validateNumericNullBool($dividend); + $divisor = Helpers::validateNumericNullBool($divisor); + Helpers::validateNotZero($divisor); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($dividend < 0.0) && ($divisor > 0.0)) { + return $divisor - fmod(abs($dividend), $divisor); + } + if (($dividend > 0.0) && ($divisor < 0.0)) { + return $divisor + fmod($dividend, abs($divisor)); + } + + return fmod($dividend, $divisor); + } + + /** + * POWER. + * + * Computes x raised to the power y. + * + * @param array|float|int $x + * Or can be an array of values + * @param array|float|int $y + * Or can be an array of values + * + * @return array|float|int|string The result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function power($x, $y) + { + if (is_array($x) || is_array($y)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $x, $y); + } + + try { + $x = Helpers::validateNumericNullBool($x); + $y = Helpers::validateNumericNullBool($y); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Validate parameters + if (!$x && !$y) { + return ExcelError::NAN(); + } + if (!$x && $y < 0.0) { + return ExcelError::DIV0(); + } + + // Return + $result = $x ** $y; + + return Helpers::numberOrNan($result); + } + + /** + * PRODUCT. + * + * PRODUCT returns the product of all the values and cells referenced in the argument list. + * + * Excel Function: + * PRODUCT(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function product(...$args) + { + $args = array_filter( + Functions::flattenArray($args), + function ($value) { + return $value !== null; + } + ); + + // Return value + $returnValue = (count($args) === 0) ? 0.0 : 1.0; + + // Loop through arguments + foreach ($args as $arg) { + // Is it a numeric value? + if (is_numeric($arg)) { + $returnValue *= $arg; + } else { + return ExcelError::throwError($arg); + } + } + + return (float) $returnValue; + } + + /** + * QUOTIENT. + * + * QUOTIENT function returns the integer portion of a division. Numerator is the divided number + * and denominator is the divisor. + * + * Excel Function: + * QUOTIENT(value1,value2) + * + * @param mixed $numerator Expect float|int + * Or can be an array of values + * @param mixed $denominator Expect float|int + * Or can be an array of values + * + * @return array|int|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function quotient($numerator, $denominator) + { + if (is_array($numerator) || is_array($denominator)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $numerator, $denominator); + } + + try { + $numerator = Helpers::validateNumericNullSubstitution($numerator, 0); + $denominator = Helpers::validateNumericNullSubstitution($denominator, 0); + Helpers::validateNotZero($denominator); + } catch (Exception $e) { + return $e->getMessage(); + } + + return (int) ($numerator / $denominator); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Random.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Random.php new file mode 100644 index 0000000..b9fcfc7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Random.php @@ -0,0 +1,99 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Random +{ + use ArrayEnabled; + + /** + * RAND. + * + * @return float Random number + */ + public static function rand() + { + return (mt_rand(0, 10000000)) / 10000000; + } + + /** + * RANDBETWEEN. + * + * @param mixed $min Minimal value + * Or can be an array of values + * @param mixed $max Maximal value + * Or can be an array of values + * + * @return array|float|int|string Random number + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function randBetween($min, $max) + { + if (is_array($min) || is_array($max)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $min, $max); + } + + try { + $min = (int) Helpers::validateNumericNullBool($min); + $max = (int) Helpers::validateNumericNullBool($max); + Helpers::validateNotNegative($max - $min); + } catch (Exception $e) { + return $e->getMessage(); + } + + return mt_rand($min, $max); + } + + /** + * RANDARRAY. + * + * Generates a list of sequential numbers in an array. + * + * Excel Function: + * RANDARRAY([rows],[columns],[start],[step]) + * + * @param mixed $rows the number of rows to return, defaults to 1 + * @param mixed $columns the number of columns to return, defaults to 1 + * @param mixed $min the minimum number to be returned, defaults to 0 + * @param mixed $max the maximum number to be returned, defaults to 1 + * @param bool $wholeNumber the type of numbers to return: + * False - Decimal numbers to 15 decimal places. (default) + * True - Whole (integer) numbers + * + * @return array|string The resulting array, or a string containing an error + */ + public static function randArray($rows = 1, $columns = 1, $min = 0, $max = 1, $wholeNumber = false) + { + try { + $rows = (int) Helpers::validateNumericNullSubstitution($rows, 1); + Helpers::validatePositive($rows); + $columns = (int) Helpers::validateNumericNullSubstitution($columns, 1); + Helpers::validatePositive($columns); + $min = Helpers::validateNumericNullSubstitution($min, 1); + $max = Helpers::validateNumericNullSubstitution($max, 1); + + if ($max <= $min) { + return ExcelError::VALUE(); + } + } catch (Exception $e) { + return $e->getMessage(); + } + + return array_chunk( + array_map( + function () use ($min, $max, $wholeNumber) { + return $wholeNumber + ? mt_rand((int) $min, (int) $max) + : (mt_rand() / mt_getrandmax()) * ($max - $min) + $min; + }, + array_fill(0, $rows * $columns, $min) + ), + max($columns, 1) + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Roman.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Roman.php new file mode 100644 index 0000000..0541548 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Roman.php @@ -0,0 +1,846 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Roman +{ + use ArrayEnabled; + + private const VALUES = [ + 45 => ['VL'], + 46 => ['VLI'], + 47 => ['VLII'], + 48 => ['VLIII'], + 49 => ['VLIV', 'IL'], + 95 => ['VC'], + 96 => ['VCI'], + 97 => ['VCII'], + 98 => ['VCIII'], + 99 => ['VCIV', 'IC'], + 145 => ['CVL'], + 146 => ['CVLI'], + 147 => ['CVLII'], + 148 => ['CVLIII'], + 149 => ['CVLIV', 'CIL'], + 195 => ['CVC'], + 196 => ['CVCI'], + 197 => ['CVCII'], + 198 => ['CVCIII'], + 199 => ['CVCIV', 'CIC'], + 245 => ['CCVL'], + 246 => ['CCVLI'], + 247 => ['CCVLII'], + 248 => ['CCVLIII'], + 249 => ['CCVLIV', 'CCIL'], + 295 => ['CCVC'], + 296 => ['CCVCI'], + 297 => ['CCVCII'], + 298 => ['CCVCIII'], + 299 => ['CCVCIV', 'CCIC'], + 345 => ['CCCVL'], + 346 => ['CCCVLI'], + 347 => ['CCCVLII'], + 348 => ['CCCVLIII'], + 349 => ['CCCVLIV', 'CCCIL'], + 395 => ['CCCVC'], + 396 => ['CCCVCI'], + 397 => ['CCCVCII'], + 398 => ['CCCVCIII'], + 399 => ['CCCVCIV', 'CCCIC'], + 445 => ['CDVL'], + 446 => ['CDVLI'], + 447 => ['CDVLII'], + 448 => ['CDVLIII'], + 449 => ['CDVLIV', 'CDIL'], + 450 => ['LD'], + 451 => ['LDI'], + 452 => ['LDII'], + 453 => ['LDIII'], + 454 => ['LDIV'], + 455 => ['LDV'], + 456 => ['LDVI'], + 457 => ['LDVII'], + 458 => ['LDVIII'], + 459 => ['LDIX'], + 460 => ['LDX'], + 461 => ['LDXI'], + 462 => ['LDXII'], + 463 => ['LDXIII'], + 464 => ['LDXIV'], + 465 => ['LDXV'], + 466 => ['LDXVI'], + 467 => ['LDXVII'], + 468 => ['LDXVIII'], + 469 => ['LDXIX'], + 470 => ['LDXX'], + 471 => ['LDXXI'], + 472 => ['LDXXII'], + 473 => ['LDXXIII'], + 474 => ['LDXXIV'], + 475 => ['LDXXV'], + 476 => ['LDXXVI'], + 477 => ['LDXXVII'], + 478 => ['LDXXVIII'], + 479 => ['LDXXIX'], + 480 => ['LDXXX'], + 481 => ['LDXXXI'], + 482 => ['LDXXXII'], + 483 => ['LDXXXIII'], + 484 => ['LDXXXIV'], + 485 => ['LDXXXV'], + 486 => ['LDXXXVI'], + 487 => ['LDXXXVII'], + 488 => ['LDXXXVIII'], + 489 => ['LDXXXIX'], + 490 => ['LDXL', 'XD'], + 491 => ['LDXLI', 'XDI'], + 492 => ['LDXLII', 'XDII'], + 493 => ['LDXLIII', 'XDIII'], + 494 => ['LDXLIV', 'XDIV'], + 495 => ['LDVL', 'XDV', 'VD'], + 496 => ['LDVLI', 'XDVI', 'VDI'], + 497 => ['LDVLII', 'XDVII', 'VDII'], + 498 => ['LDVLIII', 'XDVIII', 'VDIII'], + 499 => ['LDVLIV', 'XDIX', 'VDIV', 'ID'], + 545 => ['DVL'], + 546 => ['DVLI'], + 547 => ['DVLII'], + 548 => ['DVLIII'], + 549 => ['DVLIV', 'DIL'], + 595 => ['DVC'], + 596 => ['DVCI'], + 597 => ['DVCII'], + 598 => ['DVCIII'], + 599 => ['DVCIV', 'DIC'], + 645 => ['DCVL'], + 646 => ['DCVLI'], + 647 => ['DCVLII'], + 648 => ['DCVLIII'], + 649 => ['DCVLIV', 'DCIL'], + 695 => ['DCVC'], + 696 => ['DCVCI'], + 697 => ['DCVCII'], + 698 => ['DCVCIII'], + 699 => ['DCVCIV', 'DCIC'], + 745 => ['DCCVL'], + 746 => ['DCCVLI'], + 747 => ['DCCVLII'], + 748 => ['DCCVLIII'], + 749 => ['DCCVLIV', 'DCCIL'], + 795 => ['DCCVC'], + 796 => ['DCCVCI'], + 797 => ['DCCVCII'], + 798 => ['DCCVCIII'], + 799 => ['DCCVCIV', 'DCCIC'], + 845 => ['DCCCVL'], + 846 => ['DCCCVLI'], + 847 => ['DCCCVLII'], + 848 => ['DCCCVLIII'], + 849 => ['DCCCVLIV', 'DCCCIL'], + 895 => ['DCCCVC'], + 896 => ['DCCCVCI'], + 897 => ['DCCCVCII'], + 898 => ['DCCCVCIII'], + 899 => ['DCCCVCIV', 'DCCCIC'], + 945 => ['CMVL'], + 946 => ['CMVLI'], + 947 => ['CMVLII'], + 948 => ['CMVLIII'], + 949 => ['CMVLIV', 'CMIL'], + 950 => ['LM'], + 951 => ['LMI'], + 952 => ['LMII'], + 953 => ['LMIII'], + 954 => ['LMIV'], + 955 => ['LMV'], + 956 => ['LMVI'], + 957 => ['LMVII'], + 958 => ['LMVIII'], + 959 => ['LMIX'], + 960 => ['LMX'], + 961 => ['LMXI'], + 962 => ['LMXII'], + 963 => ['LMXIII'], + 964 => ['LMXIV'], + 965 => ['LMXV'], + 966 => ['LMXVI'], + 967 => ['LMXVII'], + 968 => ['LMXVIII'], + 969 => ['LMXIX'], + 970 => ['LMXX'], + 971 => ['LMXXI'], + 972 => ['LMXXII'], + 973 => ['LMXXIII'], + 974 => ['LMXXIV'], + 975 => ['LMXXV'], + 976 => ['LMXXVI'], + 977 => ['LMXXVII'], + 978 => ['LMXXVIII'], + 979 => ['LMXXIX'], + 980 => ['LMXXX'], + 981 => ['LMXXXI'], + 982 => ['LMXXXII'], + 983 => ['LMXXXIII'], + 984 => ['LMXXXIV'], + 985 => ['LMXXXV'], + 986 => ['LMXXXVI'], + 987 => ['LMXXXVII'], + 988 => ['LMXXXVIII'], + 989 => ['LMXXXIX'], + 990 => ['LMXL', 'XM'], + 991 => ['LMXLI', 'XMI'], + 992 => ['LMXLII', 'XMII'], + 993 => ['LMXLIII', 'XMIII'], + 994 => ['LMXLIV', 'XMIV'], + 995 => ['LMVL', 'XMV', 'VM'], + 996 => ['LMVLI', 'XMVI', 'VMI'], + 997 => ['LMVLII', 'XMVII', 'VMII'], + 998 => ['LMVLIII', 'XMVIII', 'VMIII'], + 999 => ['LMVLIV', 'XMIX', 'VMIV', 'IM'], + 1045 => ['MVL'], + 1046 => ['MVLI'], + 1047 => ['MVLII'], + 1048 => ['MVLIII'], + 1049 => ['MVLIV', 'MIL'], + 1095 => ['MVC'], + 1096 => ['MVCI'], + 1097 => ['MVCII'], + 1098 => ['MVCIII'], + 1099 => ['MVCIV', 'MIC'], + 1145 => ['MCVL'], + 1146 => ['MCVLI'], + 1147 => ['MCVLII'], + 1148 => ['MCVLIII'], + 1149 => ['MCVLIV', 'MCIL'], + 1195 => ['MCVC'], + 1196 => ['MCVCI'], + 1197 => ['MCVCII'], + 1198 => ['MCVCIII'], + 1199 => ['MCVCIV', 'MCIC'], + 1245 => ['MCCVL'], + 1246 => ['MCCVLI'], + 1247 => ['MCCVLII'], + 1248 => ['MCCVLIII'], + 1249 => ['MCCVLIV', 'MCCIL'], + 1295 => ['MCCVC'], + 1296 => ['MCCVCI'], + 1297 => ['MCCVCII'], + 1298 => ['MCCVCIII'], + 1299 => ['MCCVCIV', 'MCCIC'], + 1345 => ['MCCCVL'], + 1346 => ['MCCCVLI'], + 1347 => ['MCCCVLII'], + 1348 => ['MCCCVLIII'], + 1349 => ['MCCCVLIV', 'MCCCIL'], + 1395 => ['MCCCVC'], + 1396 => ['MCCCVCI'], + 1397 => ['MCCCVCII'], + 1398 => ['MCCCVCIII'], + 1399 => ['MCCCVCIV', 'MCCCIC'], + 1445 => ['MCDVL'], + 1446 => ['MCDVLI'], + 1447 => ['MCDVLII'], + 1448 => ['MCDVLIII'], + 1449 => ['MCDVLIV', 'MCDIL'], + 1450 => ['MLD'], + 1451 => ['MLDI'], + 1452 => ['MLDII'], + 1453 => ['MLDIII'], + 1454 => ['MLDIV'], + 1455 => ['MLDV'], + 1456 => ['MLDVI'], + 1457 => ['MLDVII'], + 1458 => ['MLDVIII'], + 1459 => ['MLDIX'], + 1460 => ['MLDX'], + 1461 => ['MLDXI'], + 1462 => ['MLDXII'], + 1463 => ['MLDXIII'], + 1464 => ['MLDXIV'], + 1465 => ['MLDXV'], + 1466 => ['MLDXVI'], + 1467 => ['MLDXVII'], + 1468 => ['MLDXVIII'], + 1469 => ['MLDXIX'], + 1470 => ['MLDXX'], + 1471 => ['MLDXXI'], + 1472 => ['MLDXXII'], + 1473 => ['MLDXXIII'], + 1474 => ['MLDXXIV'], + 1475 => ['MLDXXV'], + 1476 => ['MLDXXVI'], + 1477 => ['MLDXXVII'], + 1478 => ['MLDXXVIII'], + 1479 => ['MLDXXIX'], + 1480 => ['MLDXXX'], + 1481 => ['MLDXXXI'], + 1482 => ['MLDXXXII'], + 1483 => ['MLDXXXIII'], + 1484 => ['MLDXXXIV'], + 1485 => ['MLDXXXV'], + 1486 => ['MLDXXXVI'], + 1487 => ['MLDXXXVII'], + 1488 => ['MLDXXXVIII'], + 1489 => ['MLDXXXIX'], + 1490 => ['MLDXL', 'MXD'], + 1491 => ['MLDXLI', 'MXDI'], + 1492 => ['MLDXLII', 'MXDII'], + 1493 => ['MLDXLIII', 'MXDIII'], + 1494 => ['MLDXLIV', 'MXDIV'], + 1495 => ['MLDVL', 'MXDV', 'MVD'], + 1496 => ['MLDVLI', 'MXDVI', 'MVDI'], + 1497 => ['MLDVLII', 'MXDVII', 'MVDII'], + 1498 => ['MLDVLIII', 'MXDVIII', 'MVDIII'], + 1499 => ['MLDVLIV', 'MXDIX', 'MVDIV', 'MID'], + 1545 => ['MDVL'], + 1546 => ['MDVLI'], + 1547 => ['MDVLII'], + 1548 => ['MDVLIII'], + 1549 => ['MDVLIV', 'MDIL'], + 1595 => ['MDVC'], + 1596 => ['MDVCI'], + 1597 => ['MDVCII'], + 1598 => ['MDVCIII'], + 1599 => ['MDVCIV', 'MDIC'], + 1645 => ['MDCVL'], + 1646 => ['MDCVLI'], + 1647 => ['MDCVLII'], + 1648 => ['MDCVLIII'], + 1649 => ['MDCVLIV', 'MDCIL'], + 1695 => ['MDCVC'], + 1696 => ['MDCVCI'], + 1697 => ['MDCVCII'], + 1698 => ['MDCVCIII'], + 1699 => ['MDCVCIV', 'MDCIC'], + 1745 => ['MDCCVL'], + 1746 => ['MDCCVLI'], + 1747 => ['MDCCVLII'], + 1748 => ['MDCCVLIII'], + 1749 => ['MDCCVLIV', 'MDCCIL'], + 1795 => ['MDCCVC'], + 1796 => ['MDCCVCI'], + 1797 => ['MDCCVCII'], + 1798 => ['MDCCVCIII'], + 1799 => ['MDCCVCIV', 'MDCCIC'], + 1845 => ['MDCCCVL'], + 1846 => ['MDCCCVLI'], + 1847 => ['MDCCCVLII'], + 1848 => ['MDCCCVLIII'], + 1849 => ['MDCCCVLIV', 'MDCCCIL'], + 1895 => ['MDCCCVC'], + 1896 => ['MDCCCVCI'], + 1897 => ['MDCCCVCII'], + 1898 => ['MDCCCVCIII'], + 1899 => ['MDCCCVCIV', 'MDCCCIC'], + 1945 => ['MCMVL'], + 1946 => ['MCMVLI'], + 1947 => ['MCMVLII'], + 1948 => ['MCMVLIII'], + 1949 => ['MCMVLIV', 'MCMIL'], + 1950 => ['MLM'], + 1951 => ['MLMI'], + 1952 => ['MLMII'], + 1953 => ['MLMIII'], + 1954 => ['MLMIV'], + 1955 => ['MLMV'], + 1956 => ['MLMVI'], + 1957 => ['MLMVII'], + 1958 => ['MLMVIII'], + 1959 => ['MLMIX'], + 1960 => ['MLMX'], + 1961 => ['MLMXI'], + 1962 => ['MLMXII'], + 1963 => ['MLMXIII'], + 1964 => ['MLMXIV'], + 1965 => ['MLMXV'], + 1966 => ['MLMXVI'], + 1967 => ['MLMXVII'], + 1968 => ['MLMXVIII'], + 1969 => ['MLMXIX'], + 1970 => ['MLMXX'], + 1971 => ['MLMXXI'], + 1972 => ['MLMXXII'], + 1973 => ['MLMXXIII'], + 1974 => ['MLMXXIV'], + 1975 => ['MLMXXV'], + 1976 => ['MLMXXVI'], + 1977 => ['MLMXXVII'], + 1978 => ['MLMXXVIII'], + 1979 => ['MLMXXIX'], + 1980 => ['MLMXXX'], + 1981 => ['MLMXXXI'], + 1982 => ['MLMXXXII'], + 1983 => ['MLMXXXIII'], + 1984 => ['MLMXXXIV'], + 1985 => ['MLMXXXV'], + 1986 => ['MLMXXXVI'], + 1987 => ['MLMXXXVII'], + 1988 => ['MLMXXXVIII'], + 1989 => ['MLMXXXIX'], + 1990 => ['MLMXL', 'MXM'], + 1991 => ['MLMXLI', 'MXMI'], + 1992 => ['MLMXLII', 'MXMII'], + 1993 => ['MLMXLIII', 'MXMIII'], + 1994 => ['MLMXLIV', 'MXMIV'], + 1995 => ['MLMVL', 'MXMV', 'MVM'], + 1996 => ['MLMVLI', 'MXMVI', 'MVMI'], + 1997 => ['MLMVLII', 'MXMVII', 'MVMII'], + 1998 => ['MLMVLIII', 'MXMVIII', 'MVMIII'], + 1999 => ['MLMVLIV', 'MXMIX', 'MVMIV', 'MIM'], + 2045 => ['MMVL'], + 2046 => ['MMVLI'], + 2047 => ['MMVLII'], + 2048 => ['MMVLIII'], + 2049 => ['MMVLIV', 'MMIL'], + 2095 => ['MMVC'], + 2096 => ['MMVCI'], + 2097 => ['MMVCII'], + 2098 => ['MMVCIII'], + 2099 => ['MMVCIV', 'MMIC'], + 2145 => ['MMCVL'], + 2146 => ['MMCVLI'], + 2147 => ['MMCVLII'], + 2148 => ['MMCVLIII'], + 2149 => ['MMCVLIV', 'MMCIL'], + 2195 => ['MMCVC'], + 2196 => ['MMCVCI'], + 2197 => ['MMCVCII'], + 2198 => ['MMCVCIII'], + 2199 => ['MMCVCIV', 'MMCIC'], + 2245 => ['MMCCVL'], + 2246 => ['MMCCVLI'], + 2247 => ['MMCCVLII'], + 2248 => ['MMCCVLIII'], + 2249 => ['MMCCVLIV', 'MMCCIL'], + 2295 => ['MMCCVC'], + 2296 => ['MMCCVCI'], + 2297 => ['MMCCVCII'], + 2298 => ['MMCCVCIII'], + 2299 => ['MMCCVCIV', 'MMCCIC'], + 2345 => ['MMCCCVL'], + 2346 => ['MMCCCVLI'], + 2347 => ['MMCCCVLII'], + 2348 => ['MMCCCVLIII'], + 2349 => ['MMCCCVLIV', 'MMCCCIL'], + 2395 => ['MMCCCVC'], + 2396 => ['MMCCCVCI'], + 2397 => ['MMCCCVCII'], + 2398 => ['MMCCCVCIII'], + 2399 => ['MMCCCVCIV', 'MMCCCIC'], + 2445 => ['MMCDVL'], + 2446 => ['MMCDVLI'], + 2447 => ['MMCDVLII'], + 2448 => ['MMCDVLIII'], + 2449 => ['MMCDVLIV', 'MMCDIL'], + 2450 => ['MMLD'], + 2451 => ['MMLDI'], + 2452 => ['MMLDII'], + 2453 => ['MMLDIII'], + 2454 => ['MMLDIV'], + 2455 => ['MMLDV'], + 2456 => ['MMLDVI'], + 2457 => ['MMLDVII'], + 2458 => ['MMLDVIII'], + 2459 => ['MMLDIX'], + 2460 => ['MMLDX'], + 2461 => ['MMLDXI'], + 2462 => ['MMLDXII'], + 2463 => ['MMLDXIII'], + 2464 => ['MMLDXIV'], + 2465 => ['MMLDXV'], + 2466 => ['MMLDXVI'], + 2467 => ['MMLDXVII'], + 2468 => ['MMLDXVIII'], + 2469 => ['MMLDXIX'], + 2470 => ['MMLDXX'], + 2471 => ['MMLDXXI'], + 2472 => ['MMLDXXII'], + 2473 => ['MMLDXXIII'], + 2474 => ['MMLDXXIV'], + 2475 => ['MMLDXXV'], + 2476 => ['MMLDXXVI'], + 2477 => ['MMLDXXVII'], + 2478 => ['MMLDXXVIII'], + 2479 => ['MMLDXXIX'], + 2480 => ['MMLDXXX'], + 2481 => ['MMLDXXXI'], + 2482 => ['MMLDXXXII'], + 2483 => ['MMLDXXXIII'], + 2484 => ['MMLDXXXIV'], + 2485 => ['MMLDXXXV'], + 2486 => ['MMLDXXXVI'], + 2487 => ['MMLDXXXVII'], + 2488 => ['MMLDXXXVIII'], + 2489 => ['MMLDXXXIX'], + 2490 => ['MMLDXL', 'MMXD'], + 2491 => ['MMLDXLI', 'MMXDI'], + 2492 => ['MMLDXLII', 'MMXDII'], + 2493 => ['MMLDXLIII', 'MMXDIII'], + 2494 => ['MMLDXLIV', 'MMXDIV'], + 2495 => ['MMLDVL', 'MMXDV', 'MMVD'], + 2496 => ['MMLDVLI', 'MMXDVI', 'MMVDI'], + 2497 => ['MMLDVLII', 'MMXDVII', 'MMVDII'], + 2498 => ['MMLDVLIII', 'MMXDVIII', 'MMVDIII'], + 2499 => ['MMLDVLIV', 'MMXDIX', 'MMVDIV', 'MMID'], + 2545 => ['MMDVL'], + 2546 => ['MMDVLI'], + 2547 => ['MMDVLII'], + 2548 => ['MMDVLIII'], + 2549 => ['MMDVLIV', 'MMDIL'], + 2595 => ['MMDVC'], + 2596 => ['MMDVCI'], + 2597 => ['MMDVCII'], + 2598 => ['MMDVCIII'], + 2599 => ['MMDVCIV', 'MMDIC'], + 2645 => ['MMDCVL'], + 2646 => ['MMDCVLI'], + 2647 => ['MMDCVLII'], + 2648 => ['MMDCVLIII'], + 2649 => ['MMDCVLIV', 'MMDCIL'], + 2695 => ['MMDCVC'], + 2696 => ['MMDCVCI'], + 2697 => ['MMDCVCII'], + 2698 => ['MMDCVCIII'], + 2699 => ['MMDCVCIV', 'MMDCIC'], + 2745 => ['MMDCCVL'], + 2746 => ['MMDCCVLI'], + 2747 => ['MMDCCVLII'], + 2748 => ['MMDCCVLIII'], + 2749 => ['MMDCCVLIV', 'MMDCCIL'], + 2795 => ['MMDCCVC'], + 2796 => ['MMDCCVCI'], + 2797 => ['MMDCCVCII'], + 2798 => ['MMDCCVCIII'], + 2799 => ['MMDCCVCIV', 'MMDCCIC'], + 2845 => ['MMDCCCVL'], + 2846 => ['MMDCCCVLI'], + 2847 => ['MMDCCCVLII'], + 2848 => ['MMDCCCVLIII'], + 2849 => ['MMDCCCVLIV', 'MMDCCCIL'], + 2895 => ['MMDCCCVC'], + 2896 => ['MMDCCCVCI'], + 2897 => ['MMDCCCVCII'], + 2898 => ['MMDCCCVCIII'], + 2899 => ['MMDCCCVCIV', 'MMDCCCIC'], + 2945 => ['MMCMVL'], + 2946 => ['MMCMVLI'], + 2947 => ['MMCMVLII'], + 2948 => ['MMCMVLIII'], + 2949 => ['MMCMVLIV', 'MMCMIL'], + 2950 => ['MMLM'], + 2951 => ['MMLMI'], + 2952 => ['MMLMII'], + 2953 => ['MMLMIII'], + 2954 => ['MMLMIV'], + 2955 => ['MMLMV'], + 2956 => ['MMLMVI'], + 2957 => ['MMLMVII'], + 2958 => ['MMLMVIII'], + 2959 => ['MMLMIX'], + 2960 => ['MMLMX'], + 2961 => ['MMLMXI'], + 2962 => ['MMLMXII'], + 2963 => ['MMLMXIII'], + 2964 => ['MMLMXIV'], + 2965 => ['MMLMXV'], + 2966 => ['MMLMXVI'], + 2967 => ['MMLMXVII'], + 2968 => ['MMLMXVIII'], + 2969 => ['MMLMXIX'], + 2970 => ['MMLMXX'], + 2971 => ['MMLMXXI'], + 2972 => ['MMLMXXII'], + 2973 => ['MMLMXXIII'], + 2974 => ['MMLMXXIV'], + 2975 => ['MMLMXXV'], + 2976 => ['MMLMXXVI'], + 2977 => ['MMLMXXVII'], + 2978 => ['MMLMXXVIII'], + 2979 => ['MMLMXXIX'], + 2980 => ['MMLMXXX'], + 2981 => ['MMLMXXXI'], + 2982 => ['MMLMXXXII'], + 2983 => ['MMLMXXXIII'], + 2984 => ['MMLMXXXIV'], + 2985 => ['MMLMXXXV'], + 2986 => ['MMLMXXXVI'], + 2987 => ['MMLMXXXVII'], + 2988 => ['MMLMXXXVIII'], + 2989 => ['MMLMXXXIX'], + 2990 => ['MMLMXL', 'MMXM'], + 2991 => ['MMLMXLI', 'MMXMI'], + 2992 => ['MMLMXLII', 'MMXMII'], + 2993 => ['MMLMXLIII', 'MMXMIII'], + 2994 => ['MMLMXLIV', 'MMXMIV'], + 2995 => ['MMLMVL', 'MMXMV', 'MMVM'], + 2996 => ['MMLMVLI', 'MMXMVI', 'MMVMI'], + 2997 => ['MMLMVLII', 'MMXMVII', 'MMVMII'], + 2998 => ['MMLMVLIII', 'MMXMVIII', 'MMVMIII'], + 2999 => ['MMLMVLIV', 'MMXMIX', 'MMVMIV', 'MMIM'], + 3045 => ['MMMVL'], + 3046 => ['MMMVLI'], + 3047 => ['MMMVLII'], + 3048 => ['MMMVLIII'], + 3049 => ['MMMVLIV', 'MMMIL'], + 3095 => ['MMMVC'], + 3096 => ['MMMVCI'], + 3097 => ['MMMVCII'], + 3098 => ['MMMVCIII'], + 3099 => ['MMMVCIV', 'MMMIC'], + 3145 => ['MMMCVL'], + 3146 => ['MMMCVLI'], + 3147 => ['MMMCVLII'], + 3148 => ['MMMCVLIII'], + 3149 => ['MMMCVLIV', 'MMMCIL'], + 3195 => ['MMMCVC'], + 3196 => ['MMMCVCI'], + 3197 => ['MMMCVCII'], + 3198 => ['MMMCVCIII'], + 3199 => ['MMMCVCIV', 'MMMCIC'], + 3245 => ['MMMCCVL'], + 3246 => ['MMMCCVLI'], + 3247 => ['MMMCCVLII'], + 3248 => ['MMMCCVLIII'], + 3249 => ['MMMCCVLIV', 'MMMCCIL'], + 3295 => ['MMMCCVC'], + 3296 => ['MMMCCVCI'], + 3297 => ['MMMCCVCII'], + 3298 => ['MMMCCVCIII'], + 3299 => ['MMMCCVCIV', 'MMMCCIC'], + 3345 => ['MMMCCCVL'], + 3346 => ['MMMCCCVLI'], + 3347 => ['MMMCCCVLII'], + 3348 => ['MMMCCCVLIII'], + 3349 => ['MMMCCCVLIV', 'MMMCCCIL'], + 3395 => ['MMMCCCVC'], + 3396 => ['MMMCCCVCI'], + 3397 => ['MMMCCCVCII'], + 3398 => ['MMMCCCVCIII'], + 3399 => ['MMMCCCVCIV', 'MMMCCCIC'], + 3445 => ['MMMCDVL'], + 3446 => ['MMMCDVLI'], + 3447 => ['MMMCDVLII'], + 3448 => ['MMMCDVLIII'], + 3449 => ['MMMCDVLIV', 'MMMCDIL'], + 3450 => ['MMMLD'], + 3451 => ['MMMLDI'], + 3452 => ['MMMLDII'], + 3453 => ['MMMLDIII'], + 3454 => ['MMMLDIV'], + 3455 => ['MMMLDV'], + 3456 => ['MMMLDVI'], + 3457 => ['MMMLDVII'], + 3458 => ['MMMLDVIII'], + 3459 => ['MMMLDIX'], + 3460 => ['MMMLDX'], + 3461 => ['MMMLDXI'], + 3462 => ['MMMLDXII'], + 3463 => ['MMMLDXIII'], + 3464 => ['MMMLDXIV'], + 3465 => ['MMMLDXV'], + 3466 => ['MMMLDXVI'], + 3467 => ['MMMLDXVII'], + 3468 => ['MMMLDXVIII'], + 3469 => ['MMMLDXIX'], + 3470 => ['MMMLDXX'], + 3471 => ['MMMLDXXI'], + 3472 => ['MMMLDXXII'], + 3473 => ['MMMLDXXIII'], + 3474 => ['MMMLDXXIV'], + 3475 => ['MMMLDXXV'], + 3476 => ['MMMLDXXVI'], + 3477 => ['MMMLDXXVII'], + 3478 => ['MMMLDXXVIII'], + 3479 => ['MMMLDXXIX'], + 3480 => ['MMMLDXXX'], + 3481 => ['MMMLDXXXI'], + 3482 => ['MMMLDXXXII'], + 3483 => ['MMMLDXXXIII'], + 3484 => ['MMMLDXXXIV'], + 3485 => ['MMMLDXXXV'], + 3486 => ['MMMLDXXXVI'], + 3487 => ['MMMLDXXXVII'], + 3488 => ['MMMLDXXXVIII'], + 3489 => ['MMMLDXXXIX'], + 3490 => ['MMMLDXL', 'MMMXD'], + 3491 => ['MMMLDXLI', 'MMMXDI'], + 3492 => ['MMMLDXLII', 'MMMXDII'], + 3493 => ['MMMLDXLIII', 'MMMXDIII'], + 3494 => ['MMMLDXLIV', 'MMMXDIV'], + 3495 => ['MMMLDVL', 'MMMXDV', 'MMMVD'], + 3496 => ['MMMLDVLI', 'MMMXDVI', 'MMMVDI'], + 3497 => ['MMMLDVLII', 'MMMXDVII', 'MMMVDII'], + 3498 => ['MMMLDVLIII', 'MMMXDVIII', 'MMMVDIII'], + 3499 => ['MMMLDVLIV', 'MMMXDIX', 'MMMVDIV', 'MMMID'], + 3545 => ['MMMDVL'], + 3546 => ['MMMDVLI'], + 3547 => ['MMMDVLII'], + 3548 => ['MMMDVLIII'], + 3549 => ['MMMDVLIV', 'MMMDIL'], + 3595 => ['MMMDVC'], + 3596 => ['MMMDVCI'], + 3597 => ['MMMDVCII'], + 3598 => ['MMMDVCIII'], + 3599 => ['MMMDVCIV', 'MMMDIC'], + 3645 => ['MMMDCVL'], + 3646 => ['MMMDCVLI'], + 3647 => ['MMMDCVLII'], + 3648 => ['MMMDCVLIII'], + 3649 => ['MMMDCVLIV', 'MMMDCIL'], + 3695 => ['MMMDCVC'], + 3696 => ['MMMDCVCI'], + 3697 => ['MMMDCVCII'], + 3698 => ['MMMDCVCIII'], + 3699 => ['MMMDCVCIV', 'MMMDCIC'], + 3745 => ['MMMDCCVL'], + 3746 => ['MMMDCCVLI'], + 3747 => ['MMMDCCVLII'], + 3748 => ['MMMDCCVLIII'], + 3749 => ['MMMDCCVLIV', 'MMMDCCIL'], + 3795 => ['MMMDCCVC'], + 3796 => ['MMMDCCVCI'], + 3797 => ['MMMDCCVCII'], + 3798 => ['MMMDCCVCIII'], + 3799 => ['MMMDCCVCIV', 'MMMDCCIC'], + 3845 => ['MMMDCCCVL'], + 3846 => ['MMMDCCCVLI'], + 3847 => ['MMMDCCCVLII'], + 3848 => ['MMMDCCCVLIII'], + 3849 => ['MMMDCCCVLIV', 'MMMDCCCIL'], + 3895 => ['MMMDCCCVC'], + 3896 => ['MMMDCCCVCI'], + 3897 => ['MMMDCCCVCII'], + 3898 => ['MMMDCCCVCIII'], + 3899 => ['MMMDCCCVCIV', 'MMMDCCCIC'], + 3945 => ['MMMCMVL'], + 3946 => ['MMMCMVLI'], + 3947 => ['MMMCMVLII'], + 3948 => ['MMMCMVLIII'], + 3949 => ['MMMCMVLIV', 'MMMCMIL'], + 3950 => ['MMMLM'], + 3951 => ['MMMLMI'], + 3952 => ['MMMLMII'], + 3953 => ['MMMLMIII'], + 3954 => ['MMMLMIV'], + 3955 => ['MMMLMV'], + 3956 => ['MMMLMVI'], + 3957 => ['MMMLMVII'], + 3958 => ['MMMLMVIII'], + 3959 => ['MMMLMIX'], + 3960 => ['MMMLMX'], + 3961 => ['MMMLMXI'], + 3962 => ['MMMLMXII'], + 3963 => ['MMMLMXIII'], + 3964 => ['MMMLMXIV'], + 3965 => ['MMMLMXV'], + 3966 => ['MMMLMXVI'], + 3967 => ['MMMLMXVII'], + 3968 => ['MMMLMXVIII'], + 3969 => ['MMMLMXIX'], + 3970 => ['MMMLMXX'], + 3971 => ['MMMLMXXI'], + 3972 => ['MMMLMXXII'], + 3973 => ['MMMLMXXIII'], + 3974 => ['MMMLMXXIV'], + 3975 => ['MMMLMXXV'], + 3976 => ['MMMLMXXVI'], + 3977 => ['MMMLMXXVII'], + 3978 => ['MMMLMXXVIII'], + 3979 => ['MMMLMXXIX'], + 3980 => ['MMMLMXXX'], + 3981 => ['MMMLMXXXI'], + 3982 => ['MMMLMXXXII'], + 3983 => ['MMMLMXXXIII'], + 3984 => ['MMMLMXXXIV'], + 3985 => ['MMMLMXXXV'], + 3986 => ['MMMLMXXXVI'], + 3987 => ['MMMLMXXXVII'], + 3988 => ['MMMLMXXXVIII'], + 3989 => ['MMMLMXXXIX'], + 3990 => ['MMMLMXL', 'MMMXM'], + 3991 => ['MMMLMXLI', 'MMMXMI'], + 3992 => ['MMMLMXLII', 'MMMXMII'], + 3993 => ['MMMLMXLIII', 'MMMXMIII'], + 3994 => ['MMMLMXLIV', 'MMMXMIV'], + 3995 => ['MMMLMVL', 'MMMXMV', 'MMMVM'], + 3996 => ['MMMLMVLI', 'MMMXMVI', 'MMMVMI'], + 3997 => ['MMMLMVLII', 'MMMXMVII', 'MMMVMII'], + 3998 => ['MMMLMVLIII', 'MMMXMVIII', 'MMMVMIII'], + 3999 => ['MMMLMVLIV', 'MMMXMIX', 'MMMVMIV', 'MMMIM'], + ]; + + private const THOUSANDS = ['', 'M', 'MM', 'MMM']; + private const HUNDREDS = ['', 'C', 'CC', 'CCC', 'CD', 'D', 'DC', 'DCC', 'DCCC', 'CM']; + private const TENS = ['', 'X', 'XX', 'XXX', 'XL', 'L', 'LX', 'LXX', 'LXXX', 'XC']; + private const ONES = ['', 'I', 'II', 'III', 'IV', 'V', 'VI', 'VII', 'VIII', 'IX']; + const MAX_ROMAN_VALUE = 3999; + const MAX_ROMAN_STYLE = 4; + + private static function valueOk(int $aValue, int $style): string + { + $origValue = $aValue; + $m = \intdiv($aValue, 1000); + $aValue %= 1000; + $c = \intdiv($aValue, 100); + $aValue %= 100; + $t = \intdiv($aValue, 10); + $aValue %= 10; + $result = self::THOUSANDS[$m] . self::HUNDREDS[$c] . self::TENS[$t] . self::ONES[$aValue]; + if ($style > 0) { + if (array_key_exists($origValue, self::VALUES)) { + $arr = self::VALUES[$origValue]; + $idx = min($style, count($arr)) - 1; + $result = $arr[$idx]; + } + } + + return $result; + } + + private static function styleOk(int $aValue, int $style): string + { + return ($aValue < 0 || $aValue > self::MAX_ROMAN_VALUE) ? ExcelError::VALUE() : self::valueOk($aValue, $style); + } + + public static function calculateRoman(int $aValue, int $style): string + { + return ($style < 0 || $style > self::MAX_ROMAN_STYLE) ? ExcelError::VALUE() : self::styleOk($aValue, $style); + } + + /** + * ROMAN. + * + * Converts a number to Roman numeral + * + * @param mixed $aValue Number to convert + * Or can be an array of numbers + * @param mixed $style Number indicating one of five possible forms + * Or can be an array of styles + * + * @return array|string Roman numeral, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function evaluate($aValue, $style = 0) + { + if (is_array($aValue) || is_array($style)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $aValue, $style); + } + + try { + $aValue = Helpers::validateNumericNullBool($aValue); + if (is_bool($style)) { + $style = $style ? 0 : 4; + } + $style = Helpers::validateNumericNullSubstitution($style, null); + } catch (Exception $e) { + return $e->getMessage(); + } + + return self::calculateRoman((int) $aValue, (int) $style); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Round.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Round.php new file mode 100644 index 0000000..776f7eb --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Round.php @@ -0,0 +1,218 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Round +{ + use ArrayEnabled; + + /** + * ROUND. + * + * Returns the result of builtin function round after validating args. + * + * @param mixed $number Should be numeric, or can be an array of numbers + * @param mixed $precision Should be int, or can be an array of numbers + * + * @return array|float|string Rounded number + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function round($number, $precision) + { + if (is_array($number) || is_array($precision)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number, $precision); + } + + try { + $number = Helpers::validateNumericNullBool($number); + $precision = Helpers::validateNumericNullBool($precision); + } catch (Exception $e) { + return $e->getMessage(); + } + + return round($number, (int) $precision); + } + + /** + * ROUNDUP. + * + * Rounds a number up to a specified number of decimal places + * + * @param array|float $number Number to round, or can be an array of numbers + * @param array|int $digits Number of digits to which you want to round $number, or can be an array of numbers + * + * @return array|float|string Rounded Number, or a string containing an error + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function up($number, $digits) + { + if (is_array($number) || is_array($digits)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number, $digits); + } + + try { + $number = Helpers::validateNumericNullBool($number); + $digits = (int) Helpers::validateNumericNullSubstitution($digits, null); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($number == 0.0) { + return 0.0; + } + + if ($number < 0.0) { + return round($number - 0.5 * 0.1 ** $digits, $digits, PHP_ROUND_HALF_DOWN); + } + + return round($number + 0.5 * 0.1 ** $digits, $digits, PHP_ROUND_HALF_DOWN); + } + + /** + * ROUNDDOWN. + * + * Rounds a number down to a specified number of decimal places + * + * @param array|float $number Number to round, or can be an array of numbers + * @param array|int $digits Number of digits to which you want to round $number, or can be an array of numbers + * + * @return array|float|string Rounded Number, or a string containing an error + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function down($number, $digits) + { + if (is_array($number) || is_array($digits)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number, $digits); + } + + try { + $number = Helpers::validateNumericNullBool($number); + $digits = (int) Helpers::validateNumericNullSubstitution($digits, null); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($number == 0.0) { + return 0.0; + } + + if ($number < 0.0) { + return round($number + 0.5 * 0.1 ** $digits, $digits, PHP_ROUND_HALF_UP); + } + + return round($number - 0.5 * 0.1 ** $digits, $digits, PHP_ROUND_HALF_UP); + } + + /** + * MROUND. + * + * Rounds a number to the nearest multiple of a specified value + * + * @param mixed $number Expect float. Number to round, or can be an array of numbers + * @param mixed $multiple Expect int. Multiple to which you want to round, or can be an array of numbers. + * + * @return array|float|string Rounded Number, or a string containing an error + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function multiple($number, $multiple) + { + if (is_array($number) || is_array($multiple)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $number, $multiple); + } + + try { + $number = Helpers::validateNumericNullSubstitution($number, 0); + $multiple = Helpers::validateNumericNullSubstitution($multiple, null); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($number == 0 || $multiple == 0) { + return 0; + } + if ((Helpers::returnSign($number)) == (Helpers::returnSign($multiple))) { + $multiplier = 1 / $multiple; + + return round($number * $multiplier) / $multiplier; + } + + return ExcelError::NAN(); + } + + /** + * EVEN. + * + * Returns number rounded up to the nearest even integer. + * You can use this function for processing items that come in twos. For example, + * a packing crate accepts rows of one or two items. The crate is full when + * the number of items, rounded up to the nearest two, matches the crate's + * capacity. + * + * Excel Function: + * EVEN(number) + * + * @param array|float $number Number to round, or can be an array of numbers + * + * @return array|float|string Rounded Number, or a string containing an error + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function even($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return Helpers::getEven($number); + } + + /** + * ODD. + * + * Returns number rounded up to the nearest odd integer. + * + * @param array|float $number Number to round, or can be an array of numbers + * + * @return array|float|string Rounded Number, or a string containing an error + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function odd($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + $significance = Helpers::returnSign($number); + if ($significance == 0) { + return 1; + } + + $result = ceil($number / $significance) * $significance; + if ($result == Helpers::getEven($result)) { + $result += $significance; + } + + return $result; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/SeriesSum.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/SeriesSum.php new file mode 100644 index 0000000..ecce359 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/SeriesSum.php @@ -0,0 +1,53 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; + +class SeriesSum +{ + use ArrayEnabled; + + /** + * SERIESSUM. + * + * Returns the sum of a power series + * + * @param mixed $x Input value + * @param mixed $n Initial power + * @param mixed $m Step + * @param mixed[] $args An array of coefficients for the Data Series + * + * @return array|float|string The result, or a string containing an error + */ + public static function evaluate($x, $n, $m, ...$args) + { + if (is_array($x) || is_array($n) || is_array($m)) { + return self::evaluateArrayArgumentsSubset([self::class, __FUNCTION__], 3, $x, $n, $m, ...$args); + } + + try { + $x = Helpers::validateNumericNullSubstitution($x, 0); + $n = Helpers::validateNumericNullSubstitution($n, 0); + $m = Helpers::validateNumericNullSubstitution($m, 0); + + // Loop through arguments + $aArgs = Functions::flattenArray($args); + $returnValue = 0; + $i = 0; + foreach ($aArgs as $argx) { + if ($argx !== null) { + $arg = Helpers::validateNumericNullSubstitution($argx, 0); + $returnValue += $arg * $x ** ($n + ($m * $i)); + ++$i; + } + } + } catch (Exception $e) { + return $e->getMessage(); + } + + return $returnValue; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Sign.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Sign.php new file mode 100644 index 0000000..e40e1f6 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Sign.php @@ -0,0 +1,38 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; + +class Sign +{ + use ArrayEnabled; + + /** + * SIGN. + * + * Determines the sign of a number. Returns 1 if the number is positive, zero (0) + * if the number is 0, and -1 if the number is negative. + * + * @param array|float $number Number to round, or can be an array of numbers + * + * @return array|int|string sign value, or a string containing an error + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function evaluate($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return Helpers::returnSign($number); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Sqrt.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Sqrt.php new file mode 100644 index 0000000..bb9f15f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Sqrt.php @@ -0,0 +1,64 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; + +class Sqrt +{ + use ArrayEnabled; + + /** + * SQRT. + * + * Returns the result of builtin function sqrt after validating args. + * + * @param mixed $number Should be numeric, or can be an array of numbers + * + * @return array|float|string square root + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function sqrt($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return Helpers::numberOrNan(sqrt($number)); + } + + /** + * SQRTPI. + * + * Returns the square root of (number * pi). + * + * @param array|float $number Number, or can be an array of numbers + * + * @return array|float|string Square Root of Number * Pi, or a string containing an error + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function pi($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullSubstitution($number, 0); + Helpers::validateNotNegative($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return sqrt($number * M_PI); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Subtotal.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Subtotal.php new file mode 100644 index 0000000..6d8f472 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Subtotal.php @@ -0,0 +1,135 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +class Subtotal +{ + /** + * @param mixed $cellReference + * @param mixed $args + */ + protected static function filterHiddenArgs($cellReference, $args): array + { + return array_filter( + $args, + function ($index) use ($cellReference) { + $explodeArray = explode('.', $index); + $row = $explodeArray[1] ?? ''; + if (!is_numeric($row)) { + return true; + } + + return $cellReference->getWorksheet()->getRowDimension($row)->getVisible(); + }, + ARRAY_FILTER_USE_KEY + ); + } + + /** + * @param mixed $cellReference + * @param mixed $args + */ + protected static function filterFormulaArgs($cellReference, $args): array + { + return array_filter( + $args, + function ($index) use ($cellReference) { + $explodeArray = explode('.', $index); + $row = $explodeArray[1] ?? ''; + $column = $explodeArray[2] ?? ''; + $retVal = true; + if ($cellReference->getWorksheet()->cellExists($column . $row)) { + //take this cell out if it contains the SUBTOTAL or AGGREGATE functions in a formula + $isFormula = $cellReference->getWorksheet()->getCell($column . $row)->isFormula(); + $cellFormula = !preg_match( + '/^=.*\b(SUBTOTAL|AGGREGATE)\s*\(/i', + $cellReference->getWorksheet()->getCell($column . $row)->getValue() ?? '' + ); + + $retVal = !$isFormula || $cellFormula; + } + + return $retVal; + }, + ARRAY_FILTER_USE_KEY + ); + } + + private const CALL_FUNCTIONS = [ + 1 => [Statistical\Averages::class, 'average'], // 1 and 101 + [Statistical\Counts::class, 'COUNT'], // 2 and 102 + [Statistical\Counts::class, 'COUNTA'], // 3 and 103 + [Statistical\Maximum::class, 'max'], // 4 and 104 + [Statistical\Minimum::class, 'min'], // 5 and 105 + [Operations::class, 'product'], // 6 and 106 + [Statistical\StandardDeviations::class, 'STDEV'], // 7 and 107 + [Statistical\StandardDeviations::class, 'STDEVP'], // 8 and 108 + [Sum::class, 'sumIgnoringStrings'], // 9 and 109 + [Statistical\Variances::class, 'VAR'], // 10 and 110 + [Statistical\Variances::class, 'VARP'], // 111 and 111 + ]; + + /** + * SUBTOTAL. + * + * Returns a subtotal in a list or database. + * + * @param mixed $functionType + * A number 1 to 11 that specifies which function to + * use in calculating subtotals within a range + * list + * Numbers 101 to 111 shadow the functions of 1 to 11 + * but ignore any values in the range that are + * in hidden rows + * @param mixed[] $args A mixed data series of values + * + * @return float|string + */ + public static function evaluate($functionType, ...$args) + { + $cellReference = array_pop($args); + $bArgs = Functions::flattenArrayIndexed($args); + $aArgs = []; + // int keys must come before string keys for PHP 8.0+ + // Otherwise, PHP thinks positional args follow keyword + // in the subsequent call to call_user_func_array. + // Fortunately, order of args is unimportant to Subtotal. + foreach ($bArgs as $key => $value) { + if (is_int($key)) { + $aArgs[$key] = $value; + } + } + foreach ($bArgs as $key => $value) { + if (!is_int($key)) { + $aArgs[$key] = $value; + } + } + + try { + $subtotal = (int) Helpers::validateNumericNullBool($functionType); + } catch (Exception $e) { + return $e->getMessage(); + } + + // Calculate + if ($subtotal > 100) { + $aArgs = self::filterHiddenArgs($cellReference, $aArgs); + $subtotal -= 100; + } + + $aArgs = self::filterFormulaArgs($cellReference, $aArgs); + if (array_key_exists($subtotal, self::CALL_FUNCTIONS)) { + /** @var callable */ + $call = self::CALL_FUNCTIONS[$subtotal]; + + return call_user_func_array($call, $aArgs); + } + + return ExcelError::VALUE(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Sum.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Sum.php new file mode 100644 index 0000000..1a797c8 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Sum.php @@ -0,0 +1,118 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ErrorValue; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Calculation\Information\Value; + +class Sum +{ + /** + * SUM, ignoring non-numeric non-error strings. This is eventually used by SUMIF. + * + * SUM computes the sum of all the values and cells referenced in the argument list. + * + * Excel Function: + * SUM(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function sumIgnoringStrings(...$args) + { + $returnValue = 0; + + // Loop through the arguments + foreach (Functions::flattenArray($args) as $arg) { + // Is it a numeric value? + if (is_numeric($arg)) { + $returnValue += $arg; + } elseif (ErrorValue::isError($arg)) { + return $arg; + } + } + + return $returnValue; + } + + /** + * SUM, returning error for non-numeric strings. This is used by Excel SUM function. + * + * SUM computes the sum of all the values and cells referenced in the argument list. + * + * Excel Function: + * SUM(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function sumErroringStrings(...$args) + { + $returnValue = 0; + // Loop through the arguments + $aArgs = Functions::flattenArrayIndexed($args); + foreach ($aArgs as $k => $arg) { + // Is it a numeric value? + if (is_numeric($arg) || empty($arg)) { + if (is_string($arg)) { + $arg = (int) $arg; + } + $returnValue += $arg; + } elseif (is_bool($arg)) { + $returnValue += (int) $arg; + } elseif (ErrorValue::isError($arg)) { + return $arg; + // ignore non-numerics from cell, but fail as literals (except null) + } elseif ($arg !== null && !Functions::isCellValue($k)) { + return ExcelError::VALUE(); + } + } + + return $returnValue; + } + + /** + * SUMPRODUCT. + * + * Excel Function: + * SUMPRODUCT(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string The result, or a string containing an error + */ + public static function product(...$args) + { + $arrayList = $args; + + $wrkArray = Functions::flattenArray(array_shift($arrayList)); + $wrkCellCount = count($wrkArray); + + for ($i = 0; $i < $wrkCellCount; ++$i) { + if ((!is_numeric($wrkArray[$i])) || (is_string($wrkArray[$i]))) { + $wrkArray[$i] = 0; + } + } + + foreach ($arrayList as $matrixData) { + $array2 = Functions::flattenArray($matrixData); + $count = count($array2); + if ($wrkCellCount != $count) { + return ExcelError::VALUE(); + } + + foreach ($array2 as $i => $val) { + if ((!is_numeric($val)) || (is_string($val))) { + $val = 0; + } + $wrkArray[$i] *= $val; + } + } + + return array_sum($wrkArray); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/SumSquares.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/SumSquares.php new file mode 100644 index 0000000..34b397c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/SumSquares.php @@ -0,0 +1,143 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class SumSquares +{ + /** + * SUMSQ. + * + * SUMSQ returns the sum of the squares of the arguments + * + * Excel Function: + * SUMSQ(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function sumSquare(...$args) + { + try { + $returnValue = 0; + + // Loop through arguments + foreach (Functions::flattenArray($args) as $arg) { + $arg1 = Helpers::validateNumericNullSubstitution($arg, 0); + $returnValue += ($arg1 * $arg1); + } + } catch (Exception $e) { + return $e->getMessage(); + } + + return $returnValue; + } + + private static function getCount(array $array1, array $array2): int + { + $count = count($array1); + if ($count !== count($array2)) { + throw new Exception(ExcelError::NA()); + } + + return $count; + } + + /** + * These functions accept only numeric arguments, not even strings which are numeric. + * + * @param mixed $item + */ + private static function numericNotString($item): bool + { + return is_numeric($item) && !is_string($item); + } + + /** + * SUMX2MY2. + * + * @param mixed[] $matrixData1 Matrix #1 + * @param mixed[] $matrixData2 Matrix #2 + * + * @return float|string + */ + public static function sumXSquaredMinusYSquared($matrixData1, $matrixData2) + { + try { + $array1 = Functions::flattenArray($matrixData1); + $array2 = Functions::flattenArray($matrixData2); + $count = self::getCount($array1, $array2); + + $result = 0; + for ($i = 0; $i < $count; ++$i) { + if (self::numericNotString($array1[$i]) && self::numericNotString($array2[$i])) { + $result += ($array1[$i] * $array1[$i]) - ($array2[$i] * $array2[$i]); + } + } + } catch (Exception $e) { + return $e->getMessage(); + } + + return $result; + } + + /** + * SUMX2PY2. + * + * @param mixed[] $matrixData1 Matrix #1 + * @param mixed[] $matrixData2 Matrix #2 + * + * @return float|string + */ + public static function sumXSquaredPlusYSquared($matrixData1, $matrixData2) + { + try { + $array1 = Functions::flattenArray($matrixData1); + $array2 = Functions::flattenArray($matrixData2); + $count = self::getCount($array1, $array2); + + $result = 0; + for ($i = 0; $i < $count; ++$i) { + if (self::numericNotString($array1[$i]) && self::numericNotString($array2[$i])) { + $result += ($array1[$i] * $array1[$i]) + ($array2[$i] * $array2[$i]); + } + } + } catch (Exception $e) { + return $e->getMessage(); + } + + return $result; + } + + /** + * SUMXMY2. + * + * @param mixed[] $matrixData1 Matrix #1 + * @param mixed[] $matrixData2 Matrix #2 + * + * @return float|string + */ + public static function sumXMinusYSquared($matrixData1, $matrixData2) + { + try { + $array1 = Functions::flattenArray($matrixData1); + $array2 = Functions::flattenArray($matrixData2); + $count = self::getCount($array1, $array2); + + $result = 0; + for ($i = 0; $i < $count; ++$i) { + if (self::numericNotString($array1[$i]) && self::numericNotString($array2[$i])) { + $result += ($array1[$i] - $array2[$i]) * ($array1[$i] - $array2[$i]); + } + } + } catch (Exception $e) { + return $e->getMessage(); + } + + return $result; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Cosecant.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Cosecant.php new file mode 100644 index 0000000..845b6c1 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Cosecant.php @@ -0,0 +1,64 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig\Trig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\MathTrig\Helpers; + +class Cosecant +{ + use ArrayEnabled; + + /** + * CSC. + * + * Returns the cosecant of an angle. + * + * @param array|float $angle Number, or can be an array of numbers + * + * @return array|float|string The cosecant of the angle + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function csc($angle) + { + if (is_array($angle)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $angle); + } + + try { + $angle = Helpers::validateNumericNullBool($angle); + } catch (Exception $e) { + return $e->getMessage(); + } + + return Helpers::verySmallDenominator(1.0, sin($angle)); + } + + /** + * CSCH. + * + * Returns the hyperbolic cosecant of an angle. + * + * @param array|float $angle Number, or can be an array of numbers + * + * @return array|float|string The hyperbolic cosecant of the angle + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function csch($angle) + { + if (is_array($angle)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $angle); + } + + try { + $angle = Helpers::validateNumericNullBool($angle); + } catch (Exception $e) { + return $e->getMessage(); + } + + return Helpers::verySmallDenominator(1.0, sinh($angle)); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Cosine.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Cosine.php new file mode 100644 index 0000000..c06f04d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Cosine.php @@ -0,0 +1,116 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig\Trig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\MathTrig\Helpers; + +class Cosine +{ + use ArrayEnabled; + + /** + * COS. + * + * Returns the result of builtin function cos after validating args. + * + * @param mixed $number Should be numeric, or can be an array of numbers + * + * @return array|float|string cosine + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function cos($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return cos($number); + } + + /** + * COSH. + * + * Returns the result of builtin function cosh after validating args. + * + * @param mixed $number Should be numeric, or can be an array of numbers + * + * @return array|float|string hyperbolic cosine + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function cosh($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return cosh($number); + } + + /** + * ACOS. + * + * Returns the arccosine of a number. + * + * @param array|float $number Number, or can be an array of numbers + * + * @return array|float|string The arccosine of the number + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function acos($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return Helpers::numberOrNan(acos($number)); + } + + /** + * ACOSH. + * + * Returns the arc inverse hyperbolic cosine of a number. + * + * @param array|float $number Number, or can be an array of numbers + * + * @return array|float|string The inverse hyperbolic cosine of the number, or an error string + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function acosh($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return Helpers::numberOrNan(acosh($number)); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Cotangent.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Cotangent.php new file mode 100644 index 0000000..eeedef9 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Cotangent.php @@ -0,0 +1,118 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig\Trig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\MathTrig\Helpers; + +class Cotangent +{ + use ArrayEnabled; + + /** + * COT. + * + * Returns the cotangent of an angle. + * + * @param array|float $angle Number, or can be an array of numbers + * + * @return array|float|string The cotangent of the angle + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function cot($angle) + { + if (is_array($angle)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $angle); + } + + try { + $angle = Helpers::validateNumericNullBool($angle); + } catch (Exception $e) { + return $e->getMessage(); + } + + return Helpers::verySmallDenominator(cos($angle), sin($angle)); + } + + /** + * COTH. + * + * Returns the hyperbolic cotangent of an angle. + * + * @param array|float $angle Number, or can be an array of numbers + * + * @return array|float|string The hyperbolic cotangent of the angle + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function coth($angle) + { + if (is_array($angle)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $angle); + } + + try { + $angle = Helpers::validateNumericNullBool($angle); + } catch (Exception $e) { + return $e->getMessage(); + } + + return Helpers::verySmallDenominator(1.0, tanh($angle)); + } + + /** + * ACOT. + * + * Returns the arccotangent of a number. + * + * @param array|float $number Number, or can be an array of numbers + * + * @return array|float|string The arccotangent of the number + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function acot($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return (M_PI / 2) - atan($number); + } + + /** + * ACOTH. + * + * Returns the hyperbolic arccotangent of a number. + * + * @param array|float $number Number, or can be an array of numbers + * + * @return array|float|string The hyperbolic arccotangent of the number + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function acoth($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + $result = ($number === 1) ? NAN : (log(($number + 1) / ($number - 1)) / 2); + + return Helpers::numberOrNan($result); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Secant.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Secant.php new file mode 100644 index 0000000..2d26e5d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Secant.php @@ -0,0 +1,64 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig\Trig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\MathTrig\Helpers; + +class Secant +{ + use ArrayEnabled; + + /** + * SEC. + * + * Returns the secant of an angle. + * + * @param array|float $angle Number, or can be an array of numbers + * + * @return array|float|string The secant of the angle + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function sec($angle) + { + if (is_array($angle)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $angle); + } + + try { + $angle = Helpers::validateNumericNullBool($angle); + } catch (Exception $e) { + return $e->getMessage(); + } + + return Helpers::verySmallDenominator(1.0, cos($angle)); + } + + /** + * SECH. + * + * Returns the hyperbolic secant of an angle. + * + * @param array|float $angle Number, or can be an array of numbers + * + * @return array|float|string The hyperbolic secant of the angle + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function sech($angle) + { + if (is_array($angle)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $angle); + } + + try { + $angle = Helpers::validateNumericNullBool($angle); + } catch (Exception $e) { + return $e->getMessage(); + } + + return Helpers::verySmallDenominator(1.0, cosh($angle)); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Sine.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Sine.php new file mode 100644 index 0000000..6af568c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Sine.php @@ -0,0 +1,116 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig\Trig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\MathTrig\Helpers; + +class Sine +{ + use ArrayEnabled; + + /** + * SIN. + * + * Returns the result of builtin function sin after validating args. + * + * @param mixed $angle Should be numeric, or can be an array of numbers + * + * @return array|float|string sine + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function sin($angle) + { + if (is_array($angle)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $angle); + } + + try { + $angle = Helpers::validateNumericNullBool($angle); + } catch (Exception $e) { + return $e->getMessage(); + } + + return sin($angle); + } + + /** + * SINH. + * + * Returns the result of builtin function sinh after validating args. + * + * @param mixed $angle Should be numeric, or can be an array of numbers + * + * @return array|float|string hyperbolic sine + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function sinh($angle) + { + if (is_array($angle)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $angle); + } + + try { + $angle = Helpers::validateNumericNullBool($angle); + } catch (Exception $e) { + return $e->getMessage(); + } + + return sinh($angle); + } + + /** + * ASIN. + * + * Returns the arcsine of a number. + * + * @param array|float $number Number, or can be an array of numbers + * + * @return array|float|string The arcsine of the number + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function asin($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return Helpers::numberOrNan(asin($number)); + } + + /** + * ASINH. + * + * Returns the inverse hyperbolic sine of a number. + * + * @param array|float $number Number, or can be an array of numbers + * + * @return array|float|string The inverse hyperbolic sine of the number + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function asinh($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return Helpers::numberOrNan(asinh($number)); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Tangent.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Tangent.php new file mode 100644 index 0000000..9e77021 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Tangent.php @@ -0,0 +1,161 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig\Trig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Calculation\MathTrig\Helpers; + +class Tangent +{ + use ArrayEnabled; + + /** + * TAN. + * + * Returns the result of builtin function tan after validating args. + * + * @param mixed $angle Should be numeric, or can be an array of numbers + * + * @return array|float|string tangent + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function tan($angle) + { + if (is_array($angle)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $angle); + } + + try { + $angle = Helpers::validateNumericNullBool($angle); + } catch (Exception $e) { + return $e->getMessage(); + } + + return Helpers::verySmallDenominator(sin($angle), cos($angle)); + } + + /** + * TANH. + * + * Returns the result of builtin function sinh after validating args. + * + * @param mixed $angle Should be numeric, or can be an array of numbers + * + * @return array|float|string hyperbolic tangent + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function tanh($angle) + { + if (is_array($angle)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $angle); + } + + try { + $angle = Helpers::validateNumericNullBool($angle); + } catch (Exception $e) { + return $e->getMessage(); + } + + return tanh($angle); + } + + /** + * ATAN. + * + * Returns the arctangent of a number. + * + * @param array|float $number Number, or can be an array of numbers + * + * @return array|float|string The arctangent of the number + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function atan($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return Helpers::numberOrNan(atan($number)); + } + + /** + * ATANH. + * + * Returns the inverse hyperbolic tangent of a number. + * + * @param array|float $number Number, or can be an array of numbers + * + * @return array|float|string The inverse hyperbolic tangent of the number + * If an array of numbers is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function atanh($number) + { + if (is_array($number)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); + } + + try { + $number = Helpers::validateNumericNullBool($number); + } catch (Exception $e) { + return $e->getMessage(); + } + + return Helpers::numberOrNan(atanh($number)); + } + + /** + * ATAN2. + * + * This function calculates the arc tangent of the two variables x and y. It is similar to + * calculating the arc tangent of y ÷ x, except that the signs of both arguments are used + * to determine the quadrant of the result. + * The arctangent is the angle from the x-axis to a line containing the origin (0, 0) and a + * point with coordinates (xCoordinate, yCoordinate). The angle is given in radians between + * -pi and pi, excluding -pi. + * + * Note that the Excel ATAN2() function accepts its arguments in the reverse order to the standard + * PHP atan2() function, so we need to reverse them here before calling the PHP atan() function. + * + * Excel Function: + * ATAN2(xCoordinate,yCoordinate) + * + * @param mixed $xCoordinate should be float, the x-coordinate of the point, or can be an array of numbers + * @param mixed $yCoordinate should be float, the y-coordinate of the point, or can be an array of numbers + * + * @return array|float|string + * The inverse tangent of the specified x- and y-coordinates, or a string containing an error + * If an array of numbers is passed as one of the arguments, then the returned result will also be an array + * with the same dimensions + */ + public static function atan2($xCoordinate, $yCoordinate) + { + if (is_array($xCoordinate) || is_array($yCoordinate)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $xCoordinate, $yCoordinate); + } + + try { + $xCoordinate = Helpers::validateNumericNullBool($xCoordinate); + $yCoordinate = Helpers::validateNumericNullBool($yCoordinate); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($xCoordinate == 0) && ($yCoordinate == 0)) { + return ExcelError::DIV0(); + } + + return atan2($yCoordinate, $xCoordinate); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trunc.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trunc.php new file mode 100644 index 0000000..943e209 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trunc.php @@ -0,0 +1,50 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; + +class Trunc +{ + use ArrayEnabled; + + /** + * TRUNC. + * + * Truncates value to the number of fractional digits by number_digits. + * + * @param array|float $value + * Or can be an array of values + * @param array|int $digits + * Or can be an array of values + * + * @return array|float|string Truncated value, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function evaluate($value = 0, $digits = 0) + { + if (is_array($value) || is_array($digits)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $digits); + } + + try { + $value = Helpers::validateNumericNullBool($value); + $digits = Helpers::validateNumericNullSubstitution($digits, null); + } catch (Exception $e) { + return $e->getMessage(); + } + + $digits = floor($digits); + + // Truncate + $adjust = 10 ** $digits; + + if (($digits > 0) && (rtrim((string) (int) ((abs($value) - abs((int) $value)) * $adjust), '0') < $adjust / 10)) { + return $value; + } + + return ((int) ($value * $adjust)) / $adjust; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical.php new file mode 100644 index 0000000..497c929 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical.php @@ -0,0 +1,1820 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Averages; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Conditional; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Confidence; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Counts; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Maximum; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Minimum; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Permutations; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\StandardDeviations; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Trends; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Variances; + +/** + * @deprecated 1.18.0 + */ +class Statistical +{ + const LOG_GAMMA_X_MAX_VALUE = 2.55e305; + const EPS = 2.22e-16; + const MAX_VALUE = 1.2e308; + const SQRT2PI = 2.5066282746310005024157652848110452530069867406099; + + /** + * AVEDEV. + * + * Returns the average of the absolute deviations of data points from their mean. + * AVEDEV is a measure of the variability in a data set. + * + * Excel Function: + * AVEDEV(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @see Statistical\Averages::averageDeviations() + * Use the averageDeviations() method in the Statistical\Averages class instead + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function AVEDEV(...$args) + { + return Averages::averageDeviations(...$args); + } + + /** + * AVERAGE. + * + * Returns the average (arithmetic mean) of the arguments + * + * Excel Function: + * AVERAGE(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @see Statistical\Averages::average() + * Use the average() method in the Statistical\Averages class instead + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function AVERAGE(...$args) + { + return Averages::average(...$args); + } + + /** + * AVERAGEA. + * + * Returns the average of its arguments, including numbers, text, and logical values + * + * Excel Function: + * AVERAGEA(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @see Statistical\Averages::averageA() + * Use the averageA() method in the Statistical\Averages class instead + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function AVERAGEA(...$args) + { + return Averages::averageA(...$args); + } + + /** + * AVERAGEIF. + * + * Returns the average value from a range of cells that contain numbers within the list of arguments + * + * Excel Function: + * AVERAGEIF(value1[,value2[, ...]],condition) + * + * @Deprecated 1.17.0 + * + * @see Statistical\Conditional::AVERAGEIF() + * Use the AVERAGEIF() method in the Statistical\Conditional class instead + * + * @param mixed $range Data values + * @param string $condition the criteria that defines which cells will be checked + * @param mixed[] $averageRange Data values + * + * @return null|float|string + */ + public static function AVERAGEIF($range, $condition, $averageRange = []) + { + return Conditional::AVERAGEIF($range, $condition, $averageRange); + } + + /** + * BETADIST. + * + * Returns the beta distribution. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\Beta::distribution() + * Use the distribution() method in the Statistical\Distributions\Beta class instead + * + * @param float $value Value at which you want to evaluate the distribution + * @param float $alpha Parameter to the distribution + * @param float $beta Parameter to the distribution + * @param mixed $rMin + * @param mixed $rMax + * + * @return array|float|string + */ + public static function BETADIST($value, $alpha, $beta, $rMin = 0, $rMax = 1) + { + return Statistical\Distributions\Beta::distribution($value, $alpha, $beta, $rMin, $rMax); + } + + /** + * BETAINV. + * + * Returns the inverse of the Beta distribution. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\Beta::inverse() + * Use the inverse() method in the Statistical\Distributions\Beta class instead + * + * @param float $probability Probability at which you want to evaluate the distribution + * @param float $alpha Parameter to the distribution + * @param float $beta Parameter to the distribution + * @param float $rMin Minimum value + * @param float $rMax Maximum value + * + * @return array|float|string + */ + public static function BETAINV($probability, $alpha, $beta, $rMin = 0, $rMax = 1) + { + return Statistical\Distributions\Beta::inverse($probability, $alpha, $beta, $rMin, $rMax); + } + + /** + * BINOMDIST. + * + * Returns the individual term binomial distribution probability. Use BINOMDIST in problems with + * a fixed number of tests or trials, when the outcomes of any trial are only success or failure, + * when trials are independent, and when the probability of success is constant throughout the + * experiment. For example, BINOMDIST can calculate the probability that two of the next three + * babies born are male. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\Binomial::distribution() + * Use the distribution() method in the Statistical\Distributions\Binomial class instead + * + * @param mixed $value Number of successes in trials + * @param mixed $trials Number of trials + * @param mixed $probability Probability of success on each trial + * @param mixed $cumulative + * + * @return array|float|string + */ + public static function BINOMDIST($value, $trials, $probability, $cumulative) + { + return Statistical\Distributions\Binomial::distribution($value, $trials, $probability, $cumulative); + } + + /** + * CHIDIST. + * + * Returns the one-tailed probability of the chi-squared distribution. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\ChiSquared::distributionRightTail() + * Use the distributionRightTail() method in the Statistical\Distributions\ChiSquared class instead + * + * @param float $value Value for the function + * @param float $degrees degrees of freedom + * + * @return array|float|string + */ + public static function CHIDIST($value, $degrees) + { + return Statistical\Distributions\ChiSquared::distributionRightTail($value, $degrees); + } + + /** + * CHIINV. + * + * Returns the one-tailed probability of the chi-squared distribution. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\ChiSquared::inverseRightTail() + * Use the inverseRightTail() method in the Statistical\Distributions\ChiSquared class instead + * + * @param float $probability Probability for the function + * @param float $degrees degrees of freedom + * + * @return array|float|string + */ + public static function CHIINV($probability, $degrees) + { + return Statistical\Distributions\ChiSquared::inverseRightTail($probability, $degrees); + } + + /** + * CONFIDENCE. + * + * Returns the confidence interval for a population mean + * + * @Deprecated 1.18.0 + * + * @see Statistical\Confidence::CONFIDENCE() + * Use the CONFIDENCE() method in the Statistical\Confidence class instead + * + * @param float $alpha + * @param float $stdDev Standard Deviation + * @param float $size + * + * @return array|float|string + */ + public static function CONFIDENCE($alpha, $stdDev, $size) + { + return Confidence::CONFIDENCE($alpha, $stdDev, $size); + } + + /** + * CORREL. + * + * Returns covariance, the average of the products of deviations for each data point pair. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Trends::CORREL() + * Use the CORREL() method in the Statistical\Trends class instead + * + * @param mixed $yValues array of mixed Data Series Y + * @param null|mixed $xValues array of mixed Data Series X + * + * @return float|string + */ + public static function CORREL($yValues, $xValues = null) + { + return Trends::CORREL($xValues, $yValues); + } + + /** + * COUNT. + * + * Counts the number of cells that contain numbers within the list of arguments + * + * Excel Function: + * COUNT(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @see Statistical\Counts::COUNT() + * Use the COUNT() method in the Statistical\Counts class instead + * + * @param mixed ...$args Data values + * + * @return int + */ + public static function COUNT(...$args) + { + return Counts::COUNT(...$args); + } + + /** + * COUNTA. + * + * Counts the number of cells that are not empty within the list of arguments + * + * Excel Function: + * COUNTA(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @see Statistical\Counts::COUNTA() + * Use the COUNTA() method in the Statistical\Counts class instead + * + * @param mixed ...$args Data values + * + * @return int + */ + public static function COUNTA(...$args) + { + return Counts::COUNTA(...$args); + } + + /** + * COUNTBLANK. + * + * Counts the number of empty cells within the list of arguments + * + * Excel Function: + * COUNTBLANK(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @see Statistical\Counts::COUNTBLANK() + * Use the COUNTBLANK() method in the Statistical\Counts class instead + * + * @param mixed ...$args Data values + * + * @return int + */ + public static function COUNTBLANK(...$args) + { + return Counts::COUNTBLANK(...$args); + } + + /** + * COUNTIF. + * + * Counts the number of cells that contain numbers within the list of arguments + * + * Excel Function: + * COUNTIF(range,condition) + * + * @Deprecated 1.17.0 + * + * @see Statistical\Conditional::COUNTIF() + * Use the COUNTIF() method in the Statistical\Conditional class instead + * + * @param mixed $range Data values + * @param string $condition the criteria that defines which cells will be counted + * + * @return int + */ + public static function COUNTIF($range, $condition) + { + return Conditional::COUNTIF($range, $condition); + } + + /** + * COUNTIFS. + * + * Counts the number of cells that contain numbers within the list of arguments + * + * Excel Function: + * COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2]…) + * + * @Deprecated 1.17.0 + * + * @see Statistical\Conditional::COUNTIFS() + * Use the COUNTIFS() method in the Statistical\Conditional class instead + * + * @param mixed $args Pairs of Ranges and Criteria + * + * @return int + */ + public static function COUNTIFS(...$args) + { + return Conditional::COUNTIFS(...$args); + } + + /** + * COVAR. + * + * Returns covariance, the average of the products of deviations for each data point pair. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Trends::COVAR() + * Use the COVAR() method in the Statistical\Trends class instead + * + * @param mixed $yValues array of mixed Data Series Y + * @param mixed $xValues array of mixed Data Series X + * + * @return float|string + */ + public static function COVAR($yValues, $xValues) + { + return Trends::COVAR($yValues, $xValues); + } + + /** + * CRITBINOM. + * + * Returns the smallest value for which the cumulative binomial distribution is greater + * than or equal to a criterion value + * + * See https://support.microsoft.com/en-us/help/828117/ for details of the algorithm used + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\Binomial::inverse() + * Use the inverse() method in the Statistical\Distributions\Binomial class instead + * + * @param float $trials number of Bernoulli trials + * @param float $probability probability of a success on each trial + * @param float $alpha criterion value + * + * @return array|int|string + */ + public static function CRITBINOM($trials, $probability, $alpha) + { + return Statistical\Distributions\Binomial::inverse($trials, $probability, $alpha); + } + + /** + * DEVSQ. + * + * Returns the sum of squares of deviations of data points from their sample mean. + * + * Excel Function: + * DEVSQ(value1[,value2[, ...]]) + * + * @Deprecated 1.18.0 + * + * @see Statistical\Deviations::sumSquares() + * Use the sumSquares() method in the Statistical\Deviations class instead + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function DEVSQ(...$args) + { + return Statistical\Deviations::sumSquares(...$args); + } + + /** + * EXPONDIST. + * + * Returns the exponential distribution. Use EXPONDIST to model the time between events, + * such as how long an automated bank teller takes to deliver cash. For example, you can + * use EXPONDIST to determine the probability that the process takes at most 1 minute. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\Exponential::distribution() + * Use the distribution() method in the Statistical\Distributions\Exponential class instead + * + * @param float $value Value of the function + * @param float $lambda The parameter value + * @param bool $cumulative + * + * @return array|float|string + */ + public static function EXPONDIST($value, $lambda, $cumulative) + { + return Statistical\Distributions\Exponential::distribution($value, $lambda, $cumulative); + } + + /** + * F.DIST. + * + * Returns the F probability distribution. + * You can use this function to determine whether two data sets have different degrees of diversity. + * For example, you can examine the test scores of men and women entering high school, and determine + * if the variability in the females is different from that found in the males. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\F::distribution() + * Use the distribution() method in the Statistical\Distributions\Exponential class instead + * + * @param float $value Value of the function + * @param int $u The numerator degrees of freedom + * @param int $v The denominator degrees of freedom + * @param bool $cumulative If cumulative is TRUE, F.DIST returns the cumulative distribution function; + * if FALSE, it returns the probability density function. + * + * @return array|float|string + */ + public static function FDIST2($value, $u, $v, $cumulative) + { + return Statistical\Distributions\F::distribution($value, $u, $v, $cumulative); + } + + /** + * FISHER. + * + * Returns the Fisher transformation at x. This transformation produces a function that + * is normally distributed rather than skewed. Use this function to perform hypothesis + * testing on the correlation coefficient. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\Fisher::distribution() + * Use the distribution() method in the Statistical\Distributions\Fisher class instead + * + * @param float $value + * + * @return array|float|string + */ + public static function FISHER($value) + { + return Statistical\Distributions\Fisher::distribution($value); + } + + /** + * FISHERINV. + * + * Returns the inverse of the Fisher transformation. Use this transformation when + * analyzing correlations between ranges or arrays of data. If y = FISHER(x), then + * FISHERINV(y) = x. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\Fisher::inverse() + * Use the inverse() method in the Statistical\Distributions\Fisher class instead + * + * @param float $value + * + * @return array|float|string + */ + public static function FISHERINV($value) + { + return Statistical\Distributions\Fisher::inverse($value); + } + + /** + * FORECAST. + * + * Calculates, or predicts, a future value by using existing values. The predicted value is a y-value for a given x-value. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Trends::FORECAST() + * Use the FORECAST() method in the Statistical\Trends class instead + * + * @param float $xValue Value of X for which we want to find Y + * @param mixed $yValues array of mixed Data Series Y + * @param mixed $xValues of mixed Data Series X + * + * @return array|bool|float|string + */ + public static function FORECAST($xValue, $yValues, $xValues) + { + return Trends::FORECAST($xValue, $yValues, $xValues); + } + + /** + * GAMMA. + * + * Returns the gamma function value. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\Gamma::gamma() + * Use the gamma() method in the Statistical\Distributions\Gamma class instead + * + * @param float $value + * + * @return array|float|string The result, or a string containing an error + */ + public static function GAMMAFunction($value) + { + return Statistical\Distributions\Gamma::gamma($value); + } + + /** + * GAMMADIST. + * + * Returns the gamma distribution. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\Gamma::distribution() + * Use the distribution() method in the Statistical\Distributions\Gamma class instead + * + * @param float $value Value at which you want to evaluate the distribution + * @param float $a Parameter to the distribution + * @param float $b Parameter to the distribution + * @param bool $cumulative + * + * @return array|float|string + */ + public static function GAMMADIST($value, $a, $b, $cumulative) + { + return Statistical\Distributions\Gamma::distribution($value, $a, $b, $cumulative); + } + + /** + * GAMMAINV. + * + * Returns the inverse of the Gamma distribution. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\Gamma::inverse() + * Use the inverse() method in the Statistical\Distributions\Gamma class instead + * + * @param float $probability Probability at which you want to evaluate the distribution + * @param float $alpha Parameter to the distribution + * @param float $beta Parameter to the distribution + * + * @return array|float|string + */ + public static function GAMMAINV($probability, $alpha, $beta) + { + return Statistical\Distributions\Gamma::inverse($probability, $alpha, $beta); + } + + /** + * GAMMALN. + * + * Returns the natural logarithm of the gamma function. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\Gamma::ln() + * Use the ln() method in the Statistical\Distributions\Gamma class instead + * + * @param float $value + * + * @return array|float|string + */ + public static function GAMMALN($value) + { + return Statistical\Distributions\Gamma::ln($value); + } + + /** + * GAUSS. + * + * Calculates the probability that a member of a standard normal population will fall between + * the mean and z standard deviations from the mean. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\StandardNormal::gauss() + * Use the gauss() method in the Statistical\Distributions\StandardNormal class instead + * + * @param float $value + * + * @return array|float|string The result, or a string containing an error + */ + public static function GAUSS($value) + { + return Statistical\Distributions\StandardNormal::gauss($value); + } + + /** + * GEOMEAN. + * + * Returns the geometric mean of an array or range of positive data. For example, you + * can use GEOMEAN to calculate average growth rate given compound interest with + * variable rates. + * + * Excel Function: + * GEOMEAN(value1[,value2[, ...]]) + * + * @Deprecated 1.18.0 + * + * @see Statistical\Averages\Mean::geometric() + * Use the geometric() method in the Statistical\Averages\Mean class instead + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function GEOMEAN(...$args) + { + return Statistical\Averages\Mean::geometric(...$args); + } + + /** + * GROWTH. + * + * Returns values along a predicted exponential Trend + * + * @Deprecated 1.18.0 + * + * @see Statistical\Trends::GROWTH() + * Use the GROWTH() method in the Statistical\Trends class instead + * + * @param mixed[] $yValues Data Series Y + * @param mixed[] $xValues Data Series X + * @param mixed[] $newValues Values of X for which we want to find Y + * @param bool $const a logical value specifying whether to force the intersect to equal 0 + * + * @return float[] + */ + public static function GROWTH($yValues, $xValues = [], $newValues = [], $const = true) + { + return Trends::GROWTH($yValues, $xValues, $newValues, $const); + } + + /** + * HARMEAN. + * + * Returns the harmonic mean of a data set. The harmonic mean is the reciprocal of the + * arithmetic mean of reciprocals. + * + * Excel Function: + * HARMEAN(value1[,value2[, ...]]) + * + * @Deprecated 1.18.0 + * + * @see Statistical\Averages\Mean::harmonic() + * Use the harmonic() method in the Statistical\Averages\Mean class instead + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function HARMEAN(...$args) + { + return Statistical\Averages\Mean::harmonic(...$args); + } + + /** + * HYPGEOMDIST. + * + * Returns the hypergeometric distribution. HYPGEOMDIST returns the probability of a given number of + * sample successes, given the sample size, population successes, and population size. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\HyperGeometric::distribution() + * Use the distribution() method in the Statistical\Distributions\HyperGeometric class instead + * + * @param mixed $sampleSuccesses Number of successes in the sample + * @param mixed $sampleNumber Size of the sample + * @param mixed $populationSuccesses Number of successes in the population + * @param mixed $populationNumber Population size + * + * @return array|float|string + */ + public static function HYPGEOMDIST($sampleSuccesses, $sampleNumber, $populationSuccesses, $populationNumber) + { + return Statistical\Distributions\HyperGeometric::distribution( + $sampleSuccesses, + $sampleNumber, + $populationSuccesses, + $populationNumber + ); + } + + /** + * INTERCEPT. + * + * Calculates the point at which a line will intersect the y-axis by using existing x-values and y-values. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Trends::INTERCEPT() + * Use the INTERCEPT() method in the Statistical\Trends class instead + * + * @param mixed[] $yValues Data Series Y + * @param mixed[] $xValues Data Series X + * + * @return float|string + */ + public static function INTERCEPT($yValues, $xValues) + { + return Trends::INTERCEPT($yValues, $xValues); + } + + /** + * KURT. + * + * Returns the kurtosis of a data set. Kurtosis characterizes the relative peakedness + * or flatness of a distribution compared with the normal distribution. Positive + * kurtosis indicates a relatively peaked distribution. Negative kurtosis indicates a + * relatively flat distribution. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Deviations::kurtosis() + * Use the kurtosis() method in the Statistical\Deviations class instead + * + * @param array ...$args Data Series + * + * @return float|string + */ + public static function KURT(...$args) + { + return Statistical\Deviations::kurtosis(...$args); + } + + /** + * LARGE. + * + * Returns the nth largest value in a data set. You can use this function to + * select a value based on its relative standing. + * + * Excel Function: + * LARGE(value1[,value2[, ...]],entry) + * + * @Deprecated 1.18.0 + * + * @see Statistical\Size::large() + * Use the large() method in the Statistical\Size class instead + * + * @param mixed $args Data values + * + * @return float|string The result, or a string containing an error + */ + public static function LARGE(...$args) + { + return Statistical\Size::large(...$args); + } + + /** + * LINEST. + * + * Calculates the statistics for a line by using the "least squares" method to calculate a straight line that best fits your data, + * and then returns an array that describes the line. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Trends::LINEST() + * Use the LINEST() method in the Statistical\Trends class instead + * + * @param mixed[] $yValues Data Series Y + * @param null|mixed[] $xValues Data Series X + * @param bool $const a logical value specifying whether to force the intersect to equal 0 + * @param bool $stats a logical value specifying whether to return additional regression statistics + * + * @return array|int|string The result, or a string containing an error + */ + public static function LINEST($yValues, $xValues = null, $const = true, $stats = false) + { + return Trends::LINEST($yValues, $xValues, $const, $stats); + } + + /** + * LOGEST. + * + * Calculates an exponential curve that best fits the X and Y data series, + * and then returns an array that describes the line. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Trends::LOGEST() + * Use the LOGEST() method in the Statistical\Trends class instead + * + * @param mixed[] $yValues Data Series Y + * @param null|mixed[] $xValues Data Series X + * @param bool $const a logical value specifying whether to force the intersect to equal 0 + * @param bool $stats a logical value specifying whether to return additional regression statistics + * + * @return array|int|string The result, or a string containing an error + */ + public static function LOGEST($yValues, $xValues = null, $const = true, $stats = false) + { + return Trends::LOGEST($yValues, $xValues, $const, $stats); + } + + /** + * LOGINV. + * + * Returns the inverse of the normal cumulative distribution + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\LogNormal::inverse() + * Use the inverse() method in the Statistical\Distributions\LogNormal class instead + * + * @param float $probability + * @param float $mean + * @param float $stdDev + * + * @return array|float|string The result, or a string containing an error + * + * @TODO Try implementing P J Acklam's refinement algorithm for greater + * accuracy if I can get my head round the mathematics + * (as described at) http://home.online.no/~pjacklam/notes/invnorm/ + */ + public static function LOGINV($probability, $mean, $stdDev) + { + return Statistical\Distributions\LogNormal::inverse($probability, $mean, $stdDev); + } + + /** + * LOGNORMDIST. + * + * Returns the cumulative lognormal distribution of x, where ln(x) is normally distributed + * with parameters mean and standard_dev. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\LogNormal::cumulative() + * Use the cumulative() method in the Statistical\Distributions\LogNormal class instead + * + * @param float $value + * @param float $mean + * @param float $stdDev + * + * @return array|float|string The result, or a string containing an error + */ + public static function LOGNORMDIST($value, $mean, $stdDev) + { + return Statistical\Distributions\LogNormal::cumulative($value, $mean, $stdDev); + } + + /** + * LOGNORM.DIST. + * + * Returns the lognormal distribution of x, where ln(x) is normally distributed + * with parameters mean and standard_dev. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\LogNormal::distribution() + * Use the distribution() method in the Statistical\Distributions\LogNormal class instead + * + * @param float $value + * @param float $mean + * @param float $stdDev + * @param bool $cumulative + * + * @return array|float|string The result, or a string containing an error + */ + public static function LOGNORMDIST2($value, $mean, $stdDev, $cumulative = false) + { + return Statistical\Distributions\LogNormal::distribution($value, $mean, $stdDev, $cumulative); + } + + /** + * MAX. + * + * MAX returns the value of the element of the values passed that has the highest value, + * with negative numbers considered smaller than positive numbers. + * + * Excel Function: + * max(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @param mixed ...$args Data values + * + * @return float + * + *@see Statistical\Maximum::max() + * Use the MAX() method in the Statistical\Maximum class instead + */ + public static function MAX(...$args) + { + return Maximum::max(...$args); + } + + /** + * MAXA. + * + * Returns the greatest value in a list of arguments, including numbers, text, and logical values + * + * Excel Function: + * maxA(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @param mixed ...$args Data values + * + * @return float + * + *@see Statistical\Maximum::maxA() + * Use the MAXA() method in the Statistical\Maximum class instead + */ + public static function MAXA(...$args) + { + return Maximum::maxA(...$args); + } + + /** + * MAXIFS. + * + * Counts the maximum value within a range of cells that contain numbers within the list of arguments + * + * Excel Function: + * MAXIFS(max_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...) + * + * @Deprecated 1.17.0 + * + * @see Statistical\Conditional::MAXIFS() + * Use the MAXIFS() method in the Statistical\Conditional class instead + * + * @param mixed $args Data range and criterias + * + * @return float + */ + public static function MAXIFS(...$args) + { + return Conditional::MAXIFS(...$args); + } + + /** + * MEDIAN. + * + * Returns the median of the given numbers. The median is the number in the middle of a set of numbers. + * + * Excel Function: + * MEDIAN(value1[,value2[, ...]]) + * + * @Deprecated 1.18.0 + * + * @see Statistical\Averages::median() + * Use the median() method in the Statistical\Averages class instead + * + * @param mixed ...$args Data values + * + * @return float|string The result, or a string containing an error + */ + public static function MEDIAN(...$args) + { + return Statistical\Averages::median(...$args); + } + + /** + * MIN. + * + * MIN returns the value of the element of the values passed that has the smallest value, + * with negative numbers considered smaller than positive numbers. + * + * Excel Function: + * MIN(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @param mixed ...$args Data values + * + * @return float + * + *@see Statistical\Minimum::min() + * Use the min() method in the Statistical\Minimum class instead + */ + public static function MIN(...$args) + { + return Minimum::min(...$args); + } + + /** + * MINA. + * + * Returns the smallest value in a list of arguments, including numbers, text, and logical values + * + * Excel Function: + * MINA(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @param mixed ...$args Data values + * + * @return float + * + *@see Statistical\Minimum::minA() + * Use the minA() method in the Statistical\Minimum class instead + */ + public static function MINA(...$args) + { + return Minimum::minA(...$args); + } + + /** + * MINIFS. + * + * Returns the minimum value within a range of cells that contain numbers within the list of arguments + * + * Excel Function: + * MINIFS(min_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...) + * + * @Deprecated 1.17.0 + * + * @see Statistical\Conditional::MINIFS() + * Use the MINIFS() method in the Statistical\Conditional class instead + * + * @param mixed $args Data range and criterias + * + * @return float + */ + public static function MINIFS(...$args) + { + return Conditional::MINIFS(...$args); + } + + /** + * MODE. + * + * Returns the most frequently occurring, or repetitive, value in an array or range of data + * + * Excel Function: + * MODE(value1[,value2[, ...]]) + * + * @Deprecated 1.18.0 + * + * @see Statistical\Averages::mode() + * Use the mode() method in the Statistical\Averages class instead + * + * @param mixed ...$args Data values + * + * @return float|string The result, or a string containing an error + */ + public static function MODE(...$args) + { + return Statistical\Averages::mode(...$args); + } + + /** + * NEGBINOMDIST. + * + * Returns the negative binomial distribution. NEGBINOMDIST returns the probability that + * there will be number_f failures before the number_s-th success, when the constant + * probability of a success is probability_s. This function is similar to the binomial + * distribution, except that the number of successes is fixed, and the number of trials is + * variable. Like the binomial, trials are assumed to be independent. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\Binomial::negative() + * Use the negative() method in the Statistical\Distributions\Binomial class instead + * + * @param mixed $failures Number of Failures + * @param mixed $successes Threshold number of Successes + * @param mixed $probability Probability of success on each trial + * + * @return array|float|string The result, or a string containing an error + */ + public static function NEGBINOMDIST($failures, $successes, $probability) + { + return Statistical\Distributions\Binomial::negative($failures, $successes, $probability); + } + + /** + * NORMDIST. + * + * Returns the normal distribution for the specified mean and standard deviation. This + * function has a very wide range of applications in statistics, including hypothesis + * testing. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\Normal::distribution() + * Use the distribution() method in the Statistical\Distributions\Normal class instead + * + * @param mixed $value + * @param mixed $mean Mean Value + * @param mixed $stdDev Standard Deviation + * @param mixed $cumulative + * + * @return array|float|string The result, or a string containing an error + */ + public static function NORMDIST($value, $mean, $stdDev, $cumulative) + { + return Statistical\Distributions\Normal::distribution($value, $mean, $stdDev, $cumulative); + } + + /** + * NORMINV. + * + * Returns the inverse of the normal cumulative distribution for the specified mean and standard deviation. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\Normal::inverse() + * Use the inverse() method in the Statistical\Distributions\Normal class instead + * + * @param mixed $probability + * @param mixed $mean Mean Value + * @param mixed $stdDev Standard Deviation + * + * @return array|float|string The result, or a string containing an error + */ + public static function NORMINV($probability, $mean, $stdDev) + { + return Statistical\Distributions\Normal::inverse($probability, $mean, $stdDev); + } + + /** + * NORMSDIST. + * + * Returns the standard normal cumulative distribution function. The distribution has + * a mean of 0 (zero) and a standard deviation of one. Use this function in place of a + * table of standard normal curve areas. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\StandardNormal::cumulative() + * Use the cumulative() method in the Statistical\Distributions\StandardNormal class instead + * + * @param mixed $value + * + * @return array|float|string The result, or a string containing an error + */ + public static function NORMSDIST($value) + { + return Statistical\Distributions\StandardNormal::cumulative($value); + } + + /** + * NORM.S.DIST. + * + * Returns the standard normal cumulative distribution function. The distribution has + * a mean of 0 (zero) and a standard deviation of one. Use this function in place of a + * table of standard normal curve areas. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\StandardNormal::distribution() + * Use the distribution() method in the Statistical\Distributions\StandardNormal class instead + * + * @param mixed $value + * @param mixed $cumulative + * + * @return array|float|string The result, or a string containing an error + */ + public static function NORMSDIST2($value, $cumulative) + { + return Statistical\Distributions\StandardNormal::distribution($value, $cumulative); + } + + /** + * NORMSINV. + * + * Returns the inverse of the standard normal cumulative distribution + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\StandardNormal::inverse() + * Use the inverse() method in the Statistical\Distributions\StandardNormal class instead + * + * @param mixed $value + * + * @return array|float|string The result, or a string containing an error + */ + public static function NORMSINV($value) + { + return Statistical\Distributions\StandardNormal::inverse($value); + } + + /** + * PERCENTILE. + * + * Returns the nth percentile of values in a range.. + * + * Excel Function: + * PERCENTILE(value1[,value2[, ...]],entry) + * + * @Deprecated 1.18.0 + * + * @see Statistical\Percentiles::PERCENTILE() + * Use the PERCENTILE() method in the Statistical\Percentiles class instead + * + * @param mixed $args Data values + * + * @return float|string The result, or a string containing an error + */ + public static function PERCENTILE(...$args) + { + return Statistical\Percentiles::PERCENTILE(...$args); + } + + /** + * PERCENTRANK. + * + * Returns the rank of a value in a data set as a percentage of the data set. + * Note that the returned rank is simply rounded to the appropriate significant digits, + * rather than floored (as MS Excel), so value 3 for a value set of 1, 2, 3, 4 will return + * 0.667 rather than 0.666 + * + * @Deprecated 1.18.0 + * + * @see Statistical\Percentiles::PERCENTRANK() + * Use the PERCENTRANK() method in the Statistical\Percentiles class instead + * + * @param mixed $valueSet An array of, or a reference to, a list of numbers + * @param mixed $value the number whose rank you want to find + * @param mixed $significance the number of significant digits for the returned percentage value + * + * @return float|string (string if result is an error) + */ + public static function PERCENTRANK($valueSet, $value, $significance = 3) + { + return Statistical\Percentiles::PERCENTRANK($valueSet, $value, $significance); + } + + /** + * PERMUT. + * + * Returns the number of permutations for a given number of objects that can be + * selected from number objects. A permutation is any set or subset of objects or + * events where internal order is significant. Permutations are different from + * combinations, for which the internal order is not significant. Use this function + * for lottery-style probability calculations. + * + * @Deprecated 1.17.0 + * + * @see Statistical\Permutations::PERMUT() + * Use the PERMUT() method in the Statistical\Permutations class instead + * + * @param int $numObjs Number of different objects + * @param int $numInSet Number of objects in each permutation + * + * @return array|float|int|string Number of permutations, or a string containing an error + */ + public static function PERMUT($numObjs, $numInSet) + { + return Permutations::PERMUT($numObjs, $numInSet); + } + + /** + * POISSON. + * + * Returns the Poisson distribution. A common application of the Poisson distribution + * is predicting the number of events over a specific time, such as the number of + * cars arriving at a toll plaza in 1 minute. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\Poisson::distribution() + * Use the distribution() method in the Statistical\Distributions\Poisson class instead + * + * @param mixed $value + * @param mixed $mean Mean Value + * @param mixed $cumulative + * + * @return array|float|string The result, or a string containing an error + */ + public static function POISSON($value, $mean, $cumulative) + { + return Statistical\Distributions\Poisson::distribution($value, $mean, $cumulative); + } + + /** + * QUARTILE. + * + * Returns the quartile of a data set. + * + * Excel Function: + * QUARTILE(value1[,value2[, ...]],entry) + * + * @Deprecated 1.18.0 + * + * @see Statistical\Percentiles::QUARTILE() + * Use the QUARTILE() method in the Statistical\Percentiles class instead + * + * @param mixed $args Data values + * + * @return float|string The result, or a string containing an error + */ + public static function QUARTILE(...$args) + { + return Statistical\Percentiles::QUARTILE(...$args); + } + + /** + * RANK. + * + * Returns the rank of a number in a list of numbers. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Percentiles::RANK() + * Use the RANK() method in the Statistical\Percentiles class instead + * + * @param mixed $value the number whose rank you want to find + * @param mixed $valueSet An array of, or a reference to, a list of numbers + * @param mixed $order Order to sort the values in the value set + * + * @return float|string The result, or a string containing an error + */ + public static function RANK($value, $valueSet, $order = 0) + { + return Statistical\Percentiles::RANK($value, $valueSet, $order); + } + + /** + * RSQ. + * + * Returns the square of the Pearson product moment correlation coefficient through data points in known_y's and known_x's. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Trends::RSQ() + * Use the RSQ() method in the Statistical\Trends class instead + * + * @param mixed[] $yValues Data Series Y + * @param mixed[] $xValues Data Series X + * + * @return float|string The result, or a string containing an error + */ + public static function RSQ($yValues, $xValues) + { + return Trends::RSQ($yValues, $xValues); + } + + /** + * SKEW. + * + * Returns the skewness of a distribution. Skewness characterizes the degree of asymmetry + * of a distribution around its mean. Positive skewness indicates a distribution with an + * asymmetric tail extending toward more positive values. Negative skewness indicates a + * distribution with an asymmetric tail extending toward more negative values. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Deviations::skew() + * Use the skew() method in the Statistical\Deviations class instead + * + * @param array ...$args Data Series + * + * @return float|string The result, or a string containing an error + */ + public static function SKEW(...$args) + { + return Statistical\Deviations::skew(...$args); + } + + /** + * SLOPE. + * + * Returns the slope of the linear regression line through data points in known_y's and known_x's. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Trends::SLOPE() + * Use the SLOPE() method in the Statistical\Trends class instead + * + * @param mixed[] $yValues Data Series Y + * @param mixed[] $xValues Data Series X + * + * @return float|string The result, or a string containing an error + */ + public static function SLOPE($yValues, $xValues) + { + return Trends::SLOPE($yValues, $xValues); + } + + /** + * SMALL. + * + * Returns the nth smallest value in a data set. You can use this function to + * select a value based on its relative standing. + * + * Excel Function: + * SMALL(value1[,value2[, ...]],entry) + * + * @Deprecated 1.18.0 + * + * @see Statistical\Size::small() + * Use the small() method in the Statistical\Size class instead + * + * @param mixed $args Data values + * + * @return float|string The result, or a string containing an error + */ + public static function SMALL(...$args) + { + return Statistical\Size::small(...$args); + } + + /** + * STANDARDIZE. + * + * Returns a normalized value from a distribution characterized by mean and standard_dev. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Standardize::execute() + * Use the execute() method in the Statistical\Standardize class instead + * + * @param float $value Value to normalize + * @param float $mean Mean Value + * @param float $stdDev Standard Deviation + * + * @return array|float|string Standardized value, or a string containing an error + */ + public static function STANDARDIZE($value, $mean, $stdDev) + { + return Statistical\Standardize::execute($value, $mean, $stdDev); + } + + /** + * STDEV. + * + * Estimates standard deviation based on a sample. The standard deviation is a measure of how + * widely values are dispersed from the average value (the mean). + * + * Excel Function: + * STDEV(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @see Statistical\StandardDeviations::STDEV() + * Use the STDEV() method in the Statistical\StandardDeviations class instead + * + * @param mixed ...$args Data values + * + * @return float|string The result, or a string containing an error + */ + public static function STDEV(...$args) + { + return StandardDeviations::STDEV(...$args); + } + + /** + * STDEVA. + * + * Estimates standard deviation based on a sample, including numbers, text, and logical values + * + * Excel Function: + * STDEVA(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @see Statistical\StandardDeviations::STDEVA() + * Use the STDEVA() method in the Statistical\StandardDeviations class instead + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function STDEVA(...$args) + { + return StandardDeviations::STDEVA(...$args); + } + + /** + * STDEVP. + * + * Calculates standard deviation based on the entire population + * + * Excel Function: + * STDEVP(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @see Statistical\StandardDeviations::STDEVP() + * Use the STDEVP() method in the Statistical\StandardDeviations class instead + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function STDEVP(...$args) + { + return StandardDeviations::STDEVP(...$args); + } + + /** + * STDEVPA. + * + * Calculates standard deviation based on the entire population, including numbers, text, and logical values + * + * Excel Function: + * STDEVPA(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @see Statistical\StandardDeviations::STDEVPA() + * Use the STDEVPA() method in the Statistical\StandardDeviations class instead + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function STDEVPA(...$args) + { + return StandardDeviations::STDEVPA(...$args); + } + + /** + * STEYX. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Trends::STEYX() + * Use the STEYX() method in the Statistical\Trends class instead + * + * Returns the standard error of the predicted y-value for each x in the regression. + * + * @param mixed[] $yValues Data Series Y + * @param mixed[] $xValues Data Series X + * + * @return float|string + */ + public static function STEYX($yValues, $xValues) + { + return Trends::STEYX($yValues, $xValues); + } + + /** + * TDIST. + * + * Returns the probability of Student's T distribution. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\StudentT::distribution() + * Use the distribution() method in the Statistical\Distributions\StudentT class instead + * + * @param float $value Value for the function + * @param float $degrees degrees of freedom + * @param float $tails number of tails (1 or 2) + * + * @return array|float|string The result, or a string containing an error + */ + public static function TDIST($value, $degrees, $tails) + { + return Statistical\Distributions\StudentT::distribution($value, $degrees, $tails); + } + + /** + * TINV. + * + * Returns the one-tailed probability of the Student-T distribution. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\StudentT::inverse() + * Use the inverse() method in the Statistical\Distributions\StudentT class instead + * + * @param float $probability Probability for the function + * @param float $degrees degrees of freedom + * + * @return array|float|string The result, or a string containing an error + */ + public static function TINV($probability, $degrees) + { + return Statistical\Distributions\StudentT::inverse($probability, $degrees); + } + + /** + * TREND. + * + * Returns values along a linear Trend + * + * @Deprecated 1.18.0 + * + * @see Statistical\Trends::TREND() + * Use the TREND() method in the Statistical\Trends class instead + * + * @param mixed[] $yValues Data Series Y + * @param mixed[] $xValues Data Series X + * @param mixed[] $newValues Values of X for which we want to find Y + * @param bool $const a logical value specifying whether to force the intersect to equal 0 + * + * @return float[] + */ + public static function TREND($yValues, $xValues = [], $newValues = [], $const = true) + { + return Trends::TREND($yValues, $xValues, $newValues, $const); + } + + /** + * TRIMMEAN. + * + * Returns the mean of the interior of a data set. TRIMMEAN calculates the mean + * taken by excluding a percentage of data points from the top and bottom tails + * of a data set. + * + * Excel Function: + * TRIMEAN(value1[,value2[, ...]], $discard) + * + * @Deprecated 1.18.0 + * + *@see Statistical\Averages\Mean::trim() + * Use the trim() method in the Statistical\Averages\Mean class instead + * + * @param mixed $args Data values + * + * @return float|string + */ + public static function TRIMMEAN(...$args) + { + return Statistical\Averages\Mean::trim(...$args); + } + + /** + * VARFunc. + * + * Estimates variance based on a sample. + * + * Excel Function: + * VAR(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + *@see Statistical\Variances::VAR() + * Use the VAR() method in the Statistical\Variances class instead + * + * @param mixed ...$args Data values + * + * @return float|string (string if result is an error) + */ + public static function VARFunc(...$args) + { + return Variances::VAR(...$args); + } + + /** + * VARA. + * + * Estimates variance based on a sample, including numbers, text, and logical values + * + * Excel Function: + * VARA(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @see Statistical\Variances::VARA() + * Use the VARA() method in the Statistical\Variances class instead + * + * @param mixed ...$args Data values + * + * @return float|string (string if result is an error) + */ + public static function VARA(...$args) + { + return Variances::VARA(...$args); + } + + /** + * VARP. + * + * Calculates variance based on the entire population + * + * Excel Function: + * VARP(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @see Statistical\Variances::VARP() + * Use the VARP() method in the Statistical\Variances class instead + * + * @param mixed ...$args Data values + * + * @return float|string (string if result is an error) + */ + public static function VARP(...$args) + { + return Variances::VARP(...$args); + } + + /** + * VARPA. + * + * Calculates variance based on the entire population, including numbers, text, and logical values + * + * Excel Function: + * VARPA(value1[,value2[, ...]]) + * + * @Deprecated 1.17.0 + * + * @see Statistical\Variances::VARPA() + * Use the VARPA() method in the Statistical\Variances class instead + * + * @param mixed ...$args Data values + * + * @return float|string (string if result is an error) + */ + public static function VARPA(...$args) + { + return Variances::VARPA(...$args); + } + + /** + * WEIBULL. + * + * Returns the Weibull distribution. Use this distribution in reliability + * analysis, such as calculating a device's mean time to failure. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\Weibull::distribution() + * Use the distribution() method in the Statistical\Distributions\Weibull class instead + * + * @param float $value + * @param float $alpha Alpha Parameter + * @param float $beta Beta Parameter + * @param bool $cumulative + * + * @return array|float|string (string if result is an error) + */ + public static function WEIBULL($value, $alpha, $beta, $cumulative) + { + return Statistical\Distributions\Weibull::distribution($value, $alpha, $beta, $cumulative); + } + + /** + * ZTEST. + * + * Returns the one-tailed P-value of a z-test. + * + * For a given hypothesized population mean, x, Z.TEST returns the probability that the sample mean would be + * greater than the average of observations in the data set (array) — that is, the observed sample mean. + * + * @Deprecated 1.18.0 + * + * @see Statistical\Distributions\StandardNormal::zTest() + * Use the zTest() method in the Statistical\Distributions\StandardNormal class instead + * + * @param float $dataSet + * @param float $m0 Alpha Parameter + * @param float $sigma Beta Parameter + * + * @return array|float|string (string if result is an error) + */ + public static function ZTEST($dataSet, $m0, $sigma = null) + { + return Statistical\Distributions\StandardNormal::zTest($dataSet, $m0, $sigma); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/AggregateBase.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/AggregateBase.php new file mode 100644 index 0000000..75c012d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/AggregateBase.php @@ -0,0 +1,50 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; + +abstract class AggregateBase +{ + /** + * MS Excel does not count Booleans if passed as cell values, but they are counted if passed as literals. + * OpenOffice Calc always counts Booleans. + * Gnumeric never counts Booleans. + * + * @param mixed $arg + * @param mixed $k + * + * @return int|mixed + */ + protected static function testAcceptedBoolean($arg, $k) + { + if ( + (is_bool($arg)) && + ((!Functions::isCellValue($k) && (Functions::getCompatibilityMode() === Functions::COMPATIBILITY_EXCEL)) || + (Functions::getCompatibilityMode() === Functions::COMPATIBILITY_OPENOFFICE)) + ) { + $arg = (int) $arg; + } + + return $arg; + } + + /** + * @param mixed $arg + * @param mixed $k + * + * @return bool + */ + protected static function isAcceptedCountable($arg, $k) + { + if ( + ((is_numeric($arg)) && (!is_string($arg))) || + ((is_numeric($arg)) && (!Functions::isCellValue($k)) && + (Functions::getCompatibilityMode() !== Functions::COMPATIBILITY_GNUMERIC)) + ) { + return true; + } + + return false; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Averages.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Averages.php new file mode 100644 index 0000000..41b011a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Averages.php @@ -0,0 +1,260 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Averages extends AggregateBase +{ + /** + * AVEDEV. + * + * Returns the average of the absolute deviations of data points from their mean. + * AVEDEV is a measure of the variability in a data set. + * + * Excel Function: + * AVEDEV(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string (string if result is an error) + */ + public static function averageDeviations(...$args) + { + $aArgs = Functions::flattenArrayIndexed($args); + + // Return value + $returnValue = 0.0; + + $aMean = self::average(...$args); + if ($aMean === ExcelError::DIV0()) { + return ExcelError::NAN(); + } elseif ($aMean === ExcelError::VALUE()) { + return ExcelError::VALUE(); + } + + $aCount = 0; + foreach ($aArgs as $k => $arg) { + $arg = self::testAcceptedBoolean($arg, $k); + // Is it a numeric value? + // Strings containing numeric values are only counted if they are string literals (not cell values) + // and then only in MS Excel and in Open Office, not in Gnumeric + if ((is_string($arg)) && (!is_numeric($arg)) && (!Functions::isCellValue($k))) { + return ExcelError::VALUE(); + } + if (self::isAcceptedCountable($arg, $k)) { + $returnValue += abs($arg - $aMean); + ++$aCount; + } + } + + // Return + if ($aCount === 0) { + return ExcelError::DIV0(); + } + + return $returnValue / $aCount; + } + + /** + * AVERAGE. + * + * Returns the average (arithmetic mean) of the arguments + * + * Excel Function: + * AVERAGE(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string (string if result is an error) + */ + public static function average(...$args) + { + $returnValue = $aCount = 0; + + // Loop through arguments + foreach (Functions::flattenArrayIndexed($args) as $k => $arg) { + $arg = self::testAcceptedBoolean($arg, $k); + // Is it a numeric value? + // Strings containing numeric values are only counted if they are string literals (not cell values) + // and then only in MS Excel and in Open Office, not in Gnumeric + if ((is_string($arg)) && (!is_numeric($arg)) && (!Functions::isCellValue($k))) { + return ExcelError::VALUE(); + } + if (self::isAcceptedCountable($arg, $k)) { + $returnValue += $arg; + ++$aCount; + } + } + + // Return + if ($aCount > 0) { + return $returnValue / $aCount; + } + + return ExcelError::DIV0(); + } + + /** + * AVERAGEA. + * + * Returns the average of its arguments, including numbers, text, and logical values + * + * Excel Function: + * AVERAGEA(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string (string if result is an error) + */ + public static function averageA(...$args) + { + $returnValue = null; + + $aCount = 0; + // Loop through arguments + foreach (Functions::flattenArrayIndexed($args) as $k => $arg) { + if ((is_bool($arg)) && (!Functions::isMatrixValue($k))) { + } else { + if ((is_numeric($arg)) || (is_bool($arg)) || ((is_string($arg) && ($arg != '')))) { + if (is_bool($arg)) { + $arg = (int) $arg; + } elseif (is_string($arg)) { + $arg = 0; + } + $returnValue += $arg; + ++$aCount; + } + } + } + + if ($aCount > 0) { + return $returnValue / $aCount; + } + + return ExcelError::DIV0(); + } + + /** + * MEDIAN. + * + * Returns the median of the given numbers. The median is the number in the middle of a set of numbers. + * + * Excel Function: + * MEDIAN(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string The result, or a string containing an error + */ + public static function median(...$args) + { + $aArgs = Functions::flattenArray($args); + + $returnValue = ExcelError::NAN(); + + $aArgs = self::filterArguments($aArgs); + $valueCount = count($aArgs); + if ($valueCount > 0) { + sort($aArgs, SORT_NUMERIC); + $valueCount = $valueCount / 2; + if ($valueCount == floor($valueCount)) { + $returnValue = ($aArgs[$valueCount--] + $aArgs[$valueCount]) / 2; + } else { + $valueCount = floor($valueCount); + $returnValue = $aArgs[$valueCount]; + } + } + + return $returnValue; + } + + /** + * MODE. + * + * Returns the most frequently occurring, or repetitive, value in an array or range of data + * + * Excel Function: + * MODE(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string The result, or a string containing an error + */ + public static function mode(...$args) + { + $returnValue = ExcelError::NA(); + + // Loop through arguments + $aArgs = Functions::flattenArray($args); + $aArgs = self::filterArguments($aArgs); + + if (!empty($aArgs)) { + return self::modeCalc($aArgs); + } + + return $returnValue; + } + + protected static function filterArguments($args) + { + return array_filter( + $args, + function ($value) { + // Is it a numeric value? + return (is_numeric($value)) && (!is_string($value)); + } + ); + } + + // + // Special variant of array_count_values that isn't limited to strings and integers, + // but can work with floating point numbers as values + // + private static function modeCalc($data) + { + $frequencyArray = []; + $index = 0; + $maxfreq = 0; + $maxfreqkey = ''; + $maxfreqdatum = ''; + foreach ($data as $datum) { + $found = false; + ++$index; + foreach ($frequencyArray as $key => $value) { + if ((string) $value['value'] == (string) $datum) { + ++$frequencyArray[$key]['frequency']; + $freq = $frequencyArray[$key]['frequency']; + if ($freq > $maxfreq) { + $maxfreq = $freq; + $maxfreqkey = $key; + $maxfreqdatum = $datum; + } elseif ($freq == $maxfreq) { + if ($frequencyArray[$key]['index'] < $frequencyArray[$maxfreqkey]['index']) { + $maxfreqkey = $key; + $maxfreqdatum = $datum; + } + } + $found = true; + + break; + } + } + + if ($found === false) { + $frequencyArray[] = [ + 'value' => $datum, + 'frequency' => 1, + 'index' => $index, + ]; + } + } + + if ($maxfreq <= 1) { + return ExcelError::NA(); + } + + return $maxfreqdatum; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Averages/Mean.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Averages/Mean.php new file mode 100644 index 0000000..001c91e --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Averages/Mean.php @@ -0,0 +1,132 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Averages; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Calculation\MathTrig; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Averages; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Counts; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Minimum; + +class Mean +{ + /** + * GEOMEAN. + * + * Returns the geometric mean of an array or range of positive data. For example, you + * can use GEOMEAN to calculate average growth rate given compound interest with + * variable rates. + * + * Excel Function: + * GEOMEAN(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function geometric(...$args) + { + $aArgs = Functions::flattenArray($args); + + $aMean = MathTrig\Operations::product($aArgs); + if (is_numeric($aMean) && ($aMean > 0)) { + $aCount = Counts::COUNT($aArgs); + if (Minimum::min($aArgs) > 0) { + return $aMean ** (1 / $aCount); + } + } + + return ExcelError::NAN(); + } + + /** + * HARMEAN. + * + * Returns the harmonic mean of a data set. The harmonic mean is the reciprocal of the + * arithmetic mean of reciprocals. + * + * Excel Function: + * HARMEAN(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function harmonic(...$args) + { + // Loop through arguments + $aArgs = Functions::flattenArray($args); + if (Minimum::min($aArgs) < 0) { + return ExcelError::NAN(); + } + + $returnValue = 0; + $aCount = 0; + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + if ($arg <= 0) { + return ExcelError::NAN(); + } + $returnValue += (1 / $arg); + ++$aCount; + } + } + + // Return + if ($aCount > 0) { + return 1 / ($returnValue / $aCount); + } + + return ExcelError::NA(); + } + + /** + * TRIMMEAN. + * + * Returns the mean of the interior of a data set. TRIMMEAN calculates the mean + * taken by excluding a percentage of data points from the top and bottom tails + * of a data set. + * + * Excel Function: + * TRIMEAN(value1[,value2[, ...]], $discard) + * + * @param mixed $args Data values + * + * @return float|string + */ + public static function trim(...$args) + { + $aArgs = Functions::flattenArray($args); + + // Calculate + $percent = array_pop($aArgs); + + if ((is_numeric($percent)) && (!is_string($percent))) { + if (($percent < 0) || ($percent > 1)) { + return ExcelError::NAN(); + } + + $mArgs = []; + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $mArgs[] = $arg; + } + } + + $discard = floor(Counts::COUNT($mArgs) * $percent / 2); + sort($mArgs); + + for ($i = 0; $i < $discard; ++$i) { + array_pop($mArgs); + array_shift($mArgs); + } + + return Averages::average($mArgs); + } + + return ExcelError::VALUE(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Conditional.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Conditional.php new file mode 100644 index 0000000..51e6b00 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Conditional.php @@ -0,0 +1,304 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +use PhpOffice\PhpSpreadsheet\Calculation\Database\DAverage; +use PhpOffice\PhpSpreadsheet\Calculation\Database\DCount; +use PhpOffice\PhpSpreadsheet\Calculation\Database\DMax; +use PhpOffice\PhpSpreadsheet\Calculation\Database\DMin; +use PhpOffice\PhpSpreadsheet\Calculation\Database\DSum; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; + +class Conditional +{ + private const CONDITION_COLUMN_NAME = 'CONDITION'; + private const VALUE_COLUMN_NAME = 'VALUE'; + private const CONDITIONAL_COLUMN_NAME = 'CONDITIONAL %d'; + + /** + * AVERAGEIF. + * + * Returns the average value from a range of cells that contain numbers within the list of arguments + * + * Excel Function: + * AVERAGEIF(range,condition[, average_range]) + * + * @param mixed[] $range Data values + * @param string $condition the criteria that defines which cells will be checked + * @param mixed[] $averageRange Data values + * + * @return null|float|string + */ + public static function AVERAGEIF($range, $condition, $averageRange = []) + { + $database = self::databaseFromRangeAndValue($range, $averageRange); + $condition = [[self::CONDITION_COLUMN_NAME, self::VALUE_COLUMN_NAME], [$condition, null]]; + + return DAverage::evaluate($database, self::VALUE_COLUMN_NAME, $condition); + } + + /** + * AVERAGEIFS. + * + * Counts the number of cells that contain numbers within the list of arguments + * + * Excel Function: + * AVERAGEIFS(average_range, criteria_range1, criteria1, [criteria_range2, criteria2]…) + * + * @param mixed $args Pairs of Ranges and Criteria + * + * @return null|float|string + */ + public static function AVERAGEIFS(...$args) + { + if (empty($args)) { + return 0.0; + } elseif (count($args) === 3) { + return self::AVERAGEIF($args[1], $args[2], $args[0]); + } + + $conditions = self::buildConditionSetForValueRange(...$args); + $database = self::buildDatabaseWithValueRange(...$args); + + return DAverage::evaluate($database, self::VALUE_COLUMN_NAME, $conditions); + } + + /** + * COUNTIF. + * + * Counts the number of cells that contain numbers within the list of arguments + * + * Excel Function: + * COUNTIF(range,condition) + * + * @param mixed[] $range Data values + * @param string $condition the criteria that defines which cells will be counted + * + * @return int + */ + public static function COUNTIF($range, $condition) + { + // Filter out any empty values that shouldn't be included in a COUNT + $range = array_filter( + Functions::flattenArray($range), + function ($value) { + return $value !== null && $value !== ''; + } + ); + + $range = array_merge([[self::CONDITION_COLUMN_NAME]], array_chunk($range, 1)); + $condition = array_merge([[self::CONDITION_COLUMN_NAME]], [[$condition]]); + + return DCount::evaluate($range, null, $condition); + } + + /** + * COUNTIFS. + * + * Counts the number of cells that contain numbers within the list of arguments + * + * Excel Function: + * COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2]…) + * + * @param mixed $args Pairs of Ranges and Criteria + * + * @return int + */ + public static function COUNTIFS(...$args) + { + if (empty($args)) { + return 0; + } elseif (count($args) === 2) { + return self::COUNTIF(...$args); + } + + $database = self::buildDatabase(...$args); + $conditions = self::buildConditionSet(...$args); + + return DCount::evaluate($database, null, $conditions); + } + + /** + * MAXIFS. + * + * Returns the maximum value within a range of cells that contain numbers within the list of arguments + * + * Excel Function: + * MAXIFS(max_range, criteria_range1, criteria1, [criteria_range2, criteria2]…) + * + * @param mixed $args Pairs of Ranges and Criteria + * + * @return null|float|string + */ + public static function MAXIFS(...$args) + { + if (empty($args)) { + return 0.0; + } + + $conditions = self::buildConditionSetForValueRange(...$args); + $database = self::buildDatabaseWithValueRange(...$args); + + return DMax::evaluate($database, self::VALUE_COLUMN_NAME, $conditions); + } + + /** + * MINIFS. + * + * Returns the minimum value within a range of cells that contain numbers within the list of arguments + * + * Excel Function: + * MINIFS(min_range, criteria_range1, criteria1, [criteria_range2, criteria2]…) + * + * @param mixed $args Pairs of Ranges and Criteria + * + * @return null|float|string + */ + public static function MINIFS(...$args) + { + if (empty($args)) { + return 0.0; + } + + $conditions = self::buildConditionSetForValueRange(...$args); + $database = self::buildDatabaseWithValueRange(...$args); + + return DMin::evaluate($database, self::VALUE_COLUMN_NAME, $conditions); + } + + /** + * SUMIF. + * + * Totals the values of cells that contain numbers within the list of arguments + * + * Excel Function: + * SUMIF(range, criteria, [sum_range]) + * + * @param mixed $range Data values + * @param mixed $sumRange + * @param mixed $condition + * + * @return float|string + */ + public static function SUMIF($range, $condition, $sumRange = []) + { + $database = self::databaseFromRangeAndValue($range, $sumRange); + $condition = [[self::CONDITION_COLUMN_NAME, self::VALUE_COLUMN_NAME], [$condition, null]]; + + return DSum::evaluate($database, self::VALUE_COLUMN_NAME, $condition); + } + + /** + * SUMIFS. + * + * Counts the number of cells that contain numbers within the list of arguments + * + * Excel Function: + * SUMIFS(average_range, criteria_range1, criteria1, [criteria_range2, criteria2]…) + * + * @param mixed $args Pairs of Ranges and Criteria + * + * @return null|float|string + */ + public static function SUMIFS(...$args) + { + if (empty($args)) { + return 0.0; + } elseif (count($args) === 3) { + return self::SUMIF($args[1], $args[2], $args[0]); + } + + $conditions = self::buildConditionSetForValueRange(...$args); + $database = self::buildDatabaseWithValueRange(...$args); + + return DSum::evaluate($database, self::VALUE_COLUMN_NAME, $conditions); + } + + private static function buildConditionSet(...$args): array + { + $conditions = self::buildConditions(1, ...$args); + + return array_map(null, ...$conditions); + } + + private static function buildConditionSetForValueRange(...$args): array + { + $conditions = self::buildConditions(2, ...$args); + + if (count($conditions) === 1) { + return array_map( + function ($value) { + return [$value]; + }, + $conditions[0] + ); + } + + return array_map(null, ...$conditions); + } + + private static function buildConditions(int $startOffset, ...$args): array + { + $conditions = []; + + $pairCount = 1; + $argumentCount = count($args); + for ($argument = $startOffset; $argument < $argumentCount; $argument += 2) { + $conditions[] = array_merge([sprintf(self::CONDITIONAL_COLUMN_NAME, $pairCount)], [$args[$argument]]); + ++$pairCount; + } + + return $conditions; + } + + private static function buildDatabase(...$args): array + { + $database = []; + + return self::buildDataSet(0, $database, ...$args); + } + + private static function buildDatabaseWithValueRange(...$args): array + { + $database = []; + $database[] = array_merge( + [self::VALUE_COLUMN_NAME], + Functions::flattenArray($args[0]) + ); + + return self::buildDataSet(1, $database, ...$args); + } + + private static function buildDataSet(int $startOffset, array $database, ...$args): array + { + $pairCount = 1; + $argumentCount = count($args); + for ($argument = $startOffset; $argument < $argumentCount; $argument += 2) { + $database[] = array_merge( + [sprintf(self::CONDITIONAL_COLUMN_NAME, $pairCount)], + Functions::flattenArray($args[$argument]) + ); + ++$pairCount; + } + + return array_map(null, ...$database); + } + + private static function databaseFromRangeAndValue(array $range, array $valueRange = []): array + { + $range = Functions::flattenArray($range); + + $valueRange = Functions::flattenArray($valueRange); + if (empty($valueRange)) { + $valueRange = $range; + } + + $database = array_map( + null, + array_merge([self::CONDITION_COLUMN_NAME], $range), + array_merge([self::VALUE_COLUMN_NAME], $valueRange) + ); + + return $database; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Confidence.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Confidence.php new file mode 100644 index 0000000..ec2ce34 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Confidence.php @@ -0,0 +1,52 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Confidence +{ + use ArrayEnabled; + + /** + * CONFIDENCE. + * + * Returns the confidence interval for a population mean + * + * @param mixed $alpha As a float + * Or can be an array of values + * @param mixed $stdDev Standard Deviation as a float + * Or can be an array of values + * @param mixed $size As an integer + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function CONFIDENCE($alpha, $stdDev, $size) + { + if (is_array($alpha) || is_array($stdDev) || is_array($size)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $alpha, $stdDev, $size); + } + + try { + $alpha = StatisticalValidations::validateFloat($alpha); + $stdDev = StatisticalValidations::validateFloat($stdDev); + $size = StatisticalValidations::validateInt($size); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($alpha <= 0) || ($alpha >= 1) || ($stdDev <= 0) || ($size < 1)) { + return ExcelError::NAN(); + } + /** @var float */ + $temp = Distributions\StandardNormal::inverse(1 - $alpha / 2); + + return Functions::scalar($temp * $stdDev / sqrt($size)); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Counts.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Counts.php new file mode 100644 index 0000000..13e7af7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Counts.php @@ -0,0 +1,95 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; + +class Counts extends AggregateBase +{ + /** + * COUNT. + * + * Counts the number of cells that contain numbers within the list of arguments + * + * Excel Function: + * COUNT(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return int + */ + public static function COUNT(...$args) + { + $returnValue = 0; + + // Loop through arguments + $aArgs = Functions::flattenArrayIndexed($args); + foreach ($aArgs as $k => $arg) { + $arg = self::testAcceptedBoolean($arg, $k); + // Is it a numeric value? + // Strings containing numeric values are only counted if they are string literals (not cell values) + // and then only in MS Excel and in Open Office, not in Gnumeric + if (self::isAcceptedCountable($arg, $k)) { + ++$returnValue; + } + } + + return $returnValue; + } + + /** + * COUNTA. + * + * Counts the number of cells that are not empty within the list of arguments + * + * Excel Function: + * COUNTA(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return int + */ + public static function COUNTA(...$args) + { + $returnValue = 0; + + // Loop through arguments + $aArgs = Functions::flattenArrayIndexed($args); + foreach ($aArgs as $k => $arg) { + // Nulls are counted if literals, but not if cell values + if ($arg !== null || (!Functions::isCellValue($k))) { + ++$returnValue; + } + } + + return $returnValue; + } + + /** + * COUNTBLANK. + * + * Counts the number of empty cells within the list of arguments + * + * Excel Function: + * COUNTBLANK(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return int + */ + public static function COUNTBLANK(...$args) + { + $returnValue = 0; + + // Loop through arguments + $aArgs = Functions::flattenArray($args); + foreach ($aArgs as $arg) { + // Is it a blank cell? + if (($arg === null) || ((is_string($arg)) && ($arg == ''))) { + ++$returnValue; + } + } + + return $returnValue; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Deviations.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Deviations.php new file mode 100644 index 0000000..6b1db3a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Deviations.php @@ -0,0 +1,142 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Deviations +{ + /** + * DEVSQ. + * + * Returns the sum of squares of deviations of data points from their sample mean. + * + * Excel Function: + * DEVSQ(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function sumSquares(...$args) + { + $aArgs = Functions::flattenArrayIndexed($args); + + $aMean = Averages::average($aArgs); + if (!is_numeric($aMean)) { + return ExcelError::NAN(); + } + + // Return value + $returnValue = 0.0; + $aCount = -1; + foreach ($aArgs as $k => $arg) { + // Is it a numeric value? + if ( + (is_bool($arg)) && + ((!Functions::isCellValue($k)) || + (Functions::getCompatibilityMode() == Functions::COMPATIBILITY_OPENOFFICE)) + ) { + $arg = (int) $arg; + } + if ((is_numeric($arg)) && (!is_string($arg))) { + $returnValue += ($arg - $aMean) ** 2; + ++$aCount; + } + } + + return $aCount === 0 ? ExcelError::VALUE() : $returnValue; + } + + /** + * KURT. + * + * Returns the kurtosis of a data set. Kurtosis characterizes the relative peakedness + * or flatness of a distribution compared with the normal distribution. Positive + * kurtosis indicates a relatively peaked distribution. Negative kurtosis indicates a + * relatively flat distribution. + * + * @param array ...$args Data Series + * + * @return float|string + */ + public static function kurtosis(...$args) + { + $aArgs = Functions::flattenArrayIndexed($args); + $mean = Averages::average($aArgs); + if (!is_numeric($mean)) { + return ExcelError::DIV0(); + } + $stdDev = StandardDeviations::STDEV($aArgs); + + if ($stdDev > 0) { + $count = $summer = 0; + + foreach ($aArgs as $k => $arg) { + if ((is_bool($arg)) && (!Functions::isMatrixValue($k))) { + } else { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $summer += (($arg - $mean) / $stdDev) ** 4; + ++$count; + } + } + } + + if ($count > 3) { + return $summer * ($count * ($count + 1) / + (($count - 1) * ($count - 2) * ($count - 3))) - (3 * ($count - 1) ** 2 / + (($count - 2) * ($count - 3))); + } + } + + return ExcelError::DIV0(); + } + + /** + * SKEW. + * + * Returns the skewness of a distribution. Skewness characterizes the degree of asymmetry + * of a distribution around its mean. Positive skewness indicates a distribution with an + * asymmetric tail extending toward more positive values. Negative skewness indicates a + * distribution with an asymmetric tail extending toward more negative values. + * + * @param array ...$args Data Series + * + * @return float|int|string The result, or a string containing an error + */ + public static function skew(...$args) + { + $aArgs = Functions::flattenArrayIndexed($args); + $mean = Averages::average($aArgs); + if (!is_numeric($mean)) { + return ExcelError::DIV0(); + } + $stdDev = StandardDeviations::STDEV($aArgs); + if ($stdDev === 0.0 || is_string($stdDev)) { + return ExcelError::DIV0(); + } + + $count = $summer = 0; + // Loop through arguments + foreach ($aArgs as $k => $arg) { + if ((is_bool($arg)) && (!Functions::isMatrixValue($k))) { + } elseif (!is_numeric($arg)) { + return ExcelError::VALUE(); + } else { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $summer += (($arg - $mean) / $stdDev) ** 3; + ++$count; + } + } + } + + if ($count > 2) { + return $summer * ($count / (($count - 1) * ($count - 2))); + } + + return ExcelError::DIV0(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Beta.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Beta.php new file mode 100644 index 0000000..224872b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Beta.php @@ -0,0 +1,280 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Beta +{ + use ArrayEnabled; + + private const MAX_ITERATIONS = 256; + + private const LOG_GAMMA_X_MAX_VALUE = 2.55e305; + + private const XMININ = 2.23e-308; + + /** + * BETADIST. + * + * Returns the beta distribution. + * + * @param mixed $value Float value at which you want to evaluate the distribution + * Or can be an array of values + * @param mixed $alpha Parameter to the distribution as a float + * Or can be an array of values + * @param mixed $beta Parameter to the distribution as a float + * Or can be an array of values + * @param mixed $rMin as an float + * Or can be an array of values + * @param mixed $rMax as an float + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function distribution($value, $alpha, $beta, $rMin = 0.0, $rMax = 1.0) + { + if (is_array($value) || is_array($alpha) || is_array($beta) || is_array($rMin) || is_array($rMax)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $alpha, $beta, $rMin, $rMax); + } + + $rMin = $rMin ?? 0.0; + $rMax = $rMax ?? 1.0; + + try { + $value = DistributionValidations::validateFloat($value); + $alpha = DistributionValidations::validateFloat($alpha); + $beta = DistributionValidations::validateFloat($beta); + $rMax = DistributionValidations::validateFloat($rMax); + $rMin = DistributionValidations::validateFloat($rMin); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($rMin > $rMax) { + $tmp = $rMin; + $rMin = $rMax; + $rMax = $tmp; + } + if (($value < $rMin) || ($value > $rMax) || ($alpha <= 0) || ($beta <= 0) || ($rMin == $rMax)) { + return ExcelError::NAN(); + } + + $value -= $rMin; + $value /= ($rMax - $rMin); + + return self::incompleteBeta($value, $alpha, $beta); + } + + /** + * BETAINV. + * + * Returns the inverse of the Beta distribution. + * + * @param mixed $probability Float probability at which you want to evaluate the distribution + * Or can be an array of values + * @param mixed $alpha Parameter to the distribution as a float + * Or can be an array of values + * @param mixed $beta Parameter to the distribution as a float + * Or can be an array of values + * @param mixed $rMin Minimum value as a float + * Or can be an array of values + * @param mixed $rMax Maximum value as a float + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function inverse($probability, $alpha, $beta, $rMin = 0.0, $rMax = 1.0) + { + if (is_array($probability) || is_array($alpha) || is_array($beta) || is_array($rMin) || is_array($rMax)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $probability, $alpha, $beta, $rMin, $rMax); + } + + $rMin = $rMin ?? 0.0; + $rMax = $rMax ?? 1.0; + + try { + $probability = DistributionValidations::validateProbability($probability); + $alpha = DistributionValidations::validateFloat($alpha); + $beta = DistributionValidations::validateFloat($beta); + $rMax = DistributionValidations::validateFloat($rMax); + $rMin = DistributionValidations::validateFloat($rMin); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($rMin > $rMax) { + $tmp = $rMin; + $rMin = $rMax; + $rMax = $tmp; + } + if (($alpha <= 0) || ($beta <= 0) || ($rMin == $rMax) || ($probability <= 0.0)) { + return ExcelError::NAN(); + } + + return self::calculateInverse($probability, $alpha, $beta, $rMin, $rMax); + } + + /** + * @return float|string + */ + private static function calculateInverse(float $probability, float $alpha, float $beta, float $rMin, float $rMax) + { + $a = 0; + $b = 2; + + $i = 0; + while ((($b - $a) > Functions::PRECISION) && (++$i <= self::MAX_ITERATIONS)) { + $guess = ($a + $b) / 2; + $result = self::distribution($guess, $alpha, $beta); + if (($result === $probability) || ($result === 0.0)) { + $b = $a; + } elseif ($result > $probability) { + $b = $guess; + } else { + $a = $guess; + } + } + + if ($i === self::MAX_ITERATIONS) { + return ExcelError::NA(); + } + + return round($rMin + $guess * ($rMax - $rMin), 12); + } + + /** + * Incomplete beta function. + * + * @author Jaco van Kooten + * @author Paul Meagher + * + * The computation is based on formulas from Numerical Recipes, Chapter 6.4 (W.H. Press et al, 1992). + * + * @param float $x require 0<=x<=1 + * @param float $p require p>0 + * @param float $q require q>0 + * + * @return float 0 if x<0, p<=0, q<=0 or p+q>2.55E305 and 1 if x>1 to avoid errors and over/underflow + */ + public static function incompleteBeta(float $x, float $p, float $q): float + { + if ($x <= 0.0) { + return 0.0; + } elseif ($x >= 1.0) { + return 1.0; + } elseif (($p <= 0.0) || ($q <= 0.0) || (($p + $q) > self::LOG_GAMMA_X_MAX_VALUE)) { + return 0.0; + } + + $beta_gam = exp((0 - self::logBeta($p, $q)) + $p * log($x) + $q * log(1.0 - $x)); + if ($x < ($p + 1.0) / ($p + $q + 2.0)) { + return $beta_gam * self::betaFraction($x, $p, $q) / $p; + } + + return 1.0 - ($beta_gam * self::betaFraction(1 - $x, $q, $p) / $q); + } + + // Function cache for logBeta function + private static $logBetaCacheP = 0.0; + + private static $logBetaCacheQ = 0.0; + + private static $logBetaCacheResult = 0.0; + + /** + * The natural logarithm of the beta function. + * + * @param float $p require p>0 + * @param float $q require q>0 + * + * @return float 0 if p<=0, q<=0 or p+q>2.55E305 to avoid errors and over/underflow + * + * @author Jaco van Kooten + */ + private static function logBeta(float $p, float $q): float + { + if ($p != self::$logBetaCacheP || $q != self::$logBetaCacheQ) { + self::$logBetaCacheP = $p; + self::$logBetaCacheQ = $q; + if (($p <= 0.0) || ($q <= 0.0) || (($p + $q) > self::LOG_GAMMA_X_MAX_VALUE)) { + self::$logBetaCacheResult = 0.0; + } else { + self::$logBetaCacheResult = Gamma::logGamma($p) + Gamma::logGamma($q) - Gamma::logGamma($p + $q); + } + } + + return self::$logBetaCacheResult; + } + + /** + * Evaluates of continued fraction part of incomplete beta function. + * Based on an idea from Numerical Recipes (W.H. Press et al, 1992). + * + * @author Jaco van Kooten + */ + private static function betaFraction(float $x, float $p, float $q): float + { + $c = 1.0; + $sum_pq = $p + $q; + $p_plus = $p + 1.0; + $p_minus = $p - 1.0; + $h = 1.0 - $sum_pq * $x / $p_plus; + if (abs($h) < self::XMININ) { + $h = self::XMININ; + } + $h = 1.0 / $h; + $frac = $h; + $m = 1; + $delta = 0.0; + while ($m <= self::MAX_ITERATIONS && abs($delta - 1.0) > Functions::PRECISION) { + $m2 = 2 * $m; + // even index for d + $d = $m * ($q - $m) * $x / (($p_minus + $m2) * ($p + $m2)); + $h = 1.0 + $d * $h; + if (abs($h) < self::XMININ) { + $h = self::XMININ; + } + $h = 1.0 / $h; + $c = 1.0 + $d / $c; + if (abs($c) < self::XMININ) { + $c = self::XMININ; + } + $frac *= $h * $c; + // odd index for d + $d = -($p + $m) * ($sum_pq + $m) * $x / (($p + $m2) * ($p_plus + $m2)); + $h = 1.0 + $d * $h; + if (abs($h) < self::XMININ) { + $h = self::XMININ; + } + $h = 1.0 / $h; + $c = 1.0 + $d / $c; + if (abs($c) < self::XMININ) { + $c = self::XMININ; + } + $delta = $h * $c; + $frac *= $delta; + ++$m; + } + + return $frac; + } + + private static function betaValue(float $a, float $b): float + { + return (Gamma::gammaValue($a) * Gamma::gammaValue($b)) / + Gamma::gammaValue($a + $b); + } + + private static function regularizedIncompleteBeta(float $value, float $a, float $b): float + { + return self::incompleteBeta($value, $a, $b) / self::betaValue($a, $b); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Binomial.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Binomial.php new file mode 100644 index 0000000..02b53e8 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Binomial.php @@ -0,0 +1,237 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Calculation\MathTrig\Combinations; + +class Binomial +{ + use ArrayEnabled; + + /** + * BINOMDIST. + * + * Returns the individual term binomial distribution probability. Use BINOMDIST in problems with + * a fixed number of tests or trials, when the outcomes of any trial are only success or failure, + * when trials are independent, and when the probability of success is constant throughout the + * experiment. For example, BINOMDIST can calculate the probability that two of the next three + * babies born are male. + * + * @param mixed $value Integer number of successes in trials + * Or can be an array of values + * @param mixed $trials Integer umber of trials + * Or can be an array of values + * @param mixed $probability Probability of success on each trial as a float + * Or can be an array of values + * @param mixed $cumulative Boolean value indicating if we want the cdf (true) or the pdf (false) + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function distribution($value, $trials, $probability, $cumulative) + { + if (is_array($value) || is_array($trials) || is_array($probability) || is_array($cumulative)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $trials, $probability, $cumulative); + } + + try { + $value = DistributionValidations::validateInt($value); + $trials = DistributionValidations::validateInt($trials); + $probability = DistributionValidations::validateProbability($probability); + $cumulative = DistributionValidations::validateBool($cumulative); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($value < 0) || ($value > $trials)) { + return ExcelError::NAN(); + } + + if ($cumulative) { + return self::calculateCumulativeBinomial($value, $trials, $probability); + } + /** @var float */ + $comb = Combinations::withoutRepetition($trials, $value); + + return $comb * $probability ** $value + * (1 - $probability) ** ($trials - $value); + } + + /** + * BINOM.DIST.RANGE. + * + * Returns returns the Binomial Distribution probability for the number of successes from a specified number + * of trials falling into a specified range. + * + * @param mixed $trials Integer number of trials + * Or can be an array of values + * @param mixed $probability Probability of success on each trial as a float + * Or can be an array of values + * @param mixed $successes The integer number of successes in trials + * Or can be an array of values + * @param mixed $limit Upper limit for successes in trials as null, or an integer + * If null, then this will indicate the same as the number of Successes + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function range($trials, $probability, $successes, $limit = null) + { + if (is_array($trials) || is_array($probability) || is_array($successes) || is_array($limit)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $trials, $probability, $successes, $limit); + } + + $limit = $limit ?? $successes; + + try { + $trials = DistributionValidations::validateInt($trials); + $probability = DistributionValidations::validateProbability($probability); + $successes = DistributionValidations::validateInt($successes); + $limit = DistributionValidations::validateInt($limit); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($successes < 0) || ($successes > $trials)) { + return ExcelError::NAN(); + } + if (($limit < 0) || ($limit > $trials) || $limit < $successes) { + return ExcelError::NAN(); + } + + $summer = 0; + for ($i = $successes; $i <= $limit; ++$i) { + /** @var float */ + $comb = Combinations::withoutRepetition($trials, $i); + $summer += $comb * $probability ** $i + * (1 - $probability) ** ($trials - $i); + } + + return $summer; + } + + /** + * NEGBINOMDIST. + * + * Returns the negative binomial distribution. NEGBINOMDIST returns the probability that + * there will be number_f failures before the number_s-th success, when the constant + * probability of a success is probability_s. This function is similar to the binomial + * distribution, except that the number of successes is fixed, and the number of trials is + * variable. Like the binomial, trials are assumed to be independent. + * + * @param mixed $failures Number of Failures as an integer + * Or can be an array of values + * @param mixed $successes Threshold number of Successes as an integer + * Or can be an array of values + * @param mixed $probability Probability of success on each trial as a float + * Or can be an array of values + * + * @return array|float|string The result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + * + * TODO Add support for the cumulative flag not present for NEGBINOMDIST, but introduced for NEGBINOM.DIST + * The cumulative default should be false to reflect the behaviour of NEGBINOMDIST + */ + public static function negative($failures, $successes, $probability) + { + if (is_array($failures) || is_array($successes) || is_array($probability)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $failures, $successes, $probability); + } + + try { + $failures = DistributionValidations::validateInt($failures); + $successes = DistributionValidations::validateInt($successes); + $probability = DistributionValidations::validateProbability($probability); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($failures < 0) || ($successes < 1)) { + return ExcelError::NAN(); + } + if (Functions::getCompatibilityMode() == Functions::COMPATIBILITY_GNUMERIC) { + if (($failures + $successes - 1) <= 0) { + return ExcelError::NAN(); + } + } + /** @var float */ + $comb = Combinations::withoutRepetition($failures + $successes - 1, $successes - 1); + + return $comb + * ($probability ** $successes) * ((1 - $probability) ** $failures); + } + + /** + * BINOM.INV. + * + * Returns the smallest value for which the cumulative binomial distribution is greater + * than or equal to a criterion value + * + * @param mixed $trials number of Bernoulli trials as an integer + * Or can be an array of values + * @param mixed $probability probability of a success on each trial as a float + * Or can be an array of values + * @param mixed $alpha criterion value as a float + * Or can be an array of values + * + * @return array|int|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function inverse($trials, $probability, $alpha) + { + if (is_array($trials) || is_array($probability) || is_array($alpha)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $trials, $probability, $alpha); + } + + try { + $trials = DistributionValidations::validateInt($trials); + $probability = DistributionValidations::validateProbability($probability); + $alpha = DistributionValidations::validateFloat($alpha); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($trials < 0) { + return ExcelError::NAN(); + } elseif (($alpha < 0.0) || ($alpha > 1.0)) { + return ExcelError::NAN(); + } + + $successes = 0; + while ($successes <= $trials) { + $result = self::calculateCumulativeBinomial($successes, $trials, $probability); + if ($result >= $alpha) { + break; + } + ++$successes; + } + + return $successes; + } + + /** + * @return float|int + */ + private static function calculateCumulativeBinomial(int $value, int $trials, float $probability) + { + $summer = 0; + for ($i = 0; $i <= $value; ++$i) { + /** @var float */ + $comb = Combinations::withoutRepetition($trials, $i); + $summer += $comb * $probability ** $i + * (1 - $probability) ** ($trials - $i); + } + + return $summer; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php new file mode 100644 index 0000000..8574d58 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php @@ -0,0 +1,337 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class ChiSquared +{ + use ArrayEnabled; + + private const MAX_ITERATIONS = 256; + + private const EPS = 2.22e-16; + + /** + * CHIDIST. + * + * Returns the one-tailed probability of the chi-squared distribution. + * + * @param mixed $value Float value for which we want the probability + * Or can be an array of values + * @param mixed $degrees Integer degrees of freedom + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function distributionRightTail($value, $degrees) + { + if (is_array($value) || is_array($degrees)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $degrees); + } + + try { + $value = DistributionValidations::validateFloat($value); + $degrees = DistributionValidations::validateInt($degrees); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($degrees < 1) { + return ExcelError::NAN(); + } + if ($value < 0) { + if (Functions::getCompatibilityMode() == Functions::COMPATIBILITY_GNUMERIC) { + return 1; + } + + return ExcelError::NAN(); + } + + return 1 - (Gamma::incompleteGamma($degrees / 2, $value / 2) / Gamma::gammaValue($degrees / 2)); + } + + /** + * CHIDIST. + * + * Returns the one-tailed probability of the chi-squared distribution. + * + * @param mixed $value Float value for which we want the probability + * Or can be an array of values + * @param mixed $degrees Integer degrees of freedom + * Or can be an array of values + * @param mixed $cumulative Boolean value indicating if we want the cdf (true) or the pdf (false) + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function distributionLeftTail($value, $degrees, $cumulative) + { + if (is_array($value) || is_array($degrees) || is_array($cumulative)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $degrees, $cumulative); + } + + try { + $value = DistributionValidations::validateFloat($value); + $degrees = DistributionValidations::validateInt($degrees); + $cumulative = DistributionValidations::validateBool($cumulative); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($degrees < 1) { + return ExcelError::NAN(); + } + if ($value < 0) { + if (Functions::getCompatibilityMode() == Functions::COMPATIBILITY_GNUMERIC) { + return 1; + } + + return ExcelError::NAN(); + } + + if ($cumulative === true) { + return 1 - self::distributionRightTail($value, $degrees); + } + + return (($value ** (($degrees / 2) - 1) * exp(-$value / 2))) / + ((2 ** ($degrees / 2)) * Gamma::gammaValue($degrees / 2)); + } + + /** + * CHIINV. + * + * Returns the inverse of the right-tailed probability of the chi-squared distribution. + * + * @param mixed $probability Float probability at which you want to evaluate the distribution + * Or can be an array of values + * @param mixed $degrees Integer degrees of freedom + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function inverseRightTail($probability, $degrees) + { + if (is_array($probability) || is_array($degrees)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $probability, $degrees); + } + + try { + $probability = DistributionValidations::validateProbability($probability); + $degrees = DistributionValidations::validateInt($degrees); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($degrees < 1) { + return ExcelError::NAN(); + } + + $callback = function ($value) use ($degrees) { + return 1 - (Gamma::incompleteGamma($degrees / 2, $value / 2) + / Gamma::gammaValue($degrees / 2)); + }; + + $newtonRaphson = new NewtonRaphson($callback); + + return $newtonRaphson->execute($probability); + } + + /** + * CHIINV. + * + * Returns the inverse of the left-tailed probability of the chi-squared distribution. + * + * @param mixed $probability Float probability at which you want to evaluate the distribution + * Or can be an array of values + * @param mixed $degrees Integer degrees of freedom + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function inverseLeftTail($probability, $degrees) + { + if (is_array($probability) || is_array($degrees)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $probability, $degrees); + } + + try { + $probability = DistributionValidations::validateProbability($probability); + $degrees = DistributionValidations::validateInt($degrees); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($degrees < 1) { + return ExcelError::NAN(); + } + + return self::inverseLeftTailCalculation($probability, $degrees); + } + + /** + * CHITEST. + * + * Uses the chi-square test to calculate the probability that the differences between two supplied data sets + * (of observed and expected frequencies), are likely to be simply due to sampling error, + * or if they are likely to be real. + * + * @param mixed $actual an array of observed frequencies + * @param mixed $expected an array of expected frequencies + * + * @return float|string + */ + public static function test($actual, $expected) + { + $rows = count($actual); + $actual = Functions::flattenArray($actual); + $expected = Functions::flattenArray($expected); + $columns = count($actual) / $rows; + + $countActuals = count($actual); + $countExpected = count($expected); + if ($countActuals !== $countExpected || $countActuals === 1) { + return ExcelError::NAN(); + } + + $result = 0.0; + for ($i = 0; $i < $countActuals; ++$i) { + if ($expected[$i] == 0.0) { + return ExcelError::DIV0(); + } elseif ($expected[$i] < 0.0) { + return ExcelError::NAN(); + } + $result += (($actual[$i] - $expected[$i]) ** 2) / $expected[$i]; + } + + $degrees = self::degrees($rows, $columns); + + $result = Functions::scalar(self::distributionRightTail($result, $degrees)); + + return $result; + } + + protected static function degrees(int $rows, int $columns): int + { + if ($rows === 1) { + return $columns - 1; + } elseif ($columns === 1) { + return $rows - 1; + } + + return ($columns - 1) * ($rows - 1); + } + + private static function inverseLeftTailCalculation(float $probability, int $degrees): float + { + // bracket the root + $min = 0; + $sd = sqrt(2.0 * $degrees); + $max = 2 * $sd; + $s = -1; + + while ($s * self::pchisq($max, $degrees) > $probability * $s) { + $min = $max; + $max += 2 * $sd; + } + + // Find root using bisection + $chi2 = 0.5 * ($min + $max); + + while (($max - $min) > self::EPS * $chi2) { + if ($s * self::pchisq($chi2, $degrees) > $probability * $s) { + $min = $chi2; + } else { + $max = $chi2; + } + $chi2 = 0.5 * ($min + $max); + } + + return $chi2; + } + + private static function pchisq($chi2, $degrees) + { + return self::gammp($degrees, 0.5 * $chi2); + } + + private static function gammp($n, $x) + { + if ($x < 0.5 * $n + 1) { + return self::gser($n, $x); + } + + return 1 - self::gcf($n, $x); + } + + // Return the incomplete gamma function P(n/2,x) evaluated by + // series representation. Algorithm from numerical recipe. + // Assume that n is a positive integer and x>0, won't check arguments. + // Relative error controlled by the eps parameter + private static function gser($n, $x) + { + /** @var float */ + $gln = Gamma::ln($n / 2); + $a = 0.5 * $n; + $ap = $a; + $sum = 1.0 / $a; + $del = $sum; + for ($i = 1; $i < 101; ++$i) { + ++$ap; + $del = $del * $x / $ap; + $sum += $del; + if ($del < $sum * self::EPS) { + break; + } + } + + return $sum * exp(-$x + $a * log($x) - $gln); + } + + // Return the incomplete gamma function Q(n/2,x) evaluated by + // its continued fraction representation. Algorithm from numerical recipe. + // Assume that n is a postive integer and x>0, won't check arguments. + // Relative error controlled by the eps parameter + private static function gcf($n, $x) + { + /** @var float */ + $gln = Gamma::ln($n / 2); + $a = 0.5 * $n; + $b = $x + 1 - $a; + $fpmin = 1.e-300; + $c = 1 / $fpmin; + $d = 1 / $b; + $h = $d; + for ($i = 1; $i < 101; ++$i) { + $an = -$i * ($i - $a); + $b += 2; + $d = $an * $d + $b; + if (abs($d) < $fpmin) { + $d = $fpmin; + } + $c = $b + $an / $c; + if (abs($c) < $fpmin) { + $c = $fpmin; + } + $d = 1 / $d; + $del = $d * $c; + $h = $h * $del; + if (abs($del - 1) < self::EPS) { + break; + } + } + + return $h * exp(-$x + $a * log($x) - $gln); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/DistributionValidations.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/DistributionValidations.php new file mode 100644 index 0000000..bd45a22 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/DistributionValidations.php @@ -0,0 +1,24 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\StatisticalValidations; + +class DistributionValidations extends StatisticalValidations +{ + /** + * @param mixed $probability + */ + public static function validateProbability($probability): float + { + $probability = self::validateFloat($probability); + + if ($probability < 0.0 || $probability > 1.0) { + throw new Exception(ExcelError::NAN()); + } + + return $probability; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Exponential.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Exponential.php new file mode 100644 index 0000000..a03671c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Exponential.php @@ -0,0 +1,55 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Exponential +{ + use ArrayEnabled; + + /** + * EXPONDIST. + * + * Returns the exponential distribution. Use EXPONDIST to model the time between events, + * such as how long an automated bank teller takes to deliver cash. For example, you can + * use EXPONDIST to determine the probability that the process takes at most 1 minute. + * + * @param mixed $value Float value for which we want the probability + * Or can be an array of values + * @param mixed $lambda The parameter value as a float + * Or can be an array of values + * @param mixed $cumulative Boolean value indicating if we want the cdf (true) or the pdf (false) + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function distribution($value, $lambda, $cumulative) + { + if (is_array($value) || is_array($lambda) || is_array($cumulative)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $lambda, $cumulative); + } + + try { + $value = DistributionValidations::validateFloat($value); + $lambda = DistributionValidations::validateFloat($lambda); + $cumulative = DistributionValidations::validateBool($cumulative); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($value < 0) || ($lambda < 0)) { + return ExcelError::NAN(); + } + + if ($cumulative === true) { + return 1 - exp(0 - $value * $lambda); + } + + return $lambda * exp(0 - $value * $lambda); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/F.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/F.php new file mode 100644 index 0000000..ff413b6 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/F.php @@ -0,0 +1,64 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class F +{ + use ArrayEnabled; + + /** + * F.DIST. + * + * Returns the F probability distribution. + * You can use this function to determine whether two data sets have different degrees of diversity. + * For example, you can examine the test scores of men and women entering high school, and determine + * if the variability in the females is different from that found in the males. + * + * @param mixed $value Float value for which we want the probability + * Or can be an array of values + * @param mixed $u The numerator degrees of freedom as an integer + * Or can be an array of values + * @param mixed $v The denominator degrees of freedom as an integer + * Or can be an array of values + * @param mixed $cumulative Boolean value indicating if we want the cdf (true) or the pdf (false) + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function distribution($value, $u, $v, $cumulative) + { + if (is_array($value) || is_array($u) || is_array($v) || is_array($cumulative)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $u, $v, $cumulative); + } + + try { + $value = DistributionValidations::validateFloat($value); + $u = DistributionValidations::validateInt($u); + $v = DistributionValidations::validateInt($v); + $cumulative = DistributionValidations::validateBool($cumulative); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($value < 0 || $u < 1 || $v < 1) { + return ExcelError::NAN(); + } + + if ($cumulative) { + $adjustedValue = ($u * $value) / ($u * $value + $v); + + return Beta::incompleteBeta($adjustedValue, $u / 2, $v / 2); + } + + return (Gamma::gammaValue(($v + $u) / 2) / + (Gamma::gammaValue($u / 2) * Gamma::gammaValue($v / 2))) * + (($u / $v) ** ($u / 2)) * + (($value ** (($u - 2) / 2)) / ((1 + ($u / $v) * $value) ** (($u + $v) / 2))); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Fisher.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Fisher.php new file mode 100644 index 0000000..df9906e --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Fisher.php @@ -0,0 +1,74 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Fisher +{ + use ArrayEnabled; + + /** + * FISHER. + * + * Returns the Fisher transformation at x. This transformation produces a function that + * is normally distributed rather than skewed. Use this function to perform hypothesis + * testing on the correlation coefficient. + * + * @param mixed $value Float value for which we want the probability + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function distribution($value) + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + try { + DistributionValidations::validateFloat($value); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($value <= -1) || ($value >= 1)) { + return ExcelError::NAN(); + } + + return 0.5 * log((1 + $value) / (1 - $value)); + } + + /** + * FISHERINV. + * + * Returns the inverse of the Fisher transformation. Use this transformation when + * analyzing correlations between ranges or arrays of data. If y = FISHER(x), then + * FISHERINV(y) = x. + * + * @param mixed $probability Float probability at which you want to evaluate the distribution + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function inverse($probability) + { + if (is_array($probability)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $probability); + } + + try { + DistributionValidations::validateFloat($probability); + } catch (Exception $e) { + return $e->getMessage(); + } + + return (exp(2 * $probability) - 1) / (exp(2 * $probability) + 1); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Gamma.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Gamma.php new file mode 100644 index 0000000..216f234 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Gamma.php @@ -0,0 +1,151 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Gamma extends GammaBase +{ + use ArrayEnabled; + + /** + * GAMMA. + * + * Return the gamma function value. + * + * @param mixed $value Float value for which we want the probability + * Or can be an array of values + * + * @return array|float|string The result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function gamma($value) + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + try { + $value = DistributionValidations::validateFloat($value); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ((((int) $value) == ((float) $value)) && $value <= 0.0) { + return ExcelError::NAN(); + } + + return self::gammaValue($value); + } + + /** + * GAMMADIST. + * + * Returns the gamma distribution. + * + * @param mixed $value Float Value at which you want to evaluate the distribution + * Or can be an array of values + * @param mixed $a Parameter to the distribution as a float + * Or can be an array of values + * @param mixed $b Parameter to the distribution as a float + * Or can be an array of values + * @param mixed $cumulative Boolean value indicating if we want the cdf (true) or the pdf (false) + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function distribution($value, $a, $b, $cumulative) + { + if (is_array($value) || is_array($a) || is_array($b) || is_array($cumulative)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $a, $b, $cumulative); + } + + try { + $value = DistributionValidations::validateFloat($value); + $a = DistributionValidations::validateFloat($a); + $b = DistributionValidations::validateFloat($b); + $cumulative = DistributionValidations::validateBool($cumulative); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($value < 0) || ($a <= 0) || ($b <= 0)) { + return ExcelError::NAN(); + } + + return self::calculateDistribution($value, $a, $b, $cumulative); + } + + /** + * GAMMAINV. + * + * Returns the inverse of the Gamma distribution. + * + * @param mixed $probability Float probability at which you want to evaluate the distribution + * Or can be an array of values + * @param mixed $alpha Parameter to the distribution as a float + * Or can be an array of values + * @param mixed $beta Parameter to the distribution as a float + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function inverse($probability, $alpha, $beta) + { + if (is_array($probability) || is_array($alpha) || is_array($beta)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $probability, $alpha, $beta); + } + + try { + $probability = DistributionValidations::validateProbability($probability); + $alpha = DistributionValidations::validateFloat($alpha); + $beta = DistributionValidations::validateFloat($beta); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($alpha <= 0.0) || ($beta <= 0.0)) { + return ExcelError::NAN(); + } + + return self::calculateInverse($probability, $alpha, $beta); + } + + /** + * GAMMALN. + * + * Returns the natural logarithm of the gamma function. + * + * @param mixed $value Float Value at which you want to evaluate the distribution + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function ln($value) + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + try { + $value = DistributionValidations::validateFloat($value); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($value <= 0) { + return ExcelError::NAN(); + } + + return log(self::gammaValue($value)); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/GammaBase.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/GammaBase.php new file mode 100644 index 0000000..404230b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/GammaBase.php @@ -0,0 +1,382 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +abstract class GammaBase +{ + private const LOG_GAMMA_X_MAX_VALUE = 2.55e305; + + private const EPS = 2.22e-16; + + private const MAX_VALUE = 1.2e308; + + private const SQRT2PI = 2.5066282746310005024157652848110452530069867406099; + + private const MAX_ITERATIONS = 256; + + protected static function calculateDistribution(float $value, float $a, float $b, bool $cumulative) + { + if ($cumulative) { + return self::incompleteGamma($a, $value / $b) / self::gammaValue($a); + } + + return (1 / ($b ** $a * self::gammaValue($a))) * $value ** ($a - 1) * exp(0 - ($value / $b)); + } + + protected static function calculateInverse(float $probability, float $alpha, float $beta) + { + $xLo = 0; + $xHi = $alpha * $beta * 5; + + $dx = 1024; + $x = $xNew = 1; + $i = 0; + + while ((abs($dx) > Functions::PRECISION) && (++$i <= self::MAX_ITERATIONS)) { + // Apply Newton-Raphson step + $result = self::calculateDistribution($x, $alpha, $beta, true); + $error = $result - $probability; + + if ($error == 0.0) { + $dx = 0; + } elseif ($error < 0.0) { + $xLo = $x; + } else { + $xHi = $x; + } + + $pdf = self::calculateDistribution($x, $alpha, $beta, false); + // Avoid division by zero + if ($pdf !== 0.0) { + $dx = $error / $pdf; + $xNew = $x - $dx; + } + + // If the NR fails to converge (which for example may be the + // case if the initial guess is too rough) we apply a bisection + // step to determine a more narrow interval around the root. + if (($xNew < $xLo) || ($xNew > $xHi) || ($pdf == 0.0)) { + $xNew = ($xLo + $xHi) / 2; + $dx = $xNew - $x; + } + $x = $xNew; + } + + if ($i === self::MAX_ITERATIONS) { + return ExcelError::NA(); + } + + return $x; + } + + // + // Implementation of the incomplete Gamma function + // + public static function incompleteGamma(float $a, float $x): float + { + static $max = 32; + $summer = 0; + for ($n = 0; $n <= $max; ++$n) { + $divisor = $a; + for ($i = 1; $i <= $n; ++$i) { + $divisor *= ($a + $i); + } + $summer += ($x ** $n / $divisor); + } + + return $x ** $a * exp(0 - $x) * $summer; + } + + // + // Implementation of the Gamma function + // + public static function gammaValue(float $value): float + { + if ($value == 0.0) { + return 0; + } + + static $p0 = 1.000000000190015; + static $p = [ + 1 => 76.18009172947146, + 2 => -86.50532032941677, + 3 => 24.01409824083091, + 4 => -1.231739572450155, + 5 => 1.208650973866179e-3, + 6 => -5.395239384953e-6, + ]; + + $y = $x = $value; + $tmp = $x + 5.5; + $tmp -= ($x + 0.5) * log($tmp); + + $summer = $p0; + for ($j = 1; $j <= 6; ++$j) { + $summer += ($p[$j] / ++$y); + } + + return exp(0 - $tmp + log(self::SQRT2PI * $summer / $x)); + } + + /** + * logGamma function. + * + * @version 1.1 + * + * @author Jaco van Kooten + * + * Original author was Jaco van Kooten. Ported to PHP by Paul Meagher. + * + * The natural logarithm of the gamma function. <br /> + * Based on public domain NETLIB (Fortran) code by W. J. Cody and L. Stoltz <br /> + * Applied Mathematics Division <br /> + * Argonne National Laboratory <br /> + * Argonne, IL 60439 <br /> + * <p> + * References: + * <ol> + * <li>W. J. Cody and K. E. Hillstrom, 'Chebyshev Approximations for the Natural + * Logarithm of the Gamma Function,' Math. Comp. 21, 1967, pp. 198-203.</li> + * <li>K. E. Hillstrom, ANL/AMD Program ANLC366S, DGAMMA/DLGAMA, May, 1969.</li> + * <li>Hart, Et. Al., Computer Approximations, Wiley and sons, New York, 1968.</li> + * </ol> + * </p> + * <p> + * From the original documentation: + * </p> + * <p> + * This routine calculates the LOG(GAMMA) function for a positive real argument X. + * Computation is based on an algorithm outlined in references 1 and 2. + * The program uses rational functions that theoretically approximate LOG(GAMMA) + * to at least 18 significant decimal digits. The approximation for X > 12 is from + * reference 3, while approximations for X < 12.0 are similar to those in reference + * 1, but are unpublished. The accuracy achieved depends on the arithmetic system, + * the compiler, the intrinsic functions, and proper selection of the + * machine-dependent constants. + * </p> + * <p> + * Error returns: <br /> + * The program returns the value XINF for X .LE. 0.0 or when overflow would occur. + * The computation is believed to be free of underflow and overflow. + * </p> + * + * @return float MAX_VALUE for x < 0.0 or when overflow would occur, i.e. x > 2.55E305 + */ + + // Log Gamma related constants + private const LG_D1 = -0.5772156649015328605195174; + + private const LG_D2 = 0.4227843350984671393993777; + + private const LG_D4 = 1.791759469228055000094023; + + private const LG_P1 = [ + 4.945235359296727046734888, + 201.8112620856775083915565, + 2290.838373831346393026739, + 11319.67205903380828685045, + 28557.24635671635335736389, + 38484.96228443793359990269, + 26377.48787624195437963534, + 7225.813979700288197698961, + ]; + + private const LG_P2 = [ + 4.974607845568932035012064, + 542.4138599891070494101986, + 15506.93864978364947665077, + 184793.2904445632425417223, + 1088204.76946882876749847, + 3338152.967987029735917223, + 5106661.678927352456275255, + 3074109.054850539556250927, + ]; + + private const LG_P4 = [ + 14745.02166059939948905062, + 2426813.369486704502836312, + 121475557.4045093227939592, + 2663432449.630976949898078, + 29403789566.34553899906876, + 170266573776.5398868392998, + 492612579337.743088758812, + 560625185622.3951465078242, + ]; + + private const LG_Q1 = [ + 67.48212550303777196073036, + 1113.332393857199323513008, + 7738.757056935398733233834, + 27639.87074403340708898585, + 54993.10206226157329794414, + 61611.22180066002127833352, + 36351.27591501940507276287, + 8785.536302431013170870835, + ]; + + private const LG_Q2 = [ + 183.0328399370592604055942, + 7765.049321445005871323047, + 133190.3827966074194402448, + 1136705.821321969608938755, + 5267964.117437946917577538, + 13467014.54311101692290052, + 17827365.30353274213975932, + 9533095.591844353613395747, + ]; + + private const LG_Q4 = [ + 2690.530175870899333379843, + 639388.5654300092398984238, + 41355999.30241388052042842, + 1120872109.61614794137657, + 14886137286.78813811542398, + 101680358627.2438228077304, + 341747634550.7377132798597, + 446315818741.9713286462081, + ]; + + private const LG_C = [ + -0.001910444077728, + 8.4171387781295e-4, + -5.952379913043012e-4, + 7.93650793500350248e-4, + -0.002777777777777681622553, + 0.08333333333333333331554247, + 0.0057083835261, + ]; + + // Rough estimate of the fourth root of logGamma_xBig + private const LG_FRTBIG = 2.25e76; + + private const PNT68 = 0.6796875; + + // Function cache for logGamma + private static $logGammaCacheResult = 0.0; + + private static $logGammaCacheX = 0.0; + + public static function logGamma(float $x): float + { + if ($x == self::$logGammaCacheX) { + return self::$logGammaCacheResult; + } + + $y = $x; + if ($y > 0.0 && $y <= self::LOG_GAMMA_X_MAX_VALUE) { + if ($y <= self::EPS) { + $res = -log($y); + } elseif ($y <= 1.5) { + $res = self::logGamma1($y); + } elseif ($y <= 4.0) { + $res = self::logGamma2($y); + } elseif ($y <= 12.0) { + $res = self::logGamma3($y); + } else { + $res = self::logGamma4($y); + } + } else { + // -------------------------- + // Return for bad arguments + // -------------------------- + $res = self::MAX_VALUE; + } + + // ------------------------------ + // Final adjustments and return + // ------------------------------ + self::$logGammaCacheX = $x; + self::$logGammaCacheResult = $res; + + return $res; + } + + private static function logGamma1(float $y) + { + // --------------------- + // EPS .LT. X .LE. 1.5 + // --------------------- + if ($y < self::PNT68) { + $corr = -log($y); + $xm1 = $y; + } else { + $corr = 0.0; + $xm1 = $y - 1.0; + } + + $xden = 1.0; + $xnum = 0.0; + if ($y <= 0.5 || $y >= self::PNT68) { + for ($i = 0; $i < 8; ++$i) { + $xnum = $xnum * $xm1 + self::LG_P1[$i]; + $xden = $xden * $xm1 + self::LG_Q1[$i]; + } + + return $corr + $xm1 * (self::LG_D1 + $xm1 * ($xnum / $xden)); + } + + $xm2 = $y - 1.0; + for ($i = 0; $i < 8; ++$i) { + $xnum = $xnum * $xm2 + self::LG_P2[$i]; + $xden = $xden * $xm2 + self::LG_Q2[$i]; + } + + return $corr + $xm2 * (self::LG_D2 + $xm2 * ($xnum / $xden)); + } + + private static function logGamma2(float $y) + { + // --------------------- + // 1.5 .LT. X .LE. 4.0 + // --------------------- + $xm2 = $y - 2.0; + $xden = 1.0; + $xnum = 0.0; + for ($i = 0; $i < 8; ++$i) { + $xnum = $xnum * $xm2 + self::LG_P2[$i]; + $xden = $xden * $xm2 + self::LG_Q2[$i]; + } + + return $xm2 * (self::LG_D2 + $xm2 * ($xnum / $xden)); + } + + protected static function logGamma3(float $y) + { + // ---------------------- + // 4.0 .LT. X .LE. 12.0 + // ---------------------- + $xm4 = $y - 4.0; + $xden = -1.0; + $xnum = 0.0; + for ($i = 0; $i < 8; ++$i) { + $xnum = $xnum * $xm4 + self::LG_P4[$i]; + $xden = $xden * $xm4 + self::LG_Q4[$i]; + } + + return self::LG_D4 + $xm4 * ($xnum / $xden); + } + + protected static function logGamma4(float $y) + { + // --------------------------------- + // Evaluate for argument .GE. 12.0 + // --------------------------------- + $res = 0.0; + if ($y <= self::LG_FRTBIG) { + $res = self::LG_C[6]; + $ysq = $y * $y; + for ($i = 0; $i < 6; ++$i) { + $res = $res / $ysq + self::LG_C[$i]; + } + $res /= $y; + $corr = log($y); + $res = $res + log(self::SQRT2PI) - 0.5 * $corr; + $res += $y * ($corr - 1.0); + } + + return $res; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/HyperGeometric.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/HyperGeometric.php new file mode 100644 index 0000000..b3ad69d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/HyperGeometric.php @@ -0,0 +1,76 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Calculation\MathTrig\Combinations; + +class HyperGeometric +{ + use ArrayEnabled; + + /** + * HYPGEOMDIST. + * + * Returns the hypergeometric distribution. HYPGEOMDIST returns the probability of a given number of + * sample successes, given the sample size, population successes, and population size. + * + * @param mixed $sampleSuccesses Integer number of successes in the sample + * Or can be an array of values + * @param mixed $sampleNumber Integer size of the sample + * Or can be an array of values + * @param mixed $populationSuccesses Integer number of successes in the population + * Or can be an array of values + * @param mixed $populationNumber Integer population size + * Or can be an array of values + * + * @return array|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function distribution($sampleSuccesses, $sampleNumber, $populationSuccesses, $populationNumber) + { + if ( + is_array($sampleSuccesses) || is_array($sampleNumber) || + is_array($populationSuccesses) || is_array($populationNumber) + ) { + return self::evaluateArrayArguments( + [self::class, __FUNCTION__], + $sampleSuccesses, + $sampleNumber, + $populationSuccesses, + $populationNumber + ); + } + + try { + $sampleSuccesses = DistributionValidations::validateInt($sampleSuccesses); + $sampleNumber = DistributionValidations::validateInt($sampleNumber); + $populationSuccesses = DistributionValidations::validateInt($populationSuccesses); + $populationNumber = DistributionValidations::validateInt($populationNumber); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($sampleSuccesses < 0) || ($sampleSuccesses > $sampleNumber) || ($sampleSuccesses > $populationSuccesses)) { + return ExcelError::NAN(); + } + if (($sampleNumber <= 0) || ($sampleNumber > $populationNumber)) { + return ExcelError::NAN(); + } + if (($populationSuccesses <= 0) || ($populationSuccesses > $populationNumber)) { + return ExcelError::NAN(); + } + + $successesPopulationAndSample = (float) Combinations::withoutRepetition($populationSuccesses, $sampleSuccesses); + $numbersPopulationAndSample = (float) Combinations::withoutRepetition($populationNumber, $sampleNumber); + $adjustedPopulationAndSample = (float) Combinations::withoutRepetition( + $populationNumber - $populationSuccesses, + $sampleNumber - $sampleSuccesses + ); + + return $successesPopulationAndSample * $adjustedPopulationAndSample / $numbersPopulationAndSample; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/LogNormal.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/LogNormal.php new file mode 100644 index 0000000..d572d23 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/LogNormal.php @@ -0,0 +1,139 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class LogNormal +{ + use ArrayEnabled; + + /** + * LOGNORMDIST. + * + * Returns the cumulative lognormal distribution of x, where ln(x) is normally distributed + * with parameters mean and standard_dev. + * + * @param mixed $value Float value for which we want the probability + * Or can be an array of values + * @param mixed $mean Mean value as a float + * Or can be an array of values + * @param mixed $stdDev Standard Deviation as a float + * Or can be an array of values + * + * @return array|float|string The result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function cumulative($value, $mean, $stdDev) + { + if (is_array($value) || is_array($mean) || is_array($stdDev)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $mean, $stdDev); + } + + try { + $value = DistributionValidations::validateFloat($value); + $mean = DistributionValidations::validateFloat($mean); + $stdDev = DistributionValidations::validateFloat($stdDev); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($value <= 0) || ($stdDev <= 0)) { + return ExcelError::NAN(); + } + + return StandardNormal::cumulative((log($value) - $mean) / $stdDev); + } + + /** + * LOGNORM.DIST. + * + * Returns the lognormal distribution of x, where ln(x) is normally distributed + * with parameters mean and standard_dev. + * + * @param mixed $value Float value for which we want the probability + * Or can be an array of values + * @param mixed $mean Mean value as a float + * Or can be an array of values + * @param mixed $stdDev Standard Deviation as a float + * Or can be an array of values + * @param mixed $cumulative Boolean value indicating if we want the cdf (true) or the pdf (false) + * Or can be an array of values + * + * @return array|float|string The result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function distribution($value, $mean, $stdDev, $cumulative = false) + { + if (is_array($value) || is_array($mean) || is_array($stdDev) || is_array($cumulative)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $mean, $stdDev, $cumulative); + } + + try { + $value = DistributionValidations::validateFloat($value); + $mean = DistributionValidations::validateFloat($mean); + $stdDev = DistributionValidations::validateFloat($stdDev); + $cumulative = DistributionValidations::validateBool($cumulative); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($value <= 0) || ($stdDev <= 0)) { + return ExcelError::NAN(); + } + + if ($cumulative === true) { + return StandardNormal::distribution((log($value) - $mean) / $stdDev, true); + } + + return (1 / (sqrt(2 * M_PI) * $stdDev * $value)) * + exp(0 - ((log($value) - $mean) ** 2 / (2 * $stdDev ** 2))); + } + + /** + * LOGINV. + * + * Returns the inverse of the lognormal cumulative distribution + * + * @param mixed $probability Float probability for which we want the value + * Or can be an array of values + * @param mixed $mean Mean Value as a float + * Or can be an array of values + * @param mixed $stdDev Standard Deviation as a float + * Or can be an array of values + * + * @return array|float|string The result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + * + * @TODO Try implementing P J Acklam's refinement algorithm for greater + * accuracy if I can get my head round the mathematics + * (as described at) http://home.online.no/~pjacklam/notes/invnorm/ + */ + public static function inverse($probability, $mean, $stdDev) + { + if (is_array($probability) || is_array($mean) || is_array($stdDev)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $probability, $mean, $stdDev); + } + + try { + $probability = DistributionValidations::validateProbability($probability); + $mean = DistributionValidations::validateFloat($mean); + $stdDev = DistributionValidations::validateFloat($stdDev); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($stdDev <= 0) { + return ExcelError::NAN(); + } + /** @var float */ + $inverse = StandardNormal::inverse($probability); + + return exp($mean + $stdDev * $inverse); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/NewtonRaphson.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/NewtonRaphson.php new file mode 100644 index 0000000..b994864 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/NewtonRaphson.php @@ -0,0 +1,63 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class NewtonRaphson +{ + private const MAX_ITERATIONS = 256; + + protected $callback; + + public function __construct(callable $callback) + { + $this->callback = $callback; + } + + public function execute(float $probability) + { + $xLo = 100; + $xHi = 0; + + $dx = 1; + $x = $xNew = 1; + $i = 0; + + while ((abs($dx) > Functions::PRECISION) && ($i++ < self::MAX_ITERATIONS)) { + // Apply Newton-Raphson step + $result = call_user_func($this->callback, $x); + $error = $result - $probability; + + if ($error == 0.0) { + $dx = 0; + } elseif ($error < 0.0) { + $xLo = $x; + } else { + $xHi = $x; + } + + // Avoid division by zero + if ($result != 0.0) { + $dx = $error / $result; + $xNew = $x - $dx; + } + + // If the NR fails to converge (which for example may be the + // case if the initial guess is too rough) we apply a bisection + // step to determine a more narrow interval around the root. + if (($xNew < $xLo) || ($xNew > $xHi) || ($result == 0.0)) { + $xNew = ($xLo + $xHi) / 2; + $dx = $xNew - $x; + } + $x = $xNew; + } + + if ($i == self::MAX_ITERATIONS) { + return ExcelError::NA(); + } + + return $x; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Normal.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Normal.php new file mode 100644 index 0000000..67533c4 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Normal.php @@ -0,0 +1,180 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Engineering; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Normal +{ + use ArrayEnabled; + + public const SQRT2PI = 2.5066282746310005024157652848110452530069867406099; + + /** + * NORMDIST. + * + * Returns the normal distribution for the specified mean and standard deviation. This + * function has a very wide range of applications in statistics, including hypothesis + * testing. + * + * @param mixed $value Float value for which we want the probability + * Or can be an array of values + * @param mixed $mean Mean value as a float + * Or can be an array of values + * @param mixed $stdDev Standard Deviation as a float + * Or can be an array of values + * @param mixed $cumulative Boolean value indicating if we want the cdf (true) or the pdf (false) + * Or can be an array of values + * + * @return array|float|string The result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function distribution($value, $mean, $stdDev, $cumulative) + { + if (is_array($value) || is_array($mean) || is_array($stdDev) || is_array($cumulative)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $mean, $stdDev, $cumulative); + } + + try { + $value = DistributionValidations::validateFloat($value); + $mean = DistributionValidations::validateFloat($mean); + $stdDev = DistributionValidations::validateFloat($stdDev); + $cumulative = DistributionValidations::validateBool($cumulative); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($stdDev < 0) { + return ExcelError::NAN(); + } + + if ($cumulative) { + return 0.5 * (1 + Engineering\Erf::erfValue(($value - $mean) / ($stdDev * sqrt(2)))); + } + + return (1 / (self::SQRT2PI * $stdDev)) * exp(0 - (($value - $mean) ** 2 / (2 * ($stdDev * $stdDev)))); + } + + /** + * NORMINV. + * + * Returns the inverse of the normal cumulative distribution for the specified mean and standard deviation. + * + * @param mixed $probability Float probability for which we want the value + * Or can be an array of values + * @param mixed $mean Mean Value as a float + * Or can be an array of values + * @param mixed $stdDev Standard Deviation as a float + * Or can be an array of values + * + * @return array|float|string The result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function inverse($probability, $mean, $stdDev) + { + if (is_array($probability) || is_array($mean) || is_array($stdDev)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $probability, $mean, $stdDev); + } + + try { + $probability = DistributionValidations::validateProbability($probability); + $mean = DistributionValidations::validateFloat($mean); + $stdDev = DistributionValidations::validateFloat($stdDev); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($stdDev < 0) { + return ExcelError::NAN(); + } + + return (self::inverseNcdf($probability) * $stdDev) + $mean; + } + + /* + * inverse_ncdf.php + * ------------------- + * begin : Friday, January 16, 2004 + * copyright : (C) 2004 Michael Nickerson + * email : nickersonm@yahoo.com + * + */ + private static function inverseNcdf($p) + { + // Inverse ncdf approximation by Peter J. Acklam, implementation adapted to + // PHP by Michael Nickerson, using Dr. Thomas Ziegler's C implementation as + // a guide. http://home.online.no/~pjacklam/notes/invnorm/index.html + // I have not checked the accuracy of this implementation. Be aware that PHP + // will truncate the coeficcients to 14 digits. + + // You have permission to use and distribute this function freely for + // whatever purpose you want, but please show common courtesy and give credit + // where credit is due. + + // Input paramater is $p - probability - where 0 < p < 1. + + // Coefficients in rational approximations + static $a = [ + 1 => -3.969683028665376e+01, + 2 => 2.209460984245205e+02, + 3 => -2.759285104469687e+02, + 4 => 1.383577518672690e+02, + 5 => -3.066479806614716e+01, + 6 => 2.506628277459239e+00, + ]; + + static $b = [ + 1 => -5.447609879822406e+01, + 2 => 1.615858368580409e+02, + 3 => -1.556989798598866e+02, + 4 => 6.680131188771972e+01, + 5 => -1.328068155288572e+01, + ]; + + static $c = [ + 1 => -7.784894002430293e-03, + 2 => -3.223964580411365e-01, + 3 => -2.400758277161838e+00, + 4 => -2.549732539343734e+00, + 5 => 4.374664141464968e+00, + 6 => 2.938163982698783e+00, + ]; + + static $d = [ + 1 => 7.784695709041462e-03, + 2 => 3.224671290700398e-01, + 3 => 2.445134137142996e+00, + 4 => 3.754408661907416e+00, + ]; + + // Define lower and upper region break-points. + $p_low = 0.02425; //Use lower region approx. below this + $p_high = 1 - $p_low; //Use upper region approx. above this + + if (0 < $p && $p < $p_low) { + // Rational approximation for lower region. + $q = sqrt(-2 * log($p)); + + return ((((($c[1] * $q + $c[2]) * $q + $c[3]) * $q + $c[4]) * $q + $c[5]) * $q + $c[6]) / + (((($d[1] * $q + $d[2]) * $q + $d[3]) * $q + $d[4]) * $q + 1); + } elseif ($p_high < $p && $p < 1) { + // Rational approximation for upper region. + $q = sqrt(-2 * log(1 - $p)); + + return -((((($c[1] * $q + $c[2]) * $q + $c[3]) * $q + $c[4]) * $q + $c[5]) * $q + $c[6]) / + (((($d[1] * $q + $d[2]) * $q + $d[3]) * $q + $d[4]) * $q + 1); + } + + // Rational approximation for central region. + $q = $p - 0.5; + $r = $q * $q; + + return ((((($a[1] * $r + $a[2]) * $r + $a[3]) * $r + $a[4]) * $r + $a[5]) * $r + $a[6]) * $q / + ((((($b[1] * $r + $b[2]) * $r + $b[3]) * $r + $b[4]) * $r + $b[5]) * $r + 1); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Poisson.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Poisson.php new file mode 100644 index 0000000..041c34a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Poisson.php @@ -0,0 +1,66 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +class Poisson +{ + use ArrayEnabled; + + /** + * POISSON. + * + * Returns the Poisson distribution. A common application of the Poisson distribution + * is predicting the number of events over a specific time, such as the number of + * cars arriving at a toll plaza in 1 minute. + * + * @param mixed $value Float value for which we want the probability + * Or can be an array of values + * @param mixed $mean Mean value as a float + * Or can be an array of values + * @param mixed $cumulative Boolean value indicating if we want the cdf (true) or the pdf (false) + * Or can be an array of values + * + * @return array|float|string The result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function distribution($value, $mean, $cumulative) + { + if (is_array($value) || is_array($mean) || is_array($cumulative)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $mean, $cumulative); + } + + try { + $value = DistributionValidations::validateFloat($value); + $mean = DistributionValidations::validateFloat($mean); + $cumulative = DistributionValidations::validateBool($cumulative); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($value < 0) || ($mean < 0)) { + return ExcelError::NAN(); + } + + if ($cumulative) { + $summer = 0; + $floor = floor($value); + for ($i = 0; $i <= $floor; ++$i) { + /** @var float */ + $fact = MathTrig\Factorial::fact($i); + $summer += $mean ** $i / $fact; + } + + return exp(0 - $mean) * $summer; + } + /** @var float */ + $fact = MathTrig\Factorial::fact($value); + + return (exp(0 - $mean) * $mean ** $value) / $fact; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/StandardNormal.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/StandardNormal.php new file mode 100644 index 0000000..a655fa7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/StandardNormal.php @@ -0,0 +1,151 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Averages; +use PhpOffice\PhpSpreadsheet\Calculation\Statistical\StandardDeviations; + +class StandardNormal +{ + use ArrayEnabled; + + /** + * NORMSDIST. + * + * Returns the standard normal cumulative distribution function. The distribution has + * a mean of 0 (zero) and a standard deviation of one. Use this function in place of a + * table of standard normal curve areas. + * + * NOTE: We don't need to check for arrays to array-enable this function, because that is already + * handled by the logic in Normal::distribution() + * All we need to do is pass the value through as scalar or as array. + * + * @param mixed $value Float value for which we want the probability + * Or can be an array of values + * + * @return array|float|string The result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function cumulative($value) + { + return Normal::distribution($value, 0, 1, true); + } + + /** + * NORM.S.DIST. + * + * Returns the standard normal cumulative distribution function. The distribution has + * a mean of 0 (zero) and a standard deviation of one. Use this function in place of a + * table of standard normal curve areas. + * + * NOTE: We don't need to check for arrays to array-enable this function, because that is already + * handled by the logic in Normal::distribution() + * All we need to do is pass the value and cumulative through as scalar or as array. + * + * @param mixed $value Float value for which we want the probability + * Or can be an array of values + * @param mixed $cumulative Boolean value indicating if we want the cdf (true) or the pdf (false) + * Or can be an array of values + * + * @return array|float|string The result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function distribution($value, $cumulative) + { + return Normal::distribution($value, 0, 1, $cumulative); + } + + /** + * NORMSINV. + * + * Returns the inverse of the standard normal cumulative distribution + * + * @param mixed $value float probability for which we want the value + * Or can be an array of values + * + * NOTE: We don't need to check for arrays to array-enable this function, because that is already + * handled by the logic in Normal::inverse() + * All we need to do is pass the value through as scalar or as array + * + * @return array|float|string The result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function inverse($value) + { + return Normal::inverse($value, 0, 1); + } + + /** + * GAUSS. + * + * Calculates the probability that a member of a standard normal population will fall between + * the mean and z standard deviations from the mean. + * + * @param mixed $value + * Or can be an array of values + * + * @return array|float|string The result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function gauss($value) + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + if (!is_numeric($value)) { + return ExcelError::VALUE(); + } + /** @var float */ + $dist = self::distribution($value, true); + + return $dist - 0.5; + } + + /** + * ZTEST. + * + * Returns the one-tailed P-value of a z-test. + * + * For a given hypothesized population mean, x, Z.TEST returns the probability that the sample mean would be + * greater than the average of observations in the data set (array) — that is, the observed sample mean. + * + * @param mixed $dataSet The dataset should be an array of float values for the observations + * @param mixed $m0 Alpha Parameter + * Or can be an array of values + * @param mixed $sigma A null or float value for the Beta (Standard Deviation) Parameter; + * if null, we use the standard deviation of the dataset + * Or can be an array of values + * + * @return array|float|string (string if result is an error) + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function zTest($dataSet, $m0, $sigma = null) + { + if (is_array($m0) || is_array($sigma)) { + return self::evaluateArrayArgumentsSubsetFrom([self::class, __FUNCTION__], 1, $dataSet, $m0, $sigma); + } + + $dataSet = Functions::flattenArrayIndexed($dataSet); + + if (!is_numeric($m0) || ($sigma !== null && !is_numeric($sigma))) { + return ExcelError::VALUE(); + } + + if ($sigma === null) { + /** @var float */ + $sigma = StandardDeviations::STDEV($dataSet); + } + $n = count($dataSet); + + return 1 - self::cumulative((Averages::average($dataSet) - $m0) / ($sigma / sqrt($n))); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/StudentT.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/StudentT.php new file mode 100644 index 0000000..8afc5c4 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/StudentT.php @@ -0,0 +1,139 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class StudentT +{ + use ArrayEnabled; + + private const MAX_ITERATIONS = 256; + + /** + * TDIST. + * + * Returns the probability of Student's T distribution. + * + * @param mixed $value Float value for the distribution + * Or can be an array of values + * @param mixed $degrees Integer value for degrees of freedom + * Or can be an array of values + * @param mixed $tails Integer value for the number of tails (1 or 2) + * Or can be an array of values + * + * @return array|float|string The result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function distribution($value, $degrees, $tails) + { + if (is_array($value) || is_array($degrees) || is_array($tails)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $degrees, $tails); + } + + try { + $value = DistributionValidations::validateFloat($value); + $degrees = DistributionValidations::validateInt($degrees); + $tails = DistributionValidations::validateInt($tails); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($value < 0) || ($degrees < 1) || ($tails < 1) || ($tails > 2)) { + return ExcelError::NAN(); + } + + return self::calculateDistribution($value, $degrees, $tails); + } + + /** + * TINV. + * + * Returns the one-tailed probability of the chi-squared distribution. + * + * @param mixed $probability Float probability for the function + * Or can be an array of values + * @param mixed $degrees Integer value for degrees of freedom + * Or can be an array of values + * + * @return array|float|string The result, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function inverse($probability, $degrees) + { + if (is_array($probability) || is_array($degrees)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $probability, $degrees); + } + + try { + $probability = DistributionValidations::validateProbability($probability); + $degrees = DistributionValidations::validateInt($degrees); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($degrees <= 0) { + return ExcelError::NAN(); + } + + $callback = function ($value) use ($degrees) { + return self::distribution($value, $degrees, 2); + }; + + $newtonRaphson = new NewtonRaphson($callback); + + return $newtonRaphson->execute($probability); + } + + /** + * @return float + */ + private static function calculateDistribution(float $value, int $degrees, int $tails) + { + // tdist, which finds the probability that corresponds to a given value + // of t with k degrees of freedom. This algorithm is translated from a + // pascal function on p81 of "Statistical Computing in Pascal" by D + // Cooke, A H Craven & G M Clark (1985: Edward Arnold (Pubs.) Ltd: + // London). The above Pascal algorithm is itself a translation of the + // fortran algoritm "AS 3" by B E Cooper of the Atlas Computer + // Laboratory as reported in (among other places) "Applied Statistics + // Algorithms", editied by P Griffiths and I D Hill (1985; Ellis + // Horwood Ltd.; W. Sussex, England). + $tterm = $degrees; + $ttheta = atan2($value, sqrt($tterm)); + $tc = cos($ttheta); + $ts = sin($ttheta); + + if (($degrees % 2) === 1) { + $ti = 3; + $tterm = $tc; + } else { + $ti = 2; + $tterm = 1; + } + + $tsum = $tterm; + while ($ti < $degrees) { + $tterm *= $tc * $tc * ($ti - 1) / $ti; + $tsum += $tterm; + $ti += 2; + } + + $tsum *= $ts; + if (($degrees % 2) == 1) { + $tsum = Functions::M_2DIVPI * ($tsum + $ttheta); + } + + $tValue = 0.5 * (1 + $tsum); + if ($tails == 1) { + return 1 - abs($tValue); + } + + return 1 - abs((1 - $tValue) - $tValue); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Weibull.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Weibull.php new file mode 100644 index 0000000..51392c4 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Weibull.php @@ -0,0 +1,57 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Weibull +{ + use ArrayEnabled; + + /** + * WEIBULL. + * + * Returns the Weibull distribution. Use this distribution in reliability + * analysis, such as calculating a device's mean time to failure. + * + * @param mixed $value Float value for the distribution + * Or can be an array of values + * @param mixed $alpha Float alpha Parameter + * Or can be an array of values + * @param mixed $beta Float beta Parameter + * Or can be an array of values + * @param mixed $cumulative Boolean value indicating if we want the cdf (true) or the pdf (false) + * Or can be an array of values + * + * @return array|float|string (string if result is an error) + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function distribution($value, $alpha, $beta, $cumulative) + { + if (is_array($value) || is_array($alpha) || is_array($beta) || is_array($cumulative)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $alpha, $beta, $cumulative); + } + + try { + $value = DistributionValidations::validateFloat($value); + $alpha = DistributionValidations::validateFloat($alpha); + $beta = DistributionValidations::validateFloat($beta); + $cumulative = DistributionValidations::validateBool($cumulative); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($value < 0) || ($alpha <= 0) || ($beta <= 0)) { + return ExcelError::NAN(); + } + + if ($cumulative) { + return 1 - exp(0 - ($value / $beta) ** $alpha); + } + + return ($alpha / $beta ** $alpha) * $value ** ($alpha - 1) * exp(0 - ($value / $beta) ** $alpha); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/MaxMinBase.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/MaxMinBase.php new file mode 100644 index 0000000..bd17b06 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/MaxMinBase.php @@ -0,0 +1,17 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +abstract class MaxMinBase +{ + protected static function datatypeAdjustmentAllowStrings($value) + { + if (is_bool($value)) { + return (int) $value; + } elseif (is_string($value)) { + return 0; + } + + return $value; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Maximum.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Maximum.php new file mode 100644 index 0000000..3f8436f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Maximum.php @@ -0,0 +1,78 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; + +class Maximum extends MaxMinBase +{ + /** + * MAX. + * + * MAX returns the value of the element of the values passed that has the highest value, + * with negative numbers considered smaller than positive numbers. + * + * Excel Function: + * MAX(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float + */ + public static function max(...$args) + { + $returnValue = null; + + // Loop through arguments + $aArgs = Functions::flattenArray($args); + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + if (($returnValue === null) || ($arg > $returnValue)) { + $returnValue = $arg; + } + } + } + + if ($returnValue === null) { + return 0; + } + + return $returnValue; + } + + /** + * MAXA. + * + * Returns the greatest value in a list of arguments, including numbers, text, and logical values + * + * Excel Function: + * MAXA(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float + */ + public static function maxA(...$args) + { + $returnValue = null; + + // Loop through arguments + $aArgs = Functions::flattenArray($args); + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) || (is_bool($arg)) || ((is_string($arg) && ($arg != '')))) { + $arg = self::datatypeAdjustmentAllowStrings($arg); + if (($returnValue === null) || ($arg > $returnValue)) { + $returnValue = $arg; + } + } + } + + if ($returnValue === null) { + return 0; + } + + return $returnValue; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Minimum.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Minimum.php new file mode 100644 index 0000000..596aad7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Minimum.php @@ -0,0 +1,78 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; + +class Minimum extends MaxMinBase +{ + /** + * MIN. + * + * MIN returns the value of the element of the values passed that has the smallest value, + * with negative numbers considered smaller than positive numbers. + * + * Excel Function: + * MIN(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float + */ + public static function min(...$args) + { + $returnValue = null; + + // Loop through arguments + $aArgs = Functions::flattenArray($args); + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + if (($returnValue === null) || ($arg < $returnValue)) { + $returnValue = $arg; + } + } + } + + if ($returnValue === null) { + return 0; + } + + return $returnValue; + } + + /** + * MINA. + * + * Returns the smallest value in a list of arguments, including numbers, text, and logical values + * + * Excel Function: + * MINA(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float + */ + public static function minA(...$args) + { + $returnValue = null; + + // Loop through arguments + $aArgs = Functions::flattenArray($args); + foreach ($aArgs as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) || (is_bool($arg)) || ((is_string($arg) && ($arg != '')))) { + $arg = self::datatypeAdjustmentAllowStrings($arg); + if (($returnValue === null) || ($arg < $returnValue)) { + $returnValue = $arg; + } + } + } + + if ($returnValue === null) { + return 0; + } + + return $returnValue; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Percentiles.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Percentiles.php new file mode 100644 index 0000000..9973823 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Percentiles.php @@ -0,0 +1,206 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Percentiles +{ + public const RANK_SORT_DESCENDING = 0; + + public const RANK_SORT_ASCENDING = 1; + + /** + * PERCENTILE. + * + * Returns the nth percentile of values in a range.. + * + * Excel Function: + * PERCENTILE(value1[,value2[, ...]],entry) + * + * @param mixed $args Data values + * + * @return float|string The result, or a string containing an error + */ + public static function PERCENTILE(...$args) + { + $aArgs = Functions::flattenArray($args); + + // Calculate + $entry = array_pop($aArgs); + + try { + $entry = StatisticalValidations::validateFloat($entry); + } catch (Exception $e) { + return $e->getMessage(); + } + + if (($entry < 0) || ($entry > 1)) { + return ExcelError::NAN(); + } + + $mArgs = self::percentileFilterValues($aArgs); + $mValueCount = count($mArgs); + if ($mValueCount > 0) { + sort($mArgs); + $count = Counts::COUNT($mArgs); + $index = $entry * ($count - 1); + $iBase = floor($index); + if ($index == $iBase) { + return $mArgs[$index]; + } + $iNext = $iBase + 1; + $iProportion = $index - $iBase; + + return $mArgs[$iBase] + (($mArgs[$iNext] - $mArgs[$iBase]) * $iProportion); + } + + return ExcelError::NAN(); + } + + /** + * PERCENTRANK. + * + * Returns the rank of a value in a data set as a percentage of the data set. + * Note that the returned rank is simply rounded to the appropriate significant digits, + * rather than floored (as MS Excel), so value 3 for a value set of 1, 2, 3, 4 will return + * 0.667 rather than 0.666 + * + * @param mixed $valueSet An array of (float) values, or a reference to, a list of numbers + * @param mixed $value The number whose rank you want to find + * @param mixed $significance The (integer) number of significant digits for the returned percentage value + * + * @return float|string (string if result is an error) + */ + public static function PERCENTRANK($valueSet, $value, $significance = 3) + { + $valueSet = Functions::flattenArray($valueSet); + $value = Functions::flattenSingleValue($value); + $significance = ($significance === null) ? 3 : Functions::flattenSingleValue($significance); + + try { + $value = StatisticalValidations::validateFloat($value); + $significance = StatisticalValidations::validateInt($significance); + } catch (Exception $e) { + return $e->getMessage(); + } + + $valueSet = self::rankFilterValues($valueSet); + $valueCount = count($valueSet); + if ($valueCount == 0) { + return ExcelError::NA(); + } + sort($valueSet, SORT_NUMERIC); + + $valueAdjustor = $valueCount - 1; + if (($value < $valueSet[0]) || ($value > $valueSet[$valueAdjustor])) { + return ExcelError::NA(); + } + + $pos = array_search($value, $valueSet); + if ($pos === false) { + $pos = 0; + $testValue = $valueSet[0]; + while ($testValue < $value) { + $testValue = $valueSet[++$pos]; + } + --$pos; + $pos += (($value - $valueSet[$pos]) / ($testValue - $valueSet[$pos])); + } + + return round($pos / $valueAdjustor, $significance); + } + + /** + * QUARTILE. + * + * Returns the quartile of a data set. + * + * Excel Function: + * QUARTILE(value1[,value2[, ...]],entry) + * + * @param mixed $args Data values + * + * @return float|string The result, or a string containing an error + */ + public static function QUARTILE(...$args) + { + $aArgs = Functions::flattenArray($args); + $entry = array_pop($aArgs); + + try { + $entry = StatisticalValidations::validateFloat($entry); + } catch (Exception $e) { + return $e->getMessage(); + } + + $entry = floor($entry); + $entry /= 4; + if (($entry < 0) || ($entry > 1)) { + return ExcelError::NAN(); + } + + return self::PERCENTILE($aArgs, $entry); + } + + /** + * RANK. + * + * Returns the rank of a number in a list of numbers. + * + * @param mixed $value The number whose rank you want to find + * @param mixed $valueSet An array of float values, or a reference to, a list of numbers + * @param mixed $order Order to sort the values in the value set + * + * @return float|string The result, or a string containing an error (0 = Descending, 1 = Ascending) + */ + public static function RANK($value, $valueSet, $order = self::RANK_SORT_DESCENDING) + { + $value = Functions::flattenSingleValue($value); + $valueSet = Functions::flattenArray($valueSet); + $order = ($order === null) ? self::RANK_SORT_DESCENDING : Functions::flattenSingleValue($order); + + try { + $value = StatisticalValidations::validateFloat($value); + $order = StatisticalValidations::validateInt($order); + } catch (Exception $e) { + return $e->getMessage(); + } + + $valueSet = self::rankFilterValues($valueSet); + if ($order === self::RANK_SORT_DESCENDING) { + rsort($valueSet, SORT_NUMERIC); + } else { + sort($valueSet, SORT_NUMERIC); + } + + $pos = array_search($value, $valueSet); + if ($pos === false) { + return ExcelError::NA(); + } + + return ++$pos; + } + + protected static function percentileFilterValues(array $dataSet) + { + return array_filter( + $dataSet, + function ($value): bool { + return is_numeric($value) && !is_string($value); + } + ); + } + + protected static function rankFilterValues(array $dataSet) + { + return array_filter( + $dataSet, + function ($value): bool { + return is_numeric($value); + } + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Permutations.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Permutations.php new file mode 100644 index 0000000..5d9d304 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Permutations.php @@ -0,0 +1,90 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Calculation\MathTrig; +use PhpOffice\PhpSpreadsheet\Shared\IntOrFloat; + +class Permutations +{ + use ArrayEnabled; + + /** + * PERMUT. + * + * Returns the number of permutations for a given number of objects that can be + * selected from number objects. A permutation is any set or subset of objects or + * events where internal order is significant. Permutations are different from + * combinations, for which the internal order is not significant. Use this function + * for lottery-style probability calculations. + * + * @param mixed $numObjs Integer number of different objects + * Or can be an array of values + * @param mixed $numInSet Integer number of objects in each permutation + * Or can be an array of values + * + * @return array|float|int|string Number of permutations, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function PERMUT($numObjs, $numInSet) + { + if (is_array($numObjs) || is_array($numInSet)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $numObjs, $numInSet); + } + + try { + $numObjs = StatisticalValidations::validateInt($numObjs); + $numInSet = StatisticalValidations::validateInt($numInSet); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($numObjs < $numInSet) { + return ExcelError::NAN(); + } + $result = round(MathTrig\Factorial::fact($numObjs) / MathTrig\Factorial::fact($numObjs - $numInSet)); + + return IntOrFloat::evaluate($result); + } + + /** + * PERMUTATIONA. + * + * Returns the number of permutations for a given number of objects (with repetitions) + * that can be selected from the total objects. + * + * @param mixed $numObjs Integer number of different objects + * Or can be an array of values + * @param mixed $numInSet Integer number of objects in each permutation + * Or can be an array of values + * + * @return array|float|int|string Number of permutations, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function PERMUTATIONA($numObjs, $numInSet) + { + if (is_array($numObjs) || is_array($numInSet)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $numObjs, $numInSet); + } + + try { + $numObjs = StatisticalValidations::validateInt($numObjs); + $numInSet = StatisticalValidations::validateInt($numInSet); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($numObjs < 0 || $numInSet < 0) { + return ExcelError::NAN(); + } + + $result = $numObjs ** $numInSet; + + return IntOrFloat::evaluate($result); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Size.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Size.php new file mode 100644 index 0000000..2eef5fc --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Size.php @@ -0,0 +1,97 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Size +{ + /** + * LARGE. + * + * Returns the nth largest value in a data set. You can use this function to + * select a value based on its relative standing. + * + * Excel Function: + * LARGE(value1[,value2[, ...]],entry) + * + * @param mixed $args Data values + * + * @return float|string The result, or a string containing an error + */ + public static function large(...$args) + { + $aArgs = Functions::flattenArray($args); + $entry = array_pop($aArgs); + + if ((is_numeric($entry)) && (!is_string($entry))) { + $entry = (int) floor($entry); + + $mArgs = self::filter($aArgs); + $count = Counts::COUNT($mArgs); + --$entry; + if ($count === 0 || $entry < 0 || $entry >= $count) { + return ExcelError::NAN(); + } + rsort($mArgs); + + return $mArgs[$entry]; + } + + return ExcelError::VALUE(); + } + + /** + * SMALL. + * + * Returns the nth smallest value in a data set. You can use this function to + * select a value based on its relative standing. + * + * Excel Function: + * SMALL(value1[,value2[, ...]],entry) + * + * @param mixed $args Data values + * + * @return float|string The result, or a string containing an error + */ + public static function small(...$args) + { + $aArgs = Functions::flattenArray($args); + + $entry = array_pop($aArgs); + + if ((is_numeric($entry)) && (!is_string($entry))) { + $entry = (int) floor($entry); + + $mArgs = self::filter($aArgs); + $count = Counts::COUNT($mArgs); + --$entry; + if ($count === 0 || $entry < 0 || $entry >= $count) { + return ExcelError::NAN(); + } + sort($mArgs); + + return $mArgs[$entry]; + } + + return ExcelError::VALUE(); + } + + /** + * @param mixed[] $args Data values + */ + protected static function filter(array $args): array + { + $mArgs = []; + + foreach ($args as $arg) { + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $mArgs[] = $arg; + } + } + + return $mArgs; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/StandardDeviations.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/StandardDeviations.php new file mode 100644 index 0000000..af27120 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/StandardDeviations.php @@ -0,0 +1,95 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +class StandardDeviations +{ + /** + * STDEV. + * + * Estimates standard deviation based on a sample. The standard deviation is a measure of how + * widely values are dispersed from the average value (the mean). + * + * Excel Function: + * STDEV(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string The result, or a string containing an error + */ + public static function STDEV(...$args) + { + $result = Variances::VAR(...$args); + if (!is_numeric($result)) { + return $result; + } + + return sqrt((float) $result); + } + + /** + * STDEVA. + * + * Estimates standard deviation based on a sample, including numbers, text, and logical values + * + * Excel Function: + * STDEVA(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function STDEVA(...$args) + { + $result = Variances::VARA(...$args); + if (!is_numeric($result)) { + return $result; + } + + return sqrt((float) $result); + } + + /** + * STDEVP. + * + * Calculates standard deviation based on the entire population + * + * Excel Function: + * STDEVP(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function STDEVP(...$args) + { + $result = Variances::VARP(...$args); + if (!is_numeric($result)) { + return $result; + } + + return sqrt((float) $result); + } + + /** + * STDEVPA. + * + * Calculates standard deviation based on the entire population, including numbers, text, and logical values + * + * Excel Function: + * STDEVPA(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string + */ + public static function STDEVPA(...$args) + { + $result = Variances::VARPA(...$args); + if (!is_numeric($result)) { + return $result; + } + + return sqrt((float) $result); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Standardize.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Standardize.php new file mode 100644 index 0000000..51b0a51 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Standardize.php @@ -0,0 +1,49 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Standardize extends StatisticalValidations +{ + use ArrayEnabled; + + /** + * STANDARDIZE. + * + * Returns a normalized value from a distribution characterized by mean and standard_dev. + * + * @param array|float $value Value to normalize + * Or can be an array of values + * @param array|float $mean Mean Value + * Or can be an array of values + * @param array|float $stdDev Standard Deviation + * Or can be an array of values + * + * @return array|float|string Standardized value, or a string containing an error + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function execute($value, $mean, $stdDev) + { + if (is_array($value) || is_array($mean) || is_array($stdDev)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $mean, $stdDev); + } + + try { + $value = self::validateFloat($value); + $mean = self::validateFloat($mean); + $stdDev = self::validateFloat($stdDev); + } catch (Exception $e) { + return $e->getMessage(); + } + + if ($stdDev <= 0) { + return ExcelError::NAN(); + } + + return ($value - $mean) / $stdDev; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/StatisticalValidations.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/StatisticalValidations.php new file mode 100644 index 0000000..e23a52c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/StatisticalValidations.php @@ -0,0 +1,45 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class StatisticalValidations +{ + /** + * @param mixed $value + */ + public static function validateFloat($value): float + { + if (!is_numeric($value)) { + throw new Exception(ExcelError::VALUE()); + } + + return (float) $value; + } + + /** + * @param mixed $value + */ + public static function validateInt($value): int + { + if (!is_numeric($value)) { + throw new Exception(ExcelError::VALUE()); + } + + return (int) floor((float) $value); + } + + /** + * @param mixed $value + */ + public static function validateBool($value): bool + { + if (!is_bool($value) && !is_numeric($value)) { + throw new Exception(ExcelError::VALUE()); + } + + return (bool) $value; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Trends.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Trends.php new file mode 100644 index 0000000..af73519 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Trends.php @@ -0,0 +1,430 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Shared\Trend\Trend; + +class Trends +{ + use ArrayEnabled; + + private static function filterTrendValues(array &$array1, array &$array2): void + { + foreach ($array1 as $key => $value) { + if ((is_bool($value)) || (is_string($value)) || ($value === null)) { + unset($array1[$key], $array2[$key]); + } + } + } + + private static function checkTrendArrays(&$array1, &$array2): void + { + if (!is_array($array1)) { + $array1 = [$array1]; + } + if (!is_array($array2)) { + $array2 = [$array2]; + } + + $array1 = Functions::flattenArray($array1); + $array2 = Functions::flattenArray($array2); + + self::filterTrendValues($array1, $array2); + self::filterTrendValues($array2, $array1); + + // Reset the array indexes + $array1 = array_merge($array1); + $array2 = array_merge($array2); + } + + protected static function validateTrendArrays(array $yValues, array $xValues): void + { + $yValueCount = count($yValues); + $xValueCount = count($xValues); + + if (($yValueCount === 0) || ($yValueCount !== $xValueCount)) { + throw new Exception(ExcelError::NA()); + } elseif ($yValueCount === 1) { + throw new Exception(ExcelError::DIV0()); + } + } + + /** + * CORREL. + * + * Returns covariance, the average of the products of deviations for each data point pair. + * + * @param mixed $yValues array of mixed Data Series Y + * @param null|mixed $xValues array of mixed Data Series X + * + * @return float|string + */ + public static function CORREL($yValues, $xValues = null) + { + if (($xValues === null) || (!is_array($yValues)) || (!is_array($xValues))) { + return ExcelError::VALUE(); + } + + try { + self::checkTrendArrays($yValues, $xValues); + self::validateTrendArrays($yValues, $xValues); + } catch (Exception $e) { + return $e->getMessage(); + } + + $bestFitLinear = Trend::calculate(Trend::TREND_LINEAR, $yValues, $xValues); + + return $bestFitLinear->getCorrelation(); + } + + /** + * COVAR. + * + * Returns covariance, the average of the products of deviations for each data point pair. + * + * @param mixed $yValues array of mixed Data Series Y + * @param mixed $xValues array of mixed Data Series X + * + * @return float|string + */ + public static function COVAR($yValues, $xValues) + { + try { + self::checkTrendArrays($yValues, $xValues); + self::validateTrendArrays($yValues, $xValues); + } catch (Exception $e) { + return $e->getMessage(); + } + + $bestFitLinear = Trend::calculate(Trend::TREND_LINEAR, $yValues, $xValues); + + return $bestFitLinear->getCovariance(); + } + + /** + * FORECAST. + * + * Calculates, or predicts, a future value by using existing values. + * The predicted value is a y-value for a given x-value. + * + * @param mixed $xValue Float value of X for which we want to find Y + * Or can be an array of values + * @param mixed $yValues array of mixed Data Series Y + * @param mixed $xValues of mixed Data Series X + * + * @return array|bool|float|string + * If an array of numbers is passed as an argument, then the returned result will also be an array + * with the same dimensions + */ + public static function FORECAST($xValue, $yValues, $xValues) + { + if (is_array($xValue)) { + return self::evaluateArrayArgumentsSubset([self::class, __FUNCTION__], 1, $xValue, $yValues, $xValues); + } + + try { + $xValue = StatisticalValidations::validateFloat($xValue); + self::checkTrendArrays($yValues, $xValues); + self::validateTrendArrays($yValues, $xValues); + } catch (Exception $e) { + return $e->getMessage(); + } + + $bestFitLinear = Trend::calculate(Trend::TREND_LINEAR, $yValues, $xValues); + + return $bestFitLinear->getValueOfYForX($xValue); + } + + /** + * GROWTH. + * + * Returns values along a predicted exponential Trend + * + * @param mixed[] $yValues Data Series Y + * @param mixed[] $xValues Data Series X + * @param mixed[] $newValues Values of X for which we want to find Y + * @param mixed $const A logical (boolean) value specifying whether to force the intersect to equal 0 or not + * + * @return float[] + */ + public static function GROWTH($yValues, $xValues = [], $newValues = [], $const = true) + { + $yValues = Functions::flattenArray($yValues); + $xValues = Functions::flattenArray($xValues); + $newValues = Functions::flattenArray($newValues); + $const = ($const === null) ? true : (bool) Functions::flattenSingleValue($const); + + $bestFitExponential = Trend::calculate(Trend::TREND_EXPONENTIAL, $yValues, $xValues, $const); + if (empty($newValues)) { + $newValues = $bestFitExponential->getXValues(); + } + + $returnArray = []; + foreach ($newValues as $xValue) { + $returnArray[0][] = [$bestFitExponential->getValueOfYForX($xValue)]; + } + + return $returnArray; + } + + /** + * INTERCEPT. + * + * Calculates the point at which a line will intersect the y-axis by using existing x-values and y-values. + * + * @param mixed[] $yValues Data Series Y + * @param mixed[] $xValues Data Series X + * + * @return float|string + */ + public static function INTERCEPT($yValues, $xValues) + { + try { + self::checkTrendArrays($yValues, $xValues); + self::validateTrendArrays($yValues, $xValues); + } catch (Exception $e) { + return $e->getMessage(); + } + + $bestFitLinear = Trend::calculate(Trend::TREND_LINEAR, $yValues, $xValues); + + return $bestFitLinear->getIntersect(); + } + + /** + * LINEST. + * + * Calculates the statistics for a line by using the "least squares" method to calculate a straight line + * that best fits your data, and then returns an array that describes the line. + * + * @param mixed[] $yValues Data Series Y + * @param null|mixed[] $xValues Data Series X + * @param mixed $const A logical (boolean) value specifying whether to force the intersect to equal 0 or not + * @param mixed $stats A logical (boolean) value specifying whether to return additional regression statistics + * + * @return array|int|string The result, or a string containing an error + */ + public static function LINEST($yValues, $xValues = null, $const = true, $stats = false) + { + $const = ($const === null) ? true : (bool) Functions::flattenSingleValue($const); + $stats = ($stats === null) ? false : (bool) Functions::flattenSingleValue($stats); + if ($xValues === null) { + $xValues = $yValues; + } + + try { + self::checkTrendArrays($yValues, $xValues); + self::validateTrendArrays($yValues, $xValues); + } catch (Exception $e) { + return $e->getMessage(); + } + + $bestFitLinear = Trend::calculate(Trend::TREND_LINEAR, $yValues, $xValues, $const); + + if ($stats === true) { + return [ + [ + $bestFitLinear->getSlope(), + $bestFitLinear->getIntersect(), + ], + [ + $bestFitLinear->getSlopeSE(), + ($const === false) ? ExcelError::NA() : $bestFitLinear->getIntersectSE(), + ], + [ + $bestFitLinear->getGoodnessOfFit(), + $bestFitLinear->getStdevOfResiduals(), + ], + [ + $bestFitLinear->getF(), + $bestFitLinear->getDFResiduals(), + ], + [ + $bestFitLinear->getSSRegression(), + $bestFitLinear->getSSResiduals(), + ], + ]; + } + + return [ + $bestFitLinear->getSlope(), + $bestFitLinear->getIntersect(), + ]; + } + + /** + * LOGEST. + * + * Calculates an exponential curve that best fits the X and Y data series, + * and then returns an array that describes the line. + * + * @param mixed[] $yValues Data Series Y + * @param null|mixed[] $xValues Data Series X + * @param mixed $const A logical (boolean) value specifying whether to force the intersect to equal 0 or not + * @param mixed $stats A logical (boolean) value specifying whether to return additional regression statistics + * + * @return array|int|string The result, or a string containing an error + */ + public static function LOGEST($yValues, $xValues = null, $const = true, $stats = false) + { + $const = ($const === null) ? true : (bool) Functions::flattenSingleValue($const); + $stats = ($stats === null) ? false : (bool) Functions::flattenSingleValue($stats); + if ($xValues === null) { + $xValues = $yValues; + } + + try { + self::checkTrendArrays($yValues, $xValues); + self::validateTrendArrays($yValues, $xValues); + } catch (Exception $e) { + return $e->getMessage(); + } + + foreach ($yValues as $value) { + if ($value < 0.0) { + return ExcelError::NAN(); + } + } + + $bestFitExponential = Trend::calculate(Trend::TREND_EXPONENTIAL, $yValues, $xValues, $const); + + if ($stats === true) { + return [ + [ + $bestFitExponential->getSlope(), + $bestFitExponential->getIntersect(), + ], + [ + $bestFitExponential->getSlopeSE(), + ($const === false) ? ExcelError::NA() : $bestFitExponential->getIntersectSE(), + ], + [ + $bestFitExponential->getGoodnessOfFit(), + $bestFitExponential->getStdevOfResiduals(), + ], + [ + $bestFitExponential->getF(), + $bestFitExponential->getDFResiduals(), + ], + [ + $bestFitExponential->getSSRegression(), + $bestFitExponential->getSSResiduals(), + ], + ]; + } + + return [ + $bestFitExponential->getSlope(), + $bestFitExponential->getIntersect(), + ]; + } + + /** + * RSQ. + * + * Returns the square of the Pearson product moment correlation coefficient through data points + * in known_y's and known_x's. + * + * @param mixed[] $yValues Data Series Y + * @param mixed[] $xValues Data Series X + * + * @return float|string The result, or a string containing an error + */ + public static function RSQ($yValues, $xValues) + { + try { + self::checkTrendArrays($yValues, $xValues); + self::validateTrendArrays($yValues, $xValues); + } catch (Exception $e) { + return $e->getMessage(); + } + + $bestFitLinear = Trend::calculate(Trend::TREND_LINEAR, $yValues, $xValues); + + return $bestFitLinear->getGoodnessOfFit(); + } + + /** + * SLOPE. + * + * Returns the slope of the linear regression line through data points in known_y's and known_x's. + * + * @param mixed[] $yValues Data Series Y + * @param mixed[] $xValues Data Series X + * + * @return float|string The result, or a string containing an error + */ + public static function SLOPE($yValues, $xValues) + { + try { + self::checkTrendArrays($yValues, $xValues); + self::validateTrendArrays($yValues, $xValues); + } catch (Exception $e) { + return $e->getMessage(); + } + + $bestFitLinear = Trend::calculate(Trend::TREND_LINEAR, $yValues, $xValues); + + return $bestFitLinear->getSlope(); + } + + /** + * STEYX. + * + * Returns the standard error of the predicted y-value for each x in the regression. + * + * @param mixed[] $yValues Data Series Y + * @param mixed[] $xValues Data Series X + * + * @return float|string + */ + public static function STEYX($yValues, $xValues) + { + try { + self::checkTrendArrays($yValues, $xValues); + self::validateTrendArrays($yValues, $xValues); + } catch (Exception $e) { + return $e->getMessage(); + } + + $bestFitLinear = Trend::calculate(Trend::TREND_LINEAR, $yValues, $xValues); + + return $bestFitLinear->getStdevOfResiduals(); + } + + /** + * TREND. + * + * Returns values along a linear Trend + * + * @param mixed[] $yValues Data Series Y + * @param mixed[] $xValues Data Series X + * @param mixed[] $newValues Values of X for which we want to find Y + * @param mixed $const A logical (boolean) value specifying whether to force the intersect to equal 0 or not + * + * @return float[] + */ + public static function TREND($yValues, $xValues = [], $newValues = [], $const = true) + { + $yValues = Functions::flattenArray($yValues); + $xValues = Functions::flattenArray($xValues); + $newValues = Functions::flattenArray($newValues); + $const = ($const === null) ? true : (bool) Functions::flattenSingleValue($const); + + $bestFitLinear = Trend::calculate(Trend::TREND_LINEAR, $yValues, $xValues, $const); + if (empty($newValues)) { + $newValues = $bestFitLinear->getXValues(); + } + + $returnArray = []; + foreach ($newValues as $xValue) { + $returnArray[0][] = [$bestFitLinear->getValueOfYForX($xValue)]; + } + + return $returnArray; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/VarianceBase.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/VarianceBase.php new file mode 100644 index 0000000..e533467 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/VarianceBase.php @@ -0,0 +1,28 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; + +abstract class VarianceBase +{ + protected static function datatypeAdjustmentAllowStrings($value) + { + if (is_bool($value)) { + return (int) $value; + } elseif (is_string($value)) { + return 0; + } + + return $value; + } + + protected static function datatypeAdjustmentBooleans($value) + { + if (is_bool($value) && (Functions::getCompatibilityMode() == Functions::COMPATIBILITY_OPENOFFICE)) { + return (int) $value; + } + + return $value; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Variances.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Variances.php new file mode 100644 index 0000000..35d01d1 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Variances.php @@ -0,0 +1,186 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; + +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Variances extends VarianceBase +{ + /** + * VAR. + * + * Estimates variance based on a sample. + * + * Excel Function: + * VAR(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string (string if result is an error) + */ + public static function VAR(...$args) + { + $returnValue = ExcelError::DIV0(); + + $summerA = $summerB = 0.0; + + // Loop through arguments + $aArgs = Functions::flattenArray($args); + $aCount = 0; + foreach ($aArgs as $arg) { + $arg = self::datatypeAdjustmentBooleans($arg); + + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $summerA += ($arg * $arg); + $summerB += $arg; + ++$aCount; + } + } + + if ($aCount > 1) { + $summerA *= $aCount; + $summerB *= $summerB; + + return ($summerA - $summerB) / ($aCount * ($aCount - 1)); + } + + return $returnValue; + } + + /** + * VARA. + * + * Estimates variance based on a sample, including numbers, text, and logical values + * + * Excel Function: + * VARA(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string (string if result is an error) + */ + public static function VARA(...$args) + { + $returnValue = ExcelError::DIV0(); + + $summerA = $summerB = 0.0; + + // Loop through arguments + $aArgs = Functions::flattenArrayIndexed($args); + $aCount = 0; + foreach ($aArgs as $k => $arg) { + if ((is_string($arg)) && (Functions::isValue($k))) { + return ExcelError::VALUE(); + } elseif ((is_string($arg)) && (!Functions::isMatrixValue($k))) { + } else { + // Is it a numeric value? + if ((is_numeric($arg)) || (is_bool($arg)) || ((is_string($arg) & ($arg != '')))) { + $arg = self::datatypeAdjustmentAllowStrings($arg); + $summerA += ($arg * $arg); + $summerB += $arg; + ++$aCount; + } + } + } + + if ($aCount > 1) { + $summerA *= $aCount; + $summerB *= $summerB; + + return ($summerA - $summerB) / ($aCount * ($aCount - 1)); + } + + return $returnValue; + } + + /** + * VARP. + * + * Calculates variance based on the entire population + * + * Excel Function: + * VARP(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string (string if result is an error) + */ + public static function VARP(...$args) + { + // Return value + $returnValue = ExcelError::DIV0(); + + $summerA = $summerB = 0.0; + + // Loop through arguments + $aArgs = Functions::flattenArray($args); + $aCount = 0; + foreach ($aArgs as $arg) { + $arg = self::datatypeAdjustmentBooleans($arg); + + // Is it a numeric value? + if ((is_numeric($arg)) && (!is_string($arg))) { + $summerA += ($arg * $arg); + $summerB += $arg; + ++$aCount; + } + } + + if ($aCount > 0) { + $summerA *= $aCount; + $summerB *= $summerB; + + return ($summerA - $summerB) / ($aCount * $aCount); + } + + return $returnValue; + } + + /** + * VARPA. + * + * Calculates variance based on the entire population, including numbers, text, and logical values + * + * Excel Function: + * VARPA(value1[,value2[, ...]]) + * + * @param mixed ...$args Data values + * + * @return float|string (string if result is an error) + */ + public static function VARPA(...$args) + { + $returnValue = ExcelError::DIV0(); + + $summerA = $summerB = 0.0; + + // Loop through arguments + $aArgs = Functions::flattenArrayIndexed($args); + $aCount = 0; + foreach ($aArgs as $k => $arg) { + if ((is_string($arg)) && (Functions::isValue($k))) { + return ExcelError::VALUE(); + } elseif ((is_string($arg)) && (!Functions::isMatrixValue($k))) { + } else { + // Is it a numeric value? + if ((is_numeric($arg)) || (is_bool($arg)) || ((is_string($arg) & ($arg != '')))) { + $arg = self::datatypeAdjustmentAllowStrings($arg); + $summerA += ($arg * $arg); + $summerB += $arg; + ++$aCount; + } + } + } + + if ($aCount > 0) { + $summerA *= $aCount; + $summerB *= $summerB; + + return ($summerA - $summerB) / ($aCount * $aCount); + } + + return $returnValue; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData.php new file mode 100644 index 0000000..6757a8d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData.php @@ -0,0 +1,448 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +use DateTimeInterface; + +/** + * @deprecated 1.18.0 + */ +class TextData +{ + /** + * CHARACTER. + * + * @Deprecated 1.18.0 + * + * @see Use the character() method in the TextData\CharacterConvert class instead + * + * @param string $character Value + * + * @return array|string + */ + public static function CHARACTER($character) + { + return TextData\CharacterConvert::character($character); + } + + /** + * TRIMNONPRINTABLE. + * + * @Deprecated 1.18.0 + * + * @see Use the nonPrintable() method in the TextData\Trim class instead + * + * @param mixed $stringValue Value to check + * + * @return null|array|string + */ + public static function TRIMNONPRINTABLE($stringValue = '') + { + return TextData\Trim::nonPrintable($stringValue); + } + + /** + * TRIMSPACES. + * + * @Deprecated 1.18.0 + * + * @see Use the spaces() method in the TextData\Trim class instead + * + * @param mixed $stringValue Value to check + * + * @return array|string + */ + public static function TRIMSPACES($stringValue = '') + { + return TextData\Trim::spaces($stringValue); + } + + /** + * ASCIICODE. + * + * @Deprecated 1.18.0 + * + * @see Use the code() method in the TextData\CharacterConvert class instead + * + * @param array|string $characters Value + * + * @return array|int|string A string if arguments are invalid + */ + public static function ASCIICODE($characters) + { + return TextData\CharacterConvert::code($characters); + } + + /** + * CONCATENATE. + * + * @Deprecated 1.18.0 + * + * @see Use the CONCATENATE() method in the TextData\Concatenate class instead + * + * @return string + */ + public static function CONCATENATE(...$args) + { + return TextData\Concatenate::CONCATENATE(...$args); + } + + /** + * DOLLAR. + * + * This function converts a number to text using currency format, with the decimals rounded to the specified place. + * The format used is $#,##0.00_);($#,##0.00).. + * + * @Deprecated 1.18.0 + * + * @see Use the DOLLAR() method in the TextData\Format class instead + * + * @param float $value The value to format + * @param int $decimals The number of digits to display to the right of the decimal point. + * If decimals is negative, number is rounded to the left of the decimal point. + * If you omit decimals, it is assumed to be 2 + * + * @return array|string + */ + public static function DOLLAR($value = 0, $decimals = 2) + { + return TextData\Format::DOLLAR($value, $decimals); + } + + /** + * FIND. + * + * @Deprecated 1.18.0 + * + * @see Use the sensitive() method in the TextData\Search class instead + * + * @param array|string $needle The string to look for + * @param array|string $haystack The string in which to look + * @param array|int $offset Offset within $haystack + * + * @return array|int|string + */ + public static function SEARCHSENSITIVE($needle, $haystack, $offset = 1) + { + return TextData\Search::sensitive($needle, $haystack, $offset); + } + + /** + * SEARCH. + * + * @Deprecated 1.18.0 + * + * @see Use the insensitive() method in the TextData\Search class instead + * + * @param array|string $needle The string to look for + * @param array|string $haystack The string in which to look + * @param array|int $offset Offset within $haystack + * + * @return array|int|string + */ + public static function SEARCHINSENSITIVE($needle, $haystack, $offset = 1) + { + return TextData\Search::insensitive($needle, $haystack, $offset); + } + + /** + * FIXEDFORMAT. + * + * @Deprecated 1.18.0 + * + * @see Use the FIXEDFORMAT() method in the TextData\Format class instead + * + * @param mixed $value Value to check + * @param int $decimals + * @param bool $no_commas + * + * @return array|string + */ + public static function FIXEDFORMAT($value, $decimals = 2, $no_commas = false) + { + return TextData\Format::FIXEDFORMAT($value, $decimals, $no_commas); + } + + /** + * LEFT. + * + * @Deprecated 1.18.0 + * + * @see Use the left() method in the TextData\Extract class instead + * + * @param array|string $value Value + * @param array|int $chars Number of characters + * + * @return array|string + */ + public static function LEFT($value = '', $chars = 1) + { + return TextData\Extract::left($value, $chars); + } + + /** + * MID. + * + * @Deprecated 1.18.0 + * + * @see Use the mid() method in the TextData\Extract class instead + * + * @param array|string $value Value + * @param array|int $start Start character + * @param array|int $chars Number of characters + * + * @return array|string + */ + public static function MID($value = '', $start = 1, $chars = null) + { + return TextData\Extract::mid($value, $start, $chars); + } + + /** + * RIGHT. + * + * @Deprecated 1.18.0 + * + * @see Use the right() method in the TextData\Extract class instead + * + * @param array|string $value Value + * @param array|int $chars Number of characters + * + * @return array|string + */ + public static function RIGHT($value = '', $chars = 1) + { + return TextData\Extract::right($value, $chars); + } + + /** + * STRINGLENGTH. + * + * @Deprecated 1.18.0 + * + * @see Use the length() method in the TextData\Text class instead + * + * @param string $value Value + * + * @return array|int + */ + public static function STRINGLENGTH($value = '') + { + return TextData\Text::length($value); + } + + /** + * LOWERCASE. + * + * Converts a string value to lower case. + * + * @Deprecated 1.18.0 + * + * @see Use the lower() method in the TextData\CaseConvert class instead + * + * @param array|string $mixedCaseString + * + * @return array|string + */ + public static function LOWERCASE($mixedCaseString) + { + return TextData\CaseConvert::lower($mixedCaseString); + } + + /** + * UPPERCASE. + * + * Converts a string value to upper case. + * + * @Deprecated 1.18.0 + * + * @see Use the upper() method in the TextData\CaseConvert class instead + * + * @param string $mixedCaseString + * + * @return array|string + */ + public static function UPPERCASE($mixedCaseString) + { + return TextData\CaseConvert::upper($mixedCaseString); + } + + /** + * PROPERCASE. + * + * Converts a string value to proper/title case. + * + * @Deprecated 1.18.0 + * + * @see Use the proper() method in the TextData\CaseConvert class instead + * + * @param array|string $mixedCaseString + * + * @return array|string + */ + public static function PROPERCASE($mixedCaseString) + { + return TextData\CaseConvert::proper($mixedCaseString); + } + + /** + * REPLACE. + * + * @Deprecated 1.18.0 + * + * @see Use the replace() method in the TextData\Replace class instead + * + * @param string $oldText String to modify + * @param int $start Start character + * @param int $chars Number of characters + * @param string $newText String to replace in defined position + * + * @return array|string + */ + public static function REPLACE($oldText, $start, $chars, $newText) + { + return TextData\Replace::replace($oldText, $start, $chars, $newText); + } + + /** + * SUBSTITUTE. + * + * @Deprecated 1.18.0 + * + * @see Use the substitute() method in the TextData\Replace class instead + * + * @param string $text Value + * @param string $fromText From Value + * @param string $toText To Value + * @param int $instance Instance Number + * + * @return array|string + */ + public static function SUBSTITUTE($text = '', $fromText = '', $toText = '', $instance = 0) + { + return TextData\Replace::substitute($text, $fromText, $toText, $instance); + } + + /** + * RETURNSTRING. + * + * @Deprecated 1.18.0 + * + * @see Use the test() method in the TextData\Text class instead + * + * @param mixed $testValue Value to check + * + * @return null|array|string + */ + public static function RETURNSTRING($testValue = '') + { + return TextData\Text::test($testValue); + } + + /** + * TEXTFORMAT. + * + * @Deprecated 1.18.0 + * + * @see Use the TEXTFORMAT() method in the TextData\Format class instead + * + * @param mixed $value Value to check + * @param string $format Format mask to use + * + * @return array|string + */ + public static function TEXTFORMAT($value, $format) + { + return TextData\Format::TEXTFORMAT($value, $format); + } + + /** + * VALUE. + * + * @Deprecated 1.18.0 + * + * @see Use the VALUE() method in the TextData\Format class instead + * + * @param mixed $value Value to check + * + * @return array|DateTimeInterface|float|int|string A string if arguments are invalid + */ + public static function VALUE($value = '') + { + return TextData\Format::VALUE($value); + } + + /** + * NUMBERVALUE. + * + * @Deprecated 1.18.0 + * + * @see Use the NUMBERVALUE() method in the TextData\Format class instead + * + * @param mixed $value Value to check + * @param string $decimalSeparator decimal separator, defaults to locale defined value + * @param string $groupSeparator group/thosands separator, defaults to locale defined value + * + * @return array|float|string + */ + public static function NUMBERVALUE($value = '', $decimalSeparator = null, $groupSeparator = null) + { + return TextData\Format::NUMBERVALUE($value, $decimalSeparator, $groupSeparator); + } + + /** + * Compares two text strings and returns TRUE if they are exactly the same, FALSE otherwise. + * EXACT is case-sensitive but ignores formatting differences. + * Use EXACT to test text being entered into a document. + * + * @Deprecated 1.18.0 + * + * @see Use the exact() method in the TextData\Text class instead + * + * @param mixed $value1 + * @param mixed $value2 + * + * @return array|bool + */ + public static function EXACT($value1, $value2) + { + return TextData\Text::exact($value1, $value2); + } + + /** + * TEXTJOIN. + * + * @Deprecated 1.18.0 + * + * @see Use the TEXTJOIN() method in the TextData\Concatenate class instead + * + * @param mixed $delimiter + * @param mixed $ignoreEmpty + * @param mixed $args + * + * @return array|string + */ + public static function TEXTJOIN($delimiter, $ignoreEmpty, ...$args) + { + return TextData\Concatenate::TEXTJOIN($delimiter, $ignoreEmpty, ...$args); + } + + /** + * REPT. + * + * Returns the result of builtin function repeat after validating args. + * + * @Deprecated 1.18.0 + * + * @see Use the builtinREPT() method in the TextData\Concatenate class instead + * + * @param array|string $str Should be numeric + * @param mixed $number Should be int + * + * @return array|string + */ + public static function builtinREPT($str, $number) + { + return TextData\Concatenate::builtinREPT($str, $number); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/CaseConvert.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/CaseConvert.php new file mode 100644 index 0000000..f1aea16 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/CaseConvert.php @@ -0,0 +1,80 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\TextData; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; + +class CaseConvert +{ + use ArrayEnabled; + + /** + * LOWERCASE. + * + * Converts a string value to upper case. + * + * @param mixed $mixedCaseValue The string value to convert to lower case + * Or can be an array of values + * + * @return array|string + * If an array of values is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function lower($mixedCaseValue) + { + if (is_array($mixedCaseValue)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $mixedCaseValue); + } + + $mixedCaseValue = Helpers::extractString($mixedCaseValue); + + return StringHelper::strToLower($mixedCaseValue); + } + + /** + * UPPERCASE. + * + * Converts a string value to upper case. + * + * @param mixed $mixedCaseValue The string value to convert to upper case + * Or can be an array of values + * + * @return array|string + * If an array of values is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function upper($mixedCaseValue) + { + if (is_array($mixedCaseValue)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $mixedCaseValue); + } + + $mixedCaseValue = Helpers::extractString($mixedCaseValue); + + return StringHelper::strToUpper($mixedCaseValue); + } + + /** + * PROPERCASE. + * + * Converts a string value to proper or title case. + * + * @param mixed $mixedCaseValue The string value to convert to title case + * Or can be an array of values + * + * @return array|string + * If an array of values is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function proper($mixedCaseValue) + { + if (is_array($mixedCaseValue)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $mixedCaseValue); + } + + $mixedCaseValue = Helpers::extractString($mixedCaseValue); + + return StringHelper::strToTitle($mixedCaseValue); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/CharacterConvert.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/CharacterConvert.php new file mode 100644 index 0000000..83af499 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/CharacterConvert.php @@ -0,0 +1,81 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\TextData; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class CharacterConvert +{ + use ArrayEnabled; + + /** + * CHAR. + * + * @param mixed $character Integer Value to convert to its character representation + * Or can be an array of values + * + * @return array|string The character string + * If an array of values is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function character($character) + { + if (is_array($character)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $character); + } + + $character = Helpers::validateInt($character); + $min = Functions::getCompatibilityMode() === Functions::COMPATIBILITY_OPENOFFICE ? 0 : 1; + if ($character < $min || $character > 255) { + return ExcelError::VALUE(); + } + $result = iconv('UCS-4LE', 'UTF-8', pack('V', $character)); + + return ($result === false) ? '' : $result; + } + + /** + * CODE. + * + * @param mixed $characters String character to convert to its ASCII value + * Or can be an array of values + * + * @return array|int|string A string if arguments are invalid + * If an array of values is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function code($characters) + { + if (is_array($characters)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $characters); + } + + $characters = Helpers::extractString($characters); + if ($characters === '') { + return ExcelError::VALUE(); + } + + $character = $characters; + if (mb_strlen($characters, 'UTF-8') > 1) { + $character = mb_substr($characters, 0, 1, 'UTF-8'); + } + + return self::unicodeToOrd($character); + } + + private static function unicodeToOrd(string $character): int + { + $retVal = 0; + $iconv = iconv('UTF-8', 'UCS-4LE', $character); + if ($iconv !== false) { + $result = unpack('V', $iconv); + if (is_array($result) && isset($result[1])) { + $retVal = $result[1]; + } + } + + return $retVal; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Concatenate.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Concatenate.php new file mode 100644 index 0000000..7bd60e9 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Concatenate.php @@ -0,0 +1,131 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\TextData; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ErrorValue; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Cell\DataType; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; + +class Concatenate +{ + use ArrayEnabled; + + /** + * CONCATENATE. + * + * @param array $args + */ + public static function CONCATENATE(...$args): string + { + $returnValue = ''; + + // Loop through arguments + $aArgs = Functions::flattenArray($args); + + foreach ($aArgs as $arg) { + $value = Helpers::extractString($arg); + if (ErrorValue::isError($value)) { + $returnValue = $value; + + break; + } + $returnValue .= Helpers::extractString($arg); + if (StringHelper::countCharacters($returnValue) > DataType::MAX_STRING_LENGTH) { + $returnValue = ExcelError::CALC(); + + break; + } + } + + return $returnValue; + } + + /** + * TEXTJOIN. + * + * @param mixed $delimiter The delimter to use between the joined arguments + * Or can be an array of values + * @param mixed $ignoreEmpty true/false Flag indicating whether empty arguments should be skipped + * Or can be an array of values + * @param mixed $args The values to join + * + * @return array|string The joined string + * If an array of values is passed for the $delimiter or $ignoreEmpty arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function TEXTJOIN($delimiter, $ignoreEmpty, ...$args) + { + if (is_array($delimiter) || is_array($ignoreEmpty)) { + return self::evaluateArrayArgumentsSubset( + [self::class, __FUNCTION__], + 2, + $delimiter, + $ignoreEmpty, + ...$args + ); + } + + // Loop through arguments + $aArgs = Functions::flattenArray($args); + $returnValue = ''; + foreach ($aArgs as $key => &$arg) { + $value = Helpers::extractString($arg); + if (ErrorValue::isError($value)) { + $returnValue = $value; + + break; + } + if ($ignoreEmpty === true && is_string($arg) && trim($arg) === '') { + unset($aArgs[$key]); + } elseif (is_bool($arg)) { + $arg = Helpers::convertBooleanValue($arg); + } + } + + $returnValue = ($returnValue !== '') ? $returnValue : implode($delimiter, $aArgs); + if (StringHelper::countCharacters($returnValue) > DataType::MAX_STRING_LENGTH) { + $returnValue = ExcelError::CALC(); + } + + return $returnValue; + } + + /** + * REPT. + * + * Returns the result of builtin function round after validating args. + * + * @param mixed $stringValue The value to repeat + * Or can be an array of values + * @param mixed $repeatCount The number of times the string value should be repeated + * Or can be an array of values + * + * @return array|string The repeated string + * If an array of values is passed for the $stringValue or $repeatCount arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function builtinREPT($stringValue, $repeatCount) + { + if (is_array($stringValue) || is_array($repeatCount)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $stringValue, $repeatCount); + } + + $stringValue = Helpers::extractString($stringValue); + + if (!is_numeric($repeatCount) || $repeatCount < 0) { + $returnValue = ExcelError::VALUE(); + } elseif (ErrorValue::isError($stringValue)) { + $returnValue = $stringValue; + } else { + $returnValue = str_repeat($stringValue, (int) $repeatCount); + if (StringHelper::countCharacters($returnValue) > DataType::MAX_STRING_LENGTH) { + $returnValue = ExcelError::VALUE(); // note VALUE not CALC + } + } + + return $returnValue; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Extract.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Extract.php new file mode 100644 index 0000000..d29f80c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Extract.php @@ -0,0 +1,98 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\TextData; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception as CalcExp; + +class Extract +{ + use ArrayEnabled; + + /** + * LEFT. + * + * @param mixed $value String value from which to extract characters + * Or can be an array of values + * @param mixed $chars The number of characters to extract (as an integer) + * Or can be an array of values + * + * @return array|string The joined string + * If an array of values is passed for the $value or $chars arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function left($value, $chars = 1) + { + if (is_array($value) || is_array($chars)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $chars); + } + + try { + $value = Helpers::extractString($value); + $chars = Helpers::extractInt($chars, 0, 1); + } catch (CalcExp $e) { + return $e->getMessage(); + } + + return mb_substr($value ?? '', 0, $chars, 'UTF-8'); + } + + /** + * MID. + * + * @param mixed $value String value from which to extract characters + * Or can be an array of values + * @param mixed $start Integer offset of the first character that we want to extract + * Or can be an array of values + * @param mixed $chars The number of characters to extract (as an integer) + * Or can be an array of values + * + * @return array|string The joined string + * If an array of values is passed for the $value, $start or $chars arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function mid($value, $start, $chars) + { + if (is_array($value) || is_array($start) || is_array($chars)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $start, $chars); + } + + try { + $value = Helpers::extractString($value); + $start = Helpers::extractInt($start, 1); + $chars = Helpers::extractInt($chars, 0); + } catch (CalcExp $e) { + return $e->getMessage(); + } + + return mb_substr($value ?? '', --$start, $chars, 'UTF-8'); + } + + /** + * RIGHT. + * + * @param mixed $value String value from which to extract characters + * Or can be an array of values + * @param mixed $chars The number of characters to extract (as an integer) + * Or can be an array of values + * + * @return array|string The joined string + * If an array of values is passed for the $value or $chars arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function right($value, $chars = 1) + { + if (is_array($value) || is_array($chars)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $chars); + } + + try { + $value = Helpers::extractString($value); + $chars = Helpers::extractInt($chars, 0, 1); + } catch (CalcExp $e) { + return $e->getMessage(); + } + + return mb_substr($value ?? '', mb_strlen($value ?? '', 'UTF-8') - $chars, $chars, 'UTF-8'); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Format.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Format.php new file mode 100644 index 0000000..bec1149 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Format.php @@ -0,0 +1,280 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\TextData; + +use DateTimeInterface; +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; +use PhpOffice\PhpSpreadsheet\Calculation\Exception as CalcExp; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Calculation\MathTrig; +use PhpOffice\PhpSpreadsheet\Shared\Date; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; + +class Format +{ + use ArrayEnabled; + + /** + * DOLLAR. + * + * This function converts a number to text using currency format, with the decimals rounded to the specified place. + * The format used is $#,##0.00_);($#,##0.00).. + * + * @param mixed $value The value to format + * Or can be an array of values + * @param mixed $decimals The number of digits to display to the right of the decimal point (as an integer). + * If decimals is negative, number is rounded to the left of the decimal point. + * If you omit decimals, it is assumed to be 2 + * Or can be an array of values + * + * @return array|string + * If an array of values is passed for either of the arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function DOLLAR($value = 0, $decimals = 2) + { + if (is_array($value) || is_array($decimals)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $decimals); + } + + try { + $value = Helpers::extractFloat($value); + $decimals = Helpers::extractInt($decimals, -100, 0, true); + } catch (CalcExp $e) { + return $e->getMessage(); + } + + $mask = '$#,##0'; + if ($decimals > 0) { + $mask .= '.' . str_repeat('0', $decimals); + } else { + $round = 10 ** abs($decimals); + if ($value < 0) { + $round = 0 - $round; + } + $value = MathTrig\Round::multiple($value, $round); + } + $mask = "{$mask};-{$mask}"; + + return NumberFormat::toFormattedString($value, $mask); + } + + /** + * FIXED. + * + * @param mixed $value The value to format + * Or can be an array of values + * @param mixed $decimals Integer value for the number of decimal places that should be formatted + * Or can be an array of values + * @param mixed $noCommas Boolean value indicating whether the value should have thousands separators or not + * Or can be an array of values + * + * @return array|string + * If an array of values is passed for either of the arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function FIXEDFORMAT($value, $decimals = 2, $noCommas = false) + { + if (is_array($value) || is_array($decimals) || is_array($noCommas)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $decimals, $noCommas); + } + + try { + $value = Helpers::extractFloat($value); + $decimals = Helpers::extractInt($decimals, -100, 0, true); + } catch (CalcExp $e) { + return $e->getMessage(); + } + + $valueResult = round($value, $decimals); + if ($decimals < 0) { + $decimals = 0; + } + if ($noCommas === false) { + $valueResult = number_format( + $valueResult, + $decimals, + StringHelper::getDecimalSeparator(), + StringHelper::getThousandsSeparator() + ); + } + + return (string) $valueResult; + } + + /** + * TEXT. + * + * @param mixed $value The value to format + * Or can be an array of values + * @param mixed $format A string with the Format mask that should be used + * Or can be an array of values + * + * @return array|string + * If an array of values is passed for either of the arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function TEXTFORMAT($value, $format) + { + if (is_array($value) || is_array($format)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $format); + } + + $value = Helpers::extractString($value); + $format = Helpers::extractString($format); + + if (!is_numeric($value) && Date::isDateTimeFormatCode($format)) { + $value = DateTimeExcel\DateValue::fromString($value); + } + + return (string) NumberFormat::toFormattedString($value, $format); + } + + /** + * @param mixed $value Value to check + * + * @return mixed + */ + private static function convertValue($value) + { + $value = $value ?? 0; + if (is_bool($value)) { + if (Functions::getCompatibilityMode() === Functions::COMPATIBILITY_OPENOFFICE) { + $value = (int) $value; + } else { + throw new CalcExp(ExcelError::VALUE()); + } + } + + return $value; + } + + /** + * VALUE. + * + * @param mixed $value Value to check + * Or can be an array of values + * + * @return array|DateTimeInterface|float|int|string A string if arguments are invalid + * If an array of values is passed for the argument, then the returned result + * will also be an array with matching dimensions + */ + public static function VALUE($value = '') + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + try { + $value = self::convertValue($value); + } catch (CalcExp $e) { + return $e->getMessage(); + } + if (!is_numeric($value)) { + $numberValue = str_replace( + StringHelper::getThousandsSeparator(), + '', + trim($value, " \t\n\r\0\x0B" . StringHelper::getCurrencyCode()) + ); + if (is_numeric($numberValue)) { + return (float) $numberValue; + } + + $dateSetting = Functions::getReturnDateType(); + Functions::setReturnDateType(Functions::RETURNDATE_EXCEL); + + if (strpos($value, ':') !== false) { + $timeValue = Functions::scalar(DateTimeExcel\TimeValue::fromString($value)); + if ($timeValue !== ExcelError::VALUE()) { + Functions::setReturnDateType($dateSetting); + + return $timeValue; + } + } + $dateValue = Functions::scalar(DateTimeExcel\DateValue::fromString($value)); + if ($dateValue !== ExcelError::VALUE()) { + Functions::setReturnDateType($dateSetting); + + return $dateValue; + } + Functions::setReturnDateType($dateSetting); + + return ExcelError::VALUE(); + } + + return (float) $value; + } + + /** + * @param mixed $decimalSeparator + */ + private static function getDecimalSeparator($decimalSeparator): string + { + return empty($decimalSeparator) ? StringHelper::getDecimalSeparator() : (string) $decimalSeparator; + } + + /** + * @param mixed $groupSeparator + */ + private static function getGroupSeparator($groupSeparator): string + { + return empty($groupSeparator) ? StringHelper::getThousandsSeparator() : (string) $groupSeparator; + } + + /** + * NUMBERVALUE. + * + * @param mixed $value The value to format + * Or can be an array of values + * @param mixed $decimalSeparator A string with the decimal separator to use, defaults to locale defined value + * Or can be an array of values + * @param mixed $groupSeparator A string with the group/thousands separator to use, defaults to locale defined value + * Or can be an array of values + * + * @return array|float|string + */ + public static function NUMBERVALUE($value = '', $decimalSeparator = null, $groupSeparator = null) + { + if (is_array($value) || is_array($decimalSeparator) || is_array($groupSeparator)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $decimalSeparator, $groupSeparator); + } + + try { + $value = self::convertValue($value); + $decimalSeparator = self::getDecimalSeparator($decimalSeparator); + $groupSeparator = self::getGroupSeparator($groupSeparator); + } catch (CalcExp $e) { + return $e->getMessage(); + } + + if (!is_numeric($value)) { + $decimalPositions = preg_match_all('/' . preg_quote($decimalSeparator) . '/', $value, $matches, PREG_OFFSET_CAPTURE); + if ($decimalPositions > 1) { + return ExcelError::VALUE(); + } + $decimalOffset = array_pop($matches[0])[1]; + if (strpos($value, $groupSeparator, $decimalOffset) !== false) { + return ExcelError::VALUE(); + } + + $value = str_replace([$groupSeparator, $decimalSeparator], ['', '.'], $value); + + // Handle the special case of trailing % signs + $percentageString = rtrim($value, '%'); + if (!is_numeric($percentageString)) { + return ExcelError::VALUE(); + } + + $percentageAdjustment = strlen($value) - strlen($percentageString); + if ($percentageAdjustment) { + $value = (float) $percentageString; + $value /= 10 ** ($percentageAdjustment * 2); + } + } + + return is_array($value) ? ExcelError::VALUE() : (float) $value; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Helpers.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Helpers.php new file mode 100644 index 0000000..e7b67a3 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Helpers.php @@ -0,0 +1,91 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\TextData; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Exception as CalcExp; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ErrorValue; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; + +class Helpers +{ + public static function convertBooleanValue(bool $value): string + { + if (Functions::getCompatibilityMode() == Functions::COMPATIBILITY_OPENOFFICE) { + return $value ? '1' : '0'; + } + + return ($value) ? Calculation::getTRUE() : Calculation::getFALSE(); + } + + /** + * @param mixed $value String value from which to extract characters + */ + public static function extractString($value, bool $throwIfError = false): string + { + if (is_bool($value)) { + return self::convertBooleanValue($value); + } + if ($throwIfError && is_string($value) && ErrorValue::isError($value)) { + throw new CalcExp($value); + } + + return (string) $value; + } + + /** + * @param mixed $value + */ + public static function extractInt($value, int $minValue, int $gnumericNull = 0, bool $ooBoolOk = false): int + { + if ($value === null) { + // usually 0, but sometimes 1 for Gnumeric + $value = (Functions::getCompatibilityMode() === Functions::COMPATIBILITY_GNUMERIC) ? $gnumericNull : 0; + } + if (is_bool($value) && ($ooBoolOk || Functions::getCompatibilityMode() !== Functions::COMPATIBILITY_OPENOFFICE)) { + $value = (int) $value; + } + if (!is_numeric($value)) { + throw new CalcExp(ExcelError::VALUE()); + } + $value = (int) $value; + if ($value < $minValue) { + throw new CalcExp(ExcelError::VALUE()); + } + + return (int) $value; + } + + /** + * @param mixed $value + */ + public static function extractFloat($value): float + { + if ($value === null) { + $value = 0.0; + } + if (is_bool($value)) { + $value = (float) $value; + } + if (!is_numeric($value)) { + throw new CalcExp(ExcelError::VALUE()); + } + + return (float) $value; + } + + /** + * @param mixed $value + */ + public static function validateInt($value): int + { + if ($value === null) { + $value = 0; + } elseif (is_bool($value)) { + $value = (int) $value; + } + + return (int) $value; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Replace.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Replace.php new file mode 100644 index 0000000..03b6632 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Replace.php @@ -0,0 +1,125 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\TextData; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception as CalcExp; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Cell\DataType; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; + +class Replace +{ + use ArrayEnabled; + + /** + * REPLACE. + * + * @param mixed $oldText The text string value to modify + * Or can be an array of values + * @param mixed $start Integer offset for start character of the replacement + * Or can be an array of values + * @param mixed $chars Integer number of characters to replace from the start offset + * Or can be an array of values + * @param mixed $newText String to replace in the defined position + * Or can be an array of values + * + * @return array|string + * If an array of values is passed for either of the arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function replace($oldText, $start, $chars, $newText) + { + if (is_array($oldText) || is_array($start) || is_array($chars) || is_array($newText)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $oldText, $start, $chars, $newText); + } + + try { + $start = Helpers::extractInt($start, 1, 0, true); + $chars = Helpers::extractInt($chars, 0, 0, true); + $oldText = Helpers::extractString($oldText, true); + $newText = Helpers::extractString($newText, true); + $left = StringHelper::substring($oldText, 0, $start - 1); + + $right = StringHelper::substring($oldText, $start + $chars - 1, null); + } catch (CalcExp $e) { + return $e->getMessage(); + } + $returnValue = $left . $newText . $right; + if (StringHelper::countCharacters($returnValue) > DataType::MAX_STRING_LENGTH) { + $returnValue = ExcelError::VALUE(); + } + + return $returnValue; + } + + /** + * SUBSTITUTE. + * + * @param mixed $text The text string value to modify + * Or can be an array of values + * @param mixed $fromText The string value that we want to replace in $text + * Or can be an array of values + * @param mixed $toText The string value that we want to replace with in $text + * Or can be an array of values + * @param mixed $instance Integer instance Number for the occurrence of frmText to change + * Or can be an array of values + * + * @return array|string + * If an array of values is passed for either of the arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function substitute($text = '', $fromText = '', $toText = '', $instance = null) + { + if (is_array($text) || is_array($fromText) || is_array($toText) || is_array($instance)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $text, $fromText, $toText, $instance); + } + + try { + $text = Helpers::extractString($text, true); + $fromText = Helpers::extractString($fromText, true); + $toText = Helpers::extractString($toText, true); + if ($instance === null) { + $returnValue = str_replace($fromText, $toText, $text); + } else { + if (is_bool($instance)) { + if ($instance === false || Functions::getCompatibilityMode() !== Functions::COMPATIBILITY_OPENOFFICE) { + return ExcelError::Value(); + } + $instance = 1; + } + $instance = Helpers::extractInt($instance, 1, 0, true); + $returnValue = self::executeSubstitution($text, $fromText, $toText, $instance); + } + } catch (CalcExp $e) { + return $e->getMessage(); + } + if (StringHelper::countCharacters($returnValue) > DataType::MAX_STRING_LENGTH) { + $returnValue = ExcelError::VALUE(); + } + + return $returnValue; + } + + /** + * @return string + */ + private static function executeSubstitution(string $text, string $fromText, string $toText, int $instance) + { + $pos = -1; + while ($instance > 0) { + $pos = mb_strpos($text, $fromText, $pos + 1, 'UTF-8'); + if ($pos === false) { + break; + } + --$instance; + } + + if ($pos !== false) { + return Functions::scalar(self::REPLACE($text, ++$pos, StringHelper::countCharacters($fromText), $toText)); + } + + return $text; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Search.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Search.php new file mode 100644 index 0000000..10b6a1a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Search.php @@ -0,0 +1,97 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\TextData; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; +use PhpOffice\PhpSpreadsheet\Calculation\Exception as CalcExp; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; + +class Search +{ + use ArrayEnabled; + + /** + * FIND (case sensitive search). + * + * @param mixed $needle The string to look for + * Or can be an array of values + * @param mixed $haystack The string in which to look + * Or can be an array of values + * @param mixed $offset Integer offset within $haystack to start searching from + * Or can be an array of values + * + * @return array|int|string The offset where the first occurrence of needle was found in the haystack + * If an array of values is passed for the $value or $chars arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function sensitive($needle, $haystack, $offset = 1) + { + if (is_array($needle) || is_array($haystack) || is_array($offset)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $needle, $haystack, $offset); + } + + try { + $needle = Helpers::extractString($needle); + $haystack = Helpers::extractString($haystack); + $offset = Helpers::extractInt($offset, 1, 0, true); + } catch (CalcExp $e) { + return $e->getMessage(); + } + + if (StringHelper::countCharacters($haystack) >= $offset) { + if (StringHelper::countCharacters($needle) === 0) { + return $offset; + } + + $pos = mb_strpos($haystack, $needle, --$offset, 'UTF-8'); + if ($pos !== false) { + return ++$pos; + } + } + + return ExcelError::VALUE(); + } + + /** + * SEARCH (case insensitive search). + * + * @param mixed $needle The string to look for + * Or can be an array of values + * @param mixed $haystack The string in which to look + * Or can be an array of values + * @param mixed $offset Integer offset within $haystack to start searching from + * Or can be an array of values + * + * @return array|int|string The offset where the first occurrence of needle was found in the haystack + * If an array of values is passed for the $value or $chars arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function insensitive($needle, $haystack, $offset = 1) + { + if (is_array($needle) || is_array($haystack) || is_array($offset)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $needle, $haystack, $offset); + } + + try { + $needle = Helpers::extractString($needle); + $haystack = Helpers::extractString($haystack); + $offset = Helpers::extractInt($offset, 1, 0, true); + } catch (CalcExp $e) { + return $e->getMessage(); + } + + if (StringHelper::countCharacters($haystack) >= $offset) { + if (StringHelper::countCharacters($needle) === 0) { + return $offset; + } + + $pos = mb_stripos($haystack, $needle, --$offset, 'UTF-8'); + if ($pos !== false) { + return ++$pos; + } + } + + return ExcelError::VALUE(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Text.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Text.php new file mode 100644 index 0000000..490c43c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Text.php @@ -0,0 +1,80 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\TextData; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; + +class Text +{ + use ArrayEnabled; + + /** + * LEN. + * + * @param mixed $value String Value + * Or can be an array of values + * + * @return array|int + * If an array of values is passed for the argument, then the returned result + * will also be an array with matching dimensions + */ + public static function length($value = '') + { + if (is_array($value)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value); + } + + $value = Helpers::extractString($value); + + return mb_strlen($value ?? '', 'UTF-8'); + } + + /** + * Compares two text strings and returns TRUE if they are exactly the same, FALSE otherwise. + * EXACT is case-sensitive but ignores formatting differences. + * Use EXACT to test text being entered into a document. + * + * @param mixed $value1 String Value + * Or can be an array of values + * @param mixed $value2 String Value + * Or can be an array of values + * + * @return array|bool + * If an array of values is passed for either of the arguments, then the returned result + * will also be an array with matching dimensions + */ + public static function exact($value1, $value2) + { + if (is_array($value1) || is_array($value2)) { + return self::evaluateArrayArguments([self::class, __FUNCTION__], $value1, $value2); + } + + $value1 = Helpers::extractString($value1); + $value2 = Helpers::extractString($value2); + + return $value2 === $value1; + } + + /** + * RETURNSTRING. + * + * @param mixed $testValue Value to check + * Or can be an array of values + * + * @return null|array|string + * If an array of values is passed for the argument, then the returned result + * will also be an array with matching dimensions + */ + public static function test($testValue = '') + { + if (is_array($testValue)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $testValue); + } + + if (is_string($testValue)) { + return $testValue; + } + + return null; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Trim.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Trim.php new file mode 100644 index 0000000..27eceb9 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Trim.php @@ -0,0 +1,52 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\TextData; + +use PhpOffice\PhpSpreadsheet\Calculation\ArrayEnabled; + +class Trim +{ + use ArrayEnabled; + + /** + * CLEAN. + * + * @param mixed $stringValue String Value to check + * Or can be an array of values + * + * @return array|string + * If an array of values is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function nonPrintable($stringValue = '') + { + if (is_array($stringValue)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $stringValue); + } + + $stringValue = Helpers::extractString($stringValue); + + return (string) preg_replace('/[\\x00-\\x1f]/', '', "$stringValue"); + } + + /** + * TRIM. + * + * @param mixed $stringValue String Value to check + * Or can be an array of values + * + * @return array|string + * If an array of values is passed as the argument, then the returned result will also be an array + * with the same dimensions + */ + public static function spaces($stringValue = '') + { + if (is_array($stringValue)) { + return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $stringValue); + } + + $stringValue = Helpers::extractString($stringValue); + + return trim(preg_replace('/ +/', ' ', trim("$stringValue", ' ')) ?? '', ' '); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Token/Stack.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Token/Stack.php new file mode 100644 index 0000000..26ffc01 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Token/Stack.php @@ -0,0 +1,129 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Token; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Engine\BranchPruner; + +class Stack +{ + /** + * @var BranchPruner + */ + private $branchPruner; + + /** + * The parser stack for formulae. + * + * @var mixed[] + */ + private $stack = []; + + /** + * Count of entries in the parser stack. + * + * @var int + */ + private $count = 0; + + public function __construct(BranchPruner $branchPruner) + { + $this->branchPruner = $branchPruner; + } + + /** + * Return the number of entries on the stack. + */ + public function count(): int + { + return $this->count; + } + + /** + * Push a new entry onto the stack. + * + * @param mixed $value + */ + public function push(string $type, $value, ?string $reference = null): void + { + $stackItem = $this->getStackItem($type, $value, $reference); + $this->stack[$this->count++] = $stackItem; + + if ($type == 'Function') { + $localeFunction = Calculation::localeFunc($value); + if ($localeFunction != $value) { + $this->stack[($this->count - 1)]['localeValue'] = $localeFunction; + } + } + } + + public function pushStackItem(array $stackItem): void + { + $this->stack[$this->count++] = $stackItem; + } + + /** + * @param mixed $value + */ + public function getStackItem(string $type, $value, ?string $reference = null): array + { + $stackItem = [ + 'type' => $type, + 'value' => $value, + 'reference' => $reference, + ]; + + // will store the result under this alias + $storeKey = $this->branchPruner->currentCondition(); + if (isset($storeKey) || $reference === 'NULL') { + $stackItem['storeKey'] = $storeKey; + } + + // will only run computation if the matching store key is true + $onlyIf = $this->branchPruner->currentOnlyIf(); + if (isset($onlyIf) || $reference === 'NULL') { + $stackItem['onlyIf'] = $onlyIf; + } + + // will only run computation if the matching store key is false + $onlyIfNot = $this->branchPruner->currentOnlyIfNot(); + if (isset($onlyIfNot) || $reference === 'NULL') { + $stackItem['onlyIfNot'] = $onlyIfNot; + } + + return $stackItem; + } + + /** + * Pop the last entry from the stack. + */ + public function pop(): ?array + { + if ($this->count > 0) { + return $this->stack[--$this->count]; + } + + return null; + } + + /** + * Return an entry from the stack without removing it. + */ + public function last(int $n = 1): ?array + { + if ($this->count - $n < 0) { + return null; + } + + return $this->stack[$this->count - $n]; + } + + /** + * Clear the stack. + */ + public function clear(): void + { + $this->stack = []; + $this->count = 0; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Web.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Web.php new file mode 100644 index 0000000..3f3d945 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Web.php @@ -0,0 +1,27 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation; + +/** + * @deprecated 1.18.0 + */ +class Web +{ + /** + * WEBSERVICE. + * + * Returns data from a web service on the Internet or Intranet. + * + * Excel Function: + * Webservice(url) + * + * @see Web\Service::webService() + * Use the webService() method in the Web\Service class instead + * + * @return string the output resulting from a call to the webservice + */ + public static function WEBSERVICE(string $url) + { + return Web\Service::webService($url); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Web/Service.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Web/Service.php new file mode 100644 index 0000000..697d3a6 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Web/Service.php @@ -0,0 +1,75 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Calculation\Web; + +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Settings; +use Psr\Http\Client\ClientExceptionInterface; + +class Service +{ + /** + * WEBSERVICE. + * + * Returns data from a web service on the Internet or Intranet. + * + * Excel Function: + * Webservice(url) + * + * @return string the output resulting from a call to the webservice + */ + public static function webService(string $url) + { + $url = trim($url); + if (strlen($url) > 2048) { + return ExcelError::VALUE(); // Invalid URL length + } + + if (!preg_match('/^http[s]?:\/\//', $url)) { + return ExcelError::VALUE(); // Invalid protocol + } + + // Get results from the the webservice + $client = Settings::getHttpClient(); + $requestFactory = Settings::getRequestFactory(); + $request = $requestFactory->createRequest('GET', $url); + + try { + $response = $client->sendRequest($request); + } catch (ClientExceptionInterface $e) { + return ExcelError::VALUE(); // cURL error + } + + if ($response->getStatusCode() != 200) { + return ExcelError::VALUE(); // cURL error + } + + $output = $response->getBody()->getContents(); + if (strlen($output) > 32767) { + return ExcelError::VALUE(); // Output not a string or too long + } + + return $output; + } + + /** + * URLENCODE. + * + * Returns data from a web service on the Internet or Intranet. + * + * Excel Function: + * urlEncode(text) + * + * @param mixed $text + * + * @return string the url encoded output + */ + public static function urlEncode($text) + { + if (!is_string($text)) { + return ExcelError::VALUE(); + } + + return str_replace('+', '%20', urlencode($text)); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/Translations.xlsx b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/Translations.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..d013aee0f1a2dea934a0a215e5aaa1e3202bbecb GIT binary patch literal 110548 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 Tv9InU3_Sh-KJh&UmVC&c62w=c literal 0 HcmV?d00001 diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/bg/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/bg/config new file mode 100644 index 0000000..86f94d3 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/bg/config @@ -0,0 +1,27 @@ +## +## PhpSpreadsheet +## +## +## + + +ArgumentSeparator = ; + + +## +## (For future use) +## +currencySymbol = лв + + +## +## Excel Error Codes (For future use) + +## +NULL = #ПРÐЗÐО! +DIV0 = #ДЕЛ/0! +VALUE = #СТОЙÐОСТ! +REF = #РЕФ! +NAME = #ИМЕ? +NUM = #ЧИСЛО! +NA = #Ð/Д diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/bg/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/bg/functions new file mode 100644 index 0000000..4bc1574 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/bg/functions @@ -0,0 +1,417 @@ +## +## PhpSpreadsheet +## +## +## Data in this file derived from information provided by web-junior (http://www.web-junior.net/) +## +## + + +## +## Add-in and Automation functions Функции надÑтроек и автоматизации +## +GETPIVOTDATA = ПОЛУЧИТЬ.ДÐÐÐЫЕ.СВОДÐОЙ.ТÐБЛИЦЫ ## Возвращает данные, хранÑщиеÑÑ Ð² отчете Ñводной таблицы. + + +## +## Cube functions Функции Куб +## +CUBEKPIMEMBER = КУБЭЛЕМЕÐТКИП ## Возвращает ÑвойÑтво ключевого индикатора производительноÑти «(КИП)» и отображает Ð¸Ð¼Ñ Â«ÐšÐ˜ÐŸÂ» в Ñчейке. «КИП» предÑтавлÑет Ñобой количеÑтвенную величину, такую как ежемеÑÑÑ‡Ð½Ð°Ñ Ð²Ð°Ð»Ð¾Ð²Ð°Ñ Ð¿Ñ€Ð¸Ð±Ñ‹Ð»ÑŒ или ÐµÐ¶ÐµÐºÐ²Ð°Ñ€Ñ‚Ð°Ð»ÑŒÐ½Ð°Ñ Ñ‚ÐµÐºÑƒÑ‡ÐµÑть кадров, иÑпользуемой Ð´Ð»Ñ ÐºÐ¾Ð½Ñ‚Ñ€Ð¾Ð»Ñ ÑффективноÑти работы организации. +CUBEMEMBER = КУБЭЛЕМЕÐТ ## Возвращает Ñлемент или кортеж из куба. ИÑпользуетÑÑ Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð²ÐµÑ€ÐºÐ¸ ÑущеÑÑ‚Ð²Ð¾Ð²Ð°Ð½Ð¸Ñ Ñлемента или кортежа в кубе. +CUBEMEMBERPROPERTY = КУБСВОЙСТВОЭЛЕМЕÐТР## Возвращает значение ÑвойÑтва Ñлемента из куба. ИÑпользуетÑÑ Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð²ÐµÑ€ÐºÐ¸ ÑущеÑÑ‚Ð²Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¸Ð¼ÐµÐ½Ð¸ Ñлемента в кубе и возвращает указанное ÑвойÑтво Ð´Ð»Ñ Ñтого Ñлемента. +CUBERANKEDMEMBER = КУБПОРЭЛЕМЕÐТ ## Возвращает n-ый или ранжированный Ñлемент в множеÑтво. ИÑпользуетÑÑ Ð´Ð»Ñ Ð²Ð¾Ð·Ð²Ñ€Ð°Ñ‰ÐµÐ½Ð¸Ñ Ð¾Ð´Ð½Ð¾Ð³Ð¾ или неÑкольких Ñлементов в множеÑтво, например, лучшего продавца или 10 лучших Ñтудентов. +CUBESET = КУБМÐОЖ ## ОпределÑет вычиÑлительное множеÑтво Ñлементов или кортежей, отправлÑÑ Ð½Ð° Ñервер выражение, которое Ñоздает множеÑтво, а затем возвращает его в Microsoft Office Excel. +CUBESETCOUNT = КУБЧИСЛОЭЛМÐОЖ ## Возвращает чиÑло Ñлементов множеÑтва. +CUBEVALUE = КУБЗÐÐЧЕÐИЕ ## Возвращает обобщенное значение из куба. + + +## +## Database functions Функции Ð´Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ñ Ð±Ð°Ð·Ð°Ð¼Ð¸ данных +## +DAVERAGE = ДСРЗÐÐЧ ## Возвращает Ñреднее значение выбранных запиÑей базы данных. +DCOUNT = БСЧÐТ ## ПодÑчитывает количеÑтво чиÑловых Ñчеек в базе данных. +DCOUNTA = БСЧÐТР## ПодÑчитывает количеÑтво непуÑтых Ñчеек в базе данных. +DGET = БИЗВЛЕЧЬ ## Извлекает из базы данных одну запиÑÑŒ, удовлетворÑющую заданному уÑловию. +DMAX = ДМÐКС ## Возвращает макÑимальное значение Ñреди выделенных запиÑей базы данных. +DMIN = ДМИР## Возвращает минимальное значение Ñреди выделенных запиÑей базы данных. +DPRODUCT = БДПРОИЗВЕД ## Перемножает Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð½Ð¾Ð³Ð¾ Ð¿Ð¾Ð»Ñ Ð² запиÑÑÑ… базы данных, удовлетворÑющих уÑловию. +DSTDEV = ДСТÐÐДОТКЛ ## Оценивает Ñтандартное отклонение по выборке Ð´Ð»Ñ Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ñ‹Ñ… запиÑей базы данных. +DSTDEVP = ДСТÐÐДОТКЛП ## ВычиÑлÑет Ñтандартное отклонение по генеральной ÑовокупноÑти Ð´Ð»Ñ Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ñ‹Ñ… запиÑей базы данных +DSUM = БДСУММ ## Суммирует чиÑла в поле Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñей базы данных, удовлетворÑющих уÑловию. +DVAR = БДДИСП ## Оценивает диÑперÑию по выборке из выделенных запиÑей базы данных +DVARP = БДДИСПП ## ВычиÑлÑет диÑперÑию по генеральной ÑовокупноÑти Ð´Ð»Ñ Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ñ‹Ñ… запиÑей базы данных + + +## +## Date and time functions Функции даты и времени +## +DATE = ДÐТР## Возвращает заданную дату в чиÑловом формате. +DATEVALUE = ДÐТÐЗÐÐЧ ## Преобразует дату из текÑтового формата в чиÑловой формат. +DAY = ДЕÐЬ ## Преобразует дату в чиÑловом формате в день меÑÑца. +DAYS360 = ДÐЕЙ360 ## ВычиÑлÑет количеÑтво дней между Ð´Ð²ÑƒÐ¼Ñ Ð´Ð°Ñ‚Ð°Ð¼Ð¸ на оÑнове 360-дневного года. +EDATE = ДÐТÐМЕС ## Возвращает дату в чиÑловом формате, отÑтоÑщую на заданное чиÑло меÑÑцев вперед или назад от начальной даты. +EOMONTH = КОÐМЕСЯЦР## Возвращает дату в чиÑловом формате Ð´Ð»Ñ Ð¿Ð¾Ñледнего Ð´Ð½Ñ Ð¼ÐµÑÑца, отÑтоÑщего вперед или назад на заданное чиÑло меÑÑцев. +HOUR = ЧÐС ## Преобразует дату в чиÑловом формате в чаÑÑ‹. +MINUTE = МИÐУТЫ ## Преобразует дату в чиÑловом формате в минуты. +MONTH = МЕСЯЦ ## Преобразует дату в чиÑловом формате в меÑÑцы. +NETWORKDAYS = ЧИСТРÐБДÐИ ## Возвращает количеÑтво рабочих дней между Ð´Ð²ÑƒÐ¼Ñ Ð´Ð°Ñ‚Ð°Ð¼Ð¸. +NOW = ТДÐТР## Возвращает текущую дату и Ð²Ñ€ÐµÐ¼Ñ Ð² чиÑловом формате. +SECOND = СЕКУÐДЫ ## Преобразует дату в чиÑловом формате в Ñекунды. +TIME = ВРЕМЯ ## Возвращает заданное Ð²Ñ€ÐµÐ¼Ñ Ð² чиÑловом формате. +TIMEVALUE = ВРЕМЗÐÐЧ ## Преобразует Ð²Ñ€ÐµÐ¼Ñ Ð¸Ð· текÑтового формата в чиÑловой формат. +TODAY = СЕГОДÐЯ ## Возвращает текущую дату в чиÑловом формате. +WEEKDAY = ДЕÐЬÐЕД ## Преобразует дату в чиÑловом формате в день недели. +WEEKNUM = ÐОМÐЕДЕЛИ ## Преобразует чиÑловое предÑтавление в чиÑло, которое указывает, на какую неделю года приходитÑÑ ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ð°Ñ Ð´Ð°Ñ‚Ð°. +WORKDAY = РÐБДЕÐЬ ## Возвращает дату в чиÑловом формате, отÑтоÑщую вперед или назад на заданное количеÑтво рабочих дней. +YEAR = ГОД ## Преобразует дату в чиÑловом формате в год. +YEARFRAC = ДОЛЯГОДР## Возвращает долю года, которую ÑоÑтавлÑет количеÑтво дней между начальной и конечной датами. + + +## +## Engineering functions Инженерные функции +## +BESSELI = БЕССЕЛЬ.I ## Возвращает модифицированную функцию БеÑÑÐµÐ»Ñ In(x). +BESSELJ = БЕССЕЛЬ.J ## Возвращает функцию БеÑÑÐµÐ»Ñ Jn(x). +BESSELK = БЕССЕЛЬ.K ## Возвращает модифицированную функцию БеÑÑÐµÐ»Ñ Kn(x). +BESSELY = БЕССЕЛЬ.Y ## Возвращает функцию БеÑÑÐµÐ»Ñ Yn(x). +BIN2DEC = ДВ.Ð’.ДЕС ## Преобразует двоичное чиÑло в деÑÑтичное. +BIN2HEX = ДВ.Ð’.ШЕСТР## Преобразует двоичное чиÑло в шеÑтнадцатеричное. +BIN2OCT = ДВ.Ð’.ВОСЬМ ## Преобразует двоичное чиÑло в воÑьмеричное. +COMPLEX = КОМПЛЕКСР## Преобразует коÑффициенты при вещеÑтвенной и мнимой чаÑÑ‚ÑÑ… комплекÑного чиÑла в комплекÑное чиÑло. +CONVERT = ПРЕОБР ## Преобразует чиÑло из одной ÑиÑтемы единиц Ð¸Ð·Ð¼ÐµÑ€ÐµÐ½Ð¸Ñ Ð² другую. +DEC2BIN = ДЕС.Ð’.ДВ ## Преобразует деÑÑтичное чиÑло в двоичное. +DEC2HEX = ДЕС.Ð’.ШЕСТР## Преобразует деÑÑтичное чиÑло в шеÑтнадцатеричное. +DEC2OCT = ДЕС.Ð’.ВОСЬМ ## Преобразует деÑÑтичное чиÑло в воÑьмеричное. +DELTA = ДЕЛЬТР## ПроверÑет равенÑтво двух значений. +ERF = ФОШ ## Возвращает функцию ошибки. +ERFC = ДФОШ ## Возвращает дополнительную функцию ошибки. +GESTEP = ПОРОГ ## ПроверÑет, не превышает ли данное чиÑло порогового значениÑ. +HEX2BIN = ШЕСТÐ.Ð’.ДВ ## Преобразует шеÑтнадцатеричное чиÑло в двоичное. +HEX2DEC = ШЕСТÐ.Ð’.ДЕС ## Преобразует шеÑтнадцатеричное чиÑло в деÑÑтичное. +HEX2OCT = ШЕСТÐ.Ð’.ВОСЬМ ## Преобразует шеÑтнадцатеричное чиÑло в воÑьмеричное. +IMABS = МÐИМ.ABS ## Возвращает абÑолютную величину (модуль) комплекÑного чиÑла. +IMAGINARY = МÐИМ.ЧÐСТЬ ## Возвращает коÑффициент при мнимой чаÑти комплекÑного чиÑла. +IMARGUMENT = МÐИМ.ÐРГУМЕÐТ ## Возвращает значение аргумента комплекÑного чиÑла (тета) — угол, выраженный в радианах. +IMCONJUGATE = МÐИМ.СОПРЯЖ ## Возвращает комплекÑно-ÑопрÑженное комплекÑное чиÑло. +IMCOS = МÐИМ.COS ## Возвращает коÑÐ¸Ð½ÑƒÑ ÐºÐ¾Ð¼Ð¿Ð»ÐµÐºÑного чиÑла. +IMDIV = МÐИМ.ДЕЛ ## Возвращает чаÑтное от Ð´ÐµÐ»ÐµÐ½Ð¸Ñ Ð´Ð²ÑƒÑ… комплекÑных чиÑел. +IMEXP = МÐИМ.EXP ## Возвращает ÑкÑпоненту комплекÑного чиÑла. +IMLN = МÐИМ.LN ## Возвращает натуральный логарифм комплекÑного чиÑла. +IMLOG10 = МÐИМ.LOG10 ## Возвращает обычный (деÑÑтичный) логарифм комплекÑного чиÑла. +IMLOG2 = МÐИМ.LOG2 ## Возвращает двоичный логарифм комплекÑного чиÑла. +IMPOWER = МÐИМ.СТЕПЕÐЬ ## Возвращает комплекÑное чиÑло, возведенное в целую Ñтепень. +IMPRODUCT = МÐИМ.ПРОИЗВЕД ## Возвращает произведение от 2 до 29 комплекÑных чиÑел. +IMREAL = МÐИМ.ВЕЩ ## Возвращает коÑффициент при вещеÑтвенной чаÑти комплекÑного чиÑла. +IMSIN = МÐИМ.SIN ## Возвращает ÑÐ¸Ð½ÑƒÑ ÐºÐ¾Ð¼Ð¿Ð»ÐµÐºÑного чиÑла. +IMSQRT = МÐИМ.КОРЕÐЬ ## Возвращает значение квадратного ÐºÐ¾Ñ€Ð½Ñ Ð¸Ð· комплекÑного чиÑла. +IMSUB = МÐИМ.РÐЗР## Возвращает разноÑть двух комплекÑных чиÑел. +IMSUM = МÐИМ.СУММ ## Возвращает Ñумму комплекÑных чиÑел. +OCT2BIN = ВОСЬМ.Ð’.ДВ ## Преобразует воÑьмеричное чиÑло в двоичное. +OCT2DEC = ВОСЬМ.Ð’.ДЕС ## Преобразует воÑьмеричное чиÑло в деÑÑтичное. +OCT2HEX = ВОСЬМ.Ð’.ШЕСТР## Преобразует воÑьмеричное чиÑло в шеÑтнадцатеричное. + + +## +## Financial functions ФинанÑовые функции +## +ACCRINT = ÐÐКОПДОХОД ## Возвращает накопленный процент по ценным бумагам Ñ Ð¿ÐµÑ€Ð¸Ð¾Ð´Ð¸Ñ‡ÐµÑкой выплатой процентов. +ACCRINTM = ÐÐКОПДОХОДПОГÐШ ## Возвращает накопленный процент по ценным бумагам, проценты по которым выплачиваютÑÑ Ð² Ñрок погашениÑ. +AMORDEGRC = ÐМОРУМ ## Возвращает величину амортизации Ð´Ð»Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ периода, иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ ÐºÐ¾Ñффициент амортизации. +AMORLINC = ÐМОРУВ ## Возвращает величину амортизации Ð´Ð»Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ периода. +COUPDAYBS = ДÐЕЙКУПОÐДО ## Возвращает количеÑтво дней от начала дейÑÑ‚Ð²Ð¸Ñ ÐºÑƒÐ¿Ð¾Ð½Ð° до даты ÑоглашениÑ. +COUPDAYS = ДÐЕЙКУПОР## Возвращает чиÑло дней в периоде купона, Ñодержащем дату ÑоглашениÑ. +COUPDAYSNC = ДÐЕЙКУПОÐПОСЛЕ ## Возвращает чиÑло дней от даты ÑÐ¾Ð³Ð»Ð°ÑˆÐµÐ½Ð¸Ñ Ð´Ð¾ Ñрока Ñледующего купона. +COUPNCD = ДÐТÐКУПОÐПОСЛЕ ## Возвращает Ñледующую дату купона поÑле даты ÑоглашениÑ. +COUPNUM = ЧИСЛКУПОР## Возвращает количеÑтво купонов, которые могут быть оплачены между датой ÑÐ¾Ð³Ð»Ð°ÑˆÐµÐ½Ð¸Ñ Ð¸ Ñроком вÑÑ‚ÑƒÐ¿Ð»ÐµÐ½Ð¸Ñ Ð² Ñилу. +COUPPCD = ДÐТÐКУПОÐДО ## Возвращает предыдущую дату купона перед датой ÑоглашениÑ. +CUMIPMT = ОБЩПЛÐТ ## Возвращает общую выплату, произведенную между Ð´Ð²ÑƒÐ¼Ñ Ð¿ÐµÑ€Ð¸Ð¾Ð´Ð¸Ñ‡ÐµÑкими выплатами. +CUMPRINC = ОБЩДОХОД ## Возвращает общую выплату по займу между Ð´Ð²ÑƒÐ¼Ñ Ð¿ÐµÑ€Ð¸Ð¾Ð´Ð°Ð¼Ð¸. +DB = ФУО ## Возвращает величину амортизации актива Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ периода, раÑÑчитанную методом фикÑированного ÑƒÐ¼ÐµÐ½ÑŒÑˆÐµÐ½Ð¸Ñ Ð¾Ñтатка. +DDB = ДДОБ ## Возвращает величину амортизации актива за данный период, иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ Ð¼ÐµÑ‚Ð¾Ð´ двойного ÑƒÐ¼ÐµÐ½ÑŒÑˆÐµÐ½Ð¸Ñ Ð¾Ñтатка или иной Ñвно указанный метод. +DISC = СКИДКР## Возвращает норму Ñкидки Ð´Ð»Ñ Ñ†ÐµÐ½Ð½Ñ‹Ñ… бумаг. +DOLLARDE = РУБЛЬ.ДЕС ## Преобразует цену в рублÑÑ…, выраженную в виде дроби, в цену в рублÑÑ…, выраженную деÑÑтичным чиÑлом. +DOLLARFR = РУБЛЬ.ДРОБЬ ## Преобразует цену в рублÑÑ…, выраженную деÑÑтичным чиÑлом, в цену в рублÑÑ…, выраженную в виде дроби. +DURATION = ДЛИТ ## Возвращает ежегодную продолжительноÑть дейÑÑ‚Ð²Ð¸Ñ Ñ†ÐµÐ½Ð½Ñ‹Ñ… бумаг Ñ Ð¿ÐµÑ€Ð¸Ð¾Ð´Ð¸Ñ‡ÐµÑкими выплатами по процентам. +EFFECT = ЭФФЕКТ ## Возвращает дейÑтвующие ежегодные процентные Ñтавки. +FV = БС ## Возвращает будущую ÑтоимоÑть инвеÑтиции. +FVSCHEDULE = БЗРÐСПИС ## Возвращает будущую ÑтоимоÑть первоначальной оÑновной Ñуммы поÑле начиÑÐ»ÐµÐ½Ð¸Ñ Ñ€Ñда Ñложных процентов. +INTRATE = ИÐОРМР## Возвращает процентную Ñтавку Ð´Ð»Ñ Ð¿Ð¾Ð»Ð½Ð¾Ñтью инвеÑтированных ценных бумаг. +IPMT = ПРПЛТ ## Возвращает величину выплаты прибыли на Ð²Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð·Ð° данный период. +IRR = ВСД ## Возвращает внутреннюю Ñтавку доходноÑти Ð´Ð»Ñ Ñ€Ñда потоков денежных ÑредÑтв. +ISPMT = ПРОЦПЛÐТ ## ВычиÑлÑет выплаты за указанный период инвеÑтиции. +MDURATION = МДЛИТ ## Возвращает модифицированную длительноÑть ÐœÐ°ÐºÐ¾Ð»ÐµÑ Ð´Ð»Ñ Ñ†ÐµÐ½Ð½Ñ‹Ñ… бумаг Ñ Ð¿Ñ€ÐµÐ´Ð¿Ð¾Ð»Ð°Ð³Ð°ÐµÐ¼Ð¾Ð¹ номинальной ÑтоимоÑтью 100 рублей. +MIRR = МВСД ## Возвращает внутреннюю Ñтавку доходноÑти, при которой положительные и отрицательные денежные потоки имеют разные Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ñтавки. +NOMINAL = ÐОМИÐÐЛ ## Возвращает номинальную годовую процентную Ñтавку. +NPER = КПЕР ## Возвращает общее количеÑтво периодов выплаты Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ вклада. +NPV = ЧПС ## Возвращает чиÑтую приведенную ÑтоимоÑть инвеÑтиции, оÑнованной на Ñерии периодичеÑких денежных потоков и Ñтавке диÑконтированиÑ. +ODDFPRICE = ЦЕÐÐПЕРВÐЕРЕГ ## Возвращает цену за 100 рублей нарицательной ÑтоимоÑти ценных бумаг Ñ Ð½ÐµÑ€ÐµÐ³ÑƒÐ»Ñрным первым периодом. +ODDFYIELD = ДОХОДПЕРВÐЕРЕГ ## Возвращает доход по ценным бумагам Ñ Ð½ÐµÑ€ÐµÐ³ÑƒÐ»Ñрным первым периодом. +ODDLPRICE = ЦЕÐÐПОСЛÐЕРЕГ ## Возвращает цену за 100 рублей нарицательной ÑтоимоÑти ценных бумаг Ñ Ð½ÐµÑ€ÐµÐ³ÑƒÐ»Ñрным поÑледним периодом. +ODDLYIELD = ДОХОДПОСЛÐЕРЕГ ## Возвращает доход по ценным бумагам Ñ Ð½ÐµÑ€ÐµÐ³ÑƒÐ»Ñрным поÑледним периодом. +PMT = ПЛТ ## Возвращает величину выплаты за один период аннуитета. +PPMT = ОСПЛТ ## Возвращает величину выплат в погашение оÑновной Ñуммы по инвеÑтиции за заданный период. +PRICE = ЦЕÐÐ ## Возвращает цену за 100 рублей нарицательной ÑтоимоÑти ценных бумаг, по которым производитÑÑ Ð¿ÐµÑ€Ð¸Ð¾Ð´Ð¸Ñ‡ÐµÑÐºÐ°Ñ Ð²Ñ‹Ð¿Ð»Ð°Ñ‚Ð° процентов. +PRICEDISC = ЦЕÐÐСКИДКР## Возвращает цену за 100 рублей номинальной ÑтоимоÑти ценных бумаг, на которые Ñделана Ñкидка. +PRICEMAT = ЦЕÐÐПОГÐШ ## Возвращает цену за 100 рублей номинальной ÑтоимоÑти ценных бумаг, проценты по которым выплачиваютÑÑ Ð² Ñрок погашениÑ. +PV = ПС ## Возвращает приведенную (к текущему моменту) ÑтоимоÑть инвеÑтиции. +RATE = СТÐВКР## Возвращает процентную Ñтавку по аннуитету за один период. +RECEIVED = ПОЛУЧЕÐО ## Возвращает Ñумму, полученную к Ñроку Ð¿Ð¾Ð³Ð°ÑˆÐµÐ½Ð¸Ñ Ð¿Ð¾Ð»Ð½Ð¾Ñтью обеÑпеченных ценных бумаг. +SLN = ÐПЛ ## Возвращает величину линейной амортизации актива за один период. +SYD = ÐСЧ ## Возвращает величину амортизации актива за данный период, раÑÑчитанную методом Ñуммы годовых чиÑел. +TBILLEQ = РÐÐ’ÐОКЧЕК ## Возвращает Ñквивалентный облигации доход по казначейÑкому чеку. +TBILLPRICE = ЦЕÐÐКЧЕК ## Возвращает цену за 100 рублей нарицательной ÑтоимоÑти Ð´Ð»Ñ ÐºÐ°Ð·Ð½Ð°Ñ‡ÐµÐ¹Ñкого чека. +TBILLYIELD = ДОХОДКЧЕК ## Возвращает доход по казначейÑкому чеку. +VDB = ПУО ## Возвращает величину амортизации актива Ð´Ð»Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ð¾Ð³Ð¾ или чаÑтичного периода при иÑпользовании метода ÑокращающегоÑÑ Ð±Ð°Ð»Ð°Ð½Ñа. +XIRR = ЧИСТВÐДОХ ## Возвращает внутреннюю Ñтавку доходноÑти Ð´Ð»Ñ Ð³Ñ€Ð°Ñ„Ð¸ÐºÐ° денежных потоков, которые не обÑзательно ноÑÑÑ‚ периодичеÑкий характер. +XNPV = ЧИСТÐЗ ## Возвращает чиÑтую приведенную ÑтоимоÑть Ð´Ð»Ñ Ð´ÐµÐ½ÐµÐ¶Ð½Ñ‹Ñ… потоков, которые не обÑзательно ÑвлÑÑŽÑ‚ÑÑ Ð¿ÐµÑ€Ð¸Ð¾Ð´Ð¸Ñ‡ÐµÑкими. +YIELD = ДОХОД ## Возвращает доход от ценных бумаг, по которым производÑÑ‚ÑÑ Ð¿ÐµÑ€Ð¸Ð¾Ð´Ð¸Ñ‡ÐµÑкие выплаты процентов. +YIELDDISC = ДОХОДСКИДКР## Возвращает годовой доход по ценным бумагам, на которые Ñделана Ñкидка (пример — казначейÑкие чеки). +YIELDMAT = ДОХОДПОГÐШ ## Возвращает годовой доход от ценных бумаг, проценты по которым выплачиваютÑÑ Ð² Ñрок погашениÑ. + + +## +## Information functions Информационные функции +## +CELL = ЯЧЕЙКР## Возвращает информацию о формате, раÑположении или Ñодержимом Ñчейки. +ERROR.TYPE = ТИП.ОШИБКИ ## Возвращает чиÑловой код, ÑоответÑтвующий типу ошибки. +INFO = ИÐФОРМ ## Возвращает информацию о текущей операционной Ñреде. +ISBLANK = ЕПУСТО ## Возвращает значение ИСТИÐÐ, еÑли аргумент ÑвлÑетÑÑ ÑÑылкой на пуÑтую Ñчейку. +ISERR = ЕОШ ## Возвращает значение ИСТИÐÐ, еÑли аргумент ÑÑылаетÑÑ Ð½Ð° любое значение ошибки, кроме #Ð/Д. +ISERROR = ЕОШИБКР## Возвращает значение ИСТИÐÐ, еÑли аргумент ÑÑылаетÑÑ Ð½Ð° любое значение ошибки. +ISEVEN = ЕЧÐТР## Возвращает значение ИСТИÐÐ, еÑли значение аргумента ÑвлÑетÑÑ Ñ‡ÐµÑ‚Ð½Ñ‹Ð¼ чиÑлом. +ISLOGICAL = ЕЛОГИЧ ## Возвращает значение ИСТИÐÐ, еÑли аргумент ÑÑылаетÑÑ Ð½Ð° логичеÑкое значение. +ISNA = ЕÐД ## Возвращает значение ИСТИÐÐ, еÑли аргумент ÑÑылаетÑÑ Ð½Ð° значение ошибки #Ð/Д. +ISNONTEXT = ЕÐЕТЕКСТ ## Возвращает значение ИСТИÐÐ, еÑли значение аргумента не ÑвлÑетÑÑ Ñ‚ÐµÐºÑтом. +ISNUMBER = ЕЧИСЛО ## Возвращает значение ИСТИÐÐ, еÑли аргумент ÑÑылаетÑÑ Ð½Ð° чиÑло. +ISODD = ЕÐЕЧÐТ ## Возвращает значение ИСТИÐÐ, еÑли значение аргумента ÑвлÑетÑÑ Ð½ÐµÑ‡ÐµÑ‚Ð½Ñ‹Ð¼ чиÑлом. +ISREF = ЕССЫЛКР## Возвращает значение ИСТИÐÐ, еÑли значение аргумента ÑвлÑетÑÑ ÑÑылкой. +ISTEXT = ЕТЕКСТ ## Возвращает значение ИСТИÐÐ, еÑли значение аргумента ÑвлÑетÑÑ Ñ‚ÐµÐºÑтом. +N = Ч ## Возвращает значение, преобразованное в чиÑло. +NA = ÐД ## Возвращает значение ошибки #Ð/Д. +TYPE = ТИП ## Возвращает чиÑло, обозначающее тип данных значениÑ. + + +## +## Logical functions ЛогичеÑкие функции +## +AND = И ## Renvoie VRAI si tous ses arguments sont VRAI. +FALSE = ЛОЖЬ ## Возвращает логичеÑкое значение ЛОЖЬ. +IF = ЕСЛИ ## ВыполнÑет проверку уÑловиÑ. +IFERROR = ЕСЛИОШИБКР## Возвращает введённое значение, еÑли вычиÑление по формуле вызывает ошибку; в противном Ñлучае Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ Ð²Ð¾Ð·Ð²Ñ€Ð°Ñ‰Ð°ÐµÑ‚ результат вычиÑлениÑ. +NOT = ÐЕ ## МенÑет логичеÑкое значение Ñвоего аргумента на противоположное. +OR = ИЛИ ## Возвращает значение ИСТИÐÐ, еÑли Ñ…Ð¾Ñ‚Ñ Ð±Ñ‹ один аргумент имеет значение ИСТИÐÐ. +TRUE = ИСТИÐÐ ## Возвращает логичеÑкое значение ИСТИÐÐ. + + +## +## Lookup and reference functions Функции ÑÑылки и поиÑка +## +ADDRESS = ÐДРЕС ## Возвращает ÑÑылку на отдельную Ñчейку лиÑта в виде текÑта. +AREAS = ОБЛÐСТИ ## Возвращает количеÑтво облаÑтей в ÑÑылке. +CHOOSE = ВЫБОР ## Выбирает значение из ÑпиÑка значений по индекÑу. +COLUMN = СТОЛБЕЦ ## Возвращает номер Ñтолбца, на который указывает ÑÑылка. +COLUMNS = ЧИСЛСТОЛБ ## Возвращает количеÑтво Ñтолбцов в ÑÑылке. +HLOOKUP = ГПР ## Ищет в первой Ñтроке маÑÑива и возвращает значение отмеченной Ñчейки +HYPERLINK = ГИПЕРССЫЛКР## Создает ÑÑылку, открывающую документ, который находитÑÑ Ð½Ð° Ñервере Ñети, в интраÑети или в Интернете. +INDEX = ИÐДЕКС ## ИÑпользует Ð¸Ð½Ð´ÐµÐºÑ Ð´Ð»Ñ Ð²Ñ‹Ð±Ð¾Ñ€Ð° Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¸Ð· ÑÑылки или маÑÑива. +INDIRECT = ДВССЫЛ ## Возвращает ÑÑылку, заданную текÑтовым значением. +LOOKUP = ПРОСМОТР ## Ищет Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² векторе или маÑÑиве. +MATCH = ПОИСКПОЗ ## Ищет Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² ÑÑылке или маÑÑиве. +OFFSET = СМЕЩ ## Возвращает Ñмещение ÑÑылки отноÑительно заданной ÑÑылки. +ROW = СТРОКР## Возвращает номер Ñтроки, определÑемой ÑÑылкой. +ROWS = ЧСТРОК ## Возвращает количеÑтво Ñтрок в ÑÑылке. +RTD = ДРВ ## Извлекает данные реального времени из программ, поддерживающих автоматизацию COM (Программирование объектов. Стандартное ÑредÑтво Ð´Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ñ Ð¾Ð±ÑŠÐµÐºÑ‚Ð°Ð¼Ð¸ некоторого Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð¸Ð· другого Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð¸Ð»Ð¸ ÑредÑтва разработки. Программирование объектов (ранее называемое программированием OLE) ÑвлÑетÑÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸ÐµÐ¹ модели COM (Component Object Model, модель компонентных объектов).). +TRANSPOSE = ТРÐÐСП ## Возвращает транÑпонированный маÑÑив. +VLOOKUP = ВПР ## Ищет значение в первом Ñтолбце маÑÑива и возвращает значение из Ñчейки в найденной Ñтроке и указанном Ñтолбце. + + +## +## Math and trigonometry functions МатематичеÑкие и тригонометричеÑкие функции +## +ABS = ABS ## Возвращает модуль (абÑолютную величину) чиÑла. +ACOS = ACOS ## Возвращает арккоÑÐ¸Ð½ÑƒÑ Ñ‡Ð¸Ñла. +ACOSH = ACOSH ## Возвращает гиперболичеÑкий арккоÑÐ¸Ð½ÑƒÑ Ñ‡Ð¸Ñла. +ASIN = ASIN ## Возвращает аркÑÐ¸Ð½ÑƒÑ Ñ‡Ð¸Ñла. +ASINH = ASINH ## Возвращает гиперболичеÑкий аркÑÐ¸Ð½ÑƒÑ Ñ‡Ð¸Ñла. +ATAN = ATAN ## Возвращает Ð°Ñ€ÐºÑ‚Ð°Ð½Ð³ÐµÐ½Ñ Ñ‡Ð¸Ñла. +ATAN2 = ATAN2 ## Возвращает Ð°Ñ€ÐºÑ‚Ð°Ð½Ð³ÐµÐ½Ñ Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ð½Ð½Ñ‹Ñ… координат x и y. +ATANH = ATANH ## Возвращает гиперболичеÑкий Ð°Ñ€ÐºÑ‚Ð°Ð½Ð³ÐµÐ½Ñ Ñ‡Ð¸Ñла. +CEILING = ОКРВВЕРХ ## ОкруглÑет чиÑло до ближайшего целого или до ближайшего кратного указанному значению. +COMBIN = ЧИСЛКОМБ ## Возвращает количеÑтво комбинаций Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ чиÑла объектов. +COS = COS ## Возвращает коÑÐ¸Ð½ÑƒÑ Ñ‡Ð¸Ñла. +COSH = COSH ## Возвращает гиперболичеÑкий коÑÐ¸Ð½ÑƒÑ Ñ‡Ð¸Ñла. +DEGREES = ГРÐДУСЫ ## Преобразует радианы в градуÑÑ‹. +EVEN = ЧÐТР## ОкруглÑет чиÑло до ближайшего четного целого. +EXP = EXP ## Возвращает чиÑло e, возведенное в указанную Ñтепень. +FACT = ФÐКТР ## Возвращает факториал чиÑла. +FACTDOUBLE = ДВФÐКТР ## Возвращает двойной факториал чиÑла. +FLOOR = ОКРВÐИЗ ## ОкруглÑет чиÑло до ближайшего меньшего по модулю значениÑ. +GCD = ÐОД ## Возвращает наибольший общий делитель. +INT = ЦЕЛОЕ ## ОкруглÑет чиÑло до ближайшего меньшего целого. +LCM = ÐОК ## Возвращает наименьшее общее кратное. +LN = LN ## Возвращает натуральный логарифм чиÑла. +LOG = LOG ## Возвращает логарифм чиÑла по заданному оÑнованию. +LOG10 = LOG10 ## Возвращает деÑÑтичный логарифм чиÑла. +MDETERM = МОПРЕД ## Возвращает определитель матрицы маÑÑива. +MINVERSE = МОБР ## Возвращает обратную матрицу маÑÑива. +MMULT = МУМÐОЖ ## Возвращает произведение матриц двух маÑÑивов. +MOD = ОСТÐТ ## Возвращает оÑтаток от делениÑ. +MROUND = ОКРУГЛТ ## Возвращает чиÑло, округленное Ñ Ñ‚Ñ€ÐµÐ±ÑƒÐµÐ¼Ð¾Ð¹ точноÑтью. +MULTINOMIAL = МУЛЬТИÐОМ ## Возвращает мультиномиальный коÑффициент множеÑтва чиÑел. +ODD = ÐЕЧÐТ ## ОкруглÑет чиÑло до ближайшего нечетного целого. +PI = ПИ ## Возвращает чиÑло пи. +POWER = СТЕПЕÐЬ ## Возвращает результат Ð²Ð¾Ð·Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Ñ‡Ð¸Ñла в Ñтепень. +PRODUCT = ПРОИЗВЕД ## Возвращает произведение аргументов. +QUOTIENT = ЧÐСТÐОЕ ## Возвращает целую чаÑть чаÑтного при делении. +RADIANS = РÐДИÐÐЫ ## Преобразует градуÑÑ‹ в радианы. +RAND = СЛЧИС ## Возвращает Ñлучайное чиÑло в интервале от 0 до 1. +RANDBETWEEN = СЛУЧМЕЖДУ ## Возвращает Ñлучайное чиÑло в интервале между Ð´Ð²ÑƒÐ¼Ñ Ð·Ð°Ð´Ð°Ð½Ð½Ñ‹Ð¼Ð¸ чиÑлами. +ROMAN = РИМСКОЕ ## Преобразует арабÑкие цифры в римÑкие в виде текÑта. +ROUND = ОКРУГЛ ## ОкруглÑет чиÑло до указанного количеÑтва деÑÑтичных разрÑдов. +ROUNDDOWN = ОКРУГЛВÐИЗ ## ОкруглÑет чиÑло до ближайшего меньшего по модулю значениÑ. +ROUNDUP = ОКРУГЛВВЕРХ ## ОкруглÑет чиÑло до ближайшего большего по модулю значениÑ. +SERIESSUM = РЯД.СУММ ## Возвращает Ñумму Ñтепенного Ñ€Ñда, вычиÑленную по формуле. +SIGN = ЗÐÐК ## Возвращает знак чиÑла. +SIN = SIN ## Возвращает ÑÐ¸Ð½ÑƒÑ Ð·Ð°Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ угла. +SINH = SINH ## Возвращает гиперболичеÑкий ÑÐ¸Ð½ÑƒÑ Ñ‡Ð¸Ñла. +SQRT = КОРЕÐЬ ## Возвращает положительное значение квадратного корнÑ. +SQRTPI = КОРЕÐЬПИ ## Возвращает квадратный корень из Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð²Ñ‹Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ (чиÑло * ПИ). +SUBTOTAL = ПРОМЕЖУТОЧÐЫЕ.ИТОГИ ## Возвращает промежуточный итог в ÑпиÑке или базе данных. +SUM = СУММ ## Суммирует аргументы. +SUMIF = СУММЕСЛИ ## Суммирует Ñчейки, удовлетворÑющие заданному уÑловию. +SUMIFS = СУММЕСЛИМР## Суммирует диапазон Ñчеек, удовлетворÑющих неÑкольким уÑловиÑм. +SUMPRODUCT = СУММПРОИЗВ ## Возвращает Ñумму произведений ÑоответÑтвующих Ñлементов маÑÑивов. +SUMSQ = СУММКВ ## Возвращает Ñумму квадратов аргументов. +SUMX2MY2 = СУММРÐЗÐКВ ## Возвращает Ñумму разноÑтей квадратов ÑоответÑтвующих значений в двух маÑÑивах. +SUMX2PY2 = СУММСУММКВ ## Возвращает Ñумму Ñумм квадратов ÑоответÑтвующих Ñлементов двух маÑÑивов. +SUMXMY2 = СУММКВРÐЗР## Возвращает Ñумму квадратов разноÑтей ÑоответÑтвующих значений в двух маÑÑивах. +TAN = TAN ## Возвращает Ñ‚Ð°Ð½Ð³ÐµÐ½Ñ Ñ‡Ð¸Ñла. +TANH = TANH ## Возвращает гиперболичеÑкий Ñ‚Ð°Ð½Ð³ÐµÐ½Ñ Ñ‡Ð¸Ñла. +TRUNC = ОТБР ## ОтбраÑывает дробную чаÑть чиÑла. + + +## +## Statistical functions СтатиÑтичеÑкие функции +## +AVEDEV = СРОТКЛ ## Возвращает Ñреднее арифметичеÑкое абÑолютных значений отклонений точек данных от Ñреднего. +AVERAGE = СРЗÐÐЧ ## Возвращает Ñреднее арифметичеÑкое аргументов. +AVERAGEA = СРЗÐÐЧР## Возвращает Ñреднее арифметичеÑкое аргументов, Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ñ‡Ð¸Ñла, текÑÑ‚ и логичеÑкие значениÑ. +AVERAGEIF = СРЗÐÐЧЕСЛИ ## Возвращает Ñреднее значение (Ñреднее арифметичеÑкое) вÑех Ñчеек в диапазоне, которые удовлетворÑÑŽÑ‚ данному уÑловию. +AVERAGEIFS = СРЗÐÐЧЕСЛИМР## Возвращает Ñреднее значение (Ñреднее арифметичеÑкое) вÑех Ñчеек, которые удовлетворÑÑŽÑ‚ неÑкольким уÑловиÑм. +BETADIST = БЕТÐРÐСП ## Возвращает интегральную функцию бета-раÑпределениÑ. +BETAINV = БЕТÐОБР ## Возвращает обратную интегральную функцию указанного бета-раÑпределениÑ. +BINOMDIST = БИÐОМРÐСП ## Возвращает отдельное значение биномиального раÑпределениÑ. +CHIDIST = ХИ2РÐСП ## Возвращает одноÑтороннюю вероÑтноÑть раÑÐ¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Ñ…Ð¸-квадрат. +CHIINV = ХИ2ОБР ## Возвращает обратное значение одноÑторонней вероÑтноÑти раÑÐ¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Ñ…Ð¸-квадрат. +CHITEST = ХИ2ТЕСТ ## Возвращает теÑÑ‚ на незавиÑимоÑть. +CONFIDENCE = ДОВЕРИТ ## Возвращает доверительный интервал Ð´Ð»Ñ Ñреднего Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ генеральной ÑовокупноÑти. +CORREL = КОРРЕЛ ## Возвращает коÑффициент коррелÑции между Ð´Ð²ÑƒÐ¼Ñ Ð¼Ð½Ð¾Ð¶ÐµÑтвами данных. +COUNT = СЧÐТ ## ПодÑчитывает количеÑтво чиÑел в ÑпиÑке аргументов. +COUNTA = СЧÐТЗ ## ПодÑчитывает количеÑтво значений в ÑпиÑке аргументов. +COUNTBLANK = СЧИТÐТЬПУСТОТЫ ## ПодÑчитывает количеÑтво пуÑтых Ñчеек в диапазоне +COUNTIF = СЧÐТЕСЛИ ## ПодÑчитывает количеÑтво Ñчеек в диапазоне, удовлетворÑющих заданному уÑловию +COUNTIFS = СЧÐТЕСЛИМР## ПодÑчитывает количеÑтво Ñчеек внутри диапазона, удовлетворÑющих неÑкольким уÑловиÑм. +COVAR = КОВÐР ## Возвращает ковариацию, Ñреднее произведений парных отклонений +CRITBINOM = КРИТБИÐОМ ## Возвращает наименьшее значение, Ð´Ð»Ñ ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ð³Ð¾ интегральное биномиальное раÑпределение меньше или равно заданному критерию. +DEVSQ = КВÐДРОТКЛ ## Возвращает Ñумму квадратов отклонений. +EXPONDIST = ЭКСПРÐСП ## Возвращает ÑкÑпоненциальное раÑпределение. +FDIST = FРÐСП ## Возвращает F-раÑпределение вероÑтноÑти. +FINV = FРÐСПОБР ## Возвращает обратное значение Ð´Ð»Ñ F-раÑÐ¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Ð²ÐµÑ€Ð¾ÑтноÑти. +FISHER = ФИШЕР ## Возвращает преобразование Фишера. +FISHERINV = ФИШЕРОБР ## Возвращает обратное преобразование Фишера. +FORECAST = ПРЕДСКÐЗ ## Возвращает значение линейного тренда. +FREQUENCY = ЧÐСТОТР## Возвращает раÑпределение чаÑтот в виде вертикального маÑÑива. +FTEST = ФТЕСТ ## Возвращает результат F-теÑта. +GAMMADIST = ГÐММÐРÐСП ## Возвращает гамма-раÑпределение. +GAMMAINV = ГÐММÐОБР ## Возвращает обратное гамма-раÑпределение. +GAMMALN = ГÐММÐÐЛОГ ## Возвращает натуральный логарифм гамма функции, Γ(x). +GEOMEAN = СРГЕОМ ## Возвращает Ñреднее геометричеÑкое. +GROWTH = РОСТ ## Возвращает Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² ÑоответÑтвии Ñ ÑкÑпоненциальным трендом. +HARMEAN = СРГÐРМ ## Возвращает Ñреднее гармоничеÑкое. +HYPGEOMDIST = ГИПЕРГЕОМЕТ ## Возвращает гипергеометричеÑкое раÑпределение. +INTERCEPT = ОТРЕЗОК ## Возвращает отрезок, отÑекаемый на оÑи линией линейной регреÑÑии. +KURT = ЭКСЦЕСС ## Возвращает ÑкÑцеÑÑ Ð¼Ð½Ð¾Ð¶ÐµÑтва данных. +LARGE = ÐÐИБОЛЬШИЙ ## Возвращает k-ое наибольшее значение в множеÑтве данных. +LINEST = ЛИÐЕЙР## Возвращает параметры линейного тренда. +LOGEST = ЛГРФПРИБЛ ## Возвращает параметры ÑкÑпоненциального тренда. +LOGINV = ЛОГÐОРМОБР ## Возвращает обратное логарифмичеÑкое нормальное раÑпределение. +LOGNORMDIST = ЛОГÐОРМРÐСП ## Возвращает интегральное логарифмичеÑкое нормальное раÑпределение. +MAX = МÐКС ## Возвращает наибольшее значение в ÑпиÑке аргументов. +MAXA = МÐКСР## Возвращает наибольшее значение в ÑпиÑке аргументов, Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ñ‡Ð¸Ñла, текÑÑ‚ и логичеÑкие значениÑ. +MEDIAN = МЕДИÐÐÐ ## Возвращает медиану заданных чиÑел. +MIN = МИР## Возвращает наименьшее значение в ÑпиÑке аргументов. +MINA = МИÐÐ ## Возвращает наименьшее значение в ÑпиÑке аргументов, Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ñ‡Ð¸Ñла, текÑÑ‚ и логичеÑкие значениÑ. +MODE = МОДР## Возвращает значение моды множеÑтва данных. +NEGBINOMDIST = ОТРБИÐОМРÐСП ## Возвращает отрицательное биномиальное раÑпределение. +NORMDIST = ÐОРМРÐСП ## Возвращает нормальную функцию раÑпределениÑ. +NORMINV = ÐОРМОБР ## Возвращает обратное нормальное раÑпределение. +NORMSDIST = ÐОРМСТРÐСП ## Возвращает Ñтандартное нормальное интегральное раÑпределение. +NORMSINV = ÐОРМСТОБР ## Возвращает обратное значение Ñтандартного нормального раÑпределениÑ. +PEARSON = ПИРСОР## Возвращает коÑффициент коррелÑции ПирÑона. +PERCENTILE = ПЕРСЕÐТИЛЬ ## Возвращает k-ую перÑентиль Ð´Ð»Ñ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ð¹ диапазона. +PERCENTRANK = ПРОЦЕÐТРÐÐГ ## Возвращает процентную норму Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² множеÑтве данных. +PERMUT = ПЕРЕСТ ## Возвращает количеÑтво переÑтановок Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ чиÑла объектов. +POISSON = ПУÐССОР## Возвращает раÑпределение ПуаÑÑона. +PROB = ВЕРОЯТÐОСТЬ ## Возвращает вероÑтноÑть того, что значение из диапазона находитÑÑ Ð²Ð½ÑƒÑ‚Ñ€Ð¸ заданных пределов. +QUARTILE = КВÐРТИЛЬ ## Возвращает квартиль множеÑтва данных. +RANK = РÐÐГ ## Возвращает ранг чиÑла в ÑпиÑке чиÑел. +RSQ = КВПИРСОР## Возвращает квадрат коÑффициента коррелÑции ПирÑона. +SKEW = СКОС ## Возвращает аÑимметрию раÑпределениÑ. +SLOPE = ÐÐКЛОР## Возвращает наклон линии линейной регреÑÑии. +SMALL = ÐÐИМЕÐЬШИЙ ## Возвращает k-ое наименьшее значение в множеÑтве данных. +STANDARDIZE = ÐОРМÐЛИЗÐЦИЯ ## Возвращает нормализованное значение. +STDEV = СТÐÐДОТКЛОР## Оценивает Ñтандартное отклонение по выборке. +STDEVA = СТÐÐДОТКЛОÐÐ ## Оценивает Ñтандартное отклонение по выборке, Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ñ‡Ð¸Ñла, текÑÑ‚ и логичеÑкие значениÑ. +STDEVP = СТÐÐДОТКЛОÐП ## ВычиÑлÑет Ñтандартное отклонение по генеральной ÑовокупноÑти. +STDEVPA = СТÐÐДОТКЛОÐПР## ВычиÑлÑет Ñтандартное отклонение по генеральной ÑовокупноÑти, Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ñ‡Ð¸Ñла, текÑÑ‚ и логичеÑкие значениÑ. +STEYX = СТОШYX ## Возвращает Ñтандартную ошибку предÑказанных значений y Ð´Ð»Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ x в регреÑÑии. +TDIST = СТЬЮДРÐСП ## Возвращает t-раÑпределение Стьюдента. +TINV = СТЬЮДРÐСПОБР ## Возвращает обратное t-раÑпределение Стьюдента. +TREND = ТЕÐДЕÐЦИЯ ## Возвращает Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² ÑоответÑтвии Ñ Ð»Ð¸Ð½ÐµÐ¹Ð½Ñ‹Ð¼ трендом. +TRIMMEAN = УРЕЗСРЕДÐЕЕ ## Возвращает Ñреднее внутренноÑти множеÑтва данных. +TTEST = ТТЕСТ ## Возвращает вероÑтноÑть, ÑоответÑтвующую критерию Стьюдента. +VAR = ДИСП ## Оценивает диÑперÑию по выборке. +VARA = ДИСПР## Оценивает диÑперÑию по выборке, Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ñ‡Ð¸Ñла, текÑÑ‚ и логичеÑкие значениÑ. +VARP = ДИСПР ## ВычиÑлÑет диÑперÑию Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ð»ÑŒÐ½Ð¾Ð¹ ÑовокупноÑти. +VARPA = ДИСПРР## ВычиÑлÑет диÑперÑию Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ð»ÑŒÐ½Ð¾Ð¹ ÑовокупноÑти, Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ñ‡Ð¸Ñла, текÑÑ‚ и логичеÑкие значениÑ. +WEIBULL = ВЕЙБУЛЛ ## Возвращает раÑпределение Вейбулла. +ZTEST = ZТЕСТ ## Возвращает двуÑтороннее P-значение z-теÑта. + + +## +## Text functions ТекÑтовые функции +## +ASC = ASC ## Ð”Ð»Ñ Ñзыков Ñ Ð´Ð²ÑƒÑ…Ð±Ð°Ð¹Ñ‚Ð¾Ð²Ñ‹Ð¼Ð¸ наборами знаков (например, катакана) преобразует полноширинные (двухбайтовые) знаки в полуширинные (однобайтовые). +BAHTTEXT = БÐТТЕКСТ ## Преобразует чиÑло в текÑÑ‚, иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ Ð´ÐµÐ½ÐµÐ¶Ð½Ñ‹Ð¹ формат ß (БÐТ). +CHAR = СИМВОЛ ## Возвращает знак Ñ Ð·Ð°Ð´Ð°Ð½Ð½Ñ‹Ð¼ кодом. +CLEAN = ПЕЧСИМВ ## УдалÑет вÑе непечатаемые знаки из текÑта. +CODE = КОДСИМВ ## Возвращает чиÑловой код первого знака в текÑтовой Ñтроке. +CONCATENATE = СЦЕПИТЬ ## ОбъединÑет неÑколько текÑтовых Ñлементов в один. +DOLLAR = РУБЛЬ ## Преобразует чиÑло в текÑÑ‚, иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ Ð´ÐµÐ½ÐµÐ¶Ð½Ñ‹Ð¹ формат. +EXACT = СОВПÐД ## ПроверÑет идентичноÑть двух текÑтовых значений. +FIND = ÐÐЙТИ ## Ищет Ð²Ñ…Ð¾Ð¶Ð´ÐµÐ½Ð¸Ñ Ð¾Ð´Ð½Ð¾Ð³Ð¾ текÑтового Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² другом (Ñ ÑƒÑ‡ÐµÑ‚Ð¾Ð¼ региÑтра). +FINDB = ÐÐЙТИБ ## Ищет Ð²Ñ…Ð¾Ð¶Ð´ÐµÐ½Ð¸Ñ Ð¾Ð´Ð½Ð¾Ð³Ð¾ текÑтового Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² другом (Ñ ÑƒÑ‡ÐµÑ‚Ð¾Ð¼ региÑтра). +FIXED = ФИКСИРОВÐÐÐЫЙ ## Форматирует чиÑло и преобразует его в текÑÑ‚ Ñ Ð·Ð°Ð´Ð°Ð½Ð½Ñ‹Ð¼ чиÑлом деÑÑтичных знаков. +JIS = JIS ## Ð”Ð»Ñ Ñзыков Ñ Ð´Ð²ÑƒÑ…Ð±Ð°Ð¹Ñ‚Ð¾Ð²Ñ‹Ð¼Ð¸ наборами знаков (например, катакана) преобразует полуширинные (однобайтовые) знаки в текÑтовой Ñтроке в полноширинные (двухбайтовые). +LEFT = ЛЕВСИМВ ## Возвращает крайние Ñлева знаки текÑтового значениÑ. +LEFTB = ЛЕВБ ## Возвращает крайние Ñлева знаки текÑтового значениÑ. +LEN = ДЛСТР ## Возвращает количеÑтво знаков в текÑтовой Ñтроке. +LENB = ДЛИÐБ ## Возвращает количеÑтво знаков в текÑтовой Ñтроке. +LOWER = СТРОЧР## Преобразует вÑе буквы текÑта в Ñтрочные. +MID = ПСТР ## Возвращает заданное чиÑло знаков из Ñтроки текÑта, Ð½Ð°Ñ‡Ð¸Ð½Ð°Ñ Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ð¾Ð¹ позиции. +MIDB = ПСТРБ ## Возвращает заданное чиÑло знаков из Ñтроки текÑта, Ð½Ð°Ñ‡Ð¸Ð½Ð°Ñ Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ð¾Ð¹ позиции. +PHONETIC = PHONETIC ## Извлекает фонетичеÑкие (фуригана) знаки из текÑтовой Ñтроки. +PROPER = ПРОПÐÐЧ ## Преобразует первую букву в каждом Ñлове текÑта в пропиÑную. +REPLACE = ЗÐМЕÐИТЬ ## ЗаменÑет знаки в текÑте. +REPLACEB = ЗÐМЕÐИТЬБ ## ЗаменÑет знаки в текÑте. +REPT = ПОВТОР ## ПовторÑет текÑÑ‚ заданное чиÑло раз. +RIGHT = ПРÐВСИМВ ## Возвращает крайние Ñправа знаки текÑтовой Ñтроки. +RIGHTB = ПРÐВБ ## Возвращает крайние Ñправа знаки текÑтовой Ñтроки. +SEARCH = ПОИСК ## Ищет Ð²Ñ…Ð¾Ð¶Ð´ÐµÐ½Ð¸Ñ Ð¾Ð´Ð½Ð¾Ð³Ð¾ текÑтового Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² другом (без учета региÑтра). +SEARCHB = ПОИСКБ ## Ищет Ð²Ñ…Ð¾Ð¶Ð´ÐµÐ½Ð¸Ñ Ð¾Ð´Ð½Ð¾Ð³Ð¾ текÑтового Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð² другом (без учета региÑтра). +SUBSTITUTE = ПОДСТÐВИТЬ ## ЗаменÑет в текÑтовой Ñтроке Ñтарый текÑÑ‚ новым. +T = Т ## Преобразует аргументы в текÑÑ‚. +TEXT = ТЕКСТ ## Форматирует чиÑло и преобразует его в текÑÑ‚. +TRIM = СЖПРОБЕЛЫ ## УдалÑет из текÑта пробелы. +UPPER = ПРОПИСР## Преобразует вÑе буквы текÑта в пропиÑные. +VALUE = ЗÐÐЧЕР## Преобразует текÑтовый аргумент в чиÑло. diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/cs/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/cs/config new file mode 100644 index 0000000..49f40fc --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/cs/config @@ -0,0 +1,20 @@ +############################################################ +## +## PhpSpreadsheet - locale settings +## +## CeÅ¡tina (Czech) +## +############################################################ + +ArgumentSeparator = ; + +## +## Error Codes +## +NULL +DIV0 = #DÄšLENÃ_NULOU! +VALUE = #HODNOTA! +REF = #ODKAZ! +NAME = #NÃZEV? +NUM = #ÄŒÃSLO! +NA = #NENÃ_K_DISPOZICI diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/cs/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/cs/functions new file mode 100644 index 0000000..49c4945 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/cs/functions @@ -0,0 +1,520 @@ +############################################################ +## +## PhpSpreadsheet - function name translations +## +## CeÅ¡tina (Czech) +## +############################################################ + + +## +## Funkce pro práci s datovými krychlemi (Cube Functions) +## +CUBEKPIMEMBER = CUBEKPIMEMBER +CUBEMEMBER = CUBEMEMBER +CUBEMEMBERPROPERTY = CUBEMEMBERPROPERTY +CUBERANKEDMEMBER = CUBERANKEDMEMBER +CUBESET = CUBESET +CUBESETCOUNT = CUBESETCOUNT +CUBEVALUE = CUBEVALUE + +## +## Funkce databáze (Database Functions) +## +DAVERAGE = DPRÅ®MÄšR +DCOUNT = DPOÄŒET +DCOUNTA = DPOÄŒET2 +DGET = DZÃSKAT +DMAX = DMAX +DMIN = DMIN +DPRODUCT = DSOUÄŒIN +DSTDEV = DSMODCH.VÃBÄšR +DSTDEVP = DSMODCH +DSUM = DSUMA +DVAR = DVAR.VÃBÄšR +DVARP = DVAR + +## +## Funkce data a Äasu (Date & Time Functions) +## +DATE = DATUM +DATEVALUE = DATUMHODN +DAY = DEN +DAYS = DAYS +DAYS360 = ROK360 +EDATE = EDATE +EOMONTH = EOMONTH +HOUR = HODINA +ISOWEEKNUM = ISOWEEKNUM +MINUTE = MINUTA +MONTH = MÄšSÃC +NETWORKDAYS = NETWORKDAYS +NETWORKDAYS.INTL = NETWORKDAYS.INTL +NOW = NYNà +SECOND = SEKUNDA +TIME = ÄŒAS +TIMEVALUE = ÄŒASHODN +TODAY = DNES +WEEKDAY = DENTÃDNE +WEEKNUM = WEEKNUM +WORKDAY = WORKDAY +WORKDAY.INTL = WORKDAY.INTL +YEAR = ROK +YEARFRAC = YEARFRAC + +## +## Inženýrské funkce (Engineering Functions) +## +BESSELI = BESSELI +BESSELJ = BESSELJ +BESSELK = BESSELK +BESSELY = BESSELY +BIN2DEC = BIN2DEC +BIN2HEX = BIN2HEX +BIN2OCT = BIN2OCT +BITAND = BITAND +BITLSHIFT = BITLSHIFT +BITOR = BITOR +BITRSHIFT = BITRSHIFT +BITXOR = BITXOR +COMPLEX = COMPLEX +CONVERT = CONVERT +DEC2BIN = DEC2BIN +DEC2HEX = DEC2HEX +DEC2OCT = DEC2OCT +DELTA = DELTA +ERF = ERF +ERF.PRECISE = ERF.PRECISE +ERFC = ERFC +ERFC.PRECISE = ERFC.PRECISE +GESTEP = GESTEP +HEX2BIN = HEX2BIN +HEX2DEC = HEX2DEC +HEX2OCT = HEX2OCT +IMABS = IMABS +IMAGINARY = IMAGINARY +IMARGUMENT = IMARGUMENT +IMCONJUGATE = IMCONJUGATE +IMCOS = IMCOS +IMCOSH = IMCOSH +IMCOT = IMCOT +IMCSC = IMCSC +IMCSCH = IMCSCH +IMDIV = IMDIV +IMEXP = IMEXP +IMLN = IMLN +IMLOG10 = IMLOG10 +IMLOG2 = IMLOG2 +IMPOWER = IMPOWER +IMPRODUCT = IMPRODUCT +IMREAL = IMREAL +IMSEC = IMSEC +IMSECH = IMSECH +IMSIN = IMSIN +IMSINH = IMSINH +IMSQRT = IMSQRT +IMSUB = IMSUB +IMSUM = IMSUM +IMTAN = IMTAN +OCT2BIN = OCT2BIN +OCT2DEC = OCT2DEC +OCT2HEX = OCT2HEX + +## +## FinanÄní funkce (Financial Functions) +## +ACCRINT = ACCRINT +ACCRINTM = ACCRINTM +AMORDEGRC = AMORDEGRC +AMORLINC = AMORLINC +COUPDAYBS = COUPDAYBS +COUPDAYS = COUPDAYS +COUPDAYSNC = COUPDAYSNC +COUPNCD = COUPNCD +COUPNUM = COUPNUM +COUPPCD = COUPPCD +CUMIPMT = CUMIPMT +CUMPRINC = CUMPRINC +DB = ODPIS.ZRYCH +DDB = ODPIS.ZRYCH2 +DISC = DISC +DOLLARDE = DOLLARDE +DOLLARFR = DOLLARFR +DURATION = DURATION +EFFECT = EFFECT +FV = BUDHODNOTA +FVSCHEDULE = FVSCHEDULE +INTRATE = INTRATE +IPMT = PLATBA.ÚROK +IRR = MÃRA.VÃNOSNOSTI +ISPMT = ISPMT +MDURATION = MDURATION +MIRR = MOD.MÃRA.VÃNOSNOSTI +NOMINAL = NOMINAL +NPER = POÄŒET.OBDOBà +NPV = ÄŒISTÃ.SOUÄŒHODNOTA +ODDFPRICE = ODDFPRICE +ODDFYIELD = ODDFYIELD +ODDLPRICE = ODDLPRICE +ODDLYIELD = ODDLYIELD +PDURATION = PDURATION +PMT = PLATBA +PPMT = PLATBA.ZÃKLAD +PRICE = PRICE +PRICEDISC = PRICEDISC +PRICEMAT = PRICEMAT +PV = SOUÄŒHODNOTA +RATE = ÚROKOVÃ.MÃRA +RECEIVED = RECEIVED +RRI = RRI +SLN = ODPIS.LIN +SYD = ODPIS.NELIN +TBILLEQ = TBILLEQ +TBILLPRICE = TBILLPRICE +TBILLYIELD = TBILLYIELD +VDB = ODPIS.ZA.INT +XIRR = XIRR +XNPV = XNPV +YIELD = YIELD +YIELDDISC = YIELDDISC +YIELDMAT = YIELDMAT + +## +## InformaÄní funkce (Information Functions) +## +CELL = POLÃÄŒKO +ERROR.TYPE = CHYBA.TYP +INFO = O.PROSTŘEDà +ISBLANK = JE.PRÃZDNÉ +ISERR = JE.CHYBA +ISERROR = JE.CHYBHODN +ISEVEN = ISEVEN +ISFORMULA = ISFORMULA +ISLOGICAL = JE.LOGHODN +ISNA = JE.NEDEF +ISNONTEXT = JE.NETEXT +ISNUMBER = JE.ÄŒISLO +ISODD = ISODD +ISREF = JE.ODKAZ +ISTEXT = JE.TEXT +N = N +NA = NEDEF +SHEET = SHEET +SHEETS = SHEETS +TYPE = TYP + +## +## Logické funkce (Logical Functions) +## +AND = A +FALSE = NEPRAVDA +IF = KDYŽ +IFERROR = IFERROR +IFNA = IFNA +IFS = IFS +NOT = NE +OR = NEBO +SWITCH = SWITCH +TRUE = PRAVDA +XOR = XOR + +## +## Vyhledávací funkce a funkce pro odkazy (Lookup & Reference Functions) +## +ADDRESS = ODKAZ +AREAS = POÄŒET.BLOKÅ® +CHOOSE = ZVOLIT +COLUMN = SLOUPEC +COLUMNS = SLOUPCE +FORMULATEXT = FORMULATEXT +GETPIVOTDATA = ZÃSKATKONTDATA +HLOOKUP = VVYHLEDAT +HYPERLINK = HYPERTEXTOVÃ.ODKAZ +INDEX = INDEX +INDIRECT = NEPŘÃMÃ.ODKAZ +LOOKUP = VYHLEDAT +MATCH = POZVYHLEDAT +OFFSET = POSUN +ROW = ŘÃDEK +ROWS = ŘÃDKY +RTD = RTD +TRANSPOSE = TRANSPOZICE +VLOOKUP = SVYHLEDAT + +## +## Matematické a trigonometrické funkce (Math & Trig Functions) +## +ABS = ABS +ACOS = ARCCOS +ACOSH = ARCCOSH +ACOT = ACOT +ACOTH = ACOTH +AGGREGATE = AGGREGATE +ARABIC = ARABIC +ASIN = ARCSIN +ASINH = ARCSINH +ATAN = ARCTG +ATAN2 = ARCTG2 +ATANH = ARCTGH +BASE = BASE +CEILING.MATH = CEILING.MATH +COMBIN = KOMBINACE +COMBINA = COMBINA +COS = COS +COSH = COSH +COT = COT +COTH = COTH +CSC = CSC +CSCH = CSCH +DECIMAL = DECIMAL +DEGREES = DEGREES +EVEN = ZAOKROUHLIT.NA.SUDÉ +EXP = EXP +FACT = FAKTORIÃL +FACTDOUBLE = FACTDOUBLE +FLOOR.MATH = FLOOR.MATH +GCD = GCD +INT = CELÃ.ÄŒÃST +LCM = LCM +LN = LN +LOG = LOGZ +LOG10 = LOG +MDETERM = DETERMINANT +MINVERSE = INVERZE +MMULT = SOUÄŒIN.MATIC +MOD = MOD +MROUND = MROUND +MULTINOMIAL = MULTINOMIAL +MUNIT = MUNIT +ODD = ZAOKROUHLIT.NA.LICHÉ +PI = PI +POWER = POWER +PRODUCT = SOUÄŒIN +QUOTIENT = QUOTIENT +RADIANS = RADIANS +RAND = NÃHÄŒÃSLO +RANDBETWEEN = RANDBETWEEN +ROMAN = ROMAN +ROUND = ZAOKROUHLIT +ROUNDDOWN = ROUNDDOWN +ROUNDUP = ROUNDUP +SEC = SEC +SECH = SECH +SERIESSUM = SERIESSUM +SIGN = SIGN +SIN = SIN +SINH = SINH +SQRT = ODMOCNINA +SQRTPI = SQRTPI +SUBTOTAL = SUBTOTAL +SUM = SUMA +SUMIF = SUMIF +SUMIFS = SUMIFS +SUMPRODUCT = SOUÄŒIN.SKALÃRNà +SUMSQ = SUMA.ÄŒTVERCÅ® +SUMX2MY2 = SUMX2MY2 +SUMX2PY2 = SUMX2PY2 +SUMXMY2 = SUMXMY2 +TAN = TG +TANH = TGH +TRUNC = USEKNOUT + +## +## Statistické funkce (Statistical Functions) +## +AVEDEV = PRÅ®MODCHYLKA +AVERAGE = PRÅ®MÄšR +AVERAGEA = AVERAGEA +AVERAGEIF = AVERAGEIF +AVERAGEIFS = AVERAGEIFS +BETA.DIST = BETA.DIST +BETA.INV = BETA.INV +BINOM.DIST = BINOM.DIST +BINOM.DIST.RANGE = BINOM.DIST.RANGE +BINOM.INV = BINOM.INV +CHISQ.DIST = CHISQ.DIST +CHISQ.DIST.RT = CHISQ.DIST.RT +CHISQ.INV = CHISQ.INV +CHISQ.INV.RT = CHISQ.INV.RT +CHISQ.TEST = CHISQ.TEST +CONFIDENCE.NORM = CONFIDENCE.NORM +CONFIDENCE.T = CONFIDENCE.T +CORREL = CORREL +COUNT = POÄŒET +COUNTA = POÄŒET2 +COUNTBLANK = COUNTBLANK +COUNTIF = COUNTIF +COUNTIFS = COUNTIFS +COVARIANCE.P = COVARIANCE.P +COVARIANCE.S = COVARIANCE.S +DEVSQ = DEVSQ +EXPON.DIST = EXPON.DIST +F.DIST = F.DIST +F.DIST.RT = F.DIST.RT +F.INV = F.INV +F.INV.RT = F.INV.RT +F.TEST = F.TEST +FISHER = FISHER +FISHERINV = FISHERINV +FORECAST.ETS = FORECAST.ETS +FORECAST.ETS.CONFINT = FORECAST.ETS.CONFINT +FORECAST.ETS.SEASONALITY = FORECAST.ETS.SEASONALITY +FORECAST.ETS.STAT = FORECAST.ETS.STAT +FORECAST.LINEAR = FORECAST.LINEAR +FREQUENCY = ÄŒETNOSTI +GAMMA = GAMMA +GAMMA.DIST = GAMMA.DIST +GAMMA.INV = GAMMA.INV +GAMMALN = GAMMALN +GAMMALN.PRECISE = GAMMALN.PRECISE +GAUSS = GAUSS +GEOMEAN = GEOMEAN +GROWTH = LOGLINTREND +HARMEAN = HARMEAN +HYPGEOM.DIST = HYPGEOM.DIST +INTERCEPT = INTERCEPT +KURT = KURT +LARGE = LARGE +LINEST = LINREGRESE +LOGEST = LOGLINREGRESE +LOGNORM.DIST = LOGNORM.DIST +LOGNORM.INV = LOGNORM.INV +MAX = MAX +MAXA = MAXA +MAXIFS = MAXIFS +MEDIAN = MEDIAN +MIN = MIN +MINA = MINA +MINIFS = MINIFS +MODE.MULT = MODE.MULT +MODE.SNGL = MODE.SNGL +NEGBINOM.DIST = NEGBINOM.DIST +NORM.DIST = NORM.DIST +NORM.INV = NORM.INV +NORM.S.DIST = NORM.S.DIST +NORM.S.INV = NORM.S.INV +PEARSON = PEARSON +PERCENTILE.EXC = PERCENTIL.EXC +PERCENTILE.INC = PERCENTIL.INC +PERCENTRANK.EXC = PERCENTRANK.EXC +PERCENTRANK.INC = PERCENTRANK.INC +PERMUT = PERMUTACE +PERMUTATIONA = PERMUTATIONA +PHI = PHI +POISSON.DIST = POISSON.DIST +PROB = PROB +QUARTILE.EXC = QUARTIL.EXC +QUARTILE.INC = QUARTIL.INC +RANK.AVG = RANK.AVG +RANK.EQ = RANK.EQ +RSQ = RKQ +SKEW = SKEW +SKEW.P = SKEW.P +SLOPE = SLOPE +SMALL = SMALL +STANDARDIZE = STANDARDIZE +STDEV.P = SMODCH.P +STDEV.S = SMODCH.VÃBÄšR.S +STDEVA = STDEVA +STDEVPA = STDEVPA +STEYX = STEYX +T.DIST = T.DIST +T.DIST.2T = T.DIST.2T +T.DIST.RT = T.DIST.RT +T.INV = T.INV +T.INV.2T = T.INV.2T +T.TEST = T.TEST +TREND = LINTREND +TRIMMEAN = TRIMMEAN +VAR.P = VAR.P +VAR.S = VAR.S +VARA = VARA +VARPA = VARPA +WEIBULL.DIST = WEIBULL.DIST +Z.TEST = Z.TEST + +## +## Textové funkce (Text Functions) +## +BAHTTEXT = BAHTTEXT +CHAR = ZNAK +CLEAN = VYÄŒISTIT +CODE = KÓD +CONCAT = CONCAT +DOLLAR = KÄŒ +EXACT = STEJNÉ +FIND = NAJÃT +FIXED = ZAOKROUHLIT.NA.TEXT +LEFT = ZLEVA +LEN = DÉLKA +LOWER = MALà +MID = ÄŒÃST +NUMBERVALUE = NUMBERVALUE +PHONETIC = ZVUKOVÉ +PROPER = VELKÃ2 +REPLACE = NAHRADIT +REPT = OPAKOVAT +RIGHT = ZPRAVA +SEARCH = HLEDAT +SUBSTITUTE = DOSADIT +T = T +TEXT = HODNOTA.NA.TEXT +TEXTJOIN = TEXTJOIN +TRIM = PROÄŒISTIT +UNICHAR = UNICHAR +UNICODE = UNICODE +UPPER = VELKà +VALUE = HODNOTA + +## +## Webové funkce (Web Functions) +## +ENCODEURL = ENCODEURL +FILTERXML = FILTERXML +WEBSERVICE = WEBSERVICE + +## +## Funkce pro kompatibilitu (Compatibility Functions) +## +BETADIST = BETADIST +BETAINV = BETAINV +BINOMDIST = BINOMDIST +CEILING = ZAOKR.NAHORU +CHIDIST = CHIDIST +CHIINV = CHIINV +CHITEST = CHITEST +CONCATENATE = CONCATENATE +CONFIDENCE = CONFIDENCE +COVAR = COVAR +CRITBINOM = CRITBINOM +EXPONDIST = EXPONDIST +FDIST = FDIST +FINV = FINV +FLOOR = ZAOKR.DOLÅ® +FORECAST = FORECAST +FTEST = FTEST +GAMMADIST = GAMMADIST +GAMMAINV = GAMMAINV +HYPGEOMDIST = HYPGEOMDIST +LOGINV = LOGINV +LOGNORMDIST = LOGNORMDIST +MODE = MODE +NEGBINOMDIST = NEGBINOMDIST +NORMDIST = NORMDIST +NORMINV = NORMINV +NORMSDIST = NORMSDIST +NORMSINV = NORMSINV +PERCENTILE = PERCENTIL +PERCENTRANK = PERCENTRANK +POISSON = POISSON +QUARTILE = QUARTIL +RANK = RANK +STDEV = SMODCH.VÃBÄšR +STDEVP = SMODCH +TDIST = TDIST +TINV = TINV +TTEST = TTEST +VAR = VAR.VÃBÄšR +VARP = VAR +WEIBULL = WEIBULL +ZTEST = ZTEST diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/da/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/da/config new file mode 100644 index 0000000..284b249 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/da/config @@ -0,0 +1,20 @@ +############################################################ +## +## PhpSpreadsheet - locale settings +## +## Dansk (Danish) +## +############################################################ + +ArgumentSeparator = ; + +## +## Error Codes +## +NULL = #NUL! +DIV0 +VALUE = #VÆRDI! +REF = #REFERENCE! +NAME = #NAVN? +NUM +NA = #I/T diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/da/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/da/functions new file mode 100644 index 0000000..6260760 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/da/functions @@ -0,0 +1,537 @@ +############################################################ +## +## PhpSpreadsheet - function name translations +## +## Dansk (Danish) +## +############################################################ + + +## +## Kubefunktioner (Cube Functions) +## +CUBEKPIMEMBER = KUBE.KPI.MEDLEM +CUBEMEMBER = KUBEMEDLEM +CUBEMEMBERPROPERTY = KUBEMEDLEM.EGENSKAB +CUBERANKEDMEMBER = KUBERANGERET.MEDLEM +CUBESET = KUBESÆT +CUBESETCOUNT = KUBESÆT.ANTAL +CUBEVALUE = KUBEVÆRDI + +## +## Databasefunktioner (Database Functions) +## +DAVERAGE = DMIDDEL +DCOUNT = DTÆL +DCOUNTA = DTÆLV +DGET = DHENT +DMAX = DMAKS +DMIN = DMIN +DPRODUCT = DPRODUKT +DSTDEV = DSTDAFV +DSTDEVP = DSTDAFVP +DSUM = DSUM +DVAR = DVARIANS +DVARP = DVARIANSP + +## +## Dato- og klokkeslætfunktioner (Date & Time Functions) +## +DATE = DATO +DATEDIF = DATO.FORSKEL +DATESTRING = DATOSTRENG +DATEVALUE = DATOVÆRDI +DAY = DAG +DAYS = DAGE +DAYS360 = DAGE360 +EDATE = EDATO +EOMONTH = SLUT.PÃ….MÃ…NED +HOUR = TIME +ISOWEEKNUM = ISOUGE.NR +MINUTE = MINUT +MONTH = MÃ…NED +NETWORKDAYS = ANTAL.ARBEJDSDAGE +NETWORKDAYS.INTL = ANTAL.ARBEJDSDAGE.INTL +NOW = NU +SECOND = SEKUND +THAIDAYOFWEEK = THAILANDSKUGEDAG +THAIMONTHOFYEAR = THAILANDSKMÃ…NED +THAIYEAR = THAILANDSKÃ…R +TIME = TID +TIMEVALUE = TIDSVÆRDI +TODAY = IDAG +WEEKDAY = UGEDAG +WEEKNUM = UGE.NR +WORKDAY = ARBEJDSDAG +WORKDAY.INTL = ARBEJDSDAG.INTL +YEAR = Ã…R +YEARFRAC = Ã…R.BRØK + +## +## Tekniske funktioner (Engineering Functions) +## +BESSELI = BESSELI +BESSELJ = BESSELJ +BESSELK = BESSELK +BESSELY = BESSELY +BIN2DEC = BIN.TIL.DEC +BIN2HEX = BIN.TIL.HEX +BIN2OCT = BIN.TIL.OKT +BITAND = BITOG +BITLSHIFT = BITLSKIFT +BITOR = BITELLER +BITRSHIFT = BITRSKIFT +BITXOR = BITXELLER +COMPLEX = KOMPLEKS +CONVERT = KONVERTER +DEC2BIN = DEC.TIL.BIN +DEC2HEX = DEC.TIL.HEX +DEC2OCT = DEC.TIL.OKT +DELTA = DELTA +ERF = FEJLFUNK +ERF.PRECISE = ERF.PRECISE +ERFC = FEJLFUNK.KOMP +ERFC.PRECISE = ERFC.PRECISE +GESTEP = GETRIN +HEX2BIN = HEX.TIL.BIN +HEX2DEC = HEX.TIL.DEC +HEX2OCT = HEX.TIL.OKT +IMABS = IMAGABS +IMAGINARY = IMAGINÆR +IMARGUMENT = IMAGARGUMENT +IMCONJUGATE = IMAGKONJUGERE +IMCOS = IMAGCOS +IMCOSH = IMAGCOSH +IMCOT = IMAGCOT +IMCSC = IMAGCSC +IMCSCH = IMAGCSCH +IMDIV = IMAGDIV +IMEXP = IMAGEKSP +IMLN = IMAGLN +IMLOG10 = IMAGLOG10 +IMLOG2 = IMAGLOG2 +IMPOWER = IMAGPOTENS +IMPRODUCT = IMAGPRODUKT +IMREAL = IMAGREELT +IMSEC = IMAGSEC +IMSECH = IMAGSECH +IMSIN = IMAGSIN +IMSINH = IMAGSINH +IMSQRT = IMAGKVROD +IMSUB = IMAGSUB +IMSUM = IMAGSUM +IMTAN = IMAGTAN +OCT2BIN = OKT.TIL.BIN +OCT2DEC = OKT.TIL.DEC +OCT2HEX = OKT.TIL.HEX + +## +## Finansielle funktioner (Financial Functions) +## +ACCRINT = PÃ…LØBRENTE +ACCRINTM = PÃ…LØBRENTE.UDLØB +AMORDEGRC = AMORDEGRC +AMORLINC = AMORLINC +COUPDAYBS = KUPONDAGE.SA +COUPDAYS = KUPONDAGE.A +COUPDAYSNC = KUPONDAGE.ANK +COUPNCD = KUPONDAG.NÆSTE +COUPNUM = KUPONBETALINGER +COUPPCD = KUPONDAG.FORRIGE +CUMIPMT = AKKUM.RENTE +CUMPRINC = AKKUM.HOVEDSTOL +DB = DB +DDB = DSA +DISC = DISKONTO +DOLLARDE = KR.DECIMAL +DOLLARFR = KR.BRØK +DURATION = VARIGHED +EFFECT = EFFEKTIV.RENTE +FV = FV +FVSCHEDULE = FVTABEL +INTRATE = RENTEFOD +IPMT = R.YDELSE +IRR = IA +ISPMT = ISPMT +MDURATION = MVARIGHED +MIRR = MIA +NOMINAL = NOMINEL +NPER = NPER +NPV = NUTIDSVÆRDI +ODDFPRICE = ULIGE.KURS.PÃ…LYDENDE +ODDFYIELD = ULIGE.FØRSTE.AFKAST +ODDLPRICE = ULIGE.SIDSTE.KURS +ODDLYIELD = ULIGE.SIDSTE.AFKAST +PDURATION = PVARIGHED +PMT = YDELSE +PPMT = H.YDELSE +PRICE = KURS +PRICEDISC = KURS.DISKONTO +PRICEMAT = KURS.UDLØB +PV = NV +RATE = RENTE +RECEIVED = MODTAGET.VED.UDLØB +RRI = RRI +SLN = LA +SYD = Ã…RSAFSKRIVNING +TBILLEQ = STATSOBLIGATION +TBILLPRICE = STATSOBLIGATION.KURS +TBILLYIELD = STATSOBLIGATION.AFKAST +VDB = VSA +XIRR = INTERN.RENTE +XNPV = NETTO.NUTIDSVÆRDI +YIELD = AFKAST +YIELDDISC = AFKAST.DISKONTO +YIELDMAT = AFKAST.UDLØBSDATO + +## +## Informationsfunktioner (Information Functions) +## +CELL = CELLE +ERROR.TYPE = FEJLTYPE +INFO = INFO +ISBLANK = ER.TOM +ISERR = ER.FJL +ISERROR = ER.FEJL +ISEVEN = ER.LIGE +ISFORMULA = ER.FORMEL +ISLOGICAL = ER.LOGISK +ISNA = ER.IKKE.TILGÆNGELIG +ISNONTEXT = ER.IKKE.TEKST +ISNUMBER = ER.TAL +ISODD = ER.ULIGE +ISREF = ER.REFERENCE +ISTEXT = ER.TEKST +N = TAL +NA = IKKE.TILGÆNGELIG +SHEET = ARK +SHEETS = ARK.FLERE +TYPE = VÆRDITYPE + +## +## Logiske funktioner (Logical Functions) +## +AND = OG +FALSE = FALSK +IF = HVIS +IFERROR = HVIS.FEJL +IFNA = HVISIT +IFS = HVISER +NOT = IKKE +OR = ELLER +SWITCH = SKIFT +TRUE = SAND +XOR = XELLER + +## +## Opslags- og referencefunktioner (Lookup & Reference Functions) +## +ADDRESS = ADRESSE +AREAS = OMRÃ…DER +CHOOSE = VÆLG +COLUMN = KOLONNE +COLUMNS = KOLONNER +FORMULATEXT = FORMELTEKST +GETPIVOTDATA = GETPIVOTDATA +HLOOKUP = VOPSLAG +HYPERLINK = HYPERLINK +INDEX = INDEKS +INDIRECT = INDIREKTE +LOOKUP = SLÃ….OP +MATCH = SAMMENLIGN +OFFSET = FORSKYDNING +ROW = RÆKKE +ROWS = RÆKKER +RTD = RTD +TRANSPOSE = TRANSPONER +VLOOKUP = LOPSLAG + +## +## Matematiske og trigonometriske funktioner (Math & Trig Functions) +## +ABS = ABS +ACOS = ARCCOS +ACOSH = ARCCOSH +ACOT = ARCCOT +ACOTH = ARCCOTH +AGGREGATE = SAMLING +ARABIC = ARABISK +ASIN = ARCSIN +ASINH = ARCSINH +ATAN = ARCTAN +ATAN2 = ARCTAN2 +ATANH = ARCTANH +BASE = BASIS +CEILING.MATH = LOFT.MAT +CEILING.PRECISE = LOFT.PRECISE +COMBIN = KOMBIN +COMBINA = KOMBINA +COS = COS +COSH = COSH +COT = COT +COTH = COTH +CSC = CSC +CSCH = CSCH +DECIMAL = DECIMAL +DEGREES = GRADER +ECMA.CEILING = ECMA.LOFT +EVEN = LIGE +EXP = EKSP +FACT = FAKULTET +FACTDOUBLE = DOBBELT.FAKULTET +FLOOR.MATH = AFRUND.BUND.MAT +FLOOR.PRECISE = AFRUND.GULV.PRECISE +GCD = STØRSTE.FÆLLES.DIVISOR +INT = HELTAL +ISO.CEILING = ISO.LOFT +LCM = MINDSTE.FÆLLES.MULTIPLUM +LN = LN +LOG = LOG +LOG10 = LOG10 +MDETERM = MDETERM +MINVERSE = MINVERT +MMULT = MPRODUKT +MOD = REST +MROUND = MAFRUND +MULTINOMIAL = MULTINOMIAL +MUNIT = MENHED +ODD = ULIGE +PI = PI +POWER = POTENS +PRODUCT = PRODUKT +QUOTIENT = KVOTIENT +RADIANS = RADIANER +RAND = SLUMP +RANDBETWEEN = SLUMPMELLEM +ROMAN = ROMERTAL +ROUND = AFRUND +ROUNDBAHTDOWN = RUNDBAHTNED +ROUNDBAHTUP = RUNDBAHTOP +ROUNDDOWN = RUND.NED +ROUNDUP = RUND.OP +SEC = SEC +SECH = SECH +SERIESSUM = SERIESUM +SIGN = FORTEGN +SIN = SIN +SINH = SINH +SQRT = KVROD +SQRTPI = KVRODPI +SUBTOTAL = SUBTOTAL +SUM = SUM +SUMIF = SUM.HVIS +SUMIFS = SUM.HVISER +SUMPRODUCT = SUMPRODUKT +SUMSQ = SUMKV +SUMX2MY2 = SUMX2MY2 +SUMX2PY2 = SUMX2PY2 +SUMXMY2 = SUMXMY2 +TAN = TAN +TANH = TANH +TRUNC = AFKORT + +## +## Statistiske funktioner (Statistical Functions) +## +AVEDEV = MAD +AVERAGE = MIDDEL +AVERAGEA = MIDDELV +AVERAGEIF = MIDDEL.HVIS +AVERAGEIFS = MIDDEL.HVISER +BETA.DIST = BETA.FORDELING +BETA.INV = BETA.INV +BINOM.DIST = BINOMIAL.FORDELING +BINOM.DIST.RANGE = BINOMIAL.DIST.INTERVAL +BINOM.INV = BINOMIAL.INV +CHISQ.DIST = CHI2.FORDELING +CHISQ.DIST.RT = CHI2.FORD.RT +CHISQ.INV = CHI2.INV +CHISQ.INV.RT = CHI2.INV.RT +CHISQ.TEST = CHI2.TEST +CONFIDENCE.NORM = KONFIDENS.NORM +CONFIDENCE.T = KONFIDENST +CORREL = KORRELATION +COUNT = TÆL +COUNTA = TÆLV +COUNTBLANK = ANTAL.BLANKE +COUNTIF = TÆL.HVIS +COUNTIFS = TÆL.HVISER +COVARIANCE.P = KOVARIANS.P +COVARIANCE.S = KOVARIANS.S +DEVSQ = SAK +EXPON.DIST = EKSP.FORDELING +F.DIST = F.FORDELING +F.DIST.RT = F.FORDELING.RT +F.INV = F.INV +F.INV.RT = F.INV.RT +F.TEST = F.TEST +FISHER = FISHER +FISHERINV = FISHERINV +FORECAST.ETS = PROGNOSE.ETS +FORECAST.ETS.CONFINT = PROGNOSE.ETS.CONFINT +FORECAST.ETS.SEASONALITY = PROGNOSE.ETS.SÆSONUDSVING +FORECAST.ETS.STAT = PROGNOSE.ETS.STAT +FORECAST.LINEAR = PROGNOSE.LINEÆR +FREQUENCY = FREKVENS +GAMMA = GAMMA +GAMMA.DIST = GAMMA.FORDELING +GAMMA.INV = GAMMA.INV +GAMMALN = GAMMALN +GAMMALN.PRECISE = GAMMALN.PRECISE +GAUSS = GAUSS +GEOMEAN = GEOMIDDELVÆRDI +GROWTH = FORØGELSE +HARMEAN = HARMIDDELVÆRDI +HYPGEOM.DIST = HYPGEO.FORDELING +INTERCEPT = SKÆRING +KURT = TOPSTEJL +LARGE = STØRSTE +LINEST = LINREGR +LOGEST = LOGREGR +LOGNORM.DIST = LOGNORM.FORDELING +LOGNORM.INV = LOGNORM.INV +MAX = MAKS +MAXA = MAKSV +MAXIFS = MAKSHVISER +MEDIAN = MEDIAN +MIN = MIN +MINA = MINV +MINIFS = MINHVISER +MODE.MULT = HYPPIGST.FLERE +MODE.SNGL = HYPPIGST.ENKELT +NEGBINOM.DIST = NEGBINOM.FORDELING +NORM.DIST = NORMAL.FORDELING +NORM.INV = NORM.INV +NORM.S.DIST = STANDARD.NORM.FORDELING +NORM.S.INV = STANDARD.NORM.INV +PEARSON = PEARSON +PERCENTILE.EXC = FRAKTIL.UDELAD +PERCENTILE.INC = FRAKTIL.MEDTAG +PERCENTRANK.EXC = PROCENTPLADS.UDELAD +PERCENTRANK.INC = PROCENTPLADS.MEDTAG +PERMUT = PERMUT +PERMUTATIONA = PERMUTATIONA +PHI = PHI +POISSON.DIST = POISSON.FORDELING +PROB = SANDSYNLIGHED +QUARTILE.EXC = KVARTIL.UDELAD +QUARTILE.INC = KVARTIL.MEDTAG +RANK.AVG = PLADS.GNSN +RANK.EQ = PLADS.LIGE +RSQ = FORKLARINGSGRAD +SKEW = SKÆVHED +SKEW.P = SKÆVHED.P +SLOPE = STIGNING +SMALL = MINDSTE +STANDARDIZE = STANDARDISER +STDEV.P = STDAFV.P +STDEV.S = STDAFV.S +STDEVA = STDAFVV +STDEVPA = STDAFVPV +STEYX = STFYX +T.DIST = T.FORDELING +T.DIST.2T = T.FORDELING.2T +T.DIST.RT = T.FORDELING.RT +T.INV = T.INV +T.INV.2T = T.INV.2T +T.TEST = T.TEST +TREND = TENDENS +TRIMMEAN = TRIMMIDDELVÆRDI +VAR.P = VARIANS.P +VAR.S = VARIANS.S +VARA = VARIANSV +VARPA = VARIANSPV +WEIBULL.DIST = WEIBULL.FORDELING +Z.TEST = Z.TEST + +## +## Tekstfunktioner (Text Functions) +## +BAHTTEXT = BAHTTEKST +CHAR = TEGN +CLEAN = RENS +CODE = KODE +CONCAT = CONCAT +DOLLAR = KR +EXACT = EKSAKT +FIND = FIND +FIXED = FAST +ISTHAIDIGIT = ERTHAILANDSKCIFFER +LEFT = VENSTRE +LEN = LÆNGDE +LOWER = SMÃ….BOGSTAVER +MID = MIDT +NUMBERSTRING = TALSTRENG +NUMBERVALUE = TALVÆRDI +PHONETIC = FONETISK +PROPER = STORT.FORBOGSTAV +REPLACE = ERSTAT +REPT = GENTAG +RIGHT = HØJRE +SEARCH = SØG +SUBSTITUTE = UDSKIFT +T = T +TEXT = TEKST +TEXTJOIN = TEKST.KOMBINER +THAIDIGIT = THAILANDSKCIFFER +THAINUMSOUND = THAILANDSKNUMLYD +THAINUMSTRING = THAILANDSKNUMSTRENG +THAISTRINGLENGTH = THAILANDSKSTRENGLÆNGDE +TRIM = FJERN.OVERFLØDIGE.BLANKE +UNICHAR = UNICHAR +UNICODE = UNICODE +UPPER = STORE.BOGSTAVER +VALUE = VÆRDI + +## +## Webfunktioner (Web Functions) +## +ENCODEURL = KODNINGSURL +FILTERXML = FILTRERXML +WEBSERVICE = WEBTJENESTE + +## +## Kompatibilitetsfunktioner (Compatibility Functions) +## +BETADIST = BETAFORDELING +BETAINV = BETAINV +BINOMDIST = BINOMIALFORDELING +CEILING = AFRUND.LOFT +CHIDIST = CHIFORDELING +CHIINV = CHIINV +CHITEST = CHITEST +CONCATENATE = SAMMENKÆDNING +CONFIDENCE = KONFIDENSINTERVAL +COVAR = KOVARIANS +CRITBINOM = KRITBINOM +EXPONDIST = EKSPFORDELING +FDIST = FFORDELING +FINV = FINV +FLOOR = AFRUND.GULV +FORECAST = PROGNOSE +FTEST = FTEST +GAMMADIST = GAMMAFORDELING +GAMMAINV = GAMMAINV +HYPGEOMDIST = HYPGEOFORDELING +LOGINV = LOGINV +LOGNORMDIST = LOGNORMFORDELING +MODE = HYPPIGST +NEGBINOMDIST = NEGBINOMFORDELING +NORMDIST = NORMFORDELING +NORMINV = NORMINV +NORMSDIST = STANDARDNORMFORDELING +NORMSINV = STANDARDNORMINV +PERCENTILE = FRAKTIL +PERCENTRANK = PROCENTPLADS +POISSON = POISSON +QUARTILE = KVARTIL +RANK = PLADS +STDEV = STDAFV +STDEVP = STDAFVP +TDIST = TFORDELING +TINV = TINV +TTEST = TTEST +VAR = VARIANS +VARP = VARIANSP +WEIBULL = WEIBULL +ZTEST = ZTEST diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/de/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/de/config new file mode 100644 index 0000000..4ca2b82 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/de/config @@ -0,0 +1,20 @@ +############################################################ +## +## PhpSpreadsheet - locale settings +## +## Deutsch (German) +## +############################################################ + +ArgumentSeparator = ; + +## +## Error Codes +## +NULL +DIV0 +VALUE = #WERT! +REF = #BEZUG! +NAME +NUM = #ZAHL! +NA = #NV diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/de/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/de/functions new file mode 100644 index 0000000..331232f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/de/functions @@ -0,0 +1,533 @@ +############################################################ +## +## PhpSpreadsheet - function name translations +## +## Deutsch (German) +## +############################################################ + + +## +## Cubefunktionen (Cube Functions) +## +CUBEKPIMEMBER = CUBEKPIELEMENT +CUBEMEMBER = CUBEELEMENT +CUBEMEMBERPROPERTY = CUBEELEMENTEIGENSCHAFT +CUBERANKEDMEMBER = CUBERANGELEMENT +CUBESET = CUBEMENGE +CUBESETCOUNT = CUBEMENGENANZAHL +CUBEVALUE = CUBEWERT + +## +## Datenbankfunktionen (Database Functions) +## +DAVERAGE = DBMITTELWERT +DCOUNT = DBANZAHL +DCOUNTA = DBANZAHL2 +DGET = DBAUSZUG +DMAX = DBMAX +DMIN = DBMIN +DPRODUCT = DBPRODUKT +DSTDEV = DBSTDABW +DSTDEVP = DBSTDABWN +DSUM = DBSUMME +DVAR = DBVARIANZ +DVARP = DBVARIANZEN + +## +## Datums- und Uhrzeitfunktionen (Date & Time Functions) +## +DATE = DATUM +DATEVALUE = DATWERT +DAY = TAG +DAYS = TAGE +DAYS360 = TAGE360 +EDATE = EDATUM +EOMONTH = MONATSENDE +HOUR = STUNDE +ISOWEEKNUM = ISOKALENDERWOCHE +MINUTE = MINUTE +MONTH = MONAT +NETWORKDAYS = NETTOARBEITSTAGE +NETWORKDAYS.INTL = NETTOARBEITSTAGE.INTL +NOW = JETZT +SECOND = SEKUNDE +THAIDAYOFWEEK = THAIWOCHENTAG +THAIMONTHOFYEAR = THAIMONATDESJAHRES +THAIYEAR = THAIJAHR +TIME = ZEIT +TIMEVALUE = ZEITWERT +TODAY = HEUTE +WEEKDAY = WOCHENTAG +WEEKNUM = KALENDERWOCHE +WORKDAY = ARBEITSTAG +WORKDAY.INTL = ARBEITSTAG.INTL +YEAR = JAHR +YEARFRAC = BRTEILJAHRE + +## +## Technische Funktionen (Engineering Functions) +## +BESSELI = BESSELI +BESSELJ = BESSELJ +BESSELK = BESSELK +BESSELY = BESSELY +BIN2DEC = BININDEZ +BIN2HEX = BININHEX +BIN2OCT = BININOKT +BITAND = BITUND +BITLSHIFT = BITLVERSCHIEB +BITOR = BITODER +BITRSHIFT = BITRVERSCHIEB +BITXOR = BITXODER +COMPLEX = KOMPLEXE +CONVERT = UMWANDELN +DEC2BIN = DEZINBIN +DEC2HEX = DEZINHEX +DEC2OCT = DEZINOKT +DELTA = DELTA +ERF = GAUSSFEHLER +ERF.PRECISE = GAUSSF.GENAU +ERFC = GAUSSFKOMPL +ERFC.PRECISE = GAUSSFKOMPL.GENAU +GESTEP = GGANZZAHL +HEX2BIN = HEXINBIN +HEX2DEC = HEXINDEZ +HEX2OCT = HEXINOKT +IMABS = IMABS +IMAGINARY = IMAGINÄRTEIL +IMARGUMENT = IMARGUMENT +IMCONJUGATE = IMKONJUGIERTE +IMCOS = IMCOS +IMCOSH = IMCOSHYP +IMCOT = IMCOT +IMCSC = IMCOSEC +IMCSCH = IMCOSECHYP +IMDIV = IMDIV +IMEXP = IMEXP +IMLN = IMLN +IMLOG10 = IMLOG10 +IMLOG2 = IMLOG2 +IMPOWER = IMAPOTENZ +IMPRODUCT = IMPRODUKT +IMREAL = IMREALTEIL +IMSEC = IMSEC +IMSECH = IMSECHYP +IMSIN = IMSIN +IMSINH = IMSINHYP +IMSQRT = IMWURZEL +IMSUB = IMSUB +IMSUM = IMSUMME +IMTAN = IMTAN +OCT2BIN = OKTINBIN +OCT2DEC = OKTINDEZ +OCT2HEX = OKTINHEX + +## +## Finanzmathematische Funktionen (Financial Functions) +## +ACCRINT = AUFGELZINS +ACCRINTM = AUFGELZINSF +AMORDEGRC = AMORDEGRK +AMORLINC = AMORLINEARK +COUPDAYBS = ZINSTERMTAGVA +COUPDAYS = ZINSTERMTAGE +COUPDAYSNC = ZINSTERMTAGNZ +COUPNCD = ZINSTERMNZ +COUPNUM = ZINSTERMZAHL +COUPPCD = ZINSTERMVZ +CUMIPMT = KUMZINSZ +CUMPRINC = KUMKAPITAL +DB = GDA2 +DDB = GDA +DISC = DISAGIO +DOLLARDE = NOTIERUNGDEZ +DOLLARFR = NOTIERUNGBRU +DURATION = DURATION +EFFECT = EFFEKTIV +FV = ZW +FVSCHEDULE = ZW2 +INTRATE = ZINSSATZ +IPMT = ZINSZ +IRR = IKV +ISPMT = ISPMT +MDURATION = MDURATION +MIRR = QIKV +NOMINAL = NOMINAL +NPER = ZZR +NPV = NBW +ODDFPRICE = UNREGER.KURS +ODDFYIELD = UNREGER.REND +ODDLPRICE = UNREGLE.KURS +ODDLYIELD = UNREGLE.REND +PDURATION = PDURATION +PMT = RMZ +PPMT = KAPZ +PRICE = KURS +PRICEDISC = KURSDISAGIO +PRICEMAT = KURSFÄLLIG +PV = BW +RATE = ZINS +RECEIVED = AUSZAHLUNG +RRI = ZSATZINVEST +SLN = LIA +SYD = DIA +TBILLEQ = TBILLÄQUIV +TBILLPRICE = TBILLKURS +TBILLYIELD = TBILLRENDITE +VDB = VDB +XIRR = XINTZINSFUSS +XNPV = XKAPITALWERT +YIELD = RENDITE +YIELDDISC = RENDITEDIS +YIELDMAT = RENDITEFÄLL + +## +## Informationsfunktionen (Information Functions) +## +CELL = ZELLE +ERROR.TYPE = FEHLER.TYP +INFO = INFO +ISBLANK = ISTLEER +ISERR = ISTFEHL +ISERROR = ISTFEHLER +ISEVEN = ISTGERADE +ISFORMULA = ISTFORMEL +ISLOGICAL = ISTLOG +ISNA = ISTNV +ISNONTEXT = ISTKTEXT +ISNUMBER = ISTZAHL +ISODD = ISTUNGERADE +ISREF = ISTBEZUG +ISTEXT = ISTTEXT +N = N +NA = NV +SHEET = BLATT +SHEETS = BLÄTTER +TYPE = TYP + +## +## Logische Funktionen (Logical Functions) +## +AND = UND +FALSE = FALSCH +IF = WENN +IFERROR = WENNFEHLER +IFNA = WENNNV +IFS = WENNS +NOT = NICHT +OR = ODER +SWITCH = ERSTERWERT +TRUE = WAHR +XOR = XODER + +## +## Nachschlage- und Verweisfunktionen (Lookup & Reference Functions) +## +ADDRESS = ADRESSE +AREAS = BEREICHE +CHOOSE = WAHL +COLUMN = SPALTE +COLUMNS = SPALTEN +FORMULATEXT = FORMELTEXT +GETPIVOTDATA = PIVOTDATENZUORDNEN +HLOOKUP = WVERWEIS +HYPERLINK = HYPERLINK +INDEX = INDEX +INDIRECT = INDIREKT +LOOKUP = VERWEIS +MATCH = VERGLEICH +OFFSET = BEREICH.VERSCHIEBEN +ROW = ZEILE +ROWS = ZEILEN +RTD = RTD +TRANSPOSE = MTRANS +VLOOKUP = SVERWEIS + +## +## Mathematische und trigonometrische Funktionen (Math & Trig Functions) +## +ABS = ABS +ACOS = ARCCOS +ACOSH = ARCCOSHYP +ACOT = ARCCOT +ACOTH = ARCCOTHYP +AGGREGATE = AGGREGAT +ARABIC = ARABISCH +ASIN = ARCSIN +ASINH = ARCSINHYP +ATAN = ARCTAN +ATAN2 = ARCTAN2 +ATANH = ARCTANHYP +BASE = BASIS +CEILING.MATH = OBERGRENZE.MATHEMATIK +CEILING.PRECISE = OBERGRENZE.GENAU +COMBIN = KOMBINATIONEN +COMBINA = KOMBINATIONEN2 +COS = COS +COSH = COSHYP +COT = COT +COTH = COTHYP +CSC = COSEC +CSCH = COSECHYP +DECIMAL = DEZIMAL +DEGREES = GRAD +ECMA.CEILING = ECMA.OBERGRENZE +EVEN = GERADE +EXP = EXP +FACT = FAKULTÄT +FACTDOUBLE = ZWEIFAKULTÄT +FLOOR.MATH = UNTERGRENZE.MATHEMATIK +FLOOR.PRECISE = UNTERGRENZE.GENAU +GCD = GGT +INT = GANZZAHL +ISO.CEILING = ISO.OBERGRENZE +LCM = KGV +LN = LN +LOG = LOG +LOG10 = LOG10 +MDETERM = MDET +MINVERSE = MINV +MMULT = MMULT +MOD = REST +MROUND = VRUNDEN +MULTINOMIAL = POLYNOMIAL +MUNIT = MEINHEIT +ODD = UNGERADE +PI = PI +POWER = POTENZ +PRODUCT = PRODUKT +QUOTIENT = QUOTIENT +RADIANS = BOGENMASS +RAND = ZUFALLSZAHL +RANDBETWEEN = ZUFALLSBEREICH +ROMAN = RÖMISCH +ROUND = RUNDEN +ROUNDBAHTDOWN = RUNDBAHTNED +ROUNDBAHTUP = BAHTAUFRUNDEN +ROUNDDOWN = ABRUNDEN +ROUNDUP = AUFRUNDEN +SEC = SEC +SECH = SECHYP +SERIESSUM = POTENZREIHE +SIGN = VORZEICHEN +SIN = SIN +SINH = SINHYP +SQRT = WURZEL +SQRTPI = WURZELPI +SUBTOTAL = TEILERGEBNIS +SUM = SUMME +SUMIF = SUMMEWENN +SUMIFS = SUMMEWENNS +SUMPRODUCT = SUMMENPRODUKT +SUMSQ = QUADRATESUMME +SUMX2MY2 = SUMMEX2MY2 +SUMX2PY2 = SUMMEX2PY2 +SUMXMY2 = SUMMEXMY2 +TAN = TAN +TANH = TANHYP +TRUNC = KÜRZEN + +## +## Statistische Funktionen (Statistical Functions) +## +AVEDEV = MITTELABW +AVERAGE = MITTELWERT +AVERAGEA = MITTELWERTA +AVERAGEIF = MITTELWERTWENN +AVERAGEIFS = MITTELWERTWENNS +BETA.DIST = BETA.VERT +BETA.INV = BETA.INV +BINOM.DIST = BINOM.VERT +BINOM.DIST.RANGE = BINOM.VERT.BEREICH +BINOM.INV = BINOM.INV +CHISQ.DIST = CHIQU.VERT +CHISQ.DIST.RT = CHIQU.VERT.RE +CHISQ.INV = CHIQU.INV +CHISQ.INV.RT = CHIQU.INV.RE +CHISQ.TEST = CHIQU.TEST +CONFIDENCE.NORM = KONFIDENZ.NORM +CONFIDENCE.T = KONFIDENZ.T +CORREL = KORREL +COUNT = ANZAHL +COUNTA = ANZAHL2 +COUNTBLANK = ANZAHLLEEREZELLEN +COUNTIF = ZÄHLENWENN +COUNTIFS = ZÄHLENWENNS +COVARIANCE.P = KOVARIANZ.P +COVARIANCE.S = KOVARIANZ.S +DEVSQ = SUMQUADABW +EXPON.DIST = EXPON.VERT +F.DIST = F.VERT +F.DIST.RT = F.VERT.RE +F.INV = F.INV +F.INV.RT = F.INV.RE +F.TEST = F.TEST +FISHER = FISHER +FISHERINV = FISHERINV +FORECAST.ETS = PROGNOSE.ETS +FORECAST.ETS.CONFINT = PROGNOSE.ETS.KONFINT +FORECAST.ETS.SEASONALITY = PROGNOSE.ETS.SAISONALITÄT +FORECAST.ETS.STAT = PROGNOSE.ETS.STAT +FORECAST.LINEAR = PROGNOSE.LINEAR +FREQUENCY = HÄUFIGKEIT +GAMMA = GAMMA +GAMMA.DIST = GAMMA.VERT +GAMMA.INV = GAMMA.INV +GAMMALN = GAMMALN +GAMMALN.PRECISE = GAMMALN.GENAU +GAUSS = GAUSS +GEOMEAN = GEOMITTEL +GROWTH = VARIATION +HARMEAN = HARMITTEL +HYPGEOM.DIST = HYPGEOM.VERT +INTERCEPT = ACHSENABSCHNITT +KURT = KURT +LARGE = KGRÖSSTE +LINEST = RGP +LOGEST = RKP +LOGNORM.DIST = LOGNORM.VERT +LOGNORM.INV = LOGNORM.INV +MAX = MAX +MAXA = MAXA +MAXIFS = MAXWENNS +MEDIAN = MEDIAN +MIN = MIN +MINA = MINA +MINIFS = MINWENNS +MODE.MULT = MODUS.VIELF +MODE.SNGL = MODUS.EINF +NEGBINOM.DIST = NEGBINOM.VERT +NORM.DIST = NORM.VERT +NORM.INV = NORM.INV +NORM.S.DIST = NORM.S.VERT +NORM.S.INV = NORM.S.INV +PEARSON = PEARSON +PERCENTILE.EXC = QUANTIL.EXKL +PERCENTILE.INC = QUANTIL.INKL +PERCENTRANK.EXC = QUANTILSRANG.EXKL +PERCENTRANK.INC = QUANTILSRANG.INKL +PERMUT = VARIATIONEN +PERMUTATIONA = VARIATIONEN2 +PHI = PHI +POISSON.DIST = POISSON.VERT +PROB = WAHRSCHBEREICH +QUARTILE.EXC = QUARTILE.EXKL +QUARTILE.INC = QUARTILE.INKL +RANK.AVG = RANG.MITTELW +RANK.EQ = RANG.GLEICH +RSQ = BESTIMMTHEITSMASS +SKEW = SCHIEFE +SKEW.P = SCHIEFE.P +SLOPE = STEIGUNG +SMALL = KKLEINSTE +STANDARDIZE = STANDARDISIERUNG +STDEV.P = STABW.N +STDEV.S = STABW.S +STDEVA = STABWA +STDEVPA = STABWNA +STEYX = STFEHLERYX +T.DIST = T.VERT +T.DIST.2T = T.VERT.2S +T.DIST.RT = T.VERT.RE +T.INV = T.INV +T.INV.2T = T.INV.2S +T.TEST = T.TEST +TREND = TREND +TRIMMEAN = GESTUTZTMITTEL +VAR.P = VAR.P +VAR.S = VAR.S +VARA = VARIANZA +VARPA = VARIANZENA +WEIBULL.DIST = WEIBULL.VERT +Z.TEST = G.TEST + +## +## Textfunktionen (Text Functions) +## +BAHTTEXT = BAHTTEXT +CHAR = ZEICHEN +CLEAN = SÄUBERN +CODE = CODE +CONCAT = TEXTKETTE +DOLLAR = DM +EXACT = IDENTISCH +FIND = FINDEN +FIXED = FEST +ISTHAIDIGIT = ISTTHAIZAHLENWORT +LEFT = LINKS +LEN = LÄNGE +LOWER = KLEIN +MID = TEIL +NUMBERVALUE = ZAHLENWERT +PROPER = GROSS2 +REPLACE = ERSETZEN +REPT = WIEDERHOLEN +RIGHT = RECHTS +SEARCH = SUCHEN +SUBSTITUTE = WECHSELN +T = T +TEXT = TEXT +TEXTJOIN = TEXTVERKETTEN +THAIDIGIT = THAIZAHLENWORT +THAINUMSOUND = THAIZAHLSOUND +THAINUMSTRING = THAILANDSKNUMSTRENG +THAISTRINGLENGTH = THAIZEICHENFOLGENLÄNGE +TRIM = GLÄTTEN +UNICHAR = UNIZEICHEN +UNICODE = UNICODE +UPPER = GROSS +VALUE = WERT + +## +## Webfunktionen (Web Functions) +## +ENCODEURL = URLCODIEREN +FILTERXML = XMLFILTERN +WEBSERVICE = WEBDIENST + +## +## Kompatibilitätsfunktionen (Compatibility Functions) +## +BETADIST = BETAVERT +BETAINV = BETAINV +BINOMDIST = BINOMVERT +CEILING = OBERGRENZE +CHIDIST = CHIVERT +CHIINV = CHIINV +CHITEST = CHITEST +CONCATENATE = VERKETTEN +CONFIDENCE = KONFIDENZ +COVAR = KOVAR +CRITBINOM = KRITBINOM +EXPONDIST = EXPONVERT +FDIST = FVERT +FINV = FINV +FLOOR = UNTERGRENZE +FORECAST = SCHÄTZER +FTEST = FTEST +GAMMADIST = GAMMAVERT +GAMMAINV = GAMMAINV +HYPGEOMDIST = HYPGEOMVERT +LOGINV = LOGINV +LOGNORMDIST = LOGNORMVERT +MODE = MODALWERT +NEGBINOMDIST = NEGBINOMVERT +NORMDIST = NORMVERT +NORMINV = NORMINV +NORMSDIST = STANDNORMVERT +NORMSINV = STANDNORMINV +PERCENTILE = QUANTIL +PERCENTRANK = QUANTILSRANG +POISSON = POISSON +QUARTILE = QUARTILE +RANK = RANG +STDEV = STABW +STDEVP = STABWN +TDIST = TVERT +TINV = TINV +TTEST = TTEST +VAR = VARIANZ +VARP = VARIANZEN +WEIBULL = WEIBULL +ZTEST = GTEST diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/en/uk/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/en/uk/config new file mode 100644 index 0000000..859e4be --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/en/uk/config @@ -0,0 +1,8 @@ +## +## PhpSpreadsheet +## + +## +## (For future use) +## +currencySymbol = £ diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es/config new file mode 100644 index 0000000..fe044ef --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es/config @@ -0,0 +1,20 @@ +############################################################ +## +## PhpSpreadsheet - locale settings +## +## Español (Spanish) +## +############################################################ + +ArgumentSeparator = ; + +## +## Error Codes +## +NULL = #¡NULO! +DIV0 = #¡DIV/0! +VALUE = #¡VALOR! +REF = #¡REF! +NAME = #¿NOMBRE? +NUM = #¡NUM! +NA diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es/functions new file mode 100644 index 0000000..1f9f289 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es/functions @@ -0,0 +1,537 @@ +############################################################ +## +## PhpSpreadsheet - function name translations +## +## Español (Spanish) +## +############################################################ + + +## +## Funciones de cubo (Cube Functions) +## +CUBEKPIMEMBER = MIEMBROKPICUBO +CUBEMEMBER = MIEMBROCUBO +CUBEMEMBERPROPERTY = PROPIEDADMIEMBROCUBO +CUBERANKEDMEMBER = MIEMBRORANGOCUBO +CUBESET = CONJUNTOCUBO +CUBESETCOUNT = RECUENTOCONJUNTOCUBO +CUBEVALUE = VALORCUBO + +## +## Funciones de base de datos (Database Functions) +## +DAVERAGE = BDPROMEDIO +DCOUNT = BDCONTAR +DCOUNTA = BDCONTARA +DGET = BDEXTRAER +DMAX = BDMAX +DMIN = BDMIN +DPRODUCT = BDPRODUCTO +DSTDEV = BDDESVEST +DSTDEVP = BDDESVESTP +DSUM = BDSUMA +DVAR = BDVAR +DVARP = BDVARP + +## +## Funciones de fecha y hora (Date & Time Functions) +## +DATE = FECHA +DATEDIF = SIFECHA +DATESTRING = CADENA.FECHA +DATEVALUE = FECHANUMERO +DAY = DIA +DAYS = DIAS +DAYS360 = DIAS360 +EDATE = FECHA.MES +EOMONTH = FIN.MES +HOUR = HORA +ISOWEEKNUM = ISO.NUM.DE.SEMANA +MINUTE = MINUTO +MONTH = MES +NETWORKDAYS = DIAS.LAB +NETWORKDAYS.INTL = DIAS.LAB.INTL +NOW = AHORA +SECOND = SEGUNDO +THAIDAYOFWEEK = DIASEMTAI +THAIMONTHOFYEAR = MESAÑOTAI +THAIYEAR = AÑOTAI +TIME = NSHORA +TIMEVALUE = HORANUMERO +TODAY = HOY +WEEKDAY = DIASEM +WEEKNUM = NUM.DE.SEMANA +WORKDAY = DIA.LAB +WORKDAY.INTL = DIA.LAB.INTL +YEAR = AÑO +YEARFRAC = FRAC.AÑO + +## +## Funciones de ingeniería (Engineering Functions) +## +BESSELI = BESSELI +BESSELJ = BESSELJ +BESSELK = BESSELK +BESSELY = BESSELY +BIN2DEC = BIN.A.DEC +BIN2HEX = BIN.A.HEX +BIN2OCT = BIN.A.OCT +BITAND = BIT.Y +BITLSHIFT = BIT.DESPLIZQDA +BITOR = BIT.O +BITRSHIFT = BIT.DESPLDCHA +BITXOR = BIT.XO +COMPLEX = COMPLEJO +CONVERT = CONVERTIR +DEC2BIN = DEC.A.BIN +DEC2HEX = DEC.A.HEX +DEC2OCT = DEC.A.OCT +DELTA = DELTA +ERF = FUN.ERROR +ERF.PRECISE = FUN.ERROR.EXACTO +ERFC = FUN.ERROR.COMPL +ERFC.PRECISE = FUN.ERROR.COMPL.EXACTO +GESTEP = MAYOR.O.IGUAL +HEX2BIN = HEX.A.BIN +HEX2DEC = HEX.A.DEC +HEX2OCT = HEX.A.OCT +IMABS = IM.ABS +IMAGINARY = IMAGINARIO +IMARGUMENT = IM.ANGULO +IMCONJUGATE = IM.CONJUGADA +IMCOS = IM.COS +IMCOSH = IM.COSH +IMCOT = IM.COT +IMCSC = IM.CSC +IMCSCH = IM.CSCH +IMDIV = IM.DIV +IMEXP = IM.EXP +IMLN = IM.LN +IMLOG10 = IM.LOG10 +IMLOG2 = IM.LOG2 +IMPOWER = IM.POT +IMPRODUCT = IM.PRODUCT +IMREAL = IM.REAL +IMSEC = IM.SEC +IMSECH = IM.SECH +IMSIN = IM.SENO +IMSINH = IM.SENOH +IMSQRT = IM.RAIZ2 +IMSUB = IM.SUSTR +IMSUM = IM.SUM +IMTAN = IM.TAN +OCT2BIN = OCT.A.BIN +OCT2DEC = OCT.A.DEC +OCT2HEX = OCT.A.HEX + +## +## Funciones financieras (Financial Functions) +## +ACCRINT = INT.ACUM +ACCRINTM = INT.ACUM.V +AMORDEGRC = AMORTIZ.PROGRE +AMORLINC = AMORTIZ.LIN +COUPDAYBS = CUPON.DIAS.L1 +COUPDAYS = CUPON.DIAS +COUPDAYSNC = CUPON.DIAS.L2 +COUPNCD = CUPON.FECHA.L2 +COUPNUM = CUPON.NUM +COUPPCD = CUPON.FECHA.L1 +CUMIPMT = PAGO.INT.ENTRE +CUMPRINC = PAGO.PRINC.ENTRE +DB = DB +DDB = DDB +DISC = TASA.DESC +DOLLARDE = MONEDA.DEC +DOLLARFR = MONEDA.FRAC +DURATION = DURACION +EFFECT = INT.EFECTIVO +FV = VF +FVSCHEDULE = VF.PLAN +INTRATE = TASA.INT +IPMT = PAGOINT +IRR = TIR +ISPMT = INT.PAGO.DIR +MDURATION = DURACION.MODIF +MIRR = TIRM +NOMINAL = TASA.NOMINAL +NPER = NPER +NPV = VNA +ODDFPRICE = PRECIO.PER.IRREGULAR.1 +ODDFYIELD = RENDTO.PER.IRREGULAR.1 +ODDLPRICE = PRECIO.PER.IRREGULAR.2 +ODDLYIELD = RENDTO.PER.IRREGULAR.2 +PDURATION = P.DURACION +PMT = PAGO +PPMT = PAGOPRIN +PRICE = PRECIO +PRICEDISC = PRECIO.DESCUENTO +PRICEMAT = PRECIO.VENCIMIENTO +PV = VA +RATE = TASA +RECEIVED = CANTIDAD.RECIBIDA +RRI = RRI +SLN = SLN +SYD = SYD +TBILLEQ = LETRA.DE.TEST.EQV.A.BONO +TBILLPRICE = LETRA.DE.TES.PRECIO +TBILLYIELD = LETRA.DE.TES.RENDTO +VDB = DVS +XIRR = TIR.NO.PER +XNPV = VNA.NO.PER +YIELD = RENDTO +YIELDDISC = RENDTO.DESC +YIELDMAT = RENDTO.VENCTO + +## +## Funciones de información (Information Functions) +## +CELL = CELDA +ERROR.TYPE = TIPO.DE.ERROR +INFO = INFO +ISBLANK = ESBLANCO +ISERR = ESERR +ISERROR = ESERROR +ISEVEN = ES.PAR +ISFORMULA = ESFORMULA +ISLOGICAL = ESLOGICO +ISNA = ESNOD +ISNONTEXT = ESNOTEXTO +ISNUMBER = ESNUMERO +ISODD = ES.IMPAR +ISREF = ESREF +ISTEXT = ESTEXTO +N = N +NA = NOD +SHEET = HOJA +SHEETS = HOJAS +TYPE = TIPO + +## +## Funciones lógicas (Logical Functions) +## +AND = Y +FALSE = FALSO +IF = SI +IFERROR = SI.ERROR +IFNA = SI.ND +IFS = SI.CONJUNTO +NOT = NO +OR = O +SWITCH = CAMBIAR +TRUE = VERDADERO +XOR = XO + +## +## Funciones de búsqueda y referencia (Lookup & Reference Functions) +## +ADDRESS = DIRECCION +AREAS = AREAS +CHOOSE = ELEGIR +COLUMN = COLUMNA +COLUMNS = COLUMNAS +FORMULATEXT = FORMULATEXTO +GETPIVOTDATA = IMPORTARDATOSDINAMICOS +HLOOKUP = BUSCARH +HYPERLINK = HIPERVINCULO +INDEX = INDICE +INDIRECT = INDIRECTO +LOOKUP = BUSCAR +MATCH = COINCIDIR +OFFSET = DESREF +ROW = FILA +ROWS = FILAS +RTD = RDTR +TRANSPOSE = TRANSPONER +VLOOKUP = BUSCARV + +## +## Funciones matemáticas y trigonométricas (Math & Trig Functions) +## +ABS = ABS +ACOS = ACOS +ACOSH = ACOSH +ACOT = ACOT +ACOTH = ACOTH +AGGREGATE = AGREGAR +ARABIC = NUMERO.ARABE +ASIN = ASENO +ASINH = ASENOH +ATAN = ATAN +ATAN2 = ATAN2 +ATANH = ATANH +BASE = BASE +CEILING.MATH = MULTIPLO.SUPERIOR.MAT +CEILING.PRECISE = MULTIPLO.SUPERIOR.EXACTO +COMBIN = COMBINAT +COMBINA = COMBINA +COS = COS +COSH = COSH +COT = COT +COTH = COTH +CSC = CSC +CSCH = CSCH +DECIMAL = CONV.DECIMAL +DEGREES = GRADOS +ECMA.CEILING = MULTIPLO.SUPERIOR.ECMA +EVEN = REDONDEA.PAR +EXP = EXP +FACT = FACT +FACTDOUBLE = FACT.DOBLE +FLOOR.MATH = MULTIPLO.INFERIOR.MAT +FLOOR.PRECISE = MULTIPLO.INFERIOR.EXACTO +GCD = M.C.D +INT = ENTERO +ISO.CEILING = MULTIPLO.SUPERIOR.ISO +LCM = M.C.M +LN = LN +LOG = LOG +LOG10 = LOG10 +MDETERM = MDETERM +MINVERSE = MINVERSA +MMULT = MMULT +MOD = RESIDUO +MROUND = REDOND.MULT +MULTINOMIAL = MULTINOMIAL +MUNIT = M.UNIDAD +ODD = REDONDEA.IMPAR +PI = PI +POWER = POTENCIA +PRODUCT = PRODUCTO +QUOTIENT = COCIENTE +RADIANS = RADIANES +RAND = ALEATORIO +RANDBETWEEN = ALEATORIO.ENTRE +ROMAN = NUMERO.ROMANO +ROUND = REDONDEAR +ROUNDBAHTDOWN = REDONDEAR.BAHT.MAS +ROUNDBAHTUP = REDONDEAR.BAHT.MENOS +ROUNDDOWN = REDONDEAR.MENOS +ROUNDUP = REDONDEAR.MAS +SEC = SEC +SECH = SECH +SERIESSUM = SUMA.SERIES +SIGN = SIGNO +SIN = SENO +SINH = SENOH +SQRT = RAIZ +SQRTPI = RAIZ2PI +SUBTOTAL = SUBTOTALES +SUM = SUMA +SUMIF = SUMAR.SI +SUMIFS = SUMAR.SI.CONJUNTO +SUMPRODUCT = SUMAPRODUCTO +SUMSQ = SUMA.CUADRADOS +SUMX2MY2 = SUMAX2MENOSY2 +SUMX2PY2 = SUMAX2MASY2 +SUMXMY2 = SUMAXMENOSY2 +TAN = TAN +TANH = TANH +TRUNC = TRUNCAR + +## +## Funciones estadísticas (Statistical Functions) +## +AVEDEV = DESVPROM +AVERAGE = PROMEDIO +AVERAGEA = PROMEDIOA +AVERAGEIF = PROMEDIO.SI +AVERAGEIFS = PROMEDIO.SI.CONJUNTO +BETA.DIST = DISTR.BETA.N +BETA.INV = INV.BETA.N +BINOM.DIST = DISTR.BINOM.N +BINOM.DIST.RANGE = DISTR.BINOM.SERIE +BINOM.INV = INV.BINOM +CHISQ.DIST = DISTR.CHICUAD +CHISQ.DIST.RT = DISTR.CHICUAD.CD +CHISQ.INV = INV.CHICUAD +CHISQ.INV.RT = INV.CHICUAD.CD +CHISQ.TEST = PRUEBA.CHICUAD +CONFIDENCE.NORM = INTERVALO.CONFIANZA.NORM +CONFIDENCE.T = INTERVALO.CONFIANZA.T +CORREL = COEF.DE.CORREL +COUNT = CONTAR +COUNTA = CONTARA +COUNTBLANK = CONTAR.BLANCO +COUNTIF = CONTAR.SI +COUNTIFS = CONTAR.SI.CONJUNTO +COVARIANCE.P = COVARIANCE.P +COVARIANCE.S = COVARIANZA.M +DEVSQ = DESVIA2 +EXPON.DIST = DISTR.EXP.N +F.DIST = DISTR.F.N +F.DIST.RT = DISTR.F.CD +F.INV = INV.F +F.INV.RT = INV.F.CD +F.TEST = PRUEBA.F.N +FISHER = FISHER +FISHERINV = PRUEBA.FISHER.INV +FORECAST.ETS = PRONOSTICO.ETS +FORECAST.ETS.CONFINT = PRONOSTICO.ETS.CONFINT +FORECAST.ETS.SEASONALITY = PRONOSTICO.ETS.ESTACIONALIDAD +FORECAST.ETS.STAT = PRONOSTICO.ETS.STAT +FORECAST.LINEAR = PRONOSTICO.LINEAL +FREQUENCY = FRECUENCIA +GAMMA = GAMMA +GAMMA.DIST = DISTR.GAMMA.N +GAMMA.INV = INV.GAMMA +GAMMALN = GAMMA.LN +GAMMALN.PRECISE = GAMMA.LN.EXACTO +GAUSS = GAUSS +GEOMEAN = MEDIA.GEOM +GROWTH = CRECIMIENTO +HARMEAN = MEDIA.ARMO +HYPGEOM.DIST = DISTR.HIPERGEOM.N +INTERCEPT = INTERSECCION.EJE +KURT = CURTOSIS +LARGE = K.ESIMO.MAYOR +LINEST = ESTIMACION.LINEAL +LOGEST = ESTIMACION.LOGARITMICA +LOGNORM.DIST = DISTR.LOGNORM +LOGNORM.INV = INV.LOGNORM +MAX = MAX +MAXA = MAXA +MAXIFS = MAX.SI.CONJUNTO +MEDIAN = MEDIANA +MIN = MIN +MINA = MINA +MINIFS = MIN.SI.CONJUNTO +MODE.MULT = MODA.VARIOS +MODE.SNGL = MODA.UNO +NEGBINOM.DIST = NEGBINOM.DIST +NORM.DIST = DISTR.NORM.N +NORM.INV = INV.NORM +NORM.S.DIST = DISTR.NORM.ESTAND.N +NORM.S.INV = INV.NORM.ESTAND +PEARSON = PEARSON +PERCENTILE.EXC = PERCENTIL.EXC +PERCENTILE.INC = PERCENTIL.INC +PERCENTRANK.EXC = RANGO.PERCENTIL.EXC +PERCENTRANK.INC = RANGO.PERCENTIL.INC +PERMUT = PERMUTACIONES +PERMUTATIONA = PERMUTACIONES.A +PHI = FI +POISSON.DIST = POISSON.DIST +PROB = PROBABILIDAD +QUARTILE.EXC = CUARTIL.EXC +QUARTILE.INC = CUARTIL.INC +RANK.AVG = JERARQUIA.MEDIA +RANK.EQ = JERARQUIA.EQV +RSQ = COEFICIENTE.R2 +SKEW = COEFICIENTE.ASIMETRIA +SKEW.P = COEFICIENTE.ASIMETRIA.P +SLOPE = PENDIENTE +SMALL = K.ESIMO.MENOR +STANDARDIZE = NORMALIZACION +STDEV.P = DESVEST.P +STDEV.S = DESVEST.M +STDEVA = DESVESTA +STDEVPA = DESVESTPA +STEYX = ERROR.TIPICO.XY +T.DIST = DISTR.T.N +T.DIST.2T = DISTR.T.2C +T.DIST.RT = DISTR.T.CD +T.INV = INV.T +T.INV.2T = INV.T.2C +T.TEST = PRUEBA.T.N +TREND = TENDENCIA +TRIMMEAN = MEDIA.ACOTADA +VAR.P = VAR.P +VAR.S = VAR.S +VARA = VARA +VARPA = VARPA +WEIBULL.DIST = DISTR.WEIBULL +Z.TEST = PRUEBA.Z.N + +## +## Funciones de texto (Text Functions) +## +BAHTTEXT = TEXTOBAHT +CHAR = CARACTER +CLEAN = LIMPIAR +CODE = CODIGO +CONCAT = CONCAT +DOLLAR = MONEDA +EXACT = IGUAL +FIND = ENCONTRAR +FIXED = DECIMAL +ISTHAIDIGIT = ESDIGITOTAI +LEFT = IZQUIERDA +LEN = LARGO +LOWER = MINUSC +MID = EXTRAE +NUMBERSTRING = CADENA.NUMERO +NUMBERVALUE = VALOR.NUMERO +PHONETIC = FONETICO +PROPER = NOMPROPIO +REPLACE = REEMPLAZAR +REPT = REPETIR +RIGHT = DERECHA +SEARCH = HALLAR +SUBSTITUTE = SUSTITUIR +T = T +TEXT = TEXTO +TEXTJOIN = UNIRCADENAS +THAIDIGIT = DIGITOTAI +THAINUMSOUND = SONNUMTAI +THAINUMSTRING = CADENANUMTAI +THAISTRINGLENGTH = LONGCADENATAI +TRIM = ESPACIOS +UNICHAR = UNICAR +UNICODE = UNICODE +UPPER = MAYUSC +VALUE = VALOR + +## +## Funciones web (Web Functions) +## +ENCODEURL = URLCODIF +FILTERXML = XMLFILTRO +WEBSERVICE = SERVICIOWEB + +## +## Funciones de compatibilidad (Compatibility Functions) +## +BETADIST = DISTR.BETA +BETAINV = DISTR.BETA.INV +BINOMDIST = DISTR.BINOM +CEILING = MULTIPLO.SUPERIOR +CHIDIST = DISTR.CHI +CHIINV = PRUEBA.CHI.INV +CHITEST = PRUEBA.CHI +CONCATENATE = CONCATENAR +CONFIDENCE = INTERVALO.CONFIANZA +COVAR = COVAR +CRITBINOM = BINOM.CRIT +EXPONDIST = DISTR.EXP +FDIST = DISTR.F +FINV = DISTR.F.INV +FLOOR = MULTIPLO.INFERIOR +FORECAST = PRONOSTICO +FTEST = PRUEBA.F +GAMMADIST = DISTR.GAMMA +GAMMAINV = DISTR.GAMMA.INV +HYPGEOMDIST = DISTR.HIPERGEOM +LOGINV = DISTR.LOG.INV +LOGNORMDIST = DISTR.LOG.NORM +MODE = MODA +NEGBINOMDIST = NEGBINOMDIST +NORMDIST = DISTR.NORM +NORMINV = DISTR.NORM.INV +NORMSDIST = DISTR.NORM.ESTAND +NORMSINV = DISTR.NORM.ESTAND.INV +PERCENTILE = PERCENTIL +PERCENTRANK = RANGO.PERCENTIL +POISSON = POISSON +QUARTILE = CUARTIL +RANK = JERARQUIA +STDEV = DESVEST +STDEVP = DESVESTP +TDIST = DISTR.T +TINV = DISTR.T.INV +TTEST = PRUEBA.T +VAR = VAR +VARP = VARP +WEIBULL = DIST.WEIBULL +ZTEST = PRUEBA.Z diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fi/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fi/config new file mode 100644 index 0000000..5388f93 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fi/config @@ -0,0 +1,20 @@ +############################################################ +## +## PhpSpreadsheet - locale settings +## +## Suomi (Finnish) +## +############################################################ + +ArgumentSeparator = ; + +## +## Error Codes +## +NULL = #TYHJÄ! +DIV0 = #JAKO/0! +VALUE = #ARVO! +REF = #VIITTAUS! +NAME = #NIMI? +NUM = #LUKU! +NA = #PUUTTUU! diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fi/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fi/functions new file mode 100644 index 0000000..33068d9 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fi/functions @@ -0,0 +1,537 @@ +############################################################ +## +## PhpSpreadsheet - function name translations +## +## Suomi (Finnish) +## +############################################################ + + +## +## Kuutiofunktiot (Cube Functions) +## +CUBEKPIMEMBER = KUUTIOKPIJÄSEN +CUBEMEMBER = KUUTIONJÄSEN +CUBEMEMBERPROPERTY = KUUTIONJÄSENENOMINAISUUS +CUBERANKEDMEMBER = KUUTIONLUOKITELTUJÄSEN +CUBESET = KUUTIOJOUKKO +CUBESETCOUNT = KUUTIOJOUKKOJENMÄÄRÄ +CUBEVALUE = KUUTIONARVO + +## +## Tietokantafunktiot (Database Functions) +## +DAVERAGE = TKESKIARVO +DCOUNT = TLASKE +DCOUNTA = TLASKEA +DGET = TNOUDA +DMAX = TMAKS +DMIN = TMIN +DPRODUCT = TTULO +DSTDEV = TKESKIHAJONTA +DSTDEVP = TKESKIHAJONTAP +DSUM = TSUMMA +DVAR = TVARIANSSI +DVARP = TVARIANSSIP + +## +## Päivämäärä- ja aikafunktiot (Date & Time Functions) +## +DATE = PÄIVÄYS +DATEDIF = PVMERO +DATESTRING = PVMMERKKIJONO +DATEVALUE = PÄIVÄYSARVO +DAY = PÄIVÄ +DAYS = PÄIVÄT +DAYS360 = PÄIVÄT360 +EDATE = PÄIVÄ.KUUKAUSI +EOMONTH = KUUKAUSI.LOPPU +HOUR = TUNNIT +ISOWEEKNUM = VIIKKO.ISO.NRO +MINUTE = MINUUTIT +MONTH = KUUKAUSI +NETWORKDAYS = TYÖPÄIVÄT +NETWORKDAYS.INTL = TYÖPÄIVÄT.KANSVÄL +NOW = NYT +SECOND = SEKUNNIT +THAIDAYOFWEEK = THAI.VIIKONPÄIVÄ +THAIMONTHOFYEAR = THAI.KUUKAUSI +THAIYEAR = THAI.VUOSI +TIME = AIKA +TIMEVALUE = AIKA_ARVO +TODAY = TÄMÄ.PÄIVÄ +WEEKDAY = VIIKONPÄIVÄ +WEEKNUM = VIIKKO.NRO +WORKDAY = TYÖPÄIVÄ +WORKDAY.INTL = TYÖPÄIVÄ.KANSVÄL +YEAR = VUOSI +YEARFRAC = VUOSI.OSA + +## +## Tekniset funktiot (Engineering Functions) +## +BESSELI = BESSELI +BESSELJ = BESSELJ +BESSELK = BESSELK +BESSELY = BESSELY +BIN2DEC = BINDES +BIN2HEX = BINHEKSA +BIN2OCT = BINOKT +BITAND = BITTI.JA +BITLSHIFT = BITTI.SIIRTO.V +BITOR = BITTI.TAI +BITRSHIFT = BITTI.SIIRTO.O +BITXOR = BITTI.EHDOTON.TAI +COMPLEX = KOMPLEKSI +CONVERT = MUUNNA +DEC2BIN = DESBIN +DEC2HEX = DESHEKSA +DEC2OCT = DESOKT +DELTA = SAMA.ARVO +ERF = VIRHEFUNKTIO +ERF.PRECISE = VIRHEFUNKTIO.TARKKA +ERFC = VIRHEFUNKTIO.KOMPLEMENTTI +ERFC.PRECISE = VIRHEFUNKTIO.KOMPLEMENTTI.TARKKA +GESTEP = RAJA +HEX2BIN = HEKSABIN +HEX2DEC = HEKSADES +HEX2OCT = HEKSAOKT +IMABS = KOMPLEKSI.ABS +IMAGINARY = KOMPLEKSI.IMAG +IMARGUMENT = KOMPLEKSI.ARG +IMCONJUGATE = KOMPLEKSI.KONJ +IMCOS = KOMPLEKSI.COS +IMCOSH = IMCOSH +IMCOT = KOMPLEKSI.COT +IMCSC = KOMPLEKSI.KOSEK +IMCSCH = KOMPLEKSI.KOSEKH +IMDIV = KOMPLEKSI.OSAM +IMEXP = KOMPLEKSI.EKSP +IMLN = KOMPLEKSI.LN +IMLOG10 = KOMPLEKSI.LOG10 +IMLOG2 = KOMPLEKSI.LOG2 +IMPOWER = KOMPLEKSI.POT +IMPRODUCT = KOMPLEKSI.TULO +IMREAL = KOMPLEKSI.REAALI +IMSEC = KOMPLEKSI.SEK +IMSECH = KOMPLEKSI.SEKH +IMSIN = KOMPLEKSI.SIN +IMSINH = KOMPLEKSI.SINH +IMSQRT = KOMPLEKSI.NELIÖJ +IMSUB = KOMPLEKSI.EROTUS +IMSUM = KOMPLEKSI.SUM +IMTAN = KOMPLEKSI.TAN +OCT2BIN = OKTBIN +OCT2DEC = OKTDES +OCT2HEX = OKTHEKSA + +## +## Rahoitusfunktiot (Financial Functions) +## +ACCRINT = KERTYNYT.KORKO +ACCRINTM = KERTYNYT.KORKO.LOPUSSA +AMORDEGRC = AMORDEGRC +AMORLINC = AMORLINC +COUPDAYBS = KORKOPÄIVÄT.ALUSTA +COUPDAYS = KORKOPÄIVÄT +COUPDAYSNC = KORKOPÄIVÄT.SEURAAVA +COUPNCD = KORKOPÄIVÄ.SEURAAVA +COUPNUM = KORKOPÄIVÄ.JAKSOT +COUPPCD = KORKOPÄIVÄ.EDELLINEN +CUMIPMT = MAKSETTU.KORKO +CUMPRINC = MAKSETTU.LYHENNYS +DB = DB +DDB = DDB +DISC = DISKONTTOKORKO +DOLLARDE = VALUUTTA.DES +DOLLARFR = VALUUTTA.MURTO +DURATION = KESTO +EFFECT = KORKO.EFEKT +FV = TULEVA.ARVO +FVSCHEDULE = TULEVA.ARVO.ERIKORKO +INTRATE = KORKO.ARVOPAPERI +IPMT = IPMT +IRR = SISÄINEN.KORKO +ISPMT = ISPMT +MDURATION = KESTO.MUUNN +MIRR = MSISÄINEN +NOMINAL = KORKO.VUOSI +NPER = NJAKSO +NPV = NNA +ODDFPRICE = PARITON.ENS.NIMELLISARVO +ODDFYIELD = PARITON.ENS.TUOTTO +ODDLPRICE = PARITON.VIIM.NIMELLISARVO +ODDLYIELD = PARITON.VIIM.TUOTTO +PDURATION = KESTO.JAKSO +PMT = MAKSU +PPMT = PPMT +PRICE = HINTA +PRICEDISC = HINTA.DISK +PRICEMAT = HINTA.LUNASTUS +PV = NA +RATE = KORKO +RECEIVED = SAATU.HINTA +RRI = TOT.ROI +SLN = STP +SYD = VUOSIPOISTO +TBILLEQ = OBLIG.TUOTTOPROS +TBILLPRICE = OBLIG.HINTA +TBILLYIELD = OBLIG.TUOTTO +VDB = VDB +XIRR = SISÄINEN.KORKO.JAKSOTON +XNPV = NNA.JAKSOTON +YIELD = TUOTTO +YIELDDISC = TUOTTO.DISK +YIELDMAT = TUOTTO.ERÄP + +## +## Tietofunktiot (Information Functions) +## +CELL = SOLU +ERROR.TYPE = VIRHEEN.LAJI +INFO = KUVAUS +ISBLANK = ONTYHJÄ +ISERR = ONVIRH +ISERROR = ONVIRHE +ISEVEN = ONPARILLINEN +ISFORMULA = ONKAAVA +ISLOGICAL = ONTOTUUS +ISNA = ONPUUTTUU +ISNONTEXT = ONEI_TEKSTI +ISNUMBER = ONLUKU +ISODD = ONPARITON +ISREF = ONVIITT +ISTEXT = ONTEKSTI +N = N +NA = PUUTTUU +SHEET = TAULUKKO +SHEETS = TAULUKOT +TYPE = TYYPPI + +## +## Loogiset funktiot (Logical Functions) +## +AND = JA +FALSE = EPÄTOSI +IF = JOS +IFERROR = JOSVIRHE +IFNA = JOSPUUTTUU +IFS = JOSS +NOT = EI +OR = TAI +SWITCH = MUUTA +TRUE = TOSI +XOR = EHDOTON.TAI + +## +## Haku- ja viitefunktiot (Lookup & Reference Functions) +## +ADDRESS = OSOITE +AREAS = ALUEET +CHOOSE = VALITSE.INDEKSI +COLUMN = SARAKE +COLUMNS = SARAKKEET +FORMULATEXT = KAAVA.TEKSTI +GETPIVOTDATA = NOUDA.PIVOT.TIEDOT +HLOOKUP = VHAKU +HYPERLINK = HYPERLINKKI +INDEX = INDEKSI +INDIRECT = EPÄSUORA +LOOKUP = HAKU +MATCH = VASTINE +OFFSET = SIIRTYMÄ +ROW = RIVI +ROWS = RIVIT +RTD = RTD +TRANSPOSE = TRANSPONOI +VLOOKUP = PHAKU + +## +## Matemaattiset ja trigonometriset funktiot (Math & Trig Functions) +## +ABS = ITSEISARVO +ACOS = ACOS +ACOSH = ACOSH +ACOT = ACOT +ACOTH = ACOTH +AGGREGATE = KOOSTE +ARABIC = ARABIA +ASIN = ASIN +ASINH = ASINH +ATAN = ATAN +ATAN2 = ATAN2 +ATANH = ATANH +BASE = PERUS +CEILING.MATH = PYÖRISTÄ.KERR.YLÖS.MATEMAATTINEN +CEILING.PRECISE = PYÖRISTÄ.KERR.YLÖS.TARKKA +COMBIN = KOMBINAATIO +COMBINA = KOMBINAATIOA +COS = COS +COSH = COSH +COT = COT +COTH = COTH +CSC = KOSEK +CSCH = KOSEKH +DECIMAL = DESIMAALI +DEGREES = ASTEET +ECMA.CEILING = ECMA.PYÖRISTÄ.KERR.YLÖS +EVEN = PARILLINEN +EXP = EKSPONENTTI +FACT = KERTOMA +FACTDOUBLE = KERTOMA.OSA +FLOOR.MATH = PYÖRISTÄ.KERR.ALAS.MATEMAATTINEN +FLOOR.PRECISE = PYÖRISTÄ.KERR.ALAS.TARKKA +GCD = SUURIN.YHT.TEKIJÄ +INT = KOKONAISLUKU +ISO.CEILING = ISO.PYÖRISTÄ.KERR.YLÖS +LCM = PIENIN.YHT.JAETTAVA +LN = LUONNLOG +LOG = LOG +LOG10 = LOG10 +MDETERM = MDETERM +MINVERSE = MKÄÄNTEINEN +MMULT = MKERRO +MOD = JAKOJ +MROUND = PYÖRISTÄ.KERR +MULTINOMIAL = MULTINOMI +MUNIT = YKSIKKÖM +ODD = PARITON +PI = PII +POWER = POTENSSI +PRODUCT = TULO +QUOTIENT = OSAMÄÄRÄ +RADIANS = RADIAANIT +RAND = SATUNNAISLUKU +RANDBETWEEN = SATUNNAISLUKU.VÄLILTÄ +ROMAN = ROMAN +ROUND = PYÖRISTÄ +ROUNDBAHTDOWN = PYÖRISTÄ.BAHT.ALAS +ROUNDBAHTUP = PYÖRISTÄ.BAHT.YLÖS +ROUNDDOWN = PYÖRISTÄ.DES.ALAS +ROUNDUP = PYÖRISTÄ.DES.YLÖS +SEC = SEK +SECH = SEKH +SERIESSUM = SARJA.SUMMA +SIGN = ETUMERKKI +SIN = SIN +SINH = SINH +SQRT = NELIÖJUURI +SQRTPI = NELIÖJUURI.PII +SUBTOTAL = VÄLISUMMA +SUM = SUMMA +SUMIF = SUMMA.JOS +SUMIFS = SUMMA.JOS.JOUKKO +SUMPRODUCT = TULOJEN.SUMMA +SUMSQ = NELIÖSUMMA +SUMX2MY2 = NELIÖSUMMIEN.EROTUS +SUMX2PY2 = NELIÖSUMMIEN.SUMMA +SUMXMY2 = EROTUSTEN.NELIÖSUMMA +TAN = TAN +TANH = TANH +TRUNC = KATKAISE + +## +## Tilastolliset funktiot (Statistical Functions) +## +AVEDEV = KESKIPOIKKEAMA +AVERAGE = KESKIARVO +AVERAGEA = KESKIARVOA +AVERAGEIF = KESKIARVO.JOS +AVERAGEIFS = KESKIARVO.JOS.JOUKKO +BETA.DIST = BEETA.JAKAUMA +BETA.INV = BEETA.KÄÄNT +BINOM.DIST = BINOMI.JAKAUMA +BINOM.DIST.RANGE = BINOMI.JAKAUMA.ALUE +BINOM.INV = BINOMIJAKAUMA.KÄÄNT +CHISQ.DIST = CHINELIÖ.JAKAUMA +CHISQ.DIST.RT = CHINELIÖ.JAKAUMA.OH +CHISQ.INV = CHINELIÖ.KÄÄNT +CHISQ.INV.RT = CHINELIÖ.KÄÄNT.OH +CHISQ.TEST = CHINELIÖ.TESTI +CONFIDENCE.NORM = LUOTTAMUSVÄLI.NORM +CONFIDENCE.T = LUOTTAMUSVÄLI.T +CORREL = KORRELAATIO +COUNT = LASKE +COUNTA = LASKE.A +COUNTBLANK = LASKE.TYHJÄT +COUNTIF = LASKE.JOS +COUNTIFS = LASKE.JOS.JOUKKO +COVARIANCE.P = KOVARIANSSI.P +COVARIANCE.S = KOVARIANSSI.S +DEVSQ = OIKAISTU.NELIÖSUMMA +EXPON.DIST = EKSPONENTIAALI.JAKAUMA +F.DIST = F.JAKAUMA +F.DIST.RT = F.JAKAUMA.OH +F.INV = F.KÄÄNT +F.INV.RT = F.KÄÄNT.OH +F.TEST = F.TESTI +FISHER = FISHER +FISHERINV = FISHER.KÄÄNT +FORECAST.ETS = ENNUSTE.ETS +FORECAST.ETS.CONFINT = ENNUSTE.ETS.CONFINT +FORECAST.ETS.SEASONALITY = ENNUSTE.ETS.KAUSIVAIHTELU +FORECAST.ETS.STAT = ENNUSTE.ETS.STAT +FORECAST.LINEAR = ENNUSTE.LINEAARINEN +FREQUENCY = TAAJUUS +GAMMA = GAMMA +GAMMA.DIST = GAMMA.JAKAUMA +GAMMA.INV = GAMMA.JAKAUMA.KÄÄNT +GAMMALN = GAMMALN +GAMMALN.PRECISE = GAMMALN.TARKKA +GAUSS = GAUSS +GEOMEAN = KESKIARVO.GEOM +GROWTH = KASVU +HARMEAN = KESKIARVO.HARM +HYPGEOM.DIST = HYPERGEOM_JAKAUMA +INTERCEPT = LEIKKAUSPISTE +KURT = KURT +LARGE = SUURI +LINEST = LINREGR +LOGEST = LOGREGR +LOGNORM.DIST = LOGNORM_JAKAUMA +LOGNORM.INV = LOGNORM.KÄÄNT +MAX = MAKS +MAXA = MAKSA +MAXIFS = MAKS.JOS +MEDIAN = MEDIAANI +MIN = MIN +MINA = MINA +MINIFS = MIN.JOS +MODE.MULT = MOODI.USEA +MODE.SNGL = MOODI.YKSI +NEGBINOM.DIST = BINOMI.JAKAUMA.NEG +NORM.DIST = NORMAALI.JAKAUMA +NORM.INV = NORMAALI.JAKAUMA.KÄÄNT +NORM.S.DIST = NORM_JAKAUMA.NORMIT +NORM.S.INV = NORM_JAKAUMA.KÄÄNT +PEARSON = PEARSON +PERCENTILE.EXC = PROSENTTIPISTE.ULK +PERCENTILE.INC = PROSENTTIPISTE.SIS +PERCENTRANK.EXC = PROSENTTIJÄRJESTYS.ULK +PERCENTRANK.INC = PROSENTTIJÄRJESTYS.SIS +PERMUT = PERMUTAATIO +PERMUTATIONA = PERMUTAATIOA +PHI = FII +POISSON.DIST = POISSON.JAKAUMA +PROB = TODENNÄKÖISYYS +QUARTILE.EXC = NELJÄNNES.ULK +QUARTILE.INC = NELJÄNNES.SIS +RANK.AVG = ARVON.MUKAAN.KESKIARVO +RANK.EQ = ARVON.MUKAAN.TASAN +RSQ = PEARSON.NELIÖ +SKEW = JAKAUMAN.VINOUS +SKEW.P = JAKAUMAN.VINOUS.POP +SLOPE = KULMAKERROIN +SMALL = PIENI +STANDARDIZE = NORMITA +STDEV.P = KESKIHAJONTA.P +STDEV.S = KESKIHAJONTA.S +STDEVA = KESKIHAJONTAA +STDEVPA = KESKIHAJONTAPA +STEYX = KESKIVIRHE +T.DIST = T.JAKAUMA +T.DIST.2T = T.JAKAUMA.2S +T.DIST.RT = T.JAKAUMA.OH +T.INV = T.KÄÄNT +T.INV.2T = T.KÄÄNT.2S +T.TEST = T.TESTI +TREND = SUUNTAUS +TRIMMEAN = KESKIARVO.TASATTU +VAR.P = VAR.P +VAR.S = VAR.S +VARA = VARA +VARPA = VARPA +WEIBULL.DIST = WEIBULL.JAKAUMA +Z.TEST = Z.TESTI + +## +## Tekstifunktiot (Text Functions) +## +BAHTTEXT = BAHTTEKSTI +CHAR = MERKKI +CLEAN = SIIVOA +CODE = KOODI +CONCAT = YHDISTÄ +DOLLAR = VALUUTTA +EXACT = VERTAA +FIND = ETSI +FIXED = KIINTEÄ +ISTHAIDIGIT = ON.THAI.NUMERO +LEFT = VASEN +LEN = PITUUS +LOWER = PIENET +MID = POIMI.TEKSTI +NUMBERSTRING = NROMERKKIJONO +NUMBERVALUE = NROARVO +PHONETIC = FONEETTINEN +PROPER = ERISNIMI +REPLACE = KORVAA +REPT = TOISTA +RIGHT = OIKEA +SEARCH = KÄY.LÄPI +SUBSTITUTE = VAIHDA +T = T +TEXT = TEKSTI +TEXTJOIN = TEKSTI.YHDISTÄ +THAIDIGIT = THAI.NUMERO +THAINUMSOUND = THAI.LUKU.ÄÄNI +THAINUMSTRING = THAI.LUKU.MERKKIJONO +THAISTRINGLENGTH = THAI.MERKKIJONON.PITUUS +TRIM = POISTA.VÄLIT +UNICHAR = UNICODEMERKKI +UNICODE = UNICODE +UPPER = ISOT +VALUE = ARVO + +## +## Verkkofunktiot (Web Functions) +## +ENCODEURL = URLKOODAUS +FILTERXML = SUODATA.XML +WEBSERVICE = VERKKOPALVELU + +## +## Yhteensopivuusfunktiot (Compatibility Functions) +## +BETADIST = BEETAJAKAUMA +BETAINV = BEETAJAKAUMA.KÄÄNT +BINOMDIST = BINOMIJAKAUMA +CEILING = PYÖRISTÄ.KERR.YLÖS +CHIDIST = CHIJAKAUMA +CHIINV = CHIJAKAUMA.KÄÄNT +CHITEST = CHITESTI +CONCATENATE = KETJUTA +CONFIDENCE = LUOTTAMUSVÄLI +COVAR = KOVARIANSSI +CRITBINOM = BINOMIJAKAUMA.KRIT +EXPONDIST = EKSPONENTIAALIJAKAUMA +FDIST = FJAKAUMA +FINV = FJAKAUMA.KÄÄNT +FLOOR = PYÖRISTÄ.KERR.ALAS +FORECAST = ENNUSTE +FTEST = FTESTI +GAMMADIST = GAMMAJAKAUMA +GAMMAINV = GAMMAJAKAUMA.KÄÄNT +HYPGEOMDIST = HYPERGEOM.JAKAUMA +LOGINV = LOGNORM.JAKAUMA.KÄÄNT +LOGNORMDIST = LOGNORM.JAKAUMA +MODE = MOODI +NEGBINOMDIST = BINOMIJAKAUMA.NEG +NORMDIST = NORM.JAKAUMA +NORMINV = NORM.JAKAUMA.KÄÄNT +NORMSDIST = NORM.JAKAUMA.NORMIT +NORMSINV = NORM.JAKAUMA.NORMIT.KÄÄNT +PERCENTILE = PROSENTTIPISTE +PERCENTRANK = PROSENTTIJÄRJESTYS +POISSON = POISSON +QUARTILE = NELJÄNNES +RANK = ARVON.MUKAAN +STDEV = KESKIHAJONTA +STDEVP = KESKIHAJONTAP +TDIST = TJAKAUMA +TINV = TJAKAUMA.KÄÄNT +TTEST = TTESTI +VAR = VAR +VARP = VARP +WEIBULL = WEIBULL +ZTEST = ZTESTI diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fr/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fr/config new file mode 100644 index 0000000..bdac412 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fr/config @@ -0,0 +1,20 @@ +############################################################ +## +## PhpSpreadsheet - locale settings +## +## Français (French) +## +############################################################ + +ArgumentSeparator = ; + +## +## Error Codes +## +NULL = #NUL! +DIV0 +VALUE = #VALEUR! +REF +NAME = #NOM? +NUM = #NOMBRE! +NA diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fr/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fr/functions new file mode 100644 index 0000000..78b603e --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fr/functions @@ -0,0 +1,524 @@ +############################################################ +## +## PhpSpreadsheet - function name translations +## +## Français (French) +## +############################################################ + + +## +## Fonctions Cube (Cube Functions) +## +CUBEKPIMEMBER = MEMBREKPICUBE +CUBEMEMBER = MEMBRECUBE +CUBEMEMBERPROPERTY = PROPRIETEMEMBRECUBE +CUBERANKEDMEMBER = RANGMEMBRECUBE +CUBESET = JEUCUBE +CUBESETCOUNT = NBJEUCUBE +CUBEVALUE = VALEURCUBE + +## +## Fonctions de base de données (Database Functions) +## +DAVERAGE = BDMOYENNE +DCOUNT = BDNB +DCOUNTA = BDNBVAL +DGET = BDLIRE +DMAX = BDMAX +DMIN = BDMIN +DPRODUCT = BDPRODUIT +DSTDEV = BDECARTYPE +DSTDEVP = BDECARTYPEP +DSUM = BDSOMME +DVAR = BDVAR +DVARP = BDVARP + +## +## Fonctions de date et d’heure (Date & Time Functions) +## +DATE = DATE +DATEVALUE = DATEVAL +DAY = JOUR +DAYS = JOURS +DAYS360 = JOURS360 +EDATE = MOIS.DECALER +EOMONTH = FIN.MOIS +HOUR = HEURE +ISOWEEKNUM = NO.SEMAINE.ISO +MINUTE = MINUTE +MONTH = MOIS +NETWORKDAYS = NB.JOURS.OUVRES +NETWORKDAYS.INTL = NB.JOURS.OUVRES.INTL +NOW = MAINTENANT +SECOND = SECONDE +TIME = TEMPS +TIMEVALUE = TEMPSVAL +TODAY = AUJOURDHUI +WEEKDAY = JOURSEM +WEEKNUM = NO.SEMAINE +WORKDAY = SERIE.JOUR.OUVRE +WORKDAY.INTL = SERIE.JOUR.OUVRE.INTL +YEAR = ANNEE +YEARFRAC = FRACTION.ANNEE + +## +## Fonctions d’ingénierie (Engineering Functions) +## +BESSELI = BESSELI +BESSELJ = BESSELJ +BESSELK = BESSELK +BESSELY = BESSELY +BIN2DEC = BINDEC +BIN2HEX = BINHEX +BIN2OCT = BINOCT +BITAND = BITET +BITLSHIFT = BITDECALG +BITOR = BITOU +BITRSHIFT = BITDECALD +BITXOR = BITOUEXCLUSIF +COMPLEX = COMPLEXE +CONVERT = CONVERT +DEC2BIN = DECBIN +DEC2HEX = DECHEX +DEC2OCT = DECOCT +DELTA = DELTA +ERF = ERF +ERF.PRECISE = ERF.PRECIS +ERFC = ERFC +ERFC.PRECISE = ERFC.PRECIS +GESTEP = SUP.SEUIL +HEX2BIN = HEXBIN +HEX2DEC = HEXDEC +HEX2OCT = HEXOCT +IMABS = COMPLEXE.MODULE +IMAGINARY = COMPLEXE.IMAGINAIRE +IMARGUMENT = COMPLEXE.ARGUMENT +IMCONJUGATE = COMPLEXE.CONJUGUE +IMCOS = COMPLEXE.COS +IMCOSH = COMPLEXE.COSH +IMCOT = COMPLEXE.COT +IMCSC = COMPLEXE.CSC +IMCSCH = COMPLEXE.CSCH +IMDIV = COMPLEXE.DIV +IMEXP = COMPLEXE.EXP +IMLN = COMPLEXE.LN +IMLOG10 = COMPLEXE.LOG10 +IMLOG2 = COMPLEXE.LOG2 +IMPOWER = COMPLEXE.PUISSANCE +IMPRODUCT = COMPLEXE.PRODUIT +IMREAL = COMPLEXE.REEL +IMSEC = COMPLEXE.SEC +IMSECH = COMPLEXE.SECH +IMSIN = COMPLEXE.SIN +IMSINH = COMPLEXE.SINH +IMSQRT = COMPLEXE.RACINE +IMSUB = COMPLEXE.DIFFERENCE +IMSUM = COMPLEXE.SOMME +IMTAN = COMPLEXE.TAN +OCT2BIN = OCTBIN +OCT2DEC = OCTDEC +OCT2HEX = OCTHEX + +## +## Fonctions financières (Financial Functions) +## +ACCRINT = INTERET.ACC +ACCRINTM = INTERET.ACC.MAT +AMORDEGRC = AMORDEGRC +AMORLINC = AMORLINC +COUPDAYBS = NB.JOURS.COUPON.PREC +COUPDAYS = NB.JOURS.COUPONS +COUPDAYSNC = NB.JOURS.COUPON.SUIV +COUPNCD = DATE.COUPON.SUIV +COUPNUM = NB.COUPONS +COUPPCD = DATE.COUPON.PREC +CUMIPMT = CUMUL.INTER +CUMPRINC = CUMUL.PRINCPER +DB = DB +DDB = DDB +DISC = TAUX.ESCOMPTE +DOLLARDE = PRIX.DEC +DOLLARFR = PRIX.FRAC +DURATION = DUREE +EFFECT = TAUX.EFFECTIF +FV = VC +FVSCHEDULE = VC.PAIEMENTS +INTRATE = TAUX.INTERET +IPMT = INTPER +IRR = TRI +ISPMT = ISPMT +MDURATION = DUREE.MODIFIEE +MIRR = TRIM +NOMINAL = TAUX.NOMINAL +NPER = NPM +NPV = VAN +ODDFPRICE = PRIX.PCOUPON.IRREG +ODDFYIELD = REND.PCOUPON.IRREG +ODDLPRICE = PRIX.DCOUPON.IRREG +ODDLYIELD = REND.DCOUPON.IRREG +PDURATION = PDUREE +PMT = VPM +PPMT = PRINCPER +PRICE = PRIX.TITRE +PRICEDISC = VALEUR.ENCAISSEMENT +PRICEMAT = PRIX.TITRE.ECHEANCE +PV = VA +RATE = TAUX +RECEIVED = VALEUR.NOMINALE +RRI = TAUX.INT.EQUIV +SLN = AMORLIN +SYD = SYD +TBILLEQ = TAUX.ESCOMPTE.R +TBILLPRICE = PRIX.BON.TRESOR +TBILLYIELD = RENDEMENT.BON.TRESOR +VDB = VDB +XIRR = TRI.PAIEMENTS +XNPV = VAN.PAIEMENTS +YIELD = RENDEMENT.TITRE +YIELDDISC = RENDEMENT.SIMPLE +YIELDMAT = RENDEMENT.TITRE.ECHEANCE + +## +## Fonctions d’information (Information Functions) +## +CELL = CELLULE +ERROR.TYPE = TYPE.ERREUR +INFO = INFORMATIONS +ISBLANK = ESTVIDE +ISERR = ESTERR +ISERROR = ESTERREUR +ISEVEN = EST.PAIR +ISFORMULA = ESTFORMULE +ISLOGICAL = ESTLOGIQUE +ISNA = ESTNA +ISNONTEXT = ESTNONTEXTE +ISNUMBER = ESTNUM +ISODD = EST.IMPAIR +ISREF = ESTREF +ISTEXT = ESTTEXTE +N = N +NA = NA +SHEET = FEUILLE +SHEETS = FEUILLES +TYPE = TYPE + +## +## Fonctions logiques (Logical Functions) +## +AND = ET +FALSE = FAUX +IF = SI +IFERROR = SIERREUR +IFNA = SI.NON.DISP +IFS = SI.CONDITIONS +NOT = NON +OR = OU +SWITCH = SI.MULTIPLE +TRUE = VRAI +XOR = OUX + +## +## Fonctions de recherche et de référence (Lookup & Reference Functions) +## +ADDRESS = ADRESSE +AREAS = ZONES +CHOOSE = CHOISIR +COLUMN = COLONNE +COLUMNS = COLONNES +FORMULATEXT = FORMULETEXTE +GETPIVOTDATA = LIREDONNEESTABCROISDYNAMIQUE +HLOOKUP = RECHERCHEH +HYPERLINK = LIEN_HYPERTEXTE +INDEX = INDEX +INDIRECT = INDIRECT +LOOKUP = RECHERCHE +MATCH = EQUIV +OFFSET = DECALER +ROW = LIGNE +ROWS = LIGNES +RTD = RTD +TRANSPOSE = TRANSPOSE +VLOOKUP = RECHERCHEV + +## +## Fonctions mathématiques et trigonométriques (Math & Trig Functions) +## +ABS = ABS +ACOS = ACOS +ACOSH = ACOSH +ACOT = ACOT +ACOTH = ACOTH +AGGREGATE = AGREGAT +ARABIC = CHIFFRE.ARABE +ASIN = ASIN +ASINH = ASINH +ATAN = ATAN +ATAN2 = ATAN2 +ATANH = ATANH +BASE = BASE +CEILING.MATH = PLAFOND.MATH +CEILING.PRECISE = PLAFOND.PRECIS +COMBIN = COMBIN +COMBINA = COMBINA +COS = COS +COSH = COSH +COT = COT +COTH = COTH +CSC = CSC +CSCH = CSCH +DECIMAL = DECIMAL +DEGREES = DEGRES +ECMA.CEILING = ECMA.PLAFOND +EVEN = PAIR +EXP = EXP +FACT = FACT +FACTDOUBLE = FACTDOUBLE +FLOOR.MATH = PLANCHER.MATH +FLOOR.PRECISE = PLANCHER.PRECIS +GCD = PGCD +INT = ENT +ISO.CEILING = ISO.PLAFOND +LCM = PPCM +LN = LN +LOG = LOG +LOG10 = LOG10 +MDETERM = DETERMAT +MINVERSE = INVERSEMAT +MMULT = PRODUITMAT +MOD = MOD +MROUND = ARRONDI.AU.MULTIPLE +MULTINOMIAL = MULTINOMIALE +MUNIT = MATRICE.UNITAIRE +ODD = IMPAIR +PI = PI +POWER = PUISSANCE +PRODUCT = PRODUIT +QUOTIENT = QUOTIENT +RADIANS = RADIANS +RAND = ALEA +RANDBETWEEN = ALEA.ENTRE.BORNES +ROMAN = ROMAIN +ROUND = ARRONDI +ROUNDDOWN = ARRONDI.INF +ROUNDUP = ARRONDI.SUP +SEC = SEC +SECH = SECH +SERIESSUM = SOMME.SERIES +SIGN = SIGNE +SIN = SIN +SINH = SINH +SQRT = RACINE +SQRTPI = RACINE.PI +SUBTOTAL = SOUS.TOTAL +SUM = SOMME +SUMIF = SOMME.SI +SUMIFS = SOMME.SI.ENS +SUMPRODUCT = SOMMEPROD +SUMSQ = SOMME.CARRES +SUMX2MY2 = SOMME.X2MY2 +SUMX2PY2 = SOMME.X2PY2 +SUMXMY2 = SOMME.XMY2 +TAN = TAN +TANH = TANH +TRUNC = TRONQUE + +## +## Fonctions statistiques (Statistical Functions) +## +AVEDEV = ECART.MOYEN +AVERAGE = MOYENNE +AVERAGEA = AVERAGEA +AVERAGEIF = MOYENNE.SI +AVERAGEIFS = MOYENNE.SI.ENS +BETA.DIST = LOI.BETA.N +BETA.INV = BETA.INVERSE.N +BINOM.DIST = LOI.BINOMIALE.N +BINOM.DIST.RANGE = LOI.BINOMIALE.SERIE +BINOM.INV = LOI.BINOMIALE.INVERSE +CHISQ.DIST = LOI.KHIDEUX.N +CHISQ.DIST.RT = LOI.KHIDEUX.DROITE +CHISQ.INV = LOI.KHIDEUX.INVERSE +CHISQ.INV.RT = LOI.KHIDEUX.INVERSE.DROITE +CHISQ.TEST = CHISQ.TEST +CONFIDENCE.NORM = INTERVALLE.CONFIANCE.NORMAL +CONFIDENCE.T = INTERVALLE.CONFIANCE.STUDENT +CORREL = COEFFICIENT.CORRELATION +COUNT = NB +COUNTA = NBVAL +COUNTBLANK = NB.VIDE +COUNTIF = NB.SI +COUNTIFS = NB.SI.ENS +COVARIANCE.P = COVARIANCE.PEARSON +COVARIANCE.S = COVARIANCE.STANDARD +DEVSQ = SOMME.CARRES.ECARTS +EXPON.DIST = LOI.EXPONENTIELLE.N +F.DIST = LOI.F.N +F.DIST.RT = LOI.F.DROITE +F.INV = INVERSE.LOI.F.N +F.INV.RT = INVERSE.LOI.F.DROITE +F.TEST = F.TEST +FISHER = FISHER +FISHERINV = FISHER.INVERSE +FORECAST.ETS = PREVISION.ETS +FORECAST.ETS.CONFINT = PREVISION.ETS.CONFINT +FORECAST.ETS.SEASONALITY = PREVISION.ETS.CARACTERESAISONNIER +FORECAST.ETS.STAT = PREVISION.ETS.STAT +FORECAST.LINEAR = PREVISION.LINEAIRE +FREQUENCY = FREQUENCE +GAMMA = GAMMA +GAMMA.DIST = LOI.GAMMA.N +GAMMA.INV = LOI.GAMMA.INVERSE.N +GAMMALN = LNGAMMA +GAMMALN.PRECISE = LNGAMMA.PRECIS +GAUSS = GAUSS +GEOMEAN = MOYENNE.GEOMETRIQUE +GROWTH = CROISSANCE +HARMEAN = MOYENNE.HARMONIQUE +HYPGEOM.DIST = LOI.HYPERGEOMETRIQUE.N +INTERCEPT = ORDONNEE.ORIGINE +KURT = KURTOSIS +LARGE = GRANDE.VALEUR +LINEST = DROITEREG +LOGEST = LOGREG +LOGNORM.DIST = LOI.LOGNORMALE.N +LOGNORM.INV = LOI.LOGNORMALE.INVERSE.N +MAX = MAX +MAXA = MAXA +MAXIFS = MAX.SI +MEDIAN = MEDIANE +MIN = MIN +MINA = MINA +MINIFS = MIN.SI +MODE.MULT = MODE.MULTIPLE +MODE.SNGL = MODE.SIMPLE +NEGBINOM.DIST = LOI.BINOMIALE.NEG.N +NORM.DIST = LOI.NORMALE.N +NORM.INV = LOI.NORMALE.INVERSE.N +NORM.S.DIST = LOI.NORMALE.STANDARD.N +NORM.S.INV = LOI.NORMALE.STANDARD.INVERSE.N +PEARSON = PEARSON +PERCENTILE.EXC = CENTILE.EXCLURE +PERCENTILE.INC = CENTILE.INCLURE +PERCENTRANK.EXC = RANG.POURCENTAGE.EXCLURE +PERCENTRANK.INC = RANG.POURCENTAGE.INCLURE +PERMUT = PERMUTATION +PERMUTATIONA = PERMUTATIONA +PHI = PHI +POISSON.DIST = LOI.POISSON.N +PROB = PROBABILITE +QUARTILE.EXC = QUARTILE.EXCLURE +QUARTILE.INC = QUARTILE.INCLURE +RANK.AVG = MOYENNE.RANG +RANK.EQ = EQUATION.RANG +RSQ = COEFFICIENT.DETERMINATION +SKEW = COEFFICIENT.ASYMETRIE +SKEW.P = COEFFICIENT.ASYMETRIE.P +SLOPE = PENTE +SMALL = PETITE.VALEUR +STANDARDIZE = CENTREE.REDUITE +STDEV.P = ECARTYPE.PEARSON +STDEV.S = ECARTYPE.STANDARD +STDEVA = STDEVA +STDEVPA = STDEVPA +STEYX = ERREUR.TYPE.XY +T.DIST = LOI.STUDENT.N +T.DIST.2T = LOI.STUDENT.BILATERALE +T.DIST.RT = LOI.STUDENT.DROITE +T.INV = LOI.STUDENT.INVERSE.N +T.INV.2T = LOI.STUDENT.INVERSE.BILATERALE +T.TEST = T.TEST +TREND = TENDANCE +TRIMMEAN = MOYENNE.REDUITE +VAR.P = VAR.P.N +VAR.S = VAR.S +VARA = VARA +VARPA = VARPA +WEIBULL.DIST = LOI.WEIBULL.N +Z.TEST = Z.TEST + +## +## Fonctions de texte (Text Functions) +## +BAHTTEXT = BAHTTEXT +CHAR = CAR +CLEAN = EPURAGE +CODE = CODE +CONCAT = CONCAT +DOLLAR = DEVISE +EXACT = EXACT +FIND = TROUVE +FIXED = CTXT +LEFT = GAUCHE +LEN = NBCAR +LOWER = MINUSCULE +MID = STXT +NUMBERVALUE = VALEURNOMBRE +PHONETIC = PHONETIQUE +PROPER = NOMPROPRE +REPLACE = REMPLACER +REPT = REPT +RIGHT = DROITE +SEARCH = CHERCHE +SUBSTITUTE = SUBSTITUE +T = T +TEXT = TEXTE +TEXTJOIN = JOINDRE.TEXTE +TRIM = SUPPRESPACE +UNICHAR = UNICAR +UNICODE = UNICODE +UPPER = MAJUSCULE +VALUE = CNUM + +## +## Fonctions web (Web Functions) +## +ENCODEURL = URLENCODAGE +FILTERXML = FILTRE.XML +WEBSERVICE = SERVICEWEB + +## +## Fonctions de compatibilité (Compatibility Functions) +## +BETADIST = LOI.BETA +BETAINV = BETA.INVERSE +BINOMDIST = LOI.BINOMIALE +CEILING = PLAFOND +CHIDIST = LOI.KHIDEUX +CHIINV = KHIDEUX.INVERSE +CHITEST = TEST.KHIDEUX +CONCATENATE = CONCATENER +CONFIDENCE = INTERVALLE.CONFIANCE +COVAR = COVARIANCE +CRITBINOM = CRITERE.LOI.BINOMIALE +EXPONDIST = LOI.EXPONENTIELLE +FDIST = LOI.F +FINV = INVERSE.LOI.F +FLOOR = PLANCHER +FORECAST = PREVISION +FTEST = TEST.F +GAMMADIST = LOI.GAMMA +GAMMAINV = LOI.GAMMA.INVERSE +HYPGEOMDIST = LOI.HYPERGEOMETRIQUE +LOGINV = LOI.LOGNORMALE.INVERSE +LOGNORMDIST = LOI.LOGNORMALE +MODE = MODE +NEGBINOMDIST = LOI.BINOMIALE.NEG +NORMDIST = LOI.NORMALE +NORMINV = LOI.NORMALE.INVERSE +NORMSDIST = LOI.NORMALE.STANDARD +NORMSINV = LOI.NORMALE.STANDARD.INVERSE +PERCENTILE = CENTILE +PERCENTRANK = RANG.POURCENTAGE +POISSON = LOI.POISSON +QUARTILE = QUARTILE +RANK = RANG +STDEV = ECARTYPE +STDEVP = ECARTYPEP +TDIST = LOI.STUDENT +TINV = LOI.STUDENT.INVERSE +TTEST = TEST.STUDENT +VAR = VAR +VARP = VAR.P +WEIBULL = LOI.WEIBULL +ZTEST = TEST.Z diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/hu/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/hu/config new file mode 100644 index 0000000..dc585d7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/hu/config @@ -0,0 +1,20 @@ +############################################################ +## +## PhpSpreadsheet - locale settings +## +## Magyar (Hungarian) +## +############################################################ + +ArgumentSeparator = ; + +## +## Error Codes +## +NULL = #NULLA! +DIV0 = #ZÉRÓOSZTÓ! +VALUE = #ÉRTÉK! +REF = #HIV! +NAME = #NÉV? +NUM = #SZÃM! +NA = #HIÃNYZIK diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/hu/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/hu/functions new file mode 100644 index 0000000..46b3012 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/hu/functions @@ -0,0 +1,537 @@ +############################################################ +## +## PhpSpreadsheet - function name translations +## +## Magyar (Hungarian) +## +############################################################ + + +## +## Kockafüggvények (Cube Functions) +## +CUBEKPIMEMBER = KOCKA.FÅTELJMUT +CUBEMEMBER = KOCKA.TAG +CUBEMEMBERPROPERTY = KOCKA.TAG.TUL +CUBERANKEDMEMBER = KOCKA.HALM.ELEM +CUBESET = KOCKA.HALM +CUBESETCOUNT = KOCKA.HALM.DB +CUBEVALUE = KOCKA.ÉRTÉK + +## +## Adatbázis-kezelÅ‘ függvények (Database Functions) +## +DAVERAGE = AB.ÃTLAG +DCOUNT = AB.DARAB +DCOUNTA = AB.DARAB2 +DGET = AB.MEZÅ +DMAX = AB.MAX +DMIN = AB.MIN +DPRODUCT = AB.SZORZAT +DSTDEV = AB.SZÓRÃS +DSTDEVP = AB.SZÓRÃS2 +DSUM = AB.SZUM +DVAR = AB.VAR +DVARP = AB.VAR2 + +## +## Dátumfüggvények (Date & Time Functions) +## +DATE = DÃTUM +DATEDIF = DÃTUMTÓLIG +DATESTRING = DÃTUMSZÖVEG +DATEVALUE = DÃTUMÉRTÉK +DAY = NAP +DAYS = NAPOK +DAYS360 = NAP360 +EDATE = KALK.DÃTUM +EOMONTH = HÓNAP.UTOLSÓ.NAP +HOUR = ÓRA +ISOWEEKNUM = ISO.HÉT.SZÃMA +MINUTE = PERCEK +MONTH = HÓNAP +NETWORKDAYS = ÖSSZ.MUNKANAP +NETWORKDAYS.INTL = ÖSSZ.MUNKANAP.INTL +NOW = MOST +SECOND = MPERC +THAIDAYOFWEEK = THAIHÉTNAPJA +THAIMONTHOFYEAR = THAIHÓNAP +THAIYEAR = THAIÉV +TIME = IDÅ +TIMEVALUE = IDÅÉRTÉK +TODAY = MA +WEEKDAY = HÉT.NAPJA +WEEKNUM = HÉT.SZÃMA +WORKDAY = KALK.MUNKANAP +WORKDAY.INTL = KALK.MUNKANAP.INTL +YEAR = ÉV +YEARFRAC = TÖRTÉV + +## +## Mérnöki függvények (Engineering Functions) +## +BESSELI = BESSELI +BESSELJ = BESSELJ +BESSELK = BESSELK +BESSELY = BESSELY +BIN2DEC = BIN.DEC +BIN2HEX = BIN.HEX +BIN2OCT = BIN.OKT +BITAND = BIT.ÉS +BITLSHIFT = BIT.BAL.ELTOL +BITOR = BIT.VAGY +BITRSHIFT = BIT.JOBB.ELTOL +BITXOR = BIT.XVAGY +COMPLEX = KOMPLEX +CONVERT = KONVERTÃLÃS +DEC2BIN = DEC.BIN +DEC2HEX = DEC.HEX +DEC2OCT = DEC.OKT +DELTA = DELTA +ERF = HIBAF +ERF.PRECISE = HIBAF.PONTOS +ERFC = HIBAF.KOMPLEMENTER +ERFC.PRECISE = HIBAFKOMPLEMENTER.PONTOS +GESTEP = KÜSZÖBNÉL.NAGYOBB +HEX2BIN = HEX.BIN +HEX2DEC = HEX.DEC +HEX2OCT = HEX.OKT +IMABS = KÉPZ.ABSZ +IMAGINARY = KÉPZETES +IMARGUMENT = KÉPZ.ARGUMENT +IMCONJUGATE = KÉPZ.KONJUGÃLT +IMCOS = KÉPZ.COS +IMCOSH = KÉPZ.COSH +IMCOT = KÉPZ.COT +IMCSC = KÉPZ.CSC +IMCSCH = KÉPZ.CSCH +IMDIV = KÉPZ.HÃNYAD +IMEXP = KÉPZ.EXP +IMLN = KÉPZ.LN +IMLOG10 = KÉPZ.LOG10 +IMLOG2 = KÉPZ.LOG2 +IMPOWER = KÉPZ.HATV +IMPRODUCT = KÉPZ.SZORZAT +IMREAL = KÉPZ.VALÓS +IMSEC = KÉPZ.SEC +IMSECH = KÉPZ.SECH +IMSIN = KÉPZ.SIN +IMSINH = KÉPZ.SINH +IMSQRT = KÉPZ.GYÖK +IMSUB = KÉPZ.KÜL +IMSUM = KÉPZ.ÖSSZEG +IMTAN = KÉPZ.TAN +OCT2BIN = OKT.BIN +OCT2DEC = OKT.DEC +OCT2HEX = OKT.HEX + +## +## Pénzügyi függvények (Financial Functions) +## +ACCRINT = IDÅSZAKI.KAMAT +ACCRINTM = LEJÃRATI.KAMAT +AMORDEGRC = ÉRTÉKCSÖKK.TÉNYEZÅVEL +AMORLINC = ÉRTÉKCSÖKK +COUPDAYBS = SZELVÉNYIDÅ.KEZDETTÅL +COUPDAYS = SZELVÉNYIDÅ +COUPDAYSNC = SZELVÉNYIDÅ.KIFIZETÉSTÅL +COUPNCD = ELSÅ.SZELVÉNYDÃTUM +COUPNUM = SZELVÉNYSZÃM +COUPPCD = UTOLSÓ.SZELVÉNYDÃTUM +CUMIPMT = ÖSSZES.KAMAT +CUMPRINC = ÖSSZES.TÅKERÉSZ +DB = KCS2 +DDB = KCSA +DISC = LESZÃM +DOLLARDE = FORINT.DEC +DOLLARFR = FORINT.TÖRT +DURATION = KAMATÉRZ +EFFECT = TÉNYLEGES +FV = JBÉ +FVSCHEDULE = KJÉ +INTRATE = KAMATRÃTA +IPMT = RRÉSZLET +IRR = BMR +ISPMT = LRÉSZLETKAMAT +MDURATION = MKAMATÉRZ +MIRR = MEGTÉRÜLÉS +NOMINAL = NÉVLEGES +NPER = PER.SZÃM +NPV = NMÉ +ODDFPRICE = ELTÉRÅ.EÃR +ODDFYIELD = ELTÉRÅ.EHOZAM +ODDLPRICE = ELTÉRÅ.UÃR +ODDLYIELD = ELTÉRÅ.UHOZAM +PDURATION = KAMATÉRZ.PER +PMT = RÉSZLET +PPMT = PRÉSZLET +PRICE = ÃR +PRICEDISC = ÃR.LESZÃM +PRICEMAT = ÃR.LEJÃRAT +PV = MÉ +RATE = RÃTA +RECEIVED = KAPOTT +RRI = MR +SLN = LCSA +SYD = ÉSZÖ +TBILLEQ = KJEGY.EGYENÉRT +TBILLPRICE = KJEGY.ÃR +TBILLYIELD = KJEGY.HOZAM +VDB = ÉCSRI +XIRR = XBMR +XNPV = XNJÉ +YIELD = HOZAM +YIELDDISC = HOZAM.LESZÃM +YIELDMAT = HOZAM.LEJÃRAT + +## +## Információs függvények (Information Functions) +## +CELL = CELLA +ERROR.TYPE = HIBA.TÃPUS +INFO = INFÓ +ISBLANK = ÜRES +ISERR = HIBA.E +ISERROR = HIBÃS +ISEVEN = PÃROSE +ISFORMULA = KÉPLET +ISLOGICAL = LOGIKAI +ISNA = NINCS +ISNONTEXT = NEM.SZÖVEG +ISNUMBER = SZÃM +ISODD = PÃRATLANE +ISREF = HIVATKOZÃS +ISTEXT = SZÖVEG.E +N = S +NA = HIÃNYZIK +SHEET = LAP +SHEETS = LAPOK +TYPE = TÃPUS + +## +## Logikai függvények (Logical Functions) +## +AND = ÉS +FALSE = HAMIS +IF = HA +IFERROR = HAHIBA +IFNA = HAHIÃNYZIK +IFS = HAELSÅIGAZ +NOT = NEM +OR = VAGY +SWITCH = ÃTVÃLT +TRUE = IGAZ +XOR = XVAGY + +## +## Keresési és hivatkozási függvények (Lookup & Reference Functions) +## +ADDRESS = CÃM +AREAS = TERÜLET +CHOOSE = VÃLASZT +COLUMN = OSZLOP +COLUMNS = OSZLOPOK +FORMULATEXT = KÉPLETSZÖVEG +GETPIVOTDATA = KIMUTATÃSADATOT.VESZ +HLOOKUP = VKERES +HYPERLINK = HIPERHIVATKOZÃS +INDEX = INDEX +INDIRECT = INDIREKT +LOOKUP = KERES +MATCH = HOL.VAN +OFFSET = ELTOLÃS +ROW = SOR +ROWS = SOROK +RTD = VIA +TRANSPOSE = TRANSZPONÃLÃS +VLOOKUP = FKERES + +## +## Matematikai és trigonometrikus függvények (Math & Trig Functions) +## +ABS = ABS +ACOS = ARCCOS +ACOSH = ACOSH +ACOT = ARCCOT +ACOTH = ARCCOTH +AGGREGATE = ÖSSZESÃT +ARABIC = ARAB +ASIN = ARCSIN +ASINH = ASINH +ATAN = ARCTAN +ATAN2 = ARCTAN2 +ATANH = ATANH +BASE = ALAP +CEILING.MATH = PLAFON.MAT +CEILING.PRECISE = PLAFON.PONTOS +COMBIN = KOMBINÃCIÓK +COMBINA = KOMBINÃCIÓK.ISM +COS = COS +COSH = COSH +COT = COT +COTH = COTH +CSC = CSC +CSCH = CSCH +DECIMAL = TIZEDES +DEGREES = FOK +ECMA.CEILING = ECMA.PLAFON +EVEN = PÃROS +EXP = KITEVÅ +FACT = FAKT +FACTDOUBLE = FAKTDUPLA +FLOOR.MATH = PADLÓ.MAT +FLOOR.PRECISE = PADLÓ.PONTOS +GCD = LKO +INT = INT +ISO.CEILING = ISO.PLAFON +LCM = LKT +LN = LN +LOG = LOG +LOG10 = LOG10 +MDETERM = MDETERM +MINVERSE = INVERZ.MÃTRIX +MMULT = MSZORZAT +MOD = MARADÉK +MROUND = TÖBBSZ.KEREKÃT +MULTINOMIAL = SZORHÃNYFAKT +MUNIT = MMÃTRIX +ODD = PÃRATLAN +PI = PI +POWER = HATVÃNY +PRODUCT = SZORZAT +QUOTIENT = KVÓCIENS +RADIANS = RADIÃN +RAND = VÉL +RANDBETWEEN = VÉLETLEN.KÖZÖTT +ROMAN = RÓMAI +ROUND = KEREKÃTÉS +ROUNDBAHTDOWN = BAHTKEREK.LE +ROUNDBAHTUP = BAHTKEREK.FEL +ROUNDDOWN = KEREK.LE +ROUNDUP = KEREK.FEL +SEC = SEC +SECH = SECH +SERIESSUM = SORÖSSZEG +SIGN = ELÅJEL +SIN = SIN +SINH = SINH +SQRT = GYÖK +SQRTPI = GYÖKPI +SUBTOTAL = RÉSZÖSSZEG +SUM = SZUM +SUMIF = SZUMHA +SUMIFS = SZUMHATÖBB +SUMPRODUCT = SZORZATÖSSZEG +SUMSQ = NÉGYZETÖSSZEG +SUMX2MY2 = SZUMX2BÅLY2 +SUMX2PY2 = SZUMX2MEGY2 +SUMXMY2 = SZUMXBÅLY2 +TAN = TAN +TANH = TANH +TRUNC = CSONK + +## +## Statisztikai függvények (Statistical Functions) +## +AVEDEV = ÃTL.ELTÉRÉS +AVERAGE = ÃTLAG +AVERAGEA = ÃTLAGA +AVERAGEIF = ÃTLAGHA +AVERAGEIFS = ÃTLAGHATÖBB +BETA.DIST = BÉTA.ELOSZL +BETA.INV = BÉTA.INVERZ +BINOM.DIST = BINOM.ELOSZL +BINOM.DIST.RANGE = BINOM.ELOSZL.TART +BINOM.INV = BINOM.INVERZ +CHISQ.DIST = KHINÉGYZET.ELOSZLÃS +CHISQ.DIST.RT = KHINÉGYZET.ELOSZLÃS.JOBB +CHISQ.INV = KHINÉGYZET.INVERZ +CHISQ.INV.RT = KHINÉGYZET.INVERZ.JOBB +CHISQ.TEST = KHINÉGYZET.PRÓBA +CONFIDENCE.NORM = MEGBÃZHATÓSÃG.NORM +CONFIDENCE.T = MEGBÃZHATÓSÃG.T +CORREL = KORREL +COUNT = DARAB +COUNTA = DARAB2 +COUNTBLANK = DARABÜRES +COUNTIF = DARABTELI +COUNTIFS = DARABHATÖBB +COVARIANCE.P = KOVARIANCIA.S +COVARIANCE.S = KOVARIANCIA.M +DEVSQ = SQ +EXPON.DIST = EXP.ELOSZL +F.DIST = F.ELOSZL +F.DIST.RT = F.ELOSZLÃS.JOBB +F.INV = F.INVERZ +F.INV.RT = F.INVERZ.JOBB +F.TEST = F.PRÓB +FISHER = FISHER +FISHERINV = INVERZ.FISHER +FORECAST.ETS = ELÅREJELZÉS.ESIM +FORECAST.ETS.CONFINT = ELÅREJELZÉS.ESIM.KONFINT +FORECAST.ETS.SEASONALITY = ELÅREJELZÉS.ESIM.SZEZONALITÃS +FORECAST.ETS.STAT = ELÅREJELZÉS.ESIM.STAT +FORECAST.LINEAR = ELÅREJELZÉS.LINEÃRIS +FREQUENCY = GYAKORISÃG +GAMMA = GAMMA +GAMMA.DIST = GAMMA.ELOSZL +GAMMA.INV = GAMMA.INVERZ +GAMMALN = GAMMALN +GAMMALN.PRECISE = GAMMALN.PONTOS +GAUSS = GAUSS +GEOMEAN = MÉRTANI.KÖZÉP +GROWTH = NÖV +HARMEAN = HARM.KÖZÉP +HYPGEOM.DIST = HIPGEOM.ELOSZLÃS +INTERCEPT = METSZ +KURT = CSÚCSOSSÃG +LARGE = NAGY +LINEST = LIN.ILL +LOGEST = LOG.ILL +LOGNORM.DIST = LOGNORM.ELOSZLÃS +LOGNORM.INV = LOGNORM.INVERZ +MAX = MAX +MAXA = MAXA +MAXIFS = MAXHA +MEDIAN = MEDIÃN +MIN = MIN +MINA = MIN2 +MINIFS = MINHA +MODE.MULT = MÓDUSZ.TÖBB +MODE.SNGL = MÓDUSZ.EGY +NEGBINOM.DIST = NEGBINOM.ELOSZLÃS +NORM.DIST = NORM.ELOSZLÃS +NORM.INV = NORM.INVERZ +NORM.S.DIST = NORM.S.ELOSZLÃS +NORM.S.INV = NORM.S.INVERZ +PEARSON = PEARSON +PERCENTILE.EXC = PERCENTILIS.KIZÃR +PERCENTILE.INC = PERCENTILIS.TARTALMAZ +PERCENTRANK.EXC = SZÃZALÉKRANG.KIZÃR +PERCENTRANK.INC = SZÃZALÉKRANG.TARTALMAZ +PERMUT = VARIÃCIÓK +PERMUTATIONA = VARIÃCIÓK.ISM +PHI = FI +POISSON.DIST = POISSON.ELOSZLÃS +PROB = VALÓSZÃNŰSÉG +QUARTILE.EXC = KVARTILIS.KIZÃR +QUARTILE.INC = KVARTILIS.TARTALMAZ +RANK.AVG = RANG.ÃTL +RANK.EQ = RANG.EGY +RSQ = RNÉGYZET +SKEW = FERDESÉG +SKEW.P = FERDESÉG.P +SLOPE = MEREDEKSÉG +SMALL = KICSI +STANDARDIZE = NORMALIZÃLÃS +STDEV.P = SZÓR.S +STDEV.S = SZÓR.M +STDEVA = SZÓRÃSA +STDEVPA = SZÓRÃSPA +STEYX = STHIBAYX +T.DIST = T.ELOSZL +T.DIST.2T = T.ELOSZLÃS.2SZ +T.DIST.RT = T.ELOSZLÃS.JOBB +T.INV = T.INVERZ +T.INV.2T = T.INVERZ.2SZ +T.TEST = T.PRÓB +TREND = TREND +TRIMMEAN = RÉSZÃTLAG +VAR.P = VAR.S +VAR.S = VAR.M +VARA = VARA +VARPA = VARPA +WEIBULL.DIST = WEIBULL.ELOSZLÃS +Z.TEST = Z.PRÓB + +## +## Szövegműveletekhez használható függvények (Text Functions) +## +BAHTTEXT = BAHTSZÖVEG +CHAR = KARAKTER +CLEAN = TISZTÃT +CODE = KÓD +CONCAT = FŰZ +DOLLAR = FORINT +EXACT = AZONOS +FIND = SZÖVEG.TALÃL +FIXED = FIX +ISTHAIDIGIT = ON.THAI.NUMERO +LEFT = BAL +LEN = HOSSZ +LOWER = KISBETŰ +MID = KÖZÉP +NUMBERSTRING = SZÃM.BETŰVEL +NUMBERVALUE = SZÃMÉRTÉK +PHONETIC = FONETIKUS +PROPER = TNÉV +REPLACE = CSERE +REPT = SOKSZOR +RIGHT = JOBB +SEARCH = SZÖVEG.KERES +SUBSTITUTE = HELYETTE +T = T +TEXT = SZÖVEG +TEXTJOIN = SZÖVEGÖSSZEFŰZÉS +THAIDIGIT = THAISZÃM +THAINUMSOUND = THAISZÃMHANG +THAINUMSTRING = THAISZÃMKAR +THAISTRINGLENGTH = THAIKARHOSSZ +TRIM = KIMETSZ +UNICHAR = UNIKARAKTER +UNICODE = UNICODE +UPPER = NAGYBETŰS +VALUE = ÉRTÉK + +## +## Webes függvények (Web Functions) +## +ENCODEURL = URL.KÓDOL +FILTERXML = XMLSZŰRÉS +WEBSERVICE = WEBSZOLGÃLTATÃS + +## +## Kompatibilitási függvények (Compatibility Functions) +## +BETADIST = BÉTA.ELOSZLÃS +BETAINV = INVERZ.BÉTA +BINOMDIST = BINOM.ELOSZLÃS +CEILING = PLAFON +CHIDIST = KHI.ELOSZLÃS +CHIINV = INVERZ.KHI +CHITEST = KHI.PRÓBA +CONCATENATE = ÖSSZEFŰZ +CONFIDENCE = MEGBÃZHATÓSÃG +COVAR = KOVAR +CRITBINOM = KRITBINOM +EXPONDIST = EXP.ELOSZLÃS +FDIST = F.ELOSZLÃS +FINV = INVERZ.F +FLOOR = PADLÓ +FORECAST = ELÅREJELZÉS +FTEST = F.PRÓBA +GAMMADIST = GAMMA.ELOSZLÃS +GAMMAINV = INVERZ.GAMMA +HYPGEOMDIST = HIPERGEOM.ELOSZLÃS +LOGINV = INVERZ.LOG.ELOSZLÃS +LOGNORMDIST = LOG.ELOSZLÃS +MODE = MÓDUSZ +NEGBINOMDIST = NEGBINOM.ELOSZL +NORMDIST = NORM.ELOSZL +NORMINV = INVERZ.NORM +NORMSDIST = STNORMELOSZL +NORMSINV = INVERZ.STNORM +PERCENTILE = PERCENTILIS +PERCENTRANK = SZÃZALÉKRANG +POISSON = POISSON +QUARTILE = KVARTILIS +RANK = SORSZÃM +STDEV = SZÓRÃS +STDEVP = SZÓRÃSP +TDIST = T.ELOSZLÃS +TINV = INVERZ.T +TTEST = T.PRÓBA +VAR = VAR +VARP = VARP +WEIBULL = WEIBULL +ZTEST = Z.PRÓBA diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/it/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/it/config new file mode 100644 index 0000000..5c1e495 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/it/config @@ -0,0 +1,20 @@ +############################################################ +## +## PhpSpreadsheet - locale settings +## +## Italiano (Italian) +## +############################################################ + +ArgumentSeparator = ; + +## +## Error Codes +## +NULL +DIV0 +VALUE = #VALORE! +REF = #RIF! +NAME = #NOME? +NUM +NA = #N/D diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/it/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/it/functions new file mode 100644 index 0000000..c14ed85 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/it/functions @@ -0,0 +1,537 @@ +############################################################ +## +## PhpSpreadsheet - function name translations +## +## Italiano (Italian) +## +############################################################ + + +## +## Funzioni cubo (Cube Functions) +## +CUBEKPIMEMBER = MEMBRO.KPI.CUBO +CUBEMEMBER = MEMBRO.CUBO +CUBEMEMBERPROPERTY = PROPRIETÀ.MEMBRO.CUBO +CUBERANKEDMEMBER = MEMBRO.CUBO.CON.RANGO +CUBESET = SET.CUBO +CUBESETCOUNT = CONTA.SET.CUBO +CUBEVALUE = VALORE.CUBO + +## +## Funzioni di database (Database Functions) +## +DAVERAGE = DB.MEDIA +DCOUNT = DB.CONTA.NUMERI +DCOUNTA = DB.CONTA.VALORI +DGET = DB.VALORI +DMAX = DB.MAX +DMIN = DB.MIN +DPRODUCT = DB.PRODOTTO +DSTDEV = DB.DEV.ST +DSTDEVP = DB.DEV.ST.POP +DSUM = DB.SOMMA +DVAR = DB.VAR +DVARP = DB.VAR.POP + +## +## Funzioni data e ora (Date & Time Functions) +## +DATE = DATA +DATEDIF = DATA.DIFF +DATESTRING = DATA.STRINGA +DATEVALUE = DATA.VALORE +DAY = GIORNO +DAYS = GIORNI +DAYS360 = GIORNO360 +EDATE = DATA.MESE +EOMONTH = FINE.MESE +HOUR = ORA +ISOWEEKNUM = NUM.SETTIMANA.ISO +MINUTE = MINUTO +MONTH = MESE +NETWORKDAYS = GIORNI.LAVORATIVI.TOT +NETWORKDAYS.INTL = GIORNI.LAVORATIVI.TOT.INTL +NOW = ADESSO +SECOND = SECONDO +THAIDAYOFWEEK = THAIGIORNODELLASETTIMANA +THAIMONTHOFYEAR = THAIMESEDELLANNO +THAIYEAR = THAIANNO +TIME = ORARIO +TIMEVALUE = ORARIO.VALORE +TODAY = OGGI +WEEKDAY = GIORNO.SETTIMANA +WEEKNUM = NUM.SETTIMANA +WORKDAY = GIORNO.LAVORATIVO +WORKDAY.INTL = GIORNO.LAVORATIVO.INTL +YEAR = ANNO +YEARFRAC = FRAZIONE.ANNO + +## +## Funzioni ingegneristiche (Engineering Functions) +## +BESSELI = BESSEL.I +BESSELJ = BESSEL.J +BESSELK = BESSEL.K +BESSELY = BESSEL.Y +BIN2DEC = BINARIO.DECIMALE +BIN2HEX = BINARIO.HEX +BIN2OCT = BINARIO.OCT +BITAND = BITAND +BITLSHIFT = BIT.SPOSTA.SX +BITOR = BITOR +BITRSHIFT = BIT.SPOSTA.DX +BITXOR = BITXOR +COMPLEX = COMPLESSO +CONVERT = CONVERTI +DEC2BIN = DECIMALE.BINARIO +DEC2HEX = DECIMALE.HEX +DEC2OCT = DECIMALE.OCT +DELTA = DELTA +ERF = FUNZ.ERRORE +ERF.PRECISE = FUNZ.ERRORE.PRECISA +ERFC = FUNZ.ERRORE.COMP +ERFC.PRECISE = FUNZ.ERRORE.COMP.PRECISA +GESTEP = SOGLIA +HEX2BIN = HEX.BINARIO +HEX2DEC = HEX.DECIMALE +HEX2OCT = HEX.OCT +IMABS = COMP.MODULO +IMAGINARY = COMP.IMMAGINARIO +IMARGUMENT = COMP.ARGOMENTO +IMCONJUGATE = COMP.CONIUGATO +IMCOS = COMP.COS +IMCOSH = COMP.COSH +IMCOT = COMP.COT +IMCSC = COMP.CSC +IMCSCH = COMP.CSCH +IMDIV = COMP.DIV +IMEXP = COMP.EXP +IMLN = COMP.LN +IMLOG10 = COMP.LOG10 +IMLOG2 = COMP.LOG2 +IMPOWER = COMP.POTENZA +IMPRODUCT = COMP.PRODOTTO +IMREAL = COMP.PARTE.REALE +IMSEC = COMP.SEC +IMSECH = COMP.SECH +IMSIN = COMP.SEN +IMSINH = COMP.SENH +IMSQRT = COMP.RADQ +IMSUB = COMP.DIFF +IMSUM = COMP.SOMMA +IMTAN = COMP.TAN +OCT2BIN = OCT.BINARIO +OCT2DEC = OCT.DECIMALE +OCT2HEX = OCT.HEX + +## +## Funzioni finanziarie (Financial Functions) +## +ACCRINT = INT.MATURATO.PER +ACCRINTM = INT.MATURATO.SCAD +AMORDEGRC = AMMORT.DEGR +AMORLINC = AMMORT.PER +COUPDAYBS = GIORNI.CED.INIZ.LIQ +COUPDAYS = GIORNI.CED +COUPDAYSNC = GIORNI.CED.NUOVA +COUPNCD = DATA.CED.SUCC +COUPNUM = NUM.CED +COUPPCD = DATA.CED.PREC +CUMIPMT = INT.CUMUL +CUMPRINC = CAP.CUM +DB = AMMORT.FISSO +DDB = AMMORT +DISC = TASSO.SCONTO +DOLLARDE = VALUTA.DEC +DOLLARFR = VALUTA.FRAZ +DURATION = DURATA +EFFECT = EFFETTIVO +FV = VAL.FUT +FVSCHEDULE = VAL.FUT.CAPITALE +INTRATE = TASSO.INT +IPMT = INTERESSI +IRR = TIR.COST +ISPMT = INTERESSE.RATA +MDURATION = DURATA.M +MIRR = TIR.VAR +NOMINAL = NOMINALE +NPER = NUM.RATE +NPV = VAN +ODDFPRICE = PREZZO.PRIMO.IRR +ODDFYIELD = REND.PRIMO.IRR +ODDLPRICE = PREZZO.ULTIMO.IRR +ODDLYIELD = REND.ULTIMO.IRR +PDURATION = DURATA.P +PMT = RATA +PPMT = P.RATA +PRICE = PREZZO +PRICEDISC = PREZZO.SCONT +PRICEMAT = PREZZO.SCAD +PV = VA +RATE = TASSO +RECEIVED = RICEV.SCAD +RRI = RIT.INVEST.EFFETT +SLN = AMMORT.COST +SYD = AMMORT.ANNUO +TBILLEQ = BOT.EQUIV +TBILLPRICE = BOT.PREZZO +TBILLYIELD = BOT.REND +VDB = AMMORT.VAR +XIRR = TIR.X +XNPV = VAN.X +YIELD = REND +YIELDDISC = REND.TITOLI.SCONT +YIELDMAT = REND.SCAD + +## +## Funzioni relative alle informazioni (Information Functions) +## +CELL = CELLA +ERROR.TYPE = ERRORE.TIPO +INFO = AMBIENTE.INFO +ISBLANK = VAL.VUOTO +ISERR = VAL.ERR +ISERROR = VAL.ERRORE +ISEVEN = VAL.PARI +ISFORMULA = VAL.FORMULA +ISLOGICAL = VAL.LOGICO +ISNA = VAL.NON.DISP +ISNONTEXT = VAL.NON.TESTO +ISNUMBER = VAL.NUMERO +ISODD = VAL.DISPARI +ISREF = VAL.RIF +ISTEXT = VAL.TESTO +N = NUM +NA = NON.DISP +SHEET = FOGLIO +SHEETS = FOGLI +TYPE = TIPO + +## +## Funzioni logiche (Logical Functions) +## +AND = E +FALSE = FALSO +IF = SE +IFERROR = SE.ERRORE +IFNA = SE.NON.DISP. +IFS = PIÙ.SE +NOT = NON +OR = O +SWITCH = SWITCH +TRUE = VERO +XOR = XOR + +## +## Funzioni di ricerca e di riferimento (Lookup & Reference Functions) +## +ADDRESS = INDIRIZZO +AREAS = AREE +CHOOSE = SCEGLI +COLUMN = RIF.COLONNA +COLUMNS = COLONNE +FORMULATEXT = TESTO.FORMULA +GETPIVOTDATA = INFO.DATI.TAB.PIVOT +HLOOKUP = CERCA.ORIZZ +HYPERLINK = COLLEG.IPERTESTUALE +INDEX = INDICE +INDIRECT = INDIRETTO +LOOKUP = CERCA +MATCH = CONFRONTA +OFFSET = SCARTO +ROW = RIF.RIGA +ROWS = RIGHE +RTD = DATITEMPOREALE +TRANSPOSE = MATR.TRASPOSTA +VLOOKUP = CERCA.VERT + +## +## Funzioni matematiche e trigonometriche (Math & Trig Functions) +## +ABS = ASS +ACOS = ARCCOS +ACOSH = ARCCOSH +ACOT = ARCCOT +ACOTH = ARCCOTH +AGGREGATE = AGGREGA +ARABIC = ARABO +ASIN = ARCSEN +ASINH = ARCSENH +ATAN = ARCTAN +ATAN2 = ARCTAN.2 +ATANH = ARCTANH +BASE = BASE +CEILING.MATH = ARROTONDA.ECCESSO.MAT +CEILING.PRECISE = ARROTONDA.ECCESSO.PRECISA +COMBIN = COMBINAZIONE +COMBINA = COMBINAZIONE.VALORI +COS = COS +COSH = COSH +COT = COT +COTH = COTH +CSC = CSC +CSCH = CSCH +DECIMAL = DECIMALE +DEGREES = GRADI +ECMA.CEILING = ECMA.ARROTONDA.ECCESSO +EVEN = PARI +EXP = EXP +FACT = FATTORIALE +FACTDOUBLE = FATT.DOPPIO +FLOOR.MATH = ARROTONDA.DIFETTO.MAT +FLOOR.PRECISE = ARROTONDA.DIFETTO.PRECISA +GCD = MCD +INT = INT +ISO.CEILING = ISO.ARROTONDA.ECCESSO +LCM = MCM +LN = LN +LOG = LOG +LOG10 = LOG10 +MDETERM = MATR.DETERM +MINVERSE = MATR.INVERSA +MMULT = MATR.PRODOTTO +MOD = RESTO +MROUND = ARROTONDA.MULTIPLO +MULTINOMIAL = MULTINOMIALE +MUNIT = MATR.UNIT +ODD = DISPARI +PI = PI.GRECO +POWER = POTENZA +PRODUCT = PRODOTTO +QUOTIENT = QUOZIENTE +RADIANS = RADIANTI +RAND = CASUALE +RANDBETWEEN = CASUALE.TRA +ROMAN = ROMANO +ROUND = ARROTONDA +ROUNDBAHTDOWN = ARROTBAHTGIU +ROUNDBAHTUP = ARROTBAHTSU +ROUNDDOWN = ARROTONDA.PER.DIF +ROUNDUP = ARROTONDA.PER.ECC +SEC = SEC +SECH = SECH +SERIESSUM = SOMMA.SERIE +SIGN = SEGNO +SIN = SEN +SINH = SENH +SQRT = RADQ +SQRTPI = RADQ.PI.GRECO +SUBTOTAL = SUBTOTALE +SUM = SOMMA +SUMIF = SOMMA.SE +SUMIFS = SOMMA.PIÙ.SE +SUMPRODUCT = MATR.SOMMA.PRODOTTO +SUMSQ = SOMMA.Q +SUMX2MY2 = SOMMA.DIFF.Q +SUMX2PY2 = SOMMA.SOMMA.Q +SUMXMY2 = SOMMA.Q.DIFF +TAN = TAN +TANH = TANH +TRUNC = TRONCA + +## +## Funzioni statistiche (Statistical Functions) +## +AVEDEV = MEDIA.DEV +AVERAGE = MEDIA +AVERAGEA = MEDIA.VALORI +AVERAGEIF = MEDIA.SE +AVERAGEIFS = MEDIA.PIÙ.SE +BETA.DIST = DISTRIB.BETA.N +BETA.INV = INV.BETA.N +BINOM.DIST = DISTRIB.BINOM.N +BINOM.DIST.RANGE = INTERVALLO.DISTRIB.BINOM.N. +BINOM.INV = INV.BINOM +CHISQ.DIST = DISTRIB.CHI.QUAD +CHISQ.DIST.RT = DISTRIB.CHI.QUAD.DS +CHISQ.INV = INV.CHI.QUAD +CHISQ.INV.RT = INV.CHI.QUAD.DS +CHISQ.TEST = TEST.CHI.QUAD +CONFIDENCE.NORM = CONFIDENZA.NORM +CONFIDENCE.T = CONFIDENZA.T +CORREL = CORRELAZIONE +COUNT = CONTA.NUMERI +COUNTA = CONTA.VALORI +COUNTBLANK = CONTA.VUOTE +COUNTIF = CONTA.SE +COUNTIFS = CONTA.PIÙ.SE +COVARIANCE.P = COVARIANZA.P +COVARIANCE.S = COVARIANZA.C +DEVSQ = DEV.Q +EXPON.DIST = DISTRIB.EXP.N +F.DIST = DISTRIBF +F.DIST.RT = DISTRIB.F.DS +F.INV = INVF +F.INV.RT = INV.F.DS +F.TEST = TESTF +FISHER = FISHER +FISHERINV = INV.FISHER +FORECAST.ETS = PREVISIONE.ETS +FORECAST.ETS.CONFINT = PREVISIONE.ETS.INTCONF +FORECAST.ETS.SEASONALITY = PREVISIONE.ETS.STAGIONALITÀ +FORECAST.ETS.STAT = PREVISIONE.ETS.STAT +FORECAST.LINEAR = PREVISIONE.LINEARE +FREQUENCY = FREQUENZA +GAMMA = GAMMA +GAMMA.DIST = DISTRIB.GAMMA.N +GAMMA.INV = INV.GAMMA.N +GAMMALN = LN.GAMMA +GAMMALN.PRECISE = LN.GAMMA.PRECISA +GAUSS = GAUSS +GEOMEAN = MEDIA.GEOMETRICA +GROWTH = CRESCITA +HARMEAN = MEDIA.ARMONICA +HYPGEOM.DIST = DISTRIB.IPERGEOM.N +INTERCEPT = INTERCETTA +KURT = CURTOSI +LARGE = GRANDE +LINEST = REGR.LIN +LOGEST = REGR.LOG +LOGNORM.DIST = DISTRIB.LOGNORM.N +LOGNORM.INV = INV.LOGNORM.N +MAX = MAX +MAXA = MAX.VALORI +MAXIFS = MAX.PIÙ.SE +MEDIAN = MEDIANA +MIN = MIN +MINA = MIN.VALORI +MINIFS = MIN.PIÙ.SE +MODE.MULT = MODA.MULT +MODE.SNGL = MODA.SNGL +NEGBINOM.DIST = DISTRIB.BINOM.NEG.N +NORM.DIST = DISTRIB.NORM.N +NORM.INV = INV.NORM.N +NORM.S.DIST = DISTRIB.NORM.ST.N +NORM.S.INV = INV.NORM.S +PEARSON = PEARSON +PERCENTILE.EXC = ESC.PERCENTILE +PERCENTILE.INC = INC.PERCENTILE +PERCENTRANK.EXC = ESC.PERCENT.RANGO +PERCENTRANK.INC = INC.PERCENT.RANGO +PERMUT = PERMUTAZIONE +PERMUTATIONA = PERMUTAZIONE.VALORI +PHI = PHI +POISSON.DIST = DISTRIB.POISSON +PROB = PROBABILITÀ +QUARTILE.EXC = ESC.QUARTILE +QUARTILE.INC = INC.QUARTILE +RANK.AVG = RANGO.MEDIA +RANK.EQ = RANGO.UG +RSQ = RQ +SKEW = ASIMMETRIA +SKEW.P = ASIMMETRIA.P +SLOPE = PENDENZA +SMALL = PICCOLO +STANDARDIZE = NORMALIZZA +STDEV.P = DEV.ST.P +STDEV.S = DEV.ST.C +STDEVA = DEV.ST.VALORI +STDEVPA = DEV.ST.POP.VALORI +STEYX = ERR.STD.YX +T.DIST = DISTRIB.T.N +T.DIST.2T = DISTRIB.T.2T +T.DIST.RT = DISTRIB.T.DS +T.INV = INVT +T.INV.2T = INV.T.2T +T.TEST = TESTT +TREND = TENDENZA +TRIMMEAN = MEDIA.TRONCATA +VAR.P = VAR.P +VAR.S = VAR.C +VARA = VAR.VALORI +VARPA = VAR.POP.VALORI +WEIBULL.DIST = DISTRIB.WEIBULL +Z.TEST = TESTZ + +## +## Funzioni di testo (Text Functions) +## +BAHTTEXT = BAHTTESTO +CHAR = CODICE.CARATT +CLEAN = LIBERA +CODE = CODICE +CONCAT = CONCAT +DOLLAR = VALUTA +EXACT = IDENTICO +FIND = TROVA +FIXED = FISSO +ISTHAIDIGIT = ÈTHAICIFRA +LEFT = SINISTRA +LEN = LUNGHEZZA +LOWER = MINUSC +MID = STRINGA.ESTRAI +NUMBERSTRING = NUMERO.STRINGA +NUMBERVALUE = NUMERO.VALORE +PHONETIC = FURIGANA +PROPER = MAIUSC.INIZ +REPLACE = RIMPIAZZA +REPT = RIPETI +RIGHT = DESTRA +SEARCH = RICERCA +SUBSTITUTE = SOSTITUISCI +T = T +TEXT = TESTO +TEXTJOIN = TESTO.UNISCI +THAIDIGIT = THAICIFRA +THAINUMSOUND = THAINUMSUONO +THAINUMSTRING = THAISZÃMKAR +THAISTRINGLENGTH = THAILUNGSTRINGA +TRIM = ANNULLA.SPAZI +UNICHAR = CARATT.UNI +UNICODE = UNICODE +UPPER = MAIUSC +VALUE = VALORE + +## +## Funzioni Web (Web Functions) +## +ENCODEURL = CODIFICA.URL +FILTERXML = FILTRO.XML +WEBSERVICE = SERVIZIO.WEB + +## +## Funzioni di compatibilità (Compatibility Functions) +## +BETADIST = DISTRIB.BETA +BETAINV = INV.BETA +BINOMDIST = DISTRIB.BINOM +CEILING = ARROTONDA.ECCESSO +CHIDIST = DISTRIB.CHI +CHIINV = INV.CHI +CHITEST = TEST.CHI +CONCATENATE = CONCATENA +CONFIDENCE = CONFIDENZA +COVAR = COVARIANZA +CRITBINOM = CRIT.BINOM +EXPONDIST = DISTRIB.EXP +FDIST = DISTRIB.F +FINV = INV.F +FLOOR = ARROTONDA.DIFETTO +FORECAST = PREVISIONE +FTEST = TEST.F +GAMMADIST = DISTRIB.GAMMA +GAMMAINV = INV.GAMMA +HYPGEOMDIST = DISTRIB.IPERGEOM +LOGINV = INV.LOGNORM +LOGNORMDIST = DISTRIB.LOGNORM +MODE = MODA +NEGBINOMDIST = DISTRIB.BINOM.NEG +NORMDIST = DISTRIB.NORM +NORMINV = INV.NORM +NORMSDIST = DISTRIB.NORM.ST +NORMSINV = INV.NORM.ST +PERCENTILE = PERCENTILE +PERCENTRANK = PERCENT.RANGO +POISSON = POISSON +QUARTILE = QUARTILE +RANK = RANGO +STDEV = DEV.ST +STDEVP = DEV.ST.POP +TDIST = DISTRIB.T +TINV = INV.T +TTEST = TEST.T +VAR = VAR +VARP = VAR.POP +WEIBULL = WEIBULL +ZTEST = TEST.Z diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nb/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nb/config new file mode 100644 index 0000000..a7f3be1 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nb/config @@ -0,0 +1,20 @@ +############################################################ +## +## PhpSpreadsheet - locale settings +## +## Norsk BokmÃ¥l (Norwegian BokmÃ¥l) +## +############################################################ + +ArgumentSeparator = ; + +## +## Error Codes +## +NULL +DIV0 +VALUE = #VERDI! +REF +NAME = #NAVN? +NUM +NA = #N/D diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nb/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nb/functions new file mode 100644 index 0000000..b0a0f94 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nb/functions @@ -0,0 +1,538 @@ +############################################################ +## +## PhpSpreadsheet - function name translations +## +## Norsk BokmÃ¥l (Norwegian BokmÃ¥l) +## +############################################################ + + +## +## Kubefunksjoner (Cube Functions) +## +CUBEKPIMEMBER = KUBEKPIMEDLEM +CUBEMEMBER = KUBEMEDLEM +CUBEMEMBERPROPERTY = KUBEMEDLEMEGENSKAP +CUBERANKEDMEMBER = KUBERANGERTMEDLEM +CUBESET = KUBESETT +CUBESETCOUNT = KUBESETTANTALL +CUBEVALUE = KUBEVERDI + +## +## Databasefunksjoner (Database Functions) +## +DAVERAGE = DGJENNOMSNITT +DCOUNT = DANTALL +DCOUNTA = DANTALLA +DGET = DHENT +DMAX = DMAKS +DMIN = DMIN +DPRODUCT = DPRODUKT +DSTDEV = DSTDAV +DSTDEVP = DSTDAVP +DSUM = DSUMMER +DVAR = DVARIANS +DVARP = DVARIANSP + +## +## Dato- og tidsfunksjoner (Date & Time Functions) +## +DATE = DATO +DATEDIF = DATODIFF +DATESTRING = DATOSTRENG +DATEVALUE = DATOVERDI +DAY = DAG +DAYS = DAGER +DAYS360 = DAGER360 +EDATE = DAG.ETTER +EOMONTH = MÃ…NEDSSLUTT +HOUR = TIME +ISOWEEKNUM = ISOUKENR +MINUTE = MINUTT +MONTH = MÃ…NED +NETWORKDAYS = NETT.ARBEIDSDAGER +NETWORKDAYS.INTL = NETT.ARBEIDSDAGER.INTL +NOW = NÃ… +SECOND = SEKUND +THAIDAYOFWEEK = THAIUKEDAG +THAIMONTHOFYEAR = THAIMÃ…NED +THAIYEAR = THAIÃ…R +TIME = TID +TIMEVALUE = TIDSVERDI +TODAY = IDAG +WEEKDAY = UKEDAG +WEEKNUM = UKENR +WORKDAY = ARBEIDSDAG +WORKDAY.INTL = ARBEIDSDAG.INTL +YEAR = Ã…R +YEARFRAC = Ã…RDEL + +## +## Tekniske funksjoner (Engineering Functions) +## +BESSELI = BESSELI +BESSELJ = BESSELJ +BESSELK = BESSELK +BESSELY = BESSELY +BIN2DEC = BINTILDES +BIN2HEX = BINTILHEKS +BIN2OCT = BINTILOKT +BITAND = BITOG +BITLSHIFT = BITVFORSKYV +BITOR = BITELLER +BITRSHIFT = BITHFORSKYV +BITXOR = BITEKSKLUSIVELLER +COMPLEX = KOMPLEKS +CONVERT = KONVERTER +DEC2BIN = DESTILBIN +DEC2HEX = DESTILHEKS +DEC2OCT = DESTILOKT +DELTA = DELTA +ERF = FEILF +ERF.PRECISE = FEILF.PRESIS +ERFC = FEILFK +ERFC.PRECISE = FEILFK.PRESIS +GESTEP = GRENSEVERDI +HEX2BIN = HEKSTILBIN +HEX2DEC = HEKSTILDES +HEX2OCT = HEKSTILOKT +IMABS = IMABS +IMAGINARY = IMAGINÆR +IMARGUMENT = IMARGUMENT +IMCONJUGATE = IMKONJUGERT +IMCOS = IMCOS +IMCOSH = IMCOSH +IMCOT = IMCOT +IMCSC = IMCSC +IMCSCH = IMCSCH +IMDIV = IMDIV +IMEXP = IMEKSP +IMLN = IMLN +IMLOG10 = IMLOG10 +IMLOG2 = IMLOG2 +IMPOWER = IMOPPHØY +IMPRODUCT = IMPRODUKT +IMREAL = IMREELL +IMSEC = IMSEC +IMSECH = IMSECH +IMSIN = IMSIN +IMSINH = IMSINH +IMSQRT = IMROT +IMSUB = IMSUB +IMSUM = IMSUMMER +IMTAN = IMTAN +OCT2BIN = OKTTILBIN +OCT2DEC = OKTTILDES +OCT2HEX = OKTTILHEKS + +## +## Økonomiske funksjoner (Financial Functions) +## +ACCRINT = PÃ…LØPT.PERIODISK.RENTE +ACCRINTM = PÃ…LØPT.FORFALLSRENTE +AMORDEGRC = AMORDEGRC +AMORLINC = AMORLINC +COUPDAYBS = OBLIG.DAGER.FF +COUPDAYS = OBLIG.DAGER +COUPDAYSNC = OBLIG.DAGER.NF +COUPNCD = OBLIG.DAGER.EF +COUPNUM = OBLIG.ANTALL +COUPPCD = OBLIG.DAG.FORRIGE +CUMIPMT = SAMLET.RENTE +CUMPRINC = SAMLET.HOVEDSTOL +DB = DAVSKR +DDB = DEGRAVS +DISC = DISKONTERT +DOLLARDE = DOLLARDE +DOLLARFR = DOLLARBR +DURATION = VARIGHET +EFFECT = EFFEKTIV.RENTE +FV = SLUTTVERDI +FVSCHEDULE = SVPLAN +INTRATE = RENTESATS +IPMT = RAVDRAG +IRR = IR +ISPMT = ER.AVDRAG +MDURATION = MVARIGHET +MIRR = MODIR +NOMINAL = NOMINELL +NPER = PERIODER +NPV = NNV +ODDFPRICE = AVVIKFP.PRIS +ODDFYIELD = AVVIKFP.AVKASTNING +ODDLPRICE = AVVIKSP.PRIS +ODDLYIELD = AVVIKSP.AVKASTNING +PDURATION = PVARIGHET +PMT = AVDRAG +PPMT = AMORT +PRICE = PRIS +PRICEDISC = PRIS.DISKONTERT +PRICEMAT = PRIS.FORFALL +PV = NÃ…VERDI +RATE = RENTE +RECEIVED = MOTTATT.AVKAST +RRI = REALISERT.AVKASTNING +SLN = LINAVS +SYD = Ã…RSAVS +TBILLEQ = TBILLEKV +TBILLPRICE = TBILLPRIS +TBILLYIELD = TBILLAVKASTNING +VDB = VERDIAVS +XIRR = XIR +XNPV = XNNV +YIELD = AVKAST +YIELDDISC = AVKAST.DISKONTERT +YIELDMAT = AVKAST.FORFALL + +## +## Informasjonsfunksjoner (Information Functions) +## +CELL = CELLE +ERROR.TYPE = FEIL.TYPE +INFO = INFO +ISBLANK = ERTOM +ISERR = ERF +ISERROR = ERFEIL +ISEVEN = ERPARTALL +ISFORMULA = ERFORMEL +ISLOGICAL = ERLOGISK +ISNA = ERIT +ISNONTEXT = ERIKKETEKST +ISNUMBER = ERTALL +ISODD = ERODDE +ISREF = ERREF +ISTEXT = ERTEKST +N = N +NA = IT +SHEET = ARK +SHEETS = ANTALL.ARK +TYPE = VERDITYPE + +## +## Logiske funksjoner (Logical Functions) +## +AND = OG +FALSE = USANN +IF = HVIS +IFERROR = HVISFEIL +IFNA = HVIS.IT +IFS = HVIS.SETT +NOT = IKKE +OR = ELLER +SWITCH = BRYTER +TRUE = SANN +XOR = EKSKLUSIVELLER + +## +## Oppslag- og referansefunksjoner (Lookup & Reference Functions) +## +ADDRESS = ADRESSE +AREAS = OMRÃ…DER +CHOOSE = VELG +COLUMN = KOLONNE +COLUMNS = KOLONNER +FORMULATEXT = FORMELTEKST +GETPIVOTDATA = HENTPIVOTDATA +HLOOKUP = FINN.KOLONNE +HYPERLINK = HYPERKOBLING +INDEX = INDEKS +INDIRECT = INDIREKTE +LOOKUP = SLÃ….OPP +MATCH = SAMMENLIGNE +OFFSET = FORSKYVNING +ROW = RAD +ROWS = RADER +RTD = RTD +TRANSPOSE = TRANSPONER +VLOOKUP = FINN.RAD + +## +## Matematikk- og trigonometrifunksjoner (Math & Trig Functions) +## +ABS = ABS +ACOS = ARCCOS +ACOSH = ARCCOSH +ACOT = ACOT +ACOTH = ACOTH +AGGREGATE = MENGDE +ARABIC = ARABISK +ASIN = ARCSIN +ASINH = ARCSINH +ATAN = ARCTAN +ATAN2 = ARCTAN2 +ATANH = ARCTANH +BASE = GRUNNTALL +CEILING.MATH = AVRUND.GJELDENDE.MULTIPLUM.OPP.MATEMATISK +CEILING.PRECISE = AVRUND.GJELDENDE.MULTIPLUM.PRESIS +COMBIN = KOMBINASJON +COMBINA = KOMBINASJONA +COS = COS +COSH = COSH +COT = COT +COTH = COTH +CSC = CSC +CSCH = CSCH +DECIMAL = DESIMAL +DEGREES = GRADER +ECMA.CEILING = ECMA.AVRUND.GJELDENDE.MULTIPLUM +EVEN = AVRUND.TIL.PARTALL +EXP = EKSP +FACT = FAKULTET +FACTDOUBLE = DOBBELFAKT +FLOOR.MATH = AVRUND.GJELDENDE.MULTIPLUM.NED.MATEMATISK +FLOOR.PRECISE = AVRUND.GJELDENDE.MULTIPLUM.NED.PRESIS +GCD = SFF +INT = HELTALL +ISO.CEILING = ISO.AVRUND.GJELDENDE.MULTIPLUM +LCM = MFM +LN = LN +LOG = LOG +LOG10 = LOG10 +MDETERM = MDETERM +MINVERSE = MINVERS +MMULT = MMULT +MOD = REST +MROUND = MRUND +MULTINOMIAL = MULTINOMINELL +MUNIT = MENHET +ODD = AVRUND.TIL.ODDETALL +PI = PI +POWER = OPPHØYD.I +PRODUCT = PRODUKT +QUOTIENT = KVOTIENT +RADIANS = RADIANER +RAND = TILFELDIG +RANDBETWEEN = TILFELDIGMELLOM +ROMAN = ROMERTALL +ROUND = AVRUND +ROUNDBAHTDOWN = RUNDAVBAHTNEDOVER +ROUNDBAHTUP = RUNDAVBAHTOPPOVER +ROUNDDOWN = AVRUND.NED +ROUNDUP = AVRUND.OPP +SEC = SEC +SECH = SECH +SERIESSUM = SUMMER.REKKE +SIGN = FORTEGN +SIN = SIN +SINH = SINH +SQRT = ROT +SQRTPI = ROTPI +SUBTOTAL = DELSUM +SUM = SUMMER +SUMIF = SUMMERHVIS +SUMIFS = SUMMER.HVIS.SETT +SUMPRODUCT = SUMMERPRODUKT +SUMSQ = SUMMERKVADRAT +SUMX2MY2 = SUMMERX2MY2 +SUMX2PY2 = SUMMERX2PY2 +SUMXMY2 = SUMMERXMY2 +TAN = TAN +TANH = TANH +TRUNC = AVKORT + +## +## Statistiske funksjoner (Statistical Functions) +## +AVEDEV = GJENNOMSNITTSAVVIK +AVERAGE = GJENNOMSNITT +AVERAGEA = GJENNOMSNITTA +AVERAGEIF = GJENNOMSNITTHVIS +AVERAGEIFS = GJENNOMSNITT.HVIS.SETT +BETA.DIST = BETA.FORDELING.N +BETA.INV = BETA.INV +BINOM.DIST = BINOM.FORDELING.N +BINOM.DIST.RANGE = BINOM.FORDELING.OMRÃ…DE +BINOM.INV = BINOM.INV +CHISQ.DIST = KJIKVADRAT.FORDELING +CHISQ.DIST.RT = KJIKVADRAT.FORDELING.H +CHISQ.INV = KJIKVADRAT.INV +CHISQ.INV.RT = KJIKVADRAT.INV.H +CHISQ.TEST = KJIKVADRAT.TEST +CONFIDENCE.NORM = KONFIDENS.NORM +CONFIDENCE.T = KONFIDENS.T +CORREL = KORRELASJON +COUNT = ANTALL +COUNTA = ANTALLA +COUNTBLANK = TELLBLANKE +COUNTIF = ANTALL.HVIS +COUNTIFS = ANTALL.HVIS.SETT +COVARIANCE.P = KOVARIANS.P +COVARIANCE.S = KOVARIANS.S +DEVSQ = AVVIK.KVADRERT +EXPON.DIST = EKSP.FORDELING.N +F.DIST = F.FORDELING +F.DIST.RT = F.FORDELING.H +F.INV = F.INV +F.INV.RT = F.INV.H +F.TEST = F.TEST +FISHER = FISHER +FISHERINV = FISHERINV +FORECAST.ETS = PROGNOSE.ETS +FORECAST.ETS.CONFINT = PROGNOSE.ETS.CONFINT +FORECAST.ETS.SEASONALITY = PROGNOSE.ETS.SESONGAVHENGIGHET +FORECAST.ETS.STAT = PROGNOSE.ETS.STAT +FORECAST.LINEAR = PROGNOSE.LINEÆR +FREQUENCY = FREKVENS +GAMMA = GAMMA +GAMMA.DIST = GAMMA.FORDELING +GAMMA.INV = GAMMA.INV +GAMMALN = GAMMALN +GAMMALN.PRECISE = GAMMALN.PRESIS +GAUSS = GAUSS +GEOMEAN = GJENNOMSNITT.GEOMETRISK +GROWTH = VEKST +HARMEAN = GJENNOMSNITT.HARMONISK +HYPGEOM.DIST = HYPGEOM.FORDELING.N +INTERCEPT = SKJÆRINGSPUNKT +KURT = KURT +LARGE = N.STØRST +LINEST = RETTLINJE +LOGEST = KURVE +LOGNORM.DIST = LOGNORM.FORDELING +LOGNORM.INV = LOGNORM.INV +MAX = STØRST +MAXA = MAKSA +MAXIFS = MAKS.HVIS.SETT +MEDIAN = MEDIAN +MIN = MIN +MINA = MINA +MINIFS = MIN.HVIS.SETT +MODE.MULT = MODUS.MULT +MODE.SNGL = MODUS.SNGL +NEGBINOM.DIST = NEGBINOM.FORDELING.N +NORM.DIST = NORM.FORDELING +NORM.INV = NORM.INV +NORM.S.DIST = NORM.S.FORDELING +NORM.S.INV = NORM.S.INV +PEARSON = PEARSON +PERCENTILE.EXC = PERSENTIL.EKS +PERCENTILE.INC = PERSENTIL.INK +PERCENTRANK.EXC = PROSENTDEL.EKS +PERCENTRANK.INC = PROSENTDEL.INK +PERMUT = PERMUTER +PERMUTATIONA = PERMUTASJONA +PHI = PHI +POISSON.DIST = POISSON.FORDELING +PROB = SANNSYNLIG +QUARTILE.EXC = KVARTIL.EKS +QUARTILE.INC = KVARTIL.INK +RANK.AVG = RANG.GJSN +RANK.EQ = RANG.EKV +RSQ = RKVADRAT +SKEW = SKJEVFORDELING +SKEW.P = SKJEVFORDELING.P +SLOPE = STIGNINGSTALL +SMALL = N.MINST +STANDARDIZE = NORMALISER +STDEV.P = STDAV.P +STDEV.S = STDAV.S +STDEVA = STDAVVIKA +STDEVPA = STDAVVIKPA +STEYX = STANDARDFEIL +T.DIST = T.FORDELING +T.DIST.2T = T.FORDELING.2T +T.DIST.RT = T.FORDELING.H +T.INV = T.INV +T.INV.2T = T.INV.2T +T.TEST = T.TEST +TREND = TREND +TRIMMEAN = TRIMMET.GJENNOMSNITT +VAR.P = VARIANS.P +VAR.S = VARIANS.S +VARA = VARIANSA +VARPA = VARIANSPA +WEIBULL.DIST = WEIBULL.DIST.N +Z.TEST = Z.TEST + +## +## Tekstfunksjoner (Text Functions) +## +ASC = STIGENDE +BAHTTEXT = BAHTTEKST +CHAR = TEGNKODE +CLEAN = RENSK +CODE = KODE +CONCAT = KJED.SAMMEN +DOLLAR = VALUTA +EXACT = EKSAKT +FIND = FINN +FIXED = FASTSATT +ISTHAIDIGIT = ERTHAISIFFER +LEFT = VENSTRE +LEN = LENGDE +LOWER = SMÃ… +MID = DELTEKST +NUMBERSTRING = TALLSTRENG +NUMBERVALUE = TALLVERDI +PHONETIC = FURIGANA +PROPER = STOR.FORBOKSTAV +REPLACE = ERSTATT +REPT = GJENTA +RIGHT = HØYRE +SEARCH = SØK +SUBSTITUTE = BYTT.UT +T = T +TEXT = TEKST +TEXTJOIN = TEKST.KOMBINER +THAIDIGIT = THAISIFFER +THAINUMSOUND = THAINUMLYD +THAINUMSTRING = THAINUMSTRENG +THAISTRINGLENGTH = THAISTRENGLENGDE +TRIM = TRIMME +UNICHAR = UNICODETEGN +UNICODE = UNICODE +UPPER = STORE +VALUE = VERDI + +## +## Nettfunksjoner (Web Functions) +## +ENCODEURL = URL.KODE +FILTERXML = FILTRERXML +WEBSERVICE = NETTJENESTE + +## +## Kompatibilitetsfunksjoner (Compatibility Functions) +## +BETADIST = BETA.FORDELING +BETAINV = INVERS.BETA.FORDELING +BINOMDIST = BINOM.FORDELING +CEILING = AVRUND.GJELDENDE.MULTIPLUM +CHIDIST = KJI.FORDELING +CHIINV = INVERS.KJI.FORDELING +CHITEST = KJI.TEST +CONCATENATE = KJEDE.SAMMEN +CONFIDENCE = KONFIDENS +COVAR = KOVARIANS +CRITBINOM = GRENSE.BINOM +EXPONDIST = EKSP.FORDELING +FDIST = FFORDELING +FINV = FFORDELING.INVERS +FLOOR = AVRUND.GJELDENDE.MULTIPLUM.NED +FORECAST = PROGNOSE +FTEST = FTEST +GAMMADIST = GAMMAFORDELING +GAMMAINV = GAMMAINV +HYPGEOMDIST = HYPGEOM.FORDELING +LOGINV = LOGINV +LOGNORMDIST = LOGNORMFORD +MODE = MODUS +NEGBINOMDIST = NEGBINOM.FORDELING +NORMDIST = NORMALFORDELING +NORMINV = NORMINV +NORMSDIST = NORMSFORDELING +NORMSINV = NORMSINV +PERCENTILE = PERSENTIL +PERCENTRANK = PROSENTDEL +POISSON = POISSON +QUARTILE = KVARTIL +RANK = RANG +STDEV = STDAV +STDEVP = STDAVP +TDIST = TFORDELING +TINV = TINV +TTEST = TTEST +VAR = VARIANS +VARP = VARIANSP +WEIBULL = WEIBULL.FORDELING +ZTEST = ZTEST diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nl/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nl/config new file mode 100644 index 0000000..370567a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nl/config @@ -0,0 +1,20 @@ +############################################################ +## +## PhpSpreadsheet - locale settings +## +## Nederlands (Dutch) +## +############################################################ + +ArgumentSeparator = ; + +## +## Error Codes +## +NULL = #LEEG! +DIV0 = #DEEL/0! +VALUE = #WAARDE! +REF = #VERW! +NAME = #NAAM? +NUM = #GETAL! +NA = #N/B diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nl/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nl/functions new file mode 100644 index 0000000..0e4f159 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nl/functions @@ -0,0 +1,536 @@ +############################################################ +## +## PhpSpreadsheet - function name translations +## +## Nederlands (Dutch) +## +############################################################ + + +## +## Kubusfuncties (Cube Functions) +## +CUBEKPIMEMBER = KUBUSKPILID +CUBEMEMBER = KUBUSLID +CUBEMEMBERPROPERTY = KUBUSLIDEIGENSCHAP +CUBERANKEDMEMBER = KUBUSGERANGSCHIKTLID +CUBESET = KUBUSSET +CUBESETCOUNT = KUBUSSETAANTAL +CUBEVALUE = KUBUSWAARDE + +## +## Databasefuncties (Database Functions) +## +DAVERAGE = DBGEMIDDELDE +DCOUNT = DBAANTAL +DCOUNTA = DBAANTALC +DGET = DBLEZEN +DMAX = DBMAX +DMIN = DBMIN +DPRODUCT = DBPRODUCT +DSTDEV = DBSTDEV +DSTDEVP = DBSTDEVP +DSUM = DBSOM +DVAR = DBVAR +DVARP = DBVARP + +## +## Datum- en tijdfuncties (Date & Time Functions) +## +DATE = DATUM +DATESTRING = DATUMNOTATIE +DATEVALUE = DATUMWAARDE +DAY = DAG +DAYS = DAGEN +DAYS360 = DAGEN360 +EDATE = ZELFDE.DAG +EOMONTH = LAATSTE.DAG +HOUR = UUR +ISOWEEKNUM = ISO.WEEKNUMMER +MINUTE = MINUUT +MONTH = MAAND +NETWORKDAYS = NETTO.WERKDAGEN +NETWORKDAYS.INTL = NETWERKDAGEN.INTL +NOW = NU +SECOND = SECONDE +THAIDAYOFWEEK = THAIS.WEEKDAG +THAIMONTHOFYEAR = THAIS.MAAND.VAN.JAAR +THAIYEAR = THAIS.JAAR +TIME = TIJD +TIMEVALUE = TIJDWAARDE +TODAY = VANDAAG +WEEKDAY = WEEKDAG +WEEKNUM = WEEKNUMMER +WORKDAY = WERKDAG +WORKDAY.INTL = WERKDAG.INTL +YEAR = JAAR +YEARFRAC = JAAR.DEEL + +## +## Technische functies (Engineering Functions) +## +BESSELI = BESSEL.I +BESSELJ = BESSEL.J +BESSELK = BESSEL.K +BESSELY = BESSEL.Y +BIN2DEC = BIN.N.DEC +BIN2HEX = BIN.N.HEX +BIN2OCT = BIN.N.OCT +BITAND = BIT.EN +BITLSHIFT = BIT.VERSCHUIF.LINKS +BITOR = BIT.OF +BITRSHIFT = BIT.VERSCHUIF.RECHTS +BITXOR = BIT.EX.OF +COMPLEX = COMPLEX +CONVERT = CONVERTEREN +DEC2BIN = DEC.N.BIN +DEC2HEX = DEC.N.HEX +DEC2OCT = DEC.N.OCT +DELTA = DELTA +ERF = FOUTFUNCTIE +ERF.PRECISE = FOUTFUNCTIE.NAUWKEURIG +ERFC = FOUT.COMPLEMENT +ERFC.PRECISE = FOUT.COMPLEMENT.NAUWKEURIG +GESTEP = GROTER.DAN +HEX2BIN = HEX.N.BIN +HEX2DEC = HEX.N.DEC +HEX2OCT = HEX.N.OCT +IMABS = C.ABS +IMAGINARY = C.IM.DEEL +IMARGUMENT = C.ARGUMENT +IMCONJUGATE = C.TOEGEVOEGD +IMCOS = C.COS +IMCOSH = C.COSH +IMCOT = C.COT +IMCSC = C.COSEC +IMCSCH = C.COSECH +IMDIV = C.QUOTIENT +IMEXP = C.EXP +IMLN = C.LN +IMLOG10 = C.LOG10 +IMLOG2 = C.LOG2 +IMPOWER = C.MACHT +IMPRODUCT = C.PRODUCT +IMREAL = C.REEEL.DEEL +IMSEC = C.SEC +IMSECH = C.SECH +IMSIN = C.SIN +IMSINH = C.SINH +IMSQRT = C.WORTEL +IMSUB = C.VERSCHIL +IMSUM = C.SOM +IMTAN = C.TAN +OCT2BIN = OCT.N.BIN +OCT2DEC = OCT.N.DEC +OCT2HEX = OCT.N.HEX + +## +## Financiële functies (Financial Functions) +## +ACCRINT = SAMENG.RENTE +ACCRINTM = SAMENG.RENTE.V +AMORDEGRC = AMORDEGRC +AMORLINC = AMORLINC +COUPDAYBS = COUP.DAGEN.BB +COUPDAYS = COUP.DAGEN +COUPDAYSNC = COUP.DAGEN.VV +COUPNCD = COUP.DATUM.NB +COUPNUM = COUP.AANTAL +COUPPCD = COUP.DATUM.VB +CUMIPMT = CUM.RENTE +CUMPRINC = CUM.HOOFDSOM +DB = DB +DDB = DDB +DISC = DISCONTO +DOLLARDE = EURO.DE +DOLLARFR = EURO.BR +DURATION = DUUR +EFFECT = EFFECT.RENTE +FV = TW +FVSCHEDULE = TOEK.WAARDE2 +INTRATE = RENTEPERCENTAGE +IPMT = IBET +IRR = IR +ISPMT = ISBET +MDURATION = AANG.DUUR +MIRR = GIR +NOMINAL = NOMINALE.RENTE +NPER = NPER +NPV = NHW +ODDFPRICE = AFW.ET.PRIJS +ODDFYIELD = AFW.ET.REND +ODDLPRICE = AFW.LT.PRIJS +ODDLYIELD = AFW.LT.REND +PDURATION = PDUUR +PMT = BET +PPMT = PBET +PRICE = PRIJS.NOM +PRICEDISC = PRIJS.DISCONTO +PRICEMAT = PRIJS.VERVALDAG +PV = HW +RATE = RENTE +RECEIVED = OPBRENGST +RRI = RRI +SLN = LIN.AFSCHR +SYD = SYD +TBILLEQ = SCHATK.OBL +TBILLPRICE = SCHATK.PRIJS +TBILLYIELD = SCHATK.REND +VDB = VDB +XIRR = IR.SCHEMA +XNPV = NHW2 +YIELD = RENDEMENT +YIELDDISC = REND.DISCONTO +YIELDMAT = REND.VERVAL + +## +## Informatiefuncties (Information Functions) +## +CELL = CEL +ERROR.TYPE = TYPE.FOUT +INFO = INFO +ISBLANK = ISLEEG +ISERR = ISFOUT2 +ISERROR = ISFOUT +ISEVEN = IS.EVEN +ISFORMULA = ISFORMULE +ISLOGICAL = ISLOGISCH +ISNA = ISNB +ISNONTEXT = ISGEENTEKST +ISNUMBER = ISGETAL +ISODD = IS.ONEVEN +ISREF = ISVERWIJZING +ISTEXT = ISTEKST +N = N +NA = NB +SHEET = BLAD +SHEETS = BLADEN +TYPE = TYPE + +## +## Logische functies (Logical Functions) +## +AND = EN +FALSE = ONWAAR +IF = ALS +IFERROR = ALS.FOUT +IFNA = ALS.NB +IFS = ALS.VOORWAARDEN +NOT = NIET +OR = OF +SWITCH = SCHAKELEN +TRUE = WAAR +XOR = EX.OF + +## +## Zoek- en verwijzingsfuncties (Lookup & Reference Functions) +## +ADDRESS = ADRES +AREAS = BEREIKEN +CHOOSE = KIEZEN +COLUMN = KOLOM +COLUMNS = KOLOMMEN +FORMULATEXT = FORMULETEKST +GETPIVOTDATA = DRAAITABEL.OPHALEN +HLOOKUP = HORIZ.ZOEKEN +HYPERLINK = HYPERLINK +INDEX = INDEX +INDIRECT = INDIRECT +LOOKUP = ZOEKEN +MATCH = VERGELIJKEN +OFFSET = VERSCHUIVING +ROW = RIJ +ROWS = RIJEN +RTD = RTG +TRANSPOSE = TRANSPONEREN +VLOOKUP = VERT.ZOEKEN + +## +## Wiskundige en trigonometrische functies (Math & Trig Functions) +## +ABS = ABS +ACOS = BOOGCOS +ACOSH = BOOGCOSH +ACOT = BOOGCOT +ACOTH = BOOGCOTH +AGGREGATE = AGGREGAAT +ARABIC = ARABISCH +ASIN = BOOGSIN +ASINH = BOOGSINH +ATAN = BOOGTAN +ATAN2 = BOOGTAN2 +ATANH = BOOGTANH +BASE = BASIS +CEILING.MATH = AFRONDEN.BOVEN.WISK +CEILING.PRECISE = AFRONDEN.BOVEN.NAUWKEURIG +COMBIN = COMBINATIES +COMBINA = COMBIN.A +COS = COS +COSH = COSH +COT = COT +COTH = COTH +CSC = COSEC +CSCH = COSECH +DECIMAL = DECIMAAL +DEGREES = GRADEN +ECMA.CEILING = ECMA.AFRONDEN.BOVEN +EVEN = EVEN +EXP = EXP +FACT = FACULTEIT +FACTDOUBLE = DUBBELE.FACULTEIT +FLOOR.MATH = AFRONDEN.BENEDEN.WISK +FLOOR.PRECISE = AFRONDEN.BENEDEN.NAUWKEURIG +GCD = GGD +INT = INTEGER +ISO.CEILING = ISO.AFRONDEN.BOVEN +LCM = KGV +LN = LN +LOG = LOG +LOG10 = LOG10 +MDETERM = DETERMINANTMAT +MINVERSE = INVERSEMAT +MMULT = PRODUCTMAT +MOD = REST +MROUND = AFRONDEN.N.VEELVOUD +MULTINOMIAL = MULTINOMIAAL +MUNIT = EENHEIDMAT +ODD = ONEVEN +PI = PI +POWER = MACHT +PRODUCT = PRODUCT +QUOTIENT = QUOTIENT +RADIANS = RADIALEN +RAND = ASELECT +RANDBETWEEN = ASELECTTUSSEN +ROMAN = ROMEINS +ROUND = AFRONDEN +ROUNDBAHTDOWN = BAHT.AFR.NAAR.BENEDEN +ROUNDBAHTUP = BAHT.AFR.NAAR.BOVEN +ROUNDDOWN = AFRONDEN.NAAR.BENEDEN +ROUNDUP = AFRONDEN.NAAR.BOVEN +SEC = SEC +SECH = SECH +SERIESSUM = SOM.MACHTREEKS +SIGN = POS.NEG +SIN = SIN +SINH = SINH +SQRT = WORTEL +SQRTPI = WORTEL.PI +SUBTOTAL = SUBTOTAAL +SUM = SOM +SUMIF = SOM.ALS +SUMIFS = SOMMEN.ALS +SUMPRODUCT = SOMPRODUCT +SUMSQ = KWADRATENSOM +SUMX2MY2 = SOM.X2MINY2 +SUMX2PY2 = SOM.X2PLUSY2 +SUMXMY2 = SOM.XMINY.2 +TAN = TAN +TANH = TANH +TRUNC = GEHEEL + +## +## Statistische functies (Statistical Functions) +## +AVEDEV = GEM.DEVIATIE +AVERAGE = GEMIDDELDE +AVERAGEA = GEMIDDELDEA +AVERAGEIF = GEMIDDELDE.ALS +AVERAGEIFS = GEMIDDELDEN.ALS +BETA.DIST = BETA.VERD +BETA.INV = BETA.INV +BINOM.DIST = BINOM.VERD +BINOM.DIST.RANGE = BINOM.VERD.BEREIK +BINOM.INV = BINOMIALE.INV +CHISQ.DIST = CHIKW.VERD +CHISQ.DIST.RT = CHIKW.VERD.RECHTS +CHISQ.INV = CHIKW.INV +CHISQ.INV.RT = CHIKW.INV.RECHTS +CHISQ.TEST = CHIKW.TEST +CONFIDENCE.NORM = VERTROUWELIJKHEID.NORM +CONFIDENCE.T = VERTROUWELIJKHEID.T +CORREL = CORRELATIE +COUNT = AANTAL +COUNTA = AANTALARG +COUNTBLANK = AANTAL.LEGE.CELLEN +COUNTIF = AANTAL.ALS +COUNTIFS = AANTALLEN.ALS +COVARIANCE.P = COVARIANTIE.P +COVARIANCE.S = COVARIANTIE.S +DEVSQ = DEV.KWAD +EXPON.DIST = EXPON.VERD.N +F.DIST = F.VERD +F.DIST.RT = F.VERD.RECHTS +F.INV = F.INV +F.INV.RT = F.INV.RECHTS +F.TEST = F.TEST +FISHER = FISHER +FISHERINV = FISHER.INV +FORECAST.ETS = VOORSPELLEN.ETS +FORECAST.ETS.CONFINT = VOORSPELLEN.ETS.CONFINT +FORECAST.ETS.SEASONALITY = VOORSPELLEN.ETS.SEASONALITY +FORECAST.ETS.STAT = FORECAST.ETS.STAT +FORECAST.LINEAR = VOORSPELLEN.LINEAR +FREQUENCY = INTERVAL +GAMMA = GAMMA +GAMMA.DIST = GAMMA.VERD.N +GAMMA.INV = GAMMA.INV.N +GAMMALN = GAMMA.LN +GAMMALN.PRECISE = GAMMA.LN.NAUWKEURIG +GAUSS = GAUSS +GEOMEAN = MEETK.GEM +GROWTH = GROEI +HARMEAN = HARM.GEM +HYPGEOM.DIST = HYPGEOM.VERD +INTERCEPT = SNIJPUNT +KURT = KURTOSIS +LARGE = GROOTSTE +LINEST = LIJNSCH +LOGEST = LOGSCH +LOGNORM.DIST = LOGNORM.VERD +LOGNORM.INV = LOGNORM.INV +MAX = MAX +MAXA = MAXA +MAXIFS = MAX.ALS.VOORWAARDEN +MEDIAN = MEDIAAN +MIN = MIN +MINA = MINA +MINIFS = MIN.ALS.VOORWAARDEN +MODE.MULT = MODUS.MEERV +MODE.SNGL = MODUS.ENKELV +NEGBINOM.DIST = NEGBINOM.VERD +NORM.DIST = NORM.VERD.N +NORM.INV = NORM.INV.N +NORM.S.DIST = NORM.S.VERD +NORM.S.INV = NORM.S.INV +PEARSON = PEARSON +PERCENTILE.EXC = PERCENTIEL.EXC +PERCENTILE.INC = PERCENTIEL.INC +PERCENTRANK.EXC = PROCENTRANG.EXC +PERCENTRANK.INC = PROCENTRANG.INC +PERMUT = PERMUTATIES +PERMUTATIONA = PERMUTATIE.A +PHI = PHI +POISSON.DIST = POISSON.VERD +PROB = KANS +QUARTILE.EXC = KWARTIEL.EXC +QUARTILE.INC = KWARTIEL.INC +RANK.AVG = RANG.GEMIDDELDE +RANK.EQ = RANG.GELIJK +RSQ = R.KWADRAAT +SKEW = SCHEEFHEID +SKEW.P = SCHEEFHEID.P +SLOPE = RICHTING +SMALL = KLEINSTE +STANDARDIZE = NORMALISEREN +STDEV.P = STDEV.P +STDEV.S = STDEV.S +STDEVA = STDEVA +STDEVPA = STDEVPA +STEYX = STAND.FOUT.YX +T.DIST = T.DIST +T.DIST.2T = T.VERD.2T +T.DIST.RT = T.VERD.RECHTS +T.INV = T.INV +T.INV.2T = T.INV.2T +T.TEST = T.TEST +TREND = TREND +TRIMMEAN = GETRIMD.GEM +VAR.P = VAR.P +VAR.S = VAR.S +VARA = VARA +VARPA = VARPA +WEIBULL.DIST = WEIBULL.VERD +Z.TEST = Z.TEST + +## +## Tekstfuncties (Text Functions) +## +BAHTTEXT = BAHT.TEKST +CHAR = TEKEN +CLEAN = WISSEN.CONTROL +CODE = CODE +CONCAT = TEKST.SAMENV +DOLLAR = EURO +EXACT = GELIJK +FIND = VIND.ALLES +FIXED = VAST +ISTHAIDIGIT = IS.THAIS.CIJFER +LEFT = LINKS +LEN = LENGTE +LOWER = KLEINE.LETTERS +MID = DEEL +NUMBERSTRING = GETALNOTATIE +NUMBERVALUE = NUMERIEKE.WAARDE +PHONETIC = FONETISCH +PROPER = BEGINLETTERS +REPLACE = VERVANGEN +REPT = HERHALING +RIGHT = RECHTS +SEARCH = VIND.SPEC +SUBSTITUTE = SUBSTITUEREN +T = T +TEXT = TEKST +TEXTJOIN = TEKST.COMBINEREN +THAIDIGIT = THAIS.CIJFER +THAINUMSOUND = THAIS.GETAL.GELUID +THAINUMSTRING = THAIS.GETAL.REEKS +THAISTRINGLENGTH = THAIS.REEKS.LENGTE +TRIM = SPATIES.WISSEN +UNICHAR = UNITEKEN +UNICODE = UNICODE +UPPER = HOOFDLETTERS +VALUE = WAARDE + +## +## Webfuncties (Web Functions) +## +ENCODEURL = URL.CODEREN +FILTERXML = XML.FILTEREN +WEBSERVICE = WEBSERVICE + +## +## Compatibiliteitsfuncties (Compatibility Functions) +## +BETADIST = BETAVERD +BETAINV = BETAINV +BINOMDIST = BINOMIALE.VERD +CEILING = AFRONDEN.BOVEN +CHIDIST = CHI.KWADRAAT +CHIINV = CHI.KWADRAAT.INV +CHITEST = CHI.TOETS +CONCATENATE = TEKST.SAMENVOEGEN +CONFIDENCE = BETROUWBAARHEID +COVAR = COVARIANTIE +CRITBINOM = CRIT.BINOM +EXPONDIST = EXPON.VERD +FDIST = F.VERDELING +FINV = F.INVERSE +FLOOR = AFRONDEN.BENEDEN +FORECAST = VOORSPELLEN +FTEST = F.TOETS +GAMMADIST = GAMMA.VERD +GAMMAINV = GAMMA.INV +HYPGEOMDIST = HYPERGEO.VERD +LOGINV = LOG.NORM.INV +LOGNORMDIST = LOG.NORM.VERD +MODE = MODUS +NEGBINOMDIST = NEG.BINOM.VERD +NORMDIST = NORM.VERD +NORMINV = NORM.INV +NORMSDIST = STAND.NORM.VERD +NORMSINV = STAND.NORM.INV +PERCENTILE = PERCENTIEL +PERCENTRANK = PERCENT.RANG +POISSON = POISSON +QUARTILE = KWARTIEL +RANK = RANG +STDEV = STDEV +STDEVP = STDEVP +TDIST = T.VERD +TINV = TINV +TTEST = T.TOETS +VAR = VAR +VARP = VARP +WEIBULL = WEIBULL +ZTEST = Z.TOETS diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pl/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pl/config new file mode 100644 index 0000000..1d8468b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pl/config @@ -0,0 +1,20 @@ +############################################################ +## +## PhpSpreadsheet - locale settings +## +## Jezyk polski (Polish) +## +############################################################ + +ArgumentSeparator = ; + +## +## Error Codes +## +NULL = #ZERO! +DIV0 = #DZIEL/0! +VALUE = #ARG! +REF = #ADR! +NAME = #NAZWA? +NUM = #LICZBA! +NA = #N/D! diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pl/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pl/functions new file mode 100644 index 0000000..d1b43b2 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pl/functions @@ -0,0 +1,536 @@ +############################################################ +## +## PhpSpreadsheet - function name translations +## +## Jezyk polski (Polish) +## +############################################################ + + +## +## Funkcje baz danych (Cube Functions) +## +CUBEKPIMEMBER = ELEMENT.KPI.MODUÅU +CUBEMEMBER = ELEMENT.MODUÅU +CUBEMEMBERPROPERTY = WÅAÅšCIWOŚĆ.ELEMENTU.MODUÅU +CUBERANKEDMEMBER = USZEREGOWANY.ELEMENT.MODUÅU +CUBESET = ZESTAW.MODUÅÓW +CUBESETCOUNT = LICZNIK.MODUÅÓW.ZESTAWU +CUBEVALUE = WARTOŚĆ.MODUÅU + +## +## Funkcje baz danych (Database Functions) +## +DAVERAGE = BD.ÅšREDNIA +DCOUNT = BD.ILE.REKORDÓW +DCOUNTA = BD.ILE.REKORDÓW.A +DGET = BD.POLE +DMAX = BD.MAX +DMIN = BD.MIN +DPRODUCT = BD.ILOCZYN +DSTDEV = BD.ODCH.STANDARD +DSTDEVP = BD.ODCH.STANDARD.POPUL +DSUM = BD.SUMA +DVAR = BD.WARIANCJA +DVARP = BD.WARIANCJA.POPUL + +## +## Funkcje daty i godziny (Date & Time Functions) +## +DATE = DATA +DATEDIF = DATA.RÓŻNICA +DATESTRING = DATA.CIÄ„G.ZNAK +DATEVALUE = DATA.WARTOŚĆ +DAY = DZIEŃ +DAYS = DNI +DAYS360 = DNI.360 +EDATE = NR.SER.DATY +EOMONTH = NR.SER.OST.DN.MIES +HOUR = GODZINA +ISOWEEKNUM = ISO.NUM.TYG +MINUTE = MINUTA +MONTH = MIESIÄ„C +NETWORKDAYS = DNI.ROBOCZE +NETWORKDAYS.INTL = DNI.ROBOCZE.NIESTAND +NOW = TERAZ +SECOND = SEKUNDA +THAIDAYOFWEEK = TAJ.DZIEŃ.TYGODNIA +THAIMONTHOFYEAR = TAJ.MIESIÄ„C.ROKU +THAIYEAR = TAJ.ROK +TIME = CZAS +TIMEVALUE = CZAS.WARTOŚĆ +TODAY = DZIÅš +WEEKDAY = DZIEŃ.TYG +WEEKNUM = NUM.TYG +WORKDAY = DZIEŃ.ROBOCZY +WORKDAY.INTL = DZIEŃ.ROBOCZY.NIESTAND +YEAR = ROK +YEARFRAC = CZĘŚĆ.ROKU + +## +## Funkcje inżynierskie (Engineering Functions) +## +BESSELI = BESSEL.I +BESSELJ = BESSEL.J +BESSELK = BESSEL.K +BESSELY = BESSEL.Y +BIN2DEC = DWÓJK.NA.DZIES +BIN2HEX = DWÓJK.NA.SZESN +BIN2OCT = DWÓJK.NA.ÓSM +BITAND = BITAND +BITLSHIFT = BIT.PRZESUNIĘCIE.W.LEWO +BITOR = BITOR +BITRSHIFT = BIT.PRZESUNIĘCIE.W.PRAWO +BITXOR = BITXOR +COMPLEX = LICZBA.ZESP +CONVERT = KONWERTUJ +DEC2BIN = DZIES.NA.DWÓJK +DEC2HEX = DZIES.NA.SZESN +DEC2OCT = DZIES.NA.ÓSM +DELTA = CZY.RÓWNE +ERF = FUNKCJA.BÅ +ERF.PRECISE = FUNKCJA.BÅ.DOKÅ +ERFC = KOMP.FUNKCJA.BÅ +ERFC.PRECISE = KOMP.FUNKCJA.BÅ.DOKÅ +GESTEP = SPRAWDŹ.PRÓG +HEX2BIN = SZESN.NA.DWÓJK +HEX2DEC = SZESN.NA.DZIES +HEX2OCT = SZESN.NA.ÓSM +IMABS = MODUÅ.LICZBY.ZESP +IMAGINARY = CZ.UROJ.LICZBY.ZESP +IMARGUMENT = ARG.LICZBY.ZESP +IMCONJUGATE = SPRZĘŻ.LICZBY.ZESP +IMCOS = COS.LICZBY.ZESP +IMCOSH = COSH.LICZBY.ZESP +IMCOT = COT.LICZBY.ZESP +IMCSC = CSC.LICZBY.ZESP +IMCSCH = CSCH.LICZBY.ZESP +IMDIV = ILORAZ.LICZB.ZESP +IMEXP = EXP.LICZBY.ZESP +IMLN = LN.LICZBY.ZESP +IMLOG10 = LOG10.LICZBY.ZESP +IMLOG2 = LOG2.LICZBY.ZESP +IMPOWER = POTĘGA.LICZBY.ZESP +IMPRODUCT = ILOCZYN.LICZB.ZESP +IMREAL = CZ.RZECZ.LICZBY.ZESP +IMSEC = SEC.LICZBY.ZESP +IMSECH = SECH.LICZBY.ZESP +IMSIN = SIN.LICZBY.ZESP +IMSINH = SINH.LICZBY.ZESP +IMSQRT = PIERWIASTEK.LICZBY.ZESP +IMSUB = RÓŻN.LICZB.ZESP +IMSUM = SUMA.LICZB.ZESP +IMTAN = TAN.LICZBY.ZESP +OCT2BIN = ÓSM.NA.DWÓJK +OCT2DEC = ÓSM.NA.DZIES +OCT2HEX = ÓSM.NA.SZESN + +## +## Funkcje finansowe (Financial Functions) +## +ACCRINT = NAL.ODS +ACCRINTM = NAL.ODS.WYKUP +AMORDEGRC = AMORT.NIELIN +AMORLINC = AMORT.LIN +COUPDAYBS = WYPÅ.DNI.OD.POCZ +COUPDAYS = WYPÅ.DNI +COUPDAYSNC = WYPÅ.DNI.NAST +COUPNCD = WYPÅ.DATA.NAST +COUPNUM = WYPÅ.LICZBA +COUPPCD = WYPÅ.DATA.POPRZ +CUMIPMT = SPÅAC.ODS +CUMPRINC = SPÅAC.KAPIT +DB = DB +DDB = DDB +DISC = STOPA.DYSK +DOLLARDE = CENA.DZIES +DOLLARFR = CENA.UÅAM +DURATION = ROCZ.PRZYCH +EFFECT = EFEKTYWNA +FV = FV +FVSCHEDULE = WART.PRZYSZÅ.KAP +INTRATE = STOPA.PROC +IPMT = IPMT +IRR = IRR +ISPMT = ISPMT +MDURATION = ROCZ.PRZYCH.M +MIRR = MIRR +NOMINAL = NOMINALNA +NPER = NPER +NPV = NPV +ODDFPRICE = CENA.PIERW.OKR +ODDFYIELD = RENT.PIERW.OKR +ODDLPRICE = CENA.OST.OKR +ODDLYIELD = RENT.OST.OKR +PDURATION = O.CZAS.TRWANIA +PMT = PMT +PPMT = PPMT +PRICE = CENA +PRICEDISC = CENA.DYSK +PRICEMAT = CENA.WYKUP +PV = PV +RATE = RATE +RECEIVED = KWOTA.WYKUP +RRI = RÓWNOW.STOPA.PROC +SLN = SLN +SYD = SYD +TBILLEQ = RENT.EKW.BS +TBILLPRICE = CENA.BS +TBILLYIELD = RENT.BS +VDB = VDB +XIRR = XIRR +XNPV = XNPV +YIELD = RENTOWNOŚĆ +YIELDDISC = RENT.DYSK +YIELDMAT = RENT.WYKUP + +## +## Funkcje informacyjne (Information Functions) +## +CELL = KOMÓRKA +ERROR.TYPE = NR.BÅĘDU +INFO = INFO +ISBLANK = CZY.PUSTA +ISERR = CZY.BÅ +ISERROR = CZY.BÅÄ„D +ISEVEN = CZY.PARZYSTE +ISFORMULA = CZY.FORMUÅA +ISLOGICAL = CZY.LOGICZNA +ISNA = CZY.BRAK +ISNONTEXT = CZY.NIE.TEKST +ISNUMBER = CZY.LICZBA +ISODD = CZY.NIEPARZYSTE +ISREF = CZY.ADR +ISTEXT = CZY.TEKST +N = N +NA = BRAK +SHEET = ARKUSZ +SHEETS = ARKUSZE +TYPE = TYP + +## +## Funkcje logiczne (Logical Functions) +## +AND = ORAZ +FALSE = FAÅSZ +IF = JEÅ»ELI +IFERROR = JEÅ»ELI.BÅÄ„D +IFNA = JEÅ»ELI.ND +IFS = WARUNKI +NOT = NIE +OR = LUB +SWITCH = PRZEÅÄ„CZ +TRUE = PRAWDA +XOR = XOR + +## +## Funkcje wyszukiwania i odwoÅ‚aÅ„ (Lookup & Reference Functions) +## +ADDRESS = ADRES +AREAS = OBSZARY +CHOOSE = WYBIERZ +COLUMN = NR.KOLUMNY +COLUMNS = LICZBA.KOLUMN +FORMULATEXT = FORMUÅA.TEKST +GETPIVOTDATA = WEŹDANETABELI +HLOOKUP = WYSZUKAJ.POZIOMO +HYPERLINK = HIPERÅÄ„CZE +INDEX = INDEKS +INDIRECT = ADR.POÅšR +LOOKUP = WYSZUKAJ +MATCH = PODAJ.POZYCJĘ +OFFSET = PRZESUNIĘCIE +ROW = WIERSZ +ROWS = ILE.WIERSZY +RTD = DANE.CZASU.RZECZ +TRANSPOSE = TRANSPONUJ +VLOOKUP = WYSZUKAJ.PIONOWO + +## +## Funkcje matematyczne i trygonometryczne (Math & Trig Functions) +## +ABS = MODUÅ.LICZBY +ACOS = ACOS +ACOSH = ACOSH +ACOT = ACOT +ACOTH = ACOTH +AGGREGATE = AGREGUJ +ARABIC = ARABSKIE +ASIN = ASIN +ASINH = ASINH +ATAN = ATAN +ATAN2 = ATAN2 +ATANH = ATANH +BASE = PODSTAWA +CEILING.MATH = ZAOKR.W.GÓRĘ.MATEMATYCZNE +CEILING.PRECISE = ZAOKR.W.GÓRĘ.DOKÅ +COMBIN = KOMBINACJE +COMBINA = KOMBINACJE.A +COS = COS +COSH = COSH +COT = COT +COTH = COTH +CSC = CSC +CSCH = CSCH +DECIMAL = DZIESIĘTNA +DEGREES = STOPNIE +ECMA.CEILING = ECMA.ZAOKR.W.GÓRĘ +EVEN = ZAOKR.DO.PARZ +EXP = EXP +FACT = SILNIA +FACTDOUBLE = SILNIA.DWUKR +FLOOR.MATH = ZAOKR.W.DÓÅ.MATEMATYCZNE +FLOOR.PRECISE = ZAOKR.W.DÓÅ.DOKÅ +GCD = NAJW.WSP.DZIEL +INT = ZAOKR.DO.CAÅK +ISO.CEILING = ISO.ZAOKR.W.GÓRĘ +LCM = NAJMN.WSP.WIEL +LN = LN +LOG = LOG +LOG10 = LOG10 +MDETERM = WYZNACZNIK.MACIERZY +MINVERSE = MACIERZ.ODW +MMULT = MACIERZ.ILOCZYN +MOD = MOD +MROUND = ZAOKR.DO.WIELOKR +MULTINOMIAL = WIELOMIAN +MUNIT = MACIERZ.JEDNOSTKOWA +ODD = ZAOKR.DO.NPARZ +PI = PI +POWER = POTĘGA +PRODUCT = ILOCZYN +QUOTIENT = CZ.CAÅK.DZIELENIA +RADIANS = RADIANY +RAND = LOS +RANDBETWEEN = LOS.ZAKR +ROMAN = RZYMSKIE +ROUND = ZAOKR +ROUNDBAHTDOWN = ZAOKR.DÓÅ.BAT +ROUNDBAHTUP = ZAOKR.GÓRA.BAT +ROUNDDOWN = ZAOKR.DÓŠ+ROUNDUP = ZAOKR.GÓRA +SEC = SEC +SECH = SECH +SERIESSUM = SUMA.SZER.POT +SIGN = ZNAK.LICZBY +SIN = SIN +SINH = SINH +SQRT = PIERWIASTEK +SQRTPI = PIERW.PI +SUBTOTAL = SUMY.CZĘŚCIOWE +SUM = SUMA +SUMIF = SUMA.JEÅ»ELI +SUMIFS = SUMA.WARUNKÓW +SUMPRODUCT = SUMA.ILOCZYNÓW +SUMSQ = SUMA.KWADRATÓW +SUMX2MY2 = SUMA.X2.M.Y2 +SUMX2PY2 = SUMA.X2.P.Y2 +SUMXMY2 = SUMA.XMY.2 +TAN = TAN +TANH = TANH +TRUNC = LICZBA.CAÅK + +## +## Funkcje statystyczne (Statistical Functions) +## +AVEDEV = ODCH.ÅšREDNIE +AVERAGE = ÅšREDNIA +AVERAGEA = ÅšREDNIA.A +AVERAGEIF = ÅšREDNIA.JEÅ»ELI +AVERAGEIFS = ÅšREDNIA.WARUNKÓW +BETA.DIST = ROZKÅ.BETA +BETA.INV = ROZKÅ.BETA.ODWR +BINOM.DIST = ROZKÅ.DWUM +BINOM.DIST.RANGE = ROZKÅ.DWUM.ZAKRES +BINOM.INV = ROZKÅ.DWUM.ODWR +CHISQ.DIST = ROZKÅ.CHI +CHISQ.DIST.RT = ROZKÅ.CHI.PS +CHISQ.INV = ROZKÅ.CHI.ODWR +CHISQ.INV.RT = ROZKÅ.CHI.ODWR.PS +CHISQ.TEST = CHI.TEST +CONFIDENCE.NORM = UFNOŚĆ.NORM +CONFIDENCE.T = UFNOŚĆ.T +CORREL = WSP.KORELACJI +COUNT = ILE.LICZB +COUNTA = ILE.NIEPUSTYCH +COUNTBLANK = LICZ.PUSTE +COUNTIF = LICZ.JEÅ»ELI +COUNTIFS = LICZ.WARUNKI +COVARIANCE.P = KOWARIANCJA.POPUL +COVARIANCE.S = KOWARIANCJA.PRÓBKI +DEVSQ = ODCH.KWADRATOWE +EXPON.DIST = ROZKÅ.EXP +F.DIST = ROZKÅ.F +F.DIST.RT = ROZKÅ.F.PS +F.INV = ROZKÅ.F.ODWR +F.INV.RT = ROZKÅ.F.ODWR.PS +F.TEST = F.TEST +FISHER = ROZKÅAD.FISHER +FISHERINV = ROZKÅAD.FISHER.ODW +FORECAST.ETS = REGLINX.ETS +FORECAST.ETS.CONFINT = REGLINX.ETS.CONFINT +FORECAST.ETS.SEASONALITY = REGLINX.ETS.SEZONOWOŚĆ +FORECAST.ETS.STAT = REGLINX.ETS.STATYSTYKA +FORECAST.LINEAR = REGLINX.LINIOWA +FREQUENCY = CZĘSTOŚĆ +GAMMA = GAMMA +GAMMA.DIST = ROZKÅ.GAMMA +GAMMA.INV = ROZKÅ.GAMMA.ODWR +GAMMALN = ROZKÅAD.LIN.GAMMA +GAMMALN.PRECISE = ROZKÅAD.LIN.GAMMA.DOKÅ +GAUSS = GAUSS +GEOMEAN = ÅšREDNIA.GEOMETRYCZNA +GROWTH = REGEXPW +HARMEAN = ÅšREDNIA.HARMONICZNA +HYPGEOM.DIST = ROZKÅ.HIPERGEOM +INTERCEPT = ODCIĘTA +KURT = KURTOZA +LARGE = MAX.K +LINEST = REGLINP +LOGEST = REGEXPP +LOGNORM.DIST = ROZKÅ.LOG +LOGNORM.INV = ROZKÅ.LOG.ODWR +MAX = MAX +MAXA = MAX.A +MAXIFS = MAKS.WARUNKÓW +MEDIAN = MEDIANA +MIN = MIN +MINA = MIN.A +MINIFS = MIN.WARUNKÓW +MODE.MULT = WYST.NAJCZĘŚCIEJ.TABL +MODE.SNGL = WYST.NAJCZĘŚCIEJ.WART +NEGBINOM.DIST = ROZKÅ.DWUM.PRZEC +NORM.DIST = ROZKÅ.NORMALNY +NORM.INV = ROZKÅ.NORMALNY.ODWR +NORM.S.DIST = ROZKÅ.NORMALNY.S +NORM.S.INV = ROZKÅ.NORMALNY.S.ODWR +PEARSON = PEARSON +PERCENTILE.EXC = PERCENTYL.PRZEDZ.OTW +PERCENTILE.INC = PERCENTYL.PRZEDZ.ZAMK +PERCENTRANK.EXC = PROC.POZ.PRZEDZ.OTW +PERCENTRANK.INC = PROC.POZ.PRZEDZ.ZAMK +PERMUT = PERMUTACJE +PERMUTATIONA = PERMUTACJE.A +PHI = PHI +POISSON.DIST = ROZKÅ.POISSON +PROB = PRAWDPD +QUARTILE.EXC = KWARTYL.PRZEDZ.OTW +QUARTILE.INC = KWARTYL.PRZEDZ.ZAMK +RANK.AVG = POZYCJA.ÅšR +RANK.EQ = POZYCJA.NAJW +RSQ = R.KWADRAT +SKEW = SKOÅšNOŚĆ +SKEW.P = SKOÅšNOŚĆ.P +SLOPE = NACHYLENIE +SMALL = MIN.K +STANDARDIZE = NORMALIZUJ +STDEV.P = ODCH.STAND.POPUL +STDEV.S = ODCH.STANDARD.PRÓBKI +STDEVA = ODCH.STANDARDOWE.A +STDEVPA = ODCH.STANDARD.POPUL.A +STEYX = REGBÅSTD +T.DIST = ROZKÅ.T +T.DIST.2T = ROZKÅ.T.DS +T.DIST.RT = ROZKÅ.T.PS +T.INV = ROZKÅ.T.ODWR +T.INV.2T = ROZKÅ.T.ODWR.DS +T.TEST = T.TEST +TREND = REGLINW +TRIMMEAN = ÅšREDNIA.WEWN +VAR.P = WARIANCJA.POP +VAR.S = WARIANCJA.PRÓBKI +VARA = WARIANCJA.A +VARPA = WARIANCJA.POPUL.A +WEIBULL.DIST = ROZKÅ.WEIBULL +Z.TEST = Z.TEST + +## +## Funkcje tekstowe (Text Functions) +## +BAHTTEXT = BAT.TEKST +CHAR = ZNAK +CLEAN = OCZYŚĆ +CODE = KOD +CONCAT = ZÅÄ„CZ.TEKST +DOLLAR = KWOTA +EXACT = PORÓWNAJ +FIND = ZNAJDŹ +FIXED = ZAOKR.DO.TEKST +ISTHAIDIGIT = CZY.CYFRA.TAJ +LEFT = LEWY +LEN = DÅ +LOWER = LITERY.MAÅE +MID = FRAGMENT.TEKSTU +NUMBERSTRING = LICZBA.CIÄ„G.ZNAK +NUMBERVALUE = WARTOŚĆ.LICZBOWA +PROPER = Z.WIELKIEJ.LITERY +REPLACE = ZASTÄ„P +REPT = POWT +RIGHT = PRAWY +SEARCH = SZUKAJ.TEKST +SUBSTITUTE = PODSTAW +T = T +TEXT = TEKST +TEXTJOIN = POÅÄ„CZ.TEKSTY +THAIDIGIT = TAJ.CYFRA +THAINUMSOUND = TAJ.DŹWIĘK.NUM +THAINUMSTRING = TAJ.CIÄ„G.NUM +THAISTRINGLENGTH = TAJ.DÅUGOŚĆ.CIÄ„GU +TRIM = USUŃ.ZBĘDNE.ODSTĘPY +UNICHAR = ZNAK.UNICODE +UNICODE = UNICODE +UPPER = LITERY.WIELKIE +VALUE = WARTOŚĆ + +## +## Funkcje sieci Web (Web Functions) +## +ENCODEURL = ENCODEURL +FILTERXML = FILTERXML +WEBSERVICE = WEBSERVICE + +## +## Funkcje zgodnoÅ›ci (Compatibility Functions) +## +BETADIST = ROZKÅAD.BETA +BETAINV = ROZKÅAD.BETA.ODW +BINOMDIST = ROZKÅAD.DWUM +CEILING = ZAOKR.W.GÓRĘ +CHIDIST = ROZKÅAD.CHI +CHIINV = ROZKÅAD.CHI.ODW +CHITEST = TEST.CHI +CONCATENATE = ZÅÄ„CZ.TEKSTY +CONFIDENCE = UFNOŚĆ +COVAR = KOWARIANCJA +CRITBINOM = PRÓG.ROZKÅAD.DWUM +EXPONDIST = ROZKÅAD.EXP +FDIST = ROZKÅAD.F +FINV = ROZKÅAD.F.ODW +FLOOR = ZAOKR.W.DÓŠ+FORECAST = REGLINX +FTEST = TEST.F +GAMMADIST = ROZKÅAD.GAMMA +GAMMAINV = ROZKÅAD.GAMMA.ODW +HYPGEOMDIST = ROZKÅAD.HIPERGEOM +LOGINV = ROZKÅAD.LOG.ODW +LOGNORMDIST = ROZKÅAD.LOG +MODE = WYST.NAJCZĘŚCIEJ +NEGBINOMDIST = ROZKÅAD.DWUM.PRZEC +NORMDIST = ROZKÅAD.NORMALNY +NORMINV = ROZKÅAD.NORMALNY.ODW +NORMSDIST = ROZKÅAD.NORMALNY.S +NORMSINV = ROZKÅAD.NORMALNY.S.ODW +PERCENTILE = PERCENTYL +PERCENTRANK = PROCENT.POZYCJA +POISSON = ROZKÅAD.POISSON +QUARTILE = KWARTYL +RANK = POZYCJA +STDEV = ODCH.STANDARDOWE +STDEVP = ODCH.STANDARD.POPUL +TDIST = ROZKÅAD.T +TINV = ROZKÅAD.T.ODW +TTEST = TEST.T +VAR = WARIANCJA +VARP = WARIANCJA.POPUL +WEIBULL = ROZKÅAD.WEIBULL +ZTEST = TEST.Z diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/br/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/br/config new file mode 100644 index 0000000..c39057c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/br/config @@ -0,0 +1,20 @@ +############################################################ +## +## PhpSpreadsheet - locale settings +## +## Português Brasileiro (Brazilian Portuguese) +## +############################################################ + +ArgumentSeparator = ; + +## +## Error Codes +## +NULL = #NULO! +DIV0 +VALUE = #VALOR! +REF +NAME = #NOME? +NUM = #NÚM! +NA = #N/D diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/br/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/br/functions new file mode 100644 index 0000000..feba30d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/br/functions @@ -0,0 +1,527 @@ +############################################################ +## +## PhpSpreadsheet - function name translations +## +## Português Brasileiro (Brazilian Portuguese) +## +############################################################ + + +## +## Funções de cubo (Cube Functions) +## +CUBEKPIMEMBER = MEMBROKPICUBO +CUBEMEMBER = MEMBROCUBO +CUBEMEMBERPROPERTY = PROPRIEDADEMEMBROCUBO +CUBERANKEDMEMBER = MEMBROCLASSIFICADOCUBO +CUBESET = CONJUNTOCUBO +CUBESETCOUNT = CONTAGEMCONJUNTOCUBO +CUBEVALUE = VALORCUBO + +## +## Funções de banco de dados (Database Functions) +## +DAVERAGE = BDMÉDIA +DCOUNT = BDCONTAR +DCOUNTA = BDCONTARA +DGET = BDEXTRAIR +DMAX = BDMÃX +DMIN = BDMÃN +DPRODUCT = BDMULTIPL +DSTDEV = BDEST +DSTDEVP = BDDESVPA +DSUM = BDSOMA +DVAR = BDVAREST +DVARP = BDVARP + +## +## Funções de data e hora (Date & Time Functions) +## +DATE = DATA +DATEDIF = DATADIF +DATESTRING = DATA.SÉRIE +DATEVALUE = DATA.VALOR +DAY = DIA +DAYS = DIAS +DAYS360 = DIAS360 +EDATE = DATAM +EOMONTH = FIMMÊS +HOUR = HORA +ISOWEEKNUM = NÚMSEMANAISO +MINUTE = MINUTO +MONTH = MÊS +NETWORKDAYS = DIATRABALHOTOTAL +NETWORKDAYS.INTL = DIATRABALHOTOTAL.INTL +NOW = AGORA +SECOND = SEGUNDO +TIME = TEMPO +TIMEVALUE = VALOR.TEMPO +TODAY = HOJE +WEEKDAY = DIA.DA.SEMANA +WEEKNUM = NÚMSEMANA +WORKDAY = DIATRABALHO +WORKDAY.INTL = DIATRABALHO.INTL +YEAR = ANO +YEARFRAC = FRAÇÃOANO + +## +## Funções de engenharia (Engineering Functions) +## +BESSELI = BESSELI +BESSELJ = BESSELJ +BESSELK = BESSELK +BESSELY = BESSELY +BIN2DEC = BINADEC +BIN2HEX = BINAHEX +BIN2OCT = BINAOCT +BITAND = BITAND +BITLSHIFT = DESLOCESQBIT +BITOR = BITOR +BITRSHIFT = DESLOCDIRBIT +BITXOR = BITXOR +COMPLEX = COMPLEXO +CONVERT = CONVERTER +DEC2BIN = DECABIN +DEC2HEX = DECAHEX +DEC2OCT = DECAOCT +DELTA = DELTA +ERF = FUNERRO +ERF.PRECISE = FUNERRO.PRECISO +ERFC = FUNERROCOMPL +ERFC.PRECISE = FUNERROCOMPL.PRECISO +GESTEP = DEGRAU +HEX2BIN = HEXABIN +HEX2DEC = HEXADEC +HEX2OCT = HEXAOCT +IMABS = IMABS +IMAGINARY = IMAGINÃRIO +IMARGUMENT = IMARG +IMCONJUGATE = IMCONJ +IMCOS = IMCOS +IMCOSH = IMCOSH +IMCOT = IMCOT +IMCSC = IMCOSEC +IMCSCH = IMCOSECH +IMDIV = IMDIV +IMEXP = IMEXP +IMLN = IMLN +IMLOG10 = IMLOG10 +IMLOG2 = IMLOG2 +IMPOWER = IMPOT +IMPRODUCT = IMPROD +IMREAL = IMREAL +IMSEC = IMSEC +IMSECH = IMSECH +IMSIN = IMSENO +IMSINH = IMSENH +IMSQRT = IMRAIZ +IMSUB = IMSUBTR +IMSUM = IMSOMA +IMTAN = IMTAN +OCT2BIN = OCTABIN +OCT2DEC = OCTADEC +OCT2HEX = OCTAHEX + +## +## Funções financeiras (Financial Functions) +## +ACCRINT = JUROSACUM +ACCRINTM = JUROSACUMV +AMORDEGRC = AMORDEGRC +AMORLINC = AMORLINC +COUPDAYBS = CUPDIASINLIQ +COUPDAYS = CUPDIAS +COUPDAYSNC = CUPDIASPRÓX +COUPNCD = CUPDATAPRÓX +COUPNUM = CUPNÚM +COUPPCD = CUPDATAANT +CUMIPMT = PGTOJURACUM +CUMPRINC = PGTOCAPACUM +DB = BD +DDB = BDD +DISC = DESC +DOLLARDE = MOEDADEC +DOLLARFR = MOEDAFRA +DURATION = DURAÇÃO +EFFECT = EFETIVA +FV = VF +FVSCHEDULE = VFPLANO +INTRATE = TAXAJUROS +IPMT = IPGTO +IRR = TIR +ISPMT = ÉPGTO +MDURATION = MDURAÇÃO +MIRR = MTIR +NOMINAL = NOMINAL +NPER = NPER +NPV = VPL +ODDFPRICE = PREÇOPRIMINC +ODDFYIELD = LUCROPRIMINC +ODDLPRICE = PREÇOÚLTINC +ODDLYIELD = LUCROÚLTINC +PDURATION = DURAÇÃOP +PMT = PGTO +PPMT = PPGTO +PRICE = PREÇO +PRICEDISC = PREÇODESC +PRICEMAT = PREÇOVENC +PV = VP +RATE = TAXA +RECEIVED = RECEBER +RRI = TAXAJURO +SLN = DPD +SYD = SDA +TBILLEQ = OTN +TBILLPRICE = OTNVALOR +TBILLYIELD = OTNLUCRO +VDB = BDV +XIRR = XTIR +XNPV = XVPL +YIELD = LUCRO +YIELDDISC = LUCRODESC +YIELDMAT = LUCROVENC + +## +## Funções de informação (Information Functions) +## +CELL = CÉL +ERROR.TYPE = TIPO.ERRO +INFO = INFORMAÇÃO +ISBLANK = ÉCÉL.VAZIA +ISERR = ÉERRO +ISERROR = ÉERROS +ISEVEN = ÉPAR +ISFORMULA = ÉFÓRMULA +ISLOGICAL = ÉLÓGICO +ISNA = É.NÃO.DISP +ISNONTEXT = É.NÃO.TEXTO +ISNUMBER = ÉNÚM +ISODD = ÉIMPAR +ISREF = ÉREF +ISTEXT = ÉTEXTO +N = N +NA = NÃO.DISP +SHEET = PLAN +SHEETS = PLANS +TYPE = TIPO + +## +## Funções lógicas (Logical Functions) +## +AND = E +FALSE = FALSO +IF = SE +IFERROR = SEERRO +IFNA = SENÃODISP +IFS = SES +NOT = NÃO +OR = OU +SWITCH = PARÂMETRO +TRUE = VERDADEIRO +XOR = XOR + +## +## Funções de pesquisa e referência (Lookup & Reference Functions) +## +ADDRESS = ENDEREÇO +AREAS = ÃREAS +CHOOSE = ESCOLHER +COLUMN = COL +COLUMNS = COLS +FORMULATEXT = FÓRMULATEXTO +GETPIVOTDATA = INFODADOSTABELADINÂMICA +HLOOKUP = PROCH +HYPERLINK = HIPERLINK +INDEX = ÃNDICE +INDIRECT = INDIRETO +LOOKUP = PROC +MATCH = CORRESP +OFFSET = DESLOC +ROW = LIN +ROWS = LINS +RTD = RTD +TRANSPOSE = TRANSPOR +VLOOKUP = PROCV + +## +## Funções matemáticas e trigonométricas (Math & Trig Functions) +## +ABS = ABS +ACOS = ACOS +ACOSH = ACOSH +ACOT = ACOT +ACOTH = ACOTH +AGGREGATE = AGREGAR +ARABIC = ARÃBICO +ASIN = ASEN +ASINH = ASENH +ATAN = ATAN +ATAN2 = ATAN2 +ATANH = ATANH +BASE = BASE +CEILING.MATH = TETO.MAT +CEILING.PRECISE = TETO.PRECISO +COMBIN = COMBIN +COMBINA = COMBINA +COS = COS +COSH = COSH +COT = COT +COTH = COTH +CSC = COSEC +CSCH = COSECH +DECIMAL = DECIMAL +DEGREES = GRAUS +ECMA.CEILING = ECMA.TETO +EVEN = PAR +EXP = EXP +FACT = FATORIAL +FACTDOUBLE = FATDUPLO +FLOOR.MATH = ARREDMULTB.MAT +FLOOR.PRECISE = ARREDMULTB.PRECISO +GCD = MDC +INT = INT +ISO.CEILING = ISO.TETO +LCM = MMC +LN = LN +LOG = LOG +LOG10 = LOG10 +MDETERM = MATRIZ.DETERM +MINVERSE = MATRIZ.INVERSO +MMULT = MATRIZ.MULT +MOD = MOD +MROUND = MARRED +MULTINOMIAL = MULTINOMIAL +MUNIT = MUNIT +ODD = ÃMPAR +PI = PI +POWER = POTÊNCIA +PRODUCT = MULT +QUOTIENT = QUOCIENTE +RADIANS = RADIANOS +RAND = ALEATÓRIO +RANDBETWEEN = ALEATÓRIOENTRE +ROMAN = ROMANO +ROUND = ARRED +ROUNDDOWN = ARREDONDAR.PARA.BAIXO +ROUNDUP = ARREDONDAR.PARA.CIMA +SEC = SEC +SECH = SECH +SERIESSUM = SOMASEQÜÊNCIA +SIGN = SINAL +SIN = SEN +SINH = SENH +SQRT = RAIZ +SQRTPI = RAIZPI +SUBTOTAL = SUBTOTAL +SUM = SOMA +SUMIF = SOMASE +SUMIFS = SOMASES +SUMPRODUCT = SOMARPRODUTO +SUMSQ = SOMAQUAD +SUMX2MY2 = SOMAX2DY2 +SUMX2PY2 = SOMAX2SY2 +SUMXMY2 = SOMAXMY2 +TAN = TAN +TANH = TANH +TRUNC = TRUNCAR + +## +## Funções estatísticas (Statistical Functions) +## +AVEDEV = DESV.MÉDIO +AVERAGE = MÉDIA +AVERAGEA = MÉDIAA +AVERAGEIF = MÉDIASE +AVERAGEIFS = MÉDIASES +BETA.DIST = DIST.BETA +BETA.INV = INV.BETA +BINOM.DIST = DISTR.BINOM +BINOM.DIST.RANGE = INTERV.DISTR.BINOM +BINOM.INV = INV.BINOM +CHISQ.DIST = DIST.QUIQUA +CHISQ.DIST.RT = DIST.QUIQUA.CD +CHISQ.INV = INV.QUIQUA +CHISQ.INV.RT = INV.QUIQUA.CD +CHISQ.TEST = TESTE.QUIQUA +CONFIDENCE.NORM = INT.CONFIANÇA.NORM +CONFIDENCE.T = INT.CONFIANÇA.T +CORREL = CORREL +COUNT = CONT.NÚM +COUNTA = CONT.VALORES +COUNTBLANK = CONTAR.VAZIO +COUNTIF = CONT.SE +COUNTIFS = CONT.SES +COVARIANCE.P = COVARIAÇÃO.P +COVARIANCE.S = COVARIAÇÃO.S +DEVSQ = DESVQ +EXPON.DIST = DISTR.EXPON +F.DIST = DIST.F +F.DIST.RT = DIST.F.CD +F.INV = INV.F +F.INV.RT = INV.F.CD +F.TEST = TESTE.F +FISHER = FISHER +FISHERINV = FISHERINV +FORECAST.ETS = PREVISÃO.ETS +FORECAST.ETS.CONFINT = PREVISÃO.ETS.CONFINT +FORECAST.ETS.SEASONALITY = PREVISÃO.ETS.SAZONALIDADE +FORECAST.ETS.STAT = PREVISÃO.ETS.STAT +FORECAST.LINEAR = PREVISÃO.LINEAR +FREQUENCY = FREQÜÊNCIA +GAMMA = GAMA +GAMMA.DIST = DIST.GAMA +GAMMA.INV = INV.GAMA +GAMMALN = LNGAMA +GAMMALN.PRECISE = LNGAMA.PRECISO +GAUSS = GAUSS +GEOMEAN = MÉDIA.GEOMÉTRICA +GROWTH = CRESCIMENTO +HARMEAN = MÉDIA.HARMÔNICA +HYPGEOM.DIST = DIST.HIPERGEOM.N +INTERCEPT = INTERCEPÇÃO +KURT = CURT +LARGE = MAIOR +LINEST = PROJ.LIN +LOGEST = PROJ.LOG +LOGNORM.DIST = DIST.LOGNORMAL.N +LOGNORM.INV = INV.LOGNORMAL +MAX = MÃXIMO +MAXA = MÃXIMOA +MAXIFS = MÃXIMOSES +MEDIAN = MED +MIN = MÃNIMO +MINA = MÃNIMOA +MINIFS = MÃNIMOSES +MODE.MULT = MODO.MULT +MODE.SNGL = MODO.ÚNICO +NEGBINOM.DIST = DIST.BIN.NEG.N +NORM.DIST = DIST.NORM.N +NORM.INV = INV.NORM.N +NORM.S.DIST = DIST.NORMP.N +NORM.S.INV = INV.NORMP.N +PEARSON = PEARSON +PERCENTILE.EXC = PERCENTIL.EXC +PERCENTILE.INC = PERCENTIL.INC +PERCENTRANK.EXC = ORDEM.PORCENTUAL.EXC +PERCENTRANK.INC = ORDEM.PORCENTUAL.INC +PERMUT = PERMUT +PERMUTATIONA = PERMUTAS +PHI = PHI +POISSON.DIST = DIST.POISSON +PROB = PROB +QUARTILE.EXC = QUARTIL.EXC +QUARTILE.INC = QUARTIL.INC +RANK.AVG = ORDEM.MÉD +RANK.EQ = ORDEM.EQ +RSQ = RQUAD +SKEW = DISTORÇÃO +SKEW.P = DISTORÇÃO.P +SLOPE = INCLINAÇÃO +SMALL = MENOR +STANDARDIZE = PADRONIZAR +STDEV.P = DESVPAD.P +STDEV.S = DESVPAD.A +STDEVA = DESVPADA +STDEVPA = DESVPADPA +STEYX = EPADYX +T.DIST = DIST.T +T.DIST.2T = DIST.T.BC +T.DIST.RT = DIST.T.CD +T.INV = INV.T +T.INV.2T = INV.T.BC +T.TEST = TESTE.T +TREND = TENDÊNCIA +TRIMMEAN = MÉDIA.INTERNA +VAR.P = VAR.P +VAR.S = VAR.A +VARA = VARA +VARPA = VARPA +WEIBULL.DIST = DIST.WEIBULL +Z.TEST = TESTE.Z + +## +## Funções de texto (Text Functions) +## +BAHTTEXT = BAHTTEXT +CHAR = CARACT +CLEAN = TIRAR +CODE = CÓDIGO +CONCAT = CONCAT +DOLLAR = MOEDA +EXACT = EXATO +FIND = PROCURAR +FIXED = DEF.NÚM.DEC +LEFT = ESQUERDA +LEN = NÚM.CARACT +LOWER = MINÚSCULA +MID = EXT.TEXTO +NUMBERSTRING = SEQÜÊNCIA.NÚMERO +NUMBERVALUE = VALORNUMÉRICO +PHONETIC = FONÉTICA +PROPER = PRI.MAIÚSCULA +REPLACE = MUDAR +REPT = REPT +RIGHT = DIREITA +SEARCH = LOCALIZAR +SUBSTITUTE = SUBSTITUIR +T = T +TEXT = TEXTO +TEXTJOIN = UNIRTEXTO +TRIM = ARRUMAR +UNICHAR = CARACTUNICODE +UNICODE = UNICODE +UPPER = MAIÚSCULA +VALUE = VALOR + +## +## Funções da Web (Web Functions) +## +ENCODEURL = CODIFURL +FILTERXML = FILTROXML +WEBSERVICE = SERVIÇOWEB + +## +## Funções de compatibilidade (Compatibility Functions) +## +BETADIST = DISTBETA +BETAINV = BETA.ACUM.INV +BINOMDIST = DISTRBINOM +CEILING = TETO +CHIDIST = DIST.QUI +CHIINV = INV.QUI +CHITEST = TESTE.QUI +CONCATENATE = CONCATENAR +CONFIDENCE = INT.CONFIANÇA +COVAR = COVAR +CRITBINOM = CRIT.BINOM +EXPONDIST = DISTEXPON +FDIST = DISTF +FINV = INVF +FLOOR = ARREDMULTB +FORECAST = PREVISÃO +FTEST = TESTEF +GAMMADIST = DISTGAMA +GAMMAINV = INVGAMA +HYPGEOMDIST = DIST.HIPERGEOM +LOGINV = INVLOG +LOGNORMDIST = DIST.LOGNORMAL +MODE = MODO +NEGBINOMDIST = DIST.BIN.NEG +NORMDIST = DISTNORM +NORMINV = INV.NORM +NORMSDIST = DISTNORMP +NORMSINV = INV.NORMP +PERCENTILE = PERCENTIL +PERCENTRANK = ORDEM.PORCENTUAL +POISSON = POISSON +QUARTILE = QUARTIL +RANK = ORDEM +STDEV = DESVPAD +STDEVP = DESVPADP +TDIST = DISTT +TINV = INVT +TTEST = TESTET +VAR = VAR +VARP = VARP +WEIBULL = WEIBULL +ZTEST = TESTEZ diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/config new file mode 100644 index 0000000..e661830 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/config @@ -0,0 +1,20 @@ +############################################################ +## +## PhpSpreadsheet - locale settings +## +## Português (Portuguese) +## +############################################################ + +ArgumentSeparator = ; + +## +## Error Codes +## +NULL = #NULO! +DIV0 +VALUE = #VALOR! +REF +NAME = #NOME? +NUM = #NÚM! +NA = #N/D diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/functions new file mode 100644 index 0000000..8a94d82 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/functions @@ -0,0 +1,537 @@ +############################################################ +## +## PhpSpreadsheet - function name translations +## +## Português (Portuguese) +## +############################################################ + + +## +## Funções de cubo (Cube Functions) +## +CUBEKPIMEMBER = MEMBROKPICUBO +CUBEMEMBER = MEMBROCUBO +CUBEMEMBERPROPERTY = PROPRIEDADEMEMBROCUBO +CUBERANKEDMEMBER = MEMBROCLASSIFICADOCUBO +CUBESET = CONJUNTOCUBO +CUBESETCOUNT = CONTARCONJUNTOCUBO +CUBEVALUE = VALORCUBO + +## +## Funções de base de dados (Database Functions) +## +DAVERAGE = BDMÉDIA +DCOUNT = BDCONTAR +DCOUNTA = BDCONTAR.VAL +DGET = BDOBTER +DMAX = BDMÃX +DMIN = BDMÃN +DPRODUCT = BDMULTIPL +DSTDEV = BDDESVPAD +DSTDEVP = BDDESVPADP +DSUM = BDSOMA +DVAR = BDVAR +DVARP = BDVARP + +## +## Funções de data e hora (Date & Time Functions) +## +DATE = DATA +DATEDIF = DATADIF +DATESTRING = DATA.CADEIA +DATEVALUE = DATA.VALOR +DAY = DIA +DAYS = DIAS +DAYS360 = DIAS360 +EDATE = DATAM +EOMONTH = FIMMÊS +HOUR = HORA +ISOWEEKNUM = NUMSEMANAISO +MINUTE = MINUTO +MONTH = MÊS +NETWORKDAYS = DIATRABALHOTOTAL +NETWORKDAYS.INTL = DIATRABALHOTOTAL.INTL +NOW = AGORA +SECOND = SEGUNDO +THAIDAYOFWEEK = DIA.DA.SEMANA.TAILANDÊS +THAIMONTHOFYEAR = MÊS.DO.ANO.TAILANDÊS +THAIYEAR = ANO.TAILANDÊS +TIME = TEMPO +TIMEVALUE = VALOR.TEMPO +TODAY = HOJE +WEEKDAY = DIA.SEMANA +WEEKNUM = NÚMSEMANA +WORKDAY = DIATRABALHO +WORKDAY.INTL = DIATRABALHO.INTL +YEAR = ANO +YEARFRAC = FRAÇÃOANO + +## +## Funções de engenharia (Engineering Functions) +## +BESSELI = BESSELI +BESSELJ = BESSELJ +BESSELK = BESSELK +BESSELY = BESSELY +BIN2DEC = BINADEC +BIN2HEX = BINAHEX +BIN2OCT = BINAOCT +BITAND = BIT.E +BITLSHIFT = BITDESL.ESQ +BITOR = BIT.OU +BITRSHIFT = BITDESL.DIR +BITXOR = BIT.XOU +COMPLEX = COMPLEXO +CONVERT = CONVERTER +DEC2BIN = DECABIN +DEC2HEX = DECAHEX +DEC2OCT = DECAOCT +DELTA = DELTA +ERF = FUNCERRO +ERF.PRECISE = FUNCERRO.PRECISO +ERFC = FUNCERROCOMPL +ERFC.PRECISE = FUNCERROCOMPL.PRECISO +GESTEP = DEGRAU +HEX2BIN = HEXABIN +HEX2DEC = HEXADEC +HEX2OCT = HEXAOCT +IMABS = IMABS +IMAGINARY = IMAGINÃRIO +IMARGUMENT = IMARG +IMCONJUGATE = IMCONJ +IMCOS = IMCOS +IMCOSH = IMCOSH +IMCOT = IMCOT +IMCSC = IMCSC +IMCSCH = IMCSCH +IMDIV = IMDIV +IMEXP = IMEXP +IMLN = IMLN +IMLOG10 = IMLOG10 +IMLOG2 = IMLOG2 +IMPOWER = IMPOT +IMPRODUCT = IMPROD +IMREAL = IMREAL +IMSEC = IMSEC +IMSECH = IMSECH +IMSIN = IMSENO +IMSINH = IMSENOH +IMSQRT = IMRAIZ +IMSUB = IMSUBTR +IMSUM = IMSOMA +IMTAN = IMTAN +OCT2BIN = OCTABIN +OCT2DEC = OCTADEC +OCT2HEX = OCTAHEX + +## +## Funções financeiras (Financial Functions) +## +ACCRINT = JUROSACUM +ACCRINTM = JUROSACUMV +AMORDEGRC = AMORDEGRC +AMORLINC = AMORLINC +COUPDAYBS = CUPDIASINLIQ +COUPDAYS = CUPDIAS +COUPDAYSNC = CUPDIASPRÓX +COUPNCD = CUPDATAPRÓX +COUPNUM = CUPNÚM +COUPPCD = CUPDATAANT +CUMIPMT = PGTOJURACUM +CUMPRINC = PGTOCAPACUM +DB = BD +DDB = BDD +DISC = DESC +DOLLARDE = MOEDADEC +DOLLARFR = MOEDAFRA +DURATION = DURAÇÃO +EFFECT = EFETIVA +FV = VF +FVSCHEDULE = VFPLANO +INTRATE = TAXAJUROS +IPMT = IPGTO +IRR = TIR +ISPMT = É.PGTO +MDURATION = MDURAÇÃO +MIRR = MTIR +NOMINAL = NOMINAL +NPER = NPER +NPV = VAL +ODDFPRICE = PREÇOPRIMINC +ODDFYIELD = LUCROPRIMINC +ODDLPRICE = PREÇOÚLTINC +ODDLYIELD = LUCROÚLTINC +PDURATION = PDURAÇÃO +PMT = PGTO +PPMT = PPGTO +PRICE = PREÇO +PRICEDISC = PREÇODESC +PRICEMAT = PREÇOVENC +PV = VA +RATE = TAXA +RECEIVED = RECEBER +RRI = DEVOLVERTAXAJUROS +SLN = AMORT +SYD = AMORTD +TBILLEQ = OTN +TBILLPRICE = OTNVALOR +TBILLYIELD = OTNLUCRO +VDB = BDV +XIRR = XTIR +XNPV = XVAL +YIELD = LUCRO +YIELDDISC = LUCRODESC +YIELDMAT = LUCROVENC + +## +## Funções de informação (Information Functions) +## +CELL = CÉL +ERROR.TYPE = TIPO.ERRO +INFO = INFORMAÇÃO +ISBLANK = É.CÉL.VAZIA +ISERR = É.ERROS +ISERROR = É.ERRO +ISEVEN = ÉPAR +ISFORMULA = É.FORMULA +ISLOGICAL = É.LÓGICO +ISNA = É.NÃO.DISP +ISNONTEXT = É.NÃO.TEXTO +ISNUMBER = É.NÚM +ISODD = ÉÃMPAR +ISREF = É.REF +ISTEXT = É.TEXTO +N = N +NA = NÃO.DISP +SHEET = FOLHA +SHEETS = FOLHAS +TYPE = TIPO + +## +## Funções lógicas (Logical Functions) +## +AND = E +FALSE = FALSO +IF = SE +IFERROR = SE.ERRO +IFNA = SEND +IFS = SE.S +NOT = NÃO +OR = OU +SWITCH = PARÂMETRO +TRUE = VERDADEIRO +XOR = XOU + +## +## Funções de pesquisa e referência (Lookup & Reference Functions) +## +ADDRESS = ENDEREÇO +AREAS = ÃREAS +CHOOSE = SELECIONAR +COLUMN = COL +COLUMNS = COLS +FORMULATEXT = FÓRMULA.TEXTO +GETPIVOTDATA = OBTERDADOSDIN +HLOOKUP = PROCH +HYPERLINK = HIPERLIGAÇÃO +INDEX = ÃNDICE +INDIRECT = INDIRETO +LOOKUP = PROC +MATCH = CORRESP +OFFSET = DESLOCAMENTO +ROW = LIN +ROWS = LINS +RTD = RTD +TRANSPOSE = TRANSPOR +VLOOKUP = PROCV + +## +## Funções matemáticas e trigonométricas (Math & Trig Functions) +## +ABS = ABS +ACOS = ACOS +ACOSH = ACOSH +ACOT = ACOT +ACOTH = ACOTH +AGGREGATE = AGREGAR +ARABIC = ÃRABE +ASIN = ASEN +ASINH = ASENH +ATAN = ATAN +ATAN2 = ATAN2 +ATANH = ATANH +BASE = BASE +CEILING.MATH = ARRED.EXCESSO.MAT +CEILING.PRECISE = ARRED.EXCESSO.PRECISO +COMBIN = COMBIN +COMBINA = COMBIN.R +COS = COS +COSH = COSH +COT = COT +COTH = COTH +CSC = CSC +CSCH = CSCH +DECIMAL = DECIMAL +DEGREES = GRAUS +ECMA.CEILING = ARRED.EXCESSO.ECMA +EVEN = PAR +EXP = EXP +FACT = FATORIAL +FACTDOUBLE = FATDUPLO +FLOOR.MATH = ARRED.DEFEITO.MAT +FLOOR.PRECISE = ARRED.DEFEITO.PRECISO +GCD = MDC +INT = INT +ISO.CEILING = ARRED.EXCESSO.ISO +LCM = MMC +LN = LN +LOG = LOG +LOG10 = LOG10 +MDETERM = MATRIZ.DETERM +MINVERSE = MATRIZ.INVERSA +MMULT = MATRIZ.MULT +MOD = RESTO +MROUND = MARRED +MULTINOMIAL = POLINOMIAL +MUNIT = UNIDM +ODD = ÃMPAR +PI = PI +POWER = POTÊNCIA +PRODUCT = PRODUTO +QUOTIENT = QUOCIENTE +RADIANS = RADIANOS +RAND = ALEATÓRIO +RANDBETWEEN = ALEATÓRIOENTRE +ROMAN = ROMANO +ROUND = ARRED +ROUNDBAHTDOWN = ARREDOND.BAHT.BAIXO +ROUNDBAHTUP = ARREDOND.BAHT.CIMA +ROUNDDOWN = ARRED.PARA.BAIXO +ROUNDUP = ARRED.PARA.CIMA +SEC = SEC +SECH = SECH +SERIESSUM = SOMASÉRIE +SIGN = SINAL +SIN = SEN +SINH = SENH +SQRT = RAIZQ +SQRTPI = RAIZPI +SUBTOTAL = SUBTOTAL +SUM = SOMA +SUMIF = SOMA.SE +SUMIFS = SOMA.SE.S +SUMPRODUCT = SOMARPRODUTO +SUMSQ = SOMARQUAD +SUMX2MY2 = SOMAX2DY2 +SUMX2PY2 = SOMAX2SY2 +SUMXMY2 = SOMAXMY2 +TAN = TAN +TANH = TANH +TRUNC = TRUNCAR + +## +## Funções estatísticas (Statistical Functions) +## +AVEDEV = DESV.MÉDIO +AVERAGE = MÉDIA +AVERAGEA = MÉDIAA +AVERAGEIF = MÉDIA.SE +AVERAGEIFS = MÉDIA.SE.S +BETA.DIST = DIST.BETA +BETA.INV = INV.BETA +BINOM.DIST = DISTR.BINOM +BINOM.DIST.RANGE = DIST.BINOM.INTERVALO +BINOM.INV = INV.BINOM +CHISQ.DIST = DIST.CHIQ +CHISQ.DIST.RT = DIST.CHIQ.DIR +CHISQ.INV = INV.CHIQ +CHISQ.INV.RT = INV.CHIQ.DIR +CHISQ.TEST = TESTE.CHIQ +CONFIDENCE.NORM = INT.CONFIANÇA.NORM +CONFIDENCE.T = INT.CONFIANÇA.T +CORREL = CORREL +COUNT = CONTAR +COUNTA = CONTAR.VAL +COUNTBLANK = CONTAR.VAZIO +COUNTIF = CONTAR.SE +COUNTIFS = CONTAR.SE.S +COVARIANCE.P = COVARIÂNCIA.P +COVARIANCE.S = COVARIÂNCIA.S +DEVSQ = DESVQ +EXPON.DIST = DIST.EXPON +F.DIST = DIST.F +F.DIST.RT = DIST.F.DIR +F.INV = INV.F +F.INV.RT = INV.F.DIR +F.TEST = TESTE.F +FISHER = FISHER +FISHERINV = FISHERINV +FORECAST.ETS = PREVISÃO.ETS +FORECAST.ETS.CONFINT = PREVISÃO.ETS.CONFINT +FORECAST.ETS.SEASONALITY = PREVISÃO.ETS.SAZONALIDADE +FORECAST.ETS.STAT = PREVISÃO.ETS.ESTATÃSTICA +FORECAST.LINEAR = PREVISÃO.LINEAR +FREQUENCY = FREQUÊNCIA +GAMMA = GAMA +GAMMA.DIST = DIST.GAMA +GAMMA.INV = INV.GAMA +GAMMALN = LNGAMA +GAMMALN.PRECISE = LNGAMA.PRECISO +GAUSS = GAUSS +GEOMEAN = MÉDIA.GEOMÉTRICA +GROWTH = CRESCIMENTO +HARMEAN = MÉDIA.HARMÓNICA +HYPGEOM.DIST = DIST.HIPGEOM +INTERCEPT = INTERCETAR +KURT = CURT +LARGE = MAIOR +LINEST = PROJ.LIN +LOGEST = PROJ.LOG +LOGNORM.DIST = DIST.NORMLOG +LOGNORM.INV = INV.NORMALLOG +MAX = MÃXIMO +MAXA = MÃXIMOA +MAXIFS = MÃXIMO.SE.S +MEDIAN = MED +MIN = MÃNIMO +MINA = MÃNIMOA +MINIFS = MÃNIMO.SE.S +MODE.MULT = MODO.MÚLT +MODE.SNGL = MODO.SIMPLES +NEGBINOM.DIST = DIST.BINOM.NEG +NORM.DIST = DIST.NORMAL +NORM.INV = INV.NORMAL +NORM.S.DIST = DIST.S.NORM +NORM.S.INV = INV.S.NORM +PEARSON = PEARSON +PERCENTILE.EXC = PERCENTIL.EXC +PERCENTILE.INC = PERCENTIL.INC +PERCENTRANK.EXC = ORDEM.PERCENTUAL.EXC +PERCENTRANK.INC = ORDEM.PERCENTUAL.INC +PERMUT = PERMUTAR +PERMUTATIONA = PERMUTAR.R +PHI = PHI +POISSON.DIST = DIST.POISSON +PROB = PROB +QUARTILE.EXC = QUARTIL.EXC +QUARTILE.INC = QUARTIL.INC +RANK.AVG = ORDEM.MÉD +RANK.EQ = ORDEM.EQ +RSQ = RQUAD +SKEW = DISTORÇÃO +SKEW.P = DISTORÇÃO.P +SLOPE = DECLIVE +SMALL = MENOR +STANDARDIZE = NORMALIZAR +STDEV.P = DESVPAD.P +STDEV.S = DESVPAD.S +STDEVA = DESVPADA +STDEVPA = DESVPADPA +STEYX = EPADYX +T.DIST = DIST.T +T.DIST.2T = DIST.T.2C +T.DIST.RT = DIST.T.DIR +T.INV = INV.T +T.INV.2T = INV.T.2C +T.TEST = TESTE.T +TREND = TENDÊNCIA +TRIMMEAN = MÉDIA.INTERNA +VAR.P = VAR.P +VAR.S = VAR.S +VARA = VARA +VARPA = VARPA +WEIBULL.DIST = DIST.WEIBULL +Z.TEST = TESTE.Z + +## +## Funções de texto (Text Functions) +## +BAHTTEXT = TEXTO.BAHT +CHAR = CARÃT +CLEAN = LIMPARB +CODE = CÓDIGO +CONCAT = CONCAT +DOLLAR = MOEDA +EXACT = EXATO +FIND = LOCALIZAR +FIXED = FIXA +ISTHAIDIGIT = É.DÃGITO.TAILANDÊS +LEFT = ESQUERDA +LEN = NÚM.CARAT +LOWER = MINÚSCULAS +MID = SEG.TEXTO +NUMBERSTRING = NÚMERO.CADEIA +NUMBERVALUE = VALOR.NÚMERO +PHONETIC = FONÉTICA +PROPER = INICIAL.MAIÚSCULA +REPLACE = SUBSTITUIR +REPT = REPETIR +RIGHT = DIREITA +SEARCH = PROCURAR +SUBSTITUTE = SUBST +T = T +TEXT = TEXTO +TEXTJOIN = UNIRTEXTO +THAIDIGIT = DÃGITO.TAILANDÊS +THAINUMSOUND = SOM.NÚM.TAILANDÊS +THAINUMSTRING = CADEIA.NÚM.TAILANDÊS +THAISTRINGLENGTH = COMP.CADEIA.TAILANDÊS +TRIM = COMPACTAR +UNICHAR = UNICARÃT +UNICODE = UNICODE +UPPER = MAIÚSCULAS +VALUE = VALOR + +## +## Funções da Web (Web Functions) +## +ENCODEURL = CODIFICAÇÃOURL +FILTERXML = FILTRARXML +WEBSERVICE = SERVIÇOWEB + +## +## Funções de compatibilidade (Compatibility Functions) +## +BETADIST = DISTBETA +BETAINV = BETA.ACUM.INV +BINOMDIST = DISTRBINOM +CEILING = ARRED.EXCESSO +CHIDIST = DIST.CHI +CHIINV = INV.CHI +CHITEST = TESTE.CHI +CONCATENATE = CONCATENAR +CONFIDENCE = INT.CONFIANÇA +COVAR = COVAR +CRITBINOM = CRIT.BINOM +EXPONDIST = DISTEXPON +FDIST = DISTF +FINV = INVF +FLOOR = ARRED.DEFEITO +FORECAST = PREVISÃO +FTEST = TESTEF +GAMMADIST = DISTGAMA +GAMMAINV = INVGAMA +HYPGEOMDIST = DIST.HIPERGEOM +LOGINV = INVLOG +LOGNORMDIST = DIST.NORMALLOG +MODE = MODA +NEGBINOMDIST = DIST.BIN.NEG +NORMDIST = DIST.NORM +NORMINV = INV.NORM +NORMSDIST = DIST.NORMP +NORMSINV = INV.NORMP +PERCENTILE = PERCENTIL +PERCENTRANK = ORDEM.PERCENTUAL +POISSON = POISSON +QUARTILE = QUARTIL +RANK = ORDEM +STDEV = DESVPAD +STDEVP = DESVPADP +TDIST = DISTT +TINV = INVT +TTEST = TESTET +VAR = VAR +VARP = VARP +WEIBULL = WEIBULL +ZTEST = TESTEZ diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/ru/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/ru/config new file mode 100644 index 0000000..2a5a0db --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/ru/config @@ -0,0 +1,20 @@ +############################################################ +## +## PhpSpreadsheet - locale settings +## +## руÑÑкий Ñзык (Russian) +## +############################################################ + +ArgumentSeparator = ; + +## +## Error Codes +## +NULL = #ПУСТО! +DIV0 = #ДЕЛ/0! +VALUE = #ЗÐÐЧ! +REF = #ССЫЛКÐ! +NAME = #ИМЯ? +NUM = #ЧИСЛО! +NA = #Ð/Д diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/ru/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/ru/functions new file mode 100644 index 0000000..9f05d5a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/ru/functions @@ -0,0 +1,555 @@ +############################################################ +## +## PhpSpreadsheet - function name translations +## +## руÑÑкий Ñзык (Russian) +## +############################################################ + + +## +## Функции кубов (Cube Functions) +## +CUBEKPIMEMBER = КУБЭЛЕМЕÐТКИП +CUBEMEMBER = КУБЭЛЕМЕÐТ +CUBEMEMBERPROPERTY = КУБСВОЙСТВОЭЛЕМЕÐТР+CUBERANKEDMEMBER = КУБПОРЭЛЕМЕÐТ +CUBESET = КУБМÐОЖ +CUBESETCOUNT = КУБЧИСЛОЭЛМÐОЖ +CUBEVALUE = КУБЗÐÐЧЕÐИЕ + +## +## Функции Ð´Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ñ Ð±Ð°Ð·Ð°Ð¼Ð¸ данных (Database Functions) +## +DAVERAGE = ДСРЗÐÐЧ +DCOUNT = БСЧÐТ +DCOUNTA = БСЧÐТР+DGET = БИЗВЛЕЧЬ +DMAX = ДМÐКС +DMIN = ДМИР+DPRODUCT = БДПРОИЗВЕД +DSTDEV = ДСТÐÐДОТКЛ +DSTDEVP = ДСТÐÐДОТКЛП +DSUM = БДСУММ +DVAR = БДДИСП +DVARP = БДДИСПП + +## +## Функции даты и времени (Date & Time Functions) +## +DATE = ДÐТР+DATEDIF = РÐЗÐДÐТ +DATESTRING = СТРОКÐДÐÐÐЫХ +DATEVALUE = ДÐТÐЗÐÐЧ +DAY = ДЕÐЬ +DAYS = ДÐИ +DAYS360 = ДÐЕЙ360 +EDATE = ДÐТÐМЕС +EOMONTH = КОÐМЕСЯЦР+HOUR = ЧÐС +ISOWEEKNUM = ÐОМÐЕДЕЛИ.ISO +MINUTE = МИÐУТЫ +MONTH = МЕСЯЦ +NETWORKDAYS = ЧИСТРÐБДÐИ +NETWORKDAYS.INTL = ЧИСТРÐБДÐИ.МЕЖД +NOW = ТДÐТР+SECOND = СЕКУÐДЫ +THAIDAYOFWEEK = ТÐЙДЕÐЬÐЕД +THAIMONTHOFYEAR = ТÐЙМЕСЯЦ +THAIYEAR = ТÐЙГОД +TIME = ВРЕМЯ +TIMEVALUE = ВРЕМЗÐÐЧ +TODAY = СЕГОДÐЯ +WEEKDAY = ДЕÐЬÐЕД +WEEKNUM = ÐОМÐЕДЕЛИ +WORKDAY = РÐБДЕÐЬ +WORKDAY.INTL = РÐБДЕÐЬ.МЕЖД +YEAR = ГОД +YEARFRAC = ДОЛЯГОДР+ +## +## Инженерные функции (Engineering Functions) +## +BESSELI = БЕССЕЛЬ.I +BESSELJ = БЕССЕЛЬ.J +BESSELK = БЕССЕЛЬ.K +BESSELY = БЕССЕЛЬ.Y +BIN2DEC = ДВ.Ð’.ДЕС +BIN2HEX = ДВ.Ð’.ШЕСТР+BIN2OCT = ДВ.Ð’.ВОСЬМ +BITAND = БИТ.И +BITLSHIFT = БИТ.СДВИГЛ +BITOR = БИТ.ИЛИ +BITRSHIFT = БИТ.СДВИГП +BITXOR = БИТ.ИСКЛИЛИ +COMPLEX = КОМПЛЕКСР+CONVERT = ПРЕОБР +DEC2BIN = ДЕС.Ð’.ДВ +DEC2HEX = ДЕС.Ð’.ШЕСТР+DEC2OCT = ДЕС.Ð’.ВОСЬМ +DELTA = ДЕЛЬТР+ERF = ФОШ +ERF.PRECISE = ФОШ.ТОЧР+ERFC = ДФОШ +ERFC.PRECISE = ДФОШ.ТОЧР+GESTEP = ПОРОГ +HEX2BIN = ШЕСТÐ.Ð’.ДВ +HEX2DEC = ШЕСТÐ.Ð’.ДЕС +HEX2OCT = ШЕСТÐ.Ð’.ВОСЬМ +IMABS = МÐИМ.ABS +IMAGINARY = МÐИМ.ЧÐСТЬ +IMARGUMENT = МÐИМ.ÐРГУМЕÐТ +IMCONJUGATE = МÐИМ.СОПРЯЖ +IMCOS = МÐИМ.COS +IMCOSH = МÐИМ.COSH +IMCOT = МÐИМ.COT +IMCSC = МÐИМ.CSC +IMCSCH = МÐИМ.CSCH +IMDIV = МÐИМ.ДЕЛ +IMEXP = МÐИМ.EXP +IMLN = МÐИМ.LN +IMLOG10 = МÐИМ.LOG10 +IMLOG2 = МÐИМ.LOG2 +IMPOWER = МÐИМ.СТЕПЕÐЬ +IMPRODUCT = МÐИМ.ПРОИЗВЕД +IMREAL = МÐИМ.ВЕЩ +IMSEC = МÐИМ.SEC +IMSECH = МÐИМ.SECH +IMSIN = МÐИМ.SIN +IMSINH = МÐИМ.SINH +IMSQRT = МÐИМ.КОРЕÐЬ +IMSUB = МÐИМ.РÐЗР+IMSUM = МÐИМ.СУММ +IMTAN = МÐИМ.TAN +OCT2BIN = ВОСЬМ.Ð’.ДВ +OCT2DEC = ВОСЬМ.Ð’.ДЕС +OCT2HEX = ВОСЬМ.Ð’.ШЕСТР+ +## +## ФинанÑовые функции (Financial Functions) +## +ACCRINT = ÐÐКОПДОХОД +ACCRINTM = ÐÐКОПДОХОДПОГÐШ +AMORDEGRC = ÐМОРУМ +AMORLINC = ÐМОРУВ +COUPDAYBS = ДÐЕЙКУПОÐДО +COUPDAYS = ДÐЕЙКУПОР+COUPDAYSNC = ДÐЕЙКУПОÐПОСЛЕ +COUPNCD = ДÐТÐКУПОÐПОСЛЕ +COUPNUM = ЧИСЛКУПОР+COUPPCD = ДÐТÐКУПОÐДО +CUMIPMT = ОБЩПЛÐТ +CUMPRINC = ОБЩДОХОД +DB = ФУО +DDB = ДДОБ +DISC = СКИДКР+DOLLARDE = РУБЛЬ.ДЕС +DOLLARFR = РУБЛЬ.ДРОБЬ +DURATION = ДЛИТ +EFFECT = ЭФФЕКТ +FV = БС +FVSCHEDULE = БЗРÐСПИС +INTRATE = ИÐОРМР+IPMT = ПРПЛТ +IRR = ВСД +ISPMT = ПРОЦПЛÐТ +MDURATION = МДЛИТ +MIRR = МВСД +NOMINAL = ÐОМИÐÐЛ +NPER = КПЕР +NPV = ЧПС +ODDFPRICE = ЦЕÐÐПЕРВÐЕРЕГ +ODDFYIELD = ДОХОДПЕРВÐЕРЕГ +ODDLPRICE = ЦЕÐÐПОСЛÐЕРЕГ +ODDLYIELD = ДОХОДПОСЛÐЕРЕГ +PDURATION = ПДЛИТ +PMT = ПЛТ +PPMT = ОСПЛТ +PRICE = ЦЕÐÐ +PRICEDISC = ЦЕÐÐСКИДКР+PRICEMAT = ЦЕÐÐПОГÐШ +PV = ПС +RATE = СТÐВКР+RECEIVED = ПОЛУЧЕÐО +RRI = ЭКВ.СТÐВКР+SLN = ÐПЛ +SYD = ÐСЧ +TBILLEQ = РÐÐ’ÐОКЧЕК +TBILLPRICE = ЦЕÐÐКЧЕК +TBILLYIELD = ДОХОДКЧЕК +USDOLLAR = ДОЛЛСШР+VDB = ПУО +XIRR = ЧИСТВÐДОХ +XNPV = ЧИСТÐЗ +YIELD = ДОХОД +YIELDDISC = ДОХОДСКИДКР+YIELDMAT = ДОХОДПОГÐШ + +## +## Информационные функции (Information Functions) +## +CELL = ЯЧЕЙКР+ERROR.TYPE = ТИП.ОШИБКИ +INFO = ИÐФОРМ +ISBLANK = ЕПУСТО +ISERR = ЕОШ +ISERROR = ЕОШИБКР+ISEVEN = ЕЧÐТР+ISFORMULA = ЕФОРМУЛР+ISLOGICAL = ЕЛОГИЧ +ISNA = ЕÐД +ISNONTEXT = ЕÐЕТЕКСТ +ISNUMBER = ЕЧИСЛО +ISODD = ЕÐЕЧÐТ +ISREF = ЕССЫЛКР+ISTEXT = ЕТЕКСТ +N = Ч +NA = ÐД +SHEET = ЛИСТ +SHEETS = ЛИСТЫ +TYPE = ТИП + +## +## ЛогичеÑкие функции (Logical Functions) +## +AND = И +FALSE = ЛОЖЬ +IF = ЕСЛИ +IFERROR = ЕСЛИОШИБКР+IFNA = ЕСÐД +IFS = УСЛОВИЯ +NOT = ÐЕ +OR = ИЛИ +SWITCH = ПЕРЕКЛЮЧ +TRUE = ИСТИÐÐ +XOR = ИСКЛИЛИ + +## +## Функции ÑÑылки и поиÑка (Lookup & Reference Functions) +## +ADDRESS = ÐДРЕС +AREAS = ОБЛÐСТИ +CHOOSE = ВЫБОР +COLUMN = СТОЛБЕЦ +COLUMNS = ЧИСЛСТОЛБ +FILTER = ФИЛЬТР +FORMULATEXT = Ф.ТЕКСТ +GETPIVOTDATA = ПОЛУЧИТЬ.ДÐÐÐЫЕ.СВОДÐОЙ.ТÐБЛИЦЫ +HLOOKUP = ГПР +HYPERLINK = ГИПЕРССЫЛКР+INDEX = ИÐДЕКС +INDIRECT = ДВССЫЛ +LOOKUP = ПРОСМОТР +MATCH = ПОИСКПОЗ +OFFSET = СМЕЩ +ROW = СТРОКР+ROWS = ЧСТРОК +RTD = ДРВ +SORT = СОРТ +SORTBY = СОРТПО +TRANSPOSE = ТРÐÐСП +UNIQUE = УÐИК +VLOOKUP = ВПР +XLOOKUP = ПРОСМОТРX +XMATCH = ПОИСКПОЗX + +## +## МатематичеÑкие и тригонометричеÑкие функции (Math & Trig Functions) +## +ABS = ABS +ACOS = ACOS +ACOSH = ACOSH +ACOT = ACOT +ACOTH = ACOTH +AGGREGATE = ÐГРЕГÐТ +ARABIC = ÐРÐБСКОЕ +ASIN = ASIN +ASINH = ASINH +ATAN = ATAN +ATAN2 = ATAN2 +ATANH = ATANH +BASE = ОСÐОВÐÐИЕ +CEILING.MATH = ОКРВВЕРХ.МÐТ +CEILING.PRECISE = ОКРВВЕРХ.ТОЧР+COMBIN = ЧИСЛКОМБ +COMBINA = ЧИСЛКОМБР+COS = COS +COSH = COSH +COT = COT +COTH = COTH +CSC = CSC +CSCH = CSCH +DECIMAL = ДЕС +DEGREES = ГРÐДУСЫ +ECMA.CEILING = ECMA.ОКРВВЕРХ +EVEN = ЧÐТР+EXP = EXP +FACT = ФÐКТР +FACTDOUBLE = ДВФÐКТР +FLOOR.MATH = ОКРВÐИЗ.МÐТ +FLOOR.PRECISE = ОКРВÐИЗ.ТОЧР+GCD = ÐОД +INT = ЦЕЛОЕ +ISO.CEILING = ISO.ОКРВВЕРХ +LCM = ÐОК +LN = LN +LOG = LOG +LOG10 = LOG10 +MDETERM = МОПРЕД +MINVERSE = МОБР +MMULT = МУМÐОЖ +MOD = ОСТÐТ +MROUND = ОКРУГЛТ +MULTINOMIAL = МУЛЬТИÐОМ +MUNIT = МЕДИР+ODD = ÐЕЧÐТ +PI = ПИ +POWER = СТЕПЕÐЬ +PRODUCT = ПРОИЗВЕД +QUOTIENT = ЧÐСТÐОЕ +RADIANS = РÐДИÐÐЫ +RAND = СЛЧИС +RANDARRAY = СЛУЧМÐССИВ +RANDBETWEEN = СЛУЧМЕЖДУ +ROMAN = РИМСКОЕ +ROUND = ОКРУГЛ +ROUNDBAHTDOWN = ОКРУГЛБÐТВÐИЗ +ROUNDBAHTUP = ОКРУГЛБÐТВВЕРХ +ROUNDDOWN = ОКРУГЛВÐИЗ +ROUNDUP = ОКРУГЛВВЕРХ +SEC = SEC +SECH = SECH +SERIESSUM = РЯД.СУММ +SEQUENCE = ПОСЛЕДОВ +SIGN = ЗÐÐК +SIN = SIN +SINH = SINH +SQRT = КОРЕÐЬ +SQRTPI = КОРЕÐЬПИ +SUBTOTAL = ПРОМЕЖУТОЧÐЫЕ.ИТОГИ +SUM = СУММ +SUMIF = СУММЕСЛИ +SUMIFS = СУММЕСЛИМР+SUMPRODUCT = СУММПРОИЗВ +SUMSQ = СУММКВ +SUMX2MY2 = СУММРÐЗÐКВ +SUMX2PY2 = СУММСУММКВ +SUMXMY2 = СУММКВРÐЗР+TAN = TAN +TANH = TANH +TRUNC = ОТБР + +## +## СтатиÑтичеÑкие функции (Statistical Functions) +## +AVEDEV = СРОТКЛ +AVERAGE = СРЗÐÐЧ +AVERAGEA = СРЗÐÐЧР+AVERAGEIF = СРЗÐÐЧЕСЛИ +AVERAGEIFS = СРЗÐÐЧЕСЛИМР+BETA.DIST = БЕТÐ.РÐСП +BETA.INV = БЕТÐ.ОБР +BINOM.DIST = БИÐОМ.РÐСП +BINOM.DIST.RANGE = БИÐОМ.РÐСП.ДИÐП +BINOM.INV = БИÐОМ.ОБР +CHISQ.DIST = ХИ2.РÐСП +CHISQ.DIST.RT = ХИ2.РÐСП.ПХ +CHISQ.INV = ХИ2.ОБР +CHISQ.INV.RT = ХИ2.ОБР.ПХ +CHISQ.TEST = ХИ2.ТЕСТ +CONFIDENCE.NORM = ДОВЕРИТ.ÐОРМ +CONFIDENCE.T = ДОВЕРИТ.СТЬЮДЕÐТ +CORREL = КОРРЕЛ +COUNT = СЧÐТ +COUNTA = СЧÐТЗ +COUNTBLANK = СЧИТÐТЬПУСТОТЫ +COUNTIF = СЧÐТЕСЛИ +COUNTIFS = СЧÐТЕСЛИМР+COVARIANCE.P = КОВÐРИÐЦИЯ.Г +COVARIANCE.S = КОВÐРИÐЦИЯ.Ð’ +DEVSQ = КВÐДРОТКЛ +EXPON.DIST = ЭКСП.РÐСП +F.DIST = F.РÐСП +F.DIST.RT = F.РÐСП.ПХ +F.INV = F.ОБР +F.INV.RT = F.ОБР.ПХ +F.TEST = F.ТЕСТ +FISHER = ФИШЕР +FISHERINV = ФИШЕРОБР +FORECAST.ETS = ПРЕДСКÐЗ.ETS +FORECAST.ETS.CONFINT = ПРЕДСКÐЗ.ЕTS.ДОВИÐТЕРВÐЛ +FORECAST.ETS.SEASONALITY = ПРЕДСКÐЗ.ETS.СЕЗОÐÐОСТЬ +FORECAST.ETS.STAT = ПРЕДСКÐЗ.ETS.СТÐТ +FORECAST.LINEAR = ПРЕДСКÐЗ.ЛИÐЕЙР+FREQUENCY = ЧÐСТОТР+GAMMA = ГÐММР+GAMMA.DIST = ГÐММÐ.РÐСП +GAMMA.INV = ГÐММÐ.ОБР +GAMMALN = ГÐММÐÐЛОГ +GAMMALN.PRECISE = ГÐММÐÐЛОГ.ТОЧР+GAUSS = ГÐУСС +GEOMEAN = СРГЕОМ +GROWTH = РОСТ +HARMEAN = СРГÐРМ +HYPGEOM.DIST = ГИПЕРГЕОМ.РÐСП +INTERCEPT = ОТРЕЗОК +KURT = ЭКСЦЕСС +LARGE = ÐÐИБОЛЬШИЙ +LINEST = ЛИÐЕЙР+LOGEST = ЛГРФПРИБЛ +LOGNORM.DIST = ЛОГÐОРМ.РÐСП +LOGNORM.INV = ЛОГÐОРМ.ОБР +MAX = МÐКС +MAXA = МÐКСР+MAXIFS = МÐКСЕСЛИ +MEDIAN = МЕДИÐÐÐ +MIN = МИР+MINA = МИÐÐ +MINIFS = МИÐЕСЛИ +MODE.MULT = МОДÐ.ÐСК +MODE.SNGL = МОДÐ.ОДР+NEGBINOM.DIST = ОТРБИÐОМ.РÐСП +NORM.DIST = ÐОРМ.РÐСП +NORM.INV = ÐОРМ.ОБР +NORM.S.DIST = ÐОРМ.СТ.РÐСП +NORM.S.INV = ÐОРМ.СТ.ОБР +PEARSON = PEARSON +PERCENTILE.EXC = ПРОЦЕÐТИЛЬ.ИСКЛ +PERCENTILE.INC = ПРОЦЕÐТИЛЬ.ВКЛ +PERCENTRANK.EXC = ПРОЦЕÐТРÐÐГ.ИСКЛ +PERCENTRANK.INC = ПРОЦЕÐТРÐÐГ.ВКЛ +PERMUT = ПЕРЕСТ +PERMUTATIONA = ПЕРЕСТР+PHI = ФИ +POISSON.DIST = ПУÐССОÐ.РÐСП +PROB = ВЕРОЯТÐОСТЬ +QUARTILE.EXC = КВÐРТИЛЬ.ИСКЛ +QUARTILE.INC = КВÐРТИЛЬ.ВКЛ +RANK.AVG = РÐÐГ.СР +RANK.EQ = РÐÐГ.РВ +RSQ = КВПИРСОР+SKEW = СКОС +SKEW.P = СКОС.Г +SLOPE = ÐÐКЛОР+SMALL = ÐÐИМЕÐЬШИЙ +STANDARDIZE = ÐОРМÐЛИЗÐЦИЯ +STDEV.P = СТÐÐДОТКЛОÐ.Г +STDEV.S = СТÐÐДОТКЛОÐ.Ð’ +STDEVA = СТÐÐДОТКЛОÐÐ +STDEVPA = СТÐÐДОТКЛОÐПР+STEYX = СТОШYX +T.DIST = СТЬЮДЕÐТ.РÐСП +T.DIST.2T = СТЬЮДЕÐТ.РÐСП.2Ð¥ +T.DIST.RT = СТЬЮДЕÐТ.РÐСП.ПХ +T.INV = СТЬЮДЕÐТ.ОБР +T.INV.2T = СТЬЮДЕÐТ.ОБР.2Ð¥ +T.TEST = СТЬЮДЕÐТ.ТЕСТ +TREND = ТЕÐДЕÐЦИЯ +TRIMMEAN = УРЕЗСРЕДÐЕЕ +VAR.P = ДИСП.Г +VAR.S = ДИСП.Ð’ +VARA = ДИСПР+VARPA = ДИСПРР+WEIBULL.DIST = ВЕЙБУЛЛ.РÐСП +Z.TEST = Z.ТЕСТ + +## +## ТекÑтовые функции (Text Functions) +## +ARRAYTOTEXT = МÐССИВВТЕКСТ +BAHTTEXT = БÐТТЕКСТ +CHAR = СИМВОЛ +CLEAN = ПЕЧСИМВ +CODE = КОДСИМВ +CONCAT = СЦЕП +DBCS = БДЦС +DOLLAR = РУБЛЬ +EXACT = СОВПÐД +FIND = ÐÐЙТИ +FINDB = ÐÐЙТИБ +FIXED = ФИКСИРОВÐÐÐЫЙ +ISTHAIDIGIT = ЕТÐЙЦИФРЫ +LEFT = ЛЕВСИМВ +LEFTB = ЛЕВБ +LEN = ДЛСТР +LENB = ДЛИÐБ +LOWER = СТРОЧР+MID = ПСТР +MIDB = ПСТРБ +NUMBERSTRING = СТРОКÐЧИСЕЛ +NUMBERVALUE = ЧЗÐÐЧ +PROPER = ПРОПÐÐЧ +REPLACE = ЗÐМЕÐИТЬ +REPLACEB = ЗÐМЕÐИТЬБ +REPT = ПОВТОР +RIGHT = ПРÐВСИМВ +RIGHTB = ПРÐВБ +SEARCH = ПОИСК +SEARCHB = ПОИСКБ +SUBSTITUTE = ПОДСТÐВИТЬ +T = Т +TEXT = ТЕКСТ +TEXTJOIN = ОБЪЕДИÐИТЬ +THAIDIGIT = ТÐЙЦИФРР+THAINUMSOUND = ТÐЙЧИСЛОВЗВУК +THAINUMSTRING = ТÐЙЧИСЛОВСТРОКУ +THAISTRINGLENGTH = ТÐЙДЛИÐÐСТРОКИ +TRIM = СЖПРОБЕЛЫ +UNICHAR = ЮÐИСИМВ +UNICODE = UNICODE +UPPER = ПРОПИСР+VALUE = ЗÐÐЧЕР+VALUETOTEXT = ЗÐÐЧЕÐИЕВТЕКСТ + +## +## Веб-функции (Web Functions) +## +ENCODEURL = КОДИР.URL +FILTERXML = ФИЛЬТР.XML +WEBSERVICE = ВЕБСЛУЖБР+ +## +## Функции ÑовмеÑтимоÑти (Compatibility Functions) +## +BETADIST = БЕТÐРÐСП +BETAINV = БЕТÐОБР +BINOMDIST = БИÐОМРÐСП +CEILING = ОКРВВЕРХ +CHIDIST = ХИ2РÐСП +CHIINV = ХИ2ОБР +CHITEST = ХИ2ТЕСТ +CONCATENATE = СЦЕПИТЬ +CONFIDENCE = ДОВЕРИТ +COVAR = КОВÐР +CRITBINOM = КРИТБИÐОМ +EXPONDIST = ЭКСПРÐСП +FDIST = FРÐСП +FINV = FРÐСПОБР +FLOOR = ОКРВÐИЗ +FORECAST = ПРЕДСКÐЗ +FTEST = ФТЕСТ +GAMMADIST = ГÐММÐРÐСП +GAMMAINV = ГÐММÐОБР +HYPGEOMDIST = ГИПЕРГЕОМЕТ +LOGINV = ЛОГÐОРМОБР +LOGNORMDIST = ЛОГÐОРМРÐСП +MODE = МОДР+NEGBINOMDIST = ОТРБИÐОМРÐСП +NORMDIST = ÐОРМРÐСП +NORMINV = ÐОРМОБР +NORMSDIST = ÐОРМСТРÐСП +NORMSINV = ÐОРМСТОБР +PERCENTILE = ПЕРСЕÐТИЛЬ +PERCENTRANK = ПРОЦЕÐТРÐÐГ +POISSON = ПУÐССОР+QUARTILE = КВÐРТИЛЬ +RANK = РÐÐГ +STDEV = СТÐÐДОТКЛОР+STDEVP = СТÐÐДОТКЛОÐП +TDIST = СТЬЮДРÐСП +TINV = СТЬЮДРÐСПОБР +TTEST = ТТЕСТ +VAR = ДИСП +VARP = ДИСПР +WEIBULL = ВЕЙБУЛЛ +ZTEST = ZТЕСТ diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/sv/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/sv/config new file mode 100644 index 0000000..c7440f7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/sv/config @@ -0,0 +1,20 @@ +############################################################ +## +## PhpSpreadsheet - locale settings +## +## Svenska (Swedish) +## +############################################################ + +ArgumentSeparator = ; + +## +## Error Codes +## +NULL = #SKÄRNING! +DIV0 = #DIVISION/0! +VALUE = #VÄRDEFEL! +REF = #REFERENS! +NAME = #NAMN? +NUM = #OGILTIGT! +NA = #SAKNAS! diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/sv/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/sv/functions new file mode 100644 index 0000000..2531b4c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/sv/functions @@ -0,0 +1,532 @@ +############################################################ +## +## PhpSpreadsheet - function name translations +## +## Svenska (Swedish) +## +############################################################ + + +## +## Kubfunktioner (Cube Functions) +## +CUBEKPIMEMBER = KUBKPIMEDLEM +CUBEMEMBER = KUBMEDLEM +CUBEMEMBERPROPERTY = KUBMEDLEMSEGENSKAP +CUBERANKEDMEMBER = KUBRANGORDNADMEDLEM +CUBESET = KUBUPPSÄTTNING +CUBESETCOUNT = KUBUPPSÄTTNINGANTAL +CUBEVALUE = KUBVÄRDE + +## +## Databasfunktioner (Database Functions) +## +DAVERAGE = DMEDEL +DCOUNT = DANTAL +DCOUNTA = DANTALV +DGET = DHÄMTA +DMAX = DMAX +DMIN = DMIN +DPRODUCT = DPRODUKT +DSTDEV = DSTDAV +DSTDEVP = DSTDAVP +DSUM = DSUMMA +DVAR = DVARIANS +DVARP = DVARIANSP + +## +## Tid- och datumfunktioner (Date & Time Functions) +## +DATE = DATUM +DATEVALUE = DATUMVÄRDE +DAY = DAG +DAYS = DAGAR +DAYS360 = DAGAR360 +EDATE = EDATUM +EOMONTH = SLUTMÃ…NAD +HOUR = TIMME +ISOWEEKNUM = ISOVECKONR +MINUTE = MINUT +MONTH = MÃ…NAD +NETWORKDAYS = NETTOARBETSDAGAR +NETWORKDAYS.INTL = NETTOARBETSDAGAR.INT +NOW = NU +SECOND = SEKUND +THAIDAYOFWEEK = THAIVECKODAG +THAIMONTHOFYEAR = THAIMÃ…NAD +THAIYEAR = THAIÃ…R +TIME = KLOCKSLAG +TIMEVALUE = TIDVÄRDE +TODAY = IDAG +WEEKDAY = VECKODAG +WEEKNUM = VECKONR +WORKDAY = ARBETSDAGAR +WORKDAY.INTL = ARBETSDAGAR.INT +YEAR = Ã…R +YEARFRAC = Ã…RDEL + +## +## Tekniska funktioner (Engineering Functions) +## +BESSELI = BESSELI +BESSELJ = BESSELJ +BESSELK = BESSELK +BESSELY = BESSELY +BIN2DEC = BIN.TILL.DEC +BIN2HEX = BIN.TILL.HEX +BIN2OCT = BIN.TILL.OKT +BITAND = BITOCH +BITLSHIFT = BITVSKIFT +BITOR = BITELLER +BITRSHIFT = BITHSKIFT +BITXOR = BITXELLER +COMPLEX = KOMPLEX +CONVERT = KONVERTERA +DEC2BIN = DEC.TILL.BIN +DEC2HEX = DEC.TILL.HEX +DEC2OCT = DEC.TILL.OKT +DELTA = DELTA +ERF = FELF +ERF.PRECISE = FELF.EXAKT +ERFC = FELFK +ERFC.PRECISE = FELFK.EXAKT +GESTEP = SLSTEG +HEX2BIN = HEX.TILL.BIN +HEX2DEC = HEX.TILL.DEC +HEX2OCT = HEX.TILL.OKT +IMABS = IMABS +IMAGINARY = IMAGINÄR +IMARGUMENT = IMARGUMENT +IMCONJUGATE = IMKONJUGAT +IMCOS = IMCOS +IMCOSH = IMCOSH +IMCOT = IMCOT +IMCSC = IMCSC +IMCSCH = IMCSCH +IMDIV = IMDIV +IMEXP = IMEUPPHÖJT +IMLN = IMLN +IMLOG10 = IMLOG10 +IMLOG2 = IMLOG2 +IMPOWER = IMUPPHÖJT +IMPRODUCT = IMPRODUKT +IMREAL = IMREAL +IMSEC = IMSEK +IMSECH = IMSEKH +IMSIN = IMSIN +IMSINH = IMSINH +IMSQRT = IMROT +IMSUB = IMDIFF +IMSUM = IMSUM +IMTAN = IMTAN +OCT2BIN = OKT.TILL.BIN +OCT2DEC = OKT.TILL.DEC +OCT2HEX = OKT.TILL.HEX + +## +## Finansiella funktioner (Financial Functions) +## +ACCRINT = UPPLRÄNTA +ACCRINTM = UPPLOBLRÄNTA +AMORDEGRC = AMORDEGRC +AMORLINC = AMORLINC +COUPDAYBS = KUPDAGBB +COUPDAYS = KUPDAGB +COUPDAYSNC = KUPDAGNK +COUPNCD = KUPNKD +COUPNUM = KUPANT +COUPPCD = KUPFKD +CUMIPMT = KUMRÄNTA +CUMPRINC = KUMPRIS +DB = DB +DDB = DEGAVSKR +DISC = DISK +DOLLARDE = DECTAL +DOLLARFR = BRÃ…K +DURATION = LÖPTID +EFFECT = EFFRÄNTA +FV = SLUTVÄRDE +FVSCHEDULE = FÖRRÄNTNING +INTRATE = Ã…RSRÄNTA +IPMT = RBETALNING +IRR = IR +ISPMT = RALÃ…N +MDURATION = MLÖPTID +MIRR = MODIR +NOMINAL = NOMRÄNTA +NPER = PERIODER +NPV = NETNUVÄRDE +ODDFPRICE = UDDAFPRIS +ODDFYIELD = UDDAFAVKASTNING +ODDLPRICE = UDDASPRIS +ODDLYIELD = UDDASAVKASTNING +PDURATION = PLÖPTID +PMT = BETALNING +PPMT = AMORT +PRICE = PRIS +PRICEDISC = PRISDISK +PRICEMAT = PRISFÖRF +PV = NUVÄRDE +RATE = RÄNTA +RECEIVED = BELOPP +RRI = AVKPÃ…INVEST +SLN = LINAVSKR +SYD = Ã…RSAVSKR +TBILLEQ = SSVXEKV +TBILLPRICE = SSVXPRIS +TBILLYIELD = SSVXRÄNTA +VDB = VDEGRAVSKR +XIRR = XIRR +XNPV = XNUVÄRDE +YIELD = NOMAVK +YIELDDISC = NOMAVKDISK +YIELDMAT = NOMAVKFÖRF + +## +## Informationsfunktioner (Information Functions) +## +CELL = CELL +ERROR.TYPE = FEL.TYP +INFO = INFO +ISBLANK = ÄRTOM +ISERR = ÄRF +ISERROR = ÄRFEL +ISEVEN = ÄRJÄMN +ISFORMULA = ÄRFORMEL +ISLOGICAL = ÄRLOGISK +ISNA = ÄRSAKNAD +ISNONTEXT = ÄREJTEXT +ISNUMBER = ÄRTAL +ISODD = ÄRUDDA +ISREF = ÄRREF +ISTEXT = ÄRTEXT +N = N +NA = SAKNAS +SHEET = BLAD +SHEETS = ANTALBLAD +TYPE = VÄRDETYP + +## +## Logiska funktioner (Logical Functions) +## +AND = OCH +FALSE = FALSKT +IF = OM +IFERROR = OMFEL +IFNA = OMSAKNAS +IFS = IFS +NOT = ICKE +OR = ELLER +SWITCH = VÄXLA +TRUE = SANT +XOR = XELLER + +## +## Sök- och referensfunktioner (Lookup & Reference Functions) +## +ADDRESS = ADRESS +AREAS = OMRÃ…DEN +CHOOSE = VÄLJ +COLUMN = KOLUMN +COLUMNS = KOLUMNER +FORMULATEXT = FORMELTEXT +GETPIVOTDATA = HÄMTA.PIVOTDATA +HLOOKUP = LETAKOLUMN +HYPERLINK = HYPERLÄNK +INDEX = INDEX +INDIRECT = INDIREKT +LOOKUP = LETAUPP +MATCH = PASSA +OFFSET = FÖRSKJUTNING +ROW = RAD +ROWS = RADER +RTD = RTD +TRANSPOSE = TRANSPONERA +VLOOKUP = LETARAD + +## +## Matematiska och trigonometriska funktioner (Math & Trig Functions) +## +ABS = ABS +ACOS = ARCCOS +ACOSH = ARCCOSH +ACOT = ARCCOT +ACOTH = ARCCOTH +AGGREGATE = MÄNGD +ARABIC = ARABISKA +ASIN = ARCSIN +ASINH = ARCSINH +ATAN = ARCTAN +ATAN2 = ARCTAN2 +ATANH = ARCTANH +BASE = BAS +CEILING.MATH = RUNDA.UPP.MATEMATISKT +CEILING.PRECISE = RUNDA.UPP.EXAKT +COMBIN = KOMBIN +COMBINA = KOMBINA +COS = COS +COSH = COSH +COT = COT +COTH = COTH +CSC = CSC +CSCH = CSCH +DECIMAL = DECIMAL +DEGREES = GRADER +ECMA.CEILING = ECMA.RUNDA.UPP +EVEN = JÄMN +EXP = EXP +FACT = FAKULTET +FACTDOUBLE = DUBBELFAKULTET +FLOOR.MATH = RUNDA.NER.MATEMATISKT +FLOOR.PRECISE = RUNDA.NER.EXAKT +GCD = SGD +INT = HELTAL +ISO.CEILING = ISO.RUNDA.UPP +LCM = MGM +LN = LN +LOG = LOG +LOG10 = LOG10 +MDETERM = MDETERM +MINVERSE = MINVERT +MMULT = MMULT +MOD = REST +MROUND = MAVRUNDA +MULTINOMIAL = MULTINOMIAL +MUNIT = MENHET +ODD = UDDA +PI = PI +POWER = UPPHÖJT.TILL +PRODUCT = PRODUKT +QUOTIENT = KVOT +RADIANS = RADIANER +RAND = SLUMP +RANDBETWEEN = SLUMP.MELLAN +ROMAN = ROMERSK +ROUND = AVRUNDA +ROUNDBAHTDOWN = AVRUNDABAHTNEDÃ…T +ROUNDBAHTUP = AVRUNDABAHTUPPÃ…T +ROUNDDOWN = AVRUNDA.NEDÃ…T +ROUNDUP = AVRUNDA.UPPÃ…T +SEC = SEK +SECH = SEKH +SERIESSUM = SERIESUMMA +SIGN = TECKEN +SIN = SIN +SINH = SINH +SQRT = ROT +SQRTPI = ROTPI +SUBTOTAL = DELSUMMA +SUM = SUMMA +SUMIF = SUMMA.OM +SUMIFS = SUMMA.OMF +SUMPRODUCT = PRODUKTSUMMA +SUMSQ = KVADRATSUMMA +SUMX2MY2 = SUMMAX2MY2 +SUMX2PY2 = SUMMAX2PY2 +SUMXMY2 = SUMMAXMY2 +TAN = TAN +TANH = TANH +TRUNC = AVKORTA + +## +## Statistiska funktioner (Statistical Functions) +## +AVEDEV = MEDELAVV +AVERAGE = MEDEL +AVERAGEA = AVERAGEA +AVERAGEIF = MEDEL.OM +AVERAGEIFS = MEDEL.OMF +BETA.DIST = BETA.FÖRD +BETA.INV = BETA.INV +BINOM.DIST = BINOM.FÖRD +BINOM.DIST.RANGE = BINOM.FÖRD.INTERVALL +BINOM.INV = BINOM.INV +CHISQ.DIST = CHI2.FÖRD +CHISQ.DIST.RT = CHI2.FÖRD.RT +CHISQ.INV = CHI2.INV +CHISQ.INV.RT = CHI2.INV.RT +CHISQ.TEST = CHI2.TEST +CONFIDENCE.NORM = KONFIDENS.NORM +CONFIDENCE.T = KONFIDENS.T +CORREL = KORREL +COUNT = ANTAL +COUNTA = ANTALV +COUNTBLANK = ANTAL.TOMMA +COUNTIF = ANTAL.OM +COUNTIFS = ANTAL.OMF +COVARIANCE.P = KOVARIANS.P +COVARIANCE.S = KOVARIANS.S +DEVSQ = KVADAVV +EXPON.DIST = EXPON.FÖRD +F.DIST = F.FÖRD +F.DIST.RT = F.FÖRD.RT +F.INV = F.INV +F.INV.RT = F.INV.RT +F.TEST = F.TEST +FISHER = FISHER +FISHERINV = FISHERINV +FORECAST.ETS = PROGNOS.ETS +FORECAST.ETS.CONFINT = PROGNOS.ETS.KONFINT +FORECAST.ETS.SEASONALITY = PROGNOS.ETS.SÄSONGSBEROENDE +FORECAST.ETS.STAT = PROGNOS.ETS.STAT +FORECAST.LINEAR = PROGNOS.LINJÄR +FREQUENCY = FREKVENS +GAMMA = GAMMA +GAMMA.DIST = GAMMA.FÖRD +GAMMA.INV = GAMMA.INV +GAMMALN = GAMMALN +GAMMALN.PRECISE = GAMMALN.EXAKT +GAUSS = GAUSS +GEOMEAN = GEOMEDEL +GROWTH = EXPTREND +HARMEAN = HARMMEDEL +HYPGEOM.DIST = HYPGEOM.FÖRD +INTERCEPT = SKÄRNINGSPUNKT +KURT = TOPPIGHET +LARGE = STÖRSTA +LINEST = REGR +LOGEST = EXPREGR +LOGNORM.DIST = LOGNORM.FÖRD +LOGNORM.INV = LOGNORM.INV +MAX = MAX +MAXA = MAXA +MAXIFS = MAXIFS +MEDIAN = MEDIAN +MIN = MIN +MINA = MINA +MINIFS = MINIFS +MODE.MULT = TYPVÄRDE.FLERA +MODE.SNGL = TYPVÄRDE.ETT +NEGBINOM.DIST = NEGBINOM.FÖRD +NORM.DIST = NORM.FÖRD +NORM.INV = NORM.INV +NORM.S.DIST = NORM.S.FÖRD +NORM.S.INV = NORM.S.INV +PEARSON = PEARSON +PERCENTILE.EXC = PERCENTIL.EXK +PERCENTILE.INC = PERCENTIL.INK +PERCENTRANK.EXC = PROCENTRANG.EXK +PERCENTRANK.INC = PROCENTRANG.INK +PERMUT = PERMUT +PERMUTATIONA = PERMUTATIONA +PHI = PHI +POISSON.DIST = POISSON.FÖRD +PROB = SANNOLIKHET +QUARTILE.EXC = KVARTIL.EXK +QUARTILE.INC = KVARTIL.INK +RANK.AVG = RANG.MED +RANK.EQ = RANG.EKV +RSQ = RKV +SKEW = SNEDHET +SKEW.P = SNEDHET.P +SLOPE = LUTNING +SMALL = MINSTA +STANDARDIZE = STANDARDISERA +STDEV.P = STDAV.P +STDEV.S = STDAV.S +STDEVA = STDEVA +STDEVPA = STDEVPA +STEYX = STDFELYX +T.DIST = T.FÖRD +T.DIST.2T = T.FÖRD.2T +T.DIST.RT = T.FÖRD.RT +T.INV = T.INV +T.INV.2T = T.INV.2T +T.TEST = T.TEST +TREND = TREND +TRIMMEAN = TRIMMEDEL +VAR.P = VARIANS.P +VAR.S = VARIANS.S +VARA = VARA +VARPA = VARPA +WEIBULL.DIST = WEIBULL.FÖRD +Z.TEST = Z.TEST + +## +## Textfunktioner (Text Functions) +## +BAHTTEXT = BAHTTEXT +CHAR = TECKENKOD +CLEAN = STÄDA +CODE = KOD +CONCAT = SAMMAN +DOLLAR = VALUTA +EXACT = EXAKT +FIND = HITTA +FIXED = FASTTAL +LEFT = VÄNSTER +LEN = LÄNGD +LOWER = GEMENER +MID = EXTEXT +NUMBERVALUE = TALVÄRDE +PROPER = INITIAL +REPLACE = ERSÄTT +REPT = REP +RIGHT = HÖGER +SEARCH = SÖK +SUBSTITUTE = BYT.UT +T = T +TEXT = TEXT +TEXTJOIN = TEXTJOIN +THAIDIGIT = THAISIFFRA +THAINUMSOUND = THAITALLJUD +THAINUMSTRING = THAITALSTRÄNG +THAISTRINGLENGTH = THAISTRÄNGLÄNGD +TRIM = RENSA +UNICHAR = UNITECKENKOD +UNICODE = UNICODE +UPPER = VERSALER +VALUE = TEXTNUM + +## +## Webbfunktioner (Web Functions) +## +ENCODEURL = KODAWEBBADRESS +FILTERXML = FILTRERAXML +WEBSERVICE = WEBBTJÄNST + +## +## Kompatibilitetsfunktioner (Compatibility Functions) +## +BETADIST = BETAFÖRD +BETAINV = BETAINV +BINOMDIST = BINOMFÖRD +CEILING = RUNDA.UPP +CHIDIST = CHI2FÖRD +CHIINV = CHI2INV +CHITEST = CHI2TEST +CONCATENATE = SAMMANFOGA +CONFIDENCE = KONFIDENS +COVAR = KOVAR +CRITBINOM = KRITBINOM +EXPONDIST = EXPONFÖRD +FDIST = FFÖRD +FINV = FINV +FLOOR = RUNDA.NER +FORECAST = PREDIKTION +FTEST = FTEST +GAMMADIST = GAMMAFÖRD +GAMMAINV = GAMMAINV +HYPGEOMDIST = HYPGEOMFÖRD +LOGINV = LOGINV +LOGNORMDIST = LOGNORMFÖRD +MODE = TYPVÄRDE +NEGBINOMDIST = NEGBINOMFÖRD +NORMDIST = NORMFÖRD +NORMINV = NORMINV +NORMSDIST = NORMSFÖRD +NORMSINV = NORMSINV +PERCENTILE = PERCENTIL +PERCENTRANK = PROCENTRANG +POISSON = POISSON +QUARTILE = KVARTIL +RANK = RANG +STDEV = STDAV +STDEVP = STDAVP +TDIST = TFÖRD +TINV = TINV +TTEST = TTEST +VAR = VARIANS +VARP = VARIANSP +WEIBULL = WEIBULL +ZTEST = ZTEST diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr/config b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr/config new file mode 100644 index 0000000..63d22fd --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr/config @@ -0,0 +1,20 @@ +############################################################ +## +## PhpSpreadsheet - locale settings +## +## Türkçe (Turkish) +## +############################################################ + +ArgumentSeparator = ; + +## +## Error Codes +## +NULL = #BOÅž! +DIV0 = #SAYI/0! +VALUE = #DEÄžER! +REF = #BAÅžV! +NAME = #AD? +NUM = #SAYI! +NA = #YOK diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr/functions b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr/functions new file mode 100644 index 0000000..f872274 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr/functions @@ -0,0 +1,537 @@ +############################################################ +## +## PhpSpreadsheet - function name translations +## +## Türkçe (Turkish) +## +############################################################ + + +## +## Küp iÅŸlevleri (Cube Functions) +## +CUBEKPIMEMBER = KÜPKPIÜYESİ +CUBEMEMBER = KÜPÜYESİ +CUBEMEMBERPROPERTY = KÜPÜYEÖZELLİĞİ +CUBERANKEDMEMBER = DERECELİKÜPÜYESİ +CUBESET = KÜPKÜMESİ +CUBESETCOUNT = KÜPKÜMESAYISI +CUBEVALUE = KÜPDEÄžERİ + +## +## Veritabanı iÅŸlevleri (Database Functions) +## +DAVERAGE = VSEÇORT +DCOUNT = VSEÇSAY +DCOUNTA = VSEÇSAYDOLU +DGET = VAL +DMAX = VSEÇMAK +DMIN = VSEÇMİN +DPRODUCT = VSEÇÇARP +DSTDEV = VSEÇSTDSAPMA +DSTDEVP = VSEÇSTDSAPMAS +DSUM = VSEÇTOPLA +DVAR = VSEÇVAR +DVARP = VSEÇVARS + +## +## Tarih ve saat iÅŸlevleri (Date & Time Functions) +## +DATE = TARİH +DATEDIF = ETARİHLİ +DATESTRING = TARİHDİZİ +DATEVALUE = TARİHSAYISI +DAY = GÜN +DAYS = GÜNSAY +DAYS360 = GÜN360 +EDATE = SERİTARİH +EOMONTH = SERİAY +HOUR = SAAT +ISOWEEKNUM = ISOHAFTASAY +MINUTE = DAKİKA +MONTH = AY +NETWORKDAYS = TAMİŞGÜNÜ +NETWORKDAYS.INTL = TAMİŞGÜNÜ.ULUSL +NOW = ŞİMDİ +SECOND = SANİYE +THAIDAYOFWEEK = TAYHAFTANINGÜNÜ +THAIMONTHOFYEAR = TAYYILINAYI +THAIYEAR = TAYYILI +TIME = ZAMAN +TIMEVALUE = ZAMANSAYISI +TODAY = BUGÜN +WEEKDAY = HAFTANINGÜNÜ +WEEKNUM = HAFTASAY +WORKDAY = İŞGÜNÜ +WORKDAY.INTL = İŞGÜNÜ.ULUSL +YEAR = YIL +YEARFRAC = YILORAN + +## +## Mühendislik iÅŸlevleri (Engineering Functions) +## +BESSELI = BESSELI +BESSELJ = BESSELJ +BESSELK = BESSELK +BESSELY = BESSELY +BIN2DEC = BIN2DEC +BIN2HEX = BIN2HEX +BIN2OCT = BIN2OCT +BITAND = BİTVE +BITLSHIFT = BİTSOLAKAYDIR +BITOR = BİTVEYA +BITRSHIFT = BİTSAÄžAKAYDIR +BITXOR = BİTÖZELVEYA +COMPLEX = KARMAÅžIK +CONVERT = ÇEVİR +DEC2BIN = DEC2BIN +DEC2HEX = DEC2HEX +DEC2OCT = DEC2OCT +DELTA = DELTA +ERF = HATAİŞLEV +ERF.PRECISE = HATAİŞLEV.DUYARLI +ERFC = TÜMHATAİŞLEV +ERFC.PRECISE = TÜMHATAİŞLEV.DUYARLI +GESTEP = BESINIR +HEX2BIN = HEX2BIN +HEX2DEC = HEX2DEC +HEX2OCT = HEX2OCT +IMABS = SANMUTLAK +IMAGINARY = SANAL +IMARGUMENT = SANBAÄž_DEĞİŞKEN +IMCONJUGATE = SANEÅžLENEK +IMCOS = SANCOS +IMCOSH = SANCOSH +IMCOT = SANCOT +IMCSC = SANCSC +IMCSCH = SANCSCH +IMDIV = SANBÖL +IMEXP = SANÜS +IMLN = SANLN +IMLOG10 = SANLOG10 +IMLOG2 = SANLOG2 +IMPOWER = SANKUVVET +IMPRODUCT = SANÇARP +IMREAL = SANGERÇEK +IMSEC = SANSEC +IMSECH = SANSECH +IMSIN = SANSIN +IMSINH = SANSINH +IMSQRT = SANKAREKÖK +IMSUB = SANTOPLA +IMSUM = SANÇIKAR +IMTAN = SANTAN +OCT2BIN = OCT2BIN +OCT2DEC = OCT2DEC +OCT2HEX = OCT2HEX + +## +## Finansal iÅŸlevler (Financial Functions) +## +ACCRINT = GERÇEKFAİZ +ACCRINTM = GERÇEKFAİZV +AMORDEGRC = AMORDEGRC +AMORLINC = AMORLINC +COUPDAYBS = KUPONGÜNBD +COUPDAYS = KUPONGÜN +COUPDAYSNC = KUPONGÜNDSK +COUPNCD = KUPONGÜNSKT +COUPNUM = KUPONSAYI +COUPPCD = KUPONGÜNÖKT +CUMIPMT = TOPÖDENENFAİZ +CUMPRINC = TOPANAPARA +DB = AZALANBAKİYE +DDB = ÇİFTAZALANBAKİYE +DISC = İNDİRİM +DOLLARDE = LİRAON +DOLLARFR = LİRAKES +DURATION = SÜRE +EFFECT = ETKİN +FV = GD +FVSCHEDULE = GDPROGRAM +INTRATE = FAİZORANI +IPMT = FAİZTUTARI +IRR = İÇ_VERİM_ORANI +ISPMT = ISPMT +MDURATION = MSÜRE +MIRR = D_İÇ_VERİM_ORANI +NOMINAL = NOMİNAL +NPER = TAKSİT_SAYISI +NPV = NBD +ODDFPRICE = TEKYDEÄžER +ODDFYIELD = TEKYÖDEME +ODDLPRICE = TEKSDEÄžER +ODDLYIELD = TEKSÖDEME +PDURATION = PSÜRE +PMT = DEVRESEL_ÖDEME +PPMT = ANA_PARA_ÖDEMESİ +PRICE = DEÄžER +PRICEDISC = DEÄžERİND +PRICEMAT = DEÄžERVADE +PV = BD +RATE = FAİZ_ORANI +RECEIVED = GETİRİ +RRI = GERÇEKLEÅžENYATIRIMGETİRİSİ +SLN = DA +SYD = YAT +TBILLEQ = HTAHEÅž +TBILLPRICE = HTAHDEÄžER +TBILLYIELD = HTAHÖDEME +VDB = DAB +XIRR = AİÇVERİMORANI +XNPV = ANBD +YIELD = ÖDEME +YIELDDISC = ÖDEMEİND +YIELDMAT = ÖDEMEVADE + +## +## Bilgi iÅŸlevleri (Information Functions) +## +CELL = HÜCRE +ERROR.TYPE = HATA.TİPİ +INFO = BİLGİ +ISBLANK = EBOÅžSA +ISERR = EHATA +ISERROR = EHATALIYSA +ISEVEN = ÇİFTMİ +ISFORMULA = EFORMÜLSE +ISLOGICAL = EMANTIKSALSA +ISNA = EYOKSA +ISNONTEXT = EMETİNDEĞİLSE +ISNUMBER = ESAYIYSA +ISODD = TEKMİ +ISREF = EREFSE +ISTEXT = EMETİNSE +N = S +NA = YOKSAY +SHEET = SAYFA +SHEETS = SAYFALAR +TYPE = TÜR + +## +## Mantıksal iÅŸlevler (Logical Functions) +## +AND = VE +FALSE = YANLIÅž +IF = EÄžER +IFERROR = EÄžERHATA +IFNA = EÄžERYOKSA +IFS = ÇOKEÄžER +NOT = DEĞİL +OR = YADA +SWITCH = İLKEÅžLEÅžEN +TRUE = DOÄžRU +XOR = ÖZELVEYA + +## +## Arama ve baÅŸvuru iÅŸlevleri (Lookup & Reference Functions) +## +ADDRESS = ADRES +AREAS = ALANSAY +CHOOSE = ELEMAN +COLUMN = SÜTUN +COLUMNS = SÜTUNSAY +FORMULATEXT = FORMÜLMETNİ +GETPIVOTDATA = ÖZETVERİAL +HLOOKUP = YATAYARA +HYPERLINK = KÖPRÜ +INDEX = İNDİS +INDIRECT = DOLAYLI +LOOKUP = ARA +MATCH = KAÇINCI +OFFSET = KAYDIR +ROW = SATIR +ROWS = SATIRSAY +RTD = GZV +TRANSPOSE = DEVRİK_DÖNÜŞÜM +VLOOKUP = DÜŞEYARA + +## +## Matematik ve trigonometri iÅŸlevleri (Math & Trig Functions) +## +ABS = MUTLAK +ACOS = ACOS +ACOSH = ACOSH +ACOT = ACOT +ACOTH = ACOTH +AGGREGATE = TOPLAMA +ARABIC = ARAP +ASIN = ASİN +ASINH = ASİNH +ATAN = ATAN +ATAN2 = ATAN2 +ATANH = ATANH +BASE = TABAN +CEILING.MATH = TAVANAYUVARLA.MATEMATİK +CEILING.PRECISE = TAVANAYUVARLA.DUYARLI +COMBIN = KOMBİNASYON +COMBINA = KOMBİNASYONA +COS = COS +COSH = COSH +COT = COT +COTH = COTH +CSC = CSC +CSCH = CSCH +DECIMAL = ONDALIK +DEGREES = DERECE +ECMA.CEILING = ECMA.TAVAN +EVEN = ÇİFT +EXP = ÜS +FACT = ÇARPINIM +FACTDOUBLE = ÇİFTFAKTÖR +FLOOR.MATH = TABANAYUVARLA.MATEMATİK +FLOOR.PRECISE = TABANAYUVARLA.DUYARLI +GCD = OBEB +INT = TAMSAYI +ISO.CEILING = ISO.TAVAN +LCM = OKEK +LN = LN +LOG = LOG +LOG10 = LOG10 +MDETERM = DETERMİNANT +MINVERSE = DİZEY_TERS +MMULT = DÇARP +MOD = MOD +MROUND = KYUVARLA +MULTINOMIAL = ÇOKTERİMLİ +MUNIT = BİRİMMATRİS +ODD = TEK +PI = Pİ +POWER = KUVVET +PRODUCT = ÇARPIM +QUOTIENT = BÖLÜM +RADIANS = RADYAN +RAND = S_SAYI_ÜRET +RANDBETWEEN = RASTGELEARADA +ROMAN = ROMEN +ROUND = YUVARLA +ROUNDBAHTDOWN = BAHTAÅžAÄžIYUVARLA +ROUNDBAHTUP = BAHTYUKARIYUVARLA +ROUNDDOWN = AÅžAÄžIYUVARLA +ROUNDUP = YUKARIYUVARLA +SEC = SEC +SECH = SECH +SERIESSUM = SERİTOPLA +SIGN = İŞARET +SIN = SİN +SINH = SİNH +SQRT = KAREKÖK +SQRTPI = KAREKÖKPİ +SUBTOTAL = ALTTOPLAM +SUM = TOPLA +SUMIF = ETOPLA +SUMIFS = ÇOKETOPLA +SUMPRODUCT = TOPLA.ÇARPIM +SUMSQ = TOPKARE +SUMX2MY2 = TOPX2EY2 +SUMX2PY2 = TOPX2AY2 +SUMXMY2 = TOPXEY2 +TAN = TAN +TANH = TANH +TRUNC = NSAT + +## +## İstatistik iÅŸlevleri (Statistical Functions) +## +AVEDEV = ORTSAP +AVERAGE = ORTALAMA +AVERAGEA = ORTALAMAA +AVERAGEIF = EÄžERORTALAMA +AVERAGEIFS = ÇOKEÄžERORTALAMA +BETA.DIST = BETA.DAÄž +BETA.INV = BETA.TERS +BINOM.DIST = BİNOM.DAÄž +BINOM.DIST.RANGE = BİNOM.DAÄž.ARALIK +BINOM.INV = BİNOM.TERS +CHISQ.DIST = KİKARE.DAÄž +CHISQ.DIST.RT = KİKARE.DAÄž.SAÄžK +CHISQ.INV = KİKARE.TERS +CHISQ.INV.RT = KİKARE.TERS.SAÄžK +CHISQ.TEST = KİKARE.TEST +CONFIDENCE.NORM = GÜVENİLİRLİK.NORM +CONFIDENCE.T = GÜVENİLİRLİK.T +CORREL = KORELASYON +COUNT = BAÄž_DEÄž_SAY +COUNTA = BAÄž_DEÄž_DOLU_SAY +COUNTBLANK = BOÅžLUKSAY +COUNTIF = EÄžERSAY +COUNTIFS = ÇOKEÄžERSAY +COVARIANCE.P = KOVARYANS.P +COVARIANCE.S = KOVARYANS.S +DEVSQ = SAPKARE +EXPON.DIST = ÜSTEL.DAÄž +F.DIST = F.DAÄž +F.DIST.RT = F.DAÄž.SAÄžK +F.INV = F.TERS +F.INV.RT = F.TERS.SAÄžK +F.TEST = F.TEST +FISHER = FISHER +FISHERINV = FISHERTERS +FORECAST.ETS = TAHMİN.ETS +FORECAST.ETS.CONFINT = TAHMİN.ETS.GVNARAL +FORECAST.ETS.SEASONALITY = TAHMİN.ETS.MEVSİMSELLİK +FORECAST.ETS.STAT = TAHMİN.ETS.İSTAT +FORECAST.LINEAR = TAHMİN.DOÄžRUSAL +FREQUENCY = SIKLIK +GAMMA = GAMA +GAMMA.DIST = GAMA.DAÄž +GAMMA.INV = GAMA.TERS +GAMMALN = GAMALN +GAMMALN.PRECISE = GAMALN.DUYARLI +GAUSS = GAUSS +GEOMEAN = GEOORT +GROWTH = BÜYÜME +HARMEAN = HARORT +HYPGEOM.DIST = HİPERGEOM.DAÄž +INTERCEPT = KESMENOKTASI +KURT = BASIKLIK +LARGE = BÜYÜK +LINEST = DOT +LOGEST = LOT +LOGNORM.DIST = LOGNORM.DAÄž +LOGNORM.INV = LOGNORM.TERS +MAX = MAK +MAXA = MAKA +MAXIFS = ÇOKEÄžERMAK +MEDIAN = ORTANCA +MIN = MİN +MINA = MİNA +MINIFS = ÇOKEÄžERMİN +MODE.MULT = ENÇOK_OLAN.ÇOK +MODE.SNGL = ENÇOK_OLAN.TEK +NEGBINOM.DIST = NEGBİNOM.DAÄž +NORM.DIST = NORM.DAÄž +NORM.INV = NORM.TERS +NORM.S.DIST = NORM.S.DAÄž +NORM.S.INV = NORM.S.TERS +PEARSON = PEARSON +PERCENTILE.EXC = YÜZDEBİRLİK.HRC +PERCENTILE.INC = YÜZDEBİRLİK.DHL +PERCENTRANK.EXC = YÜZDERANK.HRC +PERCENTRANK.INC = YÜZDERANK.DHL +PERMUT = PERMÜTASYON +PERMUTATIONA = PERMÜTASYONA +PHI = PHI +POISSON.DIST = POISSON.DAÄž +PROB = OLASILIK +QUARTILE.EXC = DÖRTTEBİRLİK.HRC +QUARTILE.INC = DÖRTTEBİRLİK.DHL +RANK.AVG = RANK.ORT +RANK.EQ = RANK.EŞİT +RSQ = RKARE +SKEW = ÇARPIKLIK +SKEW.P = ÇARPIKLIK.P +SLOPE = EĞİM +SMALL = KÜÇÜK +STANDARDIZE = STANDARTLAÅžTIRMA +STDEV.P = STDSAPMA.P +STDEV.S = STDSAPMA.S +STDEVA = STDSAPMAA +STDEVPA = STDSAPMASA +STEYX = STHYX +T.DIST = T.DAÄž +T.DIST.2T = T.DAÄž.2K +T.DIST.RT = T.DAÄž.SAÄžK +T.INV = T.TERS +T.INV.2T = T.TERS.2K +T.TEST = T.TEST +TREND = EĞİLİM +TRIMMEAN = KIRPORTALAMA +VAR.P = VAR.P +VAR.S = VAR.S +VARA = VARA +VARPA = VARSA +WEIBULL.DIST = WEIBULL.DAÄž +Z.TEST = Z.TEST + +## +## Metin iÅŸlevleri (Text Functions) +## +BAHTTEXT = BAHTMETİN +CHAR = DAMGA +CLEAN = TEMİZ +CODE = KOD +CONCAT = ARALIKBİRLEÅžTİR +DOLLAR = LİRA +EXACT = ÖZDEÅž +FIND = BUL +FIXED = SAYIDÜZENLE +ISTHAIDIGIT = TAYRAKAMIYSA +LEFT = SOLDAN +LEN = UZUNLUK +LOWER = KÜÇÜKHARF +MID = PARÇAAL +NUMBERSTRING = SAYIDİZİ +NUMBERVALUE = SAYIDEÄžERİ +PHONETIC = SES +PROPER = YAZIM.DÜZENİ +REPLACE = DEĞİŞTİR +REPT = YİNELE +RIGHT = SAÄžDAN +SEARCH = MBUL +SUBSTITUTE = YERİNEKOY +T = M +TEXT = METNEÇEVİR +TEXTJOIN = METİNBİRLEÅžTİR +THAIDIGIT = TAYRAKAM +THAINUMSOUND = TAYSAYISES +THAINUMSTRING = TAYSAYIDİZE +THAISTRINGLENGTH = TAYDİZEUZUNLUÄžU +TRIM = KIRP +UNICHAR = UNICODEKARAKTERİ +UNICODE = UNICODE +UPPER = BÜYÜKHARF +VALUE = SAYIYAÇEVİR + +## +## Metin iÅŸlevleri (Web Functions) +## +ENCODEURL = URLKODLA +FILTERXML = XMLFİLTRELE +WEBSERVICE = WEBHİZMETİ + +## +## Uyumluluk iÅŸlevleri (Compatibility Functions) +## +BETADIST = BETADAÄž +BETAINV = BETATERS +BINOMDIST = BİNOMDAÄž +CEILING = TAVANAYUVARLA +CHIDIST = KİKAREDAÄž +CHIINV = KİKARETERS +CHITEST = KİKARETEST +CONCATENATE = BİRLEÅžTİR +CONFIDENCE = GÜVENİRLİK +COVAR = KOVARYANS +CRITBINOM = KRİTİKBİNOM +EXPONDIST = ÜSTELDAÄž +FDIST = FDAÄž +FINV = FTERS +FLOOR = TABANAYUVARLA +FORECAST = TAHMİN +FTEST = FTEST +GAMMADIST = GAMADAÄž +GAMMAINV = GAMATERS +HYPGEOMDIST = HİPERGEOMDAÄž +LOGINV = LOGTERS +LOGNORMDIST = LOGNORMDAÄž +MODE = ENÇOK_OLAN +NEGBINOMDIST = NEGBİNOMDAÄž +NORMDIST = NORMDAÄž +NORMINV = NORMTERS +NORMSDIST = NORMSDAÄž +NORMSINV = NORMSTERS +PERCENTILE = YÜZDEBİRLİK +PERCENTRANK = YÜZDERANK +POISSON = POISSON +QUARTILE = DÖRTTEBİRLİK +RANK = RANK +STDEV = STDSAPMA +STDEVP = STDSAPMAS +TDIST = TDAÄž +TINV = TTERS +TTEST = TTEST +VAR = VAR +VARP = VARS +WEIBULL = WEIBULL +ZTEST = ZTEST diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AddressHelper.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AddressHelper.php new file mode 100644 index 0000000..535bdee --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AddressHelper.php @@ -0,0 +1,153 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Cell; + +use PhpOffice\PhpSpreadsheet\Exception; + +class AddressHelper +{ + public const R1C1_COORDINATE_REGEX = '/(R((?:\[-?\d*\])|(?:\d*))?)(C((?:\[-?\d*\])|(?:\d*))?)/i'; + + /** + * Converts an R1C1 format cell address to an A1 format cell address. + */ + public static function convertToA1( + string $address, + int $currentRowNumber = 1, + int $currentColumnNumber = 1 + ): string { + $validityCheck = preg_match('/^(R(\[?-?\d*\]?))(C(\[?-?\d*\]?))$/i', $address, $cellReference); + + if ($validityCheck === 0) { + throw new Exception('Invalid R1C1-format Cell Reference'); + } + + $rowReference = $cellReference[2]; + // Empty R reference is the current row + if ($rowReference === '') { + $rowReference = (string) $currentRowNumber; + } + // Bracketed R references are relative to the current row + if ($rowReference[0] === '[') { + $rowReference = $currentRowNumber + (int) trim($rowReference, '[]'); + } + $columnReference = $cellReference[4]; + // Empty C reference is the current column + if ($columnReference === '') { + $columnReference = (string) $currentColumnNumber; + } + // Bracketed C references are relative to the current column + if (is_string($columnReference) && $columnReference[0] === '[') { + $columnReference = $currentColumnNumber + (int) trim($columnReference, '[]'); + } + + if ($columnReference <= 0 || $rowReference <= 0) { + throw new Exception('Invalid R1C1-format Cell Reference, Value out of range'); + } + $A1CellReference = Coordinate::stringFromColumnIndex($columnReference) . $rowReference; + + return $A1CellReference; + } + + protected static function convertSpreadsheetMLFormula(string $formula): string + { + $formula = substr($formula, 3); + $temp = explode('"', $formula); + $key = false; + foreach ($temp as &$value) { + // Only replace in alternate array entries (i.e. non-quoted blocks) + if ($key = !$key) { + $value = str_replace(['[.', ':.', ']'], ['', ':', ''], $value); + } + } + unset($value); + + return implode('"', $temp); + } + + /** + * Converts a formula that uses R1C1/SpreadsheetXML format cell address to an A1 format cell address. + */ + public static function convertFormulaToA1( + string $formula, + int $currentRowNumber = 1, + int $currentColumnNumber = 1 + ): string { + if (substr($formula, 0, 3) == 'of:') { + // We have an old-style SpreadsheetML Formula + return self::convertSpreadsheetMLFormula($formula); + } + + // Convert R1C1 style references to A1 style references (but only when not quoted) + $temp = explode('"', $formula); + $key = false; + foreach ($temp as &$value) { + // Only replace in alternate array entries (i.e. non-quoted blocks) + if ($key = !$key) { + preg_match_all(self::R1C1_COORDINATE_REGEX, $value, $cellReferences, PREG_SET_ORDER + PREG_OFFSET_CAPTURE); + // Reverse the matches array, otherwise all our offsets will become incorrect if we modify our way + // through the formula from left to right. Reversing means that we work right to left.through + // the formula + $cellReferences = array_reverse($cellReferences); + // Loop through each R1C1 style reference in turn, converting it to its A1 style equivalent, + // then modify the formula to use that new reference + foreach ($cellReferences as $cellReference) { + $A1CellReference = self::convertToA1($cellReference[0][0], $currentRowNumber, $currentColumnNumber); + $value = substr_replace($value, $A1CellReference, $cellReference[0][1], strlen($cellReference[0][0])); + } + } + } + unset($value); + + // Then rebuild the formula string + return implode('"', $temp); + } + + /** + * Converts an A1 format cell address to an R1C1 format cell address. + * If $currentRowNumber or $currentColumnNumber are provided, then the R1C1 address will be formatted as a relative address. + */ + public static function convertToR1C1( + string $address, + ?int $currentRowNumber = null, + ?int $currentColumnNumber = null + ): string { + $validityCheck = preg_match(Coordinate::A1_COORDINATE_REGEX, $address, $cellReference); + + if ($validityCheck === 0) { + throw new Exception('Invalid A1-format Cell Reference'); + } + + if ($cellReference['col'][0] === '$') { + // Column must be absolute address + $currentColumnNumber = null; + } + $columnId = Coordinate::columnIndexFromString(ltrim($cellReference['col'], '$')); + + if ($cellReference['row'][0] === '$') { + // Row must be absolute address + $currentRowNumber = null; + } + $rowId = (int) ltrim($cellReference['row'], '$'); + + if ($currentRowNumber !== null) { + if ($rowId === $currentRowNumber) { + $rowId = ''; + } else { + $rowId = '[' . ($rowId - $currentRowNumber) . ']'; + } + } + + if ($currentColumnNumber !== null) { + if ($columnId === $currentColumnNumber) { + $columnId = ''; + } else { + $columnId = '[' . ($columnId - $currentColumnNumber) . ']'; + } + } + + $R1C1Address = "R{$rowId}C{$columnId}"; + + return $R1C1Address; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AddressRange.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AddressRange.php new file mode 100644 index 0000000..5475231 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AddressRange.php @@ -0,0 +1,22 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Cell; + +interface AddressRange +{ + public const MAX_ROW = 1048576; + + public const MAX_COLUMN = 'XFD'; + + /** + * @return mixed + */ + public function from(); + + /** + * @return mixed + */ + public function to(); + + public function __toString(): string; +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AdvancedValueBinder.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AdvancedValueBinder.php new file mode 100644 index 0000000..49631f7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AdvancedValueBinder.php @@ -0,0 +1,210 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Cell; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\Shared\Date; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; + +class AdvancedValueBinder extends DefaultValueBinder implements IValueBinder +{ + /** + * Bind value to a cell. + * + * @param Cell $cell Cell to bind value to + * @param mixed $value Value to bind in cell + * + * @return bool + */ + public function bindValue(Cell $cell, $value = null) + { + if ($value === null) { + return parent::bindValue($cell, $value); + } elseif (is_string($value)) { + // sanitize UTF-8 strings + $value = StringHelper::sanitizeUTF8($value); + } + + // Find out data type + $dataType = parent::dataTypeForValue($value); + + // Style logic - strings + if ($dataType === DataType::TYPE_STRING && !$value instanceof RichText) { + // Test for booleans using locale-setting + if ($value == Calculation::getTRUE()) { + $cell->setValueExplicit(true, DataType::TYPE_BOOL); + + return true; + } elseif ($value == Calculation::getFALSE()) { + $cell->setValueExplicit(false, DataType::TYPE_BOOL); + + return true; + } + + // Check for fractions + if (preg_match('/^([+-]?)\s*(\d+)\s?\/\s*(\d+)$/', $value, $matches)) { + return $this->setProperFraction($matches, $cell); + } elseif (preg_match('/^([+-]?)(\d*) +(\d*)\s?\/\s*(\d*)$/', $value, $matches)) { + return $this->setImproperFraction($matches, $cell); + } + + // Check for percentage + if (preg_match('/^\-?\d*\.?\d*\s?\%$/', $value)) { + return $this->setPercentage($value, $cell); + } + + // Check for currency + $currencyCode = StringHelper::getCurrencyCode(); + $decimalSeparator = StringHelper::getDecimalSeparator(); + $thousandsSeparator = StringHelper::getThousandsSeparator(); + if (preg_match('/^' . preg_quote($currencyCode, '/') . ' *(\d{1,3}(' . preg_quote($thousandsSeparator, '/') . '\d{3})*|(\d+))(' . preg_quote($decimalSeparator, '/') . '\d{2})?$/', $value)) { + // Convert value to number + $value = (float) trim(str_replace([$currencyCode, $thousandsSeparator, $decimalSeparator], ['', '', '.'], $value)); + $cell->setValueExplicit($value, DataType::TYPE_NUMERIC); + // Set style + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getNumberFormat()->setFormatCode( + str_replace('$', $currencyCode, NumberFormat::FORMAT_CURRENCY_USD_SIMPLE) + ); + + return true; + } elseif (preg_match('/^\$ *(\d{1,3}(\,\d{3})*|(\d+))(\.\d{2})?$/', $value)) { + // Convert value to number + $value = (float) trim(str_replace(['$', ','], '', $value)); + $cell->setValueExplicit($value, DataType::TYPE_NUMERIC); + // Set style + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getNumberFormat()->setFormatCode(NumberFormat::FORMAT_CURRENCY_USD_SIMPLE); + + return true; + } + + // Check for time without seconds e.g. '9:45', '09:45' + if (preg_match('/^(\d|[0-1]\d|2[0-3]):[0-5]\d$/', $value)) { + return $this->setTimeHoursMinutes($value, $cell); + } + + // Check for time with seconds '9:45:59', '09:45:59' + if (preg_match('/^(\d|[0-1]\d|2[0-3]):[0-5]\d:[0-5]\d$/', $value)) { + return $this->setTimeHoursMinutesSeconds($value, $cell); + } + + // Check for datetime, e.g. '2008-12-31', '2008-12-31 15:59', '2008-12-31 15:59:10' + if (($d = Date::stringToExcel($value)) !== false) { + // Convert value to number + $cell->setValueExplicit($d, DataType::TYPE_NUMERIC); + // Determine style. Either there is a time part or not. Look for ':' + if (strpos($value, ':') !== false) { + $formatCode = 'yyyy-mm-dd h:mm'; + } else { + $formatCode = 'yyyy-mm-dd'; + } + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getNumberFormat()->setFormatCode($formatCode); + + return true; + } + + // Check for newline character "\n" + if (strpos($value, "\n") !== false) { + $cell->setValueExplicit($value, DataType::TYPE_STRING); + // Set style + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getAlignment()->setWrapText(true); + + return true; + } + } + + // Not bound yet? Use parent... + return parent::bindValue($cell, $value); + } + + protected function setImproperFraction(array $matches, Cell $cell): bool + { + // Convert value to number + $value = $matches[2] + ($matches[3] / $matches[4]); + if ($matches[1] === '-') { + $value = 0 - $value; + } + $cell->setValueExplicit((float) $value, DataType::TYPE_NUMERIC); + + // Build the number format mask based on the size of the matched values + $dividend = str_repeat('?', strlen($matches[3])); + $divisor = str_repeat('?', strlen($matches[4])); + $fractionMask = "# {$dividend}/{$divisor}"; + // Set style + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getNumberFormat()->setFormatCode($fractionMask); + + return true; + } + + protected function setProperFraction(array $matches, Cell $cell): bool + { + // Convert value to number + $value = $matches[2] / $matches[3]; + if ($matches[1] === '-') { + $value = 0 - $value; + } + $cell->setValueExplicit((float) $value, DataType::TYPE_NUMERIC); + + // Build the number format mask based on the size of the matched values + $dividend = str_repeat('?', strlen($matches[2])); + $divisor = str_repeat('?', strlen($matches[3])); + $fractionMask = "{$dividend}/{$divisor}"; + // Set style + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getNumberFormat()->setFormatCode($fractionMask); + + return true; + } + + protected function setPercentage(string $value, Cell $cell): bool + { + // Convert value to number + $value = ((float) str_replace('%', '', $value)) / 100; + $cell->setValueExplicit($value, DataType::TYPE_NUMERIC); + + // Set style + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getNumberFormat()->setFormatCode(NumberFormat::FORMAT_PERCENTAGE_00); + + return true; + } + + protected function setTimeHoursMinutes(string $value, Cell $cell): bool + { + // Convert value to number + [$hours, $minutes] = explode(':', $value); + $hours = (int) $hours; + $minutes = (int) $minutes; + $days = ($hours / 24) + ($minutes / 1440); + $cell->setValueExplicit($days, DataType::TYPE_NUMERIC); + + // Set style + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getNumberFormat()->setFormatCode(NumberFormat::FORMAT_DATE_TIME3); + + return true; + } + + protected function setTimeHoursMinutesSeconds(string $value, Cell $cell): bool + { + // Convert value to number + [$hours, $minutes, $seconds] = explode(':', $value); + $hours = (int) $hours; + $minutes = (int) $minutes; + $seconds = (int) $seconds; + $days = ($hours / 24) + ($minutes / 1440) + ($seconds / 86400); + $cell->setValueExplicit($days, DataType::TYPE_NUMERIC); + + // Set style + $cell->getWorksheet()->getStyle($cell->getCoordinate()) + ->getNumberFormat()->setFormatCode(NumberFormat::FORMAT_DATE_TIME4); + + return true; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Cell.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Cell.php new file mode 100644 index 0000000..2005694 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Cell.php @@ -0,0 +1,722 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Cell; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Collection\Cells; +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\Shared\Date as SharedDate; +use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\CellStyleAssessor; +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; +use PhpOffice\PhpSpreadsheet\Style\Style; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; +use Throwable; + +class Cell +{ + /** + * Value binder to use. + * + * @var IValueBinder + */ + private static $valueBinder; + + /** + * Value of the cell. + * + * @var mixed + */ + private $value; + + /** + * Calculated value of the cell (used for caching) + * This returns the value last calculated by MS Excel or whichever spreadsheet program was used to + * create the original spreadsheet file. + * Note that this value is not guaranteed to reflect the actual calculated value because it is + * possible that auto-calculation was disabled in the original spreadsheet, and underlying data + * values used by the formula have changed since it was last calculated. + * + * @var mixed + */ + private $calculatedValue; + + /** + * Type of the cell data. + * + * @var string + */ + private $dataType; + + /** + * Collection of cells. + * + * @var Cells + */ + private $parent; + + /** + * Index to cellXf. + * + * @var int + */ + private $xfIndex = 0; + + /** + * Attributes of the formula. + */ + private $formulaAttributes; + + /** + * Update the cell into the cell collection. + * + * @return $this + */ + public function updateInCollection(): self + { + $this->parent->update($this); + + return $this; + } + + public function detach(): void + { + // @phpstan-ignore-next-line + $this->parent = null; + } + + public function attach(Cells $parent): void + { + $this->parent = $parent; + } + + /** + * Create a new Cell. + * + * @param mixed $value + * @param string $dataType + */ + public function __construct($value, $dataType, Worksheet $worksheet) + { + // Initialise cell value + $this->value = $value; + + // Set worksheet cache + $this->parent = $worksheet->getCellCollection(); + + // Set datatype? + if ($dataType !== null) { + if ($dataType == DataType::TYPE_STRING2) { + $dataType = DataType::TYPE_STRING; + } + $this->dataType = $dataType; + } elseif (!self::getValueBinder()->bindValue($this, $value)) { + throw new Exception('Value could not be bound to cell.'); + } + } + + /** + * Get cell coordinate column. + * + * @return string + */ + public function getColumn() + { + return $this->parent->getCurrentColumn(); + } + + /** + * Get cell coordinate row. + * + * @return int + */ + public function getRow() + { + return $this->parent->getCurrentRow(); + } + + /** + * Get cell coordinate. + * + * @return string + */ + public function getCoordinate() + { + try { + $coordinate = $this->parent->getCurrentCoordinate(); + } catch (Throwable $e) { + $coordinate = null; + } + if ($coordinate === null) { + throw new Exception('Coordinate no longer exists'); + } + + return $coordinate; + } + + /** + * Get cell value. + * + * @return mixed + */ + public function getValue() + { + return $this->value; + } + + /** + * Get cell value with formatting. + * + * @return string + */ + public function getFormattedValue() + { + return (string) NumberFormat::toFormattedString( + $this->getCalculatedValue(), + $this->getStyle() + ->getNumberFormat()->getFormatCode() + ); + } + + /** + * Set cell value. + * + * Sets the value for a cell, automatically determining the datatype using the value binder + * + * @param mixed $value Value + * + * @return $this + */ + public function setValue($value) + { + if (!self::getValueBinder()->bindValue($this, $value)) { + throw new Exception('Value could not be bound to cell.'); + } + + return $this; + } + + /** + * Set the value for a cell, with the explicit data type passed to the method (bypassing any use of the value binder). + * + * @param mixed $value Value + * @param string $dataType Explicit data type, see DataType::TYPE_* + * Note that PhpSpreadsheet does not validate that the value and datatype are consistent, in using this + * method, then it is your responsibility as an end-user developer to validate that the value and + * the datatype match. + * If you do mismatch value and datatpe, then the value you enter may be changed to match the datatype + * that you specify. + * + * @return Cell + */ + public function setValueExplicit($value, $dataType) + { + // set the value according to data type + switch ($dataType) { + case DataType::TYPE_NULL: + $this->value = null; + + break; + case DataType::TYPE_STRING2: + $dataType = DataType::TYPE_STRING; + // no break + case DataType::TYPE_STRING: + // Synonym for string + case DataType::TYPE_INLINE: + // Rich text + $this->value = DataType::checkString($value); + + break; + case DataType::TYPE_NUMERIC: + if (is_string($value) && !is_numeric($value)) { + throw new Exception('Invalid numeric value for datatype Numeric'); + } + $this->value = 0 + $value; + + break; + case DataType::TYPE_FORMULA: + $this->value = (string) $value; + + break; + case DataType::TYPE_BOOL: + $this->value = (bool) $value; + + break; + case DataType::TYPE_ISO_DATE: + $this->value = SharedDate::convertIsoDate($value); + $dataType = DataType::TYPE_NUMERIC; + + break; + case DataType::TYPE_ERROR: + $this->value = DataType::checkErrorCode($value); + + break; + default: + throw new Exception('Invalid datatype: ' . $dataType); + + break; + } + + // set the datatype + $this->dataType = $dataType; + + return $this->updateInCollection(); + } + + /** + * Get calculated cell value. + * + * @param bool $resetLog Whether the calculation engine logger should be reset or not + * + * @return mixed + */ + public function getCalculatedValue($resetLog = true) + { + if ($this->dataType === DataType::TYPE_FORMULA) { + try { + $index = $this->getWorksheet()->getParent()->getActiveSheetIndex(); + $selected = $this->getWorksheet()->getSelectedCells(); + $result = Calculation::getInstance( + $this->getWorksheet()->getParent() + )->calculateCellValue($this, $resetLog); + $this->getWorksheet()->setSelectedCells($selected); + $this->getWorksheet()->getParent()->setActiveSheetIndex($index); + // We don't yet handle array returns + if (is_array($result)) { + while (is_array($result)) { + $result = array_shift($result); + } + } + } catch (Exception $ex) { + if (($ex->getMessage() === 'Unable to access External Workbook') && ($this->calculatedValue !== null)) { + return $this->calculatedValue; // Fallback for calculations referencing external files. + } elseif (preg_match('/[Uu]ndefined (name|offset: 2|array key 2)/', $ex->getMessage()) === 1) { + return ExcelError::NAME(); + } + + throw new \PhpOffice\PhpSpreadsheet\Calculation\Exception( + $this->getWorksheet()->getTitle() . '!' . $this->getCoordinate() . ' -> ' . $ex->getMessage() + ); + } + + if ($result === '#Not Yet Implemented') { + return $this->calculatedValue; // Fallback if calculation engine does not support the formula. + } + + return $result; + } elseif ($this->value instanceof RichText) { + return $this->value->getPlainText(); + } + + return $this->value; + } + + /** + * Set old calculated value (cached). + * + * @param mixed $originalValue Value + * + * @return Cell + */ + public function setCalculatedValue($originalValue) + { + if ($originalValue !== null) { + $this->calculatedValue = (is_numeric($originalValue)) ? (float) $originalValue : $originalValue; + } + + return $this->updateInCollection(); + } + + /** + * Get old calculated value (cached) + * This returns the value last calculated by MS Excel or whichever spreadsheet program was used to + * create the original spreadsheet file. + * Note that this value is not guaranteed to reflect the actual calculated value because it is + * possible that auto-calculation was disabled in the original spreadsheet, and underlying data + * values used by the formula have changed since it was last calculated. + * + * @return mixed + */ + public function getOldCalculatedValue() + { + return $this->calculatedValue; + } + + /** + * Get cell data type. + * + * @return string + */ + public function getDataType() + { + return $this->dataType; + } + + /** + * Set cell data type. + * + * @param string $dataType see DataType::TYPE_* + * + * @return Cell + */ + public function setDataType($dataType) + { + if ($dataType == DataType::TYPE_STRING2) { + $dataType = DataType::TYPE_STRING; + } + $this->dataType = $dataType; + + return $this->updateInCollection(); + } + + /** + * Identify if the cell contains a formula. + */ + public function isFormula(): bool + { + return $this->dataType === DataType::TYPE_FORMULA && $this->getStyle()->getQuotePrefix() === false; + } + + /** + * Does this cell contain Data validation rules? + */ + public function hasDataValidation(): bool + { + if (!isset($this->parent)) { + throw new Exception('Cannot check for data validation when cell is not bound to a worksheet'); + } + + return $this->getWorksheet()->dataValidationExists($this->getCoordinate()); + } + + /** + * Get Data validation rules. + * + * @return DataValidation + */ + public function getDataValidation() + { + if (!isset($this->parent)) { + throw new Exception('Cannot get data validation for cell that is not bound to a worksheet'); + } + + return $this->getWorksheet()->getDataValidation($this->getCoordinate()); + } + + /** + * Set Data validation rules. + */ + public function setDataValidation(?DataValidation $dataValidation = null): self + { + if (!isset($this->parent)) { + throw new Exception('Cannot set data validation for cell that is not bound to a worksheet'); + } + + $this->getWorksheet()->setDataValidation($this->getCoordinate(), $dataValidation); + + return $this->updateInCollection(); + } + + /** + * Does this cell contain valid value? + * + * @return bool + */ + public function hasValidValue() + { + $validator = new DataValidator(); + + return $validator->isValid($this); + } + + /** + * Does this cell contain a Hyperlink? + * + * @return bool + */ + public function hasHyperlink() + { + if (!isset($this->parent)) { + throw new Exception('Cannot check for hyperlink when cell is not bound to a worksheet'); + } + + return $this->getWorksheet()->hyperlinkExists($this->getCoordinate()); + } + + /** + * Get Hyperlink. + * + * @return Hyperlink + */ + public function getHyperlink() + { + if (!isset($this->parent)) { + throw new Exception('Cannot get hyperlink for cell that is not bound to a worksheet'); + } + + return $this->getWorksheet()->getHyperlink($this->getCoordinate()); + } + + /** + * Set Hyperlink. + * + * @return Cell + */ + public function setHyperlink(?Hyperlink $hyperlink = null) + { + if (!isset($this->parent)) { + throw new Exception('Cannot set hyperlink for cell that is not bound to a worksheet'); + } + + $this->getWorksheet()->setHyperlink($this->getCoordinate(), $hyperlink); + + return $this->updateInCollection(); + } + + /** + * Get cell collection. + * + * @return Cells + */ + public function getParent() + { + return $this->parent; + } + + /** + * Get parent worksheet. + * + * @return Worksheet + */ + public function getWorksheet() + { + try { + $worksheet = $this->parent->getParent(); + } catch (Throwable $e) { + $worksheet = null; + } + + if ($worksheet === null) { + throw new Exception('Worksheet no longer exists'); + } + + return $worksheet; + } + + /** + * Is this cell in a merge range. + * + * @return bool + */ + public function isInMergeRange() + { + return (bool) $this->getMergeRange(); + } + + /** + * Is this cell the master (top left cell) in a merge range (that holds the actual data value). + * + * @return bool + */ + public function isMergeRangeValueCell() + { + if ($mergeRange = $this->getMergeRange()) { + $mergeRange = Coordinate::splitRange($mergeRange); + [$startCell] = $mergeRange[0]; + if ($this->getCoordinate() === $startCell) { + return true; + } + } + + return false; + } + + /** + * If this cell is in a merge range, then return the range. + * + * @return false|string + */ + public function getMergeRange() + { + foreach ($this->getWorksheet()->getMergeCells() as $mergeRange) { + if ($this->isInRange($mergeRange)) { + return $mergeRange; + } + } + + return false; + } + + /** + * Get cell style. + */ + public function getStyle(): Style + { + return $this->getWorksheet()->getStyle($this->getCoordinate()); + } + + /** + * Get cell style. + */ + public function getAppliedStyle(): Style + { + if ($this->getWorksheet()->conditionalStylesExists($this->getCoordinate()) === false) { + return $this->getStyle(); + } + $range = $this->getWorksheet()->getConditionalRange($this->getCoordinate()); + if ($range === null) { + return $this->getStyle(); + } + + $matcher = new CellStyleAssessor($this, $range); + + return $matcher->matchConditions($this->getWorksheet()->getConditionalStyles($this->getCoordinate())); + } + + /** + * Re-bind parent. + * + * @return Cell + */ + public function rebindParent(Worksheet $parent) + { + $this->parent = $parent->getCellCollection(); + + return $this->updateInCollection(); + } + + /** + * Is cell in a specific range? + * + * @param string $range Cell range (e.g. A1:A1) + * + * @return bool + */ + public function isInRange($range) + { + [$rangeStart, $rangeEnd] = Coordinate::rangeBoundaries($range); + + // Translate properties + $myColumn = Coordinate::columnIndexFromString($this->getColumn()); + $myRow = $this->getRow(); + + // Verify if cell is in range + return ($rangeStart[0] <= $myColumn) && ($rangeEnd[0] >= $myColumn) && + ($rangeStart[1] <= $myRow) && ($rangeEnd[1] >= $myRow); + } + + /** + * Compare 2 cells. + * + * @param Cell $a Cell a + * @param Cell $b Cell b + * + * @return int Result of comparison (always -1 or 1, never zero!) + */ + public static function compareCells(self $a, self $b) + { + if ($a->getRow() < $b->getRow()) { + return -1; + } elseif ($a->getRow() > $b->getRow()) { + return 1; + } elseif (Coordinate::columnIndexFromString($a->getColumn()) < Coordinate::columnIndexFromString($b->getColumn())) { + return -1; + } + + return 1; + } + + /** + * Get value binder to use. + * + * @return IValueBinder + */ + public static function getValueBinder() + { + if (self::$valueBinder === null) { + self::$valueBinder = new DefaultValueBinder(); + } + + return self::$valueBinder; + } + + /** + * Set value binder to use. + */ + public static function setValueBinder(IValueBinder $binder): void + { + self::$valueBinder = $binder; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if ((is_object($value)) && ($key != 'parent')) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } + + /** + * Get index to cellXf. + * + * @return int + */ + public function getXfIndex() + { + return $this->xfIndex; + } + + /** + * Set index to cellXf. + * + * @param int $indexValue + * + * @return Cell + */ + public function setXfIndex($indexValue) + { + $this->xfIndex = $indexValue; + + return $this->updateInCollection(); + } + + /** + * Set the formula attributes. + * + * @param mixed $attributes + * + * @return $this + */ + public function setFormulaAttributes($attributes) + { + $this->formulaAttributes = $attributes; + + return $this; + } + + /** + * Get the formula attributes. + */ + public function getFormulaAttributes() + { + return $this->formulaAttributes; + } + + /** + * Convert to string. + * + * @return string + */ + public function __toString() + { + return (string) $this->getValue(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/CellAddress.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/CellAddress.php new file mode 100644 index 0000000..a0c544f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/CellAddress.php @@ -0,0 +1,166 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Cell; + +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class CellAddress +{ + /** + * @var ?Worksheet + */ + protected $worksheet; + + /** + * @var string + */ + protected $cellAddress; + + /** + * @var string + */ + protected $columnName; + + /** + * @var int + */ + protected $columnId; + + /** + * @var int + */ + protected $rowId; + + public function __construct(string $cellAddress, ?Worksheet $worksheet = null) + { + $this->cellAddress = str_replace('$', '', $cellAddress); + [$this->columnId, $this->rowId, $this->columnName] = Coordinate::indexesFromString($this->cellAddress); + $this->worksheet = $worksheet; + } + + /** + * @param mixed $columnId + * @param mixed $rowId + */ + private static function validateColumnAndRow($columnId, $rowId): void + { + if (!is_numeric($columnId) || $columnId <= 0 || !is_numeric($rowId) || $rowId <= 0) { + throw new Exception('Row and Column Ids must be positive integer values'); + } + } + + /** + * @param mixed $columnId + * @param mixed $rowId + */ + public static function fromColumnAndRow($columnId, $rowId, ?Worksheet $worksheet = null): self + { + self::validateColumnAndRow($columnId, $rowId); + + /** @phpstan-ignore-next-line */ + return new static(Coordinate::stringFromColumnIndex($columnId) . ((string) $rowId), $worksheet); + } + + public static function fromColumnRowArray(array $array, ?Worksheet $worksheet = null): self + { + [$columnId, $rowId] = $array; + + return static::fromColumnAndRow($columnId, $rowId, $worksheet); + } + + /** + * @param mixed $cellAddress + */ + public static function fromCellAddress($cellAddress, ?Worksheet $worksheet = null): self + { + /** @phpstan-ignore-next-line */ + return new static($cellAddress, $worksheet); + } + + /** + * The returned address string will contain the worksheet name as well, if available, + * (ie. if a Worksheet was provided to the constructor). + * e.g. "'Mark''s Worksheet'!C5". + */ + public function fullCellAddress(): string + { + if ($this->worksheet !== null) { + $title = str_replace("'", "''", $this->worksheet->getTitle()); + + return "'{$title}'!{$this->cellAddress}"; + } + + return $this->cellAddress; + } + + public function worksheet(): ?Worksheet + { + return $this->worksheet; + } + + /** + * The returned address string will contain just the column/row address, + * (even if a Worksheet was provided to the constructor). + * e.g. "C5". + */ + public function cellAddress(): string + { + return $this->cellAddress; + } + + public function rowId(): int + { + return $this->rowId; + } + + public function columnId(): int + { + return $this->columnId; + } + + public function columnName(): string + { + return $this->columnName; + } + + public function nextRow(int $offset = 1): self + { + $newRowId = $this->rowId + $offset; + if ($newRowId < 1) { + $newRowId = 1; + } + + return static::fromColumnAndRow($this->columnId, $newRowId); + } + + public function previousRow(int $offset = 1): self + { + return $this->nextRow(0 - $offset); + } + + public function nextColumn(int $offset = 1): self + { + $newColumnId = $this->columnId + $offset; + if ($newColumnId < 1) { + $newColumnId = 1; + } + + return static::fromColumnAndRow($newColumnId, $this->rowId); + } + + public function previousColumn(int $offset = 1): self + { + return $this->nextColumn(0 - $offset); + } + + /** + * The returned address string will contain the worksheet name as well, if available, + * (ie. if a Worksheet was provided to the constructor). + * e.g. "'Mark''s Worksheet'!C5". + */ + public function __toString() + { + return $this->fullCellAddress(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/CellRange.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/CellRange.php new file mode 100644 index 0000000..908a0d0 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/CellRange.php @@ -0,0 +1,136 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Cell; + +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class CellRange implements AddressRange +{ + /** + * @var CellAddress + */ + protected $from; + + /** + * @var CellAddress + */ + protected $to; + + public function __construct(CellAddress $from, CellAddress $to) + { + $this->validateFromTo($from, $to); + } + + private function validateFromTo(CellAddress $from, CellAddress $to): void + { + // Identify actual top-left and bottom-right values (in case we've been given top-right and bottom-left) + $firstColumn = min($from->columnId(), $to->columnId()); + $firstRow = min($from->rowId(), $to->rowId()); + $lastColumn = max($from->columnId(), $to->columnId()); + $lastRow = max($from->rowId(), $to->rowId()); + + $fromWorksheet = $from->worksheet(); + $toWorksheet = $to->worksheet(); + $this->validateWorksheets($fromWorksheet, $toWorksheet); + + $this->from = $this->cellAddressWrapper($firstColumn, $firstRow, $fromWorksheet); + $this->to = $this->cellAddressWrapper($lastColumn, $lastRow, $toWorksheet); + } + + private function validateWorksheets(?Worksheet $fromWorksheet, ?Worksheet $toWorksheet): void + { + if ($fromWorksheet !== null && $toWorksheet !== null) { + // We could simply compare worksheets rather than worksheet titles; but at some point we may introduce + // support for 3d ranges; and at that point we drop this check and let the validation fall through + // to the check for same workbook; but unless we check on titles, this test will also detect if the + // worksheets are in different spreadsheets, and the next check will never execute or throw its + // own exception. + if ($fromWorksheet->getTitle() !== $toWorksheet->getTitle()) { + throw new Exception('3d Cell Ranges are not supported'); + } elseif ($fromWorksheet->getParent() !== $toWorksheet->getParent()) { + throw new Exception('Worksheets must be in the same spreadsheet'); + } + } + } + + private function cellAddressWrapper(int $column, int $row, ?Worksheet $worksheet = null): CellAddress + { + $cellAddress = Coordinate::stringFromColumnIndex($column) . (string) $row; + + return new class ($cellAddress, $worksheet) extends CellAddress { + public function nextRow(int $offset = 1): CellAddress + { + /** @var CellAddress $result */ + $result = parent::nextRow($offset); + $this->rowId = $result->rowId; + $this->cellAddress = $result->cellAddress; + + return $this; + } + + public function previousRow(int $offset = 1): CellAddress + { + /** @var CellAddress $result */ + $result = parent::previousRow($offset); + $this->rowId = $result->rowId; + $this->cellAddress = $result->cellAddress; + + return $this; + } + + public function nextColumn(int $offset = 1): CellAddress + { + /** @var CellAddress $result */ + $result = parent::nextColumn($offset); + $this->columnId = $result->columnId; + $this->columnName = $result->columnName; + $this->cellAddress = $result->cellAddress; + + return $this; + } + + public function previousColumn(int $offset = 1): CellAddress + { + /** @var CellAddress $result */ + $result = parent::previousColumn($offset); + $this->columnId = $result->columnId; + $this->columnName = $result->columnName; + $this->cellAddress = $result->cellAddress; + + return $this; + } + }; + } + + public function from(): CellAddress + { + // Re-order from/to in case the cell addresses have been modified + $this->validateFromTo($this->from, $this->to); + + return $this->from; + } + + public function to(): CellAddress + { + // Re-order from/to in case the cell addresses have been modified + $this->validateFromTo($this->from, $this->to); + + return $this->to; + } + + public function __toString(): string + { + // Re-order from/to in case the cell addresses have been modified + $this->validateFromTo($this->from, $this->to); + + if ($this->from->cellAddress() === $this->to->cellAddress()) { + return "{$this->from->fullCellAddress()}"; + } + + $fromAddress = $this->from->fullCellAddress(); + $toAddress = $this->to->cellAddress(); + + return "{$fromAddress}:{$toAddress}"; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/ColumnRange.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/ColumnRange.php new file mode 100644 index 0000000..1e521a1 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/ColumnRange.php @@ -0,0 +1,125 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Cell; + +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class ColumnRange implements AddressRange +{ + /** + * @var ?Worksheet + */ + protected $worksheet; + + /** + * @var int + */ + protected $from; + + /** + * @var int + */ + protected $to; + + public function __construct(string $from, ?string $to = null, ?Worksheet $worksheet = null) + { + $this->validateFromTo( + Coordinate::columnIndexFromString($from), + Coordinate::columnIndexFromString($to ?? $from) + ); + $this->worksheet = $worksheet; + } + + public static function fromColumnIndexes(int $from, int $to, ?Worksheet $worksheet = null): self + { + return new self(Coordinate::stringFromColumnIndex($from), Coordinate::stringFromColumnIndex($to), $worksheet); + } + + /** + * @param array<int|string> $array + */ + public static function fromArray(array $array, ?Worksheet $worksheet = null): self + { + array_walk( + $array, + function (&$column): void { + $column = is_numeric($column) ? Coordinate::stringFromColumnIndex((int) $column) : $column; + } + ); + /** @var string $from */ + /** @var string $to */ + [$from, $to] = $array; + + return new self($from, $to, $worksheet); + } + + private function validateFromTo(int $from, int $to): void + { + // Identify actual top and bottom values (in case we've been given bottom and top) + $this->from = min($from, $to); + $this->to = max($from, $to); + } + + public function columnCount(): int + { + return $this->to - $this->from + 1; + } + + public function shiftDown(int $offset = 1): self + { + $newFrom = $this->from + $offset; + $newFrom = ($newFrom < 1) ? 1 : $newFrom; + + $newTo = $this->to + $offset; + $newTo = ($newTo < 1) ? 1 : $newTo; + + return self::fromColumnIndexes($newFrom, $newTo, $this->worksheet); + } + + public function shiftUp(int $offset = 1): self + { + return $this->shiftDown(0 - $offset); + } + + public function from(): string + { + return Coordinate::stringFromColumnIndex($this->from); + } + + public function to(): string + { + return Coordinate::stringFromColumnIndex($this->to); + } + + public function fromIndex(): int + { + return $this->from; + } + + public function toIndex(): int + { + return $this->to; + } + + public function toCellRange(): CellRange + { + return new CellRange( + CellAddress::fromColumnAndRow($this->from, 1, $this->worksheet), + CellAddress::fromColumnAndRow($this->to, AddressRange::MAX_ROW) + ); + } + + public function __toString(): string + { + $from = $this->from(); + $to = $this->to(); + + if ($this->worksheet !== null) { + $title = str_replace("'", "''", $this->worksheet->getTitle()); + + return "'{$title}'!{$from}:{$to}"; + } + + return "{$from}:{$to}"; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Coordinate.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Coordinate.php new file mode 100644 index 0000000..5067839 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Coordinate.php @@ -0,0 +1,582 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Cell; + +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +/** + * Helper class to manipulate cell coordinates. + * + * Columns indexes and rows are always based on 1, **not** on 0. This match the behavior + * that Excel users are used to, and also match the Excel functions `COLUMN()` and `ROW()`. + */ +abstract class Coordinate +{ + public const A1_COORDINATE_REGEX = '/^(?<col>\$?[A-Z]{1,3})(?<row>\$?\d{1,7})$/i'; + + /** + * Default range variable constant. + * + * @var string + */ + const DEFAULT_RANGE = 'A1:A1'; + + /** + * Coordinate from string. + * + * @param string $cellAddress eg: 'A1' + * + * @return array{0: string, 1: string} Array containing column and row (indexes 0 and 1) + */ + public static function coordinateFromString($cellAddress) + { + if (preg_match(self::A1_COORDINATE_REGEX, $cellAddress, $matches)) { + return [$matches['col'], $matches['row']]; + } elseif (self::coordinateIsRange($cellAddress)) { + throw new Exception('Cell coordinate string can not be a range of cells'); + } elseif ($cellAddress == '') { + throw new Exception('Cell coordinate can not be zero-length string'); + } + + throw new Exception('Invalid cell coordinate ' . $cellAddress); + } + + /** + * Get indexes from a string coordinates. + * + * @param string $coordinates eg: 'A1', '$B$12' + * + * @return array{0: int, 1: int, 2: string} Array containing column and row index, and column string + */ + public static function indexesFromString(string $coordinates): array + { + [$column, $row] = self::coordinateFromString($coordinates); + $column = ltrim($column, '$'); + + return [ + self::columnIndexFromString($column), + (int) ltrim($row, '$'), + $column, + ]; + } + + /** + * Checks if a Cell Address represents a range of cells. + * + * @param string $cellAddress eg: 'A1' or 'A1:A2' or 'A1:A2,C1:C2' + * + * @return bool Whether the coordinate represents a range of cells + */ + public static function coordinateIsRange($cellAddress) + { + return (strpos($cellAddress, ':') !== false) || (strpos($cellAddress, ',') !== false); + } + + /** + * Make string row, column or cell coordinate absolute. + * + * @param string $cellAddress e.g. 'A' or '1' or 'A1' + * Note that this value can be a row or column reference as well as a cell reference + * + * @return string Absolute coordinate e.g. '$A' or '$1' or '$A$1' + */ + public static function absoluteReference($cellAddress) + { + if (self::coordinateIsRange($cellAddress)) { + throw new Exception('Cell coordinate string can not be a range of cells'); + } + + // Split out any worksheet name from the reference + [$worksheet, $cellAddress] = Worksheet::extractSheetTitle($cellAddress, true); + if ($worksheet > '') { + $worksheet .= '!'; + } + + // Create absolute coordinate + $cellAddress = "$cellAddress"; + if (ctype_digit($cellAddress)) { + return $worksheet . '$' . $cellAddress; + } elseif (ctype_alpha($cellAddress)) { + return $worksheet . '$' . strtoupper($cellAddress); + } + + return $worksheet . self::absoluteCoordinate($cellAddress); + } + + /** + * Make string coordinate absolute. + * + * @param string $cellAddress e.g. 'A1' + * + * @return string Absolute coordinate e.g. '$A$1' + */ + public static function absoluteCoordinate($cellAddress) + { + if (self::coordinateIsRange($cellAddress)) { + throw new Exception('Cell coordinate string can not be a range of cells'); + } + + // Split out any worksheet name from the coordinate + [$worksheet, $cellAddress] = Worksheet::extractSheetTitle($cellAddress, true); + if ($worksheet > '') { + $worksheet .= '!'; + } + + // Create absolute coordinate + [$column, $row] = self::coordinateFromString($cellAddress); + $column = ltrim($column, '$'); + $row = ltrim($row, '$'); + + return $worksheet . '$' . $column . '$' . $row; + } + + /** + * Split range into coordinate strings. + * + * @param string $range e.g. 'B4:D9' or 'B4:D9,H2:O11' or 'B4' + * + * @return array Array containing one or more arrays containing one or two coordinate strings + * e.g. ['B4','D9'] or [['B4','D9'], ['H2','O11']] + * or ['B4'] + */ + public static function splitRange($range) + { + // Ensure $pRange is a valid range + if (empty($range)) { + $range = self::DEFAULT_RANGE; + } + + $exploded = explode(',', $range); + $counter = count($exploded); + for ($i = 0; $i < $counter; ++$i) { + // @phpstan-ignore-next-line + $exploded[$i] = explode(':', $exploded[$i]); + } + + return $exploded; + } + + /** + * Build range from coordinate strings. + * + * @param array $range Array containing one or more arrays containing one or two coordinate strings + * + * @return string String representation of $pRange + */ + public static function buildRange(array $range) + { + // Verify range + if (empty($range) || !is_array($range[0])) { + throw new Exception('Range does not contain any information'); + } + + // Build range + $counter = count($range); + for ($i = 0; $i < $counter; ++$i) { + $range[$i] = implode(':', $range[$i]); + } + + return implode(',', $range); + } + + /** + * Calculate range boundaries. + * + * @param string $range Cell range, Single Cell, Row/Column Range (e.g. A1:A1, B2, B:C, 2:3) + * + * @return array Range coordinates [Start Cell, End Cell] + * where Start Cell and End Cell are arrays (Column Number, Row Number) + */ + public static function rangeBoundaries(string $range): array + { + // Ensure $pRange is a valid range + if (empty($range)) { + $range = self::DEFAULT_RANGE; + } + + // Uppercase coordinate + $range = strtoupper($range); + + // Extract range + if (strpos($range, ':') === false) { + $rangeA = $rangeB = $range; + } else { + [$rangeA, $rangeB] = explode(':', $range); + } + + if (is_numeric($rangeA) && is_numeric($rangeB)) { + $rangeA = 'A' . $rangeA; + $rangeB = AddressRange::MAX_COLUMN . $rangeB; + } + + if (ctype_alpha($rangeA) && ctype_alpha($rangeB)) { + $rangeA = $rangeA . '1'; + $rangeB = $rangeB . AddressRange::MAX_ROW; + } + + // Calculate range outer borders + $rangeStart = self::coordinateFromString($rangeA); + $rangeEnd = self::coordinateFromString($rangeB); + + // Translate column into index + $rangeStart[0] = self::columnIndexFromString($rangeStart[0]); + $rangeEnd[0] = self::columnIndexFromString($rangeEnd[0]); + + return [$rangeStart, $rangeEnd]; + } + + /** + * Calculate range dimension. + * + * @param string $range Cell range, Single Cell, Row/Column Range (e.g. A1:A1, B2, B:C, 2:3) + * + * @return array Range dimension (width, height) + */ + public static function rangeDimension($range) + { + // Calculate range outer borders + [$rangeStart, $rangeEnd] = self::rangeBoundaries($range); + + return [($rangeEnd[0] - $rangeStart[0] + 1), ($rangeEnd[1] - $rangeStart[1] + 1)]; + } + + /** + * Calculate range boundaries. + * + * @param string $range Cell range, Single Cell, Row/Column Range (e.g. A1:A1, B2, B:C, 2:3) + * + * @return array Range coordinates [Start Cell, End Cell] + * where Start Cell and End Cell are arrays [Column ID, Row Number] + */ + public static function getRangeBoundaries($range) + { + [$rangeA, $rangeB] = self::rangeBoundaries($range); + + return [ + [self::stringFromColumnIndex($rangeA[0]), $rangeA[1]], + [self::stringFromColumnIndex($rangeB[0]), $rangeB[1]], + ]; + } + + /** + * Column index from string. + * + * @param string $columnAddress eg 'A' + * + * @return int Column index (A = 1) + */ + public static function columnIndexFromString($columnAddress) + { + // Using a lookup cache adds a slight memory overhead, but boosts speed + // caching using a static within the method is faster than a class static, + // though it's additional memory overhead + static $indexCache = []; + + if (isset($indexCache[$columnAddress])) { + return $indexCache[$columnAddress]; + } + // It's surprising how costly the strtoupper() and ord() calls actually are, so we use a lookup array + // rather than use ord() and make it case insensitive to get rid of the strtoupper() as well. + // Because it's a static, there's no significant memory overhead either. + static $columnLookup = [ + 'A' => 1, 'B' => 2, 'C' => 3, 'D' => 4, 'E' => 5, 'F' => 6, 'G' => 7, 'H' => 8, 'I' => 9, 'J' => 10, + 'K' => 11, 'L' => 12, 'M' => 13, 'N' => 14, 'O' => 15, 'P' => 16, 'Q' => 17, 'R' => 18, 'S' => 19, + 'T' => 20, 'U' => 21, 'V' => 22, 'W' => 23, 'X' => 24, 'Y' => 25, 'Z' => 26, + 'a' => 1, 'b' => 2, 'c' => 3, 'd' => 4, 'e' => 5, 'f' => 6, 'g' => 7, 'h' => 8, 'i' => 9, 'j' => 10, + 'k' => 11, 'l' => 12, 'm' => 13, 'n' => 14, 'o' => 15, 'p' => 16, 'q' => 17, 'r' => 18, 's' => 19, + 't' => 20, 'u' => 21, 'v' => 22, 'w' => 23, 'x' => 24, 'y' => 25, 'z' => 26, + ]; + + // We also use the language construct isset() rather than the more costly strlen() function to match the + // length of $columnAddress for improved performance + if (isset($columnAddress[0])) { + if (!isset($columnAddress[1])) { + $indexCache[$columnAddress] = $columnLookup[$columnAddress]; + + return $indexCache[$columnAddress]; + } elseif (!isset($columnAddress[2])) { + $indexCache[$columnAddress] = $columnLookup[$columnAddress[0]] * 26 + + $columnLookup[$columnAddress[1]]; + + return $indexCache[$columnAddress]; + } elseif (!isset($columnAddress[3])) { + $indexCache[$columnAddress] = $columnLookup[$columnAddress[0]] * 676 + + $columnLookup[$columnAddress[1]] * 26 + + $columnLookup[$columnAddress[2]]; + + return $indexCache[$columnAddress]; + } + } + + throw new Exception( + 'Column string index can not be ' . ((isset($columnAddress[0])) ? 'longer than 3 characters' : 'empty') + ); + } + + /** + * String from column index. + * + * @param int $columnIndex Column index (A = 1) + * + * @return string + */ + public static function stringFromColumnIndex($columnIndex) + { + static $indexCache = []; + static $lookupCache = ' ABCDEFGHIJKLMNOPQRSTUVWXYZ'; + + if (!isset($indexCache[$columnIndex])) { + $indexValue = $columnIndex; + $base26 = ''; + do { + $characterValue = ($indexValue % 26) ?: 26; + $indexValue = ($indexValue - $characterValue) / 26; + $base26 = $lookupCache[$characterValue] . $base26; + } while ($indexValue > 0); + $indexCache[$columnIndex] = $base26; + } + + return $indexCache[$columnIndex]; + } + + /** + * Extract all cell references in range, which may be comprised of multiple cell ranges. + * + * @param string $cellRange Range: e.g. 'A1' or 'A1:C10' or 'A1:E10,A20:E25' or 'A1:E5 C3:G7' or 'A1:C1,A3:C3 B1:C3' + * + * @return array Array containing single cell references + */ + public static function extractAllCellReferencesInRange($cellRange): array + { + [$ranges, $operators] = self::getCellBlocksFromRangeString($cellRange); + + $cells = []; + foreach ($ranges as $range) { + $cells[] = self::getReferencesForCellBlock($range); + } + + $cells = self::processRangeSetOperators($operators, $cells); + + if (empty($cells)) { + return []; + } + + $cellList = array_merge(...$cells); + + return self::sortCellReferenceArray($cellList); + } + + private static function processRangeSetOperators(array $operators, array $cells): array + { + $operatorCount = count($operators); + for ($offset = 0; $offset < $operatorCount; ++$offset) { + $operator = $operators[$offset]; + if ($operator !== ' ') { + continue; + } + + $cells[$offset] = array_intersect($cells[$offset], $cells[$offset + 1]); + unset($operators[$offset], $cells[$offset + 1]); + $operators = array_values($operators); + $cells = array_values($cells); + --$offset; + --$operatorCount; + } + + return $cells; + } + + private static function sortCellReferenceArray(array $cellList): array + { + // Sort the result by column and row + $sortKeys = []; + foreach ($cellList as $coordinate) { + sscanf($coordinate, '%[A-Z]%d', $column, $row); + $key = (--$row * 16384) + self::columnIndexFromString($column); + $sortKeys[$key] = $coordinate; + } + ksort($sortKeys); + + return array_values($sortKeys); + } + + /** + * Get all cell references for an individual cell block. + * + * @param string $cellBlock A cell range e.g. A4:B5 + * + * @return array All individual cells in that range + */ + private static function getReferencesForCellBlock($cellBlock) + { + $returnValue = []; + + // Single cell? + if (!self::coordinateIsRange($cellBlock)) { + return (array) $cellBlock; + } + + // Range... + $ranges = self::splitRange($cellBlock); + foreach ($ranges as $range) { + // Single cell? + if (!isset($range[1])) { + $returnValue[] = $range[0]; + + continue; + } + + // Range... + [$rangeStart, $rangeEnd] = $range; + [$startColumn, $startRow] = self::coordinateFromString($rangeStart); + [$endColumn, $endRow] = self::coordinateFromString($rangeEnd); + $startColumnIndex = self::columnIndexFromString($startColumn); + $endColumnIndex = self::columnIndexFromString($endColumn); + ++$endColumnIndex; + + // Current data + $currentColumnIndex = $startColumnIndex; + $currentRow = $startRow; + + self::validateRange($cellBlock, $startColumnIndex, $endColumnIndex, $currentRow, $endRow); + + // Loop cells + while ($currentColumnIndex < $endColumnIndex) { + while ($currentRow <= $endRow) { + $returnValue[] = self::stringFromColumnIndex($currentColumnIndex) . $currentRow; + ++$currentRow; + } + ++$currentColumnIndex; + $currentRow = $startRow; + } + } + + return $returnValue; + } + + /** + * Convert an associative array of single cell coordinates to values to an associative array + * of cell ranges to values. Only adjacent cell coordinates with the same + * value will be merged. If the value is an object, it must implement the method getHashCode(). + * + * For example, this function converts: + * + * [ 'A1' => 'x', 'A2' => 'x', 'A3' => 'x', 'A4' => 'y' ] + * + * to: + * + * [ 'A1:A3' => 'x', 'A4' => 'y' ] + * + * @param array $coordinateCollection associative array mapping coordinates to values + * + * @return array associative array mapping coordinate ranges to valuea + */ + public static function mergeRangesInCollection(array $coordinateCollection) + { + $hashedValues = []; + $mergedCoordCollection = []; + + foreach ($coordinateCollection as $coord => $value) { + if (self::coordinateIsRange($coord)) { + $mergedCoordCollection[$coord] = $value; + + continue; + } + + [$column, $row] = self::coordinateFromString($coord); + $row = (int) (ltrim($row, '$')); + $hashCode = $column . '-' . (is_object($value) ? $value->getHashCode() : $value); + + if (!isset($hashedValues[$hashCode])) { + $hashedValues[$hashCode] = (object) [ + 'value' => $value, + 'col' => $column, + 'rows' => [$row], + ]; + } else { + $hashedValues[$hashCode]->rows[] = $row; + } + } + + ksort($hashedValues); + + foreach ($hashedValues as $hashedValue) { + sort($hashedValue->rows); + $rowStart = null; + $rowEnd = null; + $ranges = []; + + foreach ($hashedValue->rows as $row) { + if ($rowStart === null) { + $rowStart = $row; + $rowEnd = $row; + } elseif ($rowEnd === $row - 1) { + $rowEnd = $row; + } else { + if ($rowStart == $rowEnd) { + $ranges[] = $hashedValue->col . $rowStart; + } else { + $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd; + } + + $rowStart = $row; + $rowEnd = $row; + } + } + + if ($rowStart !== null) { + if ($rowStart == $rowEnd) { + $ranges[] = $hashedValue->col . $rowStart; + } else { + $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd; + } + } + + foreach ($ranges as $range) { + $mergedCoordCollection[$range] = $hashedValue->value; + } + } + + return $mergedCoordCollection; + } + + /** + * Get the individual cell blocks from a range string, removing any $ characters. + * then splitting by operators and returning an array with ranges and operators. + * + * @param string $rangeString + * + * @return array[] + */ + private static function getCellBlocksFromRangeString($rangeString) + { + $rangeString = str_replace('$', '', strtoupper($rangeString)); + + // split range sets on intersection (space) or union (,) operators + $tokens = preg_split('/([ ,])/', $rangeString, -1, PREG_SPLIT_DELIM_CAPTURE); + /** @phpstan-ignore-next-line */ + $split = array_chunk($tokens, 2); + $ranges = array_column($split, 0); + $operators = array_column($split, 1); + + return [$ranges, $operators]; + } + + /** + * Check that the given range is valid, i.e. that the start column and row are not greater than the end column and + * row. + * + * @param string $cellBlock The original range, for displaying a meaningful error message + * @param int $startColumnIndex + * @param int $endColumnIndex + * @param int $currentRow + * @param int $endRow + */ + private static function validateRange($cellBlock, $startColumnIndex, $endColumnIndex, $currentRow, $endRow): void + { + if ($startColumnIndex >= $endColumnIndex || $currentRow > $endRow) { + throw new Exception('Invalid range: "' . $cellBlock . '"'); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataType.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataType.php new file mode 100644 index 0000000..f19984d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataType.php @@ -0,0 +1,89 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Cell; + +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; + +class DataType +{ + // Data types + const TYPE_STRING2 = 'str'; + const TYPE_STRING = 's'; + const TYPE_FORMULA = 'f'; + const TYPE_NUMERIC = 'n'; + const TYPE_BOOL = 'b'; + const TYPE_NULL = 'null'; + const TYPE_INLINE = 'inlineStr'; + const TYPE_ERROR = 'e'; + const TYPE_ISO_DATE = 'd'; + + /** + * List of error codes. + * + * @var array<string, int> + */ + private static $errorCodes = [ + '#NULL!' => 0, + '#DIV/0!' => 1, + '#VALUE!' => 2, + '#REF!' => 3, + '#NAME?' => 4, + '#NUM!' => 5, + '#N/A' => 6, + '#CALC!' => 7, + ]; + + public const MAX_STRING_LENGTH = 32767; + + /** + * Get list of error codes. + * + * @return array<string, int> + */ + public static function getErrorCodes() + { + return self::$errorCodes; + } + + /** + * Check a string that it satisfies Excel requirements. + * + * @param null|RichText|string $textValue Value to sanitize to an Excel string + * + * @return RichText|string Sanitized value + */ + public static function checkString($textValue) + { + if ($textValue instanceof RichText) { + // TODO: Sanitize Rich-Text string (max. character count is 32,767) + return $textValue; + } + + // string must never be longer than 32,767 characters, truncate if necessary + $textValue = StringHelper::substring((string) $textValue, 0, self::MAX_STRING_LENGTH); + + // we require that newline is represented as "\n" in core, not as "\r\n" or "\r" + $textValue = str_replace(["\r\n", "\r"], "\n", $textValue); + + return $textValue; + } + + /** + * Check a value that it is a valid error code. + * + * @param mixed $value Value to sanitize to an Excel error code + * + * @return string Sanitized value + */ + public static function checkErrorCode($value) + { + $value = (string) $value; + + if (!isset(self::$errorCodes[$value])) { + $value = '#NULL!'; + } + + return $value; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataValidation.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataValidation.php new file mode 100644 index 0000000..7ee53ea --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataValidation.php @@ -0,0 +1,497 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Cell; + +class DataValidation +{ + // Data validation types + const TYPE_NONE = 'none'; + const TYPE_CUSTOM = 'custom'; + const TYPE_DATE = 'date'; + const TYPE_DECIMAL = 'decimal'; + const TYPE_LIST = 'list'; + const TYPE_TEXTLENGTH = 'textLength'; + const TYPE_TIME = 'time'; + const TYPE_WHOLE = 'whole'; + + // Data validation error styles + const STYLE_STOP = 'stop'; + const STYLE_WARNING = 'warning'; + const STYLE_INFORMATION = 'information'; + + // Data validation operators + const OPERATOR_BETWEEN = 'between'; + const OPERATOR_EQUAL = 'equal'; + const OPERATOR_GREATERTHAN = 'greaterThan'; + const OPERATOR_GREATERTHANOREQUAL = 'greaterThanOrEqual'; + const OPERATOR_LESSTHAN = 'lessThan'; + const OPERATOR_LESSTHANOREQUAL = 'lessThanOrEqual'; + const OPERATOR_NOTBETWEEN = 'notBetween'; + const OPERATOR_NOTEQUAL = 'notEqual'; + + /** + * Formula 1. + * + * @var string + */ + private $formula1 = ''; + + /** + * Formula 2. + * + * @var string + */ + private $formula2 = ''; + + /** + * Type. + * + * @var string + */ + private $type = self::TYPE_NONE; + + /** + * Error style. + * + * @var string + */ + private $errorStyle = self::STYLE_STOP; + + /** + * Operator. + * + * @var string + */ + private $operator = self::OPERATOR_BETWEEN; + + /** + * Allow Blank. + * + * @var bool + */ + private $allowBlank = false; + + /** + * Show DropDown. + * + * @var bool + */ + private $showDropDown = false; + + /** + * Show InputMessage. + * + * @var bool + */ + private $showInputMessage = false; + + /** + * Show ErrorMessage. + * + * @var bool + */ + private $showErrorMessage = false; + + /** + * Error title. + * + * @var string + */ + private $errorTitle = ''; + + /** + * Error. + * + * @var string + */ + private $error = ''; + + /** + * Prompt title. + * + * @var string + */ + private $promptTitle = ''; + + /** + * Prompt. + * + * @var string + */ + private $prompt = ''; + + /** + * Create a new DataValidation. + */ + public function __construct() + { + } + + /** + * Get Formula 1. + * + * @return string + */ + public function getFormula1() + { + return $this->formula1; + } + + /** + * Set Formula 1. + * + * @param string $formula + * + * @return $this + */ + public function setFormula1($formula) + { + $this->formula1 = $formula; + + return $this; + } + + /** + * Get Formula 2. + * + * @return string + */ + public function getFormula2() + { + return $this->formula2; + } + + /** + * Set Formula 2. + * + * @param string $formula + * + * @return $this + */ + public function setFormula2($formula) + { + $this->formula2 = $formula; + + return $this; + } + + /** + * Get Type. + * + * @return string + */ + public function getType() + { + return $this->type; + } + + /** + * Set Type. + * + * @param string $type + * + * @return $this + */ + public function setType($type) + { + $this->type = $type; + + return $this; + } + + /** + * Get Error style. + * + * @return string + */ + public function getErrorStyle() + { + return $this->errorStyle; + } + + /** + * Set Error style. + * + * @param string $errorStyle see self::STYLE_* + * + * @return $this + */ + public function setErrorStyle($errorStyle) + { + $this->errorStyle = $errorStyle; + + return $this; + } + + /** + * Get Operator. + * + * @return string + */ + public function getOperator() + { + return $this->operator; + } + + /** + * Set Operator. + * + * @param string $operator + * + * @return $this + */ + public function setOperator($operator) + { + $this->operator = $operator; + + return $this; + } + + /** + * Get Allow Blank. + * + * @return bool + */ + public function getAllowBlank() + { + return $this->allowBlank; + } + + /** + * Set Allow Blank. + * + * @param bool $allowBlank + * + * @return $this + */ + public function setAllowBlank($allowBlank) + { + $this->allowBlank = $allowBlank; + + return $this; + } + + /** + * Get Show DropDown. + * + * @return bool + */ + public function getShowDropDown() + { + return $this->showDropDown; + } + + /** + * Set Show DropDown. + * + * @param bool $showDropDown + * + * @return $this + */ + public function setShowDropDown($showDropDown) + { + $this->showDropDown = $showDropDown; + + return $this; + } + + /** + * Get Show InputMessage. + * + * @return bool + */ + public function getShowInputMessage() + { + return $this->showInputMessage; + } + + /** + * Set Show InputMessage. + * + * @param bool $showInputMessage + * + * @return $this + */ + public function setShowInputMessage($showInputMessage) + { + $this->showInputMessage = $showInputMessage; + + return $this; + } + + /** + * Get Show ErrorMessage. + * + * @return bool + */ + public function getShowErrorMessage() + { + return $this->showErrorMessage; + } + + /** + * Set Show ErrorMessage. + * + * @param bool $showErrorMessage + * + * @return $this + */ + public function setShowErrorMessage($showErrorMessage) + { + $this->showErrorMessage = $showErrorMessage; + + return $this; + } + + /** + * Get Error title. + * + * @return string + */ + public function getErrorTitle() + { + return $this->errorTitle; + } + + /** + * Set Error title. + * + * @param string $errorTitle + * + * @return $this + */ + public function setErrorTitle($errorTitle) + { + $this->errorTitle = $errorTitle; + + return $this; + } + + /** + * Get Error. + * + * @return string + */ + public function getError() + { + return $this->error; + } + + /** + * Set Error. + * + * @param string $error + * + * @return $this + */ + public function setError($error) + { + $this->error = $error; + + return $this; + } + + /** + * Get Prompt title. + * + * @return string + */ + public function getPromptTitle() + { + return $this->promptTitle; + } + + /** + * Set Prompt title. + * + * @param string $promptTitle + * + * @return $this + */ + public function setPromptTitle($promptTitle) + { + $this->promptTitle = $promptTitle; + + return $this; + } + + /** + * Get Prompt. + * + * @return string + */ + public function getPrompt() + { + return $this->prompt; + } + + /** + * Set Prompt. + * + * @param string $prompt + * + * @return $this + */ + public function setPrompt($prompt) + { + $this->prompt = $prompt; + + return $this; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->formula1 . + $this->formula2 . + $this->type . + $this->errorStyle . + $this->operator . + ($this->allowBlank ? 't' : 'f') . + ($this->showDropDown ? 't' : 'f') . + ($this->showInputMessage ? 't' : 'f') . + ($this->showErrorMessage ? 't' : 'f') . + $this->errorTitle . + $this->error . + $this->promptTitle . + $this->prompt . + $this->sqref . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } + + /** @var ?string */ + private $sqref; + + public function getSqref(): ?string + { + return $this->sqref; + } + + public function setSqref(?string $str): self + { + $this->sqref = $str; + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataValidator.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataValidator.php new file mode 100644 index 0000000..0e395a7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataValidator.php @@ -0,0 +1,80 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Cell; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Exception; + +/** + * Validate a cell value according to its validation rules. + */ +class DataValidator +{ + /** + * Does this cell contain valid value? + * + * @param Cell $cell Cell to check the value + * + * @return bool + */ + public function isValid(Cell $cell) + { + if (!$cell->hasDataValidation()) { + return true; + } + + $cellValue = $cell->getValue(); + $dataValidation = $cell->getDataValidation(); + + if (!$dataValidation->getAllowBlank() && ($cellValue === null || $cellValue === '')) { + return false; + } + + // TODO: write check on all cases + switch ($dataValidation->getType()) { + case DataValidation::TYPE_LIST: + return $this->isValueInList($cell); + } + + return false; + } + + /** + * Does this cell contain valid value, based on list? + * + * @param Cell $cell Cell to check the value + * + * @return bool + */ + private function isValueInList(Cell $cell) + { + $cellValue = $cell->getValue(); + $dataValidation = $cell->getDataValidation(); + + $formula1 = $dataValidation->getFormula1(); + if (!empty($formula1)) { + // inline values list + if ($formula1[0] === '"') { + return in_array(strtolower($cellValue), explode(',', strtolower(trim($formula1, '"'))), true); + } elseif (strpos($formula1, ':') > 0) { + // values list cells + $matchFormula = '=MATCH(' . $cell->getCoordinate() . ', ' . $formula1 . ', 0)'; + $calculation = Calculation::getInstance($cell->getWorksheet()->getParent()); + + try { + $result = $calculation->calculateFormula($matchFormula, $cell->getCoordinate(), $cell); + while (is_array($result)) { + $result = array_pop($result); + } + + return $result !== ExcelError::NA(); + } catch (Exception $ex) { + return false; + } + } + } + + return true; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DefaultValueBinder.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DefaultValueBinder.php new file mode 100644 index 0000000..4f2cdf7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DefaultValueBinder.php @@ -0,0 +1,83 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Cell; + +use DateTimeInterface; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; + +class DefaultValueBinder implements IValueBinder +{ + /** + * Bind value to a cell. + * + * @param Cell $cell Cell to bind value to + * @param mixed $value Value to bind in cell + * + * @return bool + */ + public function bindValue(Cell $cell, $value) + { + // sanitize UTF-8 strings + if (is_string($value)) { + $value = StringHelper::sanitizeUTF8($value); + } elseif (is_object($value)) { + // Handle any objects that might be injected + if ($value instanceof DateTimeInterface) { + $value = $value->format('Y-m-d H:i:s'); + } elseif (!($value instanceof RichText)) { + // Attempt to cast any unexpected objects to string + $value = (string) $value; + } + } + + // Set value explicit + $cell->setValueExplicit($value, static::dataTypeForValue($value)); + + // Done! + return true; + } + + /** + * DataType for value. + * + * @param mixed $value + * + * @return string + */ + public static function dataTypeForValue($value) + { + // Match the value against a few data types + if ($value === null) { + return DataType::TYPE_NULL; + } elseif (is_float($value) || is_int($value)) { + return DataType::TYPE_NUMERIC; + } elseif (is_bool($value)) { + return DataType::TYPE_BOOL; + } elseif ($value === '') { + return DataType::TYPE_STRING; + } elseif ($value instanceof RichText) { + return DataType::TYPE_INLINE; + } elseif (is_string($value) && strlen($value) > 1 && $value[0] === '=') { + return DataType::TYPE_FORMULA; + } elseif (preg_match('/^[\+\-]?(\d+\\.?\d*|\d*\\.?\d+)([Ee][\-\+]?[0-2]?\d{1,3})?$/', $value)) { + $tValue = ltrim($value, '+-'); + if (is_string($value) && strlen($tValue) > 1 && $tValue[0] === '0' && $tValue[1] !== '.') { + return DataType::TYPE_STRING; + } elseif ((strpos($value, '.') === false) && ($value > PHP_INT_MAX)) { + return DataType::TYPE_STRING; + } elseif (!is_numeric($value)) { + return DataType::TYPE_STRING; + } + + return DataType::TYPE_NUMERIC; + } elseif (is_string($value)) { + $errorCodes = DataType::getErrorCodes(); + if (isset($errorCodes[$value])) { + return DataType::TYPE_ERROR; + } + } + + return DataType::TYPE_STRING; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Hyperlink.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Hyperlink.php new file mode 100644 index 0000000..ffdcbac --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Hyperlink.php @@ -0,0 +1,113 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Cell; + +class Hyperlink +{ + /** + * URL to link the cell to. + * + * @var string + */ + private $url; + + /** + * Tooltip to display on the hyperlink. + * + * @var string + */ + private $tooltip; + + /** + * Create a new Hyperlink. + * + * @param string $url Url to link the cell to + * @param string $tooltip Tooltip to display on the hyperlink + */ + public function __construct($url = '', $tooltip = '') + { + // Initialise member variables + $this->url = $url; + $this->tooltip = $tooltip; + } + + /** + * Get URL. + * + * @return string + */ + public function getUrl() + { + return $this->url; + } + + /** + * Set URL. + * + * @param string $url + * + * @return $this + */ + public function setUrl($url) + { + $this->url = $url; + + return $this; + } + + /** + * Get tooltip. + * + * @return string + */ + public function getTooltip() + { + return $this->tooltip; + } + + /** + * Set tooltip. + * + * @param string $tooltip + * + * @return $this + */ + public function setTooltip($tooltip) + { + $this->tooltip = $tooltip; + + return $this; + } + + /** + * Is this hyperlink internal? (to another worksheet). + * + * @return bool + */ + public function isInternal() + { + return strpos($this->url, 'sheet://') !== false; + } + + /** + * @return string + */ + public function getTypeHyperlink() + { + return $this->isInternal() ? '' : 'External'; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->url . + $this->tooltip . + __CLASS__ + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/IValueBinder.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/IValueBinder.php new file mode 100644 index 0000000..5af9f5f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/IValueBinder.php @@ -0,0 +1,16 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Cell; + +interface IValueBinder +{ + /** + * Bind value to a cell. + * + * @param Cell $cell Cell to bind value to + * @param mixed $value Value to bind in cell + * + * @return bool + */ + public function bindValue(Cell $cell, $value); +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/RowRange.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/RowRange.php new file mode 100644 index 0000000..38e6c14 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/RowRange.php @@ -0,0 +1,93 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Cell; + +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class RowRange implements AddressRange +{ + /** + * @var ?Worksheet + */ + protected $worksheet; + + /** + * @var int + */ + protected $from; + + /** + * @var int + */ + protected $to; + + public function __construct(int $from, ?int $to = null, ?Worksheet $worksheet = null) + { + $this->validateFromTo($from, $to ?? $from); + $this->worksheet = $worksheet; + } + + public static function fromArray(array $array, ?Worksheet $worksheet = null): self + { + [$from, $to] = $array; + + return new self($from, $to, $worksheet); + } + + private function validateFromTo(int $from, int $to): void + { + // Identify actual top and bottom values (in case we've been given bottom and top) + $this->from = min($from, $to); + $this->to = max($from, $to); + } + + public function from(): int + { + return $this->from; + } + + public function to(): int + { + return $this->to; + } + + public function rowCount(): int + { + return $this->to - $this->from + 1; + } + + public function shiftRight(int $offset = 1): self + { + $newFrom = $this->from + $offset; + $newFrom = ($newFrom < 1) ? 1 : $newFrom; + + $newTo = $this->to + $offset; + $newTo = ($newTo < 1) ? 1 : $newTo; + + return new self($newFrom, $newTo, $this->worksheet); + } + + public function shiftLeft(int $offset = 1): self + { + return $this->shiftRight(0 - $offset); + } + + public function toCellRange(): CellRange + { + return new CellRange( + CellAddress::fromColumnAndRow(Coordinate::columnIndexFromString('A'), $this->from, $this->worksheet), + CellAddress::fromColumnAndRow(Coordinate::columnIndexFromString(AddressRange::MAX_COLUMN), $this->to) + ); + } + + public function __toString(): string + { + if ($this->worksheet !== null) { + $title = str_replace("'", "''", $this->worksheet->getTitle()); + + return "'{$title}'!{$this->from}:{$this->to}"; + } + + return "{$this->from}:{$this->to}"; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/StringValueBinder.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/StringValueBinder.php new file mode 100644 index 0000000..d525faf --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/StringValueBinder.php @@ -0,0 +1,124 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Cell; + +use DateTimeInterface; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; + +class StringValueBinder implements IValueBinder +{ + /** + * @var bool + */ + protected $convertNull = true; + + /** + * @var bool + */ + protected $convertBoolean = true; + + /** + * @var bool + */ + protected $convertNumeric = true; + + /** + * @var bool + */ + protected $convertFormula = true; + + public function setNullConversion(bool $suppressConversion = false): self + { + $this->convertNull = $suppressConversion; + + return $this; + } + + public function setBooleanConversion(bool $suppressConversion = false): self + { + $this->convertBoolean = $suppressConversion; + + return $this; + } + + public function getBooleanConversion(): bool + { + return $this->convertBoolean; + } + + public function setNumericConversion(bool $suppressConversion = false): self + { + $this->convertNumeric = $suppressConversion; + + return $this; + } + + public function setFormulaConversion(bool $suppressConversion = false): self + { + $this->convertFormula = $suppressConversion; + + return $this; + } + + public function setConversionForAllValueTypes(bool $suppressConversion = false): self + { + $this->convertNull = $suppressConversion; + $this->convertBoolean = $suppressConversion; + $this->convertNumeric = $suppressConversion; + $this->convertFormula = $suppressConversion; + + return $this; + } + + /** + * Bind value to a cell. + * + * @param Cell $cell Cell to bind value to + * @param mixed $value Value to bind in cell + */ + public function bindValue(Cell $cell, $value) + { + if (is_object($value)) { + return $this->bindObjectValue($cell, $value); + } + + // sanitize UTF-8 strings + if (is_string($value)) { + $value = StringHelper::sanitizeUTF8($value); + } + + if ($value === null && $this->convertNull === false) { + $cell->setValueExplicit($value, DataType::TYPE_NULL); + } elseif (is_bool($value) && $this->convertBoolean === false) { + $cell->setValueExplicit($value, DataType::TYPE_BOOL); + } elseif ((is_int($value) || is_float($value)) && $this->convertNumeric === false) { + $cell->setValueExplicit($value, DataType::TYPE_NUMERIC); + } elseif (is_string($value) && strlen($value) > 1 && $value[0] === '=' && $this->convertFormula === false) { + $cell->setValueExplicit($value, DataType::TYPE_FORMULA); + } else { + if (is_string($value) && strlen($value) > 1 && $value[0] === '=') { + $cell->getStyle()->setQuotePrefix(true); + } + $cell->setValueExplicit((string) $value, DataType::TYPE_STRING); + } + + return true; + } + + protected function bindObjectValue(Cell $cell, object $value): bool + { + // Handle any objects that might be injected + if ($value instanceof DateTimeInterface) { + $value = $value->format('Y-m-d H:i:s'); + } elseif ($value instanceof RichText) { + $cell->setValueExplicit($value, DataType::TYPE_INLINE); + + return true; + } + + $cell->setValueExplicit((string) $value, DataType::TYPE_STRING); + + return true; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/CellReferenceHelper.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/CellReferenceHelper.php new file mode 100644 index 0000000..0f079d6 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/CellReferenceHelper.php @@ -0,0 +1,119 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; + +class CellReferenceHelper +{ + /** + * @var string + */ + protected $beforeCellAddress; + + /** + * @var int + */ + protected $beforeColumn; + + /** + * @var int + */ + protected $beforeRow; + + /** + * @var int + */ + protected $numberOfColumns; + + /** + * @var int + */ + protected $numberOfRows; + + public function __construct(string $beforeCellAddress = 'A1', int $numberOfColumns = 0, int $numberOfRows = 0) + { + $this->beforeCellAddress = str_replace('$', '', $beforeCellAddress); + $this->numberOfColumns = $numberOfColumns; + $this->numberOfRows = $numberOfRows; + + // Get coordinate of $beforeCellAddress + [$beforeColumn, $beforeRow] = Coordinate::coordinateFromString($beforeCellAddress); + $this->beforeColumn = (int) Coordinate::columnIndexFromString($beforeColumn); + $this->beforeRow = (int) $beforeRow; + } + + public function beforeCellAddress(): string + { + return $this->beforeCellAddress; + } + + public function refreshRequired(string $beforeCellAddress, int $numberOfColumns, int $numberOfRows): bool + { + return $this->beforeCellAddress !== $beforeCellAddress || + $this->numberOfColumns !== $numberOfColumns || + $this->numberOfRows !== $numberOfRows; + } + + public function updateCellReference(string $cellReference = 'A1', bool $includeAbsoluteReferences = false): string + { + if (Coordinate::coordinateIsRange($cellReference)) { + throw new Exception('Only single cell references may be passed to this method.'); + } + + // Get coordinate of $cellReference + [$newColumn, $newRow] = Coordinate::coordinateFromString($cellReference); + $newColumnIndex = (int) Coordinate::columnIndexFromString(str_replace('$', '', $newColumn)); + $newRowIndex = (int) str_replace('$', '', $newRow); + + $absoluteColumn = $newColumn[0] === '$' ? '$' : ''; + $absoluteRow = $newRow[0] === '$' ? '$' : ''; + // Verify which parts should be updated + if ($includeAbsoluteReferences === false) { + $updateColumn = (($absoluteColumn !== '$') && $newColumnIndex >= $this->beforeColumn); + $updateRow = (($absoluteRow !== '$') && $newRowIndex >= $this->beforeRow); + } else { + $updateColumn = ($newColumnIndex >= $this->beforeColumn); + $updateRow = ($newRowIndex >= $this->beforeRow); + } + + // Create new column reference + if ($updateColumn) { + $newColumn = ($includeAbsoluteReferences === false) + ? Coordinate::stringFromColumnIndex($newColumnIndex + $this->numberOfColumns) + : $absoluteColumn . Coordinate::stringFromColumnIndex($newColumnIndex + $this->numberOfColumns); + } + + // Create new row reference + if ($updateRow) { + $newRow = ($includeAbsoluteReferences === false) + ? $newRowIndex + $this->numberOfRows + : $absoluteRow . (string) ($newRowIndex + $this->numberOfRows); + } + + // Return new reference + return "{$newColumn}{$newRow}"; + } + + public function cellAddressInDeleteRange(string $cellAddress): bool + { + [$cellColumn, $cellRow] = Coordinate::coordinateFromString($cellAddress); + $cellColumnIndex = Coordinate::columnIndexFromString($cellColumn); + // Is cell within the range of rows/columns if we're deleting + if ( + $this->numberOfRows < 0 && + ($cellRow >= ($this->beforeRow + $this->numberOfRows)) && + ($cellRow < $this->beforeRow) + ) { + return true; + } elseif ( + $this->numberOfColumns < 0 && + ($cellColumnIndex >= ($this->beforeColumn + $this->numberOfColumns)) && + ($cellColumnIndex < $this->beforeColumn) + ) { + return true; + } + + return false; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Axis.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Axis.php new file mode 100644 index 0000000..70ff1b3 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Axis.php @@ -0,0 +1,278 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Chart; + +/** + * Created by PhpStorm. + * User: Wiktor Trzonkowski + * Date: 6/17/14 + * Time: 12:11 PM. + */ +class Axis extends Properties +{ + public function __construct() + { + parent::__construct(); + $this->fillColor = new ChartColor(); + } + + /** + * Chart Major Gridlines as. + * + * @var ?GridLines + */ + private $majorGridlines; + + /** + * Chart Minor Gridlines as. + * + * @var ?GridLines + */ + private $minorGridlines; + + /** + * Axis Number. + * + * @var mixed[] + */ + private $axisNumber = [ + 'format' => self::FORMAT_CODE_GENERAL, + 'source_linked' => 1, + 'numeric' => null, + ]; + + /** @var string */ + private $axisType = ''; + + /** + * Axis Options. + * + * @var mixed[] + */ + private $axisOptions = [ + 'minimum' => null, + 'maximum' => null, + 'major_unit' => null, + 'minor_unit' => null, + 'orientation' => self::ORIENTATION_NORMAL, + 'minor_tick_mark' => self::TICK_MARK_NONE, + 'major_tick_mark' => self::TICK_MARK_NONE, + 'axis_labels' => self::AXIS_LABELS_NEXT_TO, + 'horizontal_crosses' => self::HORIZONTAL_CROSSES_AUTOZERO, + 'horizontal_crosses_value' => null, + 'textRotation' => null, + ]; + + /** + * Fill Properties. + * + * @var ChartColor + */ + private $fillColor; + + private const NUMERIC_FORMAT = [ + Properties::FORMAT_CODE_NUMBER, + Properties::FORMAT_CODE_DATE, + ]; + + /** + * Get Series Data Type. + * + * @param mixed $format_code + */ + public function setAxisNumberProperties($format_code, ?bool $numeric = null, int $sourceLinked = 0): void + { + $format = (string) $format_code; + $this->axisNumber['format'] = $format; + $this->axisNumber['source_linked'] = $sourceLinked; + if (is_bool($numeric)) { + $this->axisNumber['numeric'] = $numeric; + } elseif (in_array($format, self::NUMERIC_FORMAT, true)) { + $this->axisNumber['numeric'] = true; + } + } + + /** + * Get Axis Number Format Data Type. + * + * @return string + */ + public function getAxisNumberFormat() + { + return $this->axisNumber['format']; + } + + /** + * Get Axis Number Source Linked. + * + * @return string + */ + public function getAxisNumberSourceLinked() + { + return (string) $this->axisNumber['source_linked']; + } + + public function getAxisIsNumericFormat(): bool + { + return (bool) $this->axisNumber['numeric']; + } + + public function setAxisOption(string $key, ?string $value): void + { + if (!empty($value)) { + $this->axisOptions[$key] = $value; + } + } + + /** + * Set Axis Options Properties. + */ + public function setAxisOptionsProperties( + string $axisLabels, + ?string $horizontalCrossesValue = null, + ?string $horizontalCrosses = null, + ?string $axisOrientation = null, + ?string $majorTmt = null, + ?string $minorTmt = null, + ?string $minimum = null, + ?string $maximum = null, + ?string $majorUnit = null, + ?string $minorUnit = null, + ?string $textRotation = null + ): void { + $this->axisOptions['axis_labels'] = $axisLabels; + $this->setAxisOption('horizontal_crosses_value', $horizontalCrossesValue); + $this->setAxisOption('horizontal_crosses', $horizontalCrosses); + $this->setAxisOption('orientation', $axisOrientation); + $this->setAxisOption('major_tick_mark', $majorTmt); + $this->setAxisOption('minor_tick_mark', $minorTmt); + $this->setAxisOption('minimum', $minimum); + $this->setAxisOption('maximum', $maximum); + $this->setAxisOption('major_unit', $majorUnit); + $this->setAxisOption('minor_unit', $minorUnit); + $this->setAxisOption('textRotation', $textRotation); + } + + /** + * Get Axis Options Property. + * + * @param string $property + * + * @return ?string + */ + public function getAxisOptionsProperty($property) + { + return $this->axisOptions[$property]; + } + + /** + * Set Axis Orientation Property. + * + * @param string $orientation + */ + public function setAxisOrientation($orientation): void + { + $this->axisOptions['orientation'] = (string) $orientation; + } + + public function getAxisType(): string + { + return $this->axisType; + } + + public function setAxisType(string $type): self + { + if ($type === 'catAx' || $type === 'valAx') { + $this->axisType = $type; + } else { + $this->axisType = ''; + } + + return $this; + } + + /** + * Set Fill Property. + * + * @param ?string $color + * @param ?int $alpha + * @param ?string $AlphaType + */ + public function setFillParameters($color, $alpha = null, $AlphaType = self::EXCEL_COLOR_TYPE_ARGB): void + { + $this->fillColor->setColorProperties($color, $alpha, $AlphaType); + } + + /** + * Get Fill Property. + * + * @param string $property + * + * @return string + */ + public function getFillProperty($property) + { + return (string) $this->fillColor->getColorProperty($property); + } + + public function getFillColorObject(): ChartColor + { + return $this->fillColor; + } + + /** + * Get Line Color Property. + * + * @Deprecated 1.24.0 + * + * @See Properties::getLineColorProperty() + * Use the getLineColor property in the Properties class instead + * + * @param string $propertyName + * + * @return null|int|string + */ + public function getLineProperty($propertyName) + { + return $this->getLineColorProperty($propertyName); + } + + /** @var string */ + private $crossBetween = ''; // 'between' or 'midCat' might be better + + public function setCrossBetween(string $crossBetween): self + { + $this->crossBetween = $crossBetween; + + return $this; + } + + public function getCrossBetween(): string + { + return $this->crossBetween; + } + + public function getMajorGridlines(): ?GridLines + { + return $this->majorGridlines; + } + + public function getMinorGridlines(): ?GridLines + { + return $this->minorGridlines; + } + + public function setMajorGridlines(?GridLines $gridlines): self + { + $this->majorGridlines = $gridlines; + + return $this; + } + + public function setMinorGridlines(?GridLines $gridlines): self + { + $this->minorGridlines = $gridlines; + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Chart.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Chart.php new file mode 100644 index 0000000..3f89e6f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Chart.php @@ -0,0 +1,750 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Chart; + +use PhpOffice\PhpSpreadsheet\Settings; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class Chart +{ + /** + * Chart Name. + * + * @var string + */ + private $name = ''; + + /** + * Worksheet. + * + * @var ?Worksheet + */ + private $worksheet; + + /** + * Chart Title. + * + * @var ?Title + */ + private $title; + + /** + * Chart Legend. + * + * @var ?Legend + */ + private $legend; + + /** + * X-Axis Label. + * + * @var ?Title + */ + private $xAxisLabel; + + /** + * Y-Axis Label. + * + * @var ?Title + */ + private $yAxisLabel; + + /** + * Chart Plot Area. + * + * @var ?PlotArea + */ + private $plotArea; + + /** + * Plot Visible Only. + * + * @var bool + */ + private $plotVisibleOnly = true; + + /** + * Display Blanks as. + * + * @var string + */ + private $displayBlanksAs = DataSeries::EMPTY_AS_GAP; + + /** + * Chart Asix Y as. + * + * @var Axis + */ + private $yAxis; + + /** + * Chart Asix X as. + * + * @var Axis + */ + private $xAxis; + + /** + * Top-Left Cell Position. + * + * @var string + */ + private $topLeftCellRef = 'A1'; + + /** + * Top-Left X-Offset. + * + * @var int + */ + private $topLeftXOffset = 0; + + /** + * Top-Left Y-Offset. + * + * @var int + */ + private $topLeftYOffset = 0; + + /** + * Bottom-Right Cell Position. + * + * @var string + */ + private $bottomRightCellRef = ''; + + /** + * Bottom-Right X-Offset. + * + * @var int + */ + private $bottomRightXOffset = 10; + + /** + * Bottom-Right Y-Offset. + * + * @var int + */ + private $bottomRightYOffset = 10; + + /** @var ?int */ + private $rotX; + + /** @var ?int */ + private $rotY; + + /** @var ?int */ + private $rAngAx; + + /** @var ?int */ + private $perspective; + + /** @var bool */ + private $oneCellAnchor = false; + + /** @var bool */ + private $autoTitleDeleted = false; + + /** + * Create a new Chart. + * majorGridlines and minorGridlines are deprecated, moved to Axis. + * + * @param mixed $name + * @param mixed $plotVisibleOnly + * @param string $displayBlanksAs + */ + public function __construct($name, ?Title $title = null, ?Legend $legend = null, ?PlotArea $plotArea = null, $plotVisibleOnly = true, $displayBlanksAs = DataSeries::EMPTY_AS_GAP, ?Title $xAxisLabel = null, ?Title $yAxisLabel = null, ?Axis $xAxis = null, ?Axis $yAxis = null, ?GridLines $majorGridlines = null, ?GridLines $minorGridlines = null) + { + $this->name = $name; + $this->title = $title; + $this->legend = $legend; + $this->xAxisLabel = $xAxisLabel; + $this->yAxisLabel = $yAxisLabel; + $this->plotArea = $plotArea; + $this->plotVisibleOnly = $plotVisibleOnly; + $this->displayBlanksAs = $displayBlanksAs; + $this->xAxis = $xAxis ?? new Axis(); + $this->yAxis = $yAxis ?? new Axis(); + if ($majorGridlines !== null) { + $this->yAxis->setMajorGridlines($majorGridlines); + } + if ($minorGridlines !== null) { + $this->yAxis->setMinorGridlines($minorGridlines); + } + } + + /** + * Get Name. + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Get Worksheet. + */ + public function getWorksheet(): ?Worksheet + { + return $this->worksheet; + } + + /** + * Set Worksheet. + * + * @return $this + */ + public function setWorksheet(?Worksheet $worksheet = null) + { + $this->worksheet = $worksheet; + + return $this; + } + + public function getTitle(): ?Title + { + return $this->title; + } + + /** + * Set Title. + * + * @return $this + */ + public function setTitle(Title $title) + { + $this->title = $title; + + return $this; + } + + public function getLegend(): ?Legend + { + return $this->legend; + } + + /** + * Set Legend. + * + * @return $this + */ + public function setLegend(Legend $legend) + { + $this->legend = $legend; + + return $this; + } + + public function getXAxisLabel(): ?Title + { + return $this->xAxisLabel; + } + + /** + * Set X-Axis Label. + * + * @return $this + */ + public function setXAxisLabel(Title $label) + { + $this->xAxisLabel = $label; + + return $this; + } + + public function getYAxisLabel(): ?Title + { + return $this->yAxisLabel; + } + + /** + * Set Y-Axis Label. + * + * @return $this + */ + public function setYAxisLabel(Title $label) + { + $this->yAxisLabel = $label; + + return $this; + } + + public function getPlotArea(): ?PlotArea + { + return $this->plotArea; + } + + /** + * Set Plot Area. + */ + public function setPlotArea(PlotArea $plotArea): self + { + $this->plotArea = $plotArea; + + return $this; + } + + /** + * Get Plot Visible Only. + * + * @return bool + */ + public function getPlotVisibleOnly() + { + return $this->plotVisibleOnly; + } + + /** + * Set Plot Visible Only. + * + * @param bool $plotVisibleOnly + * + * @return $this + */ + public function setPlotVisibleOnly($plotVisibleOnly) + { + $this->plotVisibleOnly = $plotVisibleOnly; + + return $this; + } + + /** + * Get Display Blanks as. + * + * @return string + */ + public function getDisplayBlanksAs() + { + return $this->displayBlanksAs; + } + + /** + * Set Display Blanks as. + * + * @param string $displayBlanksAs + * + * @return $this + */ + public function setDisplayBlanksAs($displayBlanksAs) + { + $this->displayBlanksAs = $displayBlanksAs; + + return $this; + } + + public function getChartAxisY(): Axis + { + return $this->yAxis; + } + + /** + * Set yAxis. + */ + public function setChartAxisY(?Axis $axis): self + { + $this->yAxis = $axis ?? new Axis(); + + return $this; + } + + public function getChartAxisX(): Axis + { + return $this->xAxis; + } + + /** + * Set xAxis. + */ + public function setChartAxisX(?Axis $axis): self + { + $this->xAxis = $axis ?? new Axis(); + + return $this; + } + + /** + * Get Major Gridlines. + * + * @Deprecated 1.24.0 Use Axis->getMajorGridlines + * + * @codeCoverageIgnore + */ + public function getMajorGridlines(): ?GridLines + { + return $this->yAxis->getMajorGridLines(); + } + + /** + * Get Minor Gridlines. + * + * @Deprecated 1.24.0 Use Axis->getMinorGridlines + * + * @codeCoverageIgnore + */ + public function getMinorGridlines(): ?GridLines + { + return $this->yAxis->getMinorGridLines(); + } + + /** + * Set the Top Left position for the chart. + * + * @param string $cellAddress + * @param int $xOffset + * @param int $yOffset + * + * @return $this + */ + public function setTopLeftPosition($cellAddress, $xOffset = null, $yOffset = null) + { + $this->topLeftCellRef = $cellAddress; + if ($xOffset !== null) { + $this->setTopLeftXOffset($xOffset); + } + if ($yOffset !== null) { + $this->setTopLeftYOffset($yOffset); + } + + return $this; + } + + /** + * Get the top left position of the chart. + * + * @return array{cell: string, xOffset: int, yOffset: int} an associative array containing the cell address, X-Offset and Y-Offset from the top left of that cell + */ + public function getTopLeftPosition() + { + return [ + 'cell' => $this->topLeftCellRef, + 'xOffset' => $this->topLeftXOffset, + 'yOffset' => $this->topLeftYOffset, + ]; + } + + /** + * Get the cell address where the top left of the chart is fixed. + * + * @return string + */ + public function getTopLeftCell() + { + return $this->topLeftCellRef; + } + + /** + * Set the Top Left cell position for the chart. + * + * @param string $cellAddress + * + * @return $this + */ + public function setTopLeftCell($cellAddress) + { + $this->topLeftCellRef = $cellAddress; + + return $this; + } + + /** + * Set the offset position within the Top Left cell for the chart. + * + * @param int $xOffset + * @param int $yOffset + * + * @return $this + */ + public function setTopLeftOffset($xOffset, $yOffset) + { + if ($xOffset !== null) { + $this->setTopLeftXOffset($xOffset); + } + + if ($yOffset !== null) { + $this->setTopLeftYOffset($yOffset); + } + + return $this; + } + + /** + * Get the offset position within the Top Left cell for the chart. + * + * @return int[] + */ + public function getTopLeftOffset() + { + return [ + 'X' => $this->topLeftXOffset, + 'Y' => $this->topLeftYOffset, + ]; + } + + /** + * @param int $xOffset + * + * @return $this + */ + public function setTopLeftXOffset($xOffset) + { + $this->topLeftXOffset = $xOffset; + + return $this; + } + + public function getTopLeftXOffset(): int + { + return $this->topLeftXOffset; + } + + /** + * @param int $yOffset + * + * @return $this + */ + public function setTopLeftYOffset($yOffset) + { + $this->topLeftYOffset = $yOffset; + + return $this; + } + + public function getTopLeftYOffset(): int + { + return $this->topLeftYOffset; + } + + /** + * Set the Bottom Right position of the chart. + * + * @param string $cellAddress + * @param int $xOffset + * @param int $yOffset + * + * @return $this + */ + public function setBottomRightPosition($cellAddress = '', $xOffset = null, $yOffset = null) + { + $this->bottomRightCellRef = $cellAddress; + if ($xOffset !== null) { + $this->setBottomRightXOffset($xOffset); + } + if ($yOffset !== null) { + $this->setBottomRightYOffset($yOffset); + } + + return $this; + } + + /** + * Get the bottom right position of the chart. + * + * @return array an associative array containing the cell address, X-Offset and Y-Offset from the top left of that cell + */ + public function getBottomRightPosition() + { + return [ + 'cell' => $this->bottomRightCellRef, + 'xOffset' => $this->bottomRightXOffset, + 'yOffset' => $this->bottomRightYOffset, + ]; + } + + /** + * Set the Bottom Right cell for the chart. + * + * @return $this + */ + public function setBottomRightCell(string $cellAddress = '') + { + $this->bottomRightCellRef = $cellAddress; + + return $this; + } + + /** + * Get the cell address where the bottom right of the chart is fixed. + */ + public function getBottomRightCell(): string + { + return $this->bottomRightCellRef; + } + + /** + * Set the offset position within the Bottom Right cell for the chart. + * + * @param int $xOffset + * @param int $yOffset + * + * @return $this + */ + public function setBottomRightOffset($xOffset, $yOffset) + { + if ($xOffset !== null) { + $this->setBottomRightXOffset($xOffset); + } + + if ($yOffset !== null) { + $this->setBottomRightYOffset($yOffset); + } + + return $this; + } + + /** + * Get the offset position within the Bottom Right cell for the chart. + * + * @return int[] + */ + public function getBottomRightOffset() + { + return [ + 'X' => $this->bottomRightXOffset, + 'Y' => $this->bottomRightYOffset, + ]; + } + + /** + * @param int $xOffset + * + * @return $this + */ + public function setBottomRightXOffset($xOffset) + { + $this->bottomRightXOffset = $xOffset; + + return $this; + } + + public function getBottomRightXOffset(): int + { + return $this->bottomRightXOffset; + } + + /** + * @param int $yOffset + * + * @return $this + */ + public function setBottomRightYOffset($yOffset) + { + $this->bottomRightYOffset = $yOffset; + + return $this; + } + + public function getBottomRightYOffset(): int + { + return $this->bottomRightYOffset; + } + + public function refresh(): void + { + if ($this->worksheet !== null && $this->plotArea !== null) { + $this->plotArea->refresh($this->worksheet); + } + } + + /** + * Render the chart to given file (or stream). + * Unable to cover code until a usable current version of JpGraph + * is made available through Composer. + * + * @param string $outputDestination Name of the file render to + * + * @return bool true on success + * + * @codeCoverageIgnore + */ + public function render($outputDestination = null) + { + if ($outputDestination == 'php://output') { + $outputDestination = null; + } + + $libraryName = Settings::getChartRenderer(); + if ($libraryName === null) { + return false; + } + + // Ensure that data series values are up-to-date before we render + $this->refresh(); + + $renderer = new $libraryName($this); + + return $renderer->render($outputDestination); // @phpstan-ignore-line + } + + public function getRotX(): ?int + { + return $this->rotX; + } + + public function setRotX(?int $rotX): self + { + $this->rotX = $rotX; + + return $this; + } + + public function getRotY(): ?int + { + return $this->rotY; + } + + public function setRotY(?int $rotY): self + { + $this->rotY = $rotY; + + return $this; + } + + public function getRAngAx(): ?int + { + return $this->rAngAx; + } + + public function setRAngAx(?int $rAngAx): self + { + $this->rAngAx = $rAngAx; + + return $this; + } + + public function getPerspective(): ?int + { + return $this->perspective; + } + + public function setPerspective(?int $perspective): self + { + $this->perspective = $perspective; + + return $this; + } + + public function getOneCellAnchor(): bool + { + return $this->oneCellAnchor; + } + + public function setOneCellAnchor(bool $oneCellAnchor): self + { + $this->oneCellAnchor = $oneCellAnchor; + + return $this; + } + + public function getAutoTitleDeleted(): bool + { + return $this->autoTitleDeleted; + } + + public function setAutoTitleDeleted(bool $autoTitleDeleted): self + { + $this->autoTitleDeleted = $autoTitleDeleted; + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/ChartColor.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/ChartColor.php new file mode 100644 index 0000000..7f87e39 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/ChartColor.php @@ -0,0 +1,153 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Chart; + +class ChartColor +{ + const EXCEL_COLOR_TYPE_STANDARD = 'prstClr'; + const EXCEL_COLOR_TYPE_SCHEME = 'schemeClr'; + const EXCEL_COLOR_TYPE_RGB = 'srgbClr'; + /** @deprecated 1.24 use EXCEL_COLOR_TYPE_RGB instead */ + const EXCEL_COLOR_TYPE_ARGB = 'srgbClr'; + const EXCEL_COLOR_TYPES = [ + self::EXCEL_COLOR_TYPE_ARGB, + self::EXCEL_COLOR_TYPE_SCHEME, + self::EXCEL_COLOR_TYPE_STANDARD, + ]; + + /** @var string */ + private $value = ''; + + /** @var string */ + private $type = ''; + + /** @var ?int */ + private $alpha; + + /** + * @param string|string[] $value + */ + public function __construct($value = '', ?int $alpha = null, ?string $type = null) + { + if (is_array($value)) { + $this->setColorPropertiesArray($value); + } else { + $this->setColorProperties($value, $alpha, $type); + } + } + + public function getValue(): string + { + return $this->value; + } + + public function setValue(string $value): self + { + $this->value = $value; + + return $this; + } + + public function getType(): string + { + return $this->type; + } + + public function setType(string $type): self + { + $this->type = $type; + + return $this; + } + + public function getAlpha(): ?int + { + return $this->alpha; + } + + public function setAlpha(?int $alpha): self + { + $this->alpha = $alpha; + + return $this; + } + + /** + * @param null|float|int|string $alpha + */ + public function setColorProperties(?string $color, $alpha = null, ?string $type = null): self + { + if (empty($type) && !empty($color)) { + if (substr($color, 0, 1) === '*') { + $type = 'schemeClr'; + $color = substr($color, 1); + } elseif (substr($color, 0, 1) === '/') { + $type = 'prstClr'; + $color = substr($color, 1); + } elseif (preg_match('/^[0-9A-Fa-f]{6}$/', $color) === 1) { + $type = 'srgbClr'; + } + } + if ($color !== null) { + $this->setValue("$color"); + } + if ($type !== null) { + $this->setType($type); + } + if ($alpha === null) { + $this->setAlpha(null); + } elseif (is_numeric($alpha)) { + $this->setAlpha((int) $alpha); + } + + return $this; + } + + public function setColorPropertiesArray(array $color): self + { + return $this->setColorProperties( + $color['value'] ?? '', + $color['alpha'] ?? null, + $color['type'] ?? null + ); + } + + public function isUsable(): bool + { + return $this->type !== '' && $this->value !== ''; + } + + /** + * Get Color Property. + * + * @param string $propertyName + * + * @return null|int|string + */ + public function getColorProperty($propertyName) + { + $retVal = null; + if ($propertyName === 'value') { + $retVal = $this->value; + } elseif ($propertyName === 'type') { + $retVal = $this->type; + } elseif ($propertyName === 'alpha') { + $retVal = $this->alpha; + } + + return $retVal; + } + + public static function alphaToXml(int $alpha): string + { + return (string) (100 - $alpha) . '000'; + } + + /** + * @param float|int|string $alpha + */ + public static function alphaFromXml($alpha): int + { + return 100 - ((int) $alpha / 1000); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/DataSeries.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/DataSeries.php new file mode 100644 index 0000000..548145e --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/DataSeries.php @@ -0,0 +1,419 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Chart; + +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class DataSeries +{ + const TYPE_BARCHART = 'barChart'; + const TYPE_BARCHART_3D = 'bar3DChart'; + const TYPE_LINECHART = 'lineChart'; + const TYPE_LINECHART_3D = 'line3DChart'; + const TYPE_AREACHART = 'areaChart'; + const TYPE_AREACHART_3D = 'area3DChart'; + const TYPE_PIECHART = 'pieChart'; + const TYPE_PIECHART_3D = 'pie3DChart'; + const TYPE_DOUGHNUTCHART = 'doughnutChart'; + const TYPE_DONUTCHART = self::TYPE_DOUGHNUTCHART; // Synonym + const TYPE_SCATTERCHART = 'scatterChart'; + const TYPE_SURFACECHART = 'surfaceChart'; + const TYPE_SURFACECHART_3D = 'surface3DChart'; + const TYPE_RADARCHART = 'radarChart'; + const TYPE_BUBBLECHART = 'bubbleChart'; + const TYPE_STOCKCHART = 'stockChart'; + const TYPE_CANDLECHART = self::TYPE_STOCKCHART; // Synonym + + const GROUPING_CLUSTERED = 'clustered'; + const GROUPING_STACKED = 'stacked'; + const GROUPING_PERCENT_STACKED = 'percentStacked'; + const GROUPING_STANDARD = 'standard'; + + const DIRECTION_BAR = 'bar'; + const DIRECTION_HORIZONTAL = self::DIRECTION_BAR; + const DIRECTION_COL = 'col'; + const DIRECTION_COLUMN = self::DIRECTION_COL; + const DIRECTION_VERTICAL = self::DIRECTION_COL; + + const STYLE_LINEMARKER = 'lineMarker'; + const STYLE_SMOOTHMARKER = 'smoothMarker'; + const STYLE_MARKER = 'marker'; + const STYLE_FILLED = 'filled'; + + const EMPTY_AS_GAP = 'gap'; + const EMPTY_AS_ZERO = 'zero'; + const EMPTY_AS_SPAN = 'span'; + + /** + * Series Plot Type. + * + * @var string + */ + private $plotType; + + /** + * Plot Grouping Type. + * + * @var string + */ + private $plotGrouping; + + /** + * Plot Direction. + * + * @var string + */ + private $plotDirection; + + /** + * Plot Style. + * + * @var null|string + */ + private $plotStyle; + + /** + * Order of plots in Series. + * + * @var int[] + */ + private $plotOrder = []; + + /** + * Plot Label. + * + * @var DataSeriesValues[] + */ + private $plotLabel = []; + + /** + * Plot Category. + * + * @var DataSeriesValues[] + */ + private $plotCategory = []; + + /** + * Smooth Line. + * + * @var bool + */ + private $smoothLine; + + /** + * Plot Values. + * + * @var DataSeriesValues[] + */ + private $plotValues = []; + + /** + * Plot Bubble Sizes. + * + * @var DataSeriesValues[] + */ + private $plotBubbleSizes = []; + + /** + * Create a new DataSeries. + * + * @param null|mixed $plotType + * @param null|mixed $plotGrouping + * @param int[] $plotOrder + * @param DataSeriesValues[] $plotLabel + * @param DataSeriesValues[] $plotCategory + * @param DataSeriesValues[] $plotValues + * @param null|string $plotDirection + * @param bool $smoothLine + * @param null|string $plotStyle + */ + public function __construct($plotType = null, $plotGrouping = null, array $plotOrder = [], array $plotLabel = [], array $plotCategory = [], array $plotValues = [], $plotDirection = null, $smoothLine = false, $plotStyle = null) + { + $this->plotType = $plotType; + $this->plotGrouping = $plotGrouping; + $this->plotOrder = $plotOrder; + $keys = array_keys($plotValues); + $this->plotValues = $plotValues; + if (!isset($plotLabel[$keys[0]])) { + $plotLabel[$keys[0]] = new DataSeriesValues(); + } + $this->plotLabel = $plotLabel; + + if (!isset($plotCategory[$keys[0]])) { + $plotCategory[$keys[0]] = new DataSeriesValues(); + } + $this->plotCategory = $plotCategory; + + $this->smoothLine = $smoothLine; + $this->plotStyle = $plotStyle; + + if ($plotDirection === null) { + $plotDirection = self::DIRECTION_COL; + } + $this->plotDirection = $plotDirection; + } + + /** + * Get Plot Type. + * + * @return string + */ + public function getPlotType() + { + return $this->plotType; + } + + /** + * Set Plot Type. + * + * @param string $plotType + * + * @return $this + */ + public function setPlotType($plotType) + { + $this->plotType = $plotType; + + return $this; + } + + /** + * Get Plot Grouping Type. + * + * @return string + */ + public function getPlotGrouping() + { + return $this->plotGrouping; + } + + /** + * Set Plot Grouping Type. + * + * @param string $groupingType + * + * @return $this + */ + public function setPlotGrouping($groupingType) + { + $this->plotGrouping = $groupingType; + + return $this; + } + + /** + * Get Plot Direction. + * + * @return string + */ + public function getPlotDirection() + { + return $this->plotDirection; + } + + /** + * Set Plot Direction. + * + * @param string $plotDirection + * + * @return $this + */ + public function setPlotDirection($plotDirection) + { + $this->plotDirection = $plotDirection; + + return $this; + } + + /** + * Get Plot Order. + * + * @return int[] + */ + public function getPlotOrder() + { + return $this->plotOrder; + } + + /** + * Get Plot Labels. + * + * @return DataSeriesValues[] + */ + public function getPlotLabels() + { + return $this->plotLabel; + } + + /** + * Get Plot Label by Index. + * + * @param mixed $index + * + * @return DataSeriesValues|false + */ + public function getPlotLabelByIndex($index) + { + $keys = array_keys($this->plotLabel); + if (in_array($index, $keys)) { + return $this->plotLabel[$index]; + } + + return false; + } + + /** + * Get Plot Categories. + * + * @return DataSeriesValues[] + */ + public function getPlotCategories() + { + return $this->plotCategory; + } + + /** + * Get Plot Category by Index. + * + * @param mixed $index + * + * @return DataSeriesValues|false + */ + public function getPlotCategoryByIndex($index) + { + $keys = array_keys($this->plotCategory); + if (in_array($index, $keys)) { + return $this->plotCategory[$index]; + } elseif (isset($keys[$index])) { + return $this->plotCategory[$keys[$index]]; + } + + return false; + } + + /** + * Get Plot Style. + * + * @return null|string + */ + public function getPlotStyle() + { + return $this->plotStyle; + } + + /** + * Set Plot Style. + * + * @param null|string $plotStyle + * + * @return $this + */ + public function setPlotStyle($plotStyle) + { + $this->plotStyle = $plotStyle; + + return $this; + } + + /** + * Get Plot Values. + * + * @return DataSeriesValues[] + */ + public function getPlotValues() + { + return $this->plotValues; + } + + /** + * Get Plot Values by Index. + * + * @param mixed $index + * + * @return DataSeriesValues|false + */ + public function getPlotValuesByIndex($index) + { + $keys = array_keys($this->plotValues); + if (in_array($index, $keys)) { + return $this->plotValues[$index]; + } + + return false; + } + + /** + * Get Plot Bubble Sizes. + * + * @return DataSeriesValues[] + */ + public function getPlotBubbleSizes(): array + { + return $this->plotBubbleSizes; + } + + /** + * Set Plot Bubble Sizes. + * + * @param DataSeriesValues[] $plotBubbleSizes + */ + public function setPlotBubbleSizes(array $plotBubbleSizes): self + { + $this->plotBubbleSizes = $plotBubbleSizes; + + return $this; + } + + /** + * Get Number of Plot Series. + * + * @return int + */ + public function getPlotSeriesCount() + { + return count($this->plotValues); + } + + /** + * Get Smooth Line. + * + * @return bool + */ + public function getSmoothLine() + { + return $this->smoothLine; + } + + /** + * Set Smooth Line. + * + * @param bool $smoothLine + * + * @return $this + */ + public function setSmoothLine($smoothLine) + { + $this->smoothLine = $smoothLine; + + return $this; + } + + public function refresh(Worksheet $worksheet): void + { + foreach ($this->plotValues as $plotValues) { + if ($plotValues !== null) { + $plotValues->refresh($worksheet, true); + } + } + foreach ($this->plotLabel as $plotValues) { + if ($plotValues !== null) { + $plotValues->refresh($worksheet, true); + } + } + foreach ($this->plotCategory as $plotValues) { + if ($plotValues !== null) { + $plotValues->refresh($worksheet, false); + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/DataSeriesValues.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/DataSeriesValues.php new file mode 100644 index 0000000..bc0e04d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/DataSeriesValues.php @@ -0,0 +1,580 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Chart; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class DataSeriesValues extends Properties +{ + const DATASERIES_TYPE_STRING = 'String'; + const DATASERIES_TYPE_NUMBER = 'Number'; + + private const DATA_TYPE_VALUES = [ + self::DATASERIES_TYPE_STRING, + self::DATASERIES_TYPE_NUMBER, + ]; + + /** + * Series Data Type. + * + * @var string + */ + private $dataType; + + /** + * Series Data Source. + * + * @var ?string + */ + private $dataSource; + + /** + * Format Code. + * + * @var string + */ + private $formatCode; + + /** + * Series Point Marker. + * + * @var string + */ + private $pointMarker; + + /** @var ChartColor */ + private $markerFillColor; + + /** @var ChartColor */ + private $markerBorderColor; + + /** + * Series Point Size. + * + * @var int + */ + private $pointSize = 3; + + /** + * Point Count (The number of datapoints in the dataseries). + * + * @var int + */ + private $pointCount = 0; + + /** + * Data Values. + * + * @var mixed[] + */ + private $dataValues = []; + + /** + * Fill color (can be array with colors if dataseries have custom colors). + * + * @var null|ChartColor|ChartColor[] + */ + private $fillColor; + + /** @var bool */ + private $scatterLines = true; + + /** @var bool */ + private $bubble3D = false; + + /** @var ?Layout */ + private $labelLayout; + + /** + * Create a new DataSeriesValues object. + * + * @param string $dataType + * @param string $dataSource + * @param null|mixed $formatCode + * @param int $pointCount + * @param mixed $dataValues + * @param null|mixed $marker + * @param null|ChartColor|ChartColor[]|string|string[] $fillColor + * @param string $pointSize + */ + public function __construct($dataType = self::DATASERIES_TYPE_NUMBER, $dataSource = null, $formatCode = null, $pointCount = 0, $dataValues = [], $marker = null, $fillColor = null, $pointSize = '3') + { + parent::__construct(); + $this->markerFillColor = new ChartColor(); + $this->markerBorderColor = new ChartColor(); + $this->setDataType($dataType); + $this->dataSource = $dataSource; + $this->formatCode = $formatCode; + $this->pointCount = $pointCount; + $this->dataValues = $dataValues; + $this->pointMarker = $marker; + if ($fillColor !== null) { + $this->setFillColor($fillColor); + } + if (is_numeric($pointSize)) { + $this->pointSize = (int) $pointSize; + } + } + + /** + * Get Series Data Type. + * + * @return string + */ + public function getDataType() + { + return $this->dataType; + } + + /** + * Set Series Data Type. + * + * @param string $dataType Datatype of this data series + * Typical values are: + * DataSeriesValues::DATASERIES_TYPE_STRING + * Normally used for axis point values + * DataSeriesValues::DATASERIES_TYPE_NUMBER + * Normally used for chart data values + * + * @return $this + */ + public function setDataType($dataType) + { + if (!in_array($dataType, self::DATA_TYPE_VALUES)) { + throw new Exception('Invalid datatype for chart data series values'); + } + $this->dataType = $dataType; + + return $this; + } + + /** + * Get Series Data Source (formula). + * + * @return ?string + */ + public function getDataSource() + { + return $this->dataSource; + } + + /** + * Set Series Data Source (formula). + * + * @param ?string $dataSource + * + * @return $this + */ + public function setDataSource($dataSource) + { + $this->dataSource = $dataSource; + + return $this; + } + + /** + * Get Point Marker. + * + * @return string + */ + public function getPointMarker() + { + return $this->pointMarker; + } + + /** + * Set Point Marker. + * + * @param string $marker + * + * @return $this + */ + public function setPointMarker($marker) + { + $this->pointMarker = $marker; + + return $this; + } + + public function getMarkerFillColor(): ChartColor + { + return $this->markerFillColor; + } + + public function getMarkerBorderColor(): ChartColor + { + return $this->markerBorderColor; + } + + /** + * Get Point Size. + */ + public function getPointSize(): int + { + return $this->pointSize; + } + + /** + * Set Point Size. + * + * @return $this + */ + public function setPointSize(int $size = 3) + { + $this->pointSize = $size; + + return $this; + } + + /** + * Get Series Format Code. + * + * @return string + */ + public function getFormatCode() + { + return $this->formatCode; + } + + /** + * Set Series Format Code. + * + * @param string $formatCode + * + * @return $this + */ + public function setFormatCode($formatCode) + { + $this->formatCode = $formatCode; + + return $this; + } + + /** + * Get Series Point Count. + * + * @return int + */ + public function getPointCount() + { + return $this->pointCount; + } + + /** + * Get fill color object. + * + * @return null|ChartColor|ChartColor[] + */ + public function getFillColorObject() + { + return $this->fillColor; + } + + private function stringToChartColor(string $fillString): ChartColor + { + $value = $type = ''; + if (substr($fillString, 0, 1) === '*') { + $type = 'schemeClr'; + $value = substr($fillString, 1); + } elseif (substr($fillString, 0, 1) === '/') { + $type = 'prstClr'; + $value = substr($fillString, 1); + } elseif ($fillString !== '') { + $type = 'srgbClr'; + $value = $fillString; + $this->validateColor($value); + } + + return new ChartColor($value, null, $type); + } + + private function chartColorToString(ChartColor $chartColor): string + { + $type = (string) $chartColor->getColorProperty('type'); + $value = (string) $chartColor->getColorProperty('value'); + if ($type === '' || $value === '') { + return ''; + } + if ($type === 'schemeClr') { + return "*$value"; + } + if ($type === 'prstClr') { + return "/$value"; + } + + return $value; + } + + /** + * Get fill color. + * + * @return string|string[] HEX color or array with HEX colors + */ + public function getFillColor() + { + if ($this->fillColor === null) { + return ''; + } + if (is_array($this->fillColor)) { + $array = []; + foreach ($this->fillColor as $chartColor) { + $array[] = self::chartColorToString($chartColor); + } + + return $array; + } + + return self::chartColorToString($this->fillColor); + } + + /** + * Set fill color for series. + * + * @param ChartColor|ChartColor[]|string|string[] $color HEX color or array with HEX colors + * + * @return DataSeriesValues + */ + public function setFillColor($color) + { + if (is_array($color)) { + $this->fillColor = []; + foreach ($color as $fillString) { + if ($fillString instanceof ChartColor) { + $this->fillColor[] = $fillString; + } else { + $this->fillColor[] = self::stringToChartColor($fillString); + } + } + } elseif ($color instanceof ChartColor) { + $this->fillColor = $color; + } elseif (is_string($color)) { + $this->fillColor = self::stringToChartColor($color); + } + + return $this; + } + + /** + * Method for validating hex color. + * + * @param string $color value for color + * + * @return bool true if validation was successful + */ + private function validateColor($color) + { + if (!preg_match('/^[a-f0-9]{6}$/i', $color)) { + throw new Exception(sprintf('Invalid hex color for chart series (color: "%s")', $color)); + } + + return true; + } + + /** + * Get line width for series. + * + * @return null|float|int + */ + public function getLineWidth() + { + return $this->lineStyleProperties['width']; + } + + /** + * Set line width for the series. + * + * @param null|float|int $width + * + * @return $this + */ + public function setLineWidth($width) + { + $this->lineStyleProperties['width'] = $width; + + return $this; + } + + /** + * Identify if the Data Series is a multi-level or a simple series. + * + * @return null|bool + */ + public function isMultiLevelSeries() + { + if (!empty($this->dataValues)) { + return is_array(array_values($this->dataValues)[0]); + } + + return null; + } + + /** + * Return the level count of a multi-level Data Series. + * + * @return int + */ + public function multiLevelCount() + { + $levelCount = 0; + foreach ($this->dataValues as $dataValueSet) { + $levelCount = max($levelCount, count($dataValueSet)); + } + + return $levelCount; + } + + /** + * Get Series Data Values. + * + * @return mixed[] + */ + public function getDataValues() + { + return $this->dataValues; + } + + /** + * Get the first Series Data value. + * + * @return mixed + */ + public function getDataValue() + { + $count = count($this->dataValues); + if ($count == 0) { + return null; + } elseif ($count == 1) { + return $this->dataValues[0]; + } + + return $this->dataValues; + } + + /** + * Set Series Data Values. + * + * @param array $dataValues + * + * @return $this + */ + public function setDataValues($dataValues) + { + $this->dataValues = Functions::flattenArray($dataValues); + $this->pointCount = count($dataValues); + + return $this; + } + + public function refresh(Worksheet $worksheet, bool $flatten = true): void + { + if ($this->dataSource !== null) { + $calcEngine = Calculation::getInstance($worksheet->getParent()); + $newDataValues = Calculation::unwrapResult( + $calcEngine->_calculateFormulaValue( + '=' . $this->dataSource, + null, + $worksheet->getCell('A1') + ) + ); + if ($flatten) { + $this->dataValues = Functions::flattenArray($newDataValues); + foreach ($this->dataValues as &$dataValue) { + if (is_string($dataValue) && !empty($dataValue) && $dataValue[0] == '#') { + $dataValue = 0.0; + } + } + unset($dataValue); + } else { + [$worksheet, $cellRange] = Worksheet::extractSheetTitle($this->dataSource, true); + $dimensions = Coordinate::rangeDimension(str_replace('$', '', $cellRange)); + if (($dimensions[0] == 1) || ($dimensions[1] == 1)) { + $this->dataValues = Functions::flattenArray($newDataValues); + } else { + $newArray = array_values(array_shift($newDataValues)); + foreach ($newArray as $i => $newDataSet) { + $newArray[$i] = [$newDataSet]; + } + + foreach ($newDataValues as $newDataSet) { + $i = 0; + foreach ($newDataSet as $newDataVal) { + array_unshift($newArray[$i++], $newDataVal); + } + } + $this->dataValues = $newArray; + } + } + $this->pointCount = count($this->dataValues); + } + } + + public function getScatterLines(): bool + { + return $this->scatterLines; + } + + public function setScatterLines(bool $scatterLines): self + { + $this->scatterLines = $scatterLines; + + return $this; + } + + public function getBubble3D(): bool + { + return $this->bubble3D; + } + + public function setBubble3D(bool $bubble3D): self + { + $this->bubble3D = $bubble3D; + + return $this; + } + + /** + * Smooth Line. + * + * @var bool + */ + private $smoothLine; + + /** + * Get Smooth Line. + * + * @return bool + */ + public function getSmoothLine() + { + return $this->smoothLine; + } + + /** + * Set Smooth Line. + * + * @param bool $smoothLine + * + * @return $this + */ + public function setSmoothLine($smoothLine) + { + $this->smoothLine = $smoothLine; + + return $this; + } + + public function getLabelLayout(): ?Layout + { + return $this->labelLayout; + } + + public function setLabelLayout(?Layout $labelLayout): self + { + $this->labelLayout = $labelLayout; + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Exception.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Exception.php new file mode 100644 index 0000000..3f95b59 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Exception.php @@ -0,0 +1,9 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Chart; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; + +class Exception extends PhpSpreadsheetException +{ +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/GridLines.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/GridLines.php new file mode 100644 index 0000000..8b86ccb --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/GridLines.php @@ -0,0 +1,13 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Chart; + +/** + * Created by PhpStorm. + * User: Wiktor Trzonkowski + * Date: 7/2/14 + * Time: 2:36 PM. + */ +class GridLines extends Properties +{ +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Layout.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Layout.php new file mode 100644 index 0000000..3dabcc6 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Layout.php @@ -0,0 +1,543 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Chart; + +class Layout +{ + /** + * layoutTarget. + * + * @var string + */ + private $layoutTarget; + + /** + * X Mode. + * + * @var string + */ + private $xMode; + + /** + * Y Mode. + * + * @var string + */ + private $yMode; + + /** + * X-Position. + * + * @var float + */ + private $xPos; + + /** + * Y-Position. + * + * @var float + */ + private $yPos; + + /** + * width. + * + * @var float + */ + private $width; + + /** + * height. + * + * @var float + */ + private $height; + + /** + * Position - t=top. + * + * @var string + */ + private $dLblPos = ''; + + /** @var string */ + private $numFmtCode = ''; + + /** @var bool */ + private $numFmtLinked = false; + + /** + * show legend key + * Specifies that legend keys should be shown in data labels. + * + * @var ?bool + */ + private $showLegendKey; + + /** + * show value + * Specifies that the value should be shown in a data label. + * + * @var ?bool + */ + private $showVal; + + /** + * show category name + * Specifies that the category name should be shown in the data label. + * + * @var ?bool + */ + private $showCatName; + + /** + * show data series name + * Specifies that the series name should be shown in the data label. + * + * @var ?bool + */ + private $showSerName; + + /** + * show percentage + * Specifies that the percentage should be shown in the data label. + * + * @var ?bool + */ + private $showPercent; + + /** + * show bubble size. + * + * @var ?bool + */ + private $showBubbleSize; + + /** + * show leader lines + * Specifies that leader lines should be shown for the data label. + * + * @var ?bool + */ + private $showLeaderLines; + + /** @var ?ChartColor */ + private $labelFillColor; + + /** @var ?ChartColor */ + private $labelBorderColor; + + /** @var ?ChartColor */ + private $labelFontColor; + + /** + * Create a new Layout. + */ + public function __construct(array $layout = []) + { + if (isset($layout['layoutTarget'])) { + $this->layoutTarget = $layout['layoutTarget']; + } + if (isset($layout['xMode'])) { + $this->xMode = $layout['xMode']; + } + if (isset($layout['yMode'])) { + $this->yMode = $layout['yMode']; + } + if (isset($layout['x'])) { + $this->xPos = (float) $layout['x']; + } + if (isset($layout['y'])) { + $this->yPos = (float) $layout['y']; + } + if (isset($layout['w'])) { + $this->width = (float) $layout['w']; + } + if (isset($layout['h'])) { + $this->height = (float) $layout['h']; + } + if (isset($layout['dLblPos'])) { + $this->dLblPos = (string) $layout['dLblPos']; + } + if (isset($layout['numFmtCode'])) { + $this->numFmtCode = (string) $layout['numFmtCode']; + } + $this->initBoolean($layout, 'showLegendKey'); + $this->initBoolean($layout, 'showVal'); + $this->initBoolean($layout, 'showCatName'); + $this->initBoolean($layout, 'showSerName'); + $this->initBoolean($layout, 'showPercent'); + $this->initBoolean($layout, 'showBubbleSize'); + $this->initBoolean($layout, 'showLeaderLines'); + $this->initBoolean($layout, 'numFmtLinked'); + $this->initColor($layout, 'labelFillColor'); + $this->initColor($layout, 'labelBorderColor'); + $this->initColor($layout, 'labelFontColor'); + } + + private function initBoolean(array $layout, string $name): void + { + if (isset($layout[$name])) { + $this->$name = (bool) $layout[$name]; + } + } + + private function initColor(array $layout, string $name): void + { + if (isset($layout[$name]) && $layout[$name] instanceof ChartColor) { + $this->$name = $layout[$name]; + } + } + + /** + * Get Layout Target. + * + * @return string + */ + public function getLayoutTarget() + { + return $this->layoutTarget; + } + + /** + * Set Layout Target. + * + * @param string $target + * + * @return $this + */ + public function setLayoutTarget($target) + { + $this->layoutTarget = $target; + + return $this; + } + + /** + * Get X-Mode. + * + * @return string + */ + public function getXMode() + { + return $this->xMode; + } + + /** + * Set X-Mode. + * + * @param string $mode + * + * @return $this + */ + public function setXMode($mode) + { + $this->xMode = (string) $mode; + + return $this; + } + + /** + * Get Y-Mode. + * + * @return string + */ + public function getYMode() + { + return $this->yMode; + } + + /** + * Set Y-Mode. + * + * @param string $mode + * + * @return $this + */ + public function setYMode($mode) + { + $this->yMode = (string) $mode; + + return $this; + } + + /** + * Get X-Position. + * + * @return number + */ + public function getXPosition() + { + return $this->xPos; + } + + /** + * Set X-Position. + * + * @param float $position + * + * @return $this + */ + public function setXPosition($position) + { + $this->xPos = (float) $position; + + return $this; + } + + /** + * Get Y-Position. + * + * @return number + */ + public function getYPosition() + { + return $this->yPos; + } + + /** + * Set Y-Position. + * + * @param float $position + * + * @return $this + */ + public function setYPosition($position) + { + $this->yPos = (float) $position; + + return $this; + } + + /** + * Get Width. + * + * @return number + */ + public function getWidth() + { + return $this->width; + } + + /** + * Set Width. + * + * @param float $width + * + * @return $this + */ + public function setWidth($width) + { + $this->width = $width; + + return $this; + } + + /** + * Get Height. + * + * @return number + */ + public function getHeight() + { + return $this->height; + } + + /** + * Set Height. + * + * @param float $height + * + * @return $this + */ + public function setHeight($height) + { + $this->height = $height; + + return $this; + } + + public function getShowLegendKey(): ?bool + { + return $this->showLegendKey; + } + + /** + * Set show legend key + * Specifies that legend keys should be shown in data labels. + */ + public function setShowLegendKey(?bool $showLegendKey): self + { + $this->showLegendKey = $showLegendKey; + + return $this; + } + + public function getShowVal(): ?bool + { + return $this->showVal; + } + + /** + * Set show val + * Specifies that the value should be shown in data labels. + */ + public function setShowVal(?bool $showDataLabelValues): self + { + $this->showVal = $showDataLabelValues; + + return $this; + } + + public function getShowCatName(): ?bool + { + return $this->showCatName; + } + + /** + * Set show cat name + * Specifies that the category name should be shown in data labels. + */ + public function setShowCatName(?bool $showCategoryName): self + { + $this->showCatName = $showCategoryName; + + return $this; + } + + public function getShowSerName(): ?bool + { + return $this->showSerName; + } + + /** + * Set show data series name. + * Specifies that the series name should be shown in data labels. + */ + public function setShowSerName(?bool $showSeriesName): self + { + $this->showSerName = $showSeriesName; + + return $this; + } + + public function getShowPercent(): ?bool + { + return $this->showPercent; + } + + /** + * Set show percentage. + * Specifies that the percentage should be shown in data labels. + */ + public function setShowPercent(?bool $showPercentage): self + { + $this->showPercent = $showPercentage; + + return $this; + } + + public function getShowBubbleSize(): ?bool + { + return $this->showBubbleSize; + } + + /** + * Set show bubble size. + * Specifies that the bubble size should be shown in data labels. + */ + public function setShowBubbleSize(?bool $showBubbleSize): self + { + $this->showBubbleSize = $showBubbleSize; + + return $this; + } + + public function getShowLeaderLines(): ?bool + { + return $this->showLeaderLines; + } + + /** + * Set show leader lines. + * Specifies that leader lines should be shown in data labels. + */ + public function setShowLeaderLines(?bool $showLeaderLines): self + { + $this->showLeaderLines = $showLeaderLines; + + return $this; + } + + public function getLabelFillColor(): ?ChartColor + { + return $this->labelFillColor; + } + + public function setLabelFillColor(?ChartColor $chartColor): self + { + $this->labelFillColor = $chartColor; + + return $this; + } + + public function getLabelBorderColor(): ?ChartColor + { + return $this->labelBorderColor; + } + + public function setLabelBorderColor(?ChartColor $chartColor): self + { + $this->labelBorderColor = $chartColor; + + return $this; + } + + public function getLabelFontColor(): ?ChartColor + { + return $this->labelFontColor; + } + + public function setLabelFontColor(?ChartColor $chartColor): self + { + $this->labelFontColor = $chartColor; + + return $this; + } + + public function getDLblPos(): string + { + return $this->dLblPos; + } + + public function setDLblPos(string $dLblPos): self + { + $this->dLblPos = $dLblPos; + + return $this; + } + + public function getNumFmtCode(): string + { + return $this->numFmtCode; + } + + public function setNumFmtCode(string $numFmtCode): self + { + $this->numFmtCode = $numFmtCode; + + return $this; + } + + public function getNumFmtLinked(): bool + { + return $this->numFmtLinked; + } + + public function setNumFmtLinked(bool $numFmtLinked): self + { + $this->numFmtLinked = $numFmtLinked; + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Legend.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Legend.php new file mode 100644 index 0000000..fc16017 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Legend.php @@ -0,0 +1,149 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Chart; + +class Legend +{ + /** Legend positions */ + const XL_LEGEND_POSITION_BOTTOM = -4107; // Below the chart. + const XL_LEGEND_POSITION_CORNER = 2; // In the upper right-hand corner of the chart border. + const XL_LEGEND_POSITION_CUSTOM = -4161; // A custom position. + const XL_LEGEND_POSITION_LEFT = -4131; // Left of the chart. + const XL_LEGEND_POSITION_RIGHT = -4152; // Right of the chart. + const XL_LEGEND_POSITION_TOP = -4160; // Above the chart. + + const POSITION_RIGHT = 'r'; + const POSITION_LEFT = 'l'; + const POSITION_BOTTOM = 'b'; + const POSITION_TOP = 't'; + const POSITION_TOPRIGHT = 'tr'; + + const POSITION_XLREF = [ + self::XL_LEGEND_POSITION_BOTTOM => self::POSITION_BOTTOM, + self::XL_LEGEND_POSITION_CORNER => self::POSITION_TOPRIGHT, + self::XL_LEGEND_POSITION_CUSTOM => '??', + self::XL_LEGEND_POSITION_LEFT => self::POSITION_LEFT, + self::XL_LEGEND_POSITION_RIGHT => self::POSITION_RIGHT, + self::XL_LEGEND_POSITION_TOP => self::POSITION_TOP, + ]; + + /** + * Legend position. + * + * @var string + */ + private $position = self::POSITION_RIGHT; + + /** + * Allow overlay of other elements? + * + * @var bool + */ + private $overlay = true; + + /** + * Legend Layout. + * + * @var ?Layout + */ + private $layout; + + /** + * Create a new Legend. + * + * @param string $position + * @param bool $overlay + */ + public function __construct($position = self::POSITION_RIGHT, ?Layout $layout = null, $overlay = false) + { + $this->setPosition($position); + $this->layout = $layout; + $this->setOverlay($overlay); + } + + /** + * Get legend position as an excel string value. + * + * @return string + */ + public function getPosition() + { + return $this->position; + } + + /** + * Get legend position using an excel string value. + * + * @param string $position see self::POSITION_* + * + * @return bool + */ + public function setPosition($position) + { + if (!in_array($position, self::POSITION_XLREF)) { + return false; + } + + $this->position = $position; + + return true; + } + + /** + * Get legend position as an Excel internal numeric value. + * + * @return false|int + */ + public function getPositionXL() + { + return array_search($this->position, self::POSITION_XLREF); + } + + /** + * Set legend position using an Excel internal numeric value. + * + * @param int $positionXL see self::XL_LEGEND_POSITION_* + * + * @return bool + */ + public function setPositionXL($positionXL) + { + if (!isset(self::POSITION_XLREF[$positionXL])) { + return false; + } + + $this->position = self::POSITION_XLREF[$positionXL]; + + return true; + } + + /** + * Get allow overlay of other elements? + * + * @return bool + */ + public function getOverlay() + { + return $this->overlay; + } + + /** + * Set allow overlay of other elements? + * + * @param bool $overlay + */ + public function setOverlay($overlay): void + { + $this->overlay = $overlay; + } + + /** + * Get Layout. + * + * @return ?Layout + */ + public function getLayout() + { + return $this->layout; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/PlotArea.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/PlotArea.php new file mode 100644 index 0000000..4bd49ec --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/PlotArea.php @@ -0,0 +1,104 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Chart; + +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class PlotArea +{ + /** + * PlotArea Layout. + * + * @var ?Layout + */ + private $layout; + + /** + * Plot Series. + * + * @var DataSeries[] + */ + private $plotSeries = []; + + /** + * Create a new PlotArea. + * + * @param DataSeries[] $plotSeries + */ + public function __construct(?Layout $layout = null, array $plotSeries = []) + { + $this->layout = $layout; + $this->plotSeries = $plotSeries; + } + + public function getLayout(): ?Layout + { + return $this->layout; + } + + /** + * Get Number of Plot Groups. + */ + public function getPlotGroupCount(): int + { + return count($this->plotSeries); + } + + /** + * Get Number of Plot Series. + * + * @return int + */ + public function getPlotSeriesCount() + { + $seriesCount = 0; + foreach ($this->plotSeries as $plot) { + $seriesCount += $plot->getPlotSeriesCount(); + } + + return $seriesCount; + } + + /** + * Get Plot Series. + * + * @return DataSeries[] + */ + public function getPlotGroup() + { + return $this->plotSeries; + } + + /** + * Get Plot Series by Index. + * + * @param mixed $index + * + * @return DataSeries + */ + public function getPlotGroupByIndex($index) + { + return $this->plotSeries[$index]; + } + + /** + * Set Plot Series. + * + * @param DataSeries[] $plotSeries + * + * @return $this + */ + public function setPlotSeries(array $plotSeries) + { + $this->plotSeries = $plotSeries; + + return $this; + } + + public function refresh(Worksheet $worksheet): void + { + foreach ($this->plotSeries as $plotSeries) { + $plotSeries->refresh($worksheet); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Properties.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Properties.php new file mode 100644 index 0000000..f737ca0 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Properties.php @@ -0,0 +1,985 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Chart; + +/** + * Created by PhpStorm. + * User: nhw2h8s + * Date: 7/2/14 + * Time: 5:45 PM. + */ +abstract class Properties +{ + /** @deprecated 1.24 use constant from ChartColor instead */ + const EXCEL_COLOR_TYPE_STANDARD = ChartColor::EXCEL_COLOR_TYPE_STANDARD; + /** @deprecated 1.24 use constant from ChartColor instead */ + const EXCEL_COLOR_TYPE_SCHEME = ChartColor::EXCEL_COLOR_TYPE_SCHEME; + /** @deprecated 1.24 use constant from ChartColor instead */ + const EXCEL_COLOR_TYPE_ARGB = ChartColor::EXCEL_COLOR_TYPE_ARGB; + + const + AXIS_LABELS_LOW = 'low'; + const AXIS_LABELS_HIGH = 'high'; + const AXIS_LABELS_NEXT_TO = 'nextTo'; + const AXIS_LABELS_NONE = 'none'; + + const + TICK_MARK_NONE = 'none'; + const TICK_MARK_INSIDE = 'in'; + const TICK_MARK_OUTSIDE = 'out'; + const TICK_MARK_CROSS = 'cross'; + + const + HORIZONTAL_CROSSES_AUTOZERO = 'autoZero'; + const HORIZONTAL_CROSSES_MAXIMUM = 'max'; + + const + FORMAT_CODE_GENERAL = 'General'; + const FORMAT_CODE_NUMBER = '#,##0.00'; + const FORMAT_CODE_CURRENCY = '$#,##0.00'; + const FORMAT_CODE_ACCOUNTING = '_($* #,##0.00_);_($* (#,##0.00);_($* "-"??_);_(@_)'; + const FORMAT_CODE_DATE = 'm/d/yyyy'; + const FORMAT_CODE_DATE_ISO8601 = 'yyyy-mm-dd'; + const FORMAT_CODE_TIME = '[$-F400]h:mm:ss AM/PM'; + const FORMAT_CODE_PERCENTAGE = '0.00%'; + const FORMAT_CODE_FRACTION = '# ?/?'; + const FORMAT_CODE_SCIENTIFIC = '0.00E+00'; + const FORMAT_CODE_TEXT = '@'; + const FORMAT_CODE_SPECIAL = '00000'; + + const + ORIENTATION_NORMAL = 'minMax'; + const ORIENTATION_REVERSED = 'maxMin'; + + const + LINE_STYLE_COMPOUND_SIMPLE = 'sng'; + const LINE_STYLE_COMPOUND_DOUBLE = 'dbl'; + const LINE_STYLE_COMPOUND_THICKTHIN = 'thickThin'; + const LINE_STYLE_COMPOUND_THINTHICK = 'thinThick'; + const LINE_STYLE_COMPOUND_TRIPLE = 'tri'; + const LINE_STYLE_DASH_SOLID = 'solid'; + const LINE_STYLE_DASH_ROUND_DOT = 'sysDot'; + const LINE_STYLE_DASH_SQUARE_DOT = 'sysDash'; + /** @deprecated 1.24 use LINE_STYLE_DASH_SQUARE_DOT instead */ + const LINE_STYLE_DASH_SQUERE_DOT = 'sysDash'; + const LINE_STYPE_DASH_DASH = 'dash'; + const LINE_STYLE_DASH_DASH_DOT = 'dashDot'; + const LINE_STYLE_DASH_LONG_DASH = 'lgDash'; + const LINE_STYLE_DASH_LONG_DASH_DOT = 'lgDashDot'; + const LINE_STYLE_DASH_LONG_DASH_DOT_DOT = 'lgDashDotDot'; + const LINE_STYLE_CAP_SQUARE = 'sq'; + const LINE_STYLE_CAP_ROUND = 'rnd'; + const LINE_STYLE_CAP_FLAT = 'flat'; + const LINE_STYLE_JOIN_ROUND = 'round'; + const LINE_STYLE_JOIN_MITER = 'miter'; + const LINE_STYLE_JOIN_BEVEL = 'bevel'; + const LINE_STYLE_ARROW_TYPE_NOARROW = null; + const LINE_STYLE_ARROW_TYPE_ARROW = 'triangle'; + const LINE_STYLE_ARROW_TYPE_OPEN = 'arrow'; + const LINE_STYLE_ARROW_TYPE_STEALTH = 'stealth'; + const LINE_STYLE_ARROW_TYPE_DIAMOND = 'diamond'; + const LINE_STYLE_ARROW_TYPE_OVAL = 'oval'; + const LINE_STYLE_ARROW_SIZE_1 = 1; + const LINE_STYLE_ARROW_SIZE_2 = 2; + const LINE_STYLE_ARROW_SIZE_3 = 3; + const LINE_STYLE_ARROW_SIZE_4 = 4; + const LINE_STYLE_ARROW_SIZE_5 = 5; + const LINE_STYLE_ARROW_SIZE_6 = 6; + const LINE_STYLE_ARROW_SIZE_7 = 7; + const LINE_STYLE_ARROW_SIZE_8 = 8; + const LINE_STYLE_ARROW_SIZE_9 = 9; + + const + SHADOW_PRESETS_NOSHADOW = null; + const SHADOW_PRESETS_OUTER_BOTTTOM_RIGHT = 1; + const SHADOW_PRESETS_OUTER_BOTTOM = 2; + const SHADOW_PRESETS_OUTER_BOTTOM_LEFT = 3; + const SHADOW_PRESETS_OUTER_RIGHT = 4; + const SHADOW_PRESETS_OUTER_CENTER = 5; + const SHADOW_PRESETS_OUTER_LEFT = 6; + const SHADOW_PRESETS_OUTER_TOP_RIGHT = 7; + const SHADOW_PRESETS_OUTER_TOP = 8; + const SHADOW_PRESETS_OUTER_TOP_LEFT = 9; + const SHADOW_PRESETS_INNER_BOTTTOM_RIGHT = 10; + const SHADOW_PRESETS_INNER_BOTTOM = 11; + const SHADOW_PRESETS_INNER_BOTTOM_LEFT = 12; + const SHADOW_PRESETS_INNER_RIGHT = 13; + const SHADOW_PRESETS_INNER_CENTER = 14; + const SHADOW_PRESETS_INNER_LEFT = 15; + const SHADOW_PRESETS_INNER_TOP_RIGHT = 16; + const SHADOW_PRESETS_INNER_TOP = 17; + const SHADOW_PRESETS_INNER_TOP_LEFT = 18; + const SHADOW_PRESETS_PERSPECTIVE_BELOW = 19; + const SHADOW_PRESETS_PERSPECTIVE_UPPER_RIGHT = 20; + const SHADOW_PRESETS_PERSPECTIVE_UPPER_LEFT = 21; + const SHADOW_PRESETS_PERSPECTIVE_LOWER_RIGHT = 22; + const SHADOW_PRESETS_PERSPECTIVE_LOWER_LEFT = 23; + + const POINTS_WIDTH_MULTIPLIER = 12700; + const ANGLE_MULTIPLIER = 60000; // direction and size-kx size-ky + const PERCENTAGE_MULTIPLIER = 100000; // size sx and sy + + /** @var bool */ + protected $objectState = false; // used only for minor gridlines + + /** @var ?float */ + protected $glowSize; + + /** @var ChartColor */ + protected $glowColor; + + /** @var array */ + protected $softEdges = [ + 'size' => null, + ]; + + /** @var array */ + protected $shadowProperties = self::PRESETS_OPTIONS[0]; + + /** @var ChartColor */ + protected $shadowColor; + + public function __construct() + { + $this->lineColor = new ChartColor(); + $this->glowColor = new ChartColor(); + $this->shadowColor = new ChartColor(); + $this->shadowColor->setType(ChartColor::EXCEL_COLOR_TYPE_STANDARD); + $this->shadowColor->setValue('black'); + $this->shadowColor->setAlpha(40); + } + + /** + * Get Object State. + * + * @return bool + */ + public function getObjectState() + { + return $this->objectState; + } + + /** + * Change Object State to True. + * + * @return $this + */ + public function activateObject() + { + $this->objectState = true; + + return $this; + } + + public static function pointsToXml(float $width): string + { + return (string) (int) ($width * self::POINTS_WIDTH_MULTIPLIER); + } + + public static function xmlToPoints(string $width): float + { + return ((float) $width) / self::POINTS_WIDTH_MULTIPLIER; + } + + public static function angleToXml(float $angle): string + { + return (string) (int) ($angle * self::ANGLE_MULTIPLIER); + } + + public static function xmlToAngle(string $angle): float + { + return ((float) $angle) / self::ANGLE_MULTIPLIER; + } + + public static function tenthOfPercentToXml(float $value): string + { + return (string) (int) ($value * self::PERCENTAGE_MULTIPLIER); + } + + public static function xmlToTenthOfPercent(string $value): float + { + return ((float) $value) / self::PERCENTAGE_MULTIPLIER; + } + + /** + * @param null|float|int|string $alpha + */ + protected function setColorProperties(?string $color, $alpha, ?string $colorType): array + { + return [ + 'type' => $colorType, + 'value' => $color, + 'alpha' => ($alpha === null) ? null : (int) $alpha, + ]; + } + + protected const PRESETS_OPTIONS = [ + //NONE + 0 => [ + 'presets' => self::SHADOW_PRESETS_NOSHADOW, + 'effect' => null, + //'color' => [ + // 'type' => ChartColor::EXCEL_COLOR_TYPE_STANDARD, + // 'value' => 'black', + // 'alpha' => 40, + //], + 'size' => [ + 'sx' => null, + 'sy' => null, + 'kx' => null, + 'ky' => null, + ], + 'blur' => null, + 'direction' => null, + 'distance' => null, + 'algn' => null, + 'rotWithShape' => null, + ], + //OUTER + 1 => [ + 'effect' => 'outerShdw', + 'blur' => 50800 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 38100 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 2700000 / self::ANGLE_MULTIPLIER, + 'algn' => 'tl', + 'rotWithShape' => '0', + ], + 2 => [ + 'effect' => 'outerShdw', + 'blur' => 50800 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 38100 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 5400000 / self::ANGLE_MULTIPLIER, + 'algn' => 't', + 'rotWithShape' => '0', + ], + 3 => [ + 'effect' => 'outerShdw', + 'blur' => 50800 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 38100 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 8100000 / self::ANGLE_MULTIPLIER, + 'algn' => 'tr', + 'rotWithShape' => '0', + ], + 4 => [ + 'effect' => 'outerShdw', + 'blur' => 50800 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 38100 / self::POINTS_WIDTH_MULTIPLIER, + 'algn' => 'l', + 'rotWithShape' => '0', + ], + 5 => [ + 'effect' => 'outerShdw', + 'size' => [ + 'sx' => 102000 / self::PERCENTAGE_MULTIPLIER, + 'sy' => 102000 / self::PERCENTAGE_MULTIPLIER, + ], + 'blur' => 63500 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 38100 / self::POINTS_WIDTH_MULTIPLIER, + 'algn' => 'ctr', + 'rotWithShape' => '0', + ], + 6 => [ + 'effect' => 'outerShdw', + 'blur' => 50800 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 38100 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 10800000 / self::ANGLE_MULTIPLIER, + 'algn' => 'r', + 'rotWithShape' => '0', + ], + 7 => [ + 'effect' => 'outerShdw', + 'blur' => 50800 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 38100 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 18900000 / self::ANGLE_MULTIPLIER, + 'algn' => 'bl', + 'rotWithShape' => '0', + ], + 8 => [ + 'effect' => 'outerShdw', + 'blur' => 50800 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 38100 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 16200000 / self::ANGLE_MULTIPLIER, + 'rotWithShape' => '0', + ], + 9 => [ + 'effect' => 'outerShdw', + 'blur' => 50800 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 38100 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 13500000 / self::ANGLE_MULTIPLIER, + 'algn' => 'br', + 'rotWithShape' => '0', + ], + //INNER + 10 => [ + 'effect' => 'innerShdw', + 'blur' => 63500 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 50800 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 2700000 / self::ANGLE_MULTIPLIER, + ], + 11 => [ + 'effect' => 'innerShdw', + 'blur' => 63500 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 50800 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 5400000 / self::ANGLE_MULTIPLIER, + ], + 12 => [ + 'effect' => 'innerShdw', + 'blur' => 63500 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 50800 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 8100000 / self::ANGLE_MULTIPLIER, + ], + 13 => [ + 'effect' => 'innerShdw', + 'blur' => 63500 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 50800 / self::POINTS_WIDTH_MULTIPLIER, + ], + 14 => [ + 'effect' => 'innerShdw', + 'blur' => 114300 / self::POINTS_WIDTH_MULTIPLIER, + ], + 15 => [ + 'effect' => 'innerShdw', + 'blur' => 63500 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 50800 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 10800000 / self::ANGLE_MULTIPLIER, + ], + 16 => [ + 'effect' => 'innerShdw', + 'blur' => 63500 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 50800 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 18900000 / self::ANGLE_MULTIPLIER, + ], + 17 => [ + 'effect' => 'innerShdw', + 'blur' => 63500 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 50800 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 16200000 / self::ANGLE_MULTIPLIER, + ], + 18 => [ + 'effect' => 'innerShdw', + 'blur' => 63500 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 50800 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 13500000 / self::ANGLE_MULTIPLIER, + ], + //perspective + 19 => [ + 'effect' => 'outerShdw', + 'blur' => 152400 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 317500 / self::POINTS_WIDTH_MULTIPLIER, + 'size' => [ + 'sx' => 90000 / self::PERCENTAGE_MULTIPLIER, + 'sy' => -19000 / self::PERCENTAGE_MULTIPLIER, + ], + 'direction' => 5400000 / self::ANGLE_MULTIPLIER, + 'rotWithShape' => '0', + ], + 20 => [ + 'effect' => 'outerShdw', + 'blur' => 76200 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 18900000 / self::ANGLE_MULTIPLIER, + 'size' => [ + 'sy' => 23000 / self::PERCENTAGE_MULTIPLIER, + 'kx' => -1200000 / self::ANGLE_MULTIPLIER, + ], + 'algn' => 'bl', + 'rotWithShape' => '0', + ], + 21 => [ + 'effect' => 'outerShdw', + 'blur' => 76200 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 13500000 / self::ANGLE_MULTIPLIER, + 'size' => [ + 'sy' => 23000 / self::PERCENTAGE_MULTIPLIER, + 'kx' => 1200000 / self::ANGLE_MULTIPLIER, + ], + 'algn' => 'br', + 'rotWithShape' => '0', + ], + 22 => [ + 'effect' => 'outerShdw', + 'blur' => 76200 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 12700 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 2700000 / self::ANGLE_MULTIPLIER, + 'size' => [ + 'sy' => -23000 / self::PERCENTAGE_MULTIPLIER, + 'kx' => -800400 / self::ANGLE_MULTIPLIER, + ], + 'algn' => 'bl', + 'rotWithShape' => '0', + ], + 23 => [ + 'effect' => 'outerShdw', + 'blur' => 76200 / self::POINTS_WIDTH_MULTIPLIER, + 'distance' => 12700 / self::POINTS_WIDTH_MULTIPLIER, + 'direction' => 8100000 / self::ANGLE_MULTIPLIER, + 'size' => [ + 'sy' => -23000 / self::PERCENTAGE_MULTIPLIER, + 'kx' => 800400 / self::ANGLE_MULTIPLIER, + ], + 'algn' => 'br', + 'rotWithShape' => '0', + ], + ]; + + protected function getShadowPresetsMap(int $presetsOption): array + { + return self::PRESETS_OPTIONS[$presetsOption] ?? self::PRESETS_OPTIONS[0]; + } + + /** + * Get value of array element. + * + * @param mixed $properties + * @param mixed $elements + * + * @return mixed + */ + protected function getArrayElementsValue($properties, $elements) + { + $reference = &$properties; + if (!is_array($elements)) { + return $reference[$elements]; + } + + foreach ($elements as $keys) { + $reference = &$reference[$keys]; + } + + return $reference; + } + + /** + * Set Glow Properties. + * + * @param float $size + * @param ?string $colorValue + * @param ?int $colorAlpha + * @param ?string $colorType + */ + public function setGlowProperties($size, $colorValue = null, $colorAlpha = null, $colorType = null): void + { + $this + ->activateObject() + ->setGlowSize($size); + $this->glowColor->setColorPropertiesArray( + [ + 'value' => $colorValue, + 'type' => $colorType, + 'alpha' => $colorAlpha, + ] + ); + } + + /** + * Get Glow Property. + * + * @param array|string $property + * + * @return null|array|float|int|string + */ + public function getGlowProperty($property) + { + $retVal = null; + if ($property === 'size') { + $retVal = $this->glowSize; + } elseif ($property === 'color') { + $retVal = [ + 'value' => $this->glowColor->getColorProperty('value'), + 'type' => $this->glowColor->getColorProperty('type'), + 'alpha' => $this->glowColor->getColorProperty('alpha'), + ]; + } elseif (is_array($property) && count($property) >= 2 && $property[0] === 'color') { + $retVal = $this->glowColor->getColorProperty($property[1]); + } + + return $retVal; + } + + /** + * Get Glow Color Property. + * + * @param string $propertyName + * + * @return null|int|string + */ + public function getGlowColor($propertyName) + { + return $this->glowColor->getColorProperty($propertyName); + } + + public function getGlowColorObject(): ChartColor + { + return $this->glowColor; + } + + /** + * Get Glow Size. + * + * @return ?float + */ + public function getGlowSize() + { + return $this->glowSize; + } + + /** + * Set Glow Size. + * + * @param ?float $size + * + * @return $this + */ + protected function setGlowSize($size) + { + $this->glowSize = $size; + + return $this; + } + + /** + * Set Soft Edges Size. + * + * @param float $size + */ + public function setSoftEdges($size): void + { + if ($size !== null) { + $this->activateObject(); + $this->softEdges['size'] = $size; + } + } + + /** + * Get Soft Edges Size. + * + * @return string + */ + public function getSoftEdgesSize() + { + return $this->softEdges['size']; + } + + /** + * @param mixed $value + */ + public function setShadowProperty(string $propertyName, $value): self + { + $this->activateObject(); + if ($propertyName === 'color' && is_array($value)) { + $this->shadowColor->setColorPropertiesArray($value); + } else { + $this->shadowProperties[$propertyName] = $value; + } + + return $this; + } + + /** + * Set Shadow Properties. + * + * @param int $presets + * @param string $colorValue + * @param string $colorType + * @param null|float|int|string $colorAlpha + * @param null|float $blur + * @param null|int $angle + * @param null|float $distance + */ + public function setShadowProperties($presets, $colorValue = null, $colorType = null, $colorAlpha = null, $blur = null, $angle = null, $distance = null): void + { + $this->activateObject()->setShadowPresetsProperties((int) $presets); + if ($presets === 0) { + $this->shadowColor->setType(ChartColor::EXCEL_COLOR_TYPE_STANDARD); + $this->shadowColor->setValue('black'); + $this->shadowColor->setAlpha(40); + } + if ($colorValue !== null) { + $this->shadowColor->setValue($colorValue); + } + if ($colorType !== null) { + $this->shadowColor->setType($colorType); + } + if (is_numeric($colorAlpha)) { + $this->shadowColor->setAlpha((int) $colorAlpha); + } + $this + ->setShadowBlur($blur) + ->setShadowAngle($angle) + ->setShadowDistance($distance); + } + + /** + * Set Shadow Presets Properties. + * + * @param int $presets + * + * @return $this + */ + protected function setShadowPresetsProperties($presets) + { + $this->shadowProperties['presets'] = $presets; + $this->setShadowPropertiesMapValues($this->getShadowPresetsMap($presets)); + + return $this; + } + + protected const SHADOW_ARRAY_KEYS = ['size', 'color']; + + /** + * Set Shadow Properties Values. + * + * @param mixed $reference + * + * @return $this + */ + protected function setShadowPropertiesMapValues(array $propertiesMap, &$reference = null) + { + $base_reference = $reference; + foreach ($propertiesMap as $property_key => $property_val) { + if (is_array($property_val)) { + if (in_array($property_key, self::SHADOW_ARRAY_KEYS, true)) { + $reference = &$this->shadowProperties[$property_key]; + $this->setShadowPropertiesMapValues($property_val, $reference); + } + } else { + if ($base_reference === null) { + $this->shadowProperties[$property_key] = $property_val; + } else { + $reference[$property_key] = $property_val; + } + } + } + + return $this; + } + + /** + * Set Shadow Blur. + * + * @param ?float $blur + * + * @return $this + */ + protected function setShadowBlur($blur) + { + if ($blur !== null) { + $this->shadowProperties['blur'] = $blur; + } + + return $this; + } + + /** + * Set Shadow Angle. + * + * @param null|float|int|string $angle + * + * @return $this + */ + protected function setShadowAngle($angle) + { + if (is_numeric($angle)) { + $this->shadowProperties['direction'] = $angle; + } + + return $this; + } + + /** + * Set Shadow Distance. + * + * @param ?float $distance + * + * @return $this + */ + protected function setShadowDistance($distance) + { + if ($distance !== null) { + $this->shadowProperties['distance'] = $distance; + } + + return $this; + } + + public function getShadowColorObject(): ChartColor + { + return $this->shadowColor; + } + + /** + * Get Shadow Property. + * + * @param string|string[] $elements + * + * @return array|string + */ + public function getShadowProperty($elements) + { + if ($elements === 'color') { + return [ + 'value' => $this->shadowColor->getValue(), + 'type' => $this->shadowColor->getType(), + 'alpha' => $this->shadowColor->getAlpha(), + ]; + } + + return $this->getArrayElementsValue($this->shadowProperties, $elements); + } + + public function getShadowArray(): array + { + $array = $this->shadowProperties; + if ($this->getShadowColorObject()->isUsable()) { + $array['color'] = $this->getShadowProperty('color'); + } + + return $array; + } + + /** @var ChartColor */ + protected $lineColor; + + /** @var array */ + protected $lineStyleProperties = [ + 'width' => null, //'9525', + 'compound' => '', //self::LINE_STYLE_COMPOUND_SIMPLE, + 'dash' => '', //self::LINE_STYLE_DASH_SOLID, + 'cap' => '', //self::LINE_STYLE_CAP_FLAT, + 'join' => '', //self::LINE_STYLE_JOIN_BEVEL, + 'arrow' => [ + 'head' => [ + 'type' => '', //self::LINE_STYLE_ARROW_TYPE_NOARROW, + 'size' => '', //self::LINE_STYLE_ARROW_SIZE_5, + 'w' => '', + 'len' => '', + ], + 'end' => [ + 'type' => '', //self::LINE_STYLE_ARROW_TYPE_NOARROW, + 'size' => '', //self::LINE_STYLE_ARROW_SIZE_8, + 'w' => '', + 'len' => '', + ], + ], + ]; + + public function copyLineStyles(self $otherProperties): void + { + $this->lineStyleProperties = $otherProperties->lineStyleProperties; + $this->lineColor = $otherProperties->lineColor; + $this->glowSize = $otherProperties->glowSize; + $this->glowColor = $otherProperties->glowColor; + $this->softEdges = $otherProperties->softEdges; + $this->shadowProperties = $otherProperties->shadowProperties; + } + + public function getLineColor(): ChartColor + { + return $this->lineColor; + } + + /** + * Set Line Color Properties. + * + * @param string $value + * @param ?int $alpha + * @param ?string $colorType + */ + public function setLineColorProperties($value, $alpha = null, $colorType = null): void + { + $this->activateObject(); + $this->lineColor->setColorPropertiesArray( + $this->setColorProperties( + $value, + $alpha, + $colorType + ) + ); + } + + /** + * Get Line Color Property. + * + * @param string $propertyName + * + * @return null|int|string + */ + public function getLineColorProperty($propertyName) + { + return $this->lineColor->getColorProperty($propertyName); + } + + /** + * Set Line Style Properties. + * + * @param null|float|int|string $lineWidth + * @param string $compoundType + * @param string $dashType + * @param string $capType + * @param string $joinType + * @param string $headArrowType + * @param string $headArrowSize + * @param string $endArrowType + * @param string $endArrowSize + * @param string $headArrowWidth + * @param string $headArrowLength + * @param string $endArrowWidth + * @param string $endArrowLength + */ + public function setLineStyleProperties($lineWidth = null, $compoundType = '', $dashType = '', $capType = '', $joinType = '', $headArrowType = '', $headArrowSize = '', $endArrowType = '', $endArrowSize = '', $headArrowWidth = '', $headArrowLength = '', $endArrowWidth = '', $endArrowLength = ''): void + { + $this->activateObject(); + if (is_numeric($lineWidth)) { + $this->lineStyleProperties['width'] = $lineWidth; + } + if ($compoundType !== '') { + $this->lineStyleProperties['compound'] = $compoundType; + } + if ($dashType !== '') { + $this->lineStyleProperties['dash'] = $dashType; + } + if ($capType !== '') { + $this->lineStyleProperties['cap'] = $capType; + } + if ($joinType !== '') { + $this->lineStyleProperties['join'] = $joinType; + } + if ($headArrowType !== '') { + $this->lineStyleProperties['arrow']['head']['type'] = $headArrowType; + } + if (array_key_exists($headArrowSize, self::ARROW_SIZES)) { + $this->lineStyleProperties['arrow']['head']['size'] = $headArrowSize; + $this->lineStyleProperties['arrow']['head']['w'] = self::ARROW_SIZES[$headArrowSize]['w']; + $this->lineStyleProperties['arrow']['head']['len'] = self::ARROW_SIZES[$headArrowSize]['len']; + } + if ($endArrowType !== '') { + $this->lineStyleProperties['arrow']['end']['type'] = $endArrowType; + } + if (array_key_exists($endArrowSize, self::ARROW_SIZES)) { + $this->lineStyleProperties['arrow']['end']['size'] = $endArrowSize; + $this->lineStyleProperties['arrow']['end']['w'] = self::ARROW_SIZES[$endArrowSize]['w']; + $this->lineStyleProperties['arrow']['end']['len'] = self::ARROW_SIZES[$endArrowSize]['len']; + } + if ($headArrowWidth !== '') { + $this->lineStyleProperties['arrow']['head']['w'] = $headArrowWidth; + } + if ($headArrowLength !== '') { + $this->lineStyleProperties['arrow']['head']['len'] = $headArrowLength; + } + if ($endArrowWidth !== '') { + $this->lineStyleProperties['arrow']['end']['w'] = $endArrowWidth; + } + if ($endArrowLength !== '') { + $this->lineStyleProperties['arrow']['end']['len'] = $endArrowLength; + } + } + + public function getLineStyleArray(): array + { + return $this->lineStyleProperties; + } + + public function setLineStyleArray(array $lineStyleProperties = []): self + { + $this->activateObject(); + $this->lineStyleProperties['width'] = $lineStyleProperties['width'] ?? null; + $this->lineStyleProperties['compound'] = $lineStyleProperties['compound'] ?? ''; + $this->lineStyleProperties['dash'] = $lineStyleProperties['dash'] ?? ''; + $this->lineStyleProperties['cap'] = $lineStyleProperties['cap'] ?? ''; + $this->lineStyleProperties['join'] = $lineStyleProperties['join'] ?? ''; + $this->lineStyleProperties['arrow']['head']['type'] = $lineStyleProperties['arrow']['head']['type'] ?? ''; + $this->lineStyleProperties['arrow']['head']['size'] = $lineStyleProperties['arrow']['head']['size'] ?? ''; + $this->lineStyleProperties['arrow']['head']['w'] = $lineStyleProperties['arrow']['head']['w'] ?? ''; + $this->lineStyleProperties['arrow']['head']['len'] = $lineStyleProperties['arrow']['head']['len'] ?? ''; + $this->lineStyleProperties['arrow']['end']['type'] = $lineStyleProperties['arrow']['end']['type'] ?? ''; + $this->lineStyleProperties['arrow']['end']['size'] = $lineStyleProperties['arrow']['end']['size'] ?? ''; + $this->lineStyleProperties['arrow']['end']['w'] = $lineStyleProperties['arrow']['end']['w'] ?? ''; + $this->lineStyleProperties['arrow']['end']['len'] = $lineStyleProperties['arrow']['end']['len'] ?? ''; + + return $this; + } + + /** + * @param mixed $value + */ + public function setLineStyleProperty(string $propertyName, $value): self + { + $this->activateObject(); + $this->lineStyleProperties[$propertyName] = $value; + + return $this; + } + + /** + * Get Line Style Property. + * + * @param array|string $elements + * + * @return string + */ + public function getLineStyleProperty($elements) + { + return $this->getArrayElementsValue($this->lineStyleProperties, $elements); + } + + protected const ARROW_SIZES = [ + 1 => ['w' => 'sm', 'len' => 'sm'], + 2 => ['w' => 'sm', 'len' => 'med'], + 3 => ['w' => 'sm', 'len' => 'lg'], + 4 => ['w' => 'med', 'len' => 'sm'], + 5 => ['w' => 'med', 'len' => 'med'], + 6 => ['w' => 'med', 'len' => 'lg'], + 7 => ['w' => 'lg', 'len' => 'sm'], + 8 => ['w' => 'lg', 'len' => 'med'], + 9 => ['w' => 'lg', 'len' => 'lg'], + ]; + + /** + * Get Line Style Arrow Size. + * + * @param int $arraySelector + * @param string $arrayKaySelector + * + * @return string + */ + protected function getLineStyleArrowSize($arraySelector, $arrayKaySelector) + { + return self::ARROW_SIZES[$arraySelector][$arrayKaySelector] ?? ''; + } + + /** + * Get Line Style Arrow Parameters. + * + * @param string $arrowSelector + * @param string $propertySelector + * + * @return string + */ + public function getLineStyleArrowParameters($arrowSelector, $propertySelector) + { + return $this->getLineStyleArrowSize($this->lineStyleProperties['arrow'][$arrowSelector]['size'], $propertySelector); + } + + /** + * Get Line Style Arrow Width. + * + * @param string $arrow + * + * @return string + */ + public function getLineStyleArrowWidth($arrow) + { + return $this->getLineStyleProperty(['arrow', $arrow, 'w']); + } + + /** + * Get Line Style Arrow Excel Length. + * + * @param string $arrow + * + * @return string + */ + public function getLineStyleArrowLength($arrow) + { + return $this->getLineStyleProperty(['arrow', $arrow, 'len']); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/IRenderer.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/IRenderer.php new file mode 100644 index 0000000..3032f6b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/IRenderer.php @@ -0,0 +1,22 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Chart\Renderer; + +use PhpOffice\PhpSpreadsheet\Chart\Chart; + +interface IRenderer +{ + /** + * IRenderer constructor. + */ + public function __construct(Chart $chart); + + /** + * Render the chart to given file (or stream). + * + * @param string $filename Name of the file render to + * + * @return bool true on success + */ + public function render($filename); +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/JpGraph.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/JpGraph.php new file mode 100644 index 0000000..b276707 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/JpGraph.php @@ -0,0 +1,882 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Chart\Renderer; + +use AccBarPlot; +use AccLinePlot; +use BarPlot; +use ContourPlot; +use Graph; +use GroupBarPlot; +use LinePlot; +use PhpOffice\PhpSpreadsheet\Chart\Chart; +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; +use PieGraph; +use PiePlot; +use PiePlot3D; +use PiePlotC; +use RadarGraph; +use RadarPlot; +use ScatterPlot; +use Spline; +use StockPlot; + +/** + * Jpgraph is not maintained in Composer, and the version there + * is extremely out of date. For that reason, all unit test + * requiring Jpgraph are skipped. So, do not measure + * code coverage for this class till that is fixed. + * + * @codeCoverageIgnore + */ +class JpGraph implements IRenderer +{ + private static $width = 640; + + private static $height = 480; + + private static $colourSet = [ + 'mediumpurple1', 'palegreen3', 'gold1', 'cadetblue1', + 'darkmagenta', 'coral', 'dodgerblue3', 'eggplant', + 'mediumblue', 'magenta', 'sandybrown', 'cyan', + 'firebrick1', 'forestgreen', 'deeppink4', 'darkolivegreen', + 'goldenrod2', + ]; + + private static $markSet; + + private $chart; + + private $graph; + + private static $plotColour = 0; + + private static $plotMark = 0; + + /** + * Create a new jpgraph. + */ + public function __construct(Chart $chart) + { + self::init(); + $this->graph = null; + $this->chart = $chart; + } + + private static function init(): void + { + static $loaded = false; + if ($loaded) { + return; + } + + \JpGraph\JpGraph::load(); + \JpGraph\JpGraph::module('bar'); + \JpGraph\JpGraph::module('contour'); + \JpGraph\JpGraph::module('line'); + \JpGraph\JpGraph::module('pie'); + \JpGraph\JpGraph::module('pie3d'); + \JpGraph\JpGraph::module('radar'); + \JpGraph\JpGraph::module('regstat'); + \JpGraph\JpGraph::module('scatter'); + \JpGraph\JpGraph::module('stock'); + + self::$markSet = [ + 'diamond' => MARK_DIAMOND, + 'square' => MARK_SQUARE, + 'triangle' => MARK_UTRIANGLE, + 'x' => MARK_X, + 'star' => MARK_STAR, + 'dot' => MARK_FILLEDCIRCLE, + 'dash' => MARK_DTRIANGLE, + 'circle' => MARK_CIRCLE, + 'plus' => MARK_CROSS, + ]; + + $loaded = true; + } + + private function formatPointMarker($seriesPlot, $markerID) + { + $plotMarkKeys = array_keys(self::$markSet); + if ($markerID === null) { + // Use default plot marker (next marker in the series) + self::$plotMark %= count(self::$markSet); + $seriesPlot->mark->SetType(self::$markSet[$plotMarkKeys[self::$plotMark++]]); + } elseif ($markerID !== 'none') { + // Use specified plot marker (if it exists) + if (isset(self::$markSet[$markerID])) { + $seriesPlot->mark->SetType(self::$markSet[$markerID]); + } else { + // If the specified plot marker doesn't exist, use default plot marker (next marker in the series) + self::$plotMark %= count(self::$markSet); + $seriesPlot->mark->SetType(self::$markSet[$plotMarkKeys[self::$plotMark++]]); + } + } else { + // Hide plot marker + $seriesPlot->mark->Hide(); + } + $seriesPlot->mark->SetColor(self::$colourSet[self::$plotColour]); + $seriesPlot->mark->SetFillColor(self::$colourSet[self::$plotColour]); + $seriesPlot->SetColor(self::$colourSet[self::$plotColour++]); + + return $seriesPlot; + } + + private function formatDataSetLabels($groupID, $datasetLabels, $labelCount, $rotation = '') + { + $datasetLabelFormatCode = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotCategoryByIndex(0)->getFormatCode(); + if ($datasetLabelFormatCode !== null) { + // Retrieve any label formatting code + $datasetLabelFormatCode = stripslashes($datasetLabelFormatCode); + } + + $testCurrentIndex = 0; + foreach ($datasetLabels as $i => $datasetLabel) { + if (is_array($datasetLabel)) { + if ($rotation == 'bar') { + $datasetLabels[$i] = implode(' ', $datasetLabel); + } else { + $datasetLabel = array_reverse($datasetLabel); + $datasetLabels[$i] = implode("\n", $datasetLabel); + } + } else { + // Format labels according to any formatting code + if ($datasetLabelFormatCode !== null) { + $datasetLabels[$i] = NumberFormat::toFormattedString($datasetLabel, $datasetLabelFormatCode); + } + } + ++$testCurrentIndex; + } + + return $datasetLabels; + } + + private function percentageSumCalculation($groupID, $seriesCount) + { + $sumValues = []; + // Adjust our values to a percentage value across all series in the group + for ($i = 0; $i < $seriesCount; ++$i) { + if ($i == 0) { + $sumValues = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getDataValues(); + } else { + $nextValues = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getDataValues(); + foreach ($nextValues as $k => $value) { + if (isset($sumValues[$k])) { + $sumValues[$k] += $value; + } else { + $sumValues[$k] = $value; + } + } + } + } + + return $sumValues; + } + + private function percentageAdjustValues($dataValues, $sumValues) + { + foreach ($dataValues as $k => $dataValue) { + $dataValues[$k] = $dataValue / $sumValues[$k] * 100; + } + + return $dataValues; + } + + private function getCaption($captionElement) + { + // Read any caption + $caption = ($captionElement !== null) ? $captionElement->getCaption() : null; + // Test if we have a title caption to display + if ($caption !== null) { + // If we do, it could be a plain string or an array + if (is_array($caption)) { + // Implode an array to a plain string + $caption = implode('', $caption); + } + } + + return $caption; + } + + private function renderTitle(): void + { + $title = $this->getCaption($this->chart->getTitle()); + if ($title !== null) { + $this->graph->title->Set($title); + } + } + + private function renderLegend(): void + { + $legend = $this->chart->getLegend(); + if ($legend !== null) { + $legendPosition = $legend->getPosition(); + switch ($legendPosition) { + case 'r': + $this->graph->legend->SetPos(0.01, 0.5, 'right', 'center'); // right + $this->graph->legend->SetColumns(1); + + break; + case 'l': + $this->graph->legend->SetPos(0.01, 0.5, 'left', 'center'); // left + $this->graph->legend->SetColumns(1); + + break; + case 't': + $this->graph->legend->SetPos(0.5, 0.01, 'center', 'top'); // top + + break; + case 'b': + $this->graph->legend->SetPos(0.5, 0.99, 'center', 'bottom'); // bottom + + break; + default: + $this->graph->legend->SetPos(0.01, 0.01, 'right', 'top'); // top-right + $this->graph->legend->SetColumns(1); + + break; + } + } else { + $this->graph->legend->Hide(); + } + } + + private function renderCartesianPlotArea($type = 'textlin'): void + { + $this->graph = new Graph(self::$width, self::$height); + $this->graph->SetScale($type); + + $this->renderTitle(); + + // Rotate for bar rather than column chart + $rotation = $this->chart->getPlotArea()->getPlotGroupByIndex(0)->getPlotDirection(); + $reverse = $rotation == 'bar'; + + $xAxisLabel = $this->chart->getXAxisLabel(); + if ($xAxisLabel !== null) { + $title = $this->getCaption($xAxisLabel); + if ($title !== null) { + $this->graph->xaxis->SetTitle($title, 'center'); + $this->graph->xaxis->title->SetMargin(35); + if ($reverse) { + $this->graph->xaxis->title->SetAngle(90); + $this->graph->xaxis->title->SetMargin(90); + } + } + } + + $yAxisLabel = $this->chart->getYAxisLabel(); + if ($yAxisLabel !== null) { + $title = $this->getCaption($yAxisLabel); + if ($title !== null) { + $this->graph->yaxis->SetTitle($title, 'center'); + if ($reverse) { + $this->graph->yaxis->title->SetAngle(0); + $this->graph->yaxis->title->SetMargin(-55); + } + } + } + } + + private function renderPiePlotArea(): void + { + $this->graph = new PieGraph(self::$width, self::$height); + + $this->renderTitle(); + } + + private function renderRadarPlotArea(): void + { + $this->graph = new RadarGraph(self::$width, self::$height); + $this->graph->SetScale('lin'); + + $this->renderTitle(); + } + + private function renderPlotLine($groupID, $filled = false, $combination = false, $dimensions = '2d'): void + { + $grouping = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotGrouping(); + + $labelCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex(0)->getPointCount(); + if ($labelCount > 0) { + $datasetLabels = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotCategoryByIndex(0)->getDataValues(); + $datasetLabels = $this->formatDataSetLabels($groupID, $datasetLabels, $labelCount); + $this->graph->xaxis->SetTickLabels($datasetLabels); + } + + $seriesCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotSeriesCount(); + $seriesPlots = []; + if ($grouping == 'percentStacked') { + $sumValues = $this->percentageSumCalculation($groupID, $seriesCount); + } else { + $sumValues = []; + } + + // Loop through each data series in turn + for ($i = 0; $i < $seriesCount; ++$i) { + $dataValues = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getDataValues(); + $marker = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getPointMarker(); + + if ($grouping == 'percentStacked') { + $dataValues = $this->percentageAdjustValues($dataValues, $sumValues); + } + + // Fill in any missing values in the $dataValues array + $testCurrentIndex = 0; + foreach ($dataValues as $k => $dataValue) { + while ($k != $testCurrentIndex) { + $dataValues[$testCurrentIndex] = null; + ++$testCurrentIndex; + } + ++$testCurrentIndex; + } + + $seriesPlot = new LinePlot($dataValues); + if ($combination) { + $seriesPlot->SetBarCenter(); + } + + if ($filled) { + $seriesPlot->SetFilled(true); + $seriesPlot->SetColor('black'); + $seriesPlot->SetFillColor(self::$colourSet[self::$plotColour++]); + } else { + // Set the appropriate plot marker + $this->formatPointMarker($seriesPlot, $marker); + } + $dataLabel = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotLabelByIndex($i)->getDataValue(); + $seriesPlot->SetLegend($dataLabel); + + $seriesPlots[] = $seriesPlot; + } + + if ($grouping == 'standard') { + $groupPlot = $seriesPlots; + } else { + $groupPlot = new AccLinePlot($seriesPlots); + } + $this->graph->Add($groupPlot); + } + + private function renderPlotBar($groupID, $dimensions = '2d'): void + { + $rotation = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotDirection(); + // Rotate for bar rather than column chart + if (($groupID == 0) && ($rotation == 'bar')) { + $this->graph->Set90AndMargin(); + } + $grouping = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotGrouping(); + + $labelCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex(0)->getPointCount(); + if ($labelCount > 0) { + $datasetLabels = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotCategoryByIndex(0)->getDataValues(); + $datasetLabels = $this->formatDataSetLabels($groupID, $datasetLabels, $labelCount, $rotation); + // Rotate for bar rather than column chart + if ($rotation == 'bar') { + $datasetLabels = array_reverse($datasetLabels); + $this->graph->yaxis->SetPos('max'); + $this->graph->yaxis->SetLabelAlign('center', 'top'); + $this->graph->yaxis->SetLabelSide(SIDE_RIGHT); + } + $this->graph->xaxis->SetTickLabels($datasetLabels); + } + + $seriesCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotSeriesCount(); + $seriesPlots = []; + if ($grouping == 'percentStacked') { + $sumValues = $this->percentageSumCalculation($groupID, $seriesCount); + } else { + $sumValues = []; + } + + // Loop through each data series in turn + for ($j = 0; $j < $seriesCount; ++$j) { + $dataValues = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($j)->getDataValues(); + if ($grouping == 'percentStacked') { + $dataValues = $this->percentageAdjustValues($dataValues, $sumValues); + } + + // Fill in any missing values in the $dataValues array + $testCurrentIndex = 0; + foreach ($dataValues as $k => $dataValue) { + while ($k != $testCurrentIndex) { + $dataValues[$testCurrentIndex] = null; + ++$testCurrentIndex; + } + ++$testCurrentIndex; + } + + // Reverse the $dataValues order for bar rather than column chart + if ($rotation == 'bar') { + $dataValues = array_reverse($dataValues); + } + $seriesPlot = new BarPlot($dataValues); + $seriesPlot->SetColor('black'); + $seriesPlot->SetFillColor(self::$colourSet[self::$plotColour++]); + if ($dimensions == '3d') { + $seriesPlot->SetShadow(); + } + if (!$this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotLabelByIndex($j)) { + $dataLabel = ''; + } else { + $dataLabel = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotLabelByIndex($j)->getDataValue(); + } + $seriesPlot->SetLegend($dataLabel); + + $seriesPlots[] = $seriesPlot; + } + // Reverse the plot order for bar rather than column chart + if (($rotation == 'bar') && ($grouping != 'percentStacked')) { + $seriesPlots = array_reverse($seriesPlots); + } + + if ($grouping == 'clustered') { + $groupPlot = new GroupBarPlot($seriesPlots); + } elseif ($grouping == 'standard') { + $groupPlot = new GroupBarPlot($seriesPlots); + } else { + $groupPlot = new AccBarPlot($seriesPlots); + if ($dimensions == '3d') { + $groupPlot->SetShadow(); + } + } + + $this->graph->Add($groupPlot); + } + + private function renderPlotScatter($groupID, $bubble): void + { + $grouping = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotGrouping(); + $scatterStyle = $bubbleSize = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotStyle(); + + $seriesCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotSeriesCount(); + $seriesPlots = []; + + // Loop through each data series in turn + for ($i = 0; $i < $seriesCount; ++$i) { + $dataValuesY = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotCategoryByIndex($i)->getDataValues(); + $dataValuesX = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getDataValues(); + + foreach ($dataValuesY as $k => $dataValueY) { + $dataValuesY[$k] = $k; + } + + $seriesPlot = new ScatterPlot($dataValuesX, $dataValuesY); + if ($scatterStyle == 'lineMarker') { + $seriesPlot->SetLinkPoints(); + $seriesPlot->link->SetColor(self::$colourSet[self::$plotColour]); + } elseif ($scatterStyle == 'smoothMarker') { + $spline = new Spline($dataValuesY, $dataValuesX); + [$splineDataY, $splineDataX] = $spline->Get(count($dataValuesX) * self::$width / 20); + $lplot = new LinePlot($splineDataX, $splineDataY); + $lplot->SetColor(self::$colourSet[self::$plotColour]); + + $this->graph->Add($lplot); + } + + if ($bubble) { + $this->formatPointMarker($seriesPlot, 'dot'); + $seriesPlot->mark->SetColor('black'); + $seriesPlot->mark->SetSize($bubbleSize); + } else { + $marker = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getPointMarker(); + $this->formatPointMarker($seriesPlot, $marker); + } + $dataLabel = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotLabelByIndex($i)->getDataValue(); + $seriesPlot->SetLegend($dataLabel); + + $this->graph->Add($seriesPlot); + } + } + + private function renderPlotRadar($groupID): void + { + $radarStyle = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotStyle(); + + $seriesCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotSeriesCount(); + $seriesPlots = []; + + // Loop through each data series in turn + for ($i = 0; $i < $seriesCount; ++$i) { + $dataValuesY = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotCategoryByIndex($i)->getDataValues(); + $dataValuesX = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getDataValues(); + $marker = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getPointMarker(); + + $dataValues = []; + foreach ($dataValuesY as $k => $dataValueY) { + $dataValues[$k] = implode(' ', array_reverse($dataValueY)); + } + $tmp = array_shift($dataValues); + $dataValues[] = $tmp; + $tmp = array_shift($dataValuesX); + $dataValuesX[] = $tmp; + + $this->graph->SetTitles(array_reverse($dataValues)); + + $seriesPlot = new RadarPlot(array_reverse($dataValuesX)); + + $dataLabel = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotLabelByIndex($i)->getDataValue(); + $seriesPlot->SetColor(self::$colourSet[self::$plotColour++]); + if ($radarStyle == 'filled') { + $seriesPlot->SetFillColor(self::$colourSet[self::$plotColour]); + } + $this->formatPointMarker($seriesPlot, $marker); + $seriesPlot->SetLegend($dataLabel); + + $this->graph->Add($seriesPlot); + } + } + + private function renderPlotContour($groupID): void + { + $contourStyle = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotStyle(); + + $seriesCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotSeriesCount(); + $seriesPlots = []; + + $dataValues = []; + // Loop through each data series in turn + for ($i = 0; $i < $seriesCount; ++$i) { + $dataValuesY = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotCategoryByIndex($i)->getDataValues(); + $dataValuesX = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($i)->getDataValues(); + + $dataValues[$i] = $dataValuesX; + } + $seriesPlot = new ContourPlot($dataValues); + + $this->graph->Add($seriesPlot); + } + + private function renderPlotStock($groupID): void + { + $seriesCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotSeriesCount(); + $plotOrder = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotOrder(); + + $dataValues = []; + // Loop through each data series in turn and build the plot arrays + foreach ($plotOrder as $i => $v) { + $dataValuesX = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($v)->getDataValues(); + foreach ($dataValuesX as $j => $dataValueX) { + $dataValues[$plotOrder[$i]][$j] = $dataValueX; + } + } + if (empty($dataValues)) { + return; + } + + $dataValuesPlot = []; + // Flatten the plot arrays to a single dimensional array to work with jpgraph + $jMax = count($dataValues[0]); + for ($j = 0; $j < $jMax; ++$j) { + for ($i = 0; $i < $seriesCount; ++$i) { + $dataValuesPlot[] = $dataValues[$i][$j]; + } + } + + // Set the x-axis labels + $labelCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex(0)->getPointCount(); + if ($labelCount > 0) { + $datasetLabels = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotCategoryByIndex(0)->getDataValues(); + $datasetLabels = $this->formatDataSetLabels($groupID, $datasetLabels, $labelCount); + $this->graph->xaxis->SetTickLabels($datasetLabels); + } + + $seriesPlot = new StockPlot($dataValuesPlot); + $seriesPlot->SetWidth(20); + + $this->graph->Add($seriesPlot); + } + + private function renderAreaChart($groupCount, $dimensions = '2d'): void + { + $this->renderCartesianPlotArea(); + + for ($i = 0; $i < $groupCount; ++$i) { + $this->renderPlotLine($i, true, false, $dimensions); + } + } + + private function renderLineChart($groupCount, $dimensions = '2d'): void + { + $this->renderCartesianPlotArea(); + + for ($i = 0; $i < $groupCount; ++$i) { + $this->renderPlotLine($i, false, false, $dimensions); + } + } + + private function renderBarChart($groupCount, $dimensions = '2d'): void + { + $this->renderCartesianPlotArea(); + + for ($i = 0; $i < $groupCount; ++$i) { + $this->renderPlotBar($i, $dimensions); + } + } + + private function renderScatterChart($groupCount): void + { + $this->renderCartesianPlotArea('linlin'); + + for ($i = 0; $i < $groupCount; ++$i) { + $this->renderPlotScatter($i, false); + } + } + + private function renderBubbleChart($groupCount): void + { + $this->renderCartesianPlotArea('linlin'); + + for ($i = 0; $i < $groupCount; ++$i) { + $this->renderPlotScatter($i, true); + } + } + + private function renderPieChart($groupCount, $dimensions = '2d', $doughnut = false, $multiplePlots = false): void + { + $this->renderPiePlotArea(); + + $iLimit = ($multiplePlots) ? $groupCount : 1; + for ($groupID = 0; $groupID < $iLimit; ++$groupID) { + $grouping = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotGrouping(); + $exploded = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotStyle(); + $datasetLabels = []; + if ($groupID == 0) { + $labelCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex(0)->getPointCount(); + if ($labelCount > 0) { + $datasetLabels = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotCategoryByIndex(0)->getDataValues(); + $datasetLabels = $this->formatDataSetLabels($groupID, $datasetLabels, $labelCount); + } + } + + $seriesCount = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotSeriesCount(); + $seriesPlots = []; + // For pie charts, we only display the first series: doughnut charts generally display all series + $jLimit = ($multiplePlots) ? $seriesCount : 1; + // Loop through each data series in turn + for ($j = 0; $j < $jLimit; ++$j) { + $dataValues = $this->chart->getPlotArea()->getPlotGroupByIndex($groupID)->getPlotValuesByIndex($j)->getDataValues(); + + // Fill in any missing values in the $dataValues array + $testCurrentIndex = 0; + foreach ($dataValues as $k => $dataValue) { + while ($k != $testCurrentIndex) { + $dataValues[$testCurrentIndex] = null; + ++$testCurrentIndex; + } + ++$testCurrentIndex; + } + + if ($dimensions == '3d') { + $seriesPlot = new PiePlot3D($dataValues); + } else { + if ($doughnut) { + $seriesPlot = new PiePlotC($dataValues); + } else { + $seriesPlot = new PiePlot($dataValues); + } + } + + if ($multiplePlots) { + $seriesPlot->SetSize(($jLimit - $j) / ($jLimit * 4)); + } + + if ($doughnut) { + $seriesPlot->SetMidColor('white'); + } + + $seriesPlot->SetColor(self::$colourSet[self::$plotColour++]); + if (count($datasetLabels) > 0) { + $seriesPlot->SetLabels(array_fill(0, count($datasetLabels), '')); + } + if ($dimensions != '3d') { + $seriesPlot->SetGuideLines(false); + } + if ($j == 0) { + if ($exploded) { + $seriesPlot->ExplodeAll(); + } + $seriesPlot->SetLegends($datasetLabels); + } + + $this->graph->Add($seriesPlot); + } + } + } + + private function renderRadarChart($groupCount): void + { + $this->renderRadarPlotArea(); + + for ($groupID = 0; $groupID < $groupCount; ++$groupID) { + $this->renderPlotRadar($groupID); + } + } + + private function renderStockChart($groupCount): void + { + $this->renderCartesianPlotArea('intint'); + + for ($groupID = 0; $groupID < $groupCount; ++$groupID) { + $this->renderPlotStock($groupID); + } + } + + private function renderContourChart($groupCount, $dimensions): void + { + $this->renderCartesianPlotArea('intint'); + + for ($i = 0; $i < $groupCount; ++$i) { + $this->renderPlotContour($i); + } + } + + private function renderCombinationChart($groupCount, $dimensions, $outputDestination) + { + $this->renderCartesianPlotArea(); + + for ($i = 0; $i < $groupCount; ++$i) { + $dimensions = null; + $chartType = $this->chart->getPlotArea()->getPlotGroupByIndex($i)->getPlotType(); + switch ($chartType) { + case 'area3DChart': + $dimensions = '3d'; + // no break + case 'areaChart': + $this->renderPlotLine($i, true, true, $dimensions); + + break; + case 'bar3DChart': + $dimensions = '3d'; + // no break + case 'barChart': + $this->renderPlotBar($i, $dimensions); + + break; + case 'line3DChart': + $dimensions = '3d'; + // no break + case 'lineChart': + $this->renderPlotLine($i, false, true, $dimensions); + + break; + case 'scatterChart': + $this->renderPlotScatter($i, false); + + break; + case 'bubbleChart': + $this->renderPlotScatter($i, true); + + break; + default: + $this->graph = null; + + return false; + } + } + + $this->renderLegend(); + + $this->graph->Stroke($outputDestination); + + return true; + } + + public function render($outputDestination) + { + self::$plotColour = 0; + + $groupCount = $this->chart->getPlotArea()->getPlotGroupCount(); + + $dimensions = null; + if ($groupCount == 1) { + $chartType = $this->chart->getPlotArea()->getPlotGroupByIndex(0)->getPlotType(); + } else { + $chartTypes = []; + for ($i = 0; $i < $groupCount; ++$i) { + $chartTypes[] = $this->chart->getPlotArea()->getPlotGroupByIndex($i)->getPlotType(); + } + $chartTypes = array_unique($chartTypes); + if (count($chartTypes) == 1) { + $chartType = array_pop($chartTypes); + } elseif (count($chartTypes) == 0) { + echo 'Chart is not yet implemented<br />'; + + return false; + } else { + return $this->renderCombinationChart($groupCount, $dimensions, $outputDestination); + } + } + + switch ($chartType) { + case 'area3DChart': + $dimensions = '3d'; + // no break + case 'areaChart': + $this->renderAreaChart($groupCount, $dimensions); + + break; + case 'bar3DChart': + $dimensions = '3d'; + // no break + case 'barChart': + $this->renderBarChart($groupCount, $dimensions); + + break; + case 'line3DChart': + $dimensions = '3d'; + // no break + case 'lineChart': + $this->renderLineChart($groupCount, $dimensions); + + break; + case 'pie3DChart': + $dimensions = '3d'; + // no break + case 'pieChart': + $this->renderPieChart($groupCount, $dimensions, false, false); + + break; + case 'doughnut3DChart': + $dimensions = '3d'; + // no break + case 'doughnutChart': + $this->renderPieChart($groupCount, $dimensions, true, true); + + break; + case 'scatterChart': + $this->renderScatterChart($groupCount); + + break; + case 'bubbleChart': + $this->renderBubbleChart($groupCount); + + break; + case 'radarChart': + $this->renderRadarChart($groupCount); + + break; + case 'surface3DChart': + $dimensions = '3d'; + // no break + case 'surfaceChart': + $this->renderContourChart($groupCount, $dimensions); + + break; + case 'stockChart': + $this->renderStockChart($groupCount); + + break; + default: + echo $chartType . ' is not yet implemented<br />'; + + return false; + } + $this->renderLegend(); + + $this->graph->Stroke($outputDestination); + + return true; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Title.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Title.php new file mode 100644 index 0000000..9b0540d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Title.php @@ -0,0 +1,85 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Chart; + +use PhpOffice\PhpSpreadsheet\RichText\RichText; + +class Title +{ + /** + * Title Caption. + * + * @var array|RichText|string + */ + private $caption = ''; + + /** + * Title Layout. + * + * @var ?Layout + */ + private $layout; + + /** + * Create a new Title. + * + * @param array|RichText|string $caption + */ + public function __construct($caption = '', ?Layout $layout = null) + { + $this->caption = $caption; + $this->layout = $layout; + } + + /** + * Get caption. + * + * @return array|RichText|string + */ + public function getCaption() + { + return $this->caption; + } + + public function getCaptionText(): string + { + $caption = $this->caption; + if (is_string($caption)) { + return $caption; + } + if ($caption instanceof RichText) { + return $caption->getPlainText(); + } + $retVal = ''; + foreach ($caption as $textx) { + /** @var RichText|string */ + $text = $textx; + if ($text instanceof RichText) { + $retVal .= $text->getPlainText(); + } else { + $retVal .= $text; + } + } + + return $retVal; + } + + /** + * Set caption. + * + * @param array|RichText|string $caption + * + * @return $this + */ + public function setCaption($caption) + { + $this->caption = $caption; + + return $this; + } + + public function getLayout(): ?Layout + { + return $this->layout; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Cells.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Cells.php new file mode 100644 index 0000000..20fccf4 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Cells.php @@ -0,0 +1,478 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Collection; + +use Generator; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; +use PhpOffice\PhpSpreadsheet\Settings; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; +use Psr\SimpleCache\CacheInterface; + +class Cells +{ + protected const MAX_COLUMN_ID = 16384; + + /** + * @var CacheInterface + */ + private $cache; + + /** + * Parent worksheet. + * + * @var null|Worksheet + */ + private $parent; + + /** + * The currently active Cell. + * + * @var null|Cell + */ + private $currentCell; + + /** + * Coordinate of the currently active Cell. + * + * @var null|string + */ + private $currentCoordinate; + + /** + * Flag indicating whether the currently active Cell requires saving. + * + * @var bool + */ + private $currentCellIsDirty = false; + + /** + * An index of existing cells. int pointer to the coordinate (0-base-indexed row * 16,384 + 1-base indexed column) + * indexed by their coordinate. + * + * @var int[] + */ + private $index = []; + + /** + * Prefix used to uniquely identify cache data for this worksheet. + * + * @var string + */ + private $cachePrefix; + + /** + * Initialise this new cell collection. + * + * @param Worksheet $parent The worksheet for this cell collection + */ + public function __construct(Worksheet $parent, CacheInterface $cache) + { + // Set our parent worksheet. + // This is maintained here to facilitate re-attaching it to Cell objects when + // they are woken from a serialized state + $this->parent = $parent; + $this->cache = $cache; + $this->cachePrefix = $this->getUniqueID(); + } + + /** + * Return the parent worksheet for this cell collection. + * + * @return null|Worksheet + */ + public function getParent() + { + return $this->parent; + } + + /** + * Whether the collection holds a cell for the given coordinate. + * + * @param string $cellCoordinate Coordinate of the cell to check + * + * @return bool + */ + public function has($cellCoordinate) + { + return ($cellCoordinate === $this->currentCoordinate) || isset($this->index[$cellCoordinate]); + } + + /** + * Add or update a cell in the collection. + * + * @param Cell $cell Cell to update + * + * @return Cell + */ + public function update(Cell $cell) + { + return $this->add($cell->getCoordinate(), $cell); + } + + /** + * Delete a cell in cache identified by coordinate. + * + * @param string $cellCoordinate Coordinate of the cell to delete + */ + public function delete($cellCoordinate): void + { + if ($cellCoordinate === $this->currentCoordinate && $this->currentCell !== null) { + $this->currentCell->detach(); + $this->currentCoordinate = null; + $this->currentCell = null; + $this->currentCellIsDirty = false; + } + + unset($this->index[$cellCoordinate]); + + // Delete the entry from cache + $this->cache->delete($this->cachePrefix . $cellCoordinate); + } + + /** + * Get a list of all cell coordinates currently held in the collection. + * + * @return string[] + */ + public function getCoordinates() + { + return array_keys($this->index); + } + + /** + * Get a sorted list of all cell coordinates currently held in the collection by row and column. + * + * @return string[] + */ + public function getSortedCoordinates() + { + asort($this->index); + + return array_keys($this->index); + } + + /** + * Return the cell coordinate of the currently active cell object. + * + * @return null|string + */ + public function getCurrentCoordinate() + { + return $this->currentCoordinate; + } + + /** + * Return the column coordinate of the currently active cell object. + * + * @return string + */ + public function getCurrentColumn() + { + sscanf($this->currentCoordinate ?? '', '%[A-Z]%d', $column, $row); + + return $column; + } + + /** + * Return the row coordinate of the currently active cell object. + * + * @return int + */ + public function getCurrentRow() + { + sscanf($this->currentCoordinate ?? '', '%[A-Z]%d', $column, $row); + + return (int) $row; + } + + /** + * Get highest worksheet column and highest row that have cell records. + * + * @return array Highest column name and highest row number + */ + public function getHighestRowAndColumn() + { + // Lookup highest column and highest row + $maxRow = $maxColumn = 1; + foreach ($this->index as $coordinate) { + $row = (int) floor($coordinate / self::MAX_COLUMN_ID) + 1; + $maxRow = ($maxRow > $row) ? $maxRow : $row; + $column = $coordinate % self::MAX_COLUMN_ID; + $maxColumn = ($maxColumn > $column) ? $maxColumn : $column; + } + + return [ + 'row' => $maxRow, + 'column' => Coordinate::stringFromColumnIndex($maxColumn), + ]; + } + + /** + * Get highest worksheet column. + * + * @param null|int|string $row Return the highest column for the specified row, + * or the highest column of any row if no row number is passed + * + * @return string Highest column name + */ + public function getHighestColumn($row = null) + { + if ($row === null) { + return $this->getHighestRowAndColumn()['column']; + } + + $row = (int) $row; + if ($row <= 0) { + throw new PhpSpreadsheetException('Row number must be a positive integer'); + } + + $maxColumn = 1; + $toRow = $row * self::MAX_COLUMN_ID; + $fromRow = --$row * self::MAX_COLUMN_ID; + foreach ($this->index as $coordinate) { + if ($coordinate < $fromRow || $coordinate >= $toRow) { + continue; + } + $column = $coordinate % self::MAX_COLUMN_ID; + $maxColumn = $maxColumn > $column ? $maxColumn : $column; + } + + return Coordinate::stringFromColumnIndex($maxColumn); + } + + /** + * Get highest worksheet row. + * + * @param null|string $column Return the highest row for the specified column, + * or the highest row of any column if no column letter is passed + * + * @return int Highest row number + */ + public function getHighestRow($column = null) + { + if ($column === null) { + return $this->getHighestRowAndColumn()['row']; + } + + $maxRow = 1; + $columnIndex = Coordinate::columnIndexFromString($column); + foreach ($this->index as $coordinate) { + if ($coordinate % self::MAX_COLUMN_ID !== $columnIndex) { + continue; + } + $row = (int) floor($coordinate / self::MAX_COLUMN_ID) + 1; + $maxRow = ($maxRow > $row) ? $maxRow : $row; + } + + return $maxRow; + } + + /** + * Generate a unique ID for cache referencing. + * + * @return string Unique Reference + */ + private function getUniqueID() + { + return Settings::getCache() instanceof Memory + ? random_bytes(7) . ':' + : uniqid('phpspreadsheet.', true) . '.'; + } + + /** + * Clone the cell collection. + * + * @return self + */ + public function cloneCellCollection(Worksheet $worksheet) + { + $this->storeCurrentCell(); + $newCollection = clone $this; + + $newCollection->parent = $worksheet; + $newCollection->cachePrefix = $newCollection->getUniqueID(); + + foreach ($this->index as $key => $value) { + $newCollection->index[$key] = $value; + $stored = $newCollection->cache->set( + $newCollection->cachePrefix . $key, + clone $this->cache->get($this->cachePrefix . $key) + ); + if ($stored === false) { + $this->destructIfNeeded($newCollection, 'Failed to copy cells in cache'); + } + } + + return $newCollection; + } + + /** + * Remove a row, deleting all cells in that row. + * + * @param int|string $row Row number to remove + */ + public function removeRow($row): void + { + $this->storeCurrentCell(); + $row = (int) $row; + if ($row <= 0) { + throw new PhpSpreadsheetException('Row number must be a positive integer'); + } + + $toRow = $row * self::MAX_COLUMN_ID; + $fromRow = --$row * self::MAX_COLUMN_ID; + foreach ($this->index as $coordinate) { + if ($coordinate >= $fromRow && $coordinate < $toRow) { + $row = (int) floor($coordinate / self::MAX_COLUMN_ID) + 1; + $column = Coordinate::stringFromColumnIndex($coordinate % self::MAX_COLUMN_ID); + $this->delete("{$column}{$row}"); + } + } + } + + /** + * Remove a column, deleting all cells in that column. + * + * @param string $column Column ID to remove + */ + public function removeColumn($column): void + { + $this->storeCurrentCell(); + + $columnIndex = Coordinate::columnIndexFromString($column); + foreach ($this->index as $coordinate) { + if ($coordinate % self::MAX_COLUMN_ID === $columnIndex) { + $row = (int) floor($coordinate / self::MAX_COLUMN_ID) + 1; + $column = Coordinate::stringFromColumnIndex($coordinate % self::MAX_COLUMN_ID); + $this->delete("{$column}{$row}"); + } + } + } + + /** + * Store cell data in cache for the current cell object if it's "dirty", + * and the 'nullify' the current cell object. + */ + private function storeCurrentCell(): void + { + if ($this->currentCellIsDirty && isset($this->currentCoordinate, $this->currentCell)) { + $this->currentCell->detach(); + + $stored = $this->cache->set($this->cachePrefix . $this->currentCoordinate, $this->currentCell); + if ($stored === false) { + $this->destructIfNeeded($this, "Failed to store cell {$this->currentCoordinate} in cache"); + } + $this->currentCellIsDirty = false; + } + + $this->currentCoordinate = null; + $this->currentCell = null; + } + + private function destructIfNeeded(self $cells, string $message): void + { + $cells->__destruct(); + + throw new PhpSpreadsheetException($message); + } + + /** + * Add or update a cell identified by its coordinate into the collection. + * + * @param string $cellCoordinate Coordinate of the cell to update + * @param Cell $cell Cell to update + * + * @return Cell + */ + public function add($cellCoordinate, Cell $cell) + { + if ($cellCoordinate !== $this->currentCoordinate) { + $this->storeCurrentCell(); + } + sscanf($cellCoordinate, '%[A-Z]%d', $column, $row); + $this->index[$cellCoordinate] = (--$row * self::MAX_COLUMN_ID) + Coordinate::columnIndexFromString($column); + + $this->currentCoordinate = $cellCoordinate; + $this->currentCell = $cell; + $this->currentCellIsDirty = true; + + return $cell; + } + + /** + * Get cell at a specific coordinate. + * + * @param string $cellCoordinate Coordinate of the cell + * + * @return null|Cell Cell that was found, or null if not found + */ + public function get($cellCoordinate) + { + if ($cellCoordinate === $this->currentCoordinate) { + return $this->currentCell; + } + $this->storeCurrentCell(); + + // Return null if requested entry doesn't exist in collection + if ($this->has($cellCoordinate) === false) { + return null; + } + + // Check if the entry that has been requested actually exists in the cache + $cell = $this->cache->get($this->cachePrefix . $cellCoordinate); + if ($cell === null) { + throw new PhpSpreadsheetException("Cell entry {$cellCoordinate} no longer exists in cache. This probably means that the cache was cleared by someone else."); + } + + // Set current entry to the requested entry + $this->currentCoordinate = $cellCoordinate; + $this->currentCell = $cell; + // Re-attach this as the cell's parent + $this->currentCell->attach($this); + + // Return requested entry + return $this->currentCell; + } + + /** + * Clear the cell collection and disconnect from our parent. + */ + public function unsetWorksheetCells(): void + { + if ($this->currentCell !== null) { + $this->currentCell->detach(); + $this->currentCell = null; + $this->currentCoordinate = null; + } + + // Flush the cache + $this->__destruct(); + + $this->index = []; + + // detach ourself from the worksheet, so that it can then delete this object successfully + $this->parent = null; + } + + /** + * Destroy this cell collection. + */ + public function __destruct() + { + $this->cache->deleteMultiple($this->getAllCacheKeys()); + } + + /** + * Returns all known cache keys. + * + * @return Generator|string[] + */ + private function getAllCacheKeys() + { + foreach ($this->getCoordinates() as $coordinate) { + yield $this->cachePrefix . $coordinate; + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/CellsFactory.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/CellsFactory.php new file mode 100644 index 0000000..26f18df --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/CellsFactory.php @@ -0,0 +1,21 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Collection; + +use PhpOffice\PhpSpreadsheet\Settings; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +abstract class CellsFactory +{ + /** + * Initialise the cache storage. + * + * @param Worksheet $worksheet Enable cell caching for this worksheet + * + * @return Cells + * */ + public static function getInstance(Worksheet $worksheet) + { + return new Cells($worksheet, Settings::getCache()); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Memory.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Memory.php new file mode 100644 index 0000000..2690ab7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Memory.php @@ -0,0 +1,123 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Collection; + +use DateInterval; +use Psr\SimpleCache\CacheInterface; + +/** + * This is the default implementation for in-memory cell collection. + * + * Alternatives implementation should leverage off-memory, non-volatile storage + * to reduce overall memory usage. + */ +class Memory implements CacheInterface +{ + private $cache = []; + + /** + * @return bool + */ + public function clear() + { + $this->cache = []; + + return true; + } + + /** + * @param string $key + * + * @return bool + */ + public function delete($key) + { + unset($this->cache[$key]); + + return true; + } + + /** + * @param iterable $keys + * + * @return bool + */ + public function deleteMultiple($keys) + { + foreach ($keys as $key) { + $this->delete($key); + } + + return true; + } + + /** + * @param string $key + * @param mixed $default + * + * @return mixed + */ + public function get($key, $default = null) + { + if ($this->has($key)) { + return $this->cache[$key]; + } + + return $default; + } + + /** + * @param iterable $keys + * @param mixed $default + * + * @return iterable + */ + public function getMultiple($keys, $default = null) + { + $results = []; + foreach ($keys as $key) { + $results[$key] = $this->get($key, $default); + } + + return $results; + } + + /** + * @param string $key + * + * @return bool + */ + public function has($key) + { + return array_key_exists($key, $this->cache); + } + + /** + * @param string $key + * @param mixed $value + * @param null|DateInterval|int $ttl + * + * @return bool + */ + public function set($key, $value, $ttl = null) + { + $this->cache[$key] = $value; + + return true; + } + + /** + * @param iterable $values + * @param null|DateInterval|int $ttl + * + * @return bool + */ + public function setMultiple($values, $ttl = null) + { + foreach ($values as $key => $value) { + $this->set($key, $value); + } + + return true; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Comment.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Comment.php new file mode 100644 index 0000000..abadc7d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Comment.php @@ -0,0 +1,362 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; +use PhpOffice\PhpSpreadsheet\Helper\Size; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\Shared\Drawing as SharedDrawing; +use PhpOffice\PhpSpreadsheet\Style\Alignment; +use PhpOffice\PhpSpreadsheet\Style\Color; +use PhpOffice\PhpSpreadsheet\Worksheet\Drawing; + +class Comment implements IComparable +{ + /** + * Author. + * + * @var string + */ + private $author; + + /** + * Rich text comment. + * + * @var RichText + */ + private $text; + + /** + * Comment width (CSS style, i.e. XXpx or YYpt). + * + * @var string + */ + private $width = '96pt'; + + /** + * Left margin (CSS style, i.e. XXpx or YYpt). + * + * @var string + */ + private $marginLeft = '59.25pt'; + + /** + * Top margin (CSS style, i.e. XXpx or YYpt). + * + * @var string + */ + private $marginTop = '1.5pt'; + + /** + * Visible. + * + * @var bool + */ + private $visible = false; + + /** + * Comment height (CSS style, i.e. XXpx or YYpt). + * + * @var string + */ + private $height = '55.5pt'; + + /** + * Comment fill color. + * + * @var Color + */ + private $fillColor; + + /** + * Alignment. + * + * @var string + */ + private $alignment; + + /** + * Background image in comment. + * + * @var Drawing + */ + private $backgroundImage; + + /** + * Create a new Comment. + */ + public function __construct() + { + // Initialise variables + $this->author = 'Author'; + $this->text = new RichText(); + $this->fillColor = new Color('FFFFFFE1'); + $this->alignment = Alignment::HORIZONTAL_GENERAL; + $this->backgroundImage = new Drawing(); + } + + /** + * Get Author. + */ + public function getAuthor(): string + { + return $this->author; + } + + /** + * Set Author. + */ + public function setAuthor(string $author): self + { + $this->author = $author; + + return $this; + } + + /** + * Get Rich text comment. + */ + public function getText(): RichText + { + return $this->text; + } + + /** + * Set Rich text comment. + */ + public function setText(RichText $text): self + { + $this->text = $text; + + return $this; + } + + /** + * Get comment width (CSS style, i.e. XXpx or YYpt). + */ + public function getWidth(): string + { + return $this->width; + } + + /** + * Set comment width (CSS style, i.e. XXpx or YYpt). Default unit is pt. + */ + public function setWidth(string $width): self + { + $width = new Size($width); + if ($width->valid()) { + $this->width = (string) $width; + } + + return $this; + } + + /** + * Get comment height (CSS style, i.e. XXpx or YYpt). + */ + public function getHeight(): string + { + return $this->height; + } + + /** + * Set comment height (CSS style, i.e. XXpx or YYpt). Default unit is pt. + */ + public function setHeight(string $height): self + { + $height = new Size($height); + if ($height->valid()) { + $this->height = (string) $height; + } + + return $this; + } + + /** + * Get left margin (CSS style, i.e. XXpx or YYpt). + */ + public function getMarginLeft(): string + { + return $this->marginLeft; + } + + /** + * Set left margin (CSS style, i.e. XXpx or YYpt). Default unit is pt. + */ + public function setMarginLeft(string $margin): self + { + $margin = new Size($margin); + if ($margin->valid()) { + $this->marginLeft = (string) $margin; + } + + return $this; + } + + /** + * Get top margin (CSS style, i.e. XXpx or YYpt). + */ + public function getMarginTop(): string + { + return $this->marginTop; + } + + /** + * Set top margin (CSS style, i.e. XXpx or YYpt). Default unit is pt. + */ + public function setMarginTop(string $margin): self + { + $margin = new Size($margin); + if ($margin->valid()) { + $this->marginTop = (string) $margin; + } + + return $this; + } + + /** + * Is the comment visible by default? + */ + public function getVisible(): bool + { + return $this->visible; + } + + /** + * Set comment default visibility. + */ + public function setVisible(bool $visibility): self + { + $this->visible = $visibility; + + return $this; + } + + /** + * Set fill color. + */ + public function setFillColor(Color $color): self + { + $this->fillColor = $color; + + return $this; + } + + /** + * Get fill color. + */ + public function getFillColor(): Color + { + return $this->fillColor; + } + + /** + * Set Alignment. + */ + public function setAlignment(string $alignment): self + { + $this->alignment = $alignment; + + return $this; + } + + /** + * Get Alignment. + */ + public function getAlignment(): string + { + return $this->alignment; + } + + /** + * Get hash code. + */ + public function getHashCode(): string + { + return md5( + $this->author . + $this->text->getHashCode() . + $this->width . + $this->height . + $this->marginLeft . + $this->marginTop . + ($this->visible ? 1 : 0) . + $this->fillColor->getHashCode() . + $this->alignment . + ($this->hasBackgroundImage() ? $this->backgroundImage->getHashCode() : '') . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } + + /** + * Convert to string. + */ + public function __toString(): string + { + return $this->text->getPlainText(); + } + + /** + * Check is background image exists. + */ + public function hasBackgroundImage(): bool + { + $path = $this->backgroundImage->getPath(); + + if (empty($path)) { + return false; + } + + return getimagesize($path) !== false; + } + + /** + * Returns background image. + */ + public function getBackgroundImage(): Drawing + { + return $this->backgroundImage; + } + + /** + * Sets background image. + */ + public function setBackgroundImage(Drawing $objDrawing): self + { + if (!array_key_exists($objDrawing->getType(), Drawing::IMAGE_TYPES_CONVERTION_MAP)) { + throw new PhpSpreadsheetException('Unsupported image type in comment background. Supported types: PNG, JPEG, BMP, GIF.'); + } + $this->backgroundImage = $objDrawing; + + return $this; + } + + /** + * Sets size of comment as size of background image. + */ + public function setSizeAsBackgroundImage(): self + { + if ($this->hasBackgroundImage()) { + $this->setWidth(SharedDrawing::pixelsToPoints($this->backgroundImage->getWidth()) . 'pt'); + $this->setHeight(SharedDrawing::pixelsToPoints($this->backgroundImage->getHeight()) . 'pt'); + } + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/DefinedName.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/DefinedName.php new file mode 100644 index 0000000..3b874b4 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/DefinedName.php @@ -0,0 +1,272 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet; + +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +abstract class DefinedName +{ + protected const REGEXP_IDENTIFY_FORMULA = '[^_\p{N}\p{L}:, \$\'!]'; + + /** + * Name. + * + * @var string + */ + protected $name; + + /** + * Worksheet on which the defined name can be resolved. + * + * @var Worksheet + */ + protected $worksheet; + + /** + * Value of the named object. + * + * @var string + */ + protected $value; + + /** + * Is the defined named local? (i.e. can only be used on $this->worksheet). + * + * @var bool + */ + protected $localOnly; + + /** + * Scope. + * + * @var Worksheet + */ + protected $scope; + + /** + * Whether this is a named range or a named formula. + * + * @var bool + */ + protected $isFormula; + + /** + * Create a new Defined Name. + */ + public function __construct( + string $name, + ?Worksheet $worksheet = null, + ?string $value = null, + bool $localOnly = false, + ?Worksheet $scope = null + ) { + if ($worksheet === null) { + $worksheet = $scope; + } + + // Set local members + $this->name = $name; + $this->worksheet = $worksheet; + $this->value = (string) $value; + $this->localOnly = $localOnly; + // If local only, then the scope will be set to worksheet unless a scope is explicitly set + $this->scope = ($localOnly === true) ? (($scope === null) ? $worksheet : $scope) : null; + // If the range string contains characters that aren't associated with the range definition (A-Z,1-9 + // for cell references, and $, or the range operators (colon comma or space), quotes and ! for + // worksheet names + // then this is treated as a named formula, and not a named range + $this->isFormula = self::testIfFormula($this->value); + } + + /** + * Create a new defined name, either a range or a formula. + */ + public static function createInstance( + string $name, + ?Worksheet $worksheet = null, + ?string $value = null, + bool $localOnly = false, + ?Worksheet $scope = null + ): self { + $value = (string) $value; + $isFormula = self::testIfFormula($value); + if ($isFormula) { + return new NamedFormula($name, $worksheet, $value, $localOnly, $scope); + } + + return new NamedRange($name, $worksheet, $value, $localOnly, $scope); + } + + public static function testIfFormula(string $value): bool + { + if (substr($value, 0, 1) === '=') { + $value = substr($value, 1); + } + + if (is_numeric($value)) { + return true; + } + + $segMatcher = false; + foreach (explode("'", $value) as $subVal) { + // Only test in alternate array entries (the non-quoted blocks) + if ( + ($segMatcher = !$segMatcher) && + (preg_match('/' . self::REGEXP_IDENTIFY_FORMULA . '/miu', $subVal)) + ) { + return true; + } + } + + return false; + } + + /** + * Get name. + */ + public function getName(): string + { + return $this->name; + } + + /** + * Set name. + */ + public function setName(string $name): self + { + if (!empty($name)) { + // Old title + $oldTitle = $this->name; + + // Re-attach + if ($this->worksheet !== null) { + $this->worksheet->getParent()->removeNamedRange($this->name, $this->worksheet); + } + $this->name = $name; + + if ($this->worksheet !== null) { + $this->worksheet->getParent()->addNamedRange($this); + } + + // New title + $newTitle = $this->name; + ReferenceHelper::getInstance()->updateNamedFormulas($this->worksheet->getParent(), $oldTitle, $newTitle); + } + + return $this; + } + + /** + * Get worksheet. + */ + public function getWorksheet(): ?Worksheet + { + return $this->worksheet; + } + + /** + * Set worksheet. + */ + public function setWorksheet(?Worksheet $worksheet): self + { + $this->worksheet = $worksheet; + + return $this; + } + + /** + * Get range or formula value. + */ + public function getValue(): string + { + return $this->value; + } + + /** + * Set range or formula value. + */ + public function setValue(string $value): self + { + $this->value = $value; + + return $this; + } + + /** + * Get localOnly. + */ + public function getLocalOnly(): bool + { + return $this->localOnly; + } + + /** + * Set localOnly. + */ + public function setLocalOnly(bool $localScope): self + { + $this->localOnly = $localScope; + $this->scope = $localScope ? $this->worksheet : null; + + return $this; + } + + /** + * Get scope. + */ + public function getScope(): ?Worksheet + { + return $this->scope; + } + + /** + * Set scope. + */ + public function setScope(?Worksheet $worksheet): self + { + $this->scope = $worksheet; + $this->localOnly = $worksheet !== null; + + return $this; + } + + /** + * Identify whether this is a named range or a named formula. + */ + public function isFormula(): bool + { + return $this->isFormula; + } + + /** + * Resolve a named range to a regular cell range or formula. + */ + public static function resolveName(string $definedName, Worksheet $worksheet, string $sheetName = ''): ?self + { + if ($sheetName === '') { + $worksheet2 = $worksheet; + } else { + $worksheet2 = $worksheet->getParent()->getSheetByName($sheetName); + if ($worksheet2 === null) { + return null; + } + } + + return $worksheet->getParent()->getDefinedName($definedName, $worksheet2); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document/Properties.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document/Properties.php new file mode 100644 index 0000000..afdeea9 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document/Properties.php @@ -0,0 +1,537 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Document; + +use DateTime; +use PhpOffice\PhpSpreadsheet\Shared\IntOrFloat; + +class Properties +{ + /** constants */ + public const PROPERTY_TYPE_BOOLEAN = 'b'; + public const PROPERTY_TYPE_INTEGER = 'i'; + public const PROPERTY_TYPE_FLOAT = 'f'; + public const PROPERTY_TYPE_DATE = 'd'; + public const PROPERTY_TYPE_STRING = 's'; + public const PROPERTY_TYPE_UNKNOWN = 'u'; + + private const VALID_PROPERTY_TYPE_LIST = [ + self::PROPERTY_TYPE_BOOLEAN, + self::PROPERTY_TYPE_INTEGER, + self::PROPERTY_TYPE_FLOAT, + self::PROPERTY_TYPE_DATE, + self::PROPERTY_TYPE_STRING, + ]; + + /** + * Creator. + * + * @var string + */ + private $creator = 'Unknown Creator'; + + /** + * LastModifiedBy. + * + * @var string + */ + private $lastModifiedBy; + + /** + * Created. + * + * @var float|int + */ + private $created; + + /** + * Modified. + * + * @var float|int + */ + private $modified; + + /** + * Title. + * + * @var string + */ + private $title = 'Untitled Spreadsheet'; + + /** + * Description. + * + * @var string + */ + private $description = ''; + + /** + * Subject. + * + * @var string + */ + private $subject = ''; + + /** + * Keywords. + * + * @var string + */ + private $keywords = ''; + + /** + * Category. + * + * @var string + */ + private $category = ''; + + /** + * Manager. + * + * @var string + */ + private $manager = ''; + + /** + * Company. + * + * @var string + */ + private $company = ''; + + /** + * Custom Properties. + * + * @var array{value: mixed, type: string}[] + */ + private $customProperties = []; + + /** + * Create a new Document Properties instance. + */ + public function __construct() + { + // Initialise values + $this->lastModifiedBy = $this->creator; + $this->created = self::intOrFloatTimestamp(null); + $this->modified = $this->created; + } + + /** + * Get Creator. + */ + public function getCreator(): string + { + return $this->creator; + } + + /** + * Set Creator. + * + * @return $this + */ + public function setCreator(string $creator): self + { + $this->creator = $creator; + + return $this; + } + + /** + * Get Last Modified By. + */ + public function getLastModifiedBy(): string + { + return $this->lastModifiedBy; + } + + /** + * Set Last Modified By. + * + * @return $this + */ + public function setLastModifiedBy(string $modifiedBy): self + { + $this->lastModifiedBy = $modifiedBy; + + return $this; + } + + /** + * @param null|float|int|string $timestamp + * + * @return float|int + */ + private static function intOrFloatTimestamp($timestamp) + { + if ($timestamp === null) { + $timestamp = (float) (new DateTime())->format('U'); + } elseif (is_string($timestamp)) { + if (is_numeric($timestamp)) { + $timestamp = (float) $timestamp; + } else { + $timestamp = (string) preg_replace('/[.][0-9]*$/', '', $timestamp); + $timestamp = (string) preg_replace('/^(\\d{4})- (\\d)/', '$1-0$2', $timestamp); + $timestamp = (string) preg_replace('/^(\\d{4}-\\d{2})- (\\d)/', '$1-0$2', $timestamp); + $timestamp = (float) (new DateTime($timestamp))->format('U'); + } + } + + return IntOrFloat::evaluate($timestamp); + } + + /** + * Get Created. + * + * @return float|int + */ + public function getCreated() + { + return $this->created; + } + + /** + * Set Created. + * + * @param null|float|int|string $timestamp + * + * @return $this + */ + public function setCreated($timestamp): self + { + $this->created = self::intOrFloatTimestamp($timestamp); + + return $this; + } + + /** + * Get Modified. + * + * @return float|int + */ + public function getModified() + { + return $this->modified; + } + + /** + * Set Modified. + * + * @param null|float|int|string $timestamp + * + * @return $this + */ + public function setModified($timestamp): self + { + $this->modified = self::intOrFloatTimestamp($timestamp); + + return $this; + } + + /** + * Get Title. + */ + public function getTitle(): string + { + return $this->title; + } + + /** + * Set Title. + * + * @return $this + */ + public function setTitle(string $title): self + { + $this->title = $title; + + return $this; + } + + /** + * Get Description. + */ + public function getDescription(): string + { + return $this->description; + } + + /** + * Set Description. + * + * @return $this + */ + public function setDescription(string $description): self + { + $this->description = $description; + + return $this; + } + + /** + * Get Subject. + */ + public function getSubject(): string + { + return $this->subject; + } + + /** + * Set Subject. + * + * @return $this + */ + public function setSubject(string $subject): self + { + $this->subject = $subject; + + return $this; + } + + /** + * Get Keywords. + */ + public function getKeywords(): string + { + return $this->keywords; + } + + /** + * Set Keywords. + * + * @return $this + */ + public function setKeywords(string $keywords): self + { + $this->keywords = $keywords; + + return $this; + } + + /** + * Get Category. + */ + public function getCategory(): string + { + return $this->category; + } + + /** + * Set Category. + * + * @return $this + */ + public function setCategory(string $category): self + { + $this->category = $category; + + return $this; + } + + /** + * Get Company. + */ + public function getCompany(): string + { + return $this->company; + } + + /** + * Set Company. + * + * @return $this + */ + public function setCompany(string $company): self + { + $this->company = $company; + + return $this; + } + + /** + * Get Manager. + */ + public function getManager(): string + { + return $this->manager; + } + + /** + * Set Manager. + * + * @return $this + */ + public function setManager(string $manager): self + { + $this->manager = $manager; + + return $this; + } + + /** + * Get a List of Custom Property Names. + * + * @return string[] + */ + public function getCustomProperties(): array + { + return array_keys($this->customProperties); + } + + /** + * Check if a Custom Property is defined. + */ + public function isCustomPropertySet(string $propertyName): bool + { + return array_key_exists($propertyName, $this->customProperties); + } + + /** + * Get a Custom Property Value. + * + * @return mixed + */ + public function getCustomPropertyValue(string $propertyName) + { + if (isset($this->customProperties[$propertyName])) { + return $this->customProperties[$propertyName]['value']; + } + + return null; + } + + /** + * Get a Custom Property Type. + * + * @return null|string + */ + public function getCustomPropertyType(string $propertyName) + { + return $this->customProperties[$propertyName]['type'] ?? null; + } + + /** + * @param mixed $propertyValue + */ + private function identifyPropertyType($propertyValue): string + { + if (is_float($propertyValue)) { + return self::PROPERTY_TYPE_FLOAT; + } + if (is_int($propertyValue)) { + return self::PROPERTY_TYPE_INTEGER; + } + if (is_bool($propertyValue)) { + return self::PROPERTY_TYPE_BOOLEAN; + } + + return self::PROPERTY_TYPE_STRING; + } + + /** + * Set a Custom Property. + * + * @param mixed $propertyValue + * @param string $propertyType + * 'i' : Integer + * 'f' : Floating Point + * 's' : String + * 'd' : Date/Time + * 'b' : Boolean + * + * @return $this + */ + public function setCustomProperty(string $propertyName, $propertyValue = '', $propertyType = null): self + { + if (($propertyType === null) || (!in_array($propertyType, self::VALID_PROPERTY_TYPE_LIST))) { + $propertyType = $this->identifyPropertyType($propertyValue); + } + + if (!is_object($propertyValue)) { + $this->customProperties[$propertyName] = [ + 'value' => self::convertProperty($propertyValue, $propertyType), + 'type' => $propertyType, + ]; + } + + return $this; + } + + private const PROPERTY_TYPE_ARRAY = [ + 'i' => self::PROPERTY_TYPE_INTEGER, // Integer + 'i1' => self::PROPERTY_TYPE_INTEGER, // 1-Byte Signed Integer + 'i2' => self::PROPERTY_TYPE_INTEGER, // 2-Byte Signed Integer + 'i4' => self::PROPERTY_TYPE_INTEGER, // 4-Byte Signed Integer + 'i8' => self::PROPERTY_TYPE_INTEGER, // 8-Byte Signed Integer + 'int' => self::PROPERTY_TYPE_INTEGER, // Integer + 'ui1' => self::PROPERTY_TYPE_INTEGER, // 1-Byte Unsigned Integer + 'ui2' => self::PROPERTY_TYPE_INTEGER, // 2-Byte Unsigned Integer + 'ui4' => self::PROPERTY_TYPE_INTEGER, // 4-Byte Unsigned Integer + 'ui8' => self::PROPERTY_TYPE_INTEGER, // 8-Byte Unsigned Integer + 'uint' => self::PROPERTY_TYPE_INTEGER, // Unsigned Integer + 'f' => self::PROPERTY_TYPE_FLOAT, // Real Number + 'r4' => self::PROPERTY_TYPE_FLOAT, // 4-Byte Real Number + 'r8' => self::PROPERTY_TYPE_FLOAT, // 8-Byte Real Number + 'decimal' => self::PROPERTY_TYPE_FLOAT, // Decimal + 's' => self::PROPERTY_TYPE_STRING, // String + 'empty' => self::PROPERTY_TYPE_STRING, // Empty + 'null' => self::PROPERTY_TYPE_STRING, // Null + 'lpstr' => self::PROPERTY_TYPE_STRING, // LPSTR + 'lpwstr' => self::PROPERTY_TYPE_STRING, // LPWSTR + 'bstr' => self::PROPERTY_TYPE_STRING, // Basic String + 'd' => self::PROPERTY_TYPE_DATE, // Date and Time + 'date' => self::PROPERTY_TYPE_DATE, // Date and Time + 'filetime' => self::PROPERTY_TYPE_DATE, // File Time + 'b' => self::PROPERTY_TYPE_BOOLEAN, // Boolean + 'bool' => self::PROPERTY_TYPE_BOOLEAN, // Boolean + ]; + + private const SPECIAL_TYPES = [ + 'empty' => '', + 'null' => null, + ]; + + /** + * Convert property to form desired by Excel. + * + * @param mixed $propertyValue + * + * @return mixed + */ + public static function convertProperty($propertyValue, string $propertyType) + { + return self::SPECIAL_TYPES[$propertyType] ?? self::convertProperty2($propertyValue, $propertyType); + } + + /** + * Convert property to form desired by Excel. + * + * @param mixed $propertyValue + * + * @return mixed + */ + private static function convertProperty2($propertyValue, string $type) + { + $propertyType = self::convertPropertyType($type); + switch ($propertyType) { + case self::PROPERTY_TYPE_INTEGER: + $intValue = (int) $propertyValue; + + return ($type[0] === 'u') ? abs($intValue) : $intValue; + case self::PROPERTY_TYPE_FLOAT: + return (float) $propertyValue; + case self::PROPERTY_TYPE_DATE: + return self::intOrFloatTimestamp($propertyValue); + case self::PROPERTY_TYPE_BOOLEAN: + return is_bool($propertyValue) ? $propertyValue : ($propertyValue === 'true'); + default: // includes string + return $propertyValue; + } + } + + public static function convertPropertyType(string $propertyType): string + { + return self::PROPERTY_TYPE_ARRAY[$propertyType] ?? self::PROPERTY_TYPE_UNKNOWN; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document/Security.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document/Security.php new file mode 100644 index 0000000..279aed4 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document/Security.php @@ -0,0 +1,152 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Document; + +use PhpOffice\PhpSpreadsheet\Shared\PasswordHasher; + +class Security +{ + /** + * LockRevision. + * + * @var bool + */ + private $lockRevision = false; + + /** + * LockStructure. + * + * @var bool + */ + private $lockStructure = false; + + /** + * LockWindows. + * + * @var bool + */ + private $lockWindows = false; + + /** + * RevisionsPassword. + * + * @var string + */ + private $revisionsPassword = ''; + + /** + * WorkbookPassword. + * + * @var string + */ + private $workbookPassword = ''; + + /** + * Create a new Document Security instance. + */ + public function __construct() + { + } + + /** + * Is some sort of document security enabled? + */ + public function isSecurityEnabled(): bool + { + return $this->lockRevision || + $this->lockStructure || + $this->lockWindows; + } + + public function getLockRevision(): bool + { + return $this->lockRevision; + } + + public function setLockRevision(?bool $locked): self + { + if ($locked !== null) { + $this->lockRevision = $locked; + } + + return $this; + } + + public function getLockStructure(): bool + { + return $this->lockStructure; + } + + public function setLockStructure(?bool $locked): self + { + if ($locked !== null) { + $this->lockStructure = $locked; + } + + return $this; + } + + public function getLockWindows(): bool + { + return $this->lockWindows; + } + + public function setLockWindows(?bool $locked): self + { + if ($locked !== null) { + $this->lockWindows = $locked; + } + + return $this; + } + + public function getRevisionsPassword(): string + { + return $this->revisionsPassword; + } + + /** + * Set RevisionsPassword. + * + * @param string $password + * @param bool $alreadyHashed If the password has already been hashed, set this to true + * + * @return $this + */ + public function setRevisionsPassword(?string $password, bool $alreadyHashed = false) + { + if ($password !== null) { + if (!$alreadyHashed) { + $password = PasswordHasher::hashPassword($password); + } + $this->revisionsPassword = $password; + } + + return $this; + } + + public function getWorkbookPassword(): string + { + return $this->workbookPassword; + } + + /** + * Set WorkbookPassword. + * + * @param string $password + * @param bool $alreadyHashed If the password has already been hashed, set this to true + * + * @return $this + */ + public function setWorkbookPassword(?string $password, bool $alreadyHashed = false) + { + if ($password !== null) { + if (!$alreadyHashed) { + $password = PasswordHasher::hashPassword($password); + } + $this->workbookPassword = $password; + } + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Exception.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Exception.php new file mode 100644 index 0000000..9c5ab30 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Exception.php @@ -0,0 +1,7 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet; + +class Exception extends \Exception +{ +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/HashTable.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/HashTable.php new file mode 100644 index 0000000..59209ee --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/HashTable.php @@ -0,0 +1,179 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet; + +/** + * @template T of IComparable + */ +class HashTable +{ + /** + * HashTable elements. + * + * @var array<string, T> + */ + protected $items = []; + + /** + * HashTable key map. + * + * @var array<int, string> + */ + protected $keyMap = []; + + /** + * Create a new HashTable. + * + * @param T[] $source Optional source array to create HashTable from + */ + public function __construct($source = null) + { + if ($source !== null) { + // Create HashTable + $this->addFromSource($source); + } + } + + /** + * Add HashTable items from source. + * + * @param T[] $source Source array to create HashTable from + */ + public function addFromSource(?array $source = null): void + { + // Check if an array was passed + if ($source === null) { + return; + } + + foreach ($source as $item) { + $this->add($item); + } + } + + /** + * Add HashTable item. + * + * @param T $source Item to add + */ + public function add(IComparable $source): void + { + $hash = $source->getHashCode(); + if (!isset($this->items[$hash])) { + $this->items[$hash] = $source; + $this->keyMap[count($this->items) - 1] = $hash; + } + } + + /** + * Remove HashTable item. + * + * @param T $source Item to remove + */ + public function remove(IComparable $source): void + { + $hash = $source->getHashCode(); + if (isset($this->items[$hash])) { + unset($this->items[$hash]); + + $deleteKey = -1; + foreach ($this->keyMap as $key => $value) { + if ($deleteKey >= 0) { + $this->keyMap[$key - 1] = $value; + } + + if ($value == $hash) { + $deleteKey = $key; + } + } + unset($this->keyMap[count($this->keyMap) - 1]); + } + } + + /** + * Clear HashTable. + */ + public function clear(): void + { + $this->items = []; + $this->keyMap = []; + } + + /** + * Count. + * + * @return int + */ + public function count() + { + return count($this->items); + } + + /** + * Get index for hash code. + * + * @return false|int Index + */ + public function getIndexForHashCode(string $hashCode) + { + return array_search($hashCode, $this->keyMap, true); + } + + /** + * Get by index. + * + * @return null|T + */ + public function getByIndex(int $index) + { + if (isset($this->keyMap[$index])) { + return $this->getByHashCode($this->keyMap[$index]); + } + + return null; + } + + /** + * Get by hashcode. + * + * @return null|T + */ + public function getByHashCode(string $hashCode) + { + if (isset($this->items[$hashCode])) { + return $this->items[$hashCode]; + } + + return null; + } + + /** + * HashTable to array. + * + * @return T[] + */ + public function toArray() + { + return $this->items; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + // each member of this class is an array + if (is_array($value)) { + $array1 = $value; + foreach ($array1 as $key1 => $value1) { + if (is_object($value1)) { + $array1[$key1] = clone $value1; + } + } + $this->$key = $array1; + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Dimension.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Dimension.php new file mode 100644 index 0000000..425c9a6 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Dimension.php @@ -0,0 +1,105 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Helper; + +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\Shared\Drawing; +use PhpOffice\PhpSpreadsheet\Style\Font; + +class Dimension +{ + public const UOM_CENTIMETERS = 'cm'; + public const UOM_MILLIMETERS = 'mm'; + public const UOM_INCHES = 'in'; + public const UOM_PIXELS = 'px'; + public const UOM_POINTS = 'pt'; + public const UOM_PICA = 'pc'; + + /** + * Based on 96 dpi. + */ + const ABSOLUTE_UNITS = [ + self::UOM_CENTIMETERS => 96.0 / 2.54, + self::UOM_MILLIMETERS => 96.0 / 25.4, + self::UOM_INCHES => 96.0, + self::UOM_PIXELS => 1.0, + self::UOM_POINTS => 96.0 / 72, + self::UOM_PICA => 96.0 * 12 / 72, + ]; + + /** + * Based on a standard column width of 8.54 units in MS Excel. + */ + const RELATIVE_UNITS = [ + 'em' => 10.0 / 8.54, + 'ex' => 10.0 / 8.54, + 'ch' => 10.0 / 8.54, + 'rem' => 10.0 / 8.54, + 'vw' => 8.54, + 'vh' => 8.54, + 'vmin' => 8.54, + 'vmax' => 8.54, + '%' => 8.54 / 100, + ]; + + /** + * @var float|int If this is a width, then size is measured in pixels (if is set) + * or in Excel's default column width units if $unit is null. + * If this is a height, then size is measured in pixels () + * or in points () if $unit is null. + */ + protected $size; + + /** + * @var null|string + */ + protected $unit; + + public function __construct(string $dimension) + { + // @phpstan-ignore-next-line + [$size, $unit] = sscanf($dimension, '%[1234567890.]%s'); + $unit = strtolower(trim($unit ?? '')); + $size = (float) $size; + + // If a UoM is specified, then convert the size to pixels for internal storage + if (isset(self::ABSOLUTE_UNITS[$unit])) { + $size *= self::ABSOLUTE_UNITS[$unit]; + $this->unit = self::UOM_PIXELS; + } elseif (isset(self::RELATIVE_UNITS[$unit])) { + $size *= self::RELATIVE_UNITS[$unit]; + $size = round($size, 4); + } + + $this->size = $size; + } + + public function width(): float + { + return (float) ($this->unit === null) + ? $this->size + : round(Drawing::pixelsToCellDimension((int) $this->size, new Font(false)), 4); + } + + public function height(): float + { + return (float) ($this->unit === null) + ? $this->size + : $this->toUnit(self::UOM_POINTS); + } + + public function toUnit(string $unitOfMeasure): float + { + $unitOfMeasure = strtolower($unitOfMeasure); + if (!array_key_exists($unitOfMeasure, self::ABSOLUTE_UNITS)) { + throw new Exception("{$unitOfMeasure} is not a vaid unit of measure"); + } + + $size = $this->size; + if ($this->unit === null) { + $size = Drawing::cellDimensionToPixels($size, new Font(false)); + } + + return $size / self::ABSOLUTE_UNITS[$unitOfMeasure]; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Html.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Html.php new file mode 100644 index 0000000..632efeb --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Html.php @@ -0,0 +1,841 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Helper; + +use DOMDocument; +use DOMElement; +use DOMNode; +use DOMText; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\Style\Color; +use PhpOffice\PhpSpreadsheet\Style\Font; + +class Html +{ + protected static $colourMap = [ + 'aliceblue' => 'f0f8ff', + 'antiquewhite' => 'faebd7', + 'antiquewhite1' => 'ffefdb', + 'antiquewhite2' => 'eedfcc', + 'antiquewhite3' => 'cdc0b0', + 'antiquewhite4' => '8b8378', + 'aqua' => '00ffff', + 'aquamarine1' => '7fffd4', + 'aquamarine2' => '76eec6', + 'aquamarine4' => '458b74', + 'azure1' => 'f0ffff', + 'azure2' => 'e0eeee', + 'azure3' => 'c1cdcd', + 'azure4' => '838b8b', + 'beige' => 'f5f5dc', + 'bisque1' => 'ffe4c4', + 'bisque2' => 'eed5b7', + 'bisque3' => 'cdb79e', + 'bisque4' => '8b7d6b', + 'black' => '000000', + 'blanchedalmond' => 'ffebcd', + 'blue' => '0000ff', + 'blue1' => '0000ff', + 'blue2' => '0000ee', + 'blue4' => '00008b', + 'blueviolet' => '8a2be2', + 'brown' => 'a52a2a', + 'brown1' => 'ff4040', + 'brown2' => 'ee3b3b', + 'brown3' => 'cd3333', + 'brown4' => '8b2323', + 'burlywood' => 'deb887', + 'burlywood1' => 'ffd39b', + 'burlywood2' => 'eec591', + 'burlywood3' => 'cdaa7d', + 'burlywood4' => '8b7355', + 'cadetblue' => '5f9ea0', + 'cadetblue1' => '98f5ff', + 'cadetblue2' => '8ee5ee', + 'cadetblue3' => '7ac5cd', + 'cadetblue4' => '53868b', + 'chartreuse1' => '7fff00', + 'chartreuse2' => '76ee00', + 'chartreuse3' => '66cd00', + 'chartreuse4' => '458b00', + 'chocolate' => 'd2691e', + 'chocolate1' => 'ff7f24', + 'chocolate2' => 'ee7621', + 'chocolate3' => 'cd661d', + 'coral' => 'ff7f50', + 'coral1' => 'ff7256', + 'coral2' => 'ee6a50', + 'coral3' => 'cd5b45', + 'coral4' => '8b3e2f', + 'cornflowerblue' => '6495ed', + 'cornsilk1' => 'fff8dc', + 'cornsilk2' => 'eee8cd', + 'cornsilk3' => 'cdc8b1', + 'cornsilk4' => '8b8878', + 'cyan1' => '00ffff', + 'cyan2' => '00eeee', + 'cyan3' => '00cdcd', + 'cyan4' => '008b8b', + 'darkgoldenrod' => 'b8860b', + 'darkgoldenrod1' => 'ffb90f', + 'darkgoldenrod2' => 'eead0e', + 'darkgoldenrod3' => 'cd950c', + 'darkgoldenrod4' => '8b6508', + 'darkgreen' => '006400', + 'darkkhaki' => 'bdb76b', + 'darkolivegreen' => '556b2f', + 'darkolivegreen1' => 'caff70', + 'darkolivegreen2' => 'bcee68', + 'darkolivegreen3' => 'a2cd5a', + 'darkolivegreen4' => '6e8b3d', + 'darkorange' => 'ff8c00', + 'darkorange1' => 'ff7f00', + 'darkorange2' => 'ee7600', + 'darkorange3' => 'cd6600', + 'darkorange4' => '8b4500', + 'darkorchid' => '9932cc', + 'darkorchid1' => 'bf3eff', + 'darkorchid2' => 'b23aee', + 'darkorchid3' => '9a32cd', + 'darkorchid4' => '68228b', + 'darksalmon' => 'e9967a', + 'darkseagreen' => '8fbc8f', + 'darkseagreen1' => 'c1ffc1', + 'darkseagreen2' => 'b4eeb4', + 'darkseagreen3' => '9bcd9b', + 'darkseagreen4' => '698b69', + 'darkslateblue' => '483d8b', + 'darkslategray' => '2f4f4f', + 'darkslategray1' => '97ffff', + 'darkslategray2' => '8deeee', + 'darkslategray3' => '79cdcd', + 'darkslategray4' => '528b8b', + 'darkturquoise' => '00ced1', + 'darkviolet' => '9400d3', + 'deeppink1' => 'ff1493', + 'deeppink2' => 'ee1289', + 'deeppink3' => 'cd1076', + 'deeppink4' => '8b0a50', + 'deepskyblue1' => '00bfff', + 'deepskyblue2' => '00b2ee', + 'deepskyblue3' => '009acd', + 'deepskyblue4' => '00688b', + 'dimgray' => '696969', + 'dodgerblue1' => '1e90ff', + 'dodgerblue2' => '1c86ee', + 'dodgerblue3' => '1874cd', + 'dodgerblue4' => '104e8b', + 'firebrick' => 'b22222', + 'firebrick1' => 'ff3030', + 'firebrick2' => 'ee2c2c', + 'firebrick3' => 'cd2626', + 'firebrick4' => '8b1a1a', + 'floralwhite' => 'fffaf0', + 'forestgreen' => '228b22', + 'fuchsia' => 'ff00ff', + 'gainsboro' => 'dcdcdc', + 'ghostwhite' => 'f8f8ff', + 'gold1' => 'ffd700', + 'gold2' => 'eec900', + 'gold3' => 'cdad00', + 'gold4' => '8b7500', + 'goldenrod' => 'daa520', + 'goldenrod1' => 'ffc125', + 'goldenrod2' => 'eeb422', + 'goldenrod3' => 'cd9b1d', + 'goldenrod4' => '8b6914', + 'gray' => 'bebebe', + 'gray1' => '030303', + 'gray10' => '1a1a1a', + 'gray11' => '1c1c1c', + 'gray12' => '1f1f1f', + 'gray13' => '212121', + 'gray14' => '242424', + 'gray15' => '262626', + 'gray16' => '292929', + 'gray17' => '2b2b2b', + 'gray18' => '2e2e2e', + 'gray19' => '303030', + 'gray2' => '050505', + 'gray20' => '333333', + 'gray21' => '363636', + 'gray22' => '383838', + 'gray23' => '3b3b3b', + 'gray24' => '3d3d3d', + 'gray25' => '404040', + 'gray26' => '424242', + 'gray27' => '454545', + 'gray28' => '474747', + 'gray29' => '4a4a4a', + 'gray3' => '080808', + 'gray30' => '4d4d4d', + 'gray31' => '4f4f4f', + 'gray32' => '525252', + 'gray33' => '545454', + 'gray34' => '575757', + 'gray35' => '595959', + 'gray36' => '5c5c5c', + 'gray37' => '5e5e5e', + 'gray38' => '616161', + 'gray39' => '636363', + 'gray4' => '0a0a0a', + 'gray40' => '666666', + 'gray41' => '696969', + 'gray42' => '6b6b6b', + 'gray43' => '6e6e6e', + 'gray44' => '707070', + 'gray45' => '737373', + 'gray46' => '757575', + 'gray47' => '787878', + 'gray48' => '7a7a7a', + 'gray49' => '7d7d7d', + 'gray5' => '0d0d0d', + 'gray50' => '7f7f7f', + 'gray51' => '828282', + 'gray52' => '858585', + 'gray53' => '878787', + 'gray54' => '8a8a8a', + 'gray55' => '8c8c8c', + 'gray56' => '8f8f8f', + 'gray57' => '919191', + 'gray58' => '949494', + 'gray59' => '969696', + 'gray6' => '0f0f0f', + 'gray60' => '999999', + 'gray61' => '9c9c9c', + 'gray62' => '9e9e9e', + 'gray63' => 'a1a1a1', + 'gray64' => 'a3a3a3', + 'gray65' => 'a6a6a6', + 'gray66' => 'a8a8a8', + 'gray67' => 'ababab', + 'gray68' => 'adadad', + 'gray69' => 'b0b0b0', + 'gray7' => '121212', + 'gray70' => 'b3b3b3', + 'gray71' => 'b5b5b5', + 'gray72' => 'b8b8b8', + 'gray73' => 'bababa', + 'gray74' => 'bdbdbd', + 'gray75' => 'bfbfbf', + 'gray76' => 'c2c2c2', + 'gray77' => 'c4c4c4', + 'gray78' => 'c7c7c7', + 'gray79' => 'c9c9c9', + 'gray8' => '141414', + 'gray80' => 'cccccc', + 'gray81' => 'cfcfcf', + 'gray82' => 'd1d1d1', + 'gray83' => 'd4d4d4', + 'gray84' => 'd6d6d6', + 'gray85' => 'd9d9d9', + 'gray86' => 'dbdbdb', + 'gray87' => 'dedede', + 'gray88' => 'e0e0e0', + 'gray89' => 'e3e3e3', + 'gray9' => '171717', + 'gray90' => 'e5e5e5', + 'gray91' => 'e8e8e8', + 'gray92' => 'ebebeb', + 'gray93' => 'ededed', + 'gray94' => 'f0f0f0', + 'gray95' => 'f2f2f2', + 'gray97' => 'f7f7f7', + 'gray98' => 'fafafa', + 'gray99' => 'fcfcfc', + 'green' => '00ff00', + 'green1' => '00ff00', + 'green2' => '00ee00', + 'green3' => '00cd00', + 'green4' => '008b00', + 'greenyellow' => 'adff2f', + 'honeydew1' => 'f0fff0', + 'honeydew2' => 'e0eee0', + 'honeydew3' => 'c1cdc1', + 'honeydew4' => '838b83', + 'hotpink' => 'ff69b4', + 'hotpink1' => 'ff6eb4', + 'hotpink2' => 'ee6aa7', + 'hotpink3' => 'cd6090', + 'hotpink4' => '8b3a62', + 'indianred' => 'cd5c5c', + 'indianred1' => 'ff6a6a', + 'indianred2' => 'ee6363', + 'indianred3' => 'cd5555', + 'indianred4' => '8b3a3a', + 'ivory1' => 'fffff0', + 'ivory2' => 'eeeee0', + 'ivory3' => 'cdcdc1', + 'ivory4' => '8b8b83', + 'khaki' => 'f0e68c', + 'khaki1' => 'fff68f', + 'khaki2' => 'eee685', + 'khaki3' => 'cdc673', + 'khaki4' => '8b864e', + 'lavender' => 'e6e6fa', + 'lavenderblush1' => 'fff0f5', + 'lavenderblush2' => 'eee0e5', + 'lavenderblush3' => 'cdc1c5', + 'lavenderblush4' => '8b8386', + 'lawngreen' => '7cfc00', + 'lemonchiffon1' => 'fffacd', + 'lemonchiffon2' => 'eee9bf', + 'lemonchiffon3' => 'cdc9a5', + 'lemonchiffon4' => '8b8970', + 'light' => 'eedd82', + 'lightblue' => 'add8e6', + 'lightblue1' => 'bfefff', + 'lightblue2' => 'b2dfee', + 'lightblue3' => '9ac0cd', + 'lightblue4' => '68838b', + 'lightcoral' => 'f08080', + 'lightcyan1' => 'e0ffff', + 'lightcyan2' => 'd1eeee', + 'lightcyan3' => 'b4cdcd', + 'lightcyan4' => '7a8b8b', + 'lightgoldenrod1' => 'ffec8b', + 'lightgoldenrod2' => 'eedc82', + 'lightgoldenrod3' => 'cdbe70', + 'lightgoldenrod4' => '8b814c', + 'lightgoldenrodyellow' => 'fafad2', + 'lightgray' => 'd3d3d3', + 'lightpink' => 'ffb6c1', + 'lightpink1' => 'ffaeb9', + 'lightpink2' => 'eea2ad', + 'lightpink3' => 'cd8c95', + 'lightpink4' => '8b5f65', + 'lightsalmon1' => 'ffa07a', + 'lightsalmon2' => 'ee9572', + 'lightsalmon3' => 'cd8162', + 'lightsalmon4' => '8b5742', + 'lightseagreen' => '20b2aa', + 'lightskyblue' => '87cefa', + 'lightskyblue1' => 'b0e2ff', + 'lightskyblue2' => 'a4d3ee', + 'lightskyblue3' => '8db6cd', + 'lightskyblue4' => '607b8b', + 'lightslateblue' => '8470ff', + 'lightslategray' => '778899', + 'lightsteelblue' => 'b0c4de', + 'lightsteelblue1' => 'cae1ff', + 'lightsteelblue2' => 'bcd2ee', + 'lightsteelblue3' => 'a2b5cd', + 'lightsteelblue4' => '6e7b8b', + 'lightyellow1' => 'ffffe0', + 'lightyellow2' => 'eeeed1', + 'lightyellow3' => 'cdcdb4', + 'lightyellow4' => '8b8b7a', + 'lime' => '00ff00', + 'limegreen' => '32cd32', + 'linen' => 'faf0e6', + 'magenta' => 'ff00ff', + 'magenta2' => 'ee00ee', + 'magenta3' => 'cd00cd', + 'magenta4' => '8b008b', + 'maroon' => 'b03060', + 'maroon1' => 'ff34b3', + 'maroon2' => 'ee30a7', + 'maroon3' => 'cd2990', + 'maroon4' => '8b1c62', + 'medium' => '66cdaa', + 'mediumaquamarine' => '66cdaa', + 'mediumblue' => '0000cd', + 'mediumorchid' => 'ba55d3', + 'mediumorchid1' => 'e066ff', + 'mediumorchid2' => 'd15fee', + 'mediumorchid3' => 'b452cd', + 'mediumorchid4' => '7a378b', + 'mediumpurple' => '9370db', + 'mediumpurple1' => 'ab82ff', + 'mediumpurple2' => '9f79ee', + 'mediumpurple3' => '8968cd', + 'mediumpurple4' => '5d478b', + 'mediumseagreen' => '3cb371', + 'mediumslateblue' => '7b68ee', + 'mediumspringgreen' => '00fa9a', + 'mediumturquoise' => '48d1cc', + 'mediumvioletred' => 'c71585', + 'midnightblue' => '191970', + 'mintcream' => 'f5fffa', + 'mistyrose1' => 'ffe4e1', + 'mistyrose2' => 'eed5d2', + 'mistyrose3' => 'cdb7b5', + 'mistyrose4' => '8b7d7b', + 'moccasin' => 'ffe4b5', + 'navajowhite1' => 'ffdead', + 'navajowhite2' => 'eecfa1', + 'navajowhite3' => 'cdb38b', + 'navajowhite4' => '8b795e', + 'navy' => '000080', + 'navyblue' => '000080', + 'oldlace' => 'fdf5e6', + 'olive' => '808000', + 'olivedrab' => '6b8e23', + 'olivedrab1' => 'c0ff3e', + 'olivedrab2' => 'b3ee3a', + 'olivedrab4' => '698b22', + 'orange' => 'ffa500', + 'orange1' => 'ffa500', + 'orange2' => 'ee9a00', + 'orange3' => 'cd8500', + 'orange4' => '8b5a00', + 'orangered1' => 'ff4500', + 'orangered2' => 'ee4000', + 'orangered3' => 'cd3700', + 'orangered4' => '8b2500', + 'orchid' => 'da70d6', + 'orchid1' => 'ff83fa', + 'orchid2' => 'ee7ae9', + 'orchid3' => 'cd69c9', + 'orchid4' => '8b4789', + 'pale' => 'db7093', + 'palegoldenrod' => 'eee8aa', + 'palegreen' => '98fb98', + 'palegreen1' => '9aff9a', + 'palegreen2' => '90ee90', + 'palegreen3' => '7ccd7c', + 'palegreen4' => '548b54', + 'paleturquoise' => 'afeeee', + 'paleturquoise1' => 'bbffff', + 'paleturquoise2' => 'aeeeee', + 'paleturquoise3' => '96cdcd', + 'paleturquoise4' => '668b8b', + 'palevioletred' => 'db7093', + 'palevioletred1' => 'ff82ab', + 'palevioletred2' => 'ee799f', + 'palevioletred3' => 'cd6889', + 'palevioletred4' => '8b475d', + 'papayawhip' => 'ffefd5', + 'peachpuff1' => 'ffdab9', + 'peachpuff2' => 'eecbad', + 'peachpuff3' => 'cdaf95', + 'peachpuff4' => '8b7765', + 'pink' => 'ffc0cb', + 'pink1' => 'ffb5c5', + 'pink2' => 'eea9b8', + 'pink3' => 'cd919e', + 'pink4' => '8b636c', + 'plum' => 'dda0dd', + 'plum1' => 'ffbbff', + 'plum2' => 'eeaeee', + 'plum3' => 'cd96cd', + 'plum4' => '8b668b', + 'powderblue' => 'b0e0e6', + 'purple' => 'a020f0', + 'rebeccapurple' => '663399', + 'purple1' => '9b30ff', + 'purple2' => '912cee', + 'purple3' => '7d26cd', + 'purple4' => '551a8b', + 'red' => 'ff0000', + 'red1' => 'ff0000', + 'red2' => 'ee0000', + 'red3' => 'cd0000', + 'red4' => '8b0000', + 'rosybrown' => 'bc8f8f', + 'rosybrown1' => 'ffc1c1', + 'rosybrown2' => 'eeb4b4', + 'rosybrown3' => 'cd9b9b', + 'rosybrown4' => '8b6969', + 'royalblue' => '4169e1', + 'royalblue1' => '4876ff', + 'royalblue2' => '436eee', + 'royalblue3' => '3a5fcd', + 'royalblue4' => '27408b', + 'saddlebrown' => '8b4513', + 'salmon' => 'fa8072', + 'salmon1' => 'ff8c69', + 'salmon2' => 'ee8262', + 'salmon3' => 'cd7054', + 'salmon4' => '8b4c39', + 'sandybrown' => 'f4a460', + 'seagreen1' => '54ff9f', + 'seagreen2' => '4eee94', + 'seagreen3' => '43cd80', + 'seagreen4' => '2e8b57', + 'seashell1' => 'fff5ee', + 'seashell2' => 'eee5de', + 'seashell3' => 'cdc5bf', + 'seashell4' => '8b8682', + 'sienna' => 'a0522d', + 'sienna1' => 'ff8247', + 'sienna2' => 'ee7942', + 'sienna3' => 'cd6839', + 'sienna4' => '8b4726', + 'silver' => 'c0c0c0', + 'skyblue' => '87ceeb', + 'skyblue1' => '87ceff', + 'skyblue2' => '7ec0ee', + 'skyblue3' => '6ca6cd', + 'skyblue4' => '4a708b', + 'slateblue' => '6a5acd', + 'slateblue1' => '836fff', + 'slateblue2' => '7a67ee', + 'slateblue3' => '6959cd', + 'slateblue4' => '473c8b', + 'slategray' => '708090', + 'slategray1' => 'c6e2ff', + 'slategray2' => 'b9d3ee', + 'slategray3' => '9fb6cd', + 'slategray4' => '6c7b8b', + 'snow1' => 'fffafa', + 'snow2' => 'eee9e9', + 'snow3' => 'cdc9c9', + 'snow4' => '8b8989', + 'springgreen1' => '00ff7f', + 'springgreen2' => '00ee76', + 'springgreen3' => '00cd66', + 'springgreen4' => '008b45', + 'steelblue' => '4682b4', + 'steelblue1' => '63b8ff', + 'steelblue2' => '5cacee', + 'steelblue3' => '4f94cd', + 'steelblue4' => '36648b', + 'tan' => 'd2b48c', + 'tan1' => 'ffa54f', + 'tan2' => 'ee9a49', + 'tan3' => 'cd853f', + 'tan4' => '8b5a2b', + 'teal' => '008080', + 'thistle' => 'd8bfd8', + 'thistle1' => 'ffe1ff', + 'thistle2' => 'eed2ee', + 'thistle3' => 'cdb5cd', + 'thistle4' => '8b7b8b', + 'tomato1' => 'ff6347', + 'tomato2' => 'ee5c42', + 'tomato3' => 'cd4f39', + 'tomato4' => '8b3626', + 'turquoise' => '40e0d0', + 'turquoise1' => '00f5ff', + 'turquoise2' => '00e5ee', + 'turquoise3' => '00c5cd', + 'turquoise4' => '00868b', + 'violet' => 'ee82ee', + 'violetred' => 'd02090', + 'violetred1' => 'ff3e96', + 'violetred2' => 'ee3a8c', + 'violetred3' => 'cd3278', + 'violetred4' => '8b2252', + 'wheat' => 'f5deb3', + 'wheat1' => 'ffe7ba', + 'wheat2' => 'eed8ae', + 'wheat3' => 'cdba96', + 'wheat4' => '8b7e66', + 'white' => 'ffffff', + 'whitesmoke' => 'f5f5f5', + 'yellow' => 'ffff00', + 'yellow1' => 'ffff00', + 'yellow2' => 'eeee00', + 'yellow3' => 'cdcd00', + 'yellow4' => '8b8b00', + 'yellowgreen' => '9acd32', + ]; + + protected $face; + + protected $size; + + protected $color; + + protected $bold = false; + + protected $italic = false; + + protected $underline = false; + + protected $superscript = false; + + protected $subscript = false; + + protected $strikethrough = false; + + protected $startTagCallbacks = [ + 'font' => 'startFontTag', + 'b' => 'startBoldTag', + 'strong' => 'startBoldTag', + 'i' => 'startItalicTag', + 'em' => 'startItalicTag', + 'u' => 'startUnderlineTag', + 'ins' => 'startUnderlineTag', + 'del' => 'startStrikethruTag', + 'sup' => 'startSuperscriptTag', + 'sub' => 'startSubscriptTag', + ]; + + protected $endTagCallbacks = [ + 'font' => 'endFontTag', + 'b' => 'endBoldTag', + 'strong' => 'endBoldTag', + 'i' => 'endItalicTag', + 'em' => 'endItalicTag', + 'u' => 'endUnderlineTag', + 'ins' => 'endUnderlineTag', + 'del' => 'endStrikethruTag', + 'sup' => 'endSuperscriptTag', + 'sub' => 'endSubscriptTag', + 'br' => 'breakTag', + 'p' => 'breakTag', + 'h1' => 'breakTag', + 'h2' => 'breakTag', + 'h3' => 'breakTag', + 'h4' => 'breakTag', + 'h5' => 'breakTag', + 'h6' => 'breakTag', + ]; + + protected $stack = []; + + protected $stringData = ''; + + /** + * @var RichText + */ + protected $richTextObject; + + protected function initialise(): void + { + $this->face = $this->size = $this->color = null; + $this->bold = $this->italic = $this->underline = $this->superscript = $this->subscript = $this->strikethrough = false; + + $this->stack = []; + + $this->stringData = ''; + } + + /** + * Parse HTML formatting and return the resulting RichText. + * + * @param string $html + * + * @return RichText + */ + public function toRichTextObject($html) + { + $this->initialise(); + + // Create a new DOM object + $dom = new DOMDocument(); + // Load the HTML file into the DOM object + // Note the use of error suppression, because typically this will be an html fragment, so not fully valid markup + $prefix = '<?xml encoding="UTF-8">'; + /** @scrutinizer ignore-unhandled */ + @$dom->loadHTML($prefix . $html, LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD); + // Discard excess white space + $dom->preserveWhiteSpace = false; + + $this->richTextObject = new RichText(); + $this->parseElements($dom); + + // Clean any further spurious whitespace + $this->cleanWhitespace(); + + return $this->richTextObject; + } + + protected function cleanWhitespace(): void + { + foreach ($this->richTextObject->getRichTextElements() as $key => $element) { + $text = $element->getText(); + // Trim any leading spaces on the first run + if ($key == 0) { + $text = ltrim($text); + } + // Trim any spaces immediately after a line break + $text = (string) preg_replace('/\n */mu', "\n", $text); + $element->setText($text); + } + } + + protected function buildTextRun(): void + { + $text = $this->stringData; + if (trim($text) === '') { + return; + } + + $richtextRun = $this->richTextObject->createTextRun($this->stringData); + if ($this->face) { + $richtextRun->getFont()->setName($this->face); + } + if ($this->size) { + $richtextRun->getFont()->setSize($this->size); + } + if ($this->color) { + $richtextRun->getFont()->setColor(new Color('ff' . $this->color)); + } + if ($this->bold) { + $richtextRun->getFont()->setBold(true); + } + if ($this->italic) { + $richtextRun->getFont()->setItalic(true); + } + if ($this->underline) { + $richtextRun->getFont()->setUnderline(Font::UNDERLINE_SINGLE); + } + if ($this->superscript) { + $richtextRun->getFont()->setSuperscript(true); + } + if ($this->subscript) { + $richtextRun->getFont()->setSubscript(true); + } + if ($this->strikethrough) { + $richtextRun->getFont()->setStrikethrough(true); + } + $this->stringData = ''; + } + + protected function rgbToColour(string $rgbValue): string + { + preg_match_all('/\d+/', $rgbValue, $values); + foreach ($values[0] as &$value) { + $value = str_pad(dechex($value), 2, '0', STR_PAD_LEFT); + } + + return implode('', $values[0]); + } + + public static function colourNameLookup(string $colorName): string + { + return self::$colourMap[$colorName] ?? ''; + } + + protected function startFontTag($tag): void + { + foreach ($tag->attributes as $attribute) { + $attributeName = strtolower($attribute->name); + $attributeValue = $attribute->value; + + if ($attributeName == 'color') { + if (preg_match('/rgb\s*\(/', $attributeValue)) { + $this->$attributeName = $this->rgbToColour($attributeValue); + } elseif (strpos(trim($attributeValue), '#') === 0) { + $this->$attributeName = ltrim($attributeValue, '#'); + } else { + $this->$attributeName = static::colourNameLookup($attributeValue); + } + } else { + $this->$attributeName = $attributeValue; + } + } + } + + protected function endFontTag(): void + { + $this->face = $this->size = $this->color = null; + } + + protected function startBoldTag(): void + { + $this->bold = true; + } + + protected function endBoldTag(): void + { + $this->bold = false; + } + + protected function startItalicTag(): void + { + $this->italic = true; + } + + protected function endItalicTag(): void + { + $this->italic = false; + } + + protected function startUnderlineTag(): void + { + $this->underline = true; + } + + protected function endUnderlineTag(): void + { + $this->underline = false; + } + + protected function startSubscriptTag(): void + { + $this->subscript = true; + } + + protected function endSubscriptTag(): void + { + $this->subscript = false; + } + + protected function startSuperscriptTag(): void + { + $this->superscript = true; + } + + protected function endSuperscriptTag(): void + { + $this->superscript = false; + } + + protected function startStrikethruTag(): void + { + $this->strikethrough = true; + } + + protected function endStrikethruTag(): void + { + $this->strikethrough = false; + } + + protected function breakTag(): void + { + $this->stringData .= "\n"; + } + + protected function parseTextNode(DOMText $textNode): void + { + $domText = (string) preg_replace( + '/\s+/u', + ' ', + str_replace(["\r", "\n"], ' ', $textNode->nodeValue ?? '') + ); + $this->stringData .= $domText; + $this->buildTextRun(); + } + + /** + * @param string $callbackTag + */ + protected function handleCallback(DOMElement $element, $callbackTag, array $callbacks): void + { + if (isset($callbacks[$callbackTag])) { + $elementHandler = $callbacks[$callbackTag]; + if (method_exists($this, $elementHandler)) { + /** @phpstan-ignore-next-line */ + call_user_func([$this, $elementHandler], $element); + } + } + } + + protected function parseElementNode(DOMElement $element): void + { + $callbackTag = strtolower($element->nodeName); + $this->stack[] = $callbackTag; + + $this->handleCallback($element, $callbackTag, $this->startTagCallbacks); + + $this->parseElements($element); + array_pop($this->stack); + + $this->handleCallback($element, $callbackTag, $this->endTagCallbacks); + } + + protected function parseElements(DOMNode $element): void + { + foreach ($element->childNodes as $child) { + if ($child instanceof DOMText) { + $this->parseTextNode($child); + } elseif ($child instanceof DOMElement) { + $this->parseElementNode($child); + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Sample.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Sample.php new file mode 100644 index 0000000..8ce3700 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Sample.php @@ -0,0 +1,226 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Helper; + +use PhpOffice\PhpSpreadsheet\IOFactory; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Writer\IWriter; +use RecursiveDirectoryIterator; +use RecursiveIteratorIterator; +use RecursiveRegexIterator; +use ReflectionClass; +use RegexIterator; +use RuntimeException; + +/** + * Helper class to be used in sample code. + */ +class Sample +{ + /** + * Returns whether we run on CLI or browser. + * + * @return bool + */ + public function isCli() + { + return PHP_SAPI === 'cli'; + } + + /** + * Return the filename currently being executed. + * + * @return string + */ + public function getScriptFilename() + { + return basename($_SERVER['SCRIPT_FILENAME'], '.php'); + } + + /** + * Whether we are executing the index page. + * + * @return bool + */ + public function isIndex() + { + return $this->getScriptFilename() === 'index'; + } + + /** + * Return the page title. + * + * @return string + */ + public function getPageTitle() + { + return $this->isIndex() ? 'PHPSpreadsheet' : $this->getScriptFilename(); + } + + /** + * Return the page heading. + * + * @return string + */ + public function getPageHeading() + { + return $this->isIndex() ? '' : '<h1>' . str_replace('_', ' ', $this->getScriptFilename()) . '</h1>'; + } + + /** + * Returns an array of all known samples. + * + * @return string[][] [$name => $path] + */ + public function getSamples() + { + // Populate samples + $baseDir = realpath(__DIR__ . '/../../../samples'); + $directory = new RecursiveDirectoryIterator($baseDir); + $iterator = new RecursiveIteratorIterator($directory); + $regex = new RegexIterator($iterator, '/^.+\.php$/', RecursiveRegexIterator::GET_MATCH); + + $files = []; + foreach ($regex as $file) { + $file = str_replace(str_replace('\\', '/', $baseDir) . '/', '', str_replace('\\', '/', $file[0])); + $info = pathinfo($file); + $category = str_replace('_', ' ', $info['dirname']); + $name = str_replace('_', ' ', (string) preg_replace('/(|\.php)/', '', $info['filename'])); + if (!in_array($category, ['.', 'boostrap', 'templates'])) { + if (!isset($files[$category])) { + $files[$category] = []; + } + $files[$category][$name] = $file; + } + } + + // Sort everything + ksort($files); + foreach ($files as &$f) { + asort($f); + } + + return $files; + } + + /** + * Write documents. + * + * @param string $filename + * @param string[] $writers + */ + public function write(Spreadsheet $spreadsheet, $filename, array $writers = ['Xlsx', 'Xls']): void + { + // Set active sheet index to the first sheet, so Excel opens this as the first sheet + $spreadsheet->setActiveSheetIndex(0); + + // Write documents + foreach ($writers as $writerType) { + $path = $this->getFilename($filename, mb_strtolower($writerType)); + $writer = IOFactory::createWriter($spreadsheet, $writerType); + $callStartTime = microtime(true); + $writer->save($path); + $this->logWrite($writer, $path, $callStartTime); + } + + $this->logEndingNotes(); + } + + protected function isDirOrMkdir(string $folder): bool + { + return \is_dir($folder) || \mkdir($folder); + } + + /** + * Returns the temporary directory and make sure it exists. + * + * @return string + */ + private function getTemporaryFolder() + { + $tempFolder = sys_get_temp_dir() . '/phpspreadsheet'; + if (!$this->isDirOrMkdir($tempFolder)) { + throw new RuntimeException(sprintf('Directory "%s" was not created', $tempFolder)); + } + + return $tempFolder; + } + + /** + * Returns the filename that should be used for sample output. + * + * @param string $filename + * @param string $extension + * + * @return string + */ + public function getFilename($filename, $extension = 'xlsx') + { + $originalExtension = pathinfo($filename, PATHINFO_EXTENSION); + + return $this->getTemporaryFolder() . '/' . str_replace('.' . $originalExtension, '.' . $extension, basename($filename)); + } + + /** + * Return a random temporary file name. + * + * @param string $extension + * + * @return string + */ + public function getTemporaryFilename($extension = 'xlsx') + { + $temporaryFilename = tempnam($this->getTemporaryFolder(), 'phpspreadsheet-'); + unlink($temporaryFilename); + + return $temporaryFilename . '.' . $extension; + } + + public function log($message): void + { + $eol = $this->isCli() ? PHP_EOL : '<br />'; + echo date('H:i:s ') . $message . $eol; + } + + /** + * Log ending notes. + */ + public function logEndingNotes(): void + { + // Do not show execution time for index + $this->log('Peak memory usage: ' . (memory_get_peak_usage(true) / 1024 / 1024) . 'MB'); + } + + /** + * Log a line about the write operation. + * + * @param string $path + * @param float $callStartTime + */ + public function logWrite(IWriter $writer, $path, $callStartTime): void + { + $callEndTime = microtime(true); + $callTime = $callEndTime - $callStartTime; + $reflection = new ReflectionClass($writer); + $format = $reflection->getShortName(); + $message = "Write {$format} format to <code>{$path}</code> in " . sprintf('%.4f', $callTime) . ' seconds'; + + $this->log($message); + } + + /** + * Log a line about the read operation. + * + * @param string $format + * @param string $path + * @param float $callStartTime + */ + public function logRead($format, $path, $callStartTime): void + { + $callEndTime = microtime(true); + $callTime = $callEndTime - $callStartTime; + $message = "Read {$format} format from <code>{$path}</code> in " . sprintf('%.4f', $callTime) . ' seconds'; + + $this->log($message); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Size.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Size.php new file mode 100644 index 0000000..12ba4ef --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Size.php @@ -0,0 +1,52 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Helper; + +class Size +{ + const REGEXP_SIZE_VALIDATION = '/^(?P<size>\d*\.?\d+)(?P<unit>pt|px|em)?$/i'; + + /** + * @var bool + */ + protected $valid; + + /** + * @var string + */ + protected $size = ''; + + /** + * @var string + */ + protected $unit = ''; + + public function __construct(string $size) + { + $this->valid = (bool) preg_match(self::REGEXP_SIZE_VALIDATION, $size, $matches); + if ($this->valid) { + $this->size = $matches['size']; + $this->unit = $matches['unit'] ?? 'pt'; + } + } + + public function valid(): bool + { + return $this->valid; + } + + public function size(): string + { + return $this->size; + } + + public function unit(): string + { + return $this->unit; + } + + public function __toString() + { + return $this->size . $this->unit; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IComparable.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IComparable.php new file mode 100644 index 0000000..c215847 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IComparable.php @@ -0,0 +1,13 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet; + +interface IComparable +{ + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode(); +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IOFactory.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IOFactory.php new file mode 100644 index 0000000..e437a22 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IOFactory.php @@ -0,0 +1,233 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet; + +use PhpOffice\PhpSpreadsheet\Reader\IReader; +use PhpOffice\PhpSpreadsheet\Shared\File; +use PhpOffice\PhpSpreadsheet\Writer\IWriter; + +/** + * Factory to create readers and writers easily. + * + * It is not required to use this class, but it should make it easier to read and write files. + * Especially for reading files with an unknown format. + */ +abstract class IOFactory +{ + public const READER_XLSX = 'Xlsx'; + public const READER_XLS = 'Xls'; + public const READER_XML = 'Xml'; + public const READER_ODS = 'Ods'; + public const READER_SYLK = 'Slk'; + public const READER_SLK = 'Slk'; + public const READER_GNUMERIC = 'Gnumeric'; + public const READER_HTML = 'Html'; + public const READER_CSV = 'Csv'; + + public const WRITER_XLSX = 'Xlsx'; + public const WRITER_XLS = 'Xls'; + public const WRITER_ODS = 'Ods'; + public const WRITER_CSV = 'Csv'; + public const WRITER_HTML = 'Html'; + + private static $readers = [ + self::READER_XLSX => Reader\Xlsx::class, + self::READER_XLS => Reader\Xls::class, + self::READER_XML => Reader\Xml::class, + self::READER_ODS => Reader\Ods::class, + self::READER_SLK => Reader\Slk::class, + self::READER_GNUMERIC => Reader\Gnumeric::class, + self::READER_HTML => Reader\Html::class, + self::READER_CSV => Reader\Csv::class, + ]; + + private static $writers = [ + self::WRITER_XLS => Writer\Xls::class, + self::WRITER_XLSX => Writer\Xlsx::class, + self::WRITER_ODS => Writer\Ods::class, + self::WRITER_CSV => Writer\Csv::class, + self::WRITER_HTML => Writer\Html::class, + 'Tcpdf' => Writer\Pdf\Tcpdf::class, + 'Dompdf' => Writer\Pdf\Dompdf::class, + 'Mpdf' => Writer\Pdf\Mpdf::class, + ]; + + /** + * Create Writer\IWriter. + */ + public static function createWriter(Spreadsheet $spreadsheet, string $writerType): IWriter + { + if (!isset(self::$writers[$writerType])) { + throw new Writer\Exception("No writer found for type $writerType"); + } + + // Instantiate writer + $className = self::$writers[$writerType]; + + return new $className($spreadsheet); + } + + /** + * Create IReader. + */ + public static function createReader(string $readerType): IReader + { + if (!isset(self::$readers[$readerType])) { + throw new Reader\Exception("No reader found for type $readerType"); + } + + // Instantiate reader + $className = self::$readers[$readerType]; + + return new $className(); + } + + /** + * Loads Spreadsheet from file using automatic Reader\IReader resolution. + * + * @param string $filename The name of the spreadsheet file + * @param int $flags the optional second parameter flags may be used to identify specific elements + * that should be loaded, but which won't be loaded by default, using these values: + * IReader::LOAD_WITH_CHARTS - Include any charts that are defined in the loaded file + * @param string[] $readers An array of Readers to use to identify the file type. By default, load() will try + * all possible Readers until it finds a match; but this allows you to pass in a + * list of Readers so it will only try the subset that you specify here. + * Values in this list can be any of the constant values defined in the set + * IOFactory::READER_*. + */ + public static function load(string $filename, int $flags = 0, ?array $readers = null): Spreadsheet + { + $reader = self::createReaderForFile($filename, $readers); + + return $reader->load($filename, $flags); + } + + /** + * Identify file type using automatic IReader resolution. + */ + public static function identify(string $filename, ?array $readers = null): string + { + $reader = self::createReaderForFile($filename, $readers); + $className = get_class($reader); + $classType = explode('\\', $className); + unset($reader); + + return array_pop($classType); + } + + /** + * Create Reader\IReader for file using automatic IReader resolution. + * + * @param string[] $readers An array of Readers to use to identify the file type. By default, load() will try + * all possible Readers until it finds a match; but this allows you to pass in a + * list of Readers so it will only try the subset that you specify here. + * Values in this list can be any of the constant values defined in the set + * IOFactory::READER_*. + */ + public static function createReaderForFile(string $filename, ?array $readers = null): IReader + { + File::assertFile($filename); + + $testReaders = self::$readers; + if ($readers !== null) { + $readers = array_map('strtoupper', $readers); + $testReaders = array_filter( + self::$readers, + function (string $readerType) use ($readers) { + return in_array(strtoupper($readerType), $readers, true); + }, + ARRAY_FILTER_USE_KEY + ); + } + + // First, lucky guess by inspecting file extension + $guessedReader = self::getReaderTypeFromExtension($filename); + if (($guessedReader !== null) && array_key_exists($guessedReader, $testReaders)) { + $reader = self::createReader($guessedReader); + + // Let's see if we are lucky + if ($reader->canRead($filename)) { + return $reader; + } + } + + // If we reach here then "lucky guess" didn't give any result + // Try walking through all the options in self::$readers (or the selected subset) + foreach ($testReaders as $readerType => $class) { + // Ignore our original guess, we know that won't work + if ($readerType !== $guessedReader) { + $reader = self::createReader($readerType); + if ($reader->canRead($filename)) { + return $reader; + } + } + } + + throw new Reader\Exception('Unable to identify a reader for this file'); + } + + /** + * Guess a reader type from the file extension, if any. + */ + private static function getReaderTypeFromExtension(string $filename): ?string + { + $pathinfo = pathinfo($filename); + if (!isset($pathinfo['extension'])) { + return null; + } + + switch (strtolower($pathinfo['extension'])) { + case 'xlsx': // Excel (OfficeOpenXML) Spreadsheet + case 'xlsm': // Excel (OfficeOpenXML) Macro Spreadsheet (macros will be discarded) + case 'xltx': // Excel (OfficeOpenXML) Template + case 'xltm': // Excel (OfficeOpenXML) Macro Template (macros will be discarded) + return 'Xlsx'; + case 'xls': // Excel (BIFF) Spreadsheet + case 'xlt': // Excel (BIFF) Template + return 'Xls'; + case 'ods': // Open/Libre Offic Calc + case 'ots': // Open/Libre Offic Calc Template + return 'Ods'; + case 'slk': + return 'Slk'; + case 'xml': // Excel 2003 SpreadSheetML + return 'Xml'; + case 'gnumeric': + return 'Gnumeric'; + case 'htm': + case 'html': + return 'Html'; + case 'csv': + // Do nothing + // We must not try to use CSV reader since it loads + // all files including Excel files etc. + return null; + default: + return null; + } + } + + /** + * Register a writer with its type and class name. + */ + public static function registerWriter(string $writerType, string $writerClass): void + { + if (!is_a($writerClass, IWriter::class, true)) { + throw new Writer\Exception('Registered writers must implement ' . IWriter::class); + } + + self::$writers[$writerType] = $writerClass; + } + + /** + * Register a reader with its type and class name. + */ + public static function registerReader(string $readerType, string $readerClass): void + { + if (!is_a($readerClass, IReader::class, true)) { + throw new Reader\Exception('Registered readers must implement ' . IReader::class); + } + + self::$readers[$readerType] = $readerClass; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/NamedFormula.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/NamedFormula.php new file mode 100644 index 0000000..500151f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/NamedFormula.php @@ -0,0 +1,45 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet; + +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class NamedFormula extends DefinedName +{ + /** + * Create a new Named Formula. + */ + public function __construct( + string $name, + ?Worksheet $worksheet = null, + ?string $formula = null, + bool $localOnly = false, + ?Worksheet $scope = null + ) { + // Validate data + if (!isset($formula)) { + throw new Exception('You must specify a Formula value for a Named Formula'); + } + parent::__construct($name, $worksheet, $formula, $localOnly, $scope); + } + + /** + * Get the formula value. + */ + public function getFormula(): string + { + return $this->value; + } + + /** + * Set the formula value. + */ + public function setFormula(string $formula): self + { + if (!empty($formula)) { + $this->value = $formula; + } + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/NamedRange.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/NamedRange.php new file mode 100644 index 0000000..db9c5f1 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/NamedRange.php @@ -0,0 +1,55 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class NamedRange extends DefinedName +{ + /** + * Create a new Named Range. + */ + public function __construct( + string $name, + ?Worksheet $worksheet = null, + string $range = 'A1', + bool $localOnly = false, + ?Worksheet $scope = null + ) { + if ($worksheet === null && $scope === null) { + throw new Exception('You must specify a worksheet or a scope for a Named Range'); + } + parent::__construct($name, $worksheet, $range, $localOnly, $scope); + } + + /** + * Get the range value. + */ + public function getRange(): string + { + return $this->value; + } + + /** + * Set the range value. + */ + public function setRange(string $range): self + { + if (!empty($range)) { + $this->value = $range; + } + + return $this; + } + + public function getCellsInRange(): array + { + $range = $this->value; + if (substr($range, 0, 1) === '=') { + $range = substr($range, 1); + } + + return Coordinate::extractAllCellReferencesInRange($range); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/BaseReader.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/BaseReader.php new file mode 100644 index 0000000..a137e78 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/BaseReader.php @@ -0,0 +1,190 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; +use PhpOffice\PhpSpreadsheet\Reader\Exception as ReaderException; +use PhpOffice\PhpSpreadsheet\Reader\Security\XmlScanner; +use PhpOffice\PhpSpreadsheet\Shared\File; +use PhpOffice\PhpSpreadsheet\Spreadsheet; + +abstract class BaseReader implements IReader +{ + /** + * Read data only? + * Identifies whether the Reader should only read data values for cells, and ignore any formatting information; + * or whether it should read both data and formatting. + * + * @var bool + */ + protected $readDataOnly = false; + + /** + * Read empty cells? + * Identifies whether the Reader should read data values for cells all cells, or should ignore cells containing + * null value or empty string. + * + * @var bool + */ + protected $readEmptyCells = true; + + /** + * Read charts that are defined in the workbook? + * Identifies whether the Reader should read the definitions for any charts that exist in the workbook;. + * + * @var bool + */ + protected $includeCharts = false; + + /** + * Restrict which sheets should be loaded? + * This property holds an array of worksheet names to be loaded. If null, then all worksheets will be loaded. + * + * @var null|string[] + */ + protected $loadSheetsOnly; + + /** + * IReadFilter instance. + * + * @var IReadFilter + */ + protected $readFilter; + + protected $fileHandle; + + /** + * @var XmlScanner + */ + protected $securityScanner; + + public function __construct() + { + $this->readFilter = new DefaultReadFilter(); + } + + public function getReadDataOnly() + { + return $this->readDataOnly; + } + + public function setReadDataOnly($readCellValuesOnly) + { + $this->readDataOnly = (bool) $readCellValuesOnly; + + return $this; + } + + public function getReadEmptyCells() + { + return $this->readEmptyCells; + } + + public function setReadEmptyCells($readEmptyCells) + { + $this->readEmptyCells = (bool) $readEmptyCells; + + return $this; + } + + public function getIncludeCharts() + { + return $this->includeCharts; + } + + public function setIncludeCharts($includeCharts) + { + $this->includeCharts = (bool) $includeCharts; + + return $this; + } + + public function getLoadSheetsOnly() + { + return $this->loadSheetsOnly; + } + + public function setLoadSheetsOnly($sheetList) + { + if ($sheetList === null) { + return $this->setLoadAllSheets(); + } + + $this->loadSheetsOnly = is_array($sheetList) ? $sheetList : [$sheetList]; + + return $this; + } + + public function setLoadAllSheets() + { + $this->loadSheetsOnly = null; + + return $this; + } + + public function getReadFilter() + { + return $this->readFilter; + } + + public function setReadFilter(IReadFilter $readFilter) + { + $this->readFilter = $readFilter; + + return $this; + } + + public function getSecurityScanner() + { + return $this->securityScanner; + } + + protected function processFlags(int $flags): void + { + if (((bool) ($flags & self::LOAD_WITH_CHARTS)) === true) { + $this->setIncludeCharts(true); + } + } + + protected function loadSpreadsheetFromFile(string $filename): Spreadsheet + { + throw new PhpSpreadsheetException('Reader classes must implement their own loadSpreadsheetFromFile() method'); + } + + /** + * Loads Spreadsheet from file. + * + * @param int $flags the optional second parameter flags may be used to identify specific elements + * that should be loaded, but which won't be loaded by default, using these values: + * IReader::LOAD_WITH_CHARTS - Include any charts that are defined in the loaded file + */ + public function load(string $filename, int $flags = 0): Spreadsheet + { + $this->processFlags($flags); + + try { + return $this->loadSpreadsheetFromFile($filename); + } catch (ReaderException $e) { + throw $e; + } + } + + /** + * Open file for reading. + */ + protected function openFile(string $filename): void + { + $fileHandle = false; + if ($filename) { + File::assertFile($filename); + + // Open file + $fileHandle = fopen($filename, 'rb'); + } + if ($fileHandle === false) { + throw new ReaderException('Could not open file ' . $filename . ' for reading.'); + } + + $this->fileHandle = $fileHandle; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv.php new file mode 100644 index 0000000..65a71ed --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv.php @@ -0,0 +1,645 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Reader\Csv\Delimiter; +use PhpOffice\PhpSpreadsheet\Reader\Exception as ReaderException; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; + +class Csv extends BaseReader +{ + const DEFAULT_FALLBACK_ENCODING = 'CP1252'; + const GUESS_ENCODING = 'guess'; + const UTF8_BOM = "\xEF\xBB\xBF"; + const UTF8_BOM_LEN = 3; + const UTF16BE_BOM = "\xfe\xff"; + const UTF16BE_BOM_LEN = 2; + const UTF16BE_LF = "\x00\x0a"; + const UTF16LE_BOM = "\xff\xfe"; + const UTF16LE_BOM_LEN = 2; + const UTF16LE_LF = "\x0a\x00"; + const UTF32BE_BOM = "\x00\x00\xfe\xff"; + const UTF32BE_BOM_LEN = 4; + const UTF32BE_LF = "\x00\x00\x00\x0a"; + const UTF32LE_BOM = "\xff\xfe\x00\x00"; + const UTF32LE_BOM_LEN = 4; + const UTF32LE_LF = "\x0a\x00\x00\x00"; + + /** + * Input encoding. + * + * @var string + */ + private $inputEncoding = 'UTF-8'; + + /** + * Fallback encoding if guess strikes out. + * + * @var string + */ + private $fallbackEncoding = self::DEFAULT_FALLBACK_ENCODING; + + /** + * Delimiter. + * + * @var ?string + */ + private $delimiter; + + /** + * Enclosure. + * + * @var string + */ + private $enclosure = '"'; + + /** + * Sheet index to read. + * + * @var int + */ + private $sheetIndex = 0; + + /** + * Load rows contiguously. + * + * @var bool + */ + private $contiguous = false; + + /** + * The character that can escape the enclosure. + * + * @var string + */ + private $escapeCharacter = '\\'; + + /** + * Callback for setting defaults in construction. + * + * @var ?callable + */ + private static $constructorCallback; + + /** + * Attempt autodetect line endings (deprecated after PHP8.1)? + * + * @var bool + */ + private $testAutodetect = true; + + /** + * @var bool + */ + protected $castFormattedNumberToNumeric = false; + + /** + * @var bool + */ + protected $preserveNumericFormatting = false; + + /** @var bool */ + private $preserveNullString = false; + + /** + * Create a new CSV Reader instance. + */ + public function __construct() + { + parent::__construct(); + $callback = self::$constructorCallback; + if ($callback !== null) { + $callback($this); + } + } + + /** + * Set a callback to change the defaults. + * + * The callback must accept the Csv Reader object as the first parameter, + * and it should return void. + */ + public static function setConstructorCallback(?callable $callback): void + { + self::$constructorCallback = $callback; + } + + public static function getConstructorCallback(): ?callable + { + return self::$constructorCallback; + } + + public function setInputEncoding(string $encoding): self + { + $this->inputEncoding = $encoding; + + return $this; + } + + public function getInputEncoding(): string + { + return $this->inputEncoding; + } + + public function setFallbackEncoding(string $fallbackEncoding): self + { + $this->fallbackEncoding = $fallbackEncoding; + + return $this; + } + + public function getFallbackEncoding(): string + { + return $this->fallbackEncoding; + } + + /** + * Move filepointer past any BOM marker. + */ + protected function skipBOM(): void + { + rewind($this->fileHandle); + + if (fgets($this->fileHandle, self::UTF8_BOM_LEN + 1) !== self::UTF8_BOM) { + rewind($this->fileHandle); + } + } + + /** + * Identify any separator that is explicitly set in the file. + */ + protected function checkSeparator(): void + { + $line = fgets($this->fileHandle); + if ($line === false) { + return; + } + + if ((strlen(trim($line, "\r\n")) == 5) && (stripos($line, 'sep=') === 0)) { + $this->delimiter = substr($line, 4, 1); + + return; + } + + $this->skipBOM(); + } + + /** + * Infer the separator if it isn't explicitly set in the file or specified by the user. + */ + protected function inferSeparator(): void + { + if ($this->delimiter !== null) { + return; + } + + $inferenceEngine = new Delimiter($this->fileHandle, $this->escapeCharacter, $this->enclosure); + + // If number of lines is 0, nothing to infer : fall back to the default + if ($inferenceEngine->linesCounted() === 0) { + $this->delimiter = $inferenceEngine->getDefaultDelimiter(); + $this->skipBOM(); + + return; + } + + $this->delimiter = $inferenceEngine->infer(); + + // If no delimiter could be detected, fall back to the default + if ($this->delimiter === null) { + $this->delimiter = $inferenceEngine->getDefaultDelimiter(); + } + + $this->skipBOM(); + } + + /** + * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns). + */ + public function listWorksheetInfo(string $filename): array + { + // Open file + $this->openFileOrMemory($filename); + $fileHandle = $this->fileHandle; + + // Skip BOM, if any + $this->skipBOM(); + $this->checkSeparator(); + $this->inferSeparator(); + + $worksheetInfo = []; + $worksheetInfo[0]['worksheetName'] = 'Worksheet'; + $worksheetInfo[0]['lastColumnLetter'] = 'A'; + $worksheetInfo[0]['lastColumnIndex'] = 0; + $worksheetInfo[0]['totalRows'] = 0; + $worksheetInfo[0]['totalColumns'] = 0; + + // Loop through each line of the file in turn + $rowData = fgetcsv($fileHandle, 0, $this->delimiter ?? '', $this->enclosure, $this->escapeCharacter); + while (is_array($rowData)) { + ++$worksheetInfo[0]['totalRows']; + $worksheetInfo[0]['lastColumnIndex'] = max($worksheetInfo[0]['lastColumnIndex'], count($rowData) - 1); + $rowData = fgetcsv($fileHandle, 0, $this->delimiter ?? '', $this->enclosure, $this->escapeCharacter); + } + + $worksheetInfo[0]['lastColumnLetter'] = Coordinate::stringFromColumnIndex($worksheetInfo[0]['lastColumnIndex'] + 1); + $worksheetInfo[0]['totalColumns'] = $worksheetInfo[0]['lastColumnIndex'] + 1; + + // Close file + fclose($fileHandle); + + return $worksheetInfo; + } + + /** + * Loads Spreadsheet from file. + */ + protected function loadSpreadsheetFromFile(string $filename): Spreadsheet + { + // Create new Spreadsheet + $spreadsheet = new Spreadsheet(); + + // Load into this instance + return $this->loadIntoExisting($filename, $spreadsheet); + } + + /** + * Loads Spreadsheet from string. + */ + public function loadSpreadsheetFromString(string $contents): Spreadsheet + { + // Create new Spreadsheet + $spreadsheet = new Spreadsheet(); + + // Load into this instance + return $this->loadStringOrFile('data://text/plain,' . urlencode($contents), $spreadsheet, true); + } + + private function openFileOrMemory(string $filename): void + { + // Open file + $fhandle = $this->canRead($filename); + if (!$fhandle) { + throw new Exception($filename . ' is an Invalid Spreadsheet file.'); + } + if ($this->inputEncoding === self::GUESS_ENCODING) { + $this->inputEncoding = self::guessEncoding($filename, $this->fallbackEncoding); + } + $this->openFile($filename); + if ($this->inputEncoding !== 'UTF-8') { + fclose($this->fileHandle); + $entireFile = file_get_contents($filename); + $this->fileHandle = fopen('php://memory', 'r+b'); + if ($this->fileHandle !== false && $entireFile !== false) { + $data = StringHelper::convertEncoding($entireFile, 'UTF-8', $this->inputEncoding); + fwrite($this->fileHandle, $data); + $this->skipBOM(); + } + } + } + + public function setTestAutoDetect(bool $value): self + { + $this->testAutodetect = $value; + + return $this; + } + + private function setAutoDetect(?string $value): ?string + { + $retVal = null; + if ($value !== null && $this->testAutodetect) { + $retVal2 = @ini_set('auto_detect_line_endings', $value); + if (is_string($retVal2)) { + $retVal = $retVal2; + } + } + + return $retVal; + } + + public function castFormattedNumberToNumeric( + bool $castFormattedNumberToNumeric, + bool $preserveNumericFormatting = false + ): void { + $this->castFormattedNumberToNumeric = $castFormattedNumberToNumeric; + $this->preserveNumericFormatting = $preserveNumericFormatting; + } + + /** + * Open data uri for reading. + */ + private function openDataUri(string $filename): void + { + $fileHandle = fopen($filename, 'rb'); + if ($fileHandle === false) { + // @codeCoverageIgnoreStart + throw new ReaderException('Could not open file ' . $filename . ' for reading.'); + // @codeCoverageIgnoreEnd + } + + $this->fileHandle = $fileHandle; + } + + /** + * Loads PhpSpreadsheet from file into PhpSpreadsheet instance. + */ + public function loadIntoExisting(string $filename, Spreadsheet $spreadsheet): Spreadsheet + { + return $this->loadStringOrFile($filename, $spreadsheet, false); + } + + /** + * Loads PhpSpreadsheet from file into PhpSpreadsheet instance. + */ + private function loadStringOrFile(string $filename, Spreadsheet $spreadsheet, bool $dataUri): Spreadsheet + { + // Deprecated in Php8.1 + $iniset = $this->setAutoDetect('1'); + + // Open file + if ($dataUri) { + $this->openDataUri($filename); + } else { + $this->openFileOrMemory($filename); + } + $fileHandle = $this->fileHandle; + + // Skip BOM, if any + $this->skipBOM(); + $this->checkSeparator(); + $this->inferSeparator(); + + // Create new PhpSpreadsheet object + while ($spreadsheet->getSheetCount() <= $this->sheetIndex) { + $spreadsheet->createSheet(); + } + $sheet = $spreadsheet->setActiveSheetIndex($this->sheetIndex); + + // Set our starting row based on whether we're in contiguous mode or not + $currentRow = 1; + $outRow = 0; + + // Loop through each line of the file in turn + $rowData = fgetcsv($fileHandle, 0, $this->delimiter ?? '', $this->enclosure, $this->escapeCharacter); + $valueBinder = Cell::getValueBinder(); + $preserveBooleanString = method_exists($valueBinder, 'getBooleanConversion') && $valueBinder->getBooleanConversion(); + while (is_array($rowData)) { + $noOutputYet = true; + $columnLetter = 'A'; + foreach ($rowData as $rowDatum) { + $this->convertBoolean($rowDatum, $preserveBooleanString); + $numberFormatMask = $this->convertFormattedNumber($rowDatum); + if (($rowDatum !== '' || $this->preserveNullString) && $this->readFilter->readCell($columnLetter, $currentRow)) { + if ($this->contiguous) { + if ($noOutputYet) { + $noOutputYet = false; + ++$outRow; + } + } else { + $outRow = $currentRow; + } + // Set basic styling for the value (Note that this could be overloaded by styling in a value binder) + $sheet->getCell($columnLetter . $outRow)->getStyle() + ->getNumberFormat() + ->setFormatCode($numberFormatMask); + // Set cell value + $sheet->getCell($columnLetter . $outRow)->setValue($rowDatum); + } + ++$columnLetter; + } + $rowData = fgetcsv($fileHandle, 0, $this->delimiter ?? '', $this->enclosure, $this->escapeCharacter); + ++$currentRow; + } + + // Close file + fclose($fileHandle); + + $this->setAutoDetect($iniset); + + // Return + return $spreadsheet; + } + + /** + * Convert string true/false to boolean, and null to null-string. + * + * @param mixed $rowDatum + */ + private function convertBoolean(&$rowDatum, bool $preserveBooleanString): void + { + if (is_string($rowDatum) && !$preserveBooleanString) { + if (strcasecmp(Calculation::getTRUE(), $rowDatum) === 0 || strcasecmp('true', $rowDatum) === 0) { + $rowDatum = true; + } elseif (strcasecmp(Calculation::getFALSE(), $rowDatum) === 0 || strcasecmp('false', $rowDatum) === 0) { + $rowDatum = false; + } + } else { + $rowDatum = $rowDatum ?? ''; + } + } + + /** + * Convert numeric strings to int or float values. + * + * @param mixed $rowDatum + */ + private function convertFormattedNumber(&$rowDatum): string + { + $numberFormatMask = NumberFormat::FORMAT_GENERAL; + if ($this->castFormattedNumberToNumeric === true && is_string($rowDatum)) { + $numeric = str_replace( + [StringHelper::getThousandsSeparator(), StringHelper::getDecimalSeparator()], + ['', '.'], + $rowDatum + ); + + if (is_numeric($numeric)) { + $decimalPos = strpos($rowDatum, StringHelper::getDecimalSeparator()); + if ($this->preserveNumericFormatting === true) { + $numberFormatMask = (strpos($rowDatum, StringHelper::getThousandsSeparator()) !== false) + ? '#,##0' : '0'; + if ($decimalPos !== false) { + $decimals = strlen($rowDatum) - $decimalPos - 1; + $numberFormatMask .= '.' . str_repeat('0', min($decimals, 6)); + } + } + + $rowDatum = ($decimalPos !== false) ? (float) $numeric : (int) $numeric; + } + } + + return $numberFormatMask; + } + + public function getDelimiter(): ?string + { + return $this->delimiter; + } + + public function setDelimiter(?string $delimiter): self + { + $this->delimiter = $delimiter; + + return $this; + } + + public function getEnclosure(): string + { + return $this->enclosure; + } + + public function setEnclosure(string $enclosure): self + { + if ($enclosure == '') { + $enclosure = '"'; + } + $this->enclosure = $enclosure; + + return $this; + } + + public function getSheetIndex(): int + { + return $this->sheetIndex; + } + + public function setSheetIndex(int $indexValue): self + { + $this->sheetIndex = $indexValue; + + return $this; + } + + public function setContiguous(bool $contiguous): self + { + $this->contiguous = $contiguous; + + return $this; + } + + public function getContiguous(): bool + { + return $this->contiguous; + } + + public function setEscapeCharacter(string $escapeCharacter): self + { + $this->escapeCharacter = $escapeCharacter; + + return $this; + } + + public function getEscapeCharacter(): string + { + return $this->escapeCharacter; + } + + /** + * Can the current IReader read the file? + */ + public function canRead(string $filename): bool + { + // Check if file exists + try { + $this->openFile($filename); + } catch (ReaderException $e) { + return false; + } + + fclose($this->fileHandle); + + // Trust file extension if any + $extension = strtolower(pathinfo($filename, PATHINFO_EXTENSION)); + if (in_array($extension, ['csv', 'tsv'])) { + return true; + } + + // Attempt to guess mimetype + $type = mime_content_type($filename); + $supportedTypes = [ + 'application/csv', + 'text/csv', + 'text/plain', + 'inode/x-empty', + ]; + + return in_array($type, $supportedTypes, true); + } + + private static function guessEncodingTestNoBom(string &$encoding, string &$contents, string $compare, string $setEncoding): void + { + if ($encoding === '') { + $pos = strpos($contents, $compare); + if ($pos !== false && $pos % strlen($compare) === 0) { + $encoding = $setEncoding; + } + } + } + + private static function guessEncodingNoBom(string $filename): string + { + $encoding = ''; + $contents = file_get_contents($filename); + self::guessEncodingTestNoBom($encoding, $contents, self::UTF32BE_LF, 'UTF-32BE'); + self::guessEncodingTestNoBom($encoding, $contents, self::UTF32LE_LF, 'UTF-32LE'); + self::guessEncodingTestNoBom($encoding, $contents, self::UTF16BE_LF, 'UTF-16BE'); + self::guessEncodingTestNoBom($encoding, $contents, self::UTF16LE_LF, 'UTF-16LE'); + if ($encoding === '' && preg_match('//u', $contents) === 1) { + $encoding = 'UTF-8'; + } + + return $encoding; + } + + private static function guessEncodingTestBom(string &$encoding, string $first4, string $compare, string $setEncoding): void + { + if ($encoding === '') { + if ($compare === substr($first4, 0, strlen($compare))) { + $encoding = $setEncoding; + } + } + } + + private static function guessEncodingBom(string $filename): string + { + $encoding = ''; + $first4 = file_get_contents($filename, false, null, 0, 4); + if ($first4 !== false) { + self::guessEncodingTestBom($encoding, $first4, self::UTF8_BOM, 'UTF-8'); + self::guessEncodingTestBom($encoding, $first4, self::UTF16BE_BOM, 'UTF-16BE'); + self::guessEncodingTestBom($encoding, $first4, self::UTF32BE_BOM, 'UTF-32BE'); + self::guessEncodingTestBom($encoding, $first4, self::UTF32LE_BOM, 'UTF-32LE'); + self::guessEncodingTestBom($encoding, $first4, self::UTF16LE_BOM, 'UTF-16LE'); + } + + return $encoding; + } + + public static function guessEncoding(string $filename, string $dflt = self::DEFAULT_FALLBACK_ENCODING): string + { + $encoding = self::guessEncodingBom($filename); + if ($encoding === '') { + $encoding = self::guessEncodingNoBom($filename); + } + + return ($encoding === '') ? $dflt : $encoding; + } + + public function setPreserveNullString(bool $value): self + { + $this->preserveNullString = $value; + + return $this; + } + + public function getPreserveNullString(): bool + { + return $this->preserveNullString; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv/Delimiter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv/Delimiter.php new file mode 100644 index 0000000..029d4a1 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv/Delimiter.php @@ -0,0 +1,151 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Csv; + +class Delimiter +{ + protected const POTENTIAL_DELIMETERS = [',', ';', "\t", '|', ':', ' ', '~']; + + /** @var resource */ + protected $fileHandle; + + /** @var string */ + protected $escapeCharacter; + + /** @var string */ + protected $enclosure; + + /** @var array */ + protected $counts = []; + + /** @var int */ + protected $numberLines = 0; + + /** @var ?string */ + protected $delimiter; + + /** + * @param resource $fileHandle + */ + public function __construct($fileHandle, string $escapeCharacter, string $enclosure) + { + $this->fileHandle = $fileHandle; + $this->escapeCharacter = $escapeCharacter; + $this->enclosure = $enclosure; + + $this->countPotentialDelimiters(); + } + + public function getDefaultDelimiter(): string + { + return self::POTENTIAL_DELIMETERS[0]; + } + + public function linesCounted(): int + { + return $this->numberLines; + } + + protected function countPotentialDelimiters(): void + { + $this->counts = array_fill_keys(self::POTENTIAL_DELIMETERS, []); + $delimiterKeys = array_flip(self::POTENTIAL_DELIMETERS); + + // Count how many times each of the potential delimiters appears in each line + $this->numberLines = 0; + while (($line = $this->getNextLine()) !== false && (++$this->numberLines < 1000)) { + $this->countDelimiterValues($line, $delimiterKeys); + } + } + + protected function countDelimiterValues(string $line, array $delimiterKeys): void + { + $splitString = str_split($line, 1); + if (is_array($splitString)) { + $distribution = array_count_values($splitString); + $countLine = array_intersect_key($distribution, $delimiterKeys); + + foreach (self::POTENTIAL_DELIMETERS as $delimiter) { + $this->counts[$delimiter][] = $countLine[$delimiter] ?? 0; + } + } + } + + public function infer(): ?string + { + // Calculate the mean square deviations for each delimiter + // (ignoring delimiters that haven't been found consistently) + $meanSquareDeviations = []; + $middleIdx = floor(($this->numberLines - 1) / 2); + + foreach (self::POTENTIAL_DELIMETERS as $delimiter) { + $series = $this->counts[$delimiter]; + sort($series); + + $median = ($this->numberLines % 2) + ? $series[$middleIdx] + : ($series[$middleIdx] + $series[$middleIdx + 1]) / 2; + + if ($median === 0) { + continue; + } + + $meanSquareDeviations[$delimiter] = array_reduce( + $series, + function ($sum, $value) use ($median) { + return $sum + ($value - $median) ** 2; + } + ) / count($series); + } + + // ... and pick the delimiter with the smallest mean square deviation + // (in case of ties, the order in potentialDelimiters is respected) + $min = INF; + foreach (self::POTENTIAL_DELIMETERS as $delimiter) { + if (!isset($meanSquareDeviations[$delimiter])) { + continue; + } + + if ($meanSquareDeviations[$delimiter] < $min) { + $min = $meanSquareDeviations[$delimiter]; + $this->delimiter = $delimiter; + } + } + + return $this->delimiter; + } + + /** + * Get the next full line from the file. + * + * @return false|string + */ + public function getNextLine() + { + $line = ''; + $enclosure = ($this->escapeCharacter === '' ? '' + : ('(?<!' . preg_quote($this->escapeCharacter, '/') . ')')) + . preg_quote($this->enclosure, '/'); + + do { + // Get the next line in the file + $newLine = fgets($this->fileHandle); + + // Return false if there is no next line + if ($newLine === false) { + return false; + } + + // Add the new line to the line passed in + $line = $line . $newLine; + + // Drop everything that is enclosed to avoid counting false positives in enclosures + $line = (string) preg_replace('/(' . $enclosure . '.*' . $enclosure . ')/Us', '', $line); + + // See if we have any enclosures left in the line + // if we still have an enclosure then we need to read the next line as well + } while (preg_match('/(' . $enclosure . ')/', $line) > 0); + + return ($line !== '') ? $line : false; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/DefaultReadFilter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/DefaultReadFilter.php new file mode 100644 index 0000000..8fdb162 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/DefaultReadFilter.php @@ -0,0 +1,20 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader; + +class DefaultReadFilter implements IReadFilter +{ + /** + * Should this cell be read? + * + * @param string $columnAddress Column address (as a string value like "A", or "IV") + * @param int $row Row number + * @param string $worksheetName Optional worksheet name + * + * @return bool + */ + public function readCell($columnAddress, $row, $worksheetName = '') + { + return true; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Exception.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Exception.php new file mode 100644 index 0000000..ddbc9b5 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Exception.php @@ -0,0 +1,9 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; + +class Exception extends PhpSpreadsheetException +{ +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric.php new file mode 100644 index 0000000..ca087e6 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric.php @@ -0,0 +1,586 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Cell\DataType; +use PhpOffice\PhpSpreadsheet\DefinedName; +use PhpOffice\PhpSpreadsheet\Reader\Gnumeric\PageSetup; +use PhpOffice\PhpSpreadsheet\Reader\Gnumeric\Properties; +use PhpOffice\PhpSpreadsheet\Reader\Gnumeric\Styles; +use PhpOffice\PhpSpreadsheet\Reader\Security\XmlScanner; +use PhpOffice\PhpSpreadsheet\ReferenceHelper; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\Settings; +use PhpOffice\PhpSpreadsheet\Shared\File; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; +use SimpleXMLElement; +use XMLReader; + +class Gnumeric extends BaseReader +{ + const NAMESPACE_GNM = 'http://www.gnumeric.org/v10.dtd'; // gmr in old sheets + + const NAMESPACE_XSI = 'http://www.w3.org/2001/XMLSchema-instance'; + + const NAMESPACE_OFFICE = 'urn:oasis:names:tc:opendocument:xmlns:office:1.0'; + + const NAMESPACE_XLINK = 'http://www.w3.org/1999/xlink'; + + const NAMESPACE_DC = 'http://purl.org/dc/elements/1.1/'; + + const NAMESPACE_META = 'urn:oasis:names:tc:opendocument:xmlns:meta:1.0'; + + const NAMESPACE_OOO = 'http://openoffice.org/2004/office'; + + /** + * Shared Expressions. + * + * @var array + */ + private $expressions = []; + + /** + * Spreadsheet shared across all functions. + * + * @var Spreadsheet + */ + private $spreadsheet; + + /** @var ReferenceHelper */ + private $referenceHelper; + + /** @var array */ + public static $mappings = [ + 'dataType' => [ + '10' => DataType::TYPE_NULL, + '20' => DataType::TYPE_BOOL, + '30' => DataType::TYPE_NUMERIC, // Integer doesn't exist in Excel + '40' => DataType::TYPE_NUMERIC, // Float + '50' => DataType::TYPE_ERROR, + '60' => DataType::TYPE_STRING, + //'70': // Cell Range + //'80': // Array + ], + ]; + + /** + * Create a new Gnumeric. + */ + public function __construct() + { + parent::__construct(); + $this->referenceHelper = ReferenceHelper::getInstance(); + $this->securityScanner = XmlScanner::getInstance($this); + } + + /** + * Can the current IReader read the file? + */ + public function canRead(string $filename): bool + { + // Check if gzlib functions are available + if (File::testFileNoThrow($filename) && function_exists('gzread')) { + // Read signature data (first 3 bytes) + $fh = fopen($filename, 'rb'); + if ($fh !== false) { + $data = fread($fh, 2); + fclose($fh); + } + } + + return isset($data) && $data === chr(0x1F) . chr(0x8B); + } + + private static function matchXml(XMLReader $xml, string $expectedLocalName): bool + { + return $xml->namespaceURI === self::NAMESPACE_GNM + && $xml->localName === $expectedLocalName + && $xml->nodeType === XMLReader::ELEMENT; + } + + /** + * Reads names of the worksheets from a file, without parsing the whole file to a Spreadsheet object. + * + * @param string $filename + * + * @return array + */ + public function listWorksheetNames($filename) + { + File::assertFile($filename); + + $xml = new XMLReader(); + $xml->xml($this->securityScanner->scanFile('compress.zlib://' . realpath($filename)), null, Settings::getLibXmlLoaderOptions()); + $xml->setParserProperty(2, true); + + $worksheetNames = []; + while ($xml->read()) { + if (self::matchXml($xml, 'SheetName')) { + $xml->read(); // Move onto the value node + $worksheetNames[] = (string) $xml->value; + } elseif (self::matchXml($xml, 'Sheets')) { + // break out of the loop once we've got our sheet names rather than parse the entire file + break; + } + } + + return $worksheetNames; + } + + /** + * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns). + * + * @param string $filename + * + * @return array + */ + public function listWorksheetInfo($filename) + { + File::assertFile($filename); + + $xml = new XMLReader(); + $xml->xml($this->securityScanner->scanFile('compress.zlib://' . realpath($filename)), null, Settings::getLibXmlLoaderOptions()); + $xml->setParserProperty(2, true); + + $worksheetInfo = []; + while ($xml->read()) { + if (self::matchXml($xml, 'Sheet')) { + $tmpInfo = [ + 'worksheetName' => '', + 'lastColumnLetter' => 'A', + 'lastColumnIndex' => 0, + 'totalRows' => 0, + 'totalColumns' => 0, + ]; + + while ($xml->read()) { + if (self::matchXml($xml, 'Name')) { + $xml->read(); // Move onto the value node + $tmpInfo['worksheetName'] = (string) $xml->value; + } elseif (self::matchXml($xml, 'MaxCol')) { + $xml->read(); // Move onto the value node + $tmpInfo['lastColumnIndex'] = (int) $xml->value; + $tmpInfo['totalColumns'] = (int) $xml->value + 1; + } elseif (self::matchXml($xml, 'MaxRow')) { + $xml->read(); // Move onto the value node + $tmpInfo['totalRows'] = (int) $xml->value + 1; + + break; + } + } + $tmpInfo['lastColumnLetter'] = Coordinate::stringFromColumnIndex($tmpInfo['lastColumnIndex'] + 1); + $worksheetInfo[] = $tmpInfo; + } + } + + return $worksheetInfo; + } + + /** + * @param string $filename + * + * @return string + */ + private function gzfileGetContents($filename) + { + $file = @gzopen($filename, 'rb'); + $data = ''; + if ($file !== false) { + while (!gzeof($file)) { + $data .= gzread($file, 1024); + } + gzclose($file); + } + + return $data; + } + + public static function gnumericMappings(): array + { + return array_merge(self::$mappings, Styles::$mappings); + } + + private function processComments(SimpleXMLElement $sheet): void + { + if ((!$this->readDataOnly) && (isset($sheet->Objects))) { + foreach ($sheet->Objects->children(self::NAMESPACE_GNM) as $key => $comment) { + $commentAttributes = $comment->attributes(); + // Only comment objects are handled at the moment + if ($commentAttributes && $commentAttributes->Text) { + $this->spreadsheet->getActiveSheet()->getComment((string) $commentAttributes->ObjectBound) + ->setAuthor((string) $commentAttributes->Author) + ->setText($this->parseRichText((string) $commentAttributes->Text)); + } + } + } + } + + /** + * @param mixed $value + */ + private static function testSimpleXml($value): SimpleXMLElement + { + return ($value instanceof SimpleXMLElement) ? $value : new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8"?><root></root>'); + } + + /** + * Loads Spreadsheet from file. + */ + protected function loadSpreadsheetFromFile(string $filename): Spreadsheet + { + // Create new Spreadsheet + $spreadsheet = new Spreadsheet(); + $spreadsheet->removeSheetByIndex(0); + + // Load into this instance + return $this->loadIntoExisting($filename, $spreadsheet); + } + + /** + * Loads from file into Spreadsheet instance. + */ + public function loadIntoExisting(string $filename, Spreadsheet $spreadsheet): Spreadsheet + { + $this->spreadsheet = $spreadsheet; + File::assertFile($filename); + + $gFileData = $this->gzfileGetContents($filename); + + $xml2 = simplexml_load_string($this->securityScanner->scan($gFileData), 'SimpleXMLElement', Settings::getLibXmlLoaderOptions()); + $xml = self::testSimpleXml($xml2); + + $gnmXML = $xml->children(self::NAMESPACE_GNM); + (new Properties($this->spreadsheet))->readProperties($xml, $gnmXML); + + $worksheetID = 0; + foreach ($gnmXML->Sheets->Sheet as $sheetOrNull) { + $sheet = self::testSimpleXml($sheetOrNull); + $worksheetName = (string) $sheet->Name; + if (is_array($this->loadSheetsOnly) && !in_array($worksheetName, $this->loadSheetsOnly, true)) { + continue; + } + + $maxRow = $maxCol = 0; + + // Create new Worksheet + $this->spreadsheet->createSheet(); + $this->spreadsheet->setActiveSheetIndex($worksheetID); + // Use false for $updateFormulaCellReferences to prevent adjustment of worksheet references in formula + // cells... during the load, all formulae should be correct, and we're simply bringing the worksheet + // name in line with the formula, not the reverse + $this->spreadsheet->getActiveSheet()->setTitle($worksheetName, false, false); + + $visibility = $sheetOrNull->attributes()['Visibility'] ?? 'GNM_SHEET_VISIBILITY_VISIBLE'; + if ((string) $visibility !== 'GNM_SHEET_VISIBILITY_VISIBLE') { + $this->spreadsheet->getActiveSheet()->setSheetState(Worksheet::SHEETSTATE_HIDDEN); + } + + if (!$this->readDataOnly) { + (new PageSetup($this->spreadsheet)) + ->printInformation($sheet) + ->sheetMargins($sheet); + } + + foreach ($sheet->Cells->Cell as $cellOrNull) { + $cell = self::testSimpleXml($cellOrNull); + $cellAttributes = self::testSimpleXml($cell->attributes()); + $row = (int) $cellAttributes->Row + 1; + $column = (int) $cellAttributes->Col; + + $maxRow = max($maxRow, $row); + $maxCol = max($maxCol, $column); + + $column = Coordinate::stringFromColumnIndex($column + 1); + + // Read cell? + if ($this->getReadFilter() !== null) { + if (!$this->getReadFilter()->readCell($column, $row, $worksheetName)) { + continue; + } + } + + $this->loadCell($cell, $worksheetName, $cellAttributes, $column, $row); + } + + if ($sheet->Styles !== null) { + (new Styles($this->spreadsheet, $this->readDataOnly))->read($sheet, $maxRow, $maxCol); + } + + $this->processComments($sheet); + $this->processColumnWidths($sheet, $maxCol); + $this->processRowHeights($sheet, $maxRow); + $this->processMergedCells($sheet); + $this->processAutofilter($sheet); + + $this->setSelectedCells($sheet); + ++$worksheetID; + } + + $this->processDefinedNames($gnmXML); + + $this->setSelectedSheet($gnmXML); + + // Return + return $this->spreadsheet; + } + + private function setSelectedSheet(SimpleXMLElement $gnmXML): void + { + if (isset($gnmXML->UIData)) { + $attributes = self::testSimpleXml($gnmXML->UIData->attributes()); + $selectedSheet = (int) $attributes['SelectedTab']; + $this->spreadsheet->setActiveSheetIndex($selectedSheet); + } + } + + private function setSelectedCells(?SimpleXMLElement $sheet): void + { + if ($sheet !== null && isset($sheet->Selections)) { + foreach ($sheet->Selections as $selection) { + $startCol = (int) ($selection->StartCol ?? 0); + $startRow = (int) ($selection->StartRow ?? 0) + 1; + $endCol = (int) ($selection->EndCol ?? $startCol); + $endRow = (int) ($selection->endRow ?? 0) + 1; + + $startColumn = Coordinate::stringFromColumnIndex($startCol + 1); + $endColumn = Coordinate::stringFromColumnIndex($endCol + 1); + + $startCell = "{$startColumn}{$startRow}"; + $endCell = "{$endColumn}{$endRow}"; + $selectedRange = $startCell . (($endCell !== $startCell) ? ':' . $endCell : ''); + $this->spreadsheet->getActiveSheet()->setSelectedCell($selectedRange); + + break; + } + } + } + + private function processMergedCells(?SimpleXMLElement $sheet): void + { + // Handle Merged Cells in this worksheet + if ($sheet !== null && isset($sheet->MergedRegions)) { + foreach ($sheet->MergedRegions->Merge as $mergeCells) { + if (strpos((string) $mergeCells, ':') !== false) { + $this->spreadsheet->getActiveSheet()->mergeCells($mergeCells); + } + } + } + } + + private function processAutofilter(?SimpleXMLElement $sheet): void + { + if ($sheet !== null && isset($sheet->Filters)) { + foreach ($sheet->Filters->Filter as $autofilter) { + if ($autofilter !== null) { + $attributes = $autofilter->attributes(); + if (isset($attributes['Area'])) { + $this->spreadsheet->getActiveSheet()->setAutoFilter((string) $attributes['Area']); + } + } + } + } + } + + private function setColumnWidth(int $whichColumn, float $defaultWidth): void + { + $columnDimension = $this->spreadsheet->getActiveSheet() + ->getColumnDimension(Coordinate::stringFromColumnIndex($whichColumn + 1)); + if ($columnDimension !== null) { + $columnDimension->setWidth($defaultWidth); + } + } + + private function setColumnInvisible(int $whichColumn): void + { + $columnDimension = $this->spreadsheet->getActiveSheet() + ->getColumnDimension(Coordinate::stringFromColumnIndex($whichColumn + 1)); + if ($columnDimension !== null) { + $columnDimension->setVisible(false); + } + } + + private function processColumnLoop(int $whichColumn, int $maxCol, ?SimpleXMLElement $columnOverride, float $defaultWidth): int + { + $columnOverride = self::testSimpleXml($columnOverride); + $columnAttributes = self::testSimpleXml($columnOverride->attributes()); + $column = $columnAttributes['No']; + $columnWidth = ((float) $columnAttributes['Unit']) / 5.4; + $hidden = (isset($columnAttributes['Hidden'])) && ((string) $columnAttributes['Hidden'] == '1'); + $columnCount = (int) ($columnAttributes['Count'] ?? 1); + while ($whichColumn < $column) { + $this->setColumnWidth($whichColumn, $defaultWidth); + ++$whichColumn; + } + while (($whichColumn < ($column + $columnCount)) && ($whichColumn <= $maxCol)) { + $this->setColumnWidth($whichColumn, $columnWidth); + if ($hidden) { + $this->setColumnInvisible($whichColumn); + } + ++$whichColumn; + } + + return $whichColumn; + } + + private function processColumnWidths(?SimpleXMLElement $sheet, int $maxCol): void + { + if ((!$this->readDataOnly) && $sheet !== null && (isset($sheet->Cols))) { + // Column Widths + $defaultWidth = 0; + $columnAttributes = $sheet->Cols->attributes(); + if ($columnAttributes !== null) { + $defaultWidth = $columnAttributes['DefaultSizePts'] / 5.4; + } + $whichColumn = 0; + foreach ($sheet->Cols->ColInfo as $columnOverride) { + $whichColumn = $this->processColumnLoop($whichColumn, $maxCol, $columnOverride, $defaultWidth); + } + while ($whichColumn <= $maxCol) { + $this->setColumnWidth($whichColumn, $defaultWidth); + ++$whichColumn; + } + } + } + + private function setRowHeight(int $whichRow, float $defaultHeight): void + { + $rowDimension = $this->spreadsheet->getActiveSheet()->getRowDimension($whichRow); + if ($rowDimension !== null) { + $rowDimension->setRowHeight($defaultHeight); + } + } + + private function setRowInvisible(int $whichRow): void + { + $rowDimension = $this->spreadsheet->getActiveSheet()->getRowDimension($whichRow); + if ($rowDimension !== null) { + $rowDimension->setVisible(false); + } + } + + private function processRowLoop(int $whichRow, int $maxRow, ?SimpleXMLElement $rowOverride, float $defaultHeight): int + { + $rowOverride = self::testSimpleXml($rowOverride); + $rowAttributes = self::testSimpleXml($rowOverride->attributes()); + $row = $rowAttributes['No']; + $rowHeight = (float) $rowAttributes['Unit']; + $hidden = (isset($rowAttributes['Hidden'])) && ((string) $rowAttributes['Hidden'] == '1'); + $rowCount = (int) ($rowAttributes['Count'] ?? 1); + while ($whichRow < $row) { + ++$whichRow; + $this->setRowHeight($whichRow, $defaultHeight); + } + while (($whichRow < ($row + $rowCount)) && ($whichRow < $maxRow)) { + ++$whichRow; + $this->setRowHeight($whichRow, $rowHeight); + if ($hidden) { + $this->setRowInvisible($whichRow); + } + } + + return $whichRow; + } + + private function processRowHeights(?SimpleXMLElement $sheet, int $maxRow): void + { + if ((!$this->readDataOnly) && $sheet !== null && (isset($sheet->Rows))) { + // Row Heights + $defaultHeight = 0; + $rowAttributes = $sheet->Rows->attributes(); + if ($rowAttributes !== null) { + $defaultHeight = (float) $rowAttributes['DefaultSizePts']; + } + $whichRow = 0; + + foreach ($sheet->Rows->RowInfo as $rowOverride) { + $whichRow = $this->processRowLoop($whichRow, $maxRow, $rowOverride, $defaultHeight); + } + // never executed, I can't figure out any circumstances + // under which it would be executed, and, even if + // such exist, I'm not convinced this is needed. + //while ($whichRow < $maxRow) { + // ++$whichRow; + // $this->spreadsheet->getActiveSheet()->getRowDimension($whichRow)->setRowHeight($defaultHeight); + //} + } + } + + private function processDefinedNames(?SimpleXMLElement $gnmXML): void + { + // Loop through definedNames (global named ranges) + if ($gnmXML !== null && isset($gnmXML->Names)) { + foreach ($gnmXML->Names->Name as $definedName) { + $name = (string) $definedName->name; + $value = (string) $definedName->value; + if (stripos($value, '#REF!') !== false) { + continue; + } + + [$worksheetName] = Worksheet::extractSheetTitle($value, true); + $worksheetName = trim($worksheetName, "'"); + $worksheet = $this->spreadsheet->getSheetByName($worksheetName); + // Worksheet might still be null if we're only loading selected sheets rather than the full spreadsheet + if ($worksheet !== null) { + $this->spreadsheet->addDefinedName(DefinedName::createInstance($name, $worksheet, $value)); + } + } + } + } + + private function parseRichText(string $is): RichText + { + $value = new RichText(); + $value->createText($is); + + return $value; + } + + private function loadCell( + SimpleXMLElement $cell, + string $worksheetName, + SimpleXMLElement $cellAttributes, + string $column, + int $row + ): void { + $ValueType = $cellAttributes->ValueType; + $ExprID = (string) $cellAttributes->ExprID; + $type = DataType::TYPE_FORMULA; + if ($ExprID > '') { + if (((string) $cell) > '') { + $this->expressions[$ExprID] = [ + 'column' => $cellAttributes->Col, + 'row' => $cellAttributes->Row, + 'formula' => (string) $cell, + ]; + } else { + $expression = $this->expressions[$ExprID]; + + $cell = $this->referenceHelper->updateFormulaReferences( + $expression['formula'], + 'A1', + $cellAttributes->Col - $expression['column'], + $cellAttributes->Row - $expression['row'], + $worksheetName + ); + } + $type = DataType::TYPE_FORMULA; + } else { + $vtype = (string) $ValueType; + if (array_key_exists($vtype, self::$mappings['dataType'])) { + $type = self::$mappings['dataType'][$vtype]; + } + if ($vtype === '20') { // Boolean + $cell = $cell == 'TRUE'; + } + } + + $this->spreadsheet->getActiveSheet()->getCell($column . $row)->setValueExplicit((string) $cell, $type); + if (isset($cellAttributes->ValueFormat)) { + $this->spreadsheet->getActiveSheet()->getCell($column . $row) + ->getStyle()->getNumberFormat() + ->setFormatCode((string) $cellAttributes->ValueFormat); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/PageSetup.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/PageSetup.php new file mode 100644 index 0000000..204c730 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/PageSetup.php @@ -0,0 +1,139 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Gnumeric; + +use PhpOffice\PhpSpreadsheet\Reader\Gnumeric; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\PageMargins; +use PhpOffice\PhpSpreadsheet\Worksheet\PageSetup as WorksheetPageSetup; +use SimpleXMLElement; + +class PageSetup +{ + /** + * @var Spreadsheet + */ + private $spreadsheet; + + public function __construct(Spreadsheet $spreadsheet) + { + $this->spreadsheet = $spreadsheet; + } + + public function printInformation(SimpleXMLElement $sheet): self + { + if (isset($sheet->PrintInformation, $sheet->PrintInformation[0])) { + $printInformation = $sheet->PrintInformation[0]; + + $scale = (string) $printInformation->Scale->attributes()['percentage']; + $pageOrder = (string) $printInformation->order; + $orientation = (string) $printInformation->orientation; + $horizontalCentered = (string) $printInformation->hcenter->attributes()['value']; + $verticalCentered = (string) $printInformation->vcenter->attributes()['value']; + + $this->spreadsheet->getActiveSheet()->getPageSetup() + ->setPageOrder($pageOrder === 'r_then_d' ? WorksheetPageSetup::PAGEORDER_OVER_THEN_DOWN : WorksheetPageSetup::PAGEORDER_DOWN_THEN_OVER) + ->setScale((int) $scale) + ->setOrientation($orientation ?? WorksheetPageSetup::ORIENTATION_DEFAULT) + ->setHorizontalCentered((bool) $horizontalCentered) + ->setVerticalCentered((bool) $verticalCentered); + } + + return $this; + } + + public function sheetMargins(SimpleXMLElement $sheet): self + { + if (isset($sheet->PrintInformation, $sheet->PrintInformation->Margins)) { + $marginSet = [ + // Default Settings + 'top' => 0.75, + 'header' => 0.3, + 'left' => 0.7, + 'right' => 0.7, + 'bottom' => 0.75, + 'footer' => 0.3, + ]; + + $marginSet = $this->buildMarginSet($sheet, $marginSet); + $this->adjustMargins($marginSet); + } + + return $this; + } + + private function buildMarginSet(SimpleXMLElement $sheet, array $marginSet): array + { + foreach ($sheet->PrintInformation->Margins->children(Gnumeric::NAMESPACE_GNM) as $key => $margin) { + $marginAttributes = $margin->attributes(); + $marginSize = ($marginAttributes['Points']) ?? 72; // Default is 72pt + // Convert value in points to inches + $marginSize = PageMargins::fromPoints((float) $marginSize); + $marginSet[$key] = $marginSize; + } + + return $marginSet; + } + + private function adjustMargins(array $marginSet): void + { + foreach ($marginSet as $key => $marginSize) { + // Gnumeric is quirky in the way it displays the header/footer values: + // header is actually the sum of top and header; footer is actually the sum of bottom and footer + // then top is actually the header value, and bottom is actually the footer value + switch ($key) { + case 'left': + case 'right': + $this->sheetMargin($key, $marginSize); + + break; + case 'top': + $this->sheetMargin($key, $marginSet['header'] ?? 0); + + break; + case 'bottom': + $this->sheetMargin($key, $marginSet['footer'] ?? 0); + + break; + case 'header': + $this->sheetMargin($key, ($marginSet['top'] ?? 0) - $marginSize); + + break; + case 'footer': + $this->sheetMargin($key, ($marginSet['bottom'] ?? 0) - $marginSize); + + break; + } + } + } + + private function sheetMargin(string $key, float $marginSize): void + { + switch ($key) { + case 'top': + $this->spreadsheet->getActiveSheet()->getPageMargins()->setTop($marginSize); + + break; + case 'bottom': + $this->spreadsheet->getActiveSheet()->getPageMargins()->setBottom($marginSize); + + break; + case 'left': + $this->spreadsheet->getActiveSheet()->getPageMargins()->setLeft($marginSize); + + break; + case 'right': + $this->spreadsheet->getActiveSheet()->getPageMargins()->setRight($marginSize); + + break; + case 'header': + $this->spreadsheet->getActiveSheet()->getPageMargins()->setHeader($marginSize); + + break; + case 'footer': + $this->spreadsheet->getActiveSheet()->getPageMargins()->setFooter($marginSize); + + break; + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/Properties.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/Properties.php new file mode 100644 index 0000000..23d4067 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/Properties.php @@ -0,0 +1,164 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Gnumeric; + +use PhpOffice\PhpSpreadsheet\Reader\Gnumeric; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use SimpleXMLElement; + +class Properties +{ + /** + * @var Spreadsheet + */ + protected $spreadsheet; + + public function __construct(Spreadsheet $spreadsheet) + { + $this->spreadsheet = $spreadsheet; + } + + private function docPropertiesOld(SimpleXMLElement $gnmXML): void + { + $docProps = $this->spreadsheet->getProperties(); + foreach ($gnmXML->Summary->Item as $summaryItem) { + $propertyName = $summaryItem->name; + $propertyValue = $summaryItem->{'val-string'}; + switch ($propertyName) { + case 'title': + $docProps->setTitle(trim($propertyValue)); + + break; + case 'comments': + $docProps->setDescription(trim($propertyValue)); + + break; + case 'keywords': + $docProps->setKeywords(trim($propertyValue)); + + break; + case 'category': + $docProps->setCategory(trim($propertyValue)); + + break; + case 'manager': + $docProps->setManager(trim($propertyValue)); + + break; + case 'author': + $docProps->setCreator(trim($propertyValue)); + $docProps->setLastModifiedBy(trim($propertyValue)); + + break; + case 'company': + $docProps->setCompany(trim($propertyValue)); + + break; + } + } + } + + private function docPropertiesDC(SimpleXMLElement $officePropertyDC): void + { + $docProps = $this->spreadsheet->getProperties(); + foreach ($officePropertyDC as $propertyName => $propertyValue) { + $propertyValue = trim((string) $propertyValue); + switch ($propertyName) { + case 'title': + $docProps->setTitle($propertyValue); + + break; + case 'subject': + $docProps->setSubject($propertyValue); + + break; + case 'creator': + $docProps->setCreator($propertyValue); + $docProps->setLastModifiedBy($propertyValue); + + break; + case 'date': + $creationDate = $propertyValue; + $docProps->setModified($creationDate); + + break; + case 'description': + $docProps->setDescription($propertyValue); + + break; + } + } + } + + private function docPropertiesMeta(SimpleXMLElement $officePropertyMeta): void + { + $docProps = $this->spreadsheet->getProperties(); + foreach ($officePropertyMeta as $propertyName => $propertyValue) { + if ($propertyValue !== null) { + $attributes = $propertyValue->attributes(Gnumeric::NAMESPACE_META); + $propertyValue = trim((string) $propertyValue); + switch ($propertyName) { + case 'keyword': + $docProps->setKeywords($propertyValue); + + break; + case 'initial-creator': + $docProps->setCreator($propertyValue); + $docProps->setLastModifiedBy($propertyValue); + + break; + case 'creation-date': + $creationDate = $propertyValue; + $docProps->setCreated($creationDate); + + break; + case 'user-defined': + if ($attributes) { + [, $attrName] = explode(':', (string) $attributes['name']); + $this->userDefinedProperties($attrName, $propertyValue); + } + + break; + } + } + } + } + + private function userDefinedProperties(string $attrName, string $propertyValue): void + { + $docProps = $this->spreadsheet->getProperties(); + switch ($attrName) { + case 'publisher': + $docProps->setCompany($propertyValue); + + break; + case 'category': + $docProps->setCategory($propertyValue); + + break; + case 'manager': + $docProps->setManager($propertyValue); + + break; + } + } + + public function readProperties(SimpleXMLElement $xml, SimpleXMLElement $gnmXML): void + { + $officeXML = $xml->children(Gnumeric::NAMESPACE_OFFICE); + if (!empty($officeXML)) { + $officeDocXML = $officeXML->{'document-meta'}; + $officeDocMetaXML = $officeDocXML->meta; + + foreach ($officeDocMetaXML as $officePropertyData) { + $officePropertyDC = $officePropertyData->children(Gnumeric::NAMESPACE_DC); + $this->docPropertiesDC($officePropertyDC); + + $officePropertyMeta = $officePropertyData->children(Gnumeric::NAMESPACE_META); + $this->docPropertiesMeta($officePropertyMeta); + } + } elseif (isset($gnmXML->Summary)) { + $this->docPropertiesOld($gnmXML); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/Styles.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/Styles.php new file mode 100644 index 0000000..e2e9d56 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/Styles.php @@ -0,0 +1,278 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Gnumeric; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Shared\Date; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Style\Alignment; +use PhpOffice\PhpSpreadsheet\Style\Border; +use PhpOffice\PhpSpreadsheet\Style\Borders; +use PhpOffice\PhpSpreadsheet\Style\Fill; +use PhpOffice\PhpSpreadsheet\Style\Font; +use SimpleXMLElement; + +class Styles +{ + /** + * @var Spreadsheet + */ + private $spreadsheet; + + /** + * @var bool + */ + protected $readDataOnly = false; + + /** @var array */ + public static $mappings = [ + 'borderStyle' => [ + '0' => Border::BORDER_NONE, + '1' => Border::BORDER_THIN, + '2' => Border::BORDER_MEDIUM, + '3' => Border::BORDER_SLANTDASHDOT, + '4' => Border::BORDER_DASHED, + '5' => Border::BORDER_THICK, + '6' => Border::BORDER_DOUBLE, + '7' => Border::BORDER_DOTTED, + '8' => Border::BORDER_MEDIUMDASHED, + '9' => Border::BORDER_DASHDOT, + '10' => Border::BORDER_MEDIUMDASHDOT, + '11' => Border::BORDER_DASHDOTDOT, + '12' => Border::BORDER_MEDIUMDASHDOTDOT, + '13' => Border::BORDER_MEDIUMDASHDOTDOT, + ], + 'fillType' => [ + '1' => Fill::FILL_SOLID, + '2' => Fill::FILL_PATTERN_DARKGRAY, + '3' => Fill::FILL_PATTERN_MEDIUMGRAY, + '4' => Fill::FILL_PATTERN_LIGHTGRAY, + '5' => Fill::FILL_PATTERN_GRAY125, + '6' => Fill::FILL_PATTERN_GRAY0625, + '7' => Fill::FILL_PATTERN_DARKHORIZONTAL, // horizontal stripe + '8' => Fill::FILL_PATTERN_DARKVERTICAL, // vertical stripe + '9' => Fill::FILL_PATTERN_DARKDOWN, // diagonal stripe + '10' => Fill::FILL_PATTERN_DARKUP, // reverse diagonal stripe + '11' => Fill::FILL_PATTERN_DARKGRID, // diagoanl crosshatch + '12' => Fill::FILL_PATTERN_DARKTRELLIS, // thick diagonal crosshatch + '13' => Fill::FILL_PATTERN_LIGHTHORIZONTAL, + '14' => Fill::FILL_PATTERN_LIGHTVERTICAL, + '15' => Fill::FILL_PATTERN_LIGHTUP, + '16' => Fill::FILL_PATTERN_LIGHTDOWN, + '17' => Fill::FILL_PATTERN_LIGHTGRID, // thin horizontal crosshatch + '18' => Fill::FILL_PATTERN_LIGHTTRELLIS, // thin diagonal crosshatch + ], + 'horizontal' => [ + '1' => Alignment::HORIZONTAL_GENERAL, + '2' => Alignment::HORIZONTAL_LEFT, + '4' => Alignment::HORIZONTAL_RIGHT, + '8' => Alignment::HORIZONTAL_CENTER, + '16' => Alignment::HORIZONTAL_CENTER_CONTINUOUS, + '32' => Alignment::HORIZONTAL_JUSTIFY, + '64' => Alignment::HORIZONTAL_CENTER_CONTINUOUS, + ], + 'underline' => [ + '1' => Font::UNDERLINE_SINGLE, + '2' => Font::UNDERLINE_DOUBLE, + '3' => Font::UNDERLINE_SINGLEACCOUNTING, + '4' => Font::UNDERLINE_DOUBLEACCOUNTING, + ], + 'vertical' => [ + '1' => Alignment::VERTICAL_TOP, + '2' => Alignment::VERTICAL_BOTTOM, + '4' => Alignment::VERTICAL_CENTER, + '8' => Alignment::VERTICAL_JUSTIFY, + ], + ]; + + public function __construct(Spreadsheet $spreadsheet, bool $readDataOnly) + { + $this->spreadsheet = $spreadsheet; + $this->readDataOnly = $readDataOnly; + } + + public function read(SimpleXMLElement $sheet, int $maxRow, int $maxCol): void + { + if ($sheet->Styles->StyleRegion !== null) { + $this->readStyles($sheet->Styles->StyleRegion, $maxRow, $maxCol); + } + } + + private function readStyles(SimpleXMLElement $styleRegion, int $maxRow, int $maxCol): void + { + foreach ($styleRegion as $style) { + $styleAttributes = $style->attributes(); + if ($styleAttributes !== null && ($styleAttributes['startRow'] <= $maxRow) && ($styleAttributes['startCol'] <= $maxCol)) { + $cellRange = $this->readStyleRange($styleAttributes, $maxCol, $maxRow); + + $styleAttributes = $style->Style->attributes(); + + $styleArray = []; + // We still set the number format mask for date/time values, even if readDataOnly is true + // so that we can identify whether a float is a float or a date value + $formatCode = $styleAttributes ? (string) $styleAttributes['Format'] : null; + if ($formatCode && Date::isDateTimeFormatCode($formatCode)) { + $styleArray['numberFormat']['formatCode'] = $formatCode; + } + if ($this->readDataOnly === false && $styleAttributes !== null) { + // If readDataOnly is false, we set all formatting information + $styleArray['numberFormat']['formatCode'] = $formatCode; + $styleArray = $this->readStyle($styleArray, $styleAttributes, $style); + } + $this->spreadsheet->getActiveSheet()->getStyle($cellRange)->applyFromArray($styleArray); + } + } + } + + private function addBorderDiagonal(SimpleXMLElement $srssb, array &$styleArray): void + { + if (isset($srssb->Diagonal, $srssb->{'Rev-Diagonal'})) { + $styleArray['borders']['diagonal'] = self::parseBorderAttributes($srssb->Diagonal->attributes()); + $styleArray['borders']['diagonalDirection'] = Borders::DIAGONAL_BOTH; + } elseif (isset($srssb->Diagonal)) { + $styleArray['borders']['diagonal'] = self::parseBorderAttributes($srssb->Diagonal->attributes()); + $styleArray['borders']['diagonalDirection'] = Borders::DIAGONAL_UP; + } elseif (isset($srssb->{'Rev-Diagonal'})) { + $styleArray['borders']['diagonal'] = self::parseBorderAttributes($srssb->{'Rev-Diagonal'}->attributes()); + $styleArray['borders']['diagonalDirection'] = Borders::DIAGONAL_DOWN; + } + } + + private function addBorderStyle(SimpleXMLElement $srssb, array &$styleArray, string $direction): void + { + $ucDirection = ucfirst($direction); + if (isset($srssb->$ucDirection)) { + $styleArray['borders'][$direction] = self::parseBorderAttributes($srssb->$ucDirection->attributes()); + } + } + + private function calcRotation(SimpleXMLElement $styleAttributes): int + { + $rotation = (int) $styleAttributes->Rotation; + if ($rotation >= 270 && $rotation <= 360) { + $rotation -= 360; + } + $rotation = (abs($rotation) > 90) ? 0 : $rotation; + + return $rotation; + } + + private static function addStyle(array &$styleArray, string $key, string $value): void + { + if (array_key_exists($value, self::$mappings[$key])) { + $styleArray[$key] = self::$mappings[$key][$value]; + } + } + + private static function addStyle2(array &$styleArray, string $key1, string $key, string $value): void + { + if (array_key_exists($value, self::$mappings[$key])) { + $styleArray[$key1][$key] = self::$mappings[$key][$value]; + } + } + + private static function parseBorderAttributes(?SimpleXMLElement $borderAttributes): array + { + $styleArray = []; + if ($borderAttributes !== null) { + if (isset($borderAttributes['Color'])) { + $styleArray['color']['rgb'] = self::parseGnumericColour($borderAttributes['Color']); + } + + self::addStyle($styleArray, 'borderStyle', (string) $borderAttributes['Style']); + } + + return $styleArray; + } + + private static function parseGnumericColour(string $gnmColour): string + { + [$gnmR, $gnmG, $gnmB] = explode(':', $gnmColour); + $gnmR = substr(str_pad($gnmR, 4, '0', STR_PAD_RIGHT), 0, 2); + $gnmG = substr(str_pad($gnmG, 4, '0', STR_PAD_RIGHT), 0, 2); + $gnmB = substr(str_pad($gnmB, 4, '0', STR_PAD_RIGHT), 0, 2); + + return $gnmR . $gnmG . $gnmB; + } + + private function addColors(array &$styleArray, SimpleXMLElement $styleAttributes): void + { + $RGB = self::parseGnumericColour((string) $styleAttributes['Fore']); + $styleArray['font']['color']['rgb'] = $RGB; + $RGB = self::parseGnumericColour((string) $styleAttributes['Back']); + $shade = (string) $styleAttributes['Shade']; + if (($RGB !== '000000') || ($shade !== '0')) { + $RGB2 = self::parseGnumericColour((string) $styleAttributes['PatternColor']); + if ($shade === '1') { + $styleArray['fill']['startColor']['rgb'] = $RGB; + $styleArray['fill']['endColor']['rgb'] = $RGB2; + } else { + $styleArray['fill']['endColor']['rgb'] = $RGB; + $styleArray['fill']['startColor']['rgb'] = $RGB2; + } + self::addStyle2($styleArray, 'fill', 'fillType', $shade); + } + } + + private function readStyleRange(SimpleXMLElement $styleAttributes, int $maxCol, int $maxRow): string + { + $startColumn = Coordinate::stringFromColumnIndex((int) $styleAttributes['startCol'] + 1); + $startRow = $styleAttributes['startRow'] + 1; + + $endColumn = ($styleAttributes['endCol'] > $maxCol) ? $maxCol : (int) $styleAttributes['endCol']; + $endColumn = Coordinate::stringFromColumnIndex($endColumn + 1); + + $endRow = 1 + (($styleAttributes['endRow'] > $maxRow) ? $maxRow : (int) $styleAttributes['endRow']); + $cellRange = $startColumn . $startRow . ':' . $endColumn . $endRow; + + return $cellRange; + } + + private function readStyle(array $styleArray, SimpleXMLElement $styleAttributes, SimpleXMLElement $style): array + { + self::addStyle2($styleArray, 'alignment', 'horizontal', (string) $styleAttributes['HAlign']); + self::addStyle2($styleArray, 'alignment', 'vertical', (string) $styleAttributes['VAlign']); + $styleArray['alignment']['wrapText'] = $styleAttributes['WrapText'] == '1'; + $styleArray['alignment']['textRotation'] = $this->calcRotation($styleAttributes); + $styleArray['alignment']['shrinkToFit'] = $styleAttributes['ShrinkToFit'] == '1'; + $styleArray['alignment']['indent'] = ((int) ($styleAttributes['Indent']) > 0) ? $styleAttributes['indent'] : 0; + + $this->addColors($styleArray, $styleAttributes); + + $fontAttributes = $style->Style->Font->attributes(); + if ($fontAttributes !== null) { + $styleArray['font']['name'] = (string) $style->Style->Font; + $styleArray['font']['size'] = (int) ($fontAttributes['Unit']); + $styleArray['font']['bold'] = $fontAttributes['Bold'] == '1'; + $styleArray['font']['italic'] = $fontAttributes['Italic'] == '1'; + $styleArray['font']['strikethrough'] = $fontAttributes['StrikeThrough'] == '1'; + self::addStyle2($styleArray, 'font', 'underline', (string) $fontAttributes['Underline']); + + switch ($fontAttributes['Script']) { + case '1': + $styleArray['font']['superscript'] = true; + + break; + case '-1': + $styleArray['font']['subscript'] = true; + + break; + } + } + + if (isset($style->Style->StyleBorder)) { + $srssb = $style->Style->StyleBorder; + $this->addBorderStyle($srssb, $styleArray, 'top'); + $this->addBorderStyle($srssb, $styleArray, 'bottom'); + $this->addBorderStyle($srssb, $styleArray, 'left'); + $this->addBorderStyle($srssb, $styleArray, 'right'); + $this->addBorderDiagonal($srssb, $styleArray); + } + if (isset($style->Style->HyperLink)) { + // TO DO + $hyperlink = $style->Style->HyperLink->attributes(); + } + + return $styleArray; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Html.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Html.php new file mode 100644 index 0000000..76f128e --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Html.php @@ -0,0 +1,1059 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader; + +use DOMDocument; +use DOMElement; +use DOMNode; +use DOMText; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Helper\Dimension as CssDimension; +use PhpOffice\PhpSpreadsheet\Reader\Security\XmlScanner; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Style\Border; +use PhpOffice\PhpSpreadsheet\Style\Color; +use PhpOffice\PhpSpreadsheet\Style\Fill; +use PhpOffice\PhpSpreadsheet\Style\Font; +use PhpOffice\PhpSpreadsheet\Style\Style; +use PhpOffice\PhpSpreadsheet\Worksheet\Drawing; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; +use Throwable; + +class Html extends BaseReader +{ + /** + * Sample size to read to determine if it's HTML or not. + */ + const TEST_SAMPLE_SIZE = 2048; + + /** + * Input encoding. + * + * @var string + */ + protected $inputEncoding = 'ANSI'; + + /** + * Sheet index to read. + * + * @var int + */ + protected $sheetIndex = 0; + + /** + * Formats. + * + * @var array + */ + protected $formats = [ + 'h1' => [ + 'font' => [ + 'bold' => true, + 'size' => 24, + ], + ], // Bold, 24pt + 'h2' => [ + 'font' => [ + 'bold' => true, + 'size' => 18, + ], + ], // Bold, 18pt + 'h3' => [ + 'font' => [ + 'bold' => true, + 'size' => 13.5, + ], + ], // Bold, 13.5pt + 'h4' => [ + 'font' => [ + 'bold' => true, + 'size' => 12, + ], + ], // Bold, 12pt + 'h5' => [ + 'font' => [ + 'bold' => true, + 'size' => 10, + ], + ], // Bold, 10pt + 'h6' => [ + 'font' => [ + 'bold' => true, + 'size' => 7.5, + ], + ], // Bold, 7.5pt + 'a' => [ + 'font' => [ + 'underline' => true, + 'color' => [ + 'argb' => Color::COLOR_BLUE, + ], + ], + ], // Blue underlined + 'hr' => [ + 'borders' => [ + 'bottom' => [ + 'borderStyle' => Border::BORDER_THIN, + 'color' => [ + Color::COLOR_BLACK, + ], + ], + ], + ], // Bottom border + 'strong' => [ + 'font' => [ + 'bold' => true, + ], + ], // Bold + 'b' => [ + 'font' => [ + 'bold' => true, + ], + ], // Bold + 'i' => [ + 'font' => [ + 'italic' => true, + ], + ], // Italic + 'em' => [ + 'font' => [ + 'italic' => true, + ], + ], // Italic + ]; + + /** @var array */ + protected $rowspan = []; + + /** + * Create a new HTML Reader instance. + */ + public function __construct() + { + parent::__construct(); + $this->securityScanner = XmlScanner::getInstance($this); + } + + /** + * Validate that the current file is an HTML file. + */ + public function canRead(string $filename): bool + { + // Check if file exists + try { + $this->openFile($filename); + } catch (Exception $e) { + return false; + } + + $beginning = $this->readBeginning(); + $startWithTag = self::startsWithTag($beginning); + $containsTags = self::containsTags($beginning); + $endsWithTag = self::endsWithTag($this->readEnding()); + + fclose($this->fileHandle); + + return $startWithTag && $containsTags && $endsWithTag; + } + + private function readBeginning(): string + { + fseek($this->fileHandle, 0); + + return (string) fread($this->fileHandle, self::TEST_SAMPLE_SIZE); + } + + private function readEnding(): string + { + $meta = stream_get_meta_data($this->fileHandle); + $filename = $meta['uri']; + + $size = (int) filesize($filename); + if ($size === 0) { + return ''; + } + + $blockSize = self::TEST_SAMPLE_SIZE; + if ($size < $blockSize) { + $blockSize = $size; + } + + fseek($this->fileHandle, $size - $blockSize); + + return (string) fread($this->fileHandle, $blockSize); + } + + private static function startsWithTag(string $data): bool + { + return '<' === substr(trim($data), 0, 1); + } + + private static function endsWithTag(string $data): bool + { + return '>' === substr(trim($data), -1, 1); + } + + private static function containsTags(string $data): bool + { + return strlen($data) !== strlen(strip_tags($data)); + } + + /** + * Loads Spreadsheet from file. + */ + public function loadSpreadsheetFromFile(string $filename): Spreadsheet + { + // Create new Spreadsheet + $spreadsheet = new Spreadsheet(); + + // Load into this instance + return $this->loadIntoExisting($filename, $spreadsheet); + } + + /** + * Set input encoding. + * + * @param string $inputEncoding Input encoding, eg: 'ANSI' + * + * @return $this + * + * @codeCoverageIgnore + * + * @deprecated no use is made of this property + */ + public function setInputEncoding($inputEncoding) + { + $this->inputEncoding = $inputEncoding; + + return $this; + } + + /** + * Get input encoding. + * + * @return string + * + * @codeCoverageIgnore + * + * @deprecated no use is made of this property + */ + public function getInputEncoding() + { + return $this->inputEncoding; + } + + // Data Array used for testing only, should write to Spreadsheet object on completion of tests + + /** @var array */ + protected $dataArray = []; + + /** @var int */ + protected $tableLevel = 0; + + /** @var array */ + protected $nestedColumn = ['A']; + + protected function setTableStartColumn(string $column): string + { + if ($this->tableLevel == 0) { + $column = 'A'; + } + ++$this->tableLevel; + $this->nestedColumn[$this->tableLevel] = $column; + + return $this->nestedColumn[$this->tableLevel]; + } + + protected function getTableStartColumn(): string + { + return $this->nestedColumn[$this->tableLevel]; + } + + protected function releaseTableStartColumn(): string + { + --$this->tableLevel; + + return array_pop($this->nestedColumn); + } + + /** + * Flush cell. + * + * @param string $column + * @param int|string $row + * @param mixed $cellContent + */ + protected function flushCell(Worksheet $sheet, $column, $row, &$cellContent): void + { + if (is_string($cellContent)) { + // Simple String content + if (trim($cellContent) > '') { + // Only actually write it if there's content in the string + // Write to worksheet to be done here... + // ... we return the cell so we can mess about with styles more easily + $sheet->setCellValue($column . $row, $cellContent); + $this->dataArray[$row][$column] = $cellContent; + } + } else { + // We have a Rich Text run + // TODO + $this->dataArray[$row][$column] = 'RICH TEXT: ' . $cellContent; + } + $cellContent = (string) ''; + } + + private function processDomElementBody(Worksheet $sheet, int &$row, string &$column, string &$cellContent, DOMElement $child): void + { + $attributeArray = []; + foreach (($child->attributes ?? []) as $attribute) { + $attributeArray[$attribute->name] = $attribute->value; + } + + if ($child->nodeName === 'body') { + $row = 1; + $column = 'A'; + $cellContent = ''; + $this->tableLevel = 0; + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + } else { + $this->processDomElementTitle($sheet, $row, $column, $cellContent, $child, $attributeArray); + } + } + + private function processDomElementTitle(Worksheet $sheet, int &$row, string &$column, string &$cellContent, DOMElement $child, array &$attributeArray): void + { + if ($child->nodeName === 'title') { + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + $sheet->setTitle($cellContent, true, true); + $cellContent = ''; + } else { + $this->processDomElementSpanEtc($sheet, $row, $column, $cellContent, $child, $attributeArray); + } + } + + private const SPAN_ETC = ['span', 'div', 'font', 'i', 'em', 'strong', 'b']; + + private function processDomElementSpanEtc(Worksheet $sheet, int &$row, string &$column, string &$cellContent, DOMElement $child, array &$attributeArray): void + { + if (in_array((string) $child->nodeName, self::SPAN_ETC, true)) { + if (isset($attributeArray['class']) && $attributeArray['class'] === 'comment') { + $sheet->getComment($column . $row) + ->getText() + ->createTextRun($child->textContent); + } else { + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + } + + if (isset($this->formats[$child->nodeName])) { + $sheet->getStyle($column . $row)->applyFromArray($this->formats[$child->nodeName]); + } + } else { + $this->processDomElementHr($sheet, $row, $column, $cellContent, $child, $attributeArray); + } + } + + private function processDomElementHr(Worksheet $sheet, int &$row, string &$column, string &$cellContent, DOMElement $child, array &$attributeArray): void + { + if ($child->nodeName === 'hr') { + $this->flushCell($sheet, $column, $row, $cellContent); + ++$row; + if (isset($this->formats[$child->nodeName])) { + $sheet->getStyle($column . $row)->applyFromArray($this->formats[$child->nodeName]); + } + ++$row; + } + // fall through to br + $this->processDomElementBr($sheet, $row, $column, $cellContent, $child, $attributeArray); + } + + private function processDomElementBr(Worksheet $sheet, int &$row, string &$column, string &$cellContent, DOMElement $child, array &$attributeArray): void + { + if ($child->nodeName === 'br' || $child->nodeName === 'hr') { + if ($this->tableLevel > 0) { + // If we're inside a table, replace with a \n and set the cell to wrap + $cellContent .= "\n"; + $sheet->getStyle($column . $row)->getAlignment()->setWrapText(true); + } else { + // Otherwise flush our existing content and move the row cursor on + $this->flushCell($sheet, $column, $row, $cellContent); + ++$row; + } + } else { + $this->processDomElementA($sheet, $row, $column, $cellContent, $child, $attributeArray); + } + } + + private function processDomElementA(Worksheet $sheet, int &$row, string &$column, string &$cellContent, DOMElement $child, array &$attributeArray): void + { + if ($child->nodeName === 'a') { + foreach ($attributeArray as $attributeName => $attributeValue) { + switch ($attributeName) { + case 'href': + $sheet->getCell($column . $row)->getHyperlink()->setUrl($attributeValue); + if (isset($this->formats[$child->nodeName])) { + $sheet->getStyle($column . $row)->applyFromArray($this->formats[$child->nodeName]); + } + + break; + case 'class': + if ($attributeValue === 'comment-indicator') { + break; // Ignore - it's just a red square. + } + } + } + // no idea why this should be needed + //$cellContent .= ' '; + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + } else { + $this->processDomElementH1Etc($sheet, $row, $column, $cellContent, $child, $attributeArray); + } + } + + private const H1_ETC = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'ol', 'ul', 'p']; + + private function processDomElementH1Etc(Worksheet $sheet, int &$row, string &$column, string &$cellContent, DOMElement $child, array &$attributeArray): void + { + if (in_array((string) $child->nodeName, self::H1_ETC, true)) { + if ($this->tableLevel > 0) { + // If we're inside a table, replace with a \n + $cellContent .= $cellContent ? "\n" : ''; + $sheet->getStyle($column . $row)->getAlignment()->setWrapText(true); + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + } else { + if ($cellContent > '') { + $this->flushCell($sheet, $column, $row, $cellContent); + ++$row; + } + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + $this->flushCell($sheet, $column, $row, $cellContent); + + if (isset($this->formats[$child->nodeName])) { + $sheet->getStyle($column . $row)->applyFromArray($this->formats[$child->nodeName]); + } + + ++$row; + $column = 'A'; + } + } else { + $this->processDomElementLi($sheet, $row, $column, $cellContent, $child, $attributeArray); + } + } + + private function processDomElementLi(Worksheet $sheet, int &$row, string &$column, string &$cellContent, DOMElement $child, array &$attributeArray): void + { + if ($child->nodeName === 'li') { + if ($this->tableLevel > 0) { + // If we're inside a table, replace with a \n + $cellContent .= $cellContent ? "\n" : ''; + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + } else { + if ($cellContent > '') { + $this->flushCell($sheet, $column, $row, $cellContent); + } + ++$row; + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + $this->flushCell($sheet, $column, $row, $cellContent); + $column = 'A'; + } + } else { + $this->processDomElementImg($sheet, $row, $column, $cellContent, $child, $attributeArray); + } + } + + private function processDomElementImg(Worksheet $sheet, int &$row, string &$column, string &$cellContent, DOMElement $child, array &$attributeArray): void + { + if ($child->nodeName === 'img') { + $this->insertImage($sheet, $column, $row, $attributeArray); + } else { + $this->processDomElementTable($sheet, $row, $column, $cellContent, $child, $attributeArray); + } + } + + private function processDomElementTable(Worksheet $sheet, int &$row, string &$column, string &$cellContent, DOMElement $child, array &$attributeArray): void + { + if ($child->nodeName === 'table') { + $this->flushCell($sheet, $column, $row, $cellContent); + $column = $this->setTableStartColumn($column); + if ($this->tableLevel > 1 && $row > 1) { + --$row; + } + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + $column = $this->releaseTableStartColumn(); + if ($this->tableLevel > 1) { + ++$column; + } else { + ++$row; + } + } else { + $this->processDomElementTr($sheet, $row, $column, $cellContent, $child, $attributeArray); + } + } + + private function processDomElementTr(Worksheet $sheet, int &$row, string &$column, string &$cellContent, DOMElement $child, array &$attributeArray): void + { + if ($child->nodeName === 'tr') { + $column = $this->getTableStartColumn(); + $cellContent = ''; + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + + if (isset($attributeArray['height'])) { + $sheet->getRowDimension($row)->setRowHeight($attributeArray['height']); + } + + ++$row; + } else { + $this->processDomElementThTdOther($sheet, $row, $column, $cellContent, $child, $attributeArray); + } + } + + private function processDomElementThTdOther(Worksheet $sheet, int &$row, string &$column, string &$cellContent, DOMElement $child, array &$attributeArray): void + { + if ($child->nodeName !== 'td' && $child->nodeName !== 'th') { + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + } else { + $this->processDomElementThTd($sheet, $row, $column, $cellContent, $child, $attributeArray); + } + } + + private function processDomElementBgcolor(Worksheet $sheet, int $row, string $column, array $attributeArray): void + { + if (isset($attributeArray['bgcolor'])) { + $sheet->getStyle("$column$row")->applyFromArray( + [ + 'fill' => [ + 'fillType' => Fill::FILL_SOLID, + 'color' => ['rgb' => $this->getStyleColor($attributeArray['bgcolor'])], + ], + ] + ); + } + } + + private function processDomElementWidth(Worksheet $sheet, string $column, array $attributeArray): void + { + if (isset($attributeArray['width'])) { + $sheet->getColumnDimension($column)->setWidth((new CssDimension($attributeArray['width']))->width()); + } + } + + private function processDomElementHeight(Worksheet $sheet, int $row, array $attributeArray): void + { + if (isset($attributeArray['height'])) { + $sheet->getRowDimension($row)->setRowHeight((new CssDimension($attributeArray['height']))->height()); + } + } + + private function processDomElementAlign(Worksheet $sheet, int $row, string $column, array $attributeArray): void + { + if (isset($attributeArray['align'])) { + $sheet->getStyle($column . $row)->getAlignment()->setHorizontal($attributeArray['align']); + } + } + + private function processDomElementVAlign(Worksheet $sheet, int $row, string $column, array $attributeArray): void + { + if (isset($attributeArray['valign'])) { + $sheet->getStyle($column . $row)->getAlignment()->setVertical($attributeArray['valign']); + } + } + + private function processDomElementDataFormat(Worksheet $sheet, int $row, string $column, array $attributeArray): void + { + if (isset($attributeArray['data-format'])) { + $sheet->getStyle($column . $row)->getNumberFormat()->setFormatCode($attributeArray['data-format']); + } + } + + private function processDomElementThTd(Worksheet $sheet, int &$row, string &$column, string &$cellContent, DOMElement $child, array &$attributeArray): void + { + while (isset($this->rowspan[$column . $row])) { + ++$column; + } + $this->processDomElement($child, $sheet, $row, $column, $cellContent); + + // apply inline style + $this->applyInlineStyle($sheet, $row, $column, $attributeArray); + + $this->flushCell($sheet, $column, $row, $cellContent); + + $this->processDomElementBgcolor($sheet, $row, $column, $attributeArray); + $this->processDomElementWidth($sheet, $column, $attributeArray); + $this->processDomElementHeight($sheet, $row, $attributeArray); + $this->processDomElementAlign($sheet, $row, $column, $attributeArray); + $this->processDomElementVAlign($sheet, $row, $column, $attributeArray); + $this->processDomElementDataFormat($sheet, $row, $column, $attributeArray); + + if (isset($attributeArray['rowspan'], $attributeArray['colspan'])) { + //create merging rowspan and colspan + $columnTo = $column; + for ($i = 0; $i < (int) $attributeArray['colspan'] - 1; ++$i) { + ++$columnTo; + } + $range = $column . $row . ':' . $columnTo . ($row + (int) $attributeArray['rowspan'] - 1); + foreach (Coordinate::extractAllCellReferencesInRange($range) as $value) { + $this->rowspan[$value] = true; + } + $sheet->mergeCells($range); + $column = $columnTo; + } elseif (isset($attributeArray['rowspan'])) { + //create merging rowspan + $range = $column . $row . ':' . $column . ($row + (int) $attributeArray['rowspan'] - 1); + foreach (Coordinate::extractAllCellReferencesInRange($range) as $value) { + $this->rowspan[$value] = true; + } + $sheet->mergeCells($range); + } elseif (isset($attributeArray['colspan'])) { + //create merging colspan + $columnTo = $column; + for ($i = 0; $i < (int) $attributeArray['colspan'] - 1; ++$i) { + ++$columnTo; + } + $sheet->mergeCells($column . $row . ':' . $columnTo . $row); + $column = $columnTo; + } + + ++$column; + } + + protected function processDomElement(DOMNode $element, Worksheet $sheet, int &$row, string &$column, string &$cellContent): void + { + foreach ($element->childNodes as $child) { + if ($child instanceof DOMText) { + $domText = (string) preg_replace('/\s+/u', ' ', trim($child->nodeValue ?? '')); + if (is_string($cellContent)) { + // simply append the text if the cell content is a plain text string + $cellContent .= $domText; + } + // but if we have a rich text run instead, we need to append it correctly + // TODO + } elseif ($child instanceof DOMElement) { + $this->processDomElementBody($sheet, $row, $column, $cellContent, $child); + } + } + } + + /** + * Loads PhpSpreadsheet from file into PhpSpreadsheet instance. + * + * @param string $filename + * + * @return Spreadsheet + */ + public function loadIntoExisting($filename, Spreadsheet $spreadsheet) + { + // Validate + if (!$this->canRead($filename)) { + throw new Exception($filename . ' is an Invalid HTML file.'); + } + + // Create a new DOM object + $dom = new DOMDocument(); + // Reload the HTML file into the DOM object + try { + $convert = $this->securityScanner->scanFile($filename); + $lowend = "\u{80}"; + $highend = "\u{10ffff}"; + $regexp = "/[$lowend-$highend]/u"; + /** @var callable */ + $callback = [self::class, 'replaceNonAscii']; + $convert = preg_replace_callback($regexp, $callback, $convert); + $loaded = ($convert === null) ? false : $dom->loadHTML($convert); + } catch (Throwable $e) { + $loaded = false; + } + if ($loaded === false) { + throw new Exception('Failed to load ' . $filename . ' as a DOM Document', 0, $e ?? null); + } + + return $this->loadDocument($dom, $spreadsheet); + } + + private static function replaceNonAscii(array $matches): string + { + return '&#' . mb_ord($matches[0], 'UTF-8') . ';'; + } + + /** + * Spreadsheet from content. + * + * @param string $content + */ + public function loadFromString($content, ?Spreadsheet $spreadsheet = null): Spreadsheet + { + // Create a new DOM object + $dom = new DOMDocument(); + // Reload the HTML file into the DOM object + try { + $convert = $this->securityScanner->scan($content); + $lowend = "\u{80}"; + $highend = "\u{10ffff}"; + $regexp = "/[$lowend-$highend]/u"; + /** @var callable */ + $callback = [self::class, 'replaceNonAscii']; + $convert = preg_replace_callback($regexp, $callback, $convert); + $loaded = ($convert === null) ? false : $dom->loadHTML($convert); + } catch (Throwable $e) { + $loaded = false; + } + if ($loaded === false) { + throw new Exception('Failed to load content as a DOM Document', 0, $e ?? null); + } + + return $this->loadDocument($dom, $spreadsheet ?? new Spreadsheet()); + } + + /** + * Loads PhpSpreadsheet from DOMDocument into PhpSpreadsheet instance. + */ + private function loadDocument(DOMDocument $document, Spreadsheet $spreadsheet): Spreadsheet + { + while ($spreadsheet->getSheetCount() <= $this->sheetIndex) { + $spreadsheet->createSheet(); + } + $spreadsheet->setActiveSheetIndex($this->sheetIndex); + + // Discard white space + $document->preserveWhiteSpace = false; + + $row = 0; + $column = 'A'; + $content = ''; + $this->rowspan = []; + $this->processDomElement($document, $spreadsheet->getActiveSheet(), $row, $column, $content); + + // Return + return $spreadsheet; + } + + /** + * Get sheet index. + * + * @return int + */ + public function getSheetIndex() + { + return $this->sheetIndex; + } + + /** + * Set sheet index. + * + * @param int $sheetIndex Sheet index + * + * @return $this + */ + public function setSheetIndex($sheetIndex) + { + $this->sheetIndex = $sheetIndex; + + return $this; + } + + /** + * Apply inline css inline style. + * + * NOTES : + * Currently only intended for td & th element, + * and only takes 'background-color' and 'color'; property with HEX color + * + * TODO : + * - Implement to other propertie, such as border + * + * @param int $row + * @param string $column + * @param array $attributeArray + */ + private function applyInlineStyle(Worksheet &$sheet, $row, $column, $attributeArray): void + { + if (!isset($attributeArray['style'])) { + return; + } + + if (isset($attributeArray['rowspan'], $attributeArray['colspan'])) { + $columnTo = $column; + for ($i = 0; $i < (int) $attributeArray['colspan'] - 1; ++$i) { + ++$columnTo; + } + $range = $column . $row . ':' . $columnTo . ($row + (int) $attributeArray['rowspan'] - 1); + $cellStyle = $sheet->getStyle($range); + } elseif (isset($attributeArray['rowspan'])) { + $range = $column . $row . ':' . $column . ($row + (int) $attributeArray['rowspan'] - 1); + $cellStyle = $sheet->getStyle($range); + } elseif (isset($attributeArray['colspan'])) { + $columnTo = $column; + for ($i = 0; $i < (int) $attributeArray['colspan'] - 1; ++$i) { + ++$columnTo; + } + $range = $column . $row . ':' . $columnTo . $row; + $cellStyle = $sheet->getStyle($range); + } else { + $cellStyle = $sheet->getStyle($column . $row); + } + + // add color styles (background & text) from dom element,currently support : td & th, using ONLY inline css style with RGB color + $styles = explode(';', $attributeArray['style']); + foreach ($styles as $st) { + $value = explode(':', $st); + $styleName = isset($value[0]) ? trim($value[0]) : null; + $styleValue = isset($value[1]) ? trim($value[1]) : null; + $styleValueString = (string) $styleValue; + + if (!$styleName) { + continue; + } + + switch ($styleName) { + case 'background': + case 'background-color': + $styleColor = $this->getStyleColor($styleValueString); + + if (!$styleColor) { + continue 2; + } + + $cellStyle->applyFromArray(['fill' => ['fillType' => Fill::FILL_SOLID, 'color' => ['rgb' => $styleColor]]]); + + break; + case 'color': + $styleColor = $this->getStyleColor($styleValueString); + + if (!$styleColor) { + continue 2; + } + + $cellStyle->applyFromArray(['font' => ['color' => ['rgb' => $styleColor]]]); + + break; + + case 'border': + $this->setBorderStyle($cellStyle, $styleValueString, 'allBorders'); + + break; + + case 'border-top': + $this->setBorderStyle($cellStyle, $styleValueString, 'top'); + + break; + + case 'border-bottom': + $this->setBorderStyle($cellStyle, $styleValueString, 'bottom'); + + break; + + case 'border-left': + $this->setBorderStyle($cellStyle, $styleValueString, 'left'); + + break; + + case 'border-right': + $this->setBorderStyle($cellStyle, $styleValueString, 'right'); + + break; + + case 'font-size': + $cellStyle->getFont()->setSize( + (float) $styleValue + ); + + break; + + case 'font-weight': + if ($styleValue === 'bold' || $styleValue >= 500) { + $cellStyle->getFont()->setBold(true); + } + + break; + + case 'font-style': + if ($styleValue === 'italic') { + $cellStyle->getFont()->setItalic(true); + } + + break; + + case 'font-family': + $cellStyle->getFont()->setName(str_replace('\'', '', $styleValueString)); + + break; + + case 'text-decoration': + switch ($styleValue) { + case 'underline': + $cellStyle->getFont()->setUnderline(Font::UNDERLINE_SINGLE); + + break; + case 'line-through': + $cellStyle->getFont()->setStrikethrough(true); + + break; + } + + break; + + case 'text-align': + $cellStyle->getAlignment()->setHorizontal($styleValueString); + + break; + + case 'vertical-align': + $cellStyle->getAlignment()->setVertical($styleValueString); + + break; + + case 'width': + $sheet->getColumnDimension($column)->setWidth( + (new CssDimension($styleValue ?? ''))->width() + ); + + break; + + case 'height': + $sheet->getRowDimension($row)->setRowHeight( + (new CssDimension($styleValue ?? ''))->height() + ); + + break; + + case 'word-wrap': + $cellStyle->getAlignment()->setWrapText( + $styleValue === 'break-word' + ); + + break; + + case 'text-indent': + $cellStyle->getAlignment()->setIndent( + (int) str_replace(['px'], '', $styleValueString) + ); + + break; + } + } + } + + /** + * Check if has #, so we can get clean hex. + * + * @param mixed $value + * + * @return null|string + */ + public function getStyleColor($value) + { + $value = (string) $value; + if (strpos($value ?? '', '#') === 0) { + return substr($value, 1); + } + + return \PhpOffice\PhpSpreadsheet\Helper\Html::colourNameLookup($value); + } + + /** + * @param string $column + * @param int $row + */ + private function insertImage(Worksheet $sheet, $column, $row, array $attributes): void + { + if (!isset($attributes['src'])) { + return; + } + + $src = urldecode($attributes['src']); + $width = isset($attributes['width']) ? (float) $attributes['width'] : null; + $height = isset($attributes['height']) ? (float) $attributes['height'] : null; + $name = $attributes['alt'] ?? null; + + $drawing = new Drawing(); + $drawing->setPath($src); + $drawing->setWorksheet($sheet); + $drawing->setCoordinates($column . $row); + $drawing->setOffsetX(0); + $drawing->setOffsetY(10); + $drawing->setResizeProportional(true); + + if ($name) { + $drawing->setName($name); + } + + if ($width) { + $drawing->setWidth((int) $width); + } + + if ($height) { + $drawing->setHeight((int) $height); + } + + $sheet->getColumnDimension($column)->setWidth( + $drawing->getWidth() / 6 + ); + + $sheet->getRowDimension($row)->setRowHeight( + $drawing->getHeight() * 0.9 + ); + } + + private const BORDER_MAPPINGS = [ + 'dash-dot' => Border::BORDER_DASHDOT, + 'dash-dot-dot' => Border::BORDER_DASHDOTDOT, + 'dashed' => Border::BORDER_DASHED, + 'dotted' => Border::BORDER_DOTTED, + 'double' => Border::BORDER_DOUBLE, + 'hair' => Border::BORDER_HAIR, + 'medium' => Border::BORDER_MEDIUM, + 'medium-dashed' => Border::BORDER_MEDIUMDASHED, + 'medium-dash-dot' => Border::BORDER_MEDIUMDASHDOT, + 'medium-dash-dot-dot' => Border::BORDER_MEDIUMDASHDOTDOT, + 'none' => Border::BORDER_NONE, + 'slant-dash-dot' => Border::BORDER_SLANTDASHDOT, + 'solid' => Border::BORDER_THIN, + 'thick' => Border::BORDER_THICK, + ]; + + public static function getBorderMappings(): array + { + return self::BORDER_MAPPINGS; + } + + /** + * Map html border style to PhpSpreadsheet border style. + * + * @param string $style + * + * @return null|string + */ + public function getBorderStyle($style) + { + return self::BORDER_MAPPINGS[$style] ?? null; + } + + /** + * @param string $styleValue + * @param string $type + */ + private function setBorderStyle(Style $cellStyle, $styleValue, $type): void + { + if (trim($styleValue) === Border::BORDER_NONE) { + $borderStyle = Border::BORDER_NONE; + $color = null; + } else { + $borderArray = explode(' ', $styleValue); + $borderCount = count($borderArray); + if ($borderCount >= 3) { + $borderStyle = $borderArray[1]; + $color = $borderArray[2]; + } else { + $borderStyle = $borderArray[0]; + $color = $borderArray[1] ?? null; + } + } + + $cellStyle->applyFromArray([ + 'borders' => [ + $type => [ + 'borderStyle' => $this->getBorderStyle($borderStyle), + 'color' => ['rgb' => $this->getStyleColor($color)], + ], + ], + ]); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/IReadFilter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/IReadFilter.php new file mode 100644 index 0000000..9f68a7f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/IReadFilter.php @@ -0,0 +1,17 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader; + +interface IReadFilter +{ + /** + * Should this cell be read? + * + * @param string $columnAddress Column address (as a string value like "A", or "IV") + * @param int $row Row number + * @param string $worksheetName Optional worksheet name + * + * @return bool + */ + public function readCell($columnAddress, $row, $worksheetName = ''); +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/IReader.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/IReader.php new file mode 100644 index 0000000..d73662b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/IReader.php @@ -0,0 +1,129 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader; + +interface IReader +{ + public const LOAD_WITH_CHARTS = 1; + + /** + * IReader constructor. + */ + public function __construct(); + + /** + * Can the current IReader read the file? + */ + public function canRead(string $filename): bool; + + /** + * Read data only? + * If this is true, then the Reader will only read data values for cells, it will not read any formatting information. + * If false (the default) it will read data and formatting. + * + * @return bool + */ + public function getReadDataOnly(); + + /** + * Set read data only + * Set to true, to advise the Reader only to read data values for cells, and to ignore any formatting information. + * Set to false (the default) to advise the Reader to read both data and formatting for cells. + * + * @param bool $readDataOnly + * + * @return IReader + */ + public function setReadDataOnly($readDataOnly); + + /** + * Read empty cells? + * If this is true (the default), then the Reader will read data values for all cells, irrespective of value. + * If false it will not read data for cells containing a null value or an empty string. + * + * @return bool + */ + public function getReadEmptyCells(); + + /** + * Set read empty cells + * Set to true (the default) to advise the Reader read data values for all cells, irrespective of value. + * Set to false to advise the Reader to ignore cells containing a null value or an empty string. + * + * @param bool $readEmptyCells + * + * @return IReader + */ + public function setReadEmptyCells($readEmptyCells); + + /** + * Read charts in workbook? + * If this is true, then the Reader will include any charts that exist in the workbook. + * Note that a ReadDataOnly value of false overrides, and charts won't be read regardless of the IncludeCharts value. + * If false (the default) it will ignore any charts defined in the workbook file. + * + * @return bool + */ + public function getIncludeCharts(); + + /** + * Set read charts in workbook + * Set to true, to advise the Reader to include any charts that exist in the workbook. + * Note that a ReadDataOnly value of false overrides, and charts won't be read regardless of the IncludeCharts value. + * Set to false (the default) to discard charts. + * + * @param bool $includeCharts + * + * @return IReader + */ + public function setIncludeCharts($includeCharts); + + /** + * Get which sheets to load + * Returns either an array of worksheet names (the list of worksheets that should be loaded), or a null + * indicating that all worksheets in the workbook should be loaded. + * + * @return mixed + */ + public function getLoadSheetsOnly(); + + /** + * Set which sheets to load. + * + * @param mixed $value + * This should be either an array of worksheet names to be loaded, or a string containing a single worksheet name. + * If NULL, then it tells the Reader to read all worksheets in the workbook + * + * @return IReader + */ + public function setLoadSheetsOnly($value); + + /** + * Set all sheets to load + * Tells the Reader to load all worksheets from the workbook. + * + * @return IReader + */ + public function setLoadAllSheets(); + + /** + * Read filter. + * + * @return IReadFilter + */ + public function getReadFilter(); + + /** + * Set read filter. + * + * @return IReader + */ + public function setReadFilter(IReadFilter $readFilter); + + /** + * Loads PhpSpreadsheet from file. + * + * @return \PhpOffice\PhpSpreadsheet\Spreadsheet + */ + public function load(string $filename, int $flags = 0); +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods.php new file mode 100644 index 0000000..7e776ab --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods.php @@ -0,0 +1,766 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader; + +use DOMAttr; +use DOMDocument; +use DOMElement; +use DOMNode; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Cell\DataType; +use PhpOffice\PhpSpreadsheet\Reader\Ods\AutoFilter; +use PhpOffice\PhpSpreadsheet\Reader\Ods\DefinedNames; +use PhpOffice\PhpSpreadsheet\Reader\Ods\FormulaTranslator; +use PhpOffice\PhpSpreadsheet\Reader\Ods\PageSettings; +use PhpOffice\PhpSpreadsheet\Reader\Ods\Properties as DocumentProperties; +use PhpOffice\PhpSpreadsheet\Reader\Security\XmlScanner; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\Settings; +use PhpOffice\PhpSpreadsheet\Shared\Date; +use PhpOffice\PhpSpreadsheet\Shared\File; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; +use Throwable; +use XMLReader; +use ZipArchive; + +class Ods extends BaseReader +{ + const INITIAL_FILE = 'content.xml'; + + /** + * Create a new Ods Reader instance. + */ + public function __construct() + { + parent::__construct(); + $this->securityScanner = XmlScanner::getInstance($this); + } + + /** + * Can the current IReader read the file? + */ + public function canRead(string $filename): bool + { + $mimeType = 'UNKNOWN'; + + // Load file + + if (File::testFileNoThrow($filename, '')) { + $zip = new ZipArchive(); + if ($zip->open($filename) === true) { + // check if it is an OOXML archive + $stat = $zip->statName('mimetype'); + if ($stat && ($stat['size'] <= 255)) { + $mimeType = $zip->getFromName($stat['name']); + } elseif ($zip->statName('META-INF/manifest.xml')) { + $xml = simplexml_load_string( + $this->securityScanner->scan($zip->getFromName('META-INF/manifest.xml')), + 'SimpleXMLElement', + Settings::getLibXmlLoaderOptions() + ); + $namespacesContent = $xml->getNamespaces(true); + if (isset($namespacesContent['manifest'])) { + $manifest = $xml->children($namespacesContent['manifest']); + foreach ($manifest as $manifestDataSet) { + $manifestAttributes = $manifestDataSet->attributes($namespacesContent['manifest']); + if ($manifestAttributes && $manifestAttributes->{'full-path'} == '/') { + $mimeType = (string) $manifestAttributes->{'media-type'}; + + break; + } + } + } + } + + $zip->close(); + } + } + + return $mimeType === 'application/vnd.oasis.opendocument.spreadsheet'; + } + + /** + * Reads names of the worksheets from a file, without parsing the whole file to a PhpSpreadsheet object. + * + * @param string $filename + * + * @return string[] + */ + public function listWorksheetNames($filename) + { + File::assertFile($filename, self::INITIAL_FILE); + + $worksheetNames = []; + + $xml = new XMLReader(); + $xml->xml( + $this->securityScanner->scanFile('zip://' . realpath($filename) . '#' . self::INITIAL_FILE), + null, + Settings::getLibXmlLoaderOptions() + ); + $xml->setParserProperty(2, true); + + // Step into the first level of content of the XML + $xml->read(); + while ($xml->read()) { + // Quickly jump through to the office:body node + while (self::getXmlName($xml) !== 'office:body') { + if ($xml->isEmptyElement) { + $xml->read(); + } else { + $xml->next(); + } + } + // Now read each node until we find our first table:table node + while ($xml->read()) { + $xmlName = self::getXmlName($xml); + if ($xmlName == 'table:table' && $xml->nodeType == XMLReader::ELEMENT) { + // Loop through each table:table node reading the table:name attribute for each worksheet name + do { + $worksheetNames[] = $xml->getAttribute('table:name'); + $xml->next(); + } while (self::getXmlName($xml) == 'table:table' && $xml->nodeType == XMLReader::ELEMENT); + } + } + } + + return $worksheetNames; + } + + /** + * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns). + * + * @param string $filename + * + * @return array + */ + public function listWorksheetInfo($filename) + { + File::assertFile($filename, self::INITIAL_FILE); + + $worksheetInfo = []; + + $xml = new XMLReader(); + $xml->xml( + $this->securityScanner->scanFile('zip://' . realpath($filename) . '#' . self::INITIAL_FILE), + null, + Settings::getLibXmlLoaderOptions() + ); + $xml->setParserProperty(2, true); + + // Step into the first level of content of the XML + $xml->read(); + while ($xml->read()) { + // Quickly jump through to the office:body node + while (self::getXmlName($xml) !== 'office:body') { + if ($xml->isEmptyElement) { + $xml->read(); + } else { + $xml->next(); + } + } + // Now read each node until we find our first table:table node + while ($xml->read()) { + if (self::getXmlName($xml) == 'table:table' && $xml->nodeType == XMLReader::ELEMENT) { + $worksheetNames[] = $xml->getAttribute('table:name'); + + $tmpInfo = [ + 'worksheetName' => $xml->getAttribute('table:name'), + 'lastColumnLetter' => 'A', + 'lastColumnIndex' => 0, + 'totalRows' => 0, + 'totalColumns' => 0, + ]; + + // Loop through each child node of the table:table element reading + $currCells = 0; + do { + $xml->read(); + if (self::getXmlName($xml) == 'table:table-row' && $xml->nodeType == XMLReader::ELEMENT) { + $rowspan = $xml->getAttribute('table:number-rows-repeated'); + $rowspan = empty($rowspan) ? 1 : $rowspan; + $tmpInfo['totalRows'] += $rowspan; + $tmpInfo['totalColumns'] = max($tmpInfo['totalColumns'], $currCells); + $currCells = 0; + // Step into the row + $xml->read(); + do { + $doread = true; + if (self::getXmlName($xml) == 'table:table-cell' && $xml->nodeType == XMLReader::ELEMENT) { + if (!$xml->isEmptyElement) { + ++$currCells; + $xml->next(); + $doread = false; + } + } elseif (self::getXmlName($xml) == 'table:covered-table-cell' && $xml->nodeType == XMLReader::ELEMENT) { + $mergeSize = $xml->getAttribute('table:number-columns-repeated'); + $currCells += (int) $mergeSize; + } + if ($doread) { + $xml->read(); + } + } while (self::getXmlName($xml) != 'table:table-row'); + } + } while (self::getXmlName($xml) != 'table:table'); + + $tmpInfo['totalColumns'] = max($tmpInfo['totalColumns'], $currCells); + $tmpInfo['lastColumnIndex'] = $tmpInfo['totalColumns'] - 1; + $tmpInfo['lastColumnLetter'] = Coordinate::stringFromColumnIndex($tmpInfo['lastColumnIndex'] + 1); + $worksheetInfo[] = $tmpInfo; + } + } + } + + return $worksheetInfo; + } + + /** + * Counteract Phpstan caching. + * + * @phpstan-impure + */ + private static function getXmlName(XMLReader $xml): string + { + return $xml->name; + } + + /** + * Loads PhpSpreadsheet from file. + */ + protected function loadSpreadsheetFromFile(string $filename): Spreadsheet + { + // Create new Spreadsheet + $spreadsheet = new Spreadsheet(); + + // Load into this instance + return $this->loadIntoExisting($filename, $spreadsheet); + } + + /** + * Loads PhpSpreadsheet from file into PhpSpreadsheet instance. + * + * @param string $filename + * + * @return Spreadsheet + */ + public function loadIntoExisting($filename, Spreadsheet $spreadsheet) + { + File::assertFile($filename, self::INITIAL_FILE); + + $zip = new ZipArchive(); + $zip->open($filename); + + // Meta + + $xml = @simplexml_load_string( + $this->securityScanner->scan($zip->getFromName('meta.xml')), + 'SimpleXMLElement', + Settings::getLibXmlLoaderOptions() + ); + if ($xml === false) { + throw new Exception('Unable to read data from {$pFilename}'); + } + + $namespacesMeta = $xml->getNamespaces(true); + + (new DocumentProperties($spreadsheet))->load($xml, $namespacesMeta); + + // Styles + + $dom = new DOMDocument('1.01', 'UTF-8'); + $dom->loadXML( + $this->securityScanner->scan($zip->getFromName('styles.xml')), + Settings::getLibXmlLoaderOptions() + ); + + $pageSettings = new PageSettings($dom); + + // Main Content + + $dom = new DOMDocument('1.01', 'UTF-8'); + $dom->loadXML( + $this->securityScanner->scan($zip->getFromName(self::INITIAL_FILE)), + Settings::getLibXmlLoaderOptions() + ); + + $officeNs = $dom->lookupNamespaceUri('office'); + $tableNs = $dom->lookupNamespaceUri('table'); + $textNs = $dom->lookupNamespaceUri('text'); + $xlinkNs = $dom->lookupNamespaceUri('xlink'); + + $pageSettings->readStyleCrossReferences($dom); + + $autoFilterReader = new AutoFilter($spreadsheet, $tableNs); + $definedNameReader = new DefinedNames($spreadsheet, $tableNs); + + // Content + $spreadsheets = $dom->getElementsByTagNameNS($officeNs, 'body') + ->item(0) + ->getElementsByTagNameNS($officeNs, 'spreadsheet'); + + foreach ($spreadsheets as $workbookData) { + /** @var DOMElement $workbookData */ + $tables = $workbookData->getElementsByTagNameNS($tableNs, 'table'); + + $worksheetID = 0; + foreach ($tables as $worksheetDataSet) { + /** @var DOMElement $worksheetDataSet */ + $worksheetName = $worksheetDataSet->getAttributeNS($tableNs, 'name'); + + // Check loadSheetsOnly + if ( + isset($this->loadSheetsOnly) + && $worksheetName + && !in_array($worksheetName, $this->loadSheetsOnly) + ) { + continue; + } + + $worksheetStyleName = $worksheetDataSet->getAttributeNS($tableNs, 'style-name'); + + // Create sheet + if ($worksheetID > 0) { + $spreadsheet->createSheet(); // First sheet is added by default + } + $spreadsheet->setActiveSheetIndex($worksheetID); + + if ($worksheetName || is_numeric($worksheetName)) { + // Use false for $updateFormulaCellReferences to prevent adjustment of worksheet references in + // formula cells... during the load, all formulae should be correct, and we're simply + // bringing the worksheet name in line with the formula, not the reverse + $spreadsheet->getActiveSheet()->setTitle((string) $worksheetName, false, false); + } + + // Go through every child of table element + $rowID = 1; + foreach ($worksheetDataSet->childNodes as $childNode) { + /** @var DOMElement $childNode */ + + // Filter elements which are not under the "table" ns + if ($childNode->namespaceURI != $tableNs) { + continue; + } + + $key = $childNode->nodeName; + + // Remove ns from node name + if (strpos($key, ':') !== false) { + $keyChunks = explode(':', $key); + $key = array_pop($keyChunks); + } + + switch ($key) { + case 'table-header-rows': + /// TODO :: Figure this out. This is only a partial implementation I guess. + // ($rowData it's not used at all and I'm not sure that PHPExcel + // has an API for this) + +// foreach ($rowData as $keyRowData => $cellData) { +// $rowData = $cellData; +// break; +// } + break; + case 'table-row': + if ($childNode->hasAttributeNS($tableNs, 'number-rows-repeated')) { + $rowRepeats = (int) $childNode->getAttributeNS($tableNs, 'number-rows-repeated'); + } else { + $rowRepeats = 1; + } + + $columnID = 'A'; + /** @var DOMElement $cellData */ + foreach ($childNode->childNodes as $cellData) { + if ($this->getReadFilter() !== null) { + if (!$this->getReadFilter()->readCell($columnID, $rowID, $worksheetName)) { + ++$columnID; + + continue; + } + } + + // Initialize variables + $formatting = $hyperlink = null; + $hasCalculatedValue = false; + $cellDataFormula = ''; + + if ($cellData->hasAttributeNS($tableNs, 'formula')) { + $cellDataFormula = $cellData->getAttributeNS($tableNs, 'formula'); + $hasCalculatedValue = true; + } + + // Annotations + $annotation = $cellData->getElementsByTagNameNS($officeNs, 'annotation'); + + if ($annotation->length > 0) { + $textNode = $annotation->item(0)->getElementsByTagNameNS($textNs, 'p'); + + if ($textNode->length > 0) { + $text = $this->scanElementForText($textNode->item(0)); + + $spreadsheet->getActiveSheet() + ->getComment($columnID . $rowID) + ->setText($this->parseRichText($text)); +// ->setAuthor( $author ) + } + } + + // Content + + /** @var DOMElement[] $paragraphs */ + $paragraphs = []; + + foreach ($cellData->childNodes as $item) { + /** @var DOMElement $item */ + + // Filter text:p elements + if ($item->nodeName == 'text:p') { + $paragraphs[] = $item; + } + } + + if (count($paragraphs) > 0) { + // Consolidate if there are multiple p records (maybe with spans as well) + $dataArray = []; + + // Text can have multiple text:p and within those, multiple text:span. + // text:p newlines, but text:span does not. + // Also, here we assume there is no text data is span fields are specified, since + // we have no way of knowing proper positioning anyway. + + foreach ($paragraphs as $pData) { + $dataArray[] = $this->scanElementForText($pData); + } + $allCellDataText = implode("\n", $dataArray); + + $type = $cellData->getAttributeNS($officeNs, 'value-type'); + + switch ($type) { + case 'string': + $type = DataType::TYPE_STRING; + $dataValue = $allCellDataText; + + foreach ($paragraphs as $paragraph) { + $link = $paragraph->getElementsByTagNameNS($textNs, 'a'); + if ($link->length > 0) { + $hyperlink = $link->item(0)->getAttributeNS($xlinkNs, 'href'); + } + } + + break; + case 'boolean': + $type = DataType::TYPE_BOOL; + $dataValue = ($allCellDataText == 'TRUE') ? true : false; + + break; + case 'percentage': + $type = DataType::TYPE_NUMERIC; + $dataValue = (float) $cellData->getAttributeNS($officeNs, 'value'); + + // percentage should always be float + //if (floor($dataValue) == $dataValue) { + // $dataValue = (int) $dataValue; + //} + $formatting = NumberFormat::FORMAT_PERCENTAGE_00; + + break; + case 'currency': + $type = DataType::TYPE_NUMERIC; + $dataValue = (float) $cellData->getAttributeNS($officeNs, 'value'); + + if (floor($dataValue) == $dataValue) { + $dataValue = (int) $dataValue; + } + $formatting = NumberFormat::FORMAT_CURRENCY_USD_SIMPLE; + + break; + case 'float': + $type = DataType::TYPE_NUMERIC; + $dataValue = (float) $cellData->getAttributeNS($officeNs, 'value'); + + if (floor($dataValue) == $dataValue) { + if ($dataValue == (int) $dataValue) { + $dataValue = (int) $dataValue; + } + } + + break; + case 'date': + $type = DataType::TYPE_NUMERIC; + $value = $cellData->getAttributeNS($officeNs, 'date-value'); + $dataValue = Date::convertIsoDate($value); + + if ($dataValue != floor($dataValue)) { + $formatting = NumberFormat::FORMAT_DATE_XLSX15 + . ' ' + . NumberFormat::FORMAT_DATE_TIME4; + } else { + $formatting = NumberFormat::FORMAT_DATE_XLSX15; + } + + break; + case 'time': + $type = DataType::TYPE_NUMERIC; + + $timeValue = $cellData->getAttributeNS($officeNs, 'time-value'); + + $dataValue = Date::PHPToExcel( + strtotime( + '01-01-1970 ' . implode(':', sscanf($timeValue, 'PT%dH%dM%dS') ?? []) + ) + ); + $formatting = NumberFormat::FORMAT_DATE_TIME4; + + break; + default: + $dataValue = null; + } + } else { + $type = DataType::TYPE_NULL; + $dataValue = null; + } + + if ($hasCalculatedValue) { + $type = DataType::TYPE_FORMULA; + $cellDataFormula = substr($cellDataFormula, strpos($cellDataFormula, ':=') + 1); + $cellDataFormula = FormulaTranslator::convertToExcelFormulaValue($cellDataFormula); + } + + if ($cellData->hasAttributeNS($tableNs, 'number-columns-repeated')) { + $colRepeats = (int) $cellData->getAttributeNS($tableNs, 'number-columns-repeated'); + } else { + $colRepeats = 1; + } + + if ($type !== null) { + for ($i = 0; $i < $colRepeats; ++$i) { + if ($i > 0) { + ++$columnID; + } + + if ($type !== DataType::TYPE_NULL) { + for ($rowAdjust = 0; $rowAdjust < $rowRepeats; ++$rowAdjust) { + $rID = $rowID + $rowAdjust; + + $cell = $spreadsheet->getActiveSheet() + ->getCell($columnID . $rID); + + // Set value + if ($hasCalculatedValue) { + $cell->setValueExplicit($cellDataFormula, $type); + } else { + $cell->setValueExplicit($dataValue, $type); + } + + if ($hasCalculatedValue) { + $cell->setCalculatedValue($dataValue); + } + + // Set other properties + if ($formatting !== null) { + $spreadsheet->getActiveSheet() + ->getStyle($columnID . $rID) + ->getNumberFormat() + ->setFormatCode($formatting); + } else { + $spreadsheet->getActiveSheet() + ->getStyle($columnID . $rID) + ->getNumberFormat() + ->setFormatCode(NumberFormat::FORMAT_GENERAL); + } + + if ($hyperlink !== null) { + $cell->getHyperlink() + ->setUrl($hyperlink); + } + } + } + } + } + + // Merged cells + $this->processMergedCells($cellData, $tableNs, $type, $columnID, $rowID, $spreadsheet); + + ++$columnID; + } + $rowID += $rowRepeats; + + break; + } + } + $pageSettings->setVisibilityForWorksheet($spreadsheet->getActiveSheet(), $worksheetStyleName); + $pageSettings->setPrintSettingsForWorksheet($spreadsheet->getActiveSheet(), $worksheetStyleName); + ++$worksheetID; + } + + $autoFilterReader->read($workbookData); + $definedNameReader->read($workbookData); + } + $spreadsheet->setActiveSheetIndex(0); + + if ($zip->locateName('settings.xml') !== false) { + $this->processSettings($zip, $spreadsheet); + } + + // Return + return $spreadsheet; + } + + private function processSettings(ZipArchive $zip, Spreadsheet $spreadsheet): void + { + $dom = new DOMDocument('1.01', 'UTF-8'); + $dom->loadXML( + $this->securityScanner->scan($zip->getFromName('settings.xml')), + Settings::getLibXmlLoaderOptions() + ); + //$xlinkNs = $dom->lookupNamespaceUri('xlink'); + $configNs = $dom->lookupNamespaceUri('config'); + //$oooNs = $dom->lookupNamespaceUri('ooo'); + $officeNs = $dom->lookupNamespaceUri('office'); + $settings = $dom->getElementsByTagNameNS($officeNs, 'settings') + ->item(0); + $this->lookForActiveSheet($settings, $spreadsheet, $configNs); + $this->lookForSelectedCells($settings, $spreadsheet, $configNs); + } + + private function lookForActiveSheet(DOMElement $settings, Spreadsheet $spreadsheet, string $configNs): void + { + /** @var DOMElement $t */ + foreach ($settings->getElementsByTagNameNS($configNs, 'config-item') as $t) { + if ($t->getAttributeNs($configNs, 'name') === 'ActiveTable') { + try { + $spreadsheet->setActiveSheetIndexByName($t->nodeValue ?? ''); + } catch (Throwable $e) { + // do nothing + } + + break; + } + } + } + + private function lookForSelectedCells(DOMElement $settings, Spreadsheet $spreadsheet, string $configNs): void + { + /** @var DOMElement $t */ + foreach ($settings->getElementsByTagNameNS($configNs, 'config-item-map-named') as $t) { + if ($t->getAttributeNs($configNs, 'name') === 'Tables') { + foreach ($t->getElementsByTagNameNS($configNs, 'config-item-map-entry') as $ws) { + $setRow = $setCol = ''; + $wsname = $ws->getAttributeNs($configNs, 'name'); + foreach ($ws->getElementsByTagNameNS($configNs, 'config-item') as $configItem) { + $attrName = $configItem->getAttributeNs($configNs, 'name'); + if ($attrName === 'CursorPositionX') { + $setCol = $configItem->nodeValue; + } + if ($attrName === 'CursorPositionY') { + $setRow = $configItem->nodeValue; + } + } + $this->setSelected($spreadsheet, $wsname, "$setCol", "$setRow"); + } + + break; + } + } + } + + private function setSelected(Spreadsheet $spreadsheet, string $wsname, string $setCol, string $setRow): void + { + if (is_numeric($setCol) && is_numeric($setRow)) { + try { + $spreadsheet->getSheetByName($wsname)->setSelectedCellByColumnAndRow($setCol + 1, $setRow + 1); + } catch (Throwable $e) { + // do nothing + } + } + } + + /** + * Recursively scan element. + * + * @return string + */ + protected function scanElementForText(DOMNode $element) + { + $str = ''; + foreach ($element->childNodes as $child) { + /** @var DOMNode $child */ + if ($child->nodeType == XML_TEXT_NODE) { + $str .= $child->nodeValue; + } elseif ($child->nodeType == XML_ELEMENT_NODE && $child->nodeName == 'text:s') { + // It's a space + + // Multiple spaces? + /** @var DOMAttr $cAttr */ + $cAttr = $child->attributes->getNamedItem('c'); + $multiplier = self::getMultiplier($cAttr); + $str .= str_repeat(' ', $multiplier); + } + + if ($child->hasChildNodes()) { + $str .= $this->scanElementForText($child); + } + } + + return $str; + } + + private static function getMultiplier(?DOMAttr $cAttr): int + { + if ($cAttr) { + $multiplier = (int) $cAttr->nodeValue; + } else { + $multiplier = 1; + } + + return $multiplier; + } + + /** + * @param string $is + * + * @return RichText + */ + private function parseRichText($is) + { + $value = new RichText(); + $value->createText($is); + + return $value; + } + + private function processMergedCells( + DOMElement $cellData, + string $tableNs, + string $type, + string $columnID, + int $rowID, + Spreadsheet $spreadsheet + ): void { + if ( + $cellData->hasAttributeNS($tableNs, 'number-columns-spanned') + || $cellData->hasAttributeNS($tableNs, 'number-rows-spanned') + ) { + if (($type !== DataType::TYPE_NULL) || ($this->readDataOnly === false)) { + $columnTo = $columnID; + + if ($cellData->hasAttributeNS($tableNs, 'number-columns-spanned')) { + $columnIndex = Coordinate::columnIndexFromString($columnID); + $columnIndex += (int) $cellData->getAttributeNS($tableNs, 'number-columns-spanned'); + $columnIndex -= 2; + + $columnTo = Coordinate::stringFromColumnIndex($columnIndex + 1); + } + + $rowTo = $rowID; + + if ($cellData->hasAttributeNS($tableNs, 'number-rows-spanned')) { + $rowTo = $rowTo + (int) $cellData->getAttributeNS($tableNs, 'number-rows-spanned') - 1; + } + + $cellRange = $columnID . $rowID . ':' . $columnTo . $rowTo; + $spreadsheet->getActiveSheet()->mergeCells($cellRange); + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/AutoFilter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/AutoFilter.php new file mode 100644 index 0000000..1f5f975 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/AutoFilter.php @@ -0,0 +1,45 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Ods; + +use DOMElement; +use DOMNode; + +class AutoFilter extends BaseLoader +{ + public function read(DOMElement $workbookData): void + { + $this->readAutoFilters($workbookData); + } + + protected function readAutoFilters(DOMElement $workbookData): void + { + $databases = $workbookData->getElementsByTagNameNS($this->tableNs, 'database-ranges'); + + foreach ($databases as $autofilters) { + foreach ($autofilters->childNodes as $autofilter) { + $autofilterRange = $this->getAttributeValue($autofilter, 'target-range-address'); + if ($autofilterRange !== null) { + $baseAddress = FormulaTranslator::convertToExcelAddressValue($autofilterRange); + $this->spreadsheet->getActiveSheet()->setAutoFilter($baseAddress); + } + } + } + } + + protected function getAttributeValue(?DOMNode $node, string $attributeName): ?string + { + if ($node !== null && $node->attributes !== null) { + $attribute = $node->attributes->getNamedItemNS( + $this->tableNs, + $attributeName + ); + + if ($attribute !== null) { + return $attribute->nodeValue; + } + } + + return null; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/BaseLoader.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/BaseLoader.php new file mode 100644 index 0000000..b06691f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/BaseLoader.php @@ -0,0 +1,27 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Ods; + +use DOMElement; +use PhpOffice\PhpSpreadsheet\Spreadsheet; + +abstract class BaseLoader +{ + /** + * @var Spreadsheet + */ + protected $spreadsheet; + + /** + * @var string + */ + protected $tableNs; + + public function __construct(Spreadsheet $spreadsheet, string $tableNs) + { + $this->spreadsheet = $spreadsheet; + $this->tableNs = $tableNs; + } + + abstract public function read(DOMElement $workbookData): void; +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/DefinedNames.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/DefinedNames.php new file mode 100644 index 0000000..e0ab890 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/DefinedNames.php @@ -0,0 +1,66 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Ods; + +use DOMElement; +use PhpOffice\PhpSpreadsheet\DefinedName; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class DefinedNames extends BaseLoader +{ + public function read(DOMElement $workbookData): void + { + $this->readDefinedRanges($workbookData); + $this->readDefinedExpressions($workbookData); + } + + /** + * Read any Named Ranges that are defined in this spreadsheet. + */ + protected function readDefinedRanges(DOMElement $workbookData): void + { + $namedRanges = $workbookData->getElementsByTagNameNS($this->tableNs, 'named-range'); + foreach ($namedRanges as $definedNameElement) { + $definedName = $definedNameElement->getAttributeNS($this->tableNs, 'name'); + $baseAddress = $definedNameElement->getAttributeNS($this->tableNs, 'base-cell-address'); + $range = $definedNameElement->getAttributeNS($this->tableNs, 'cell-range-address'); + + $baseAddress = FormulaTranslator::convertToExcelAddressValue($baseAddress); + $range = FormulaTranslator::convertToExcelAddressValue($range); + + $this->addDefinedName($baseAddress, $definedName, $range); + } + } + + /** + * Read any Named Formulae that are defined in this spreadsheet. + */ + protected function readDefinedExpressions(DOMElement $workbookData): void + { + $namedExpressions = $workbookData->getElementsByTagNameNS($this->tableNs, 'named-expression'); + foreach ($namedExpressions as $definedNameElement) { + $definedName = $definedNameElement->getAttributeNS($this->tableNs, 'name'); + $baseAddress = $definedNameElement->getAttributeNS($this->tableNs, 'base-cell-address'); + $expression = $definedNameElement->getAttributeNS($this->tableNs, 'expression'); + + $baseAddress = FormulaTranslator::convertToExcelAddressValue($baseAddress); + $expression = substr($expression, strpos($expression, ':=') + 1); + $expression = FormulaTranslator::convertToExcelFormulaValue($expression); + + $this->addDefinedName($baseAddress, $definedName, $expression); + } + } + + /** + * Assess scope and store the Defined Name. + */ + private function addDefinedName(string $baseAddress, string $definedName, string $value): void + { + [$sheetReference] = Worksheet::extractSheetTitle($baseAddress, true); + $worksheet = $this->spreadsheet->getSheetByName($sheetReference); + // Worksheet might still be null if we're only loading selected sheets rather than the full spreadsheet + if ($worksheet !== null) { + $this->spreadsheet->addDefinedName(DefinedName::createInstance((string) $definedName, $worksheet, $value)); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/FormulaTranslator.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/FormulaTranslator.php new file mode 100644 index 0000000..4abdf11 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/FormulaTranslator.php @@ -0,0 +1,96 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Ods; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; + +class FormulaTranslator +{ + public static function convertToExcelAddressValue(string $openOfficeAddress): string + { + $excelAddress = $openOfficeAddress; + + // Cell range 3-d reference + // As we don't support 3-d ranges, we're just going to take a quick and dirty approach + // and assume that the second worksheet reference is the same as the first + $excelAddress = (string) preg_replace( + [ + '/\$?([^\.]+)\.([^\.]+):\$?([^\.]+)\.([^\.]+)/miu', + '/\$?([^\.]+)\.([^\.]+):\.([^\.]+)/miu', // Cell range reference in another sheet + '/\$?([^\.]+)\.([^\.]+)/miu', // Cell reference in another sheet + '/\.([^\.]+):\.([^\.]+)/miu', // Cell range reference + '/\.([^\.]+)/miu', // Simple cell reference + ], + [ + '$1!$2:$4', + '$1!$2:$3', + '$1!$2', + '$1:$2', + '$1', + ], + $excelAddress + ); + + return $excelAddress; + } + + public static function convertToExcelFormulaValue(string $openOfficeFormula): string + { + $temp = explode(Calculation::FORMULA_STRING_QUOTE, $openOfficeFormula); + $tKey = false; + $inMatrixBracesLevel = 0; + $inFunctionBracesLevel = 0; + foreach ($temp as &$value) { + // @var string $value + // Only replace in alternate array entries (i.e. non-quoted blocks) + // so that conversion isn't done in string values + if ($tKey = !$tKey) { + $value = (string) preg_replace( + [ + '/\[\$?([^\.]+)\.([^\.]+):\.([^\.]+)\]/miu', // Cell range reference in another sheet + '/\[\$?([^\.]+)\.([^\.]+)\]/miu', // Cell reference in another sheet + '/\[\.([^\.]+):\.([^\.]+)\]/miu', // Cell range reference + '/\[\.([^\.]+)\]/miu', // Simple cell reference + ], + [ + '$1!$2:$3', + '$1!$2', + '$1:$2', + '$1', + ], + $value + ); + // Convert references to defined names/formulae + $value = str_replace('$$', '', $value); + + // Convert ODS function argument separators to Excel function argument separators + $value = Calculation::translateSeparator(';', ',', $value, $inFunctionBracesLevel); + + // Convert ODS matrix separators to Excel matrix separators + $value = Calculation::translateSeparator( + ';', + ',', + $value, + $inMatrixBracesLevel, + Calculation::FORMULA_OPEN_MATRIX_BRACE, + Calculation::FORMULA_CLOSE_MATRIX_BRACE + ); + $value = Calculation::translateSeparator( + '|', + ';', + $value, + $inMatrixBracesLevel, + Calculation::FORMULA_OPEN_MATRIX_BRACE, + Calculation::FORMULA_CLOSE_MATRIX_BRACE + ); + + $value = (string) preg_replace('/COM\.MICROSOFT\./ui', '', $value); + } + } + + // Then rebuild the formula string + $excelFormula = implode('"', $temp); + + return $excelFormula; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/PageSettings.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/PageSettings.php new file mode 100644 index 0000000..4d2fd99 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/PageSettings.php @@ -0,0 +1,186 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Ods; + +use DOMDocument; +use PhpOffice\PhpSpreadsheet\Worksheet\PageSetup; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class PageSettings +{ + /** + * @var string + */ + private $officeNs; + + /** + * @var string + */ + private $stylesNs; + + /** + * @var string + */ + private $stylesFo; + + /** + * @var string + */ + private $tableNs; + + /** + * @var string[] + */ + private $tableStylesCrossReference = []; + + private $pageLayoutStyles = []; + + /** + * @var string[] + */ + private $masterStylesCrossReference = []; + + /** + * @var string[] + */ + private $masterPrintStylesCrossReference = []; + + public function __construct(DOMDocument $styleDom) + { + $this->setDomNameSpaces($styleDom); + $this->readPageSettingStyles($styleDom); + $this->readStyleMasterLookup($styleDom); + } + + private function setDomNameSpaces(DOMDocument $styleDom): void + { + $this->officeNs = $styleDom->lookupNamespaceUri('office'); + $this->stylesNs = $styleDom->lookupNamespaceUri('style'); + $this->stylesFo = $styleDom->lookupNamespaceUri('fo'); + $this->tableNs = $styleDom->lookupNamespaceUri('table'); + } + + private function readPageSettingStyles(DOMDocument $styleDom): void + { + $styles = $styleDom->getElementsByTagNameNS($this->officeNs, 'automatic-styles') + ->item(0) + ->getElementsByTagNameNS($this->stylesNs, 'page-layout'); + + foreach ($styles as $styleSet) { + $styleName = $styleSet->getAttributeNS($this->stylesNs, 'name'); + $pageLayoutProperties = $styleSet->getElementsByTagNameNS($this->stylesNs, 'page-layout-properties')[0]; + $styleOrientation = $pageLayoutProperties->getAttributeNS($this->stylesNs, 'print-orientation'); + $styleScale = $pageLayoutProperties->getAttributeNS($this->stylesNs, 'scale-to'); + $stylePrintOrder = $pageLayoutProperties->getAttributeNS($this->stylesNs, 'print-page-order'); + $centered = $pageLayoutProperties->getAttributeNS($this->stylesNs, 'table-centering'); + + $marginLeft = $pageLayoutProperties->getAttributeNS($this->stylesFo, 'margin-left'); + $marginRight = $pageLayoutProperties->getAttributeNS($this->stylesFo, 'margin-right'); + $marginTop = $pageLayoutProperties->getAttributeNS($this->stylesFo, 'margin-top'); + $marginBottom = $pageLayoutProperties->getAttributeNS($this->stylesFo, 'margin-bottom'); + $header = $styleSet->getElementsByTagNameNS($this->stylesNs, 'header-style')[0]; + $headerProperties = $header->getElementsByTagNameNS($this->stylesNs, 'header-footer-properties')[0]; + $marginHeader = isset($headerProperties) ? $headerProperties->getAttributeNS($this->stylesFo, 'min-height') : null; + $footer = $styleSet->getElementsByTagNameNS($this->stylesNs, 'footer-style')[0]; + $footerProperties = $footer->getElementsByTagNameNS($this->stylesNs, 'header-footer-properties')[0]; + $marginFooter = isset($footerProperties) ? $footerProperties->getAttributeNS($this->stylesFo, 'min-height') : null; + + $this->pageLayoutStyles[$styleName] = (object) [ + 'orientation' => $styleOrientation ?: PageSetup::ORIENTATION_DEFAULT, + 'scale' => $styleScale ?: 100, + 'printOrder' => $stylePrintOrder, + 'horizontalCentered' => $centered === 'horizontal' || $centered === 'both', + 'verticalCentered' => $centered === 'vertical' || $centered === 'both', + // margin size is already stored in inches, so no UOM conversion is required + 'marginLeft' => (float) $marginLeft ?? 0.7, + 'marginRight' => (float) $marginRight ?? 0.7, + 'marginTop' => (float) $marginTop ?? 0.3, + 'marginBottom' => (float) $marginBottom ?? 0.3, + 'marginHeader' => (float) $marginHeader ?? 0.45, + 'marginFooter' => (float) $marginFooter ?? 0.45, + ]; + } + } + + private function readStyleMasterLookup(DOMDocument $styleDom): void + { + $styleMasterLookup = $styleDom->getElementsByTagNameNS($this->officeNs, 'master-styles') + ->item(0) + ->getElementsByTagNameNS($this->stylesNs, 'master-page'); + + foreach ($styleMasterLookup as $styleMasterSet) { + $styleMasterName = $styleMasterSet->getAttributeNS($this->stylesNs, 'name'); + $pageLayoutName = $styleMasterSet->getAttributeNS($this->stylesNs, 'page-layout-name'); + $this->masterPrintStylesCrossReference[$styleMasterName] = $pageLayoutName; + } + } + + public function readStyleCrossReferences(DOMDocument $contentDom): void + { + $styleXReferences = $contentDom->getElementsByTagNameNS($this->officeNs, 'automatic-styles') + ->item(0) + ->getElementsByTagNameNS($this->stylesNs, 'style'); + + foreach ($styleXReferences as $styleXreferenceSet) { + $styleXRefName = $styleXreferenceSet->getAttributeNS($this->stylesNs, 'name'); + $stylePageLayoutName = $styleXreferenceSet->getAttributeNS($this->stylesNs, 'master-page-name'); + $styleFamilyName = $styleXreferenceSet->getAttributeNS($this->stylesNs, 'family'); + if (!empty($styleFamilyName) && $styleFamilyName === 'table') { + $styleVisibility = 'true'; + foreach ($styleXreferenceSet->getElementsByTagNameNS($this->stylesNs, 'table-properties') as $tableProperties) { + $styleVisibility = $tableProperties->getAttributeNS($this->tableNs, 'display'); + } + $this->tableStylesCrossReference[$styleXRefName] = $styleVisibility; + } + if (!empty($stylePageLayoutName)) { + $this->masterStylesCrossReference[$styleXRefName] = $stylePageLayoutName; + } + } + } + + public function setVisibilityForWorksheet(Worksheet $worksheet, string $styleName): void + { + if (!array_key_exists($styleName, $this->tableStylesCrossReference)) { + return; + } + + $worksheet->setSheetState( + $this->tableStylesCrossReference[$styleName] === 'false' + ? Worksheet::SHEETSTATE_HIDDEN + : Worksheet::SHEETSTATE_VISIBLE + ); + } + + public function setPrintSettingsForWorksheet(Worksheet $worksheet, string $styleName): void + { + if (!array_key_exists($styleName, $this->masterStylesCrossReference)) { + return; + } + $masterStyleName = $this->masterStylesCrossReference[$styleName]; + + if (!array_key_exists($masterStyleName, $this->masterPrintStylesCrossReference)) { + return; + } + $printSettingsIndex = $this->masterPrintStylesCrossReference[$masterStyleName]; + + if (!array_key_exists($printSettingsIndex, $this->pageLayoutStyles)) { + return; + } + $printSettings = $this->pageLayoutStyles[$printSettingsIndex]; + + $worksheet->getPageSetup() + ->setOrientation($printSettings->orientation ?? PageSetup::ORIENTATION_DEFAULT) + ->setPageOrder($printSettings->printOrder === 'ltr' ? PageSetup::PAGEORDER_OVER_THEN_DOWN : PageSetup::PAGEORDER_DOWN_THEN_OVER) + ->setScale((int) trim($printSettings->scale, '%')) + ->setHorizontalCentered($printSettings->horizontalCentered) + ->setVerticalCentered($printSettings->verticalCentered); + + $worksheet->getPageMargins() + ->setLeft($printSettings->marginLeft) + ->setRight($printSettings->marginRight) + ->setTop($printSettings->marginTop) + ->setBottom($printSettings->marginBottom) + ->setHeader($printSettings->marginHeader) + ->setFooter($printSettings->marginFooter); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/Properties.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/Properties.php new file mode 100644 index 0000000..4389f4b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/Properties.php @@ -0,0 +1,130 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Ods; + +use PhpOffice\PhpSpreadsheet\Document\Properties as DocumentProperties; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use SimpleXMLElement; + +class Properties +{ + private $spreadsheet; + + public function __construct(Spreadsheet $spreadsheet) + { + $this->spreadsheet = $spreadsheet; + } + + public function load(SimpleXMLElement $xml, $namespacesMeta): void + { + $docProps = $this->spreadsheet->getProperties(); + $officeProperty = $xml->children($namespacesMeta['office']); + foreach ($officeProperty as $officePropertyData) { + // @var \SimpleXMLElement $officePropertyData + if (isset($namespacesMeta['dc'])) { + $officePropertiesDC = $officePropertyData->children($namespacesMeta['dc']); + $this->setCoreProperties($docProps, $officePropertiesDC); + } + + $officePropertyMeta = null; + if (isset($namespacesMeta['dc'])) { + $officePropertyMeta = $officePropertyData->children($namespacesMeta['meta']); + } + $officePropertyMeta = $officePropertyMeta ?? []; + foreach ($officePropertyMeta as $propertyName => $propertyValue) { + $this->setMetaProperties($namespacesMeta, $propertyValue, $propertyName, $docProps); + } + } + } + + private function setCoreProperties(DocumentProperties $docProps, SimpleXMLElement $officePropertyDC): void + { + foreach ($officePropertyDC as $propertyName => $propertyValue) { + $propertyValue = (string) $propertyValue; + switch ($propertyName) { + case 'title': + $docProps->setTitle($propertyValue); + + break; + case 'subject': + $docProps->setSubject($propertyValue); + + break; + case 'creator': + $docProps->setCreator($propertyValue); + $docProps->setLastModifiedBy($propertyValue); + + break; + case 'date': + $docProps->setModified($propertyValue); + + break; + case 'description': + $docProps->setDescription($propertyValue); + + break; + } + } + } + + private function setMetaProperties( + $namespacesMeta, + SimpleXMLElement $propertyValue, + $propertyName, + DocumentProperties $docProps + ): void { + $propertyValueAttributes = $propertyValue->attributes($namespacesMeta['meta']); + $propertyValue = (string) $propertyValue; + switch ($propertyName) { + case 'initial-creator': + $docProps->setCreator($propertyValue); + + break; + case 'keyword': + $docProps->setKeywords($propertyValue); + + break; + case 'creation-date': + $docProps->setCreated($propertyValue); + + break; + case 'user-defined': + $this->setUserDefinedProperty($propertyValueAttributes, $propertyValue, $docProps); + + break; + } + } + + private function setUserDefinedProperty($propertyValueAttributes, $propertyValue, DocumentProperties $docProps): void + { + $propertyValueName = ''; + $propertyValueType = DocumentProperties::PROPERTY_TYPE_STRING; + foreach ($propertyValueAttributes as $key => $value) { + if ($key == 'name') { + $propertyValueName = (string) $value; + } elseif ($key == 'value-type') { + switch ($value) { + case 'date': + $propertyValue = DocumentProperties::convertProperty($propertyValue, 'date'); + $propertyValueType = DocumentProperties::PROPERTY_TYPE_DATE; + + break; + case 'boolean': + $propertyValue = DocumentProperties::convertProperty($propertyValue, 'bool'); + $propertyValueType = DocumentProperties::PROPERTY_TYPE_BOOLEAN; + + break; + case 'float': + $propertyValue = DocumentProperties::convertProperty($propertyValue, 'r4'); + $propertyValueType = DocumentProperties::PROPERTY_TYPE_FLOAT; + + break; + default: + $propertyValueType = DocumentProperties::PROPERTY_TYPE_STRING; + } + } + } + + $docProps->setCustomProperty($propertyValueName, $propertyValue, $propertyValueType); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Security/XmlScanner.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Security/XmlScanner.php new file mode 100644 index 0000000..8155b83 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Security/XmlScanner.php @@ -0,0 +1,157 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Security; + +use PhpOffice\PhpSpreadsheet\Reader; + +class XmlScanner +{ + /** + * String used to identify risky xml elements. + * + * @var string + */ + private $pattern; + + private $callback; + + private static $libxmlDisableEntityLoaderValue; + + /** + * @var bool + */ + private static $shutdownRegistered = false; + + public function __construct($pattern = '<!DOCTYPE') + { + $this->pattern = $pattern; + + $this->disableEntityLoaderCheck(); + + // A fatal error will bypass the destructor, so we register a shutdown here + if (!self::$shutdownRegistered) { + self::$shutdownRegistered = true; + register_shutdown_function([__CLASS__, 'shutdown']); + } + } + + public static function getInstance(Reader\IReader $reader) + { + switch (true) { + case $reader instanceof Reader\Html: + return new self('<!ENTITY'); + case $reader instanceof Reader\Xlsx: + case $reader instanceof Reader\Xml: + case $reader instanceof Reader\Ods: + case $reader instanceof Reader\Gnumeric: + return new self('<!DOCTYPE'); + default: + return new self('<!DOCTYPE'); + } + } + + public static function threadSafeLibxmlDisableEntityLoaderAvailability() + { + if (PHP_MAJOR_VERSION == 7) { + switch (PHP_MINOR_VERSION) { + case 2: + return PHP_RELEASE_VERSION >= 1; + case 1: + return PHP_RELEASE_VERSION >= 13; + case 0: + return PHP_RELEASE_VERSION >= 27; + } + + return true; + } + + return false; + } + + private function disableEntityLoaderCheck(): void + { + if (\PHP_VERSION_ID < 80000) { + $libxmlDisableEntityLoaderValue = libxml_disable_entity_loader(true); + + if (self::$libxmlDisableEntityLoaderValue === null) { + self::$libxmlDisableEntityLoaderValue = $libxmlDisableEntityLoaderValue; + } + } + } + + public static function shutdown(): void + { + if (self::$libxmlDisableEntityLoaderValue !== null && \PHP_VERSION_ID < 80000) { + libxml_disable_entity_loader(self::$libxmlDisableEntityLoaderValue); + self::$libxmlDisableEntityLoaderValue = null; + } + } + + public function __destruct() + { + self::shutdown(); + } + + public function setAdditionalCallback(callable $callback): void + { + $this->callback = $callback; + } + + private function toUtf8($xml) + { + $pattern = '/encoding="(.*?)"/'; + $result = preg_match($pattern, $xml, $matches); + $charset = strtoupper($result ? $matches[1] : 'UTF-8'); + + if ($charset !== 'UTF-8') { + $xml = mb_convert_encoding($xml, 'UTF-8', $charset); + + $result = preg_match($pattern, $xml, $matches); + $charset = strtoupper($result ? $matches[1] : 'UTF-8'); + if ($charset !== 'UTF-8') { + throw new Reader\Exception('Suspicious Double-encoded XML, spreadsheet file load() aborted to prevent XXE/XEE attacks'); + } + } + + return $xml; + } + + /** + * Scan the XML for use of <!ENTITY to prevent XXE/XEE attacks. + * + * @param mixed $xml + * + * @return string + */ + public function scan($xml) + { + $this->disableEntityLoaderCheck(); + + $xml = $this->toUtf8($xml); + + // Don't rely purely on libxml_disable_entity_loader() + $pattern = '/\\0?' . implode('\\0?', str_split($this->pattern)) . '\\0?/'; + + if (preg_match($pattern, $xml)) { + throw new Reader\Exception('Detected use of ENTITY in XML, spreadsheet file load() aborted to prevent XXE/XEE attacks'); + } + + if ($this->callback !== null && is_callable($this->callback)) { + $xml = call_user_func($this->callback, $xml); + } + + return $xml; + } + + /** + * Scan theXML for use of <!ENTITY to prevent XXE/XEE attacks. + * + * @param string $filestream + * + * @return string + */ + public function scanFile($filestream) + { + return $this->scan(file_get_contents($filestream)); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Slk.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Slk.php new file mode 100644 index 0000000..9de4013 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Slk.php @@ -0,0 +1,592 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Reader\Exception as ReaderException; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Style\Border; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class Slk extends BaseReader +{ + /** + * Input encoding. + * + * @var string + */ + private $inputEncoding = 'ANSI'; + + /** + * Sheet index to read. + * + * @var int + */ + private $sheetIndex = 0; + + /** + * Formats. + * + * @var array + */ + private $formats = []; + + /** + * Format Count. + * + * @var int + */ + private $format = 0; + + /** + * Fonts. + * + * @var array + */ + private $fonts = []; + + /** + * Font Count. + * + * @var int + */ + private $fontcount = 0; + + /** + * Create a new SYLK Reader instance. + */ + public function __construct() + { + parent::__construct(); + } + + /** + * Validate that the current file is a SYLK file. + */ + public function canRead(string $filename): bool + { + try { + $this->openFile($filename); + } catch (ReaderException $e) { + return false; + } + + // Read sample data (first 2 KB will do) + $data = (string) fread($this->fileHandle, 2048); + + // Count delimiters in file + $delimiterCount = substr_count($data, ';'); + $hasDelimiter = $delimiterCount > 0; + + // Analyze first line looking for ID; signature + $lines = explode("\n", $data); + $hasId = substr($lines[0], 0, 4) === 'ID;P'; + + fclose($this->fileHandle); + + return $hasDelimiter && $hasId; + } + + private function canReadOrBust(string $filename): void + { + if (!$this->canRead($filename)) { + throw new ReaderException($filename . ' is an Invalid SYLK file.'); + } + $this->openFile($filename); + } + + /** + * Set input encoding. + * + * @deprecated no use is made of this property + * + * @param string $inputEncoding Input encoding, eg: 'ANSI' + * + * @return $this + * + * @codeCoverageIgnore + */ + public function setInputEncoding($inputEncoding) + { + $this->inputEncoding = $inputEncoding; + + return $this; + } + + /** + * Get input encoding. + * + * @deprecated no use is made of this property + * + * @return string + * + * @codeCoverageIgnore + */ + public function getInputEncoding() + { + return $this->inputEncoding; + } + + /** + * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns). + * + * @param string $filename + * + * @return array + */ + public function listWorksheetInfo($filename) + { + // Open file + $this->canReadOrBust($filename); + $fileHandle = $this->fileHandle; + rewind($fileHandle); + + $worksheetInfo = []; + $worksheetInfo[0]['worksheetName'] = basename($filename, '.slk'); + + // loop through one row (line) at a time in the file + $rowIndex = 0; + $columnIndex = 0; + while (($rowData = fgets($fileHandle)) !== false) { + $columnIndex = 0; + + // convert SYLK encoded $rowData to UTF-8 + $rowData = StringHelper::SYLKtoUTF8($rowData); + + // explode each row at semicolons while taking into account that literal semicolon (;) + // is escaped like this (;;) + $rowData = explode("\t", str_replace('¤', ';', str_replace(';', "\t", str_replace(';;', '¤', rtrim($rowData))))); + + $dataType = array_shift($rowData); + if ($dataType == 'B') { + foreach ($rowData as $rowDatum) { + switch ($rowDatum[0]) { + case 'X': + $columnIndex = (int) substr($rowDatum, 1) - 1; + + break; + case 'Y': + $rowIndex = substr($rowDatum, 1); + + break; + } + } + + break; + } + } + + $worksheetInfo[0]['lastColumnIndex'] = $columnIndex; + $worksheetInfo[0]['totalRows'] = $rowIndex; + $worksheetInfo[0]['lastColumnLetter'] = Coordinate::stringFromColumnIndex($worksheetInfo[0]['lastColumnIndex'] + 1); + $worksheetInfo[0]['totalColumns'] = $worksheetInfo[0]['lastColumnIndex'] + 1; + + // Close file + fclose($fileHandle); + + return $worksheetInfo; + } + + /** + * Loads PhpSpreadsheet from file. + */ + protected function loadSpreadsheetFromFile(string $filename): Spreadsheet + { + // Create new Spreadsheet + $spreadsheet = new Spreadsheet(); + + // Load into this instance + return $this->loadIntoExisting($filename, $spreadsheet); + } + + private const COLOR_ARRAY = [ + 'FF00FFFF', // 0 - cyan + 'FF000000', // 1 - black + 'FFFFFFFF', // 2 - white + 'FFFF0000', // 3 - red + 'FF00FF00', // 4 - green + 'FF0000FF', // 5 - blue + 'FFFFFF00', // 6 - yellow + 'FFFF00FF', // 7 - magenta + ]; + + private const FONT_STYLE_MAPPINGS = [ + 'B' => 'bold', + 'I' => 'italic', + 'U' => 'underline', + ]; + + private function processFormula(string $rowDatum, bool &$hasCalculatedValue, string &$cellDataFormula, string $row, string $column): void + { + $cellDataFormula = '=' . substr($rowDatum, 1); + // Convert R1C1 style references to A1 style references (but only when not quoted) + $temp = explode('"', $cellDataFormula); + $key = false; + foreach ($temp as &$value) { + // Only count/replace in alternate array entries + $key = !$key; + if ($key) { + preg_match_all('/(R(\[?-?\d*\]?))(C(\[?-?\d*\]?))/', $value, $cellReferences, PREG_SET_ORDER + PREG_OFFSET_CAPTURE); + // Reverse the matches array, otherwise all our offsets will become incorrect if we modify our way + // through the formula from left to right. Reversing means that we work right to left.through + // the formula + $cellReferences = array_reverse($cellReferences); + // Loop through each R1C1 style reference in turn, converting it to its A1 style equivalent, + // then modify the formula to use that new reference + foreach ($cellReferences as $cellReference) { + $rowReference = $cellReference[2][0]; + // Empty R reference is the current row + if ($rowReference == '') { + $rowReference = $row; + } + // Bracketed R references are relative to the current row + if ($rowReference[0] == '[') { + $rowReference = (int) $row + (int) trim($rowReference, '[]'); + } + $columnReference = $cellReference[4][0]; + // Empty C reference is the current column + if ($columnReference == '') { + $columnReference = $column; + } + // Bracketed C references are relative to the current column + if ($columnReference[0] == '[') { + $columnReference = (int) $column + (int) trim($columnReference, '[]'); + } + $A1CellReference = Coordinate::stringFromColumnIndex($columnReference) . $rowReference; + + $value = substr_replace($value, $A1CellReference, $cellReference[0][1], strlen($cellReference[0][0])); + } + } + } + unset($value); + // Then rebuild the formula string + $cellDataFormula = implode('"', $temp); + $hasCalculatedValue = true; + } + + private function processCRecord(array $rowData, Spreadsheet &$spreadsheet, string &$row, string &$column): void + { + // Read cell value data + $hasCalculatedValue = false; + $cellDataFormula = $cellData = ''; + foreach ($rowData as $rowDatum) { + switch ($rowDatum[0]) { + case 'C': + case 'X': + $column = substr($rowDatum, 1); + + break; + case 'R': + case 'Y': + $row = substr($rowDatum, 1); + + break; + case 'K': + $cellData = substr($rowDatum, 1); + + break; + case 'E': + $this->processFormula($rowDatum, $hasCalculatedValue, $cellDataFormula, $row, $column); + + break; + case 'A': + $comment = substr($rowDatum, 1); + $columnLetter = Coordinate::stringFromColumnIndex((int) $column); + $spreadsheet->getActiveSheet() + ->getComment("$columnLetter$row") + ->getText() + ->createText($comment); + + break; + } + } + $columnLetter = Coordinate::stringFromColumnIndex((int) $column); + $cellData = Calculation::unwrapResult($cellData); + + // Set cell value + $this->processCFinal($spreadsheet, $hasCalculatedValue, $cellDataFormula, $cellData, "$columnLetter$row"); + } + + private function processCFinal(Spreadsheet &$spreadsheet, bool $hasCalculatedValue, string $cellDataFormula, string $cellData, string $coordinate): void + { + // Set cell value + $spreadsheet->getActiveSheet()->getCell($coordinate)->setValue(($hasCalculatedValue) ? $cellDataFormula : $cellData); + if ($hasCalculatedValue) { + $cellData = Calculation::unwrapResult($cellData); + $spreadsheet->getActiveSheet()->getCell($coordinate)->setCalculatedValue($cellData); + } + } + + private function processFRecord(array $rowData, Spreadsheet &$spreadsheet, string &$row, string &$column): void + { + // Read cell formatting + $formatStyle = $columnWidth = ''; + $startCol = $endCol = ''; + $fontStyle = ''; + $styleData = []; + foreach ($rowData as $rowDatum) { + switch ($rowDatum[0]) { + case 'C': + case 'X': + $column = substr($rowDatum, 1); + + break; + case 'R': + case 'Y': + $row = substr($rowDatum, 1); + + break; + case 'P': + $formatStyle = $rowDatum; + + break; + case 'W': + [$startCol, $endCol, $columnWidth] = explode(' ', substr($rowDatum, 1)); + + break; + case 'S': + $this->styleSettings($rowDatum, $styleData, $fontStyle); + + break; + } + } + $this->addFormats($spreadsheet, $formatStyle, $row, $column); + $this->addFonts($spreadsheet, $fontStyle, $row, $column); + $this->addStyle($spreadsheet, $styleData, $row, $column); + $this->addWidth($spreadsheet, $columnWidth, $startCol, $endCol); + } + + private const STYLE_SETTINGS_FONT = ['D' => 'bold', 'I' => 'italic']; + + private const STYLE_SETTINGS_BORDER = [ + 'B' => 'bottom', + 'L' => 'left', + 'R' => 'right', + 'T' => 'top', + ]; + + private function styleSettings(string $rowDatum, array &$styleData, string &$fontStyle): void + { + $styleSettings = substr($rowDatum, 1); + $iMax = strlen($styleSettings); + for ($i = 0; $i < $iMax; ++$i) { + $char = $styleSettings[$i]; + if (array_key_exists($char, self::STYLE_SETTINGS_FONT)) { + $styleData['font'][self::STYLE_SETTINGS_FONT[$char]] = true; + } elseif (array_key_exists($char, self::STYLE_SETTINGS_BORDER)) { + $styleData['borders'][self::STYLE_SETTINGS_BORDER[$char]]['borderStyle'] = Border::BORDER_THIN; + } elseif ($char == 'S') { + $styleData['fill']['fillType'] = \PhpOffice\PhpSpreadsheet\Style\Fill::FILL_PATTERN_GRAY125; + } elseif ($char == 'M') { + if (preg_match('/M([1-9]\\d*)/', $styleSettings, $matches)) { + $fontStyle = $matches[1]; + } + } + } + } + + private function addFormats(Spreadsheet &$spreadsheet, string $formatStyle, string $row, string $column): void + { + if ($formatStyle && $column > '' && $row > '') { + $columnLetter = Coordinate::stringFromColumnIndex((int) $column); + if (isset($this->formats[$formatStyle])) { + $spreadsheet->getActiveSheet()->getStyle($columnLetter . $row)->applyFromArray($this->formats[$formatStyle]); + } + } + } + + private function addFonts(Spreadsheet &$spreadsheet, string $fontStyle, string $row, string $column): void + { + if ($fontStyle && $column > '' && $row > '') { + $columnLetter = Coordinate::stringFromColumnIndex((int) $column); + if (isset($this->fonts[$fontStyle])) { + $spreadsheet->getActiveSheet()->getStyle($columnLetter . $row)->applyFromArray($this->fonts[$fontStyle]); + } + } + } + + private function addStyle(Spreadsheet &$spreadsheet, array $styleData, string $row, string $column): void + { + if ((!empty($styleData)) && $column > '' && $row > '') { + $columnLetter = Coordinate::stringFromColumnIndex((int) $column); + $spreadsheet->getActiveSheet()->getStyle($columnLetter . $row)->applyFromArray($styleData); + } + } + + private function addWidth(Spreadsheet $spreadsheet, string $columnWidth, string $startCol, string $endCol): void + { + if ($columnWidth > '') { + if ($startCol == $endCol) { + $startCol = Coordinate::stringFromColumnIndex((int) $startCol); + $spreadsheet->getActiveSheet()->getColumnDimension($startCol)->setWidth((float) $columnWidth); + } else { + $startCol = Coordinate::stringFromColumnIndex((int) $startCol); + $endCol = Coordinate::stringFromColumnIndex((int) $endCol); + $spreadsheet->getActiveSheet()->getColumnDimension($startCol)->setWidth((float) $columnWidth); + do { + $spreadsheet->getActiveSheet()->getColumnDimension(++$startCol)->setWidth((float) $columnWidth); + } while ($startCol !== $endCol); + } + } + } + + private function processPRecord(array $rowData, Spreadsheet &$spreadsheet): void + { + // Read shared styles + $formatArray = []; + $fromFormats = ['\-', '\ ']; + $toFormats = ['-', ' ']; + foreach ($rowData as $rowDatum) { + switch ($rowDatum[0]) { + case 'P': + $formatArray['numberFormat']['formatCode'] = str_replace($fromFormats, $toFormats, substr($rowDatum, 1)); + + break; + case 'E': + case 'F': + $formatArray['font']['name'] = substr($rowDatum, 1); + + break; + case 'M': + $formatArray['font']['size'] = ((float) substr($rowDatum, 1)) / 20; + + break; + case 'L': + $this->processPColors($rowDatum, $formatArray); + + break; + case 'S': + $this->processPFontStyles($rowDatum, $formatArray); + + break; + } + } + $this->processPFinal($spreadsheet, $formatArray); + } + + private function processPColors(string $rowDatum, array &$formatArray): void + { + if (preg_match('/L([1-9]\\d*)/', $rowDatum, $matches)) { + $fontColor = $matches[1] % 8; + $formatArray['font']['color']['argb'] = self::COLOR_ARRAY[$fontColor]; + } + } + + private function processPFontStyles(string $rowDatum, array &$formatArray): void + { + $styleSettings = substr($rowDatum, 1); + $iMax = strlen($styleSettings); + for ($i = 0; $i < $iMax; ++$i) { + if (array_key_exists($styleSettings[$i], self::FONT_STYLE_MAPPINGS)) { + $formatArray['font'][self::FONT_STYLE_MAPPINGS[$styleSettings[$i]]] = true; + } + } + } + + private function processPFinal(Spreadsheet &$spreadsheet, array $formatArray): void + { + if (array_key_exists('numberFormat', $formatArray)) { + $this->formats['P' . $this->format] = $formatArray; + ++$this->format; + } elseif (array_key_exists('font', $formatArray)) { + ++$this->fontcount; + $this->fonts[$this->fontcount] = $formatArray; + if ($this->fontcount === 1) { + $spreadsheet->getDefaultStyle()->applyFromArray($formatArray); + } + } + } + + /** + * Loads PhpSpreadsheet from file into PhpSpreadsheet instance. + * + * @param string $filename + * + * @return Spreadsheet + */ + public function loadIntoExisting($filename, Spreadsheet $spreadsheet) + { + // Open file + $this->canReadOrBust($filename); + $fileHandle = $this->fileHandle; + rewind($fileHandle); + + // Create new Worksheets + while ($spreadsheet->getSheetCount() <= $this->sheetIndex) { + $spreadsheet->createSheet(); + } + $spreadsheet->setActiveSheetIndex($this->sheetIndex); + $spreadsheet->getActiveSheet()->setTitle(substr(basename($filename, '.slk'), 0, Worksheet::SHEET_TITLE_MAXIMUM_LENGTH)); + + // Loop through file + $column = $row = ''; + + // loop through one row (line) at a time in the file + while (($rowDataTxt = fgets($fileHandle)) !== false) { + // convert SYLK encoded $rowData to UTF-8 + $rowDataTxt = StringHelper::SYLKtoUTF8($rowDataTxt); + + // explode each row at semicolons while taking into account that literal semicolon (;) + // is escaped like this (;;) + $rowData = explode("\t", str_replace('¤', ';', str_replace(';', "\t", str_replace(';;', '¤', rtrim($rowDataTxt))))); + + $dataType = array_shift($rowData); + if ($dataType == 'P') { + // Read shared styles + $this->processPRecord($rowData, $spreadsheet); + } elseif ($dataType == 'C') { + // Read cell value data + $this->processCRecord($rowData, $spreadsheet, $row, $column); + } elseif ($dataType == 'F') { + // Read cell formatting + $this->processFRecord($rowData, $spreadsheet, $row, $column); + } else { + $this->columnRowFromRowData($rowData, $column, $row); + } + } + + // Close file + fclose($fileHandle); + + // Return + return $spreadsheet; + } + + private function columnRowFromRowData(array $rowData, string &$column, string &$row): void + { + foreach ($rowData as $rowDatum) { + $char0 = $rowDatum[0]; + if ($char0 === 'X' || $char0 == 'C') { + $column = substr($rowDatum, 1); + } elseif ($char0 === 'Y' || $char0 == 'R') { + $row = substr($rowDatum, 1); + } + } + } + + /** + * Get sheet index. + * + * @return int + */ + public function getSheetIndex() + { + return $this->sheetIndex; + } + + /** + * Set sheet index. + * + * @param int $sheetIndex Sheet index + * + * @return $this + */ + public function setSheetIndex($sheetIndex) + { + $this->sheetIndex = $sheetIndex; + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls.php new file mode 100644 index 0000000..9f8a3ac --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls.php @@ -0,0 +1,8095 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Cell\DataType; +use PhpOffice\PhpSpreadsheet\Cell\DataValidation; +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; +use PhpOffice\PhpSpreadsheet\NamedRange; +use PhpOffice\PhpSpreadsheet\Reader\Xls\ConditionalFormatting; +use PhpOffice\PhpSpreadsheet\Reader\Xls\Style\CellFont; +use PhpOffice\PhpSpreadsheet\Reader\Xls\Style\FillPattern; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\Shared\CodePage; +use PhpOffice\PhpSpreadsheet\Shared\Date; +use PhpOffice\PhpSpreadsheet\Shared\Escher; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE; +use PhpOffice\PhpSpreadsheet\Shared\File; +use PhpOffice\PhpSpreadsheet\Shared\OLE; +use PhpOffice\PhpSpreadsheet\Shared\OLERead; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Shared\Xls as SharedXls; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Style\Alignment; +use PhpOffice\PhpSpreadsheet\Style\Borders; +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Style\Fill; +use PhpOffice\PhpSpreadsheet\Style\Font; +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; +use PhpOffice\PhpSpreadsheet\Style\Protection; +use PhpOffice\PhpSpreadsheet\Style\Style; +use PhpOffice\PhpSpreadsheet\Worksheet\MemoryDrawing; +use PhpOffice\PhpSpreadsheet\Worksheet\PageSetup; +use PhpOffice\PhpSpreadsheet\Worksheet\SheetView; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +// Original file header of ParseXL (used as the base for this class): +// -------------------------------------------------------------------------------- +// Adapted from Excel_Spreadsheet_Reader developed by users bizon153, +// trex005, and mmp11 (SourceForge.net) +// https://sourceforge.net/projects/phpexcelreader/ +// Primary changes made by canyoncasa (dvc) for ParseXL 1.00 ... +// Modelled moreso after Perl Excel Parse/Write modules +// Added Parse_Excel_Spreadsheet object +// Reads a whole worksheet or tab as row,column array or as +// associated hash of indexed rows and named column fields +// Added variables for worksheet (tab) indexes and names +// Added an object call for loading individual woorksheets +// Changed default indexing defaults to 0 based arrays +// Fixed date/time and percent formats +// Includes patches found at SourceForge... +// unicode patch by nobody +// unpack("d") machine depedency patch by matchy +// boundsheet utf16 patch by bjaenichen +// Renamed functions for shorter names +// General code cleanup and rigor, including <80 column width +// Included a testcase Excel file and PHP example calls +// Code works for PHP 5.x + +// Primary changes made by canyoncasa (dvc) for ParseXL 1.10 ... +// http://sourceforge.net/tracker/index.php?func=detail&aid=1466964&group_id=99160&atid=623334 +// Decoding of formula conditions, results, and tokens. +// Support for user-defined named cells added as an array "namedcells" +// Patch code for user-defined named cells supports single cells only. +// NOTE: this patch only works for BIFF8 as BIFF5-7 use a different +// external sheet reference structure +class Xls extends BaseReader +{ + // ParseXL definitions + const XLS_BIFF8 = 0x0600; + const XLS_BIFF7 = 0x0500; + const XLS_WORKBOOKGLOBALS = 0x0005; + const XLS_WORKSHEET = 0x0010; + + // record identifiers + const XLS_TYPE_FORMULA = 0x0006; + const XLS_TYPE_EOF = 0x000a; + const XLS_TYPE_PROTECT = 0x0012; + const XLS_TYPE_OBJECTPROTECT = 0x0063; + const XLS_TYPE_SCENPROTECT = 0x00dd; + const XLS_TYPE_PASSWORD = 0x0013; + const XLS_TYPE_HEADER = 0x0014; + const XLS_TYPE_FOOTER = 0x0015; + const XLS_TYPE_EXTERNSHEET = 0x0017; + const XLS_TYPE_DEFINEDNAME = 0x0018; + const XLS_TYPE_VERTICALPAGEBREAKS = 0x001a; + const XLS_TYPE_HORIZONTALPAGEBREAKS = 0x001b; + const XLS_TYPE_NOTE = 0x001c; + const XLS_TYPE_SELECTION = 0x001d; + const XLS_TYPE_DATEMODE = 0x0022; + const XLS_TYPE_EXTERNNAME = 0x0023; + const XLS_TYPE_LEFTMARGIN = 0x0026; + const XLS_TYPE_RIGHTMARGIN = 0x0027; + const XLS_TYPE_TOPMARGIN = 0x0028; + const XLS_TYPE_BOTTOMMARGIN = 0x0029; + const XLS_TYPE_PRINTGRIDLINES = 0x002b; + const XLS_TYPE_FILEPASS = 0x002f; + const XLS_TYPE_FONT = 0x0031; + const XLS_TYPE_CONTINUE = 0x003c; + const XLS_TYPE_PANE = 0x0041; + const XLS_TYPE_CODEPAGE = 0x0042; + const XLS_TYPE_DEFCOLWIDTH = 0x0055; + const XLS_TYPE_OBJ = 0x005d; + const XLS_TYPE_COLINFO = 0x007d; + const XLS_TYPE_IMDATA = 0x007f; + const XLS_TYPE_SHEETPR = 0x0081; + const XLS_TYPE_HCENTER = 0x0083; + const XLS_TYPE_VCENTER = 0x0084; + const XLS_TYPE_SHEET = 0x0085; + const XLS_TYPE_PALETTE = 0x0092; + const XLS_TYPE_SCL = 0x00a0; + const XLS_TYPE_PAGESETUP = 0x00a1; + const XLS_TYPE_MULRK = 0x00bd; + const XLS_TYPE_MULBLANK = 0x00be; + const XLS_TYPE_DBCELL = 0x00d7; + const XLS_TYPE_XF = 0x00e0; + const XLS_TYPE_MERGEDCELLS = 0x00e5; + const XLS_TYPE_MSODRAWINGGROUP = 0x00eb; + const XLS_TYPE_MSODRAWING = 0x00ec; + const XLS_TYPE_SST = 0x00fc; + const XLS_TYPE_LABELSST = 0x00fd; + const XLS_TYPE_EXTSST = 0x00ff; + const XLS_TYPE_EXTERNALBOOK = 0x01ae; + const XLS_TYPE_DATAVALIDATIONS = 0x01b2; + const XLS_TYPE_TXO = 0x01b6; + const XLS_TYPE_HYPERLINK = 0x01b8; + const XLS_TYPE_DATAVALIDATION = 0x01be; + const XLS_TYPE_DIMENSION = 0x0200; + const XLS_TYPE_BLANK = 0x0201; + const XLS_TYPE_NUMBER = 0x0203; + const XLS_TYPE_LABEL = 0x0204; + const XLS_TYPE_BOOLERR = 0x0205; + const XLS_TYPE_STRING = 0x0207; + const XLS_TYPE_ROW = 0x0208; + const XLS_TYPE_INDEX = 0x020b; + const XLS_TYPE_ARRAY = 0x0221; + const XLS_TYPE_DEFAULTROWHEIGHT = 0x0225; + const XLS_TYPE_WINDOW2 = 0x023e; + const XLS_TYPE_RK = 0x027e; + const XLS_TYPE_STYLE = 0x0293; + const XLS_TYPE_FORMAT = 0x041e; + const XLS_TYPE_SHAREDFMLA = 0x04bc; + const XLS_TYPE_BOF = 0x0809; + const XLS_TYPE_SHEETPROTECTION = 0x0867; + const XLS_TYPE_RANGEPROTECTION = 0x0868; + const XLS_TYPE_SHEETLAYOUT = 0x0862; + const XLS_TYPE_XFEXT = 0x087d; + const XLS_TYPE_PAGELAYOUTVIEW = 0x088b; + const XLS_TYPE_CFHEADER = 0x01b0; + const XLS_TYPE_CFRULE = 0x01b1; + const XLS_TYPE_UNKNOWN = 0xffff; + + // Encryption type + const MS_BIFF_CRYPTO_NONE = 0; + const MS_BIFF_CRYPTO_XOR = 1; + const MS_BIFF_CRYPTO_RC4 = 2; + + // Size of stream blocks when using RC4 encryption + const REKEY_BLOCK = 0x400; + + /** + * Summary Information stream data. + * + * @var string + */ + private $summaryInformation; + + /** + * Extended Summary Information stream data. + * + * @var string + */ + private $documentSummaryInformation; + + /** + * Workbook stream data. (Includes workbook globals substream as well as sheet substreams). + * + * @var string + */ + private $data; + + /** + * Size in bytes of $this->data. + * + * @var int + */ + private $dataSize; + + /** + * Current position in stream. + * + * @var int + */ + private $pos; + + /** + * Workbook to be returned by the reader. + * + * @var Spreadsheet + */ + private $spreadsheet; + + /** + * Worksheet that is currently being built by the reader. + * + * @var Worksheet + */ + private $phpSheet; + + /** + * BIFF version. + * + * @var int + */ + private $version; + + /** + * Codepage set in the Excel file being read. Only important for BIFF5 (Excel 5.0 - Excel 95) + * For BIFF8 (Excel 97 - Excel 2003) this will always have the value 'UTF-16LE'. + * + * @var string + */ + private $codepage; + + /** + * Shared formats. + * + * @var array + */ + private $formats; + + /** + * Shared fonts. + * + * @var Font[] + */ + private $objFonts; + + /** + * Color palette. + * + * @var array + */ + private $palette; + + /** + * Worksheets. + * + * @var array + */ + private $sheets; + + /** + * External books. + * + * @var array + */ + private $externalBooks; + + /** + * REF structures. Only applies to BIFF8. + * + * @var array + */ + private $ref; + + /** + * External names. + * + * @var array + */ + private $externalNames; + + /** + * Defined names. + * + * @var array + */ + private $definedname; + + /** + * Shared strings. Only applies to BIFF8. + * + * @var array + */ + private $sst; + + /** + * Panes are frozen? (in sheet currently being read). See WINDOW2 record. + * + * @var bool + */ + private $frozen; + + /** + * Fit printout to number of pages? (in sheet currently being read). See SHEETPR record. + * + * @var bool + */ + private $isFitToPages; + + /** + * Objects. One OBJ record contributes with one entry. + * + * @var array + */ + private $objs; + + /** + * Text Objects. One TXO record corresponds with one entry. + * + * @var array + */ + private $textObjects; + + /** + * Cell Annotations (BIFF8). + * + * @var array + */ + private $cellNotes; + + /** + * The combined MSODRAWINGGROUP data. + * + * @var string + */ + private $drawingGroupData; + + /** + * The combined MSODRAWING data (per sheet). + * + * @var string + */ + private $drawingData; + + /** + * Keep track of XF index. + * + * @var int + */ + private $xfIndex; + + /** + * Mapping of XF index (that is a cell XF) to final index in cellXf collection. + * + * @var array + */ + private $mapCellXfIndex; + + /** + * Mapping of XF index (that is a style XF) to final index in cellStyleXf collection. + * + * @var array + */ + private $mapCellStyleXfIndex; + + /** + * The shared formulas in a sheet. One SHAREDFMLA record contributes with one value. + * + * @var array + */ + private $sharedFormulas; + + /** + * The shared formula parts in a sheet. One FORMULA record contributes with one value if it + * refers to a shared formula. + * + * @var array + */ + private $sharedFormulaParts; + + /** + * The type of encryption in use. + * + * @var int + */ + private $encryption = 0; + + /** + * The position in the stream after which contents are encrypted. + * + * @var int + */ + private $encryptionStartPos = 0; + + /** + * The current RC4 decryption object. + * + * @var Xls\RC4 + */ + private $rc4Key; + + /** + * The position in the stream that the RC4 decryption object was left at. + * + * @var int + */ + private $rc4Pos = 0; + + /** + * The current MD5 context state. + * + * @var string + */ + private $md5Ctxt; + + /** + * @var int + */ + private $textObjRef; + + /** + * @var string + */ + private $baseCell; + + /** + * Create a new Xls Reader instance. + */ + public function __construct() + { + parent::__construct(); + } + + /** + * Can the current IReader read the file? + */ + public function canRead(string $filename): bool + { + if (!File::testFileNoThrow($filename)) { + return false; + } + + try { + // Use ParseXL for the hard work. + $ole = new OLERead(); + + // get excel data + $ole->read($filename); + + return true; + } catch (PhpSpreadsheetException $e) { + return false; + } + } + + public function setCodepage(string $codepage): void + { + if (!CodePage::validate($codepage)) { + throw new PhpSpreadsheetException('Unknown codepage: ' . $codepage); + } + + $this->codepage = $codepage; + } + + /** + * Reads names of the worksheets from a file, without parsing the whole file to a PhpSpreadsheet object. + * + * @param string $filename + * + * @return array + */ + public function listWorksheetNames($filename) + { + File::assertFile($filename); + + $worksheetNames = []; + + // Read the OLE file + $this->loadOLE($filename); + + // total byte size of Excel data (workbook global substream + sheet substreams) + $this->dataSize = strlen($this->data); + + $this->pos = 0; + $this->sheets = []; + + // Parse Workbook Global Substream + while ($this->pos < $this->dataSize) { + $code = self::getUInt2d($this->data, $this->pos); + + switch ($code) { + case self::XLS_TYPE_BOF: + $this->readBof(); + + break; + case self::XLS_TYPE_SHEET: + $this->readSheet(); + + break; + case self::XLS_TYPE_EOF: + $this->readDefault(); + + break 2; + default: + $this->readDefault(); + + break; + } + } + + foreach ($this->sheets as $sheet) { + if ($sheet['sheetType'] != 0x00) { + // 0x00: Worksheet, 0x02: Chart, 0x06: Visual Basic module + continue; + } + + $worksheetNames[] = $sheet['name']; + } + + return $worksheetNames; + } + + /** + * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns). + * + * @param string $filename + * + * @return array + */ + public function listWorksheetInfo($filename) + { + File::assertFile($filename); + + $worksheetInfo = []; + + // Read the OLE file + $this->loadOLE($filename); + + // total byte size of Excel data (workbook global substream + sheet substreams) + $this->dataSize = strlen($this->data); + + // initialize + $this->pos = 0; + $this->sheets = []; + + // Parse Workbook Global Substream + while ($this->pos < $this->dataSize) { + $code = self::getUInt2d($this->data, $this->pos); + + switch ($code) { + case self::XLS_TYPE_BOF: + $this->readBof(); + + break; + case self::XLS_TYPE_SHEET: + $this->readSheet(); + + break; + case self::XLS_TYPE_EOF: + $this->readDefault(); + + break 2; + default: + $this->readDefault(); + + break; + } + } + + // Parse the individual sheets + foreach ($this->sheets as $sheet) { + if ($sheet['sheetType'] != 0x00) { + // 0x00: Worksheet + // 0x02: Chart + // 0x06: Visual Basic module + continue; + } + + $tmpInfo = []; + $tmpInfo['worksheetName'] = $sheet['name']; + $tmpInfo['lastColumnLetter'] = 'A'; + $tmpInfo['lastColumnIndex'] = 0; + $tmpInfo['totalRows'] = 0; + $tmpInfo['totalColumns'] = 0; + + $this->pos = $sheet['offset']; + + while ($this->pos <= $this->dataSize - 4) { + $code = self::getUInt2d($this->data, $this->pos); + + switch ($code) { + case self::XLS_TYPE_RK: + case self::XLS_TYPE_LABELSST: + case self::XLS_TYPE_NUMBER: + case self::XLS_TYPE_FORMULA: + case self::XLS_TYPE_BOOLERR: + case self::XLS_TYPE_LABEL: + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + $rowIndex = self::getUInt2d($recordData, 0) + 1; + $columnIndex = self::getUInt2d($recordData, 2); + + $tmpInfo['totalRows'] = max($tmpInfo['totalRows'], $rowIndex); + $tmpInfo['lastColumnIndex'] = max($tmpInfo['lastColumnIndex'], $columnIndex); + + break; + case self::XLS_TYPE_BOF: + $this->readBof(); + + break; + case self::XLS_TYPE_EOF: + $this->readDefault(); + + break 2; + default: + $this->readDefault(); + + break; + } + } + + $tmpInfo['lastColumnLetter'] = Coordinate::stringFromColumnIndex($tmpInfo['lastColumnIndex'] + 1); + $tmpInfo['totalColumns'] = $tmpInfo['lastColumnIndex'] + 1; + + $worksheetInfo[] = $tmpInfo; + } + + return $worksheetInfo; + } + + /** + * Loads PhpSpreadsheet from file. + */ + protected function loadSpreadsheetFromFile(string $filename): Spreadsheet + { + // Read the OLE file + $this->loadOLE($filename); + + // Initialisations + $this->spreadsheet = new Spreadsheet(); + $this->spreadsheet->removeSheetByIndex(0); // remove 1st sheet + if (!$this->readDataOnly) { + $this->spreadsheet->removeCellStyleXfByIndex(0); // remove the default style + $this->spreadsheet->removeCellXfByIndex(0); // remove the default style + } + + // Read the summary information stream (containing meta data) + $this->readSummaryInformation(); + + // Read the Additional document summary information stream (containing application-specific meta data) + $this->readDocumentSummaryInformation(); + + // total byte size of Excel data (workbook global substream + sheet substreams) + $this->dataSize = strlen($this->data); + + // initialize + $this->pos = 0; + $this->codepage = $this->codepage ?: CodePage::DEFAULT_CODE_PAGE; + $this->formats = []; + $this->objFonts = []; + $this->palette = []; + $this->sheets = []; + $this->externalBooks = []; + $this->ref = []; + $this->definedname = []; + $this->sst = []; + $this->drawingGroupData = ''; + $this->xfIndex = 0; + $this->mapCellXfIndex = []; + $this->mapCellStyleXfIndex = []; + + // Parse Workbook Global Substream + while ($this->pos < $this->dataSize) { + $code = self::getUInt2d($this->data, $this->pos); + + switch ($code) { + case self::XLS_TYPE_BOF: + $this->readBof(); + + break; + case self::XLS_TYPE_FILEPASS: + $this->readFilepass(); + + break; + case self::XLS_TYPE_CODEPAGE: + $this->readCodepage(); + + break; + case self::XLS_TYPE_DATEMODE: + $this->readDateMode(); + + break; + case self::XLS_TYPE_FONT: + $this->readFont(); + + break; + case self::XLS_TYPE_FORMAT: + $this->readFormat(); + + break; + case self::XLS_TYPE_XF: + $this->readXf(); + + break; + case self::XLS_TYPE_XFEXT: + $this->readXfExt(); + + break; + case self::XLS_TYPE_STYLE: + $this->readStyle(); + + break; + case self::XLS_TYPE_PALETTE: + $this->readPalette(); + + break; + case self::XLS_TYPE_SHEET: + $this->readSheet(); + + break; + case self::XLS_TYPE_EXTERNALBOOK: + $this->readExternalBook(); + + break; + case self::XLS_TYPE_EXTERNNAME: + $this->readExternName(); + + break; + case self::XLS_TYPE_EXTERNSHEET: + $this->readExternSheet(); + + break; + case self::XLS_TYPE_DEFINEDNAME: + $this->readDefinedName(); + + break; + case self::XLS_TYPE_MSODRAWINGGROUP: + $this->readMsoDrawingGroup(); + + break; + case self::XLS_TYPE_SST: + $this->readSst(); + + break; + case self::XLS_TYPE_EOF: + $this->readDefault(); + + break 2; + default: + $this->readDefault(); + + break; + } + } + + // Resolve indexed colors for font, fill, and border colors + // Cannot be resolved already in XF record, because PALETTE record comes afterwards + if (!$this->readDataOnly) { + foreach ($this->objFonts as $objFont) { + if (isset($objFont->colorIndex)) { + $color = Xls\Color::map($objFont->colorIndex, $this->palette, $this->version); + $objFont->getColor()->setRGB($color['rgb']); + } + } + + foreach ($this->spreadsheet->getCellXfCollection() as $objStyle) { + // fill start and end color + $fill = $objStyle->getFill(); + + if (isset($fill->startcolorIndex)) { + $startColor = Xls\Color::map($fill->startcolorIndex, $this->palette, $this->version); + $fill->getStartColor()->setRGB($startColor['rgb']); + } + if (isset($fill->endcolorIndex)) { + $endColor = Xls\Color::map($fill->endcolorIndex, $this->palette, $this->version); + $fill->getEndColor()->setRGB($endColor['rgb']); + } + + // border colors + $top = $objStyle->getBorders()->getTop(); + $right = $objStyle->getBorders()->getRight(); + $bottom = $objStyle->getBorders()->getBottom(); + $left = $objStyle->getBorders()->getLeft(); + $diagonal = $objStyle->getBorders()->getDiagonal(); + + if (isset($top->colorIndex)) { + $borderTopColor = Xls\Color::map($top->colorIndex, $this->palette, $this->version); + $top->getColor()->setRGB($borderTopColor['rgb']); + } + if (isset($right->colorIndex)) { + $borderRightColor = Xls\Color::map($right->colorIndex, $this->palette, $this->version); + $right->getColor()->setRGB($borderRightColor['rgb']); + } + if (isset($bottom->colorIndex)) { + $borderBottomColor = Xls\Color::map($bottom->colorIndex, $this->palette, $this->version); + $bottom->getColor()->setRGB($borderBottomColor['rgb']); + } + if (isset($left->colorIndex)) { + $borderLeftColor = Xls\Color::map($left->colorIndex, $this->palette, $this->version); + $left->getColor()->setRGB($borderLeftColor['rgb']); + } + if (isset($diagonal->colorIndex)) { + $borderDiagonalColor = Xls\Color::map($diagonal->colorIndex, $this->palette, $this->version); + $diagonal->getColor()->setRGB($borderDiagonalColor['rgb']); + } + } + } + + // treat MSODRAWINGGROUP records, workbook-level Escher + $escherWorkbook = null; + if (!$this->readDataOnly && $this->drawingGroupData) { + $escher = new Escher(); + $reader = new Xls\Escher($escher); + $escherWorkbook = $reader->load($this->drawingGroupData); + } + + // Parse the individual sheets + foreach ($this->sheets as $sheet) { + if ($sheet['sheetType'] != 0x00) { + // 0x00: Worksheet, 0x02: Chart, 0x06: Visual Basic module + continue; + } + + // check if sheet should be skipped + if (isset($this->loadSheetsOnly) && !in_array($sheet['name'], $this->loadSheetsOnly)) { + continue; + } + + // add sheet to PhpSpreadsheet object + $this->phpSheet = $this->spreadsheet->createSheet(); + // Use false for $updateFormulaCellReferences to prevent adjustment of worksheet references in formula + // cells... during the load, all formulae should be correct, and we're simply bringing the worksheet + // name in line with the formula, not the reverse + $this->phpSheet->setTitle($sheet['name'], false, false); + $this->phpSheet->setSheetState($sheet['sheetState']); + + $this->pos = $sheet['offset']; + + // Initialize isFitToPages. May change after reading SHEETPR record. + $this->isFitToPages = false; + + // Initialize drawingData + $this->drawingData = ''; + + // Initialize objs + $this->objs = []; + + // Initialize shared formula parts + $this->sharedFormulaParts = []; + + // Initialize shared formulas + $this->sharedFormulas = []; + + // Initialize text objs + $this->textObjects = []; + + // Initialize cell annotations + $this->cellNotes = []; + $this->textObjRef = -1; + + while ($this->pos <= $this->dataSize - 4) { + $code = self::getUInt2d($this->data, $this->pos); + + switch ($code) { + case self::XLS_TYPE_BOF: + $this->readBof(); + + break; + case self::XLS_TYPE_PRINTGRIDLINES: + $this->readPrintGridlines(); + + break; + case self::XLS_TYPE_DEFAULTROWHEIGHT: + $this->readDefaultRowHeight(); + + break; + case self::XLS_TYPE_SHEETPR: + $this->readSheetPr(); + + break; + case self::XLS_TYPE_HORIZONTALPAGEBREAKS: + $this->readHorizontalPageBreaks(); + + break; + case self::XLS_TYPE_VERTICALPAGEBREAKS: + $this->readVerticalPageBreaks(); + + break; + case self::XLS_TYPE_HEADER: + $this->readHeader(); + + break; + case self::XLS_TYPE_FOOTER: + $this->readFooter(); + + break; + case self::XLS_TYPE_HCENTER: + $this->readHcenter(); + + break; + case self::XLS_TYPE_VCENTER: + $this->readVcenter(); + + break; + case self::XLS_TYPE_LEFTMARGIN: + $this->readLeftMargin(); + + break; + case self::XLS_TYPE_RIGHTMARGIN: + $this->readRightMargin(); + + break; + case self::XLS_TYPE_TOPMARGIN: + $this->readTopMargin(); + + break; + case self::XLS_TYPE_BOTTOMMARGIN: + $this->readBottomMargin(); + + break; + case self::XLS_TYPE_PAGESETUP: + $this->readPageSetup(); + + break; + case self::XLS_TYPE_PROTECT: + $this->readProtect(); + + break; + case self::XLS_TYPE_SCENPROTECT: + $this->readScenProtect(); + + break; + case self::XLS_TYPE_OBJECTPROTECT: + $this->readObjectProtect(); + + break; + case self::XLS_TYPE_PASSWORD: + $this->readPassword(); + + break; + case self::XLS_TYPE_DEFCOLWIDTH: + $this->readDefColWidth(); + + break; + case self::XLS_TYPE_COLINFO: + $this->readColInfo(); + + break; + case self::XLS_TYPE_DIMENSION: + $this->readDefault(); + + break; + case self::XLS_TYPE_ROW: + $this->readRow(); + + break; + case self::XLS_TYPE_DBCELL: + $this->readDefault(); + + break; + case self::XLS_TYPE_RK: + $this->readRk(); + + break; + case self::XLS_TYPE_LABELSST: + $this->readLabelSst(); + + break; + case self::XLS_TYPE_MULRK: + $this->readMulRk(); + + break; + case self::XLS_TYPE_NUMBER: + $this->readNumber(); + + break; + case self::XLS_TYPE_FORMULA: + $this->readFormula(); + + break; + case self::XLS_TYPE_SHAREDFMLA: + $this->readSharedFmla(); + + break; + case self::XLS_TYPE_BOOLERR: + $this->readBoolErr(); + + break; + case self::XLS_TYPE_MULBLANK: + $this->readMulBlank(); + + break; + case self::XLS_TYPE_LABEL: + $this->readLabel(); + + break; + case self::XLS_TYPE_BLANK: + $this->readBlank(); + + break; + case self::XLS_TYPE_MSODRAWING: + $this->readMsoDrawing(); + + break; + case self::XLS_TYPE_OBJ: + $this->readObj(); + + break; + case self::XLS_TYPE_WINDOW2: + $this->readWindow2(); + + break; + case self::XLS_TYPE_PAGELAYOUTVIEW: + $this->readPageLayoutView(); + + break; + case self::XLS_TYPE_SCL: + $this->readScl(); + + break; + case self::XLS_TYPE_PANE: + $this->readPane(); + + break; + case self::XLS_TYPE_SELECTION: + $this->readSelection(); + + break; + case self::XLS_TYPE_MERGEDCELLS: + $this->readMergedCells(); + + break; + case self::XLS_TYPE_HYPERLINK: + $this->readHyperLink(); + + break; + case self::XLS_TYPE_DATAVALIDATIONS: + $this->readDataValidations(); + + break; + case self::XLS_TYPE_DATAVALIDATION: + $this->readDataValidation(); + + break; + case self::XLS_TYPE_CFHEADER: + $cellRangeAddresses = $this->readCFHeader(); + + break; + case self::XLS_TYPE_CFRULE: + $this->readCFRule($cellRangeAddresses ?? []); + + break; + case self::XLS_TYPE_SHEETLAYOUT: + $this->readSheetLayout(); + + break; + case self::XLS_TYPE_SHEETPROTECTION: + $this->readSheetProtection(); + + break; + case self::XLS_TYPE_RANGEPROTECTION: + $this->readRangeProtection(); + + break; + case self::XLS_TYPE_NOTE: + $this->readNote(); + + break; + case self::XLS_TYPE_TXO: + $this->readTextObject(); + + break; + case self::XLS_TYPE_CONTINUE: + $this->readContinue(); + + break; + case self::XLS_TYPE_EOF: + $this->readDefault(); + + break 2; + default: + $this->readDefault(); + + break; + } + } + + // treat MSODRAWING records, sheet-level Escher + if (!$this->readDataOnly && $this->drawingData) { + $escherWorksheet = new Escher(); + $reader = new Xls\Escher($escherWorksheet); + $escherWorksheet = $reader->load($this->drawingData); + + // get all spContainers in one long array, so they can be mapped to OBJ records + $allSpContainers = $escherWorksheet->getDgContainer()->getSpgrContainer()->getAllSpContainers(); + } + + // treat OBJ records + foreach ($this->objs as $n => $obj) { + // the first shape container never has a corresponding OBJ record, hence $n + 1 + if (isset($allSpContainers[$n + 1]) && is_object($allSpContainers[$n + 1])) { + $spContainer = $allSpContainers[$n + 1]; + + // we skip all spContainers that are a part of a group shape since we cannot yet handle those + if ($spContainer->getNestingLevel() > 1) { + continue; + } + + // calculate the width and height of the shape + [$startColumn, $startRow] = Coordinate::coordinateFromString($spContainer->getStartCoordinates()); + [$endColumn, $endRow] = Coordinate::coordinateFromString($spContainer->getEndCoordinates()); + + $startOffsetX = $spContainer->getStartOffsetX(); + $startOffsetY = $spContainer->getStartOffsetY(); + $endOffsetX = $spContainer->getEndOffsetX(); + $endOffsetY = $spContainer->getEndOffsetY(); + + $width = SharedXls::getDistanceX($this->phpSheet, $startColumn, $startOffsetX, $endColumn, $endOffsetX); + $height = SharedXls::getDistanceY($this->phpSheet, $startRow, $startOffsetY, $endRow, $endOffsetY); + + // calculate offsetX and offsetY of the shape + $offsetX = (int) ($startOffsetX * SharedXls::sizeCol($this->phpSheet, $startColumn) / 1024); + $offsetY = (int) ($startOffsetY * SharedXls::sizeRow($this->phpSheet, $startRow) / 256); + + switch ($obj['otObjType']) { + case 0x19: + // Note + if (isset($this->cellNotes[$obj['idObjID']])) { + $cellNote = $this->cellNotes[$obj['idObjID']]; + + if (isset($this->textObjects[$obj['idObjID']])) { + $textObject = $this->textObjects[$obj['idObjID']]; + $this->cellNotes[$obj['idObjID']]['objTextData'] = $textObject; + } + } + + break; + case 0x08: + // picture + // get index to BSE entry (1-based) + $BSEindex = $spContainer->getOPT(0x0104); + + // If there is no BSE Index, we will fail here and other fields are not read. + // Fix by checking here. + // TODO: Why is there no BSE Index? Is this a new Office Version? Password protected field? + // More likely : a uncompatible picture + if (!$BSEindex) { + continue 2; + } + + if ($escherWorkbook) { + $BSECollection = $escherWorkbook->getDggContainer()->getBstoreContainer()->getBSECollection(); + $BSE = $BSECollection[$BSEindex - 1]; + $blipType = $BSE->getBlipType(); + + // need check because some blip types are not supported by Escher reader such as EMF + if ($blip = $BSE->getBlip()) { + $ih = imagecreatefromstring($blip->getData()); + if ($ih !== false) { + $drawing = new MemoryDrawing(); + $drawing->setImageResource($ih); + + // width, height, offsetX, offsetY + $drawing->setResizeProportional(false); + $drawing->setWidth($width); + $drawing->setHeight($height); + $drawing->setOffsetX($offsetX); + $drawing->setOffsetY($offsetY); + + switch ($blipType) { + case BSE::BLIPTYPE_JPEG: + $drawing->setRenderingFunction(MemoryDrawing::RENDERING_JPEG); + $drawing->setMimeType(MemoryDrawing::MIMETYPE_JPEG); + + break; + case BSE::BLIPTYPE_PNG: + imagealphablending($ih, false); + imagesavealpha($ih, true); + $drawing->setRenderingFunction(MemoryDrawing::RENDERING_PNG); + $drawing->setMimeType(MemoryDrawing::MIMETYPE_PNG); + + break; + } + + $drawing->setWorksheet($this->phpSheet); + $drawing->setCoordinates($spContainer->getStartCoordinates()); + } + } + } + + break; + default: + // other object type + break; + } + } + } + + // treat SHAREDFMLA records + if ($this->version == self::XLS_BIFF8) { + foreach ($this->sharedFormulaParts as $cell => $baseCell) { + [$column, $row] = Coordinate::coordinateFromString($cell); + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($column, $row, $this->phpSheet->getTitle())) { + $formula = $this->getFormulaFromStructure($this->sharedFormulas[$baseCell], $cell); + $this->phpSheet->getCell($cell)->setValueExplicit('=' . $formula, DataType::TYPE_FORMULA); + } + } + } + + if (!empty($this->cellNotes)) { + foreach ($this->cellNotes as $note => $noteDetails) { + if (!isset($noteDetails['objTextData'])) { + if (isset($this->textObjects[$note])) { + $textObject = $this->textObjects[$note]; + $noteDetails['objTextData'] = $textObject; + } else { + $noteDetails['objTextData']['text'] = ''; + } + } + $cellAddress = str_replace('$', '', $noteDetails['cellRef']); + $this->phpSheet->getComment($cellAddress)->setAuthor($noteDetails['author'])->setText($this->parseRichText($noteDetails['objTextData']['text'])); + } + } + } + + // add the named ranges (defined names) + foreach ($this->definedname as $definedName) { + if ($definedName['isBuiltInName']) { + switch ($definedName['name']) { + case pack('C', 0x06): + // print area + // in general, formula looks like this: Foo!$C$7:$J$66,Bar!$A$1:$IV$2 + $ranges = explode(',', $definedName['formula']); // FIXME: what if sheetname contains comma? + + $extractedRanges = []; + foreach ($ranges as $range) { + // $range should look like one of these + // Foo!$C$7:$J$66 + // Bar!$A$1:$IV$2 + $explodes = Worksheet::extractSheetTitle($range, true); + $sheetName = trim($explodes[0], "'"); + if (count($explodes) == 2) { + if (strpos($explodes[1], ':') === false) { + $explodes[1] = $explodes[1] . ':' . $explodes[1]; + } + $extractedRanges[] = str_replace('$', '', $explodes[1]); // C7:J66 + } + } + if ($docSheet = $this->spreadsheet->getSheetByName($sheetName)) { + $docSheet->getPageSetup()->setPrintArea(implode(',', $extractedRanges)); // C7:J66,A1:IV2 + } + + break; + case pack('C', 0x07): + // print titles (repeating rows) + // Assuming BIFF8, there are 3 cases + // 1. repeating rows + // formula looks like this: Sheet!$A$1:$IV$2 + // rows 1-2 repeat + // 2. repeating columns + // formula looks like this: Sheet!$A$1:$B$65536 + // columns A-B repeat + // 3. both repeating rows and repeating columns + // formula looks like this: Sheet!$A$1:$B$65536,Sheet!$A$1:$IV$2 + $ranges = explode(',', $definedName['formula']); // FIXME: what if sheetname contains comma? + foreach ($ranges as $range) { + // $range should look like this one of these + // Sheet!$A$1:$B$65536 + // Sheet!$A$1:$IV$2 + if (strpos($range, '!') !== false) { + $explodes = Worksheet::extractSheetTitle($range, true); + if ($docSheet = $this->spreadsheet->getSheetByName($explodes[0])) { + $extractedRange = $explodes[1]; + $extractedRange = str_replace('$', '', $extractedRange); + + $coordinateStrings = explode(':', $extractedRange); + if (count($coordinateStrings) == 2) { + [$firstColumn, $firstRow] = Coordinate::coordinateFromString($coordinateStrings[0]); + [$lastColumn, $lastRow] = Coordinate::coordinateFromString($coordinateStrings[1]); + + if ($firstColumn == 'A' && $lastColumn == 'IV') { + // then we have repeating rows + $docSheet->getPageSetup()->setRowsToRepeatAtTop([$firstRow, $lastRow]); + } elseif ($firstRow == 1 && $lastRow == 65536) { + // then we have repeating columns + $docSheet->getPageSetup()->setColumnsToRepeatAtLeft([$firstColumn, $lastColumn]); + } + } + } + } + } + + break; + } + } else { + // Extract range + if (strpos($definedName['formula'], '!') !== false) { + $explodes = Worksheet::extractSheetTitle($definedName['formula'], true); + if ( + ($docSheet = $this->spreadsheet->getSheetByName($explodes[0])) || + ($docSheet = $this->spreadsheet->getSheetByName(trim($explodes[0], "'"))) + ) { + $extractedRange = $explodes[1]; + + $localOnly = ($definedName['scope'] === 0) ? false : true; + + $scope = ($definedName['scope'] === 0) ? null : $this->spreadsheet->getSheetByName($this->sheets[$definedName['scope'] - 1]['name']); + + $this->spreadsheet->addNamedRange(new NamedRange((string) $definedName['name'], $docSheet, $extractedRange, $localOnly, $scope)); + } + } + // Named Value + // TODO Provide support for named values + } + } + $this->data = ''; + + return $this->spreadsheet; + } + + /** + * Read record data from stream, decrypting as required. + * + * @param string $data Data stream to read from + * @param int $pos Position to start reading from + * @param int $len Record data length + * + * @return string Record data + */ + private function readRecordData($data, $pos, $len) + { + $data = substr($data, $pos, $len); + + // File not encrypted, or record before encryption start point + if ($this->encryption == self::MS_BIFF_CRYPTO_NONE || $pos < $this->encryptionStartPos) { + return $data; + } + + $recordData = ''; + if ($this->encryption == self::MS_BIFF_CRYPTO_RC4) { + $oldBlock = floor($this->rc4Pos / self::REKEY_BLOCK); + $block = floor($pos / self::REKEY_BLOCK); + $endBlock = floor(($pos + $len) / self::REKEY_BLOCK); + + // Spin an RC4 decryptor to the right spot. If we have a decryptor sitting + // at a point earlier in the current block, re-use it as we can save some time. + if ($block != $oldBlock || $pos < $this->rc4Pos || !$this->rc4Key) { + $this->rc4Key = $this->makeKey($block, $this->md5Ctxt); + $step = $pos % self::REKEY_BLOCK; + } else { + $step = $pos - $this->rc4Pos; + } + $this->rc4Key->RC4(str_repeat("\0", $step)); + + // Decrypt record data (re-keying at the end of every block) + while ($block != $endBlock) { + $step = self::REKEY_BLOCK - ($pos % self::REKEY_BLOCK); + $recordData .= $this->rc4Key->RC4(substr($data, 0, $step)); + $data = substr($data, $step); + $pos += $step; + $len -= $step; + ++$block; + $this->rc4Key = $this->makeKey($block, $this->md5Ctxt); + } + $recordData .= $this->rc4Key->RC4(substr($data, 0, $len)); + + // Keep track of the position of this decryptor. + // We'll try and re-use it later if we can to speed things up + $this->rc4Pos = $pos + $len; + } elseif ($this->encryption == self::MS_BIFF_CRYPTO_XOR) { + throw new Exception('XOr encryption not supported'); + } + + return $recordData; + } + + /** + * Use OLE reader to extract the relevant data streams from the OLE file. + * + * @param string $filename + */ + private function loadOLE($filename): void + { + // OLE reader + $ole = new OLERead(); + // get excel data, + $ole->read($filename); + // Get workbook data: workbook stream + sheet streams + $this->data = $ole->getStream($ole->wrkbook); + // Get summary information data + $this->summaryInformation = $ole->getStream($ole->summaryInformation); + // Get additional document summary information data + $this->documentSummaryInformation = $ole->getStream($ole->documentSummaryInformation); + } + + /** + * Read summary information. + */ + private function readSummaryInformation(): void + { + if (!isset($this->summaryInformation)) { + return; + } + + // offset: 0; size: 2; must be 0xFE 0xFF (UTF-16 LE byte order mark) + // offset: 2; size: 2; + // offset: 4; size: 2; OS version + // offset: 6; size: 2; OS indicator + // offset: 8; size: 16 + // offset: 24; size: 4; section count + $secCount = self::getInt4d($this->summaryInformation, 24); + + // offset: 28; size: 16; first section's class id: e0 85 9f f2 f9 4f 68 10 ab 91 08 00 2b 27 b3 d9 + // offset: 44; size: 4 + $secOffset = self::getInt4d($this->summaryInformation, 44); + + // section header + // offset: $secOffset; size: 4; section length + $secLength = self::getInt4d($this->summaryInformation, $secOffset); + + // offset: $secOffset+4; size: 4; property count + $countProperties = self::getInt4d($this->summaryInformation, $secOffset + 4); + + // initialize code page (used to resolve string values) + $codePage = 'CP1252'; + + // offset: ($secOffset+8); size: var + // loop through property decarations and properties + for ($i = 0; $i < $countProperties; ++$i) { + // offset: ($secOffset+8) + (8 * $i); size: 4; property ID + $id = self::getInt4d($this->summaryInformation, ($secOffset + 8) + (8 * $i)); + + // Use value of property id as appropriate + // offset: ($secOffset+12) + (8 * $i); size: 4; offset from beginning of section (48) + $offset = self::getInt4d($this->summaryInformation, ($secOffset + 12) + (8 * $i)); + + $type = self::getInt4d($this->summaryInformation, $secOffset + $offset); + + // initialize property value + $value = null; + + // extract property value based on property type + switch ($type) { + case 0x02: // 2 byte signed integer + $value = self::getUInt2d($this->summaryInformation, $secOffset + 4 + $offset); + + break; + case 0x03: // 4 byte signed integer + $value = self::getInt4d($this->summaryInformation, $secOffset + 4 + $offset); + + break; + case 0x13: // 4 byte unsigned integer + // not needed yet, fix later if necessary + break; + case 0x1E: // null-terminated string prepended by dword string length + $byteLength = self::getInt4d($this->summaryInformation, $secOffset + 4 + $offset); + $value = substr($this->summaryInformation, $secOffset + 8 + $offset, $byteLength); + $value = StringHelper::convertEncoding($value, 'UTF-8', $codePage); + $value = rtrim($value); + + break; + case 0x40: // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601) + // PHP-time + $value = OLE::OLE2LocalDate(substr($this->summaryInformation, $secOffset + 4 + $offset, 8)); + + break; + case 0x47: // Clipboard format + // not needed yet, fix later if necessary + break; + } + + switch ($id) { + case 0x01: // Code Page + $codePage = CodePage::numberToName((int) $value); + + break; + case 0x02: // Title + $this->spreadsheet->getProperties()->setTitle("$value"); + + break; + case 0x03: // Subject + $this->spreadsheet->getProperties()->setSubject("$value"); + + break; + case 0x04: // Author (Creator) + $this->spreadsheet->getProperties()->setCreator("$value"); + + break; + case 0x05: // Keywords + $this->spreadsheet->getProperties()->setKeywords("$value"); + + break; + case 0x06: // Comments (Description) + $this->spreadsheet->getProperties()->setDescription("$value"); + + break; + case 0x07: // Template + // Not supported by PhpSpreadsheet + break; + case 0x08: // Last Saved By (LastModifiedBy) + $this->spreadsheet->getProperties()->setLastModifiedBy("$value"); + + break; + case 0x09: // Revision + // Not supported by PhpSpreadsheet + break; + case 0x0A: // Total Editing Time + // Not supported by PhpSpreadsheet + break; + case 0x0B: // Last Printed + // Not supported by PhpSpreadsheet + break; + case 0x0C: // Created Date/Time + $this->spreadsheet->getProperties()->setCreated($value); + + break; + case 0x0D: // Modified Date/Time + $this->spreadsheet->getProperties()->setModified($value); + + break; + case 0x0E: // Number of Pages + // Not supported by PhpSpreadsheet + break; + case 0x0F: // Number of Words + // Not supported by PhpSpreadsheet + break; + case 0x10: // Number of Characters + // Not supported by PhpSpreadsheet + break; + case 0x11: // Thumbnail + // Not supported by PhpSpreadsheet + break; + case 0x12: // Name of creating application + // Not supported by PhpSpreadsheet + break; + case 0x13: // Security + // Not supported by PhpSpreadsheet + break; + } + } + } + + /** + * Read additional document summary information. + */ + private function readDocumentSummaryInformation(): void + { + if (!isset($this->documentSummaryInformation)) { + return; + } + + // offset: 0; size: 2; must be 0xFE 0xFF (UTF-16 LE byte order mark) + // offset: 2; size: 2; + // offset: 4; size: 2; OS version + // offset: 6; size: 2; OS indicator + // offset: 8; size: 16 + // offset: 24; size: 4; section count + $secCount = self::getInt4d($this->documentSummaryInformation, 24); + + // offset: 28; size: 16; first section's class id: 02 d5 cd d5 9c 2e 1b 10 93 97 08 00 2b 2c f9 ae + // offset: 44; size: 4; first section offset + $secOffset = self::getInt4d($this->documentSummaryInformation, 44); + + // section header + // offset: $secOffset; size: 4; section length + $secLength = self::getInt4d($this->documentSummaryInformation, $secOffset); + + // offset: $secOffset+4; size: 4; property count + $countProperties = self::getInt4d($this->documentSummaryInformation, $secOffset + 4); + + // initialize code page (used to resolve string values) + $codePage = 'CP1252'; + + // offset: ($secOffset+8); size: var + // loop through property decarations and properties + for ($i = 0; $i < $countProperties; ++$i) { + // offset: ($secOffset+8) + (8 * $i); size: 4; property ID + $id = self::getInt4d($this->documentSummaryInformation, ($secOffset + 8) + (8 * $i)); + + // Use value of property id as appropriate + // offset: 60 + 8 * $i; size: 4; offset from beginning of section (48) + $offset = self::getInt4d($this->documentSummaryInformation, ($secOffset + 12) + (8 * $i)); + + $type = self::getInt4d($this->documentSummaryInformation, $secOffset + $offset); + + // initialize property value + $value = null; + + // extract property value based on property type + switch ($type) { + case 0x02: // 2 byte signed integer + $value = self::getUInt2d($this->documentSummaryInformation, $secOffset + 4 + $offset); + + break; + case 0x03: // 4 byte signed integer + $value = self::getInt4d($this->documentSummaryInformation, $secOffset + 4 + $offset); + + break; + case 0x0B: // Boolean + $value = self::getUInt2d($this->documentSummaryInformation, $secOffset + 4 + $offset); + $value = ($value == 0 ? false : true); + + break; + case 0x13: // 4 byte unsigned integer + // not needed yet, fix later if necessary + break; + case 0x1E: // null-terminated string prepended by dword string length + $byteLength = self::getInt4d($this->documentSummaryInformation, $secOffset + 4 + $offset); + $value = substr($this->documentSummaryInformation, $secOffset + 8 + $offset, $byteLength); + $value = StringHelper::convertEncoding($value, 'UTF-8', $codePage); + $value = rtrim($value); + + break; + case 0x40: // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601) + // PHP-Time + $value = OLE::OLE2LocalDate(substr($this->documentSummaryInformation, $secOffset + 4 + $offset, 8)); + + break; + case 0x47: // Clipboard format + // not needed yet, fix later if necessary + break; + } + + switch ($id) { + case 0x01: // Code Page + $codePage = CodePage::numberToName((int) $value); + + break; + case 0x02: // Category + $this->spreadsheet->getProperties()->setCategory("$value"); + + break; + case 0x03: // Presentation Target + // Not supported by PhpSpreadsheet + break; + case 0x04: // Bytes + // Not supported by PhpSpreadsheet + break; + case 0x05: // Lines + // Not supported by PhpSpreadsheet + break; + case 0x06: // Paragraphs + // Not supported by PhpSpreadsheet + break; + case 0x07: // Slides + // Not supported by PhpSpreadsheet + break; + case 0x08: // Notes + // Not supported by PhpSpreadsheet + break; + case 0x09: // Hidden Slides + // Not supported by PhpSpreadsheet + break; + case 0x0A: // MM Clips + // Not supported by PhpSpreadsheet + break; + case 0x0B: // Scale Crop + // Not supported by PhpSpreadsheet + break; + case 0x0C: // Heading Pairs + // Not supported by PhpSpreadsheet + break; + case 0x0D: // Titles of Parts + // Not supported by PhpSpreadsheet + break; + case 0x0E: // Manager + $this->spreadsheet->getProperties()->setManager("$value"); + + break; + case 0x0F: // Company + $this->spreadsheet->getProperties()->setCompany("$value"); + + break; + case 0x10: // Links up-to-date + // Not supported by PhpSpreadsheet + break; + } + } + } + + /** + * Reads a general type of BIFF record. Does nothing except for moving stream pointer forward to next record. + */ + private function readDefault(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + + // move stream pointer to next record + $this->pos += 4 + $length; + } + + /** + * The NOTE record specifies a comment associated with a particular cell. In Excel 95 (BIFF7) and earlier versions, + * this record stores a note (cell note). This feature was significantly enhanced in Excel 97. + */ + private function readNote(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly) { + return; + } + + $cellAddress = $this->readBIFF8CellAddress(substr($recordData, 0, 4)); + if ($this->version == self::XLS_BIFF8) { + $noteObjID = self::getUInt2d($recordData, 6); + $noteAuthor = self::readUnicodeStringLong(substr($recordData, 8)); + $noteAuthor = $noteAuthor['value']; + $this->cellNotes[$noteObjID] = [ + 'cellRef' => $cellAddress, + 'objectID' => $noteObjID, + 'author' => $noteAuthor, + ]; + } else { + $extension = false; + if ($cellAddress == '$B$65536') { + // If the address row is -1 and the column is 0, (which translates as $B$65536) then this is a continuation + // note from the previous cell annotation. We're not yet handling this, so annotations longer than the + // max 2048 bytes will probably throw a wobbly. + $row = self::getUInt2d($recordData, 0); + $extension = true; + $arrayKeys = array_keys($this->phpSheet->getComments()); + $cellAddress = array_pop($arrayKeys); + } + + $cellAddress = str_replace('$', '', $cellAddress); + $noteLength = self::getUInt2d($recordData, 4); + $noteText = trim(substr($recordData, 6)); + + if ($extension) { + // Concatenate this extension with the currently set comment for the cell + $comment = $this->phpSheet->getComment($cellAddress); + $commentText = $comment->getText()->getPlainText(); + $comment->setText($this->parseRichText($commentText . $noteText)); + } else { + // Set comment for the cell + $this->phpSheet->getComment($cellAddress)->setText($this->parseRichText($noteText)); +// ->setAuthor($author) + } + } + } + + /** + * The TEXT Object record contains the text associated with a cell annotation. + */ + private function readTextObject(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly) { + return; + } + + // recordData consists of an array of subrecords looking like this: + // grbit: 2 bytes; Option Flags + // rot: 2 bytes; rotation + // cchText: 2 bytes; length of the text (in the first continue record) + // cbRuns: 2 bytes; length of the formatting (in the second continue record) + // followed by the continuation records containing the actual text and formatting + $grbitOpts = self::getUInt2d($recordData, 0); + $rot = self::getUInt2d($recordData, 2); + $cchText = self::getUInt2d($recordData, 10); + $cbRuns = self::getUInt2d($recordData, 12); + $text = $this->getSplicedRecordData(); + + $textByte = $text['spliceOffsets'][1] - $text['spliceOffsets'][0] - 1; + $textStr = substr($text['recordData'], $text['spliceOffsets'][0] + 1, $textByte); + // get 1 byte + $is16Bit = ord($text['recordData'][0]); + // it is possible to use a compressed format, + // which omits the high bytes of all characters, if they are all zero + if (($is16Bit & 0x01) === 0) { + $textStr = StringHelper::ConvertEncoding($textStr, 'UTF-8', 'ISO-8859-1'); + } else { + $textStr = $this->decodeCodepage($textStr); + } + + $this->textObjects[$this->textObjRef] = [ + 'text' => $textStr, + 'format' => substr($text['recordData'], $text['spliceOffsets'][1], $cbRuns), + 'alignment' => $grbitOpts, + 'rotation' => $rot, + ]; + } + + /** + * Read BOF. + */ + private function readBof(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = substr($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 2; size: 2; type of the following data + $substreamType = self::getUInt2d($recordData, 2); + + switch ($substreamType) { + case self::XLS_WORKBOOKGLOBALS: + $version = self::getUInt2d($recordData, 0); + if (($version != self::XLS_BIFF8) && ($version != self::XLS_BIFF7)) { + throw new Exception('Cannot read this Excel file. Version is too old.'); + } + $this->version = $version; + + break; + case self::XLS_WORKSHEET: + // do not use this version information for anything + // it is unreliable (OpenOffice doc, 5.8), use only version information from the global stream + break; + default: + // substream, e.g. chart + // just skip the entire substream + do { + $code = self::getUInt2d($this->data, $this->pos); + $this->readDefault(); + } while ($code != self::XLS_TYPE_EOF && $this->pos < $this->dataSize); + + break; + } + } + + /** + * FILEPASS. + * + * This record is part of the File Protection Block. It + * contains information about the read/write password of the + * file. All record contents following this record will be + * encrypted. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + * + * The decryption functions and objects used from here on in + * are based on the source of Spreadsheet-ParseExcel: + * https://metacpan.org/release/Spreadsheet-ParseExcel + */ + private function readFilepass(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + + if ($length != 54) { + throw new Exception('Unexpected file pass record length'); + } + + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->verifyPassword('VelvetSweatshop', substr($recordData, 6, 16), substr($recordData, 22, 16), substr($recordData, 38, 16), $this->md5Ctxt)) { + throw new Exception('Decryption password incorrect'); + } + + $this->encryption = self::MS_BIFF_CRYPTO_RC4; + + // Decryption required from the record after next onwards + $this->encryptionStartPos = $this->pos + self::getUInt2d($this->data, $this->pos + 2); + } + + /** + * Make an RC4 decryptor for the given block. + * + * @param int $block Block for which to create decrypto + * @param string $valContext MD5 context state + * + * @return Xls\RC4 + */ + private function makeKey($block, $valContext) + { + $pwarray = str_repeat("\0", 64); + + for ($i = 0; $i < 5; ++$i) { + $pwarray[$i] = $valContext[$i]; + } + + $pwarray[5] = chr($block & 0xff); + $pwarray[6] = chr(($block >> 8) & 0xff); + $pwarray[7] = chr(($block >> 16) & 0xff); + $pwarray[8] = chr(($block >> 24) & 0xff); + + $pwarray[9] = "\x80"; + $pwarray[56] = "\x48"; + + $md5 = new Xls\MD5(); + $md5->add($pwarray); + + $s = $md5->getContext(); + + return new Xls\RC4($s); + } + + /** + * Verify RC4 file password. + * + * @param string $password Password to check + * @param string $docid Document id + * @param string $salt_data Salt data + * @param string $hashedsalt_data Hashed salt data + * @param string $valContext Set to the MD5 context of the value + * + * @return bool Success + */ + private function verifyPassword($password, $docid, $salt_data, $hashedsalt_data, &$valContext) + { + $pwarray = str_repeat("\0", 64); + + $iMax = strlen($password); + for ($i = 0; $i < $iMax; ++$i) { + $o = ord(substr($password, $i, 1)); + $pwarray[2 * $i] = chr($o & 0xff); + $pwarray[2 * $i + 1] = chr(($o >> 8) & 0xff); + } + $pwarray[2 * $i] = chr(0x80); + $pwarray[56] = chr(($i << 4) & 0xff); + + $md5 = new Xls\MD5(); + $md5->add($pwarray); + + $mdContext1 = $md5->getContext(); + + $offset = 0; + $keyoffset = 0; + $tocopy = 5; + + $md5->reset(); + + while ($offset != 16) { + if ((64 - $offset) < 5) { + $tocopy = 64 - $offset; + } + for ($i = 0; $i <= $tocopy; ++$i) { + $pwarray[$offset + $i] = $mdContext1[$keyoffset + $i]; + } + $offset += $tocopy; + + if ($offset == 64) { + $md5->add($pwarray); + $keyoffset = $tocopy; + $tocopy = 5 - $tocopy; + $offset = 0; + + continue; + } + + $keyoffset = 0; + $tocopy = 5; + for ($i = 0; $i < 16; ++$i) { + $pwarray[$offset + $i] = $docid[$i]; + } + $offset += 16; + } + + $pwarray[16] = "\x80"; + for ($i = 0; $i < 47; ++$i) { + $pwarray[17 + $i] = "\0"; + } + $pwarray[56] = "\x80"; + $pwarray[57] = "\x0a"; + + $md5->add($pwarray); + $valContext = $md5->getContext(); + + $key = $this->makeKey(0, $valContext); + + $salt = $key->RC4($salt_data); + $hashedsalt = $key->RC4($hashedsalt_data); + + $salt .= "\x80" . str_repeat("\0", 47); + $salt[56] = "\x80"; + + $md5->reset(); + $md5->add($salt); + $mdContext2 = $md5->getContext(); + + return $mdContext2 == $hashedsalt; + } + + /** + * CODEPAGE. + * + * This record stores the text encoding used to write byte + * strings, stored as MS Windows code page identifier. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readCodepage(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; code page identifier + $codepage = self::getUInt2d($recordData, 0); + + $this->codepage = CodePage::numberToName($codepage); + } + + /** + * DATEMODE. + * + * This record specifies the base date for displaying date + * values. All dates are stored as count of days past this + * base date. In BIFF2-BIFF4 this record is part of the + * Calculation Settings Block. In BIFF5-BIFF8 it is + * stored in the Workbook Globals Substream. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readDateMode(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; 0 = base 1900, 1 = base 1904 + Date::setExcelCalendar(Date::CALENDAR_WINDOWS_1900); + if (ord($recordData[0]) == 1) { + Date::setExcelCalendar(Date::CALENDAR_MAC_1904); + } + } + + /** + * Read a FONT record. + */ + private function readFont(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + $objFont = new Font(); + + // offset: 0; size: 2; height of the font (in twips = 1/20 of a point) + $size = self::getUInt2d($recordData, 0); + $objFont->setSize($size / 20); + + // offset: 2; size: 2; option flags + // bit: 0; mask 0x0001; bold (redundant in BIFF5-BIFF8) + // bit: 1; mask 0x0002; italic + $isItalic = (0x0002 & self::getUInt2d($recordData, 2)) >> 1; + if ($isItalic) { + $objFont->setItalic(true); + } + + // bit: 2; mask 0x0004; underlined (redundant in BIFF5-BIFF8) + // bit: 3; mask 0x0008; strikethrough + $isStrike = (0x0008 & self::getUInt2d($recordData, 2)) >> 3; + if ($isStrike) { + $objFont->setStrikethrough(true); + } + + // offset: 4; size: 2; colour index + $colorIndex = self::getUInt2d($recordData, 4); + $objFont->colorIndex = $colorIndex; + + // offset: 6; size: 2; font weight + $weight = self::getUInt2d($recordData, 6); + switch ($weight) { + case 0x02BC: + $objFont->setBold(true); + + break; + } + + // offset: 8; size: 2; escapement type + $escapement = self::getUInt2d($recordData, 8); + CellFont::escapement($objFont, $escapement); + + // offset: 10; size: 1; underline type + $underlineType = ord($recordData[10]); + CellFont::underline($objFont, $underlineType); + + // offset: 11; size: 1; font family + // offset: 12; size: 1; character set + // offset: 13; size: 1; not used + // offset: 14; size: var; font name + if ($this->version == self::XLS_BIFF8) { + $string = self::readUnicodeStringShort(substr($recordData, 14)); + } else { + $string = $this->readByteStringShort(substr($recordData, 14)); + } + $objFont->setName($string['value']); + + $this->objFonts[] = $objFont; + } + } + + /** + * FORMAT. + * + * This record contains information about a number format. + * All FORMAT records occur together in a sequential list. + * + * In BIFF2-BIFF4 other records referencing a FORMAT record + * contain a zero-based index into this list. From BIFF5 on + * the FORMAT record contains the index itself that will be + * used by other records. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readFormat(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + $indexCode = self::getUInt2d($recordData, 0); + + if ($this->version == self::XLS_BIFF8) { + $string = self::readUnicodeStringLong(substr($recordData, 2)); + } else { + // BIFF7 + $string = $this->readByteStringShort(substr($recordData, 2)); + } + + $formatString = $string['value']; + // Apache Open Office sets wrong case writing to xls - issue 2239 + if ($formatString === 'GENERAL') { + $formatString = NumberFormat::FORMAT_GENERAL; + } + $this->formats[$indexCode] = $formatString; + } + } + + /** + * XF - Extended Format. + * + * This record contains formatting information for cells, rows, columns or styles. + * According to https://support.microsoft.com/en-us/help/147732 there are always at least 15 cell style XF + * and 1 cell XF. + * Inspection of Excel files generated by MS Office Excel shows that XF records 0-14 are cell style XF + * and XF record 15 is a cell XF + * We only read the first cell style XF and skip the remaining cell style XF records + * We read all cell XF records. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readXf(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + $objStyle = new Style(); + + if (!$this->readDataOnly) { + // offset: 0; size: 2; Index to FONT record + if (self::getUInt2d($recordData, 0) < 4) { + $fontIndex = self::getUInt2d($recordData, 0); + } else { + // this has to do with that index 4 is omitted in all BIFF versions for some strange reason + // check the OpenOffice documentation of the FONT record + $fontIndex = self::getUInt2d($recordData, 0) - 1; + } + $objStyle->setFont($this->objFonts[$fontIndex]); + + // offset: 2; size: 2; Index to FORMAT record + $numberFormatIndex = self::getUInt2d($recordData, 2); + if (isset($this->formats[$numberFormatIndex])) { + // then we have user-defined format code + $numberFormat = ['formatCode' => $this->formats[$numberFormatIndex]]; + } elseif (($code = NumberFormat::builtInFormatCode($numberFormatIndex)) !== '') { + // then we have built-in format code + $numberFormat = ['formatCode' => $code]; + } else { + // we set the general format code + $numberFormat = ['formatCode' => NumberFormat::FORMAT_GENERAL]; + } + $objStyle->getNumberFormat()->setFormatCode($numberFormat['formatCode']); + + // offset: 4; size: 2; XF type, cell protection, and parent style XF + // bit 2-0; mask 0x0007; XF_TYPE_PROT + $xfTypeProt = self::getUInt2d($recordData, 4); + // bit 0; mask 0x01; 1 = cell is locked + $isLocked = (0x01 & $xfTypeProt) >> 0; + $objStyle->getProtection()->setLocked($isLocked ? Protection::PROTECTION_INHERIT : Protection::PROTECTION_UNPROTECTED); + + // bit 1; mask 0x02; 1 = Formula is hidden + $isHidden = (0x02 & $xfTypeProt) >> 1; + $objStyle->getProtection()->setHidden($isHidden ? Protection::PROTECTION_PROTECTED : Protection::PROTECTION_UNPROTECTED); + + // bit 2; mask 0x04; 0 = Cell XF, 1 = Cell Style XF + $isCellStyleXf = (0x04 & $xfTypeProt) >> 2; + + // offset: 6; size: 1; Alignment and text break + // bit 2-0, mask 0x07; horizontal alignment + $horAlign = (0x07 & ord($recordData[6])) >> 0; + Xls\Style\CellAlignment::horizontal($objStyle->getAlignment(), $horAlign); + + // bit 3, mask 0x08; wrap text + $wrapText = (0x08 & ord($recordData[6])) >> 3; + Xls\Style\CellAlignment::wrap($objStyle->getAlignment(), $wrapText); + + // bit 6-4, mask 0x70; vertical alignment + $vertAlign = (0x70 & ord($recordData[6])) >> 4; + Xls\Style\CellAlignment::vertical($objStyle->getAlignment(), $vertAlign); + + if ($this->version == self::XLS_BIFF8) { + // offset: 7; size: 1; XF_ROTATION: Text rotation angle + $angle = ord($recordData[7]); + $rotation = 0; + if ($angle <= 90) { + $rotation = $angle; + } elseif ($angle <= 180) { + $rotation = 90 - $angle; + } elseif ($angle == Alignment::TEXTROTATION_STACK_EXCEL) { + $rotation = Alignment::TEXTROTATION_STACK_PHPSPREADSHEET; + } + $objStyle->getAlignment()->setTextRotation($rotation); + + // offset: 8; size: 1; Indentation, shrink to cell size, and text direction + // bit: 3-0; mask: 0x0F; indent level + $indent = (0x0F & ord($recordData[8])) >> 0; + $objStyle->getAlignment()->setIndent($indent); + + // bit: 4; mask: 0x10; 1 = shrink content to fit into cell + $shrinkToFit = (0x10 & ord($recordData[8])) >> 4; + switch ($shrinkToFit) { + case 0: + $objStyle->getAlignment()->setShrinkToFit(false); + + break; + case 1: + $objStyle->getAlignment()->setShrinkToFit(true); + + break; + } + + // offset: 9; size: 1; Flags used for attribute groups + + // offset: 10; size: 4; Cell border lines and background area + // bit: 3-0; mask: 0x0000000F; left style + if ($bordersLeftStyle = Xls\Style\Border::lookup((0x0000000F & self::getInt4d($recordData, 10)) >> 0)) { + $objStyle->getBorders()->getLeft()->setBorderStyle($bordersLeftStyle); + } + // bit: 7-4; mask: 0x000000F0; right style + if ($bordersRightStyle = Xls\Style\Border::lookup((0x000000F0 & self::getInt4d($recordData, 10)) >> 4)) { + $objStyle->getBorders()->getRight()->setBorderStyle($bordersRightStyle); + } + // bit: 11-8; mask: 0x00000F00; top style + if ($bordersTopStyle = Xls\Style\Border::lookup((0x00000F00 & self::getInt4d($recordData, 10)) >> 8)) { + $objStyle->getBorders()->getTop()->setBorderStyle($bordersTopStyle); + } + // bit: 15-12; mask: 0x0000F000; bottom style + if ($bordersBottomStyle = Xls\Style\Border::lookup((0x0000F000 & self::getInt4d($recordData, 10)) >> 12)) { + $objStyle->getBorders()->getBottom()->setBorderStyle($bordersBottomStyle); + } + // bit: 22-16; mask: 0x007F0000; left color + $objStyle->getBorders()->getLeft()->colorIndex = (0x007F0000 & self::getInt4d($recordData, 10)) >> 16; + + // bit: 29-23; mask: 0x3F800000; right color + $objStyle->getBorders()->getRight()->colorIndex = (0x3F800000 & self::getInt4d($recordData, 10)) >> 23; + + // bit: 30; mask: 0x40000000; 1 = diagonal line from top left to right bottom + $diagonalDown = (0x40000000 & self::getInt4d($recordData, 10)) >> 30 ? true : false; + + // bit: 31; mask: 0x80000000; 1 = diagonal line from bottom left to top right + $diagonalUp = (0x80000000 & self::getInt4d($recordData, 10)) >> 31 ? true : false; + + if ($diagonalUp === false) { + if ($diagonalDown == false) { + $objStyle->getBorders()->setDiagonalDirection(Borders::DIAGONAL_NONE); + } else { + $objStyle->getBorders()->setDiagonalDirection(Borders::DIAGONAL_DOWN); + } + } elseif ($diagonalDown == false) { + $objStyle->getBorders()->setDiagonalDirection(Borders::DIAGONAL_UP); + } else { + $objStyle->getBorders()->setDiagonalDirection(Borders::DIAGONAL_BOTH); + } + + // offset: 14; size: 4; + // bit: 6-0; mask: 0x0000007F; top color + $objStyle->getBorders()->getTop()->colorIndex = (0x0000007F & self::getInt4d($recordData, 14)) >> 0; + + // bit: 13-7; mask: 0x00003F80; bottom color + $objStyle->getBorders()->getBottom()->colorIndex = (0x00003F80 & self::getInt4d($recordData, 14)) >> 7; + + // bit: 20-14; mask: 0x001FC000; diagonal color + $objStyle->getBorders()->getDiagonal()->colorIndex = (0x001FC000 & self::getInt4d($recordData, 14)) >> 14; + + // bit: 24-21; mask: 0x01E00000; diagonal style + if ($bordersDiagonalStyle = Xls\Style\Border::lookup((0x01E00000 & self::getInt4d($recordData, 14)) >> 21)) { + $objStyle->getBorders()->getDiagonal()->setBorderStyle($bordersDiagonalStyle); + } + + // bit: 31-26; mask: 0xFC000000 fill pattern + if ($fillType = Xls\Style\FillPattern::lookup((0xFC000000 & self::getInt4d($recordData, 14)) >> 26)) { + $objStyle->getFill()->setFillType($fillType); + } + // offset: 18; size: 2; pattern and background colour + // bit: 6-0; mask: 0x007F; color index for pattern color + $objStyle->getFill()->startcolorIndex = (0x007F & self::getUInt2d($recordData, 18)) >> 0; + + // bit: 13-7; mask: 0x3F80; color index for pattern background + $objStyle->getFill()->endcolorIndex = (0x3F80 & self::getUInt2d($recordData, 18)) >> 7; + } else { + // BIFF5 + + // offset: 7; size: 1; Text orientation and flags + $orientationAndFlags = ord($recordData[7]); + + // bit: 1-0; mask: 0x03; XF_ORIENTATION: Text orientation + $xfOrientation = (0x03 & $orientationAndFlags) >> 0; + switch ($xfOrientation) { + case 0: + $objStyle->getAlignment()->setTextRotation(0); + + break; + case 1: + $objStyle->getAlignment()->setTextRotation(Alignment::TEXTROTATION_STACK_PHPSPREADSHEET); + + break; + case 2: + $objStyle->getAlignment()->setTextRotation(90); + + break; + case 3: + $objStyle->getAlignment()->setTextRotation(-90); + + break; + } + + // offset: 8; size: 4; cell border lines and background area + $borderAndBackground = self::getInt4d($recordData, 8); + + // bit: 6-0; mask: 0x0000007F; color index for pattern color + $objStyle->getFill()->startcolorIndex = (0x0000007F & $borderAndBackground) >> 0; + + // bit: 13-7; mask: 0x00003F80; color index for pattern background + $objStyle->getFill()->endcolorIndex = (0x00003F80 & $borderAndBackground) >> 7; + + // bit: 21-16; mask: 0x003F0000; fill pattern + $objStyle->getFill()->setFillType(Xls\Style\FillPattern::lookup((0x003F0000 & $borderAndBackground) >> 16)); + + // bit: 24-22; mask: 0x01C00000; bottom line style + $objStyle->getBorders()->getBottom()->setBorderStyle(Xls\Style\Border::lookup((0x01C00000 & $borderAndBackground) >> 22)); + + // bit: 31-25; mask: 0xFE000000; bottom line color + $objStyle->getBorders()->getBottom()->colorIndex = (0xFE000000 & $borderAndBackground) >> 25; + + // offset: 12; size: 4; cell border lines + $borderLines = self::getInt4d($recordData, 12); + + // bit: 2-0; mask: 0x00000007; top line style + $objStyle->getBorders()->getTop()->setBorderStyle(Xls\Style\Border::lookup((0x00000007 & $borderLines) >> 0)); + + // bit: 5-3; mask: 0x00000038; left line style + $objStyle->getBorders()->getLeft()->setBorderStyle(Xls\Style\Border::lookup((0x00000038 & $borderLines) >> 3)); + + // bit: 8-6; mask: 0x000001C0; right line style + $objStyle->getBorders()->getRight()->setBorderStyle(Xls\Style\Border::lookup((0x000001C0 & $borderLines) >> 6)); + + // bit: 15-9; mask: 0x0000FE00; top line color index + $objStyle->getBorders()->getTop()->colorIndex = (0x0000FE00 & $borderLines) >> 9; + + // bit: 22-16; mask: 0x007F0000; left line color index + $objStyle->getBorders()->getLeft()->colorIndex = (0x007F0000 & $borderLines) >> 16; + + // bit: 29-23; mask: 0x3F800000; right line color index + $objStyle->getBorders()->getRight()->colorIndex = (0x3F800000 & $borderLines) >> 23; + } + + // add cellStyleXf or cellXf and update mapping + if ($isCellStyleXf) { + // we only read one style XF record which is always the first + if ($this->xfIndex == 0) { + $this->spreadsheet->addCellStyleXf($objStyle); + $this->mapCellStyleXfIndex[$this->xfIndex] = 0; + } + } else { + // we read all cell XF records + $this->spreadsheet->addCellXf($objStyle); + $this->mapCellXfIndex[$this->xfIndex] = count($this->spreadsheet->getCellXfCollection()) - 1; + } + + // update XF index for when we read next record + ++$this->xfIndex; + } + } + + private function readXfExt(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; 0x087D = repeated header + + // offset: 2; size: 2 + + // offset: 4; size: 8; not used + + // offset: 12; size: 2; record version + + // offset: 14; size: 2; index to XF record which this record modifies + $ixfe = self::getUInt2d($recordData, 14); + + // offset: 16; size: 2; not used + + // offset: 18; size: 2; number of extension properties that follow + $cexts = self::getUInt2d($recordData, 18); + + // start reading the actual extension data + $offset = 20; + while ($offset < $length) { + // extension type + $extType = self::getUInt2d($recordData, $offset); + + // extension length + $cb = self::getUInt2d($recordData, $offset + 2); + + // extension data + $extData = substr($recordData, $offset + 4, $cb); + + switch ($extType) { + case 4: // fill start color + $xclfType = self::getUInt2d($extData, 0); // color type + $xclrValue = substr($extData, 4, 4); // color value (value based on color type) + + if ($xclfType == 2) { + $rgb = sprintf('%02X%02X%02X', ord($xclrValue[0]), ord($xclrValue[1]), ord($xclrValue[2])); + + // modify the relevant style property + if (isset($this->mapCellXfIndex[$ixfe])) { + $fill = $this->spreadsheet->getCellXfByIndex($this->mapCellXfIndex[$ixfe])->getFill(); + $fill->getStartColor()->setRGB($rgb); + $fill->startcolorIndex = null; // normal color index does not apply, discard + } + } + + break; + case 5: // fill end color + $xclfType = self::getUInt2d($extData, 0); // color type + $xclrValue = substr($extData, 4, 4); // color value (value based on color type) + + if ($xclfType == 2) { + $rgb = sprintf('%02X%02X%02X', ord($xclrValue[0]), ord($xclrValue[1]), ord($xclrValue[2])); + + // modify the relevant style property + if (isset($this->mapCellXfIndex[$ixfe])) { + $fill = $this->spreadsheet->getCellXfByIndex($this->mapCellXfIndex[$ixfe])->getFill(); + $fill->getEndColor()->setRGB($rgb); + $fill->endcolorIndex = null; // normal color index does not apply, discard + } + } + + break; + case 7: // border color top + $xclfType = self::getUInt2d($extData, 0); // color type + $xclrValue = substr($extData, 4, 4); // color value (value based on color type) + + if ($xclfType == 2) { + $rgb = sprintf('%02X%02X%02X', ord($xclrValue[0]), ord($xclrValue[1]), ord($xclrValue[2])); + + // modify the relevant style property + if (isset($this->mapCellXfIndex[$ixfe])) { + $top = $this->spreadsheet->getCellXfByIndex($this->mapCellXfIndex[$ixfe])->getBorders()->getTop(); + $top->getColor()->setRGB($rgb); + $top->colorIndex = null; // normal color index does not apply, discard + } + } + + break; + case 8: // border color bottom + $xclfType = self::getUInt2d($extData, 0); // color type + $xclrValue = substr($extData, 4, 4); // color value (value based on color type) + + if ($xclfType == 2) { + $rgb = sprintf('%02X%02X%02X', ord($xclrValue[0]), ord($xclrValue[1]), ord($xclrValue[2])); + + // modify the relevant style property + if (isset($this->mapCellXfIndex[$ixfe])) { + $bottom = $this->spreadsheet->getCellXfByIndex($this->mapCellXfIndex[$ixfe])->getBorders()->getBottom(); + $bottom->getColor()->setRGB($rgb); + $bottom->colorIndex = null; // normal color index does not apply, discard + } + } + + break; + case 9: // border color left + $xclfType = self::getUInt2d($extData, 0); // color type + $xclrValue = substr($extData, 4, 4); // color value (value based on color type) + + if ($xclfType == 2) { + $rgb = sprintf('%02X%02X%02X', ord($xclrValue[0]), ord($xclrValue[1]), ord($xclrValue[2])); + + // modify the relevant style property + if (isset($this->mapCellXfIndex[$ixfe])) { + $left = $this->spreadsheet->getCellXfByIndex($this->mapCellXfIndex[$ixfe])->getBorders()->getLeft(); + $left->getColor()->setRGB($rgb); + $left->colorIndex = null; // normal color index does not apply, discard + } + } + + break; + case 10: // border color right + $xclfType = self::getUInt2d($extData, 0); // color type + $xclrValue = substr($extData, 4, 4); // color value (value based on color type) + + if ($xclfType == 2) { + $rgb = sprintf('%02X%02X%02X', ord($xclrValue[0]), ord($xclrValue[1]), ord($xclrValue[2])); + + // modify the relevant style property + if (isset($this->mapCellXfIndex[$ixfe])) { + $right = $this->spreadsheet->getCellXfByIndex($this->mapCellXfIndex[$ixfe])->getBorders()->getRight(); + $right->getColor()->setRGB($rgb); + $right->colorIndex = null; // normal color index does not apply, discard + } + } + + break; + case 11: // border color diagonal + $xclfType = self::getUInt2d($extData, 0); // color type + $xclrValue = substr($extData, 4, 4); // color value (value based on color type) + + if ($xclfType == 2) { + $rgb = sprintf('%02X%02X%02X', ord($xclrValue[0]), ord($xclrValue[1]), ord($xclrValue[2])); + + // modify the relevant style property + if (isset($this->mapCellXfIndex[$ixfe])) { + $diagonal = $this->spreadsheet->getCellXfByIndex($this->mapCellXfIndex[$ixfe])->getBorders()->getDiagonal(); + $diagonal->getColor()->setRGB($rgb); + $diagonal->colorIndex = null; // normal color index does not apply, discard + } + } + + break; + case 13: // font color + $xclfType = self::getUInt2d($extData, 0); // color type + $xclrValue = substr($extData, 4, 4); // color value (value based on color type) + + if ($xclfType == 2) { + $rgb = sprintf('%02X%02X%02X', ord($xclrValue[0]), ord($xclrValue[1]), ord($xclrValue[2])); + + // modify the relevant style property + if (isset($this->mapCellXfIndex[$ixfe])) { + $font = $this->spreadsheet->getCellXfByIndex($this->mapCellXfIndex[$ixfe])->getFont(); + $font->getColor()->setRGB($rgb); + $font->colorIndex = null; // normal color index does not apply, discard + } + } + + break; + } + + $offset += $cb; + } + } + } + + /** + * Read STYLE record. + */ + private function readStyle(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; index to XF record and flag for built-in style + $ixfe = self::getUInt2d($recordData, 0); + + // bit: 11-0; mask 0x0FFF; index to XF record + $xfIndex = (0x0FFF & $ixfe) >> 0; + + // bit: 15; mask 0x8000; 0 = user-defined style, 1 = built-in style + $isBuiltIn = (bool) ((0x8000 & $ixfe) >> 15); + + if ($isBuiltIn) { + // offset: 2; size: 1; identifier for built-in style + $builtInId = ord($recordData[2]); + + switch ($builtInId) { + case 0x00: + // currently, we are not using this for anything + break; + default: + break; + } + } + // user-defined; not supported by PhpSpreadsheet + } + } + + /** + * Read PALETTE record. + */ + private function readPalette(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; number of following colors + $nm = self::getUInt2d($recordData, 0); + + // list of RGB colors + for ($i = 0; $i < $nm; ++$i) { + $rgb = substr($recordData, 2 + 4 * $i, 4); + $this->palette[] = self::readRGB($rgb); + } + } + } + + /** + * SHEET. + * + * This record is located in the Workbook Globals + * Substream and represents a sheet inside the workbook. + * One SHEET record is written for each sheet. It stores the + * sheet name and a stream offset to the BOF record of the + * respective Sheet Substream within the Workbook Stream. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readSheet(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // offset: 0; size: 4; absolute stream position of the BOF record of the sheet + // NOTE: not encrypted + $rec_offset = self::getInt4d($this->data, $this->pos + 4); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 4; size: 1; sheet state + switch (ord($recordData[4])) { + case 0x00: + $sheetState = Worksheet::SHEETSTATE_VISIBLE; + + break; + case 0x01: + $sheetState = Worksheet::SHEETSTATE_HIDDEN; + + break; + case 0x02: + $sheetState = Worksheet::SHEETSTATE_VERYHIDDEN; + + break; + default: + $sheetState = Worksheet::SHEETSTATE_VISIBLE; + + break; + } + + // offset: 5; size: 1; sheet type + $sheetType = ord($recordData[5]); + + // offset: 6; size: var; sheet name + $rec_name = null; + if ($this->version == self::XLS_BIFF8) { + $string = self::readUnicodeStringShort(substr($recordData, 6)); + $rec_name = $string['value']; + } elseif ($this->version == self::XLS_BIFF7) { + $string = $this->readByteStringShort(substr($recordData, 6)); + $rec_name = $string['value']; + } + + $this->sheets[] = [ + 'name' => $rec_name, + 'offset' => $rec_offset, + 'sheetState' => $sheetState, + 'sheetType' => $sheetType, + ]; + } + + /** + * Read EXTERNALBOOK record. + */ + private function readExternalBook(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset within record data + $offset = 0; + + // there are 4 types of records + if (strlen($recordData) > 4) { + // external reference + // offset: 0; size: 2; number of sheet names ($nm) + $nm = self::getUInt2d($recordData, 0); + $offset += 2; + + // offset: 2; size: var; encoded URL without sheet name (Unicode string, 16-bit length) + $encodedUrlString = self::readUnicodeStringLong(substr($recordData, 2)); + $offset += $encodedUrlString['size']; + + // offset: var; size: var; list of $nm sheet names (Unicode strings, 16-bit length) + $externalSheetNames = []; + for ($i = 0; $i < $nm; ++$i) { + $externalSheetNameString = self::readUnicodeStringLong(substr($recordData, $offset)); + $externalSheetNames[] = $externalSheetNameString['value']; + $offset += $externalSheetNameString['size']; + } + + // store the record data + $this->externalBooks[] = [ + 'type' => 'external', + 'encodedUrl' => $encodedUrlString['value'], + 'externalSheetNames' => $externalSheetNames, + ]; + } elseif (substr($recordData, 2, 2) == pack('CC', 0x01, 0x04)) { + // internal reference + // offset: 0; size: 2; number of sheet in this document + // offset: 2; size: 2; 0x01 0x04 + $this->externalBooks[] = [ + 'type' => 'internal', + ]; + } elseif (substr($recordData, 0, 4) == pack('vCC', 0x0001, 0x01, 0x3A)) { + // add-in function + // offset: 0; size: 2; 0x0001 + $this->externalBooks[] = [ + 'type' => 'addInFunction', + ]; + } elseif (substr($recordData, 0, 2) == pack('v', 0x0000)) { + // DDE links, OLE links + // offset: 0; size: 2; 0x0000 + // offset: 2; size: var; encoded source document name + $this->externalBooks[] = [ + 'type' => 'DDEorOLE', + ]; + } + } + + /** + * Read EXTERNNAME record. + */ + private function readExternName(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // external sheet references provided for named cells + if ($this->version == self::XLS_BIFF8) { + // offset: 0; size: 2; options + $options = self::getUInt2d($recordData, 0); + + // offset: 2; size: 2; + + // offset: 4; size: 2; not used + + // offset: 6; size: var + $nameString = self::readUnicodeStringShort(substr($recordData, 6)); + + // offset: var; size: var; formula data + $offset = 6 + $nameString['size']; + $formula = $this->getFormulaFromStructure(substr($recordData, $offset)); + + $this->externalNames[] = [ + 'name' => $nameString['value'], + 'formula' => $formula, + ]; + } + } + + /** + * Read EXTERNSHEET record. + */ + private function readExternSheet(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // external sheet references provided for named cells + if ($this->version == self::XLS_BIFF8) { + // offset: 0; size: 2; number of following ref structures + $nm = self::getUInt2d($recordData, 0); + for ($i = 0; $i < $nm; ++$i) { + $this->ref[] = [ + // offset: 2 + 6 * $i; index to EXTERNALBOOK record + 'externalBookIndex' => self::getUInt2d($recordData, 2 + 6 * $i), + // offset: 4 + 6 * $i; index to first sheet in EXTERNALBOOK record + 'firstSheetIndex' => self::getUInt2d($recordData, 4 + 6 * $i), + // offset: 6 + 6 * $i; index to last sheet in EXTERNALBOOK record + 'lastSheetIndex' => self::getUInt2d($recordData, 6 + 6 * $i), + ]; + } + } + } + + /** + * DEFINEDNAME. + * + * This record is part of a Link Table. It contains the name + * and the token array of an internal defined name. Token + * arrays of defined names contain tokens with aberrant + * token classes. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readDefinedName(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->version == self::XLS_BIFF8) { + // retrieves named cells + + // offset: 0; size: 2; option flags + $opts = self::getUInt2d($recordData, 0); + + // bit: 5; mask: 0x0020; 0 = user-defined name, 1 = built-in-name + $isBuiltInName = (0x0020 & $opts) >> 5; + + // offset: 2; size: 1; keyboard shortcut + + // offset: 3; size: 1; length of the name (character count) + $nlen = ord($recordData[3]); + + // offset: 4; size: 2; size of the formula data (it can happen that this is zero) + // note: there can also be additional data, this is not included in $flen + $flen = self::getUInt2d($recordData, 4); + + // offset: 8; size: 2; 0=Global name, otherwise index to sheet (1-based) + $scope = self::getUInt2d($recordData, 8); + + // offset: 14; size: var; Name (Unicode string without length field) + $string = self::readUnicodeString(substr($recordData, 14), $nlen); + + // offset: var; size: $flen; formula data + $offset = 14 + $string['size']; + $formulaStructure = pack('v', $flen) . substr($recordData, $offset); + + try { + $formula = $this->getFormulaFromStructure($formulaStructure); + } catch (PhpSpreadsheetException $e) { + $formula = ''; + } + + $this->definedname[] = [ + 'isBuiltInName' => $isBuiltInName, + 'name' => $string['value'], + 'formula' => $formula, + 'scope' => $scope, + ]; + } + } + + /** + * Read MSODRAWINGGROUP record. + */ + private function readMsoDrawingGroup(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + + // get spliced record data + $splicedRecordData = $this->getSplicedRecordData(); + $recordData = $splicedRecordData['recordData']; + + $this->drawingGroupData .= $recordData; + } + + /** + * SST - Shared String Table. + * + * This record contains a list of all strings used anywhere + * in the workbook. Each string occurs only once. The + * workbook uses indexes into the list to reference the + * strings. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readSst(): void + { + // offset within (spliced) record data + $pos = 0; + + // Limit global SST position, further control for bad SST Length in BIFF8 data + $limitposSST = 0; + + // get spliced record data + $splicedRecordData = $this->getSplicedRecordData(); + + $recordData = $splicedRecordData['recordData']; + $spliceOffsets = $splicedRecordData['spliceOffsets']; + + // offset: 0; size: 4; total number of strings in the workbook + $pos += 4; + + // offset: 4; size: 4; number of following strings ($nm) + $nm = self::getInt4d($recordData, 4); + $pos += 4; + + // look up limit position + foreach ($spliceOffsets as $spliceOffset) { + // it can happen that the string is empty, therefore we need + // <= and not just < + if ($pos <= $spliceOffset) { + $limitposSST = $spliceOffset; + } + } + + // loop through the Unicode strings (16-bit length) + for ($i = 0; $i < $nm && $pos < $limitposSST; ++$i) { + // number of characters in the Unicode string + $numChars = self::getUInt2d($recordData, $pos); + $pos += 2; + + // option flags + $optionFlags = ord($recordData[$pos]); + ++$pos; + + // bit: 0; mask: 0x01; 0 = compressed; 1 = uncompressed + $isCompressed = (($optionFlags & 0x01) == 0); + + // bit: 2; mask: 0x02; 0 = ordinary; 1 = Asian phonetic + $hasAsian = (($optionFlags & 0x04) != 0); + + // bit: 3; mask: 0x03; 0 = ordinary; 1 = Rich-Text + $hasRichText = (($optionFlags & 0x08) != 0); + + $formattingRuns = 0; + if ($hasRichText) { + // number of Rich-Text formatting runs + $formattingRuns = self::getUInt2d($recordData, $pos); + $pos += 2; + } + + $extendedRunLength = 0; + if ($hasAsian) { + // size of Asian phonetic setting + $extendedRunLength = self::getInt4d($recordData, $pos); + $pos += 4; + } + + // expected byte length of character array if not split + $len = ($isCompressed) ? $numChars : $numChars * 2; + + // look up limit position - Check it again to be sure that no error occurs when parsing SST structure + $limitpos = null; + foreach ($spliceOffsets as $spliceOffset) { + // it can happen that the string is empty, therefore we need + // <= and not just < + if ($pos <= $spliceOffset) { + $limitpos = $spliceOffset; + + break; + } + } + + if ($pos + $len <= $limitpos) { + // character array is not split between records + + $retstr = substr($recordData, $pos, $len); + $pos += $len; + } else { + // character array is split between records + + // first part of character array + $retstr = substr($recordData, $pos, $limitpos - $pos); + + $bytesRead = $limitpos - $pos; + + // remaining characters in Unicode string + $charsLeft = $numChars - (($isCompressed) ? $bytesRead : ($bytesRead / 2)); + + $pos = $limitpos; + + // keep reading the characters + while ($charsLeft > 0) { + // look up next limit position, in case the string span more than one continue record + foreach ($spliceOffsets as $spliceOffset) { + if ($pos < $spliceOffset) { + $limitpos = $spliceOffset; + + break; + } + } + + // repeated option flags + // OpenOffice.org documentation 5.21 + $option = ord($recordData[$pos]); + ++$pos; + + if ($isCompressed && ($option == 0)) { + // 1st fragment compressed + // this fragment compressed + $len = min($charsLeft, $limitpos - $pos); + $retstr .= substr($recordData, $pos, $len); + $charsLeft -= $len; + $isCompressed = true; + } elseif (!$isCompressed && ($option != 0)) { + // 1st fragment uncompressed + // this fragment uncompressed + $len = min($charsLeft * 2, $limitpos - $pos); + $retstr .= substr($recordData, $pos, $len); + $charsLeft -= $len / 2; + $isCompressed = false; + } elseif (!$isCompressed && ($option == 0)) { + // 1st fragment uncompressed + // this fragment compressed + $len = min($charsLeft, $limitpos - $pos); + for ($j = 0; $j < $len; ++$j) { + $retstr .= $recordData[$pos + $j] + . chr(0); + } + $charsLeft -= $len; + $isCompressed = false; + } else { + // 1st fragment compressed + // this fragment uncompressed + $newstr = ''; + $jMax = strlen($retstr); + for ($j = 0; $j < $jMax; ++$j) { + $newstr .= $retstr[$j] . chr(0); + } + $retstr = $newstr; + $len = min($charsLeft * 2, $limitpos - $pos); + $retstr .= substr($recordData, $pos, $len); + $charsLeft -= $len / 2; + $isCompressed = false; + } + + $pos += $len; + } + } + + // convert to UTF-8 + $retstr = self::encodeUTF16($retstr, $isCompressed); + + // read additional Rich-Text information, if any + $fmtRuns = []; + if ($hasRichText) { + // list of formatting runs + for ($j = 0; $j < $formattingRuns; ++$j) { + // first formatted character; zero-based + $charPos = self::getUInt2d($recordData, $pos + $j * 4); + + // index to font record + $fontIndex = self::getUInt2d($recordData, $pos + 2 + $j * 4); + + $fmtRuns[] = [ + 'charPos' => $charPos, + 'fontIndex' => $fontIndex, + ]; + } + $pos += 4 * $formattingRuns; + } + + // read additional Asian phonetics information, if any + if ($hasAsian) { + // For Asian phonetic settings, we skip the extended string data + $pos += $extendedRunLength; + } + + // store the shared sting + $this->sst[] = [ + 'value' => $retstr, + 'fmtRuns' => $fmtRuns, + ]; + } + + // getSplicedRecordData() takes care of moving current position in data stream + } + + /** + * Read PRINTGRIDLINES record. + */ + private function readPrintGridlines(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->version == self::XLS_BIFF8 && !$this->readDataOnly) { + // offset: 0; size: 2; 0 = do not print sheet grid lines; 1 = print sheet gridlines + $printGridlines = (bool) self::getUInt2d($recordData, 0); + $this->phpSheet->setPrintGridlines($printGridlines); + } + } + + /** + * Read DEFAULTROWHEIGHT record. + */ + private function readDefaultRowHeight(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; option flags + // offset: 2; size: 2; default height for unused rows, (twips 1/20 point) + $height = self::getUInt2d($recordData, 2); + $this->phpSheet->getDefaultRowDimension()->setRowHeight($height / 20); + } + + /** + * Read SHEETPR record. + */ + private function readSheetPr(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2 + + // bit: 6; mask: 0x0040; 0 = outline buttons above outline group + $isSummaryBelow = (0x0040 & self::getUInt2d($recordData, 0)) >> 6; + $this->phpSheet->setShowSummaryBelow($isSummaryBelow); + + // bit: 7; mask: 0x0080; 0 = outline buttons left of outline group + $isSummaryRight = (0x0080 & self::getUInt2d($recordData, 0)) >> 7; + $this->phpSheet->setShowSummaryRight($isSummaryRight); + + // bit: 8; mask: 0x100; 0 = scale printout in percent, 1 = fit printout to number of pages + // this corresponds to radio button setting in page setup dialog in Excel + $this->isFitToPages = (bool) ((0x0100 & self::getUInt2d($recordData, 0)) >> 8); + } + + /** + * Read HORIZONTALPAGEBREAKS record. + */ + private function readHorizontalPageBreaks(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->version == self::XLS_BIFF8 && !$this->readDataOnly) { + // offset: 0; size: 2; number of the following row index structures + $nm = self::getUInt2d($recordData, 0); + + // offset: 2; size: 6 * $nm; list of $nm row index structures + for ($i = 0; $i < $nm; ++$i) { + $r = self::getUInt2d($recordData, 2 + 6 * $i); + $cf = self::getUInt2d($recordData, 2 + 6 * $i + 2); + $cl = self::getUInt2d($recordData, 2 + 6 * $i + 4); + + // not sure why two column indexes are necessary? + $this->phpSheet->setBreakByColumnAndRow($cf + 1, $r, Worksheet::BREAK_ROW); + } + } + } + + /** + * Read VERTICALPAGEBREAKS record. + */ + private function readVerticalPageBreaks(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->version == self::XLS_BIFF8 && !$this->readDataOnly) { + // offset: 0; size: 2; number of the following column index structures + $nm = self::getUInt2d($recordData, 0); + + // offset: 2; size: 6 * $nm; list of $nm row index structures + for ($i = 0; $i < $nm; ++$i) { + $c = self::getUInt2d($recordData, 2 + 6 * $i); + $rf = self::getUInt2d($recordData, 2 + 6 * $i + 2); + $rl = self::getUInt2d($recordData, 2 + 6 * $i + 4); + + // not sure why two row indexes are necessary? + $this->phpSheet->setBreakByColumnAndRow($c + 1, $rf, Worksheet::BREAK_COLUMN); + } + } + } + + /** + * Read HEADER record. + */ + private function readHeader(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: var + // realized that $recordData can be empty even when record exists + if ($recordData) { + if ($this->version == self::XLS_BIFF8) { + $string = self::readUnicodeStringLong($recordData); + } else { + $string = $this->readByteStringShort($recordData); + } + + $this->phpSheet->getHeaderFooter()->setOddHeader($string['value']); + $this->phpSheet->getHeaderFooter()->setEvenHeader($string['value']); + } + } + } + + /** + * Read FOOTER record. + */ + private function readFooter(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: var + // realized that $recordData can be empty even when record exists + if ($recordData) { + if ($this->version == self::XLS_BIFF8) { + $string = self::readUnicodeStringLong($recordData); + } else { + $string = $this->readByteStringShort($recordData); + } + $this->phpSheet->getHeaderFooter()->setOddFooter($string['value']); + $this->phpSheet->getHeaderFooter()->setEvenFooter($string['value']); + } + } + } + + /** + * Read HCENTER record. + */ + private function readHcenter(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; 0 = print sheet left aligned, 1 = print sheet centered horizontally + $isHorizontalCentered = (bool) self::getUInt2d($recordData, 0); + + $this->phpSheet->getPageSetup()->setHorizontalCentered($isHorizontalCentered); + } + } + + /** + * Read VCENTER record. + */ + private function readVcenter(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; 0 = print sheet aligned at top page border, 1 = print sheet vertically centered + $isVerticalCentered = (bool) self::getUInt2d($recordData, 0); + + $this->phpSheet->getPageSetup()->setVerticalCentered($isVerticalCentered); + } + } + + /** + * Read LEFTMARGIN record. + */ + private function readLeftMargin(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 8 + $this->phpSheet->getPageMargins()->setLeft(self::extractNumber($recordData)); + } + } + + /** + * Read RIGHTMARGIN record. + */ + private function readRightMargin(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 8 + $this->phpSheet->getPageMargins()->setRight(self::extractNumber($recordData)); + } + } + + /** + * Read TOPMARGIN record. + */ + private function readTopMargin(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 8 + $this->phpSheet->getPageMargins()->setTop(self::extractNumber($recordData)); + } + } + + /** + * Read BOTTOMMARGIN record. + */ + private function readBottomMargin(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 8 + $this->phpSheet->getPageMargins()->setBottom(self::extractNumber($recordData)); + } + } + + /** + * Read PAGESETUP record. + */ + private function readPageSetup(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; paper size + $paperSize = self::getUInt2d($recordData, 0); + + // offset: 2; size: 2; scaling factor + $scale = self::getUInt2d($recordData, 2); + + // offset: 6; size: 2; fit worksheet width to this number of pages, 0 = use as many as needed + $fitToWidth = self::getUInt2d($recordData, 6); + + // offset: 8; size: 2; fit worksheet height to this number of pages, 0 = use as many as needed + $fitToHeight = self::getUInt2d($recordData, 8); + + // offset: 10; size: 2; option flags + + // bit: 0; mask: 0x0001; 0=down then over, 1=over then down + $isOverThenDown = (0x0001 & self::getUInt2d($recordData, 10)); + + // bit: 1; mask: 0x0002; 0=landscape, 1=portrait + $isPortrait = (0x0002 & self::getUInt2d($recordData, 10)) >> 1; + + // bit: 2; mask: 0x0004; 1= paper size, scaling factor, paper orient. not init + // when this bit is set, do not use flags for those properties + $isNotInit = (0x0004 & self::getUInt2d($recordData, 10)) >> 2; + + if (!$isNotInit) { + $this->phpSheet->getPageSetup()->setPaperSize($paperSize); + $this->phpSheet->getPageSetup()->setPageOrder(((bool) $isOverThenDown) ? PageSetup::PAGEORDER_OVER_THEN_DOWN : PageSetup::PAGEORDER_DOWN_THEN_OVER); + $this->phpSheet->getPageSetup()->setOrientation(((bool) $isPortrait) ? PageSetup::ORIENTATION_PORTRAIT : PageSetup::ORIENTATION_LANDSCAPE); + + $this->phpSheet->getPageSetup()->setScale($scale, false); + $this->phpSheet->getPageSetup()->setFitToPage((bool) $this->isFitToPages); + $this->phpSheet->getPageSetup()->setFitToWidth($fitToWidth, false); + $this->phpSheet->getPageSetup()->setFitToHeight($fitToHeight, false); + } + + // offset: 16; size: 8; header margin (IEEE 754 floating-point value) + $marginHeader = self::extractNumber(substr($recordData, 16, 8)); + $this->phpSheet->getPageMargins()->setHeader($marginHeader); + + // offset: 24; size: 8; footer margin (IEEE 754 floating-point value) + $marginFooter = self::extractNumber(substr($recordData, 24, 8)); + $this->phpSheet->getPageMargins()->setFooter($marginFooter); + } + } + + /** + * PROTECT - Sheet protection (BIFF2 through BIFF8) + * if this record is omitted, then it also means no sheet protection. + */ + private function readProtect(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly) { + return; + } + + // offset: 0; size: 2; + + // bit 0, mask 0x01; 1 = sheet is protected + $bool = (0x01 & self::getUInt2d($recordData, 0)) >> 0; + $this->phpSheet->getProtection()->setSheet((bool) $bool); + } + + /** + * SCENPROTECT. + */ + private function readScenProtect(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly) { + return; + } + + // offset: 0; size: 2; + + // bit: 0, mask 0x01; 1 = scenarios are protected + $bool = (0x01 & self::getUInt2d($recordData, 0)) >> 0; + + $this->phpSheet->getProtection()->setScenarios((bool) $bool); + } + + /** + * OBJECTPROTECT. + */ + private function readObjectProtect(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly) { + return; + } + + // offset: 0; size: 2; + + // bit: 0, mask 0x01; 1 = objects are protected + $bool = (0x01 & self::getUInt2d($recordData, 0)) >> 0; + + $this->phpSheet->getProtection()->setObjects((bool) $bool); + } + + /** + * PASSWORD - Sheet protection (hashed) password (BIFF2 through BIFF8). + */ + private function readPassword(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; 16-bit hash value of password + $password = strtoupper(dechex(self::getUInt2d($recordData, 0))); // the hashed password + $this->phpSheet->getProtection()->setPassword($password, true); + } + } + + /** + * Read DEFCOLWIDTH record. + */ + private function readDefColWidth(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; default column width + $width = self::getUInt2d($recordData, 0); + if ($width != 8) { + $this->phpSheet->getDefaultColumnDimension()->setWidth($width); + } + } + + /** + * Read COLINFO record. + */ + private function readColInfo(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; index to first column in range + $firstColumnIndex = self::getUInt2d($recordData, 0); + + // offset: 2; size: 2; index to last column in range + $lastColumnIndex = self::getUInt2d($recordData, 2); + + // offset: 4; size: 2; width of the column in 1/256 of the width of the zero character + $width = self::getUInt2d($recordData, 4); + + // offset: 6; size: 2; index to XF record for default column formatting + $xfIndex = self::getUInt2d($recordData, 6); + + // offset: 8; size: 2; option flags + // bit: 0; mask: 0x0001; 1= columns are hidden + $isHidden = (0x0001 & self::getUInt2d($recordData, 8)) >> 0; + + // bit: 10-8; mask: 0x0700; outline level of the columns (0 = no outline) + $level = (0x0700 & self::getUInt2d($recordData, 8)) >> 8; + + // bit: 12; mask: 0x1000; 1 = collapsed + $isCollapsed = (bool) ((0x1000 & self::getUInt2d($recordData, 8)) >> 12); + + // offset: 10; size: 2; not used + + for ($i = $firstColumnIndex + 1; $i <= $lastColumnIndex + 1; ++$i) { + if ($lastColumnIndex == 255 || $lastColumnIndex == 256) { + $this->phpSheet->getDefaultColumnDimension()->setWidth($width / 256); + + break; + } + $this->phpSheet->getColumnDimensionByColumn($i)->setWidth($width / 256); + $this->phpSheet->getColumnDimensionByColumn($i)->setVisible(!$isHidden); + $this->phpSheet->getColumnDimensionByColumn($i)->setOutlineLevel($level); + $this->phpSheet->getColumnDimensionByColumn($i)->setCollapsed($isCollapsed); + if (isset($this->mapCellXfIndex[$xfIndex])) { + $this->phpSheet->getColumnDimensionByColumn($i)->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + } + } + } + + /** + * ROW. + * + * This record contains the properties of a single row in a + * sheet. Rows and cells in a sheet are divided into blocks + * of 32 rows. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readRow(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; index of this row + $r = self::getUInt2d($recordData, 0); + + // offset: 2; size: 2; index to column of the first cell which is described by a cell record + + // offset: 4; size: 2; index to column of the last cell which is described by a cell record, increased by 1 + + // offset: 6; size: 2; + + // bit: 14-0; mask: 0x7FFF; height of the row, in twips = 1/20 of a point + $height = (0x7FFF & self::getUInt2d($recordData, 6)) >> 0; + + // bit: 15: mask: 0x8000; 0 = row has custom height; 1= row has default height + $useDefaultHeight = (0x8000 & self::getUInt2d($recordData, 6)) >> 15; + + if (!$useDefaultHeight) { + $this->phpSheet->getRowDimension($r + 1)->setRowHeight($height / 20); + } + + // offset: 8; size: 2; not used + + // offset: 10; size: 2; not used in BIFF5-BIFF8 + + // offset: 12; size: 4; option flags and default row formatting + + // bit: 2-0: mask: 0x00000007; outline level of the row + $level = (0x00000007 & self::getInt4d($recordData, 12)) >> 0; + $this->phpSheet->getRowDimension($r + 1)->setOutlineLevel($level); + + // bit: 4; mask: 0x00000010; 1 = outline group start or ends here... and is collapsed + $isCollapsed = (bool) ((0x00000010 & self::getInt4d($recordData, 12)) >> 4); + $this->phpSheet->getRowDimension($r + 1)->setCollapsed($isCollapsed); + + // bit: 5; mask: 0x00000020; 1 = row is hidden + $isHidden = (0x00000020 & self::getInt4d($recordData, 12)) >> 5; + $this->phpSheet->getRowDimension($r + 1)->setVisible(!$isHidden); + + // bit: 7; mask: 0x00000080; 1 = row has explicit format + $hasExplicitFormat = (0x00000080 & self::getInt4d($recordData, 12)) >> 7; + + // bit: 27-16; mask: 0x0FFF0000; only applies when hasExplicitFormat = 1; index to XF record + $xfIndex = (0x0FFF0000 & self::getInt4d($recordData, 12)) >> 16; + + if ($hasExplicitFormat && isset($this->mapCellXfIndex[$xfIndex])) { + $this->phpSheet->getRowDimension($r + 1)->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + } + } + + /** + * Read RK record + * This record represents a cell that contains an RK value + * (encoded integer or floating-point value). If a + * floating-point value cannot be encoded to an RK value, + * a NUMBER record will be written. This record replaces the + * record INTEGER written in BIFF2. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readRk(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; index to row + $row = self::getUInt2d($recordData, 0); + + // offset: 2; size: 2; index to column + $column = self::getUInt2d($recordData, 2); + $columnString = Coordinate::stringFromColumnIndex($column + 1); + + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + // offset: 4; size: 2; index to XF record + $xfIndex = self::getUInt2d($recordData, 4); + + // offset: 6; size: 4; RK value + $rknum = self::getInt4d($recordData, 6); + $numValue = self::getIEEE754($rknum); + + $cell = $this->phpSheet->getCell($columnString . ($row + 1)); + if (!$this->readDataOnly && isset($this->mapCellXfIndex[$xfIndex])) { + // add style information + $cell->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + + // add cell + $cell->setValueExplicit($numValue, DataType::TYPE_NUMERIC); + } + } + + /** + * Read LABELSST record + * This record represents a cell that contains a string. It + * replaces the LABEL record and RSTRING record used in + * BIFF2-BIFF5. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readLabelSst(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; index to row + $row = self::getUInt2d($recordData, 0); + + // offset: 2; size: 2; index to column + $column = self::getUInt2d($recordData, 2); + $columnString = Coordinate::stringFromColumnIndex($column + 1); + + $emptyCell = true; + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + // offset: 4; size: 2; index to XF record + $xfIndex = self::getUInt2d($recordData, 4); + + // offset: 6; size: 4; index to SST record + $index = self::getInt4d($recordData, 6); + + // add cell + if (($fmtRuns = $this->sst[$index]['fmtRuns']) && !$this->readDataOnly) { + // then we should treat as rich text + $richText = new RichText(); + $charPos = 0; + $sstCount = count($this->sst[$index]['fmtRuns']); + for ($i = 0; $i <= $sstCount; ++$i) { + if (isset($fmtRuns[$i])) { + $text = StringHelper::substring($this->sst[$index]['value'], $charPos, $fmtRuns[$i]['charPos'] - $charPos); + $charPos = $fmtRuns[$i]['charPos']; + } else { + $text = StringHelper::substring($this->sst[$index]['value'], $charPos, StringHelper::countCharacters($this->sst[$index]['value'])); + } + + if (StringHelper::countCharacters($text) > 0) { + if ($i == 0) { // first text run, no style + $richText->createText($text); + } else { + $textRun = $richText->createTextRun($text); + if (isset($fmtRuns[$i - 1])) { + if ($fmtRuns[$i - 1]['fontIndex'] < 4) { + $fontIndex = $fmtRuns[$i - 1]['fontIndex']; + } else { + // this has to do with that index 4 is omitted in all BIFF versions for some stra nge reason + // check the OpenOffice documentation of the FONT record + $fontIndex = $fmtRuns[$i - 1]['fontIndex'] - 1; + } + if (array_key_exists($fontIndex, $this->objFonts) === false) { + $fontIndex = count($this->objFonts) - 1; + } + $textRun->setFont(clone $this->objFonts[$fontIndex]); + } + } + } + } + if ($this->readEmptyCells || trim($richText->getPlainText()) !== '') { + $cell = $this->phpSheet->getCell($columnString . ($row + 1)); + $cell->setValueExplicit($richText, DataType::TYPE_STRING); + $emptyCell = false; + } + } else { + if ($this->readEmptyCells || trim($this->sst[$index]['value']) !== '') { + $cell = $this->phpSheet->getCell($columnString . ($row + 1)); + $cell->setValueExplicit($this->sst[$index]['value'], DataType::TYPE_STRING); + $emptyCell = false; + } + } + + if (!$this->readDataOnly && !$emptyCell && isset($this->mapCellXfIndex[$xfIndex])) { + // add style information + $cell->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + } + } + + /** + * Read MULRK record + * This record represents a cell range containing RK value + * cells. All cells are located in the same row. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readMulRk(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; index to row + $row = self::getUInt2d($recordData, 0); + + // offset: 2; size: 2; index to first column + $colFirst = self::getUInt2d($recordData, 2); + + // offset: var; size: 2; index to last column + $colLast = self::getUInt2d($recordData, $length - 2); + $columns = $colLast - $colFirst + 1; + + // offset within record data + $offset = 4; + + for ($i = 1; $i <= $columns; ++$i) { + $columnString = Coordinate::stringFromColumnIndex($colFirst + $i); + + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + // offset: var; size: 2; index to XF record + $xfIndex = self::getUInt2d($recordData, $offset); + + // offset: var; size: 4; RK value + $numValue = self::getIEEE754(self::getInt4d($recordData, $offset + 2)); + $cell = $this->phpSheet->getCell($columnString . ($row + 1)); + if (!$this->readDataOnly && isset($this->mapCellXfIndex[$xfIndex])) { + // add style + $cell->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + + // add cell value + $cell->setValueExplicit($numValue, DataType::TYPE_NUMERIC); + } + + $offset += 6; + } + } + + /** + * Read NUMBER record + * This record represents a cell that contains a + * floating-point value. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readNumber(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; index to row + $row = self::getUInt2d($recordData, 0); + + // offset: 2; size 2; index to column + $column = self::getUInt2d($recordData, 2); + $columnString = Coordinate::stringFromColumnIndex($column + 1); + + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + // offset 4; size: 2; index to XF record + $xfIndex = self::getUInt2d($recordData, 4); + + $numValue = self::extractNumber(substr($recordData, 6, 8)); + + $cell = $this->phpSheet->getCell($columnString . ($row + 1)); + if (!$this->readDataOnly && isset($this->mapCellXfIndex[$xfIndex])) { + // add cell style + $cell->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + + // add cell value + $cell->setValueExplicit($numValue, DataType::TYPE_NUMERIC); + } + } + + /** + * Read FORMULA record + perhaps a following STRING record if formula result is a string + * This record contains the token array and the result of a + * formula cell. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readFormula(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; row index + $row = self::getUInt2d($recordData, 0); + + // offset: 2; size: 2; col index + $column = self::getUInt2d($recordData, 2); + $columnString = Coordinate::stringFromColumnIndex($column + 1); + + // offset: 20: size: variable; formula structure + $formulaStructure = substr($recordData, 20); + + // offset: 14: size: 2; option flags, recalculate always, recalculate on open etc. + $options = self::getUInt2d($recordData, 14); + + // bit: 0; mask: 0x0001; 1 = recalculate always + // bit: 1; mask: 0x0002; 1 = calculate on open + // bit: 2; mask: 0x0008; 1 = part of a shared formula + $isPartOfSharedFormula = (bool) (0x0008 & $options); + + // WARNING: + // We can apparently not rely on $isPartOfSharedFormula. Even when $isPartOfSharedFormula = true + // the formula data may be ordinary formula data, therefore we need to check + // explicitly for the tExp token (0x01) + $isPartOfSharedFormula = $isPartOfSharedFormula && ord($formulaStructure[2]) == 0x01; + + if ($isPartOfSharedFormula) { + // part of shared formula which means there will be a formula with a tExp token and nothing else + // get the base cell, grab tExp token + $baseRow = self::getUInt2d($formulaStructure, 3); + $baseCol = self::getUInt2d($formulaStructure, 5); + $this->baseCell = Coordinate::stringFromColumnIndex($baseCol + 1) . ($baseRow + 1); + } + + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + if ($isPartOfSharedFormula) { + // formula is added to this cell after the sheet has been read + $this->sharedFormulaParts[$columnString . ($row + 1)] = $this->baseCell; + } + + // offset: 16: size: 4; not used + + // offset: 4; size: 2; XF index + $xfIndex = self::getUInt2d($recordData, 4); + + // offset: 6; size: 8; result of the formula + if ((ord($recordData[6]) == 0) && (ord($recordData[12]) == 255) && (ord($recordData[13]) == 255)) { + // String formula. Result follows in appended STRING record + $dataType = DataType::TYPE_STRING; + + // read possible SHAREDFMLA record + $code = self::getUInt2d($this->data, $this->pos); + if ($code == self::XLS_TYPE_SHAREDFMLA) { + $this->readSharedFmla(); + } + + // read STRING record + $value = $this->readString(); + } elseif ( + (ord($recordData[6]) == 1) + && (ord($recordData[12]) == 255) + && (ord($recordData[13]) == 255) + ) { + // Boolean formula. Result is in +2; 0=false, 1=true + $dataType = DataType::TYPE_BOOL; + $value = (bool) ord($recordData[8]); + } elseif ( + (ord($recordData[6]) == 2) + && (ord($recordData[12]) == 255) + && (ord($recordData[13]) == 255) + ) { + // Error formula. Error code is in +2 + $dataType = DataType::TYPE_ERROR; + $value = Xls\ErrorCode::lookup(ord($recordData[8])); + } elseif ( + (ord($recordData[6]) == 3) + && (ord($recordData[12]) == 255) + && (ord($recordData[13]) == 255) + ) { + // Formula result is a null string + $dataType = DataType::TYPE_NULL; + $value = ''; + } else { + // forumla result is a number, first 14 bytes like _NUMBER record + $dataType = DataType::TYPE_NUMERIC; + $value = self::extractNumber(substr($recordData, 6, 8)); + } + + $cell = $this->phpSheet->getCell($columnString . ($row + 1)); + if (!$this->readDataOnly && isset($this->mapCellXfIndex[$xfIndex])) { + // add cell style + $cell->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + + // store the formula + if (!$isPartOfSharedFormula) { + // not part of shared formula + // add cell value. If we can read formula, populate with formula, otherwise just used cached value + try { + if ($this->version != self::XLS_BIFF8) { + throw new Exception('Not BIFF8. Can only read BIFF8 formulas'); + } + $formula = $this->getFormulaFromStructure($formulaStructure); // get formula in human language + $cell->setValueExplicit('=' . $formula, DataType::TYPE_FORMULA); + } catch (PhpSpreadsheetException $e) { + $cell->setValueExplicit($value, $dataType); + } + } else { + if ($this->version == self::XLS_BIFF8) { + // do nothing at this point, formula id added later in the code + } else { + $cell->setValueExplicit($value, $dataType); + } + } + + // store the cached calculated value + $cell->setCalculatedValue($value); + } + } + + /** + * Read a SHAREDFMLA record. This function just stores the binary shared formula in the reader, + * which usually contains relative references. + * These will be used to construct the formula in each shared formula part after the sheet is read. + */ + private function readSharedFmla(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0, size: 6; cell range address of the area used by the shared formula, not used for anything + $cellRange = substr($recordData, 0, 6); + $cellRange = $this->readBIFF5CellRangeAddressFixed($cellRange); // note: even BIFF8 uses BIFF5 syntax + + // offset: 6, size: 1; not used + + // offset: 7, size: 1; number of existing FORMULA records for this shared formula + $no = ord($recordData[7]); + + // offset: 8, size: var; Binary token array of the shared formula + $formula = substr($recordData, 8); + + // at this point we only store the shared formula for later use + $this->sharedFormulas[$this->baseCell] = $formula; + } + + /** + * Read a STRING record from current stream position and advance the stream pointer to next record + * This record is used for storing result from FORMULA record when it is a string, and + * it occurs directly after the FORMULA record. + * + * @return string The string contents as UTF-8 + */ + private function readString() + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->version == self::XLS_BIFF8) { + $string = self::readUnicodeStringLong($recordData); + $value = $string['value']; + } else { + $string = $this->readByteStringLong($recordData); + $value = $string['value']; + } + + return $value; + } + + /** + * Read BOOLERR record + * This record represents a Boolean value or error value + * cell. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readBoolErr(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; row index + $row = self::getUInt2d($recordData, 0); + + // offset: 2; size: 2; column index + $column = self::getUInt2d($recordData, 2); + $columnString = Coordinate::stringFromColumnIndex($column + 1); + + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + // offset: 4; size: 2; index to XF record + $xfIndex = self::getUInt2d($recordData, 4); + + // offset: 6; size: 1; the boolean value or error value + $boolErr = ord($recordData[6]); + + // offset: 7; size: 1; 0=boolean; 1=error + $isError = ord($recordData[7]); + + $cell = $this->phpSheet->getCell($columnString . ($row + 1)); + switch ($isError) { + case 0: // boolean + $value = (bool) $boolErr; + + // add cell value + $cell->setValueExplicit($value, DataType::TYPE_BOOL); + + break; + case 1: // error type + $value = Xls\ErrorCode::lookup($boolErr); + + // add cell value + $cell->setValueExplicit($value, DataType::TYPE_ERROR); + + break; + } + + if (!$this->readDataOnly && isset($this->mapCellXfIndex[$xfIndex])) { + // add cell style + $cell->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + } + } + + /** + * Read MULBLANK record + * This record represents a cell range of empty cells. All + * cells are located in the same row. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readMulBlank(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; index to row + $row = self::getUInt2d($recordData, 0); + + // offset: 2; size: 2; index to first column + $fc = self::getUInt2d($recordData, 2); + + // offset: 4; size: 2 x nc; list of indexes to XF records + // add style information + if (!$this->readDataOnly && $this->readEmptyCells) { + for ($i = 0; $i < $length / 2 - 3; ++$i) { + $columnString = Coordinate::stringFromColumnIndex($fc + $i + 1); + + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + $xfIndex = self::getUInt2d($recordData, 4 + 2 * $i); + if (isset($this->mapCellXfIndex[$xfIndex])) { + $this->phpSheet->getCell($columnString . ($row + 1))->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + } + } + } + + // offset: 6; size 2; index to last column (not needed) + } + + /** + * Read LABEL record + * This record represents a cell that contains a string. In + * BIFF8 it is usually replaced by the LABELSST record. + * Excel still uses this record, if it copies unformatted + * text cells to the clipboard. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readLabel(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; index to row + $row = self::getUInt2d($recordData, 0); + + // offset: 2; size: 2; index to column + $column = self::getUInt2d($recordData, 2); + $columnString = Coordinate::stringFromColumnIndex($column + 1); + + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + // offset: 4; size: 2; XF index + $xfIndex = self::getUInt2d($recordData, 4); + + // add cell value + // todo: what if string is very long? continue record + if ($this->version == self::XLS_BIFF8) { + $string = self::readUnicodeStringLong(substr($recordData, 6)); + $value = $string['value']; + } else { + $string = $this->readByteStringLong(substr($recordData, 6)); + $value = $string['value']; + } + if ($this->readEmptyCells || trim($value) !== '') { + $cell = $this->phpSheet->getCell($columnString . ($row + 1)); + $cell->setValueExplicit($value, DataType::TYPE_STRING); + + if (!$this->readDataOnly && isset($this->mapCellXfIndex[$xfIndex])) { + // add cell style + $cell->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + } + } + } + + /** + * Read BLANK record. + */ + private function readBlank(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; row index + $row = self::getUInt2d($recordData, 0); + + // offset: 2; size: 2; col index + $col = self::getUInt2d($recordData, 2); + $columnString = Coordinate::stringFromColumnIndex($col + 1); + + // Read cell? + if (($this->getReadFilter() !== null) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->phpSheet->getTitle())) { + // offset: 4; size: 2; XF index + $xfIndex = self::getUInt2d($recordData, 4); + + // add style information + if (!$this->readDataOnly && $this->readEmptyCells && isset($this->mapCellXfIndex[$xfIndex])) { + $this->phpSheet->getCell($columnString . ($row + 1))->setXfIndex($this->mapCellXfIndex[$xfIndex]); + } + } + } + + /** + * Read MSODRAWING record. + */ + private function readMsoDrawing(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + + // get spliced record data + $splicedRecordData = $this->getSplicedRecordData(); + $recordData = $splicedRecordData['recordData']; + + $this->drawingData .= $recordData; + } + + /** + * Read OBJ record. + */ + private function readObj(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly || $this->version != self::XLS_BIFF8) { + return; + } + + // recordData consists of an array of subrecords looking like this: + // ft: 2 bytes; ftCmo type (0x15) + // cb: 2 bytes; size in bytes of ftCmo data + // ot: 2 bytes; Object Type + // id: 2 bytes; Object id number + // grbit: 2 bytes; Option Flags + // data: var; subrecord data + + // for now, we are just interested in the second subrecord containing the object type + $ftCmoType = self::getUInt2d($recordData, 0); + $cbCmoSize = self::getUInt2d($recordData, 2); + $otObjType = self::getUInt2d($recordData, 4); + $idObjID = self::getUInt2d($recordData, 6); + $grbitOpts = self::getUInt2d($recordData, 6); + + $this->objs[] = [ + 'ftCmoType' => $ftCmoType, + 'cbCmoSize' => $cbCmoSize, + 'otObjType' => $otObjType, + 'idObjID' => $idObjID, + 'grbitOpts' => $grbitOpts, + ]; + $this->textObjRef = $idObjID; + } + + /** + * Read WINDOW2 record. + */ + private function readWindow2(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; option flags + $options = self::getUInt2d($recordData, 0); + + // offset: 2; size: 2; index to first visible row + $firstVisibleRow = self::getUInt2d($recordData, 2); + + // offset: 4; size: 2; index to first visible colum + $firstVisibleColumn = self::getUInt2d($recordData, 4); + $zoomscaleInPageBreakPreview = 0; + $zoomscaleInNormalView = 0; + if ($this->version === self::XLS_BIFF8) { + // offset: 8; size: 2; not used + // offset: 10; size: 2; cached magnification factor in page break preview (in percent); 0 = Default (60%) + // offset: 12; size: 2; cached magnification factor in normal view (in percent); 0 = Default (100%) + // offset: 14; size: 4; not used + if (!isset($recordData[10])) { + $zoomscaleInPageBreakPreview = 0; + } else { + $zoomscaleInPageBreakPreview = self::getUInt2d($recordData, 10); + } + + if ($zoomscaleInPageBreakPreview === 0) { + $zoomscaleInPageBreakPreview = 60; + } + + if (!isset($recordData[12])) { + $zoomscaleInNormalView = 0; + } else { + $zoomscaleInNormalView = self::getUInt2d($recordData, 12); + } + + if ($zoomscaleInNormalView === 0) { + $zoomscaleInNormalView = 100; + } + } + + // bit: 1; mask: 0x0002; 0 = do not show gridlines, 1 = show gridlines + $showGridlines = (bool) ((0x0002 & $options) >> 1); + $this->phpSheet->setShowGridlines($showGridlines); + + // bit: 2; mask: 0x0004; 0 = do not show headers, 1 = show headers + $showRowColHeaders = (bool) ((0x0004 & $options) >> 2); + $this->phpSheet->setShowRowColHeaders($showRowColHeaders); + + // bit: 3; mask: 0x0008; 0 = panes are not frozen, 1 = panes are frozen + $this->frozen = (bool) ((0x0008 & $options) >> 3); + + // bit: 6; mask: 0x0040; 0 = columns from left to right, 1 = columns from right to left + $this->phpSheet->setRightToLeft((bool) ((0x0040 & $options) >> 6)); + + // bit: 10; mask: 0x0400; 0 = sheet not active, 1 = sheet active + $isActive = (bool) ((0x0400 & $options) >> 10); + if ($isActive) { + $this->spreadsheet->setActiveSheetIndex($this->spreadsheet->getIndex($this->phpSheet)); + } + + // bit: 11; mask: 0x0800; 0 = normal view, 1 = page break view + $isPageBreakPreview = (bool) ((0x0800 & $options) >> 11); + + //FIXME: set $firstVisibleRow and $firstVisibleColumn + + if ($this->phpSheet->getSheetView()->getView() !== SheetView::SHEETVIEW_PAGE_LAYOUT) { + //NOTE: this setting is inferior to page layout view(Excel2007-) + $view = $isPageBreakPreview ? SheetView::SHEETVIEW_PAGE_BREAK_PREVIEW : SheetView::SHEETVIEW_NORMAL; + $this->phpSheet->getSheetView()->setView($view); + if ($this->version === self::XLS_BIFF8) { + $zoomScale = $isPageBreakPreview ? $zoomscaleInPageBreakPreview : $zoomscaleInNormalView; + $this->phpSheet->getSheetView()->setZoomScale($zoomScale); + $this->phpSheet->getSheetView()->setZoomScaleNormal($zoomscaleInNormalView); + } + } + } + + /** + * Read PLV Record(Created by Excel2007 or upper). + */ + private function readPageLayoutView(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; rt + //->ignore + $rt = self::getUInt2d($recordData, 0); + // offset: 2; size: 2; grbitfr + //->ignore + $grbitFrt = self::getUInt2d($recordData, 2); + // offset: 4; size: 8; reserved + //->ignore + + // offset: 12; size 2; zoom scale + $wScalePLV = self::getUInt2d($recordData, 12); + // offset: 14; size 2; grbit + $grbit = self::getUInt2d($recordData, 14); + + // decomprise grbit + $fPageLayoutView = $grbit & 0x01; + $fRulerVisible = ($grbit >> 1) & 0x01; //no support + $fWhitespaceHidden = ($grbit >> 3) & 0x01; //no support + + if ($fPageLayoutView === 1) { + $this->phpSheet->getSheetView()->setView(SheetView::SHEETVIEW_PAGE_LAYOUT); + $this->phpSheet->getSheetView()->setZoomScale($wScalePLV); //set by Excel2007 only if SHEETVIEW_PAGE_LAYOUT + } + //otherwise, we cannot know whether SHEETVIEW_PAGE_LAYOUT or SHEETVIEW_PAGE_BREAK_PREVIEW. + } + + /** + * Read SCL record. + */ + private function readScl(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // offset: 0; size: 2; numerator of the view magnification + $numerator = self::getUInt2d($recordData, 0); + + // offset: 2; size: 2; numerator of the view magnification + $denumerator = self::getUInt2d($recordData, 2); + + // set the zoom scale (in percent) + $this->phpSheet->getSheetView()->setZoomScale($numerator * 100 / $denumerator); + } + + /** + * Read PANE record. + */ + private function readPane(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; position of vertical split + $px = self::getUInt2d($recordData, 0); + + // offset: 2; size: 2; position of horizontal split + $py = self::getUInt2d($recordData, 2); + + // offset: 4; size: 2; top most visible row in the bottom pane + $rwTop = self::getUInt2d($recordData, 4); + + // offset: 6; size: 2; first visible left column in the right pane + $colLeft = self::getUInt2d($recordData, 6); + + if ($this->frozen) { + // frozen panes + $cell = Coordinate::stringFromColumnIndex($px + 1) . ($py + 1); + $topLeftCell = Coordinate::stringFromColumnIndex($colLeft + 1) . ($rwTop + 1); + $this->phpSheet->freezePane($cell, $topLeftCell); + } + // unfrozen panes; split windows; not supported by PhpSpreadsheet core + } + } + + /** + * Read SELECTION record. There is one such record for each pane in the sheet. + */ + private function readSelection(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 1; pane identifier + $paneId = ord($recordData[0]); + + // offset: 1; size: 2; index to row of the active cell + $r = self::getUInt2d($recordData, 1); + + // offset: 3; size: 2; index to column of the active cell + $c = self::getUInt2d($recordData, 3); + + // offset: 5; size: 2; index into the following cell range list to the + // entry that contains the active cell + $index = self::getUInt2d($recordData, 5); + + // offset: 7; size: var; cell range address list containing all selected cell ranges + $data = substr($recordData, 7); + $cellRangeAddressList = $this->readBIFF5CellRangeAddressList($data); // note: also BIFF8 uses BIFF5 syntax + + $selectedCells = $cellRangeAddressList['cellRangeAddresses'][0]; + + // first row '1' + last row '16384' indicates that full column is selected (apparently also in BIFF8!) + if (preg_match('/^([A-Z]+1\:[A-Z]+)16384$/', $selectedCells)) { + $selectedCells = (string) preg_replace('/^([A-Z]+1\:[A-Z]+)16384$/', '${1}1048576', $selectedCells); + } + + // first row '1' + last row '65536' indicates that full column is selected + if (preg_match('/^([A-Z]+1\:[A-Z]+)65536$/', $selectedCells)) { + $selectedCells = (string) preg_replace('/^([A-Z]+1\:[A-Z]+)65536$/', '${1}1048576', $selectedCells); + } + + // first column 'A' + last column 'IV' indicates that full row is selected + if (preg_match('/^(A\d+\:)IV(\d+)$/', $selectedCells)) { + $selectedCells = (string) preg_replace('/^(A\d+\:)IV(\d+)$/', '${1}XFD${2}', $selectedCells); + } + + $this->phpSheet->setSelectedCells($selectedCells); + } + } + + private function includeCellRangeFiltered($cellRangeAddress) + { + $includeCellRange = true; + if ($this->getReadFilter() !== null) { + $includeCellRange = false; + $rangeBoundaries = Coordinate::getRangeBoundaries($cellRangeAddress); + ++$rangeBoundaries[1][0]; + for ($row = $rangeBoundaries[0][1]; $row <= $rangeBoundaries[1][1]; ++$row) { + for ($column = $rangeBoundaries[0][0]; $column != $rangeBoundaries[1][0]; ++$column) { + if ($this->getReadFilter()->readCell($column, $row, $this->phpSheet->getTitle())) { + $includeCellRange = true; + + break 2; + } + } + } + } + + return $includeCellRange; + } + + /** + * MERGEDCELLS. + * + * This record contains the addresses of merged cell ranges + * in the current sheet. + * + * -- "OpenOffice.org's Documentation of the Microsoft + * Excel File Format" + */ + private function readMergedCells(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->version == self::XLS_BIFF8 && !$this->readDataOnly) { + $cellRangeAddressList = $this->readBIFF8CellRangeAddressList($recordData); + foreach ($cellRangeAddressList['cellRangeAddresses'] as $cellRangeAddress) { + if ( + (strpos($cellRangeAddress, ':') !== false) && + ($this->includeCellRangeFiltered($cellRangeAddress)) + ) { + $this->phpSheet->mergeCells($cellRangeAddress); + } + } + } + } + + /** + * Read HYPERLINK record. + */ + private function readHyperLink(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer forward to next record + $this->pos += 4 + $length; + + if (!$this->readDataOnly) { + // offset: 0; size: 8; cell range address of all cells containing this hyperlink + try { + $cellRange = $this->readBIFF8CellRangeAddressFixed($recordData); + } catch (PhpSpreadsheetException $e) { + return; + } + + // offset: 8, size: 16; GUID of StdLink + + // offset: 24, size: 4; unknown value + + // offset: 28, size: 4; option flags + // bit: 0; mask: 0x00000001; 0 = no link or extant, 1 = file link or URL + $isFileLinkOrUrl = (0x00000001 & self::getUInt2d($recordData, 28)) >> 0; + + // bit: 1; mask: 0x00000002; 0 = relative path, 1 = absolute path or URL + $isAbsPathOrUrl = (0x00000001 & self::getUInt2d($recordData, 28)) >> 1; + + // bit: 2 (and 4); mask: 0x00000014; 0 = no description + $hasDesc = (0x00000014 & self::getUInt2d($recordData, 28)) >> 2; + + // bit: 3; mask: 0x00000008; 0 = no text, 1 = has text + $hasText = (0x00000008 & self::getUInt2d($recordData, 28)) >> 3; + + // bit: 7; mask: 0x00000080; 0 = no target frame, 1 = has target frame + $hasFrame = (0x00000080 & self::getUInt2d($recordData, 28)) >> 7; + + // bit: 8; mask: 0x00000100; 0 = file link or URL, 1 = UNC path (inc. server name) + $isUNC = (0x00000100 & self::getUInt2d($recordData, 28)) >> 8; + + // offset within record data + $offset = 32; + + if ($hasDesc) { + // offset: 32; size: var; character count of description text + $dl = self::getInt4d($recordData, 32); + // offset: 36; size: var; character array of description text, no Unicode string header, always 16-bit characters, zero terminated + $desc = self::encodeUTF16(substr($recordData, 36, 2 * ($dl - 1)), false); + $offset += 4 + 2 * $dl; + } + if ($hasFrame) { + $fl = self::getInt4d($recordData, $offset); + $offset += 4 + 2 * $fl; + } + + // detect type of hyperlink (there are 4 types) + $hyperlinkType = null; + + if ($isUNC) { + $hyperlinkType = 'UNC'; + } elseif (!$isFileLinkOrUrl) { + $hyperlinkType = 'workbook'; + } elseif (ord($recordData[$offset]) == 0x03) { + $hyperlinkType = 'local'; + } elseif (ord($recordData[$offset]) == 0xE0) { + $hyperlinkType = 'URL'; + } + + switch ($hyperlinkType) { + case 'URL': + // section 5.58.2: Hyperlink containing a URL + // e.g. http://example.org/index.php + + // offset: var; size: 16; GUID of URL Moniker + $offset += 16; + // offset: var; size: 4; size (in bytes) of character array of the URL including trailing zero word + $us = self::getInt4d($recordData, $offset); + $offset += 4; + // offset: var; size: $us; character array of the URL, no Unicode string header, always 16-bit characters, zero-terminated + $url = self::encodeUTF16(substr($recordData, $offset, $us - 2), false); + $nullOffset = strpos($url, chr(0x00)); + if ($nullOffset) { + $url = substr($url, 0, $nullOffset); + } + $url .= $hasText ? '#' : ''; + $offset += $us; + + break; + case 'local': + // section 5.58.3: Hyperlink to local file + // examples: + // mydoc.txt + // ../../somedoc.xls#Sheet!A1 + + // offset: var; size: 16; GUI of File Moniker + $offset += 16; + + // offset: var; size: 2; directory up-level count. + $upLevelCount = self::getUInt2d($recordData, $offset); + $offset += 2; + + // offset: var; size: 4; character count of the shortened file path and name, including trailing zero word + $sl = self::getInt4d($recordData, $offset); + $offset += 4; + + // offset: var; size: sl; character array of the shortened file path and name in 8.3-DOS-format (compressed Unicode string) + $shortenedFilePath = substr($recordData, $offset, $sl); + $shortenedFilePath = self::encodeUTF16($shortenedFilePath, true); + $shortenedFilePath = substr($shortenedFilePath, 0, -1); // remove trailing zero + + $offset += $sl; + + // offset: var; size: 24; unknown sequence + $offset += 24; + + // extended file path + // offset: var; size: 4; size of the following file link field including string lenth mark + $sz = self::getInt4d($recordData, $offset); + $offset += 4; + + // only present if $sz > 0 + if ($sz > 0) { + // offset: var; size: 4; size of the character array of the extended file path and name + $xl = self::getInt4d($recordData, $offset); + $offset += 4; + + // offset: var; size 2; unknown + $offset += 2; + + // offset: var; size $xl; character array of the extended file path and name. + $extendedFilePath = substr($recordData, $offset, $xl); + $extendedFilePath = self::encodeUTF16($extendedFilePath, false); + $offset += $xl; + } + + // construct the path + $url = str_repeat('..\\', $upLevelCount); + $url .= ($sz > 0) ? $extendedFilePath : $shortenedFilePath; // use extended path if available + $url .= $hasText ? '#' : ''; + + break; + case 'UNC': + // section 5.58.4: Hyperlink to a File with UNC (Universal Naming Convention) Path + // todo: implement + return; + case 'workbook': + // section 5.58.5: Hyperlink to the Current Workbook + // e.g. Sheet2!B1:C2, stored in text mark field + $url = 'sheet://'; + + break; + default: + return; + } + + if ($hasText) { + // offset: var; size: 4; character count of text mark including trailing zero word + $tl = self::getInt4d($recordData, $offset); + $offset += 4; + // offset: var; size: var; character array of the text mark without the # sign, no Unicode header, always 16-bit characters, zero-terminated + $text = self::encodeUTF16(substr($recordData, $offset, 2 * ($tl - 1)), false); + $url .= $text; + } + + // apply the hyperlink to all the relevant cells + foreach (Coordinate::extractAllCellReferencesInRange($cellRange) as $coordinate) { + $this->phpSheet->getCell($coordinate)->getHyperLink()->setUrl($url); + } + } + } + + /** + * Read DATAVALIDATIONS record. + */ + private function readDataValidations(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer forward to next record + $this->pos += 4 + $length; + } + + /** + * Read DATAVALIDATION record. + */ + private function readDataValidation(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer forward to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly) { + return; + } + + // offset: 0; size: 4; Options + $options = self::getInt4d($recordData, 0); + + // bit: 0-3; mask: 0x0000000F; type + $type = (0x0000000F & $options) >> 0; + $type = Xls\DataValidationHelper::type($type); + + // bit: 4-6; mask: 0x00000070; error type + $errorStyle = (0x00000070 & $options) >> 4; + $errorStyle = Xls\DataValidationHelper::errorStyle($errorStyle); + + // bit: 7; mask: 0x00000080; 1= formula is explicit (only applies to list) + // I have only seen cases where this is 1 + $explicitFormula = (0x00000080 & $options) >> 7; + + // bit: 8; mask: 0x00000100; 1= empty cells allowed + $allowBlank = (0x00000100 & $options) >> 8; + + // bit: 9; mask: 0x00000200; 1= suppress drop down arrow in list type validity + $suppressDropDown = (0x00000200 & $options) >> 9; + + // bit: 18; mask: 0x00040000; 1= show prompt box if cell selected + $showInputMessage = (0x00040000 & $options) >> 18; + + // bit: 19; mask: 0x00080000; 1= show error box if invalid values entered + $showErrorMessage = (0x00080000 & $options) >> 19; + + // bit: 20-23; mask: 0x00F00000; condition operator + $operator = (0x00F00000 & $options) >> 20; + $operator = Xls\DataValidationHelper::operator($operator); + + if ($type === null || $errorStyle === null || $operator === null) { + return; + } + + // offset: 4; size: var; title of the prompt box + $offset = 4; + $string = self::readUnicodeStringLong(substr($recordData, $offset)); + $promptTitle = $string['value'] !== chr(0) ? $string['value'] : ''; + $offset += $string['size']; + + // offset: var; size: var; title of the error box + $string = self::readUnicodeStringLong(substr($recordData, $offset)); + $errorTitle = $string['value'] !== chr(0) ? $string['value'] : ''; + $offset += $string['size']; + + // offset: var; size: var; text of the prompt box + $string = self::readUnicodeStringLong(substr($recordData, $offset)); + $prompt = $string['value'] !== chr(0) ? $string['value'] : ''; + $offset += $string['size']; + + // offset: var; size: var; text of the error box + $string = self::readUnicodeStringLong(substr($recordData, $offset)); + $error = $string['value'] !== chr(0) ? $string['value'] : ''; + $offset += $string['size']; + + // offset: var; size: 2; size of the formula data for the first condition + $sz1 = self::getUInt2d($recordData, $offset); + $offset += 2; + + // offset: var; size: 2; not used + $offset += 2; + + // offset: var; size: $sz1; formula data for first condition (without size field) + $formula1 = substr($recordData, $offset, $sz1); + $formula1 = pack('v', $sz1) . $formula1; // prepend the length + + try { + $formula1 = $this->getFormulaFromStructure($formula1); + + // in list type validity, null characters are used as item separators + if ($type == DataValidation::TYPE_LIST) { + $formula1 = str_replace(chr(0), ',', $formula1); + } + } catch (PhpSpreadsheetException $e) { + return; + } + $offset += $sz1; + + // offset: var; size: 2; size of the formula data for the first condition + $sz2 = self::getUInt2d($recordData, $offset); + $offset += 2; + + // offset: var; size: 2; not used + $offset += 2; + + // offset: var; size: $sz2; formula data for second condition (without size field) + $formula2 = substr($recordData, $offset, $sz2); + $formula2 = pack('v', $sz2) . $formula2; // prepend the length + + try { + $formula2 = $this->getFormulaFromStructure($formula2); + } catch (PhpSpreadsheetException $e) { + return; + } + $offset += $sz2; + + // offset: var; size: var; cell range address list with + $cellRangeAddressList = $this->readBIFF8CellRangeAddressList(substr($recordData, $offset)); + $cellRangeAddresses = $cellRangeAddressList['cellRangeAddresses']; + + foreach ($cellRangeAddresses as $cellRange) { + $stRange = $this->phpSheet->shrinkRangeToFit($cellRange); + foreach (Coordinate::extractAllCellReferencesInRange($stRange) as $coordinate) { + $objValidation = $this->phpSheet->getCell($coordinate)->getDataValidation(); + $objValidation->setType($type); + $objValidation->setErrorStyle($errorStyle); + $objValidation->setAllowBlank((bool) $allowBlank); + $objValidation->setShowInputMessage((bool) $showInputMessage); + $objValidation->setShowErrorMessage((bool) $showErrorMessage); + $objValidation->setShowDropDown(!$suppressDropDown); + $objValidation->setOperator($operator); + $objValidation->setErrorTitle($errorTitle); + $objValidation->setError($error); + $objValidation->setPromptTitle($promptTitle); + $objValidation->setPrompt($prompt); + $objValidation->setFormula1($formula1); + $objValidation->setFormula2($formula2); + } + } + } + + /** + * Read SHEETLAYOUT record. Stores sheet tab color information. + */ + private function readSheetLayout(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // local pointer in record data + $offset = 0; + + if (!$this->readDataOnly) { + // offset: 0; size: 2; repeated record identifier 0x0862 + + // offset: 2; size: 10; not used + + // offset: 12; size: 4; size of record data + // Excel 2003 uses size of 0x14 (documented), Excel 2007 uses size of 0x28 (not documented?) + $sz = self::getInt4d($recordData, 12); + + switch ($sz) { + case 0x14: + // offset: 16; size: 2; color index for sheet tab + $colorIndex = self::getUInt2d($recordData, 16); + $color = Xls\Color::map($colorIndex, $this->palette, $this->version); + $this->phpSheet->getTabColor()->setRGB($color['rgb']); + + break; + case 0x28: + // TODO: Investigate structure for .xls SHEETLAYOUT record as saved by MS Office Excel 2007 + return; + + break; + } + } + } + + /** + * Read SHEETPROTECTION record (FEATHEADR). + */ + private function readSheetProtection(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly) { + return; + } + + // offset: 0; size: 2; repeated record header + + // offset: 2; size: 2; FRT cell reference flag (=0 currently) + + // offset: 4; size: 8; Currently not used and set to 0 + + // offset: 12; size: 2; Shared feature type index (2=Enhanced Protetion, 4=SmartTag) + $isf = self::getUInt2d($recordData, 12); + if ($isf != 2) { + return; + } + + // offset: 14; size: 1; =1 since this is a feat header + + // offset: 15; size: 4; size of rgbHdrSData + + // rgbHdrSData, assume "Enhanced Protection" + // offset: 19; size: 2; option flags + $options = self::getUInt2d($recordData, 19); + + // bit: 0; mask 0x0001; 1 = user may edit objects, 0 = users must not edit objects + $bool = (0x0001 & $options) >> 0; + $this->phpSheet->getProtection()->setObjects(!$bool); + + // bit: 1; mask 0x0002; edit scenarios + $bool = (0x0002 & $options) >> 1; + $this->phpSheet->getProtection()->setScenarios(!$bool); + + // bit: 2; mask 0x0004; format cells + $bool = (0x0004 & $options) >> 2; + $this->phpSheet->getProtection()->setFormatCells(!$bool); + + // bit: 3; mask 0x0008; format columns + $bool = (0x0008 & $options) >> 3; + $this->phpSheet->getProtection()->setFormatColumns(!$bool); + + // bit: 4; mask 0x0010; format rows + $bool = (0x0010 & $options) >> 4; + $this->phpSheet->getProtection()->setFormatRows(!$bool); + + // bit: 5; mask 0x0020; insert columns + $bool = (0x0020 & $options) >> 5; + $this->phpSheet->getProtection()->setInsertColumns(!$bool); + + // bit: 6; mask 0x0040; insert rows + $bool = (0x0040 & $options) >> 6; + $this->phpSheet->getProtection()->setInsertRows(!$bool); + + // bit: 7; mask 0x0080; insert hyperlinks + $bool = (0x0080 & $options) >> 7; + $this->phpSheet->getProtection()->setInsertHyperlinks(!$bool); + + // bit: 8; mask 0x0100; delete columns + $bool = (0x0100 & $options) >> 8; + $this->phpSheet->getProtection()->setDeleteColumns(!$bool); + + // bit: 9; mask 0x0200; delete rows + $bool = (0x0200 & $options) >> 9; + $this->phpSheet->getProtection()->setDeleteRows(!$bool); + + // bit: 10; mask 0x0400; select locked cells + $bool = (0x0400 & $options) >> 10; + $this->phpSheet->getProtection()->setSelectLockedCells(!$bool); + + // bit: 11; mask 0x0800; sort cell range + $bool = (0x0800 & $options) >> 11; + $this->phpSheet->getProtection()->setSort(!$bool); + + // bit: 12; mask 0x1000; auto filter + $bool = (0x1000 & $options) >> 12; + $this->phpSheet->getProtection()->setAutoFilter(!$bool); + + // bit: 13; mask 0x2000; pivot tables + $bool = (0x2000 & $options) >> 13; + $this->phpSheet->getProtection()->setPivotTables(!$bool); + + // bit: 14; mask 0x4000; select unlocked cells + $bool = (0x4000 & $options) >> 14; + $this->phpSheet->getProtection()->setSelectUnlockedCells(!$bool); + + // offset: 21; size: 2; not used + } + + /** + * Read RANGEPROTECTION record + * Reading of this record is based on Microsoft Office Excel 97-2000 Binary File Format Specification, + * where it is referred to as FEAT record. + */ + private function readRangeProtection(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer to next record + $this->pos += 4 + $length; + + // local pointer in record data + $offset = 0; + + if (!$this->readDataOnly) { + $offset += 12; + + // offset: 12; size: 2; shared feature type, 2 = enhanced protection, 4 = smart tag + $isf = self::getUInt2d($recordData, 12); + if ($isf != 2) { + // we only read FEAT records of type 2 + return; + } + $offset += 2; + + $offset += 5; + + // offset: 19; size: 2; count of ref ranges this feature is on + $cref = self::getUInt2d($recordData, 19); + $offset += 2; + + $offset += 6; + + // offset: 27; size: 8 * $cref; list of cell ranges (like in hyperlink record) + $cellRanges = []; + for ($i = 0; $i < $cref; ++$i) { + try { + $cellRange = $this->readBIFF8CellRangeAddressFixed(substr($recordData, 27 + 8 * $i, 8)); + } catch (PhpSpreadsheetException $e) { + return; + } + $cellRanges[] = $cellRange; + $offset += 8; + } + + // offset: var; size: var; variable length of feature specific data + $rgbFeat = substr($recordData, $offset); + $offset += 4; + + // offset: var; size: 4; the encrypted password (only 16-bit although field is 32-bit) + $wPassword = self::getInt4d($recordData, $offset); + $offset += 4; + + // Apply range protection to sheet + if ($cellRanges) { + $this->phpSheet->protectCells(implode(' ', $cellRanges), strtoupper(dechex($wPassword)), true); + } + } + } + + /** + * Read a free CONTINUE record. Free CONTINUE record may be a camouflaged MSODRAWING record + * When MSODRAWING data on a sheet exceeds 8224 bytes, CONTINUE records are used instead. Undocumented. + * In this case, we must treat the CONTINUE record as a MSODRAWING record. + */ + private function readContinue(): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // check if we are reading drawing data + // this is in case a free CONTINUE record occurs in other circumstances we are unaware of + if ($this->drawingData == '') { + // move stream pointer to next record + $this->pos += 4 + $length; + + return; + } + + // check if record data is at least 4 bytes long, otherwise there is no chance this is MSODRAWING data + if ($length < 4) { + // move stream pointer to next record + $this->pos += 4 + $length; + + return; + } + + // dirty check to see if CONTINUE record could be a camouflaged MSODRAWING record + // look inside CONTINUE record to see if it looks like a part of an Escher stream + // we know that Escher stream may be split at least at + // 0xF003 MsofbtSpgrContainer + // 0xF004 MsofbtSpContainer + // 0xF00D MsofbtClientTextbox + $validSplitPoints = [0xF003, 0xF004, 0xF00D]; // add identifiers if we find more + + $splitPoint = self::getUInt2d($recordData, 2); + if (in_array($splitPoint, $validSplitPoints)) { + // get spliced record data (and move pointer to next record) + $splicedRecordData = $this->getSplicedRecordData(); + $this->drawingData .= $splicedRecordData['recordData']; + + return; + } + + // move stream pointer to next record + $this->pos += 4 + $length; + } + + /** + * Reads a record from current position in data stream and continues reading data as long as CONTINUE + * records are found. Splices the record data pieces and returns the combined string as if record data + * is in one piece. + * Moves to next current position in data stream to start of next record different from a CONtINUE record. + * + * @return array + */ + private function getSplicedRecordData() + { + $data = ''; + $spliceOffsets = []; + + $i = 0; + $spliceOffsets[0] = 0; + + do { + ++$i; + + // offset: 0; size: 2; identifier + $identifier = self::getUInt2d($this->data, $this->pos); + // offset: 2; size: 2; length + $length = self::getUInt2d($this->data, $this->pos + 2); + $data .= $this->readRecordData($this->data, $this->pos + 4, $length); + + $spliceOffsets[$i] = $spliceOffsets[$i - 1] + $length; + + $this->pos += 4 + $length; + $nextIdentifier = self::getUInt2d($this->data, $this->pos); + } while ($nextIdentifier == self::XLS_TYPE_CONTINUE); + + return [ + 'recordData' => $data, + 'spliceOffsets' => $spliceOffsets, + ]; + } + + /** + * Convert formula structure into human readable Excel formula like 'A3+A5*5'. + * + * @param string $formulaStructure The complete binary data for the formula + * @param string $baseCell Base cell, only needed when formula contains tRefN tokens, e.g. with shared formulas + * + * @return string Human readable formula + */ + private function getFormulaFromStructure($formulaStructure, $baseCell = 'A1') + { + // offset: 0; size: 2; size of the following formula data + $sz = self::getUInt2d($formulaStructure, 0); + + // offset: 2; size: sz + $formulaData = substr($formulaStructure, 2, $sz); + + // offset: 2 + sz; size: variable (optional) + if (strlen($formulaStructure) > 2 + $sz) { + $additionalData = substr($formulaStructure, 2 + $sz); + } else { + $additionalData = ''; + } + + return $this->getFormulaFromData($formulaData, $additionalData, $baseCell); + } + + /** + * Take formula data and additional data for formula and return human readable formula. + * + * @param string $formulaData The binary data for the formula itself + * @param string $additionalData Additional binary data going with the formula + * @param string $baseCell Base cell, only needed when formula contains tRefN tokens, e.g. with shared formulas + * + * @return string Human readable formula + */ + private function getFormulaFromData($formulaData, $additionalData = '', $baseCell = 'A1') + { + // start parsing the formula data + $tokens = []; + + while (strlen($formulaData) > 0 && $token = $this->getNextToken($formulaData, $baseCell)) { + $tokens[] = $token; + $formulaData = substr($formulaData, $token['size']); + } + + $formulaString = $this->createFormulaFromTokens($tokens, $additionalData); + + return $formulaString; + } + + /** + * Take array of tokens together with additional data for formula and return human readable formula. + * + * @param array $tokens + * @param string $additionalData Additional binary data going with the formula + * + * @return string Human readable formula + */ + private function createFormulaFromTokens($tokens, $additionalData) + { + // empty formula? + if (empty($tokens)) { + return ''; + } + + $formulaStrings = []; + foreach ($tokens as $token) { + // initialize spaces + $space0 = $space0 ?? ''; // spaces before next token, not tParen + $space1 = $space1 ?? ''; // carriage returns before next token, not tParen + $space2 = $space2 ?? ''; // spaces before opening parenthesis + $space3 = $space3 ?? ''; // carriage returns before opening parenthesis + $space4 = $space4 ?? ''; // spaces before closing parenthesis + $space5 = $space5 ?? ''; // carriage returns before closing parenthesis + + switch ($token['name']) { + case 'tAdd': // addition + case 'tConcat': // addition + case 'tDiv': // division + case 'tEQ': // equality + case 'tGE': // greater than or equal + case 'tGT': // greater than + case 'tIsect': // intersection + case 'tLE': // less than or equal + case 'tList': // less than or equal + case 'tLT': // less than + case 'tMul': // multiplication + case 'tNE': // multiplication + case 'tPower': // power + case 'tRange': // range + case 'tSub': // subtraction + $op2 = array_pop($formulaStrings); + $op1 = array_pop($formulaStrings); + $formulaStrings[] = "$op1$space1$space0{$token['data']}$op2"; + unset($space0, $space1); + + break; + case 'tUplus': // unary plus + case 'tUminus': // unary minus + $op = array_pop($formulaStrings); + $formulaStrings[] = "$space1$space0{$token['data']}$op"; + unset($space0, $space1); + + break; + case 'tPercent': // percent sign + $op = array_pop($formulaStrings); + $formulaStrings[] = "$op$space1$space0{$token['data']}"; + unset($space0, $space1); + + break; + case 'tAttrVolatile': // indicates volatile function + case 'tAttrIf': + case 'tAttrSkip': + case 'tAttrChoose': + // token is only important for Excel formula evaluator + // do nothing + break; + case 'tAttrSpace': // space / carriage return + // space will be used when next token arrives, do not alter formulaString stack + switch ($token['data']['spacetype']) { + case 'type0': + $space0 = str_repeat(' ', $token['data']['spacecount']); + + break; + case 'type1': + $space1 = str_repeat("\n", $token['data']['spacecount']); + + break; + case 'type2': + $space2 = str_repeat(' ', $token['data']['spacecount']); + + break; + case 'type3': + $space3 = str_repeat("\n", $token['data']['spacecount']); + + break; + case 'type4': + $space4 = str_repeat(' ', $token['data']['spacecount']); + + break; + case 'type5': + $space5 = str_repeat("\n", $token['data']['spacecount']); + + break; + } + + break; + case 'tAttrSum': // SUM function with one parameter + $op = array_pop($formulaStrings); + $formulaStrings[] = "{$space1}{$space0}SUM($op)"; + unset($space0, $space1); + + break; + case 'tFunc': // function with fixed number of arguments + case 'tFuncV': // function with variable number of arguments + if ($token['data']['function'] != '') { + // normal function + $ops = []; // array of operators + for ($i = 0; $i < $token['data']['args']; ++$i) { + $ops[] = array_pop($formulaStrings); + } + $ops = array_reverse($ops); + $formulaStrings[] = "$space1$space0{$token['data']['function']}(" . implode(',', $ops) . ')'; + unset($space0, $space1); + } else { + // add-in function + $ops = []; // array of operators + for ($i = 0; $i < $token['data']['args'] - 1; ++$i) { + $ops[] = array_pop($formulaStrings); + } + $ops = array_reverse($ops); + $function = array_pop($formulaStrings); + $formulaStrings[] = "$space1$space0$function(" . implode(',', $ops) . ')'; + unset($space0, $space1); + } + + break; + case 'tParen': // parenthesis + $expression = array_pop($formulaStrings); + $formulaStrings[] = "$space3$space2($expression$space5$space4)"; + unset($space2, $space3, $space4, $space5); + + break; + case 'tArray': // array constant + $constantArray = self::readBIFF8ConstantArray($additionalData); + $formulaStrings[] = $space1 . $space0 . $constantArray['value']; + $additionalData = substr($additionalData, $constantArray['size']); // bite of chunk of additional data + unset($space0, $space1); + + break; + case 'tMemArea': + // bite off chunk of additional data + $cellRangeAddressList = $this->readBIFF8CellRangeAddressList($additionalData); + $additionalData = substr($additionalData, $cellRangeAddressList['size']); + $formulaStrings[] = "$space1$space0{$token['data']}"; + unset($space0, $space1); + + break; + case 'tArea': // cell range address + case 'tBool': // boolean + case 'tErr': // error code + case 'tInt': // integer + case 'tMemErr': + case 'tMemFunc': + case 'tMissArg': + case 'tName': + case 'tNameX': + case 'tNum': // number + case 'tRef': // single cell reference + case 'tRef3d': // 3d cell reference + case 'tArea3d': // 3d cell range reference + case 'tRefN': + case 'tAreaN': + case 'tStr': // string + $formulaStrings[] = "$space1$space0{$token['data']}"; + unset($space0, $space1); + + break; + } + } + $formulaString = $formulaStrings[0]; + + return $formulaString; + } + + /** + * Fetch next token from binary formula data. + * + * @param string $formulaData Formula data + * @param string $baseCell Base cell, only needed when formula contains tRefN tokens, e.g. with shared formulas + * + * @return array + */ + private function getNextToken($formulaData, $baseCell = 'A1') + { + // offset: 0; size: 1; token id + $id = ord($formulaData[0]); // token id + $name = false; // initialize token name + + switch ($id) { + case 0x03: + $name = 'tAdd'; + $size = 1; + $data = '+'; + + break; + case 0x04: + $name = 'tSub'; + $size = 1; + $data = '-'; + + break; + case 0x05: + $name = 'tMul'; + $size = 1; + $data = '*'; + + break; + case 0x06: + $name = 'tDiv'; + $size = 1; + $data = '/'; + + break; + case 0x07: + $name = 'tPower'; + $size = 1; + $data = '^'; + + break; + case 0x08: + $name = 'tConcat'; + $size = 1; + $data = '&'; + + break; + case 0x09: + $name = 'tLT'; + $size = 1; + $data = '<'; + + break; + case 0x0A: + $name = 'tLE'; + $size = 1; + $data = '<='; + + break; + case 0x0B: + $name = 'tEQ'; + $size = 1; + $data = '='; + + break; + case 0x0C: + $name = 'tGE'; + $size = 1; + $data = '>='; + + break; + case 0x0D: + $name = 'tGT'; + $size = 1; + $data = '>'; + + break; + case 0x0E: + $name = 'tNE'; + $size = 1; + $data = '<>'; + + break; + case 0x0F: + $name = 'tIsect'; + $size = 1; + $data = ' '; + + break; + case 0x10: + $name = 'tList'; + $size = 1; + $data = ','; + + break; + case 0x11: + $name = 'tRange'; + $size = 1; + $data = ':'; + + break; + case 0x12: + $name = 'tUplus'; + $size = 1; + $data = '+'; + + break; + case 0x13: + $name = 'tUminus'; + $size = 1; + $data = '-'; + + break; + case 0x14: + $name = 'tPercent'; + $size = 1; + $data = '%'; + + break; + case 0x15: // parenthesis + $name = 'tParen'; + $size = 1; + $data = null; + + break; + case 0x16: // missing argument + $name = 'tMissArg'; + $size = 1; + $data = ''; + + break; + case 0x17: // string + $name = 'tStr'; + // offset: 1; size: var; Unicode string, 8-bit string length + $string = self::readUnicodeStringShort(substr($formulaData, 1)); + $size = 1 + $string['size']; + $data = self::UTF8toExcelDoubleQuoted($string['value']); + + break; + case 0x19: // Special attribute + // offset: 1; size: 1; attribute type flags: + switch (ord($formulaData[1])) { + case 0x01: + $name = 'tAttrVolatile'; + $size = 4; + $data = null; + + break; + case 0x02: + $name = 'tAttrIf'; + $size = 4; + $data = null; + + break; + case 0x04: + $name = 'tAttrChoose'; + // offset: 2; size: 2; number of choices in the CHOOSE function ($nc, number of parameters decreased by 1) + $nc = self::getUInt2d($formulaData, 2); + // offset: 4; size: 2 * $nc + // offset: 4 + 2 * $nc; size: 2 + $size = 2 * $nc + 6; + $data = null; + + break; + case 0x08: + $name = 'tAttrSkip'; + $size = 4; + $data = null; + + break; + case 0x10: + $name = 'tAttrSum'; + $size = 4; + $data = null; + + break; + case 0x40: + case 0x41: + $name = 'tAttrSpace'; + $size = 4; + // offset: 2; size: 2; space type and position + switch (ord($formulaData[2])) { + case 0x00: + $spacetype = 'type0'; + + break; + case 0x01: + $spacetype = 'type1'; + + break; + case 0x02: + $spacetype = 'type2'; + + break; + case 0x03: + $spacetype = 'type3'; + + break; + case 0x04: + $spacetype = 'type4'; + + break; + case 0x05: + $spacetype = 'type5'; + + break; + default: + throw new Exception('Unrecognized space type in tAttrSpace token'); + + break; + } + // offset: 3; size: 1; number of inserted spaces/carriage returns + $spacecount = ord($formulaData[3]); + + $data = ['spacetype' => $spacetype, 'spacecount' => $spacecount]; + + break; + default: + throw new Exception('Unrecognized attribute flag in tAttr token'); + + break; + } + + break; + case 0x1C: // error code + // offset: 1; size: 1; error code + $name = 'tErr'; + $size = 2; + $data = Xls\ErrorCode::lookup(ord($formulaData[1])); + + break; + case 0x1D: // boolean + // offset: 1; size: 1; 0 = false, 1 = true; + $name = 'tBool'; + $size = 2; + $data = ord($formulaData[1]) ? 'TRUE' : 'FALSE'; + + break; + case 0x1E: // integer + // offset: 1; size: 2; unsigned 16-bit integer + $name = 'tInt'; + $size = 3; + $data = self::getUInt2d($formulaData, 1); + + break; + case 0x1F: // number + // offset: 1; size: 8; + $name = 'tNum'; + $size = 9; + $data = self::extractNumber(substr($formulaData, 1)); + $data = str_replace(',', '.', (string) $data); // in case non-English locale + + break; + case 0x20: // array constant + case 0x40: + case 0x60: + // offset: 1; size: 7; not used + $name = 'tArray'; + $size = 8; + $data = null; + + break; + case 0x21: // function with fixed number of arguments + case 0x41: + case 0x61: + $name = 'tFunc'; + $size = 3; + // offset: 1; size: 2; index to built-in sheet function + switch (self::getUInt2d($formulaData, 1)) { + case 2: + $function = 'ISNA'; + $args = 1; + + break; + case 3: + $function = 'ISERROR'; + $args = 1; + + break; + case 10: + $function = 'NA'; + $args = 0; + + break; + case 15: + $function = 'SIN'; + $args = 1; + + break; + case 16: + $function = 'COS'; + $args = 1; + + break; + case 17: + $function = 'TAN'; + $args = 1; + + break; + case 18: + $function = 'ATAN'; + $args = 1; + + break; + case 19: + $function = 'PI'; + $args = 0; + + break; + case 20: + $function = 'SQRT'; + $args = 1; + + break; + case 21: + $function = 'EXP'; + $args = 1; + + break; + case 22: + $function = 'LN'; + $args = 1; + + break; + case 23: + $function = 'LOG10'; + $args = 1; + + break; + case 24: + $function = 'ABS'; + $args = 1; + + break; + case 25: + $function = 'INT'; + $args = 1; + + break; + case 26: + $function = 'SIGN'; + $args = 1; + + break; + case 27: + $function = 'ROUND'; + $args = 2; + + break; + case 30: + $function = 'REPT'; + $args = 2; + + break; + case 31: + $function = 'MID'; + $args = 3; + + break; + case 32: + $function = 'LEN'; + $args = 1; + + break; + case 33: + $function = 'VALUE'; + $args = 1; + + break; + case 34: + $function = 'TRUE'; + $args = 0; + + break; + case 35: + $function = 'FALSE'; + $args = 0; + + break; + case 38: + $function = 'NOT'; + $args = 1; + + break; + case 39: + $function = 'MOD'; + $args = 2; + + break; + case 40: + $function = 'DCOUNT'; + $args = 3; + + break; + case 41: + $function = 'DSUM'; + $args = 3; + + break; + case 42: + $function = 'DAVERAGE'; + $args = 3; + + break; + case 43: + $function = 'DMIN'; + $args = 3; + + break; + case 44: + $function = 'DMAX'; + $args = 3; + + break; + case 45: + $function = 'DSTDEV'; + $args = 3; + + break; + case 48: + $function = 'TEXT'; + $args = 2; + + break; + case 61: + $function = 'MIRR'; + $args = 3; + + break; + case 63: + $function = 'RAND'; + $args = 0; + + break; + case 65: + $function = 'DATE'; + $args = 3; + + break; + case 66: + $function = 'TIME'; + $args = 3; + + break; + case 67: + $function = 'DAY'; + $args = 1; + + break; + case 68: + $function = 'MONTH'; + $args = 1; + + break; + case 69: + $function = 'YEAR'; + $args = 1; + + break; + case 71: + $function = 'HOUR'; + $args = 1; + + break; + case 72: + $function = 'MINUTE'; + $args = 1; + + break; + case 73: + $function = 'SECOND'; + $args = 1; + + break; + case 74: + $function = 'NOW'; + $args = 0; + + break; + case 75: + $function = 'AREAS'; + $args = 1; + + break; + case 76: + $function = 'ROWS'; + $args = 1; + + break; + case 77: + $function = 'COLUMNS'; + $args = 1; + + break; + case 83: + $function = 'TRANSPOSE'; + $args = 1; + + break; + case 86: + $function = 'TYPE'; + $args = 1; + + break; + case 97: + $function = 'ATAN2'; + $args = 2; + + break; + case 98: + $function = 'ASIN'; + $args = 1; + + break; + case 99: + $function = 'ACOS'; + $args = 1; + + break; + case 105: + $function = 'ISREF'; + $args = 1; + + break; + case 111: + $function = 'CHAR'; + $args = 1; + + break; + case 112: + $function = 'LOWER'; + $args = 1; + + break; + case 113: + $function = 'UPPER'; + $args = 1; + + break; + case 114: + $function = 'PROPER'; + $args = 1; + + break; + case 117: + $function = 'EXACT'; + $args = 2; + + break; + case 118: + $function = 'TRIM'; + $args = 1; + + break; + case 119: + $function = 'REPLACE'; + $args = 4; + + break; + case 121: + $function = 'CODE'; + $args = 1; + + break; + case 126: + $function = 'ISERR'; + $args = 1; + + break; + case 127: + $function = 'ISTEXT'; + $args = 1; + + break; + case 128: + $function = 'ISNUMBER'; + $args = 1; + + break; + case 129: + $function = 'ISBLANK'; + $args = 1; + + break; + case 130: + $function = 'T'; + $args = 1; + + break; + case 131: + $function = 'N'; + $args = 1; + + break; + case 140: + $function = 'DATEVALUE'; + $args = 1; + + break; + case 141: + $function = 'TIMEVALUE'; + $args = 1; + + break; + case 142: + $function = 'SLN'; + $args = 3; + + break; + case 143: + $function = 'SYD'; + $args = 4; + + break; + case 162: + $function = 'CLEAN'; + $args = 1; + + break; + case 163: + $function = 'MDETERM'; + $args = 1; + + break; + case 164: + $function = 'MINVERSE'; + $args = 1; + + break; + case 165: + $function = 'MMULT'; + $args = 2; + + break; + case 184: + $function = 'FACT'; + $args = 1; + + break; + case 189: + $function = 'DPRODUCT'; + $args = 3; + + break; + case 190: + $function = 'ISNONTEXT'; + $args = 1; + + break; + case 195: + $function = 'DSTDEVP'; + $args = 3; + + break; + case 196: + $function = 'DVARP'; + $args = 3; + + break; + case 198: + $function = 'ISLOGICAL'; + $args = 1; + + break; + case 199: + $function = 'DCOUNTA'; + $args = 3; + + break; + case 207: + $function = 'REPLACEB'; + $args = 4; + + break; + case 210: + $function = 'MIDB'; + $args = 3; + + break; + case 211: + $function = 'LENB'; + $args = 1; + + break; + case 212: + $function = 'ROUNDUP'; + $args = 2; + + break; + case 213: + $function = 'ROUNDDOWN'; + $args = 2; + + break; + case 214: + $function = 'ASC'; + $args = 1; + + break; + case 215: + $function = 'DBCS'; + $args = 1; + + break; + case 221: + $function = 'TODAY'; + $args = 0; + + break; + case 229: + $function = 'SINH'; + $args = 1; + + break; + case 230: + $function = 'COSH'; + $args = 1; + + break; + case 231: + $function = 'TANH'; + $args = 1; + + break; + case 232: + $function = 'ASINH'; + $args = 1; + + break; + case 233: + $function = 'ACOSH'; + $args = 1; + + break; + case 234: + $function = 'ATANH'; + $args = 1; + + break; + case 235: + $function = 'DGET'; + $args = 3; + + break; + case 244: + $function = 'INFO'; + $args = 1; + + break; + case 252: + $function = 'FREQUENCY'; + $args = 2; + + break; + case 261: + $function = 'ERROR.TYPE'; + $args = 1; + + break; + case 271: + $function = 'GAMMALN'; + $args = 1; + + break; + case 273: + $function = 'BINOMDIST'; + $args = 4; + + break; + case 274: + $function = 'CHIDIST'; + $args = 2; + + break; + case 275: + $function = 'CHIINV'; + $args = 2; + + break; + case 276: + $function = 'COMBIN'; + $args = 2; + + break; + case 277: + $function = 'CONFIDENCE'; + $args = 3; + + break; + case 278: + $function = 'CRITBINOM'; + $args = 3; + + break; + case 279: + $function = 'EVEN'; + $args = 1; + + break; + case 280: + $function = 'EXPONDIST'; + $args = 3; + + break; + case 281: + $function = 'FDIST'; + $args = 3; + + break; + case 282: + $function = 'FINV'; + $args = 3; + + break; + case 283: + $function = 'FISHER'; + $args = 1; + + break; + case 284: + $function = 'FISHERINV'; + $args = 1; + + break; + case 285: + $function = 'FLOOR'; + $args = 2; + + break; + case 286: + $function = 'GAMMADIST'; + $args = 4; + + break; + case 287: + $function = 'GAMMAINV'; + $args = 3; + + break; + case 288: + $function = 'CEILING'; + $args = 2; + + break; + case 289: + $function = 'HYPGEOMDIST'; + $args = 4; + + break; + case 290: + $function = 'LOGNORMDIST'; + $args = 3; + + break; + case 291: + $function = 'LOGINV'; + $args = 3; + + break; + case 292: + $function = 'NEGBINOMDIST'; + $args = 3; + + break; + case 293: + $function = 'NORMDIST'; + $args = 4; + + break; + case 294: + $function = 'NORMSDIST'; + $args = 1; + + break; + case 295: + $function = 'NORMINV'; + $args = 3; + + break; + case 296: + $function = 'NORMSINV'; + $args = 1; + + break; + case 297: + $function = 'STANDARDIZE'; + $args = 3; + + break; + case 298: + $function = 'ODD'; + $args = 1; + + break; + case 299: + $function = 'PERMUT'; + $args = 2; + + break; + case 300: + $function = 'POISSON'; + $args = 3; + + break; + case 301: + $function = 'TDIST'; + $args = 3; + + break; + case 302: + $function = 'WEIBULL'; + $args = 4; + + break; + case 303: + $function = 'SUMXMY2'; + $args = 2; + + break; + case 304: + $function = 'SUMX2MY2'; + $args = 2; + + break; + case 305: + $function = 'SUMX2PY2'; + $args = 2; + + break; + case 306: + $function = 'CHITEST'; + $args = 2; + + break; + case 307: + $function = 'CORREL'; + $args = 2; + + break; + case 308: + $function = 'COVAR'; + $args = 2; + + break; + case 309: + $function = 'FORECAST'; + $args = 3; + + break; + case 310: + $function = 'FTEST'; + $args = 2; + + break; + case 311: + $function = 'INTERCEPT'; + $args = 2; + + break; + case 312: + $function = 'PEARSON'; + $args = 2; + + break; + case 313: + $function = 'RSQ'; + $args = 2; + + break; + case 314: + $function = 'STEYX'; + $args = 2; + + break; + case 315: + $function = 'SLOPE'; + $args = 2; + + break; + case 316: + $function = 'TTEST'; + $args = 4; + + break; + case 325: + $function = 'LARGE'; + $args = 2; + + break; + case 326: + $function = 'SMALL'; + $args = 2; + + break; + case 327: + $function = 'QUARTILE'; + $args = 2; + + break; + case 328: + $function = 'PERCENTILE'; + $args = 2; + + break; + case 331: + $function = 'TRIMMEAN'; + $args = 2; + + break; + case 332: + $function = 'TINV'; + $args = 2; + + break; + case 337: + $function = 'POWER'; + $args = 2; + + break; + case 342: + $function = 'RADIANS'; + $args = 1; + + break; + case 343: + $function = 'DEGREES'; + $args = 1; + + break; + case 346: + $function = 'COUNTIF'; + $args = 2; + + break; + case 347: + $function = 'COUNTBLANK'; + $args = 1; + + break; + case 350: + $function = 'ISPMT'; + $args = 4; + + break; + case 351: + $function = 'DATEDIF'; + $args = 3; + + break; + case 352: + $function = 'DATESTRING'; + $args = 1; + + break; + case 353: + $function = 'NUMBERSTRING'; + $args = 2; + + break; + case 360: + $function = 'PHONETIC'; + $args = 1; + + break; + case 368: + $function = 'BAHTTEXT'; + $args = 1; + + break; + default: + throw new Exception('Unrecognized function in formula'); + + break; + } + $data = ['function' => $function, 'args' => $args]; + + break; + case 0x22: // function with variable number of arguments + case 0x42: + case 0x62: + $name = 'tFuncV'; + $size = 4; + // offset: 1; size: 1; number of arguments + $args = ord($formulaData[1]); + // offset: 2: size: 2; index to built-in sheet function + $index = self::getUInt2d($formulaData, 2); + switch ($index) { + case 0: + $function = 'COUNT'; + + break; + case 1: + $function = 'IF'; + + break; + case 4: + $function = 'SUM'; + + break; + case 5: + $function = 'AVERAGE'; + + break; + case 6: + $function = 'MIN'; + + break; + case 7: + $function = 'MAX'; + + break; + case 8: + $function = 'ROW'; + + break; + case 9: + $function = 'COLUMN'; + + break; + case 11: + $function = 'NPV'; + + break; + case 12: + $function = 'STDEV'; + + break; + case 13: + $function = 'DOLLAR'; + + break; + case 14: + $function = 'FIXED'; + + break; + case 28: + $function = 'LOOKUP'; + + break; + case 29: + $function = 'INDEX'; + + break; + case 36: + $function = 'AND'; + + break; + case 37: + $function = 'OR'; + + break; + case 46: + $function = 'VAR'; + + break; + case 49: + $function = 'LINEST'; + + break; + case 50: + $function = 'TREND'; + + break; + case 51: + $function = 'LOGEST'; + + break; + case 52: + $function = 'GROWTH'; + + break; + case 56: + $function = 'PV'; + + break; + case 57: + $function = 'FV'; + + break; + case 58: + $function = 'NPER'; + + break; + case 59: + $function = 'PMT'; + + break; + case 60: + $function = 'RATE'; + + break; + case 62: + $function = 'IRR'; + + break; + case 64: + $function = 'MATCH'; + + break; + case 70: + $function = 'WEEKDAY'; + + break; + case 78: + $function = 'OFFSET'; + + break; + case 82: + $function = 'SEARCH'; + + break; + case 100: + $function = 'CHOOSE'; + + break; + case 101: + $function = 'HLOOKUP'; + + break; + case 102: + $function = 'VLOOKUP'; + + break; + case 109: + $function = 'LOG'; + + break; + case 115: + $function = 'LEFT'; + + break; + case 116: + $function = 'RIGHT'; + + break; + case 120: + $function = 'SUBSTITUTE'; + + break; + case 124: + $function = 'FIND'; + + break; + case 125: + $function = 'CELL'; + + break; + case 144: + $function = 'DDB'; + + break; + case 148: + $function = 'INDIRECT'; + + break; + case 167: + $function = 'IPMT'; + + break; + case 168: + $function = 'PPMT'; + + break; + case 169: + $function = 'COUNTA'; + + break; + case 183: + $function = 'PRODUCT'; + + break; + case 193: + $function = 'STDEVP'; + + break; + case 194: + $function = 'VARP'; + + break; + case 197: + $function = 'TRUNC'; + + break; + case 204: + $function = 'USDOLLAR'; + + break; + case 205: + $function = 'FINDB'; + + break; + case 206: + $function = 'SEARCHB'; + + break; + case 208: + $function = 'LEFTB'; + + break; + case 209: + $function = 'RIGHTB'; + + break; + case 216: + $function = 'RANK'; + + break; + case 219: + $function = 'ADDRESS'; + + break; + case 220: + $function = 'DAYS360'; + + break; + case 222: + $function = 'VDB'; + + break; + case 227: + $function = 'MEDIAN'; + + break; + case 228: + $function = 'SUMPRODUCT'; + + break; + case 247: + $function = 'DB'; + + break; + case 255: + $function = ''; + + break; + case 269: + $function = 'AVEDEV'; + + break; + case 270: + $function = 'BETADIST'; + + break; + case 272: + $function = 'BETAINV'; + + break; + case 317: + $function = 'PROB'; + + break; + case 318: + $function = 'DEVSQ'; + + break; + case 319: + $function = 'GEOMEAN'; + + break; + case 320: + $function = 'HARMEAN'; + + break; + case 321: + $function = 'SUMSQ'; + + break; + case 322: + $function = 'KURT'; + + break; + case 323: + $function = 'SKEW'; + + break; + case 324: + $function = 'ZTEST'; + + break; + case 329: + $function = 'PERCENTRANK'; + + break; + case 330: + $function = 'MODE'; + + break; + case 336: + $function = 'CONCATENATE'; + + break; + case 344: + $function = 'SUBTOTAL'; + + break; + case 345: + $function = 'SUMIF'; + + break; + case 354: + $function = 'ROMAN'; + + break; + case 358: + $function = 'GETPIVOTDATA'; + + break; + case 359: + $function = 'HYPERLINK'; + + break; + case 361: + $function = 'AVERAGEA'; + + break; + case 362: + $function = 'MAXA'; + + break; + case 363: + $function = 'MINA'; + + break; + case 364: + $function = 'STDEVPA'; + + break; + case 365: + $function = 'VARPA'; + + break; + case 366: + $function = 'STDEVA'; + + break; + case 367: + $function = 'VARA'; + + break; + default: + throw new Exception('Unrecognized function in formula'); + + break; + } + $data = ['function' => $function, 'args' => $args]; + + break; + case 0x23: // index to defined name + case 0x43: + case 0x63: + $name = 'tName'; + $size = 5; + // offset: 1; size: 2; one-based index to definedname record + $definedNameIndex = self::getUInt2d($formulaData, 1) - 1; + // offset: 2; size: 2; not used + $data = $this->definedname[$definedNameIndex]['name'] ?? ''; + + break; + case 0x24: // single cell reference e.g. A5 + case 0x44: + case 0x64: + $name = 'tRef'; + $size = 5; + $data = $this->readBIFF8CellAddress(substr($formulaData, 1, 4)); + + break; + case 0x25: // cell range reference to cells in the same sheet (2d) + case 0x45: + case 0x65: + $name = 'tArea'; + $size = 9; + $data = $this->readBIFF8CellRangeAddress(substr($formulaData, 1, 8)); + + break; + case 0x26: // Constant reference sub-expression + case 0x46: + case 0x66: + $name = 'tMemArea'; + // offset: 1; size: 4; not used + // offset: 5; size: 2; size of the following subexpression + $subSize = self::getUInt2d($formulaData, 5); + $size = 7 + $subSize; + $data = $this->getFormulaFromData(substr($formulaData, 7, $subSize)); + + break; + case 0x27: // Deleted constant reference sub-expression + case 0x47: + case 0x67: + $name = 'tMemErr'; + // offset: 1; size: 4; not used + // offset: 5; size: 2; size of the following subexpression + $subSize = self::getUInt2d($formulaData, 5); + $size = 7 + $subSize; + $data = $this->getFormulaFromData(substr($formulaData, 7, $subSize)); + + break; + case 0x29: // Variable reference sub-expression + case 0x49: + case 0x69: + $name = 'tMemFunc'; + // offset: 1; size: 2; size of the following sub-expression + $subSize = self::getUInt2d($formulaData, 1); + $size = 3 + $subSize; + $data = $this->getFormulaFromData(substr($formulaData, 3, $subSize)); + + break; + case 0x2C: // Relative 2d cell reference reference, used in shared formulas and some other places + case 0x4C: + case 0x6C: + $name = 'tRefN'; + $size = 5; + $data = $this->readBIFF8CellAddressB(substr($formulaData, 1, 4), $baseCell); + + break; + case 0x2D: // Relative 2d range reference + case 0x4D: + case 0x6D: + $name = 'tAreaN'; + $size = 9; + $data = $this->readBIFF8CellRangeAddressB(substr($formulaData, 1, 8), $baseCell); + + break; + case 0x39: // External name + case 0x59: + case 0x79: + $name = 'tNameX'; + $size = 7; + // offset: 1; size: 2; index to REF entry in EXTERNSHEET record + // offset: 3; size: 2; one-based index to DEFINEDNAME or EXTERNNAME record + $index = self::getUInt2d($formulaData, 3); + // assume index is to EXTERNNAME record + $data = $this->externalNames[$index - 1]['name'] ?? ''; + // offset: 5; size: 2; not used + break; + case 0x3A: // 3d reference to cell + case 0x5A: + case 0x7A: + $name = 'tRef3d'; + $size = 7; + + try { + // offset: 1; size: 2; index to REF entry + $sheetRange = $this->readSheetRangeByRefIndex(self::getUInt2d($formulaData, 1)); + // offset: 3; size: 4; cell address + $cellAddress = $this->readBIFF8CellAddress(substr($formulaData, 3, 4)); + + $data = "$sheetRange!$cellAddress"; + } catch (PhpSpreadsheetException $e) { + // deleted sheet reference + $data = '#REF!'; + } + + break; + case 0x3B: // 3d reference to cell range + case 0x5B: + case 0x7B: + $name = 'tArea3d'; + $size = 11; + + try { + // offset: 1; size: 2; index to REF entry + $sheetRange = $this->readSheetRangeByRefIndex(self::getUInt2d($formulaData, 1)); + // offset: 3; size: 8; cell address + $cellRangeAddress = $this->readBIFF8CellRangeAddress(substr($formulaData, 3, 8)); + + $data = "$sheetRange!$cellRangeAddress"; + } catch (PhpSpreadsheetException $e) { + // deleted sheet reference + $data = '#REF!'; + } + + break; + // Unknown cases // don't know how to deal with + default: + throw new Exception('Unrecognized token ' . sprintf('%02X', $id) . ' in formula'); + + break; + } + + return [ + 'id' => $id, + 'name' => $name, + 'size' => $size, + 'data' => $data, + ]; + } + + /** + * Reads a cell address in BIFF8 e.g. 'A2' or '$A$2' + * section 3.3.4. + * + * @param string $cellAddressStructure + * + * @return string + */ + private function readBIFF8CellAddress($cellAddressStructure) + { + // offset: 0; size: 2; index to row (0... 65535) (or offset (-32768... 32767)) + $row = self::getUInt2d($cellAddressStructure, 0) + 1; + + // offset: 2; size: 2; index to column or column offset + relative flags + // bit: 7-0; mask 0x00FF; column index + $column = Coordinate::stringFromColumnIndex((0x00FF & self::getUInt2d($cellAddressStructure, 2)) + 1); + + // bit: 14; mask 0x4000; (1 = relative column index, 0 = absolute column index) + if (!(0x4000 & self::getUInt2d($cellAddressStructure, 2))) { + $column = '$' . $column; + } + // bit: 15; mask 0x8000; (1 = relative row index, 0 = absolute row index) + if (!(0x8000 & self::getUInt2d($cellAddressStructure, 2))) { + $row = '$' . $row; + } + + return $column . $row; + } + + /** + * Reads a cell address in BIFF8 for shared formulas. Uses positive and negative values for row and column + * to indicate offsets from a base cell + * section 3.3.4. + * + * @param string $cellAddressStructure + * @param string $baseCell Base cell, only needed when formula contains tRefN tokens, e.g. with shared formulas + * + * @return string + */ + private function readBIFF8CellAddressB($cellAddressStructure, $baseCell = 'A1') + { + [$baseCol, $baseRow] = Coordinate::coordinateFromString($baseCell); + $baseCol = Coordinate::columnIndexFromString($baseCol) - 1; + $baseRow = (int) $baseRow; + + // offset: 0; size: 2; index to row (0... 65535) (or offset (-32768... 32767)) + $rowIndex = self::getUInt2d($cellAddressStructure, 0); + $row = self::getUInt2d($cellAddressStructure, 0) + 1; + + // bit: 14; mask 0x4000; (1 = relative column index, 0 = absolute column index) + if (!(0x4000 & self::getUInt2d($cellAddressStructure, 2))) { + // offset: 2; size: 2; index to column or column offset + relative flags + // bit: 7-0; mask 0x00FF; column index + $colIndex = 0x00FF & self::getUInt2d($cellAddressStructure, 2); + + $column = Coordinate::stringFromColumnIndex($colIndex + 1); + $column = '$' . $column; + } else { + // offset: 2; size: 2; index to column or column offset + relative flags + // bit: 7-0; mask 0x00FF; column index + $relativeColIndex = 0x00FF & self::getInt2d($cellAddressStructure, 2); + $colIndex = $baseCol + $relativeColIndex; + $colIndex = ($colIndex < 256) ? $colIndex : $colIndex - 256; + $colIndex = ($colIndex >= 0) ? $colIndex : $colIndex + 256; + $column = Coordinate::stringFromColumnIndex($colIndex + 1); + } + + // bit: 15; mask 0x8000; (1 = relative row index, 0 = absolute row index) + if (!(0x8000 & self::getUInt2d($cellAddressStructure, 2))) { + $row = '$' . $row; + } else { + $rowIndex = ($rowIndex <= 32767) ? $rowIndex : $rowIndex - 65536; + $row = $baseRow + $rowIndex; + } + + return $column . $row; + } + + /** + * Reads a cell range address in BIFF5 e.g. 'A2:B6' or 'A1' + * always fixed range + * section 2.5.14. + * + * @param string $subData + * + * @return string + */ + private function readBIFF5CellRangeAddressFixed($subData) + { + // offset: 0; size: 2; index to first row + $fr = self::getUInt2d($subData, 0) + 1; + + // offset: 2; size: 2; index to last row + $lr = self::getUInt2d($subData, 2) + 1; + + // offset: 4; size: 1; index to first column + $fc = ord($subData[4]); + + // offset: 5; size: 1; index to last column + $lc = ord($subData[5]); + + // check values + if ($fr > $lr || $fc > $lc) { + throw new Exception('Not a cell range address'); + } + + // column index to letter + $fc = Coordinate::stringFromColumnIndex($fc + 1); + $lc = Coordinate::stringFromColumnIndex($lc + 1); + + if ($fr == $lr && $fc == $lc) { + return "$fc$fr"; + } + + return "$fc$fr:$lc$lr"; + } + + /** + * Reads a cell range address in BIFF8 e.g. 'A2:B6' or 'A1' + * always fixed range + * section 2.5.14. + * + * @param string $subData + * + * @return string + */ + private function readBIFF8CellRangeAddressFixed($subData) + { + // offset: 0; size: 2; index to first row + $fr = self::getUInt2d($subData, 0) + 1; + + // offset: 2; size: 2; index to last row + $lr = self::getUInt2d($subData, 2) + 1; + + // offset: 4; size: 2; index to first column + $fc = self::getUInt2d($subData, 4); + + // offset: 6; size: 2; index to last column + $lc = self::getUInt2d($subData, 6); + + // check values + if ($fr > $lr || $fc > $lc) { + throw new Exception('Not a cell range address'); + } + + // column index to letter + $fc = Coordinate::stringFromColumnIndex($fc + 1); + $lc = Coordinate::stringFromColumnIndex($lc + 1); + + if ($fr == $lr && $fc == $lc) { + return "$fc$fr"; + } + + return "$fc$fr:$lc$lr"; + } + + /** + * Reads a cell range address in BIFF8 e.g. 'A2:B6' or '$A$2:$B$6' + * there are flags indicating whether column/row index is relative + * section 3.3.4. + * + * @param string $subData + * + * @return string + */ + private function readBIFF8CellRangeAddress($subData) + { + // todo: if cell range is just a single cell, should this funciton + // not just return e.g. 'A1' and not 'A1:A1' ? + + // offset: 0; size: 2; index to first row (0... 65535) (or offset (-32768... 32767)) + $fr = self::getUInt2d($subData, 0) + 1; + + // offset: 2; size: 2; index to last row (0... 65535) (or offset (-32768... 32767)) + $lr = self::getUInt2d($subData, 2) + 1; + + // offset: 4; size: 2; index to first column or column offset + relative flags + + // bit: 7-0; mask 0x00FF; column index + $fc = Coordinate::stringFromColumnIndex((0x00FF & self::getUInt2d($subData, 4)) + 1); + + // bit: 14; mask 0x4000; (1 = relative column index, 0 = absolute column index) + if (!(0x4000 & self::getUInt2d($subData, 4))) { + $fc = '$' . $fc; + } + + // bit: 15; mask 0x8000; (1 = relative row index, 0 = absolute row index) + if (!(0x8000 & self::getUInt2d($subData, 4))) { + $fr = '$' . $fr; + } + + // offset: 6; size: 2; index to last column or column offset + relative flags + + // bit: 7-0; mask 0x00FF; column index + $lc = Coordinate::stringFromColumnIndex((0x00FF & self::getUInt2d($subData, 6)) + 1); + + // bit: 14; mask 0x4000; (1 = relative column index, 0 = absolute column index) + if (!(0x4000 & self::getUInt2d($subData, 6))) { + $lc = '$' . $lc; + } + + // bit: 15; mask 0x8000; (1 = relative row index, 0 = absolute row index) + if (!(0x8000 & self::getUInt2d($subData, 6))) { + $lr = '$' . $lr; + } + + return "$fc$fr:$lc$lr"; + } + + /** + * Reads a cell range address in BIFF8 for shared formulas. Uses positive and negative values for row and column + * to indicate offsets from a base cell + * section 3.3.4. + * + * @param string $subData + * @param string $baseCell Base cell + * + * @return string Cell range address + */ + private function readBIFF8CellRangeAddressB($subData, $baseCell = 'A1') + { + [$baseCol, $baseRow] = Coordinate::indexesFromString($baseCell); + $baseCol = $baseCol - 1; + + // TODO: if cell range is just a single cell, should this funciton + // not just return e.g. 'A1' and not 'A1:A1' ? + + // offset: 0; size: 2; first row + $frIndex = self::getUInt2d($subData, 0); // adjust below + + // offset: 2; size: 2; relative index to first row (0... 65535) should be treated as offset (-32768... 32767) + $lrIndex = self::getUInt2d($subData, 2); // adjust below + + // bit: 14; mask 0x4000; (1 = relative column index, 0 = absolute column index) + if (!(0x4000 & self::getUInt2d($subData, 4))) { + // absolute column index + // offset: 4; size: 2; first column with relative/absolute flags + // bit: 7-0; mask 0x00FF; column index + $fcIndex = 0x00FF & self::getUInt2d($subData, 4); + $fc = Coordinate::stringFromColumnIndex($fcIndex + 1); + $fc = '$' . $fc; + } else { + // column offset + // offset: 4; size: 2; first column with relative/absolute flags + // bit: 7-0; mask 0x00FF; column index + $relativeFcIndex = 0x00FF & self::getInt2d($subData, 4); + $fcIndex = $baseCol + $relativeFcIndex; + $fcIndex = ($fcIndex < 256) ? $fcIndex : $fcIndex - 256; + $fcIndex = ($fcIndex >= 0) ? $fcIndex : $fcIndex + 256; + $fc = Coordinate::stringFromColumnIndex($fcIndex + 1); + } + + // bit: 15; mask 0x8000; (1 = relative row index, 0 = absolute row index) + if (!(0x8000 & self::getUInt2d($subData, 4))) { + // absolute row index + $fr = $frIndex + 1; + $fr = '$' . $fr; + } else { + // row offset + $frIndex = ($frIndex <= 32767) ? $frIndex : $frIndex - 65536; + $fr = $baseRow + $frIndex; + } + + // bit: 14; mask 0x4000; (1 = relative column index, 0 = absolute column index) + if (!(0x4000 & self::getUInt2d($subData, 6))) { + // absolute column index + // offset: 6; size: 2; last column with relative/absolute flags + // bit: 7-0; mask 0x00FF; column index + $lcIndex = 0x00FF & self::getUInt2d($subData, 6); + $lc = Coordinate::stringFromColumnIndex($lcIndex + 1); + $lc = '$' . $lc; + } else { + // column offset + // offset: 4; size: 2; first column with relative/absolute flags + // bit: 7-0; mask 0x00FF; column index + $relativeLcIndex = 0x00FF & self::getInt2d($subData, 4); + $lcIndex = $baseCol + $relativeLcIndex; + $lcIndex = ($lcIndex < 256) ? $lcIndex : $lcIndex - 256; + $lcIndex = ($lcIndex >= 0) ? $lcIndex : $lcIndex + 256; + $lc = Coordinate::stringFromColumnIndex($lcIndex + 1); + } + + // bit: 15; mask 0x8000; (1 = relative row index, 0 = absolute row index) + if (!(0x8000 & self::getUInt2d($subData, 6))) { + // absolute row index + $lr = $lrIndex + 1; + $lr = '$' . $lr; + } else { + // row offset + $lrIndex = ($lrIndex <= 32767) ? $lrIndex : $lrIndex - 65536; + $lr = $baseRow + $lrIndex; + } + + return "$fc$fr:$lc$lr"; + } + + /** + * Read BIFF8 cell range address list + * section 2.5.15. + * + * @param string $subData + * + * @return array + */ + private function readBIFF8CellRangeAddressList($subData) + { + $cellRangeAddresses = []; + + // offset: 0; size: 2; number of the following cell range addresses + $nm = self::getUInt2d($subData, 0); + + $offset = 2; + // offset: 2; size: 8 * $nm; list of $nm (fixed) cell range addresses + for ($i = 0; $i < $nm; ++$i) { + $cellRangeAddresses[] = $this->readBIFF8CellRangeAddressFixed(substr($subData, $offset, 8)); + $offset += 8; + } + + return [ + 'size' => 2 + 8 * $nm, + 'cellRangeAddresses' => $cellRangeAddresses, + ]; + } + + /** + * Read BIFF5 cell range address list + * section 2.5.15. + * + * @param string $subData + * + * @return array + */ + private function readBIFF5CellRangeAddressList($subData) + { + $cellRangeAddresses = []; + + // offset: 0; size: 2; number of the following cell range addresses + $nm = self::getUInt2d($subData, 0); + + $offset = 2; + // offset: 2; size: 6 * $nm; list of $nm (fixed) cell range addresses + for ($i = 0; $i < $nm; ++$i) { + $cellRangeAddresses[] = $this->readBIFF5CellRangeAddressFixed(substr($subData, $offset, 6)); + $offset += 6; + } + + return [ + 'size' => 2 + 6 * $nm, + 'cellRangeAddresses' => $cellRangeAddresses, + ]; + } + + /** + * Get a sheet range like Sheet1:Sheet3 from REF index + * Note: If there is only one sheet in the range, one gets e.g Sheet1 + * It can also happen that the REF structure uses the -1 (FFFF) code to indicate deleted sheets, + * in which case an Exception is thrown. + * + * @param int $index + * + * @return false|string + */ + private function readSheetRangeByRefIndex($index) + { + if (isset($this->ref[$index])) { + $type = $this->externalBooks[$this->ref[$index]['externalBookIndex']]['type']; + + switch ($type) { + case 'internal': + // check if we have a deleted 3d reference + if ($this->ref[$index]['firstSheetIndex'] == 0xFFFF || $this->ref[$index]['lastSheetIndex'] == 0xFFFF) { + throw new Exception('Deleted sheet reference'); + } + + // we have normal sheet range (collapsed or uncollapsed) + $firstSheetName = $this->sheets[$this->ref[$index]['firstSheetIndex']]['name']; + $lastSheetName = $this->sheets[$this->ref[$index]['lastSheetIndex']]['name']; + + if ($firstSheetName == $lastSheetName) { + // collapsed sheet range + $sheetRange = $firstSheetName; + } else { + $sheetRange = "$firstSheetName:$lastSheetName"; + } + + // escape the single-quotes + $sheetRange = str_replace("'", "''", $sheetRange); + + // if there are special characters, we need to enclose the range in single-quotes + // todo: check if we have identified the whole set of special characters + // it seems that the following characters are not accepted for sheet names + // and we may assume that they are not present: []*/:\? + if (preg_match("/[ !\"@#£$%&{()}<>=+'|^,;-]/u", $sheetRange)) { + $sheetRange = "'$sheetRange'"; + } + + return $sheetRange; + + break; + default: + // TODO: external sheet support + throw new Exception('Xls reader only supports internal sheets in formulas'); + + break; + } + } + + return false; + } + + /** + * read BIFF8 constant value array from array data + * returns e.g. ['value' => '{1,2;3,4}', 'size' => 40] + * section 2.5.8. + * + * @param string $arrayData + * + * @return array + */ + private static function readBIFF8ConstantArray($arrayData) + { + // offset: 0; size: 1; number of columns decreased by 1 + $nc = ord($arrayData[0]); + + // offset: 1; size: 2; number of rows decreased by 1 + $nr = self::getUInt2d($arrayData, 1); + $size = 3; // initialize + $arrayData = substr($arrayData, 3); + + // offset: 3; size: var; list of ($nc + 1) * ($nr + 1) constant values + $matrixChunks = []; + for ($r = 1; $r <= $nr + 1; ++$r) { + $items = []; + for ($c = 1; $c <= $nc + 1; ++$c) { + $constant = self::readBIFF8Constant($arrayData); + $items[] = $constant['value']; + $arrayData = substr($arrayData, $constant['size']); + $size += $constant['size']; + } + $matrixChunks[] = implode(',', $items); // looks like e.g. '1,"hello"' + } + $matrix = '{' . implode(';', $matrixChunks) . '}'; + + return [ + 'value' => $matrix, + 'size' => $size, + ]; + } + + /** + * read BIFF8 constant value which may be 'Empty Value', 'Number', 'String Value', 'Boolean Value', 'Error Value' + * section 2.5.7 + * returns e.g. ['value' => '5', 'size' => 9]. + * + * @param string $valueData + * + * @return array + */ + private static function readBIFF8Constant($valueData) + { + // offset: 0; size: 1; identifier for type of constant + $identifier = ord($valueData[0]); + + switch ($identifier) { + case 0x00: // empty constant (what is this?) + $value = ''; + $size = 9; + + break; + case 0x01: // number + // offset: 1; size: 8; IEEE 754 floating-point value + $value = self::extractNumber(substr($valueData, 1, 8)); + $size = 9; + + break; + case 0x02: // string value + // offset: 1; size: var; Unicode string, 16-bit string length + $string = self::readUnicodeStringLong(substr($valueData, 1)); + $value = '"' . $string['value'] . '"'; + $size = 1 + $string['size']; + + break; + case 0x04: // boolean + // offset: 1; size: 1; 0 = FALSE, 1 = TRUE + if (ord($valueData[1])) { + $value = 'TRUE'; + } else { + $value = 'FALSE'; + } + $size = 9; + + break; + case 0x10: // error code + // offset: 1; size: 1; error code + $value = Xls\ErrorCode::lookup(ord($valueData[1])); + $size = 9; + + break; + default: + throw new PhpSpreadsheetException('Unsupported BIFF8 constant'); + } + + return [ + 'value' => $value, + 'size' => $size, + ]; + } + + /** + * Extract RGB color + * OpenOffice.org's Documentation of the Microsoft Excel File Format, section 2.5.4. + * + * @param string $rgb Encoded RGB value (4 bytes) + * + * @return array + */ + private static function readRGB($rgb) + { + // offset: 0; size 1; Red component + $r = ord($rgb[0]); + + // offset: 1; size: 1; Green component + $g = ord($rgb[1]); + + // offset: 2; size: 1; Blue component + $b = ord($rgb[2]); + + // HEX notation, e.g. 'FF00FC' + $rgb = sprintf('%02X%02X%02X', $r, $g, $b); + + return ['rgb' => $rgb]; + } + + /** + * Read byte string (8-bit string length) + * OpenOffice documentation: 2.5.2. + * + * @param string $subData + * + * @return array + */ + private function readByteStringShort($subData) + { + // offset: 0; size: 1; length of the string (character count) + $ln = ord($subData[0]); + + // offset: 1: size: var; character array (8-bit characters) + $value = $this->decodeCodepage(substr($subData, 1, $ln)); + + return [ + 'value' => $value, + 'size' => 1 + $ln, // size in bytes of data structure + ]; + } + + /** + * Read byte string (16-bit string length) + * OpenOffice documentation: 2.5.2. + * + * @param string $subData + * + * @return array + */ + private function readByteStringLong($subData) + { + // offset: 0; size: 2; length of the string (character count) + $ln = self::getUInt2d($subData, 0); + + // offset: 2: size: var; character array (8-bit characters) + $value = $this->decodeCodepage(substr($subData, 2)); + + //return $string; + return [ + 'value' => $value, + 'size' => 2 + $ln, // size in bytes of data structure + ]; + } + + /** + * Extracts an Excel Unicode short string (8-bit string length) + * OpenOffice documentation: 2.5.3 + * function will automatically find out where the Unicode string ends. + * + * @param string $subData + * + * @return array + */ + private static function readUnicodeStringShort($subData) + { + $value = ''; + + // offset: 0: size: 1; length of the string (character count) + $characterCount = ord($subData[0]); + + $string = self::readUnicodeString(substr($subData, 1), $characterCount); + + // add 1 for the string length + ++$string['size']; + + return $string; + } + + /** + * Extracts an Excel Unicode long string (16-bit string length) + * OpenOffice documentation: 2.5.3 + * this function is under construction, needs to support rich text, and Asian phonetic settings. + * + * @param string $subData + * + * @return array + */ + private static function readUnicodeStringLong($subData) + { + $value = ''; + + // offset: 0: size: 2; length of the string (character count) + $characterCount = self::getUInt2d($subData, 0); + + $string = self::readUnicodeString(substr($subData, 2), $characterCount); + + // add 2 for the string length + $string['size'] += 2; + + return $string; + } + + /** + * Read Unicode string with no string length field, but with known character count + * this function is under construction, needs to support rich text, and Asian phonetic settings + * OpenOffice.org's Documentation of the Microsoft Excel File Format, section 2.5.3. + * + * @param string $subData + * @param int $characterCount + * + * @return array + */ + private static function readUnicodeString($subData, $characterCount) + { + $value = ''; + + // offset: 0: size: 1; option flags + // bit: 0; mask: 0x01; character compression (0 = compressed 8-bit, 1 = uncompressed 16-bit) + $isCompressed = !((0x01 & ord($subData[0])) >> 0); + + // bit: 2; mask: 0x04; Asian phonetic settings + $hasAsian = (0x04) & ord($subData[0]) >> 2; + + // bit: 3; mask: 0x08; Rich-Text settings + $hasRichText = (0x08) & ord($subData[0]) >> 3; + + // offset: 1: size: var; character array + // this offset assumes richtext and Asian phonetic settings are off which is generally wrong + // needs to be fixed + $value = self::encodeUTF16(substr($subData, 1, $isCompressed ? $characterCount : 2 * $characterCount), $isCompressed); + + return [ + 'value' => $value, + 'size' => $isCompressed ? 1 + $characterCount : 1 + 2 * $characterCount, // the size in bytes including the option flags + ]; + } + + /** + * Convert UTF-8 string to string surounded by double quotes. Used for explicit string tokens in formulas. + * Example: hello"world --> "hello""world". + * + * @param string $value UTF-8 encoded string + * + * @return string + */ + private static function UTF8toExcelDoubleQuoted($value) + { + return '"' . str_replace('"', '""', $value) . '"'; + } + + /** + * Reads first 8 bytes of a string and return IEEE 754 float. + * + * @param string $data Binary string that is at least 8 bytes long + * + * @return float + */ + private static function extractNumber($data) + { + $rknumhigh = self::getInt4d($data, 4); + $rknumlow = self::getInt4d($data, 0); + $sign = ($rknumhigh & 0x80000000) >> 31; + $exp = (($rknumhigh & 0x7ff00000) >> 20) - 1023; + $mantissa = (0x100000 | ($rknumhigh & 0x000fffff)); + $mantissalow1 = ($rknumlow & 0x80000000) >> 31; + $mantissalow2 = ($rknumlow & 0x7fffffff); + $value = $mantissa / 2 ** (20 - $exp); + + if ($mantissalow1 != 0) { + $value += 1 / 2 ** (21 - $exp); + } + + $value += $mantissalow2 / 2 ** (52 - $exp); + if ($sign) { + $value *= -1; + } + + return $value; + } + + /** + * @param int $rknum + * + * @return float + */ + private static function getIEEE754($rknum) + { + if (($rknum & 0x02) != 0) { + $value = $rknum >> 2; + } else { + // changes by mmp, info on IEEE754 encoding from + // research.microsoft.com/~hollasch/cgindex/coding/ieeefloat.html + // The RK format calls for using only the most significant 30 bits + // of the 64 bit floating point value. The other 34 bits are assumed + // to be 0 so we use the upper 30 bits of $rknum as follows... + $sign = ($rknum & 0x80000000) >> 31; + $exp = ($rknum & 0x7ff00000) >> 20; + $mantissa = (0x100000 | ($rknum & 0x000ffffc)); + $value = $mantissa / 2 ** (20 - ($exp - 1023)); + if ($sign) { + $value = -1 * $value; + } + //end of changes by mmp + } + if (($rknum & 0x01) != 0) { + $value /= 100; + } + + return $value; + } + + /** + * Get UTF-8 string from (compressed or uncompressed) UTF-16 string. + * + * @param string $string + * @param bool $compressed + * + * @return string + */ + private static function encodeUTF16($string, $compressed = false) + { + if ($compressed) { + $string = self::uncompressByteString($string); + } + + return StringHelper::convertEncoding($string, 'UTF-8', 'UTF-16LE'); + } + + /** + * Convert UTF-16 string in compressed notation to uncompressed form. Only used for BIFF8. + * + * @param string $string + * + * @return string + */ + private static function uncompressByteString($string) + { + $uncompressedString = ''; + $strLen = strlen($string); + for ($i = 0; $i < $strLen; ++$i) { + $uncompressedString .= $string[$i] . "\0"; + } + + return $uncompressedString; + } + + /** + * Convert string to UTF-8. Only used for BIFF5. + * + * @param string $string + * + * @return string + */ + private function decodeCodepage($string) + { + return StringHelper::convertEncoding($string, 'UTF-8', $this->codepage); + } + + /** + * Read 16-bit unsigned integer. + * + * @param string $data + * @param int $pos + * + * @return int + */ + public static function getUInt2d($data, $pos) + { + return ord($data[$pos]) | (ord($data[$pos + 1]) << 8); + } + + /** + * Read 16-bit signed integer. + * + * @param string $data + * @param int $pos + * + * @return int + */ + public static function getInt2d($data, $pos) + { + return unpack('s', $data[$pos] . $data[$pos + 1])[1]; + } + + /** + * Read 32-bit signed integer. + * + * @param string $data + * @param int $pos + * + * @return int + */ + public static function getInt4d($data, $pos) + { + // FIX: represent numbers correctly on 64-bit system + // http://sourceforge.net/tracker/index.php?func=detail&aid=1487372&group_id=99160&atid=623334 + // Changed by Andreas Rehm 2006 to ensure correct result of the <<24 block on 32 and 64bit systems + $_or_24 = ord($data[$pos + 3]); + if ($_or_24 >= 128) { + // negative number + $_ord_24 = -abs((256 - $_or_24) << 24); + } else { + $_ord_24 = ($_or_24 & 127) << 24; + } + + return ord($data[$pos]) | (ord($data[$pos + 1]) << 8) | (ord($data[$pos + 2]) << 16) | $_ord_24; + } + + private function parseRichText($is) + { + $value = new RichText(); + $value->createText($is); + + return $value; + } + + /** + * Phpstan 1.4.4 complains that this property is never read. + * So, we might be able to get rid of it altogether. + * For now, however, this function makes it readable, + * which satisfies Phpstan. + * + * @codeCoverageIgnore + */ + public function getMapCellStyleXfIndex(): array + { + return $this->mapCellStyleXfIndex; + } + + private function readCFHeader(): array + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer forward to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly) { + return []; + } + + // offset: 0; size: 2; Rule Count +// $ruleCount = self::getUInt2d($recordData, 0); + + // offset: var; size: var; cell range address list with + $cellRangeAddressList = ($this->version == self::XLS_BIFF8) + ? $this->readBIFF8CellRangeAddressList(substr($recordData, 12)) + : $this->readBIFF5CellRangeAddressList(substr($recordData, 12)); + $cellRangeAddresses = $cellRangeAddressList['cellRangeAddresses']; + + return $cellRangeAddresses; + } + + private function readCFRule(array $cellRangeAddresses): void + { + $length = self::getUInt2d($this->data, $this->pos + 2); + $recordData = $this->readRecordData($this->data, $this->pos + 4, $length); + + // move stream pointer forward to next record + $this->pos += 4 + $length; + + if ($this->readDataOnly) { + return; + } + + // offset: 0; size: 2; Options + $cfRule = self::getUInt2d($recordData, 0); + + // bit: 8-15; mask: 0x00FF; type + $type = (0x00FF & $cfRule) >> 0; + $type = ConditionalFormatting::type($type); + + // bit: 0-7; mask: 0xFF00; type + $operator = (0xFF00 & $cfRule) >> 8; + $operator = ConditionalFormatting::operator($operator); + + if ($type === null || $operator === null) { + return; + } + + // offset: 2; size: 2; Size1 + $size1 = self::getUInt2d($recordData, 2); + + // offset: 4; size: 2; Size2 + $size2 = self::getUInt2d($recordData, 4); + + // offset: 6; size: 4; Options + $options = self::getInt4d($recordData, 6); + + $style = new Style(); + $this->getCFStyleOptions($options, $style); + + $hasFontRecord = (bool) ((0x04000000 & $options) >> 26); + $hasAlignmentRecord = (bool) ((0x08000000 & $options) >> 27); + $hasBorderRecord = (bool) ((0x10000000 & $options) >> 28); + $hasFillRecord = (bool) ((0x20000000 & $options) >> 29); + $hasProtectionRecord = (bool) ((0x40000000 & $options) >> 30); + + $offset = 12; + + if ($hasFontRecord === true) { + $fontStyle = substr($recordData, $offset, 118); + $this->getCFFontStyle($fontStyle, $style); + $offset += 118; + } + + if ($hasAlignmentRecord === true) { + $alignmentStyle = substr($recordData, $offset, 8); + $this->getCFAlignmentStyle($alignmentStyle, $style); + $offset += 8; + } + + if ($hasBorderRecord === true) { + $borderStyle = substr($recordData, $offset, 8); + $this->getCFBorderStyle($borderStyle, $style); + $offset += 8; + } + + if ($hasFillRecord === true) { + $fillStyle = substr($recordData, $offset, 4); + $this->getCFFillStyle($fillStyle, $style); + $offset += 4; + } + + if ($hasProtectionRecord === true) { + $protectionStyle = substr($recordData, $offset, 4); + $this->getCFProtectionStyle($protectionStyle, $style); + $offset += 2; + } + + $formula1 = $formula2 = null; + if ($size1 > 0) { + $formula1 = $this->readCFFormula($recordData, $offset, $size1); + if ($formula1 === null) { + return; + } + + $offset += $size1; + } + + if ($size2 > 0) { + $formula2 = $this->readCFFormula($recordData, $offset, $size2); + if ($formula2 === null) { + return; + } + + $offset += $size2; + } + + $this->setCFRules($cellRangeAddresses, $type, $operator, $formula1, $formula2, $style); + } + + private function getCFStyleOptions(int $options, Style $style): void + { + } + + private function getCFFontStyle(string $options, Style $style): void + { + $fontSize = self::getInt4d($options, 64); + if ($fontSize !== -1) { + $style->getFont()->setSize($fontSize / 20); // Convert twips to points + } + + $bold = self::getUInt2d($options, 72) === 700; // 400 = normal, 700 = bold + $style->getFont()->setBold($bold); + + $color = self::getInt4d($options, 80); + + if ($color !== -1) { + $style->getFont()->getColor()->setRGB(Xls\Color::map($color, $this->palette, $this->version)['rgb']); + } + } + + private function getCFAlignmentStyle(string $options, Style $style): void + { + } + + private function getCFBorderStyle(string $options, Style $style): void + { + } + + private function getCFFillStyle(string $options, Style $style): void + { + $fillPattern = self::getUInt2d($options, 0); + // bit: 10-15; mask: 0xFC00; type + $fillPattern = (0xFC00 & $fillPattern) >> 10; + $fillPattern = FillPattern::lookup($fillPattern); + $fillPattern = $fillPattern === Fill::FILL_NONE ? Fill::FILL_SOLID : $fillPattern; + + if ($fillPattern !== Fill::FILL_NONE) { + $style->getFill()->setFillType($fillPattern); + + $fillColors = self::getUInt2d($options, 2); + + // bit: 0-6; mask: 0x007F; type + $color1 = (0x007F & $fillColors) >> 0; + $style->getFill()->getStartColor()->setRGB(Xls\Color::map($color1, $this->palette, $this->version)['rgb']); + + // bit: 7-13; mask: 0x3F80; type + $color2 = (0x3F80 & $fillColors) >> 7; + $style->getFill()->getEndColor()->setRGB(Xls\Color::map($color2, $this->palette, $this->version)['rgb']); + } + } + + private function getCFProtectionStyle(string $options, Style $style): void + { + } + + /** + * @return null|float|int|string + */ + private function readCFFormula(string $recordData, int $offset, int $size) + { + try { + $formula = substr($recordData, $offset, $size); + $formula = pack('v', $size) . $formula; // prepend the length + + $formula = $this->getFormulaFromStructure($formula); + if (is_numeric($formula)) { + return (strpos($formula, '.') !== false) ? (float) $formula : (int) $formula; + } + + return $formula; + } catch (PhpSpreadsheetException $e) { + } + + return null; + } + + /** + * @param null|float|int|string $formula1 + * @param null|float|int|string $formula2 + */ + private function setCFRules(array $cellRanges, string $type, string $operator, $formula1, $formula2, Style $style): void + { + foreach ($cellRanges as $cellRange) { + $conditional = new Conditional(); + $conditional->setConditionType($type); + $conditional->setOperatorType($operator); + if ($formula1 !== null) { + $conditional->addCondition($formula1); + } + if ($formula2 !== null) { + $conditional->addCondition($formula2); + } + $conditional->setStyle($style); + + $conditionalStyles = $this->phpSheet->getStyle($cellRange)->getConditionalStyles(); + $conditionalStyles[] = $conditional; + + $this->phpSheet->getStyle($cellRange)->setConditionalStyles($conditionalStyles); + $this->phpSheet->getStyle($cellRange)->setConditionalStyles($conditionalStyles); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color.php new file mode 100644 index 0000000..06c2d0b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color.php @@ -0,0 +1,36 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xls; + +use PhpOffice\PhpSpreadsheet\Reader\Xls; + +class Color +{ + /** + * Read color. + * + * @param int $color Indexed color + * @param array $palette Color palette + * @param int $version + * + * @return array RGB color value, example: ['rgb' => 'FF0000'] + */ + public static function map($color, $palette, $version) + { + if ($color <= 0x07 || $color >= 0x40) { + // special built-in color + return Color\BuiltIn::lookup($color); + } elseif (isset($palette[$color - 8])) { + // palette color, color index 0x08 maps to pallete index 0 + return $palette[$color - 8]; + } + + // default color table + if ($version == Xls::XLS_BIFF8) { + return Color\BIFF8::lookup($color); + } + + // BIFF5 + return Color\BIFF5::lookup($color); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BIFF5.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BIFF5.php new file mode 100644 index 0000000..743d938 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BIFF5.php @@ -0,0 +1,81 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xls\Color; + +class BIFF5 +{ + protected static $map = [ + 0x08 => '000000', + 0x09 => 'FFFFFF', + 0x0A => 'FF0000', + 0x0B => '00FF00', + 0x0C => '0000FF', + 0x0D => 'FFFF00', + 0x0E => 'FF00FF', + 0x0F => '00FFFF', + 0x10 => '800000', + 0x11 => '008000', + 0x12 => '000080', + 0x13 => '808000', + 0x14 => '800080', + 0x15 => '008080', + 0x16 => 'C0C0C0', + 0x17 => '808080', + 0x18 => '8080FF', + 0x19 => '802060', + 0x1A => 'FFFFC0', + 0x1B => 'A0E0F0', + 0x1C => '600080', + 0x1D => 'FF8080', + 0x1E => '0080C0', + 0x1F => 'C0C0FF', + 0x20 => '000080', + 0x21 => 'FF00FF', + 0x22 => 'FFFF00', + 0x23 => '00FFFF', + 0x24 => '800080', + 0x25 => '800000', + 0x26 => '008080', + 0x27 => '0000FF', + 0x28 => '00CFFF', + 0x29 => '69FFFF', + 0x2A => 'E0FFE0', + 0x2B => 'FFFF80', + 0x2C => 'A6CAF0', + 0x2D => 'DD9CB3', + 0x2E => 'B38FEE', + 0x2F => 'E3E3E3', + 0x30 => '2A6FF9', + 0x31 => '3FB8CD', + 0x32 => '488436', + 0x33 => '958C41', + 0x34 => '8E5E42', + 0x35 => 'A0627A', + 0x36 => '624FAC', + 0x37 => '969696', + 0x38 => '1D2FBE', + 0x39 => '286676', + 0x3A => '004500', + 0x3B => '453E01', + 0x3C => '6A2813', + 0x3D => '85396A', + 0x3E => '4A3285', + 0x3F => '424242', + ]; + + /** + * Map color array from BIFF5 built-in color index. + * + * @param int $color + * + * @return array + */ + public static function lookup($color) + { + if (isset(self::$map[$color])) { + return ['rgb' => self::$map[$color]]; + } + + return ['rgb' => '000000']; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BIFF8.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BIFF8.php new file mode 100644 index 0000000..5c109fb --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BIFF8.php @@ -0,0 +1,81 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xls\Color; + +class BIFF8 +{ + protected static $map = [ + 0x08 => '000000', + 0x09 => 'FFFFFF', + 0x0A => 'FF0000', + 0x0B => '00FF00', + 0x0C => '0000FF', + 0x0D => 'FFFF00', + 0x0E => 'FF00FF', + 0x0F => '00FFFF', + 0x10 => '800000', + 0x11 => '008000', + 0x12 => '000080', + 0x13 => '808000', + 0x14 => '800080', + 0x15 => '008080', + 0x16 => 'C0C0C0', + 0x17 => '808080', + 0x18 => '9999FF', + 0x19 => '993366', + 0x1A => 'FFFFCC', + 0x1B => 'CCFFFF', + 0x1C => '660066', + 0x1D => 'FF8080', + 0x1E => '0066CC', + 0x1F => 'CCCCFF', + 0x20 => '000080', + 0x21 => 'FF00FF', + 0x22 => 'FFFF00', + 0x23 => '00FFFF', + 0x24 => '800080', + 0x25 => '800000', + 0x26 => '008080', + 0x27 => '0000FF', + 0x28 => '00CCFF', + 0x29 => 'CCFFFF', + 0x2A => 'CCFFCC', + 0x2B => 'FFFF99', + 0x2C => '99CCFF', + 0x2D => 'FF99CC', + 0x2E => 'CC99FF', + 0x2F => 'FFCC99', + 0x30 => '3366FF', + 0x31 => '33CCCC', + 0x32 => '99CC00', + 0x33 => 'FFCC00', + 0x34 => 'FF9900', + 0x35 => 'FF6600', + 0x36 => '666699', + 0x37 => '969696', + 0x38 => '003366', + 0x39 => '339966', + 0x3A => '003300', + 0x3B => '333300', + 0x3C => '993300', + 0x3D => '993366', + 0x3E => '333399', + 0x3F => '333333', + ]; + + /** + * Map color array from BIFF8 built-in color index. + * + * @param int $color + * + * @return array + */ + public static function lookup($color) + { + if (isset(self::$map[$color])) { + return ['rgb' => self::$map[$color]]; + } + + return ['rgb' => '000000']; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BuiltIn.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BuiltIn.php new file mode 100644 index 0000000..90d50e3 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BuiltIn.php @@ -0,0 +1,35 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xls\Color; + +class BuiltIn +{ + protected static $map = [ + 0x00 => '000000', + 0x01 => 'FFFFFF', + 0x02 => 'FF0000', + 0x03 => '00FF00', + 0x04 => '0000FF', + 0x05 => 'FFFF00', + 0x06 => 'FF00FF', + 0x07 => '00FFFF', + 0x40 => '000000', // system window text color + 0x41 => 'FFFFFF', // system window background color + ]; + + /** + * Map built-in color to RGB value. + * + * @param int $color Indexed color + * + * @return array + */ + public static function lookup($color) + { + if (isset(self::$map[$color])) { + return ['rgb' => self::$map[$color]]; + } + + return ['rgb' => '000000']; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/ConditionalFormatting.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/ConditionalFormatting.php new file mode 100644 index 0000000..8400efb --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/ConditionalFormatting.php @@ -0,0 +1,49 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xls; + +use PhpOffice\PhpSpreadsheet\Style\Conditional; + +class ConditionalFormatting +{ + /** + * @var array<int, string> + */ + private static $types = [ + 0x01 => Conditional::CONDITION_CELLIS, + 0x02 => Conditional::CONDITION_EXPRESSION, + ]; + + /** + * @var array<int, string> + */ + private static $operators = [ + 0x00 => Conditional::OPERATOR_NONE, + 0x01 => Conditional::OPERATOR_BETWEEN, + 0x02 => Conditional::OPERATOR_NOTBETWEEN, + 0x03 => Conditional::OPERATOR_EQUAL, + 0x04 => Conditional::OPERATOR_NOTEQUAL, + 0x05 => Conditional::OPERATOR_GREATERTHAN, + 0x06 => Conditional::OPERATOR_LESSTHAN, + 0x07 => Conditional::OPERATOR_GREATERTHANOREQUAL, + 0x08 => Conditional::OPERATOR_LESSTHANOREQUAL, + ]; + + public static function type(int $type): ?string + { + if (isset(self::$types[$type])) { + return self::$types[$type]; + } + + return null; + } + + public static function operator(int $operator): ?string + { + if (isset(self::$operators[$operator])) { + return self::$operators[$operator]; + } + + return null; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/DataValidationHelper.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/DataValidationHelper.php new file mode 100644 index 0000000..02f844e --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/DataValidationHelper.php @@ -0,0 +1,72 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xls; + +use PhpOffice\PhpSpreadsheet\Cell\DataValidation; + +class DataValidationHelper +{ + /** + * @var array<int, string> + */ + private static $types = [ + 0x00 => DataValidation::TYPE_NONE, + 0x01 => DataValidation::TYPE_WHOLE, + 0x02 => DataValidation::TYPE_DECIMAL, + 0x03 => DataValidation::TYPE_LIST, + 0x04 => DataValidation::TYPE_DATE, + 0x05 => DataValidation::TYPE_TIME, + 0x06 => DataValidation::TYPE_TEXTLENGTH, + 0x07 => DataValidation::TYPE_CUSTOM, + ]; + + /** + * @var array<int, string> + */ + private static $errorStyles = [ + 0x00 => DataValidation::STYLE_STOP, + 0x01 => DataValidation::STYLE_WARNING, + 0x02 => DataValidation::STYLE_INFORMATION, + ]; + + /** + * @var array<int, string> + */ + private static $operators = [ + 0x00 => DataValidation::OPERATOR_BETWEEN, + 0x01 => DataValidation::OPERATOR_NOTBETWEEN, + 0x02 => DataValidation::OPERATOR_EQUAL, + 0x03 => DataValidation::OPERATOR_NOTEQUAL, + 0x04 => DataValidation::OPERATOR_GREATERTHAN, + 0x05 => DataValidation::OPERATOR_LESSTHAN, + 0x06 => DataValidation::OPERATOR_GREATERTHANOREQUAL, + 0x07 => DataValidation::OPERATOR_LESSTHANOREQUAL, + ]; + + public static function type(int $type): ?string + { + if (isset(self::$types[$type])) { + return self::$types[$type]; + } + + return null; + } + + public static function errorStyle(int $errorStyle): ?string + { + if (isset(self::$errorStyles[$errorStyle])) { + return self::$errorStyles[$errorStyle]; + } + + return null; + } + + public static function operator(int $operator): ?string + { + if (isset(self::$operators[$operator])) { + return self::$operators[$operator]; + } + + return null; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/ErrorCode.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/ErrorCode.php new file mode 100644 index 0000000..7daf723 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/ErrorCode.php @@ -0,0 +1,32 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xls; + +class ErrorCode +{ + protected static $map = [ + 0x00 => '#NULL!', + 0x07 => '#DIV/0!', + 0x0F => '#VALUE!', + 0x17 => '#REF!', + 0x1D => '#NAME?', + 0x24 => '#NUM!', + 0x2A => '#N/A', + ]; + + /** + * Map error code, e.g. '#N/A'. + * + * @param int $code + * + * @return bool|string + */ + public static function lookup($code) + { + if (isset(self::$map[$code])) { + return self::$map[$code]; + } + + return false; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Escher.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Escher.php new file mode 100644 index 0000000..e9c95c8 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Escher.php @@ -0,0 +1,624 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xls; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Reader\Xls; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DgContainer; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DgContainer\SpgrContainer; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DgContainer\SpgrContainer\SpContainer; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE\Blip; + +class Escher +{ + const DGGCONTAINER = 0xF000; + const BSTORECONTAINER = 0xF001; + const DGCONTAINER = 0xF002; + const SPGRCONTAINER = 0xF003; + const SPCONTAINER = 0xF004; + const DGG = 0xF006; + const BSE = 0xF007; + const DG = 0xF008; + const SPGR = 0xF009; + const SP = 0xF00A; + const OPT = 0xF00B; + const CLIENTTEXTBOX = 0xF00D; + const CLIENTANCHOR = 0xF010; + const CLIENTDATA = 0xF011; + const BLIPJPEG = 0xF01D; + const BLIPPNG = 0xF01E; + const SPLITMENUCOLORS = 0xF11E; + const TERTIARYOPT = 0xF122; + + /** + * Escher stream data (binary). + * + * @var string + */ + private $data; + + /** + * Size in bytes of the Escher stream data. + * + * @var int + */ + private $dataSize; + + /** + * Current position of stream pointer in Escher stream data. + * + * @var int + */ + private $pos; + + /** + * The object to be returned by the reader. Modified during load. + * + * @var BSE|BstoreContainer|DgContainer|DggContainer|\PhpOffice\PhpSpreadsheet\Shared\Escher|SpContainer|SpgrContainer + */ + private $object; + + /** + * Create a new Escher instance. + * + * @param mixed $object + */ + public function __construct($object) + { + $this->object = $object; + } + + private const WHICH_ROUTINE = [ + self::DGGCONTAINER => 'readDggContainer', + self::DGG => 'readDgg', + self::BSTORECONTAINER => 'readBstoreContainer', + self::BSE => 'readBSE', + self::BLIPJPEG => 'readBlipJPEG', + self::BLIPPNG => 'readBlipPNG', + self::OPT => 'readOPT', + self::TERTIARYOPT => 'readTertiaryOPT', + self::SPLITMENUCOLORS => 'readSplitMenuColors', + self::DGCONTAINER => 'readDgContainer', + self::DG => 'readDg', + self::SPGRCONTAINER => 'readSpgrContainer', + self::SPCONTAINER => 'readSpContainer', + self::SPGR => 'readSpgr', + self::SP => 'readSp', + self::CLIENTTEXTBOX => 'readClientTextbox', + self::CLIENTANCHOR => 'readClientAnchor', + self::CLIENTDATA => 'readClientData', + ]; + + /** + * Load Escher stream data. May be a partial Escher stream. + * + * @param string $data + * + * @return BSE|BstoreContainer|DgContainer|DggContainer|\PhpOffice\PhpSpreadsheet\Shared\Escher|SpContainer|SpgrContainer + */ + public function load($data) + { + $this->data = $data; + + // total byte size of Excel data (workbook global substream + sheet substreams) + $this->dataSize = strlen($this->data); + + $this->pos = 0; + + // Parse Escher stream + while ($this->pos < $this->dataSize) { + // offset: 2; size: 2: Record Type + $fbt = Xls::getUInt2d($this->data, $this->pos + 2); + $routine = self::WHICH_ROUTINE[$fbt] ?? 'readDefault'; + if (method_exists($this, $routine)) { + $this->$routine(); + } + } + + return $this->object; + } + + /** + * Read a generic record. + */ + private function readDefault(): void + { + // offset 0; size: 2; recVer and recInstance + //$verInstance = Xls::getUInt2d($this->data, $this->pos); + + // offset: 2; size: 2: Record Type + //$fbt = Xls::getUInt2d($this->data, $this->pos + 2); + + // bit: 0-3; mask: 0x000F; recVer + //$recVer = (0x000F & $verInstance) >> 0; + + $length = Xls::getInt4d($this->data, $this->pos + 4); + //$recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read DggContainer record (Drawing Group Container). + */ + private function readDggContainer(): void + { + $length = Xls::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + // record is a container, read contents + $dggContainer = new DggContainer(); + $this->applyAttribute('setDggContainer', $dggContainer); + $reader = new self($dggContainer); + $reader->load($recordData); + } + + /** + * Read Dgg record (Drawing Group). + */ + private function readDgg(): void + { + $length = Xls::getInt4d($this->data, $this->pos + 4); + //$recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read BstoreContainer record (Blip Store Container). + */ + private function readBstoreContainer(): void + { + $length = Xls::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + // record is a container, read contents + $bstoreContainer = new BstoreContainer(); + $this->applyAttribute('setBstoreContainer', $bstoreContainer); + $reader = new self($bstoreContainer); + $reader->load($recordData); + } + + /** + * Read BSE record. + */ + private function readBSE(): void + { + // offset: 0; size: 2; recVer and recInstance + + // bit: 4-15; mask: 0xFFF0; recInstance + $recInstance = (0xFFF0 & Xls::getUInt2d($this->data, $this->pos)) >> 4; + + $length = Xls::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + // add BSE to BstoreContainer + $BSE = new BSE(); + $this->applyAttribute('addBSE', $BSE); + + $BSE->setBLIPType($recInstance); + + // offset: 0; size: 1; btWin32 (MSOBLIPTYPE) + //$btWin32 = ord($recordData[0]); + + // offset: 1; size: 1; btWin32 (MSOBLIPTYPE) + //$btMacOS = ord($recordData[1]); + + // offset: 2; size: 16; MD4 digest + //$rgbUid = substr($recordData, 2, 16); + + // offset: 18; size: 2; tag + //$tag = Xls::getUInt2d($recordData, 18); + + // offset: 20; size: 4; size of BLIP in bytes + //$size = Xls::getInt4d($recordData, 20); + + // offset: 24; size: 4; number of references to this BLIP + //$cRef = Xls::getInt4d($recordData, 24); + + // offset: 28; size: 4; MSOFO file offset + //$foDelay = Xls::getInt4d($recordData, 28); + + // offset: 32; size: 1; unused1 + //$unused1 = ord($recordData[32]); + + // offset: 33; size: 1; size of nameData in bytes (including null terminator) + $cbName = ord($recordData[33]); + + // offset: 34; size: 1; unused2 + //$unused2 = ord($recordData[34]); + + // offset: 35; size: 1; unused3 + //$unused3 = ord($recordData[35]); + + // offset: 36; size: $cbName; nameData + //$nameData = substr($recordData, 36, $cbName); + + // offset: 36 + $cbName, size: var; the BLIP data + $blipData = substr($recordData, 36 + $cbName); + + // record is a container, read contents + $reader = new self($BSE); + $reader->load($blipData); + } + + /** + * Read BlipJPEG record. Holds raw JPEG image data. + */ + private function readBlipJPEG(): void + { + // offset: 0; size: 2; recVer and recInstance + + // bit: 4-15; mask: 0xFFF0; recInstance + $recInstance = (0xFFF0 & Xls::getUInt2d($this->data, $this->pos)) >> 4; + + $length = Xls::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + $pos = 0; + + // offset: 0; size: 16; rgbUid1 (MD4 digest of) + //$rgbUid1 = substr($recordData, 0, 16); + $pos += 16; + + // offset: 16; size: 16; rgbUid2 (MD4 digest), only if $recInstance = 0x46B or 0x6E3 + if (in_array($recInstance, [0x046B, 0x06E3])) { + //$rgbUid2 = substr($recordData, 16, 16); + $pos += 16; + } + + // offset: var; size: 1; tag + //$tag = ord($recordData[$pos]); + ++$pos; + + // offset: var; size: var; the raw image data + $data = substr($recordData, $pos); + + $blip = new Blip(); + $blip->setData($data); + + $this->applyAttribute('setBlip', $blip); + } + + /** + * Read BlipPNG record. Holds raw PNG image data. + */ + private function readBlipPNG(): void + { + // offset: 0; size: 2; recVer and recInstance + + // bit: 4-15; mask: 0xFFF0; recInstance + $recInstance = (0xFFF0 & Xls::getUInt2d($this->data, $this->pos)) >> 4; + + $length = Xls::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + $pos = 0; + + // offset: 0; size: 16; rgbUid1 (MD4 digest of) + //$rgbUid1 = substr($recordData, 0, 16); + $pos += 16; + + // offset: 16; size: 16; rgbUid2 (MD4 digest), only if $recInstance = 0x46B or 0x6E3 + if ($recInstance == 0x06E1) { + //$rgbUid2 = substr($recordData, 16, 16); + $pos += 16; + } + + // offset: var; size: 1; tag + //$tag = ord($recordData[$pos]); + ++$pos; + + // offset: var; size: var; the raw image data + $data = substr($recordData, $pos); + + $blip = new Blip(); + $blip->setData($data); + + $this->applyAttribute('setBlip', $blip); + } + + /** + * Read OPT record. This record may occur within DggContainer record or SpContainer. + */ + private function readOPT(): void + { + // offset: 0; size: 2; recVer and recInstance + + // bit: 4-15; mask: 0xFFF0; recInstance + $recInstance = (0xFFF0 & Xls::getUInt2d($this->data, $this->pos)) >> 4; + + $length = Xls::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + $this->readOfficeArtRGFOPTE($recordData, $recInstance); + } + + /** + * Read TertiaryOPT record. + */ + private function readTertiaryOPT(): void + { + // offset: 0; size: 2; recVer and recInstance + + // bit: 4-15; mask: 0xFFF0; recInstance + //$recInstance = (0xFFF0 & Xls::getUInt2d($this->data, $this->pos)) >> 4; + + $length = Xls::getInt4d($this->data, $this->pos + 4); + //$recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read SplitMenuColors record. + */ + private function readSplitMenuColors(): void + { + $length = Xls::getInt4d($this->data, $this->pos + 4); + //$recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read DgContainer record (Drawing Container). + */ + private function readDgContainer(): void + { + $length = Xls::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + // record is a container, read contents + $dgContainer = new DgContainer(); + $this->applyAttribute('setDgContainer', $dgContainer); + $reader = new self($dgContainer); + $reader->load($recordData); + } + + /** + * Read Dg record (Drawing). + */ + private function readDg(): void + { + $length = Xls::getInt4d($this->data, $this->pos + 4); + //$recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read SpgrContainer record (Shape Group Container). + */ + private function readSpgrContainer(): void + { + // context is either context DgContainer or SpgrContainer + + $length = Xls::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + // record is a container, read contents + $spgrContainer = new SpgrContainer(); + + if ($this->object instanceof DgContainer) { + // DgContainer + $this->object->setSpgrContainer($spgrContainer); + } elseif ($this->object instanceof SpgrContainer) { + // SpgrContainer + $this->object->addChild($spgrContainer); + } + + $reader = new self($spgrContainer); + $reader->load($recordData); + } + + /** + * Read SpContainer record (Shape Container). + */ + private function readSpContainer(): void + { + $length = Xls::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // add spContainer to spgrContainer + $spContainer = new SpContainer(); + $this->applyAttribute('addChild', $spContainer); + + // move stream pointer to next record + $this->pos += 8 + $length; + + // record is a container, read contents + $reader = new self($spContainer); + $reader->load($recordData); + } + + /** + * Read Spgr record (Shape Group). + */ + private function readSpgr(): void + { + $length = Xls::getInt4d($this->data, $this->pos + 4); + //$recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read Sp record (Shape). + */ + private function readSp(): void + { + // offset: 0; size: 2; recVer and recInstance + + // bit: 4-15; mask: 0xFFF0; recInstance + //$recInstance = (0xFFF0 & Xls::getUInt2d($this->data, $this->pos)) >> 4; + + $length = Xls::getInt4d($this->data, $this->pos + 4); + //$recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read ClientTextbox record. + */ + private function readClientTextbox(): void + { + // offset: 0; size: 2; recVer and recInstance + + // bit: 4-15; mask: 0xFFF0; recInstance + //$recInstance = (0xFFF0 & Xls::getUInt2d($this->data, $this->pos)) >> 4; + + $length = Xls::getInt4d($this->data, $this->pos + 4); + //$recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read ClientAnchor record. This record holds information about where the shape is anchored in worksheet. + */ + private function readClientAnchor(): void + { + $length = Xls::getInt4d($this->data, $this->pos + 4); + $recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + + // offset: 2; size: 2; upper-left corner column index (0-based) + $c1 = Xls::getUInt2d($recordData, 2); + + // offset: 4; size: 2; upper-left corner horizontal offset in 1/1024 of column width + $startOffsetX = Xls::getUInt2d($recordData, 4); + + // offset: 6; size: 2; upper-left corner row index (0-based) + $r1 = Xls::getUInt2d($recordData, 6); + + // offset: 8; size: 2; upper-left corner vertical offset in 1/256 of row height + $startOffsetY = Xls::getUInt2d($recordData, 8); + + // offset: 10; size: 2; bottom-right corner column index (0-based) + $c2 = Xls::getUInt2d($recordData, 10); + + // offset: 12; size: 2; bottom-right corner horizontal offset in 1/1024 of column width + $endOffsetX = Xls::getUInt2d($recordData, 12); + + // offset: 14; size: 2; bottom-right corner row index (0-based) + $r2 = Xls::getUInt2d($recordData, 14); + + // offset: 16; size: 2; bottom-right corner vertical offset in 1/256 of row height + $endOffsetY = Xls::getUInt2d($recordData, 16); + + $this->applyAttribute('setStartCoordinates', Coordinate::stringFromColumnIndex($c1 + 1) . ($r1 + 1)); + $this->applyAttribute('setStartOffsetX', $startOffsetX); + $this->applyAttribute('setStartOffsetY', $startOffsetY); + $this->applyAttribute('setEndCoordinates', Coordinate::stringFromColumnIndex($c2 + 1) . ($r2 + 1)); + $this->applyAttribute('setEndOffsetX', $endOffsetX); + $this->applyAttribute('setEndOffsetY', $endOffsetY); + } + + /** + * @param mixed $value + */ + private function applyAttribute(string $name, $value): void + { + if (method_exists($this->object, $name)) { + $this->object->$name($value); + } + } + + /** + * Read ClientData record. + */ + private function readClientData(): void + { + $length = Xls::getInt4d($this->data, $this->pos + 4); + //$recordData = substr($this->data, $this->pos + 8, $length); + + // move stream pointer to next record + $this->pos += 8 + $length; + } + + /** + * Read OfficeArtRGFOPTE table of property-value pairs. + * + * @param string $data Binary data + * @param int $n Number of properties + */ + private function readOfficeArtRGFOPTE($data, $n): void + { + $splicedComplexData = substr($data, 6 * $n); + + // loop through property-value pairs + for ($i = 0; $i < $n; ++$i) { + // read 6 bytes at a time + $fopte = substr($data, 6 * $i, 6); + + // offset: 0; size: 2; opid + $opid = Xls::getUInt2d($fopte, 0); + + // bit: 0-13; mask: 0x3FFF; opid.opid + $opidOpid = (0x3FFF & $opid) >> 0; + + // bit: 14; mask 0x4000; 1 = value in op field is BLIP identifier + //$opidFBid = (0x4000 & $opid) >> 14; + + // bit: 15; mask 0x8000; 1 = this is a complex property, op field specifies size of complex data + $opidFComplex = (0x8000 & $opid) >> 15; + + // offset: 2; size: 4; the value for this property + $op = Xls::getInt4d($fopte, 2); + + if ($opidFComplex) { + $complexData = substr($splicedComplexData, 0, $op); + $splicedComplexData = substr($splicedComplexData, $op); + + // we store string value with complex data + $value = $complexData; + } else { + // we store integer value + $value = $op; + } + + if (method_exists($this->object, 'setOPT')) { + $this->object->setOPT($opidOpid, $value); + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/MD5.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/MD5.php new file mode 100644 index 0000000..f84dbee --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/MD5.php @@ -0,0 +1,210 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xls; + +class MD5 +{ + /** + * @var int + */ + private $a; + + /** + * @var int + */ + private $b; + + /** + * @var int + */ + private $c; + + /** + * @var int + */ + private $d; + + /** + * @var int + */ + private static $allOneBits; + + /** + * MD5 stream constructor. + */ + public function __construct() + { + self::$allOneBits = self::signedInt(0xffffffff); + $this->reset(); + } + + /** + * Reset the MD5 stream context. + */ + public function reset(): void + { + $this->a = 0x67452301; + $this->b = self::signedInt(0xEFCDAB89); + $this->c = self::signedInt(0x98BADCFE); + $this->d = 0x10325476; + } + + /** + * Get MD5 stream context. + * + * @return string + */ + public function getContext() + { + $s = ''; + foreach (['a', 'b', 'c', 'd'] as $i) { + $v = $this->{$i}; + $s .= chr($v & 0xff); + $s .= chr(($v >> 8) & 0xff); + $s .= chr(($v >> 16) & 0xff); + $s .= chr(($v >> 24) & 0xff); + } + + return $s; + } + + /** + * Add data to context. + * + * @param string $data Data to add + */ + public function add(string $data): void + { + // @phpstan-ignore-next-line + $words = array_values(unpack('V16', $data)); + + $A = $this->a; + $B = $this->b; + $C = $this->c; + $D = $this->d; + + $F = [self::class, 'f']; + $G = [self::class, 'g']; + $H = [self::class, 'h']; + $I = [self::class, 'i']; + + // ROUND 1 + self::step($F, $A, $B, $C, $D, $words[0], 7, 0xd76aa478); + self::step($F, $D, $A, $B, $C, $words[1], 12, 0xe8c7b756); + self::step($F, $C, $D, $A, $B, $words[2], 17, 0x242070db); + self::step($F, $B, $C, $D, $A, $words[3], 22, 0xc1bdceee); + self::step($F, $A, $B, $C, $D, $words[4], 7, 0xf57c0faf); + self::step($F, $D, $A, $B, $C, $words[5], 12, 0x4787c62a); + self::step($F, $C, $D, $A, $B, $words[6], 17, 0xa8304613); + self::step($F, $B, $C, $D, $A, $words[7], 22, 0xfd469501); + self::step($F, $A, $B, $C, $D, $words[8], 7, 0x698098d8); + self::step($F, $D, $A, $B, $C, $words[9], 12, 0x8b44f7af); + self::step($F, $C, $D, $A, $B, $words[10], 17, 0xffff5bb1); + self::step($F, $B, $C, $D, $A, $words[11], 22, 0x895cd7be); + self::step($F, $A, $B, $C, $D, $words[12], 7, 0x6b901122); + self::step($F, $D, $A, $B, $C, $words[13], 12, 0xfd987193); + self::step($F, $C, $D, $A, $B, $words[14], 17, 0xa679438e); + self::step($F, $B, $C, $D, $A, $words[15], 22, 0x49b40821); + + // ROUND 2 + self::step($G, $A, $B, $C, $D, $words[1], 5, 0xf61e2562); + self::step($G, $D, $A, $B, $C, $words[6], 9, 0xc040b340); + self::step($G, $C, $D, $A, $B, $words[11], 14, 0x265e5a51); + self::step($G, $B, $C, $D, $A, $words[0], 20, 0xe9b6c7aa); + self::step($G, $A, $B, $C, $D, $words[5], 5, 0xd62f105d); + self::step($G, $D, $A, $B, $C, $words[10], 9, 0x02441453); + self::step($G, $C, $D, $A, $B, $words[15], 14, 0xd8a1e681); + self::step($G, $B, $C, $D, $A, $words[4], 20, 0xe7d3fbc8); + self::step($G, $A, $B, $C, $D, $words[9], 5, 0x21e1cde6); + self::step($G, $D, $A, $B, $C, $words[14], 9, 0xc33707d6); + self::step($G, $C, $D, $A, $B, $words[3], 14, 0xf4d50d87); + self::step($G, $B, $C, $D, $A, $words[8], 20, 0x455a14ed); + self::step($G, $A, $B, $C, $D, $words[13], 5, 0xa9e3e905); + self::step($G, $D, $A, $B, $C, $words[2], 9, 0xfcefa3f8); + self::step($G, $C, $D, $A, $B, $words[7], 14, 0x676f02d9); + self::step($G, $B, $C, $D, $A, $words[12], 20, 0x8d2a4c8a); + + // ROUND 3 + self::step($H, $A, $B, $C, $D, $words[5], 4, 0xfffa3942); + self::step($H, $D, $A, $B, $C, $words[8], 11, 0x8771f681); + self::step($H, $C, $D, $A, $B, $words[11], 16, 0x6d9d6122); + self::step($H, $B, $C, $D, $A, $words[14], 23, 0xfde5380c); + self::step($H, $A, $B, $C, $D, $words[1], 4, 0xa4beea44); + self::step($H, $D, $A, $B, $C, $words[4], 11, 0x4bdecfa9); + self::step($H, $C, $D, $A, $B, $words[7], 16, 0xf6bb4b60); + self::step($H, $B, $C, $D, $A, $words[10], 23, 0xbebfbc70); + self::step($H, $A, $B, $C, $D, $words[13], 4, 0x289b7ec6); + self::step($H, $D, $A, $B, $C, $words[0], 11, 0xeaa127fa); + self::step($H, $C, $D, $A, $B, $words[3], 16, 0xd4ef3085); + self::step($H, $B, $C, $D, $A, $words[6], 23, 0x04881d05); + self::step($H, $A, $B, $C, $D, $words[9], 4, 0xd9d4d039); + self::step($H, $D, $A, $B, $C, $words[12], 11, 0xe6db99e5); + self::step($H, $C, $D, $A, $B, $words[15], 16, 0x1fa27cf8); + self::step($H, $B, $C, $D, $A, $words[2], 23, 0xc4ac5665); + + // ROUND 4 + self::step($I, $A, $B, $C, $D, $words[0], 6, 0xf4292244); + self::step($I, $D, $A, $B, $C, $words[7], 10, 0x432aff97); + self::step($I, $C, $D, $A, $B, $words[14], 15, 0xab9423a7); + self::step($I, $B, $C, $D, $A, $words[5], 21, 0xfc93a039); + self::step($I, $A, $B, $C, $D, $words[12], 6, 0x655b59c3); + self::step($I, $D, $A, $B, $C, $words[3], 10, 0x8f0ccc92); + self::step($I, $C, $D, $A, $B, $words[10], 15, 0xffeff47d); + self::step($I, $B, $C, $D, $A, $words[1], 21, 0x85845dd1); + self::step($I, $A, $B, $C, $D, $words[8], 6, 0x6fa87e4f); + self::step($I, $D, $A, $B, $C, $words[15], 10, 0xfe2ce6e0); + self::step($I, $C, $D, $A, $B, $words[6], 15, 0xa3014314); + self::step($I, $B, $C, $D, $A, $words[13], 21, 0x4e0811a1); + self::step($I, $A, $B, $C, $D, $words[4], 6, 0xf7537e82); + self::step($I, $D, $A, $B, $C, $words[11], 10, 0xbd3af235); + self::step($I, $C, $D, $A, $B, $words[2], 15, 0x2ad7d2bb); + self::step($I, $B, $C, $D, $A, $words[9], 21, 0xeb86d391); + + $this->a = ($this->a + $A) & self::$allOneBits; + $this->b = ($this->b + $B) & self::$allOneBits; + $this->c = ($this->c + $C) & self::$allOneBits; + $this->d = ($this->d + $D) & self::$allOneBits; + } + + private static function f(int $X, int $Y, int $Z): int + { + return ($X & $Y) | ((~$X) & $Z); // X AND Y OR NOT X AND Z + } + + private static function g(int $X, int $Y, int $Z): int + { + return ($X & $Z) | ($Y & (~$Z)); // X AND Z OR Y AND NOT Z + } + + private static function h(int $X, int $Y, int $Z): int + { + return $X ^ $Y ^ $Z; // X XOR Y XOR Z + } + + private static function i(int $X, int $Y, int $Z): int + { + return $Y ^ ($X | (~$Z)); // Y XOR (X OR NOT Z) + } + + /** @param float|int $t may be float on 32-bit system */ + private static function step(callable $func, int &$A, int $B, int $C, int $D, int $M, int $s, $t): void + { + $t = self::signedInt($t); + $A = ($A + call_user_func($func, $B, $C, $D) + $M + $t) & self::$allOneBits; + $A = self::rotate($A, $s); + $A = ($B + $A) & self::$allOneBits; + } + + /** @param float|int $result may be float on 32-bit system */ + private static function signedInt($result): int + { + return is_int($result) ? $result : (int) (PHP_INT_MIN + $result - 1 - PHP_INT_MAX); + } + + private static function rotate(int $decimal, int $bits): int + { + $binary = str_pad(decbin($decimal), 32, '0', STR_PAD_LEFT); + + return self::signedInt(bindec(substr($binary, $bits) . substr($binary, 0, $bits))); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/RC4.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/RC4.php new file mode 100644 index 0000000..691aca7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/RC4.php @@ -0,0 +1,61 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xls; + +class RC4 +{ + // Context + protected $s = []; + + protected $i = 0; + + protected $j = 0; + + /** + * RC4 stream decryption/encryption constrcutor. + * + * @param string $key Encryption key/passphrase + */ + public function __construct($key) + { + $len = strlen($key); + + for ($this->i = 0; $this->i < 256; ++$this->i) { + $this->s[$this->i] = $this->i; + } + + $this->j = 0; + for ($this->i = 0; $this->i < 256; ++$this->i) { + $this->j = ($this->j + $this->s[$this->i] + ord($key[$this->i % $len])) % 256; + $t = $this->s[$this->i]; + $this->s[$this->i] = $this->s[$this->j]; + $this->s[$this->j] = $t; + } + $this->i = $this->j = 0; + } + + /** + * Symmetric decryption/encryption function. + * + * @param string $data Data to encrypt/decrypt + * + * @return string + */ + public function RC4($data) + { + $len = strlen($data); + for ($c = 0; $c < $len; ++$c) { + $this->i = ($this->i + 1) % 256; + $this->j = ($this->j + $this->s[$this->i]) % 256; + $t = $this->s[$this->i]; + $this->s[$this->i] = $this->s[$this->j]; + $this->s[$this->j] = $t; + + $t = ($this->s[$this->i] + $this->s[$this->j]) % 256; + + $data[$c] = chr(ord($data[$c]) ^ $this->s[$t]); + } + + return $data; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/Border.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/Border.php new file mode 100644 index 0000000..d832eb0 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/Border.php @@ -0,0 +1,37 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xls\Style; + +use PhpOffice\PhpSpreadsheet\Style\Border as StyleBorder; + +class Border +{ + /** + * @var array<int, string> + */ + protected static $borderStyleMap = [ + 0x00 => StyleBorder::BORDER_NONE, + 0x01 => StyleBorder::BORDER_THIN, + 0x02 => StyleBorder::BORDER_MEDIUM, + 0x03 => StyleBorder::BORDER_DASHED, + 0x04 => StyleBorder::BORDER_DOTTED, + 0x05 => StyleBorder::BORDER_THICK, + 0x06 => StyleBorder::BORDER_DOUBLE, + 0x07 => StyleBorder::BORDER_HAIR, + 0x08 => StyleBorder::BORDER_MEDIUMDASHED, + 0x09 => StyleBorder::BORDER_DASHDOT, + 0x0A => StyleBorder::BORDER_MEDIUMDASHDOT, + 0x0B => StyleBorder::BORDER_DASHDOTDOT, + 0x0C => StyleBorder::BORDER_MEDIUMDASHDOTDOT, + 0x0D => StyleBorder::BORDER_SLANTDASHDOT, + ]; + + public static function lookup(int $index): string + { + if (isset(self::$borderStyleMap[$index])) { + return self::$borderStyleMap[$index]; + } + + return StyleBorder::BORDER_NONE; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/CellAlignment.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/CellAlignment.php new file mode 100644 index 0000000..f03d47f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/CellAlignment.php @@ -0,0 +1,50 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xls\Style; + +use PhpOffice\PhpSpreadsheet\Style\Alignment; + +class CellAlignment +{ + /** + * @var array<int, string> + */ + protected static $horizontalAlignmentMap = [ + 0 => Alignment::HORIZONTAL_GENERAL, + 1 => Alignment::HORIZONTAL_LEFT, + 2 => Alignment::HORIZONTAL_CENTER, + 3 => Alignment::HORIZONTAL_RIGHT, + 4 => Alignment::HORIZONTAL_FILL, + 5 => Alignment::HORIZONTAL_JUSTIFY, + 6 => Alignment::HORIZONTAL_CENTER_CONTINUOUS, + ]; + + /** + * @var array<int, string> + */ + protected static $verticalAlignmentMap = [ + 0 => Alignment::VERTICAL_TOP, + 1 => Alignment::VERTICAL_CENTER, + 2 => Alignment::VERTICAL_BOTTOM, + 3 => Alignment::VERTICAL_JUSTIFY, + ]; + + public static function horizontal(Alignment $alignment, int $horizontal): void + { + if (array_key_exists($horizontal, self::$horizontalAlignmentMap)) { + $alignment->setHorizontal(self::$horizontalAlignmentMap[$horizontal]); + } + } + + public static function vertical(Alignment $alignment, int $vertical): void + { + if (array_key_exists($vertical, self::$verticalAlignmentMap)) { + $alignment->setVertical(self::$verticalAlignmentMap[$vertical]); + } + } + + public static function wrap(Alignment $alignment, int $wrap): void + { + $alignment->setWrapText((bool) $wrap); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/CellFont.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/CellFont.php new file mode 100644 index 0000000..e975be4 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/CellFont.php @@ -0,0 +1,39 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xls\Style; + +use PhpOffice\PhpSpreadsheet\Style\Font; + +class CellFont +{ + public static function escapement(Font $font, int $escapement): void + { + switch ($escapement) { + case 0x0001: + $font->setSuperscript(true); + + break; + case 0x0002: + $font->setSubscript(true); + + break; + } + } + + /** + * @var array<int, string> + */ + protected static $underlineMap = [ + 0x01 => Font::UNDERLINE_SINGLE, + 0x02 => Font::UNDERLINE_DOUBLE, + 0x21 => Font::UNDERLINE_SINGLEACCOUNTING, + 0x22 => Font::UNDERLINE_DOUBLEACCOUNTING, + ]; + + public static function underline(Font $font, int $underline): void + { + if (array_key_exists($underline, self::$underlineMap)) { + $font->setUnderline(self::$underlineMap[$underline]); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/FillPattern.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/FillPattern.php new file mode 100644 index 0000000..32ab5c8 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/FillPattern.php @@ -0,0 +1,50 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xls\Style; + +use PhpOffice\PhpSpreadsheet\Style\Fill; + +class FillPattern +{ + /** + * @var array<int, string> + */ + protected static $fillPatternMap = [ + 0x00 => Fill::FILL_NONE, + 0x01 => Fill::FILL_SOLID, + 0x02 => Fill::FILL_PATTERN_MEDIUMGRAY, + 0x03 => Fill::FILL_PATTERN_DARKGRAY, + 0x04 => Fill::FILL_PATTERN_LIGHTGRAY, + 0x05 => Fill::FILL_PATTERN_DARKHORIZONTAL, + 0x06 => Fill::FILL_PATTERN_DARKVERTICAL, + 0x07 => Fill::FILL_PATTERN_DARKDOWN, + 0x08 => Fill::FILL_PATTERN_DARKUP, + 0x09 => Fill::FILL_PATTERN_DARKGRID, + 0x0A => Fill::FILL_PATTERN_DARKTRELLIS, + 0x0B => Fill::FILL_PATTERN_LIGHTHORIZONTAL, + 0x0C => Fill::FILL_PATTERN_LIGHTVERTICAL, + 0x0D => Fill::FILL_PATTERN_LIGHTDOWN, + 0x0E => Fill::FILL_PATTERN_LIGHTUP, + 0x0F => Fill::FILL_PATTERN_LIGHTGRID, + 0x10 => Fill::FILL_PATTERN_LIGHTTRELLIS, + 0x11 => Fill::FILL_PATTERN_GRAY125, + 0x12 => Fill::FILL_PATTERN_GRAY0625, + ]; + + /** + * Get fill pattern from index + * OpenOffice documentation: 2.5.12. + * + * @param int $index + * + * @return string + */ + public static function lookup($index) + { + if (isset(self::$fillPatternMap[$index])) { + return self::$fillPatternMap[$index]; + } + + return Fill::FILL_NONE; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx.php new file mode 100644 index 0000000..52df94e --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx.php @@ -0,0 +1,2140 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Cell\DataType; +use PhpOffice\PhpSpreadsheet\Cell\Hyperlink; +use PhpOffice\PhpSpreadsheet\DefinedName; +use PhpOffice\PhpSpreadsheet\Reader\Security\XmlScanner; +use PhpOffice\PhpSpreadsheet\Reader\Xlsx\AutoFilter; +use PhpOffice\PhpSpreadsheet\Reader\Xlsx\Chart; +use PhpOffice\PhpSpreadsheet\Reader\Xlsx\ColumnAndRowAttributes; +use PhpOffice\PhpSpreadsheet\Reader\Xlsx\ConditionalStyles; +use PhpOffice\PhpSpreadsheet\Reader\Xlsx\DataValidations; +use PhpOffice\PhpSpreadsheet\Reader\Xlsx\Hyperlinks; +use PhpOffice\PhpSpreadsheet\Reader\Xlsx\Namespaces; +use PhpOffice\PhpSpreadsheet\Reader\Xlsx\PageSetup; +use PhpOffice\PhpSpreadsheet\Reader\Xlsx\Properties as PropertyReader; +use PhpOffice\PhpSpreadsheet\Reader\Xlsx\SheetViewOptions; +use PhpOffice\PhpSpreadsheet\Reader\Xlsx\SheetViews; +use PhpOffice\PhpSpreadsheet\Reader\Xlsx\Styles; +use PhpOffice\PhpSpreadsheet\Reader\Xlsx\Theme; +use PhpOffice\PhpSpreadsheet\Reader\Xlsx\WorkbookView; +use PhpOffice\PhpSpreadsheet\ReferenceHelper; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\Settings; +use PhpOffice\PhpSpreadsheet\Shared\Date; +use PhpOffice\PhpSpreadsheet\Shared\Drawing; +use PhpOffice\PhpSpreadsheet\Shared\File; +use PhpOffice\PhpSpreadsheet\Shared\Font; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Style\Color; +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; +use PhpOffice\PhpSpreadsheet\Style\Style; +use PhpOffice\PhpSpreadsheet\Worksheet\HeaderFooterDrawing; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; +use SimpleXMLElement; +use Throwable; +use XMLReader; +use ZipArchive; + +class Xlsx extends BaseReader +{ + const INITIAL_FILE = '_rels/.rels'; + + /** + * ReferenceHelper instance. + * + * @var ReferenceHelper + */ + private $referenceHelper; + + /** + * @var ZipArchive + */ + private $zip; + + /** @var Styles */ + private $styleReader; + + /** + * Create a new Xlsx Reader instance. + */ + public function __construct() + { + parent::__construct(); + $this->referenceHelper = ReferenceHelper::getInstance(); + $this->securityScanner = XmlScanner::getInstance($this); + } + + /** + * Can the current IReader read the file? + */ + public function canRead(string $filename): bool + { + if (!File::testFileNoThrow($filename, self::INITIAL_FILE)) { + return false; + } + + $result = false; + $this->zip = $zip = new ZipArchive(); + + if ($zip->open($filename) === true) { + [$workbookBasename] = $this->getWorkbookBaseName(); + $result = !empty($workbookBasename); + + $zip->close(); + } + + return $result; + } + + /** + * @param mixed $value + */ + public static function testSimpleXml($value): SimpleXMLElement + { + return ($value instanceof SimpleXMLElement) ? $value : new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8"?><root></root>'); + } + + public static function getAttributes(?SimpleXMLElement $value, string $ns = ''): SimpleXMLElement + { + return self::testSimpleXml($value === null ? $value : $value->attributes($ns)); + } + + // Phpstan thinks, correctly, that xpath can return false. + // Scrutinizer thinks it can't. + // Sigh. + private static function xpathNoFalse(SimpleXmlElement $sxml, string $path): array + { + return self::falseToArray($sxml->xpath($path)); + } + + /** + * @param mixed $value + */ + public static function falseToArray($value): array + { + return is_array($value) ? $value : []; + } + + private function loadZip(string $filename, string $ns = ''): SimpleXMLElement + { + $contents = $this->getFromZipArchive($this->zip, $filename); + $rels = simplexml_load_string( + $this->securityScanner->scan($contents), + 'SimpleXMLElement', + Settings::getLibXmlLoaderOptions(), + $ns + ); + + return self::testSimpleXml($rels); + } + + // This function is just to identify cases where I'm not sure + // why empty namespace is required. + private function loadZipNonamespace(string $filename, string $ns): SimpleXMLElement + { + $contents = $this->getFromZipArchive($this->zip, $filename); + $rels = simplexml_load_string( + $this->securityScanner->scan($contents), + 'SimpleXMLElement', + Settings::getLibXmlLoaderOptions(), + ($ns === '' ? $ns : '') + ); + + return self::testSimpleXml($rels); + } + + private const REL_TO_MAIN = [ + Namespaces::PURL_OFFICE_DOCUMENT => Namespaces::PURL_MAIN, + Namespaces::THUMBNAIL => '', + ]; + + private const REL_TO_DRAWING = [ + Namespaces::PURL_RELATIONSHIPS => Namespaces::PURL_DRAWING, + ]; + + private const REL_TO_CHART = [ + Namespaces::PURL_RELATIONSHIPS => Namespaces::PURL_CHART, + ]; + + /** + * Reads names of the worksheets from a file, without parsing the whole file to a Spreadsheet object. + * + * @param string $filename + * + * @return array + */ + public function listWorksheetNames($filename) + { + File::assertFile($filename, self::INITIAL_FILE); + + $worksheetNames = []; + + $this->zip = $zip = new ZipArchive(); + $zip->open($filename); + + // The files we're looking at here are small enough that simpleXML is more efficient than XMLReader + $rels = $this->loadZip(self::INITIAL_FILE, Namespaces::RELATIONSHIPS); + foreach ($rels->Relationship as $relx) { + $rel = self::getAttributes($relx); + $relType = (string) $rel['Type']; + $mainNS = self::REL_TO_MAIN[$relType] ?? Namespaces::MAIN; + if ($mainNS !== '') { + $xmlWorkbook = $this->loadZip((string) $rel['Target'], $mainNS); + + if ($xmlWorkbook->sheets) { + foreach ($xmlWorkbook->sheets->sheet as $eleSheet) { + // Check if sheet should be skipped + $worksheetNames[] = (string) self::getAttributes($eleSheet)['name']; + } + } + } + } + + $zip->close(); + + return $worksheetNames; + } + + /** + * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns). + * + * @param string $filename + * + * @return array + */ + public function listWorksheetInfo($filename) + { + File::assertFile($filename, self::INITIAL_FILE); + + $worksheetInfo = []; + + $this->zip = $zip = new ZipArchive(); + $zip->open($filename); + + $rels = $this->loadZip(self::INITIAL_FILE, Namespaces::RELATIONSHIPS); + foreach ($rels->Relationship as $relx) { + $rel = self::getAttributes($relx); + $relType = (string) $rel['Type']; + $mainNS = self::REL_TO_MAIN[$relType] ?? Namespaces::MAIN; + if ($mainNS !== '') { + $relTarget = (string) $rel['Target']; + $dir = dirname($relTarget); + $namespace = dirname($relType); + $relsWorkbook = $this->loadZip("$dir/_rels/" . basename($relTarget) . '.rels', ''); + + $worksheets = []; + foreach ($relsWorkbook->Relationship as $elex) { + $ele = self::getAttributes($elex); + if ( + ((string) $ele['Type'] === "$namespace/worksheet") || + ((string) $ele['Type'] === "$namespace/chartsheet") + ) { + $worksheets[(string) $ele['Id']] = $ele['Target']; + } + } + + $xmlWorkbook = $this->loadZip($relTarget, $mainNS); + if ($xmlWorkbook->sheets) { + $dir = dirname($relTarget); + /** @var SimpleXMLElement $eleSheet */ + foreach ($xmlWorkbook->sheets->sheet as $eleSheet) { + $tmpInfo = [ + 'worksheetName' => (string) self::getAttributes($eleSheet)['name'], + 'lastColumnLetter' => 'A', + 'lastColumnIndex' => 0, + 'totalRows' => 0, + 'totalColumns' => 0, + ]; + + $fileWorksheet = (string) $worksheets[(string) self::getArrayItem(self::getAttributes($eleSheet, $namespace), 'id')]; + $fileWorksheetPath = strpos($fileWorksheet, '/') === 0 ? substr($fileWorksheet, 1) : "$dir/$fileWorksheet"; + + $xml = new XMLReader(); + $xml->xml( + $this->securityScanner->scanFile( + 'zip://' . File::realpath($filename) . '#' . $fileWorksheetPath + ), + null, + Settings::getLibXmlLoaderOptions() + ); + $xml->setParserProperty(2, true); + + $currCells = 0; + while ($xml->read()) { + if ($xml->localName == 'row' && $xml->nodeType == XMLReader::ELEMENT && $xml->namespaceURI === $mainNS) { + $row = $xml->getAttribute('r'); + $tmpInfo['totalRows'] = $row; + $tmpInfo['totalColumns'] = max($tmpInfo['totalColumns'], $currCells); + $currCells = 0; + } elseif ($xml->localName == 'c' && $xml->nodeType == XMLReader::ELEMENT && $xml->namespaceURI === $mainNS) { + $cell = $xml->getAttribute('r'); + $currCells = $cell ? max($currCells, Coordinate::indexesFromString($cell)[0]) : ($currCells + 1); + } + } + $tmpInfo['totalColumns'] = max($tmpInfo['totalColumns'], $currCells); + $xml->close(); + + $tmpInfo['lastColumnIndex'] = $tmpInfo['totalColumns'] - 1; + $tmpInfo['lastColumnLetter'] = Coordinate::stringFromColumnIndex($tmpInfo['lastColumnIndex'] + 1); + + $worksheetInfo[] = $tmpInfo; + } + } + } + } + + $zip->close(); + + return $worksheetInfo; + } + + private static function castToBoolean($c) + { + $value = isset($c->v) ? (string) $c->v : null; + if ($value == '0') { + return false; + } elseif ($value == '1') { + return true; + } + + return (bool) $c->v; + } + + private static function castToError($c) + { + return isset($c->v) ? (string) $c->v : null; + } + + private static function castToString($c) + { + return isset($c->v) ? (string) $c->v : null; + } + + private function castToFormula($c, $r, &$cellDataType, &$value, &$calculatedValue, &$sharedFormulas, $castBaseType): void + { + $attr = $c->f->attributes(); + $cellDataType = 'f'; + $value = "={$c->f}"; + $calculatedValue = self::$castBaseType($c); + + // Shared formula? + if (isset($attr['t']) && strtolower((string) $attr['t']) == 'shared') { + $instance = (string) $attr['si']; + + if (!isset($sharedFormulas[(string) $attr['si']])) { + $sharedFormulas[$instance] = ['master' => $r, 'formula' => $value]; + } else { + $master = Coordinate::indexesFromString($sharedFormulas[$instance]['master']); + $current = Coordinate::indexesFromString($r); + + $difference = [0, 0]; + $difference[0] = $current[0] - $master[0]; + $difference[1] = $current[1] - $master[1]; + + $value = $this->referenceHelper->updateFormulaReferences($sharedFormulas[$instance]['formula'], 'A1', $difference[0], $difference[1]); + } + } + } + + /** + * @param string $fileName + */ + private function fileExistsInArchive(ZipArchive $archive, $fileName = ''): bool + { + // Root-relative paths + if (strpos($fileName, '//') !== false) { + $fileName = substr($fileName, strpos($fileName, '//') + 1); + } + $fileName = File::realpath($fileName); + + // Sadly, some 3rd party xlsx generators don't use consistent case for filenaming + // so we need to load case-insensitively from the zip file + + // Apache POI fixes + $contents = $archive->locateName($fileName, ZipArchive::FL_NOCASE); + if ($contents === false) { + $contents = $archive->locateName(substr($fileName, 1), ZipArchive::FL_NOCASE); + } + + return $contents !== false; + } + + /** + * @param string $fileName + * + * @return string + */ + private function getFromZipArchive(ZipArchive $archive, $fileName = '') + { + // Root-relative paths + if (strpos($fileName, '//') !== false) { + $fileName = substr($fileName, strpos($fileName, '//') + 1); + } + // Relative paths generated by dirname($filename) when $filename + // has no path (i.e.files in root of the zip archive) + $fileName = (string) preg_replace('/^\.\//', '', $fileName); + $fileName = File::realpath($fileName); + + // Sadly, some 3rd party xlsx generators don't use consistent case for filenaming + // so we need to load case-insensitively from the zip file + + // Apache POI fixes + $contents = $archive->getFromName($fileName, 0, ZipArchive::FL_NOCASE); + if ($contents === false) { + $contents = $archive->getFromName(substr($fileName, 1), 0, ZipArchive::FL_NOCASE); + } + + return $contents; + } + + /** + * Loads Spreadsheet from file. + */ + protected function loadSpreadsheetFromFile(string $filename): Spreadsheet + { + File::assertFile($filename, self::INITIAL_FILE); + + // Initialisations + $excel = new Spreadsheet(); + $excel->removeSheetByIndex(0); + $addingFirstCellStyleXf = true; + $addingFirstCellXf = true; + + $unparsedLoadedData = []; + + $this->zip = $zip = new ZipArchive(); + $zip->open($filename); + + // Read the theme first, because we need the colour scheme when reading the styles + [$workbookBasename, $xmlNamespaceBase] = $this->getWorkbookBaseName(); + $drawingNS = self::REL_TO_DRAWING[$xmlNamespaceBase] ?? Namespaces::DRAWINGML; + $chartNS = self::REL_TO_CHART[$xmlNamespaceBase] ?? Namespaces::CHART; + $wbRels = $this->loadZip("xl/_rels/{$workbookBasename}.rels", Namespaces::RELATIONSHIPS); + $theme = null; + $this->styleReader = new Styles(); + foreach ($wbRels->Relationship as $relx) { + $rel = self::getAttributes($relx); + $relTarget = (string) $rel['Target']; + if (substr($relTarget, 0, 4) === '/xl/') { + $relTarget = substr($relTarget, 4); + } + switch ($rel['Type']) { + case "$xmlNamespaceBase/theme": + $themeOrderArray = ['lt1', 'dk1', 'lt2', 'dk2']; + $themeOrderAdditional = count($themeOrderArray); + + $xmlTheme = $this->loadZip("xl/{$relTarget}", $drawingNS); + $xmlThemeName = self::getAttributes($xmlTheme); + $xmlTheme = $xmlTheme->children($drawingNS); + $themeName = (string) $xmlThemeName['name']; + + $colourScheme = self::getAttributes($xmlTheme->themeElements->clrScheme); + $colourSchemeName = (string) $colourScheme['name']; + $colourScheme = $xmlTheme->themeElements->clrScheme->children($drawingNS); + + $themeColours = []; + foreach ($colourScheme as $k => $xmlColour) { + $themePos = array_search($k, $themeOrderArray); + if ($themePos === false) { + $themePos = $themeOrderAdditional++; + } + if (isset($xmlColour->sysClr)) { + $xmlColourData = self::getAttributes($xmlColour->sysClr); + $themeColours[$themePos] = (string) $xmlColourData['lastClr']; + } elseif (isset($xmlColour->srgbClr)) { + $xmlColourData = self::getAttributes($xmlColour->srgbClr); + $themeColours[$themePos] = (string) $xmlColourData['val']; + } + } + $theme = new Theme($themeName, $colourSchemeName, $themeColours); + $this->styleReader->setTheme($theme); + + break; + } + } + + $rels = $this->loadZip(self::INITIAL_FILE, Namespaces::RELATIONSHIPS); + + $propertyReader = new PropertyReader($this->securityScanner, $excel->getProperties()); + foreach ($rels->Relationship as $relx) { + $rel = self::getAttributes($relx); + $relTarget = (string) $rel['Target']; + $relType = (string) $rel['Type']; + $mainNS = self::REL_TO_MAIN[$relType] ?? Namespaces::MAIN; + switch ($relType) { + case Namespaces::CORE_PROPERTIES: + $propertyReader->readCoreProperties($this->getFromZipArchive($zip, $relTarget)); + + break; + case "$xmlNamespaceBase/extended-properties": + $propertyReader->readExtendedProperties($this->getFromZipArchive($zip, $relTarget)); + + break; + case "$xmlNamespaceBase/custom-properties": + $propertyReader->readCustomProperties($this->getFromZipArchive($zip, $relTarget)); + + break; + //Ribbon + case Namespaces::EXTENSIBILITY: + $customUI = $relTarget; + if ($customUI) { + $this->readRibbon($excel, $customUI, $zip); + } + + break; + case "$xmlNamespaceBase/officeDocument": + $dir = dirname($relTarget); + + // Do not specify namespace in next stmt - do it in Xpath + $relsWorkbook = $this->loadZip("$dir/_rels/" . basename($relTarget) . '.rels', ''); + $relsWorkbook->registerXPathNamespace('rel', Namespaces::RELATIONSHIPS); + + $sharedStrings = []; + $relType = "rel:Relationship[@Type='" + //. Namespaces::SHARED_STRINGS + . "$xmlNamespaceBase/sharedStrings" + . "']"; + $xpath = self::getArrayItem($relsWorkbook->xpath($relType)); + + if ($xpath) { + $xmlStrings = $this->loadZip("$dir/$xpath[Target]", $mainNS); + if (isset($xmlStrings->si)) { + foreach ($xmlStrings->si as $val) { + if (isset($val->t)) { + $sharedStrings[] = StringHelper::controlCharacterOOXML2PHP((string) $val->t); + } elseif (isset($val->r)) { + $sharedStrings[] = $this->parseRichText($val); + } + } + } + } + + $worksheets = []; + $macros = $customUI = null; + foreach ($relsWorkbook->Relationship as $elex) { + $ele = self::getAttributes($elex); + switch ($ele['Type']) { + case Namespaces::WORKSHEET: + case Namespaces::PURL_WORKSHEET: + $worksheets[(string) $ele['Id']] = $ele['Target']; + + break; + case Namespaces::CHARTSHEET: + if ($this->includeCharts === true) { + $worksheets[(string) $ele['Id']] = $ele['Target']; + } + + break; + // a vbaProject ? (: some macros) + case Namespaces::VBA: + $macros = $ele['Target']; + + break; + } + } + + if ($macros !== null) { + $macrosCode = $this->getFromZipArchive($zip, 'xl/vbaProject.bin'); //vbaProject.bin always in 'xl' dir and always named vbaProject.bin + if ($macrosCode !== false) { + $excel->setMacrosCode($macrosCode); + $excel->setHasMacros(true); + //short-circuit : not reading vbaProject.bin.rel to get Signature =>allways vbaProjectSignature.bin in 'xl' dir + $Certificate = $this->getFromZipArchive($zip, 'xl/vbaProjectSignature.bin'); + if ($Certificate !== false) { + $excel->setMacrosCertificate($Certificate); + } + } + } + + $relType = "rel:Relationship[@Type='" + . "$xmlNamespaceBase/styles" + . "']"; + $xpath = self::getArrayItem(self::xpathNoFalse($relsWorkbook, $relType)); + + if ($xpath === null) { + $xmlStyles = self::testSimpleXml(null); + } else { + $xmlStyles = $this->loadZip("$dir/$xpath[Target]", $mainNS); + } + + $palette = self::extractPalette($xmlStyles); + $this->styleReader->setWorkbookPalette($palette); + $fills = self::extractStyles($xmlStyles, 'fills', 'fill'); + $fonts = self::extractStyles($xmlStyles, 'fonts', 'font'); + $borders = self::extractStyles($xmlStyles, 'borders', 'border'); + $xfTags = self::extractStyles($xmlStyles, 'cellXfs', 'xf'); + $cellXfTags = self::extractStyles($xmlStyles, 'cellStyleXfs', 'xf'); + + $styles = []; + $cellStyles = []; + $numFmts = null; + if (/*$xmlStyles && */ $xmlStyles->numFmts[0]) { + $numFmts = $xmlStyles->numFmts[0]; + } + if (isset($numFmts) && ($numFmts !== null)) { + $numFmts->registerXPathNamespace('sml', $mainNS); + } + $this->styleReader->setNamespace($mainNS); + if (!$this->readDataOnly/* && $xmlStyles*/) { + foreach ($xfTags as $xfTag) { + $xf = self::getAttributes($xfTag); + $numFmt = null; + + if ($xf['numFmtId']) { + if (isset($numFmts)) { + $tmpNumFmt = self::getArrayItem($numFmts->xpath("sml:numFmt[@numFmtId=$xf[numFmtId]]")); + + if (isset($tmpNumFmt['formatCode'])) { + $numFmt = (string) $tmpNumFmt['formatCode']; + } + } + + // We shouldn't override any of the built-in MS Excel values (values below id 164) + // But there's a lot of naughty homebrew xlsx writers that do use "reserved" id values that aren't actually used + // So we make allowance for them rather than lose formatting masks + if ( + $numFmt === null && + (int) $xf['numFmtId'] < 164 && + NumberFormat::builtInFormatCode((int) $xf['numFmtId']) !== '' + ) { + $numFmt = NumberFormat::builtInFormatCode((int) $xf['numFmtId']); + } + } + $quotePrefix = (bool) ($xf['quotePrefix'] ?? false); + + $style = (object) [ + 'numFmt' => $numFmt ?? NumberFormat::FORMAT_GENERAL, + 'font' => $fonts[(int) ($xf['fontId'])], + 'fill' => $fills[(int) ($xf['fillId'])], + 'border' => $borders[(int) ($xf['borderId'])], + 'alignment' => $xfTag->alignment, + 'protection' => $xfTag->protection, + 'quotePrefix' => $quotePrefix, + ]; + $styles[] = $style; + + // add style to cellXf collection + $objStyle = new Style(); + $this->styleReader->readStyle($objStyle, $style); + if ($addingFirstCellXf) { + $excel->removeCellXfByIndex(0); // remove the default style + $addingFirstCellXf = false; + } + $excel->addCellXf($objStyle); + } + + foreach ($cellXfTags as $xfTag) { + $xf = self::getAttributes($xfTag); + $numFmt = NumberFormat::FORMAT_GENERAL; + if ($numFmts && $xf['numFmtId']) { + $tmpNumFmt = self::getArrayItem($numFmts->xpath("sml:numFmt[@numFmtId=$xf[numFmtId]]")); + if (isset($tmpNumFmt['formatCode'])) { + $numFmt = (string) $tmpNumFmt['formatCode']; + } elseif ((int) $xf['numFmtId'] < 165) { + $numFmt = NumberFormat::builtInFormatCode((int) $xf['numFmtId']); + } + } + + $quotePrefix = (bool) ($xf['quotePrefix'] ?? false); + + $cellStyle = (object) [ + 'numFmt' => $numFmt, + 'font' => $fonts[(int) ($xf['fontId'])], + 'fill' => $fills[((int) $xf['fillId'])], + 'border' => $borders[(int) ($xf['borderId'])], + 'alignment' => $xfTag->alignment, + 'protection' => $xfTag->protection, + 'quotePrefix' => $quotePrefix, + ]; + $cellStyles[] = $cellStyle; + + // add style to cellStyleXf collection + $objStyle = new Style(); + $this->styleReader->readStyle($objStyle, $cellStyle); + if ($addingFirstCellStyleXf) { + $excel->removeCellStyleXfByIndex(0); // remove the default style + $addingFirstCellStyleXf = false; + } + $excel->addCellStyleXf($objStyle); + } + } + $this->styleReader->setStyleXml($xmlStyles); + $this->styleReader->setNamespace($mainNS); + $this->styleReader->setStyleBaseData($theme, $styles, $cellStyles); + $dxfs = $this->styleReader->dxfs($this->readDataOnly); + $styles = $this->styleReader->styles(); + + $xmlWorkbook = $this->loadZipNoNamespace($relTarget, $mainNS); + $xmlWorkbookNS = $this->loadZip($relTarget, $mainNS); + + // Set base date + if ($xmlWorkbookNS->workbookPr) { + Date::setExcelCalendar(Date::CALENDAR_WINDOWS_1900); + $attrs1904 = self::getAttributes($xmlWorkbookNS->workbookPr); + if (isset($attrs1904['date1904'])) { + if (self::boolean((string) $attrs1904['date1904'])) { + Date::setExcelCalendar(Date::CALENDAR_MAC_1904); + } + } + } + + // Set protection + $this->readProtection($excel, $xmlWorkbook); + + $sheetId = 0; // keep track of new sheet id in final workbook + $oldSheetId = -1; // keep track of old sheet id in final workbook + $countSkippedSheets = 0; // keep track of number of skipped sheets + $mapSheetId = []; // mapping of sheet ids from old to new + + $charts = $chartDetails = []; + + if ($xmlWorkbookNS->sheets) { + /** @var SimpleXMLElement $eleSheet */ + foreach ($xmlWorkbookNS->sheets->sheet as $eleSheet) { + $eleSheetAttr = self::getAttributes($eleSheet); + ++$oldSheetId; + + // Check if sheet should be skipped + if (is_array($this->loadSheetsOnly) && !in_array((string) $eleSheetAttr['name'], $this->loadSheetsOnly)) { + ++$countSkippedSheets; + $mapSheetId[$oldSheetId] = null; + + continue; + } + + $sheetReferenceId = (string) self::getArrayItem(self::getAttributes($eleSheet, $xmlNamespaceBase), 'id'); + if (isset($worksheets[$sheetReferenceId]) === false) { + ++$countSkippedSheets; + $mapSheetId[$oldSheetId] = null; + + continue; + } + // Map old sheet id in original workbook to new sheet id. + // They will differ if loadSheetsOnly() is being used + $mapSheetId[$oldSheetId] = $oldSheetId - $countSkippedSheets; + + // Load sheet + $docSheet = $excel->createSheet(); + // Use false for $updateFormulaCellReferences to prevent adjustment of worksheet + // references in formula cells... during the load, all formulae should be correct, + // and we're simply bringing the worksheet name in line with the formula, not the + // reverse + $docSheet->setTitle((string) $eleSheetAttr['name'], false, false); + + $fileWorksheet = (string) $worksheets[$sheetReferenceId]; + $xmlSheet = $this->loadZipNoNamespace("$dir/$fileWorksheet", $mainNS); + $xmlSheetNS = $this->loadZip("$dir/$fileWorksheet", $mainNS); + + $sharedFormulas = []; + + if (isset($eleSheetAttr['state']) && (string) $eleSheetAttr['state'] != '') { + $docSheet->setSheetState((string) $eleSheetAttr['state']); + } + if ($xmlSheetNS) { + $xmlSheetMain = $xmlSheetNS->children($mainNS); + // Setting Conditional Styles adjusts selected cells, so we need to execute this + // before reading the sheet view data to get the actual selected cells + if (!$this->readDataOnly && ($xmlSheet->conditionalFormatting)) { + (new ConditionalStyles($docSheet, $xmlSheet, $dxfs))->load(); + } + if (!$this->readDataOnly && $xmlSheet->extLst) { + (new ConditionalStyles($docSheet, $xmlSheet, $dxfs))->loadFromExt($this->styleReader); + } + if (isset($xmlSheetMain->sheetViews, $xmlSheetMain->sheetViews->sheetView)) { + $sheetViews = new SheetViews($xmlSheetMain->sheetViews->sheetView, $docSheet); + $sheetViews->load(); + } + + $sheetViewOptions = new SheetViewOptions($docSheet, $xmlSheet); + $sheetViewOptions->load($this->getReadDataOnly(), $this->styleReader); + + (new ColumnAndRowAttributes($docSheet, $xmlSheet)) + ->load($this->getReadFilter(), $this->getReadDataOnly()); + } + + if ($xmlSheetNS && $xmlSheetNS->sheetData && $xmlSheetNS->sheetData->row) { + $cIndex = 1; // Cell Start from 1 + foreach ($xmlSheetNS->sheetData->row as $row) { + $rowIndex = 1; + foreach ($row->c as $c) { + $cAttr = self::getAttributes($c); + $r = (string) $cAttr['r']; + if ($r == '') { + $r = Coordinate::stringFromColumnIndex($rowIndex) . $cIndex; + } + $cellDataType = (string) $cAttr['t']; + $value = null; + $calculatedValue = null; + + // Read cell? + if ($this->getReadFilter() !== null) { + $coordinates = Coordinate::coordinateFromString($r); + + if (!$this->getReadFilter()->readCell($coordinates[0], (int) $coordinates[1], $docSheet->getTitle())) { + if (isset($cAttr->f)) { + $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToError'); + } + ++$rowIndex; + + continue; + } + } + + // Read cell! + switch ($cellDataType) { + case 's': + if ((string) $c->v != '') { + $value = $sharedStrings[(int) ($c->v)]; + + if ($value instanceof RichText) { + $value = clone $value; + } + } else { + $value = ''; + } + + break; + case 'b': + if (!isset($c->f)) { + if (isset($c->v)) { + $value = self::castToBoolean($c); + } else { + $value = null; + $cellDataType = DATATYPE::TYPE_NULL; + } + } else { + // Formula + $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToBoolean'); + if (isset($c->f['t'])) { + $att = $c->f; + $docSheet->getCell($r)->setFormulaAttributes($att); + } + } + + break; + case 'inlineStr': + if (isset($c->f)) { + $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToError'); + } else { + $value = $this->parseRichText($c->is); + } + + break; + case 'e': + if (!isset($c->f)) { + $value = self::castToError($c); + } else { + // Formula + $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToError'); + } + + break; + default: + if (!isset($c->f)) { + $value = self::castToString($c); + } else { + // Formula + $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToString'); + if (isset($c->f['t'])) { + $attributes = $c->f['t']; + $docSheet->getCell($r)->setFormulaAttributes(['t' => (string) $attributes]); + } + } + + break; + } + + // read empty cells or the cells are not empty + if ($this->readEmptyCells || ($value !== null && $value !== '')) { + // Rich text? + if ($value instanceof RichText && $this->readDataOnly) { + $value = $value->getPlainText(); + } + + $cell = $docSheet->getCell($r); + // Assign value + if ($cellDataType != '') { + // it is possible, that datatype is numeric but with an empty string, which result in an error + if ($cellDataType === DataType::TYPE_NUMERIC && ($value === '' || $value === null)) { + $cellDataType = DataType::TYPE_NULL; + } + if ($cellDataType !== DataType::TYPE_NULL) { + $cell->setValueExplicit($value, $cellDataType); + } + } else { + $cell->setValue($value); + } + if ($calculatedValue !== null) { + $cell->setCalculatedValue($calculatedValue); + } + + // Style information? + if ($cAttr['s'] && !$this->readDataOnly) { + // no style index means 0, it seems + $cell->setXfIndex(isset($styles[(int) ($cAttr['s'])]) ? + (int) ($cAttr['s']) : 0); + } + } + ++$rowIndex; + } + ++$cIndex; + } + } + + $aKeys = ['sheet', 'objects', 'scenarios', 'formatCells', 'formatColumns', 'formatRows', 'insertColumns', 'insertRows', 'insertHyperlinks', 'deleteColumns', 'deleteRows', 'selectLockedCells', 'sort', 'autoFilter', 'pivotTables', 'selectUnlockedCells']; + if (!$this->readDataOnly && $xmlSheet && $xmlSheet->sheetProtection) { + foreach ($aKeys as $key) { + $method = 'set' . ucfirst($key); + $docSheet->getProtection()->$method(self::boolean((string) $xmlSheet->sheetProtection[$key])); + } + } + + if ($xmlSheet) { + $this->readSheetProtection($docSheet, $xmlSheet); + } + + if ($this->readDataOnly === false) { + $this->readAutoFilterTables($xmlSheet, $docSheet, $dir, $fileWorksheet, $zip); + } + + if ($xmlSheet && $xmlSheet->mergeCells && $xmlSheet->mergeCells->mergeCell && !$this->readDataOnly) { + foreach ($xmlSheet->mergeCells->mergeCell as $mergeCell) { + $mergeRef = (string) $mergeCell['ref']; + if (strpos($mergeRef, ':') !== false) { + $docSheet->mergeCells((string) $mergeCell['ref']); + } + } + } + + if ($xmlSheet && !$this->readDataOnly) { + $unparsedLoadedData = (new PageSetup($docSheet, $xmlSheet))->load($unparsedLoadedData); + } + + if ($xmlSheet !== false && isset($xmlSheet->extLst, $xmlSheet->extLst->ext, $xmlSheet->extLst->ext['uri']) && ($xmlSheet->extLst->ext['uri'] == '{CCE6A557-97BC-4b89-ADB6-D9C93CAAB3DF}')) { + // Create dataValidations node if does not exists, maybe is better inside the foreach ? + if (!$xmlSheet->dataValidations) { + $xmlSheet->addChild('dataValidations'); + } + + foreach ($xmlSheet->extLst->ext->children('x14', true)->dataValidations->dataValidation as $item) { + $node = self::testSimpleXml($xmlSheet->dataValidations)->addChild('dataValidation'); + foreach ($item->attributes() ?? [] as $attr) { + $node->addAttribute($attr->getName(), $attr); + } + $node->addAttribute('sqref', $item->children('xm', true)->sqref); + $node->addChild('formula1', $item->formula1->children('xm', true)->f); + } + } + + if ($xmlSheet && $xmlSheet->dataValidations && !$this->readDataOnly) { + (new DataValidations($docSheet, $xmlSheet))->load(); + } + + // unparsed sheet AlternateContent + if ($xmlSheet && !$this->readDataOnly) { + $mc = $xmlSheet->children(Namespaces::COMPATIBILITY); + if ($mc->AlternateContent) { + foreach ($mc->AlternateContent as $alternateContent) { + $alternateContent = self::testSimpleXml($alternateContent); + $unparsedLoadedData['sheets'][$docSheet->getCodeName()]['AlternateContents'][] = $alternateContent->asXML(); + } + } + } + + // Add hyperlinks + if (!$this->readDataOnly) { + $hyperlinkReader = new Hyperlinks($docSheet); + // Locate hyperlink relations + $relationsFileName = dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels'; + if ($zip->locateName($relationsFileName)) { + $relsWorksheet = $this->loadZip($relationsFileName, Namespaces::RELATIONSHIPS); + $hyperlinkReader->readHyperlinks($relsWorksheet); + } + + // Loop through hyperlinks + if ($xmlSheetNS && $xmlSheetNS->children($mainNS)->hyperlinks) { + $hyperlinkReader->setHyperlinks($xmlSheetNS->children($mainNS)->hyperlinks); + } + } + + // Add comments + $comments = []; + $vmlComments = []; + if (!$this->readDataOnly) { + // Locate comment relations + $commentRelations = dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels'; + if ($zip->locateName($commentRelations)) { + $relsWorksheet = $this->loadZip($commentRelations, Namespaces::RELATIONSHIPS); + foreach ($relsWorksheet->Relationship as $elex) { + $ele = self::getAttributes($elex); + if ($ele['Type'] == Namespaces::COMMENTS) { + $comments[(string) $ele['Id']] = (string) $ele['Target']; + } + if ($ele['Type'] == Namespaces::VML) { + $vmlComments[(string) $ele['Id']] = (string) $ele['Target']; + } + } + } + + // Loop through comments + foreach ($comments as $relName => $relPath) { + // Load comments file + $relPath = File::realpath(dirname("$dir/$fileWorksheet") . '/' . $relPath); + // okay to ignore namespace - using xpath + $commentsFile = $this->loadZip($relPath, ''); + + // Utility variables + $authors = []; + $commentsFile->registerXpathNamespace('com', $mainNS); + $authorPath = self::xpathNoFalse($commentsFile, 'com:authors/com:author'); + foreach ($authorPath as $author) { + $authors[] = (string) $author; + } + + // Loop through contents + $contentPath = self::xpathNoFalse($commentsFile, 'com:commentList/com:comment'); + foreach ($contentPath as $comment) { + $commentx = $comment->attributes(); + $commentModel = $docSheet->getComment((string) $commentx['ref']); + if (isset($commentx['authorId'])) { + $commentModel->setAuthor($authors[(int) $commentx['authorId']]); + } + $commentModel->setText($this->parseRichText($comment->children($mainNS)->text)); + } + } + + // later we will remove from it real vmlComments + $unparsedVmlDrawings = $vmlComments; + + // Loop through VML comments + foreach ($vmlComments as $relName => $relPath) { + // Load VML comments file + $relPath = File::realpath(dirname("$dir/$fileWorksheet") . '/' . $relPath); + + try { + // no namespace okay - processed with Xpath + $vmlCommentsFile = $this->loadZip($relPath, ''); + $vmlCommentsFile->registerXPathNamespace('v', Namespaces::URN_VML); + } catch (Throwable $ex) { + //Ignore unparsable vmlDrawings. Later they will be moved from $unparsedVmlDrawings to $unparsedLoadedData + continue; + } + + // Locate VML drawings image relations + $drowingImages = []; + $VMLDrawingsRelations = dirname($relPath) . '/_rels/' . basename($relPath) . '.rels'; + if ($zip->locateName($VMLDrawingsRelations)) { + $relsVMLDrawing = $this->loadZip($VMLDrawingsRelations, Namespaces::RELATIONSHIPS); + foreach ($relsVMLDrawing->Relationship as $elex) { + $ele = self::getAttributes($elex); + if ($ele['Type'] == Namespaces::IMAGE) { + $drowingImages[(string) $ele['Id']] = (string) $ele['Target']; + } + } + } + + $shapes = self::xpathNoFalse($vmlCommentsFile, '//v:shape'); + foreach ($shapes as $shape) { + $shape->registerXPathNamespace('v', Namespaces::URN_VML); + + if (isset($shape['style'])) { + $style = (string) $shape['style']; + $fillColor = strtoupper(substr((string) $shape['fillcolor'], 1)); + $column = null; + $row = null; + $fillImageRelId = null; + $fillImageTitle = ''; + + $clientData = $shape->xpath('.//x:ClientData'); + if (is_array($clientData) && !empty($clientData)) { + $clientData = $clientData[0]; + + if (isset($clientData['ObjectType']) && (string) $clientData['ObjectType'] == 'Note') { + $temp = $clientData->xpath('.//x:Row'); + if (is_array($temp)) { + $row = $temp[0]; + } + + $temp = $clientData->xpath('.//x:Column'); + if (is_array($temp)) { + $column = $temp[0]; + } + } + } + + $fillImageRelNode = $shape->xpath('.//v:fill/@o:relid'); + if (is_array($fillImageRelNode) && !empty($fillImageRelNode)) { + $fillImageRelNode = $fillImageRelNode[0]; + + if (isset($fillImageRelNode['relid'])) { + $fillImageRelId = (string) $fillImageRelNode['relid']; + } + } + + $fillImageTitleNode = $shape->xpath('.//v:fill/@o:title'); + if (is_array($fillImageTitleNode) && !empty($fillImageTitleNode)) { + $fillImageTitleNode = $fillImageTitleNode[0]; + + if (isset($fillImageTitleNode['title'])) { + $fillImageTitle = (string) $fillImageTitleNode['title']; + } + } + + if (($column !== null) && ($row !== null)) { + // Set comment properties + $comment = $docSheet->getCommentByColumnAndRow($column + 1, $row + 1); + $comment->getFillColor()->setRGB($fillColor); + if (isset($drowingImages[$fillImageRelId])) { + $objDrawing = new \PhpOffice\PhpSpreadsheet\Worksheet\Drawing(); + $objDrawing->setName($fillImageTitle); + $imagePath = str_replace('../', 'xl/', $drowingImages[$fillImageRelId]); + $objDrawing->setPath( + 'zip://' . File::realpath($filename) . '#' . $imagePath, + true, + $zip + ); + $comment->setBackgroundImage($objDrawing); + } + + // Parse style + $styleArray = explode(';', str_replace(' ', '', $style)); + foreach ($styleArray as $stylePair) { + $stylePair = explode(':', $stylePair); + + if ($stylePair[0] == 'margin-left') { + $comment->setMarginLeft($stylePair[1]); + } + if ($stylePair[0] == 'margin-top') { + $comment->setMarginTop($stylePair[1]); + } + if ($stylePair[0] == 'width') { + $comment->setWidth($stylePair[1]); + } + if ($stylePair[0] == 'height') { + $comment->setHeight($stylePair[1]); + } + if ($stylePair[0] == 'visibility') { + $comment->setVisible($stylePair[1] == 'visible'); + } + } + + unset($unparsedVmlDrawings[$relName]); + } + } + } + } + + // unparsed vmlDrawing + if ($unparsedVmlDrawings) { + foreach ($unparsedVmlDrawings as $rId => $relPath) { + $rId = substr($rId, 3); // rIdXXX + $unparsedVmlDrawing = &$unparsedLoadedData['sheets'][$docSheet->getCodeName()]['vmlDrawings']; + $unparsedVmlDrawing[$rId] = []; + $unparsedVmlDrawing[$rId]['filePath'] = self::dirAdd("$dir/$fileWorksheet", $relPath); + $unparsedVmlDrawing[$rId]['relFilePath'] = $relPath; + $unparsedVmlDrawing[$rId]['content'] = $this->securityScanner->scan($this->getFromZipArchive($zip, $unparsedVmlDrawing[$rId]['filePath'])); + unset($unparsedVmlDrawing); + } + } + + // Header/footer images + if ($xmlSheet && $xmlSheet->legacyDrawingHF && !$this->readDataOnly) { + if ($zip->locateName(dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels')) { + $relsWorksheet = $this->loadZipNoNamespace(dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels', Namespaces::RELATIONSHIPS); + $vmlRelationship = ''; + + foreach ($relsWorksheet->Relationship as $ele) { + if ($ele['Type'] == Namespaces::VML) { + $vmlRelationship = self::dirAdd("$dir/$fileWorksheet", $ele['Target']); + } + } + + if ($vmlRelationship != '') { + // Fetch linked images + $relsVML = $this->loadZipNoNamespace(dirname($vmlRelationship) . '/_rels/' . basename($vmlRelationship) . '.rels', Namespaces::RELATIONSHIPS); + $drawings = []; + if (isset($relsVML->Relationship)) { + foreach ($relsVML->Relationship as $ele) { + if ($ele['Type'] == Namespaces::IMAGE) { + $drawings[(string) $ele['Id']] = self::dirAdd($vmlRelationship, $ele['Target']); + } + } + } + // Fetch VML document + $vmlDrawing = $this->loadZipNoNamespace($vmlRelationship, ''); + $vmlDrawing->registerXPathNamespace('v', Namespaces::URN_VML); + + $hfImages = []; + + $shapes = self::xpathNoFalse($vmlDrawing, '//v:shape'); + foreach ($shapes as $idx => $shape) { + $shape->registerXPathNamespace('v', Namespaces::URN_VML); + $imageData = $shape->xpath('//v:imagedata'); + + if (empty($imageData)) { + continue; + } + + $imageData = $imageData[$idx]; + + $imageData = self::getAttributes($imageData, Namespaces::URN_MSOFFICE); + $style = self::toCSSArray((string) $shape['style']); + + $hfImages[(string) $shape['id']] = new HeaderFooterDrawing(); + if (isset($imageData['title'])) { + $hfImages[(string) $shape['id']]->setName((string) $imageData['title']); + } + + $hfImages[(string) $shape['id']]->setPath('zip://' . File::realpath($filename) . '#' . $drawings[(string) $imageData['relid']], false); + $hfImages[(string) $shape['id']]->setResizeProportional(false); + $hfImages[(string) $shape['id']]->setWidth($style['width']); + $hfImages[(string) $shape['id']]->setHeight($style['height']); + if (isset($style['margin-left'])) { + $hfImages[(string) $shape['id']]->setOffsetX($style['margin-left']); + } + $hfImages[(string) $shape['id']]->setOffsetY($style['margin-top']); + $hfImages[(string) $shape['id']]->setResizeProportional(true); + } + + $docSheet->getHeaderFooter()->setImages($hfImages); + } + } + } + } + + // TODO: Autoshapes from twoCellAnchors! + $drawingFilename = dirname("$dir/$fileWorksheet") + . '/_rels/' + . basename($fileWorksheet) + . '.rels'; + if (substr($drawingFilename, 0, 7) === 'xl//xl/') { + $drawingFilename = substr($drawingFilename, 4); + } + if ($zip->locateName($drawingFilename)) { + $relsWorksheet = $this->loadZipNoNamespace($drawingFilename, Namespaces::RELATIONSHIPS); + $drawings = []; + foreach ($relsWorksheet->Relationship as $ele) { + if ((string) $ele['Type'] === "$xmlNamespaceBase/drawing") { + $eleTarget = (string) $ele['Target']; + if (substr($eleTarget, 0, 4) === '/xl/') { + $drawings[(string) $ele['Id']] = substr($eleTarget, 1); + } else { + $drawings[(string) $ele['Id']] = self::dirAdd("$dir/$fileWorksheet", $ele['Target']); + } + } + } + + if ($xmlSheet->drawing && !$this->readDataOnly) { + $unparsedDrawings = []; + $fileDrawing = null; + foreach ($xmlSheet->drawing as $drawing) { + $drawingRelId = (string) self::getArrayItem(self::getAttributes($drawing, $xmlNamespaceBase), 'id'); + $fileDrawing = $drawings[$drawingRelId]; + $drawingFilename = dirname($fileDrawing) . '/_rels/' . basename($fileDrawing) . '.rels'; + $relsDrawing = $this->loadZipNoNamespace($drawingFilename, $xmlNamespaceBase); + + $images = []; + $hyperlinks = []; + if ($relsDrawing && $relsDrawing->Relationship) { + foreach ($relsDrawing->Relationship as $ele) { + $eleType = (string) $ele['Type']; + if ($eleType === Namespaces::HYPERLINK) { + $hyperlinks[(string) $ele['Id']] = (string) $ele['Target']; + } + if ($eleType === "$xmlNamespaceBase/image") { + $images[(string) $ele['Id']] = self::dirAdd($fileDrawing, $ele['Target']); + } elseif ($eleType === "$xmlNamespaceBase/chart") { + if ($this->includeCharts) { + $eleTarget = (string) $ele['Target']; + if (substr($eleTarget, 0, 4) === '/xl/') { + $index = substr($eleTarget, 1); + } else { + $index = self::dirAdd($fileDrawing, $eleTarget); + } + $charts[$index] = [ + 'id' => (string) $ele['Id'], + 'sheet' => $docSheet->getTitle(), + ]; + } + } + } + } + + $xmlDrawing = $this->loadZipNoNamespace($fileDrawing, ''); + $xmlDrawingChildren = $xmlDrawing->children(Namespaces::SPREADSHEET_DRAWING); + + if ($xmlDrawingChildren->oneCellAnchor) { + foreach ($xmlDrawingChildren->oneCellAnchor as $oneCellAnchor) { + if ($oneCellAnchor->pic->blipFill) { + /** @var SimpleXMLElement $blip */ + $blip = $oneCellAnchor->pic->blipFill->children(Namespaces::DRAWINGML)->blip; + /** @var SimpleXMLElement $xfrm */ + $xfrm = $oneCellAnchor->pic->spPr->children(Namespaces::DRAWINGML)->xfrm; + /** @var SimpleXMLElement $outerShdw */ + $outerShdw = $oneCellAnchor->pic->spPr->children(Namespaces::DRAWINGML)->effectLst->outerShdw; + /** @var SimpleXMLElement $hlinkClick */ + $hlinkClick = $oneCellAnchor->pic->nvPicPr->cNvPr->children(Namespaces::DRAWINGML)->hlinkClick; + + $objDrawing = new \PhpOffice\PhpSpreadsheet\Worksheet\Drawing(); + $objDrawing->setName((string) self::getArrayItem(self::getAttributes($oneCellAnchor->pic->nvPicPr->cNvPr), 'name')); + $objDrawing->setDescription((string) self::getArrayItem(self::getAttributes($oneCellAnchor->pic->nvPicPr->cNvPr), 'descr')); + $embedImageKey = (string) self::getArrayItem( + self::getAttributes($blip, $xmlNamespaceBase), + 'embed' + ); + if (isset($images[$embedImageKey])) { + $objDrawing->setPath( + 'zip://' . File::realpath($filename) . '#' . + $images[$embedImageKey], + false + ); + } else { + $linkImageKey = (string) self::getArrayItem( + $blip->attributes('http://schemas.openxmlformats.org/officeDocument/2006/relationships'), + 'link' + ); + if (isset($images[$linkImageKey])) { + $url = str_replace('xl/drawings/', '', $images[$linkImageKey]); + $objDrawing->setPath($url); + } + } + $objDrawing->setCoordinates(Coordinate::stringFromColumnIndex(((int) $oneCellAnchor->from->col) + 1) . ($oneCellAnchor->from->row + 1)); + + $objDrawing->setOffsetX((int) Drawing::EMUToPixels($oneCellAnchor->from->colOff)); + $objDrawing->setOffsetY(Drawing::EMUToPixels($oneCellAnchor->from->rowOff)); + $objDrawing->setResizeProportional(false); + $objDrawing->setWidth(Drawing::EMUToPixels(self::getArrayItem(self::getAttributes($oneCellAnchor->ext), 'cx'))); + $objDrawing->setHeight(Drawing::EMUToPixels(self::getArrayItem(self::getAttributes($oneCellAnchor->ext), 'cy'))); + if ($xfrm) { + $objDrawing->setRotation((int) Drawing::angleToDegrees(self::getArrayItem(self::getAttributes($xfrm), 'rot'))); + } + if ($outerShdw) { + $shadow = $objDrawing->getShadow(); + $shadow->setVisible(true); + $shadow->setBlurRadius(Drawing::EMUToPixels(self::getArrayItem(self::getAttributes($outerShdw), 'blurRad'))); + $shadow->setDistance(Drawing::EMUToPixels(self::getArrayItem(self::getAttributes($outerShdw), 'dist'))); + $shadow->setDirection(Drawing::angleToDegrees(self::getArrayItem(self::getAttributes($outerShdw), 'dir'))); + $shadow->setAlignment((string) self::getArrayItem(self::getAttributes($outerShdw), 'algn')); + $clr = $outerShdw->srgbClr ?? $outerShdw->prstClr; + $shadow->getColor()->setRGB(self::getArrayItem(self::getAttributes($clr), 'val')); + $shadow->setAlpha(self::getArrayItem(self::getAttributes($clr->alpha), 'val') / 1000); + } + + $this->readHyperLinkDrawing($objDrawing, $oneCellAnchor, $hyperlinks); + + $objDrawing->setWorksheet($docSheet); + } elseif ($this->includeCharts && $oneCellAnchor->graphicFrame) { + // Exported XLSX from Google Sheets positions charts with a oneCellAnchor + $coordinates = Coordinate::stringFromColumnIndex(((int) $oneCellAnchor->from->col) + 1) . ($oneCellAnchor->from->row + 1); + $offsetX = Drawing::EMUToPixels($oneCellAnchor->from->colOff); + $offsetY = Drawing::EMUToPixels($oneCellAnchor->from->rowOff); + $width = Drawing::EMUToPixels(self::getArrayItem(self::getAttributes($oneCellAnchor->ext), 'cx')); + $height = Drawing::EMUToPixels(self::getArrayItem(self::getAttributes($oneCellAnchor->ext), 'cy')); + + $graphic = $oneCellAnchor->graphicFrame->children(Namespaces::DRAWINGML)->graphic; + /** @var SimpleXMLElement $chartRef */ + $chartRef = $graphic->graphicData->children(Namespaces::CHART)->chart; + $thisChart = (string) self::getAttributes($chartRef, $xmlNamespaceBase); + + $chartDetails[$docSheet->getTitle() . '!' . $thisChart] = [ + 'fromCoordinate' => $coordinates, + 'fromOffsetX' => $offsetX, + 'fromOffsetY' => $offsetY, + 'width' => $width, + 'height' => $height, + 'worksheetTitle' => $docSheet->getTitle(), + 'oneCellAnchor' => true, + ]; + } + } + } + if ($xmlDrawingChildren->twoCellAnchor) { + foreach ($xmlDrawingChildren->twoCellAnchor as $twoCellAnchor) { + if ($twoCellAnchor->pic->blipFill) { + $blip = $twoCellAnchor->pic->blipFill->children(Namespaces::DRAWINGML)->blip; + $xfrm = $twoCellAnchor->pic->spPr->children(Namespaces::DRAWINGML)->xfrm; + $outerShdw = $twoCellAnchor->pic->spPr->children(Namespaces::DRAWINGML)->effectLst->outerShdw; + $hlinkClick = $twoCellAnchor->pic->nvPicPr->cNvPr->children(Namespaces::DRAWINGML)->hlinkClick; + $objDrawing = new \PhpOffice\PhpSpreadsheet\Worksheet\Drawing(); + /** @scrutinizer ignore-call */ + $editAs = $twoCellAnchor->attributes(); + if (isset($editAs, $editAs['editAs'])) { + $objDrawing->setEditAs($editAs['editAs']); + } + $objDrawing->setName((string) self::getArrayItem(self::getAttributes($twoCellAnchor->pic->nvPicPr->cNvPr), 'name')); + $objDrawing->setDescription((string) self::getArrayItem(self::getAttributes($twoCellAnchor->pic->nvPicPr->cNvPr), 'descr')); + $embedImageKey = (string) self::getArrayItem( + self::getAttributes($blip, $xmlNamespaceBase), + 'embed' + ); + if (isset($images[$embedImageKey])) { + $objDrawing->setPath( + 'zip://' . File::realpath($filename) . '#' . + $images[$embedImageKey], + false + ); + } else { + $linkImageKey = (string) self::getArrayItem( + $blip->attributes('http://schemas.openxmlformats.org/officeDocument/2006/relationships'), + 'link' + ); + if (isset($images[$linkImageKey])) { + $url = str_replace('xl/drawings/', '', $images[$linkImageKey]); + $objDrawing->setPath($url); + } + } + $objDrawing->setCoordinates(Coordinate::stringFromColumnIndex(((int) $twoCellAnchor->from->col) + 1) . ($twoCellAnchor->from->row + 1)); + + $objDrawing->setOffsetX(Drawing::EMUToPixels($twoCellAnchor->from->colOff)); + $objDrawing->setOffsetY(Drawing::EMUToPixels($twoCellAnchor->from->rowOff)); + + $objDrawing->setCoordinates2(Coordinate::stringFromColumnIndex(((int) $twoCellAnchor->to->col) + 1) . ($twoCellAnchor->to->row + 1)); + + $objDrawing->setOffsetX2(Drawing::EMUToPixels($twoCellAnchor->to->colOff)); + $objDrawing->setOffsetY2(Drawing::EMUToPixels($twoCellAnchor->to->rowOff)); + + $objDrawing->setResizeProportional(false); + + if ($xfrm) { + $objDrawing->setWidth(Drawing::EMUToPixels(self::getArrayItem(self::getAttributes($xfrm->ext), 'cx'))); + $objDrawing->setHeight(Drawing::EMUToPixels(self::getArrayItem(self::getAttributes($xfrm->ext), 'cy'))); + $objDrawing->setRotation(Drawing::angleToDegrees(self::getArrayItem(self::getAttributes($xfrm), 'rot'))); + } + if ($outerShdw) { + $shadow = $objDrawing->getShadow(); + $shadow->setVisible(true); + $shadow->setBlurRadius(Drawing::EMUToPixels(self::getArrayItem(self::getAttributes($outerShdw), 'blurRad'))); + $shadow->setDistance(Drawing::EMUToPixels(self::getArrayItem(self::getAttributes($outerShdw), 'dist'))); + $shadow->setDirection(Drawing::angleToDegrees(self::getArrayItem(self::getAttributes($outerShdw), 'dir'))); + $shadow->setAlignment((string) self::getArrayItem(self::getAttributes($outerShdw), 'algn')); + $clr = $outerShdw->srgbClr ?? $outerShdw->prstClr; + $shadow->getColor()->setRGB(self::getArrayItem(self::getAttributes($clr), 'val')); + $shadow->setAlpha(self::getArrayItem(self::getAttributes($clr->alpha), 'val') / 1000); + } + + $this->readHyperLinkDrawing($objDrawing, $twoCellAnchor, $hyperlinks); + + $objDrawing->setWorksheet($docSheet); + } elseif (($this->includeCharts) && ($twoCellAnchor->graphicFrame)) { + $fromCoordinate = Coordinate::stringFromColumnIndex(((int) $twoCellAnchor->from->col) + 1) . ($twoCellAnchor->from->row + 1); + $fromOffsetX = Drawing::EMUToPixels($twoCellAnchor->from->colOff); + $fromOffsetY = Drawing::EMUToPixels($twoCellAnchor->from->rowOff); + $toCoordinate = Coordinate::stringFromColumnIndex(((int) $twoCellAnchor->to->col) + 1) . ($twoCellAnchor->to->row + 1); + $toOffsetX = Drawing::EMUToPixels($twoCellAnchor->to->colOff); + $toOffsetY = Drawing::EMUToPixels($twoCellAnchor->to->rowOff); + $graphic = $twoCellAnchor->graphicFrame->children(Namespaces::DRAWINGML)->graphic; + /** @var SimpleXMLElement $chartRef */ + $chartRef = $graphic->graphicData->children(Namespaces::CHART)->chart; + $thisChart = (string) self::getAttributes($chartRef, $xmlNamespaceBase); + + $chartDetails[$docSheet->getTitle() . '!' . $thisChart] = [ + 'fromCoordinate' => $fromCoordinate, + 'fromOffsetX' => $fromOffsetX, + 'fromOffsetY' => $fromOffsetY, + 'toCoordinate' => $toCoordinate, + 'toOffsetX' => $toOffsetX, + 'toOffsetY' => $toOffsetY, + 'worksheetTitle' => $docSheet->getTitle(), + ]; + } + } + } + if ($xmlDrawingChildren->absoluteAnchor) { + foreach ($xmlDrawingChildren->absoluteAnchor as $absoluteAnchor) { + if (($this->includeCharts) && ($absoluteAnchor->graphicFrame)) { + $graphic = $absoluteAnchor->graphicFrame->children(Namespaces::DRAWINGML)->graphic; + /** @var SimpleXMLElement $chartRef */ + $chartRef = $graphic->graphicData->children(Namespaces::CHART)->chart; + $thisChart = (string) self::getAttributes($chartRef, $xmlNamespaceBase); + $width = Drawing::EMUToPixels((int) self::getArrayItem(self::getAttributes($absoluteAnchor->ext), 'cx')[0]); + $height = Drawing::EMUToPixels((int) self::getArrayItem(self::getAttributes($absoluteAnchor->ext), 'cy')[0]); + + $chartDetails[$docSheet->getTitle() . '!' . $thisChart] = [ + 'fromCoordinate' => 'A1', + 'fromOffsetX' => 0, + 'fromOffsetY' => 0, + 'width' => $width, + 'height' => $height, + 'worksheetTitle' => $docSheet->getTitle(), + ]; + } + } + } + if (empty($relsDrawing) && $xmlDrawing->count() == 0) { + // Save Drawing without rels and children as unparsed + $unparsedDrawings[$drawingRelId] = $xmlDrawing->asXML(); + } + } + + // store original rId of drawing files + $unparsedLoadedData['sheets'][$docSheet->getCodeName()]['drawingOriginalIds'] = []; + foreach ($relsWorksheet->Relationship as $ele) { + if ((string) $ele['Type'] === "$xmlNamespaceBase/drawing") { + $drawingRelId = (string) $ele['Id']; + $unparsedLoadedData['sheets'][$docSheet->getCodeName()]['drawingOriginalIds'][(string) $ele['Target']] = $drawingRelId; + if (isset($unparsedDrawings[$drawingRelId])) { + $unparsedLoadedData['sheets'][$docSheet->getCodeName()]['Drawings'][$drawingRelId] = $unparsedDrawings[$drawingRelId]; + } + } + } + + // unparsed drawing AlternateContent + $xmlAltDrawing = $this->loadZip((string) $fileDrawing, Namespaces::COMPATIBILITY); + + if ($xmlAltDrawing->AlternateContent) { + foreach ($xmlAltDrawing->AlternateContent as $alternateContent) { + $alternateContent = self::testSimpleXml($alternateContent); + $unparsedLoadedData['sheets'][$docSheet->getCodeName()]['drawingAlternateContents'][] = $alternateContent->asXML(); + } + } + } + } + + $this->readFormControlProperties($excel, $dir, $fileWorksheet, $docSheet, $unparsedLoadedData); + $this->readPrinterSettings($excel, $dir, $fileWorksheet, $docSheet, $unparsedLoadedData); + + // Loop through definedNames + if ($xmlWorkbook->definedNames) { + foreach ($xmlWorkbook->definedNames->definedName as $definedName) { + // Extract range + $extractedRange = (string) $definedName; + if (($spos = strpos($extractedRange, '!')) !== false) { + $extractedRange = substr($extractedRange, 0, $spos) . str_replace('$', '', substr($extractedRange, $spos)); + } else { + $extractedRange = str_replace('$', '', $extractedRange); + } + + // Valid range? + if ($extractedRange == '') { + continue; + } + + // Some definedNames are only applicable if we are on the same sheet... + if ((string) $definedName['localSheetId'] != '' && (string) $definedName['localSheetId'] == $oldSheetId) { + // Switch on type + switch ((string) $definedName['name']) { + case '_xlnm._FilterDatabase': + if ((string) $definedName['hidden'] !== '1') { + $extractedRange = explode(',', $extractedRange); + foreach ($extractedRange as $range) { + $autoFilterRange = $range; + if (strpos($autoFilterRange, ':') !== false) { + $docSheet->getAutoFilter()->setRange($autoFilterRange); + } + } + } + + break; + case '_xlnm.Print_Titles': + // Split $extractedRange + $extractedRange = explode(',', $extractedRange); + + // Set print titles + foreach ($extractedRange as $range) { + $matches = []; + $range = str_replace('$', '', $range); + + // check for repeating columns, e g. 'A:A' or 'A:D' + if (preg_match('/!?([A-Z]+)\:([A-Z]+)$/', $range, $matches)) { + $docSheet->getPageSetup()->setColumnsToRepeatAtLeft([$matches[1], $matches[2]]); + } elseif (preg_match('/!?(\d+)\:(\d+)$/', $range, $matches)) { + // check for repeating rows, e.g. '1:1' or '1:5' + $docSheet->getPageSetup()->setRowsToRepeatAtTop([$matches[1], $matches[2]]); + } + } + + break; + case '_xlnm.Print_Area': + $rangeSets = preg_split("/('?(?:.*?)'?(?:![A-Z0-9]+:[A-Z0-9]+)),?/", $extractedRange, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE); + $newRangeSets = []; + foreach ($rangeSets as $rangeSet) { + [, $rangeSet] = Worksheet::extractSheetTitle($rangeSet, true); + if (empty($rangeSet)) { + continue; + } + if (strpos($rangeSet, ':') === false) { + $rangeSet = $rangeSet . ':' . $rangeSet; + } + $newRangeSets[] = str_replace('$', '', $rangeSet); + } + if (count($newRangeSets) > 0) { + $docSheet->getPageSetup()->setPrintArea(implode(',', $newRangeSets)); + } + + break; + default: + break; + } + } + } + } + + // Next sheet id + ++$sheetId; + } + + // Loop through definedNames + if ($xmlWorkbook->definedNames) { + foreach ($xmlWorkbook->definedNames->definedName as $definedName) { + // Extract range + $extractedRange = (string) $definedName; + + // Valid range? + if ($extractedRange == '') { + continue; + } + + // Some definedNames are only applicable if we are on the same sheet... + if ((string) $definedName['localSheetId'] != '') { + // Local defined name + // Switch on type + switch ((string) $definedName['name']) { + case '_xlnm._FilterDatabase': + case '_xlnm.Print_Titles': + case '_xlnm.Print_Area': + break; + default: + if ($mapSheetId[(int) $definedName['localSheetId']] !== null) { + $range = Worksheet::extractSheetTitle((string) $definedName, true); + $scope = $excel->getSheet($mapSheetId[(int) $definedName['localSheetId']]); + if (strpos((string) $definedName, '!') !== false) { + $range[0] = str_replace("''", "'", $range[0]); + $range[0] = str_replace("'", '', $range[0]); + if ($worksheet = $excel->getSheetByName($range[0])) { + $excel->addDefinedName(DefinedName::createInstance((string) $definedName['name'], $worksheet, $extractedRange, true, $scope)); + } else { + $excel->addDefinedName(DefinedName::createInstance((string) $definedName['name'], $scope, $extractedRange, true, $scope)); + } + } else { + $excel->addDefinedName(DefinedName::createInstance((string) $definedName['name'], $scope, $extractedRange, true)); + } + } + + break; + } + } elseif (!isset($definedName['localSheetId'])) { + $definedRange = (string) $definedName; + // "Global" definedNames + $locatedSheet = null; + if (strpos((string) $definedName, '!') !== false) { + // Modify range, and extract the first worksheet reference + // Need to split on a comma or a space if not in quotes, and extract the first part. + $definedNameValueParts = preg_split("/[ ,](?=([^']*'[^']*')*[^']*$)/miuU", $definedRange); + // Extract sheet name + [$extractedSheetName] = Worksheet::extractSheetTitle((string) $definedNameValueParts[0], true); + $extractedSheetName = trim($extractedSheetName, "'"); + + // Locate sheet + $locatedSheet = $excel->getSheetByName($extractedSheetName); + } + + if ($locatedSheet === null && !DefinedName::testIfFormula($definedRange)) { + $definedRange = '#REF!'; + } + $excel->addDefinedName(DefinedName::createInstance((string) $definedName['name'], $locatedSheet, $definedRange, false)); + } + } + } + } + + (new WorkbookView($excel))->viewSettings($xmlWorkbook, $mainNS, $mapSheetId, $this->readDataOnly); + + break; + } + } + + if (!$this->readDataOnly) { + $contentTypes = $this->loadZip('[Content_Types].xml'); + + // Default content types + foreach ($contentTypes->Default as $contentType) { + switch ($contentType['ContentType']) { + case 'application/vnd.openxmlformats-officedocument.spreadsheetml.printerSettings': + $unparsedLoadedData['default_content_types'][(string) $contentType['Extension']] = (string) $contentType['ContentType']; + + break; + } + } + + // Override content types + foreach ($contentTypes->Override as $contentType) { + switch ($contentType['ContentType']) { + case 'application/vnd.openxmlformats-officedocument.drawingml.chart+xml': + if ($this->includeCharts) { + $chartEntryRef = ltrim((string) $contentType['PartName'], '/'); + $chartElements = $this->loadZip($chartEntryRef); + $chartReader = new Chart($chartNS, $drawingNS); + $objChart = $chartReader->readChart($chartElements, basename($chartEntryRef, '.xml')); + if (isset($charts[$chartEntryRef])) { + $chartPositionRef = $charts[$chartEntryRef]['sheet'] . '!' . $charts[$chartEntryRef]['id']; + if (isset($chartDetails[$chartPositionRef])) { + $excel->getSheetByName($charts[$chartEntryRef]['sheet'])->addChart($objChart); + $objChart->setWorksheet($excel->getSheetByName($charts[$chartEntryRef]['sheet'])); + // For oneCellAnchor or absoluteAnchor positioned charts, + // toCoordinate is not in the data. Does it need to be calculated? + if (array_key_exists('toCoordinate', $chartDetails[$chartPositionRef])) { + // twoCellAnchor + $objChart->setTopLeftPosition($chartDetails[$chartPositionRef]['fromCoordinate'], $chartDetails[$chartPositionRef]['fromOffsetX'], $chartDetails[$chartPositionRef]['fromOffsetY']); + $objChart->setBottomRightPosition($chartDetails[$chartPositionRef]['toCoordinate'], $chartDetails[$chartPositionRef]['toOffsetX'], $chartDetails[$chartPositionRef]['toOffsetY']); + } else { + // oneCellAnchor or absoluteAnchor (e.g. Chart sheet) + $objChart->setTopLeftPosition($chartDetails[$chartPositionRef]['fromCoordinate'], $chartDetails[$chartPositionRef]['fromOffsetX'], $chartDetails[$chartPositionRef]['fromOffsetY']); + $objChart->setBottomRightPosition('', $chartDetails[$chartPositionRef]['width'], $chartDetails[$chartPositionRef]['height']); + if (array_key_exists('oneCellAnchor', $chartDetails[$chartPositionRef])) { + $objChart->setOneCellAnchor($chartDetails[$chartPositionRef]['oneCellAnchor']); + } + } + } + } + } + + break; + + // unparsed + case 'application/vnd.ms-excel.controlproperties+xml': + $unparsedLoadedData['override_content_types'][(string) $contentType['PartName']] = (string) $contentType['ContentType']; + + break; + } + } + } + + $excel->setUnparsedLoadedData($unparsedLoadedData); + + $zip->close(); + + return $excel; + } + + /** + * @return RichText + */ + private function parseRichText(?SimpleXMLElement $is) + { + $value = new RichText(); + + if (isset($is->t)) { + $value->createText(StringHelper::controlCharacterOOXML2PHP((string) $is->t)); + } else { + if (is_object($is->r)) { + + /** @var SimpleXMLElement $run */ + foreach ($is->r as $run) { + if (!isset($run->rPr)) { + $value->createText(StringHelper::controlCharacterOOXML2PHP((string) $run->t)); + } else { + $objText = $value->createTextRun(StringHelper::controlCharacterOOXML2PHP((string) $run->t)); + + if (isset($run->rPr->rFont)) { + $attr = $run->rPr->rFont->attributes(); + if (isset($attr['val'])) { + $objText->getFont()->setName((string) $attr['val']); + } + } + if (isset($run->rPr->sz)) { + $attr = $run->rPr->sz->attributes(); + if (isset($attr['val'])) { + $objText->getFont()->setSize((float) $attr['val']); + } + } + if (isset($run->rPr->color)) { + $objText->getFont()->setColor(new Color($this->styleReader->readColor($run->rPr->color))); + } + if (isset($run->rPr->b)) { + $attr = $run->rPr->b->attributes(); + if ( + (isset($attr['val']) && self::boolean((string) $attr['val'])) || + (!isset($attr['val'])) + ) { + $objText->getFont()->setBold(true); + } + } + if (isset($run->rPr->i)) { + $attr = $run->rPr->i->attributes(); + if ( + (isset($attr['val']) && self::boolean((string) $attr['val'])) || + (!isset($attr['val'])) + ) { + $objText->getFont()->setItalic(true); + } + } + if (isset($run->rPr->vertAlign)) { + $attr = $run->rPr->vertAlign->attributes(); + if (isset($attr['val'])) { + $vertAlign = strtolower((string) $attr['val']); + if ($vertAlign == 'superscript') { + $objText->getFont()->setSuperscript(true); + } + if ($vertAlign == 'subscript') { + $objText->getFont()->setSubscript(true); + } + } + } + if (isset($run->rPr->u)) { + $attr = $run->rPr->u->attributes(); + if (!isset($attr['val'])) { + $objText->getFont()->setUnderline(\PhpOffice\PhpSpreadsheet\Style\Font::UNDERLINE_SINGLE); + } else { + $objText->getFont()->setUnderline((string) $attr['val']); + } + } + if (isset($run->rPr->strike)) { + $attr = $run->rPr->strike->attributes(); + if ( + (isset($attr['val']) && self::boolean((string) $attr['val'])) || + (!isset($attr['val'])) + ) { + $objText->getFont()->setStrikethrough(true); + } + } + } + } + } + } + + return $value; + } + + private function readRibbon(Spreadsheet $excel, string $customUITarget, ZipArchive $zip): void + { + $baseDir = dirname($customUITarget); + $nameCustomUI = basename($customUITarget); + // get the xml file (ribbon) + $localRibbon = $this->getFromZipArchive($zip, $customUITarget); + $customUIImagesNames = []; + $customUIImagesBinaries = []; + // something like customUI/_rels/customUI.xml.rels + $pathRels = $baseDir . '/_rels/' . $nameCustomUI . '.rels'; + $dataRels = $this->getFromZipArchive($zip, $pathRels); + if ($dataRels) { + // exists and not empty if the ribbon have some pictures (other than internal MSO) + $UIRels = simplexml_load_string( + $this->securityScanner->scan($dataRels), + 'SimpleXMLElement', + Settings::getLibXmlLoaderOptions() + ); + if (false !== $UIRels) { + // we need to save id and target to avoid parsing customUI.xml and "guess" if it's a pseudo callback who load the image + foreach ($UIRels->Relationship as $ele) { + if ((string) $ele['Type'] === Namespaces::SCHEMA_OFFICE_DOCUMENT . '/image') { + // an image ? + $customUIImagesNames[(string) $ele['Id']] = (string) $ele['Target']; + $customUIImagesBinaries[(string) $ele['Target']] = $this->getFromZipArchive($zip, $baseDir . '/' . (string) $ele['Target']); + } + } + } + } + if ($localRibbon) { + $excel->setRibbonXMLData($customUITarget, $localRibbon); + if (count($customUIImagesNames) > 0 && count($customUIImagesBinaries) > 0) { + $excel->setRibbonBinObjects($customUIImagesNames, $customUIImagesBinaries); + } else { + $excel->setRibbonBinObjects(null, null); + } + } else { + $excel->setRibbonXMLData(null, null); + $excel->setRibbonBinObjects(null, null); + } + } + + private static function getArrayItem($array, $key = 0) + { + return $array[$key] ?? null; + } + + private static function dirAdd($base, $add): string + { + return (string) preg_replace('~[^/]+/\.\./~', '', dirname($base) . "/$add"); + } + + private static function toCSSArray($style): array + { + $style = self::stripWhiteSpaceFromStyleString($style); + + $temp = explode(';', $style); + $style = []; + foreach ($temp as $item) { + $item = explode(':', $item); + + if (strpos($item[1], 'px') !== false) { + $item[1] = str_replace('px', '', $item[1]); + } + if (strpos($item[1], 'pt') !== false) { + $item[1] = str_replace('pt', '', $item[1]); + $item[1] = Font::fontSizeToPixels($item[1]); + } + if (strpos($item[1], 'in') !== false) { + $item[1] = str_replace('in', '', $item[1]); + $item[1] = Font::inchSizeToPixels($item[1]); + } + if (strpos($item[1], 'cm') !== false) { + $item[1] = str_replace('cm', '', $item[1]); + $item[1] = Font::centimeterSizeToPixels($item[1]); + } + + $style[$item[0]] = $item[1]; + } + + return $style; + } + + public static function stripWhiteSpaceFromStyleString($string): string + { + return trim(str_replace(["\r", "\n", ' '], '', $string), ';'); + } + + private static function boolean($value): bool + { + if (is_object($value)) { + $value = (string) $value; + } + if (is_numeric($value)) { + return (bool) $value; + } + + return $value === 'true' || $value === 'TRUE'; + } + + /** + * @param array $hyperlinks + */ + private function readHyperLinkDrawing(\PhpOffice\PhpSpreadsheet\Worksheet\Drawing $objDrawing, SimpleXMLElement $cellAnchor, $hyperlinks): void + { + $hlinkClick = $cellAnchor->pic->nvPicPr->cNvPr->children(Namespaces::DRAWINGML)->hlinkClick; + + if ($hlinkClick->count() === 0) { + return; + } + + $hlinkId = (string) self::getAttributes($hlinkClick, Namespaces::SCHEMA_OFFICE_DOCUMENT)['id']; + $hyperlink = new Hyperlink( + $hyperlinks[$hlinkId], + (string) self::getArrayItem(self::getAttributes($cellAnchor->pic->nvPicPr->cNvPr), 'name') + ); + $objDrawing->setHyperlink($hyperlink); + } + + private function readProtection(Spreadsheet $excel, SimpleXMLElement $xmlWorkbook): void + { + if (!$xmlWorkbook->workbookProtection) { + return; + } + + $excel->getSecurity()->setLockRevision(self::getLockValue($xmlWorkbook->workbookProtection, 'lockRevision')); + $excel->getSecurity()->setLockStructure(self::getLockValue($xmlWorkbook->workbookProtection, 'lockStructure')); + $excel->getSecurity()->setLockWindows(self::getLockValue($xmlWorkbook->workbookProtection, 'lockWindows')); + + if ($xmlWorkbook->workbookProtection['revisionsPassword']) { + $excel->getSecurity()->setRevisionsPassword( + (string) $xmlWorkbook->workbookProtection['revisionsPassword'], + true + ); + } + + if ($xmlWorkbook->workbookProtection['workbookPassword']) { + $excel->getSecurity()->setWorkbookPassword( + (string) $xmlWorkbook->workbookProtection['workbookPassword'], + true + ); + } + } + + private static function getLockValue(SimpleXmlElement $protection, string $key): ?bool + { + $returnValue = null; + $protectKey = $protection[$key]; + if (!empty($protectKey)) { + $protectKey = (string) $protectKey; + $returnValue = $protectKey !== 'false' && (bool) $protectKey; + } + + return $returnValue; + } + + private function readFormControlProperties(Spreadsheet $excel, $dir, $fileWorksheet, $docSheet, array &$unparsedLoadedData): void + { + $zip = $this->zip; + if (!$zip->locateName(dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels')) { + return; + } + + $filename = dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels'; + $relsWorksheet = $this->loadZipNoNamespace($filename, Namespaces::RELATIONSHIPS); + $ctrlProps = []; + foreach ($relsWorksheet->Relationship as $ele) { + if ((string) $ele['Type'] === Namespaces::SCHEMA_OFFICE_DOCUMENT . '/ctrlProp') { + $ctrlProps[(string) $ele['Id']] = $ele; + } + } + + $unparsedCtrlProps = &$unparsedLoadedData['sheets'][$docSheet->getCodeName()]['ctrlProps']; + foreach ($ctrlProps as $rId => $ctrlProp) { + $rId = substr($rId, 3); // rIdXXX + $unparsedCtrlProps[$rId] = []; + $unparsedCtrlProps[$rId]['filePath'] = self::dirAdd("$dir/$fileWorksheet", $ctrlProp['Target']); + $unparsedCtrlProps[$rId]['relFilePath'] = (string) $ctrlProp['Target']; + $unparsedCtrlProps[$rId]['content'] = $this->securityScanner->scan($this->getFromZipArchive($zip, $unparsedCtrlProps[$rId]['filePath'])); + } + unset($unparsedCtrlProps); + } + + private function readPrinterSettings(Spreadsheet $excel, $dir, $fileWorksheet, $docSheet, array &$unparsedLoadedData): void + { + $zip = $this->zip; + if (!$zip->locateName(dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels')) { + return; + } + + $filename = dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels'; + $relsWorksheet = $this->loadZipNoNamespace($filename, Namespaces::RELATIONSHIPS); + $sheetPrinterSettings = []; + foreach ($relsWorksheet->Relationship as $ele) { + if ((string) $ele['Type'] === Namespaces::SCHEMA_OFFICE_DOCUMENT . '/printerSettings') { + $sheetPrinterSettings[(string) $ele['Id']] = $ele; + } + } + + $unparsedPrinterSettings = &$unparsedLoadedData['sheets'][$docSheet->getCodeName()]['printerSettings']; + foreach ($sheetPrinterSettings as $rId => $printerSettings) { + $rId = substr($rId, 3) . 'ps'; // rIdXXX, add 'ps' suffix to avoid identical resource identifier collision with unparsed vmlDrawing + $unparsedPrinterSettings[$rId] = []; + $unparsedPrinterSettings[$rId]['filePath'] = self::dirAdd("$dir/$fileWorksheet", $printerSettings['Target']); + $unparsedPrinterSettings[$rId]['relFilePath'] = (string) $printerSettings['Target']; + $unparsedPrinterSettings[$rId]['content'] = $this->securityScanner->scan($this->getFromZipArchive($zip, $unparsedPrinterSettings[$rId]['filePath'])); + } + unset($unparsedPrinterSettings); + } + + private function getWorkbookBaseName(): array + { + $workbookBasename = ''; + $xmlNamespaceBase = ''; + + // check if it is an OOXML archive + $rels = $this->loadZip(self::INITIAL_FILE); + foreach ($rels->children(Namespaces::RELATIONSHIPS)->Relationship as $rel) { + $rel = self::getAttributes($rel); + $type = (string) $rel['Type']; + switch ($type) { + case Namespaces::OFFICE_DOCUMENT: + case Namespaces::PURL_OFFICE_DOCUMENT: + $basename = basename((string) $rel['Target']); + $xmlNamespaceBase = dirname($type); + if (preg_match('/workbook.*\.xml/', $basename)) { + $workbookBasename = $basename; + } + + break; + } + } + + return [$workbookBasename, $xmlNamespaceBase]; + } + + private function readSheetProtection(Worksheet $docSheet, SimpleXMLElement $xmlSheet): void + { + if ($this->readDataOnly || !$xmlSheet->sheetProtection) { + return; + } + + $algorithmName = (string) $xmlSheet->sheetProtection['algorithmName']; + $protection = $docSheet->getProtection(); + $protection->setAlgorithm($algorithmName); + + if ($algorithmName) { + $protection->setPassword((string) $xmlSheet->sheetProtection['hashValue'], true); + $protection->setSalt((string) $xmlSheet->sheetProtection['saltValue']); + $protection->setSpinCount((int) $xmlSheet->sheetProtection['spinCount']); + } else { + $protection->setPassword((string) $xmlSheet->sheetProtection['password'], true); + } + + if ($xmlSheet->protectedRanges->protectedRange) { + foreach ($xmlSheet->protectedRanges->protectedRange as $protectedRange) { + $docSheet->protectCells((string) $protectedRange['sqref'], (string) $protectedRange['password'], true); + } + } + } + + private function readAutoFilterTables( + SimpleXMLElement $xmlSheet, + Worksheet $docSheet, + string $dir, + string $fileWorksheet, + ZipArchive $zip + ): void { + if ($xmlSheet && $xmlSheet->autoFilter) { + // In older files, autofilter structure is defined in the worksheet file + (new AutoFilter($docSheet, $xmlSheet))->load(); + } elseif ($xmlSheet && $xmlSheet->tableParts && $xmlSheet->tableParts['count'] > 0) { + // But for Office365, MS decided to make it all just a bit more complicated + $this->readAutoFilterTablesInTablesFile($xmlSheet, $dir, $fileWorksheet, $zip, $docSheet); + } + } + + private function readAutoFilterTablesInTablesFile( + SimpleXMLElement $xmlSheet, + string $dir, + string $fileWorksheet, + ZipArchive $zip, + Worksheet $docSheet + ): void { + foreach ($xmlSheet->tableParts->tablePart as $tablePart) { + $relation = self::getAttributes($tablePart, Namespaces::SCHEMA_OFFICE_DOCUMENT); + $tablePartRel = (string) $relation['id']; + $relationsFileName = dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels'; + + if ($zip->locateName($relationsFileName)) { + $relsTableReferences = $this->loadZip($relationsFileName, Namespaces::RELATIONSHIPS); + foreach ($relsTableReferences->Relationship as $relationship) { + $relationshipAttributes = self::getAttributes($relationship, ''); + + if ((string) $relationshipAttributes['Id'] === $tablePartRel) { + $relationshipFileName = (string) $relationshipAttributes['Target']; + $relationshipFilePath = dirname("$dir/$fileWorksheet") . '/' . $relationshipFileName; + $relationshipFilePath = File::realpath($relationshipFilePath); + + if ($this->fileExistsInArchive($this->zip, $relationshipFilePath)) { + $autoFilter = $this->loadZip($relationshipFilePath); + (new AutoFilter($docSheet, $autoFilter))->load(); + } + } + } + } + } + } + + private static function extractStyles(?SimpleXMLElement $sxml, string $node1, string $node2): array + { + $array = []; + if ($sxml && $sxml->{$node1}->{$node2}) { + foreach ($sxml->{$node1}->{$node2} as $node) { + $array[] = $node; + } + } + + return $array; + } + + private static function extractPalette(?SimpleXMLElement $sxml): array + { + $array = []; + if ($sxml && $sxml->colors->indexedColors) { + foreach ($sxml->colors->indexedColors->rgbColor as $node) { + if ($node !== null) { + $attr = $node->attributes(); + if (isset($attr['rgb'])) { + $array[] = (string) $attr['rgb']; + } + } + } + } + + return (count($array) === 64) ? $array : []; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/AutoFilter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/AutoFilter.php new file mode 100644 index 0000000..374da9f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/AutoFilter.php @@ -0,0 +1,149 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; + +use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter\Column; +use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter\Column\Rule; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; +use SimpleXMLElement; + +class AutoFilter +{ + private $worksheet; + + private $worksheetXml; + + public function __construct(Worksheet $workSheet, SimpleXMLElement $worksheetXml) + { + $this->worksheet = $workSheet; + $this->worksheetXml = $worksheetXml; + } + + public function load(): void + { + // Remove all "$" in the auto filter range + $autoFilterRange = (string) preg_replace('/\$/', '', $this->worksheetXml->autoFilter['ref'] ?? ''); + if (strpos($autoFilterRange, ':') !== false) { + $this->readAutoFilter($autoFilterRange, $this->worksheetXml); + } + } + + private function readAutoFilter($autoFilterRange, $xmlSheet): void + { + $autoFilter = $this->worksheet->getAutoFilter(); + $autoFilter->setRange($autoFilterRange); + + foreach ($xmlSheet->autoFilter->filterColumn as $filterColumn) { + $column = $autoFilter->getColumnByOffset((int) $filterColumn['colId']); + // Check for standard filters + if ($filterColumn->filters) { + $column->setFilterType(Column::AUTOFILTER_FILTERTYPE_FILTER); + $filters = $filterColumn->filters; + if ((isset($filters['blank'])) && ($filters['blank'] == 1)) { + // Operator is undefined, but always treated as EQUAL + $column->createRule()->setRule(null, '')->setRuleType(Rule::AUTOFILTER_RULETYPE_FILTER); + } + // Standard filters are always an OR join, so no join rule needs to be set + // Entries can be either filter elements + foreach ($filters->filter as $filterRule) { + // Operator is undefined, but always treated as EQUAL + $column->createRule()->setRule(null, (string) $filterRule['val'])->setRuleType(Rule::AUTOFILTER_RULETYPE_FILTER); + } + + // Or Date Group elements + $this->readDateRangeAutoFilter($filters, $column); + } + + // Check for custom filters + $this->readCustomAutoFilter($filterColumn, $column); + // Check for dynamic filters + $this->readDynamicAutoFilter($filterColumn, $column); + // Check for dynamic filters + $this->readTopTenAutoFilter($filterColumn, $column); + } + $autoFilter->setEvaluated(true); + } + + private function readDateRangeAutoFilter(SimpleXMLElement $filters, Column $column): void + { + foreach ($filters->dateGroupItem as $dateGroupItem) { + // Operator is undefined, but always treated as EQUAL + $column->createRule()->setRule( + null, + [ + 'year' => (string) $dateGroupItem['year'], + 'month' => (string) $dateGroupItem['month'], + 'day' => (string) $dateGroupItem['day'], + 'hour' => (string) $dateGroupItem['hour'], + 'minute' => (string) $dateGroupItem['minute'], + 'second' => (string) $dateGroupItem['second'], + ], + (string) $dateGroupItem['dateTimeGrouping'] + )->setRuleType(Rule::AUTOFILTER_RULETYPE_DATEGROUP); + } + } + + private function readCustomAutoFilter(SimpleXMLElement $filterColumn, Column $column): void + { + if ($filterColumn->customFilters) { + $column->setFilterType(Column::AUTOFILTER_FILTERTYPE_CUSTOMFILTER); + $customFilters = $filterColumn->customFilters; + // Custom filters can an AND or an OR join; + // and there should only ever be one or two entries + if ((isset($customFilters['and'])) && ((string) $customFilters['and'] === '1')) { + $column->setJoin(Column::AUTOFILTER_COLUMN_JOIN_AND); + } + foreach ($customFilters->customFilter as $filterRule) { + $column->createRule()->setRule( + (string) $filterRule['operator'], + (string) $filterRule['val'] + )->setRuleType(Rule::AUTOFILTER_RULETYPE_CUSTOMFILTER); + } + } + } + + private function readDynamicAutoFilter(SimpleXMLElement $filterColumn, Column $column): void + { + if ($filterColumn->dynamicFilter) { + $column->setFilterType(Column::AUTOFILTER_FILTERTYPE_DYNAMICFILTER); + // We should only ever have one dynamic filter + foreach ($filterColumn->dynamicFilter as $filterRule) { + // Operator is undefined, but always treated as EQUAL + $column->createRule()->setRule( + null, + (string) $filterRule['val'], + (string) $filterRule['type'] + )->setRuleType(Rule::AUTOFILTER_RULETYPE_DYNAMICFILTER); + if (isset($filterRule['val'])) { + $column->setAttribute('val', (string) $filterRule['val']); + } + if (isset($filterRule['maxVal'])) { + $column->setAttribute('maxVal', (string) $filterRule['maxVal']); + } + } + } + } + + private function readTopTenAutoFilter(SimpleXMLElement $filterColumn, Column $column): void + { + if ($filterColumn->top10) { + $column->setFilterType(Column::AUTOFILTER_FILTERTYPE_TOPTENFILTER); + // We should only ever have one top10 filter + foreach ($filterColumn->top10 as $filterRule) { + $column->createRule()->setRule( + ( + ((isset($filterRule['percent'])) && ((string) $filterRule['percent'] === '1')) + ? Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_PERCENT + : Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_BY_VALUE + ), + (string) $filterRule['val'], + ( + ((isset($filterRule['top'])) && ((string) $filterRule['top'] === '1')) + ? Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_TOP + : Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_BOTTOM + ) + )->setRuleType(Rule::AUTOFILTER_RULETYPE_TOPTENFILTER); + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/BaseParserClass.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/BaseParserClass.php new file mode 100644 index 0000000..1679f01 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/BaseParserClass.php @@ -0,0 +1,19 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; + +class BaseParserClass +{ + protected static function boolean($value) + { + if (is_object($value)) { + $value = (string) $value; + } + + if (is_numeric($value)) { + return (bool) $value; + } + + return $value === strtolower('true'); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Chart.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Chart.php new file mode 100644 index 0000000..d49a523 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Chart.php @@ -0,0 +1,1293 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; + +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Chart\Axis; +use PhpOffice\PhpSpreadsheet\Chart\ChartColor; +use PhpOffice\PhpSpreadsheet\Chart\DataSeries; +use PhpOffice\PhpSpreadsheet\Chart\DataSeriesValues; +use PhpOffice\PhpSpreadsheet\Chart\GridLines; +use PhpOffice\PhpSpreadsheet\Chart\Layout; +use PhpOffice\PhpSpreadsheet\Chart\Legend; +use PhpOffice\PhpSpreadsheet\Chart\PlotArea; +use PhpOffice\PhpSpreadsheet\Chart\Properties; +use PhpOffice\PhpSpreadsheet\Chart\Title; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\Style\Font; +use SimpleXMLElement; + +class Chart +{ + /** @var string */ + private $cNamespace; + + /** @var string */ + private $aNamespace; + + public function __construct(string $cNamespace = Namespaces::CHART, string $aNamespace = Namespaces::DRAWINGML) + { + $this->cNamespace = $cNamespace; + $this->aNamespace = $aNamespace; + } + + /** + * @param string $name + * @param string $format + * + * @return null|bool|float|int|string + */ + private static function getAttribute(SimpleXMLElement $component, $name, $format) + { + $attributes = $component->attributes(); + if (@isset($attributes[$name])) { + if ($format == 'string') { + return (string) $attributes[$name]; + } elseif ($format == 'integer') { + return (int) $attributes[$name]; + } elseif ($format == 'boolean') { + $value = (string) $attributes[$name]; + + return $value === 'true' || $value === '1'; + } + + return (float) $attributes[$name]; + } + + return null; + } + + /** + * @param string $chartName + * + * @return \PhpOffice\PhpSpreadsheet\Chart\Chart + */ + public function readChart(SimpleXMLElement $chartElements, $chartName) + { + $chartElementsC = $chartElements->children($this->cNamespace); + + $XaxisLabel = $YaxisLabel = $legend = $title = null; + $dispBlanksAs = $plotVisOnly = null; + $plotArea = null; + $rotX = $rotY = $rAngAx = $perspective = null; + $xAxis = new Axis(); + $yAxis = new Axis(); + $autoTitleDeleted = null; + foreach ($chartElementsC as $chartElementKey => $chartElement) { + switch ($chartElementKey) { + case 'chart': + foreach ($chartElement as $chartDetailsKey => $chartDetails) { + $chartDetailsC = $chartDetails->children($this->cNamespace); + switch ($chartDetailsKey) { + case 'autoTitleDeleted': + /** @var bool */ + $autoTitleDeleted = self::getAttribute($chartElementsC->chart->autoTitleDeleted, 'val', 'boolean'); + + break; + case 'view3D': + $rotX = self::getAttribute($chartDetails->rotX, 'val', 'integer'); + $rotY = self::getAttribute($chartDetails->rotY, 'val', 'integer'); + $rAngAx = self::getAttribute($chartDetails->rAngAx, 'val', 'integer'); + $perspective = self::getAttribute($chartDetails->perspective, 'val', 'integer'); + + break; + case 'plotArea': + $plotAreaLayout = $XaxisLabel = $YaxisLabel = null; + $plotSeries = $plotAttributes = []; + $catAxRead = false; + foreach ($chartDetails as $chartDetailKey => $chartDetail) { + switch ($chartDetailKey) { + case 'layout': + $plotAreaLayout = $this->chartLayoutDetails($chartDetail); + + break; + case 'catAx': + $catAxRead = true; + if (isset($chartDetail->title)) { + $XaxisLabel = $this->chartTitle($chartDetail->title->children($this->cNamespace)); + } + $xAxis->setAxisType('catAx'); + $this->readEffects($chartDetail, $xAxis); + if (isset($chartDetail->spPr)) { + $sppr = $chartDetail->spPr->children($this->aNamespace); + if (isset($sppr->solidFill)) { + $axisColorArray = $this->readColor($sppr->solidFill); + $xAxis->setFillParameters($axisColorArray['value'], $axisColorArray['alpha'], $axisColorArray['type']); + } + } + if (isset($chartDetail->majorGridlines)) { + $majorGridlines = new GridLines(); + if (isset($chartDetail->majorGridlines->spPr)) { + $this->readEffects($chartDetail->majorGridlines, $majorGridlines); + $this->readLineStyle($chartDetail->majorGridlines, $majorGridlines); + } + $xAxis->setMajorGridlines($majorGridlines); + } + if (isset($chartDetail->minorGridlines)) { + $minorGridlines = new GridLines(); + $minorGridlines->activateObject(); + if (isset($chartDetail->minorGridlines->spPr)) { + $this->readEffects($chartDetail->minorGridlines, $minorGridlines); + $this->readLineStyle($chartDetail->minorGridlines, $minorGridlines); + } + $xAxis->setMinorGridlines($minorGridlines); + } + $this->setAxisProperties($chartDetail, $xAxis); + + break; + case 'dateAx': + if (isset($chartDetail->title)) { + $XaxisLabel = $this->chartTitle($chartDetail->title->children($this->cNamespace)); + } + + break; + case 'valAx': + $whichAxis = null; + $axPos = null; + if (isset($chartDetail->axPos)) { + $axPos = self::getAttribute($chartDetail->axPos, 'val', 'string'); + } + if ($catAxRead) { + $whichAxis = $yAxis; + $yAxis->setAxisType($chartDetailKey); + } elseif (!empty($axPos)) { + switch ($axPos) { + case 't': + case 'b': + $whichAxis = $xAxis; + $xAxis->setAxisType($chartDetailKey); + + break; + case 'r': + case 'l': + $whichAxis = $yAxis; + $yAxis->setAxisType($chartDetailKey); + + break; + } + } + if (isset($chartDetail->title)) { + $axisLabel = $this->chartTitle($chartDetail->title->children($this->cNamespace)); + + switch ($axPos) { + case 't': + case 'b': + $XaxisLabel = $axisLabel; + + break; + case 'r': + case 'l': + $YaxisLabel = $axisLabel; + + break; + } + } + $this->readEffects($chartDetail, $whichAxis); + if ($whichAxis !== null && isset($chartDetail->spPr)) { + $sppr = $chartDetail->spPr->children($this->aNamespace); + if (isset($sppr->solidFill)) { + $axisColorArray = $this->readColor($sppr->solidFill); + $whichAxis->setFillParameters($axisColorArray['value'], $axisColorArray['alpha'], $axisColorArray['type']); + } + } + if ($whichAxis !== null && isset($chartDetail->majorGridlines)) { + $majorGridlines = new GridLines(); + if (isset($chartDetail->majorGridlines->spPr)) { + $this->readEffects($chartDetail->majorGridlines, $majorGridlines); + $this->readLineStyle($chartDetail->majorGridlines, $majorGridlines); + } + $whichAxis->setMajorGridlines($majorGridlines); + } + if ($whichAxis !== null && isset($chartDetail->minorGridlines)) { + $minorGridlines = new GridLines(); + $minorGridlines->activateObject(); + if (isset($chartDetail->minorGridlines->spPr)) { + $this->readEffects($chartDetail->minorGridlines, $minorGridlines); + $this->readLineStyle($chartDetail->minorGridlines, $minorGridlines); + } + $whichAxis->setMinorGridlines($minorGridlines); + } + $this->setAxisProperties($chartDetail, $whichAxis); + + break; + case 'barChart': + case 'bar3DChart': + $barDirection = self::getAttribute($chartDetail->barDir, 'val', 'string'); + $plotSer = $this->chartDataSeries($chartDetail, $chartDetailKey); + $plotSer->setPlotDirection("$barDirection"); + $plotSeries[] = $plotSer; + $plotAttributes = $this->readChartAttributes($chartDetail); + + break; + case 'lineChart': + case 'line3DChart': + $plotSeries[] = $this->chartDataSeries($chartDetail, $chartDetailKey); + $plotAttributes = $this->readChartAttributes($chartDetail); + + break; + case 'areaChart': + case 'area3DChart': + $plotSeries[] = $this->chartDataSeries($chartDetail, $chartDetailKey); + $plotAttributes = $this->readChartAttributes($chartDetail); + + break; + case 'doughnutChart': + case 'pieChart': + case 'pie3DChart': + $explosion = self::getAttribute($chartDetail->ser->explosion, 'val', 'string'); + $plotSer = $this->chartDataSeries($chartDetail, $chartDetailKey); + $plotSer->setPlotStyle("$explosion"); + $plotSeries[] = $plotSer; + $plotAttributes = $this->readChartAttributes($chartDetail); + + break; + case 'scatterChart': + /** @var string */ + $scatterStyle = self::getAttribute($chartDetail->scatterStyle, 'val', 'string'); + $plotSer = $this->chartDataSeries($chartDetail, $chartDetailKey); + $plotSer->setPlotStyle($scatterStyle); + $plotSeries[] = $plotSer; + $plotAttributes = $this->readChartAttributes($chartDetail); + + break; + case 'bubbleChart': + $bubbleScale = self::getAttribute($chartDetail->bubbleScale, 'val', 'integer'); + $plotSer = $this->chartDataSeries($chartDetail, $chartDetailKey); + $plotSer->setPlotStyle("$bubbleScale"); + $plotSeries[] = $plotSer; + $plotAttributes = $this->readChartAttributes($chartDetail); + + break; + case 'radarChart': + /** @var string */ + $radarStyle = self::getAttribute($chartDetail->radarStyle, 'val', 'string'); + $plotSer = $this->chartDataSeries($chartDetail, $chartDetailKey); + $plotSer->setPlotStyle($radarStyle); + $plotSeries[] = $plotSer; + $plotAttributes = $this->readChartAttributes($chartDetail); + + break; + case 'surfaceChart': + case 'surface3DChart': + $wireFrame = self::getAttribute($chartDetail->wireframe, 'val', 'boolean'); + $plotSer = $this->chartDataSeries($chartDetail, $chartDetailKey); + $plotSer->setPlotStyle("$wireFrame"); + $plotSeries[] = $plotSer; + $plotAttributes = $this->readChartAttributes($chartDetail); + + break; + case 'stockChart': + $plotSeries[] = $this->chartDataSeries($chartDetail, $chartDetailKey); + $plotAttributes = $this->readChartAttributes($plotAreaLayout); + + break; + } + } + if ($plotAreaLayout == null) { + $plotAreaLayout = new Layout(); + } + $plotArea = new PlotArea($plotAreaLayout, $plotSeries); + $this->setChartAttributes($plotAreaLayout, $plotAttributes); + + break; + case 'plotVisOnly': + $plotVisOnly = self::getAttribute($chartDetails, 'val', 'string'); + + break; + case 'dispBlanksAs': + $dispBlanksAs = self::getAttribute($chartDetails, 'val', 'string'); + + break; + case 'title': + $title = $this->chartTitle($chartDetails); + + break; + case 'legend': + $legendPos = 'r'; + $legendLayout = null; + $legendOverlay = false; + foreach ($chartDetails as $chartDetailKey => $chartDetail) { + switch ($chartDetailKey) { + case 'legendPos': + $legendPos = self::getAttribute($chartDetail, 'val', 'string'); + + break; + case 'overlay': + $legendOverlay = self::getAttribute($chartDetail, 'val', 'boolean'); + + break; + case 'layout': + $legendLayout = $this->chartLayoutDetails($chartDetail); + + break; + } + } + $legend = new Legend("$legendPos", $legendLayout, (bool) $legendOverlay); + + break; + } + } + } + } + $chart = new \PhpOffice\PhpSpreadsheet\Chart\Chart($chartName, $title, $legend, $plotArea, $plotVisOnly, (string) $dispBlanksAs, $XaxisLabel, $YaxisLabel, $xAxis, $yAxis); + if (is_bool($autoTitleDeleted)) { + $chart->setAutoTitleDeleted($autoTitleDeleted); + } + if (is_int($rotX)) { + $chart->setRotX($rotX); + } + if (is_int($rotY)) { + $chart->setRotY($rotY); + } + if (is_int($rAngAx)) { + $chart->setRAngAx($rAngAx); + } + if (is_int($perspective)) { + $chart->setPerspective($perspective); + } + + return $chart; + } + + private function chartTitle(SimpleXMLElement $titleDetails): Title + { + $caption = []; + $titleLayout = null; + foreach ($titleDetails as $titleDetailKey => $chartDetail) { + switch ($titleDetailKey) { + case 'tx': + $titleDetails = $chartDetail->rich->children($this->aNamespace); + foreach ($titleDetails as $titleKey => $titleDetail) { + switch ($titleKey) { + case 'p': + $titleDetailPart = $titleDetail->children($this->aNamespace); + $caption[] = $this->parseRichText($titleDetailPart); + } + } + + break; + case 'layout': + $titleLayout = $this->chartLayoutDetails($chartDetail); + + break; + } + } + + return new Title($caption, $titleLayout); + } + + private function chartLayoutDetails(SimpleXMLElement $chartDetail): ?Layout + { + if (!isset($chartDetail->manualLayout)) { + return null; + } + $details = $chartDetail->manualLayout->children($this->cNamespace); + if ($details === null) { + return null; + } + $layout = []; + foreach ($details as $detailKey => $detail) { + $layout[$detailKey] = self::getAttribute($detail, 'val', 'string'); + } + + return new Layout($layout); + } + + private function chartDataSeries(SimpleXMLElement $chartDetail, string $plotType): DataSeries + { + $multiSeriesType = null; + $smoothLine = false; + $seriesLabel = $seriesCategory = $seriesValues = $plotOrder = $seriesBubbles = []; + + $seriesDetailSet = $chartDetail->children($this->cNamespace); + foreach ($seriesDetailSet as $seriesDetailKey => $seriesDetails) { + switch ($seriesDetailKey) { + case 'grouping': + $multiSeriesType = self::getAttribute($chartDetail->grouping, 'val', 'string'); + + break; + case 'ser': + $marker = null; + $seriesIndex = ''; + $fillColor = null; + $pointSize = null; + $noFill = false; + $bubble3D = false; + $dPtColors = []; + $markerFillColor = null; + $markerBorderColor = null; + $lineStyle = null; + $labelLayout = null; + foreach ($seriesDetails as $seriesKey => $seriesDetail) { + switch ($seriesKey) { + case 'idx': + $seriesIndex = self::getAttribute($seriesDetail, 'val', 'integer'); + + break; + case 'order': + $seriesOrder = self::getAttribute($seriesDetail, 'val', 'integer'); + $plotOrder[$seriesIndex] = $seriesOrder; + + break; + case 'tx': + $seriesLabel[$seriesIndex] = $this->chartDataSeriesValueSet($seriesDetail); + + break; + case 'spPr': + $children = $seriesDetail->children($this->aNamespace); + $ln = $children->ln; + if (isset($children->ln)) { + $ln = $children->ln; + if (is_countable($ln->noFill) && count($ln->noFill) === 1) { + $noFill = true; + } + $lineStyle = new GridLines(); + $this->readLineStyle($seriesDetails, $lineStyle); + } + if (isset($children->effectLst)) { + if ($lineStyle === null) { + $lineStyle = new GridLines(); + } + $this->readEffects($seriesDetails, $lineStyle); + } + if (isset($children->solidFill)) { + $fillColor = new ChartColor($this->readColor($children->solidFill)); + } + + break; + case 'dPt': + $dptIdx = (int) self::getAttribute($seriesDetail->idx, 'val', 'string'); + if (isset($seriesDetail->spPr)) { + $children = $seriesDetail->spPr->children($this->aNamespace); + if (isset($children->solidFill)) { + $arrayColors = $this->readColor($children->solidFill); + $dptColors[$dptIdx] = new ChartColor($arrayColors); + } + } + + break; + case 'marker': + $marker = self::getAttribute($seriesDetail->symbol, 'val', 'string'); + $pointSize = self::getAttribute($seriesDetail->size, 'val', 'string'); + $pointSize = is_numeric($pointSize) ? ((int) $pointSize) : null; + if (isset($seriesDetail->spPr)) { + $children = $seriesDetail->spPr->children($this->aNamespace); + if (isset($children->solidFill)) { + $markerFillColor = $this->readColor($children->solidFill); + } + if (isset($children->ln->solidFill)) { + $markerBorderColor = $this->readColor($children->ln->solidFill); + } + } + + break; + case 'smooth': + $smoothLine = self::getAttribute($seriesDetail, 'val', 'boolean'); + + break; + case 'cat': + $seriesCategory[$seriesIndex] = $this->chartDataSeriesValueSet($seriesDetail); + + break; + case 'val': + $seriesValues[$seriesIndex] = $this->chartDataSeriesValueSet($seriesDetail, "$marker", $fillColor, "$pointSize"); + + break; + case 'xVal': + $seriesCategory[$seriesIndex] = $this->chartDataSeriesValueSet($seriesDetail, "$marker", $fillColor, "$pointSize"); + + break; + case 'yVal': + $seriesValues[$seriesIndex] = $this->chartDataSeriesValueSet($seriesDetail, "$marker", $fillColor, "$pointSize"); + + break; + case 'bubbleSize': + $seriesBubbles[$seriesIndex] = $this->chartDataSeriesValueSet($seriesDetail, "$marker", $fillColor, "$pointSize"); + + break; + case 'bubble3D': + $bubble3D = self::getAttribute($seriesDetail, 'val', 'boolean'); + + break; + case 'dLbls': + $labelLayout = new Layout($this->readChartAttributes($seriesDetails)); + + break; + } + } + if ($labelLayout) { + if (isset($seriesLabel[$seriesIndex])) { + $seriesLabel[$seriesIndex]->setLabelLayout($labelLayout); + } + if (isset($seriesCategory[$seriesIndex])) { + $seriesCategory[$seriesIndex]->setLabelLayout($labelLayout); + } + if (isset($seriesValues[$seriesIndex])) { + $seriesValues[$seriesIndex]->setLabelLayout($labelLayout); + } + } + if ($noFill) { + if (isset($seriesLabel[$seriesIndex])) { + $seriesLabel[$seriesIndex]->setScatterLines(false); + } + if (isset($seriesCategory[$seriesIndex])) { + $seriesCategory[$seriesIndex]->setScatterLines(false); + } + if (isset($seriesValues[$seriesIndex])) { + $seriesValues[$seriesIndex]->setScatterLines(false); + } + } + if ($lineStyle !== null) { + if (isset($seriesLabel[$seriesIndex])) { + $seriesLabel[$seriesIndex]->copyLineStyles($lineStyle); + } + if (isset($seriesCategory[$seriesIndex])) { + $seriesCategory[$seriesIndex]->copyLineStyles($lineStyle); + } + if (isset($seriesValues[$seriesIndex])) { + $seriesValues[$seriesIndex]->copyLineStyles($lineStyle); + } + } + if ($bubble3D) { + if (isset($seriesLabel[$seriesIndex])) { + $seriesLabel[$seriesIndex]->setBubble3D($bubble3D); + } + if (isset($seriesCategory[$seriesIndex])) { + $seriesCategory[$seriesIndex]->setBubble3D($bubble3D); + } + if (isset($seriesValues[$seriesIndex])) { + $seriesValues[$seriesIndex]->setBubble3D($bubble3D); + } + } + if (!empty($dptColors)) { + if (isset($seriesLabel[$seriesIndex])) { + $seriesLabel[$seriesIndex]->setFillColor($dptColors); + } + if (isset($seriesCategory[$seriesIndex])) { + $seriesCategory[$seriesIndex]->setFillColor($dptColors); + } + if (isset($seriesValues[$seriesIndex])) { + $seriesValues[$seriesIndex]->setFillColor($dptColors); + } + } + if ($markerFillColor !== null) { + if (isset($seriesLabel[$seriesIndex])) { + $seriesLabel[$seriesIndex]->getMarkerFillColor()->setColorPropertiesArray($markerFillColor); + } + if (isset($seriesCategory[$seriesIndex])) { + $seriesCategory[$seriesIndex]->getMarkerFillColor()->setColorPropertiesArray($markerFillColor); + } + if (isset($seriesValues[$seriesIndex])) { + $seriesValues[$seriesIndex]->getMarkerFillColor()->setColorPropertiesArray($markerFillColor); + } + } + if ($markerBorderColor !== null) { + if (isset($seriesLabel[$seriesIndex])) { + $seriesLabel[$seriesIndex]->getMarkerBorderColor()->setColorPropertiesArray($markerBorderColor); + } + if (isset($seriesCategory[$seriesIndex])) { + $seriesCategory[$seriesIndex]->getMarkerBorderColor()->setColorPropertiesArray($markerBorderColor); + } + if (isset($seriesValues[$seriesIndex])) { + $seriesValues[$seriesIndex]->getMarkerBorderColor()->setColorPropertiesArray($markerBorderColor); + } + } + if ($smoothLine) { + if (isset($seriesLabel[$seriesIndex])) { + $seriesLabel[$seriesIndex]->setSmoothLine(true); + } + if (isset($seriesCategory[$seriesIndex])) { + $seriesCategory[$seriesIndex]->setSmoothLine(true); + } + if (isset($seriesValues[$seriesIndex])) { + $seriesValues[$seriesIndex]->setSmoothLine(true); + } + } + } + } + /** @phpstan-ignore-next-line */ + $series = new DataSeries($plotType, $multiSeriesType, $plotOrder, $seriesLabel, $seriesCategory, $seriesValues, $smoothLine); + $series->setPlotBubbleSizes($seriesBubbles); + + return $series; + } + + /** + * @return mixed + */ + private function chartDataSeriesValueSet(SimpleXMLElement $seriesDetail, ?string $marker = null, ?ChartColor $fillColor = null, ?string $pointSize = null) + { + if (isset($seriesDetail->strRef)) { + $seriesSource = (string) $seriesDetail->strRef->f; + $seriesValues = new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_STRING, $seriesSource, null, 0, null, $marker, $fillColor, "$pointSize"); + + if (isset($seriesDetail->strRef->strCache)) { + $seriesData = $this->chartDataSeriesValues($seriesDetail->strRef->strCache->children($this->cNamespace), 's'); + $seriesValues + ->setFormatCode($seriesData['formatCode']) + ->setDataValues($seriesData['dataValues']); + } + + return $seriesValues; + } elseif (isset($seriesDetail->numRef)) { + $seriesSource = (string) $seriesDetail->numRef->f; + $seriesValues = new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_NUMBER, $seriesSource, null, 0, null, $marker, $fillColor, "$pointSize"); + if (isset($seriesDetail->numRef->numCache)) { + $seriesData = $this->chartDataSeriesValues($seriesDetail->numRef->numCache->children($this->cNamespace)); + $seriesValues + ->setFormatCode($seriesData['formatCode']) + ->setDataValues($seriesData['dataValues']); + } + + return $seriesValues; + } elseif (isset($seriesDetail->multiLvlStrRef)) { + $seriesSource = (string) $seriesDetail->multiLvlStrRef->f; + $seriesValues = new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_STRING, $seriesSource, null, 0, null, $marker, $fillColor, "$pointSize"); + + if (isset($seriesDetail->multiLvlStrRef->multiLvlStrCache)) { + $seriesData = $this->chartDataSeriesValuesMultiLevel($seriesDetail->multiLvlStrRef->multiLvlStrCache->children($this->cNamespace), 's'); + $seriesValues + ->setFormatCode($seriesData['formatCode']) + ->setDataValues($seriesData['dataValues']); + } + + return $seriesValues; + } elseif (isset($seriesDetail->multiLvlNumRef)) { + $seriesSource = (string) $seriesDetail->multiLvlNumRef->f; + $seriesValues = new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_STRING, $seriesSource, null, 0, null, $marker, $fillColor, "$pointSize"); + + if (isset($seriesDetail->multiLvlNumRef->multiLvlNumCache)) { + $seriesData = $this->chartDataSeriesValuesMultiLevel($seriesDetail->multiLvlNumRef->multiLvlNumCache->children($this->cNamespace), 's'); + $seriesValues + ->setFormatCode($seriesData['formatCode']) + ->setDataValues($seriesData['dataValues']); + } + + return $seriesValues; + } + + if (isset($seriesDetail->v)) { + return new DataSeriesValues( + DataSeriesValues::DATASERIES_TYPE_STRING, + null, + null, + 1, + [(string) $seriesDetail->v] + ); + } + + return null; + } + + private function chartDataSeriesValues(SimpleXMLElement $seriesValueSet, string $dataType = 'n'): array + { + $seriesVal = []; + $formatCode = ''; + $pointCount = 0; + + foreach ($seriesValueSet as $seriesValueIdx => $seriesValue) { + switch ($seriesValueIdx) { + case 'ptCount': + $pointCount = self::getAttribute($seriesValue, 'val', 'integer'); + + break; + case 'formatCode': + $formatCode = (string) $seriesValue; + + break; + case 'pt': + $pointVal = self::getAttribute($seriesValue, 'idx', 'integer'); + if ($dataType == 's') { + $seriesVal[$pointVal] = (string) $seriesValue->v; + } elseif ((string) $seriesValue->v === ExcelError::NA()) { + $seriesVal[$pointVal] = null; + } else { + $seriesVal[$pointVal] = (float) $seriesValue->v; + } + + break; + } + } + + return [ + 'formatCode' => $formatCode, + 'pointCount' => $pointCount, + 'dataValues' => $seriesVal, + ]; + } + + private function chartDataSeriesValuesMultiLevel(SimpleXMLElement $seriesValueSet, string $dataType = 'n'): array + { + $seriesVal = []; + $formatCode = ''; + $pointCount = 0; + + foreach ($seriesValueSet->lvl as $seriesLevelIdx => $seriesLevel) { + foreach ($seriesLevel as $seriesValueIdx => $seriesValue) { + switch ($seriesValueIdx) { + case 'ptCount': + $pointCount = self::getAttribute($seriesValue, 'val', 'integer'); + + break; + case 'formatCode': + $formatCode = (string) $seriesValue; + + break; + case 'pt': + $pointVal = self::getAttribute($seriesValue, 'idx', 'integer'); + if ($dataType == 's') { + $seriesVal[$pointVal][] = (string) $seriesValue->v; + } elseif ((string) $seriesValue->v === ExcelError::NA()) { + $seriesVal[$pointVal] = null; + } else { + $seriesVal[$pointVal][] = (float) $seriesValue->v; + } + + break; + } + } + } + + return [ + 'formatCode' => $formatCode, + 'pointCount' => $pointCount, + 'dataValues' => $seriesVal, + ]; + } + + private function parseRichText(SimpleXMLElement $titleDetailPart): RichText + { + $value = new RichText(); + $objText = null; + $defaultFontSize = null; + $defaultBold = null; + $defaultItalic = null; + $defaultUnderscore = null; + $defaultStrikethrough = null; + $defaultBaseline = null; + $defaultFontName = null; + $defaultLatin = null; + $defaultEastAsian = null; + $defaultComplexScript = null; + $defaultFontColor = null; + if (isset($titleDetailPart->pPr->defRPr)) { + /** @var ?int */ + $defaultFontSize = self::getAttribute($titleDetailPart->pPr->defRPr, 'sz', 'integer'); + /** @var ?bool */ + $defaultBold = self::getAttribute($titleDetailPart->pPr->defRPr, 'b', 'boolean'); + /** @var ?bool */ + $defaultItalic = self::getAttribute($titleDetailPart->pPr->defRPr, 'i', 'boolean'); + /** @var ?string */ + $defaultUnderscore = self::getAttribute($titleDetailPart->pPr->defRPr, 'u', 'string'); + /** @var ?string */ + $defaultStrikethrough = self::getAttribute($titleDetailPart->pPr->defRPr, 'strike', 'string'); + /** @var ?int */ + $defaultBaseline = self::getAttribute($titleDetailPart->pPr->defRPr, 'baseline', 'integer'); + if (isset($titleDetailPart->defRPr->rFont['val'])) { + $defaultFontName = (string) $titleDetailPart->defRPr->rFont['val']; + } + if (isset($titleDetailPart->pPr->defRPr->latin)) { + /** @var ?string */ + $defaultLatin = self::getAttribute($titleDetailPart->pPr->defRPr->latin, 'typeface', 'string'); + } + if (isset($titleDetailPart->pPr->defRPr->ea)) { + /** @var ?string */ + $defaultEastAsian = self::getAttribute($titleDetailPart->pPr->defRPr->ea, 'typeface', 'string'); + } + if (isset($titleDetailPart->pPr->defRPr->cs)) { + /** @var ?string */ + $defaultComplexScript = self::getAttribute($titleDetailPart->pPr->defRPr->cs, 'typeface', 'string'); + } + if (isset($titleDetailPart->pPr->defRPr->solidFill)) { + $defaultFontColor = $this->readColor($titleDetailPart->pPr->defRPr->solidFill); + } + } + foreach ($titleDetailPart as $titleDetailElementKey => $titleDetailElement) { + if ( + (string) $titleDetailElementKey !== 'r' + || !isset($titleDetailElement->t) + ) { + continue; + } + $objText = $value->createTextRun((string) $titleDetailElement->t); + if ($objText->getFont() === null) { + // @codeCoverageIgnoreStart + continue; + // @codeCoverageIgnoreEnd + } + $fontSize = null; + $bold = null; + $italic = null; + $underscore = null; + $strikethrough = null; + $baseline = null; + $fontName = null; + $latinName = null; + $eastAsian = null; + $complexScript = null; + $fontColor = null; + $underlineColor = null; + if (isset($titleDetailElement->rPr)) { + // not used now, not sure it ever was, grandfathering + if (isset($titleDetailElement->rPr->rFont['val'])) { + // @codeCoverageIgnoreStart + $fontName = (string) $titleDetailElement->rPr->rFont['val']; + // @codeCoverageIgnoreEnd + } + if (isset($titleDetailElement->rPr->latin)) { + /** @var ?string */ + $latinName = self::getAttribute($titleDetailElement->rPr->latin, 'typeface', 'string'); + } + if (isset($titleDetailElement->rPr->ea)) { + /** @var ?string */ + $eastAsian = self::getAttribute($titleDetailElement->rPr->ea, 'typeface', 'string'); + } + if (isset($titleDetailElement->rPr->cs)) { + /** @var ?string */ + $complexScript = self::getAttribute($titleDetailElement->rPr->cs, 'typeface', 'string'); + } + /** @var ?int */ + $fontSize = self::getAttribute($titleDetailElement->rPr, 'sz', 'integer'); + + // not used now, not sure it ever was, grandfathering + if (isset($titleDetailElement->rPr->solidFill)) { + $fontColor = $this->readColor($titleDetailElement->rPr->solidFill); + } + + /** @var ?bool */ + $bold = self::getAttribute($titleDetailElement->rPr, 'b', 'boolean'); + + /** @var ?bool */ + $italic = self::getAttribute($titleDetailElement->rPr, 'i', 'boolean'); + + /** @var ?int */ + $baseline = self::getAttribute($titleDetailElement->rPr, 'baseline', 'integer'); + + /** @var ?string */ + $underscore = self::getAttribute($titleDetailElement->rPr, 'u', 'string'); + if (isset($titleDetailElement->rPr->uFill->solidFill)) { + $underlineColor = $this->readColor($titleDetailElement->rPr->uFill->solidFill); + } + + /** @var ?string */ + $strikethrough = self::getAttribute($titleDetailElement->rPr, 'strike', 'string'); + } + + $fontFound = false; + $latinName = $latinName ?? $defaultLatin; + if ($latinName !== null) { + $objText->getFont()->setLatin($latinName); + $fontFound = true; + } + $eastAsian = $eastAsian ?? $defaultEastAsian; + if ($eastAsian !== null) { + $objText->getFont()->setEastAsian($eastAsian); + $fontFound = true; + } + $complexScript = $complexScript ?? $defaultComplexScript; + if ($complexScript !== null) { + $objText->getFont()->setComplexScript($complexScript); + $fontFound = true; + } + $fontName = $fontName ?? $defaultFontName; + if ($fontName !== null) { + // @codeCoverageIgnoreStart + $objText->getFont()->setName($fontName); + $fontFound = true; + // @codeCoverageIgnoreEnd + } + + $fontSize = $fontSize ?? $defaultFontSize; + if (is_int($fontSize)) { + $objText->getFont()->setSize(floor($fontSize / 100)); + $fontFound = true; + } else { + $objText->getFont()->setSize(null, true); + } + + $fontColor = $fontColor ?? $defaultFontColor; + if (!empty($fontColor)) { + $objText->getFont()->setChartColor($fontColor); + $fontFound = true; + } + + $bold = $bold ?? $defaultBold; + if ($bold !== null) { + $objText->getFont()->setBold($bold); + $fontFound = true; + } + + $italic = $italic ?? $defaultItalic; + if ($italic !== null) { + $objText->getFont()->setItalic($italic); + $fontFound = true; + } + + $baseline = $baseline ?? $defaultBaseline; + if ($baseline !== null) { + $objText->getFont()->setBaseLine($baseline); + if ($baseline > 0) { + $objText->getFont()->setSuperscript(true); + } elseif ($baseline < 0) { + $objText->getFont()->setSubscript(true); + } + $fontFound = true; + } + + $underscore = $underscore ?? $defaultUnderscore; + if ($underscore !== null) { + if ($underscore == 'sng') { + $objText->getFont()->setUnderline(Font::UNDERLINE_SINGLE); + } elseif ($underscore == 'dbl') { + $objText->getFont()->setUnderline(Font::UNDERLINE_DOUBLE); + } elseif ($underscore !== '') { + $objText->getFont()->setUnderline($underscore); + } else { + $objText->getFont()->setUnderline(Font::UNDERLINE_NONE); + } + $fontFound = true; + if ($underlineColor) { + $objText->getFont()->setUnderlineColor($underlineColor); + } + } + + $strikethrough = $strikethrough ?? $defaultStrikethrough; + if ($strikethrough !== null) { + $objText->getFont()->setStrikeType($strikethrough); + if ($strikethrough == 'noStrike') { + $objText->getFont()->setStrikethrough(false); + } else { + $objText->getFont()->setStrikethrough(true); + } + $fontFound = true; + } + if ($fontFound === false) { + $objText->setFont(null); + } + } + + return $value; + } + + /** + * @param null|Layout|SimpleXMLElement $chartDetail + */ + private function readChartAttributes($chartDetail): array + { + $plotAttributes = []; + if (isset($chartDetail->dLbls)) { + if (isset($chartDetail->dLbls->dLblPos)) { + $plotAttributes['dLblPos'] = self::getAttribute($chartDetail->dLbls->dLblPos, 'val', 'string'); + } + if (isset($chartDetail->dLbls->numFmt)) { + $plotAttributes['numFmtCode'] = self::getAttribute($chartDetail->dLbls->numFmt, 'formatCode', 'string'); + $plotAttributes['numFmtLinked'] = self::getAttribute($chartDetail->dLbls->numFmt, 'sourceLinked', 'boolean'); + } + if (isset($chartDetail->dLbls->showLegendKey)) { + $plotAttributes['showLegendKey'] = self::getAttribute($chartDetail->dLbls->showLegendKey, 'val', 'string'); + } + if (isset($chartDetail->dLbls->showVal)) { + $plotAttributes['showVal'] = self::getAttribute($chartDetail->dLbls->showVal, 'val', 'string'); + } + if (isset($chartDetail->dLbls->showCatName)) { + $plotAttributes['showCatName'] = self::getAttribute($chartDetail->dLbls->showCatName, 'val', 'string'); + } + if (isset($chartDetail->dLbls->showSerName)) { + $plotAttributes['showSerName'] = self::getAttribute($chartDetail->dLbls->showSerName, 'val', 'string'); + } + if (isset($chartDetail->dLbls->showPercent)) { + $plotAttributes['showPercent'] = self::getAttribute($chartDetail->dLbls->showPercent, 'val', 'string'); + } + if (isset($chartDetail->dLbls->showBubbleSize)) { + $plotAttributes['showBubbleSize'] = self::getAttribute($chartDetail->dLbls->showBubbleSize, 'val', 'string'); + } + if (isset($chartDetail->dLbls->showLeaderLines)) { + $plotAttributes['showLeaderLines'] = self::getAttribute($chartDetail->dLbls->showLeaderLines, 'val', 'string'); + } + if (isset($chartDetail->dLbls->spPr)) { + $sppr = $chartDetail->dLbls->spPr->children($this->aNamespace); + if (isset($sppr->solidFill)) { + $plotAttributes['labelFillColor'] = new ChartColor($this->readColor($sppr->solidFill)); + } + if (isset($sppr->ln->solidFill)) { + $plotAttributes['labelBorderColor'] = new ChartColor($this->readColor($sppr->ln->solidFill)); + } + } + if (isset($chartDetail->dLbls->txPr)) { + $txpr = $chartDetail->dLbls->txPr->children($this->aNamespace); + if (isset($txpr->p->pPr->defRPr->solidFill)) { + $plotAttributes['labelFontColor'] = new ChartColor($this->readColor($txpr->p->pPr->defRPr->solidFill)); + } + } + } + + return $plotAttributes; + } + + /** + * @param mixed $plotAttributes + */ + private function setChartAttributes(Layout $plotArea, $plotAttributes): void + { + foreach ($plotAttributes as $plotAttributeKey => $plotAttributeValue) { + switch ($plotAttributeKey) { + case 'showLegendKey': + $plotArea->setShowLegendKey($plotAttributeValue); + + break; + case 'showVal': + $plotArea->setShowVal($plotAttributeValue); + + break; + case 'showCatName': + $plotArea->setShowCatName($plotAttributeValue); + + break; + case 'showSerName': + $plotArea->setShowSerName($plotAttributeValue); + + break; + case 'showPercent': + $plotArea->setShowPercent($plotAttributeValue); + + break; + case 'showBubbleSize': + $plotArea->setShowBubbleSize($plotAttributeValue); + + break; + case 'showLeaderLines': + $plotArea->setShowLeaderLines($plotAttributeValue); + + break; + } + } + } + + private function readEffects(SimpleXMLElement $chartDetail, ?Properties $chartObject): void + { + if (!isset($chartObject, $chartDetail->spPr)) { + return; + } + $sppr = $chartDetail->spPr->children($this->aNamespace); + + if (isset($sppr->effectLst->glow)) { + $axisGlowSize = (float) self::getAttribute($sppr->effectLst->glow, 'rad', 'integer') / Properties::POINTS_WIDTH_MULTIPLIER; + if ($axisGlowSize != 0.0) { + $colorArray = $this->readColor($sppr->effectLst->glow); + $chartObject->setGlowProperties($axisGlowSize, $colorArray['value'], $colorArray['alpha'], $colorArray['type']); + } + } + + if (isset($sppr->effectLst->softEdge)) { + /** @var string */ + $softEdgeSize = self::getAttribute($sppr->effectLst->softEdge, 'rad', 'string'); + if (is_numeric($softEdgeSize)) { + $chartObject->setSoftEdges((float) Properties::xmlToPoints($softEdgeSize)); + } + } + + $type = ''; + foreach (self::SHADOW_TYPES as $shadowType) { + if (isset($sppr->effectLst->$shadowType)) { + $type = $shadowType; + + break; + } + } + if ($type !== '') { + /** @var string */ + $blur = self::getAttribute($sppr->effectLst->$type, 'blurRad', 'string'); + $blur = is_numeric($blur) ? Properties::xmlToPoints($blur) : null; + /** @var string */ + $dist = self::getAttribute($sppr->effectLst->$type, 'dist', 'string'); + $dist = is_numeric($dist) ? Properties::xmlToPoints($dist) : null; + /** @var string */ + $direction = self::getAttribute($sppr->effectLst->$type, 'dir', 'string'); + $direction = is_numeric($direction) ? Properties::xmlToAngle($direction) : null; + $algn = self::getAttribute($sppr->effectLst->$type, 'algn', 'string'); + $rot = self::getAttribute($sppr->effectLst->$type, 'rotWithShape', 'string'); + $size = []; + foreach (['sx', 'sy'] as $sizeType) { + $sizeValue = self::getAttribute($sppr->effectLst->$type, $sizeType, 'string'); + if (is_numeric($sizeValue)) { + $size[$sizeType] = Properties::xmlToTenthOfPercent((string) $sizeValue); + } else { + $size[$sizeType] = null; + } + } + foreach (['kx', 'ky'] as $sizeType) { + $sizeValue = self::getAttribute($sppr->effectLst->$type, $sizeType, 'string'); + if (is_numeric($sizeValue)) { + $size[$sizeType] = Properties::xmlToAngle((string) $sizeValue); + } else { + $size[$sizeType] = null; + } + } + $colorArray = $this->readColor($sppr->effectLst->$type); + $chartObject + ->setShadowProperty('effect', $type) + ->setShadowProperty('blur', $blur) + ->setShadowProperty('direction', $direction) + ->setShadowProperty('distance', $dist) + ->setShadowProperty('algn', $algn) + ->setShadowProperty('rotWithShape', $rot) + ->setShadowProperty('size', $size) + ->setShadowProperty('color', $colorArray); + } + } + + private const SHADOW_TYPES = [ + 'outerShdw', + 'innerShdw', + ]; + + private function readColor(SimpleXMLElement $colorXml): array + { + $result = [ + 'type' => null, + 'value' => null, + 'alpha' => null, + ]; + foreach (ChartColor::EXCEL_COLOR_TYPES as $type) { + if (isset($colorXml->$type)) { + $result['type'] = $type; + $result['value'] = self::getAttribute($colorXml->$type, 'val', 'string'); + if (isset($colorXml->$type->alpha)) { + /** @var string */ + $alpha = self::getAttribute($colorXml->$type->alpha, 'val', 'string'); + if (is_numeric($alpha)) { + $result['alpha'] = ChartColor::alphaFromXml($alpha); + } + } + + break; + } + } + + return $result; + } + + private function readLineStyle(SimpleXMLElement $chartDetail, ?Properties $chartObject): void + { + if (!isset($chartObject, $chartDetail->spPr)) { + return; + } + $sppr = $chartDetail->spPr->children($this->aNamespace); + + if (!isset($sppr->ln)) { + return; + } + $lineWidth = null; + /** @var string */ + $lineWidthTemp = self::getAttribute($sppr->ln, 'w', 'string'); + if (is_numeric($lineWidthTemp)) { + $lineWidth = Properties::xmlToPoints($lineWidthTemp); + } + /** @var string */ + $compoundType = self::getAttribute($sppr->ln, 'cmpd', 'string'); + /** @var string */ + $dashType = self::getAttribute($sppr->ln->prstDash, 'val', 'string'); + /** @var string */ + $capType = self::getAttribute($sppr->ln, 'cap', 'string'); + if (isset($sppr->ln->miter)) { + $joinType = Properties::LINE_STYLE_JOIN_MITER; + } elseif (isset($sppr->ln->bevel)) { + $joinType = Properties::LINE_STYLE_JOIN_BEVEL; + } else { + $joinType = ''; + } + $headArrowType = ''; + $headArrowSize = ''; + $endArrowType = ''; + $endArrowSize = ''; + /** @var string */ + $headArrowType = self::getAttribute($sppr->ln->headEnd, 'type', 'string'); + /** @var string */ + $headArrowWidth = self::getAttribute($sppr->ln->headEnd, 'w', 'string'); + /** @var string */ + $headArrowLength = self::getAttribute($sppr->ln->headEnd, 'len', 'string'); + /** @var string */ + $endArrowType = self::getAttribute($sppr->ln->tailEnd, 'type', 'string'); + /** @var string */ + $endArrowWidth = self::getAttribute($sppr->ln->tailEnd, 'w', 'string'); + /** @var string */ + $endArrowLength = self::getAttribute($sppr->ln->tailEnd, 'len', 'string'); + $chartObject->setLineStyleProperties( + $lineWidth, + $compoundType, + $dashType, + $capType, + $joinType, + $headArrowType, + $headArrowSize, + $endArrowType, + $endArrowSize, + $headArrowWidth, + $headArrowLength, + $endArrowWidth, + $endArrowLength + ); + $colorArray = $this->readColor($sppr->ln->solidFill); + $chartObject->getLineColor()->setColorPropertiesArray($colorArray); + } + + private function setAxisProperties(SimpleXMLElement $chartDetail, ?Axis $whichAxis): void + { + if (!isset($whichAxis)) { + return; + } + if (isset($chartDetail->numFmt)) { + $whichAxis->setAxisNumberProperties( + (string) self::getAttribute($chartDetail->numFmt, 'formatCode', 'string'), + null, + (int) self::getAttribute($chartDetail->numFmt, 'sourceLinked', 'int') + ); + } + if (isset($chartDetail->crossBetween)) { + $whichAxis->setCrossBetween((string) self::getAttribute($chartDetail->crossBetween, 'val', 'string')); + } + if (isset($chartDetail->majorTickMark)) { + $whichAxis->setAxisOption('major_tick_mark', (string) self::getAttribute($chartDetail->majorTickMark, 'val', 'string')); + } + if (isset($chartDetail->minorTickMark)) { + $whichAxis->setAxisOption('minor_tick_mark', (string) self::getAttribute($chartDetail->minorTickMark, 'val', 'string')); + } + if (isset($chartDetail->tickLblPos)) { + $whichAxis->setAxisOption('axis_labels', (string) self::getAttribute($chartDetail->tickLblPos, 'val', 'string')); + } + if (isset($chartDetail->crosses)) { + $whichAxis->setAxisOption('horizontal_crosses', (string) self::getAttribute($chartDetail->crosses, 'val', 'string')); + } + if (isset($chartDetail->crossesAt)) { + $whichAxis->setAxisOption('horizontal_crosses_value', (string) self::getAttribute($chartDetail->crossesAt, 'val', 'string')); + } + if (isset($chartDetail->scaling->orientation)) { + $whichAxis->setAxisOption('orientation', (string) self::getAttribute($chartDetail->scaling->orientation, 'val', 'string')); + } + if (isset($chartDetail->scaling->max)) { + $whichAxis->setAxisOption('maximum', (string) self::getAttribute($chartDetail->scaling->max, 'val', 'string')); + } + if (isset($chartDetail->scaling->min)) { + $whichAxis->setAxisOption('minimum', (string) self::getAttribute($chartDetail->scaling->min, 'val', 'string')); + } + if (isset($chartDetail->scaling->min)) { + $whichAxis->setAxisOption('minimum', (string) self::getAttribute($chartDetail->scaling->min, 'val', 'string')); + } + if (isset($chartDetail->majorUnit)) { + $whichAxis->setAxisOption('major_unit', (string) self::getAttribute($chartDetail->majorUnit, 'val', 'string')); + } + if (isset($chartDetail->minorUnit)) { + $whichAxis->setAxisOption('minor_unit', (string) self::getAttribute($chartDetail->minorUnit, 'val', 'string')); + } + if (isset($chartDetail->txPr)) { + $children = $chartDetail->txPr->children($this->aNamespace); + if (isset($children->bodyPr)) { + /** @var string */ + $textRotation = self::getAttribute($children->bodyPr, 'rot', 'string'); + if (is_numeric($textRotation)) { + $whichAxis->setAxisOption('textRotation', (string) Properties::xmlToAngle($textRotation)); + } + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php new file mode 100644 index 0000000..2a1e2af --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php @@ -0,0 +1,210 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Reader\DefaultReadFilter; +use PhpOffice\PhpSpreadsheet\Reader\IReadFilter; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; +use SimpleXMLElement; + +class ColumnAndRowAttributes extends BaseParserClass +{ + private $worksheet; + + private $worksheetXml; + + public function __construct(Worksheet $workSheet, ?SimpleXMLElement $worksheetXml = null) + { + $this->worksheet = $workSheet; + $this->worksheetXml = $worksheetXml; + } + + /** + * Set Worksheet column attributes by attributes array passed. + * + * @param string $columnAddress A, B, ... DX, ... + * @param array $columnAttributes array of attributes (indexes are attribute name, values are value) + * 'xfIndex', 'visible', 'collapsed', 'outlineLevel', 'width', ... ? + */ + private function setColumnAttributes($columnAddress, array $columnAttributes): void + { + if (isset($columnAttributes['xfIndex'])) { + $this->worksheet->getColumnDimension($columnAddress)->setXfIndex($columnAttributes['xfIndex']); + } + if (isset($columnAttributes['visible'])) { + $this->worksheet->getColumnDimension($columnAddress)->setVisible($columnAttributes['visible']); + } + if (isset($columnAttributes['collapsed'])) { + $this->worksheet->getColumnDimension($columnAddress)->setCollapsed($columnAttributes['collapsed']); + } + if (isset($columnAttributes['outlineLevel'])) { + $this->worksheet->getColumnDimension($columnAddress)->setOutlineLevel($columnAttributes['outlineLevel']); + } + if (isset($columnAttributes['width'])) { + $this->worksheet->getColumnDimension($columnAddress)->setWidth($columnAttributes['width']); + } + } + + /** + * Set Worksheet row attributes by attributes array passed. + * + * @param int $rowNumber 1, 2, 3, ... 99, ... + * @param array $rowAttributes array of attributes (indexes are attribute name, values are value) + * 'xfIndex', 'visible', 'collapsed', 'outlineLevel', 'rowHeight', ... ? + */ + private function setRowAttributes($rowNumber, array $rowAttributes): void + { + if (isset($rowAttributes['xfIndex'])) { + $this->worksheet->getRowDimension($rowNumber)->setXfIndex($rowAttributes['xfIndex']); + } + if (isset($rowAttributes['visible'])) { + $this->worksheet->getRowDimension($rowNumber)->setVisible($rowAttributes['visible']); + } + if (isset($rowAttributes['collapsed'])) { + $this->worksheet->getRowDimension($rowNumber)->setCollapsed($rowAttributes['collapsed']); + } + if (isset($rowAttributes['outlineLevel'])) { + $this->worksheet->getRowDimension($rowNumber)->setOutlineLevel($rowAttributes['outlineLevel']); + } + if (isset($rowAttributes['rowHeight'])) { + $this->worksheet->getRowDimension($rowNumber)->setRowHeight($rowAttributes['rowHeight']); + } + } + + public function load(?IReadFilter $readFilter = null, bool $readDataOnly = false): void + { + if ($this->worksheetXml === null) { + return; + } + + $columnsAttributes = []; + $rowsAttributes = []; + if (isset($this->worksheetXml->cols)) { + $columnsAttributes = $this->readColumnAttributes($this->worksheetXml->cols, $readDataOnly); + } + + if ($this->worksheetXml->sheetData && $this->worksheetXml->sheetData->row) { + $rowsAttributes = $this->readRowAttributes($this->worksheetXml->sheetData->row, $readDataOnly); + } + + if ($readFilter !== null && get_class($readFilter) === DefaultReadFilter::class) { + $readFilter = null; + } + + // set columns/rows attributes + $columnsAttributesAreSet = []; + foreach ($columnsAttributes as $columnCoordinate => $columnAttributes) { + if ( + $readFilter === null || + !$this->isFilteredColumn($readFilter, $columnCoordinate, $rowsAttributes) + ) { + if (!isset($columnsAttributesAreSet[$columnCoordinate])) { + $this->setColumnAttributes($columnCoordinate, $columnAttributes); + $columnsAttributesAreSet[$columnCoordinate] = true; + } + } + } + + $rowsAttributesAreSet = []; + foreach ($rowsAttributes as $rowCoordinate => $rowAttributes) { + if ( + $readFilter === null || + !$this->isFilteredRow($readFilter, $rowCoordinate, $columnsAttributes) + ) { + if (!isset($rowsAttributesAreSet[$rowCoordinate])) { + $this->setRowAttributes($rowCoordinate, $rowAttributes); + $rowsAttributesAreSet[$rowCoordinate] = true; + } + } + } + } + + private function isFilteredColumn(IReadFilter $readFilter, $columnCoordinate, array $rowsAttributes) + { + foreach ($rowsAttributes as $rowCoordinate => $rowAttributes) { + if (!$readFilter->readCell($columnCoordinate, $rowCoordinate, $this->worksheet->getTitle())) { + return true; + } + } + + return false; + } + + private function readColumnAttributes(SimpleXMLElement $worksheetCols, $readDataOnly) + { + $columnAttributes = []; + + foreach ($worksheetCols->col as $column) { + $startColumn = Coordinate::stringFromColumnIndex((int) $column['min']); + $endColumn = Coordinate::stringFromColumnIndex((int) $column['max']); + ++$endColumn; + for ($columnAddress = $startColumn; $columnAddress !== $endColumn; ++$columnAddress) { + $columnAttributes[$columnAddress] = $this->readColumnRangeAttributes($column, $readDataOnly); + + if ((int) ($column['max']) == 16384) { + break; + } + } + } + + return $columnAttributes; + } + + private function readColumnRangeAttributes(SimpleXMLElement $column, $readDataOnly) + { + $columnAttributes = []; + + if ($column['style'] && !$readDataOnly) { + $columnAttributes['xfIndex'] = (int) $column['style']; + } + if (self::boolean($column['hidden'])) { + $columnAttributes['visible'] = false; + } + if (self::boolean($column['collapsed'])) { + $columnAttributes['collapsed'] = true; + } + if (((int) $column['outlineLevel']) > 0) { + $columnAttributes['outlineLevel'] = (int) $column['outlineLevel']; + } + $columnAttributes['width'] = (float) $column['width']; + + return $columnAttributes; + } + + private function isFilteredRow(IReadFilter $readFilter, $rowCoordinate, array $columnsAttributes) + { + foreach ($columnsAttributes as $columnCoordinate => $columnAttributes) { + if (!$readFilter->readCell($columnCoordinate, $rowCoordinate, $this->worksheet->getTitle())) { + return true; + } + } + + return false; + } + + private function readRowAttributes(SimpleXMLElement $worksheetRow, $readDataOnly) + { + $rowAttributes = []; + + foreach ($worksheetRow as $row) { + if ($row['ht'] && !$readDataOnly) { + $rowAttributes[(int) $row['r']]['rowHeight'] = (float) $row['ht']; + } + if (self::boolean($row['hidden'])) { + $rowAttributes[(int) $row['r']]['visible'] = false; + } + if (self::boolean($row['collapsed'])) { + $rowAttributes[(int) $row['r']]['collapsed'] = true; + } + if ((int) $row['outlineLevel'] > 0) { + $rowAttributes[(int) $row['r']]['outlineLevel'] = (int) $row['outlineLevel']; + } + if ($row['s'] && !$readDataOnly) { + $rowAttributes[(int) $row['r']]['xfIndex'] = (int) $row['s']; + } + } + + return $rowAttributes; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php new file mode 100644 index 0000000..c631a0f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php @@ -0,0 +1,272 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; + +use PhpOffice\PhpSpreadsheet\Reader\Xlsx\Styles as StyleReader; +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalDataBar; +use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalFormattingRuleExtension; +use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalFormatValueObject; +use PhpOffice\PhpSpreadsheet\Style\Style as Style; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; +use SimpleXMLElement; + +class ConditionalStyles +{ + private $worksheet; + + private $worksheetXml; + + /** + * @var array + */ + private $ns; + + private $dxfs; + + public function __construct(Worksheet $workSheet, SimpleXMLElement $worksheetXml, array $dxfs = []) + { + $this->worksheet = $workSheet; + $this->worksheetXml = $worksheetXml; + $this->dxfs = $dxfs; + } + + public function load(): void + { + $this->setConditionalStyles( + $this->worksheet, + $this->readConditionalStyles($this->worksheetXml), + $this->worksheetXml->extLst + ); + } + + public function loadFromExt(StyleReader $styleReader): void + { + $this->ns = $this->worksheetXml->getNamespaces(true); + $this->setConditionalsFromExt( + $this->readConditionalsFromExt($this->worksheetXml->extLst, $styleReader) + ); + } + + private function setConditionalsFromExt(array $conditionals): void + { + foreach ($conditionals as $conditionalRange => $cfRules) { + ksort($cfRules); + // Priority is used as the key for sorting; but may not start at 0, + // so we use array_values to reset the index after sorting. + $this->worksheet->getStyle($conditionalRange) + ->setConditionalStyles(array_values($cfRules)); + } + } + + private function readConditionalsFromExt(SimpleXMLElement $extLst, StyleReader $styleReader): array + { + $conditionals = []; + + if (isset($extLst->ext['uri']) && (string) $extLst->ext['uri'] === '{78C0D931-6437-407d-A8EE-F0AAD7539E65}') { + $conditionalFormattingRuleXml = $extLst->ext->children($this->ns['x14']); + if (!$conditionalFormattingRuleXml->conditionalFormattings) { + return []; + } + + foreach ($conditionalFormattingRuleXml->children($this->ns['x14']) as $extFormattingXml) { + $extFormattingRangeXml = $extFormattingXml->children($this->ns['xm']); + if (!$extFormattingRangeXml->sqref) { + continue; + } + + $sqref = (string) $extFormattingRangeXml->sqref; + $extCfRuleXml = $extFormattingXml->cfRule; + + $attributes = $extCfRuleXml->attributes(); + if (!$attributes) { + continue; + } + $conditionType = (string) $attributes->type; + if ( + !Conditional::isValidConditionType($conditionType) || + $conditionType === Conditional::CONDITION_DATABAR + ) { + continue; + } + + $priority = (int) $attributes->priority; + + $conditional = $this->readConditionalRuleFromExt($extCfRuleXml, $attributes); + $cfStyle = $this->readStyleFromExt($extCfRuleXml, $styleReader); + $conditional->setStyle($cfStyle); + $conditionals[$sqref][$priority] = $conditional; + } + } + + return $conditionals; + } + + private function readConditionalRuleFromExt(SimpleXMLElement $cfRuleXml, SimpleXMLElement $attributes): Conditional + { + $conditionType = (string) $attributes->type; + $operatorType = (string) $attributes->operator; + + $operands = []; + foreach ($cfRuleXml->children($this->ns['xm']) as $cfRuleOperandsXml) { + $operands[] = (string) $cfRuleOperandsXml; + } + + $conditional = new Conditional(); + $conditional->setConditionType($conditionType); + $conditional->setOperatorType($operatorType); + if ( + $conditionType === Conditional::CONDITION_CONTAINSTEXT || + $conditionType === Conditional::CONDITION_NOTCONTAINSTEXT || + $conditionType === Conditional::CONDITION_BEGINSWITH || + $conditionType === Conditional::CONDITION_ENDSWITH || + $conditionType === Conditional::CONDITION_TIMEPERIOD + ) { + $conditional->setText(array_pop($operands) ?? ''); + } + $conditional->setConditions($operands); + + return $conditional; + } + + private function readStyleFromExt(SimpleXMLElement $extCfRuleXml, StyleReader $styleReader): Style + { + $cfStyle = new Style(false, true); + if ($extCfRuleXml->dxf) { + $styleXML = $extCfRuleXml->dxf->children(); + + if ($styleXML->borders) { + $styleReader->readBorderStyle($cfStyle->getBorders(), $styleXML->borders); + } + if ($styleXML->fill) { + $styleReader->readFillStyle($cfStyle->getFill(), $styleXML->fill); + } + } + + return $cfStyle; + } + + private function readConditionalStyles($xmlSheet): array + { + $conditionals = []; + foreach ($xmlSheet->conditionalFormatting as $conditional) { + foreach ($conditional->cfRule as $cfRule) { + if (Conditional::isValidConditionType((string) $cfRule['type']) && isset($this->dxfs[(int) ($cfRule['dxfId'])])) { + $conditionals[(string) $conditional['sqref']][(int) ($cfRule['priority'])] = $cfRule; + } elseif ((string) $cfRule['type'] == Conditional::CONDITION_DATABAR) { + $conditionals[(string) $conditional['sqref']][(int) ($cfRule['priority'])] = $cfRule; + } + } + } + + return $conditionals; + } + + private function setConditionalStyles(Worksheet $worksheet, array $conditionals, $xmlExtLst): void + { + foreach ($conditionals as $cellRangeReference => $cfRules) { + ksort($cfRules); + $conditionalStyles = $this->readStyleRules($cfRules, $xmlExtLst); + + // Extract all cell references in $cellRangeReference + $cellBlocks = explode(' ', str_replace('$', '', strtoupper($cellRangeReference))); + foreach ($cellBlocks as $cellBlock) { + $worksheet->getStyle($cellBlock)->setConditionalStyles($conditionalStyles); + } + } + } + + private function readStyleRules($cfRules, $extLst) + { + $conditionalFormattingRuleExtensions = ConditionalFormattingRuleExtension::parseExtLstXml($extLst); + $conditionalStyles = []; + + foreach ($cfRules as $cfRule) { + $objConditional = new Conditional(); + $objConditional->setConditionType((string) $cfRule['type']); + $objConditional->setOperatorType((string) $cfRule['operator']); + + if ((string) $cfRule['text'] != '') { + $objConditional->setText((string) $cfRule['text']); + } elseif ((string) $cfRule['timePeriod'] != '') { + $objConditional->setText((string) $cfRule['timePeriod']); + } + + if (isset($cfRule['stopIfTrue']) && (int) $cfRule['stopIfTrue'] === 1) { + $objConditional->setStopIfTrue(true); + } + + if (count($cfRule->formula) >= 1) { + foreach ($cfRule->formula as $formulax) { + $formula = (string) $formulax; + if ($formula === 'TRUE') { + $objConditional->addCondition(true); + } elseif ($formula === 'FALSE') { + $objConditional->addCondition(false); + } else { + $objConditional->addCondition($formula); + } + } + } else { + $objConditional->addCondition(''); + } + + if (isset($cfRule->dataBar)) { + $objConditional->setDataBar( + $this->readDataBarOfConditionalRule($cfRule, $conditionalFormattingRuleExtensions) + ); + } else { + $objConditional->setStyle(clone $this->dxfs[(int) ($cfRule['dxfId'])]); + } + + $conditionalStyles[] = $objConditional; + } + + return $conditionalStyles; + } + + private function readDataBarOfConditionalRule($cfRule, $conditionalFormattingRuleExtensions): ConditionalDataBar + { + $dataBar = new ConditionalDataBar(); + //dataBar attribute + if (isset($cfRule->dataBar['showValue'])) { + $dataBar->setShowValue((bool) $cfRule->dataBar['showValue']); + } + + //dataBar children + //conditionalFormatValueObjects + $cfvoXml = $cfRule->dataBar->cfvo; + $cfvoIndex = 0; + foreach ((count($cfvoXml) > 1 ? $cfvoXml : [$cfvoXml]) as $cfvo) { + if ($cfvoIndex === 0) { + $dataBar->setMinimumConditionalFormatValueObject(new ConditionalFormatValueObject((string) $cfvo['type'], (string) $cfvo['val'])); + } + if ($cfvoIndex === 1) { + $dataBar->setMaximumConditionalFormatValueObject(new ConditionalFormatValueObject((string) $cfvo['type'], (string) $cfvo['val'])); + } + ++$cfvoIndex; + } + + //color + if (isset($cfRule->dataBar->color)) { + $dataBar->setColor((string) $cfRule->dataBar->color['rgb']); + } + //extLst + $this->readDataBarExtLstOfConditionalRule($dataBar, $cfRule, $conditionalFormattingRuleExtensions); + + return $dataBar; + } + + private function readDataBarExtLstOfConditionalRule(ConditionalDataBar $dataBar, $cfRule, $conditionalFormattingRuleExtensions): void + { + if (isset($cfRule->extLst)) { + $ns = $cfRule->extLst->getNamespaces(true); + foreach ((count($cfRule->extLst) > 0 ? $cfRule->extLst->ext : [$cfRule->extLst->ext]) as $ext) { + $extId = (string) $ext->children($ns['x14'])->id; + if (isset($conditionalFormattingRuleExtensions[$extId]) && (string) $ext['uri'] === '{B025F937-C7B1-47D3-B67F-A62EFF666E3E}') { + $dataBar->setConditionalFormattingRuleExt($conditionalFormattingRuleExtensions[$extId]); + } + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/DataValidations.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/DataValidations.php new file mode 100644 index 0000000..b699cb5 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/DataValidations.php @@ -0,0 +1,53 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; +use SimpleXMLElement; + +class DataValidations +{ + private $worksheet; + + private $worksheetXml; + + public function __construct(Worksheet $workSheet, SimpleXMLElement $worksheetXml) + { + $this->worksheet = $workSheet; + $this->worksheetXml = $worksheetXml; + } + + public function load(): void + { + foreach ($this->worksheetXml->dataValidations->dataValidation as $dataValidation) { + // Uppercase coordinate + $range = strtoupper($dataValidation['sqref']); + $rangeSet = explode(' ', $range); + foreach ($rangeSet as $range) { + $stRange = $this->worksheet->shrinkRangeToFit($range); + + // Extract all cell references in $range + foreach (Coordinate::extractAllCellReferencesInRange($stRange) as $reference) { + // Create validation + $docValidation = $this->worksheet->getCell($reference)->getDataValidation(); + $docValidation->setType((string) $dataValidation['type']); + $docValidation->setErrorStyle((string) $dataValidation['errorStyle']); + $docValidation->setOperator((string) $dataValidation['operator']); + $docValidation->setAllowBlank(filter_var($dataValidation['allowBlank'], FILTER_VALIDATE_BOOLEAN)); + // showDropDown is inverted (works as hideDropDown if true) + $docValidation->setShowDropDown(!filter_var($dataValidation['showDropDown'], FILTER_VALIDATE_BOOLEAN)); + $docValidation->setShowInputMessage(filter_var($dataValidation['showInputMessage'], FILTER_VALIDATE_BOOLEAN)); + $docValidation->setShowErrorMessage(filter_var($dataValidation['showErrorMessage'], FILTER_VALIDATE_BOOLEAN)); + $docValidation->setErrorTitle((string) $dataValidation['errorTitle']); + $docValidation->setError((string) $dataValidation['error']); + $docValidation->setPromptTitle((string) $dataValidation['promptTitle']); + $docValidation->setPrompt((string) $dataValidation['prompt']); + $docValidation->setFormula1((string) $dataValidation->formula1); + $docValidation->setFormula2((string) $dataValidation->formula2); + $docValidation->setSqref($range); + } + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Hyperlinks.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Hyperlinks.php new file mode 100644 index 0000000..8488499 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Hyperlinks.php @@ -0,0 +1,64 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Reader\Xlsx; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; +use SimpleXMLElement; + +class Hyperlinks +{ + private $worksheet; + + private $hyperlinks = []; + + public function __construct(Worksheet $workSheet) + { + $this->worksheet = $workSheet; + } + + public function readHyperlinks(SimpleXMLElement $relsWorksheet): void + { + foreach ($relsWorksheet->children(Namespaces::RELATIONSHIPS)->Relationship as $elementx) { + $element = Xlsx::getAttributes($elementx); + if ($element->Type == Namespaces::HYPERLINK) { + $this->hyperlinks[(string) $element->Id] = (string) $element->Target; + } + } + } + + public function setHyperlinks(SimpleXMLElement $worksheetXml): void + { + foreach ($worksheetXml->children(Namespaces::MAIN)->hyperlink as $hyperlink) { + if ($hyperlink !== null) { + $this->setHyperlink($hyperlink, $this->worksheet); + } + } + } + + private function setHyperlink(SimpleXMLElement $hyperlink, Worksheet $worksheet): void + { + // Link url + $linkRel = Xlsx::getAttributes($hyperlink, Namespaces::SCHEMA_OFFICE_DOCUMENT); + + $attributes = Xlsx::getAttributes($hyperlink); + foreach (Coordinate::extractAllCellReferencesInRange($attributes->ref) as $cellReference) { + $cell = $worksheet->getCell($cellReference); + if (isset($linkRel['id'])) { + $hyperlinkUrl = $this->hyperlinks[(string) $linkRel['id']] ?? null; + if (isset($attributes['location'])) { + $hyperlinkUrl .= '#' . (string) $attributes['location']; + } + $cell->getHyperlink()->setUrl($hyperlinkUrl); + } elseif (isset($attributes['location'])) { + $cell->getHyperlink()->setUrl('sheet://' . (string) $attributes['location']); + } + + // Tooltip + if (isset($attributes['tooltip'])) { + $cell->getHyperlink()->setTooltip((string) $attributes['tooltip']); + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Namespaces.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Namespaces.php new file mode 100644 index 0000000..57a88bb --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Namespaces.php @@ -0,0 +1,82 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; + +class Namespaces +{ + const SCHEMAS = 'http://schemas.openxmlformats.org'; + + const RELATIONSHIPS = 'http://schemas.openxmlformats.org/package/2006/relationships'; + + // This one used in Reader\Xlsx + const CORE_PROPERTIES = 'http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties'; + + // This one used in Reader\Xlsx\Properties + const CORE_PROPERTIES2 = 'http://schemas.openxmlformats.org/package/2006/metadata/core-properties'; + + const THUMBNAIL = 'http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail'; + + const THEME = 'http://schemas.openxmlformats.org/package/2006/relationships/theme'; + + const COMPATIBILITY = 'http://schemas.openxmlformats.org/markup-compatibility/2006'; + + const MAIN = 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'; + + const DRAWINGML = 'http://schemas.openxmlformats.org/drawingml/2006/main'; + + const CHART = 'http://schemas.openxmlformats.org/drawingml/2006/chart'; + + const SPREADSHEET_DRAWING = 'http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing'; + + const SCHEMA_OFFICE_DOCUMENT = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships'; + + const COMMENTS = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments'; + + //const CUSTOM_PROPERTIES = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties'; + + //const EXTENDED_PROPERTIES = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties'; + + const HYPERLINK = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink'; + + const OFFICE_DOCUMENT = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument'; + + const SHARED_STRINGS = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings'; + + const STYLES = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles'; + + const IMAGE = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image'; + + const VML = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing'; + + const WORKSHEET = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet'; + + const CHARTSHEET = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/chartsheet'; + + const SCHEMA_MICROSOFT = 'http://schemas.microsoft.com/office/2006/relationships'; + + const EXTENSIBILITY = 'http://schemas.microsoft.com/office/2006/relationships/ui/extensibility'; + + const VBA = 'http://schemas.microsoft.com/office/2006/relationships/vbaProject'; + + const DC_ELEMENTS = 'http://purl.org/dc/elements/1.1/'; + + const DC_TERMS = 'http://purl.org/dc/terms'; + + const URN_MSOFFICE = 'urn:schemas-microsoft-com:office:office'; + + const URN_VML = 'urn:schemas-microsoft-com:vml'; + + const SCHEMA_PURL = 'http://purl.oclc.org/ooxml'; + + const PURL_OFFICE_DOCUMENT = 'http://purl.oclc.org/ooxml/officeDocument/relationships/officeDocument'; + + const PURL_RELATIONSHIPS = 'http://purl.oclc.org/ooxml/officeDocument/relationships'; + + const PURL_MAIN = 'http://purl.oclc.org/ooxml/spreadsheetml/main'; + + const PURL_DRAWING = 'http://purl.oclc.org/ooxml/drawingml/main'; + + const PURL_CHART = 'http://purl.oclc.org/ooxml/drawingml/chart'; + + const PURL_WORKSHEET = 'http://purl.oclc.org/ooxml/officeDocument/relationships/worksheet'; +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/PageSetup.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/PageSetup.php new file mode 100644 index 0000000..56f18f9 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/PageSetup.php @@ -0,0 +1,164 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; +use SimpleXMLElement; + +class PageSetup extends BaseParserClass +{ + private $worksheet; + + private $worksheetXml; + + public function __construct(Worksheet $workSheet, ?SimpleXMLElement $worksheetXml = null) + { + $this->worksheet = $workSheet; + $this->worksheetXml = $worksheetXml; + } + + public function load(array $unparsedLoadedData) + { + if (!$this->worksheetXml) { + return $unparsedLoadedData; + } + + $this->margins($this->worksheetXml, $this->worksheet); + $unparsedLoadedData = $this->pageSetup($this->worksheetXml, $this->worksheet, $unparsedLoadedData); + $this->headerFooter($this->worksheetXml, $this->worksheet); + $this->pageBreaks($this->worksheetXml, $this->worksheet); + + return $unparsedLoadedData; + } + + private function margins(SimpleXMLElement $xmlSheet, Worksheet $worksheet): void + { + if ($xmlSheet->pageMargins) { + $docPageMargins = $worksheet->getPageMargins(); + $docPageMargins->setLeft((float) ($xmlSheet->pageMargins['left'])); + $docPageMargins->setRight((float) ($xmlSheet->pageMargins['right'])); + $docPageMargins->setTop((float) ($xmlSheet->pageMargins['top'])); + $docPageMargins->setBottom((float) ($xmlSheet->pageMargins['bottom'])); + $docPageMargins->setHeader((float) ($xmlSheet->pageMargins['header'])); + $docPageMargins->setFooter((float) ($xmlSheet->pageMargins['footer'])); + } + } + + private function pageSetup(SimpleXMLElement $xmlSheet, Worksheet $worksheet, array $unparsedLoadedData) + { + if ($xmlSheet->pageSetup) { + $docPageSetup = $worksheet->getPageSetup(); + + if (isset($xmlSheet->pageSetup['orientation'])) { + $docPageSetup->setOrientation((string) $xmlSheet->pageSetup['orientation']); + } + if (isset($xmlSheet->pageSetup['paperSize'])) { + $docPageSetup->setPaperSize((int) ($xmlSheet->pageSetup['paperSize'])); + } + if (isset($xmlSheet->pageSetup['scale'])) { + $docPageSetup->setScale((int) ($xmlSheet->pageSetup['scale']), false); + } + if (isset($xmlSheet->pageSetup['fitToHeight']) && (int) ($xmlSheet->pageSetup['fitToHeight']) >= 0) { + $docPageSetup->setFitToHeight((int) ($xmlSheet->pageSetup['fitToHeight']), false); + } + if (isset($xmlSheet->pageSetup['fitToWidth']) && (int) ($xmlSheet->pageSetup['fitToWidth']) >= 0) { + $docPageSetup->setFitToWidth((int) ($xmlSheet->pageSetup['fitToWidth']), false); + } + if ( + isset($xmlSheet->pageSetup['firstPageNumber'], $xmlSheet->pageSetup['useFirstPageNumber']) && + self::boolean((string) $xmlSheet->pageSetup['useFirstPageNumber']) + ) { + $docPageSetup->setFirstPageNumber((int) ($xmlSheet->pageSetup['firstPageNumber'])); + } + if (isset($xmlSheet->pageSetup['pageOrder'])) { + $docPageSetup->setPageOrder((string) $xmlSheet->pageSetup['pageOrder']); + } + + $relAttributes = $xmlSheet->pageSetup->attributes(Namespaces::SCHEMA_OFFICE_DOCUMENT); + if (isset($relAttributes['id'])) { + $unparsedLoadedData['sheets'][$worksheet->getCodeName()]['pageSetupRelId'] = (string) $relAttributes['id']; + } + } + + return $unparsedLoadedData; + } + + private function headerFooter(SimpleXMLElement $xmlSheet, Worksheet $worksheet): void + { + if ($xmlSheet->headerFooter) { + $docHeaderFooter = $worksheet->getHeaderFooter(); + + if ( + isset($xmlSheet->headerFooter['differentOddEven']) && + self::boolean((string) $xmlSheet->headerFooter['differentOddEven']) + ) { + $docHeaderFooter->setDifferentOddEven(true); + } else { + $docHeaderFooter->setDifferentOddEven(false); + } + if ( + isset($xmlSheet->headerFooter['differentFirst']) && + self::boolean((string) $xmlSheet->headerFooter['differentFirst']) + ) { + $docHeaderFooter->setDifferentFirst(true); + } else { + $docHeaderFooter->setDifferentFirst(false); + } + if ( + isset($xmlSheet->headerFooter['scaleWithDoc']) && + !self::boolean((string) $xmlSheet->headerFooter['scaleWithDoc']) + ) { + $docHeaderFooter->setScaleWithDocument(false); + } else { + $docHeaderFooter->setScaleWithDocument(true); + } + if ( + isset($xmlSheet->headerFooter['alignWithMargins']) && + !self::boolean((string) $xmlSheet->headerFooter['alignWithMargins']) + ) { + $docHeaderFooter->setAlignWithMargins(false); + } else { + $docHeaderFooter->setAlignWithMargins(true); + } + + $docHeaderFooter->setOddHeader((string) $xmlSheet->headerFooter->oddHeader); + $docHeaderFooter->setOddFooter((string) $xmlSheet->headerFooter->oddFooter); + $docHeaderFooter->setEvenHeader((string) $xmlSheet->headerFooter->evenHeader); + $docHeaderFooter->setEvenFooter((string) $xmlSheet->headerFooter->evenFooter); + $docHeaderFooter->setFirstHeader((string) $xmlSheet->headerFooter->firstHeader); + $docHeaderFooter->setFirstFooter((string) $xmlSheet->headerFooter->firstFooter); + } + } + + private function pageBreaks(SimpleXMLElement $xmlSheet, Worksheet $worksheet): void + { + if ($xmlSheet->rowBreaks && $xmlSheet->rowBreaks->brk) { + $this->rowBreaks($xmlSheet, $worksheet); + } + if ($xmlSheet->colBreaks && $xmlSheet->colBreaks->brk) { + $this->columnBreaks($xmlSheet, $worksheet); + } + } + + private function rowBreaks(SimpleXMLElement $xmlSheet, Worksheet $worksheet): void + { + foreach ($xmlSheet->rowBreaks->brk as $brk) { + if ($brk['man']) { + $worksheet->setBreak("A{$brk['id']}", Worksheet::BREAK_ROW); + } + } + } + + private function columnBreaks(SimpleXMLElement $xmlSheet, Worksheet $worksheet): void + { + foreach ($xmlSheet->colBreaks->brk as $brk) { + if ($brk['man']) { + $worksheet->setBreak( + Coordinate::stringFromColumnIndex(((int) $brk['id']) + 1) . '1', + Worksheet::BREAK_COLUMN + ); + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Properties.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Properties.php new file mode 100644 index 0000000..72addff --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Properties.php @@ -0,0 +1,109 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; + +use PhpOffice\PhpSpreadsheet\Document\Properties as DocumentProperties; +use PhpOffice\PhpSpreadsheet\Reader\Security\XmlScanner; +use PhpOffice\PhpSpreadsheet\Settings; +use SimpleXMLElement; + +class Properties +{ + /** @var XmlScanner */ + private $securityScanner; + + /** @var DocumentProperties */ + private $docProps; + + public function __construct(XmlScanner $securityScanner, DocumentProperties $docProps) + { + $this->securityScanner = $securityScanner; + $this->docProps = $docProps; + } + + /** + * @param mixed $obj + */ + private static function nullOrSimple($obj): ?SimpleXMLElement + { + return ($obj instanceof SimpleXMLElement) ? $obj : null; + } + + private function extractPropertyData(string $propertyData): ?SimpleXMLElement + { + // okay to omit namespace because everything will be processed by xpath + $obj = simplexml_load_string( + $this->securityScanner->scan($propertyData), + 'SimpleXMLElement', + Settings::getLibXmlLoaderOptions() + ); + + return self::nullOrSimple($obj); + } + + public function readCoreProperties(string $propertyData): void + { + $xmlCore = $this->extractPropertyData($propertyData); + + if (is_object($xmlCore)) { + $xmlCore->registerXPathNamespace('dc', Namespaces::DC_ELEMENTS); + $xmlCore->registerXPathNamespace('dcterms', Namespaces::DC_TERMS); + $xmlCore->registerXPathNamespace('cp', Namespaces::CORE_PROPERTIES2); + + $this->docProps->setCreator((string) self::getArrayItem($xmlCore->xpath('dc:creator'))); + $this->docProps->setLastModifiedBy((string) self::getArrayItem($xmlCore->xpath('cp:lastModifiedBy'))); + $this->docProps->setCreated((string) self::getArrayItem($xmlCore->xpath('dcterms:created'))); //! respect xsi:type + $this->docProps->setModified((string) self::getArrayItem($xmlCore->xpath('dcterms:modified'))); //! respect xsi:type + $this->docProps->setTitle((string) self::getArrayItem($xmlCore->xpath('dc:title'))); + $this->docProps->setDescription((string) self::getArrayItem($xmlCore->xpath('dc:description'))); + $this->docProps->setSubject((string) self::getArrayItem($xmlCore->xpath('dc:subject'))); + $this->docProps->setKeywords((string) self::getArrayItem($xmlCore->xpath('cp:keywords'))); + $this->docProps->setCategory((string) self::getArrayItem($xmlCore->xpath('cp:category'))); + } + } + + public function readExtendedProperties(string $propertyData): void + { + $xmlCore = $this->extractPropertyData($propertyData); + + if (is_object($xmlCore)) { + if (isset($xmlCore->Company)) { + $this->docProps->setCompany((string) $xmlCore->Company); + } + if (isset($xmlCore->Manager)) { + $this->docProps->setManager((string) $xmlCore->Manager); + } + } + } + + public function readCustomProperties(string $propertyData): void + { + $xmlCore = $this->extractPropertyData($propertyData); + + if (is_object($xmlCore)) { + foreach ($xmlCore as $xmlProperty) { + /** @var SimpleXMLElement $xmlProperty */ + $cellDataOfficeAttributes = $xmlProperty->attributes(); + if (isset($cellDataOfficeAttributes['name'])) { + $propertyName = (string) $cellDataOfficeAttributes['name']; + $cellDataOfficeChildren = $xmlProperty->children('http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes'); + + $attributeType = $cellDataOfficeChildren->getName(); + $attributeValue = (string) $cellDataOfficeChildren->{$attributeType}; + $attributeValue = DocumentProperties::convertProperty($attributeValue, $attributeType); + $attributeType = DocumentProperties::convertPropertyType($attributeType); + $this->docProps->setCustomProperty($propertyName, $attributeValue, $attributeType); + } + } + } + } + + /** + * @param null|array|false $array + * @param mixed $key + */ + private static function getArrayItem($array, $key = 0): ?SimpleXMLElement + { + return is_array($array) ? ($array[$key] ?? null) : null; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/SheetViewOptions.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/SheetViewOptions.php new file mode 100644 index 0000000..a302cc5 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/SheetViewOptions.php @@ -0,0 +1,132 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; + +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; +use SimpleXMLElement; + +class SheetViewOptions extends BaseParserClass +{ + private $worksheet; + + private $worksheetXml; + + public function __construct(Worksheet $workSheet, ?SimpleXMLElement $worksheetXml = null) + { + $this->worksheet = $workSheet; + $this->worksheetXml = $worksheetXml; + } + + public function load(bool $readDataOnly, Styles $styleReader): void + { + if ($this->worksheetXml === null) { + return; + } + + if (isset($this->worksheetXml->sheetPr)) { + $this->tabColor($this->worksheetXml->sheetPr, $styleReader); + $this->codeName($this->worksheetXml->sheetPr); + $this->outlines($this->worksheetXml->sheetPr); + $this->pageSetup($this->worksheetXml->sheetPr); + } + + if (isset($this->worksheetXml->sheetFormatPr)) { + $this->sheetFormat($this->worksheetXml->sheetFormatPr); + } + + if (!$readDataOnly && isset($this->worksheetXml->printOptions)) { + $this->printOptions($this->worksheetXml->printOptions); + } + } + + private function tabColor(SimpleXMLElement $sheetPr, Styles $styleReader): void + { + if (isset($sheetPr->tabColor)) { + $this->worksheet->getTabColor()->setARGB($styleReader->readColor($sheetPr->tabColor)); + } + } + + private function codeName(SimpleXMLElement $sheetPr): void + { + if (isset($sheetPr['codeName'])) { + $this->worksheet->setCodeName((string) $sheetPr['codeName'], false); + } + } + + private function outlines(SimpleXMLElement $sheetPr): void + { + if (isset($sheetPr->outlinePr)) { + if ( + isset($sheetPr->outlinePr['summaryRight']) && + !self::boolean((string) $sheetPr->outlinePr['summaryRight']) + ) { + $this->worksheet->setShowSummaryRight(false); + } else { + $this->worksheet->setShowSummaryRight(true); + } + + if ( + isset($sheetPr->outlinePr['summaryBelow']) && + !self::boolean((string) $sheetPr->outlinePr['summaryBelow']) + ) { + $this->worksheet->setShowSummaryBelow(false); + } else { + $this->worksheet->setShowSummaryBelow(true); + } + } + } + + private function pageSetup(SimpleXMLElement $sheetPr): void + { + if (isset($sheetPr->pageSetUpPr)) { + if ( + isset($sheetPr->pageSetUpPr['fitToPage']) && + !self::boolean((string) $sheetPr->pageSetUpPr['fitToPage']) + ) { + $this->worksheet->getPageSetup()->setFitToPage(false); + } else { + $this->worksheet->getPageSetup()->setFitToPage(true); + } + } + } + + private function sheetFormat(SimpleXMLElement $sheetFormatPr): void + { + if ( + isset($sheetFormatPr['customHeight']) && + self::boolean((string) $sheetFormatPr['customHeight']) && + isset($sheetFormatPr['defaultRowHeight']) + ) { + $this->worksheet->getDefaultRowDimension() + ->setRowHeight((float) $sheetFormatPr['defaultRowHeight']); + } + + if (isset($sheetFormatPr['defaultColWidth'])) { + $this->worksheet->getDefaultColumnDimension() + ->setWidth((float) $sheetFormatPr['defaultColWidth']); + } + + if ( + isset($sheetFormatPr['zeroHeight']) && + ((string) $sheetFormatPr['zeroHeight'] === '1') + ) { + $this->worksheet->getDefaultRowDimension()->setZeroHeight(true); + } + } + + private function printOptions(SimpleXMLElement $printOptions): void + { + if (self::boolean((string) $printOptions['gridLinesSet'])) { + $this->worksheet->setShowGridlines(true); + } + if (self::boolean((string) $printOptions['gridLines'])) { + $this->worksheet->setPrintGridlines(true); + } + if (self::boolean((string) $printOptions['horizontalCentered'])) { + $this->worksheet->getPageSetup()->setHorizontalCentered(true); + } + if (self::boolean((string) $printOptions['verticalCentered'])) { + $this->worksheet->getPageSetup()->setVerticalCentered(true); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/SheetViews.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/SheetViews.php new file mode 100644 index 0000000..b2bc99f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/SheetViews.php @@ -0,0 +1,156 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Reader\Xlsx; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; +use SimpleXMLElement; + +class SheetViews extends BaseParserClass +{ + /** @var SimpleXMLElement */ + private $sheetViewXml; + + /** @var SimpleXMLElement */ + private $sheetViewAttributes; + + /** @var Worksheet */ + private $worksheet; + + public function __construct(SimpleXMLElement $sheetViewXml, Worksheet $workSheet) + { + $this->sheetViewXml = $sheetViewXml; + $this->sheetViewAttributes = Xlsx::testSimpleXml($sheetViewXml->attributes()); + $this->worksheet = $workSheet; + } + + public function load(): void + { + $this->topLeft(); + $this->zoomScale(); + $this->view(); + $this->gridLines(); + $this->headers(); + $this->direction(); + $this->showZeros(); + + if (isset($this->sheetViewXml->pane)) { + $this->pane(); + } + if (isset($this->sheetViewXml->selection, $this->sheetViewXml->selection->attributes()->sqref)) { + $this->selection(); + } + } + + private function zoomScale(): void + { + if (isset($this->sheetViewAttributes->zoomScale)) { + $zoomScale = (int) ($this->sheetViewAttributes->zoomScale); + if ($zoomScale <= 0) { + // setZoomScale will throw an Exception if the scale is less than or equals 0 + // that is OK when manually creating documents, but we should be able to read all documents + $zoomScale = 100; + } + + $this->worksheet->getSheetView()->setZoomScale($zoomScale); + } + + if (isset($this->sheetViewAttributes->zoomScaleNormal)) { + $zoomScaleNormal = (int) ($this->sheetViewAttributes->zoomScaleNormal); + if ($zoomScaleNormal <= 0) { + // setZoomScaleNormal will throw an Exception if the scale is less than or equals 0 + // that is OK when manually creating documents, but we should be able to read all documents + $zoomScaleNormal = 100; + } + + $this->worksheet->getSheetView()->setZoomScaleNormal($zoomScaleNormal); + } + } + + private function view(): void + { + if (isset($this->sheetViewAttributes->view)) { + $this->worksheet->getSheetView()->setView((string) $this->sheetViewAttributes->view); + } + } + + private function topLeft(): void + { + if (isset($this->sheetViewAttributes->topLeftCell)) { + $this->worksheet->setTopLeftCell($this->sheetViewAttributes->topLeftCell); + } + } + + private function gridLines(): void + { + if (isset($this->sheetViewAttributes->showGridLines)) { + $this->worksheet->setShowGridLines( + self::boolean((string) $this->sheetViewAttributes->showGridLines) + ); + } + } + + private function headers(): void + { + if (isset($this->sheetViewAttributes->showRowColHeaders)) { + $this->worksheet->setShowRowColHeaders( + self::boolean((string) $this->sheetViewAttributes->showRowColHeaders) + ); + } + } + + private function direction(): void + { + if (isset($this->sheetViewAttributes->rightToLeft)) { + $this->worksheet->setRightToLeft( + self::boolean((string) $this->sheetViewAttributes->rightToLeft) + ); + } + } + + private function showZeros(): void + { + if (isset($this->sheetViewAttributes->showZeros)) { + $this->worksheet->getSheetView()->setShowZeros( + self::boolean((string) $this->sheetViewAttributes->showZeros) + ); + } + } + + private function pane(): void + { + $xSplit = 0; + $ySplit = 0; + $topLeftCell = null; + $paneAttributes = $this->sheetViewXml->pane->attributes(); + + if (isset($paneAttributes->xSplit)) { + $xSplit = (int) ($paneAttributes->xSplit); + } + + if (isset($paneAttributes->ySplit)) { + $ySplit = (int) ($paneAttributes->ySplit); + } + + if (isset($paneAttributes->topLeftCell)) { + $topLeftCell = (string) $paneAttributes->topLeftCell; + } + + $this->worksheet->freezePane( + Coordinate::stringFromColumnIndex($xSplit + 1) . ($ySplit + 1), + $topLeftCell + ); + } + + private function selection(): void + { + $attributes = $this->sheetViewXml->selection->attributes(); + if ($attributes !== null) { + $sqref = (string) $attributes->sqref; + $sqref = explode(' ', $sqref); + $sqref = $sqref[0]; + $this->worksheet->setSelectedCells($sqref); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Styles.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Styles.php new file mode 100644 index 0000000..f84aaa6 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Styles.php @@ -0,0 +1,437 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; + +use PhpOffice\PhpSpreadsheet\Reader\Xlsx; +use PhpOffice\PhpSpreadsheet\Style\Alignment; +use PhpOffice\PhpSpreadsheet\Style\Border; +use PhpOffice\PhpSpreadsheet\Style\Borders; +use PhpOffice\PhpSpreadsheet\Style\Color; +use PhpOffice\PhpSpreadsheet\Style\Fill; +use PhpOffice\PhpSpreadsheet\Style\Font; +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; +use PhpOffice\PhpSpreadsheet\Style\Protection; +use PhpOffice\PhpSpreadsheet\Style\Style; +use SimpleXMLElement; +use stdClass; + +class Styles extends BaseParserClass +{ + /** + * Theme instance. + * + * @var ?Theme + */ + private $theme; + + /** @var array */ + private $workbookPalette = []; + + /** @var array */ + private $styles = []; + + /** @var array */ + private $cellStyles = []; + + /** @var SimpleXMLElement */ + private $styleXml; + + /** @var string */ + private $namespace = ''; + + public function setNamespace(string $namespace): void + { + $this->namespace = $namespace; + } + + public function setWorkbookPalette(array $palette): void + { + $this->workbookPalette = $palette; + } + + /** + * Cast SimpleXMLElement to bool to overcome Scrutinizer problem. + * + * @param mixed $value + */ + private static function castBool($value): bool + { + return (bool) $value; + } + + private function getStyleAttributes(SimpleXMLElement $value): SimpleXMLElement + { + $attr = null; + if (self::castBool($value)) { + $attr = $value->attributes(''); + if ($attr === null || count($attr) === 0) { + $attr = $value->attributes($this->namespace); + } + } + + return Xlsx::testSimpleXml($attr); + } + + public function setStyleXml(SimpleXmlElement $styleXml): void + { + $this->styleXml = $styleXml; + } + + public function setTheme(Theme $theme): void + { + $this->theme = $theme; + } + + public function setStyleBaseData(?Theme $theme = null, array $styles = [], array $cellStyles = []): void + { + $this->theme = $theme; + $this->styles = $styles; + $this->cellStyles = $cellStyles; + } + + public function readFontStyle(Font $fontStyle, SimpleXMLElement $fontStyleXml): void + { + if (isset($fontStyleXml->name)) { + $attr = $this->getStyleAttributes($fontStyleXml->name); + if (isset($attr['val'])) { + $fontStyle->setName((string) $attr['val']); + } + } + if (isset($fontStyleXml->sz)) { + $attr = $this->getStyleAttributes($fontStyleXml->sz); + if (isset($attr['val'])) { + $fontStyle->setSize((float) $attr['val']); + } + } + if (isset($fontStyleXml->b)) { + $attr = $this->getStyleAttributes($fontStyleXml->b); + $fontStyle->setBold(!isset($attr['val']) || self::boolean((string) $attr['val'])); + } + if (isset($fontStyleXml->i)) { + $attr = $this->getStyleAttributes($fontStyleXml->i); + $fontStyle->setItalic(!isset($attr['val']) || self::boolean((string) $attr['val'])); + } + if (isset($fontStyleXml->strike)) { + $attr = $this->getStyleAttributes($fontStyleXml->strike); + $fontStyle->setStrikethrough(!isset($attr['val']) || self::boolean((string) $attr['val'])); + } + $fontStyle->getColor()->setARGB($this->readColor($fontStyleXml->color)); + + if (isset($fontStyleXml->u)) { + $attr = $this->getStyleAttributes($fontStyleXml->u); + if (!isset($attr['val'])) { + $fontStyle->setUnderline(Font::UNDERLINE_SINGLE); + } else { + $fontStyle->setUnderline((string) $attr['val']); + } + } + if (isset($fontStyleXml->vertAlign)) { + $attr = $this->getStyleAttributes($fontStyleXml->vertAlign); + if (isset($attr['val'])) { + $verticalAlign = strtolower((string) $attr['val']); + if ($verticalAlign === 'superscript') { + $fontStyle->setSuperscript(true); + } elseif ($verticalAlign === 'subscript') { + $fontStyle->setSubscript(true); + } + } + } + } + + private function readNumberFormat(NumberFormat $numfmtStyle, SimpleXMLElement $numfmtStyleXml): void + { + if ((string) $numfmtStyleXml['formatCode'] !== '') { + $numfmtStyle->setFormatCode(self::formatGeneral((string) $numfmtStyleXml['formatCode'])); + + return; + } + $numfmt = $this->getStyleAttributes($numfmtStyleXml); + if (isset($numfmt['formatCode'])) { + $numfmtStyle->setFormatCode(self::formatGeneral((string) $numfmt['formatCode'])); + } + } + + public function readFillStyle(Fill $fillStyle, SimpleXMLElement $fillStyleXml): void + { + if ($fillStyleXml->gradientFill) { + /** @var SimpleXMLElement $gradientFill */ + $gradientFill = $fillStyleXml->gradientFill[0]; + $attr = $this->getStyleAttributes($gradientFill); + if (!empty($attr['type'])) { + $fillStyle->setFillType((string) $attr['type']); + } + $fillStyle->setRotation((float) ($attr['degree'])); + $gradientFill->registerXPathNamespace('sml', Namespaces::MAIN); + $fillStyle->getStartColor()->setARGB($this->readColor(self::getArrayItem($gradientFill->xpath('sml:stop[@position=0]'))->color)); + $fillStyle->getEndColor()->setARGB($this->readColor(self::getArrayItem($gradientFill->xpath('sml:stop[@position=1]'))->color)); + } elseif ($fillStyleXml->patternFill) { + $defaultFillStyle = Fill::FILL_NONE; + if ($fillStyleXml->patternFill->fgColor) { + $fillStyle->getStartColor()->setARGB($this->readColor($fillStyleXml->patternFill->fgColor, true)); + $defaultFillStyle = Fill::FILL_SOLID; + } + if ($fillStyleXml->patternFill->bgColor) { + $fillStyle->getEndColor()->setARGB($this->readColor($fillStyleXml->patternFill->bgColor, true)); + $defaultFillStyle = Fill::FILL_SOLID; + } + + $type = ''; + if ((string) $fillStyleXml->patternFill['patternType'] !== '') { + $type = (string) $fillStyleXml->patternFill['patternType']; + } else { + $attr = $this->getStyleAttributes($fillStyleXml->patternFill); + $type = (string) $attr['patternType']; + } + $patternType = ($type === '') ? $defaultFillStyle : $type; + + $fillStyle->setFillType($patternType); + } + } + + public function readBorderStyle(Borders $borderStyle, SimpleXMLElement $borderStyleXml): void + { + $diagonalUp = $this->getAttribute($borderStyleXml, 'diagonalUp'); + $diagonalUp = self::boolean($diagonalUp); + $diagonalDown = $this->getAttribute($borderStyleXml, 'diagonalDown'); + $diagonalDown = self::boolean($diagonalDown); + if ($diagonalUp === false) { + if ($diagonalDown === false) { + $borderStyle->setDiagonalDirection(Borders::DIAGONAL_NONE); + } else { + $borderStyle->setDiagonalDirection(Borders::DIAGONAL_DOWN); + } + } elseif ($diagonalDown === false) { + $borderStyle->setDiagonalDirection(Borders::DIAGONAL_UP); + } else { + $borderStyle->setDiagonalDirection(Borders::DIAGONAL_BOTH); + } + + $this->readBorder($borderStyle->getLeft(), $borderStyleXml->left); + $this->readBorder($borderStyle->getRight(), $borderStyleXml->right); + $this->readBorder($borderStyle->getTop(), $borderStyleXml->top); + $this->readBorder($borderStyle->getBottom(), $borderStyleXml->bottom); + $this->readBorder($borderStyle->getDiagonal(), $borderStyleXml->diagonal); + } + + private function getAttribute(SimpleXMLElement $xml, string $attribute): string + { + $style = ''; + if ((string) $xml[$attribute] !== '') { + $style = (string) $xml[$attribute]; + } else { + $attr = $this->getStyleAttributes($xml); + if (isset($attr[$attribute])) { + $style = (string) $attr[$attribute]; + } + } + + return $style; + } + + private function readBorder(Border $border, SimpleXMLElement $borderXml): void + { + $style = $this->getAttribute($borderXml, 'style'); + if ($style !== '') { + $border->setBorderStyle((string) $style); + } + if (isset($borderXml->color)) { + $border->getColor()->setARGB($this->readColor($borderXml->color)); + } + } + + public function readAlignmentStyle(Alignment $alignment, SimpleXMLElement $alignmentXml): void + { + $horizontal = $this->getAttribute($alignmentXml, 'horizontal'); + $alignment->setHorizontal($horizontal); + $vertical = $this->getAttribute($alignmentXml, 'vertical'); + $alignment->setVertical((string) $vertical); + + $textRotation = (int) $this->getAttribute($alignmentXml, 'textRotation'); + if ($textRotation > 90) { + $textRotation = 90 - $textRotation; + } + $alignment->setTextRotation($textRotation); + + $wrapText = $this->getAttribute($alignmentXml, 'wrapText'); + $alignment->setWrapText(self::boolean((string) $wrapText)); + $shrinkToFit = $this->getAttribute($alignmentXml, 'shrinkToFit'); + $alignment->setShrinkToFit(self::boolean((string) $shrinkToFit)); + $indent = (int) $this->getAttribute($alignmentXml, 'indent'); + $alignment->setIndent(max($indent, 0)); + $readingOrder = (int) $this->getAttribute($alignmentXml, 'readingOrder'); + $alignment->setReadOrder(max($readingOrder, 0)); + } + + private static function formatGeneral(string $formatString): string + { + if ($formatString === 'GENERAL') { + $formatString = NumberFormat::FORMAT_GENERAL; + } + + return $formatString; + } + + /** + * Read style. + * + * @param SimpleXMLElement|stdClass $style + */ + public function readStyle(Style $docStyle, $style): void + { + if ($style->numFmt instanceof SimpleXMLElement) { + $this->readNumberFormat($docStyle->getNumberFormat(), $style->numFmt); + } else { + $docStyle->getNumberFormat()->setFormatCode(self::formatGeneral((string) $style->numFmt)); + } + + if (isset($style->font)) { + $this->readFontStyle($docStyle->getFont(), $style->font); + } + + if (isset($style->fill)) { + $this->readFillStyle($docStyle->getFill(), $style->fill); + } + + if (isset($style->border)) { + $this->readBorderStyle($docStyle->getBorders(), $style->border); + } + + if (isset($style->alignment)) { + $this->readAlignmentStyle($docStyle->getAlignment(), $style->alignment); + } + + // protection + if (isset($style->protection)) { + $this->readProtectionLocked($docStyle, $style->protection); + $this->readProtectionHidden($docStyle, $style->protection); + } + + // top-level style settings + if (isset($style->quotePrefix)) { + $docStyle->setQuotePrefix((bool) $style->quotePrefix); + } + } + + /** + * Read protection locked attribute. + */ + public function readProtectionLocked(Style $docStyle, SimpleXMLElement $style): void + { + $locked = ''; + if ((string) $style['locked'] !== '') { + $locked = (string) $style['locked']; + } else { + $attr = $this->getStyleAttributes($style); + if (isset($attr['locked'])) { + $locked = (string) $attr['locked']; + } + } + if ($locked !== '') { + if (self::boolean($locked)) { + $docStyle->getProtection()->setLocked(Protection::PROTECTION_PROTECTED); + } else { + $docStyle->getProtection()->setLocked(Protection::PROTECTION_UNPROTECTED); + } + } + } + + /** + * Read protection hidden attribute. + */ + public function readProtectionHidden(Style $docStyle, SimpleXMLElement $style): void + { + $hidden = ''; + if ((string) $style['hidden'] !== '') { + $hidden = (string) $style['hidden']; + } else { + $attr = $this->getStyleAttributes($style); + if (isset($attr['hidden'])) { + $hidden = (string) $attr['hidden']; + } + } + if ($hidden !== '') { + if (self::boolean((string) $hidden)) { + $docStyle->getProtection()->setHidden(Protection::PROTECTION_PROTECTED); + } else { + $docStyle->getProtection()->setHidden(Protection::PROTECTION_UNPROTECTED); + } + } + } + + public function readColor(SimpleXMLElement $color, bool $background = false): string + { + $attr = $this->getStyleAttributes($color); + if (isset($attr['rgb'])) { + return (string) $attr['rgb']; + } + if (isset($attr['indexed'])) { + if (empty($this->workbookPalette)) { + return Color::indexedColor((int) ($attr['indexed'] - 7), $background)->getARGB() ?? ''; + } + + return Color::indexedColor((int) ($attr['indexed']), $background, $this->workbookPalette)->getARGB() ?? ''; + } + if (isset($attr['theme'])) { + if ($this->theme !== null) { + $returnColour = $this->theme->getColourByIndex((int) $attr['theme']); + if (isset($attr['tint'])) { + $tintAdjust = (float) $attr['tint']; + $returnColour = Color::changeBrightness($returnColour ?? '', $tintAdjust); + } + + return 'FF' . $returnColour; + } + } + + return ($background) ? 'FFFFFFFF' : 'FF000000'; + } + + public function dxfs(bool $readDataOnly = false): array + { + $dxfs = []; + if (!$readDataOnly && $this->styleXml) { + // Conditional Styles + if ($this->styleXml->dxfs) { + foreach ($this->styleXml->dxfs->dxf as $dxf) { + $style = new Style(false, true); + $this->readStyle($style, $dxf); + $dxfs[] = $style; + } + } + // Cell Styles + if ($this->styleXml->cellStyles) { + foreach ($this->styleXml->cellStyles->cellStyle as $cellStylex) { + $cellStyle = Xlsx::getAttributes($cellStylex); + if ((int) ($cellStyle['builtinId']) == 0) { + if (isset($this->cellStyles[(int) ($cellStyle['xfId'])])) { + // Set default style + $style = new Style(); + $this->readStyle($style, $this->cellStyles[(int) ($cellStyle['xfId'])]); + + // normal style, currently not using it for anything + } + } + } + } + } + + return $dxfs; + } + + public function styles(): array + { + return $this->styles; + } + + /** + * Get array item. + * + * @param mixed $array (usually array, in theory can be false) + * + * @return stdClass + */ + private static function getArrayItem($array, int $key = 0) + { + return is_array($array) ? ($array[$key] ?? null) : null; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Theme.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Theme.php new file mode 100644 index 0000000..706c4d1 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Theme.php @@ -0,0 +1,78 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; + +class Theme +{ + /** + * Theme Name. + * + * @var string + */ + private $themeName; + + /** + * Colour Scheme Name. + * + * @var string + */ + private $colourSchemeName; + + /** + * Colour Map. + * + * @var string[] + */ + private $colourMap; + + /** + * Create a new Theme. + * + * @param string $themeName + * @param string $colourSchemeName + * @param string[] $colourMap + */ + public function __construct($themeName, $colourSchemeName, $colourMap) + { + // Initialise values + $this->themeName = $themeName; + $this->colourSchemeName = $colourSchemeName; + $this->colourMap = $colourMap; + } + + /** + * Not called by Reader, never accessible any other time. + * + * @return string + * + * @codeCoverageIgnore + */ + public function getThemeName() + { + return $this->themeName; + } + + /** + * Not called by Reader, never accessible any other time. + * + * @return string + * + * @codeCoverageIgnore + */ + public function getColourSchemeName() + { + return $this->colourSchemeName; + } + + /** + * Get colour Map Value by Position. + * + * @param int $index + * + * @return null|string + */ + public function getColourByIndex($index) + { + return $this->colourMap[$index] ?? null; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/WorkbookView.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/WorkbookView.php new file mode 100644 index 0000000..9d61e3d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/WorkbookView.php @@ -0,0 +1,153 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; + +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use SimpleXMLElement; + +class WorkbookView +{ + /** + * @var Spreadsheet + */ + private $spreadsheet; + + public function __construct(Spreadsheet $spreadsheet) + { + $this->spreadsheet = $spreadsheet; + } + + /** + * @param mixed $mainNS + */ + public function viewSettings(SimpleXMLElement $xmlWorkbook, $mainNS, array $mapSheetId, bool $readDataOnly): void + { + if ($this->spreadsheet->getSheetCount() == 0) { + $this->spreadsheet->createSheet(); + } + // Default active sheet index to the first loaded worksheet from the file + $this->spreadsheet->setActiveSheetIndex(0); + + $workbookView = $xmlWorkbook->children($mainNS)->bookViews->workbookView; + if (($readDataOnly !== true || !empty($this->loadSheetsOnly)) && !empty($workbookView)) { + $workbookViewAttributes = self::testSimpleXml(self::getAttributes($workbookView)); + // active sheet index + $activeTab = (int) $workbookViewAttributes->activeTab; // refers to old sheet index + // keep active sheet index if sheet is still loaded, else first sheet is set as the active worksheet + if (isset($mapSheetId[$activeTab]) && $mapSheetId[$activeTab] !== null) { + $this->spreadsheet->setActiveSheetIndex($mapSheetId[$activeTab]); + } + + $this->horizontalScroll($workbookViewAttributes); + $this->verticalScroll($workbookViewAttributes); + $this->sheetTabs($workbookViewAttributes); + $this->minimized($workbookViewAttributes); + $this->autoFilterDateGrouping($workbookViewAttributes); + $this->firstSheet($workbookViewAttributes); + $this->visibility($workbookViewAttributes); + $this->tabRatio($workbookViewAttributes); + } + } + + /** + * @param mixed $value + */ + public static function testSimpleXml($value): SimpleXMLElement + { + return ($value instanceof SimpleXMLElement) + ? $value + : new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8"?><root></root>'); + } + + public static function getAttributes(?SimpleXMLElement $value, string $ns = ''): SimpleXMLElement + { + return self::testSimpleXml($value === null ? $value : $value->attributes($ns)); + } + + /** + * Convert an 'xsd:boolean' XML value to a PHP boolean value. + * A valid 'xsd:boolean' XML value can be one of the following + * four values: 'true', 'false', '1', '0'. It is case sensitive. + * + * Note that just doing '(bool) $xsdBoolean' is not safe, + * since '(bool) "false"' returns true. + * + * @see https://www.w3.org/TR/xmlschema11-2/#boolean + * + * @param string $xsdBoolean An XML string value of type 'xsd:boolean' + * + * @return bool Boolean value + */ + private function castXsdBooleanToBool(string $xsdBoolean): bool + { + if ($xsdBoolean === 'false') { + return false; + } + + return (bool) $xsdBoolean; + } + + private function horizontalScroll(SimpleXMLElement $workbookViewAttributes): void + { + if (isset($workbookViewAttributes->showHorizontalScroll)) { + $showHorizontalScroll = (string) $workbookViewAttributes->showHorizontalScroll; + $this->spreadsheet->setShowHorizontalScroll($this->castXsdBooleanToBool($showHorizontalScroll)); + } + } + + private function verticalScroll(SimpleXMLElement $workbookViewAttributes): void + { + if (isset($workbookViewAttributes->showVerticalScroll)) { + $showVerticalScroll = (string) $workbookViewAttributes->showVerticalScroll; + $this->spreadsheet->setShowVerticalScroll($this->castXsdBooleanToBool($showVerticalScroll)); + } + } + + private function sheetTabs(SimpleXMLElement $workbookViewAttributes): void + { + if (isset($workbookViewAttributes->showSheetTabs)) { + $showSheetTabs = (string) $workbookViewAttributes->showSheetTabs; + $this->spreadsheet->setShowSheetTabs($this->castXsdBooleanToBool($showSheetTabs)); + } + } + + private function minimized(SimpleXMLElement $workbookViewAttributes): void + { + if (isset($workbookViewAttributes->minimized)) { + $minimized = (string) $workbookViewAttributes->minimized; + $this->spreadsheet->setMinimized($this->castXsdBooleanToBool($minimized)); + } + } + + private function autoFilterDateGrouping(SimpleXMLElement $workbookViewAttributes): void + { + if (isset($workbookViewAttributes->autoFilterDateGrouping)) { + $autoFilterDateGrouping = (string) $workbookViewAttributes->autoFilterDateGrouping; + $this->spreadsheet->setAutoFilterDateGrouping($this->castXsdBooleanToBool($autoFilterDateGrouping)); + } + } + + private function firstSheet(SimpleXMLElement $workbookViewAttributes): void + { + if (isset($workbookViewAttributes->firstSheet)) { + $firstSheet = (string) $workbookViewAttributes->firstSheet; + $this->spreadsheet->setFirstSheetIndex((int) $firstSheet); + } + } + + private function visibility(SimpleXMLElement $workbookViewAttributes): void + { + if (isset($workbookViewAttributes->visibility)) { + $visibility = (string) $workbookViewAttributes->visibility; + $this->spreadsheet->setVisibility($visibility); + } + } + + private function tabRatio(SimpleXMLElement $workbookViewAttributes): void + { + if (isset($workbookViewAttributes->tabRatio)) { + $tabRatio = (string) $workbookViewAttributes->tabRatio; + $this->spreadsheet->setTabRatio((int) $tabRatio); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml.php new file mode 100644 index 0000000..0b5e096 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml.php @@ -0,0 +1,532 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader; + +use DateTime; +use DateTimeZone; +use PhpOffice\PhpSpreadsheet\Cell\AddressHelper; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Cell\DataType; +use PhpOffice\PhpSpreadsheet\DefinedName; +use PhpOffice\PhpSpreadsheet\Reader\Security\XmlScanner; +use PhpOffice\PhpSpreadsheet\Reader\Xml\PageSettings; +use PhpOffice\PhpSpreadsheet\Reader\Xml\Properties; +use PhpOffice\PhpSpreadsheet\Reader\Xml\Style; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\Settings; +use PhpOffice\PhpSpreadsheet\Shared\Date; +use PhpOffice\PhpSpreadsheet\Shared\File; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use SimpleXMLElement; + +/** + * Reader for SpreadsheetML, the XML schema for Microsoft Office Excel 2003. + */ +class Xml extends BaseReader +{ + /** + * Formats. + * + * @var array + */ + protected $styles = []; + + /** + * Create a new Excel2003XML Reader instance. + */ + public function __construct() + { + parent::__construct(); + $this->securityScanner = XmlScanner::getInstance($this); + } + + private $fileContents = ''; + + public static function xmlMappings(): array + { + return array_merge( + Style\Fill::FILL_MAPPINGS, + Style\Border::BORDER_MAPPINGS + ); + } + + /** + * Can the current IReader read the file? + */ + public function canRead(string $filename): bool + { + // Office xmlns:o="urn:schemas-microsoft-com:office:office" + // Excel xmlns:x="urn:schemas-microsoft-com:office:excel" + // XML Spreadsheet xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" + // Spreadsheet component xmlns:c="urn:schemas-microsoft-com:office:component:spreadsheet" + // XML schema xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882" + // XML data type xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" + // MS-persist recordset xmlns:rs="urn:schemas-microsoft-com:rowset" + // Rowset xmlns:z="#RowsetSchema" + // + + $signature = [ + '<?xml version="1.0"', + 'xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet', + ]; + + // Open file + $data = file_get_contents($filename); + + // Why? + //$data = str_replace("'", '"', $data); // fix headers with single quote + + $valid = true; + foreach ($signature as $match) { + // every part of the signature must be present + if (strpos($data, $match) === false) { + $valid = false; + + break; + } + } + + // Retrieve charset encoding + if (preg_match('/<?xml.*encoding=[\'"](.*?)[\'"].*?>/m', $data, $matches)) { + $charSet = strtoupper($matches[1]); + if (preg_match('/^ISO-8859-\d[\dL]?$/i', $charSet) === 1) { + $data = StringHelper::convertEncoding($data, 'UTF-8', $charSet); + $data = (string) preg_replace('/(<?xml.*encoding=[\'"]).*?([\'"].*?>)/um', '$1' . 'UTF-8' . '$2', $data, 1); + } + } + $this->fileContents = $data; + + return $valid; + } + + /** + * Check if the file is a valid SimpleXML. + * + * @param string $filename + * + * @return false|SimpleXMLElement + */ + public function trySimpleXMLLoadString($filename) + { + try { + $xml = simplexml_load_string( + $this->securityScanner->scan($this->fileContents ?: file_get_contents($filename)), + 'SimpleXMLElement', + Settings::getLibXmlLoaderOptions() + ); + } catch (\Exception $e) { + throw new Exception('Cannot load invalid XML file: ' . $filename, 0, $e); + } + $this->fileContents = ''; + + return $xml; + } + + /** + * Reads names of the worksheets from a file, without parsing the whole file to a Spreadsheet object. + * + * @param string $filename + * + * @return array + */ + public function listWorksheetNames($filename) + { + File::assertFile($filename); + if (!$this->canRead($filename)) { + throw new Exception($filename . ' is an Invalid Spreadsheet file.'); + } + + $worksheetNames = []; + + $xml = $this->trySimpleXMLLoadString($filename); + if ($xml === false) { + throw new Exception("Problem reading {$filename}"); + } + + $namespaces = $xml->getNamespaces(true); + + $xml_ss = $xml->children($namespaces['ss']); + foreach ($xml_ss->Worksheet as $worksheet) { + $worksheet_ss = self::getAttributes($worksheet, $namespaces['ss']); + $worksheetNames[] = (string) $worksheet_ss['Name']; + } + + return $worksheetNames; + } + + /** + * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns). + * + * @param string $filename + * + * @return array + */ + public function listWorksheetInfo($filename) + { + File::assertFile($filename); + if (!$this->canRead($filename)) { + throw new Exception($filename . ' is an Invalid Spreadsheet file.'); + } + + $worksheetInfo = []; + + $xml = $this->trySimpleXMLLoadString($filename); + if ($xml === false) { + throw new Exception("Problem reading {$filename}"); + } + + $namespaces = $xml->getNamespaces(true); + + $worksheetID = 1; + $xml_ss = $xml->children($namespaces['ss']); + foreach ($xml_ss->Worksheet as $worksheet) { + $worksheet_ss = self::getAttributes($worksheet, $namespaces['ss']); + + $tmpInfo = []; + $tmpInfo['worksheetName'] = ''; + $tmpInfo['lastColumnLetter'] = 'A'; + $tmpInfo['lastColumnIndex'] = 0; + $tmpInfo['totalRows'] = 0; + $tmpInfo['totalColumns'] = 0; + + $tmpInfo['worksheetName'] = "Worksheet_{$worksheetID}"; + if (isset($worksheet_ss['Name'])) { + $tmpInfo['worksheetName'] = (string) $worksheet_ss['Name']; + } + + if (isset($worksheet->Table->Row)) { + $rowIndex = 0; + + foreach ($worksheet->Table->Row as $rowData) { + $columnIndex = 0; + $rowHasData = false; + + foreach ($rowData->Cell as $cell) { + if (isset($cell->Data)) { + $tmpInfo['lastColumnIndex'] = max($tmpInfo['lastColumnIndex'], $columnIndex); + $rowHasData = true; + } + + ++$columnIndex; + } + + ++$rowIndex; + + if ($rowHasData) { + $tmpInfo['totalRows'] = max($tmpInfo['totalRows'], $rowIndex); + } + } + } + + $tmpInfo['lastColumnLetter'] = Coordinate::stringFromColumnIndex($tmpInfo['lastColumnIndex'] + 1); + $tmpInfo['totalColumns'] = $tmpInfo['lastColumnIndex'] + 1; + + $worksheetInfo[] = $tmpInfo; + ++$worksheetID; + } + + return $worksheetInfo; + } + + /** + * Loads Spreadsheet from file. + */ + protected function loadSpreadsheetFromFile(string $filename): Spreadsheet + { + // Create new Spreadsheet + $spreadsheet = new Spreadsheet(); + $spreadsheet->removeSheetByIndex(0); + + // Load into this instance + return $this->loadIntoExisting($filename, $spreadsheet); + } + + /** + * Loads from file into Spreadsheet instance. + * + * @param string $filename + * + * @return Spreadsheet + */ + public function loadIntoExisting($filename, Spreadsheet $spreadsheet) + { + File::assertFile($filename); + if (!$this->canRead($filename)) { + throw new Exception($filename . ' is an Invalid Spreadsheet file.'); + } + + $xml = $this->trySimpleXMLLoadString($filename); + if ($xml === false) { + throw new Exception("Problem reading {$filename}"); + } + + $namespaces = $xml->getNamespaces(true); + + (new Properties($spreadsheet))->readProperties($xml, $namespaces); + + $this->styles = (new Style())->parseStyles($xml, $namespaces); + + $worksheetID = 0; + $xml_ss = $xml->children($namespaces['ss']); + + /** @var null|SimpleXMLElement $worksheetx */ + foreach ($xml_ss->Worksheet as $worksheetx) { + $worksheet = $worksheetx ?? new SimpleXMLElement('<xml></xml>'); + $worksheet_ss = self::getAttributes($worksheet, $namespaces['ss']); + + if ( + isset($this->loadSheetsOnly, $worksheet_ss['Name']) && + (!in_array($worksheet_ss['Name'], $this->loadSheetsOnly)) + ) { + continue; + } + + // Create new Worksheet + $spreadsheet->createSheet(); + $spreadsheet->setActiveSheetIndex($worksheetID); + $worksheetName = ''; + if (isset($worksheet_ss['Name'])) { + $worksheetName = (string) $worksheet_ss['Name']; + // Use false for $updateFormulaCellReferences to prevent adjustment of worksheet references in + // formula cells... during the load, all formulae should be correct, and we're simply bringing + // the worksheet name in line with the formula, not the reverse + $spreadsheet->getActiveSheet()->setTitle($worksheetName, false, false); + } + + // locally scoped defined names + if (isset($worksheet->Names[0])) { + foreach ($worksheet->Names[0] as $definedName) { + $definedName_ss = self::getAttributes($definedName, $namespaces['ss']); + $name = (string) $definedName_ss['Name']; + $definedValue = (string) $definedName_ss['RefersTo']; + $convertedValue = AddressHelper::convertFormulaToA1($definedValue); + if ($convertedValue[0] === '=') { + $convertedValue = substr($convertedValue, 1); + } + $spreadsheet->addDefinedName(DefinedName::createInstance($name, $spreadsheet->getActiveSheet(), $convertedValue, true)); + } + } + + $columnID = 'A'; + if (isset($worksheet->Table->Column)) { + foreach ($worksheet->Table->Column as $columnData) { + $columnData_ss = self::getAttributes($columnData, $namespaces['ss']); + if (isset($columnData_ss['Index'])) { + $columnID = Coordinate::stringFromColumnIndex((int) $columnData_ss['Index']); + } + if (isset($columnData_ss['Width'])) { + $columnWidth = $columnData_ss['Width']; + $spreadsheet->getActiveSheet()->getColumnDimension($columnID)->setWidth($columnWidth / 5.4); + } + ++$columnID; + } + } + + $rowID = 1; + if (isset($worksheet->Table->Row)) { + $additionalMergedCells = 0; + foreach ($worksheet->Table->Row as $rowData) { + $rowHasData = false; + $row_ss = self::getAttributes($rowData, $namespaces['ss']); + if (isset($row_ss['Index'])) { + $rowID = (int) $row_ss['Index']; + } + + $columnID = 'A'; + foreach ($rowData->Cell as $cell) { + $cell_ss = self::getAttributes($cell, $namespaces['ss']); + if (isset($cell_ss['Index'])) { + $columnID = Coordinate::stringFromColumnIndex((int) $cell_ss['Index']); + } + $cellRange = $columnID . $rowID; + + if ($this->getReadFilter() !== null) { + if (!$this->getReadFilter()->readCell($columnID, $rowID, $worksheetName)) { + ++$columnID; + + continue; + } + } + + if (isset($cell_ss['HRef'])) { + $spreadsheet->getActiveSheet()->getCell($cellRange)->getHyperlink()->setUrl((string) $cell_ss['HRef']); + } + + if ((isset($cell_ss['MergeAcross'])) || (isset($cell_ss['MergeDown']))) { + $columnTo = $columnID; + if (isset($cell_ss['MergeAcross'])) { + $additionalMergedCells += (int) $cell_ss['MergeAcross']; + $columnTo = Coordinate::stringFromColumnIndex((int) (Coordinate::columnIndexFromString($columnID) + $cell_ss['MergeAcross'])); + } + $rowTo = $rowID; + if (isset($cell_ss['MergeDown'])) { + $rowTo = $rowTo + $cell_ss['MergeDown']; + } + $cellRange .= ':' . $columnTo . $rowTo; + $spreadsheet->getActiveSheet()->mergeCells($cellRange); + } + + $hasCalculatedValue = false; + $cellDataFormula = ''; + if (isset($cell_ss['Formula'])) { + $cellDataFormula = $cell_ss['Formula']; + $hasCalculatedValue = true; + } + if (isset($cell->Data)) { + $cellData = $cell->Data; + $cellValue = (string) $cellData; + $type = DataType::TYPE_NULL; + $cellData_ss = self::getAttributes($cellData, $namespaces['ss']); + if (isset($cellData_ss['Type'])) { + $cellDataType = $cellData_ss['Type']; + switch ($cellDataType) { + /* + const TYPE_STRING = 's'; + const TYPE_FORMULA = 'f'; + const TYPE_NUMERIC = 'n'; + const TYPE_BOOL = 'b'; + const TYPE_NULL = 'null'; + const TYPE_INLINE = 'inlineStr'; + const TYPE_ERROR = 'e'; + */ + case 'String': + $type = DataType::TYPE_STRING; + + break; + case 'Number': + $type = DataType::TYPE_NUMERIC; + $cellValue = (float) $cellValue; + if (floor($cellValue) == $cellValue) { + $cellValue = (int) $cellValue; + } + + break; + case 'Boolean': + $type = DataType::TYPE_BOOL; + $cellValue = ($cellValue != 0); + + break; + case 'DateTime': + $type = DataType::TYPE_NUMERIC; + $dateTime = new DateTime($cellValue, new DateTimeZone('UTC')); + $cellValue = Date::PHPToExcel($dateTime); + + break; + case 'Error': + $type = DataType::TYPE_ERROR; + $hasCalculatedValue = false; + + break; + } + } + + if ($hasCalculatedValue) { + $type = DataType::TYPE_FORMULA; + $columnNumber = Coordinate::columnIndexFromString($columnID); + $cellDataFormula = AddressHelper::convertFormulaToA1($cellDataFormula, $rowID, $columnNumber); + } + + $spreadsheet->getActiveSheet()->getCell($columnID . $rowID)->setValueExplicit((($hasCalculatedValue) ? $cellDataFormula : $cellValue), $type); + if ($hasCalculatedValue) { + $spreadsheet->getActiveSheet()->getCell($columnID . $rowID)->setCalculatedValue($cellValue); + } + $rowHasData = true; + } + + if (isset($cell->Comment)) { + $this->parseCellComment($cell->Comment, $namespaces, $spreadsheet, $columnID, $rowID); + } + + if (isset($cell_ss['StyleID'])) { + $style = (string) $cell_ss['StyleID']; + if ((isset($this->styles[$style])) && (!empty($this->styles[$style]))) { + //if (!$spreadsheet->getActiveSheet()->cellExists($columnID . $rowID)) { + // $spreadsheet->getActiveSheet()->getCell($columnID . $rowID)->setValue(null); + //} + $spreadsheet->getActiveSheet()->getStyle($cellRange) + ->applyFromArray($this->styles[$style]); + } + } + ++$columnID; + while ($additionalMergedCells > 0) { + ++$columnID; + --$additionalMergedCells; + } + } + + if ($rowHasData) { + if (isset($row_ss['Height'])) { + $rowHeight = $row_ss['Height']; + $spreadsheet->getActiveSheet()->getRowDimension($rowID)->setRowHeight((float) $rowHeight); + } + } + + ++$rowID; + } + + if (isset($namespaces['x'])) { + $xmlX = $worksheet->children($namespaces['x']); + if (isset($xmlX->WorksheetOptions)) { + (new PageSettings($xmlX, $namespaces))->loadPageSettings($spreadsheet); + } + } + } + ++$worksheetID; + } + + // Globally scoped defined names + $activeWorksheet = $spreadsheet->setActiveSheetIndex(0); + if (isset($xml->Names[0])) { + foreach ($xml->Names[0] as $definedName) { + $definedName_ss = self::getAttributes($definedName, $namespaces['ss']); + $name = (string) $definedName_ss['Name']; + $definedValue = (string) $definedName_ss['RefersTo']; + $convertedValue = AddressHelper::convertFormulaToA1($definedValue); + if ($convertedValue[0] === '=') { + $convertedValue = substr($convertedValue, 1); + } + $spreadsheet->addDefinedName(DefinedName::createInstance($name, $activeWorksheet, $convertedValue)); + } + } + + // Return + return $spreadsheet; + } + + protected function parseCellComment( + SimpleXMLElement $comment, + array $namespaces, + Spreadsheet $spreadsheet, + string $columnID, + int $rowID + ): void { + $commentAttributes = $comment->attributes($namespaces['ss']); + $author = 'unknown'; + if (isset($commentAttributes->Author)) { + $author = (string) $commentAttributes->Author; + } + + $node = $comment->Data->asXML(); + $annotation = strip_tags((string) $node); + $spreadsheet->getActiveSheet()->getComment($columnID . $rowID) + ->setAuthor($author) + ->setText($this->parseRichText($annotation)); + } + + protected function parseRichText(string $annotation): RichText + { + $value = new RichText(); + + $value->createText($annotation); + + return $value; + } + + private static function getAttributes(?SimpleXMLElement $simple, string $node): SimpleXMLElement + { + return ($simple === null) + ? new SimpleXMLElement('<xml></xml>') + : ($simple->attributes($node) ?? new SimpleXMLElement('<xml></xml>')); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/PageSettings.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/PageSettings.php new file mode 100644 index 0000000..c0caca3 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/PageSettings.php @@ -0,0 +1,134 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xml; + +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\PageSetup; +use SimpleXMLElement; +use stdClass; + +class PageSettings +{ + /** + * @var stdClass + */ + private $printSettings; + + public function __construct(SimpleXMLElement $xmlX, array $namespaces) + { + $printSettings = $this->pageSetup($xmlX, $namespaces, $this->getPrintDefaults()); + $this->printSettings = $this->printSetup($xmlX, $printSettings); + } + + public function loadPageSettings(Spreadsheet $spreadsheet): void + { + $spreadsheet->getActiveSheet()->getPageSetup() + ->setPaperSize($this->printSettings->paperSize) + ->setOrientation($this->printSettings->orientation) + ->setScale($this->printSettings->scale) + ->setVerticalCentered($this->printSettings->verticalCentered) + ->setHorizontalCentered($this->printSettings->horizontalCentered) + ->setPageOrder($this->printSettings->printOrder); + $spreadsheet->getActiveSheet()->getPageMargins() + ->setTop($this->printSettings->topMargin) + ->setHeader($this->printSettings->headerMargin) + ->setLeft($this->printSettings->leftMargin) + ->setRight($this->printSettings->rightMargin) + ->setBottom($this->printSettings->bottomMargin) + ->setFooter($this->printSettings->footerMargin); + } + + private function getPrintDefaults(): stdClass + { + return (object) [ + 'paperSize' => 9, + 'orientation' => PageSetup::ORIENTATION_DEFAULT, + 'scale' => 100, + 'horizontalCentered' => false, + 'verticalCentered' => false, + 'printOrder' => PageSetup::PAGEORDER_DOWN_THEN_OVER, + 'topMargin' => 0.75, + 'headerMargin' => 0.3, + 'leftMargin' => 0.7, + 'rightMargin' => 0.7, + 'bottomMargin' => 0.75, + 'footerMargin' => 0.3, + ]; + } + + private function pageSetup(SimpleXMLElement $xmlX, array $namespaces, stdClass $printDefaults): stdClass + { + if (isset($xmlX->WorksheetOptions->PageSetup)) { + foreach ($xmlX->WorksheetOptions->PageSetup as $pageSetupData) { + foreach ($pageSetupData as $pageSetupKey => $pageSetupValue) { + $pageSetupAttributes = $pageSetupValue->attributes($namespaces['x']); + if (!$pageSetupAttributes) { + continue; + } + + switch ($pageSetupKey) { + case 'Layout': + $this->setLayout($printDefaults, $pageSetupAttributes); + + break; + case 'Header': + $printDefaults->headerMargin = (float) $pageSetupAttributes->Margin ?: 1.0; + + break; + case 'Footer': + $printDefaults->footerMargin = (float) $pageSetupAttributes->Margin ?: 1.0; + + break; + case 'PageMargins': + $this->setMargins($printDefaults, $pageSetupAttributes); + + break; + } + } + } + } + + return $printDefaults; + } + + private function printSetup(SimpleXMLElement $xmlX, stdClass $printDefaults): stdClass + { + if (isset($xmlX->WorksheetOptions->Print)) { + foreach ($xmlX->WorksheetOptions->Print as $printData) { + foreach ($printData as $printKey => $printValue) { + switch ($printKey) { + case 'LeftToRight': + $printDefaults->printOrder = PageSetup::PAGEORDER_OVER_THEN_DOWN; + + break; + case 'PaperSizeIndex': + $printDefaults->paperSize = (int) $printValue ?: 9; + + break; + case 'Scale': + $printDefaults->scale = (int) $printValue ?: 100; + + break; + } + } + } + } + + return $printDefaults; + } + + private function setLayout(stdClass $printDefaults, SimpleXMLElement $pageSetupAttributes): void + { + $printDefaults->orientation = (string) strtolower($pageSetupAttributes->Orientation ?? '') ?: PageSetup::ORIENTATION_PORTRAIT; + $printDefaults->horizontalCentered = (bool) $pageSetupAttributes->CenterHorizontal ?: false; + $printDefaults->verticalCentered = (bool) $pageSetupAttributes->CenterVertical ?: false; + } + + private function setMargins(stdClass $printDefaults, SimpleXMLElement $pageSetupAttributes): void + { + $printDefaults->leftMargin = (float) $pageSetupAttributes->Left ?: 1.0; + $printDefaults->rightMargin = (float) $pageSetupAttributes->Right ?: 1.0; + $printDefaults->topMargin = (float) $pageSetupAttributes->Top ?: 1.0; + $printDefaults->bottomMargin = (float) $pageSetupAttributes->Bottom ?: 1.0; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Properties.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Properties.php new file mode 100644 index 0000000..9e10526 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Properties.php @@ -0,0 +1,157 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xml; + +use PhpOffice\PhpSpreadsheet\Document\Properties as DocumentProperties; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use SimpleXMLElement; + +class Properties +{ + /** + * @var Spreadsheet + */ + protected $spreadsheet; + + public function __construct(Spreadsheet $spreadsheet) + { + $this->spreadsheet = $spreadsheet; + } + + public function readProperties(SimpleXMLElement $xml, array $namespaces): void + { + $this->readStandardProperties($xml); + $this->readCustomProperties($xml, $namespaces); + } + + protected function readStandardProperties(SimpleXMLElement $xml): void + { + if (isset($xml->DocumentProperties[0])) { + $docProps = $this->spreadsheet->getProperties(); + + foreach ($xml->DocumentProperties[0] as $propertyName => $propertyValue) { + $propertyValue = (string) $propertyValue; + + $this->processStandardProperty($docProps, $propertyName, $propertyValue); + } + } + } + + protected function readCustomProperties(SimpleXMLElement $xml, array $namespaces): void + { + if (isset($xml->CustomDocumentProperties)) { + $docProps = $this->spreadsheet->getProperties(); + + foreach ($xml->CustomDocumentProperties[0] as $propertyName => $propertyValue) { + $propertyAttributes = self::getAttributes($propertyValue, $namespaces['dt']); + $propertyName = (string) preg_replace_callback('/_x([0-9a-f]{4})_/i', [$this, 'hex2str'], $propertyName); + + $this->processCustomProperty($docProps, $propertyName, $propertyValue, $propertyAttributes); + } + } + } + + protected function processStandardProperty( + DocumentProperties $docProps, + string $propertyName, + string $stringValue + ): void { + switch ($propertyName) { + case 'Title': + $docProps->setTitle($stringValue); + + break; + case 'Subject': + $docProps->setSubject($stringValue); + + break; + case 'Author': + $docProps->setCreator($stringValue); + + break; + case 'Created': + $docProps->setCreated($stringValue); + + break; + case 'LastAuthor': + $docProps->setLastModifiedBy($stringValue); + + break; + case 'LastSaved': + $docProps->setModified($stringValue); + + break; + case 'Company': + $docProps->setCompany($stringValue); + + break; + case 'Category': + $docProps->setCategory($stringValue); + + break; + case 'Manager': + $docProps->setManager($stringValue); + + break; + case 'Keywords': + $docProps->setKeywords($stringValue); + + break; + case 'Description': + $docProps->setDescription($stringValue); + + break; + } + } + + protected function processCustomProperty( + DocumentProperties $docProps, + string $propertyName, + ?SimpleXMLElement $propertyValue, + SimpleXMLElement $propertyAttributes + ): void { + $propertyType = DocumentProperties::PROPERTY_TYPE_UNKNOWN; + + switch ((string) $propertyAttributes) { + case 'string': + $propertyType = DocumentProperties::PROPERTY_TYPE_STRING; + $propertyValue = trim((string) $propertyValue); + + break; + case 'boolean': + $propertyType = DocumentProperties::PROPERTY_TYPE_BOOLEAN; + $propertyValue = (bool) $propertyValue; + + break; + case 'integer': + $propertyType = DocumentProperties::PROPERTY_TYPE_INTEGER; + $propertyValue = (int) $propertyValue; + + break; + case 'float': + $propertyType = DocumentProperties::PROPERTY_TYPE_FLOAT; + $propertyValue = (float) $propertyValue; + + break; + case 'dateTime.tz': + $propertyType = DocumentProperties::PROPERTY_TYPE_DATE; + $propertyValue = trim((string) $propertyValue); + + break; + } + + $docProps->setCustomProperty($propertyName, $propertyValue, $propertyType); + } + + protected function hex2str(array $hex): string + { + return mb_chr((int) hexdec($hex[1]), 'UTF-8'); + } + + private static function getAttributes(?SimpleXMLElement $simple, string $node): SimpleXMLElement + { + return ($simple === null) + ? new SimpleXMLElement('<xml></xml>') + : ($simple->attributes($node) ?? new SimpleXMLElement('<xml></xml>')); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style.php new file mode 100644 index 0000000..0e3cd16 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style.php @@ -0,0 +1,83 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xml; + +use SimpleXMLElement; + +class Style +{ + /** + * Formats. + * + * @var array + */ + protected $styles = []; + + public function parseStyles(SimpleXMLElement $xml, array $namespaces): array + { + if (!isset($xml->Styles)) { + return []; + } + + $alignmentStyleParser = new Style\Alignment(); + $borderStyleParser = new Style\Border(); + $fontStyleParser = new Style\Font(); + $fillStyleParser = new Style\Fill(); + $numberFormatStyleParser = new Style\NumberFormat(); + + foreach ($xml->Styles[0] as $style) { + $style_ss = self::getAttributes($style, $namespaces['ss']); + $styleID = (string) $style_ss['ID']; + $this->styles[$styleID] = $this->styles['Default'] ?? []; + + $alignment = $border = $font = $fill = $numberFormat = []; + + foreach ($style as $styleType => $styleDatax) { + $styleData = $styleDatax ?? new SimpleXMLElement('<xml></xml>'); + $styleAttributes = $styleData->attributes($namespaces['ss']); + + switch ($styleType) { + case 'Alignment': + if ($styleAttributes) { + $alignment = $alignmentStyleParser->parseStyle($styleAttributes); + } + + break; + case 'Borders': + $border = $borderStyleParser->parseStyle($styleData, $namespaces); + + break; + case 'Font': + if ($styleAttributes) { + $font = $fontStyleParser->parseStyle($styleAttributes); + } + + break; + case 'Interior': + if ($styleAttributes) { + $fill = $fillStyleParser->parseStyle($styleAttributes); + } + + break; + case 'NumberFormat': + if ($styleAttributes) { + $numberFormat = $numberFormatStyleParser->parseStyle($styleAttributes); + } + + break; + } + } + + $this->styles[$styleID] = array_merge($alignment, $border, $font, $fill, $numberFormat); + } + + return $this->styles; + } + + protected static function getAttributes(?SimpleXMLElement $simple, string $node): SimpleXMLElement + { + return ($simple === null) + ? new SimpleXMLElement('<xml></xml>') + : ($simple->attributes($node) ?? new SimpleXMLElement('<xml></xml>')); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Alignment.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Alignment.php new file mode 100644 index 0000000..d136354 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Alignment.php @@ -0,0 +1,58 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xml\Style; + +use PhpOffice\PhpSpreadsheet\Style\Alignment as AlignmentStyles; +use SimpleXMLElement; + +class Alignment extends StyleBase +{ + protected const VERTICAL_ALIGNMENT_STYLES = [ + AlignmentStyles::VERTICAL_BOTTOM, + AlignmentStyles::VERTICAL_TOP, + AlignmentStyles::VERTICAL_CENTER, + AlignmentStyles::VERTICAL_JUSTIFY, + ]; + + protected const HORIZONTAL_ALIGNMENT_STYLES = [ + AlignmentStyles::HORIZONTAL_GENERAL, + AlignmentStyles::HORIZONTAL_LEFT, + AlignmentStyles::HORIZONTAL_RIGHT, + AlignmentStyles::HORIZONTAL_CENTER, + AlignmentStyles::HORIZONTAL_CENTER_CONTINUOUS, + AlignmentStyles::HORIZONTAL_JUSTIFY, + ]; + + public function parseStyle(SimpleXMLElement $styleAttributes): array + { + $style = []; + + foreach ($styleAttributes as $styleAttributeKey => $styleAttributeValue) { + $styleAttributeValue = (string) $styleAttributeValue; + switch ($styleAttributeKey) { + case 'Vertical': + if (self::identifyFixedStyleValue(self::VERTICAL_ALIGNMENT_STYLES, $styleAttributeValue)) { + $style['alignment']['vertical'] = $styleAttributeValue; + } + + break; + case 'Horizontal': + if (self::identifyFixedStyleValue(self::HORIZONTAL_ALIGNMENT_STYLES, $styleAttributeValue)) { + $style['alignment']['horizontal'] = $styleAttributeValue; + } + + break; + case 'WrapText': + $style['alignment']['wrapText'] = true; + + break; + case 'Rotate': + $style['alignment']['textRotation'] = $styleAttributeValue; + + break; + } + } + + return $style; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Border.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Border.php new file mode 100644 index 0000000..8aefd9c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Border.php @@ -0,0 +1,98 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xml\Style; + +use PhpOffice\PhpSpreadsheet\Style\Border as BorderStyle; +use PhpOffice\PhpSpreadsheet\Style\Borders; +use SimpleXMLElement; + +class Border extends StyleBase +{ + protected const BORDER_POSITIONS = [ + 'top', + 'left', + 'bottom', + 'right', + ]; + + /** + * @var array + */ + public const BORDER_MAPPINGS = [ + 'borderStyle' => [ + '1continuous' => BorderStyle::BORDER_THIN, + '1dash' => BorderStyle::BORDER_DASHED, + '1dashdot' => BorderStyle::BORDER_DASHDOT, + '1dashdotdot' => BorderStyle::BORDER_DASHDOTDOT, + '1dot' => BorderStyle::BORDER_DOTTED, + '1double' => BorderStyle::BORDER_DOUBLE, + '2continuous' => BorderStyle::BORDER_MEDIUM, + '2dash' => BorderStyle::BORDER_MEDIUMDASHED, + '2dashdot' => BorderStyle::BORDER_MEDIUMDASHDOT, + '2dashdotdot' => BorderStyle::BORDER_MEDIUMDASHDOTDOT, + '2dot' => BorderStyle::BORDER_DOTTED, + '2double' => BorderStyle::BORDER_DOUBLE, + '3continuous' => BorderStyle::BORDER_THICK, + '3dash' => BorderStyle::BORDER_MEDIUMDASHED, + '3dashdot' => BorderStyle::BORDER_MEDIUMDASHDOT, + '3dashdotdot' => BorderStyle::BORDER_MEDIUMDASHDOTDOT, + '3dot' => BorderStyle::BORDER_DOTTED, + '3double' => BorderStyle::BORDER_DOUBLE, + ], + ]; + + public function parseStyle(SimpleXMLElement $styleData, array $namespaces): array + { + $style = []; + + $diagonalDirection = ''; + $borderPosition = ''; + foreach ($styleData->Border as $borderStyle) { + $borderAttributes = self::getAttributes($borderStyle, $namespaces['ss']); + $thisBorder = []; + $styleType = (string) $borderAttributes->Weight; + $styleType .= strtolower((string) $borderAttributes->LineStyle); + $thisBorder['borderStyle'] = self::BORDER_MAPPINGS['borderStyle'][$styleType] ?? BorderStyle::BORDER_NONE; + + foreach ($borderAttributes as $borderStyleKey => $borderStyleValuex) { + $borderStyleValue = (string) $borderStyleValuex; + switch ($borderStyleKey) { + case 'Position': + [$borderPosition, $diagonalDirection] = + $this->parsePosition($borderStyleValue, $diagonalDirection); + + break; + case 'Color': + $borderColour = substr($borderStyleValue, 1); + $thisBorder['color']['rgb'] = $borderColour; + + break; + } + } + + if ($borderPosition) { + $style['borders'][$borderPosition] = $thisBorder; + } elseif ($diagonalDirection) { + $style['borders']['diagonalDirection'] = $diagonalDirection; + $style['borders']['diagonal'] = $thisBorder; + } + } + + return $style; + } + + protected function parsePosition(string $borderStyleValue, string $diagonalDirection): array + { + $borderStyleValue = strtolower($borderStyleValue); + + if (in_array($borderStyleValue, self::BORDER_POSITIONS)) { + $borderPosition = $borderStyleValue; + } elseif ($borderStyleValue === 'diagonalleft') { + $diagonalDirection = $diagonalDirection ? Borders::DIAGONAL_BOTH : Borders::DIAGONAL_DOWN; + } elseif ($borderStyleValue === 'diagonalright') { + $diagonalDirection = $diagonalDirection ? Borders::DIAGONAL_BOTH : Borders::DIAGONAL_UP; + } + + return [$borderPosition ?? null, $diagonalDirection]; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Fill.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Fill.php new file mode 100644 index 0000000..9a61215 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Fill.php @@ -0,0 +1,63 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xml\Style; + +use PhpOffice\PhpSpreadsheet\Style\Fill as FillStyles; +use SimpleXMLElement; + +class Fill extends StyleBase +{ + /** + * @var array + */ + public const FILL_MAPPINGS = [ + 'fillType' => [ + 'solid' => FillStyles::FILL_SOLID, + 'gray75' => FillStyles::FILL_PATTERN_DARKGRAY, + 'gray50' => FillStyles::FILL_PATTERN_MEDIUMGRAY, + 'gray25' => FillStyles::FILL_PATTERN_LIGHTGRAY, + 'gray125' => FillStyles::FILL_PATTERN_GRAY125, + 'gray0625' => FillStyles::FILL_PATTERN_GRAY0625, + 'horzstripe' => FillStyles::FILL_PATTERN_DARKHORIZONTAL, // horizontal stripe + 'vertstripe' => FillStyles::FILL_PATTERN_DARKVERTICAL, // vertical stripe + 'reversediagstripe' => FillStyles::FILL_PATTERN_DARKUP, // reverse diagonal stripe + 'diagstripe' => FillStyles::FILL_PATTERN_DARKDOWN, // diagonal stripe + 'diagcross' => FillStyles::FILL_PATTERN_DARKGRID, // diagoanl crosshatch + 'thickdiagcross' => FillStyles::FILL_PATTERN_DARKTRELLIS, // thick diagonal crosshatch + 'thinhorzstripe' => FillStyles::FILL_PATTERN_LIGHTHORIZONTAL, + 'thinvertstripe' => FillStyles::FILL_PATTERN_LIGHTVERTICAL, + 'thinreversediagstripe' => FillStyles::FILL_PATTERN_LIGHTUP, + 'thindiagstripe' => FillStyles::FILL_PATTERN_LIGHTDOWN, + 'thinhorzcross' => FillStyles::FILL_PATTERN_LIGHTGRID, // thin horizontal crosshatch + 'thindiagcross' => FillStyles::FILL_PATTERN_LIGHTTRELLIS, // thin diagonal crosshatch + ], + ]; + + public function parseStyle(SimpleXMLElement $styleAttributes): array + { + $style = []; + + foreach ($styleAttributes as $styleAttributeKey => $styleAttributeValuex) { + $styleAttributeValue = (string) $styleAttributeValuex; + switch ($styleAttributeKey) { + case 'Color': + $style['fill']['endColor']['rgb'] = substr($styleAttributeValue, 1); + $style['fill']['startColor']['rgb'] = substr($styleAttributeValue, 1); + + break; + case 'PatternColor': + $style['fill']['startColor']['rgb'] = substr($styleAttributeValue, 1); + + break; + case 'Pattern': + $lcStyleAttributeValue = strtolower((string) $styleAttributeValue); + $style['fill']['fillType'] + = self::FILL_MAPPINGS['fillType'][$lcStyleAttributeValue] ?? FillStyles::FILL_NONE; + + break; + } + } + + return $style; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Font.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Font.php new file mode 100644 index 0000000..16ab44d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Font.php @@ -0,0 +1,79 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xml\Style; + +use PhpOffice\PhpSpreadsheet\Style\Font as FontUnderline; +use SimpleXMLElement; + +class Font extends StyleBase +{ + protected const UNDERLINE_STYLES = [ + FontUnderline::UNDERLINE_NONE, + FontUnderline::UNDERLINE_DOUBLE, + FontUnderline::UNDERLINE_DOUBLEACCOUNTING, + FontUnderline::UNDERLINE_SINGLE, + FontUnderline::UNDERLINE_SINGLEACCOUNTING, + ]; + + protected function parseUnderline(array $style, string $styleAttributeValue): array + { + if (self::identifyFixedStyleValue(self::UNDERLINE_STYLES, $styleAttributeValue)) { + $style['font']['underline'] = $styleAttributeValue; + } + + return $style; + } + + protected function parseVerticalAlign(array $style, string $styleAttributeValue): array + { + if ($styleAttributeValue == 'Superscript') { + $style['font']['superscript'] = true; + } + if ($styleAttributeValue == 'Subscript') { + $style['font']['subscript'] = true; + } + + return $style; + } + + public function parseStyle(SimpleXMLElement $styleAttributes): array + { + $style = []; + + foreach ($styleAttributes as $styleAttributeKey => $styleAttributeValue) { + $styleAttributeValue = (string) $styleAttributeValue; + switch ($styleAttributeKey) { + case 'FontName': + $style['font']['name'] = $styleAttributeValue; + + break; + case 'Size': + $style['font']['size'] = $styleAttributeValue; + + break; + case 'Color': + $style['font']['color']['rgb'] = substr($styleAttributeValue, 1); + + break; + case 'Bold': + $style['font']['bold'] = true; + + break; + case 'Italic': + $style['font']['italic'] = true; + + break; + case 'Underline': + $style = $this->parseUnderline($style, $styleAttributeValue); + + break; + case 'VerticalAlign': + $style = $this->parseVerticalAlign($style, $styleAttributeValue); + + break; + } + } + + return $style; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/NumberFormat.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/NumberFormat.php new file mode 100644 index 0000000..a31aa9e --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/NumberFormat.php @@ -0,0 +1,33 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xml\Style; + +use SimpleXMLElement; + +class NumberFormat extends StyleBase +{ + public function parseStyle(SimpleXMLElement $styleAttributes): array + { + $style = []; + + $fromFormats = ['\-', '\ ']; + $toFormats = ['-', ' ']; + + foreach ($styleAttributes as $styleAttributeKey => $styleAttributeValue) { + $styleAttributeValue = str_replace($fromFormats, $toFormats, $styleAttributeValue); + + switch ($styleAttributeValue) { + case 'Short Date': + $styleAttributeValue = 'dd/mm/yyyy'; + + break; + } + + if ($styleAttributeValue > '') { + $style['numberFormat']['formatCode'] = $styleAttributeValue; + } + } + + return $style; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/StyleBase.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/StyleBase.php new file mode 100644 index 0000000..fc9ace8 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/StyleBase.php @@ -0,0 +1,32 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Reader\Xml\Style; + +use SimpleXMLElement; + +abstract class StyleBase +{ + protected static function identifyFixedStyleValue(array $styleList, string &$styleAttributeValue): bool + { + $returnValue = false; + + $styleAttributeValue = strtolower($styleAttributeValue); + foreach ($styleList as $style) { + if ($styleAttributeValue == strtolower($style)) { + $styleAttributeValue = $style; + $returnValue = true; + + break; + } + } + + return $returnValue; + } + + protected static function getAttributes(?SimpleXMLElement $simple, string $node): SimpleXMLElement + { + return ($simple === null) + ? new SimpleXMLElement('<xml></xml>') + : ($simple->attributes($node) ?? new SimpleXMLElement('<xml></xml>')); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/ReferenceHelper.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/ReferenceHelper.php new file mode 100644 index 0000000..08a38b3 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/ReferenceHelper.php @@ -0,0 +1,1165 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Cell\DataType; +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter; +use PhpOffice\PhpSpreadsheet\Worksheet\Table; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class ReferenceHelper +{ + /** Constants */ + /** Regular Expressions */ + const REFHELPER_REGEXP_CELLREF = '((\w*|\'[^!]*\')!)?(?<![:a-z\$])(\$?[a-z]{1,3}\$?\d+)(?=[^:!\d\'])'; + const REFHELPER_REGEXP_CELLRANGE = '((\w*|\'[^!]*\')!)?(\$?[a-z]{1,3}\$?\d+):(\$?[a-z]{1,3}\$?\d+)'; + const REFHELPER_REGEXP_ROWRANGE = '((\w*|\'[^!]*\')!)?(\$?\d+):(\$?\d+)'; + const REFHELPER_REGEXP_COLRANGE = '((\w*|\'[^!]*\')!)?(\$?[a-z]{1,3}):(\$?[a-z]{1,3})'; + + /** + * Instance of this class. + * + * @var ?ReferenceHelper + */ + private static $instance; + + /** + * @var CellReferenceHelper + */ + private $cellReferenceHelper; + + /** + * Get an instance of this class. + * + * @return ReferenceHelper + */ + public static function getInstance() + { + if (self::$instance === null) { + self::$instance = new self(); + } + + return self::$instance; + } + + /** + * Create a new ReferenceHelper. + */ + protected function __construct() + { + } + + /** + * Compare two column addresses + * Intended for use as a Callback function for sorting column addresses by column. + * + * @param string $a First column to test (e.g. 'AA') + * @param string $b Second column to test (e.g. 'Z') + * + * @return int + */ + public static function columnSort($a, $b) + { + return strcasecmp(strlen($a) . $a, strlen($b) . $b); + } + + /** + * Compare two column addresses + * Intended for use as a Callback function for reverse sorting column addresses by column. + * + * @param string $a First column to test (e.g. 'AA') + * @param string $b Second column to test (e.g. 'Z') + * + * @return int + */ + public static function columnReverseSort($a, $b) + { + return -strcasecmp(strlen($a) . $a, strlen($b) . $b); + } + + /** + * Compare two cell addresses + * Intended for use as a Callback function for sorting cell addresses by column and row. + * + * @param string $a First cell to test (e.g. 'AA1') + * @param string $b Second cell to test (e.g. 'Z1') + * + * @return int + */ + public static function cellSort($a, $b) + { + sscanf($a, '%[A-Z]%d', $ac, $ar); + sscanf($b, '%[A-Z]%d', $bc, $br); + + if ($ar === $br) { + return strcasecmp(strlen($ac) . $ac, strlen($bc) . $bc); + } + + return ($ar < $br) ? -1 : 1; + } + + /** + * Compare two cell addresses + * Intended for use as a Callback function for sorting cell addresses by column and row. + * + * @param string $a First cell to test (e.g. 'AA1') + * @param string $b Second cell to test (e.g. 'Z1') + * + * @return int + */ + public static function cellReverseSort($a, $b) + { + sscanf($a, '%[A-Z]%d', $ac, $ar); + sscanf($b, '%[A-Z]%d', $bc, $br); + + if ($ar === $br) { + return -strcasecmp(strlen($ac) . $ac, strlen($bc) . $bc); + } + + return ($ar < $br) ? 1 : -1; + } + + /** + * Update page breaks when inserting/deleting rows/columns. + * + * @param Worksheet $worksheet The worksheet that we're editing + * @param int $numberOfColumns Number of columns to insert/delete (negative values indicate deletion) + * @param int $numberOfRows Number of rows to insert/delete (negative values indicate deletion) + */ + protected function adjustPageBreaks(Worksheet $worksheet, $numberOfColumns, $numberOfRows): void + { + $aBreaks = $worksheet->getBreaks(); + ($numberOfColumns > 0 || $numberOfRows > 0) + ? uksort($aBreaks, [self::class, 'cellReverseSort']) + : uksort($aBreaks, [self::class, 'cellSort']); + + foreach ($aBreaks as $cellAddress => $value) { + if ($this->cellReferenceHelper->cellAddressInDeleteRange($cellAddress) === true) { + // If we're deleting, then clear any defined breaks that are within the range + // of rows/columns that we're deleting + $worksheet->setBreak($cellAddress, Worksheet::BREAK_NONE); + } else { + // Otherwise update any affected breaks by inserting a new break at the appropriate point + // and removing the old affected break + $newReference = $this->updateCellReference($cellAddress); + if ($cellAddress !== $newReference) { + $worksheet->setBreak($newReference, $value) + ->setBreak($cellAddress, Worksheet::BREAK_NONE); + } + } + } + } + + /** + * Update cell comments when inserting/deleting rows/columns. + * + * @param Worksheet $worksheet The worksheet that we're editing + */ + protected function adjustComments($worksheet): void + { + $aComments = $worksheet->getComments(); + $aNewComments = []; // the new array of all comments + + foreach ($aComments as $cellAddress => &$value) { + // Any comments inside a deleted range will be ignored + if ($this->cellReferenceHelper->cellAddressInDeleteRange($cellAddress) === false) { + // Otherwise build a new array of comments indexed by the adjusted cell reference + $newReference = $this->updateCellReference($cellAddress); + $aNewComments[$newReference] = $value; + } + } + // Replace the comments array with the new set of comments + $worksheet->setComments($aNewComments); + } + + /** + * Update hyperlinks when inserting/deleting rows/columns. + * + * @param Worksheet $worksheet The worksheet that we're editing + * @param int $numberOfColumns Number of columns to insert/delete (negative values indicate deletion) + * @param int $numberOfRows Number of rows to insert/delete (negative values indicate deletion) + */ + protected function adjustHyperlinks($worksheet, $numberOfColumns, $numberOfRows): void + { + $aHyperlinkCollection = $worksheet->getHyperlinkCollection(); + ($numberOfColumns > 0 || $numberOfRows > 0) + ? uksort($aHyperlinkCollection, [self::class, 'cellReverseSort']) + : uksort($aHyperlinkCollection, [self::class, 'cellSort']); + + foreach ($aHyperlinkCollection as $cellAddress => $value) { + $newReference = $this->updateCellReference($cellAddress); + if ($this->cellReferenceHelper->cellAddressInDeleteRange($cellAddress) === true) { + $worksheet->setHyperlink($cellAddress, null); + } elseif ($cellAddress !== $newReference) { + $worksheet->setHyperlink($newReference, $value); + $worksheet->setHyperlink($cellAddress, null); + } + } + } + + /** + * Update conditional formatting styles when inserting/deleting rows/columns. + * + * @param Worksheet $worksheet The worksheet that we're editing + * @param int $numberOfColumns Number of columns to insert/delete (negative values indicate deletion) + * @param int $numberOfRows Number of rows to insert/delete (negative values indicate deletion) + */ + protected function adjustConditionalFormatting($worksheet, $numberOfColumns, $numberOfRows): void + { + $aStyles = $worksheet->getConditionalStylesCollection(); + ($numberOfColumns > 0 || $numberOfRows > 0) + ? uksort($aStyles, [self::class, 'cellReverseSort']) + : uksort($aStyles, [self::class, 'cellSort']); + + foreach ($aStyles as $cellAddress => $cfRules) { + $worksheet->removeConditionalStyles($cellAddress); + $newReference = $this->updateCellReference($cellAddress); + + foreach ($cfRules as &$cfRule) { + /** @var Conditional $cfRule */ + $conditions = $cfRule->getConditions(); + foreach ($conditions as &$condition) { + if (is_string($condition)) { + $condition = $this->updateFormulaReferences( + $condition, + $this->cellReferenceHelper->beforeCellAddress(), + $numberOfColumns, + $numberOfRows, + $worksheet->getTitle(), + true + ); + } + } + $cfRule->setConditions($conditions); + } + $worksheet->setConditionalStyles($newReference, $cfRules); + } + } + + /** + * Update data validations when inserting/deleting rows/columns. + * + * @param Worksheet $worksheet The worksheet that we're editing + * @param int $numberOfColumns Number of columns to insert/delete (negative values indicate deletion) + * @param int $numberOfRows Number of rows to insert/delete (negative values indicate deletion) + */ + protected function adjustDataValidations(Worksheet $worksheet, $numberOfColumns, $numberOfRows): void + { + $aDataValidationCollection = $worksheet->getDataValidationCollection(); + ($numberOfColumns > 0 || $numberOfRows > 0) + ? uksort($aDataValidationCollection, [self::class, 'cellReverseSort']) + : uksort($aDataValidationCollection, [self::class, 'cellSort']); + + foreach ($aDataValidationCollection as $cellAddress => $value) { + $newReference = $this->updateCellReference($cellAddress); + if ($cellAddress !== $newReference) { + $worksheet->setDataValidation($newReference, $value); + $worksheet->setDataValidation($cellAddress, null); + } + } + } + + /** + * Update merged cells when inserting/deleting rows/columns. + * + * @param Worksheet $worksheet The worksheet that we're editing + */ + protected function adjustMergeCells(Worksheet $worksheet): void + { + $aMergeCells = $worksheet->getMergeCells(); + $aNewMergeCells = []; // the new array of all merge cells + foreach ($aMergeCells as $cellAddress => &$value) { + $newReference = $this->updateCellReference($cellAddress); + $aNewMergeCells[$newReference] = $newReference; + } + $worksheet->setMergeCells($aNewMergeCells); // replace the merge cells array + } + + /** + * Update protected cells when inserting/deleting rows/columns. + * + * @param Worksheet $worksheet The worksheet that we're editing + * @param int $numberOfColumns Number of columns to insert/delete (negative values indicate deletion) + * @param int $numberOfRows Number of rows to insert/delete (negative values indicate deletion) + */ + protected function adjustProtectedCells(Worksheet $worksheet, $numberOfColumns, $numberOfRows): void + { + $aProtectedCells = $worksheet->getProtectedCells(); + ($numberOfColumns > 0 || $numberOfRows > 0) + ? uksort($aProtectedCells, [self::class, 'cellReverseSort']) + : uksort($aProtectedCells, [self::class, 'cellSort']); + foreach ($aProtectedCells as $cellAddress => $value) { + $newReference = $this->updateCellReference($cellAddress); + if ($cellAddress !== $newReference) { + $worksheet->protectCells($newReference, $value, true); + $worksheet->unprotectCells($cellAddress); + } + } + } + + /** + * Update column dimensions when inserting/deleting rows/columns. + * + * @param Worksheet $worksheet The worksheet that we're editing + */ + protected function adjustColumnDimensions(Worksheet $worksheet): void + { + $aColumnDimensions = array_reverse($worksheet->getColumnDimensions(), true); + if (!empty($aColumnDimensions)) { + foreach ($aColumnDimensions as $objColumnDimension) { + $newReference = $this->updateCellReference($objColumnDimension->getColumnIndex() . '1'); + [$newReference] = Coordinate::coordinateFromString($newReference); + if ($objColumnDimension->getColumnIndex() !== $newReference) { + $objColumnDimension->setColumnIndex($newReference); + } + } + + $worksheet->refreshColumnDimensions(); + } + } + + /** + * Update row dimensions when inserting/deleting rows/columns. + * + * @param Worksheet $worksheet The worksheet that we're editing + * @param int $beforeRow Number of the row we're inserting/deleting before + * @param int $numberOfRows Number of rows to insert/delete (negative values indicate deletion) + */ + protected function adjustRowDimensions(Worksheet $worksheet, $beforeRow, $numberOfRows): void + { + $aRowDimensions = array_reverse($worksheet->getRowDimensions(), true); + if (!empty($aRowDimensions)) { + foreach ($aRowDimensions as $objRowDimension) { + $newReference = $this->updateCellReference('A' . $objRowDimension->getRowIndex()); + [, $newReference] = Coordinate::coordinateFromString($newReference); + $newRoweference = (int) $newReference; + if ($objRowDimension->getRowIndex() !== $newRoweference) { + $objRowDimension->setRowIndex($newRoweference); + } + } + + $worksheet->refreshRowDimensions(); + + $copyDimension = $worksheet->getRowDimension($beforeRow - 1); + for ($i = $beforeRow; $i <= $beforeRow - 1 + $numberOfRows; ++$i) { + $newDimension = $worksheet->getRowDimension($i); + $newDimension->setRowHeight($copyDimension->getRowHeight()); + $newDimension->setVisible($copyDimension->getVisible()); + $newDimension->setOutlineLevel($copyDimension->getOutlineLevel()); + $newDimension->setCollapsed($copyDimension->getCollapsed()); + } + } + } + + /** + * Insert a new column or row, updating all possible related data. + * + * @param string $beforeCellAddress Insert before this cell address (e.g. 'A1') + * @param int $numberOfColumns Number of columns to insert/delete (negative values indicate deletion) + * @param int $numberOfRows Number of rows to insert/delete (negative values indicate deletion) + * @param Worksheet $worksheet The worksheet that we're editing + */ + public function insertNewBefore( + string $beforeCellAddress, + int $numberOfColumns, + int $numberOfRows, + Worksheet $worksheet + ): void { + $remove = ($numberOfColumns < 0 || $numberOfRows < 0); + + if ( + $this->cellReferenceHelper === null || + $this->cellReferenceHelper->refreshRequired($beforeCellAddress, $numberOfColumns, $numberOfRows) + ) { + $this->cellReferenceHelper = new CellReferenceHelper($beforeCellAddress, $numberOfColumns, $numberOfRows); + } + + // Get coordinate of $beforeCellAddress + [$beforeColumn, $beforeRow] = Coordinate::indexesFromString($beforeCellAddress); + + // Clear cells if we are removing columns or rows + $highestColumn = $worksheet->getHighestColumn(); + $highestRow = $worksheet->getHighestRow(); + + // 1. Clear column strips if we are removing columns + if ($numberOfColumns < 0 && $beforeColumn - 2 + $numberOfColumns > 0) { + $this->clearColumnStrips($highestRow, $beforeColumn, $numberOfColumns, $worksheet); + } + + // 2. Clear row strips if we are removing rows + if ($numberOfRows < 0 && $beforeRow - 1 + $numberOfRows > 0) { + $this->clearRowStrips($highestColumn, $beforeColumn, $beforeRow, $numberOfRows, $worksheet); + } + + // Find missing coordinates. This is important when inserting column before the last column + $cellCollection = $worksheet->getCellCollection(); + $missingCoordinates = array_filter( + array_map(function ($row) use ($highestColumn) { + return $highestColumn . $row; + }, range(1, $highestRow)), + function ($coordinate) use ($cellCollection) { + return $cellCollection->has($coordinate) === false; + } + ); + + // Create missing cells with null values + if (!empty($missingCoordinates)) { + foreach ($missingCoordinates as $coordinate) { + $worksheet->createNewCell($coordinate); + } + } + + $allCoordinates = $worksheet->getCoordinates(); + if ($remove) { + // It's faster to reverse and pop than to use unshift, especially with large cell collections + $allCoordinates = array_reverse($allCoordinates); + } + + // Loop through cells, bottom-up, and change cell coordinate + while ($coordinate = array_pop($allCoordinates)) { + $cell = $worksheet->getCell($coordinate); + $cellIndex = Coordinate::columnIndexFromString($cell->getColumn()); + + if ($cellIndex - 1 + $numberOfColumns < 0) { + continue; + } + + // New coordinate + $newCoordinate = Coordinate::stringFromColumnIndex($cellIndex + $numberOfColumns) . ($cell->getRow() + $numberOfRows); + + // Should the cell be updated? Move value and cellXf index from one cell to another. + if (($cellIndex >= $beforeColumn) && ($cell->getRow() >= $beforeRow)) { + // Update cell styles + $worksheet->getCell($newCoordinate)->setXfIndex($cell->getXfIndex()); + + // Insert this cell at its new location + if ($cell->getDataType() === DataType::TYPE_FORMULA) { + // Formula should be adjusted + $worksheet->getCell($newCoordinate) + ->setValue($this->updateFormulaReferences($cell->getValue(), $beforeCellAddress, $numberOfColumns, $numberOfRows, $worksheet->getTitle())); + } else { + // Formula should not be adjusted + $worksheet->getCell($newCoordinate)->setValueExplicit($cell->getValue(), $cell->getDataType()); + } + + // Clear the original cell + $worksheet->getCellCollection()->delete($coordinate); + } else { + /* We don't need to update styles for rows/columns before our insertion position, + but we do still need to adjust any formulae in those cells */ + if ($cell->getDataType() === DataType::TYPE_FORMULA) { + // Formula should be adjusted + $cell->setValue($this->updateFormulaReferences($cell->getValue(), $beforeCellAddress, $numberOfColumns, $numberOfRows, $worksheet->getTitle())); + } + } + } + + // Duplicate styles for the newly inserted cells + $highestColumn = $worksheet->getHighestColumn(); + $highestRow = $worksheet->getHighestRow(); + + if ($numberOfColumns > 0 && $beforeColumn - 2 > 0) { + $this->duplicateStylesByColumn($worksheet, $beforeColumn, $beforeRow, $highestRow, $numberOfColumns); + } + + if ($numberOfRows > 0 && $beforeRow - 1 > 0) { + $this->duplicateStylesByRow($worksheet, $beforeColumn, $beforeRow, $highestColumn, $numberOfRows); + } + + // Update worksheet: column dimensions + $this->adjustColumnDimensions($worksheet); + + // Update worksheet: row dimensions + $this->adjustRowDimensions($worksheet, $beforeRow, $numberOfRows); + + // Update worksheet: page breaks + $this->adjustPageBreaks($worksheet, $numberOfColumns, $numberOfRows); + + // Update worksheet: comments + $this->adjustComments($worksheet); + + // Update worksheet: hyperlinks + $this->adjustHyperlinks($worksheet, $numberOfColumns, $numberOfRows); + + // Update worksheet: conditional formatting styles + $this->adjustConditionalFormatting($worksheet, $numberOfColumns, $numberOfRows); + + // Update worksheet: data validations + $this->adjustDataValidations($worksheet, $numberOfColumns, $numberOfRows); + + // Update worksheet: merge cells + $this->adjustMergeCells($worksheet); + + // Update worksheet: protected cells + $this->adjustProtectedCells($worksheet, $numberOfColumns, $numberOfRows); + + // Update worksheet: autofilter + $this->adjustAutoFilter($worksheet, $beforeCellAddress, $numberOfColumns); + + // Update worksheet: table + $this->adjustTable($worksheet, $beforeCellAddress, $numberOfColumns); + + // Update worksheet: freeze pane + if ($worksheet->getFreezePane()) { + $splitCell = $worksheet->getFreezePane() ?? ''; + $topLeftCell = $worksheet->getTopLeftCell() ?? ''; + + $splitCell = $this->updateCellReference($splitCell); + $topLeftCell = $this->updateCellReference($topLeftCell); + + $worksheet->freezePane($splitCell, $topLeftCell); + } + + // Page setup + if ($worksheet->getPageSetup()->isPrintAreaSet()) { + $worksheet->getPageSetup()->setPrintArea( + $this->updateCellReference($worksheet->getPageSetup()->getPrintArea()) + ); + } + + // Update worksheet: drawings + $aDrawings = $worksheet->getDrawingCollection(); + foreach ($aDrawings as $objDrawing) { + $newReference = $this->updateCellReference($objDrawing->getCoordinates()); + if ($objDrawing->getCoordinates() != $newReference) { + $objDrawing->setCoordinates($newReference); + } + if ($objDrawing->getCoordinates2() !== '') { + $newReference = $this->updateCellReference($objDrawing->getCoordinates2()); + if ($objDrawing->getCoordinates2() != $newReference) { + $objDrawing->setCoordinates2($newReference); + } + } + } + + // Update workbook: define names + if (count($worksheet->getParent()->getDefinedNames()) > 0) { + foreach ($worksheet->getParent()->getDefinedNames() as $definedName) { + if ($definedName->getWorksheet() !== null && $definedName->getWorksheet()->getHashCode() === $worksheet->getHashCode()) { + $definedName->setValue($this->updateCellReference($definedName->getValue())); + } + } + } + + // Garbage collect + $worksheet->garbageCollect(); + } + + /** + * Update references within formulas. + * + * @param string $formula Formula to update + * @param string $beforeCellAddress Insert before this one + * @param int $numberOfColumns Number of columns to insert + * @param int $numberOfRows Number of rows to insert + * @param string $worksheetName Worksheet name/title + * + * @return string Updated formula + */ + public function updateFormulaReferences( + $formula = '', + $beforeCellAddress = 'A1', + $numberOfColumns = 0, + $numberOfRows = 0, + $worksheetName = '', + bool $includeAbsoluteReferences = false + ) { + if ( + $this->cellReferenceHelper === null || + $this->cellReferenceHelper->refreshRequired($beforeCellAddress, $numberOfColumns, $numberOfRows) + ) { + $this->cellReferenceHelper = new CellReferenceHelper($beforeCellAddress, $numberOfColumns, $numberOfRows); + } + + // Update cell references in the formula + $formulaBlocks = explode('"', $formula); + $i = false; + foreach ($formulaBlocks as &$formulaBlock) { + // Ignore blocks that were enclosed in quotes (alternating entries in the $formulaBlocks array after the explode) + if ($i = !$i) { + $adjustCount = 0; + $newCellTokens = $cellTokens = []; + // Search for row ranges (e.g. 'Sheet1'!3:5 or 3:5) with or without $ absolutes (e.g. $3:5) + $matchCount = preg_match_all('/' . self::REFHELPER_REGEXP_ROWRANGE . '/mui', ' ' . $formulaBlock . ' ', $matches, PREG_SET_ORDER); + if ($matchCount > 0) { + foreach ($matches as $match) { + $fromString = ($match[2] > '') ? $match[2] . '!' : ''; + $fromString .= $match[3] . ':' . $match[4]; + $modified3 = substr($this->updateCellReference('$A' . $match[3], $includeAbsoluteReferences), 2); + $modified4 = substr($this->updateCellReference('$A' . $match[4], $includeAbsoluteReferences), 2); + + if ($match[3] . ':' . $match[4] !== $modified3 . ':' . $modified4) { + if (($match[2] == '') || (trim($match[2], "'") == $worksheetName)) { + $toString = ($match[2] > '') ? $match[2] . '!' : ''; + $toString .= $modified3 . ':' . $modified4; + // Max worksheet size is 1,048,576 rows by 16,384 columns in Excel 2007, so our adjustments need to be at least one digit more + $column = 100000; + $row = 10000000 + (int) trim($match[3], '$'); + $cellIndex = $column . $row; + + $newCellTokens[$cellIndex] = preg_quote($toString, '/'); + $cellTokens[$cellIndex] = '/(?<!\d\$\!)' . preg_quote($fromString, '/') . '(?!\d)/i'; + ++$adjustCount; + } + } + } + } + // Search for column ranges (e.g. 'Sheet1'!C:E or C:E) with or without $ absolutes (e.g. $C:E) + $matchCount = preg_match_all('/' . self::REFHELPER_REGEXP_COLRANGE . '/mui', ' ' . $formulaBlock . ' ', $matches, PREG_SET_ORDER); + if ($matchCount > 0) { + foreach ($matches as $match) { + $fromString = ($match[2] > '') ? $match[2] . '!' : ''; + $fromString .= $match[3] . ':' . $match[4]; + $modified3 = substr($this->updateCellReference($match[3] . '$1', $includeAbsoluteReferences), 0, -2); + $modified4 = substr($this->updateCellReference($match[4] . '$1', $includeAbsoluteReferences), 0, -2); + + if ($match[3] . ':' . $match[4] !== $modified3 . ':' . $modified4) { + if (($match[2] == '') || (trim($match[2], "'") == $worksheetName)) { + $toString = ($match[2] > '') ? $match[2] . '!' : ''; + $toString .= $modified3 . ':' . $modified4; + // Max worksheet size is 1,048,576 rows by 16,384 columns in Excel 2007, so our adjustments need to be at least one digit more + $column = Coordinate::columnIndexFromString(trim($match[3], '$')) + 100000; + $row = 10000000; + $cellIndex = $column . $row; + + $newCellTokens[$cellIndex] = preg_quote($toString, '/'); + $cellTokens[$cellIndex] = '/(?<![A-Z\$\!])' . preg_quote($fromString, '/') . '(?![A-Z])/i'; + ++$adjustCount; + } + } + } + } + // Search for cell ranges (e.g. 'Sheet1'!A3:C5 or A3:C5) with or without $ absolutes (e.g. $A1:C$5) + $matchCount = preg_match_all('/' . self::REFHELPER_REGEXP_CELLRANGE . '/mui', ' ' . $formulaBlock . ' ', $matches, PREG_SET_ORDER); + if ($matchCount > 0) { + foreach ($matches as $match) { + $fromString = ($match[2] > '') ? $match[2] . '!' : ''; + $fromString .= $match[3] . ':' . $match[4]; + $modified3 = $this->updateCellReference($match[3], $includeAbsoluteReferences); + $modified4 = $this->updateCellReference($match[4], $includeAbsoluteReferences); + + if ($match[3] . $match[4] !== $modified3 . $modified4) { + if (($match[2] == '') || (trim($match[2], "'") == $worksheetName)) { + $toString = ($match[2] > '') ? $match[2] . '!' : ''; + $toString .= $modified3 . ':' . $modified4; + [$column, $row] = Coordinate::coordinateFromString($match[3]); + // Max worksheet size is 1,048,576 rows by 16,384 columns in Excel 2007, so our adjustments need to be at least one digit more + $column = Coordinate::columnIndexFromString(trim($column, '$')) + 100000; + $row = (int) trim($row, '$') + 10000000; + $cellIndex = $column . $row; + + $newCellTokens[$cellIndex] = preg_quote($toString, '/'); + $cellTokens[$cellIndex] = '/(?<![A-Z]\$\!)' . preg_quote($fromString, '/') . '(?!\d)/i'; + ++$adjustCount; + } + } + } + } + // Search for cell references (e.g. 'Sheet1'!A3 or C5) with or without $ absolutes (e.g. $A1 or C$5) + $matchCount = preg_match_all('/' . self::REFHELPER_REGEXP_CELLREF . '/mui', ' ' . $formulaBlock . ' ', $matches, PREG_SET_ORDER); + + if ($matchCount > 0) { + foreach ($matches as $match) { + $fromString = ($match[2] > '') ? $match[2] . '!' : ''; + $fromString .= $match[3]; + + $modified3 = $this->updateCellReference($match[3], $includeAbsoluteReferences); + if ($match[3] !== $modified3) { + if (($match[2] == '') || (trim($match[2], "'") == $worksheetName)) { + $toString = ($match[2] > '') ? $match[2] . '!' : ''; + $toString .= $modified3; + [$column, $row] = Coordinate::coordinateFromString($match[3]); + $columnAdditionalIndex = $column[0] === '$' ? 1 : 0; + $rowAdditionalIndex = $row[0] === '$' ? 1 : 0; + // Max worksheet size is 1,048,576 rows by 16,384 columns in Excel 2007, so our adjustments need to be at least one digit more + $column = Coordinate::columnIndexFromString(trim($column, '$')) + 100000; + $row = (int) trim($row, '$') + 10000000; + $cellIndex = $row . $rowAdditionalIndex . $column . $columnAdditionalIndex; + + $newCellTokens[$cellIndex] = preg_quote($toString, '/'); + $cellTokens[$cellIndex] = '/(?<![A-Z\$\!])' . preg_quote($fromString, '/') . '(?!\d)/i'; + ++$adjustCount; + } + } + } + } + if ($adjustCount > 0) { + if ($numberOfColumns > 0 || $numberOfRows > 0) { + krsort($cellTokens); + krsort($newCellTokens); + } else { + ksort($cellTokens); + ksort($newCellTokens); + } // Update cell references in the formula + $formulaBlock = str_replace('\\', '', (string) preg_replace($cellTokens, $newCellTokens, $formulaBlock)); + } + } + } + unset($formulaBlock); + + // Then rebuild the formula string + return implode('"', $formulaBlocks); + } + + /** + * Update all cell references within a formula, irrespective of worksheet. + */ + public function updateFormulaReferencesAnyWorksheet(string $formula = '', int $numberOfColumns = 0, int $numberOfRows = 0): string + { + $formula = $this->updateCellReferencesAllWorksheets($formula, $numberOfColumns, $numberOfRows); + + if ($numberOfColumns !== 0) { + $formula = $this->updateColumnRangesAllWorksheets($formula, $numberOfColumns); + } + + if ($numberOfRows !== 0) { + $formula = $this->updateRowRangesAllWorksheets($formula, $numberOfRows); + } + + return $formula; + } + + private function updateCellReferencesAllWorksheets(string $formula, int $numberOfColumns, int $numberOfRows): string + { + $splitCount = preg_match_all( + '/' . Calculation::CALCULATION_REGEXP_CELLREF_RELATIVE . '/mui', + $formula, + $splitRanges, + PREG_OFFSET_CAPTURE + ); + + $columnLengths = array_map('strlen', array_column($splitRanges[6], 0)); + $rowLengths = array_map('strlen', array_column($splitRanges[7], 0)); + $columnOffsets = array_column($splitRanges[6], 1); + $rowOffsets = array_column($splitRanges[7], 1); + + $columns = $splitRanges[6]; + $rows = $splitRanges[7]; + + while ($splitCount > 0) { + --$splitCount; + $columnLength = $columnLengths[$splitCount]; + $rowLength = $rowLengths[$splitCount]; + $columnOffset = $columnOffsets[$splitCount]; + $rowOffset = $rowOffsets[$splitCount]; + $column = $columns[$splitCount][0]; + $row = $rows[$splitCount][0]; + + if (!empty($column) && $column[0] !== '$') { + $column = Coordinate::stringFromColumnIndex(Coordinate::columnIndexFromString($column) + $numberOfColumns); + $formula = substr($formula, 0, $columnOffset) . $column . substr($formula, $columnOffset + $columnLength); + } + if (!empty($row) && $row[0] !== '$') { + $row += $numberOfRows; + $formula = substr($formula, 0, $rowOffset) . $row . substr($formula, $rowOffset + $rowLength); + } + } + + return $formula; + } + + private function updateColumnRangesAllWorksheets(string $formula, int $numberOfColumns): string + { + $splitCount = preg_match_all( + '/' . Calculation::CALCULATION_REGEXP_COLUMNRANGE_RELATIVE . '/mui', + $formula, + $splitRanges, + PREG_OFFSET_CAPTURE + ); + + $fromColumnLengths = array_map('strlen', array_column($splitRanges[1], 0)); + $fromColumnOffsets = array_column($splitRanges[1], 1); + $toColumnLengths = array_map('strlen', array_column($splitRanges[2], 0)); + $toColumnOffsets = array_column($splitRanges[2], 1); + + $fromColumns = $splitRanges[1]; + $toColumns = $splitRanges[2]; + + while ($splitCount > 0) { + --$splitCount; + $fromColumnLength = $fromColumnLengths[$splitCount]; + $toColumnLength = $toColumnLengths[$splitCount]; + $fromColumnOffset = $fromColumnOffsets[$splitCount]; + $toColumnOffset = $toColumnOffsets[$splitCount]; + $fromColumn = $fromColumns[$splitCount][0]; + $toColumn = $toColumns[$splitCount][0]; + + if (!empty($fromColumn) && $fromColumn[0] !== '$') { + $fromColumn = Coordinate::stringFromColumnIndex(Coordinate::columnIndexFromString($fromColumn) + $numberOfColumns); + $formula = substr($formula, 0, $fromColumnOffset) . $fromColumn . substr($formula, $fromColumnOffset + $fromColumnLength); + } + if (!empty($toColumn) && $toColumn[0] !== '$') { + $toColumn = Coordinate::stringFromColumnIndex(Coordinate::columnIndexFromString($toColumn) + $numberOfColumns); + $formula = substr($formula, 0, $toColumnOffset) . $toColumn . substr($formula, $toColumnOffset + $toColumnLength); + } + } + + return $formula; + } + + private function updateRowRangesAllWorksheets(string $formula, int $numberOfRows): string + { + $splitCount = preg_match_all( + '/' . Calculation::CALCULATION_REGEXP_ROWRANGE_RELATIVE . '/mui', + $formula, + $splitRanges, + PREG_OFFSET_CAPTURE + ); + + $fromRowLengths = array_map('strlen', array_column($splitRanges[1], 0)); + $fromRowOffsets = array_column($splitRanges[1], 1); + $toRowLengths = array_map('strlen', array_column($splitRanges[2], 0)); + $toRowOffsets = array_column($splitRanges[2], 1); + + $fromRows = $splitRanges[1]; + $toRows = $splitRanges[2]; + + while ($splitCount > 0) { + --$splitCount; + $fromRowLength = $fromRowLengths[$splitCount]; + $toRowLength = $toRowLengths[$splitCount]; + $fromRowOffset = $fromRowOffsets[$splitCount]; + $toRowOffset = $toRowOffsets[$splitCount]; + $fromRow = $fromRows[$splitCount][0]; + $toRow = $toRows[$splitCount][0]; + + if (!empty($fromRow) && $fromRow[0] !== '$') { + $fromRow += $numberOfRows; + $formula = substr($formula, 0, $fromRowOffset) . $fromRow . substr($formula, $fromRowOffset + $fromRowLength); + } + if (!empty($toRow) && $toRow[0] !== '$') { + $toRow += $numberOfRows; + $formula = substr($formula, 0, $toRowOffset) . $toRow . substr($formula, $toRowOffset + $toRowLength); + } + } + + return $formula; + } + + /** + * Update cell reference. + * + * @param string $cellReference Cell address or range of addresses + * + * @return string Updated cell range + */ + private function updateCellReference($cellReference = 'A1', bool $includeAbsoluteReferences = false) + { + // Is it in another worksheet? Will not have to update anything. + if (strpos($cellReference, '!') !== false) { + return $cellReference; + // Is it a range or a single cell? + } elseif (!Coordinate::coordinateIsRange($cellReference)) { + // Single cell + return $this->cellReferenceHelper->updateCellReference($cellReference, $includeAbsoluteReferences); + } elseif (Coordinate::coordinateIsRange($cellReference)) { + // Range + return $this->updateCellRange($cellReference, $includeAbsoluteReferences); + } + + // Return original + return $cellReference; + } + + /** + * Update named formulas (i.e. containing worksheet references / named ranges). + * + * @param Spreadsheet $spreadsheet Object to update + * @param string $oldName Old name (name to replace) + * @param string $newName New name + */ + public function updateNamedFormulas(Spreadsheet $spreadsheet, $oldName = '', $newName = ''): void + { + if ($oldName == '') { + return; + } + + foreach ($spreadsheet->getWorksheetIterator() as $sheet) { + foreach ($sheet->getCoordinates(false) as $coordinate) { + $cell = $sheet->getCell($coordinate); + if (($cell !== null) && ($cell->getDataType() === DataType::TYPE_FORMULA)) { + $formula = $cell->getValue(); + if (strpos($formula, $oldName) !== false) { + $formula = str_replace("'" . $oldName . "'!", "'" . $newName . "'!", $formula); + $formula = str_replace($oldName . '!', $newName . '!', $formula); + $cell->setValueExplicit($formula, DataType::TYPE_FORMULA); + } + } + } + } + } + + /** + * Update cell range. + * + * @param string $cellRange Cell range (e.g. 'B2:D4', 'B:C' or '2:3') + * + * @return string Updated cell range + */ + private function updateCellRange(string $cellRange = 'A1:A1', bool $includeAbsoluteReferences = false): string + { + if (!Coordinate::coordinateIsRange($cellRange)) { + throw new Exception('Only cell ranges may be passed to this method.'); + } + + // Update range + $range = Coordinate::splitRange($cellRange); + $ic = count($range); + for ($i = 0; $i < $ic; ++$i) { + $jc = count($range[$i]); + for ($j = 0; $j < $jc; ++$j) { + if (ctype_alpha($range[$i][$j])) { + $range[$i][$j] = Coordinate::coordinateFromString( + $this->cellReferenceHelper->updateCellReference($range[$i][$j] . '1', $includeAbsoluteReferences) + )[0]; + } elseif (ctype_digit($range[$i][$j])) { + $range[$i][$j] = Coordinate::coordinateFromString( + $this->cellReferenceHelper->updateCellReference('A' . $range[$i][$j], $includeAbsoluteReferences) + )[1]; + } else { + $range[$i][$j] = $this->cellReferenceHelper->updateCellReference($range[$i][$j], $includeAbsoluteReferences); + } + } + } + + // Recreate range string + return Coordinate::buildRange($range); + } + + private function clearColumnStrips(int $highestRow, int $beforeColumn, int $numberOfColumns, Worksheet $worksheet): void + { + $startColumnId = Coordinate::stringFromColumnIndex($beforeColumn + $numberOfColumns); + $endColumnId = Coordinate::stringFromColumnIndex($beforeColumn); + + for ($row = 1; $row <= $highestRow - 1; ++$row) { + for ($column = $startColumnId; $column !== $endColumnId; ++$column) { + $coordinate = $column . $row; + $this->clearStripCell($worksheet, $coordinate); + } + } + } + + private function clearRowStrips(string $highestColumn, int $beforeColumn, int $beforeRow, int $numberOfRows, Worksheet $worksheet): void + { + $startColumnId = Coordinate::stringFromColumnIndex($beforeColumn); + ++$highestColumn; + + for ($column = $startColumnId; $column !== $highestColumn; ++$column) { + for ($row = $beforeRow + $numberOfRows; $row <= $beforeRow - 1; ++$row) { + $coordinate = $column . $row; + $this->clearStripCell($worksheet, $coordinate); + } + } + } + + private function clearStripCell(Worksheet $worksheet, string $coordinate): void + { + $worksheet->removeConditionalStyles($coordinate); + $worksheet->setHyperlink($coordinate); + $worksheet->setDataValidation($coordinate); + $worksheet->removeComment($coordinate); + + if ($worksheet->cellExists($coordinate)) { + $worksheet->getCell($coordinate)->setValueExplicit(null, DataType::TYPE_NULL); + $worksheet->getCell($coordinate)->setXfIndex(0); + } + } + + private function adjustAutoFilter(Worksheet $worksheet, string $beforeCellAddress, int $numberOfColumns): void + { + $autoFilter = $worksheet->getAutoFilter(); + $autoFilterRange = $autoFilter->getRange(); + if (!empty($autoFilterRange)) { + if ($numberOfColumns !== 0) { + $autoFilterColumns = $autoFilter->getColumns(); + if (count($autoFilterColumns) > 0) { + $column = ''; + $row = 0; + sscanf($beforeCellAddress, '%[A-Z]%d', $column, $row); + $columnIndex = Coordinate::columnIndexFromString($column); + [$rangeStart, $rangeEnd] = Coordinate::rangeBoundaries($autoFilterRange); + if ($columnIndex <= $rangeEnd[0]) { + if ($numberOfColumns < 0) { + $this->adjustAutoFilterDeleteRules($columnIndex, $numberOfColumns, $autoFilterColumns, $autoFilter); + } + $startCol = ($columnIndex > $rangeStart[0]) ? $columnIndex : $rangeStart[0]; + + // Shuffle columns in autofilter range + if ($numberOfColumns > 0) { + $this->adjustAutoFilterInsert($startCol, $numberOfColumns, $rangeEnd[0], $autoFilter); + } else { + $this->adjustAutoFilterDelete($startCol, $numberOfColumns, $rangeEnd[0], $autoFilter); + } + } + } + } + + $worksheet->setAutoFilter( + $this->updateCellReference($autoFilterRange) + ); + } + } + + private function adjustAutoFilterDeleteRules(int $columnIndex, int $numberOfColumns, array $autoFilterColumns, AutoFilter $autoFilter): void + { + // If we're actually deleting any columns that fall within the autofilter range, + // then we delete any rules for those columns + $deleteColumn = $columnIndex + $numberOfColumns - 1; + $deleteCount = abs($numberOfColumns); + + for ($i = 1; $i <= $deleteCount; ++$i) { + $columnName = Coordinate::stringFromColumnIndex($deleteColumn + 1); + if (isset($autoFilterColumns[$columnName])) { + $autoFilter->clearColumn($columnName); + } + ++$deleteColumn; + } + } + + private function adjustAutoFilterInsert(int $startCol, int $numberOfColumns, int $rangeEnd, AutoFilter $autoFilter): void + { + $startColRef = $startCol; + $endColRef = $rangeEnd; + $toColRef = $rangeEnd + $numberOfColumns; + + do { + $autoFilter->shiftColumn(Coordinate::stringFromColumnIndex($endColRef), Coordinate::stringFromColumnIndex($toColRef)); + --$endColRef; + --$toColRef; + } while ($startColRef <= $endColRef); + } + + private function adjustAutoFilterDelete(int $startCol, int $numberOfColumns, int $rangeEnd, AutoFilter $autoFilter): void + { + // For delete, we shuffle from beginning to end to avoid overwriting + $startColID = Coordinate::stringFromColumnIndex($startCol); + $toColID = Coordinate::stringFromColumnIndex($startCol + $numberOfColumns); + $endColID = Coordinate::stringFromColumnIndex($rangeEnd + 1); + + do { + $autoFilter->shiftColumn($startColID, $toColID); + ++$startColID; + ++$toColID; + } while ($startColID !== $endColID); + } + + private function adjustTable(Worksheet $worksheet, string $beforeCellAddress, int $numberOfColumns): void + { + $tableCollection = $worksheet->getTableCollection(); + + foreach ($tableCollection as $table) { + $tableRange = $table->getRange(); + if (!empty($tableRange)) { + if ($numberOfColumns !== 0) { + $tableColumns = $table->getColumns(); + if (count($tableColumns) > 0) { + $column = ''; + $row = 0; + sscanf($beforeCellAddress, '%[A-Z]%d', $column, $row); + $columnIndex = Coordinate::columnIndexFromString($column); + [$rangeStart, $rangeEnd] = Coordinate::rangeBoundaries($tableRange); + if ($columnIndex <= $rangeEnd[0]) { + if ($numberOfColumns < 0) { + $this->adjustTableDeleteRules($columnIndex, $numberOfColumns, $tableColumns, $table); + } + $startCol = ($columnIndex > $rangeStart[0]) ? $columnIndex : $rangeStart[0]; + + // Shuffle columns in table range + if ($numberOfColumns > 0) { + $this->adjustTableInsert($startCol, $numberOfColumns, $rangeEnd[0], $table); + } else { + $this->adjustTableDelete($startCol, $numberOfColumns, $rangeEnd[0], $table); + } + } + } + } + + $table->setRange($this->updateCellReference($tableRange)); + } + } + } + + private function adjustTableDeleteRules(int $columnIndex, int $numberOfColumns, array $tableColumns, Table $table): void + { + // If we're actually deleting any columns that fall within the table range, + // then we delete any rules for those columns + $deleteColumn = $columnIndex + $numberOfColumns - 1; + $deleteCount = abs($numberOfColumns); + + for ($i = 1; $i <= $deleteCount; ++$i) { + $columnName = Coordinate::stringFromColumnIndex($deleteColumn + 1); + if (isset($tableColumns[$columnName])) { + $table->clearColumn($columnName); + } + ++$deleteColumn; + } + } + + private function adjustTableInsert(int $startCol, int $numberOfColumns, int $rangeEnd, Table $table): void + { + $startColRef = $startCol; + $endColRef = $rangeEnd; + $toColRef = $rangeEnd + $numberOfColumns; + + do { + $table->shiftColumn(Coordinate::stringFromColumnIndex($endColRef), Coordinate::stringFromColumnIndex($toColRef)); + --$endColRef; + --$toColRef; + } while ($startColRef <= $endColRef); + } + + private function adjustTableDelete(int $startCol, int $numberOfColumns, int $rangeEnd, Table $table): void + { + // For delete, we shuffle from beginning to end to avoid overwriting + $startColID = Coordinate::stringFromColumnIndex($startCol); + $toColID = Coordinate::stringFromColumnIndex($startCol + $numberOfColumns); + $endColID = Coordinate::stringFromColumnIndex($rangeEnd + 1); + + do { + $table->shiftColumn($startColID, $toColID); + ++$startColID; + ++$toColID; + } while ($startColID !== $endColID); + } + + private function duplicateStylesByColumn(Worksheet $worksheet, int $beforeColumn, int $beforeRow, int $highestRow, int $numberOfColumns): void + { + $beforeColumnName = Coordinate::stringFromColumnIndex($beforeColumn - 1); + for ($i = $beforeRow; $i <= $highestRow - 1; ++$i) { + // Style + $coordinate = $beforeColumnName . $i; + if ($worksheet->cellExists($coordinate)) { + $xfIndex = $worksheet->getCell($coordinate)->getXfIndex(); + for ($j = $beforeColumn; $j <= $beforeColumn - 1 + $numberOfColumns; ++$j) { + $worksheet->getCellByColumnAndRow($j, $i)->setXfIndex($xfIndex); + } + } + } + } + + private function duplicateStylesByRow(Worksheet $worksheet, int $beforeColumn, int $beforeRow, string $highestColumn, int $numberOfRows): void + { + $highestColumnIndex = Coordinate::columnIndexFromString($highestColumn); + for ($i = $beforeColumn; $i <= $highestColumnIndex; ++$i) { + // Style + $coordinate = Coordinate::stringFromColumnIndex($i) . ($beforeRow - 1); + if ($worksheet->cellExists($coordinate)) { + $xfIndex = $worksheet->getCell($coordinate)->getXfIndex(); + for ($j = $beforeRow; $j <= $beforeRow - 1 + $numberOfRows; ++$j) { + $worksheet->getCell(Coordinate::stringFromColumnIndex($i) . $j)->setXfIndex($xfIndex); + } + } + } + } + + /** + * __clone implementation. Cloning should not be allowed in a Singleton! + */ + final public function __clone() + { + throw new Exception('Cloning a Singleton is not allowed!'); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/ITextElement.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/ITextElement.php new file mode 100644 index 0000000..39b70c8 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/ITextElement.php @@ -0,0 +1,36 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\RichText; + +interface ITextElement +{ + /** + * Get text. + * + * @return string Text + */ + public function getText(); + + /** + * Set text. + * + * @param string $text Text + * + * @return ITextElement + */ + public function setText($text); + + /** + * Get font. + * + * @return null|\PhpOffice\PhpSpreadsheet\Style\Font + */ + public function getFont(); + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode(); +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/RichText.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/RichText.php new file mode 100644 index 0000000..88e7c79 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/RichText.php @@ -0,0 +1,171 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\RichText; + +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\DataType; +use PhpOffice\PhpSpreadsheet\IComparable; + +class RichText implements IComparable +{ + /** + * Rich text elements. + * + * @var ITextElement[] + */ + private $richTextElements; + + /** + * Create a new RichText instance. + */ + public function __construct(?Cell $cell = null) + { + // Initialise variables + $this->richTextElements = []; + + // Rich-Text string attached to cell? + if ($cell !== null) { + // Add cell text and style + if ($cell->getValue() != '') { + $objRun = new Run($cell->getValue()); + $objRun->setFont(clone $cell->getWorksheet()->getStyle($cell->getCoordinate())->getFont()); + $this->addText($objRun); + } + + // Set parent value + $cell->setValueExplicit($this, DataType::TYPE_STRING); + } + } + + /** + * Add text. + * + * @param ITextElement $text Rich text element + * + * @return $this + */ + public function addText(ITextElement $text) + { + $this->richTextElements[] = $text; + + return $this; + } + + /** + * Create text. + * + * @param string $text Text + * + * @return TextElement + */ + public function createText($text) + { + $objText = new TextElement($text); + $this->addText($objText); + + return $objText; + } + + /** + * Create text run. + * + * @param string $text Text + * + * @return Run + */ + public function createTextRun($text) + { + $objText = new Run($text); + $this->addText($objText); + + return $objText; + } + + /** + * Get plain text. + * + * @return string + */ + public function getPlainText() + { + // Return value + $returnValue = ''; + + // Loop through all ITextElements + foreach ($this->richTextElements as $text) { + $returnValue .= $text->getText(); + } + + return $returnValue; + } + + /** + * Convert to string. + * + * @return string + */ + public function __toString() + { + return $this->getPlainText(); + } + + /** + * Get Rich Text elements. + * + * @return ITextElement[] + */ + public function getRichTextElements() + { + return $this->richTextElements; + } + + /** + * Set Rich Text elements. + * + * @param ITextElement[] $textElements Array of elements + * + * @return $this + */ + public function setRichTextElements(array $textElements) + { + $this->richTextElements = $textElements; + + return $this; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + $hashElements = ''; + foreach ($this->richTextElements as $element) { + $hashElements .= $element->getHashCode(); + } + + return md5( + $hashElements . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + $newValue = is_object($value) ? (clone $value) : $value; + if (is_array($value)) { + $newValue = []; + foreach ($value as $key2 => $value2) { + $newValue[$key2] = is_object($value2) ? (clone $value2) : $value2; + } + } + $this->$key = $newValue; + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/Run.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/Run.php new file mode 100644 index 0000000..9c9f807 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/Run.php @@ -0,0 +1,65 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\RichText; + +use PhpOffice\PhpSpreadsheet\Style\Font; + +class Run extends TextElement implements ITextElement +{ + /** + * Font. + * + * @var Font + */ + private $font; + + /** + * Create a new Run instance. + * + * @param string $text Text + */ + public function __construct($text = '') + { + parent::__construct($text); + // Initialise variables + $this->font = new Font(); + } + + /** + * Get font. + * + * @return null|\PhpOffice\PhpSpreadsheet\Style\Font + */ + public function getFont() + { + return $this->font; + } + + /** + * Set font. + * + * @param Font $font Font + * + * @return $this + */ + public function setFont(?Font $font = null) + { + $this->font = $font; + + return $this; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->getText() . + $this->font->getHashCode() . + __CLASS__ + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/TextElement.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/TextElement.php new file mode 100644 index 0000000..2373343 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/TextElement.php @@ -0,0 +1,71 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\RichText; + +class TextElement implements ITextElement +{ + /** + * Text. + * + * @var string + */ + private $text; + + /** + * Create a new TextElement instance. + * + * @param string $text Text + */ + public function __construct($text = '') + { + // Initialise variables + $this->text = $text; + } + + /** + * Get text. + * + * @return string Text + */ + public function getText() + { + return $this->text; + } + + /** + * Set text. + * + * @param string $text Text + * + * @return $this + */ + public function setText($text) + { + $this->text = $text; + + return $this; + } + + /** + * Get font. + * + * @return null|\PhpOffice\PhpSpreadsheet\Style\Font + */ + public function getFont() + { + return null; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->text . + __CLASS__ + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Settings.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Settings.php new file mode 100644 index 0000000..5fbbadb --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Settings.php @@ -0,0 +1,214 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Chart\Renderer\IRenderer; +use PhpOffice\PhpSpreadsheet\Collection\Memory; +use Psr\Http\Client\ClientInterface; +use Psr\Http\Message\RequestFactoryInterface; +use Psr\SimpleCache\CacheInterface; + +class Settings +{ + /** + * Class name of the chart renderer used for rendering charts + * eg: PhpOffice\PhpSpreadsheet\Chart\Renderer\JpGraph. + * + * @var string + */ + private static $chartRenderer; + + /** + * Default options for libxml loader. + * + * @var int + */ + private static $libXmlLoaderOptions; + + /** + * The cache implementation to be used for cell collection. + * + * @var CacheInterface + */ + private static $cache; + + /** + * The HTTP client implementation to be used for network request. + * + * @var null|ClientInterface + */ + private static $httpClient; + + /** + * @var null|RequestFactoryInterface + */ + private static $requestFactory; + + /** + * Set the locale code to use for formula translations and any special formatting. + * + * @param string $locale The locale code to use (e.g. "fr" or "pt_br" or "en_uk") + * + * @return bool Success or failure + */ + public static function setLocale(string $locale) + { + return Calculation::getInstance()->setLocale($locale); + } + + public static function getLocale(): string + { + return Calculation::getInstance()->getLocale(); + } + + /** + * Identify to PhpSpreadsheet the external library to use for rendering charts. + * + * @param string $rendererClassName Class name of the chart renderer + * eg: PhpOffice\PhpSpreadsheet\Chart\Renderer\JpGraph + */ + public static function setChartRenderer(string $rendererClassName): void + { + if (!is_a($rendererClassName, IRenderer::class, true)) { + throw new Exception('Chart renderer must implement ' . IRenderer::class); + } + + self::$chartRenderer = $rendererClassName; + } + + /** + * Return the Chart Rendering Library that PhpSpreadsheet is currently configured to use. + * + * @return null|string Class name of the chart renderer + * eg: PhpOffice\PhpSpreadsheet\Chart\Renderer\JpGraph + */ + public static function getChartRenderer(): ?string + { + return self::$chartRenderer; + } + + public static function htmlEntityFlags(): int + { + return \ENT_COMPAT; + } + + /** + * Set default options for libxml loader. + * + * @param int $options Default options for libxml loader + */ + public static function setLibXmlLoaderOptions($options): void + { + if ($options === null && defined('LIBXML_DTDLOAD')) { + $options = LIBXML_DTDLOAD | LIBXML_DTDATTR; + } + self::$libXmlLoaderOptions = $options; + } + + /** + * Get default options for libxml loader. + * Defaults to LIBXML_DTDLOAD | LIBXML_DTDATTR when not set explicitly. + * + * @return int Default options for libxml loader + */ + public static function getLibXmlLoaderOptions(): int + { + if (self::$libXmlLoaderOptions === null && defined('LIBXML_DTDLOAD')) { + self::setLibXmlLoaderOptions(LIBXML_DTDLOAD | LIBXML_DTDATTR); + } elseif (self::$libXmlLoaderOptions === null) { + self::$libXmlLoaderOptions = 0; + } + + return self::$libXmlLoaderOptions; + } + + /** + * Deprecated, has no effect. + * + * @param bool $state + * + * @deprecated will be removed without replacement as it is no longer necessary on PHP 7.3.0+ + */ + public static function setLibXmlDisableEntityLoader($state): void + { + // noop + } + + /** + * Deprecated, has no effect. + * + * @return bool $state + * + * @deprecated will be removed without replacement as it is no longer necessary on PHP 7.3.0+ + */ + public static function getLibXmlDisableEntityLoader(): bool + { + return true; + } + + /** + * Sets the implementation of cache that should be used for cell collection. + */ + public static function setCache(CacheInterface $cache): void + { + self::$cache = $cache; + } + + /** + * Gets the implementation of cache that is being used for cell collection. + */ + public static function getCache(): CacheInterface + { + if (!self::$cache) { + self::$cache = new Memory(); + } + + return self::$cache; + } + + /** + * Set the HTTP client implementation to be used for network request. + */ + public static function setHttpClient(ClientInterface $httpClient, RequestFactoryInterface $requestFactory): void + { + self::$httpClient = $httpClient; + self::$requestFactory = $requestFactory; + } + + /** + * Unset the HTTP client configuration. + */ + public static function unsetHttpClient(): void + { + self::$httpClient = null; + self::$requestFactory = null; + } + + /** + * Get the HTTP client implementation to be used for network request. + */ + public static function getHttpClient(): ClientInterface + { + self::assertHttpClient(); + + return self::$httpClient; + } + + /** + * Get the HTTP request factory. + */ + public static function getRequestFactory(): RequestFactoryInterface + { + self::assertHttpClient(); + + return self::$requestFactory; + } + + private static function assertHttpClient(): void + { + if (!self::$httpClient || !self::$requestFactory) { + throw new Exception('HTTP client must be configured via Settings::setHttpClient() to be able to use WEBSERVICE function.'); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/CodePage.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/CodePage.php new file mode 100644 index 0000000..8718a61 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/CodePage.php @@ -0,0 +1,114 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; + +class CodePage +{ + public const DEFAULT_CODE_PAGE = 'CP1252'; + + /** @var array */ + private static $pageArray = [ + 0 => 'CP1252', // CodePage is not always correctly set when the xls file was saved by Apple's Numbers program + 367 => 'ASCII', // ASCII + 437 => 'CP437', // OEM US + //720 => 'notsupported', // OEM Arabic + 737 => 'CP737', // OEM Greek + 775 => 'CP775', // OEM Baltic + 850 => 'CP850', // OEM Latin I + 852 => 'CP852', // OEM Latin II (Central European) + 855 => 'CP855', // OEM Cyrillic + 857 => 'CP857', // OEM Turkish + 858 => 'CP858', // OEM Multilingual Latin I with Euro + 860 => 'CP860', // OEM Portugese + 861 => 'CP861', // OEM Icelandic + 862 => 'CP862', // OEM Hebrew + 863 => 'CP863', // OEM Canadian (French) + 864 => 'CP864', // OEM Arabic + 865 => 'CP865', // OEM Nordic + 866 => 'CP866', // OEM Cyrillic (Russian) + 869 => 'CP869', // OEM Greek (Modern) + 874 => 'CP874', // ANSI Thai + 932 => 'CP932', // ANSI Japanese Shift-JIS + 936 => 'CP936', // ANSI Chinese Simplified GBK + 949 => 'CP949', // ANSI Korean (Wansung) + 950 => 'CP950', // ANSI Chinese Traditional BIG5 + 1200 => 'UTF-16LE', // UTF-16 (BIFF8) + 1250 => 'CP1250', // ANSI Latin II (Central European) + 1251 => 'CP1251', // ANSI Cyrillic + 1252 => 'CP1252', // ANSI Latin I (BIFF4-BIFF7) + 1253 => 'CP1253', // ANSI Greek + 1254 => 'CP1254', // ANSI Turkish + 1255 => 'CP1255', // ANSI Hebrew + 1256 => 'CP1256', // ANSI Arabic + 1257 => 'CP1257', // ANSI Baltic + 1258 => 'CP1258', // ANSI Vietnamese + 1361 => 'CP1361', // ANSI Korean (Johab) + 10000 => 'MAC', // Apple Roman + 10001 => 'CP932', // Macintosh Japanese + 10002 => 'CP950', // Macintosh Chinese Traditional + 10003 => 'CP1361', // Macintosh Korean + 10004 => 'MACARABIC', // Apple Arabic + 10005 => 'MACHEBREW', // Apple Hebrew + 10006 => 'MACGREEK', // Macintosh Greek + 10007 => 'MACCYRILLIC', // Macintosh Cyrillic + 10008 => 'CP936', // Macintosh - Simplified Chinese (GB 2312) + 10010 => 'MACROMANIA', // Macintosh Romania + 10017 => 'MACUKRAINE', // Macintosh Ukraine + 10021 => 'MACTHAI', // Macintosh Thai + 10029 => ['MACCENTRALEUROPE', 'MAC-CENTRALEUROPE'], // Macintosh Central Europe + 10079 => 'MACICELAND', // Macintosh Icelandic + 10081 => 'MACTURKISH', // Macintosh Turkish + 10082 => 'MACCROATIAN', // Macintosh Croatian + 21010 => 'UTF-16LE', // UTF-16 (BIFF8) This isn't correct, but some Excel writer libraries erroneously use Codepage 21010 for UTF-16LE + 32768 => 'MAC', // Apple Roman + //32769 => 'unsupported', // ANSI Latin I (BIFF2-BIFF3) + 65000 => 'UTF-7', // Unicode (UTF-7) + 65001 => 'UTF-8', // Unicode (UTF-8) + 99999 => ['unsupported'], // Unicode (UTF-8) + ]; + + public static function validate(string $codePage): bool + { + return in_array($codePage, self::$pageArray, true); + } + + /** + * Convert Microsoft Code Page Identifier to Code Page Name which iconv + * and mbstring understands. + * + * @param int $codePage Microsoft Code Page Indentifier + * + * @return string Code Page Name + */ + public static function numberToName(int $codePage): string + { + if (array_key_exists($codePage, self::$pageArray)) { + $value = self::$pageArray[$codePage]; + if (is_array($value)) { + foreach ($value as $encoding) { + if (@iconv('UTF-8', $encoding, ' ') !== false) { + self::$pageArray[$codePage] = $encoding; + + return $encoding; + } + } + + throw new PhpSpreadsheetException("Code page $codePage not implemented on this system."); + } else { + return $value; + } + } + if ($codePage == 720 || $codePage == 32769) { + throw new PhpSpreadsheetException("Code page $codePage not supported."); // OEM Arabic + } + + throw new PhpSpreadsheetException('Unknown codepage: ' . $codePage); + } + + public static function getEncodings(): array + { + return self::$pageArray; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Date.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Date.php new file mode 100644 index 0000000..8727807 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Date.php @@ -0,0 +1,556 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared; + +use DateTime; +use DateTimeInterface; +use DateTimeZone; +use PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; +use PhpOffice\PhpSpreadsheet\Shared\Date as SharedDate; +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; + +class Date +{ + /** constants */ + const CALENDAR_WINDOWS_1900 = 1900; // Base date of 1st Jan 1900 = 1.0 + const CALENDAR_MAC_1904 = 1904; // Base date of 2nd Jan 1904 = 1.0 + + /** + * Names of the months of the year, indexed by shortname + * Planned usage for locale settings. + * + * @var string[] + */ + public static $monthNames = [ + 'Jan' => 'January', + 'Feb' => 'February', + 'Mar' => 'March', + 'Apr' => 'April', + 'May' => 'May', + 'Jun' => 'June', + 'Jul' => 'July', + 'Aug' => 'August', + 'Sep' => 'September', + 'Oct' => 'October', + 'Nov' => 'November', + 'Dec' => 'December', + ]; + + /** + * @var string[] + */ + public static $numberSuffixes = [ + 'st', + 'nd', + 'rd', + 'th', + ]; + + /** + * Base calendar year to use for calculations + * Value is either CALENDAR_WINDOWS_1900 (1900) or CALENDAR_MAC_1904 (1904). + * + * @var int + */ + protected static $excelCalendar = self::CALENDAR_WINDOWS_1900; + + /** + * Default timezone to use for DateTime objects. + * + * @var null|DateTimeZone + */ + protected static $defaultTimeZone; + + /** + * Set the Excel calendar (Windows 1900 or Mac 1904). + * + * @param int $baseYear Excel base date (1900 or 1904) + * + * @return bool Success or failure + */ + public static function setExcelCalendar($baseYear) + { + if ( + ($baseYear == self::CALENDAR_WINDOWS_1900) || + ($baseYear == self::CALENDAR_MAC_1904) + ) { + self::$excelCalendar = $baseYear; + + return true; + } + + return false; + } + + /** + * Return the Excel calendar (Windows 1900 or Mac 1904). + * + * @return int Excel base date (1900 or 1904) + */ + public static function getExcelCalendar() + { + return self::$excelCalendar; + } + + /** + * Set the Default timezone to use for dates. + * + * @param null|DateTimeZone|string $timeZone The timezone to set for all Excel datetimestamp to PHP DateTime Object conversions + * + * @return bool Success or failure + */ + public static function setDefaultTimezone($timeZone) + { + try { + $timeZone = self::validateTimeZone($timeZone); + self::$defaultTimeZone = $timeZone; + $retval = true; + } catch (PhpSpreadsheetException $e) { + $retval = false; + } + + return $retval; + } + + /** + * Return the Default timezone, or UTC if default not set. + */ + public static function getDefaultTimezone(): DateTimeZone + { + return self::$defaultTimeZone ?? new DateTimeZone('UTC'); + } + + /** + * Return the Default timezone, or local timezone if default is not set. + */ + public static function getDefaultOrLocalTimezone(): DateTimeZone + { + return self::$defaultTimeZone ?? new DateTimeZone(date_default_timezone_get()); + } + + /** + * Return the Default timezone even if null. + */ + public static function getDefaultTimezoneOrNull(): ?DateTimeZone + { + return self::$defaultTimeZone; + } + + /** + * Validate a timezone. + * + * @param null|DateTimeZone|string $timeZone The timezone to validate, either as a timezone string or object + * + * @return ?DateTimeZone The timezone as a timezone object + */ + private static function validateTimeZone($timeZone) + { + if ($timeZone instanceof DateTimeZone || $timeZone === null) { + return $timeZone; + } + if (in_array($timeZone, DateTimeZone::listIdentifiers(DateTimeZone::ALL_WITH_BC))) { + return new DateTimeZone($timeZone); + } + + throw new PhpSpreadsheetException('Invalid timezone'); + } + + /** + * @param mixed $value + * + * @return float|int + */ + public static function convertIsoDate($value) + { + if (!is_string($value)) { + throw new Exception('Non-string value supplied for Iso Date conversion'); + } + + $date = new DateTime($value); + $dateErrors = DateTime::getLastErrors(); + + if (is_array($dateErrors) && ($dateErrors['warning_count'] > 0 || $dateErrors['error_count'] > 0)) { + throw new Exception("Invalid string $value supplied for datatype Date"); + } + + $newValue = SharedDate::PHPToExcel($date); + if ($newValue === false) { + throw new Exception("Invalid string $value supplied for datatype Date"); + } + + if (preg_match('/^\\d\\d:\\d\\d:\\d\\d/', $value) == 1) { + $newValue = fmod($newValue, 1.0); + } + + return $newValue; + } + + /** + * Convert a MS serialized datetime value from Excel to a PHP Date/Time object. + * + * @param float|int $excelTimestamp MS Excel serialized date/time value + * @param null|DateTimeZone|string $timeZone The timezone to assume for the Excel timestamp, + * if you don't want to treat it as a UTC value + * Use the default (UTC) unless you absolutely need a conversion + * + * @return DateTime PHP date/time object + */ + public static function excelToDateTimeObject($excelTimestamp, $timeZone = null) + { + $timeZone = ($timeZone === null) ? self::getDefaultTimezone() : self::validateTimeZone($timeZone); + if (Functions::getCompatibilityMode() == Functions::COMPATIBILITY_EXCEL) { + if ($excelTimestamp < 1 && self::$excelCalendar === self::CALENDAR_WINDOWS_1900) { + // Unix timestamp base date + $baseDate = new DateTime('1970-01-01', $timeZone); + } else { + // MS Excel calendar base dates + if (self::$excelCalendar == self::CALENDAR_WINDOWS_1900) { + // Allow adjustment for 1900 Leap Year in MS Excel + $baseDate = ($excelTimestamp < 60) ? new DateTime('1899-12-31', $timeZone) : new DateTime('1899-12-30', $timeZone); + } else { + $baseDate = new DateTime('1904-01-01', $timeZone); + } + } + } else { + $baseDate = new DateTime('1899-12-30', $timeZone); + } + + $days = floor($excelTimestamp); + $partDay = $excelTimestamp - $days; + $hours = floor($partDay * 24); + $partDay = $partDay * 24 - $hours; + $minutes = floor($partDay * 60); + $partDay = $partDay * 60 - $minutes; + $seconds = round($partDay * 60); + + if ($days >= 0) { + $days = '+' . $days; + } + $interval = $days . ' days'; + + return $baseDate->modify($interval) + ->setTime((int) $hours, (int) $minutes, (int) $seconds); + } + + /** + * Convert a MS serialized datetime value from Excel to a unix timestamp. + * The use of Unix timestamps, and therefore this function, is discouraged. + * They are not Y2038-safe on a 32-bit system, and have no timezone info. + * + * @param float|int $excelTimestamp MS Excel serialized date/time value + * @param null|DateTimeZone|string $timeZone The timezone to assume for the Excel timestamp, + * if you don't want to treat it as a UTC value + * Use the default (UTC) unless you absolutely need a conversion + * + * @return int Unix timetamp for this date/time + */ + public static function excelToTimestamp($excelTimestamp, $timeZone = null) + { + return (int) self::excelToDateTimeObject($excelTimestamp, $timeZone) + ->format('U'); + } + + /** + * Convert a date from PHP to an MS Excel serialized date/time value. + * + * @param mixed $dateValue PHP DateTime object or a string - Unix timestamp is also permitted, but discouraged; + * not Y2038-safe on a 32-bit system, and no timezone info + * + * @return false|float Excel date/time value + * or boolean FALSE on failure + */ + public static function PHPToExcel($dateValue) + { + if ((is_object($dateValue)) && ($dateValue instanceof DateTimeInterface)) { + return self::dateTimeToExcel($dateValue); + } elseif (is_numeric($dateValue)) { + return self::timestampToExcel($dateValue); + } elseif (is_string($dateValue)) { + return self::stringToExcel($dateValue); + } + + return false; + } + + /** + * Convert a PHP DateTime object to an MS Excel serialized date/time value. + * + * @param DateTimeInterface $dateValue PHP DateTime object + * + * @return float MS Excel serialized date/time value + */ + public static function dateTimeToExcel(DateTimeInterface $dateValue) + { + return self::formattedPHPToExcel( + (int) $dateValue->format('Y'), + (int) $dateValue->format('m'), + (int) $dateValue->format('d'), + (int) $dateValue->format('H'), + (int) $dateValue->format('i'), + (int) $dateValue->format('s') + ); + } + + /** + * Convert a Unix timestamp to an MS Excel serialized date/time value. + * The use of Unix timestamps, and therefore this function, is discouraged. + * They are not Y2038-safe on a 32-bit system, and have no timezone info. + * + * @param int $unixTimestamp Unix Timestamp + * + * @return false|float MS Excel serialized date/time value + */ + public static function timestampToExcel($unixTimestamp) + { + if (!is_numeric($unixTimestamp)) { + return false; + } + + return self::dateTimeToExcel(new DateTime('@' . $unixTimestamp)); + } + + /** + * formattedPHPToExcel. + * + * @param int $year + * @param int $month + * @param int $day + * @param int $hours + * @param int $minutes + * @param int $seconds + * + * @return float Excel date/time value + */ + public static function formattedPHPToExcel($year, $month, $day, $hours = 0, $minutes = 0, $seconds = 0) + { + if (self::$excelCalendar == self::CALENDAR_WINDOWS_1900) { + // + // Fudge factor for the erroneous fact that the year 1900 is treated as a Leap Year in MS Excel + // This affects every date following 28th February 1900 + // + $excel1900isLeapYear = true; + if (($year == 1900) && ($month <= 2)) { + $excel1900isLeapYear = false; + } + $myexcelBaseDate = 2415020; + } else { + $myexcelBaseDate = 2416481; + $excel1900isLeapYear = false; + } + + // Julian base date Adjustment + if ($month > 2) { + $month -= 3; + } else { + $month += 9; + --$year; + } + + // Calculate the Julian Date, then subtract the Excel base date (JD 2415020 = 31-Dec-1899 Giving Excel Date of 0) + $century = (int) substr($year, 0, 2); + $decade = (int) substr($year, 2, 2); + $excelDate = floor((146097 * $century) / 4) + floor((1461 * $decade) / 4) + floor((153 * $month + 2) / 5) + $day + 1721119 - $myexcelBaseDate + $excel1900isLeapYear; + + $excelTime = (($hours * 3600) + ($minutes * 60) + $seconds) / 86400; + + return (float) $excelDate + $excelTime; + } + + /** + * Is a given cell a date/time? + * + * @return bool + */ + public static function isDateTime(Cell $cell) + { + return is_numeric($cell->getCalculatedValue()) && + self::isDateTimeFormat( + $cell->getWorksheet()->getStyle( + $cell->getCoordinate() + )->getNumberFormat() + ); + } + + /** + * Is a given number format a date/time? + * + * @return bool + */ + public static function isDateTimeFormat(NumberFormat $excelFormatCode) + { + return self::isDateTimeFormatCode($excelFormatCode->getFormatCode()); + } + + private static $possibleDateFormatCharacters = 'eymdHs'; + + /** + * Is a given number format code a date/time? + * + * @param string $excelFormatCode + * + * @return bool + */ + public static function isDateTimeFormatCode($excelFormatCode) + { + if (strtolower($excelFormatCode) === strtolower(NumberFormat::FORMAT_GENERAL)) { + // "General" contains an epoch letter 'e', so we trap for it explicitly here (case-insensitive check) + return false; + } + if (preg_match('/[0#]E[+-]0/i', $excelFormatCode)) { + // Scientific format + return false; + } + + // Switch on formatcode + switch ($excelFormatCode) { + // Explicitly defined date formats + case NumberFormat::FORMAT_DATE_YYYYMMDD: + case NumberFormat::FORMAT_DATE_YYYYMMDD2: + case NumberFormat::FORMAT_DATE_DDMMYYYY: + case NumberFormat::FORMAT_DATE_DMYSLASH: + case NumberFormat::FORMAT_DATE_DMYMINUS: + case NumberFormat::FORMAT_DATE_DMMINUS: + case NumberFormat::FORMAT_DATE_MYMINUS: + case NumberFormat::FORMAT_DATE_DATETIME: + case NumberFormat::FORMAT_DATE_TIME1: + case NumberFormat::FORMAT_DATE_TIME2: + case NumberFormat::FORMAT_DATE_TIME3: + case NumberFormat::FORMAT_DATE_TIME4: + case NumberFormat::FORMAT_DATE_TIME5: + case NumberFormat::FORMAT_DATE_TIME6: + case NumberFormat::FORMAT_DATE_TIME7: + case NumberFormat::FORMAT_DATE_TIME8: + case NumberFormat::FORMAT_DATE_YYYYMMDDSLASH: + case NumberFormat::FORMAT_DATE_XLSX14: + case NumberFormat::FORMAT_DATE_XLSX15: + case NumberFormat::FORMAT_DATE_XLSX16: + case NumberFormat::FORMAT_DATE_XLSX17: + case NumberFormat::FORMAT_DATE_XLSX22: + return true; + } + + // Typically number, currency or accounting (or occasionally fraction) formats + if ((substr($excelFormatCode, 0, 1) == '_') || (substr($excelFormatCode, 0, 2) == '0 ')) { + return false; + } + // Some "special formats" provided in German Excel versions were detected as date time value, + // so filter them out here - "\C\H\-00000" (Switzerland) and "\D-00000" (Germany). + if (\strpos($excelFormatCode, '-00000') !== false) { + return false; + } + // Try checking for any of the date formatting characters that don't appear within square braces + if (preg_match('/(^|\])[^\[]*[' . self::$possibleDateFormatCharacters . ']/i', $excelFormatCode)) { + // We might also have a format mask containing quoted strings... + // we don't want to test for any of our characters within the quoted blocks + if (strpos($excelFormatCode, '"') !== false) { + $segMatcher = false; + foreach (explode('"', $excelFormatCode) as $subVal) { + // Only test in alternate array entries (the non-quoted blocks) + if ( + ($segMatcher = !$segMatcher) && + (preg_match('/(^|\])[^\[]*[' . self::$possibleDateFormatCharacters . ']/i', $subVal)) + ) { + return true; + } + } + + return false; + } + + return true; + } + + // No date... + return false; + } + + /** + * Convert a date/time string to Excel time. + * + * @param string $dateValue Examples: '2009-12-31', '2009-12-31 15:59', '2009-12-31 15:59:10' + * + * @return false|float Excel date/time serial value + */ + public static function stringToExcel($dateValue) + { + if (strlen($dateValue) < 2) { + return false; + } + if (!preg_match('/^(\d{1,4}[ \.\/\-][A-Z]{3,9}([ \.\/\-]\d{1,4})?|[A-Z]{3,9}[ \.\/\-]\d{1,4}([ \.\/\-]\d{1,4})?|\d{1,4}[ \.\/\-]\d{1,4}([ \.\/\-]\d{1,4})?)( \d{1,2}:\d{1,2}(:\d{1,2})?)?$/iu', $dateValue)) { + return false; + } + + $dateValueNew = DateTimeExcel\DateValue::fromString($dateValue); + + if ($dateValueNew === ExcelError::VALUE()) { + return false; + } + + if (strpos($dateValue, ':') !== false) { + $timeValue = DateTimeExcel\TimeValue::fromString($dateValue); + if ($timeValue === ExcelError::VALUE()) { + return false; + } + $dateValueNew += $timeValue; + } + + return $dateValueNew; + } + + /** + * Converts a month name (either a long or a short name) to a month number. + * + * @param string $monthName Month name or abbreviation + * + * @return int|string Month number (1 - 12), or the original string argument if it isn't a valid month name + */ + public static function monthStringToNumber($monthName) + { + $monthIndex = 1; + foreach (self::$monthNames as $shortMonthName => $longMonthName) { + if (($monthName === $longMonthName) || ($monthName === $shortMonthName)) { + return $monthIndex; + } + ++$monthIndex; + } + + return $monthName; + } + + /** + * Strips an ordinal from a numeric value. + * + * @param string $day Day number with an ordinal + * + * @return int|string The integer value with any ordinal stripped, or the original string argument if it isn't a valid numeric + */ + public static function dayStringToNumber($day) + { + $strippedDayValue = (str_replace(self::$numberSuffixes, '', $day)); + if (is_numeric($strippedDayValue)) { + return (int) $strippedDayValue; + } + + return $day; + } + + public static function dateTimeFromTimestamp(string $date, ?DateTimeZone $timeZone = null): DateTime + { + $dtobj = DateTime::createFromFormat('U', $date) ?: new DateTime(); + $dtobj->setTimeZone($timeZone ?? self::getDefaultOrLocalTimezone()); + + return $dtobj; + } + + public static function formattedDateTimeFromTimestamp(string $date, string $format, ?DateTimeZone $timeZone = null): string + { + $dtobj = self::dateTimeFromTimestamp($date, $timeZone); + + return $dtobj->format($format); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Drawing.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Drawing.php new file mode 100644 index 0000000..3378958 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Drawing.php @@ -0,0 +1,267 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared; + +use GdImage; +use SimpleXMLElement; + +class Drawing +{ + /** + * Convert pixels to EMU. + * + * @param int $pixelValue Value in pixels + * + * @return int Value in EMU + */ + public static function pixelsToEMU($pixelValue) + { + return $pixelValue * 9525; + } + + /** + * Convert EMU to pixels. + * + * @param int|SimpleXMLElement $emuValue Value in EMU + * + * @return int Value in pixels + */ + public static function EMUToPixels($emuValue) + { + $emuValue = (int) $emuValue; + if ($emuValue != 0) { + return (int) round($emuValue / 9525); + } + + return 0; + } + + /** + * Convert pixels to column width. Exact algorithm not known. + * By inspection of a real Excel file using Calibri 11, one finds 1000px ~ 142.85546875 + * This gives a conversion factor of 7. Also, we assume that pixels and font size are proportional. + * + * @param int $pixelValue Value in pixels + * + * @return float|int Value in cell dimension + */ + public static function pixelsToCellDimension($pixelValue, \PhpOffice\PhpSpreadsheet\Style\Font $defaultFont) + { + // Font name and size + $name = $defaultFont->getName(); + $size = $defaultFont->getSize(); + + if (isset(Font::$defaultColumnWidths[$name][$size])) { + // Exact width can be determined + return $pixelValue * Font::$defaultColumnWidths[$name][$size]['width'] + / Font::$defaultColumnWidths[$name][$size]['px']; + } + + // We don't have data for this particular font and size, use approximation by + // extrapolating from Calibri 11 + return $pixelValue * 11 * Font::$defaultColumnWidths['Calibri'][11]['width'] + / Font::$defaultColumnWidths['Calibri'][11]['px'] / $size; + } + + /** + * Convert column width from (intrinsic) Excel units to pixels. + * + * @param float $cellWidth Value in cell dimension + * @param \PhpOffice\PhpSpreadsheet\Style\Font $defaultFont Default font of the workbook + * + * @return int Value in pixels + */ + public static function cellDimensionToPixels($cellWidth, \PhpOffice\PhpSpreadsheet\Style\Font $defaultFont) + { + // Font name and size + $name = $defaultFont->getName(); + $size = $defaultFont->getSize(); + + if (isset(Font::$defaultColumnWidths[$name][$size])) { + // Exact width can be determined + $colWidth = $cellWidth * Font::$defaultColumnWidths[$name][$size]['px'] + / Font::$defaultColumnWidths[$name][$size]['width']; + } else { + // We don't have data for this particular font and size, use approximation by + // extrapolating from Calibri 11 + $colWidth = $cellWidth * $size * Font::$defaultColumnWidths['Calibri'][11]['px'] + / Font::$defaultColumnWidths['Calibri'][11]['width'] / 11; + } + + // Round pixels to closest integer + $colWidth = (int) round($colWidth); + + return $colWidth; + } + + /** + * Convert pixels to points. + * + * @param int $pixelValue Value in pixels + * + * @return float Value in points + */ + public static function pixelsToPoints($pixelValue) + { + return $pixelValue * 0.75; + } + + /** + * Convert points to pixels. + * + * @param int $pointValue Value in points + * + * @return int Value in pixels + */ + public static function pointsToPixels($pointValue) + { + if ($pointValue != 0) { + return (int) ceil($pointValue / 0.75); + } + + return 0; + } + + /** + * Convert degrees to angle. + * + * @param int $degrees Degrees + * + * @return int Angle + */ + public static function degreesToAngle($degrees) + { + return (int) round($degrees * 60000); + } + + /** + * Convert angle to degrees. + * + * @param int|SimpleXMLElement $angle Angle + * + * @return int Degrees + */ + public static function angleToDegrees($angle) + { + $angle = (int) $angle; + if ($angle != 0) { + return (int) round($angle / 60000); + } + + return 0; + } + + /** + * Create a new image from file. By alexander at alexauto dot nl. + * + * @see http://www.php.net/manual/en/function.imagecreatefromwbmp.php#86214 + * + * @param string $bmpFilename Path to Windows DIB (BMP) image + * + * @return GdImage|resource + */ + public static function imagecreatefrombmp($bmpFilename) + { + // Load the image into a string + $file = fopen($bmpFilename, 'rb'); + /** @phpstan-ignore-next-line */ + $read = fread($file, 10); + // @phpstan-ignore-next-line + while (!feof($file) && ($read != '')) { + // @phpstan-ignore-next-line + $read .= fread($file, 1024); + } + + /** @phpstan-ignore-next-line */ + $temp = unpack('H*', $read); + $hex = $temp[1]; + $header = substr($hex, 0, 108); + + // Process the header + // Structure: http://www.fastgraph.com/help/bmp_header_format.html + $width = 0; + $height = 0; + if (substr($header, 0, 4) == '424d') { + // Cut it in parts of 2 bytes + $header_parts = str_split($header, 2); + + // Get the width 4 bytes + $width = hexdec($header_parts[19] . $header_parts[18]); + + // Get the height 4 bytes + $height = hexdec($header_parts[23] . $header_parts[22]); + + // Unset the header params + unset($header_parts); + } + + // Define starting X and Y + $x = 0; + $y = 1; + + // Create newimage + + /** @phpstan-ignore-next-line */ + $image = imagecreatetruecolor($width, $height); + + // Grab the body from the image + $body = substr($hex, 108); + + // Calculate if padding at the end-line is needed + // Divided by two to keep overview. + // 1 byte = 2 HEX-chars + $body_size = (strlen($body) / 2); + $header_size = ($width * $height); + + // Use end-line padding? Only when needed + $usePadding = ($body_size > ($header_size * 3) + 4); + + // Using a for-loop with index-calculation instaid of str_split to avoid large memory consumption + // Calculate the next DWORD-position in the body + for ($i = 0; $i < $body_size; $i += 3) { + // Calculate line-ending and padding + if ($x >= $width) { + // If padding needed, ignore image-padding + // Shift i to the ending of the current 32-bit-block + if ($usePadding) { + $i += $width % 4; + } + + // Reset horizontal position + $x = 0; + + // Raise the height-position (bottom-up) + ++$y; + + // Reached the image-height? Break the for-loop + if ($y > $height) { + break; + } + } + + // Calculation of the RGB-pixel (defined as BGR in image-data) + // Define $i_pos as absolute position in the body + $i_pos = $i * 2; + $r = hexdec($body[$i_pos + 4] . $body[$i_pos + 5]); + $g = hexdec($body[$i_pos + 2] . $body[$i_pos + 3]); + $b = hexdec($body[$i_pos] . $body[$i_pos + 1]); + + // Calculate and draw the pixel + + /** @phpstan-ignore-next-line */ + $color = imagecolorallocate($image, $r, $g, $b); + // @phpstan-ignore-next-line + imagesetpixel($image, $x, $height - $y, $color); + + // Raise the horizontal position + ++$x; + } + + // Unset the body / free the memory + unset($body); + + // Return image-object + // @phpstan-ignore-next-line + return $image; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher.php new file mode 100644 index 0000000..c6d0a6f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher.php @@ -0,0 +1,64 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared; + +class Escher +{ + /** + * Drawing Group Container. + * + * @var Escher\DggContainer + */ + private $dggContainer; + + /** + * Drawing Container. + * + * @var Escher\DgContainer + */ + private $dgContainer; + + /** + * Get Drawing Group Container. + * + * @return Escher\DggContainer + */ + public function getDggContainer() + { + return $this->dggContainer; + } + + /** + * Set Drawing Group Container. + * + * @param Escher\DggContainer $dggContainer + * + * @return Escher\DggContainer + */ + public function setDggContainer($dggContainer) + { + return $this->dggContainer = $dggContainer; + } + + /** + * Get Drawing Container. + * + * @return Escher\DgContainer + */ + public function getDgContainer() + { + return $this->dgContainer; + } + + /** + * Set Drawing Container. + * + * @param Escher\DgContainer $dgContainer + * + * @return Escher\DgContainer + */ + public function setDgContainer($dgContainer) + { + return $this->dgContainer = $dgContainer; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer.php new file mode 100644 index 0000000..b0d75d7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer.php @@ -0,0 +1,52 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\Escher; + +class DgContainer +{ + /** + * Drawing index, 1-based. + * + * @var int + */ + private $dgId; + + /** + * Last shape index in this drawing. + * + * @var int + */ + private $lastSpId; + + private $spgrContainer; + + public function getDgId() + { + return $this->dgId; + } + + public function setDgId($value): void + { + $this->dgId = $value; + } + + public function getLastSpId() + { + return $this->lastSpId; + } + + public function setLastSpId($value): void + { + $this->lastSpId = $value; + } + + public function getSpgrContainer() + { + return $this->spgrContainer; + } + + public function setSpgrContainer($spgrContainer) + { + return $this->spgrContainer = $spgrContainer; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer/SpgrContainer.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer/SpgrContainer.php new file mode 100644 index 0000000..6bdc8f7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer/SpgrContainer.php @@ -0,0 +1,75 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\Escher\DgContainer; + +class SpgrContainer +{ + /** + * Parent Shape Group Container. + * + * @var null|SpgrContainer + */ + private $parent; + + /** + * Shape Container collection. + * + * @var array + */ + private $children = []; + + /** + * Set parent Shape Group Container. + */ + public function setParent(?self $parent): void + { + $this->parent = $parent; + } + + /** + * Get the parent Shape Group Container if any. + */ + public function getParent(): ?self + { + return $this->parent; + } + + /** + * Add a child. This will be either spgrContainer or spContainer. + * + * @param mixed $child + */ + public function addChild($child): void + { + $this->children[] = $child; + $child->setParent($this); + } + + /** + * Get collection of Shape Containers. + */ + public function getChildren() + { + return $this->children; + } + + /** + * Recursively get all spContainers within this spgrContainer. + * + * @return SpgrContainer\SpContainer[] + */ + public function getAllSpContainers() + { + $allSpContainers = []; + + foreach ($this->children as $child) { + if ($child instanceof self) { + $allSpContainers = array_merge($allSpContainers, $child->getAllSpContainers()); + } else { + $allSpContainers[] = $child; + } + } + + return $allSpContainers; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php new file mode 100644 index 0000000..8a81ff5 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php @@ -0,0 +1,369 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\Escher\DgContainer\SpgrContainer; + +use PhpOffice\PhpSpreadsheet\Shared\Escher\DgContainer\SpgrContainer; + +class SpContainer +{ + /** + * Parent Shape Group Container. + * + * @var SpgrContainer + */ + private $parent; + + /** + * Is this a group shape? + * + * @var bool + */ + private $spgr = false; + + /** + * Shape type. + * + * @var int + */ + private $spType; + + /** + * Shape flag. + * + * @var int + */ + private $spFlag; + + /** + * Shape index (usually group shape has index 0, and the rest: 1,2,3...). + * + * @var int + */ + private $spId; + + /** + * Array of options. + * + * @var array + */ + private $OPT; + + /** + * Cell coordinates of upper-left corner of shape, e.g. 'A1'. + * + * @var string + */ + private $startCoordinates; + + /** + * Horizontal offset of upper-left corner of shape measured in 1/1024 of column width. + * + * @var int + */ + private $startOffsetX; + + /** + * Vertical offset of upper-left corner of shape measured in 1/256 of row height. + * + * @var int + */ + private $startOffsetY; + + /** + * Cell coordinates of bottom-right corner of shape, e.g. 'B2'. + * + * @var string + */ + private $endCoordinates; + + /** + * Horizontal offset of bottom-right corner of shape measured in 1/1024 of column width. + * + * @var int + */ + private $endOffsetX; + + /** + * Vertical offset of bottom-right corner of shape measured in 1/256 of row height. + * + * @var int + */ + private $endOffsetY; + + /** + * Set parent Shape Group Container. + * + * @param SpgrContainer $parent + */ + public function setParent($parent): void + { + $this->parent = $parent; + } + + /** + * Get the parent Shape Group Container. + * + * @return SpgrContainer + */ + public function getParent() + { + return $this->parent; + } + + /** + * Set whether this is a group shape. + * + * @param bool $value + */ + public function setSpgr($value): void + { + $this->spgr = $value; + } + + /** + * Get whether this is a group shape. + * + * @return bool + */ + public function getSpgr() + { + return $this->spgr; + } + + /** + * Set the shape type. + * + * @param int $value + */ + public function setSpType($value): void + { + $this->spType = $value; + } + + /** + * Get the shape type. + * + * @return int + */ + public function getSpType() + { + return $this->spType; + } + + /** + * Set the shape flag. + * + * @param int $value + */ + public function setSpFlag($value): void + { + $this->spFlag = $value; + } + + /** + * Get the shape flag. + * + * @return int + */ + public function getSpFlag() + { + return $this->spFlag; + } + + /** + * Set the shape index. + * + * @param int $value + */ + public function setSpId($value): void + { + $this->spId = $value; + } + + /** + * Get the shape index. + * + * @return int + */ + public function getSpId() + { + return $this->spId; + } + + /** + * Set an option for the Shape Group Container. + * + * @param int $property The number specifies the option + * @param mixed $value + */ + public function setOPT($property, $value): void + { + $this->OPT[$property] = $value; + } + + /** + * Get an option for the Shape Group Container. + * + * @param int $property The number specifies the option + * + * @return mixed + */ + public function getOPT($property) + { + if (isset($this->OPT[$property])) { + return $this->OPT[$property]; + } + + return null; + } + + /** + * Get the collection of options. + * + * @return array + */ + public function getOPTCollection() + { + return $this->OPT; + } + + /** + * Set cell coordinates of upper-left corner of shape. + * + * @param string $value eg: 'A1' + */ + public function setStartCoordinates($value): void + { + $this->startCoordinates = $value; + } + + /** + * Get cell coordinates of upper-left corner of shape. + * + * @return string + */ + public function getStartCoordinates() + { + return $this->startCoordinates; + } + + /** + * Set offset in x-direction of upper-left corner of shape measured in 1/1024 of column width. + * + * @param int $startOffsetX + */ + public function setStartOffsetX($startOffsetX): void + { + $this->startOffsetX = $startOffsetX; + } + + /** + * Get offset in x-direction of upper-left corner of shape measured in 1/1024 of column width. + * + * @return int + */ + public function getStartOffsetX() + { + return $this->startOffsetX; + } + + /** + * Set offset in y-direction of upper-left corner of shape measured in 1/256 of row height. + * + * @param int $startOffsetY + */ + public function setStartOffsetY($startOffsetY): void + { + $this->startOffsetY = $startOffsetY; + } + + /** + * Get offset in y-direction of upper-left corner of shape measured in 1/256 of row height. + * + * @return int + */ + public function getStartOffsetY() + { + return $this->startOffsetY; + } + + /** + * Set cell coordinates of bottom-right corner of shape. + * + * @param string $value eg: 'A1' + */ + public function setEndCoordinates($value): void + { + $this->endCoordinates = $value; + } + + /** + * Get cell coordinates of bottom-right corner of shape. + * + * @return string + */ + public function getEndCoordinates() + { + return $this->endCoordinates; + } + + /** + * Set offset in x-direction of bottom-right corner of shape measured in 1/1024 of column width. + * + * @param int $endOffsetX + */ + public function setEndOffsetX($endOffsetX): void + { + $this->endOffsetX = $endOffsetX; + } + + /** + * Get offset in x-direction of bottom-right corner of shape measured in 1/1024 of column width. + * + * @return int + */ + public function getEndOffsetX() + { + return $this->endOffsetX; + } + + /** + * Set offset in y-direction of bottom-right corner of shape measured in 1/256 of row height. + * + * @param int $endOffsetY + */ + public function setEndOffsetY($endOffsetY): void + { + $this->endOffsetY = $endOffsetY; + } + + /** + * Get offset in y-direction of bottom-right corner of shape measured in 1/256 of row height. + * + * @return int + */ + public function getEndOffsetY() + { + return $this->endOffsetY; + } + + /** + * Get the nesting level of this spContainer. This is the number of spgrContainers between this spContainer and + * the dgContainer. A value of 1 = immediately within first spgrContainer + * Higher nesting level occurs if and only if spContainer is part of a shape group. + * + * @return int Nesting level + */ + public function getNestingLevel() + { + $nestingLevel = 0; + + $parent = $this->getParent(); + while ($parent instanceof SpgrContainer) { + ++$nestingLevel; + $parent = $parent->getParent(); + } + + return $nestingLevel; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer.php new file mode 100644 index 0000000..36806aa --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer.php @@ -0,0 +1,175 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\Escher; + +class DggContainer +{ + /** + * Maximum shape index of all shapes in all drawings increased by one. + * + * @var int + */ + private $spIdMax; + + /** + * Total number of drawings saved. + * + * @var int + */ + private $cDgSaved; + + /** + * Total number of shapes saved (including group shapes). + * + * @var int + */ + private $cSpSaved; + + /** + * BLIP Store Container. + * + * @var DggContainer\BstoreContainer + */ + private $bstoreContainer; + + /** + * Array of options for the drawing group. + * + * @var array + */ + private $OPT = []; + + /** + * Array of identifier clusters containg information about the maximum shape identifiers. + * + * @var array + */ + private $IDCLs = []; + + /** + * Get maximum shape index of all shapes in all drawings (plus one). + * + * @return int + */ + public function getSpIdMax() + { + return $this->spIdMax; + } + + /** + * Set maximum shape index of all shapes in all drawings (plus one). + * + * @param int $value + */ + public function setSpIdMax($value): void + { + $this->spIdMax = $value; + } + + /** + * Get total number of drawings saved. + * + * @return int + */ + public function getCDgSaved() + { + return $this->cDgSaved; + } + + /** + * Set total number of drawings saved. + * + * @param int $value + */ + public function setCDgSaved($value): void + { + $this->cDgSaved = $value; + } + + /** + * Get total number of shapes saved (including group shapes). + * + * @return int + */ + public function getCSpSaved() + { + return $this->cSpSaved; + } + + /** + * Set total number of shapes saved (including group shapes). + * + * @param int $value + */ + public function setCSpSaved($value): void + { + $this->cSpSaved = $value; + } + + /** + * Get BLIP Store Container. + * + * @return DggContainer\BstoreContainer + */ + public function getBstoreContainer() + { + return $this->bstoreContainer; + } + + /** + * Set BLIP Store Container. + * + * @param DggContainer\BstoreContainer $bstoreContainer + */ + public function setBstoreContainer($bstoreContainer): void + { + $this->bstoreContainer = $bstoreContainer; + } + + /** + * Set an option for the drawing group. + * + * @param int $property The number specifies the option + * @param mixed $value + */ + public function setOPT($property, $value): void + { + $this->OPT[$property] = $value; + } + + /** + * Get an option for the drawing group. + * + * @param int $property The number specifies the option + * + * @return mixed + */ + public function getOPT($property) + { + if (isset($this->OPT[$property])) { + return $this->OPT[$property]; + } + + return null; + } + + /** + * Get identifier clusters. + * + * @return array + */ + public function getIDCLs() + { + return $this->IDCLs; + } + + /** + * Set identifier clusters. [<drawingId> => <max shape id>, ...]. + * + * @param array $IDCLs + */ + public function setIDCLs($IDCLs): void + { + $this->IDCLs = $IDCLs; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer.php new file mode 100644 index 0000000..7203b66 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer.php @@ -0,0 +1,32 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer; + +class BstoreContainer +{ + /** + * BLIP Store Entries. Each of them holds one BLIP (Big Large Image or Picture). + * + * @var BstoreContainer\BSE[] + */ + private $BSECollection = []; + + /** + * Add a BLIP Store Entry. + */ + public function addBSE(BstoreContainer\BSE $BSE): void + { + $this->BSECollection[] = $BSE; + $BSE->setParent($this); + } + + /** + * Get the collection of BLIP Store Entries. + * + * @return BstoreContainer\BSE[] + */ + public function getBSECollection() + { + return $this->BSECollection; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer/BSE.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer/BSE.php new file mode 100644 index 0000000..d24af3f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer/BSE.php @@ -0,0 +1,87 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer; + +use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer; + +class BSE +{ + const BLIPTYPE_ERROR = 0x00; + const BLIPTYPE_UNKNOWN = 0x01; + const BLIPTYPE_EMF = 0x02; + const BLIPTYPE_WMF = 0x03; + const BLIPTYPE_PICT = 0x04; + const BLIPTYPE_JPEG = 0x05; + const BLIPTYPE_PNG = 0x06; + const BLIPTYPE_DIB = 0x07; + const BLIPTYPE_TIFF = 0x11; + const BLIPTYPE_CMYKJPEG = 0x12; + + /** + * The parent BLIP Store Entry Container. + * + * @var BstoreContainer + */ + private $parent; + + /** + * The BLIP (Big Large Image or Picture). + * + * @var BSE\Blip + */ + private $blip; + + /** + * The BLIP type. + * + * @var int + */ + private $blipType; + + /** + * Set parent BLIP Store Entry Container. + */ + public function setParent(BstoreContainer $parent): void + { + $this->parent = $parent; + } + + /** + * Get the BLIP. + * + * @return BSE\Blip + */ + public function getBlip() + { + return $this->blip; + } + + /** + * Set the BLIP. + */ + public function setBlip(BSE\Blip $blip): void + { + $this->blip = $blip; + $blip->setParent($this); + } + + /** + * Get the BLIP type. + * + * @return int + */ + public function getBlipType() + { + return $this->blipType; + } + + /** + * Set the BLIP type. + * + * @param int $blipType + */ + public function setBlipType($blipType): void + { + $this->blipType = $blipType; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php new file mode 100644 index 0000000..03b261f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php @@ -0,0 +1,58 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE; + +use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE; + +class Blip +{ + /** + * The parent BSE. + * + * @var BSE + */ + private $parent; + + /** + * Raw image data. + * + * @var string + */ + private $data; + + /** + * Get the raw image data. + * + * @return string + */ + public function getData() + { + return $this->data; + } + + /** + * Set the raw image data. + * + * @param string $data + */ + public function setData($data): void + { + $this->data = $data; + } + + /** + * Set parent BSE. + */ + public function setParent(BSE $parent): void + { + $this->parent = $parent; + } + + /** + * Get parent BSE. + */ + public function getParent(): BSE + { + return $this->parent; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/File.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/File.php new file mode 100644 index 0000000..f2fe8ca --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/File.php @@ -0,0 +1,185 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared; + +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\Reader\Exception as ReaderException; +use ZipArchive; + +class File +{ + /** + * Use Temp or File Upload Temp for temporary files. + * + * @var bool + */ + protected static $useUploadTempDirectory = false; + + /** + * Set the flag indicating whether the File Upload Temp directory should be used for temporary files. + */ + public static function setUseUploadTempDirectory(bool $useUploadTempDir): void + { + self::$useUploadTempDirectory = (bool) $useUploadTempDir; + } + + /** + * Get the flag indicating whether the File Upload Temp directory should be used for temporary files. + */ + public static function getUseUploadTempDirectory(): bool + { + return self::$useUploadTempDirectory; + } + + // https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT + // Section 4.3.7 + // Looks like there might be endian-ness considerations + private const ZIP_FIRST_4 = [ + "\x50\x4b\x03\x04", // what it looks like on my system + "\x04\x03\x4b\x50", // what it says in documentation + ]; + + private static function validateZipFirst4(string $zipFile): bool + { + $contents = @file_get_contents($zipFile, false, null, 0, 4); + + return in_array($contents, self::ZIP_FIRST_4, true); + } + + /** + * Verify if a file exists. + */ + public static function fileExists(string $filename): bool + { + // Sick construction, but it seems that + // file_exists returns strange values when + // doing the original file_exists on ZIP archives... + if (strtolower(substr($filename, 0, 6)) == 'zip://') { + // Open ZIP file and verify if the file exists + $zipFile = substr($filename, 6, strrpos($filename, '#') - 6); + $archiveFile = substr($filename, strrpos($filename, '#') + 1); + + if (self::validateZipFirst4($zipFile)) { + $zip = new ZipArchive(); + $res = $zip->open($zipFile); + if ($res === true) { + $returnValue = ($zip->getFromName($archiveFile) !== false); + $zip->close(); + + return $returnValue; + } + } + + return false; + } + + return file_exists($filename); + } + + /** + * Returns canonicalized absolute pathname, also for ZIP archives. + */ + public static function realpath(string $filename): string + { + // Returnvalue + $returnValue = ''; + + // Try using realpath() + if (file_exists($filename)) { + $returnValue = realpath($filename) ?: ''; + } + + // Found something? + if ($returnValue === '') { + $pathArray = explode('/', $filename); + while (in_array('..', $pathArray) && $pathArray[0] != '..') { + $iMax = count($pathArray); + for ($i = 0; $i < $iMax; ++$i) { + if ($pathArray[$i] == '..' && $i > 0) { + unset($pathArray[$i], $pathArray[$i - 1]); + + break; + } + } + } + $returnValue = implode('/', $pathArray); + } + + // Return + return $returnValue; + } + + /** + * Get the systems temporary directory. + */ + public static function sysGetTempDir(): string + { + $path = sys_get_temp_dir(); + if (self::$useUploadTempDirectory) { + // use upload-directory when defined to allow running on environments having very restricted + // open_basedir configs + if (ini_get('upload_tmp_dir') !== false) { + if ($temp = ini_get('upload_tmp_dir')) { + if (file_exists($temp)) { + $path = $temp; + } + } + } + } + + return realpath($path) ?: ''; + } + + public static function temporaryFilename(): string + { + $filename = tempnam(self::sysGetTempDir(), 'phpspreadsheet'); + if ($filename === false) { + throw new Exception('Could not create temporary file'); + } + + return $filename; + } + + /** + * Assert that given path is an existing file and is readable, otherwise throw exception. + */ + public static function assertFile(string $filename, string $zipMember = ''): void + { + if (!is_file($filename)) { + throw new ReaderException('File "' . $filename . '" does not exist.'); + } + + if (!is_readable($filename)) { + throw new ReaderException('Could not open "' . $filename . '" for reading.'); + } + + if ($zipMember !== '') { + $zipfile = "zip://$filename#$zipMember"; + if (!self::fileExists($zipfile)) { + throw new ReaderException("Could not find zip member $zipfile"); + } + } + } + + /** + * Same as assertFile, except return true/false and don't throw Exception. + */ + public static function testFileNoThrow(string $filename, ?string $zipMember = null): bool + { + if (!is_file($filename)) { + return false; + } + if (!is_readable($filename)) { + return false; + } + if ($zipMember === null) { + return true; + } + // validate zip, but don't check specific member + if ($zipMember === '') { + return self::validateZipFirst4($filename); + } + + return self::fileExists("zip://$filename#$zipMember"); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Font.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Font.php new file mode 100644 index 0000000..1adf213 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Font.php @@ -0,0 +1,773 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\Style\Alignment; +use PhpOffice\PhpSpreadsheet\Style\Font as FontStyle; + +class Font +{ + // Methods for resolving autosize value + const AUTOSIZE_METHOD_APPROX = 'approx'; + const AUTOSIZE_METHOD_EXACT = 'exact'; + + private static $autoSizeMethods = [ + self::AUTOSIZE_METHOD_APPROX, + self::AUTOSIZE_METHOD_EXACT, + ]; + + /** Character set codes used by BIFF5-8 in Font records */ + const CHARSET_ANSI_LATIN = 0x00; + const CHARSET_SYSTEM_DEFAULT = 0x01; + const CHARSET_SYMBOL = 0x02; + const CHARSET_APPLE_ROMAN = 0x4D; + const CHARSET_ANSI_JAPANESE_SHIFTJIS = 0x80; + const CHARSET_ANSI_KOREAN_HANGUL = 0x81; + const CHARSET_ANSI_KOREAN_JOHAB = 0x82; + const CHARSET_ANSI_CHINESE_SIMIPLIFIED = 0x86; // gb2312 + const CHARSET_ANSI_CHINESE_TRADITIONAL = 0x88; // big5 + const CHARSET_ANSI_GREEK = 0xA1; + const CHARSET_ANSI_TURKISH = 0xA2; + const CHARSET_ANSI_VIETNAMESE = 0xA3; + const CHARSET_ANSI_HEBREW = 0xB1; + const CHARSET_ANSI_ARABIC = 0xB2; + const CHARSET_ANSI_BALTIC = 0xBA; + const CHARSET_ANSI_CYRILLIC = 0xCC; + const CHARSET_ANSI_THAI = 0xDD; + const CHARSET_ANSI_LATIN_II = 0xEE; + const CHARSET_OEM_LATIN_I = 0xFF; + + // XXX: Constants created! + /** Font filenames */ + const ARIAL = 'arial.ttf'; + const ARIAL_BOLD = 'arialbd.ttf'; + const ARIAL_ITALIC = 'ariali.ttf'; + const ARIAL_BOLD_ITALIC = 'arialbi.ttf'; + + const CALIBRI = 'calibri.ttf'; + const CALIBRI_BOLD = 'calibrib.ttf'; + const CALIBRI_ITALIC = 'calibrii.ttf'; + const CALIBRI_BOLD_ITALIC = 'calibriz.ttf'; + + const COMIC_SANS_MS = 'comic.ttf'; + const COMIC_SANS_MS_BOLD = 'comicbd.ttf'; + + const COURIER_NEW = 'cour.ttf'; + const COURIER_NEW_BOLD = 'courbd.ttf'; + const COURIER_NEW_ITALIC = 'couri.ttf'; + const COURIER_NEW_BOLD_ITALIC = 'courbi.ttf'; + + const GEORGIA = 'georgia.ttf'; + const GEORGIA_BOLD = 'georgiab.ttf'; + const GEORGIA_ITALIC = 'georgiai.ttf'; + const GEORGIA_BOLD_ITALIC = 'georgiaz.ttf'; + + const IMPACT = 'impact.ttf'; + + const LIBERATION_SANS = 'LiberationSans-Regular.ttf'; + const LIBERATION_SANS_BOLD = 'LiberationSans-Bold.ttf'; + const LIBERATION_SANS_ITALIC = 'LiberationSans-Italic.ttf'; + const LIBERATION_SANS_BOLD_ITALIC = 'LiberationSans-BoldItalic.ttf'; + + const LUCIDA_CONSOLE = 'lucon.ttf'; + const LUCIDA_SANS_UNICODE = 'l_10646.ttf'; + + const MICROSOFT_SANS_SERIF = 'micross.ttf'; + + const PALATINO_LINOTYPE = 'pala.ttf'; + const PALATINO_LINOTYPE_BOLD = 'palab.ttf'; + const PALATINO_LINOTYPE_ITALIC = 'palai.ttf'; + const PALATINO_LINOTYPE_BOLD_ITALIC = 'palabi.ttf'; + + const SYMBOL = 'symbol.ttf'; + + const TAHOMA = 'tahoma.ttf'; + const TAHOMA_BOLD = 'tahomabd.ttf'; + + const TIMES_NEW_ROMAN = 'times.ttf'; + const TIMES_NEW_ROMAN_BOLD = 'timesbd.ttf'; + const TIMES_NEW_ROMAN_ITALIC = 'timesi.ttf'; + const TIMES_NEW_ROMAN_BOLD_ITALIC = 'timesbi.ttf'; + + const TREBUCHET_MS = 'trebuc.ttf'; + const TREBUCHET_MS_BOLD = 'trebucbd.ttf'; + const TREBUCHET_MS_ITALIC = 'trebucit.ttf'; + const TREBUCHET_MS_BOLD_ITALIC = 'trebucbi.ttf'; + + const VERDANA = 'verdana.ttf'; + const VERDANA_BOLD = 'verdanab.ttf'; + const VERDANA_ITALIC = 'verdanai.ttf'; + const VERDANA_BOLD_ITALIC = 'verdanaz.ttf'; + + /** + * AutoSize method. + * + * @var string + */ + private static $autoSizeMethod = self::AUTOSIZE_METHOD_APPROX; + + /** + * Path to folder containing TrueType font .ttf files. + * + * @var string + */ + private static $trueTypeFontPath; + + /** + * How wide is a default column for a given default font and size? + * Empirical data found by inspecting real Excel files and reading off the pixel width + * in Microsoft Office Excel 2007. + * + * @var array + */ + public static $defaultColumnWidths = [ + 'Arial' => [ + 1 => ['px' => 24, 'width' => 12.00000000], + 2 => ['px' => 24, 'width' => 12.00000000], + 3 => ['px' => 32, 'width' => 10.66406250], + 4 => ['px' => 32, 'width' => 10.66406250], + 5 => ['px' => 40, 'width' => 10.00000000], + 6 => ['px' => 48, 'width' => 9.59765625], + 7 => ['px' => 48, 'width' => 9.59765625], + 8 => ['px' => 56, 'width' => 9.33203125], + 9 => ['px' => 64, 'width' => 9.14062500], + 10 => ['px' => 64, 'width' => 9.14062500], + ], + 'Calibri' => [ + 1 => ['px' => 24, 'width' => 12.00000000], + 2 => ['px' => 24, 'width' => 12.00000000], + 3 => ['px' => 32, 'width' => 10.66406250], + 4 => ['px' => 32, 'width' => 10.66406250], + 5 => ['px' => 40, 'width' => 10.00000000], + 6 => ['px' => 48, 'width' => 9.59765625], + 7 => ['px' => 48, 'width' => 9.59765625], + 8 => ['px' => 56, 'width' => 9.33203125], + 9 => ['px' => 56, 'width' => 9.33203125], + 10 => ['px' => 64, 'width' => 9.14062500], + 11 => ['px' => 64, 'width' => 9.14062500], + ], + 'Verdana' => [ + 1 => ['px' => 24, 'width' => 12.00000000], + 2 => ['px' => 24, 'width' => 12.00000000], + 3 => ['px' => 32, 'width' => 10.66406250], + 4 => ['px' => 32, 'width' => 10.66406250], + 5 => ['px' => 40, 'width' => 10.00000000], + 6 => ['px' => 48, 'width' => 9.59765625], + 7 => ['px' => 48, 'width' => 9.59765625], + 8 => ['px' => 64, 'width' => 9.14062500], + 9 => ['px' => 72, 'width' => 9.00000000], + 10 => ['px' => 72, 'width' => 9.00000000], + ], + ]; + + /** + * Set autoSize method. + * + * @param string $method see self::AUTOSIZE_METHOD_* + * + * @return bool Success or failure + */ + public static function setAutoSizeMethod($method) + { + if (!in_array($method, self::$autoSizeMethods)) { + return false; + } + self::$autoSizeMethod = $method; + + return true; + } + + /** + * Get autoSize method. + * + * @return string + */ + public static function getAutoSizeMethod() + { + return self::$autoSizeMethod; + } + + /** + * Set the path to the folder containing .ttf files. There should be a trailing slash. + * Typical locations on variout some platforms: + * <ul> + * <li>C:/Windows/Fonts/</li> + * <li>/usr/share/fonts/truetype/</li> + * <li>~/.fonts/</li> + * </ul>. + * + * @param string $folderPath + */ + public static function setTrueTypeFontPath($folderPath): void + { + self::$trueTypeFontPath = $folderPath; + } + + /** + * Get the path to the folder containing .ttf files. + * + * @return string + */ + public static function getTrueTypeFontPath() + { + return self::$trueTypeFontPath; + } + + /** + * Calculate an (approximate) OpenXML column width, based on font size and text contained. + * + * @param FontStyle $font Font object + * @param RichText|string $cellText Text to calculate width + * @param int $rotation Rotation angle + * @param null|FontStyle $defaultFont Font object + * @param bool $filterAdjustment Add space for Autofilter or Table dropdown + */ + public static function calculateColumnWidth( + FontStyle $font, + $cellText = '', + $rotation = 0, + ?FontStyle $defaultFont = null, + bool $filterAdjustment = false, + int $indentAdjustment = 0 + ): int { + // If it is rich text, use plain text + if ($cellText instanceof RichText) { + $cellText = $cellText->getPlainText(); + } + + // Special case if there are one or more newline characters ("\n") + if (strpos($cellText ?? '', "\n") !== false) { + $lineTexts = explode("\n", $cellText); + $lineWidths = []; + foreach ($lineTexts as $lineText) { + $lineWidths[] = self::calculateColumnWidth($font, $lineText, $rotation = 0, $defaultFont, $filterAdjustment); + } + + return max($lineWidths); // width of longest line in cell + } + + // Try to get the exact text width in pixels + $approximate = self::$autoSizeMethod === self::AUTOSIZE_METHOD_APPROX; + $columnWidth = 0; + if (!$approximate) { + $columnWidthAdjust = ceil( + self::getTextWidthPixelsExact( + str_repeat('n', 1 * (($filterAdjustment ? 3 : 1) + ($indentAdjustment * 2))), + $font, + 0 + ) * 1.07 + ); + + try { + // Width of text in pixels excl. padding + // and addition because Excel adds some padding, just use approx width of 'n' glyph + $columnWidth = self::getTextWidthPixelsExact($cellText, $font, $rotation) + $columnWidthAdjust; + } catch (PhpSpreadsheetException $e) { + $approximate = true; + } + } + + if ($approximate) { + $columnWidthAdjust = self::getTextWidthPixelsApprox( + str_repeat('n', 1 * (($filterAdjustment ? 3 : 1) + ($indentAdjustment * 2))), + $font, + 0 + ); + // Width of text in pixels excl. padding, approximation + // and addition because Excel adds some padding, just use approx width of 'n' glyph + $columnWidth = self::getTextWidthPixelsApprox($cellText, $font, $rotation) + $columnWidthAdjust; + } + + // Convert from pixel width to column width + $columnWidth = Drawing::pixelsToCellDimension((int) $columnWidth, $defaultFont); + + // Return + return (int) round($columnWidth, 6); + } + + /** + * Get GD text width in pixels for a string of text in a certain font at a certain rotation angle. + */ + public static function getTextWidthPixelsExact(string $text, FontStyle $font, int $rotation = 0): int + { + if (!function_exists('imagettfbbox')) { + throw new PhpSpreadsheetException('GD library needs to be enabled'); + } + + // font size should really be supplied in pixels in GD2, + // but since GD2 seems to assume 72dpi, pixels and points are the same + $fontFile = self::getTrueTypeFontFileFromFont($font); + $textBox = imagettfbbox($font->getSize(), $rotation, $fontFile, $text); + + // Get corners positions + $lowerLeftCornerX = $textBox[0]; + $lowerRightCornerX = $textBox[2]; + $upperRightCornerX = $textBox[4]; + $upperLeftCornerX = $textBox[6]; + + // Consider the rotation when calculating the width + return max($lowerRightCornerX - $upperLeftCornerX, $upperRightCornerX - $lowerLeftCornerX); + } + + /** + * Get approximate width in pixels for a string of text in a certain font at a certain rotation angle. + * + * @param string $columnText + * @param int $rotation + * + * @return int Text width in pixels (no padding added) + */ + public static function getTextWidthPixelsApprox($columnText, FontStyle $font, $rotation = 0) + { + $fontName = $font->getName(); + $fontSize = $font->getSize(); + + // Calculate column width in pixels. We assume fixed glyph width. Result varies with font name and size. + switch ($fontName) { + case 'Calibri': + // value 8.26 was found via interpolation by inspecting real Excel files with Calibri 11 font. + $columnWidth = (int) (8.26 * StringHelper::countCharacters($columnText)); + $columnWidth = $columnWidth * $fontSize / 11; // extrapolate from font size + + break; + case 'Arial': + // value 8 was set because of experience in different exports at Arial 10 font. + $columnWidth = (int) (8 * StringHelper::countCharacters($columnText)); + $columnWidth = $columnWidth * $fontSize / 10; // extrapolate from font size + + break; + case 'Verdana': + // value 8 was found via interpolation by inspecting real Excel files with Verdana 10 font. + $columnWidth = (int) (8 * StringHelper::countCharacters($columnText)); + $columnWidth = $columnWidth * $fontSize / 10; // extrapolate from font size + + break; + default: + // just assume Calibri + $columnWidth = (int) (8.26 * StringHelper::countCharacters($columnText)); + $columnWidth = $columnWidth * $fontSize / 11; // extrapolate from font size + + break; + } + + // Calculate approximate rotated column width + if ($rotation !== 0) { + if ($rotation == Alignment::TEXTROTATION_STACK_PHPSPREADSHEET) { + // stacked text + $columnWidth = 4; // approximation + } else { + // rotated text + $columnWidth = $columnWidth * cos(deg2rad($rotation)) + + $fontSize * abs(sin(deg2rad($rotation))) / 5; // approximation + } + } + + // pixel width is an integer + return (int) $columnWidth; + } + + /** + * Calculate an (approximate) pixel size, based on a font points size. + * + * @param int $fontSizeInPoints Font size (in points) + * + * @return int Font size (in pixels) + */ + public static function fontSizeToPixels($fontSizeInPoints) + { + return (int) ((4 / 3) * $fontSizeInPoints); + } + + /** + * Calculate an (approximate) pixel size, based on inch size. + * + * @param int $sizeInInch Font size (in inch) + * + * @return int Size (in pixels) + */ + public static function inchSizeToPixels($sizeInInch) + { + return $sizeInInch * 96; + } + + /** + * Calculate an (approximate) pixel size, based on centimeter size. + * + * @param int $sizeInCm Font size (in centimeters) + * + * @return float Size (in pixels) + */ + public static function centimeterSizeToPixels($sizeInCm) + { + return $sizeInCm * 37.795275591; + } + + /** + * Returns the font path given the font. + * + * @return string Path to TrueType font file + */ + public static function getTrueTypeFontFileFromFont(FontStyle $font) + { + if (!file_exists(self::$trueTypeFontPath) || !is_dir(self::$trueTypeFontPath)) { + throw new PhpSpreadsheetException('Valid directory to TrueType Font files not specified'); + } + + $name = $font->getName(); + $bold = $font->getBold(); + $italic = $font->getItalic(); + + // Check if we can map font to true type font file + switch ($name) { + case 'Arial': + $fontFile = ( + $bold ? ($italic ? self::ARIAL_BOLD_ITALIC : self::ARIAL_BOLD) + : ($italic ? self::ARIAL_ITALIC : self::ARIAL) + ); + + break; + case 'Calibri': + $fontFile = ( + $bold ? ($italic ? self::CALIBRI_BOLD_ITALIC : self::CALIBRI_BOLD) + : ($italic ? self::CALIBRI_ITALIC : self::CALIBRI) + ); + + break; + case 'Courier New': + $fontFile = ( + $bold ? ($italic ? self::COURIER_NEW_BOLD_ITALIC : self::COURIER_NEW_BOLD) + : ($italic ? self::COURIER_NEW_ITALIC : self::COURIER_NEW) + ); + + break; + case 'Comic Sans MS': + $fontFile = ( + $bold ? self::COMIC_SANS_MS_BOLD : self::COMIC_SANS_MS + ); + + break; + case 'Georgia': + $fontFile = ( + $bold ? ($italic ? self::GEORGIA_BOLD_ITALIC : self::GEORGIA_BOLD) + : ($italic ? self::GEORGIA_ITALIC : self::GEORGIA) + ); + + break; + case 'Impact': + $fontFile = self::IMPACT; + + break; + case 'Liberation Sans': + $fontFile = ( + $bold ? ($italic ? self::LIBERATION_SANS_BOLD_ITALIC : self::LIBERATION_SANS_BOLD) + : ($italic ? self::LIBERATION_SANS_ITALIC : self::LIBERATION_SANS) + ); + + break; + case 'Lucida Console': + $fontFile = self::LUCIDA_CONSOLE; + + break; + case 'Lucida Sans Unicode': + $fontFile = self::LUCIDA_SANS_UNICODE; + + break; + case 'Microsoft Sans Serif': + $fontFile = self::MICROSOFT_SANS_SERIF; + + break; + case 'Palatino Linotype': + $fontFile = ( + $bold ? ($italic ? self::PALATINO_LINOTYPE_BOLD_ITALIC : self::PALATINO_LINOTYPE_BOLD) + : ($italic ? self::PALATINO_LINOTYPE_ITALIC : self::PALATINO_LINOTYPE) + ); + + break; + case 'Symbol': + $fontFile = self::SYMBOL; + + break; + case 'Tahoma': + $fontFile = ( + $bold ? self::TAHOMA_BOLD : self::TAHOMA + ); + + break; + case 'Times New Roman': + $fontFile = ( + $bold ? ($italic ? self::TIMES_NEW_ROMAN_BOLD_ITALIC : self::TIMES_NEW_ROMAN_BOLD) + : ($italic ? self::TIMES_NEW_ROMAN_ITALIC : self::TIMES_NEW_ROMAN) + ); + + break; + case 'Trebuchet MS': + $fontFile = ( + $bold ? ($italic ? self::TREBUCHET_MS_BOLD_ITALIC : self::TREBUCHET_MS_BOLD) + : ($italic ? self::TREBUCHET_MS_ITALIC : self::TREBUCHET_MS) + ); + + break; + case 'Verdana': + $fontFile = ( + $bold ? ($italic ? self::VERDANA_BOLD_ITALIC : self::VERDANA_BOLD) + : ($italic ? self::VERDANA_ITALIC : self::VERDANA) + ); + + break; + default: + throw new PhpSpreadsheetException('Unknown font name "' . $name . '". Cannot map to TrueType font file'); + + break; + } + + $fontFile = self::$trueTypeFontPath . $fontFile; + + // Check if file actually exists + if (!file_exists($fontFile)) { + throw new PhpSpreadsheetException('TrueType Font file not found'); + } + + return $fontFile; + } + + /** + * Returns the associated charset for the font name. + * + * @param string $fontName Font name + * + * @return int Character set code + */ + public static function getCharsetFromFontName($fontName) + { + switch ($fontName) { + // Add more cases. Check FONT records in real Excel files. + case 'EucrosiaUPC': + return self::CHARSET_ANSI_THAI; + case 'Wingdings': + return self::CHARSET_SYMBOL; + case 'Wingdings 2': + return self::CHARSET_SYMBOL; + case 'Wingdings 3': + return self::CHARSET_SYMBOL; + default: + return self::CHARSET_ANSI_LATIN; + } + } + + /** + * Get the effective column width for columns without a column dimension or column with width -1 + * For example, for Calibri 11 this is 9.140625 (64 px). + * + * @param FontStyle $font The workbooks default font + * @param bool $returnAsPixels true = return column width in pixels, false = return in OOXML units + * + * @return mixed Column width + */ + public static function getDefaultColumnWidthByFont(FontStyle $font, $returnAsPixels = false) + { + if (isset(self::$defaultColumnWidths[$font->getName()][$font->getSize()])) { + // Exact width can be determined + $columnWidth = $returnAsPixels ? + self::$defaultColumnWidths[$font->getName()][$font->getSize()]['px'] + : self::$defaultColumnWidths[$font->getName()][$font->getSize()]['width']; + } else { + // We don't have data for this particular font and size, use approximation by + // extrapolating from Calibri 11 + $columnWidth = $returnAsPixels ? + self::$defaultColumnWidths['Calibri'][11]['px'] + : self::$defaultColumnWidths['Calibri'][11]['width']; + $columnWidth = $columnWidth * $font->getSize() / 11; + + // Round pixels to closest integer + if ($returnAsPixels) { + $columnWidth = (int) round($columnWidth); + } + } + + return $columnWidth; + } + + /** + * Get the effective row height for rows without a row dimension or rows with height -1 + * For example, for Calibri 11 this is 15 points. + * + * @param FontStyle $font The workbooks default font + * + * @return float Row height in points + */ + public static function getDefaultRowHeightByFont(FontStyle $font) + { + switch ($font->getName()) { + case 'Arial': + switch ($font->getSize()) { + case 10: + // inspection of Arial 10 workbook says 12.75pt ~17px + $rowHeight = 12.75; + + break; + case 9: + // inspection of Arial 9 workbook says 12.00pt ~16px + $rowHeight = 12; + + break; + case 8: + // inspection of Arial 8 workbook says 11.25pt ~15px + $rowHeight = 11.25; + + break; + case 7: + // inspection of Arial 7 workbook says 9.00pt ~12px + $rowHeight = 9; + + break; + case 6: + case 5: + // inspection of Arial 5,6 workbook says 8.25pt ~11px + $rowHeight = 8.25; + + break; + case 4: + // inspection of Arial 4 workbook says 6.75pt ~9px + $rowHeight = 6.75; + + break; + case 3: + // inspection of Arial 3 workbook says 6.00pt ~8px + $rowHeight = 6; + + break; + case 2: + case 1: + // inspection of Arial 1,2 workbook says 5.25pt ~7px + $rowHeight = 5.25; + + break; + default: + // use Arial 10 workbook as an approximation, extrapolation + $rowHeight = 12.75 * $font->getSize() / 10; + + break; + } + + break; + case 'Calibri': + switch ($font->getSize()) { + case 11: + // inspection of Calibri 11 workbook says 15.00pt ~20px + $rowHeight = 15; + + break; + case 10: + // inspection of Calibri 10 workbook says 12.75pt ~17px + $rowHeight = 12.75; + + break; + case 9: + // inspection of Calibri 9 workbook says 12.00pt ~16px + $rowHeight = 12; + + break; + case 8: + // inspection of Calibri 8 workbook says 11.25pt ~15px + $rowHeight = 11.25; + + break; + case 7: + // inspection of Calibri 7 workbook says 9.00pt ~12px + $rowHeight = 9; + + break; + case 6: + case 5: + // inspection of Calibri 5,6 workbook says 8.25pt ~11px + $rowHeight = 8.25; + + break; + case 4: + // inspection of Calibri 4 workbook says 6.75pt ~9px + $rowHeight = 6.75; + + break; + case 3: + // inspection of Calibri 3 workbook says 6.00pt ~8px + $rowHeight = 6.00; + + break; + case 2: + case 1: + // inspection of Calibri 1,2 workbook says 5.25pt ~7px + $rowHeight = 5.25; + + break; + default: + // use Calibri 11 workbook as an approximation, extrapolation + $rowHeight = 15 * $font->getSize() / 11; + + break; + } + + break; + case 'Verdana': + switch ($font->getSize()) { + case 10: + // inspection of Verdana 10 workbook says 12.75pt ~17px + $rowHeight = 12.75; + + break; + case 9: + // inspection of Verdana 9 workbook says 11.25pt ~15px + $rowHeight = 11.25; + + break; + case 8: + // inspection of Verdana 8 workbook says 10.50pt ~14px + $rowHeight = 10.50; + + break; + case 7: + // inspection of Verdana 7 workbook says 9.00pt ~12px + $rowHeight = 9.00; + + break; + case 6: + case 5: + // inspection of Verdana 5,6 workbook says 8.25pt ~11px + $rowHeight = 8.25; + + break; + case 4: + // inspection of Verdana 4 workbook says 6.75pt ~9px + $rowHeight = 6.75; + + break; + case 3: + // inspection of Verdana 3 workbook says 6.00pt ~8px + $rowHeight = 6; + + break; + case 2: + case 1: + // inspection of Verdana 1,2 workbook says 5.25pt ~7px + $rowHeight = 5.25; + + break; + default: + // use Verdana 10 workbook as an approximation, extrapolation + $rowHeight = 12.75 * $font->getSize() / 10; + + break; + } + + break; + default: + // just use Calibri as an approximation + $rowHeight = 15 * $font->getSize() / 11; + + break; + } + + return $rowHeight; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/IntOrFloat.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/IntOrFloat.php new file mode 100644 index 0000000..060f09c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/IntOrFloat.php @@ -0,0 +1,21 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared; + +class IntOrFloat +{ + /** + * Help some functions with large results operate correctly on 32-bit, + * by returning result as int when possible, float otherwise. + * + * @param float|int $value + * + * @return float|int + */ + public static function evaluate($value) + { + $iValue = (int) $value; + + return ($value == $iValue) ? $iValue : $value; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/CHANGELOG.TXT b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/CHANGELOG.TXT new file mode 100644 index 0000000..2fc9cd4 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/CHANGELOG.TXT @@ -0,0 +1,16 @@ +Mar 1, 2005 11:15 AST by PM + ++ For consistency, renamed Math.php to Maths.java, utils to util, + tests to test, docs to doc - + ++ Removed conditional logic from top of Matrix class. + ++ Switched to using hypo function in Maths.php for all php-hypot calls. + NOTE TO SELF: Need to make sure that all decompositions have been + switched over to using the bundled hypo. + +Feb 25, 2005 at 10:00 AST by PM + ++ Recommend using simpler Error.php instead of JAMA_Error.php but + can be persuaded otherwise. + diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/CholeskyDecomposition.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/CholeskyDecomposition.php new file mode 100644 index 0000000..27d0217 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/CholeskyDecomposition.php @@ -0,0 +1,147 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\JAMA; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception as CalculationException; + +/** + * Cholesky decomposition class. + * + * For a symmetric, positive definite matrix A, the Cholesky decomposition + * is an lower triangular matrix L so that A = L*L'. + * + * If the matrix is not symmetric or positive definite, the constructor + * returns a partial decomposition and sets an internal flag that may + * be queried by the isSPD() method. + * + * @author Paul Meagher + * @author Michael Bommarito + * + * @version 1.2 + */ +class CholeskyDecomposition +{ + /** + * Decomposition storage. + * + * @var array + */ + private $L = []; + + /** + * Matrix row and column dimension. + * + * @var int + */ + private $m; + + /** + * Symmetric positive definite flag. + * + * @var bool + */ + private $isspd = true; + + /** + * CholeskyDecomposition. + * + * Class constructor - decomposes symmetric positive definite matrix + * + * @param Matrix $A Matrix square symmetric positive definite matrix + */ + public function __construct(Matrix $A) + { + $this->L = $A->getArray(); + $this->m = $A->getRowDimension(); + + for ($i = 0; $i < $this->m; ++$i) { + for ($j = $i; $j < $this->m; ++$j) { + for ($sum = $this->L[$i][$j], $k = $i - 1; $k >= 0; --$k) { + $sum -= $this->L[$i][$k] * $this->L[$j][$k]; + } + if ($i == $j) { + if ($sum >= 0) { + $this->L[$i][$i] = sqrt($sum); + } else { + $this->isspd = false; + } + } else { + if ($this->L[$i][$i] != 0) { + $this->L[$j][$i] = $sum / $this->L[$i][$i]; + } + } + } + + for ($k = $i + 1; $k < $this->m; ++$k) { + $this->L[$i][$k] = 0.0; + } + } + } + + /** + * Is the matrix symmetric and positive definite? + * + * @return bool + */ + public function isSPD() + { + return $this->isspd; + } + + /** + * getL. + * + * Return triangular factor. + * + * @return Matrix Lower triangular matrix + */ + public function getL() + { + return new Matrix($this->L); + } + + /** + * Solve A*X = B. + * + * @param Matrix $B Row-equal matrix + * + * @return Matrix L * L' * X = B + */ + public function solve(Matrix $B) + { + if ($B->getRowDimension() == $this->m) { + if ($this->isspd) { + $X = $B->getArray(); + $nx = $B->getColumnDimension(); + + for ($k = 0; $k < $this->m; ++$k) { + for ($i = $k + 1; $i < $this->m; ++$i) { + for ($j = 0; $j < $nx; ++$j) { + $X[$i][$j] -= $X[$k][$j] * $this->L[$i][$k]; + } + } + for ($j = 0; $j < $nx; ++$j) { + $X[$k][$j] /= $this->L[$k][$k]; + } + } + + for ($k = $this->m - 1; $k >= 0; --$k) { + for ($j = 0; $j < $nx; ++$j) { + $X[$k][$j] /= $this->L[$k][$k]; + } + for ($i = 0; $i < $k; ++$i) { + for ($j = 0; $j < $nx; ++$j) { + $X[$i][$j] -= $X[$k][$j] * $this->L[$k][$i]; + } + } + } + + return new Matrix($X, $this->m, $nx); + } + + throw new CalculationException(Matrix::MATRIX_SPD_EXCEPTION); + } + + throw new CalculationException(Matrix::MATRIX_DIMENSION_EXCEPTION); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/EigenvalueDecomposition.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/EigenvalueDecomposition.php new file mode 100644 index 0000000..66111b6 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/EigenvalueDecomposition.php @@ -0,0 +1,870 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\JAMA; + +/** + * Class to obtain eigenvalues and eigenvectors of a real matrix. + * + * If A is symmetric, then A = V*D*V' where the eigenvalue matrix D + * is diagonal and the eigenvector matrix V is orthogonal (i.e. + * A = V.times(D.times(V.transpose())) and V.times(V.transpose()) + * equals the identity matrix). + * + * If A is not symmetric, then the eigenvalue matrix D is block diagonal + * with the real eigenvalues in 1-by-1 blocks and any complex eigenvalues, + * lambda + i*mu, in 2-by-2 blocks, [lambda, mu; -mu, lambda]. The + * columns of V represent the eigenvectors in the sense that A*V = V*D, + * i.e. A.times(V) equals V.times(D). The matrix V may be badly + * conditioned, or even singular, so the validity of the equation + * A = V*D*inverse(V) depends upon V.cond(). + * + * @author Paul Meagher + * + * @version 1.1 + */ +class EigenvalueDecomposition +{ + /** + * Row and column dimension (square matrix). + * + * @var int + */ + private $n; + + /** + * Arrays for internal storage of eigenvalues. + * + * @var array + */ + private $d = []; + + private $e = []; + + /** + * Array for internal storage of eigenvectors. + * + * @var array + */ + private $V = []; + + /** + * Array for internal storage of nonsymmetric Hessenberg form. + * + * @var array + */ + private $H = []; + + /** + * Working storage for nonsymmetric algorithm. + * + * @var array + */ + private $ort; + + /** + * Used for complex scalar division. + * + * @var float + */ + private $cdivr; + + private $cdivi; + + /** + * @var array + */ + private $A; + + /** + * Symmetric Householder reduction to tridiagonal form. + */ + private function tred2(): void + { + // This is derived from the Algol procedures tred2 by + // Bowdler, Martin, Reinsch, and Wilkinson, Handbook for + // Auto. Comp., Vol.ii-Linear Algebra, and the corresponding + // Fortran subroutine in EISPACK. + $this->d = $this->V[$this->n - 1]; + $j = 0; + // Householder reduction to tridiagonal form. + for ($i = $this->n - 1; $i > 0; --$i) { + $i_ = $i - 1; + // Scale to avoid under/overflow. + $h = $scale = 0.0; + $scale += array_sum(array_map('abs', $this->d)); + if ($scale == 0.0) { + $this->e[$i] = $this->d[$i_]; + $this->d = array_slice($this->V[$i_], 0, $i_); + for ($j = 0; $j < $i; ++$j) { + $this->V[$j][$i] = $this->V[$i][$j] = 0.0; + } + } else { + // Generate Householder vector. + for ($k = 0; $k < $i; ++$k) { + $this->d[$k] /= $scale; + $h += $this->d[$k] ** 2; + } + $f = $this->d[$i_]; + $g = sqrt($h); + if ($f > 0) { + $g = -$g; + } + $this->e[$i] = $scale * $g; + $h = $h - $f * $g; + $this->d[$i_] = $f - $g; + for ($j = 0; $j < $i; ++$j) { + $this->e[$j] = 0.0; + } + // Apply similarity transformation to remaining columns. + for ($j = 0; $j < $i; ++$j) { + $f = $this->d[$j]; + $this->V[$j][$i] = $f; + $g = $this->e[$j] + $this->V[$j][$j] * $f; + for ($k = $j + 1; $k <= $i_; ++$k) { + $g += $this->V[$k][$j] * $this->d[$k]; + $this->e[$k] += $this->V[$k][$j] * $f; + } + $this->e[$j] = $g; + } + $f = 0.0; + for ($j = 0; $j < $i; ++$j) { + $this->e[$j] /= $h; + $f += $this->e[$j] * $this->d[$j]; + } + $hh = $f / (2 * $h); + for ($j = 0; $j < $i; ++$j) { + $this->e[$j] -= $hh * $this->d[$j]; + } + for ($j = 0; $j < $i; ++$j) { + $f = $this->d[$j]; + $g = $this->e[$j]; + for ($k = $j; $k <= $i_; ++$k) { + $this->V[$k][$j] -= ($f * $this->e[$k] + $g * $this->d[$k]); + } + $this->d[$j] = $this->V[$i - 1][$j]; + $this->V[$i][$j] = 0.0; + } + } + $this->d[$i] = $h; + } + + // Accumulate transformations. + for ($i = 0; $i < $this->n - 1; ++$i) { + $this->V[$this->n - 1][$i] = $this->V[$i][$i]; + $this->V[$i][$i] = 1.0; + $h = $this->d[$i + 1]; + if ($h != 0.0) { + for ($k = 0; $k <= $i; ++$k) { + $this->d[$k] = $this->V[$k][$i + 1] / $h; + } + for ($j = 0; $j <= $i; ++$j) { + $g = 0.0; + for ($k = 0; $k <= $i; ++$k) { + $g += $this->V[$k][$i + 1] * $this->V[$k][$j]; + } + for ($k = 0; $k <= $i; ++$k) { + $this->V[$k][$j] -= $g * $this->d[$k]; + } + } + } + for ($k = 0; $k <= $i; ++$k) { + $this->V[$k][$i + 1] = 0.0; + } + } + + $this->d = $this->V[$this->n - 1]; + $this->V[$this->n - 1] = array_fill(0, $j, 0.0); + $this->V[$this->n - 1][$this->n - 1] = 1.0; + $this->e[0] = 0.0; + } + + /** + * Symmetric tridiagonal QL algorithm. + * + * This is derived from the Algol procedures tql2, by + * Bowdler, Martin, Reinsch, and Wilkinson, Handbook for + * Auto. Comp., Vol.ii-Linear Algebra, and the corresponding + * Fortran subroutine in EISPACK. + */ + private function tql2(): void + { + for ($i = 1; $i < $this->n; ++$i) { + $this->e[$i - 1] = $this->e[$i]; + } + $this->e[$this->n - 1] = 0.0; + $f = 0.0; + $tst1 = 0.0; + $eps = 2.0 ** (-52.0); + + for ($l = 0; $l < $this->n; ++$l) { + // Find small subdiagonal element + $tst1 = max($tst1, abs($this->d[$l]) + abs($this->e[$l])); + $m = $l; + while ($m < $this->n) { + if (abs($this->e[$m]) <= $eps * $tst1) { + break; + } + ++$m; + } + // If m == l, $this->d[l] is an eigenvalue, + // otherwise, iterate. + if ($m > $l) { + $iter = 0; + do { + // Could check iteration count here. + ++$iter; + // Compute implicit shift + $g = $this->d[$l]; + $p = ($this->d[$l + 1] - $g) / (2.0 * $this->e[$l]); + $r = hypo($p, 1.0); + if ($p < 0) { + $r *= -1; + } + $this->d[$l] = $this->e[$l] / ($p + $r); + $this->d[$l + 1] = $this->e[$l] * ($p + $r); + $dl1 = $this->d[$l + 1]; + $h = $g - $this->d[$l]; + for ($i = $l + 2; $i < $this->n; ++$i) { + $this->d[$i] -= $h; + } + $f += $h; + // Implicit QL transformation. + $p = $this->d[$m]; + $c = 1.0; + $c2 = $c3 = $c; + $el1 = $this->e[$l + 1]; + $s = $s2 = 0.0; + for ($i = $m - 1; $i >= $l; --$i) { + $c3 = $c2; + $c2 = $c; + $s2 = $s; + $g = $c * $this->e[$i]; + $h = $c * $p; + $r = hypo($p, $this->e[$i]); + $this->e[$i + 1] = $s * $r; + $s = $this->e[$i] / $r; + $c = $p / $r; + $p = $c * $this->d[$i] - $s * $g; + $this->d[$i + 1] = $h + $s * ($c * $g + $s * $this->d[$i]); + // Accumulate transformation. + for ($k = 0; $k < $this->n; ++$k) { + $h = $this->V[$k][$i + 1]; + $this->V[$k][$i + 1] = $s * $this->V[$k][$i] + $c * $h; + $this->V[$k][$i] = $c * $this->V[$k][$i] - $s * $h; + } + } + $p = -$s * $s2 * $c3 * $el1 * $this->e[$l] / $dl1; + $this->e[$l] = $s * $p; + $this->d[$l] = $c * $p; + // Check for convergence. + } while (abs($this->e[$l]) > $eps * $tst1); + } + $this->d[$l] = $this->d[$l] + $f; + $this->e[$l] = 0.0; + } + + // Sort eigenvalues and corresponding vectors. + for ($i = 0; $i < $this->n - 1; ++$i) { + $k = $i; + $p = $this->d[$i]; + for ($j = $i + 1; $j < $this->n; ++$j) { + if ($this->d[$j] < $p) { + $k = $j; + $p = $this->d[$j]; + } + } + if ($k != $i) { + $this->d[$k] = $this->d[$i]; + $this->d[$i] = $p; + for ($j = 0; $j < $this->n; ++$j) { + $p = $this->V[$j][$i]; + $this->V[$j][$i] = $this->V[$j][$k]; + $this->V[$j][$k] = $p; + } + } + } + } + + /** + * Nonsymmetric reduction to Hessenberg form. + * + * This is derived from the Algol procedures orthes and ortran, + * by Martin and Wilkinson, Handbook for Auto. Comp., + * Vol.ii-Linear Algebra, and the corresponding + * Fortran subroutines in EISPACK. + */ + private function orthes(): void + { + $low = 0; + $high = $this->n - 1; + + for ($m = $low + 1; $m <= $high - 1; ++$m) { + // Scale column. + $scale = 0.0; + for ($i = $m; $i <= $high; ++$i) { + $scale = $scale + abs($this->H[$i][$m - 1]); + } + if ($scale != 0.0) { + // Compute Householder transformation. + $h = 0.0; + for ($i = $high; $i >= $m; --$i) { + $this->ort[$i] = $this->H[$i][$m - 1] / $scale; + $h += $this->ort[$i] * $this->ort[$i]; + } + $g = sqrt($h); + if ($this->ort[$m] > 0) { + $g *= -1; + } + $h -= $this->ort[$m] * $g; + $this->ort[$m] -= $g; + // Apply Householder similarity transformation + // H = (I -u * u' / h) * H * (I -u * u') / h) + for ($j = $m; $j < $this->n; ++$j) { + $f = 0.0; + for ($i = $high; $i >= $m; --$i) { + $f += $this->ort[$i] * $this->H[$i][$j]; + } + $f /= $h; + for ($i = $m; $i <= $high; ++$i) { + $this->H[$i][$j] -= $f * $this->ort[$i]; + } + } + for ($i = 0; $i <= $high; ++$i) { + $f = 0.0; + for ($j = $high; $j >= $m; --$j) { + $f += $this->ort[$j] * $this->H[$i][$j]; + } + $f = $f / $h; + for ($j = $m; $j <= $high; ++$j) { + $this->H[$i][$j] -= $f * $this->ort[$j]; + } + } + $this->ort[$m] = $scale * $this->ort[$m]; + $this->H[$m][$m - 1] = $scale * $g; + } + } + + // Accumulate transformations (Algol's ortran). + for ($i = 0; $i < $this->n; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $this->V[$i][$j] = ($i == $j ? 1.0 : 0.0); + } + } + for ($m = $high - 1; $m >= $low + 1; --$m) { + if ($this->H[$m][$m - 1] != 0.0) { + for ($i = $m + 1; $i <= $high; ++$i) { + $this->ort[$i] = $this->H[$i][$m - 1]; + } + for ($j = $m; $j <= $high; ++$j) { + $g = 0.0; + for ($i = $m; $i <= $high; ++$i) { + $g += $this->ort[$i] * $this->V[$i][$j]; + } + // Double division avoids possible underflow + $g = ($g / $this->ort[$m]) / $this->H[$m][$m - 1]; + for ($i = $m; $i <= $high; ++$i) { + $this->V[$i][$j] += $g * $this->ort[$i]; + } + } + } + } + } + + /** + * Performs complex division. + * + * @param mixed $xr + * @param mixed $xi + * @param mixed $yr + * @param mixed $yi + */ + private function cdiv($xr, $xi, $yr, $yi): void + { + if (abs($yr) > abs($yi)) { + $r = $yi / $yr; + $d = $yr + $r * $yi; + $this->cdivr = ($xr + $r * $xi) / $d; + $this->cdivi = ($xi - $r * $xr) / $d; + } else { + $r = $yr / $yi; + $d = $yi + $r * $yr; + $this->cdivr = ($r * $xr + $xi) / $d; + $this->cdivi = ($r * $xi - $xr) / $d; + } + } + + /** + * Nonsymmetric reduction from Hessenberg to real Schur form. + * + * Code is derived from the Algol procedure hqr2, + * by Martin and Wilkinson, Handbook for Auto. Comp., + * Vol.ii-Linear Algebra, and the corresponding + * Fortran subroutine in EISPACK. + */ + private function hqr2(): void + { + // Initialize + $nn = $this->n; + $n = $nn - 1; + $low = 0; + $high = $nn - 1; + $eps = 2.0 ** (-52.0); + $exshift = 0.0; + $p = $q = $r = $s = $z = 0; + // Store roots isolated by balanc and compute matrix norm + $norm = 0.0; + + for ($i = 0; $i < $nn; ++$i) { + if ($i > $high) { + $this->d[$i] = $this->H[$i][$i]; + $this->e[$i] = 0.0; + } + for ($j = max($i - 1, 0); $j < $nn; ++$j) { + $norm = $norm + abs($this->H[$i][$j]); + } + } + + // Outer loop over eigenvalue index + $iter = 0; + while ($n >= $low) { + // Look for single small sub-diagonal element + $l = $n; + while ($l > $low) { + $s = abs($this->H[$l - 1][$l - 1]) + abs($this->H[$l][$l]); + if ($s == 0.0) { + $s = $norm; + } + if (abs($this->H[$l][$l - 1]) < $eps * $s) { + break; + } + --$l; + } + // Check for convergence + // One root found + if ($l == $n) { + $this->H[$n][$n] = $this->H[$n][$n] + $exshift; + $this->d[$n] = $this->H[$n][$n]; + $this->e[$n] = 0.0; + --$n; + $iter = 0; + // Two roots found + } elseif ($l == $n - 1) { + $w = $this->H[$n][$n - 1] * $this->H[$n - 1][$n]; + $p = ($this->H[$n - 1][$n - 1] - $this->H[$n][$n]) / 2.0; + $q = $p * $p + $w; + $z = sqrt(abs($q)); + $this->H[$n][$n] = $this->H[$n][$n] + $exshift; + $this->H[$n - 1][$n - 1] = $this->H[$n - 1][$n - 1] + $exshift; + $x = $this->H[$n][$n]; + // Real pair + if ($q >= 0) { + if ($p >= 0) { + $z = $p + $z; + } else { + $z = $p - $z; + } + $this->d[$n - 1] = $x + $z; + $this->d[$n] = $this->d[$n - 1]; + if ($z != 0.0) { + $this->d[$n] = $x - $w / $z; + } + $this->e[$n - 1] = 0.0; + $this->e[$n] = 0.0; + $x = $this->H[$n][$n - 1]; + $s = abs($x) + abs($z); + $p = $x / $s; + $q = $z / $s; + $r = sqrt($p * $p + $q * $q); + $p = $p / $r; + $q = $q / $r; + // Row modification + for ($j = $n - 1; $j < $nn; ++$j) { + $z = $this->H[$n - 1][$j]; + $this->H[$n - 1][$j] = $q * $z + $p * $this->H[$n][$j]; + $this->H[$n][$j] = $q * $this->H[$n][$j] - $p * $z; + } + // Column modification + for ($i = 0; $i <= $n; ++$i) { + $z = $this->H[$i][$n - 1]; + $this->H[$i][$n - 1] = $q * $z + $p * $this->H[$i][$n]; + $this->H[$i][$n] = $q * $this->H[$i][$n] - $p * $z; + } + // Accumulate transformations + for ($i = $low; $i <= $high; ++$i) { + $z = $this->V[$i][$n - 1]; + $this->V[$i][$n - 1] = $q * $z + $p * $this->V[$i][$n]; + $this->V[$i][$n] = $q * $this->V[$i][$n] - $p * $z; + } + // Complex pair + } else { + $this->d[$n - 1] = $x + $p; + $this->d[$n] = $x + $p; + $this->e[$n - 1] = $z; + $this->e[$n] = -$z; + } + $n = $n - 2; + $iter = 0; + // No convergence yet + } else { + // Form shift + $x = $this->H[$n][$n]; + $y = 0.0; + $w = 0.0; + if ($l < $n) { + $y = $this->H[$n - 1][$n - 1]; + $w = $this->H[$n][$n - 1] * $this->H[$n - 1][$n]; + } + // Wilkinson's original ad hoc shift + if ($iter == 10) { + $exshift += $x; + for ($i = $low; $i <= $n; ++$i) { + $this->H[$i][$i] -= $x; + } + $s = abs($this->H[$n][$n - 1]) + abs($this->H[$n - 1][$n - 2]); + $x = $y = 0.75 * $s; + $w = -0.4375 * $s * $s; + } + // MATLAB's new ad hoc shift + if ($iter == 30) { + $s = ($y - $x) / 2.0; + $s = $s * $s + $w; + if ($s > 0) { + $s = sqrt($s); + if ($y < $x) { + $s = -$s; + } + $s = $x - $w / (($y - $x) / 2.0 + $s); + for ($i = $low; $i <= $n; ++$i) { + $this->H[$i][$i] -= $s; + } + $exshift += $s; + $x = $y = $w = 0.964; + } + } + // Could check iteration count here. + $iter = $iter + 1; + // Look for two consecutive small sub-diagonal elements + $m = $n - 2; + while ($m >= $l) { + $z = $this->H[$m][$m]; + $r = $x - $z; + $s = $y - $z; + $p = ($r * $s - $w) / $this->H[$m + 1][$m] + $this->H[$m][$m + 1]; + $q = $this->H[$m + 1][$m + 1] - $z - $r - $s; + $r = $this->H[$m + 2][$m + 1]; + $s = abs($p) + abs($q) + abs($r); + $p = $p / $s; + $q = $q / $s; + $r = $r / $s; + if ($m == $l) { + break; + } + if ( + abs($this->H[$m][$m - 1]) * (abs($q) + abs($r)) < + $eps * (abs($p) * (abs($this->H[$m - 1][$m - 1]) + abs($z) + abs($this->H[$m + 1][$m + 1]))) + ) { + break; + } + --$m; + } + for ($i = $m + 2; $i <= $n; ++$i) { + $this->H[$i][$i - 2] = 0.0; + if ($i > $m + 2) { + $this->H[$i][$i - 3] = 0.0; + } + } + // Double QR step involving rows l:n and columns m:n + for ($k = $m; $k <= $n - 1; ++$k) { + $notlast = ($k != $n - 1); + if ($k != $m) { + $p = $this->H[$k][$k - 1]; + $q = $this->H[$k + 1][$k - 1]; + $r = ($notlast ? $this->H[$k + 2][$k - 1] : 0.0); + $x = abs($p) + abs($q) + abs($r); + if ($x != 0.0) { + $p = $p / $x; + $q = $q / $x; + $r = $r / $x; + } + } + if ($x == 0.0) { + break; + } + $s = sqrt($p * $p + $q * $q + $r * $r); + if ($p < 0) { + $s = -$s; + } + if ($s != 0) { + if ($k != $m) { + $this->H[$k][$k - 1] = -$s * $x; + } elseif ($l != $m) { + $this->H[$k][$k - 1] = -$this->H[$k][$k - 1]; + } + $p = $p + $s; + $x = $p / $s; + $y = $q / $s; + $z = $r / $s; + $q = $q / $p; + $r = $r / $p; + // Row modification + for ($j = $k; $j < $nn; ++$j) { + $p = $this->H[$k][$j] + $q * $this->H[$k + 1][$j]; + if ($notlast) { + $p = $p + $r * $this->H[$k + 2][$j]; + $this->H[$k + 2][$j] = $this->H[$k + 2][$j] - $p * $z; + } + $this->H[$k][$j] = $this->H[$k][$j] - $p * $x; + $this->H[$k + 1][$j] = $this->H[$k + 1][$j] - $p * $y; + } + // Column modification + $iMax = min($n, $k + 3); + for ($i = 0; $i <= $iMax; ++$i) { + $p = $x * $this->H[$i][$k] + $y * $this->H[$i][$k + 1]; + if ($notlast) { + $p = $p + $z * $this->H[$i][$k + 2]; + $this->H[$i][$k + 2] = $this->H[$i][$k + 2] - $p * $r; + } + $this->H[$i][$k] = $this->H[$i][$k] - $p; + $this->H[$i][$k + 1] = $this->H[$i][$k + 1] - $p * $q; + } + // Accumulate transformations + for ($i = $low; $i <= $high; ++$i) { + $p = $x * $this->V[$i][$k] + $y * $this->V[$i][$k + 1]; + if ($notlast) { + $p = $p + $z * $this->V[$i][$k + 2]; + $this->V[$i][$k + 2] = $this->V[$i][$k + 2] - $p * $r; + } + $this->V[$i][$k] = $this->V[$i][$k] - $p; + $this->V[$i][$k + 1] = $this->V[$i][$k + 1] - $p * $q; + } + } // ($s != 0) + } // k loop + } // check convergence + } // while ($n >= $low) + + // Backsubstitute to find vectors of upper triangular form + if ($norm == 0.0) { + return; + } + + for ($n = $nn - 1; $n >= 0; --$n) { + $p = $this->d[$n]; + $q = $this->e[$n]; + // Real vector + if ($q == 0) { + $l = $n; + $this->H[$n][$n] = 1.0; + for ($i = $n - 1; $i >= 0; --$i) { + $w = $this->H[$i][$i] - $p; + $r = 0.0; + for ($j = $l; $j <= $n; ++$j) { + $r = $r + $this->H[$i][$j] * $this->H[$j][$n]; + } + if ($this->e[$i] < 0.0) { + $z = $w; + $s = $r; + } else { + $l = $i; + if ($this->e[$i] == 0.0) { + if ($w != 0.0) { + $this->H[$i][$n] = -$r / $w; + } else { + $this->H[$i][$n] = -$r / ($eps * $norm); + } + // Solve real equations + } else { + $x = $this->H[$i][$i + 1]; + $y = $this->H[$i + 1][$i]; + $q = ($this->d[$i] - $p) * ($this->d[$i] - $p) + $this->e[$i] * $this->e[$i]; + $t = ($x * $s - $z * $r) / $q; + $this->H[$i][$n] = $t; + if (abs($x) > abs($z)) { + $this->H[$i + 1][$n] = (-$r - $w * $t) / $x; + } else { + $this->H[$i + 1][$n] = (-$s - $y * $t) / $z; + } + } + // Overflow control + $t = abs($this->H[$i][$n]); + if (($eps * $t) * $t > 1) { + for ($j = $i; $j <= $n; ++$j) { + $this->H[$j][$n] = $this->H[$j][$n] / $t; + } + } + } + } + // Complex vector + } elseif ($q < 0) { + $l = $n - 1; + // Last vector component imaginary so matrix is triangular + if (abs($this->H[$n][$n - 1]) > abs($this->H[$n - 1][$n])) { + $this->H[$n - 1][$n - 1] = $q / $this->H[$n][$n - 1]; + $this->H[$n - 1][$n] = -($this->H[$n][$n] - $p) / $this->H[$n][$n - 1]; + } else { + $this->cdiv(0.0, -$this->H[$n - 1][$n], $this->H[$n - 1][$n - 1] - $p, $q); + $this->H[$n - 1][$n - 1] = $this->cdivr; + $this->H[$n - 1][$n] = $this->cdivi; + } + $this->H[$n][$n - 1] = 0.0; + $this->H[$n][$n] = 1.0; + for ($i = $n - 2; $i >= 0; --$i) { + // double ra,sa,vr,vi; + $ra = 0.0; + $sa = 0.0; + for ($j = $l; $j <= $n; ++$j) { + $ra = $ra + $this->H[$i][$j] * $this->H[$j][$n - 1]; + $sa = $sa + $this->H[$i][$j] * $this->H[$j][$n]; + } + $w = $this->H[$i][$i] - $p; + if ($this->e[$i] < 0.0) { + $z = $w; + $r = $ra; + $s = $sa; + } else { + $l = $i; + if ($this->e[$i] == 0) { + $this->cdiv(-$ra, -$sa, $w, $q); + $this->H[$i][$n - 1] = $this->cdivr; + $this->H[$i][$n] = $this->cdivi; + } else { + // Solve complex equations + $x = $this->H[$i][$i + 1]; + $y = $this->H[$i + 1][$i]; + $vr = ($this->d[$i] - $p) * ($this->d[$i] - $p) + $this->e[$i] * $this->e[$i] - $q * $q; + $vi = ($this->d[$i] - $p) * 2.0 * $q; + if ($vr == 0.0 & $vi == 0.0) { + $vr = $eps * $norm * (abs($w) + abs($q) + abs($x) + abs($y) + abs($z)); + } + $this->cdiv($x * $r - $z * $ra + $q * $sa, $x * $s - $z * $sa - $q * $ra, $vr, $vi); + $this->H[$i][$n - 1] = $this->cdivr; + $this->H[$i][$n] = $this->cdivi; + if (abs($x) > (abs($z) + abs($q))) { + $this->H[$i + 1][$n - 1] = (-$ra - $w * $this->H[$i][$n - 1] + $q * $this->H[$i][$n]) / $x; + $this->H[$i + 1][$n] = (-$sa - $w * $this->H[$i][$n] - $q * $this->H[$i][$n - 1]) / $x; + } else { + $this->cdiv(-$r - $y * $this->H[$i][$n - 1], -$s - $y * $this->H[$i][$n], $z, $q); + $this->H[$i + 1][$n - 1] = $this->cdivr; + $this->H[$i + 1][$n] = $this->cdivi; + } + } + // Overflow control + $t = max(abs($this->H[$i][$n - 1]), abs($this->H[$i][$n])); + if (($eps * $t) * $t > 1) { + for ($j = $i; $j <= $n; ++$j) { + $this->H[$j][$n - 1] = $this->H[$j][$n - 1] / $t; + $this->H[$j][$n] = $this->H[$j][$n] / $t; + } + } + } // end else + } // end for + } // end else for complex case + } // end for + + // Vectors of isolated roots + for ($i = 0; $i < $nn; ++$i) { + if ($i > $high) { + for ($j = $i; $j < $nn; ++$j) { + $this->V[$i][$j] = $this->H[$i][$j]; + } + } + } + + // Back transformation to get eigenvectors of original matrix + for ($j = $nn - 1; $j >= $low; --$j) { + for ($i = $low; $i <= $high; ++$i) { + $z = 0.0; + $kMax = min($j, $high); + for ($k = $low; $k <= $kMax; ++$k) { + $z = $z + $this->V[$i][$k] * $this->H[$k][$j]; + } + $this->V[$i][$j] = $z; + } + } + } + + // end hqr2 + + /** + * Constructor: Check for symmetry, then construct the eigenvalue decomposition. + * + * @param Matrix $Arg A Square matrix + */ + public function __construct(Matrix $Arg) + { + $this->A = $Arg->getArray(); + $this->n = $Arg->getColumnDimension(); + + $issymmetric = true; + for ($j = 0; ($j < $this->n) & $issymmetric; ++$j) { + for ($i = 0; ($i < $this->n) & $issymmetric; ++$i) { + $issymmetric = ($this->A[$i][$j] == $this->A[$j][$i]); + } + } + + if ($issymmetric) { + $this->V = $this->A; + // Tridiagonalize. + $this->tred2(); + // Diagonalize. + $this->tql2(); + } else { + $this->H = $this->A; + $this->ort = []; + // Reduce to Hessenberg form. + $this->orthes(); + // Reduce Hessenberg to real Schur form. + $this->hqr2(); + } + } + + /** + * Return the eigenvector matrix. + * + * @return Matrix V + */ + public function getV() + { + return new Matrix($this->V, $this->n, $this->n); + } + + /** + * Return the real parts of the eigenvalues. + * + * @return array real(diag(D)) + */ + public function getRealEigenvalues() + { + return $this->d; + } + + /** + * Return the imaginary parts of the eigenvalues. + * + * @return array imag(diag(D)) + */ + public function getImagEigenvalues() + { + return $this->e; + } + + /** + * Return the block diagonal eigenvalue matrix. + * + * @return Matrix D + */ + public function getD() + { + $D = []; + for ($i = 0; $i < $this->n; ++$i) { + $D[$i] = array_fill(0, $this->n, 0.0); + $D[$i][$i] = $this->d[$i]; + if ($this->e[$i] == 0) { + continue; + } + $o = ($this->e[$i] > 0) ? $i + 1 : $i - 1; + $D[$i][$o] = $this->e[$i]; + } + + return new Matrix($D); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/LUDecomposition.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/LUDecomposition.php new file mode 100644 index 0000000..ecfe42b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/LUDecomposition.php @@ -0,0 +1,284 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\JAMA; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception as CalculationException; + +/** + * For an m-by-n matrix A with m >= n, the LU decomposition is an m-by-n + * unit lower triangular matrix L, an n-by-n upper triangular matrix U, + * and a permutation vector piv of length m so that A(piv,:) = L*U. + * If m < n, then L is m-by-m and U is m-by-n. + * + * The LU decompostion with pivoting always exists, even if the matrix is + * singular, so the constructor will never fail. The primary use of the + * LU decomposition is in the solution of square systems of simultaneous + * linear equations. This will fail if isNonsingular() returns false. + * + * @author Paul Meagher + * @author Bartosz Matosiuk + * @author Michael Bommarito + * + * @version 1.1 + */ +class LUDecomposition +{ + const MATRIX_SINGULAR_EXCEPTION = 'Can only perform operation on singular matrix.'; + const MATRIX_SQUARE_EXCEPTION = 'Mismatched Row dimension'; + + /** + * Decomposition storage. + * + * @var array + */ + private $LU = []; + + /** + * Row dimension. + * + * @var int + */ + private $m; + + /** + * Column dimension. + * + * @var int + */ + private $n; + + /** + * Pivot sign. + * + * @var int + */ + private $pivsign; + + /** + * Internal storage of pivot vector. + * + * @var array + */ + private $piv = []; + + /** + * LU Decomposition constructor. + * + * @param Matrix $A Rectangular matrix + */ + public function __construct($A) + { + if ($A instanceof Matrix) { + // Use a "left-looking", dot-product, Crout/Doolittle algorithm. + $this->LU = $A->getArray(); + $this->m = $A->getRowDimension(); + $this->n = $A->getColumnDimension(); + for ($i = 0; $i < $this->m; ++$i) { + $this->piv[$i] = $i; + } + $this->pivsign = 1; + $LUrowi = $LUcolj = []; + + // Outer loop. + for ($j = 0; $j < $this->n; ++$j) { + // Make a copy of the j-th column to localize references. + for ($i = 0; $i < $this->m; ++$i) { + $LUcolj[$i] = &$this->LU[$i][$j]; + } + // Apply previous transformations. + for ($i = 0; $i < $this->m; ++$i) { + $LUrowi = $this->LU[$i]; + // Most of the time is spent in the following dot product. + $kmax = min($i, $j); + $s = 0.0; + for ($k = 0; $k < $kmax; ++$k) { + $s += $LUrowi[$k] * $LUcolj[$k]; + } + $LUrowi[$j] = $LUcolj[$i] -= $s; + } + // Find pivot and exchange if necessary. + $p = $j; + for ($i = $j + 1; $i < $this->m; ++$i) { + if (abs($LUcolj[$i]) > abs($LUcolj[$p])) { + $p = $i; + } + } + if ($p != $j) { + for ($k = 0; $k < $this->n; ++$k) { + $t = $this->LU[$p][$k]; + $this->LU[$p][$k] = $this->LU[$j][$k]; + $this->LU[$j][$k] = $t; + } + $k = $this->piv[$p]; + $this->piv[$p] = $this->piv[$j]; + $this->piv[$j] = $k; + $this->pivsign = $this->pivsign * -1; + } + // Compute multipliers. + if (($j < $this->m) && ($this->LU[$j][$j] != 0.0)) { + for ($i = $j + 1; $i < $this->m; ++$i) { + $this->LU[$i][$j] /= $this->LU[$j][$j]; + } + } + } + } else { + throw new CalculationException(Matrix::ARGUMENT_TYPE_EXCEPTION); + } + } + + // function __construct() + + /** + * Get lower triangular factor. + * + * @return Matrix Lower triangular factor + */ + public function getL() + { + $L = []; + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + if ($i > $j) { + $L[$i][$j] = $this->LU[$i][$j]; + } elseif ($i == $j) { + $L[$i][$j] = 1.0; + } else { + $L[$i][$j] = 0.0; + } + } + } + + return new Matrix($L); + } + + // function getL() + + /** + * Get upper triangular factor. + * + * @return Matrix Upper triangular factor + */ + public function getU() + { + $U = []; + for ($i = 0; $i < $this->n; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + if ($i <= $j) { + $U[$i][$j] = $this->LU[$i][$j]; + } else { + $U[$i][$j] = 0.0; + } + } + } + + return new Matrix($U); + } + + // function getU() + + /** + * Return pivot permutation vector. + * + * @return array Pivot vector + */ + public function getPivot() + { + return $this->piv; + } + + // function getPivot() + + /** + * Alias for getPivot. + * + * @see getPivot + */ + public function getDoublePivot() + { + return $this->getPivot(); + } + + // function getDoublePivot() + + /** + * Is the matrix nonsingular? + * + * @return bool true if U, and hence A, is nonsingular + */ + public function isNonsingular() + { + for ($j = 0; $j < $this->n; ++$j) { + if ($this->LU[$j][$j] == 0) { + return false; + } + } + + return true; + } + + // function isNonsingular() + + /** + * Count determinants. + * + * @return float + */ + public function det() + { + if ($this->m == $this->n) { + $d = $this->pivsign; + for ($j = 0; $j < $this->n; ++$j) { + $d *= $this->LU[$j][$j]; + } + + return $d; + } + + throw new CalculationException(Matrix::MATRIX_DIMENSION_EXCEPTION); + } + + // function det() + + /** + * Solve A*X = B. + * + * @param Matrix $B a Matrix with as many rows as A and any number of columns + * + * @return Matrix X so that L*U*X = B(piv,:) + */ + public function solve(Matrix $B) + { + if ($B->getRowDimension() == $this->m) { + if ($this->isNonsingular()) { + // Copy right hand side with pivoting + $nx = $B->getColumnDimension(); + $X = $B->getMatrix($this->piv, 0, $nx - 1); + // Solve L*Y = B(piv,:) + for ($k = 0; $k < $this->n; ++$k) { + for ($i = $k + 1; $i < $this->n; ++$i) { + for ($j = 0; $j < $nx; ++$j) { + $X->A[$i][$j] -= $X->A[$k][$j] * $this->LU[$i][$k]; + } + } + } + // Solve U*X = Y; + for ($k = $this->n - 1; $k >= 0; --$k) { + for ($j = 0; $j < $nx; ++$j) { + $X->A[$k][$j] /= $this->LU[$k][$k]; + } + for ($i = 0; $i < $k; ++$i) { + for ($j = 0; $j < $nx; ++$j) { + $X->A[$i][$j] -= $X->A[$k][$j] * $this->LU[$i][$k]; + } + } + } + + return $X; + } + + throw new CalculationException(self::MATRIX_SINGULAR_EXCEPTION); + } + + throw new CalculationException(self::MATRIX_SQUARE_EXCEPTION); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/Matrix.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/Matrix.php new file mode 100644 index 0000000..ab78ef1 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/Matrix.php @@ -0,0 +1,1190 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\JAMA; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception as CalculationException; +use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; + +/** + * Matrix class. + * + * @author Paul Meagher + * @author Michael Bommarito + * @author Lukasz Karapuda + * @author Bartek Matosiuk + * + * @version 1.8 + * + * @see https://math.nist.gov/javanumerics/jama/ + */ +class Matrix +{ + const POLYMORPHIC_ARGUMENT_EXCEPTION = 'Invalid argument pattern for polymorphic function.'; + const ARGUMENT_TYPE_EXCEPTION = 'Invalid argument type.'; + const ARGUMENT_BOUNDS_EXCEPTION = 'Invalid argument range.'; + const MATRIX_DIMENSION_EXCEPTION = 'Matrix dimensions are not equal.'; + const ARRAY_LENGTH_EXCEPTION = 'Array length must be a multiple of m.'; + const MATRIX_SPD_EXCEPTION = 'Can only perform operation on symmetric positive definite matrix.'; + + /** + * Matrix storage. + * + * @var array + */ + public $A = []; + + /** + * Matrix row dimension. + * + * @var int + */ + private $m; + + /** + * Matrix column dimension. + * + * @var int + */ + private $n; + + /** + * Polymorphic constructor. + * + * As PHP has no support for polymorphic constructors, we use tricks to make our own sort of polymorphism using func_num_args, func_get_arg, and gettype. In essence, we're just implementing a simple RTTI filter and calling the appropriate constructor. + */ + public function __construct(...$args) + { + if (count($args) > 0) { + $match = implode(',', array_map('gettype', $args)); + + switch ($match) { + //Rectangular matrix - m x n initialized from 2D array + case 'array': + $this->m = count($args[0]); + $this->n = count($args[0][0]); + $this->A = $args[0]; + + break; + //Square matrix - n x n + case 'integer': + $this->m = $args[0]; + $this->n = $args[0]; + $this->A = array_fill(0, $this->m, array_fill(0, $this->n, 0)); + + break; + //Rectangular matrix - m x n + case 'integer,integer': + $this->m = $args[0]; + $this->n = $args[1]; + $this->A = array_fill(0, $this->m, array_fill(0, $this->n, 0)); + + break; + //Rectangular matrix - m x n initialized from packed array + case 'array,integer': + $this->m = $args[1]; + if ($this->m != 0) { + $this->n = count($args[0]) / $this->m; + } else { + $this->n = 0; + } + if (($this->m * $this->n) == count($args[0])) { + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $this->A[$i][$j] = $args[0][$i + $j * $this->m]; + } + } + } else { + throw new CalculationException(self::ARRAY_LENGTH_EXCEPTION); + } + + break; + default: + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + + break; + } + } else { + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + /** + * getArray. + * + * @return array Matrix array + */ + public function getArray() + { + return $this->A; + } + + /** + * getRowDimension. + * + * @return int Row dimension + */ + public function getRowDimension() + { + return $this->m; + } + + /** + * getColumnDimension. + * + * @return int Column dimension + */ + public function getColumnDimension() + { + return $this->n; + } + + /** + * get. + * + * Get the i,j-th element of the matrix. + * + * @param int $i Row position + * @param int $j Column position + * + * @return float|int + */ + public function get($i = null, $j = null) + { + return $this->A[$i][$j]; + } + + /** + * getMatrix. + * + * Get a submatrix + * + * @return Matrix Submatrix + */ + public function getMatrix(...$args) + { + if (count($args) > 0) { + $match = implode(',', array_map('gettype', $args)); + + switch ($match) { + //A($i0...; $j0...) + case 'integer,integer': + [$i0, $j0] = $args; + if ($i0 >= 0) { + $m = $this->m - $i0; + } else { + throw new CalculationException(self::ARGUMENT_BOUNDS_EXCEPTION); + } + if ($j0 >= 0) { + $n = $this->n - $j0; + } else { + throw new CalculationException(self::ARGUMENT_BOUNDS_EXCEPTION); + } + $R = new self($m, $n); + for ($i = $i0; $i < $this->m; ++$i) { + for ($j = $j0; $j < $this->n; ++$j) { + $R->set($i, $j, $this->A[$i][$j]); + } + } + + return $R; + + break; + //A($i0...$iF; $j0...$jF) + case 'integer,integer,integer,integer': + [$i0, $iF, $j0, $jF] = $args; + if (($iF > $i0) && ($this->m >= $iF) && ($i0 >= 0)) { + $m = $iF - $i0; + } else { + throw new CalculationException(self::ARGUMENT_BOUNDS_EXCEPTION); + } + if (($jF > $j0) && ($this->n >= $jF) && ($j0 >= 0)) { + $n = $jF - $j0; + } else { + throw new CalculationException(self::ARGUMENT_BOUNDS_EXCEPTION); + } + $R = new self($m + 1, $n + 1); + for ($i = $i0; $i <= $iF; ++$i) { + for ($j = $j0; $j <= $jF; ++$j) { + $R->set($i - $i0, $j - $j0, $this->A[$i][$j]); + } + } + + return $R; + + break; + //$R = array of row indices; $C = array of column indices + case 'array,array': + [$RL, $CL] = $args; + if (count($RL) > 0) { + $m = count($RL); + } else { + throw new CalculationException(self::ARGUMENT_BOUNDS_EXCEPTION); + } + if (count($CL) > 0) { + $n = count($CL); + } else { + throw new CalculationException(self::ARGUMENT_BOUNDS_EXCEPTION); + } + $R = new self($m, $n); + for ($i = 0; $i < $m; ++$i) { + for ($j = 0; $j < $n; ++$j) { + $R->set($i, $j, $this->A[$RL[$i]][$CL[$j]]); + } + } + + return $R; + + break; + //A($i0...$iF); $CL = array of column indices + case 'integer,integer,array': + [$i0, $iF, $CL] = $args; + if (($iF > $i0) && ($this->m >= $iF) && ($i0 >= 0)) { + $m = $iF - $i0; + } else { + throw new CalculationException(self::ARGUMENT_BOUNDS_EXCEPTION); + } + if (count($CL) > 0) { + $n = count($CL); + } else { + throw new CalculationException(self::ARGUMENT_BOUNDS_EXCEPTION); + } + $R = new self($m, $n); + for ($i = $i0; $i < $iF; ++$i) { + for ($j = 0; $j < $n; ++$j) { + $R->set($i - $i0, $j, $this->A[$i][$CL[$j]]); + } + } + + return $R; + + break; + //$RL = array of row indices + case 'array,integer,integer': + [$RL, $j0, $jF] = $args; + if (count($RL) > 0) { + $m = count($RL); + } else { + throw new CalculationException(self::ARGUMENT_BOUNDS_EXCEPTION); + } + if (($jF >= $j0) && ($this->n >= $jF) && ($j0 >= 0)) { + $n = $jF - $j0; + } else { + throw new CalculationException(self::ARGUMENT_BOUNDS_EXCEPTION); + } + $R = new self($m, $n + 1); + for ($i = 0; $i < $m; ++$i) { + for ($j = $j0; $j <= $jF; ++$j) { + $R->set($i, $j - $j0, $this->A[$RL[$i]][$j]); + } + } + + return $R; + + break; + default: + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + + break; + } + } else { + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + /** + * checkMatrixDimensions. + * + * Is matrix B the same size? + * + * @param Matrix $B Matrix B + * + * @return bool + */ + public function checkMatrixDimensions($B = null) + { + if ($B instanceof self) { + if (($this->m == $B->getRowDimension()) && ($this->n == $B->getColumnDimension())) { + return true; + } + + throw new CalculationException(self::MATRIX_DIMENSION_EXCEPTION); + } + + throw new CalculationException(self::ARGUMENT_TYPE_EXCEPTION); + } + + // function checkMatrixDimensions() + + /** + * set. + * + * Set the i,j-th element of the matrix. + * + * @param int $i Row position + * @param int $j Column position + * @param float|int $c value + */ + public function set($i = null, $j = null, $c = null): void + { + // Optimized set version just has this + $this->A[$i][$j] = $c; + } + + // function set() + + /** + * identity. + * + * Generate an identity matrix. + * + * @param int $m Row dimension + * @param int $n Column dimension + * + * @return Matrix Identity matrix + */ + public function identity($m = null, $n = null) + { + return $this->diagonal($m, $n, 1); + } + + /** + * diagonal. + * + * Generate a diagonal matrix + * + * @param int $m Row dimension + * @param int $n Column dimension + * @param mixed $c Diagonal value + * + * @return Matrix Diagonal matrix + */ + public function diagonal($m = null, $n = null, $c = 1) + { + $R = new self($m, $n); + for ($i = 0; $i < $m; ++$i) { + $R->set($i, $i, $c); + } + + return $R; + } + + /** + * getMatrixByRow. + * + * Get a submatrix by row index/range + * + * @param int $i0 Initial row index + * @param int $iF Final row index + * + * @return Matrix Submatrix + */ + public function getMatrixByRow($i0 = null, $iF = null) + { + if (is_int($i0)) { + if (is_int($iF)) { + return $this->getMatrix($i0, 0, $iF + 1, $this->n); + } + + return $this->getMatrix($i0, 0, $i0 + 1, $this->n); + } + + throw new CalculationException(self::ARGUMENT_TYPE_EXCEPTION); + } + + /** + * getMatrixByCol. + * + * Get a submatrix by column index/range + * + * @param int $j0 Initial column index + * @param int $jF Final column index + * + * @return Matrix Submatrix + */ + public function getMatrixByCol($j0 = null, $jF = null) + { + if (is_int($j0)) { + if (is_int($jF)) { + return $this->getMatrix(0, $j0, $this->m, $jF + 1); + } + + return $this->getMatrix(0, $j0, $this->m, $j0 + 1); + } + + throw new CalculationException(self::ARGUMENT_TYPE_EXCEPTION); + } + + /** + * transpose. + * + * Tranpose matrix + * + * @return Matrix Transposed matrix + */ + public function transpose() + { + $R = new self($this->n, $this->m); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $R->set($j, $i, $this->A[$i][$j]); + } + } + + return $R; + } + + // function transpose() + + /** + * trace. + * + * Sum of diagonal elements + * + * @return float Sum of diagonal elements + */ + public function trace() + { + $s = 0; + $n = min($this->m, $this->n); + for ($i = 0; $i < $n; ++$i) { + $s += $this->A[$i][$i]; + } + + return $s; + } + + /** + * plus. + * + * A + B + * + * @return Matrix Sum + */ + public function plus(...$args) + { + if (count($args) > 0) { + $match = implode(',', array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof self) { + $M = $args[0]; + } else { + throw new CalculationException(self::ARGUMENT_TYPE_EXCEPTION); + } + + break; + case 'array': + $M = new self($args[0]); + + break; + default: + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $M->set($i, $j, $M->get($i, $j) + $this->A[$i][$j]); + } + } + + return $M; + } + + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + + /** + * plusEquals. + * + * A = A + B + * + * @return $this + */ + public function plusEquals(...$args) + { + if (count($args) > 0) { + $match = implode(',', array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof self) { + $M = $args[0]; + } else { + throw new CalculationException(self::ARGUMENT_TYPE_EXCEPTION); + } + + break; + case 'array': + $M = new self($args[0]); + + break; + default: + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $validValues = true; + $value = $M->get($i, $j); + if ((is_string($this->A[$i][$j])) && (strlen($this->A[$i][$j]) > 0) && (!is_numeric($this->A[$i][$j]))) { + $this->A[$i][$j] = trim($this->A[$i][$j], '"'); + $validValues &= StringHelper::convertToNumberIfFraction($this->A[$i][$j]); + } + if ((is_string($value)) && (strlen($value) > 0) && (!is_numeric($value))) { + $value = trim($value, '"'); + $validValues &= StringHelper::convertToNumberIfFraction($value); + } + if ($validValues) { + $this->A[$i][$j] += $value; + } else { + $this->A[$i][$j] = ExcelError::NAN(); + } + } + } + + return $this; + } + + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + + /** + * minus. + * + * A - B + * + * @return Matrix Sum + */ + public function minus(...$args) + { + if (count($args) > 0) { + $match = implode(',', array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof self) { + $M = $args[0]; + } else { + throw new CalculationException(self::ARGUMENT_TYPE_EXCEPTION); + } + + break; + case 'array': + $M = new self($args[0]); + + break; + default: + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $M->set($i, $j, $M->get($i, $j) - $this->A[$i][$j]); + } + } + + return $M; + } + + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + + /** + * minusEquals. + * + * A = A - B + * + * @return $this + */ + public function minusEquals(...$args) + { + if (count($args) > 0) { + $match = implode(',', array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof self) { + $M = $args[0]; + } else { + throw new CalculationException(self::ARGUMENT_TYPE_EXCEPTION); + } + + break; + case 'array': + $M = new self($args[0]); + + break; + default: + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $validValues = true; + $value = $M->get($i, $j); + if ((is_string($this->A[$i][$j])) && (strlen($this->A[$i][$j]) > 0) && (!is_numeric($this->A[$i][$j]))) { + $this->A[$i][$j] = trim($this->A[$i][$j], '"'); + $validValues &= StringHelper::convertToNumberIfFraction($this->A[$i][$j]); + } + if ((is_string($value)) && (strlen($value) > 0) && (!is_numeric($value))) { + $value = trim($value, '"'); + $validValues &= StringHelper::convertToNumberIfFraction($value); + } + if ($validValues) { + $this->A[$i][$j] -= $value; + } else { + $this->A[$i][$j] = ExcelError::NAN(); + } + } + } + + return $this; + } + + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + + /** + * arrayTimes. + * + * Element-by-element multiplication + * Cij = Aij * Bij + * + * @return Matrix Matrix Cij + */ + public function arrayTimes(...$args) + { + if (count($args) > 0) { + $match = implode(',', array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof self) { + $M = $args[0]; + } else { + throw new CalculationException(self::ARGUMENT_TYPE_EXCEPTION); + } + + break; + case 'array': + $M = new self($args[0]); + + break; + default: + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $M->set($i, $j, $M->get($i, $j) * $this->A[$i][$j]); + } + } + + return $M; + } + + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + + /** + * arrayTimesEquals. + * + * Element-by-element multiplication + * Aij = Aij * Bij + * + * @return $this + */ + public function arrayTimesEquals(...$args) + { + if (count($args) > 0) { + $match = implode(',', array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof self) { + $M = $args[0]; + } else { + throw new CalculationException(self::ARGUMENT_TYPE_EXCEPTION); + } + + break; + case 'array': + $M = new self($args[0]); + + break; + default: + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $validValues = true; + $value = $M->get($i, $j); + if ((is_string($this->A[$i][$j])) && (strlen($this->A[$i][$j]) > 0) && (!is_numeric($this->A[$i][$j]))) { + $this->A[$i][$j] = trim($this->A[$i][$j], '"'); + $validValues &= StringHelper::convertToNumberIfFraction($this->A[$i][$j]); + } + if ((is_string($value)) && (strlen($value) > 0) && (!is_numeric($value))) { + $value = trim($value, '"'); + $validValues &= StringHelper::convertToNumberIfFraction($value); + } + if ($validValues) { + $this->A[$i][$j] *= $value; + } else { + $this->A[$i][$j] = ExcelError::NAN(); + } + } + } + + return $this; + } + + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + + /** + * arrayRightDivide. + * + * Element-by-element right division + * A / B + * + * @return Matrix Division result + */ + public function arrayRightDivide(...$args) + { + if (count($args) > 0) { + $match = implode(',', array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof self) { + $M = $args[0]; + } else { + throw new CalculationException(self::ARGUMENT_TYPE_EXCEPTION); + } + + break; + case 'array': + $M = new self($args[0]); + + break; + default: + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $validValues = true; + $value = $M->get($i, $j); + if ((is_string($this->A[$i][$j])) && (strlen($this->A[$i][$j]) > 0) && (!is_numeric($this->A[$i][$j]))) { + $this->A[$i][$j] = trim($this->A[$i][$j], '"'); + $validValues &= StringHelper::convertToNumberIfFraction($this->A[$i][$j]); + } + if ((is_string($value)) && (strlen($value) > 0) && (!is_numeric($value))) { + $value = trim($value, '"'); + $validValues &= StringHelper::convertToNumberIfFraction($value); + } + if ($validValues) { + if ($value == 0) { + // Trap for Divide by Zero error + $M->set($i, $j, '#DIV/0!'); + } else { + $M->set($i, $j, $this->A[$i][$j] / $value); + } + } else { + $M->set($i, $j, ExcelError::NAN()); + } + } + } + + return $M; + } + + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + + /** + * arrayRightDivideEquals. + * + * Element-by-element right division + * Aij = Aij / Bij + * + * @return Matrix Matrix Aij + */ + public function arrayRightDivideEquals(...$args) + { + if (count($args) > 0) { + $match = implode(',', array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof self) { + $M = $args[0]; + } else { + throw new CalculationException(self::ARGUMENT_TYPE_EXCEPTION); + } + + break; + case 'array': + $M = new self($args[0]); + + break; + default: + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $this->A[$i][$j] = $this->A[$i][$j] / $M->get($i, $j); + } + } + + return $M; + } + + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + + /** + * arrayLeftDivide. + * + * Element-by-element Left division + * A / B + * + * @return Matrix Division result + */ + public function arrayLeftDivide(...$args) + { + if (count($args) > 0) { + $match = implode(',', array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof self) { + $M = $args[0]; + } else { + throw new CalculationException(self::ARGUMENT_TYPE_EXCEPTION); + } + + break; + case 'array': + $M = new self($args[0]); + + break; + default: + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $M->set($i, $j, $M->get($i, $j) / $this->A[$i][$j]); + } + } + + return $M; + } + + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + + /** + * arrayLeftDivideEquals. + * + * Element-by-element Left division + * Aij = Aij / Bij + * + * @return Matrix Matrix Aij + */ + public function arrayLeftDivideEquals(...$args) + { + if (count($args) > 0) { + $match = implode(',', array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof self) { + $M = $args[0]; + } else { + throw new CalculationException(self::ARGUMENT_TYPE_EXCEPTION); + } + + break; + case 'array': + $M = new self($args[0]); + + break; + default: + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $this->A[$i][$j] = $M->get($i, $j) / $this->A[$i][$j]; + } + } + + return $M; + } + + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + + /** + * times. + * + * Matrix multiplication + * + * @return Matrix Product + */ + public function times(...$args) + { + if (count($args) > 0) { + $match = implode(',', array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof self) { + $B = $args[0]; + } else { + throw new CalculationException(self::ARGUMENT_TYPE_EXCEPTION); + } + if ($this->n == $B->m) { + $C = new self($this->m, $B->n); + for ($j = 0; $j < $B->n; ++$j) { + $Bcolj = []; + for ($k = 0; $k < $this->n; ++$k) { + $Bcolj[$k] = $B->A[$k][$j]; + } + for ($i = 0; $i < $this->m; ++$i) { + $Arowi = $this->A[$i]; + $s = 0; + for ($k = 0; $k < $this->n; ++$k) { + $s += $Arowi[$k] * $Bcolj[$k]; + } + $C->A[$i][$j] = $s; + } + } + + return $C; + } + + throw new CalculationException(self::MATRIX_DIMENSION_EXCEPTION); + case 'array': + $B = new self($args[0]); + if ($this->n == $B->m) { + $C = new self($this->m, $B->n); + for ($i = 0; $i < $C->m; ++$i) { + for ($j = 0; $j < $C->n; ++$j) { + $s = '0'; + for ($k = 0; $k < $C->n; ++$k) { + $s += $this->A[$i][$k] * $B->A[$k][$j]; + } + $C->A[$i][$j] = $s; + } + } + + return $C; + } + + throw new CalculationException(self::MATRIX_DIMENSION_EXCEPTION); + case 'integer': + $C = new self($this->A); + for ($i = 0; $i < $C->m; ++$i) { + for ($j = 0; $j < $C->n; ++$j) { + $C->A[$i][$j] *= $args[0]; + } + } + + return $C; + case 'double': + $C = new self($this->m, $this->n); + for ($i = 0; $i < $C->m; ++$i) { + for ($j = 0; $j < $C->n; ++$j) { + $C->A[$i][$j] = $args[0] * $this->A[$i][$j]; + } + } + + return $C; + case 'float': + $C = new self($this->A); + for ($i = 0; $i < $C->m; ++$i) { + for ($j = 0; $j < $C->n; ++$j) { + $C->A[$i][$j] *= $args[0]; + } + } + + return $C; + default: + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } else { + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + } + + /** + * power. + * + * A = A ^ B + * + * @return $this + */ + public function power(...$args) + { + if (count($args) > 0) { + $match = implode(',', array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof self) { + $M = $args[0]; + } else { + throw new CalculationException(self::ARGUMENT_TYPE_EXCEPTION); + } + + break; + case 'array': + $M = new self($args[0]); + + break; + default: + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $validValues = true; + $value = $M->get($i, $j); + if ((is_string($this->A[$i][$j])) && (strlen($this->A[$i][$j]) > 0) && (!is_numeric($this->A[$i][$j]))) { + $this->A[$i][$j] = trim($this->A[$i][$j], '"'); + $validValues &= StringHelper::convertToNumberIfFraction($this->A[$i][$j]); + } + if ((is_string($value)) && (strlen($value) > 0) && (!is_numeric($value))) { + $value = trim($value, '"'); + $validValues &= StringHelper::convertToNumberIfFraction($value); + } + if ($validValues) { + $this->A[$i][$j] = $this->A[$i][$j] ** $value; + } else { + $this->A[$i][$j] = ExcelError::NAN(); + } + } + } + + return $this; + } + + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + + /** + * concat. + * + * A = A & B + * + * @return $this + */ + public function concat(...$args) + { + if (count($args) > 0) { + $match = implode(',', array_map('gettype', $args)); + + switch ($match) { + case 'object': + if ($args[0] instanceof self) { + $M = $args[0]; + } else { + throw new CalculationException(self::ARGUMENT_TYPE_EXCEPTION); + } + + break; + case 'array': + $M = new self($args[0]); + + break; + default: + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + + break; + } + $this->checkMatrixDimensions($M); + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + // @phpstan-ignore-next-line + $this->A[$i][$j] = trim($this->A[$i][$j], '"') . trim($M->get($i, $j), '"'); + } + } + + return $this; + } + + throw new CalculationException(self::POLYMORPHIC_ARGUMENT_EXCEPTION); + } + + /** + * Solve A*X = B. + * + * @param Matrix $B Right hand side + * + * @return Matrix ... Solution if A is square, least squares solution otherwise + */ + public function solve(self $B) + { + if ($this->m == $this->n) { + $LU = new LUDecomposition($this); + + return $LU->solve($B); + } + $QR = new QRDecomposition($this); + + return $QR->solve($B); + } + + /** + * Matrix inverse or pseudoinverse. + * + * @return Matrix ... Inverse(A) if A is square, pseudoinverse otherwise. + */ + public function inverse() + { + return $this->solve($this->identity($this->m, $this->m)); + } + + /** + * det. + * + * Calculate determinant + * + * @return float Determinant + */ + public function det() + { + $L = new LUDecomposition($this); + + return $L->det(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/QRDecomposition.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/QRDecomposition.php new file mode 100644 index 0000000..9b51f41 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/QRDecomposition.php @@ -0,0 +1,245 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\JAMA; + +use PhpOffice\PhpSpreadsheet\Calculation\Exception as CalculationException; + +/** + * For an m-by-n matrix A with m >= n, the QR decomposition is an m-by-n + * orthogonal matrix Q and an n-by-n upper triangular matrix R so that + * A = Q*R. + * + * The QR decompostion always exists, even if the matrix does not have + * full rank, so the constructor will never fail. The primary use of the + * QR decomposition is in the least squares solution of nonsquare systems + * of simultaneous linear equations. This will fail if isFullRank() + * returns false. + * + * @author Paul Meagher + * + * @version 1.1 + */ +class QRDecomposition +{ + const MATRIX_RANK_EXCEPTION = 'Can only perform operation on full-rank matrix.'; + + /** + * Array for internal storage of decomposition. + * + * @var array + */ + private $QR = []; + + /** + * Row dimension. + * + * @var int + */ + private $m; + + /** + * Column dimension. + * + * @var int + */ + private $n; + + /** + * Array for internal storage of diagonal of R. + * + * @var array + */ + private $Rdiag = []; + + /** + * QR Decomposition computed by Householder reflections. + * + * @param Matrix $A Rectangular matrix + */ + public function __construct(Matrix $A) + { + // Initialize. + $this->QR = $A->getArray(); + $this->m = $A->getRowDimension(); + $this->n = $A->getColumnDimension(); + // Main loop. + for ($k = 0; $k < $this->n; ++$k) { + // Compute 2-norm of k-th column without under/overflow. + $nrm = 0.0; + for ($i = $k; $i < $this->m; ++$i) { + $nrm = hypo($nrm, $this->QR[$i][$k]); + } + if ($nrm != 0.0) { + // Form k-th Householder vector. + if ($this->QR[$k][$k] < 0) { + $nrm = -$nrm; + } + for ($i = $k; $i < $this->m; ++$i) { + $this->QR[$i][$k] /= $nrm; + } + $this->QR[$k][$k] += 1.0; + // Apply transformation to remaining columns. + for ($j = $k + 1; $j < $this->n; ++$j) { + $s = 0.0; + for ($i = $k; $i < $this->m; ++$i) { + $s += $this->QR[$i][$k] * $this->QR[$i][$j]; + } + $s = -$s / $this->QR[$k][$k]; + for ($i = $k; $i < $this->m; ++$i) { + $this->QR[$i][$j] += $s * $this->QR[$i][$k]; + } + } + } + $this->Rdiag[$k] = -$nrm; + } + } + + // function __construct() + + /** + * Is the matrix full rank? + * + * @return bool true if R, and hence A, has full rank, else false + */ + public function isFullRank() + { + for ($j = 0; $j < $this->n; ++$j) { + if ($this->Rdiag[$j] == 0) { + return false; + } + } + + return true; + } + + // function isFullRank() + + /** + * Return the Householder vectors. + * + * @return Matrix Lower trapezoidal matrix whose columns define the reflections + */ + public function getH() + { + $H = []; + for ($i = 0; $i < $this->m; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + if ($i >= $j) { + $H[$i][$j] = $this->QR[$i][$j]; + } else { + $H[$i][$j] = 0.0; + } + } + } + + return new Matrix($H); + } + + // function getH() + + /** + * Return the upper triangular factor. + * + * @return Matrix upper triangular factor + */ + public function getR() + { + $R = []; + for ($i = 0; $i < $this->n; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + if ($i < $j) { + $R[$i][$j] = $this->QR[$i][$j]; + } elseif ($i == $j) { + $R[$i][$j] = $this->Rdiag[$i]; + } else { + $R[$i][$j] = 0.0; + } + } + } + + return new Matrix($R); + } + + // function getR() + + /** + * Generate and return the (economy-sized) orthogonal factor. + * + * @return Matrix orthogonal factor + */ + public function getQ() + { + $Q = []; + for ($k = $this->n - 1; $k >= 0; --$k) { + for ($i = 0; $i < $this->m; ++$i) { + $Q[$i][$k] = 0.0; + } + $Q[$k][$k] = 1.0; + for ($j = $k; $j < $this->n; ++$j) { + if ($this->QR[$k][$k] != 0) { + $s = 0.0; + for ($i = $k; $i < $this->m; ++$i) { + $s += $this->QR[$i][$k] * $Q[$i][$j]; + } + $s = -$s / $this->QR[$k][$k]; + for ($i = $k; $i < $this->m; ++$i) { + $Q[$i][$j] += $s * $this->QR[$i][$k]; + } + } + } + } + + return new Matrix($Q); + } + + // function getQ() + + /** + * Least squares solution of A*X = B. + * + * @param Matrix $B a Matrix with as many rows as A and any number of columns + * + * @return Matrix matrix that minimizes the two norm of Q*R*X-B + */ + public function solve(Matrix $B) + { + if ($B->getRowDimension() == $this->m) { + if ($this->isFullRank()) { + // Copy right hand side + $nx = $B->getColumnDimension(); + $X = $B->getArray(); + // Compute Y = transpose(Q)*B + for ($k = 0; $k < $this->n; ++$k) { + for ($j = 0; $j < $nx; ++$j) { + $s = 0.0; + for ($i = $k; $i < $this->m; ++$i) { + $s += $this->QR[$i][$k] * $X[$i][$j]; + } + $s = -$s / $this->QR[$k][$k]; + for ($i = $k; $i < $this->m; ++$i) { + $X[$i][$j] += $s * $this->QR[$i][$k]; + } + } + } + // Solve R*X = Y; + for ($k = $this->n - 1; $k >= 0; --$k) { + for ($j = 0; $j < $nx; ++$j) { + $X[$k][$j] /= $this->Rdiag[$k]; + } + for ($i = 0; $i < $k; ++$i) { + for ($j = 0; $j < $nx; ++$j) { + $X[$i][$j] -= $X[$k][$j] * $this->QR[$i][$k]; + } + } + } + $X = new Matrix($X); + + return $X->getMatrix(0, $this->n - 1, 0, $nx); + } + + throw new CalculationException(self::MATRIX_RANK_EXCEPTION); + } + + throw new CalculationException(Matrix::MATRIX_DIMENSION_EXCEPTION); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/SingularValueDecomposition.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/SingularValueDecomposition.php new file mode 100644 index 0000000..6c8999d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/SingularValueDecomposition.php @@ -0,0 +1,529 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\JAMA; + +/** + * For an m-by-n matrix A with m >= n, the singular value decomposition is + * an m-by-n orthogonal matrix U, an n-by-n diagonal matrix S, and + * an n-by-n orthogonal matrix V so that A = U*S*V'. + * + * The singular values, sigma[$k] = S[$k][$k], are ordered so that + * sigma[0] >= sigma[1] >= ... >= sigma[n-1]. + * + * The singular value decompostion always exists, so the constructor will + * never fail. The matrix condition number and the effective numerical + * rank can be computed from this decomposition. + * + * @author Paul Meagher + * + * @version 1.1 + */ +class SingularValueDecomposition +{ + /** + * Internal storage of U. + * + * @var array + */ + private $U = []; + + /** + * Internal storage of V. + * + * @var array + */ + private $V = []; + + /** + * Internal storage of singular values. + * + * @var array + */ + private $s = []; + + /** + * Row dimension. + * + * @var int + */ + private $m; + + /** + * Column dimension. + * + * @var int + */ + private $n; + + /** + * Construct the singular value decomposition. + * + * Derived from LINPACK code. + * + * @param mixed $Arg Rectangular matrix + */ + public function __construct($Arg) + { + // Initialize. + $A = $Arg->getArray(); + $this->m = $Arg->getRowDimension(); + $this->n = $Arg->getColumnDimension(); + $nu = min($this->m, $this->n); + $e = []; + $work = []; + $wantu = true; + $wantv = true; + $nct = min($this->m - 1, $this->n); + $nrt = max(0, min($this->n - 2, $this->m)); + + // Reduce A to bidiagonal form, storing the diagonal elements + // in s and the super-diagonal elements in e. + $kMax = max($nct, $nrt); + for ($k = 0; $k < $kMax; ++$k) { + if ($k < $nct) { + // Compute the transformation for the k-th column and + // place the k-th diagonal in s[$k]. + // Compute 2-norm of k-th column without under/overflow. + $this->s[$k] = 0; + for ($i = $k; $i < $this->m; ++$i) { + $this->s[$k] = hypo($this->s[$k], $A[$i][$k]); + } + if ($this->s[$k] != 0.0) { + if ($A[$k][$k] < 0.0) { + $this->s[$k] = -$this->s[$k]; + } + for ($i = $k; $i < $this->m; ++$i) { + $A[$i][$k] /= $this->s[$k]; + } + $A[$k][$k] += 1.0; + } + $this->s[$k] = -$this->s[$k]; + } + + for ($j = $k + 1; $j < $this->n; ++$j) { + if (($k < $nct) & ($this->s[$k] != 0.0)) { + // Apply the transformation. + $t = 0; + for ($i = $k; $i < $this->m; ++$i) { + $t += $A[$i][$k] * $A[$i][$j]; + } + $t = -$t / $A[$k][$k]; + for ($i = $k; $i < $this->m; ++$i) { + $A[$i][$j] += $t * $A[$i][$k]; + } + // Place the k-th row of A into e for the + // subsequent calculation of the row transformation. + $e[$j] = $A[$k][$j]; + } + } + + if ($wantu && ($k < $nct)) { + // Place the transformation in U for subsequent back + // multiplication. + for ($i = $k; $i < $this->m; ++$i) { + $this->U[$i][$k] = $A[$i][$k]; + } + } + + if ($k < $nrt) { + // Compute the k-th row transformation and place the + // k-th super-diagonal in e[$k]. + // Compute 2-norm without under/overflow. + $e[$k] = 0; + for ($i = $k + 1; $i < $this->n; ++$i) { + $e[$k] = hypo($e[$k], $e[$i]); + } + if ($e[$k] != 0.0) { + if ($e[$k + 1] < 0.0) { + $e[$k] = -$e[$k]; + } + for ($i = $k + 1; $i < $this->n; ++$i) { + $e[$i] /= $e[$k]; + } + $e[$k + 1] += 1.0; + } + $e[$k] = -$e[$k]; + if (($k + 1 < $this->m) && ($e[$k] != 0.0)) { + // Apply the transformation. + for ($i = $k + 1; $i < $this->m; ++$i) { + $work[$i] = 0.0; + } + for ($j = $k + 1; $j < $this->n; ++$j) { + for ($i = $k + 1; $i < $this->m; ++$i) { + $work[$i] += $e[$j] * $A[$i][$j]; + } + } + for ($j = $k + 1; $j < $this->n; ++$j) { + $t = -$e[$j] / $e[$k + 1]; + for ($i = $k + 1; $i < $this->m; ++$i) { + $A[$i][$j] += $t * $work[$i]; + } + } + } + if ($wantv) { + // Place the transformation in V for subsequent + // back multiplication. + for ($i = $k + 1; $i < $this->n; ++$i) { + $this->V[$i][$k] = $e[$i]; + } + } + } + } + + // Set up the final bidiagonal matrix or order p. + $p = min($this->n, $this->m + 1); + if ($nct < $this->n) { + $this->s[$nct] = $A[$nct][$nct]; + } + if ($this->m < $p) { + $this->s[$p - 1] = 0.0; + } + if ($nrt + 1 < $p) { + $e[$nrt] = $A[$nrt][$p - 1]; + } + $e[$p - 1] = 0.0; + // If required, generate U. + if ($wantu) { + for ($j = $nct; $j < $nu; ++$j) { + for ($i = 0; $i < $this->m; ++$i) { + $this->U[$i][$j] = 0.0; + } + $this->U[$j][$j] = 1.0; + } + for ($k = $nct - 1; $k >= 0; --$k) { + if ($this->s[$k] != 0.0) { + for ($j = $k + 1; $j < $nu; ++$j) { + $t = 0; + for ($i = $k; $i < $this->m; ++$i) { + $t += $this->U[$i][$k] * $this->U[$i][$j]; + } + $t = -$t / $this->U[$k][$k]; + for ($i = $k; $i < $this->m; ++$i) { + $this->U[$i][$j] += $t * $this->U[$i][$k]; + } + } + for ($i = $k; $i < $this->m; ++$i) { + $this->U[$i][$k] = -$this->U[$i][$k]; + } + $this->U[$k][$k] = 1.0 + $this->U[$k][$k]; + for ($i = 0; $i < $k - 1; ++$i) { + $this->U[$i][$k] = 0.0; + } + } else { + for ($i = 0; $i < $this->m; ++$i) { + $this->U[$i][$k] = 0.0; + } + $this->U[$k][$k] = 1.0; + } + } + } + + // If required, generate V. + if ($wantv) { + for ($k = $this->n - 1; $k >= 0; --$k) { + if (($k < $nrt) && ($e[$k] != 0.0)) { + for ($j = $k + 1; $j < $nu; ++$j) { + $t = 0; + for ($i = $k + 1; $i < $this->n; ++$i) { + $t += $this->V[$i][$k] * $this->V[$i][$j]; + } + $t = -$t / $this->V[$k + 1][$k]; + for ($i = $k + 1; $i < $this->n; ++$i) { + $this->V[$i][$j] += $t * $this->V[$i][$k]; + } + } + } + for ($i = 0; $i < $this->n; ++$i) { + $this->V[$i][$k] = 0.0; + } + $this->V[$k][$k] = 1.0; + } + } + + // Main iteration loop for the singular values. + $pp = $p - 1; + $iter = 0; + $eps = 2.0 ** (-52.0); + + while ($p > 0) { + // Here is where a test for too many iterations would go. + // This section of the program inspects for negligible + // elements in the s and e arrays. On completion the + // variables kase and k are set as follows: + // kase = 1 if s(p) and e[k-1] are negligible and k<p + // kase = 2 if s(k) is negligible and k<p + // kase = 3 if e[k-1] is negligible, k<p, and + // s(k), ..., s(p) are not negligible (qr step). + // kase = 4 if e(p-1) is negligible (convergence). + for ($k = $p - 2; $k >= -1; --$k) { + if ($k == -1) { + break; + } + if (abs($e[$k]) <= $eps * (abs($this->s[$k]) + abs($this->s[$k + 1]))) { + $e[$k] = 0.0; + + break; + } + } + if ($k == $p - 2) { + $kase = 4; + } else { + for ($ks = $p - 1; $ks >= $k; --$ks) { + if ($ks == $k) { + break; + } + $t = ($ks != $p ? abs($e[$ks]) : 0.) + ($ks != $k + 1 ? abs($e[$ks - 1]) : 0.); + if (abs($this->s[$ks]) <= $eps * $t) { + $this->s[$ks] = 0.0; + + break; + } + } + if ($ks == $k) { + $kase = 3; + } elseif ($ks == $p - 1) { + $kase = 1; + } else { + $kase = 2; + $k = $ks; + } + } + ++$k; + + // Perform the task indicated by kase. + switch ($kase) { + // Deflate negligible s(p). + case 1: + $f = $e[$p - 2]; + $e[$p - 2] = 0.0; + for ($j = $p - 2; $j >= $k; --$j) { + $t = hypo($this->s[$j], $f); + $cs = $this->s[$j] / $t; + $sn = $f / $t; + $this->s[$j] = $t; + if ($j != $k) { + $f = -$sn * $e[$j - 1]; + $e[$j - 1] = $cs * $e[$j - 1]; + } + if ($wantv) { + for ($i = 0; $i < $this->n; ++$i) { + $t = $cs * $this->V[$i][$j] + $sn * $this->V[$i][$p - 1]; + $this->V[$i][$p - 1] = -$sn * $this->V[$i][$j] + $cs * $this->V[$i][$p - 1]; + $this->V[$i][$j] = $t; + } + } + } + + break; + // Split at negligible s(k). + case 2: + $f = $e[$k - 1]; + $e[$k - 1] = 0.0; + for ($j = $k; $j < $p; ++$j) { + $t = hypo($this->s[$j], $f); + $cs = $this->s[$j] / $t; + $sn = $f / $t; + $this->s[$j] = $t; + $f = -$sn * $e[$j]; + $e[$j] = $cs * $e[$j]; + if ($wantu) { + for ($i = 0; $i < $this->m; ++$i) { + $t = $cs * $this->U[$i][$j] + $sn * $this->U[$i][$k - 1]; + $this->U[$i][$k - 1] = -$sn * $this->U[$i][$j] + $cs * $this->U[$i][$k - 1]; + $this->U[$i][$j] = $t; + } + } + } + + break; + // Perform one qr step. + case 3: + // Calculate the shift. + $scale = max(max(max(max(abs($this->s[$p - 1]), abs($this->s[$p - 2])), abs($e[$p - 2])), abs($this->s[$k])), abs($e[$k])); + $sp = $this->s[$p - 1] / $scale; + $spm1 = $this->s[$p - 2] / $scale; + $epm1 = $e[$p - 2] / $scale; + $sk = $this->s[$k] / $scale; + $ek = $e[$k] / $scale; + $b = (($spm1 + $sp) * ($spm1 - $sp) + $epm1 * $epm1) / 2.0; + $c = ($sp * $epm1) * ($sp * $epm1); + $shift = 0.0; + if (($b != 0.0) || ($c != 0.0)) { + $shift = sqrt($b * $b + $c); + if ($b < 0.0) { + $shift = -$shift; + } + $shift = $c / ($b + $shift); + } + $f = ($sk + $sp) * ($sk - $sp) + $shift; + $g = $sk * $ek; + // Chase zeros. + for ($j = $k; $j < $p - 1; ++$j) { + $t = hypo($f, $g); + $cs = $f / $t; + $sn = $g / $t; + if ($j != $k) { + $e[$j - 1] = $t; + } + $f = $cs * $this->s[$j] + $sn * $e[$j]; + $e[$j] = $cs * $e[$j] - $sn * $this->s[$j]; + $g = $sn * $this->s[$j + 1]; + $this->s[$j + 1] = $cs * $this->s[$j + 1]; + if ($wantv) { + for ($i = 0; $i < $this->n; ++$i) { + $t = $cs * $this->V[$i][$j] + $sn * $this->V[$i][$j + 1]; + $this->V[$i][$j + 1] = -$sn * $this->V[$i][$j] + $cs * $this->V[$i][$j + 1]; + $this->V[$i][$j] = $t; + } + } + $t = hypo($f, $g); + $cs = $f / $t; + $sn = $g / $t; + $this->s[$j] = $t; + $f = $cs * $e[$j] + $sn * $this->s[$j + 1]; + $this->s[$j + 1] = -$sn * $e[$j] + $cs * $this->s[$j + 1]; + $g = $sn * $e[$j + 1]; + $e[$j + 1] = $cs * $e[$j + 1]; + if ($wantu && ($j < $this->m - 1)) { + for ($i = 0; $i < $this->m; ++$i) { + $t = $cs * $this->U[$i][$j] + $sn * $this->U[$i][$j + 1]; + $this->U[$i][$j + 1] = -$sn * $this->U[$i][$j] + $cs * $this->U[$i][$j + 1]; + $this->U[$i][$j] = $t; + } + } + } + $e[$p - 2] = $f; + $iter = $iter + 1; + + break; + // Convergence. + case 4: + // Make the singular values positive. + if ($this->s[$k] <= 0.0) { + $this->s[$k] = ($this->s[$k] < 0.0 ? -$this->s[$k] : 0.0); + if ($wantv) { + for ($i = 0; $i <= $pp; ++$i) { + $this->V[$i][$k] = -$this->V[$i][$k]; + } + } + } + // Order the singular values. + while ($k < $pp) { + if ($this->s[$k] >= $this->s[$k + 1]) { + break; + } + $t = $this->s[$k]; + $this->s[$k] = $this->s[$k + 1]; + $this->s[$k + 1] = $t; + if ($wantv && ($k < $this->n - 1)) { + for ($i = 0; $i < $this->n; ++$i) { + $t = $this->V[$i][$k + 1]; + $this->V[$i][$k + 1] = $this->V[$i][$k]; + $this->V[$i][$k] = $t; + } + } + if ($wantu && ($k < $this->m - 1)) { + for ($i = 0; $i < $this->m; ++$i) { + $t = $this->U[$i][$k + 1]; + $this->U[$i][$k + 1] = $this->U[$i][$k]; + $this->U[$i][$k] = $t; + } + } + ++$k; + } + $iter = 0; + --$p; + + break; + } // end switch + } // end while + } + + /** + * Return the left singular vectors. + * + * @return Matrix U + */ + public function getU() + { + return new Matrix($this->U, $this->m, min($this->m + 1, $this->n)); + } + + /** + * Return the right singular vectors. + * + * @return Matrix V + */ + public function getV() + { + return new Matrix($this->V); + } + + /** + * Return the one-dimensional array of singular values. + * + * @return array diagonal of S + */ + public function getSingularValues() + { + return $this->s; + } + + /** + * Return the diagonal matrix of singular values. + * + * @return Matrix S + */ + public function getS() + { + $S = []; + for ($i = 0; $i < $this->n; ++$i) { + for ($j = 0; $j < $this->n; ++$j) { + $S[$i][$j] = 0.0; + } + $S[$i][$i] = $this->s[$i]; + } + + return new Matrix($S); + } + + /** + * Two norm. + * + * @return float max(S) + */ + public function norm2() + { + return $this->s[0]; + } + + /** + * Two norm condition number. + * + * @return float max(S)/min(S) + */ + public function cond() + { + return $this->s[0] / $this->s[min($this->m, $this->n) - 1]; + } + + /** + * Effective numerical matrix rank. + * + * @return int Number of nonnegligible singular values + */ + public function rank() + { + $eps = 2.0 ** (-52.0); + $tol = max($this->m, $this->n) * $this->s[0] * $eps; + $r = 0; + $iMax = count($this->s); + for ($i = 0; $i < $iMax; ++$i) { + if ($this->s[$i] > $tol) { + ++$r; + } + } + + return $r; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/utils/Maths.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/utils/Maths.php new file mode 100644 index 0000000..49877b2 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/utils/Maths.php @@ -0,0 +1,31 @@ +<?php + +/** + * Pythagorean Theorem:. + * + * a = 3 + * b = 4 + * r = sqrt(square(a) + square(b)) + * r = 5 + * + * r = sqrt(a^2 + b^2) without under/overflow. + * + * @param mixed $a + * @param mixed $b + * + * @return float + */ +function hypo($a, $b) +{ + if (abs($a) > abs($b)) { + $r = $b / $a; + $r = abs($a) * sqrt(1 + $r * $r); + } elseif ($b != 0) { + $r = $a / $b; + $r = abs($b) * sqrt(1 + $r * $r); + } else { + $r = 0.0; + } + + return $r; +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE.php new file mode 100644 index 0000000..5c95d79 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE.php @@ -0,0 +1,559 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared; + +// vim: set expandtab tabstop=4 shiftwidth=4: +// +----------------------------------------------------------------------+ +// | PHP Version 4 | +// +----------------------------------------------------------------------+ +// | Copyright (c) 1997-2002 The PHP Group | +// +----------------------------------------------------------------------+ +// | This source file is subject to version 2.02 of the PHP license, | +// | that is bundled with this package in the file LICENSE, and is | +// | available at through the world-wide-web at | +// | http://www.php.net/license/2_02.txt. | +// | If you did not receive a copy of the PHP license and are unable to | +// | obtain it through the world-wide-web, please send a note to | +// | license@php.net so we can mail you a copy immediately. | +// +----------------------------------------------------------------------+ +// | Author: Xavier Noguer <xnoguer@php.net> | +// | Based on OLE::Storage_Lite by Kawai, Takanori | +// +----------------------------------------------------------------------+ +// + +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\Reader\Exception as ReaderException; +use PhpOffice\PhpSpreadsheet\Shared\OLE\ChainedBlockStream; +use PhpOffice\PhpSpreadsheet\Shared\OLE\PPS\Root; + +/* + * Array for storing OLE instances that are accessed from + * OLE_ChainedBlockStream::stream_open(). + * + * @var array + */ +$GLOBALS['_OLE_INSTANCES'] = []; + +/** + * OLE package base class. + * + * @author Xavier Noguer <xnoguer@php.net> + * @author Christian Schmidt <schmidt@php.net> + */ +class OLE +{ + const OLE_PPS_TYPE_ROOT = 5; + const OLE_PPS_TYPE_DIR = 1; + const OLE_PPS_TYPE_FILE = 2; + const OLE_DATA_SIZE_SMALL = 0x1000; + const OLE_LONG_INT_SIZE = 4; + const OLE_PPS_SIZE = 0x80; + + /** + * The file handle for reading an OLE container. + * + * @var resource + */ + public $_file_handle; + + /** + * Array of PPS's found on the OLE container. + * + * @var array + */ + public $_list = []; + + /** + * Root directory of OLE container. + * + * @var Root + */ + public $root; + + /** + * Big Block Allocation Table. + * + * @var array (blockId => nextBlockId) + */ + public $bbat; + + /** + * Short Block Allocation Table. + * + * @var array (blockId => nextBlockId) + */ + public $sbat; + + /** + * Size of big blocks. This is usually 512. + * + * @var int number of octets per block + */ + public $bigBlockSize; + + /** + * Size of small blocks. This is usually 64. + * + * @var int number of octets per block + */ + public $smallBlockSize; + + /** + * Threshold for big blocks. + * + * @var int + */ + public $bigBlockThreshold; + + /** + * Reads an OLE container from the contents of the file given. + * + * @acces public + * + * @param string $filename + * + * @return bool true on success, PEAR_Error on failure + */ + public function read($filename) + { + $fh = fopen($filename, 'rb'); + if (!$fh) { + throw new ReaderException("Can't open file $filename"); + } + $this->_file_handle = $fh; + + $signature = fread($fh, 8); + if ("\xD0\xCF\x11\xE0\xA1\xB1\x1A\xE1" != $signature) { + throw new ReaderException("File doesn't seem to be an OLE container."); + } + fseek($fh, 28); + if (fread($fh, 2) != "\xFE\xFF") { + // This shouldn't be a problem in practice + throw new ReaderException('Only Little-Endian encoding is supported.'); + } + // Size of blocks and short blocks in bytes + $this->bigBlockSize = 2 ** self::readInt2($fh); + $this->smallBlockSize = 2 ** self::readInt2($fh); + + // Skip UID, revision number and version number + fseek($fh, 44); + // Number of blocks in Big Block Allocation Table + $bbatBlockCount = self::readInt4($fh); + + // Root chain 1st block + $directoryFirstBlockId = self::readInt4($fh); + + // Skip unused bytes + fseek($fh, 56); + // Streams shorter than this are stored using small blocks + $this->bigBlockThreshold = self::readInt4($fh); + // Block id of first sector in Short Block Allocation Table + $sbatFirstBlockId = self::readInt4($fh); + // Number of blocks in Short Block Allocation Table + $sbbatBlockCount = self::readInt4($fh); + // Block id of first sector in Master Block Allocation Table + $mbatFirstBlockId = self::readInt4($fh); + // Number of blocks in Master Block Allocation Table + $mbbatBlockCount = self::readInt4($fh); + $this->bbat = []; + + // Remaining 4 * 109 bytes of current block is beginning of Master + // Block Allocation Table + $mbatBlocks = []; + for ($i = 0; $i < 109; ++$i) { + $mbatBlocks[] = self::readInt4($fh); + } + + // Read rest of Master Block Allocation Table (if any is left) + $pos = $this->getBlockOffset($mbatFirstBlockId); + for ($i = 0; $i < $mbbatBlockCount; ++$i) { + fseek($fh, $pos); + for ($j = 0; $j < $this->bigBlockSize / 4 - 1; ++$j) { + $mbatBlocks[] = self::readInt4($fh); + } + // Last block id in each block points to next block + $pos = $this->getBlockOffset(self::readInt4($fh)); + } + + // Read Big Block Allocation Table according to chain specified by $mbatBlocks + for ($i = 0; $i < $bbatBlockCount; ++$i) { + $pos = $this->getBlockOffset($mbatBlocks[$i]); + fseek($fh, $pos); + for ($j = 0; $j < $this->bigBlockSize / 4; ++$j) { + $this->bbat[] = self::readInt4($fh); + } + } + + // Read short block allocation table (SBAT) + $this->sbat = []; + $shortBlockCount = $sbbatBlockCount * $this->bigBlockSize / 4; + $sbatFh = $this->getStream($sbatFirstBlockId); + for ($blockId = 0; $blockId < $shortBlockCount; ++$blockId) { + $this->sbat[$blockId] = self::readInt4($sbatFh); + } + fclose($sbatFh); + + $this->readPpsWks($directoryFirstBlockId); + + return true; + } + + /** + * @param int $blockId byte offset from beginning of file + * + * @return int + */ + public function getBlockOffset($blockId) + { + return 512 + $blockId * $this->bigBlockSize; + } + + /** + * Returns a stream for use with fread() etc. External callers should + * use \PhpOffice\PhpSpreadsheet\Shared\OLE\PPS\File::getStream(). + * + * @param int|OLE\PPS $blockIdOrPps block id or PPS + * + * @return resource read-only stream + */ + public function getStream($blockIdOrPps) + { + static $isRegistered = false; + if (!$isRegistered) { + stream_wrapper_register('ole-chainedblockstream', ChainedBlockStream::class); + $isRegistered = true; + } + + // Store current instance in global array, so that it can be accessed + // in OLE_ChainedBlockStream::stream_open(). + // Object is removed from self::$instances in OLE_Stream::close(). + $GLOBALS['_OLE_INSTANCES'][] = $this; + $keys = array_keys($GLOBALS['_OLE_INSTANCES']); + $instanceId = end($keys); + + $path = 'ole-chainedblockstream://oleInstanceId=' . $instanceId; + if ($blockIdOrPps instanceof OLE\PPS) { + $path .= '&blockId=' . $blockIdOrPps->startBlock; + $path .= '&size=' . $blockIdOrPps->Size; + } else { + $path .= '&blockId=' . $blockIdOrPps; + } + + return fopen($path, 'rb'); + } + + /** + * Reads a signed char. + * + * @param resource $fileHandle file handle + * + * @return int + */ + private static function readInt1($fileHandle) + { + // @phpstan-ignore-next-line + [, $tmp] = unpack('c', fread($fileHandle, 1)); + + return $tmp; + } + + /** + * Reads an unsigned short (2 octets). + * + * @param resource $fileHandle file handle + * + * @return int + */ + private static function readInt2($fileHandle) + { + // @phpstan-ignore-next-line + [, $tmp] = unpack('v', fread($fileHandle, 2)); + + return $tmp; + } + + /** + * Reads an unsigned long (4 octets). + * + * @param resource $fileHandle file handle + * + * @return int + */ + private static function readInt4($fileHandle) + { + // @phpstan-ignore-next-line + [, $tmp] = unpack('V', fread($fileHandle, 4)); + + return $tmp; + } + + /** + * Gets information about all PPS's on the OLE container from the PPS WK's + * creates an OLE_PPS object for each one. + * + * @param int $blockId the block id of the first block + * + * @return bool true on success, PEAR_Error on failure + */ + public function readPpsWks($blockId) + { + $fh = $this->getStream($blockId); + for ($pos = 0; true; $pos += 128) { + fseek($fh, $pos, SEEK_SET); + $nameUtf16 = fread($fh, 64); + $nameLength = self::readInt2($fh); + $nameUtf16 = substr($nameUtf16, 0, $nameLength - 2); + // Simple conversion from UTF-16LE to ISO-8859-1 + $name = str_replace("\x00", '', $nameUtf16); + $type = self::readInt1($fh); + switch ($type) { + case self::OLE_PPS_TYPE_ROOT: + $pps = new OLE\PPS\Root(null, null, []); + $this->root = $pps; + + break; + case self::OLE_PPS_TYPE_DIR: + $pps = new OLE\PPS(null, null, null, null, null, null, null, null, null, []); + + break; + case self::OLE_PPS_TYPE_FILE: + $pps = new OLE\PPS\File($name); + + break; + default: + throw new Exception('Unsupported PPS type'); + } + fseek($fh, 1, SEEK_CUR); + $pps->Type = $type; + $pps->Name = $name; + $pps->PrevPps = self::readInt4($fh); + $pps->NextPps = self::readInt4($fh); + $pps->DirPps = self::readInt4($fh); + fseek($fh, 20, SEEK_CUR); + $pps->Time1st = self::OLE2LocalDate(fread($fh, 8)); + $pps->Time2nd = self::OLE2LocalDate(fread($fh, 8)); + $pps->startBlock = self::readInt4($fh); + $pps->Size = self::readInt4($fh); + $pps->No = count($this->_list); + $this->_list[] = $pps; + + // check if the PPS tree (starting from root) is complete + if (isset($this->root) && $this->ppsTreeComplete($this->root->No)) { + break; + } + } + fclose($fh); + + // Initialize $pps->children on directories + foreach ($this->_list as $pps) { + if ($pps->Type == self::OLE_PPS_TYPE_DIR || $pps->Type == self::OLE_PPS_TYPE_ROOT) { + $nos = [$pps->DirPps]; + $pps->children = []; + while ($nos) { + $no = array_pop($nos); + if ($no != -1) { + $childPps = $this->_list[$no]; + $nos[] = $childPps->PrevPps; + $nos[] = $childPps->NextPps; + $pps->children[] = $childPps; + } + } + } + } + + return true; + } + + /** + * It checks whether the PPS tree is complete (all PPS's read) + * starting with the given PPS (not necessarily root). + * + * @param int $index The index of the PPS from which we are checking + * + * @return bool Whether the PPS tree for the given PPS is complete + */ + private function ppsTreeComplete($index) + { + return isset($this->_list[$index]) && + ($pps = $this->_list[$index]) && + ($pps->PrevPps == -1 || + $this->ppsTreeComplete($pps->PrevPps)) && + ($pps->NextPps == -1 || + $this->ppsTreeComplete($pps->NextPps)) && + ($pps->DirPps == -1 || + $this->ppsTreeComplete($pps->DirPps)); + } + + /** + * Checks whether a PPS is a File PPS or not. + * If there is no PPS for the index given, it will return false. + * + * @param int $index The index for the PPS + * + * @return bool true if it's a File PPS, false otherwise + */ + public function isFile($index) + { + if (isset($this->_list[$index])) { + return $this->_list[$index]->Type == self::OLE_PPS_TYPE_FILE; + } + + return false; + } + + /** + * Checks whether a PPS is a Root PPS or not. + * If there is no PPS for the index given, it will return false. + * + * @param int $index the index for the PPS + * + * @return bool true if it's a Root PPS, false otherwise + */ + public function isRoot($index) + { + if (isset($this->_list[$index])) { + return $this->_list[$index]->Type == self::OLE_PPS_TYPE_ROOT; + } + + return false; + } + + /** + * Gives the total number of PPS's found in the OLE container. + * + * @return int The total number of PPS's found in the OLE container + */ + public function ppsTotal() + { + return count($this->_list); + } + + /** + * Gets data from a PPS + * If there is no PPS for the index given, it will return an empty string. + * + * @param int $index The index for the PPS + * @param int $position The position from which to start reading + * (relative to the PPS) + * @param int $length The amount of bytes to read (at most) + * + * @return string The binary string containing the data requested + * + * @see OLE_PPS_File::getStream() + */ + public function getData($index, $position, $length) + { + // if position is not valid return empty string + if (!isset($this->_list[$index]) || ($position >= $this->_list[$index]->Size) || ($position < 0)) { + return ''; + } + $fh = $this->getStream($this->_list[$index]); + $data = stream_get_contents($fh, $length, $position); + fclose($fh); + + return $data; + } + + /** + * Gets the data length from a PPS + * If there is no PPS for the index given, it will return 0. + * + * @param int $index The index for the PPS + * + * @return int The amount of bytes in data the PPS has + */ + public function getDataLength($index) + { + if (isset($this->_list[$index])) { + return $this->_list[$index]->Size; + } + + return 0; + } + + /** + * Utility function to transform ASCII text to Unicode. + * + * @param string $ascii The ASCII string to transform + * + * @return string The string in Unicode + */ + public static function ascToUcs($ascii) + { + $rawname = ''; + $iMax = strlen($ascii); + for ($i = 0; $i < $iMax; ++$i) { + $rawname .= $ascii[$i] + . "\x00"; + } + + return $rawname; + } + + /** + * Utility function + * Returns a string for the OLE container with the date given. + * + * @param float|int $date A timestamp + * + * @return string The string for the OLE container + */ + public static function localDateToOLE($date) + { + if (!$date) { + return "\x00\x00\x00\x00\x00\x00\x00\x00"; + } + $dateTime = Date::dateTimeFromTimestamp("$date"); + + // days from 1-1-1601 until the beggining of UNIX era + $days = 134774; + // calculate seconds + $big_date = $days * 24 * 3600 + (float) $dateTime->format('U'); + // multiply just to make MS happy + $big_date *= 10000000; + + // Make HEX string + $res = ''; + + $factor = 2 ** 56; + while ($factor >= 1) { + $hex = (int) floor($big_date / $factor); + $res = pack('c', $hex) . $res; + $big_date = fmod($big_date, $factor); + $factor /= 256; + } + + return $res; + } + + /** + * Returns a timestamp from an OLE container's date. + * + * @param string $oleTimestamp A binary string with the encoded date + * + * @return float|int The Unix timestamp corresponding to the string + */ + public static function OLE2LocalDate($oleTimestamp) + { + if (strlen($oleTimestamp) != 8) { + throw new ReaderException('Expecting 8 byte string'); + } + + // convert to units of 100 ns since 1601: + $unpackedTimestamp = unpack('v4', $oleTimestamp); + $timestampHigh = (float) $unpackedTimestamp[4] * 65536 + (float) $unpackedTimestamp[3]; + $timestampLow = (float) $unpackedTimestamp[2] * 65536 + (float) $unpackedTimestamp[1]; + + // translate to seconds since 1601: + $timestampHigh /= 10000000; + $timestampLow /= 10000000; + + // days from 1601 to 1970: + $days = 134774; + + // translate to seconds since 1970: + $unixTimestamp = floor(65536.0 * 65536.0 * $timestampHigh + $timestampLow - $days * 24 * 3600 + 0.5); + + return IntOrFloat::evaluate($unixTimestamp); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/ChainedBlockStream.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/ChainedBlockStream.php new file mode 100644 index 0000000..ac9fcb0 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/ChainedBlockStream.php @@ -0,0 +1,197 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\OLE; + +use PhpOffice\PhpSpreadsheet\Shared\OLE; + +class ChainedBlockStream +{ + /** + * The OLE container of the file that is being read. + * + * @var null|OLE + */ + public $ole; + + /** + * Parameters specified by fopen(). + * + * @var array + */ + public $params; + + /** + * The binary data of the file. + * + * @var string + */ + public $data; + + /** + * The file pointer. + * + * @var int byte offset + */ + public $pos; + + /** + * Implements support for fopen(). + * For creating streams using this wrapper, use OLE_PPS_File::getStream(). + * + * @param string $path resource name including scheme, e.g. + * ole-chainedblockstream://oleInstanceId=1 + * @param string $mode only "r" is supported + * @param int $options mask of STREAM_REPORT_ERRORS and STREAM_USE_PATH + * @param string $openedPath absolute path of the opened stream (out parameter) + * + * @return bool true on success + */ + public function stream_open($path, $mode, $options, &$openedPath) // @codingStandardsIgnoreLine + { + if ($mode != 'r') { + if ($options & STREAM_REPORT_ERRORS) { + trigger_error('Only reading is supported', E_USER_WARNING); + } + + return false; + } + + // 25 is length of "ole-chainedblockstream://" + parse_str(substr($path, 25), $this->params); + if (!isset($this->params['oleInstanceId'], $this->params['blockId'], $GLOBALS['_OLE_INSTANCES'][$this->params['oleInstanceId']])) { + if ($options & STREAM_REPORT_ERRORS) { + trigger_error('OLE stream not found', E_USER_WARNING); + } + + return false; + } + $this->ole = $GLOBALS['_OLE_INSTANCES'][$this->params['oleInstanceId']]; + + $blockId = $this->params['blockId']; + $this->data = ''; + if (isset($this->params['size']) && $this->params['size'] < $this->ole->bigBlockThreshold && $blockId != $this->ole->root->startBlock) { + // Block id refers to small blocks + $rootPos = $this->ole->getBlockOffset($this->ole->root->startBlock); + while ($blockId != -2) { + $pos = $rootPos + $blockId * $this->ole->bigBlockSize; + $blockId = $this->ole->sbat[$blockId]; + fseek($this->ole->_file_handle, $pos); + $this->data .= fread($this->ole->_file_handle, $this->ole->bigBlockSize); + } + } else { + // Block id refers to big blocks + while ($blockId != -2) { + $pos = $this->ole->getBlockOffset($blockId); + fseek($this->ole->_file_handle, $pos); + $this->data .= fread($this->ole->_file_handle, $this->ole->bigBlockSize); + $blockId = $this->ole->bbat[$blockId]; + } + } + if (isset($this->params['size'])) { + $this->data = substr($this->data, 0, $this->params['size']); + } + + if ($options & STREAM_USE_PATH) { + $openedPath = $path; + } + + return true; + } + + /** + * Implements support for fclose(). + */ + public function stream_close(): void // @codingStandardsIgnoreLine + { + $this->ole = null; + unset($GLOBALS['_OLE_INSTANCES']); + } + + /** + * Implements support for fread(), fgets() etc. + * + * @param int $count maximum number of bytes to read + * + * @return false|string + */ + public function stream_read($count) // @codingStandardsIgnoreLine + { + if ($this->stream_eof()) { + return false; + } + $s = substr($this->data, $this->pos, $count); + $this->pos += $count; + + return $s; + } + + /** + * Implements support for feof(). + * + * @return bool TRUE if the file pointer is at EOF; otherwise FALSE + */ + public function stream_eof() // @codingStandardsIgnoreLine + { + return $this->pos >= strlen($this->data); + } + + /** + * Returns the position of the file pointer, i.e. its offset into the file + * stream. Implements support for ftell(). + * + * @return int + */ + public function stream_tell() // @codingStandardsIgnoreLine + { + return $this->pos; + } + + /** + * Implements support for fseek(). + * + * @param int $offset byte offset + * @param int $whence SEEK_SET, SEEK_CUR or SEEK_END + * + * @return bool + */ + public function stream_seek($offset, $whence) // @codingStandardsIgnoreLine + { + if ($whence == SEEK_SET && $offset >= 0) { + $this->pos = $offset; + } elseif ($whence == SEEK_CUR && -$offset <= $this->pos) { + $this->pos += $offset; + // @phpstan-ignore-next-line + } elseif ($whence == SEEK_END && -$offset <= count($this->data)) { + $this->pos = strlen($this->data) + $offset; + } else { + return false; + } + + return true; + } + + /** + * Implements support for fstat(). Currently the only supported field is + * "size". + * + * @return array + */ + public function stream_stat() // @codingStandardsIgnoreLine + { + return [ + 'size' => strlen($this->data), + ]; + } + + // Methods used by stream_wrapper_register() that are not implemented: + // bool stream_flush ( void ) + // int stream_write ( string data ) + // bool rename ( string path_from, string path_to ) + // bool mkdir ( string path, int mode, int options ) + // bool rmdir ( string path, int options ) + // bool dir_opendir ( string path, int options ) + // array url_stat ( string path, int flags ) + // string dir_readdir ( void ) + // bool dir_rewinddir ( void ) + // bool dir_closedir ( void ) +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS.php new file mode 100644 index 0000000..8b9e92a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS.php @@ -0,0 +1,237 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\OLE; + +// vim: set expandtab tabstop=4 shiftwidth=4: +// +----------------------------------------------------------------------+ +// | PHP Version 4 | +// +----------------------------------------------------------------------+ +// | Copyright (c) 1997-2002 The PHP Group | +// +----------------------------------------------------------------------+ +// | This source file is subject to version 2.02 of the PHP license, | +// | that is bundled with this package in the file LICENSE, and is | +// | available at through the world-wide-web at | +// | http://www.php.net/license/2_02.txt. | +// | If you did not receive a copy of the PHP license and are unable to | +// | obtain it through the world-wide-web, please send a note to | +// | license@php.net so we can mail you a copy immediately. | +// +----------------------------------------------------------------------+ +// | Author: Xavier Noguer <xnoguer@php.net> | +// | Based on OLE::Storage_Lite by Kawai, Takanori | +// +----------------------------------------------------------------------+ +// +use PhpOffice\PhpSpreadsheet\Shared\OLE; + +/** + * Class for creating PPS's for OLE containers. + * + * @author Xavier Noguer <xnoguer@php.net> + */ +class PPS +{ + /** + * The PPS index. + * + * @var int + */ + public $No; + + /** + * The PPS name (in Unicode). + * + * @var string + */ + public $Name; + + /** + * The PPS type. Dir, Root or File. + * + * @var int + */ + public $Type; + + /** + * The index of the previous PPS. + * + * @var int + */ + public $PrevPps; + + /** + * The index of the next PPS. + * + * @var int + */ + public $NextPps; + + /** + * The index of it's first child if this is a Dir or Root PPS. + * + * @var int + */ + public $DirPps; + + /** + * A timestamp. + * + * @var float|int + */ + public $Time1st; + + /** + * A timestamp. + * + * @var float|int + */ + public $Time2nd; + + /** + * Starting block (small or big) for this PPS's data inside the container. + * + * @var int + */ + public $startBlock; + + /** + * The size of the PPS's data (in bytes). + * + * @var int + */ + public $Size; + + /** + * The PPS's data (only used if it's not using a temporary file). + * + * @var string + */ + public $_data; + + /** + * Array of child PPS's (only used by Root and Dir PPS's). + * + * @var array + */ + public $children = []; + + /** + * Pointer to OLE container. + * + * @var OLE + */ + public $ole; + + /** + * The constructor. + * + * @param int $No The PPS index + * @param string $name The PPS name + * @param int $type The PPS type. Dir, Root or File + * @param int $prev The index of the previous PPS + * @param int $next The index of the next PPS + * @param int $dir The index of it's first child if this is a Dir or Root PPS + * @param null|float|int $time_1st A timestamp + * @param null|float|int $time_2nd A timestamp + * @param string $data The (usually binary) source data of the PPS + * @param array $children Array containing children PPS for this PPS + */ + public function __construct($No, $name, $type, $prev, $next, $dir, $time_1st, $time_2nd, $data, $children) + { + $this->No = $No; + $this->Name = $name; + $this->Type = $type; + $this->PrevPps = $prev; + $this->NextPps = $next; + $this->DirPps = $dir; + $this->Time1st = $time_1st ?? 0; + $this->Time2nd = $time_2nd ?? 0; + $this->_data = $data; + $this->children = $children; + if ($data != '') { + $this->Size = strlen($data); + } else { + $this->Size = 0; + } + } + + /** + * Returns the amount of data saved for this PPS. + * + * @return int The amount of data (in bytes) + */ + public function getDataLen() + { + if (!isset($this->_data)) { + return 0; + } + + return strlen($this->_data); + } + + /** + * Returns a string with the PPS's WK (What is a WK?). + * + * @return string The binary string + */ + public function getPpsWk() + { + $ret = str_pad($this->Name, 64, "\x00"); + + $ret .= pack('v', strlen($this->Name) + 2) // 66 + . pack('c', $this->Type) // 67 + . pack('c', 0x00) //UK // 68 + . pack('V', $this->PrevPps) //Prev // 72 + . pack('V', $this->NextPps) //Next // 76 + . pack('V', $this->DirPps) //Dir // 80 + . "\x00\x09\x02\x00" // 84 + . "\x00\x00\x00\x00" // 88 + . "\xc0\x00\x00\x00" // 92 + . "\x00\x00\x00\x46" // 96 // Seems to be ok only for Root + . "\x00\x00\x00\x00" // 100 + . OLE::localDateToOLE($this->Time1st) // 108 + . OLE::localDateToOLE($this->Time2nd) // 116 + . pack('V', $this->startBlock ?? 0) // 120 + . pack('V', $this->Size) // 124 + . pack('V', 0); // 128 + + return $ret; + } + + /** + * Updates index and pointers to previous, next and children PPS's for this + * PPS. I don't think it'll work with Dir PPS's. + * + * @param array $raList Reference to the array of PPS's for the whole OLE + * container + * @param mixed $to_save + * @param mixed $depth + * + * @return int The index for this PPS + */ + public static function savePpsSetPnt(&$raList, $to_save, $depth = 0) + { + if (!is_array($to_save) || (empty($to_save))) { + return 0xFFFFFFFF; + } elseif (count($to_save) == 1) { + $cnt = count($raList); + // If the first entry, it's the root... Don't clone it! + $raList[$cnt] = ($depth == 0) ? $to_save[0] : clone $to_save[0]; + $raList[$cnt]->No = $cnt; + $raList[$cnt]->PrevPps = 0xFFFFFFFF; + $raList[$cnt]->NextPps = 0xFFFFFFFF; + $raList[$cnt]->DirPps = self::savePpsSetPnt($raList, @$raList[$cnt]->children, $depth++); + } else { + $iPos = floor(count($to_save) / 2); + $aPrev = array_slice($to_save, 0, $iPos); + $aNext = array_slice($to_save, $iPos + 1); + $cnt = count($raList); + // If the first entry, it's the root... Don't clone it! + $raList[$cnt] = ($depth == 0) ? $to_save[$iPos] : clone $to_save[$iPos]; + $raList[$cnt]->No = $cnt; + $raList[$cnt]->PrevPps = self::savePpsSetPnt($raList, $aPrev, $depth++); + $raList[$cnt]->NextPps = self::savePpsSetPnt($raList, $aNext, $depth++); + $raList[$cnt]->DirPps = self::savePpsSetPnt($raList, @$raList[$cnt]->children, $depth++); + } + + return $cnt; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS/File.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS/File.php new file mode 100644 index 0000000..dd1cda2 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS/File.php @@ -0,0 +1,64 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\OLE\PPS; + +// vim: set expandtab tabstop=4 shiftwidth=4: +// +----------------------------------------------------------------------+ +// | PHP Version 4 | +// +----------------------------------------------------------------------+ +// | Copyright (c) 1997-2002 The PHP Group | +// +----------------------------------------------------------------------+ +// | This source file is subject to version 2.02 of the PHP license, | +// | that is bundled with this package in the file LICENSE, and is | +// | available at through the world-wide-web at | +// | http://www.php.net/license/2_02.txt. | +// | If you did not receive a copy of the PHP license and are unable to | +// | obtain it through the world-wide-web, please send a note to | +// | license@php.net so we can mail you a copy immediately. | +// +----------------------------------------------------------------------+ +// | Author: Xavier Noguer <xnoguer@php.net> | +// | Based on OLE::Storage_Lite by Kawai, Takanori | +// +----------------------------------------------------------------------+ +// +use PhpOffice\PhpSpreadsheet\Shared\OLE; +use PhpOffice\PhpSpreadsheet\Shared\OLE\PPS; + +/** + * Class for creating File PPS's for OLE containers. + * + * @author Xavier Noguer <xnoguer@php.net> + */ +class File extends PPS +{ + /** + * The constructor. + * + * @param string $name The name of the file (in Unicode) + * + * @see OLE::ascToUcs() + */ + public function __construct($name) + { + parent::__construct(null, $name, OLE::OLE_PPS_TYPE_FILE, null, null, null, null, null, '', []); + } + + /** + * Initialization method. Has to be called right after OLE_PPS_File(). + * + * @return mixed true on success + */ + public function init() + { + return true; + } + + /** + * Append data to PPS. + * + * @param string $data The data to append + */ + public function append($data): void + { + $this->_data .= $data; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS/Root.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS/Root.php new file mode 100644 index 0000000..fa92fd5 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS/Root.php @@ -0,0 +1,426 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\OLE\PPS; + +// vim: set expandtab tabstop=4 shiftwidth=4: +// +----------------------------------------------------------------------+ +// | PHP Version 4 | +// +----------------------------------------------------------------------+ +// | Copyright (c) 1997-2002 The PHP Group | +// +----------------------------------------------------------------------+ +// | This source file is subject to version 2.02 of the PHP license, | +// | that is bundled with this package in the file LICENSE, and is | +// | available at through the world-wide-web at | +// | http://www.php.net/license/2_02.txt. | +// | If you did not receive a copy of the PHP license and are unable to | +// | obtain it through the world-wide-web, please send a note to | +// | license@php.net so we can mail you a copy immediately. | +// +----------------------------------------------------------------------+ +// | Author: Xavier Noguer <xnoguer@php.net> | +// | Based on OLE::Storage_Lite by Kawai, Takanori | +// +----------------------------------------------------------------------+ +// +use PhpOffice\PhpSpreadsheet\Shared\OLE; +use PhpOffice\PhpSpreadsheet\Shared\OLE\PPS; + +/** + * Class for creating Root PPS's for OLE containers. + * + * @author Xavier Noguer <xnoguer@php.net> + */ +class Root extends PPS +{ + /** + * @var resource + */ + private $fileHandle; + + /** + * @var int + */ + private $smallBlockSize; + + /** + * @var int + */ + private $bigBlockSize; + + /** + * @param null|float|int $time_1st A timestamp + * @param null|float|int $time_2nd A timestamp + * @param File[] $raChild + */ + public function __construct($time_1st, $time_2nd, $raChild) + { + parent::__construct(null, OLE::ascToUcs('Root Entry'), OLE::OLE_PPS_TYPE_ROOT, null, null, null, $time_1st, $time_2nd, null, $raChild); + } + + /** + * Method for saving the whole OLE container (including files). + * In fact, if called with an empty argument (or '-'), it saves to a + * temporary file and then outputs it's contents to stdout. + * If a resource pointer to a stream created by fopen() is passed + * it will be used, but you have to close such stream by yourself. + * + * @param resource $fileHandle the name of the file or stream where to save the OLE container + * + * @return bool true on success + */ + public function save($fileHandle) + { + $this->fileHandle = $fileHandle; + + // Initial Setting for saving + $this->bigBlockSize = (int) (2 ** ( + (isset($this->bigBlockSize)) ? self::adjust2($this->bigBlockSize) : 9 + )); + $this->smallBlockSize = (int) (2 ** ( + (isset($this->smallBlockSize)) ? self::adjust2($this->smallBlockSize) : 6 + )); + + // Make an array of PPS's (for Save) + $aList = []; + PPS::savePpsSetPnt($aList, [$this]); + // calculate values for header + [$iSBDcnt, $iBBcnt, $iPPScnt] = $this->calcSize($aList); //, $rhInfo); + // Save Header + $this->saveHeader($iSBDcnt, $iBBcnt, $iPPScnt); + + // Make Small Data string (write SBD) + $this->_data = $this->makeSmallData($aList); + + // Write BB + $this->saveBigData($iSBDcnt, $aList); + // Write PPS + $this->savePps($aList); + // Write Big Block Depot and BDList and Adding Header informations + $this->saveBbd($iSBDcnt, $iBBcnt, $iPPScnt); + + return true; + } + + /** + * Calculate some numbers. + * + * @param array $raList Reference to an array of PPS's + * + * @return float[] The array of numbers + */ + private function calcSize(&$raList) + { + // Calculate Basic Setting + [$iSBDcnt, $iBBcnt, $iPPScnt] = [0, 0, 0]; + $iSmallLen = 0; + $iSBcnt = 0; + $iCount = count($raList); + for ($i = 0; $i < $iCount; ++$i) { + if ($raList[$i]->Type == OLE::OLE_PPS_TYPE_FILE) { + $raList[$i]->Size = $raList[$i]->getDataLen(); + if ($raList[$i]->Size < OLE::OLE_DATA_SIZE_SMALL) { + $iSBcnt += floor($raList[$i]->Size / $this->smallBlockSize) + + (($raList[$i]->Size % $this->smallBlockSize) ? 1 : 0); + } else { + $iBBcnt += (floor($raList[$i]->Size / $this->bigBlockSize) + + (($raList[$i]->Size % $this->bigBlockSize) ? 1 : 0)); + } + } + } + $iSmallLen = $iSBcnt * $this->smallBlockSize; + $iSlCnt = floor($this->bigBlockSize / OLE::OLE_LONG_INT_SIZE); + $iSBDcnt = floor($iSBcnt / $iSlCnt) + (($iSBcnt % $iSlCnt) ? 1 : 0); + $iBBcnt += (floor($iSmallLen / $this->bigBlockSize) + + (($iSmallLen % $this->bigBlockSize) ? 1 : 0)); + $iCnt = count($raList); + $iBdCnt = $this->bigBlockSize / OLE::OLE_PPS_SIZE; + $iPPScnt = (floor($iCnt / $iBdCnt) + (($iCnt % $iBdCnt) ? 1 : 0)); + + return [$iSBDcnt, $iBBcnt, $iPPScnt]; + } + + /** + * Helper function for caculating a magic value for block sizes. + * + * @param int $i2 The argument + * + * @return float + * + * @see save() + */ + private static function adjust2($i2) + { + $iWk = log($i2) / log(2); + + return ($iWk > floor($iWk)) ? floor($iWk) + 1 : $iWk; + } + + /** + * Save OLE header. + * + * @param int $iSBDcnt + * @param int $iBBcnt + * @param int $iPPScnt + */ + private function saveHeader($iSBDcnt, $iBBcnt, $iPPScnt): void + { + $FILE = $this->fileHandle; + + // Calculate Basic Setting + $iBlCnt = $this->bigBlockSize / OLE::OLE_LONG_INT_SIZE; + $i1stBdL = ($this->bigBlockSize - 0x4C) / OLE::OLE_LONG_INT_SIZE; + + $iBdExL = 0; + $iAll = $iBBcnt + $iPPScnt + $iSBDcnt; + $iAllW = $iAll; + $iBdCntW = floor($iAllW / $iBlCnt) + (($iAllW % $iBlCnt) ? 1 : 0); + $iBdCnt = floor(($iAll + $iBdCntW) / $iBlCnt) + ((($iAllW + $iBdCntW) % $iBlCnt) ? 1 : 0); + + // Calculate BD count + if ($iBdCnt > $i1stBdL) { + while (1) { + ++$iBdExL; + ++$iAllW; + $iBdCntW = floor($iAllW / $iBlCnt) + (($iAllW % $iBlCnt) ? 1 : 0); + $iBdCnt = floor(($iAllW + $iBdCntW) / $iBlCnt) + ((($iAllW + $iBdCntW) % $iBlCnt) ? 1 : 0); + if ($iBdCnt <= ($iBdExL * $iBlCnt + $i1stBdL)) { + break; + } + } + } + + // Save Header + fwrite( + $FILE, + "\xD0\xCF\x11\xE0\xA1\xB1\x1A\xE1" + . "\x00\x00\x00\x00" + . "\x00\x00\x00\x00" + . "\x00\x00\x00\x00" + . "\x00\x00\x00\x00" + . pack('v', 0x3b) + . pack('v', 0x03) + . pack('v', -2) + . pack('v', 9) + . pack('v', 6) + . pack('v', 0) + . "\x00\x00\x00\x00" + . "\x00\x00\x00\x00" + . pack('V', $iBdCnt) + . pack('V', $iBBcnt + $iSBDcnt) //ROOT START + . pack('V', 0) + . pack('V', 0x1000) + . pack('V', $iSBDcnt ? 0 : -2) //Small Block Depot + . pack('V', $iSBDcnt) + ); + // Extra BDList Start, Count + if ($iBdCnt < $i1stBdL) { + fwrite( + $FILE, + pack('V', -2) // Extra BDList Start + . pack('V', 0)// Extra BDList Count + ); + } else { + fwrite($FILE, pack('V', $iAll + $iBdCnt) . pack('V', $iBdExL)); + } + + // BDList + for ($i = 0; $i < $i1stBdL && $i < $iBdCnt; ++$i) { + fwrite($FILE, pack('V', $iAll + $i)); + } + if ($i < $i1stBdL) { + $jB = $i1stBdL - $i; + for ($j = 0; $j < $jB; ++$j) { + fwrite($FILE, (pack('V', -1))); + } + } + } + + /** + * Saving big data (PPS's with data bigger than \PhpOffice\PhpSpreadsheet\Shared\OLE::OLE_DATA_SIZE_SMALL). + * + * @param int $iStBlk + * @param array $raList Reference to array of PPS's + */ + private function saveBigData($iStBlk, &$raList): void + { + $FILE = $this->fileHandle; + + // cycle through PPS's + $iCount = count($raList); + for ($i = 0; $i < $iCount; ++$i) { + if ($raList[$i]->Type != OLE::OLE_PPS_TYPE_DIR) { + $raList[$i]->Size = $raList[$i]->getDataLen(); + if (($raList[$i]->Size >= OLE::OLE_DATA_SIZE_SMALL) || (($raList[$i]->Type == OLE::OLE_PPS_TYPE_ROOT) && isset($raList[$i]->_data))) { + fwrite($FILE, $raList[$i]->_data); + + if ($raList[$i]->Size % $this->bigBlockSize) { + fwrite($FILE, str_repeat("\x00", $this->bigBlockSize - ($raList[$i]->Size % $this->bigBlockSize))); + } + // Set For PPS + $raList[$i]->startBlock = $iStBlk; + $iStBlk += + (floor($raList[$i]->Size / $this->bigBlockSize) + + (($raList[$i]->Size % $this->bigBlockSize) ? 1 : 0)); + } + } + } + } + + /** + * get small data (PPS's with data smaller than \PhpOffice\PhpSpreadsheet\Shared\OLE::OLE_DATA_SIZE_SMALL). + * + * @param array $raList Reference to array of PPS's + * + * @return string + */ + private function makeSmallData(&$raList) + { + $sRes = ''; + $FILE = $this->fileHandle; + $iSmBlk = 0; + + $iCount = count($raList); + for ($i = 0; $i < $iCount; ++$i) { + // Make SBD, small data string + if ($raList[$i]->Type == OLE::OLE_PPS_TYPE_FILE) { + if ($raList[$i]->Size <= 0) { + continue; + } + if ($raList[$i]->Size < OLE::OLE_DATA_SIZE_SMALL) { + $iSmbCnt = floor($raList[$i]->Size / $this->smallBlockSize) + + (($raList[$i]->Size % $this->smallBlockSize) ? 1 : 0); + // Add to SBD + $jB = $iSmbCnt - 1; + for ($j = 0; $j < $jB; ++$j) { + fwrite($FILE, pack('V', $j + $iSmBlk + 1)); + } + fwrite($FILE, pack('V', -2)); + + // Add to Data String(this will be written for RootEntry) + $sRes .= $raList[$i]->_data; + if ($raList[$i]->Size % $this->smallBlockSize) { + $sRes .= str_repeat("\x00", $this->smallBlockSize - ($raList[$i]->Size % $this->smallBlockSize)); + } + // Set for PPS + $raList[$i]->startBlock = $iSmBlk; + $iSmBlk += $iSmbCnt; + } + } + } + $iSbCnt = floor($this->bigBlockSize / OLE::OLE_LONG_INT_SIZE); + if ($iSmBlk % $iSbCnt) { + $iB = $iSbCnt - ($iSmBlk % $iSbCnt); + for ($i = 0; $i < $iB; ++$i) { + fwrite($FILE, pack('V', -1)); + } + } + + return $sRes; + } + + /** + * Saves all the PPS's WKs. + * + * @param array $raList Reference to an array with all PPS's + */ + private function savePps(&$raList): void + { + // Save each PPS WK + $iC = count($raList); + for ($i = 0; $i < $iC; ++$i) { + fwrite($this->fileHandle, $raList[$i]->getPpsWk()); + } + // Adjust for Block + $iCnt = count($raList); + $iBCnt = $this->bigBlockSize / OLE::OLE_PPS_SIZE; + if ($iCnt % $iBCnt) { + fwrite($this->fileHandle, str_repeat("\x00", ($iBCnt - ($iCnt % $iBCnt)) * OLE::OLE_PPS_SIZE)); + } + } + + /** + * Saving Big Block Depot. + * + * @param int $iSbdSize + * @param int $iBsize + * @param int $iPpsCnt + */ + private function saveBbd($iSbdSize, $iBsize, $iPpsCnt): void + { + $FILE = $this->fileHandle; + // Calculate Basic Setting + $iBbCnt = $this->bigBlockSize / OLE::OLE_LONG_INT_SIZE; + $i1stBdL = ($this->bigBlockSize - 0x4C) / OLE::OLE_LONG_INT_SIZE; + + $iBdExL = 0; + $iAll = $iBsize + $iPpsCnt + $iSbdSize; + $iAllW = $iAll; + $iBdCntW = floor($iAllW / $iBbCnt) + (($iAllW % $iBbCnt) ? 1 : 0); + $iBdCnt = floor(($iAll + $iBdCntW) / $iBbCnt) + ((($iAllW + $iBdCntW) % $iBbCnt) ? 1 : 0); + // Calculate BD count + if ($iBdCnt > $i1stBdL) { + while (1) { + ++$iBdExL; + ++$iAllW; + $iBdCntW = floor($iAllW / $iBbCnt) + (($iAllW % $iBbCnt) ? 1 : 0); + $iBdCnt = floor(($iAllW + $iBdCntW) / $iBbCnt) + ((($iAllW + $iBdCntW) % $iBbCnt) ? 1 : 0); + if ($iBdCnt <= ($iBdExL * $iBbCnt + $i1stBdL)) { + break; + } + } + } + + // Making BD + // Set for SBD + if ($iSbdSize > 0) { + for ($i = 0; $i < ($iSbdSize - 1); ++$i) { + fwrite($FILE, pack('V', $i + 1)); + } + fwrite($FILE, pack('V', -2)); + } + // Set for B + for ($i = 0; $i < ($iBsize - 1); ++$i) { + fwrite($FILE, pack('V', $i + $iSbdSize + 1)); + } + fwrite($FILE, pack('V', -2)); + + // Set for PPS + for ($i = 0; $i < ($iPpsCnt - 1); ++$i) { + fwrite($FILE, pack('V', $i + $iSbdSize + $iBsize + 1)); + } + fwrite($FILE, pack('V', -2)); + // Set for BBD itself ( 0xFFFFFFFD : BBD) + for ($i = 0; $i < $iBdCnt; ++$i) { + fwrite($FILE, pack('V', 0xFFFFFFFD)); + } + // Set for ExtraBDList + for ($i = 0; $i < $iBdExL; ++$i) { + fwrite($FILE, pack('V', 0xFFFFFFFC)); + } + // Adjust for Block + if (($iAllW + $iBdCnt) % $iBbCnt) { + $iBlock = ($iBbCnt - (($iAllW + $iBdCnt) % $iBbCnt)); + for ($i = 0; $i < $iBlock; ++$i) { + fwrite($FILE, pack('V', -1)); + } + } + // Extra BDList + if ($iBdCnt > $i1stBdL) { + $iN = 0; + $iNb = 0; + for ($i = $i1stBdL; $i < $iBdCnt; $i++, ++$iN) { + if ($iN >= ($iBbCnt - 1)) { + $iN = 0; + ++$iNb; + fwrite($FILE, pack('V', $iAll + $iBdCnt + $iNb)); + } + fwrite($FILE, pack('V', $iBsize + $iSbdSize + $iPpsCnt + $i)); + } + if (($iBdCnt - $i1stBdL) % ($iBbCnt - 1)) { + $iB = ($iBbCnt - 1) - (($iBdCnt - $i1stBdL) % ($iBbCnt - 1)); + for ($i = 0; $i < $iB; ++$i) { + fwrite($FILE, pack('V', -1)); + } + } + fwrite($FILE, pack('V', -2)); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLERead.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLERead.php new file mode 100644 index 0000000..91f1d04 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLERead.php @@ -0,0 +1,347 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared; + +use PhpOffice\PhpSpreadsheet\Reader\Exception as ReaderException; + +class OLERead +{ + private $data = ''; + + // Size of a sector = 512 bytes + const BIG_BLOCK_SIZE = 0x200; + + // Size of a short sector = 64 bytes + const SMALL_BLOCK_SIZE = 0x40; + + // Size of a directory entry always = 128 bytes + const PROPERTY_STORAGE_BLOCK_SIZE = 0x80; + + // Minimum size of a standard stream = 4096 bytes, streams smaller than this are stored as short streams + const SMALL_BLOCK_THRESHOLD = 0x1000; + + // header offsets + const NUM_BIG_BLOCK_DEPOT_BLOCKS_POS = 0x2c; + const ROOT_START_BLOCK_POS = 0x30; + const SMALL_BLOCK_DEPOT_BLOCK_POS = 0x3c; + const EXTENSION_BLOCK_POS = 0x44; + const NUM_EXTENSION_BLOCK_POS = 0x48; + const BIG_BLOCK_DEPOT_BLOCKS_POS = 0x4c; + + // property storage offsets (directory offsets) + const SIZE_OF_NAME_POS = 0x40; + const TYPE_POS = 0x42; + const START_BLOCK_POS = 0x74; + const SIZE_POS = 0x78; + + public $wrkbook; + + public $summaryInformation; + + public $documentSummaryInformation; + + /** + * @var int + */ + private $numBigBlockDepotBlocks; + + /** + * @var int + */ + private $rootStartBlock; + + /** + * @var int + */ + private $sbdStartBlock; + + /** + * @var int + */ + private $extensionBlock; + + /** + * @var int + */ + private $numExtensionBlocks; + + /** + * @var string + */ + private $bigBlockChain; + + /** + * @var string + */ + private $smallBlockChain; + + /** + * @var string + */ + private $entry; + + /** + * @var int + */ + private $rootentry; + + /** + * @var array + */ + private $props = []; + + /** + * Read the file. + */ + public function read(string $filename): void + { + File::assertFile($filename); + + // Get the file identifier + // Don't bother reading the whole file until we know it's a valid OLE file + $this->data = file_get_contents($filename, false, null, 0, 8); + + // Check OLE identifier + $identifierOle = pack('CCCCCCCC', 0xd0, 0xcf, 0x11, 0xe0, 0xa1, 0xb1, 0x1a, 0xe1); + if ($this->data != $identifierOle) { + throw new ReaderException('The filename ' . $filename . ' is not recognised as an OLE file'); + } + + // Get the file data + $this->data = file_get_contents($filename); + + // Total number of sectors used for the SAT + $this->numBigBlockDepotBlocks = self::getInt4d($this->data, self::NUM_BIG_BLOCK_DEPOT_BLOCKS_POS); + + // SecID of the first sector of the directory stream + $this->rootStartBlock = self::getInt4d($this->data, self::ROOT_START_BLOCK_POS); + + // SecID of the first sector of the SSAT (or -2 if not extant) + $this->sbdStartBlock = self::getInt4d($this->data, self::SMALL_BLOCK_DEPOT_BLOCK_POS); + + // SecID of the first sector of the MSAT (or -2 if no additional sectors are used) + $this->extensionBlock = self::getInt4d($this->data, self::EXTENSION_BLOCK_POS); + + // Total number of sectors used by MSAT + $this->numExtensionBlocks = self::getInt4d($this->data, self::NUM_EXTENSION_BLOCK_POS); + + $bigBlockDepotBlocks = []; + $pos = self::BIG_BLOCK_DEPOT_BLOCKS_POS; + + $bbdBlocks = $this->numBigBlockDepotBlocks; + + if ($this->numExtensionBlocks != 0) { + $bbdBlocks = (self::BIG_BLOCK_SIZE - self::BIG_BLOCK_DEPOT_BLOCKS_POS) / 4; + } + + for ($i = 0; $i < $bbdBlocks; ++$i) { + $bigBlockDepotBlocks[$i] = self::getInt4d($this->data, $pos); + $pos += 4; + } + + for ($j = 0; $j < $this->numExtensionBlocks; ++$j) { + $pos = ($this->extensionBlock + 1) * self::BIG_BLOCK_SIZE; + $blocksToRead = min($this->numBigBlockDepotBlocks - $bbdBlocks, self::BIG_BLOCK_SIZE / 4 - 1); + + for ($i = $bbdBlocks; $i < $bbdBlocks + $blocksToRead; ++$i) { + $bigBlockDepotBlocks[$i] = self::getInt4d($this->data, $pos); + $pos += 4; + } + + $bbdBlocks += $blocksToRead; + if ($bbdBlocks < $this->numBigBlockDepotBlocks) { + $this->extensionBlock = self::getInt4d($this->data, $pos); + } + } + + $pos = 0; + $this->bigBlockChain = ''; + $bbs = self::BIG_BLOCK_SIZE / 4; + for ($i = 0; $i < $this->numBigBlockDepotBlocks; ++$i) { + $pos = ($bigBlockDepotBlocks[$i] + 1) * self::BIG_BLOCK_SIZE; + + $this->bigBlockChain .= substr($this->data, $pos, 4 * $bbs); + $pos += 4 * $bbs; + } + + $pos = 0; + $sbdBlock = $this->sbdStartBlock; + $this->smallBlockChain = ''; + while ($sbdBlock != -2) { + $pos = ($sbdBlock + 1) * self::BIG_BLOCK_SIZE; + + $this->smallBlockChain .= substr($this->data, $pos, 4 * $bbs); + $pos += 4 * $bbs; + + $sbdBlock = self::getInt4d($this->bigBlockChain, $sbdBlock * 4); + } + + // read the directory stream + $block = $this->rootStartBlock; + $this->entry = $this->readData($block); + + $this->readPropertySets(); + } + + /** + * Extract binary stream data. + * + * @param int $stream + * + * @return null|string + */ + public function getStream($stream) + { + if ($stream === null) { + return null; + } + + $streamData = ''; + + if ($this->props[$stream]['size'] < self::SMALL_BLOCK_THRESHOLD) { + $rootdata = $this->readData($this->props[$this->rootentry]['startBlock']); + + $block = $this->props[$stream]['startBlock']; + + while ($block != -2) { + $pos = $block * self::SMALL_BLOCK_SIZE; + $streamData .= substr($rootdata, $pos, self::SMALL_BLOCK_SIZE); + + $block = self::getInt4d($this->smallBlockChain, $block * 4); + } + + return $streamData; + } + $numBlocks = $this->props[$stream]['size'] / self::BIG_BLOCK_SIZE; + if ($this->props[$stream]['size'] % self::BIG_BLOCK_SIZE != 0) { + ++$numBlocks; + } + + if ($numBlocks == 0) { + return ''; + } + + $block = $this->props[$stream]['startBlock']; + + while ($block != -2) { + $pos = ($block + 1) * self::BIG_BLOCK_SIZE; + $streamData .= substr($this->data, $pos, self::BIG_BLOCK_SIZE); + $block = self::getInt4d($this->bigBlockChain, $block * 4); + } + + return $streamData; + } + + /** + * Read a standard stream (by joining sectors using information from SAT). + * + * @param int $block Sector ID where the stream starts + * + * @return string Data for standard stream + */ + private function readData($block) + { + $data = ''; + + while ($block != -2) { + $pos = ($block + 1) * self::BIG_BLOCK_SIZE; + $data .= substr($this->data, $pos, self::BIG_BLOCK_SIZE); + $block = self::getInt4d($this->bigBlockChain, $block * 4); + } + + return $data; + } + + /** + * Read entries in the directory stream. + */ + private function readPropertySets(): void + { + $offset = 0; + + // loop through entires, each entry is 128 bytes + $entryLen = strlen($this->entry); + while ($offset < $entryLen) { + // entry data (128 bytes) + $d = substr($this->entry, $offset, self::PROPERTY_STORAGE_BLOCK_SIZE); + + // size in bytes of name + $nameSize = ord($d[self::SIZE_OF_NAME_POS]) | (ord($d[self::SIZE_OF_NAME_POS + 1]) << 8); + + // type of entry + $type = ord($d[self::TYPE_POS]); + + // sectorID of first sector or short sector, if this entry refers to a stream (the case with workbook) + // sectorID of first sector of the short-stream container stream, if this entry is root entry + $startBlock = self::getInt4d($d, self::START_BLOCK_POS); + + $size = self::getInt4d($d, self::SIZE_POS); + + $name = str_replace("\x00", '', substr($d, 0, $nameSize)); + + $this->props[] = [ + 'name' => $name, + 'type' => $type, + 'startBlock' => $startBlock, + 'size' => $size, + ]; + + // tmp helper to simplify checks + $upName = strtoupper($name); + + // Workbook directory entry (BIFF5 uses Book, BIFF8 uses Workbook) + if (($upName === 'WORKBOOK') || ($upName === 'BOOK')) { + $this->wrkbook = count($this->props) - 1; + } elseif ($upName === 'ROOT ENTRY' || $upName === 'R') { + // Root entry + $this->rootentry = count($this->props) - 1; + } + + // Summary information + if ($name == chr(5) . 'SummaryInformation') { + $this->summaryInformation = count($this->props) - 1; + } + + // Additional Document Summary information + if ($name == chr(5) . 'DocumentSummaryInformation') { + $this->documentSummaryInformation = count($this->props) - 1; + } + + $offset += self::PROPERTY_STORAGE_BLOCK_SIZE; + } + } + + /** + * Read 4 bytes of data at specified position. + * + * @param string $data + * @param int $pos + * + * @return int + */ + private static function getInt4d($data, $pos) + { + if ($pos < 0) { + // Invalid position + throw new ReaderException('Parameter pos=' . $pos . ' is invalid.'); + } + + $len = strlen($data); + if ($len < $pos + 4) { + $data .= str_repeat("\0", $pos + 4 - $len); + } + + // FIX: represent numbers correctly on 64-bit system + // http://sourceforge.net/tracker/index.php?func=detail&aid=1487372&group_id=99160&atid=623334 + // Changed by Andreas Rehm 2006 to ensure correct result of the <<24 block on 32 and 64bit systems + $_or_24 = ord($data[$pos + 3]); + if ($_or_24 >= 128) { + // negative number + $_ord_24 = -abs((256 - $_or_24) << 24); + } else { + $_ord_24 = ($_or_24 & 127) << 24; + } + + return ord($data[$pos]) | (ord($data[$pos + 1]) << 8) | (ord($data[$pos + 2]) << 16) | $_ord_24; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/PasswordHasher.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/PasswordHasher.php new file mode 100644 index 0000000..0d58a86 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/PasswordHasher.php @@ -0,0 +1,109 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared; + +use PhpOffice\PhpSpreadsheet\Exception as SpException; +use PhpOffice\PhpSpreadsheet\Worksheet\Protection; + +class PasswordHasher +{ + const MAX_PASSWORD_LENGTH = 255; + + /** + * Get algorithm name for PHP. + */ + private static function getAlgorithm(string $algorithmName): string + { + if (!$algorithmName) { + return ''; + } + + // Mapping between algorithm name in Excel and algorithm name in PHP + $mapping = [ + Protection::ALGORITHM_MD2 => 'md2', + Protection::ALGORITHM_MD4 => 'md4', + Protection::ALGORITHM_MD5 => 'md5', + Protection::ALGORITHM_SHA_1 => 'sha1', + Protection::ALGORITHM_SHA_256 => 'sha256', + Protection::ALGORITHM_SHA_384 => 'sha384', + Protection::ALGORITHM_SHA_512 => 'sha512', + Protection::ALGORITHM_RIPEMD_128 => 'ripemd128', + Protection::ALGORITHM_RIPEMD_160 => 'ripemd160', + Protection::ALGORITHM_WHIRLPOOL => 'whirlpool', + ]; + + if (array_key_exists($algorithmName, $mapping)) { + return $mapping[$algorithmName]; + } + + throw new SpException('Unsupported password algorithm: ' . $algorithmName); + } + + /** + * Create a password hash from a given string. + * + * This method is based on the spec at: + * https://interoperability.blob.core.windows.net/files/MS-OFFCRYPTO/[MS-OFFCRYPTO].pdf + * 2.3.7.1 Binary Document Password Verifier Derivation Method 1 + * + * It replaces a method based on the algorithm provided by + * Daniel Rentz of OpenOffice and the PEAR package + * Spreadsheet_Excel_Writer by Xavier Noguer <xnoguer@rezebra.com>. + * + * Scrutinizer will squawk at the use of bitwise operations here, + * but it should ultimately pass. + * + * @param string $password Password to hash + */ + private static function defaultHashPassword(string $password): string + { + $verifier = 0; + $pwlen = strlen($password); + $passwordArray = pack('c', $pwlen) . $password; + for ($i = $pwlen; $i >= 0; --$i) { + $intermediate1 = (($verifier & 0x4000) === 0) ? 0 : 1; + $intermediate2 = 2 * $verifier; + $intermediate2 = $intermediate2 & 0x7fff; + $intermediate3 = $intermediate1 | $intermediate2; + $verifier = $intermediate3 ^ ord($passwordArray[$i]); + } + $verifier ^= 0xCE4B; + + return strtoupper(dechex($verifier)); + } + + /** + * Create a password hash from a given string by a specific algorithm. + * + * 2.4.2.4 ISO Write Protection Method + * + * @see https://docs.microsoft.com/en-us/openspecs/office_file_formats/ms-offcrypto/1357ea58-646e-4483-92ef-95d718079d6f + * + * @param string $password Password to hash + * @param string $algorithm Hash algorithm used to compute the password hash value + * @param string $salt Pseudorandom string + * @param int $spinCount Number of times to iterate on a hash of a password + * + * @return string Hashed password + */ + public static function hashPassword(string $password, string $algorithm = '', string $salt = '', int $spinCount = 10000): string + { + if (strlen($password) > self::MAX_PASSWORD_LENGTH) { + throw new SpException('Password exceeds ' . self::MAX_PASSWORD_LENGTH . ' characters'); + } + $phpAlgorithm = self::getAlgorithm($algorithm); + if (!$phpAlgorithm) { + return self::defaultHashPassword($password); + } + + $saltValue = base64_decode($salt); + $encodedPassword = mb_convert_encoding($password, 'UCS-2LE', 'UTF-8'); + + $hashValue = hash($phpAlgorithm, $saltValue . $encodedPassword, true); + for ($i = 0; $i < $spinCount; ++$i) { + $hashValue = hash($phpAlgorithm, $hashValue . pack('L', $i), true); + } + + return base64_encode($hashValue); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/StringHelper.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/StringHelper.php new file mode 100644 index 0000000..030df66 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/StringHelper.php @@ -0,0 +1,705 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use UConverter; + +class StringHelper +{ + /** Constants */ + /** Regular Expressions */ + // Fraction + const STRING_REGEXP_FRACTION = '~^\s*(-?)((\d*)\s+)?(\d+\/\d+)\s*$~'; + + /** + * Control characters array. + * + * @var string[] + */ + private static $controlCharacters = []; + + /** + * SYLK Characters array. + * + * @var array + */ + private static $SYLKCharacters = []; + + /** + * Decimal separator. + * + * @var ?string + */ + private static $decimalSeparator; + + /** + * Thousands separator. + * + * @var ?string + */ + private static $thousandsSeparator; + + /** + * Currency code. + * + * @var string + */ + private static $currencyCode; + + /** + * Is iconv extension avalable? + * + * @var ?bool + */ + private static $isIconvEnabled; + + /** + * iconv options. + * + * @var string + */ + private static $iconvOptions = '//IGNORE//TRANSLIT'; + + /** + * Build control characters array. + */ + private static function buildControlCharacters(): void + { + for ($i = 0; $i <= 31; ++$i) { + if ($i != 9 && $i != 10 && $i != 13) { + $find = '_x' . sprintf('%04s', strtoupper(dechex($i))) . '_'; + $replace = chr($i); + self::$controlCharacters[$find] = $replace; + } + } + } + + /** + * Build SYLK characters array. + */ + private static function buildSYLKCharacters(): void + { + self::$SYLKCharacters = [ + "\x1B 0" => chr(0), + "\x1B 1" => chr(1), + "\x1B 2" => chr(2), + "\x1B 3" => chr(3), + "\x1B 4" => chr(4), + "\x1B 5" => chr(5), + "\x1B 6" => chr(6), + "\x1B 7" => chr(7), + "\x1B 8" => chr(8), + "\x1B 9" => chr(9), + "\x1B :" => chr(10), + "\x1B ;" => chr(11), + "\x1B <" => chr(12), + "\x1B =" => chr(13), + "\x1B >" => chr(14), + "\x1B ?" => chr(15), + "\x1B!0" => chr(16), + "\x1B!1" => chr(17), + "\x1B!2" => chr(18), + "\x1B!3" => chr(19), + "\x1B!4" => chr(20), + "\x1B!5" => chr(21), + "\x1B!6" => chr(22), + "\x1B!7" => chr(23), + "\x1B!8" => chr(24), + "\x1B!9" => chr(25), + "\x1B!:" => chr(26), + "\x1B!;" => chr(27), + "\x1B!<" => chr(28), + "\x1B!=" => chr(29), + "\x1B!>" => chr(30), + "\x1B!?" => chr(31), + "\x1B'?" => chr(127), + "\x1B(0" => '€', // 128 in CP1252 + "\x1B(2" => '‚', // 130 in CP1252 + "\x1B(3" => 'Æ’', // 131 in CP1252 + "\x1B(4" => '„', // 132 in CP1252 + "\x1B(5" => '…', // 133 in CP1252 + "\x1B(6" => '†', // 134 in CP1252 + "\x1B(7" => '‡', // 135 in CP1252 + "\x1B(8" => 'ˆ', // 136 in CP1252 + "\x1B(9" => '‰', // 137 in CP1252 + "\x1B(:" => 'Å ', // 138 in CP1252 + "\x1B(;" => '‹', // 139 in CP1252 + "\x1BNj" => 'Å’', // 140 in CP1252 + "\x1B(>" => 'Ž', // 142 in CP1252 + "\x1B)1" => '‘', // 145 in CP1252 + "\x1B)2" => '’', // 146 in CP1252 + "\x1B)3" => '“', // 147 in CP1252 + "\x1B)4" => 'â€', // 148 in CP1252 + "\x1B)5" => '•', // 149 in CP1252 + "\x1B)6" => '–', // 150 in CP1252 + "\x1B)7" => '—', // 151 in CP1252 + "\x1B)8" => 'Ëœ', // 152 in CP1252 + "\x1B)9" => 'â„¢', // 153 in CP1252 + "\x1B):" => 'Å¡', // 154 in CP1252 + "\x1B);" => '›', // 155 in CP1252 + "\x1BNz" => 'Å“', // 156 in CP1252 + "\x1B)>" => 'ž', // 158 in CP1252 + "\x1B)?" => 'Ÿ', // 159 in CP1252 + "\x1B*0" => ' ', // 160 in CP1252 + "\x1BN!" => '¡', // 161 in CP1252 + "\x1BN\"" => '¢', // 162 in CP1252 + "\x1BN#" => '£', // 163 in CP1252 + "\x1BN(" => '¤', // 164 in CP1252 + "\x1BN%" => 'Â¥', // 165 in CP1252 + "\x1B*6" => '¦', // 166 in CP1252 + "\x1BN'" => '§', // 167 in CP1252 + "\x1BNH " => '¨', // 168 in CP1252 + "\x1BNS" => '©', // 169 in CP1252 + "\x1BNc" => 'ª', // 170 in CP1252 + "\x1BN+" => '«', // 171 in CP1252 + "\x1B*<" => '¬', // 172 in CP1252 + "\x1B*=" => '­', // 173 in CP1252 + "\x1BNR" => '®', // 174 in CP1252 + "\x1B*?" => '¯', // 175 in CP1252 + "\x1BN0" => '°', // 176 in CP1252 + "\x1BN1" => '±', // 177 in CP1252 + "\x1BN2" => '²', // 178 in CP1252 + "\x1BN3" => '³', // 179 in CP1252 + "\x1BNB " => '´', // 180 in CP1252 + "\x1BN5" => 'µ', // 181 in CP1252 + "\x1BN6" => '¶', // 182 in CP1252 + "\x1BN7" => '·', // 183 in CP1252 + "\x1B+8" => '¸', // 184 in CP1252 + "\x1BNQ" => '¹', // 185 in CP1252 + "\x1BNk" => 'º', // 186 in CP1252 + "\x1BN;" => '»', // 187 in CP1252 + "\x1BN<" => '¼', // 188 in CP1252 + "\x1BN=" => '½', // 189 in CP1252 + "\x1BN>" => '¾', // 190 in CP1252 + "\x1BN?" => '¿', // 191 in CP1252 + "\x1BNAA" => 'À', // 192 in CP1252 + "\x1BNBA" => 'Ã', // 193 in CP1252 + "\x1BNCA" => 'Â', // 194 in CP1252 + "\x1BNDA" => 'Ã', // 195 in CP1252 + "\x1BNHA" => 'Ä', // 196 in CP1252 + "\x1BNJA" => 'Ã…', // 197 in CP1252 + "\x1BNa" => 'Æ', // 198 in CP1252 + "\x1BNKC" => 'Ç', // 199 in CP1252 + "\x1BNAE" => 'È', // 200 in CP1252 + "\x1BNBE" => 'É', // 201 in CP1252 + "\x1BNCE" => 'Ê', // 202 in CP1252 + "\x1BNHE" => 'Ë', // 203 in CP1252 + "\x1BNAI" => 'ÃŒ', // 204 in CP1252 + "\x1BNBI" => 'Ã', // 205 in CP1252 + "\x1BNCI" => 'ÃŽ', // 206 in CP1252 + "\x1BNHI" => 'Ã', // 207 in CP1252 + "\x1BNb" => 'Ã', // 208 in CP1252 + "\x1BNDN" => 'Ñ', // 209 in CP1252 + "\x1BNAO" => 'Ã’', // 210 in CP1252 + "\x1BNBO" => 'Ó', // 211 in CP1252 + "\x1BNCO" => 'Ô', // 212 in CP1252 + "\x1BNDO" => 'Õ', // 213 in CP1252 + "\x1BNHO" => 'Ö', // 214 in CP1252 + "\x1B-7" => '×', // 215 in CP1252 + "\x1BNi" => 'Ø', // 216 in CP1252 + "\x1BNAU" => 'Ù', // 217 in CP1252 + "\x1BNBU" => 'Ú', // 218 in CP1252 + "\x1BNCU" => 'Û', // 219 in CP1252 + "\x1BNHU" => 'Ü', // 220 in CP1252 + "\x1B-=" => 'Ã', // 221 in CP1252 + "\x1BNl" => 'Þ', // 222 in CP1252 + "\x1BN{" => 'ß', // 223 in CP1252 + "\x1BNAa" => 'à', // 224 in CP1252 + "\x1BNBa" => 'á', // 225 in CP1252 + "\x1BNCa" => 'â', // 226 in CP1252 + "\x1BNDa" => 'ã', // 227 in CP1252 + "\x1BNHa" => 'ä', // 228 in CP1252 + "\x1BNJa" => 'Ã¥', // 229 in CP1252 + "\x1BNq" => 'æ', // 230 in CP1252 + "\x1BNKc" => 'ç', // 231 in CP1252 + "\x1BNAe" => 'è', // 232 in CP1252 + "\x1BNBe" => 'é', // 233 in CP1252 + "\x1BNCe" => 'ê', // 234 in CP1252 + "\x1BNHe" => 'ë', // 235 in CP1252 + "\x1BNAi" => 'ì', // 236 in CP1252 + "\x1BNBi" => 'í', // 237 in CP1252 + "\x1BNCi" => 'î', // 238 in CP1252 + "\x1BNHi" => 'ï', // 239 in CP1252 + "\x1BNs" => 'ð', // 240 in CP1252 + "\x1BNDn" => 'ñ', // 241 in CP1252 + "\x1BNAo" => 'ò', // 242 in CP1252 + "\x1BNBo" => 'ó', // 243 in CP1252 + "\x1BNCo" => 'ô', // 244 in CP1252 + "\x1BNDo" => 'õ', // 245 in CP1252 + "\x1BNHo" => 'ö', // 246 in CP1252 + "\x1B/7" => '÷', // 247 in CP1252 + "\x1BNy" => 'ø', // 248 in CP1252 + "\x1BNAu" => 'ù', // 249 in CP1252 + "\x1BNBu" => 'ú', // 250 in CP1252 + "\x1BNCu" => 'û', // 251 in CP1252 + "\x1BNHu" => 'ü', // 252 in CP1252 + "\x1B/=" => 'ý', // 253 in CP1252 + "\x1BN|" => 'þ', // 254 in CP1252 + "\x1BNHy" => 'ÿ', // 255 in CP1252 + ]; + } + + /** + * Get whether iconv extension is available. + * + * @return bool + */ + public static function getIsIconvEnabled() + { + if (isset(self::$isIconvEnabled)) { + return self::$isIconvEnabled; + } + + // Assume no problems with iconv + self::$isIconvEnabled = true; + + // Fail if iconv doesn't exist + if (!function_exists('iconv')) { + self::$isIconvEnabled = false; + } elseif (!@iconv('UTF-8', 'UTF-16LE', 'x')) { + // Sometimes iconv is not working, and e.g. iconv('UTF-8', 'UTF-16LE', 'x') just returns false, + self::$isIconvEnabled = false; + } elseif (defined('PHP_OS') && @stristr(PHP_OS, 'AIX') && defined('ICONV_IMPL') && (@strcasecmp(ICONV_IMPL, 'unknown') == 0) && defined('ICONV_VERSION') && (@strcasecmp(ICONV_VERSION, 'unknown') == 0)) { + // CUSTOM: IBM AIX iconv() does not work + self::$isIconvEnabled = false; + } + + // Deactivate iconv default options if they fail (as seen on IMB i) + if (self::$isIconvEnabled && !@iconv('UTF-8', 'UTF-16LE' . self::$iconvOptions, 'x')) { + self::$iconvOptions = ''; + } + + return self::$isIconvEnabled; + } + + private static function buildCharacterSets(): void + { + if (empty(self::$controlCharacters)) { + self::buildControlCharacters(); + } + + if (empty(self::$SYLKCharacters)) { + self::buildSYLKCharacters(); + } + } + + /** + * Convert from OpenXML escaped control character to PHP control character. + * + * Excel 2007 team: + * ---------------- + * That's correct, control characters are stored directly in the shared-strings table. + * We do encode characters that cannot be represented in XML using the following escape sequence: + * _xHHHH_ where H represents a hexadecimal character in the character's value... + * So you could end up with something like _x0008_ in a string (either in a cell value (<v>) + * element or in the shared string <t> element. + * + * @param string $textValue Value to unescape + * + * @return string + */ + public static function controlCharacterOOXML2PHP($textValue) + { + self::buildCharacterSets(); + + return str_replace(array_keys(self::$controlCharacters), array_values(self::$controlCharacters), $textValue); + } + + /** + * Convert from PHP control character to OpenXML escaped control character. + * + * Excel 2007 team: + * ---------------- + * That's correct, control characters are stored directly in the shared-strings table. + * We do encode characters that cannot be represented in XML using the following escape sequence: + * _xHHHH_ where H represents a hexadecimal character in the character's value... + * So you could end up with something like _x0008_ in a string (either in a cell value (<v>) + * element or in the shared string <t> element. + * + * @param string $textValue Value to escape + * + * @return string + */ + public static function controlCharacterPHP2OOXML($textValue) + { + self::buildCharacterSets(); + + return str_replace(array_values(self::$controlCharacters), array_keys(self::$controlCharacters), $textValue); + } + + /** + * Try to sanitize UTF8, replacing invalid sequences with Unicode substitution characters. + */ + public static function sanitizeUTF8(string $textValue): string + { + $textValue = str_replace(["\xef\xbf\xbe", "\xef\xbf\xbf"], "\xef\xbf\xbd", $textValue); + if (class_exists(UConverter::class)) { + $returnValue = UConverter::transcode($textValue, 'UTF-8', 'UTF-8'); + if ($returnValue !== false) { + return $returnValue; + } + } + // @codeCoverageIgnoreStart + // I don't think any of the code below should ever be executed. + if (self::getIsIconvEnabled()) { + $returnValue = @iconv('UTF-8', 'UTF-8', $textValue); + if ($returnValue !== false) { + return $returnValue; + } + } + + // Phpstan does not think this can return false. + $returnValue = mb_convert_encoding($textValue, 'UTF-8', 'UTF-8'); + + return $returnValue; + // @codeCoverageIgnoreEnd + } + + /** + * Check if a string contains UTF8 data. + */ + public static function isUTF8(string $textValue): bool + { + return $textValue === self::sanitizeUTF8($textValue); + } + + /** + * Formats a numeric value as a string for output in various output writers forcing + * point as decimal separator in case locale is other than English. + * + * @param float|int|string $numericValue + */ + public static function formatNumber($numericValue): string + { + if (is_float($numericValue)) { + return str_replace(',', '.', (string) $numericValue); + } + + return (string) $numericValue; + } + + /** + * Converts a UTF-8 string into BIFF8 Unicode string data (8-bit string length) + * Writes the string using uncompressed notation, no rich text, no Asian phonetics + * If mbstring extension is not available, ASCII is assumed, and compressed notation is used + * although this will give wrong results for non-ASCII strings + * see OpenOffice.org's Documentation of the Microsoft Excel File Format, sect. 2.5.3. + * + * @param string $textValue UTF-8 encoded string + * @param mixed[] $arrcRuns Details of rich text runs in $value + */ + public static function UTF8toBIFF8UnicodeShort(string $textValue, array $arrcRuns = []): string + { + // character count + $ln = self::countCharacters($textValue, 'UTF-8'); + // option flags + if (empty($arrcRuns)) { + $data = pack('CC', $ln, 0x0001); + // characters + $data .= self::convertEncoding($textValue, 'UTF-16LE', 'UTF-8'); + } else { + $data = pack('vC', $ln, 0x09); + $data .= pack('v', count($arrcRuns)); + // characters + $data .= self::convertEncoding($textValue, 'UTF-16LE', 'UTF-8'); + foreach ($arrcRuns as $cRun) { + $data .= pack('v', $cRun['strlen']); + $data .= pack('v', $cRun['fontidx']); + } + } + + return $data; + } + + /** + * Converts a UTF-8 string into BIFF8 Unicode string data (16-bit string length) + * Writes the string using uncompressed notation, no rich text, no Asian phonetics + * If mbstring extension is not available, ASCII is assumed, and compressed notation is used + * although this will give wrong results for non-ASCII strings + * see OpenOffice.org's Documentation of the Microsoft Excel File Format, sect. 2.5.3. + * + * @param string $textValue UTF-8 encoded string + */ + public static function UTF8toBIFF8UnicodeLong(string $textValue): string + { + // character count + $ln = self::countCharacters($textValue, 'UTF-8'); + + // characters + $chars = self::convertEncoding($textValue, 'UTF-16LE', 'UTF-8'); + + return pack('vC', $ln, 0x0001) . $chars; + } + + /** + * Convert string from one encoding to another. + * + * @param string $to Encoding to convert to, e.g. 'UTF-8' + * @param string $from Encoding to convert from, e.g. 'UTF-16LE' + */ + public static function convertEncoding(string $textValue, string $to, string $from): string + { + if (self::getIsIconvEnabled()) { + $result = iconv($from, $to . self::$iconvOptions, $textValue); + if (false !== $result) { + return $result; + } + } + + return mb_convert_encoding($textValue, $to, $from); + } + + /** + * Get character count. + * + * @param string $encoding Encoding + * + * @return int Character count + */ + public static function countCharacters(string $textValue, string $encoding = 'UTF-8'): int + { + return mb_strlen($textValue, $encoding); + } + + /** + * Get a substring of a UTF-8 encoded string. + * + * @param string $textValue UTF-8 encoded string + * @param int $offset Start offset + * @param ?int $length Maximum number of characters in substring + */ + public static function substring(string $textValue, int $offset, ?int $length = 0): string + { + return mb_substr($textValue, $offset, $length, 'UTF-8'); + } + + /** + * Convert a UTF-8 encoded string to upper case. + * + * @param string $textValue UTF-8 encoded string + */ + public static function strToUpper(string $textValue): string + { + return mb_convert_case($textValue, MB_CASE_UPPER, 'UTF-8'); + } + + /** + * Convert a UTF-8 encoded string to lower case. + * + * @param string $textValue UTF-8 encoded string + */ + public static function strToLower(string $textValue): string + { + return mb_convert_case($textValue, MB_CASE_LOWER, 'UTF-8'); + } + + /** + * Convert a UTF-8 encoded string to title/proper case + * (uppercase every first character in each word, lower case all other characters). + * + * @param string $textValue UTF-8 encoded string + */ + public static function strToTitle(string $textValue): string + { + return mb_convert_case($textValue, MB_CASE_TITLE, 'UTF-8'); + } + + public static function mbIsUpper(string $character): bool + { + return mb_strtolower($character, 'UTF-8') !== $character; + } + + /** + * Splits a UTF-8 string into an array of individual characters. + */ + public static function mbStrSplit(string $string): array + { + // Split at all position not after the start: ^ + // and not before the end: $ + $split = preg_split('/(?<!^)(?!$)/u', $string); + + return ($split === false) ? [] : $split; + } + + /** + * Reverse the case of a string, so that all uppercase characters become lowercase + * and all lowercase characters become uppercase. + * + * @param string $textValue UTF-8 encoded string + */ + public static function strCaseReverse(string $textValue): string + { + $characters = self::mbStrSplit($textValue); + foreach ($characters as &$character) { + if (self::mbIsUpper($character)) { + $character = mb_strtolower($character, 'UTF-8'); + } else { + $character = mb_strtoupper($character, 'UTF-8'); + } + } + + return implode('', $characters); + } + + /** + * Identify whether a string contains a fractional numeric value, + * and convert it to a numeric if it is. + * + * @param string $operand string value to test + */ + public static function convertToNumberIfFraction(string &$operand): bool + { + if (preg_match(self::STRING_REGEXP_FRACTION, $operand, $match)) { + $sign = ($match[1] == '-') ? '-' : '+'; + $wholePart = ($match[3] === '') ? '' : ($sign . $match[3]); + $fractionFormula = '=' . $wholePart . $sign . $match[4]; + $operand = Calculation::getInstance()->_calculateFormulaValue($fractionFormula); + + return true; + } + + return false; + } + + // function convertToNumberIfFraction() + + /** + * Get the decimal separator. If it has not yet been set explicitly, try to obtain number + * formatting information from locale. + */ + public static function getDecimalSeparator(): string + { + if (!isset(self::$decimalSeparator)) { + $localeconv = localeconv(); + self::$decimalSeparator = ($localeconv['decimal_point'] != '') + ? $localeconv['decimal_point'] : $localeconv['mon_decimal_point']; + + if (self::$decimalSeparator == '') { + // Default to . + self::$decimalSeparator = '.'; + } + } + + return self::$decimalSeparator; + } + + /** + * Set the decimal separator. Only used by NumberFormat::toFormattedString() + * to format output by \PhpOffice\PhpSpreadsheet\Writer\Html and \PhpOffice\PhpSpreadsheet\Writer\Pdf. + * + * @param string $separator Character for decimal separator + */ + public static function setDecimalSeparator(string $separator): void + { + self::$decimalSeparator = $separator; + } + + /** + * Get the thousands separator. If it has not yet been set explicitly, try to obtain number + * formatting information from locale. + */ + public static function getThousandsSeparator(): string + { + if (!isset(self::$thousandsSeparator)) { + $localeconv = localeconv(); + self::$thousandsSeparator = ($localeconv['thousands_sep'] != '') + ? $localeconv['thousands_sep'] : $localeconv['mon_thousands_sep']; + + if (self::$thousandsSeparator == '') { + // Default to . + self::$thousandsSeparator = ','; + } + } + + return self::$thousandsSeparator; + } + + /** + * Set the thousands separator. Only used by NumberFormat::toFormattedString() + * to format output by \PhpOffice\PhpSpreadsheet\Writer\Html and \PhpOffice\PhpSpreadsheet\Writer\Pdf. + * + * @param string $separator Character for thousands separator + */ + public static function setThousandsSeparator(string $separator): void + { + self::$thousandsSeparator = $separator; + } + + /** + * Get the currency code. If it has not yet been set explicitly, try to obtain the + * symbol information from locale. + */ + public static function getCurrencyCode(): string + { + if (!empty(self::$currencyCode)) { + return self::$currencyCode; + } + self::$currencyCode = '$'; + $localeconv = localeconv(); + if (!empty($localeconv['currency_symbol'])) { + self::$currencyCode = $localeconv['currency_symbol']; + + return self::$currencyCode; + } + if (!empty($localeconv['int_curr_symbol'])) { + self::$currencyCode = $localeconv['int_curr_symbol']; + + return self::$currencyCode; + } + + return self::$currencyCode; + } + + /** + * Set the currency code. Only used by NumberFormat::toFormattedString() + * to format output by \PhpOffice\PhpSpreadsheet\Writer\Html and \PhpOffice\PhpSpreadsheet\Writer\Pdf. + * + * @param string $currencyCode Character for currency code + */ + public static function setCurrencyCode(string $currencyCode): void + { + self::$currencyCode = $currencyCode; + } + + /** + * Convert SYLK encoded string to UTF-8. + * + * @param string $textValue SYLK encoded string + * + * @return string UTF-8 encoded string + */ + public static function SYLKtoUTF8(string $textValue): string + { + self::buildCharacterSets(); + + // If there is no escape character in the string there is nothing to do + if (strpos($textValue, '') === false) { + return $textValue; + } + + foreach (self::$SYLKCharacters as $k => $v) { + $textValue = str_replace($k, $v, $textValue); + } + + return $textValue; + } + + /** + * Retrieve any leading numeric part of a string, or return the full string if no leading numeric + * (handles basic integer or float, but not exponent or non decimal). + * + * @param string $textValue + * + * @return mixed string or only the leading numeric part of the string + */ + public static function testStringAsNumeric($textValue) + { + if (is_numeric($textValue)) { + return $textValue; + } + $v = (float) $textValue; + + return (is_numeric(substr($textValue, 0, strlen((string) $v)))) ? $v : $textValue; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/TimeZone.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/TimeZone.php new file mode 100644 index 0000000..734c076 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/TimeZone.php @@ -0,0 +1,77 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared; + +use DateTimeZone; +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; + +class TimeZone +{ + /** + * Default Timezone used for date/time conversions. + * + * @var string + */ + protected static $timezone = 'UTC'; + + /** + * Validate a Timezone name. + * + * @param string $timezoneName Time zone (e.g. 'Europe/London') + * + * @return bool Success or failure + */ + private static function validateTimeZone(string $timezoneName): bool + { + return in_array($timezoneName, DateTimeZone::listIdentifiers(DateTimeZone::ALL_WITH_BC), true); + } + + /** + * Set the Default Timezone used for date/time conversions. + * + * @param string $timezoneName Time zone (e.g. 'Europe/London') + * + * @return bool Success or failure + */ + public static function setTimeZone(string $timezoneName): bool + { + if (self::validateTimezone($timezoneName)) { + self::$timezone = $timezoneName; + + return true; + } + + return false; + } + + /** + * Return the Default Timezone used for date/time conversions. + * + * @return string Timezone (e.g. 'Europe/London') + */ + public static function getTimeZone(): string + { + return self::$timezone; + } + + /** + * Return the Timezone offset used for date/time conversions to/from UST + * This requires both the timezone and the calculated date/time to allow for local DST. + * + * @param ?string $timezoneName The timezone for finding the adjustment to UST + * @param float|int $timestamp PHP date/time value + * + * @return int Number of seconds for timezone adjustment + */ + public static function getTimeZoneAdjustment(?string $timezoneName, $timestamp): int + { + $timezoneName = $timezoneName ?? self::$timezone; + $dtobj = Date::dateTimeFromTimestamp("$timestamp"); + if (!self::validateTimezone($timezoneName)) { + throw new PhpSpreadsheetException("Invalid timezone $timezoneName"); + } + $dtobj->setTimeZone(new DateTimeZone($timezoneName)); + + return $dtobj->getOffset(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/BestFit.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/BestFit.php new file mode 100644 index 0000000..7df4895 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/BestFit.php @@ -0,0 +1,461 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\Trend; + +abstract class BestFit +{ + /** + * Indicator flag for a calculation error. + * + * @var bool + */ + protected $error = false; + + /** + * Algorithm type to use for best-fit. + * + * @var string + */ + protected $bestFitType = 'undetermined'; + + /** + * Number of entries in the sets of x- and y-value arrays. + * + * @var int + */ + protected $valueCount = 0; + + /** + * X-value dataseries of values. + * + * @var float[] + */ + protected $xValues = []; + + /** + * Y-value dataseries of values. + * + * @var float[] + */ + protected $yValues = []; + + /** + * Flag indicating whether values should be adjusted to Y=0. + * + * @var bool + */ + protected $adjustToZero = false; + + /** + * Y-value series of best-fit values. + * + * @var float[] + */ + protected $yBestFitValues = []; + + protected $goodnessOfFit = 1; + + protected $stdevOfResiduals = 0; + + protected $covariance = 0; + + protected $correlation = 0; + + protected $SSRegression = 0; + + protected $SSResiduals = 0; + + protected $DFResiduals = 0; + + protected $f = 0; + + protected $slope = 0; + + protected $slopeSE = 0; + + protected $intersect = 0; + + protected $intersectSE = 0; + + protected $xOffset = 0; + + protected $yOffset = 0; + + public function getError() + { + return $this->error; + } + + public function getBestFitType() + { + return $this->bestFitType; + } + + /** + * Return the Y-Value for a specified value of X. + * + * @param float $xValue X-Value + * + * @return float Y-Value + */ + abstract public function getValueOfYForX($xValue); + + /** + * Return the X-Value for a specified value of Y. + * + * @param float $yValue Y-Value + * + * @return float X-Value + */ + abstract public function getValueOfXForY($yValue); + + /** + * Return the original set of X-Values. + * + * @return float[] X-Values + */ + public function getXValues() + { + return $this->xValues; + } + + /** + * Return the Equation of the best-fit line. + * + * @param int $dp Number of places of decimal precision to display + * + * @return string + */ + abstract public function getEquation($dp = 0); + + /** + * Return the Slope of the line. + * + * @param int $dp Number of places of decimal precision to display + * + * @return float + */ + public function getSlope($dp = 0) + { + if ($dp != 0) { + return round($this->slope, $dp); + } + + return $this->slope; + } + + /** + * Return the standard error of the Slope. + * + * @param int $dp Number of places of decimal precision to display + * + * @return float + */ + public function getSlopeSE($dp = 0) + { + if ($dp != 0) { + return round($this->slopeSE, $dp); + } + + return $this->slopeSE; + } + + /** + * Return the Value of X where it intersects Y = 0. + * + * @param int $dp Number of places of decimal precision to display + * + * @return float + */ + public function getIntersect($dp = 0) + { + if ($dp != 0) { + return round($this->intersect, $dp); + } + + return $this->intersect; + } + + /** + * Return the standard error of the Intersect. + * + * @param int $dp Number of places of decimal precision to display + * + * @return float + */ + public function getIntersectSE($dp = 0) + { + if ($dp != 0) { + return round($this->intersectSE, $dp); + } + + return $this->intersectSE; + } + + /** + * Return the goodness of fit for this regression. + * + * @param int $dp Number of places of decimal precision to return + * + * @return float + */ + public function getGoodnessOfFit($dp = 0) + { + if ($dp != 0) { + return round($this->goodnessOfFit, $dp); + } + + return $this->goodnessOfFit; + } + + /** + * Return the goodness of fit for this regression. + * + * @param int $dp Number of places of decimal precision to return + * + * @return float + */ + public function getGoodnessOfFitPercent($dp = 0) + { + if ($dp != 0) { + return round($this->goodnessOfFit * 100, $dp); + } + + return $this->goodnessOfFit * 100; + } + + /** + * Return the standard deviation of the residuals for this regression. + * + * @param int $dp Number of places of decimal precision to return + * + * @return float + */ + public function getStdevOfResiduals($dp = 0) + { + if ($dp != 0) { + return round($this->stdevOfResiduals, $dp); + } + + return $this->stdevOfResiduals; + } + + /** + * @param int $dp Number of places of decimal precision to return + * + * @return float + */ + public function getSSRegression($dp = 0) + { + if ($dp != 0) { + return round($this->SSRegression, $dp); + } + + return $this->SSRegression; + } + + /** + * @param int $dp Number of places of decimal precision to return + * + * @return float + */ + public function getSSResiduals($dp = 0) + { + if ($dp != 0) { + return round($this->SSResiduals, $dp); + } + + return $this->SSResiduals; + } + + /** + * @param int $dp Number of places of decimal precision to return + * + * @return float + */ + public function getDFResiduals($dp = 0) + { + if ($dp != 0) { + return round($this->DFResiduals, $dp); + } + + return $this->DFResiduals; + } + + /** + * @param int $dp Number of places of decimal precision to return + * + * @return float + */ + public function getF($dp = 0) + { + if ($dp != 0) { + return round($this->f, $dp); + } + + return $this->f; + } + + /** + * @param int $dp Number of places of decimal precision to return + * + * @return float + */ + public function getCovariance($dp = 0) + { + if ($dp != 0) { + return round($this->covariance, $dp); + } + + return $this->covariance; + } + + /** + * @param int $dp Number of places of decimal precision to return + * + * @return float + */ + public function getCorrelation($dp = 0) + { + if ($dp != 0) { + return round($this->correlation, $dp); + } + + return $this->correlation; + } + + /** + * @return float[] + */ + public function getYBestFitValues() + { + return $this->yBestFitValues; + } + + protected function calculateGoodnessOfFit($sumX, $sumY, $sumX2, $sumY2, $sumXY, $meanX, $meanY, $const): void + { + $SSres = $SScov = $SScor = $SStot = $SSsex = 0.0; + foreach ($this->xValues as $xKey => $xValue) { + $bestFitY = $this->yBestFitValues[$xKey] = $this->getValueOfYForX($xValue); + + $SSres += ($this->yValues[$xKey] - $bestFitY) * ($this->yValues[$xKey] - $bestFitY); + if ($const === true) { + $SStot += ($this->yValues[$xKey] - $meanY) * ($this->yValues[$xKey] - $meanY); + } else { + $SStot += $this->yValues[$xKey] * $this->yValues[$xKey]; + } + $SScov += ($this->xValues[$xKey] - $meanX) * ($this->yValues[$xKey] - $meanY); + if ($const === true) { + $SSsex += ($this->xValues[$xKey] - $meanX) * ($this->xValues[$xKey] - $meanX); + } else { + $SSsex += $this->xValues[$xKey] * $this->xValues[$xKey]; + } + } + + $this->SSResiduals = $SSres; + $this->DFResiduals = $this->valueCount - 1 - ($const === true ? 1 : 0); + + if ($this->DFResiduals == 0.0) { + $this->stdevOfResiduals = 0.0; + } else { + $this->stdevOfResiduals = sqrt($SSres / $this->DFResiduals); + } + if (($SStot == 0.0) || ($SSres == $SStot)) { + $this->goodnessOfFit = 1; + } else { + $this->goodnessOfFit = 1 - ($SSres / $SStot); + } + + $this->SSRegression = $this->goodnessOfFit * $SStot; + $this->covariance = $SScov / $this->valueCount; + $this->correlation = ($this->valueCount * $sumXY - $sumX * $sumY) / sqrt(($this->valueCount * $sumX2 - $sumX ** 2) * ($this->valueCount * $sumY2 - $sumY ** 2)); + $this->slopeSE = $this->stdevOfResiduals / sqrt($SSsex); + $this->intersectSE = $this->stdevOfResiduals * sqrt(1 / ($this->valueCount - ($sumX * $sumX) / $sumX2)); + if ($this->SSResiduals != 0.0) { + if ($this->DFResiduals == 0.0) { + $this->f = 0.0; + } else { + $this->f = $this->SSRegression / ($this->SSResiduals / $this->DFResiduals); + } + } else { + if ($this->DFResiduals == 0.0) { + $this->f = 0.0; + } else { + $this->f = $this->SSRegression / $this->DFResiduals; + } + } + } + + private function sumSquares(array $values) + { + return array_sum( + array_map( + function ($value) { + return $value ** 2; + }, + $values + ) + ); + } + + /** + * @param float[] $yValues + * @param float[] $xValues + */ + protected function leastSquareFit(array $yValues, array $xValues, bool $const): void + { + // calculate sums + $sumValuesX = array_sum($xValues); + $sumValuesY = array_sum($yValues); + $meanValueX = $sumValuesX / $this->valueCount; + $meanValueY = $sumValuesY / $this->valueCount; + $sumSquaresX = $this->sumSquares($xValues); + $sumSquaresY = $this->sumSquares($yValues); + $mBase = $mDivisor = 0.0; + $xy_sum = 0.0; + for ($i = 0; $i < $this->valueCount; ++$i) { + $xy_sum += $xValues[$i] * $yValues[$i]; + + if ($const === true) { + $mBase += ($xValues[$i] - $meanValueX) * ($yValues[$i] - $meanValueY); + $mDivisor += ($xValues[$i] - $meanValueX) * ($xValues[$i] - $meanValueX); + } else { + $mBase += $xValues[$i] * $yValues[$i]; + $mDivisor += $xValues[$i] * $xValues[$i]; + } + } + + // calculate slope + $this->slope = $mBase / $mDivisor; + + // calculate intersect + $this->intersect = ($const === true) ? $meanValueY - ($this->slope * $meanValueX) : 0.0; + + $this->calculateGoodnessOfFit($sumValuesX, $sumValuesY, $sumSquaresX, $sumSquaresY, $xy_sum, $meanValueX, $meanValueY, $const); + } + + /** + * Define the regression. + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + */ + public function __construct($yValues, $xValues = []) + { + // Calculate number of points + $yValueCount = count($yValues); + $xValueCount = count($xValues); + + // Define X Values if necessary + if ($xValueCount === 0) { + $xValues = range(1, $yValueCount); + } elseif ($yValueCount !== $xValueCount) { + // Ensure both arrays of points are the same size + $this->error = true; + } + + $this->valueCount = $yValueCount; + $this->xValues = $xValues; + $this->yValues = $yValues; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/ExponentialBestFit.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/ExponentialBestFit.php new file mode 100644 index 0000000..eb8cd74 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/ExponentialBestFit.php @@ -0,0 +1,119 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\Trend; + +class ExponentialBestFit extends BestFit +{ + /** + * Algorithm type to use for best-fit + * (Name of this Trend class). + * + * @var string + */ + protected $bestFitType = 'exponential'; + + /** + * Return the Y-Value for a specified value of X. + * + * @param float $xValue X-Value + * + * @return float Y-Value + */ + public function getValueOfYForX($xValue) + { + return $this->getIntersect() * $this->getSlope() ** ($xValue - $this->xOffset); + } + + /** + * Return the X-Value for a specified value of Y. + * + * @param float $yValue Y-Value + * + * @return float X-Value + */ + public function getValueOfXForY($yValue) + { + return log(($yValue + $this->yOffset) / $this->getIntersect()) / log($this->getSlope()); + } + + /** + * Return the Equation of the best-fit line. + * + * @param int $dp Number of places of decimal precision to display + * + * @return string + */ + public function getEquation($dp = 0) + { + $slope = $this->getSlope($dp); + $intersect = $this->getIntersect($dp); + + return 'Y = ' . $intersect . ' * ' . $slope . '^X'; + } + + /** + * Return the Slope of the line. + * + * @param int $dp Number of places of decimal precision to display + * + * @return float + */ + public function getSlope($dp = 0) + { + if ($dp != 0) { + return round(exp($this->slope), $dp); + } + + return exp($this->slope); + } + + /** + * Return the Value of X where it intersects Y = 0. + * + * @param int $dp Number of places of decimal precision to display + * + * @return float + */ + public function getIntersect($dp = 0) + { + if ($dp != 0) { + return round(exp($this->intersect), $dp); + } + + return exp($this->intersect); + } + + /** + * Execute the regression and calculate the goodness of fit for a set of X and Y data values. + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + */ + private function exponentialRegression(array $yValues, array $xValues, bool $const): void + { + $adjustedYValues = array_map( + function ($value) { + return ($value < 0.0) ? 0 - log(abs($value)) : log($value); + }, + $yValues + ); + + $this->leastSquareFit($adjustedYValues, $xValues, $const); + } + + /** + * Define the regression and calculate the goodness of fit for a set of X and Y data values. + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + * @param bool $const + */ + public function __construct($yValues, $xValues = [], $const = true) + { + parent::__construct($yValues, $xValues); + + if (!$this->error) { + $this->exponentialRegression($yValues, $xValues, (bool) $const); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/LinearBestFit.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/LinearBestFit.php new file mode 100644 index 0000000..65d6b4f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/LinearBestFit.php @@ -0,0 +1,80 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\Trend; + +class LinearBestFit extends BestFit +{ + /** + * Algorithm type to use for best-fit + * (Name of this Trend class). + * + * @var string + */ + protected $bestFitType = 'linear'; + + /** + * Return the Y-Value for a specified value of X. + * + * @param float $xValue X-Value + * + * @return float Y-Value + */ + public function getValueOfYForX($xValue) + { + return $this->getIntersect() + $this->getSlope() * $xValue; + } + + /** + * Return the X-Value for a specified value of Y. + * + * @param float $yValue Y-Value + * + * @return float X-Value + */ + public function getValueOfXForY($yValue) + { + return ($yValue - $this->getIntersect()) / $this->getSlope(); + } + + /** + * Return the Equation of the best-fit line. + * + * @param int $dp Number of places of decimal precision to display + * + * @return string + */ + public function getEquation($dp = 0) + { + $slope = $this->getSlope($dp); + $intersect = $this->getIntersect($dp); + + return 'Y = ' . $intersect . ' + ' . $slope . ' * X'; + } + + /** + * Execute the regression and calculate the goodness of fit for a set of X and Y data values. + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + */ + private function linearRegression(array $yValues, array $xValues, bool $const): void + { + $this->leastSquareFit($yValues, $xValues, $const); + } + + /** + * Define the regression and calculate the goodness of fit for a set of X and Y data values. + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + * @param bool $const + */ + public function __construct($yValues, $xValues = [], $const = true) + { + parent::__construct($yValues, $xValues); + + if (!$this->error) { + $this->linearRegression($yValues, $xValues, (bool) $const); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/LogarithmicBestFit.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/LogarithmicBestFit.php new file mode 100644 index 0000000..2366dc6 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/LogarithmicBestFit.php @@ -0,0 +1,87 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\Trend; + +class LogarithmicBestFit extends BestFit +{ + /** + * Algorithm type to use for best-fit + * (Name of this Trend class). + * + * @var string + */ + protected $bestFitType = 'logarithmic'; + + /** + * Return the Y-Value for a specified value of X. + * + * @param float $xValue X-Value + * + * @return float Y-Value + */ + public function getValueOfYForX($xValue) + { + return $this->getIntersect() + $this->getSlope() * log($xValue - $this->xOffset); + } + + /** + * Return the X-Value for a specified value of Y. + * + * @param float $yValue Y-Value + * + * @return float X-Value + */ + public function getValueOfXForY($yValue) + { + return exp(($yValue - $this->getIntersect()) / $this->getSlope()); + } + + /** + * Return the Equation of the best-fit line. + * + * @param int $dp Number of places of decimal precision to display + * + * @return string + */ + public function getEquation($dp = 0) + { + $slope = $this->getSlope($dp); + $intersect = $this->getIntersect($dp); + + return 'Y = ' . $slope . ' * log(' . $intersect . ' * X)'; + } + + /** + * Execute the regression and calculate the goodness of fit for a set of X and Y data values. + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + */ + private function logarithmicRegression(array $yValues, array $xValues, bool $const): void + { + $adjustedYValues = array_map( + function ($value) { + return ($value < 0.0) ? 0 - log(abs($value)) : log($value); + }, + $yValues + ); + + $this->leastSquareFit($adjustedYValues, $xValues, $const); + } + + /** + * Define the regression and calculate the goodness of fit for a set of X and Y data values. + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + * @param bool $const + */ + public function __construct($yValues, $xValues = [], $const = true) + { + parent::__construct($yValues, $xValues); + + if (!$this->error) { + $this->logarithmicRegression($yValues, $xValues, (bool) $const); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/PolynomialBestFit.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/PolynomialBestFit.php new file mode 100644 index 0000000..b10a0a1 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/PolynomialBestFit.php @@ -0,0 +1,203 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\Trend; + +use PhpOffice\PhpSpreadsheet\Shared\JAMA\Matrix; + +class PolynomialBestFit extends BestFit +{ + /** + * Algorithm type to use for best-fit + * (Name of this Trend class). + * + * @var string + */ + protected $bestFitType = 'polynomial'; + + /** + * Polynomial order. + * + * @var int + */ + protected $order = 0; + + /** + * Return the order of this polynomial. + * + * @return int + */ + public function getOrder() + { + return $this->order; + } + + /** + * Return the Y-Value for a specified value of X. + * + * @param float $xValue X-Value + * + * @return float Y-Value + */ + public function getValueOfYForX($xValue) + { + $retVal = $this->getIntersect(); + $slope = $this->getSlope(); + // @phpstan-ignore-next-line + foreach ($slope as $key => $value) { + if ($value != 0.0) { + $retVal += $value * $xValue ** ($key + 1); + } + } + + return $retVal; + } + + /** + * Return the X-Value for a specified value of Y. + * + * @param float $yValue Y-Value + * + * @return float X-Value + */ + public function getValueOfXForY($yValue) + { + return ($yValue - $this->getIntersect()) / $this->getSlope(); + } + + /** + * Return the Equation of the best-fit line. + * + * @param int $dp Number of places of decimal precision to display + * + * @return string + */ + public function getEquation($dp = 0) + { + $slope = $this->getSlope($dp); + $intersect = $this->getIntersect($dp); + + $equation = 'Y = ' . $intersect; + // @phpstan-ignore-next-line + foreach ($slope as $key => $value) { + if ($value != 0.0) { + $equation .= ' + ' . $value . ' * X'; + if ($key > 0) { + $equation .= '^' . ($key + 1); + } + } + } + + return $equation; + } + + /** + * Return the Slope of the line. + * + * @param int $dp Number of places of decimal precision to display + * + * @return float + */ + public function getSlope($dp = 0) + { + if ($dp != 0) { + $coefficients = []; + foreach ($this->slope as $coefficient) { + $coefficients[] = round($coefficient, $dp); + } + + // @phpstan-ignore-next-line + return $coefficients; + } + + return $this->slope; + } + + public function getCoefficients($dp = 0) + { + // @phpstan-ignore-next-line + return array_merge([$this->getIntersect($dp)], $this->getSlope($dp)); + } + + /** + * Execute the regression and calculate the goodness of fit for a set of X and Y data values. + * + * @param int $order Order of Polynomial for this regression + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + */ + private function polynomialRegression($order, $yValues, $xValues): void + { + // calculate sums + $x_sum = array_sum($xValues); + $y_sum = array_sum($yValues); + $xx_sum = $xy_sum = $yy_sum = 0; + for ($i = 0; $i < $this->valueCount; ++$i) { + $xy_sum += $xValues[$i] * $yValues[$i]; + $xx_sum += $xValues[$i] * $xValues[$i]; + $yy_sum += $yValues[$i] * $yValues[$i]; + } + /* + * This routine uses logic from the PHP port of polyfit version 0.1 + * written by Michael Bommarito and Paul Meagher + * + * The function fits a polynomial function of order $order through + * a series of x-y data points using least squares. + * + */ + $A = []; + $B = []; + for ($i = 0; $i < $this->valueCount; ++$i) { + for ($j = 0; $j <= $order; ++$j) { + $A[$i][$j] = $xValues[$i] ** $j; + } + } + for ($i = 0; $i < $this->valueCount; ++$i) { + $B[$i] = [$yValues[$i]]; + } + $matrixA = new Matrix($A); + $matrixB = new Matrix($B); + $C = $matrixA->solve($matrixB); + + $coefficients = []; + for ($i = 0; $i < $C->getRowDimension(); ++$i) { + $r = $C->get($i, 0); + if (abs($r) <= 10 ** (-9)) { + $r = 0; + } + $coefficients[] = $r; + } + + $this->intersect = array_shift($coefficients); + $this->slope = $coefficients; + + $this->calculateGoodnessOfFit($x_sum, $y_sum, $xx_sum, $yy_sum, $xy_sum, 0, 0, 0); + foreach ($this->xValues as $xKey => $xValue) { + $this->yBestFitValues[$xKey] = $this->getValueOfYForX($xValue); + } + } + + /** + * Define the regression and calculate the goodness of fit for a set of X and Y data values. + * + * @param int $order Order of Polynomial for this regression + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + */ + public function __construct($order, $yValues, $xValues = []) + { + parent::__construct($yValues, $xValues); + + if (!$this->error) { + if ($order < $this->valueCount) { + $this->bestFitType .= '_' . $order; + $this->order = $order; + $this->polynomialRegression($order, $yValues, $xValues); + if (($this->getGoodnessOfFit() < 0.0) || ($this->getGoodnessOfFit() > 1.0)) { + $this->error = true; + } + } else { + $this->error = true; + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/PowerBestFit.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/PowerBestFit.php new file mode 100644 index 0000000..cafd011 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/PowerBestFit.php @@ -0,0 +1,109 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\Trend; + +class PowerBestFit extends BestFit +{ + /** + * Algorithm type to use for best-fit + * (Name of this Trend class). + * + * @var string + */ + protected $bestFitType = 'power'; + + /** + * Return the Y-Value for a specified value of X. + * + * @param float $xValue X-Value + * + * @return float Y-Value + */ + public function getValueOfYForX($xValue) + { + return $this->getIntersect() * ($xValue - $this->xOffset) ** $this->getSlope(); + } + + /** + * Return the X-Value for a specified value of Y. + * + * @param float $yValue Y-Value + * + * @return float X-Value + */ + public function getValueOfXForY($yValue) + { + return (($yValue + $this->yOffset) / $this->getIntersect()) ** (1 / $this->getSlope()); + } + + /** + * Return the Equation of the best-fit line. + * + * @param int $dp Number of places of decimal precision to display + * + * @return string + */ + public function getEquation($dp = 0) + { + $slope = $this->getSlope($dp); + $intersect = $this->getIntersect($dp); + + return 'Y = ' . $intersect . ' * X^' . $slope; + } + + /** + * Return the Value of X where it intersects Y = 0. + * + * @param int $dp Number of places of decimal precision to display + * + * @return float + */ + public function getIntersect($dp = 0) + { + if ($dp != 0) { + return round(exp($this->intersect), $dp); + } + + return exp($this->intersect); + } + + /** + * Execute the regression and calculate the goodness of fit for a set of X and Y data values. + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + */ + private function powerRegression(array $yValues, array $xValues, bool $const): void + { + $adjustedYValues = array_map( + function ($value) { + return ($value < 0.0) ? 0 - log(abs($value)) : log($value); + }, + $yValues + ); + $adjustedXValues = array_map( + function ($value) { + return ($value < 0.0) ? 0 - log(abs($value)) : log($value); + }, + $xValues + ); + + $this->leastSquareFit($adjustedYValues, $adjustedXValues, $const); + } + + /** + * Define the regression and calculate the goodness of fit for a set of X and Y data values. + * + * @param float[] $yValues The set of Y-values for this regression + * @param float[] $xValues The set of X-values for this regression + * @param bool $const + */ + public function __construct($yValues, $xValues = [], $const = true) + { + parent::__construct($yValues, $xValues); + + if (!$this->error) { + $this->powerRegression($yValues, $xValues, (bool) $const); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/Trend.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/Trend.php new file mode 100644 index 0000000..929f59b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/Trend.php @@ -0,0 +1,122 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared\Trend; + +class Trend +{ + const TREND_LINEAR = 'Linear'; + const TREND_LOGARITHMIC = 'Logarithmic'; + const TREND_EXPONENTIAL = 'Exponential'; + const TREND_POWER = 'Power'; + const TREND_POLYNOMIAL_2 = 'Polynomial_2'; + const TREND_POLYNOMIAL_3 = 'Polynomial_3'; + const TREND_POLYNOMIAL_4 = 'Polynomial_4'; + const TREND_POLYNOMIAL_5 = 'Polynomial_5'; + const TREND_POLYNOMIAL_6 = 'Polynomial_6'; + const TREND_BEST_FIT = 'Bestfit'; + const TREND_BEST_FIT_NO_POLY = 'Bestfit_no_Polynomials'; + + /** + * Names of the best-fit Trend analysis methods. + * + * @var string[] + */ + private static $trendTypes = [ + self::TREND_LINEAR, + self::TREND_LOGARITHMIC, + self::TREND_EXPONENTIAL, + self::TREND_POWER, + ]; + + /** + * Names of the best-fit Trend polynomial orders. + * + * @var string[] + */ + private static $trendTypePolynomialOrders = [ + self::TREND_POLYNOMIAL_2, + self::TREND_POLYNOMIAL_3, + self::TREND_POLYNOMIAL_4, + self::TREND_POLYNOMIAL_5, + self::TREND_POLYNOMIAL_6, + ]; + + /** + * Cached results for each method when trying to identify which provides the best fit. + * + * @var BestFit[] + */ + private static $trendCache = []; + + public static function calculate($trendType = self::TREND_BEST_FIT, $yValues = [], $xValues = [], $const = true) + { + // Calculate number of points in each dataset + $nY = count($yValues); + $nX = count($xValues); + + // Define X Values if necessary + if ($nX === 0) { + $xValues = range(1, $nY); + } elseif ($nY !== $nX) { + // Ensure both arrays of points are the same size + trigger_error('Trend(): Number of elements in coordinate arrays do not match.', E_USER_ERROR); + } + + $key = md5($trendType . $const . serialize($yValues) . serialize($xValues)); + // Determine which Trend method has been requested + switch ($trendType) { + // Instantiate and return the class for the requested Trend method + case self::TREND_LINEAR: + case self::TREND_LOGARITHMIC: + case self::TREND_EXPONENTIAL: + case self::TREND_POWER: + if (!isset(self::$trendCache[$key])) { + $className = '\PhpOffice\PhpSpreadsheet\Shared\Trend\\' . $trendType . 'BestFit'; + // @phpstan-ignore-next-line + self::$trendCache[$key] = new $className($yValues, $xValues, $const); + } + + return self::$trendCache[$key]; + case self::TREND_POLYNOMIAL_2: + case self::TREND_POLYNOMIAL_3: + case self::TREND_POLYNOMIAL_4: + case self::TREND_POLYNOMIAL_5: + case self::TREND_POLYNOMIAL_6: + if (!isset(self::$trendCache[$key])) { + $order = (int) substr($trendType, -1); + self::$trendCache[$key] = new PolynomialBestFit($order, $yValues, $xValues); + } + + return self::$trendCache[$key]; + case self::TREND_BEST_FIT: + case self::TREND_BEST_FIT_NO_POLY: + // If the request is to determine the best fit regression, then we test each Trend line in turn + // Start by generating an instance of each available Trend method + $bestFit = []; + $bestFitValue = []; + foreach (self::$trendTypes as $trendMethod) { + $className = '\PhpOffice\PhpSpreadsheet\Shared\Trend\\' . $trendType . 'BestFit'; + $bestFit[$trendMethod] = new $className($yValues, $xValues, $const); + $bestFitValue[$trendMethod] = $bestFit[$trendMethod]->getGoodnessOfFit(); + } + if ($trendType != self::TREND_BEST_FIT_NO_POLY) { + foreach (self::$trendTypePolynomialOrders as $trendMethod) { + $order = (int) substr($trendMethod, -1); + $bestFit[$trendMethod] = new PolynomialBestFit($order, $yValues, $xValues); + if ($bestFit[$trendMethod]->getError()) { + unset($bestFit[$trendMethod]); + } else { + $bestFitValue[$trendMethod] = $bestFit[$trendMethod]->getGoodnessOfFit(); + } + } + } + // Determine which of our Trend lines is the best fit, and then we return the instance of that Trend class + arsort($bestFitValue); + $bestFitType = key($bestFitValue); + + return $bestFit[$bestFitType]; + default: + return false; + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/XMLWriter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/XMLWriter.php new file mode 100644 index 0000000..3dc0aad --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/XMLWriter.php @@ -0,0 +1,94 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared; + +class XMLWriter extends \XMLWriter +{ + public static $debugEnabled = false; + + /** Temporary storage method */ + const STORAGE_MEMORY = 1; + const STORAGE_DISK = 2; + + /** + * Temporary filename. + * + * @var string + */ + private $tempFileName = ''; + + /** + * Create a new XMLWriter instance. + * + * @param int $temporaryStorage Temporary storage location + * @param string $temporaryStorageFolder Temporary storage folder + */ + public function __construct($temporaryStorage = self::STORAGE_MEMORY, $temporaryStorageFolder = null) + { + // Open temporary storage + if ($temporaryStorage == self::STORAGE_MEMORY) { + $this->openMemory(); + } else { + // Create temporary filename + if ($temporaryStorageFolder === null) { + $temporaryStorageFolder = File::sysGetTempDir(); + } + $this->tempFileName = @tempnam($temporaryStorageFolder, 'xml'); + + // Open storage + if ($this->openUri($this->tempFileName) === false) { + // Fallback to memory... + $this->openMemory(); + } + } + + // Set default values + if (self::$debugEnabled) { + $this->setIndent(true); + } + } + + /** + * Destructor. + */ + public function __destruct() + { + // Unlink temporary files + // There is nothing reasonable to do if unlink fails. + if ($this->tempFileName != '') { + /** @scrutinizer ignore-unhandled */ + @unlink($this->tempFileName); + } + } + + /** + * Get written data. + * + * @return string + */ + public function getData() + { + if ($this->tempFileName == '') { + return $this->outputMemory(true); + } + $this->flush(); + + return file_get_contents($this->tempFileName); + } + + /** + * Wrapper method for writeRaw. + * + * @param null|string|string[] $rawTextData + * + * @return bool + */ + public function writeRawData($rawTextData) + { + if (is_array($rawTextData)) { + $rawTextData = implode("\n", $rawTextData); + } + + return $this->writeRaw(htmlspecialchars($rawTextData ?? '')); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Xls.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Xls.php new file mode 100644 index 0000000..2c3198b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Xls.php @@ -0,0 +1,277 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Shared; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Helper\Dimension; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class Xls +{ + /** + * Get the width of a column in pixels. We use the relationship y = ceil(7x) where + * x is the width in intrinsic Excel units (measuring width in number of normal characters) + * This holds for Arial 10. + * + * @param Worksheet $worksheet The sheet + * @param string $col The column + * + * @return int The width in pixels + */ + public static function sizeCol(Worksheet $worksheet, $col = 'A') + { + // default font of the workbook + $font = $worksheet->getParent()->getDefaultStyle()->getFont(); + + $columnDimensions = $worksheet->getColumnDimensions(); + + // first find the true column width in pixels (uncollapsed and unhidden) + if (isset($columnDimensions[$col]) && $columnDimensions[$col]->getWidth() != -1) { + // then we have column dimension with explicit width + $columnDimension = $columnDimensions[$col]; + $width = $columnDimension->getWidth(); + $pixelWidth = Drawing::cellDimensionToPixels($width, $font); + } elseif ($worksheet->getDefaultColumnDimension()->getWidth() != -1) { + // then we have default column dimension with explicit width + $defaultColumnDimension = $worksheet->getDefaultColumnDimension(); + $width = $defaultColumnDimension->getWidth(); + $pixelWidth = Drawing::cellDimensionToPixels($width, $font); + } else { + // we don't even have any default column dimension. Width depends on default font + $pixelWidth = Font::getDefaultColumnWidthByFont($font, true); + } + + // now find the effective column width in pixels + if (isset($columnDimensions[$col]) && !$columnDimensions[$col]->getVisible()) { + $effectivePixelWidth = 0; + } else { + $effectivePixelWidth = $pixelWidth; + } + + return $effectivePixelWidth; + } + + /** + * Convert the height of a cell from user's units to pixels. By interpolation + * the relationship is: y = 4/3x. If the height hasn't been set by the user we + * use the default value. If the row is hidden we use a value of zero. + * + * @param Worksheet $worksheet The sheet + * @param int $row The row index (1-based) + * + * @return int The width in pixels + */ + public static function sizeRow(Worksheet $worksheet, $row = 1) + { + // default font of the workbook + $font = $worksheet->getParent()->getDefaultStyle()->getFont(); + + $rowDimensions = $worksheet->getRowDimensions(); + + // first find the true row height in pixels (uncollapsed and unhidden) + if (isset($rowDimensions[$row]) && $rowDimensions[$row]->getRowHeight() != -1) { + // then we have a row dimension + $rowDimension = $rowDimensions[$row]; + $rowHeight = $rowDimension->getRowHeight(); + $pixelRowHeight = (int) ceil(4 * $rowHeight / 3); // here we assume Arial 10 + } elseif ($worksheet->getDefaultRowDimension()->getRowHeight() != -1) { + // then we have a default row dimension with explicit height + $defaultRowDimension = $worksheet->getDefaultRowDimension(); + $pixelRowHeight = $defaultRowDimension->getRowHeight(Dimension::UOM_PIXELS); + } else { + // we don't even have any default row dimension. Height depends on default font + $pointRowHeight = Font::getDefaultRowHeightByFont($font); + $pixelRowHeight = Font::fontSizeToPixels((int) $pointRowHeight); + } + + // now find the effective row height in pixels + if (isset($rowDimensions[$row]) && !$rowDimensions[$row]->getVisible()) { + $effectivePixelRowHeight = 0; + } else { + $effectivePixelRowHeight = $pixelRowHeight; + } + + return (int) $effectivePixelRowHeight; + } + + /** + * Get the horizontal distance in pixels between two anchors + * The distanceX is found as sum of all the spanning columns widths minus correction for the two offsets. + * + * @param string $startColumn + * @param int $startOffsetX Offset within start cell measured in 1/1024 of the cell width + * @param string $endColumn + * @param int $endOffsetX Offset within end cell measured in 1/1024 of the cell width + * + * @return int Horizontal measured in pixels + */ + public static function getDistanceX(Worksheet $worksheet, $startColumn = 'A', $startOffsetX = 0, $endColumn = 'A', $endOffsetX = 0) + { + $distanceX = 0; + + // add the widths of the spanning columns + $startColumnIndex = Coordinate::columnIndexFromString($startColumn); + $endColumnIndex = Coordinate::columnIndexFromString($endColumn); + for ($i = $startColumnIndex; $i <= $endColumnIndex; ++$i) { + $distanceX += self::sizeCol($worksheet, Coordinate::stringFromColumnIndex($i)); + } + + // correct for offsetX in startcell + $distanceX -= (int) floor(self::sizeCol($worksheet, $startColumn) * $startOffsetX / 1024); + + // correct for offsetX in endcell + $distanceX -= (int) floor(self::sizeCol($worksheet, $endColumn) * (1 - $endOffsetX / 1024)); + + return $distanceX; + } + + /** + * Get the vertical distance in pixels between two anchors + * The distanceY is found as sum of all the spanning rows minus two offsets. + * + * @param int $startRow (1-based) + * @param int $startOffsetY Offset within start cell measured in 1/256 of the cell height + * @param int $endRow (1-based) + * @param int $endOffsetY Offset within end cell measured in 1/256 of the cell height + * + * @return int Vertical distance measured in pixels + */ + public static function getDistanceY(Worksheet $worksheet, $startRow = 1, $startOffsetY = 0, $endRow = 1, $endOffsetY = 0) + { + $distanceY = 0; + + // add the widths of the spanning rows + for ($row = $startRow; $row <= $endRow; ++$row) { + $distanceY += self::sizeRow($worksheet, $row); + } + + // correct for offsetX in startcell + $distanceY -= (int) floor(self::sizeRow($worksheet, $startRow) * $startOffsetY / 256); + + // correct for offsetX in endcell + $distanceY -= (int) floor(self::sizeRow($worksheet, $endRow) * (1 - $endOffsetY / 256)); + + return $distanceY; + } + + /** + * Convert 1-cell anchor coordinates to 2-cell anchor coordinates + * This function is ported from PEAR Spreadsheet_Writer_Excel with small modifications. + * + * Calculate the vertices that define the position of the image as required by + * the OBJ record. + * + * +------------+------------+ + * | A | B | + * +-----+------------+------------+ + * | |(x1,y1) | | + * | 1 |(A1)._______|______ | + * | | | | | + * | | | | | + * +-----+----| BITMAP |-----+ + * | | | | | + * | 2 | |______________. | + * | | | (B2)| + * | | | (x2,y2)| + * +---- +------------+------------+ + * + * Example of a bitmap that covers some of the area from cell A1 to cell B2. + * + * Based on the width and height of the bitmap we need to calculate 8 vars: + * $col_start, $row_start, $col_end, $row_end, $x1, $y1, $x2, $y2. + * The width and height of the cells are also variable and have to be taken into + * account. + * The values of $col_start and $row_start are passed in from the calling + * function. The values of $col_end and $row_end are calculated by subtracting + * the width and height of the bitmap from the width and height of the + * underlying cells. + * The vertices are expressed as a percentage of the underlying cell width as + * follows (rhs values are in pixels): + * + * x1 = X / W *1024 + * y1 = Y / H *256 + * x2 = (X-1) / W *1024 + * y2 = (Y-1) / H *256 + * + * Where: X is distance from the left side of the underlying cell + * Y is distance from the top of the underlying cell + * W is the width of the cell + * H is the height of the cell + * + * @param string $coordinates E.g. 'A1' + * @param int $offsetX Horizontal offset in pixels + * @param int $offsetY Vertical offset in pixels + * @param int $width Width in pixels + * @param int $height Height in pixels + * + * @return null|array + */ + public static function oneAnchor2twoAnchor(Worksheet $worksheet, $coordinates, $offsetX, $offsetY, $width, $height) + { + [$col_start, $row] = Coordinate::indexesFromString($coordinates); + $row_start = $row - 1; + + $x1 = $offsetX; + $y1 = $offsetY; + + // Initialise end cell to the same as the start cell + $col_end = $col_start; // Col containing lower right corner of object + $row_end = $row_start; // Row containing bottom right corner of object + + // Zero the specified offset if greater than the cell dimensions + if ($x1 >= self::sizeCol($worksheet, Coordinate::stringFromColumnIndex($col_start))) { + $x1 = 0; + } + if ($y1 >= self::sizeRow($worksheet, $row_start + 1)) { + $y1 = 0; + } + + $width = $width + $x1 - 1; + $height = $height + $y1 - 1; + + // Subtract the underlying cell widths to find the end cell of the image + while ($width >= self::sizeCol($worksheet, Coordinate::stringFromColumnIndex($col_end))) { + $width -= self::sizeCol($worksheet, Coordinate::stringFromColumnIndex($col_end)); + ++$col_end; + } + + // Subtract the underlying cell heights to find the end cell of the image + while ($height >= self::sizeRow($worksheet, $row_end + 1)) { + $height -= self::sizeRow($worksheet, $row_end + 1); + ++$row_end; + } + + // Bitmap isn't allowed to start or finish in a hidden cell, i.e. a cell + // with zero height or width. + if (self::sizeCol($worksheet, Coordinate::stringFromColumnIndex($col_start)) == 0) { + return null; + } + if (self::sizeCol($worksheet, Coordinate::stringFromColumnIndex($col_end)) == 0) { + return null; + } + if (self::sizeRow($worksheet, $row_start + 1) == 0) { + return null; + } + if (self::sizeRow($worksheet, $row_end + 1) == 0) { + return null; + } + + // Convert the pixel values to the percentage value expected by Excel + $x1 = $x1 / self::sizeCol($worksheet, Coordinate::stringFromColumnIndex($col_start)) * 1024; + $y1 = $y1 / self::sizeRow($worksheet, $row_start + 1) * 256; + $x2 = ($width + 1) / self::sizeCol($worksheet, Coordinate::stringFromColumnIndex($col_end)) * 1024; // Distance to right side of object + $y2 = ($height + 1) / self::sizeRow($worksheet, $row_end + 1) * 256; // Distance to bottom of object + + $startCoordinates = Coordinate::stringFromColumnIndex($col_start) . ($row_start + 1); + $endCoordinates = Coordinate::stringFromColumnIndex($col_end) . ($row_end + 1); + + return [ + 'startCoordinates' => $startCoordinates, + 'startOffsetX' => $x1, + 'startOffsetY' => $y1, + 'endCoordinates' => $endCoordinates, + 'endOffsetX' => $x2, + 'endOffsetY' => $y2, + ]; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Spreadsheet.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Spreadsheet.php new file mode 100644 index 0000000..33b4fe0 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Spreadsheet.php @@ -0,0 +1,1628 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Style\Style; +use PhpOffice\PhpSpreadsheet\Worksheet\Iterator; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class Spreadsheet +{ + // Allowable values for workbook window visilbity + const VISIBILITY_VISIBLE = 'visible'; + const VISIBILITY_HIDDEN = 'hidden'; + const VISIBILITY_VERY_HIDDEN = 'veryHidden'; + + private const DEFINED_NAME_IS_RANGE = false; + private const DEFINED_NAME_IS_FORMULA = true; + + private static $workbookViewVisibilityValues = [ + self::VISIBILITY_VISIBLE, + self::VISIBILITY_HIDDEN, + self::VISIBILITY_VERY_HIDDEN, + ]; + + /** + * Unique ID. + * + * @var string + */ + private $uniqueID; + + /** + * Document properties. + * + * @var Document\Properties + */ + private $properties; + + /** + * Document security. + * + * @var Document\Security + */ + private $security; + + /** + * Collection of Worksheet objects. + * + * @var Worksheet[] + */ + private $workSheetCollection = []; + + /** + * Calculation Engine. + * + * @var null|Calculation + */ + private $calculationEngine; + + /** + * Active sheet index. + * + * @var int + */ + private $activeSheetIndex = 0; + + /** + * Named ranges. + * + * @var DefinedName[] + */ + private $definedNames = []; + + /** + * CellXf supervisor. + * + * @var Style + */ + private $cellXfSupervisor; + + /** + * CellXf collection. + * + * @var Style[] + */ + private $cellXfCollection = []; + + /** + * CellStyleXf collection. + * + * @var Style[] + */ + private $cellStyleXfCollection = []; + + /** + * hasMacros : this workbook have macros ? + * + * @var bool + */ + private $hasMacros = false; + + /** + * macrosCode : all macros code as binary data (the vbaProject.bin file, this include form, code, etc.), null if no macro. + * + * @var null|string + */ + private $macrosCode; + + /** + * macrosCertificate : if macros are signed, contains binary data vbaProjectSignature.bin file, null if not signed. + * + * @var null|string + */ + private $macrosCertificate; + + /** + * ribbonXMLData : null if workbook is'nt Excel 2007 or not contain a customized UI. + * + * @var null|array{target: string, data: string} + */ + private $ribbonXMLData; + + /** + * ribbonBinObjects : null if workbook is'nt Excel 2007 or not contain embedded objects (picture(s)) for Ribbon Elements + * ignored if $ribbonXMLData is null. + * + * @var null|array + */ + private $ribbonBinObjects; + + /** + * List of unparsed loaded data for export to same format with better compatibility. + * It has to be minimized when the library start to support currently unparsed data. + * + * @var array + */ + private $unparsedLoadedData = []; + + /** + * Controls visibility of the horizonal scroll bar in the application. + * + * @var bool + */ + private $showHorizontalScroll = true; + + /** + * Controls visibility of the horizonal scroll bar in the application. + * + * @var bool + */ + private $showVerticalScroll = true; + + /** + * Controls visibility of the sheet tabs in the application. + * + * @var bool + */ + private $showSheetTabs = true; + + /** + * Specifies a boolean value that indicates whether the workbook window + * is minimized. + * + * @var bool + */ + private $minimized = false; + + /** + * Specifies a boolean value that indicates whether to group dates + * when presenting the user with filtering optiomd in the user + * interface. + * + * @var bool + */ + private $autoFilterDateGrouping = true; + + /** + * Specifies the index to the first sheet in the book view. + * + * @var int + */ + private $firstSheetIndex = 0; + + /** + * Specifies the visible status of the workbook. + * + * @var string + */ + private $visibility = self::VISIBILITY_VISIBLE; + + /** + * Specifies the ratio between the workbook tabs bar and the horizontal + * scroll bar. TabRatio is assumed to be out of 1000 of the horizontal + * window width. + * + * @var int + */ + private $tabRatio = 600; + + /** + * The workbook has macros ? + * + * @return bool + */ + public function hasMacros() + { + return $this->hasMacros; + } + + /** + * Define if a workbook has macros. + * + * @param bool $hasMacros true|false + */ + public function setHasMacros($hasMacros): void + { + $this->hasMacros = (bool) $hasMacros; + } + + /** + * Set the macros code. + * + * @param string $macroCode string|null + */ + public function setMacrosCode($macroCode): void + { + $this->macrosCode = $macroCode; + $this->setHasMacros($macroCode !== null); + } + + /** + * Return the macros code. + * + * @return null|string + */ + public function getMacrosCode() + { + return $this->macrosCode; + } + + /** + * Set the macros certificate. + * + * @param null|string $certificate + */ + public function setMacrosCertificate($certificate): void + { + $this->macrosCertificate = $certificate; + } + + /** + * Is the project signed ? + * + * @return bool true|false + */ + public function hasMacrosCertificate() + { + return $this->macrosCertificate !== null; + } + + /** + * Return the macros certificate. + * + * @return null|string + */ + public function getMacrosCertificate() + { + return $this->macrosCertificate; + } + + /** + * Remove all macros, certificate from spreadsheet. + */ + public function discardMacros(): void + { + $this->hasMacros = false; + $this->macrosCode = null; + $this->macrosCertificate = null; + } + + /** + * set ribbon XML data. + * + * @param null|mixed $target + * @param null|mixed $xmlData + */ + public function setRibbonXMLData($target, $xmlData): void + { + if ($target !== null && $xmlData !== null) { + $this->ribbonXMLData = ['target' => $target, 'data' => $xmlData]; + } else { + $this->ribbonXMLData = null; + } + } + + /** + * retrieve ribbon XML Data. + * + * @param string $what + * + * @return null|array|string + */ + public function getRibbonXMLData($what = 'all') //we need some constants here... + { + $returnData = null; + $what = strtolower($what); + switch ($what) { + case 'all': + $returnData = $this->ribbonXMLData; + + break; + case 'target': + case 'data': + if (is_array($this->ribbonXMLData)) { + $returnData = $this->ribbonXMLData[$what]; + } + + break; + } + + return $returnData; + } + + /** + * store binaries ribbon objects (pictures). + * + * @param null|mixed $BinObjectsNames + * @param null|mixed $BinObjectsData + */ + public function setRibbonBinObjects($BinObjectsNames, $BinObjectsData): void + { + if ($BinObjectsNames !== null && $BinObjectsData !== null) { + $this->ribbonBinObjects = ['names' => $BinObjectsNames, 'data' => $BinObjectsData]; + } else { + $this->ribbonBinObjects = null; + } + } + + /** + * List of unparsed loaded data for export to same format with better compatibility. + * It has to be minimized when the library start to support currently unparsed data. + * + * @internal + * + * @return array + */ + public function getUnparsedLoadedData() + { + return $this->unparsedLoadedData; + } + + /** + * List of unparsed loaded data for export to same format with better compatibility. + * It has to be minimized when the library start to support currently unparsed data. + * + * @internal + */ + public function setUnparsedLoadedData(array $unparsedLoadedData): void + { + $this->unparsedLoadedData = $unparsedLoadedData; + } + + /** + * return the extension of a filename. Internal use for a array_map callback (php<5.3 don't like lambda function). + * + * @param mixed $path + * + * @return string + */ + private function getExtensionOnly($path) + { + $extension = pathinfo($path, PATHINFO_EXTENSION); + + return is_array($extension) ? '' : $extension; + } + + /** + * retrieve Binaries Ribbon Objects. + * + * @param string $what + * + * @return null|array + */ + public function getRibbonBinObjects($what = 'all') + { + $ReturnData = null; + $what = strtolower($what); + switch ($what) { + case 'all': + return $this->ribbonBinObjects; + + break; + case 'names': + case 'data': + if (is_array($this->ribbonBinObjects) && isset($this->ribbonBinObjects[$what])) { + $ReturnData = $this->ribbonBinObjects[$what]; + } + + break; + case 'types': + if ( + is_array($this->ribbonBinObjects) && + isset($this->ribbonBinObjects['data']) && is_array($this->ribbonBinObjects['data']) + ) { + $tmpTypes = array_keys($this->ribbonBinObjects['data']); + $ReturnData = array_unique(array_map([$this, 'getExtensionOnly'], $tmpTypes)); + } else { + $ReturnData = []; // the caller want an array... not null if empty + } + + break; + } + + return $ReturnData; + } + + /** + * This workbook have a custom UI ? + * + * @return bool + */ + public function hasRibbon() + { + return $this->ribbonXMLData !== null; + } + + /** + * This workbook have additionnal object for the ribbon ? + * + * @return bool + */ + public function hasRibbonBinObjects() + { + return $this->ribbonBinObjects !== null; + } + + /** + * Check if a sheet with a specified code name already exists. + * + * @param string $codeName Name of the worksheet to check + * + * @return bool + */ + public function sheetCodeNameExists($codeName) + { + return $this->getSheetByCodeName($codeName) !== null; + } + + /** + * Get sheet by code name. Warning : sheet don't have always a code name ! + * + * @param string $codeName Sheet name + * + * @return null|Worksheet + */ + public function getSheetByCodeName($codeName) + { + $worksheetCount = count($this->workSheetCollection); + for ($i = 0; $i < $worksheetCount; ++$i) { + if ($this->workSheetCollection[$i]->getCodeName() == $codeName) { + return $this->workSheetCollection[$i]; + } + } + + return null; + } + + /** + * Create a new PhpSpreadsheet with one Worksheet. + */ + public function __construct() + { + $this->uniqueID = uniqid('', true); + $this->calculationEngine = new Calculation($this); + + // Initialise worksheet collection and add one worksheet + $this->workSheetCollection = []; + $this->workSheetCollection[] = new Worksheet($this); + $this->activeSheetIndex = 0; + + // Create document properties + $this->properties = new Document\Properties(); + + // Create document security + $this->security = new Document\Security(); + + // Set defined names + $this->definedNames = []; + + // Create the cellXf supervisor + $this->cellXfSupervisor = new Style(true); + $this->cellXfSupervisor->bindParent($this); + + // Create the default style + $this->addCellXf(new Style()); + $this->addCellStyleXf(new Style()); + } + + /** + * Code to execute when this worksheet is unset(). + */ + public function __destruct() + { + $this->disconnectWorksheets(); + $this->calculationEngine = null; + $this->cellXfCollection = []; + $this->cellStyleXfCollection = []; + } + + /** + * Disconnect all worksheets from this PhpSpreadsheet workbook object, + * typically so that the PhpSpreadsheet object can be unset. + */ + public function disconnectWorksheets(): void + { + foreach ($this->workSheetCollection as $worksheet) { + $worksheet->disconnectCells(); + unset($worksheet); + } + $this->workSheetCollection = []; + } + + /** + * Return the calculation engine for this worksheet. + * + * @return null|Calculation + */ + public function getCalculationEngine() + { + return $this->calculationEngine; + } + + /** + * Get properties. + * + * @return Document\Properties + */ + public function getProperties() + { + return $this->properties; + } + + /** + * Set properties. + */ + public function setProperties(Document\Properties $documentProperties): void + { + $this->properties = $documentProperties; + } + + /** + * Get security. + * + * @return Document\Security + */ + public function getSecurity() + { + return $this->security; + } + + /** + * Set security. + */ + public function setSecurity(Document\Security $documentSecurity): void + { + $this->security = $documentSecurity; + } + + /** + * Get active sheet. + * + * @return Worksheet + */ + public function getActiveSheet() + { + return $this->getSheet($this->activeSheetIndex); + } + + /** + * Create sheet and add it to this workbook. + * + * @param null|int $sheetIndex Index where sheet should go (0,1,..., or null for last) + * + * @return Worksheet + */ + public function createSheet($sheetIndex = null) + { + $newSheet = new Worksheet($this); + $this->addSheet($newSheet, $sheetIndex); + + return $newSheet; + } + + /** + * Check if a sheet with a specified name already exists. + * + * @param string $worksheetName Name of the worksheet to check + * + * @return bool + */ + public function sheetNameExists($worksheetName) + { + return $this->getSheetByName($worksheetName) !== null; + } + + /** + * Add sheet. + * + * @param Worksheet $worksheet The worksheet to add + * @param null|int $sheetIndex Index where sheet should go (0,1,..., or null for last) + * + * @return Worksheet + */ + public function addSheet(Worksheet $worksheet, $sheetIndex = null) + { + if ($this->sheetNameExists($worksheet->getTitle())) { + throw new Exception( + "Workbook already contains a worksheet named '{$worksheet->getTitle()}'. Rename this worksheet first." + ); + } + + if ($sheetIndex === null) { + if ($this->activeSheetIndex < 0) { + $this->activeSheetIndex = 0; + } + $this->workSheetCollection[] = $worksheet; + } else { + // Insert the sheet at the requested index + array_splice( + $this->workSheetCollection, + $sheetIndex, + 0, + [$worksheet] + ); + + // Adjust active sheet index if necessary + if ($this->activeSheetIndex >= $sheetIndex) { + ++$this->activeSheetIndex; + } + } + + if ($worksheet->getParent() === null) { + $worksheet->rebindParent($this); + } + + return $worksheet; + } + + /** + * Remove sheet by index. + * + * @param int $sheetIndex Index position of the worksheet to remove + */ + public function removeSheetByIndex($sheetIndex): void + { + $numSheets = count($this->workSheetCollection); + if ($sheetIndex > $numSheets - 1) { + throw new Exception( + "You tried to remove a sheet by the out of bounds index: {$sheetIndex}. The actual number of sheets is {$numSheets}." + ); + } + array_splice($this->workSheetCollection, $sheetIndex, 1); + + // Adjust active sheet index if necessary + if ( + ($this->activeSheetIndex >= $sheetIndex) && + ($this->activeSheetIndex > 0 || $numSheets <= 1) + ) { + --$this->activeSheetIndex; + } + } + + /** + * Get sheet by index. + * + * @param int $sheetIndex Sheet index + * + * @return Worksheet + */ + public function getSheet($sheetIndex) + { + if (!isset($this->workSheetCollection[$sheetIndex])) { + $numSheets = $this->getSheetCount(); + + throw new Exception( + "Your requested sheet index: {$sheetIndex} is out of bounds. The actual number of sheets is {$numSheets}." + ); + } + + return $this->workSheetCollection[$sheetIndex]; + } + + /** + * Get all sheets. + * + * @return Worksheet[] + */ + public function getAllSheets() + { + return $this->workSheetCollection; + } + + /** + * Get sheet by name. + * + * @param string $worksheetName Sheet name + * + * @return null|Worksheet + */ + public function getSheetByName($worksheetName) + { + $worksheetCount = count($this->workSheetCollection); + for ($i = 0; $i < $worksheetCount; ++$i) { + if ($this->workSheetCollection[$i]->getTitle() === trim($worksheetName, "'")) { + return $this->workSheetCollection[$i]; + } + } + + return null; + } + + /** + * Get index for sheet. + * + * @return int index + */ + public function getIndex(Worksheet $worksheet) + { + foreach ($this->workSheetCollection as $key => $value) { + if ($value->getHashCode() === $worksheet->getHashCode()) { + return $key; + } + } + + throw new Exception('Sheet does not exist.'); + } + + /** + * Set index for sheet by sheet name. + * + * @param string $worksheetName Sheet name to modify index for + * @param int $newIndexPosition New index for the sheet + * + * @return int New sheet index + */ + public function setIndexByName($worksheetName, $newIndexPosition) + { + $oldIndex = $this->getIndex($this->getSheetByName($worksheetName)); + $worksheet = array_splice( + $this->workSheetCollection, + $oldIndex, + 1 + ); + array_splice( + $this->workSheetCollection, + $newIndexPosition, + 0, + $worksheet + ); + + return $newIndexPosition; + } + + /** + * Get sheet count. + * + * @return int + */ + public function getSheetCount() + { + return count($this->workSheetCollection); + } + + /** + * Get active sheet index. + * + * @return int Active sheet index + */ + public function getActiveSheetIndex() + { + return $this->activeSheetIndex; + } + + /** + * Set active sheet index. + * + * @param int $worksheetIndex Active sheet index + * + * @return Worksheet + */ + public function setActiveSheetIndex($worksheetIndex) + { + $numSheets = count($this->workSheetCollection); + + if ($worksheetIndex > $numSheets - 1) { + throw new Exception( + "You tried to set a sheet active by the out of bounds index: {$worksheetIndex}. The actual number of sheets is {$numSheets}." + ); + } + $this->activeSheetIndex = $worksheetIndex; + + return $this->getActiveSheet(); + } + + /** + * Set active sheet index by name. + * + * @param string $worksheetName Sheet title + * + * @return Worksheet + */ + public function setActiveSheetIndexByName($worksheetName) + { + if (($worksheet = $this->getSheetByName($worksheetName)) instanceof Worksheet) { + $this->setActiveSheetIndex($this->getIndex($worksheet)); + + return $worksheet; + } + + throw new Exception('Workbook does not contain sheet:' . $worksheetName); + } + + /** + * Get sheet names. + * + * @return string[] + */ + public function getSheetNames() + { + $returnValue = []; + $worksheetCount = $this->getSheetCount(); + for ($i = 0; $i < $worksheetCount; ++$i) { + $returnValue[] = $this->getSheet($i)->getTitle(); + } + + return $returnValue; + } + + /** + * Add external sheet. + * + * @param Worksheet $worksheet External sheet to add + * @param null|int $sheetIndex Index where sheet should go (0,1,..., or null for last) + * + * @return Worksheet + */ + public function addExternalSheet(Worksheet $worksheet, $sheetIndex = null) + { + if ($this->sheetNameExists($worksheet->getTitle())) { + throw new Exception("Workbook already contains a worksheet named '{$worksheet->getTitle()}'. Rename the external sheet first."); + } + + // count how many cellXfs there are in this workbook currently, we will need this below + $countCellXfs = count($this->cellXfCollection); + + // copy all the shared cellXfs from the external workbook and append them to the current + foreach ($worksheet->getParent()->getCellXfCollection() as $cellXf) { + $this->addCellXf(clone $cellXf); + } + + // move sheet to this workbook + $worksheet->rebindParent($this); + + // update the cellXfs + foreach ($worksheet->getCoordinates(false) as $coordinate) { + $cell = $worksheet->getCell($coordinate); + $cell->setXfIndex($cell->getXfIndex() + $countCellXfs); + } + + // update the column dimensions Xfs + foreach ($worksheet->getColumnDimensions() as $columnDimension) { + $columnDimension->setXfIndex($columnDimension->getXfIndex() + $countCellXfs); + } + + // update the row dimensions Xfs + foreach ($worksheet->getRowDimensions() as $rowDimension) { + $xfIndex = $rowDimension->getXfIndex(); + if ($xfIndex !== null) { + $rowDimension->setXfIndex($xfIndex + $countCellXfs); + } + } + + return $this->addSheet($worksheet, $sheetIndex); + } + + /** + * Get an array of all Named Ranges. + * + * @return DefinedName[] + */ + public function getNamedRanges(): array + { + return array_filter( + $this->definedNames, + function (DefinedName $definedName) { + return $definedName->isFormula() === self::DEFINED_NAME_IS_RANGE; + } + ); + } + + /** + * Get an array of all Named Formulae. + * + * @return DefinedName[] + */ + public function getNamedFormulae(): array + { + return array_filter( + $this->definedNames, + function (DefinedName $definedName) { + return $definedName->isFormula() === self::DEFINED_NAME_IS_FORMULA; + } + ); + } + + /** + * Get an array of all Defined Names (both named ranges and named formulae). + * + * @return DefinedName[] + */ + public function getDefinedNames(): array + { + return $this->definedNames; + } + + /** + * Add a named range. + * If a named range with this name already exists, then this will replace the existing value. + */ + public function addNamedRange(NamedRange $namedRange): void + { + $this->addDefinedName($namedRange); + } + + /** + * Add a named formula. + * If a named formula with this name already exists, then this will replace the existing value. + */ + public function addNamedFormula(NamedFormula $namedFormula): void + { + $this->addDefinedName($namedFormula); + } + + /** + * Add a defined name (either a named range or a named formula). + * If a defined named with this name already exists, then this will replace the existing value. + */ + public function addDefinedName(DefinedName $definedName): void + { + $upperCaseName = StringHelper::strToUpper($definedName->getName()); + if ($definedName->getScope() == null) { + // global scope + $this->definedNames[$upperCaseName] = $definedName; + } else { + // local scope + $this->definedNames[$definedName->getScope()->getTitle() . '!' . $upperCaseName] = $definedName; + } + } + + /** + * Get named range. + * + * @param null|Worksheet $worksheet Scope. Use null for global scope + */ + public function getNamedRange(string $namedRange, ?Worksheet $worksheet = null): ?NamedRange + { + $returnValue = null; + + if ($namedRange !== '') { + $namedRange = StringHelper::strToUpper($namedRange); + // first look for global named range + $returnValue = $this->getGlobalDefinedNameByType($namedRange, self::DEFINED_NAME_IS_RANGE); + // then look for local named range (has priority over global named range if both names exist) + $returnValue = $this->getLocalDefinedNameByType($namedRange, self::DEFINED_NAME_IS_RANGE, $worksheet) ?: $returnValue; + } + + return $returnValue instanceof NamedRange ? $returnValue : null; + } + + /** + * Get named formula. + * + * @param null|Worksheet $worksheet Scope. Use null for global scope + */ + public function getNamedFormula(string $namedFormula, ?Worksheet $worksheet = null): ?NamedFormula + { + $returnValue = null; + + if ($namedFormula !== '') { + $namedFormula = StringHelper::strToUpper($namedFormula); + // first look for global named formula + $returnValue = $this->getGlobalDefinedNameByType($namedFormula, self::DEFINED_NAME_IS_FORMULA); + // then look for local named formula (has priority over global named formula if both names exist) + $returnValue = $this->getLocalDefinedNameByType($namedFormula, self::DEFINED_NAME_IS_FORMULA, $worksheet) ?: $returnValue; + } + + return $returnValue instanceof NamedFormula ? $returnValue : null; + } + + private function getGlobalDefinedNameByType(string $name, bool $type): ?DefinedName + { + if (isset($this->definedNames[$name]) && $this->definedNames[$name]->isFormula() === $type) { + return $this->definedNames[$name]; + } + + return null; + } + + private function getLocalDefinedNameByType(string $name, bool $type, ?Worksheet $worksheet = null): ?DefinedName + { + if ( + ($worksheet !== null) && isset($this->definedNames[$worksheet->getTitle() . '!' . $name]) + && $this->definedNames[$worksheet->getTitle() . '!' . $name]->isFormula() === $type + ) { + return $this->definedNames[$worksheet->getTitle() . '!' . $name]; + } + + return null; + } + + /** + * Get named range. + * + * @param null|Worksheet $worksheet Scope. Use null for global scope + */ + public function getDefinedName(string $definedName, ?Worksheet $worksheet = null): ?DefinedName + { + $returnValue = null; + + if ($definedName !== '') { + $definedName = StringHelper::strToUpper($definedName); + // first look for global defined name + if (isset($this->definedNames[$definedName])) { + $returnValue = $this->definedNames[$definedName]; + } + + // then look for local defined name (has priority over global defined name if both names exist) + if (($worksheet !== null) && isset($this->definedNames[$worksheet->getTitle() . '!' . $definedName])) { + $returnValue = $this->definedNames[$worksheet->getTitle() . '!' . $definedName]; + } + } + + return $returnValue; + } + + /** + * Remove named range. + * + * @param null|Worksheet $worksheet scope: use null for global scope + * + * @return $this + */ + public function removeNamedRange(string $namedRange, ?Worksheet $worksheet = null): self + { + if ($this->getNamedRange($namedRange, $worksheet) === null) { + return $this; + } + + return $this->removeDefinedName($namedRange, $worksheet); + } + + /** + * Remove named formula. + * + * @param null|Worksheet $worksheet scope: use null for global scope + * + * @return $this + */ + public function removeNamedFormula(string $namedFormula, ?Worksheet $worksheet = null): self + { + if ($this->getNamedFormula($namedFormula, $worksheet) === null) { + return $this; + } + + return $this->removeDefinedName($namedFormula, $worksheet); + } + + /** + * Remove defined name. + * + * @param null|Worksheet $worksheet scope: use null for global scope + * + * @return $this + */ + public function removeDefinedName(string $definedName, ?Worksheet $worksheet = null): self + { + $definedName = StringHelper::strToUpper($definedName); + + if ($worksheet === null) { + if (isset($this->definedNames[$definedName])) { + unset($this->definedNames[$definedName]); + } + } else { + if (isset($this->definedNames[$worksheet->getTitle() . '!' . $definedName])) { + unset($this->definedNames[$worksheet->getTitle() . '!' . $definedName]); + } elseif (isset($this->definedNames[$definedName])) { + unset($this->definedNames[$definedName]); + } + } + + return $this; + } + + /** + * Get worksheet iterator. + * + * @return Iterator + */ + public function getWorksheetIterator() + { + return new Iterator($this); + } + + /** + * Copy workbook (!= clone!). + * + * @return Spreadsheet + */ + public function copy() + { + $copied = clone $this; + + $worksheetCount = count($this->workSheetCollection); + for ($i = 0; $i < $worksheetCount; ++$i) { + $this->workSheetCollection[$i] = $this->workSheetCollection[$i]->copy(); + $this->workSheetCollection[$i]->rebindParent($this); + } + + return $copied; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + // @phpstan-ignore-next-line + foreach ($this as $key => $val) { + if (is_object($val) || (is_array($val))) { + $this->{$key} = unserialize(serialize($val)); + } + } + } + + /** + * Get the workbook collection of cellXfs. + * + * @return Style[] + */ + public function getCellXfCollection() + { + return $this->cellXfCollection; + } + + /** + * Get cellXf by index. + * + * @param int $cellStyleIndex + * + * @return Style + */ + public function getCellXfByIndex($cellStyleIndex) + { + return $this->cellXfCollection[$cellStyleIndex]; + } + + /** + * Get cellXf by hash code. + * + * @param string $hashcode + * + * @return false|Style + */ + public function getCellXfByHashCode($hashcode) + { + foreach ($this->cellXfCollection as $cellXf) { + if ($cellXf->getHashCode() === $hashcode) { + return $cellXf; + } + } + + return false; + } + + /** + * Check if style exists in style collection. + * + * @return bool + */ + public function cellXfExists(Style $cellStyleIndex) + { + return in_array($cellStyleIndex, $this->cellXfCollection, true); + } + + /** + * Get default style. + * + * @return Style + */ + public function getDefaultStyle() + { + if (isset($this->cellXfCollection[0])) { + return $this->cellXfCollection[0]; + } + + throw new Exception('No default style found for this workbook'); + } + + /** + * Add a cellXf to the workbook. + */ + public function addCellXf(Style $style): void + { + $this->cellXfCollection[] = $style; + $style->setIndex(count($this->cellXfCollection) - 1); + } + + /** + * Remove cellXf by index. It is ensured that all cells get their xf index updated. + * + * @param int $cellStyleIndex Index to cellXf + */ + public function removeCellXfByIndex($cellStyleIndex): void + { + if ($cellStyleIndex > count($this->cellXfCollection) - 1) { + throw new Exception('CellXf index is out of bounds.'); + } + + // first remove the cellXf + array_splice($this->cellXfCollection, $cellStyleIndex, 1); + + // then update cellXf indexes for cells + foreach ($this->workSheetCollection as $worksheet) { + foreach ($worksheet->getCoordinates(false) as $coordinate) { + $cell = $worksheet->getCell($coordinate); + $xfIndex = $cell->getXfIndex(); + if ($xfIndex > $cellStyleIndex) { + // decrease xf index by 1 + $cell->setXfIndex($xfIndex - 1); + } elseif ($xfIndex == $cellStyleIndex) { + // set to default xf index 0 + $cell->setXfIndex(0); + } + } + } + } + + /** + * Get the cellXf supervisor. + * + * @return Style + */ + public function getCellXfSupervisor() + { + return $this->cellXfSupervisor; + } + + /** + * Get the workbook collection of cellStyleXfs. + * + * @return Style[] + */ + public function getCellStyleXfCollection() + { + return $this->cellStyleXfCollection; + } + + /** + * Get cellStyleXf by index. + * + * @param int $cellStyleIndex Index to cellXf + * + * @return Style + */ + public function getCellStyleXfByIndex($cellStyleIndex) + { + return $this->cellStyleXfCollection[$cellStyleIndex]; + } + + /** + * Get cellStyleXf by hash code. + * + * @param string $hashcode + * + * @return false|Style + */ + public function getCellStyleXfByHashCode($hashcode) + { + foreach ($this->cellStyleXfCollection as $cellStyleXf) { + if ($cellStyleXf->getHashCode() === $hashcode) { + return $cellStyleXf; + } + } + + return false; + } + + /** + * Add a cellStyleXf to the workbook. + */ + public function addCellStyleXf(Style $style): void + { + $this->cellStyleXfCollection[] = $style; + $style->setIndex(count($this->cellStyleXfCollection) - 1); + } + + /** + * Remove cellStyleXf by index. + * + * @param int $cellStyleIndex Index to cellXf + */ + public function removeCellStyleXfByIndex($cellStyleIndex): void + { + if ($cellStyleIndex > count($this->cellStyleXfCollection) - 1) { + throw new Exception('CellStyleXf index is out of bounds.'); + } + array_splice($this->cellStyleXfCollection, $cellStyleIndex, 1); + } + + /** + * Eliminate all unneeded cellXf and afterwards update the xfIndex for all cells + * and columns in the workbook. + */ + public function garbageCollect(): void + { + // how many references are there to each cellXf ? + $countReferencesCellXf = []; + foreach ($this->cellXfCollection as $index => $cellXf) { + $countReferencesCellXf[$index] = 0; + } + + foreach ($this->getWorksheetIterator() as $sheet) { + // from cells + foreach ($sheet->getCoordinates(false) as $coordinate) { + $cell = $sheet->getCell($coordinate); + ++$countReferencesCellXf[$cell->getXfIndex()]; + } + + // from row dimensions + foreach ($sheet->getRowDimensions() as $rowDimension) { + if ($rowDimension->getXfIndex() !== null) { + ++$countReferencesCellXf[$rowDimension->getXfIndex()]; + } + } + + // from column dimensions + foreach ($sheet->getColumnDimensions() as $columnDimension) { + ++$countReferencesCellXf[$columnDimension->getXfIndex()]; + } + } + + // remove cellXfs without references and create mapping so we can update xfIndex + // for all cells and columns + $countNeededCellXfs = 0; + $map = []; + foreach ($this->cellXfCollection as $index => $cellXf) { + if ($countReferencesCellXf[$index] > 0 || $index == 0) { // we must never remove the first cellXf + ++$countNeededCellXfs; + } else { + unset($this->cellXfCollection[$index]); + } + $map[$index] = $countNeededCellXfs - 1; + } + $this->cellXfCollection = array_values($this->cellXfCollection); + + // update the index for all cellXfs + foreach ($this->cellXfCollection as $i => $cellXf) { + $cellXf->setIndex($i); + } + + // make sure there is always at least one cellXf (there should be) + if (empty($this->cellXfCollection)) { + $this->cellXfCollection[] = new Style(); + } + + // update the xfIndex for all cells, row dimensions, column dimensions + foreach ($this->getWorksheetIterator() as $sheet) { + // for all cells + foreach ($sheet->getCoordinates(false) as $coordinate) { + $cell = $sheet->getCell($coordinate); + $cell->setXfIndex($map[$cell->getXfIndex()]); + } + + // for all row dimensions + foreach ($sheet->getRowDimensions() as $rowDimension) { + if ($rowDimension->getXfIndex() !== null) { + $rowDimension->setXfIndex($map[$rowDimension->getXfIndex()]); + } + } + + // for all column dimensions + foreach ($sheet->getColumnDimensions() as $columnDimension) { + $columnDimension->setXfIndex($map[$columnDimension->getXfIndex()]); + } + + // also do garbage collection for all the sheets + $sheet->garbageCollect(); + } + } + + /** + * Return the unique ID value assigned to this spreadsheet workbook. + * + * @return string + */ + public function getID() + { + return $this->uniqueID; + } + + /** + * Get the visibility of the horizonal scroll bar in the application. + * + * @return bool True if horizonal scroll bar is visible + */ + public function getShowHorizontalScroll() + { + return $this->showHorizontalScroll; + } + + /** + * Set the visibility of the horizonal scroll bar in the application. + * + * @param bool $showHorizontalScroll True if horizonal scroll bar is visible + */ + public function setShowHorizontalScroll($showHorizontalScroll): void + { + $this->showHorizontalScroll = (bool) $showHorizontalScroll; + } + + /** + * Get the visibility of the vertical scroll bar in the application. + * + * @return bool True if vertical scroll bar is visible + */ + public function getShowVerticalScroll() + { + return $this->showVerticalScroll; + } + + /** + * Set the visibility of the vertical scroll bar in the application. + * + * @param bool $showVerticalScroll True if vertical scroll bar is visible + */ + public function setShowVerticalScroll($showVerticalScroll): void + { + $this->showVerticalScroll = (bool) $showVerticalScroll; + } + + /** + * Get the visibility of the sheet tabs in the application. + * + * @return bool True if the sheet tabs are visible + */ + public function getShowSheetTabs() + { + return $this->showSheetTabs; + } + + /** + * Set the visibility of the sheet tabs in the application. + * + * @param bool $showSheetTabs True if sheet tabs are visible + */ + public function setShowSheetTabs($showSheetTabs): void + { + $this->showSheetTabs = (bool) $showSheetTabs; + } + + /** + * Return whether the workbook window is minimized. + * + * @return bool true if workbook window is minimized + */ + public function getMinimized() + { + return $this->minimized; + } + + /** + * Set whether the workbook window is minimized. + * + * @param bool $minimized true if workbook window is minimized + */ + public function setMinimized($minimized): void + { + $this->minimized = (bool) $minimized; + } + + /** + * Return whether to group dates when presenting the user with + * filtering optiomd in the user interface. + * + * @return bool true if workbook window is minimized + */ + public function getAutoFilterDateGrouping() + { + return $this->autoFilterDateGrouping; + } + + /** + * Set whether to group dates when presenting the user with + * filtering optiomd in the user interface. + * + * @param bool $autoFilterDateGrouping true if workbook window is minimized + */ + public function setAutoFilterDateGrouping($autoFilterDateGrouping): void + { + $this->autoFilterDateGrouping = (bool) $autoFilterDateGrouping; + } + + /** + * Return the first sheet in the book view. + * + * @return int First sheet in book view + */ + public function getFirstSheetIndex() + { + return $this->firstSheetIndex; + } + + /** + * Set the first sheet in the book view. + * + * @param int $firstSheetIndex First sheet in book view + */ + public function setFirstSheetIndex($firstSheetIndex): void + { + if ($firstSheetIndex >= 0) { + $this->firstSheetIndex = (int) $firstSheetIndex; + } else { + throw new Exception('First sheet index must be a positive integer.'); + } + } + + /** + * Return the visibility status of the workbook. + * + * This may be one of the following three values: + * - visibile + * + * @return string Visible status + */ + public function getVisibility() + { + return $this->visibility; + } + + /** + * Set the visibility status of the workbook. + * + * Valid values are: + * - 'visible' (self::VISIBILITY_VISIBLE): + * Workbook window is visible + * - 'hidden' (self::VISIBILITY_HIDDEN): + * Workbook window is hidden, but can be shown by the user + * via the user interface + * - 'veryHidden' (self::VISIBILITY_VERY_HIDDEN): + * Workbook window is hidden and cannot be shown in the + * user interface. + * + * @param string $visibility visibility status of the workbook + */ + public function setVisibility($visibility): void + { + if ($visibility === null) { + $visibility = self::VISIBILITY_VISIBLE; + } + + if (in_array($visibility, self::$workbookViewVisibilityValues)) { + $this->visibility = $visibility; + } else { + throw new Exception('Invalid visibility value.'); + } + } + + /** + * Get the ratio between the workbook tabs bar and the horizontal scroll bar. + * TabRatio is assumed to be out of 1000 of the horizontal window width. + * + * @return int Ratio between the workbook tabs bar and the horizontal scroll bar + */ + public function getTabRatio() + { + return $this->tabRatio; + } + + /** + * Set the ratio between the workbook tabs bar and the horizontal scroll bar + * TabRatio is assumed to be out of 1000 of the horizontal window width. + * + * @param int $tabRatio Ratio between the tabs bar and the horizontal scroll bar + */ + public function setTabRatio($tabRatio): void + { + if ($tabRatio >= 0 || $tabRatio <= 1000) { + $this->tabRatio = (int) $tabRatio; + } else { + throw new Exception('Tab ratio must be between 0 and 1000.'); + } + } + + public function reevaluateAutoFilters(bool $resetToMax): void + { + foreach ($this->workSheetCollection as $sheet) { + $filter = $sheet->getAutoFilter(); + if (!empty($filter->getRange())) { + if ($resetToMax) { + $filter->setRangeToMaxRow(); + } + $filter->showHideRows(); + } + } + } + + /** + * Silliness to mollify Scrutinizer. + * + * @codeCoverageIgnore + */ + public function getSharedComponent(): Style + { + return new Style(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Alignment.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Alignment.php new file mode 100644 index 0000000..83ac5b0 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Alignment.php @@ -0,0 +1,486 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; + +class Alignment extends Supervisor +{ + // Horizontal alignment styles + const HORIZONTAL_GENERAL = 'general'; + const HORIZONTAL_LEFT = 'left'; + const HORIZONTAL_RIGHT = 'right'; + const HORIZONTAL_CENTER = 'center'; + const HORIZONTAL_CENTER_CONTINUOUS = 'centerContinuous'; + const HORIZONTAL_JUSTIFY = 'justify'; + const HORIZONTAL_FILL = 'fill'; + const HORIZONTAL_DISTRIBUTED = 'distributed'; // Excel2007 only + + // Vertical alignment styles + const VERTICAL_BOTTOM = 'bottom'; + const VERTICAL_TOP = 'top'; + const VERTICAL_CENTER = 'center'; + const VERTICAL_JUSTIFY = 'justify'; + const VERTICAL_DISTRIBUTED = 'distributed'; // Excel2007 only + + // Read order + const READORDER_CONTEXT = 0; + const READORDER_LTR = 1; + const READORDER_RTL = 2; + + // Special value for Text Rotation + const TEXTROTATION_STACK_EXCEL = 255; + const TEXTROTATION_STACK_PHPSPREADSHEET = -165; // 90 - 255 + + /** + * Horizontal alignment. + * + * @var null|string + */ + protected $horizontal = self::HORIZONTAL_GENERAL; + + /** + * Vertical alignment. + * + * @var null|string + */ + protected $vertical = self::VERTICAL_BOTTOM; + + /** + * Text rotation. + * + * @var null|int + */ + protected $textRotation = 0; + + /** + * Wrap text. + * + * @var bool + */ + protected $wrapText = false; + + /** + * Shrink to fit. + * + * @var bool + */ + protected $shrinkToFit = false; + + /** + * Indent - only possible with horizontal alignment left and right. + * + * @var int + */ + protected $indent = 0; + + /** + * Read order. + * + * @var int + */ + protected $readOrder = 0; + + /** + * Create a new Alignment. + * + * @param bool $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + * @param bool $isConditional Flag indicating if this is a conditional style or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false, $isConditional = false) + { + // Supervisor? + parent::__construct($isSupervisor); + + if ($isConditional) { + $this->horizontal = null; + $this->vertical = null; + $this->textRotation = null; + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor. + * + * @return Alignment + */ + public function getSharedComponent() + { + /** @var Style */ + $parent = $this->parent; + + return $parent->getSharedComponent()->getAlignment(); + } + + /** + * Build style array from subcomponents. + * + * @param array $array + * + * @return array + */ + public function getStyleArray($array) + { + return ['alignment' => $array]; + } + + /** + * Apply styles from array. + * + * <code> + * $spreadsheet->getActiveSheet()->getStyle('B2')->getAlignment()->applyFromArray( + * [ + * 'horizontal' => \PhpOffice\PhpSpreadsheet\Style\Alignment::HORIZONTAL_CENTER, + * 'vertical' => \PhpOffice\PhpSpreadsheet\Style\Alignment::VERTICAL_CENTER, + * 'textRotation' => 0, + * 'wrapText' => TRUE + * ] + * ); + * </code> + * + * @param array $styleArray Array containing style information + * + * @return $this + */ + public function applyFromArray(array $styleArray) + { + if ($this->isSupervisor) { + $this->getActiveSheet()->getStyle($this->getSelectedCells()) + ->applyFromArray($this->getStyleArray($styleArray)); + } else { + if (isset($styleArray['horizontal'])) { + $this->setHorizontal($styleArray['horizontal']); + } + if (isset($styleArray['vertical'])) { + $this->setVertical($styleArray['vertical']); + } + if (isset($styleArray['textRotation'])) { + $this->setTextRotation($styleArray['textRotation']); + } + if (isset($styleArray['wrapText'])) { + $this->setWrapText($styleArray['wrapText']); + } + if (isset($styleArray['shrinkToFit'])) { + $this->setShrinkToFit($styleArray['shrinkToFit']); + } + if (isset($styleArray['indent'])) { + $this->setIndent($styleArray['indent']); + } + if (isset($styleArray['readOrder'])) { + $this->setReadOrder($styleArray['readOrder']); + } + } + + return $this; + } + + /** + * Get Horizontal. + * + * @return null|string + */ + public function getHorizontal() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHorizontal(); + } + + return $this->horizontal; + } + + /** + * Set Horizontal. + * + * @param string $horizontalAlignment see self::HORIZONTAL_* + * + * @return $this + */ + public function setHorizontal(string $horizontalAlignment) + { + if ($horizontalAlignment == '') { + $horizontalAlignment = self::HORIZONTAL_GENERAL; + } + + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['horizontal' => $horizontalAlignment]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->horizontal = $horizontalAlignment; + } + + return $this; + } + + /** + * Get Vertical. + * + * @return null|string + */ + public function getVertical() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getVertical(); + } + + return $this->vertical; + } + + /** + * Set Vertical. + * + * @param string $verticalAlignment see self::VERTICAL_* + * + * @return $this + */ + public function setVertical($verticalAlignment) + { + if ($verticalAlignment == '') { + $verticalAlignment = self::VERTICAL_BOTTOM; + } + + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['vertical' => $verticalAlignment]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->vertical = $verticalAlignment; + } + + return $this; + } + + /** + * Get TextRotation. + * + * @return null|int + */ + public function getTextRotation() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getTextRotation(); + } + + return $this->textRotation; + } + + /** + * Set TextRotation. + * + * @param int $angleInDegrees + * + * @return $this + */ + public function setTextRotation($angleInDegrees) + { + // Excel2007 value 255 => PhpSpreadsheet value -165 + if ($angleInDegrees == self::TEXTROTATION_STACK_EXCEL) { + $angleInDegrees = self::TEXTROTATION_STACK_PHPSPREADSHEET; + } + + // Set rotation + if (($angleInDegrees >= -90 && $angleInDegrees <= 90) || $angleInDegrees == self::TEXTROTATION_STACK_PHPSPREADSHEET) { + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['textRotation' => $angleInDegrees]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->textRotation = $angleInDegrees; + } + } else { + throw new PhpSpreadsheetException('Text rotation should be a value between -90 and 90.'); + } + + return $this; + } + + /** + * Get Wrap Text. + * + * @return bool + */ + public function getWrapText() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getWrapText(); + } + + return $this->wrapText; + } + + /** + * Set Wrap Text. + * + * @param bool $wrapped + * + * @return $this + */ + public function setWrapText($wrapped) + { + if ($wrapped == '') { + $wrapped = false; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['wrapText' => $wrapped]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->wrapText = $wrapped; + } + + return $this; + } + + /** + * Get Shrink to fit. + * + * @return bool + */ + public function getShrinkToFit() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getShrinkToFit(); + } + + return $this->shrinkToFit; + } + + /** + * Set Shrink to fit. + * + * @param bool $shrink + * + * @return $this + */ + public function setShrinkToFit($shrink) + { + if ($shrink == '') { + $shrink = false; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['shrinkToFit' => $shrink]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->shrinkToFit = $shrink; + } + + return $this; + } + + /** + * Get indent. + * + * @return int + */ + public function getIndent() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getIndent(); + } + + return $this->indent; + } + + /** + * Set indent. + * + * @param int $indent + * + * @return $this + */ + public function setIndent($indent) + { + if ($indent > 0) { + if ( + $this->getHorizontal() != self::HORIZONTAL_GENERAL && + $this->getHorizontal() != self::HORIZONTAL_LEFT && + $this->getHorizontal() != self::HORIZONTAL_RIGHT && + $this->getHorizontal() != self::HORIZONTAL_DISTRIBUTED + ) { + $indent = 0; // indent not supported + } + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['indent' => $indent]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->indent = $indent; + } + + return $this; + } + + /** + * Get read order. + * + * @return int + */ + public function getReadOrder() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getReadOrder(); + } + + return $this->readOrder; + } + + /** + * Set read order. + * + * @param int $readOrder + * + * @return $this + */ + public function setReadOrder($readOrder) + { + if ($readOrder < 0 || $readOrder > 2) { + $readOrder = 0; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['readOrder' => $readOrder]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->readOrder = $readOrder; + } + + return $this; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHashCode(); + } + + return md5( + $this->horizontal . + $this->vertical . + $this->textRotation . + ($this->wrapText ? 't' : 'f') . + ($this->shrinkToFit ? 't' : 'f') . + $this->indent . + $this->readOrder . + __CLASS__ + ); + } + + protected function exportArray1(): array + { + $exportedArray = []; + $this->exportArray2($exportedArray, 'horizontal', $this->getHorizontal()); + $this->exportArray2($exportedArray, 'indent', $this->getIndent()); + $this->exportArray2($exportedArray, 'readOrder', $this->getReadOrder()); + $this->exportArray2($exportedArray, 'shrinkToFit', $this->getShrinkToFit()); + $this->exportArray2($exportedArray, 'textRotation', $this->getTextRotation()); + $this->exportArray2($exportedArray, 'vertical', $this->getVertical()); + $this->exportArray2($exportedArray, 'wrapText', $this->getWrapText()); + + return $exportedArray; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Border.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Border.php new file mode 100644 index 0000000..a5ec980 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Border.php @@ -0,0 +1,240 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; + +class Border extends Supervisor +{ + // Border style + const BORDER_NONE = 'none'; + const BORDER_DASHDOT = 'dashDot'; + const BORDER_DASHDOTDOT = 'dashDotDot'; + const BORDER_DASHED = 'dashed'; + const BORDER_DOTTED = 'dotted'; + const BORDER_DOUBLE = 'double'; + const BORDER_HAIR = 'hair'; + const BORDER_MEDIUM = 'medium'; + const BORDER_MEDIUMDASHDOT = 'mediumDashDot'; + const BORDER_MEDIUMDASHDOTDOT = 'mediumDashDotDot'; + const BORDER_MEDIUMDASHED = 'mediumDashed'; + const BORDER_SLANTDASHDOT = 'slantDashDot'; + const BORDER_THICK = 'thick'; + const BORDER_THIN = 'thin'; + + /** + * Border style. + * + * @var string + */ + protected $borderStyle = self::BORDER_NONE; + + /** + * Border color. + * + * @var Color + */ + protected $color; + + /** + * @var null|int + */ + public $colorIndex; + + /** + * Create a new Border. + * + * @param bool $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false) + { + // Supervisor? + parent::__construct($isSupervisor); + + // Initialise values + $this->color = new Color(Color::COLOR_BLACK, $isSupervisor); + + // bind parent if we are a supervisor + if ($isSupervisor) { + $this->color->bindParent($this, 'color'); + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor. + * + * @return Border + */ + public function getSharedComponent() + { + /** @var Style */ + $parent = $this->parent; + + /** @var Borders $sharedComponent */ + $sharedComponent = $parent->getSharedComponent(); + switch ($this->parentPropertyName) { + case 'bottom': + return $sharedComponent->getBottom(); + case 'diagonal': + return $sharedComponent->getDiagonal(); + case 'left': + return $sharedComponent->getLeft(); + case 'right': + return $sharedComponent->getRight(); + case 'top': + return $sharedComponent->getTop(); + } + + throw new PhpSpreadsheetException('Cannot get shared component for a pseudo-border.'); + } + + /** + * Build style array from subcomponents. + * + * @param array $array + * + * @return array + */ + public function getStyleArray($array) + { + /** @var Style */ + $parent = $this->parent; + + return $parent->getStyleArray([$this->parentPropertyName => $array]); + } + + /** + * Apply styles from array. + * + * <code> + * $spreadsheet->getActiveSheet()->getStyle('B2')->getBorders()->getTop()->applyFromArray( + * [ + * 'borderStyle' => Border::BORDER_DASHDOT, + * 'color' => [ + * 'rgb' => '808080' + * ] + * ] + * ); + * </code> + * + * @param array $styleArray Array containing style information + * + * @return $this + */ + public function applyFromArray(array $styleArray) + { + if ($this->isSupervisor) { + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($this->getStyleArray($styleArray)); + } else { + if (isset($styleArray['borderStyle'])) { + $this->setBorderStyle($styleArray['borderStyle']); + } + if (isset($styleArray['color'])) { + $this->getColor()->applyFromArray($styleArray['color']); + } + } + + return $this; + } + + /** + * Get Border style. + * + * @return string + */ + public function getBorderStyle() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getBorderStyle(); + } + + return $this->borderStyle; + } + + /** + * Set Border style. + * + * @param bool|string $style + * When passing a boolean, FALSE equates Border::BORDER_NONE + * and TRUE to Border::BORDER_MEDIUM + * + * @return $this + */ + public function setBorderStyle($style) + { + if (empty($style)) { + $style = self::BORDER_NONE; + } elseif (is_bool($style)) { + $style = self::BORDER_MEDIUM; + } + + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['borderStyle' => $style]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->borderStyle = $style; + } + + return $this; + } + + /** + * Get Border Color. + * + * @return Color + */ + public function getColor() + { + return $this->color; + } + + /** + * Set Border Color. + * + * @return $this + */ + public function setColor(Color $color) + { + // make sure parameter is a real color and not a supervisor + $color = $color->getIsSupervisor() ? $color->getSharedComponent() : $color; + + if ($this->isSupervisor) { + $styleArray = $this->getColor()->getStyleArray(['argb' => $color->getARGB()]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->color = $color; + } + + return $this; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHashCode(); + } + + return md5( + $this->borderStyle . + $this->color->getHashCode() . + __CLASS__ + ); + } + + protected function exportArray1(): array + { + $exportedArray = []; + $this->exportArray2($exportedArray, 'borderStyle', $this->getBorderStyle()); + $this->exportArray2($exportedArray, 'color', $this->getColor()); + + return $exportedArray; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Borders.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Borders.php new file mode 100644 index 0000000..56a5270 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Borders.php @@ -0,0 +1,424 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; + +class Borders extends Supervisor +{ + // Diagonal directions + const DIAGONAL_NONE = 0; + const DIAGONAL_UP = 1; + const DIAGONAL_DOWN = 2; + const DIAGONAL_BOTH = 3; + + /** + * Left. + * + * @var Border + */ + protected $left; + + /** + * Right. + * + * @var Border + */ + protected $right; + + /** + * Top. + * + * @var Border + */ + protected $top; + + /** + * Bottom. + * + * @var Border + */ + protected $bottom; + + /** + * Diagonal. + * + * @var Border + */ + protected $diagonal; + + /** + * DiagonalDirection. + * + * @var int + */ + protected $diagonalDirection; + + /** + * All borders pseudo-border. Only applies to supervisor. + * + * @var Border + */ + protected $allBorders; + + /** + * Outline pseudo-border. Only applies to supervisor. + * + * @var Border + */ + protected $outline; + + /** + * Inside pseudo-border. Only applies to supervisor. + * + * @var Border + */ + protected $inside; + + /** + * Vertical pseudo-border. Only applies to supervisor. + * + * @var Border + */ + protected $vertical; + + /** + * Horizontal pseudo-border. Only applies to supervisor. + * + * @var Border + */ + protected $horizontal; + + /** + * Create a new Borders. + * + * @param bool $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false) + { + // Supervisor? + parent::__construct($isSupervisor); + + // Initialise values + $this->left = new Border($isSupervisor); + $this->right = new Border($isSupervisor); + $this->top = new Border($isSupervisor); + $this->bottom = new Border($isSupervisor); + $this->diagonal = new Border($isSupervisor); + $this->diagonalDirection = self::DIAGONAL_NONE; + + // Specially for supervisor + if ($isSupervisor) { + // Initialize pseudo-borders + $this->allBorders = new Border(true); + $this->outline = new Border(true); + $this->inside = new Border(true); + $this->vertical = new Border(true); + $this->horizontal = new Border(true); + + // bind parent if we are a supervisor + $this->left->bindParent($this, 'left'); + $this->right->bindParent($this, 'right'); + $this->top->bindParent($this, 'top'); + $this->bottom->bindParent($this, 'bottom'); + $this->diagonal->bindParent($this, 'diagonal'); + $this->allBorders->bindParent($this, 'allBorders'); + $this->outline->bindParent($this, 'outline'); + $this->inside->bindParent($this, 'inside'); + $this->vertical->bindParent($this, 'vertical'); + $this->horizontal->bindParent($this, 'horizontal'); + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor. + * + * @return Borders + */ + public function getSharedComponent() + { + /** @var Style */ + $parent = $this->parent; + + return $parent->getSharedComponent()->getBorders(); + } + + /** + * Build style array from subcomponents. + * + * @param array $array + * + * @return array + */ + public function getStyleArray($array) + { + return ['borders' => $array]; + } + + /** + * Apply styles from array. + * + * <code> + * $spreadsheet->getActiveSheet()->getStyle('B2')->getBorders()->applyFromArray( + * [ + * 'bottom' => [ + * 'borderStyle' => Border::BORDER_DASHDOT, + * 'color' => [ + * 'rgb' => '808080' + * ] + * ], + * 'top' => [ + * 'borderStyle' => Border::BORDER_DASHDOT, + * 'color' => [ + * 'rgb' => '808080' + * ] + * ] + * ] + * ); + * </code> + * + * <code> + * $spreadsheet->getActiveSheet()->getStyle('B2')->getBorders()->applyFromArray( + * [ + * 'allBorders' => [ + * 'borderStyle' => Border::BORDER_DASHDOT, + * 'color' => [ + * 'rgb' => '808080' + * ] + * ] + * ] + * ); + * </code> + * + * @param array $styleArray Array containing style information + * + * @return $this + */ + public function applyFromArray(array $styleArray) + { + if ($this->isSupervisor) { + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($this->getStyleArray($styleArray)); + } else { + if (isset($styleArray['left'])) { + $this->getLeft()->applyFromArray($styleArray['left']); + } + if (isset($styleArray['right'])) { + $this->getRight()->applyFromArray($styleArray['right']); + } + if (isset($styleArray['top'])) { + $this->getTop()->applyFromArray($styleArray['top']); + } + if (isset($styleArray['bottom'])) { + $this->getBottom()->applyFromArray($styleArray['bottom']); + } + if (isset($styleArray['diagonal'])) { + $this->getDiagonal()->applyFromArray($styleArray['diagonal']); + } + if (isset($styleArray['diagonalDirection'])) { + $this->setDiagonalDirection($styleArray['diagonalDirection']); + } + if (isset($styleArray['allBorders'])) { + $this->getLeft()->applyFromArray($styleArray['allBorders']); + $this->getRight()->applyFromArray($styleArray['allBorders']); + $this->getTop()->applyFromArray($styleArray['allBorders']); + $this->getBottom()->applyFromArray($styleArray['allBorders']); + } + } + + return $this; + } + + /** + * Get Left. + * + * @return Border + */ + public function getLeft() + { + return $this->left; + } + + /** + * Get Right. + * + * @return Border + */ + public function getRight() + { + return $this->right; + } + + /** + * Get Top. + * + * @return Border + */ + public function getTop() + { + return $this->top; + } + + /** + * Get Bottom. + * + * @return Border + */ + public function getBottom() + { + return $this->bottom; + } + + /** + * Get Diagonal. + * + * @return Border + */ + public function getDiagonal() + { + return $this->diagonal; + } + + /** + * Get AllBorders (pseudo-border). Only applies to supervisor. + * + * @return Border + */ + public function getAllBorders() + { + if (!$this->isSupervisor) { + throw new PhpSpreadsheetException('Can only get pseudo-border for supervisor.'); + } + + return $this->allBorders; + } + + /** + * Get Outline (pseudo-border). Only applies to supervisor. + * + * @return Border + */ + public function getOutline() + { + if (!$this->isSupervisor) { + throw new PhpSpreadsheetException('Can only get pseudo-border for supervisor.'); + } + + return $this->outline; + } + + /** + * Get Inside (pseudo-border). Only applies to supervisor. + * + * @return Border + */ + public function getInside() + { + if (!$this->isSupervisor) { + throw new PhpSpreadsheetException('Can only get pseudo-border for supervisor.'); + } + + return $this->inside; + } + + /** + * Get Vertical (pseudo-border). Only applies to supervisor. + * + * @return Border + */ + public function getVertical() + { + if (!$this->isSupervisor) { + throw new PhpSpreadsheetException('Can only get pseudo-border for supervisor.'); + } + + return $this->vertical; + } + + /** + * Get Horizontal (pseudo-border). Only applies to supervisor. + * + * @return Border + */ + public function getHorizontal() + { + if (!$this->isSupervisor) { + throw new PhpSpreadsheetException('Can only get pseudo-border for supervisor.'); + } + + return $this->horizontal; + } + + /** + * Get DiagonalDirection. + * + * @return int + */ + public function getDiagonalDirection() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getDiagonalDirection(); + } + + return $this->diagonalDirection; + } + + /** + * Set DiagonalDirection. + * + * @param int $direction see self::DIAGONAL_* + * + * @return $this + */ + public function setDiagonalDirection($direction) + { + if ($direction == '') { + $direction = self::DIAGONAL_NONE; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['diagonalDirection' => $direction]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->diagonalDirection = $direction; + } + + return $this; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHashcode(); + } + + return md5( + $this->getLeft()->getHashCode() . + $this->getRight()->getHashCode() . + $this->getTop()->getHashCode() . + $this->getBottom()->getHashCode() . + $this->getDiagonal()->getHashCode() . + $this->getDiagonalDirection() . + __CLASS__ + ); + } + + protected function exportArray1(): array + { + $exportedArray = []; + $this->exportArray2($exportedArray, 'bottom', $this->getBottom()); + $this->exportArray2($exportedArray, 'diagonal', $this->getDiagonal()); + $this->exportArray2($exportedArray, 'diagonalDirection', $this->getDiagonalDirection()); + $this->exportArray2($exportedArray, 'left', $this->getLeft()); + $this->exportArray2($exportedArray, 'right', $this->getRight()); + $this->exportArray2($exportedArray, 'top', $this->getTop()); + + return $exportedArray; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Color.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Color.php new file mode 100644 index 0000000..9ab0c98 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Color.php @@ -0,0 +1,444 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style; + +class Color extends Supervisor +{ + const NAMED_COLORS = [ + 'Black', + 'White', + 'Red', + 'Green', + 'Blue', + 'Yellow', + 'Magenta', + 'Cyan', + ]; + + // Colors + const COLOR_BLACK = 'FF000000'; + const COLOR_WHITE = 'FFFFFFFF'; + const COLOR_RED = 'FFFF0000'; + const COLOR_DARKRED = 'FF800000'; + const COLOR_BLUE = 'FF0000FF'; + const COLOR_DARKBLUE = 'FF000080'; + const COLOR_GREEN = 'FF00FF00'; + const COLOR_DARKGREEN = 'FF008000'; + const COLOR_YELLOW = 'FFFFFF00'; + const COLOR_DARKYELLOW = 'FF808000'; + const COLOR_MAGENTA = 'FFFF00FF'; + const COLOR_CYAN = 'FF00FFFF'; + + const NAMED_COLOR_TRANSLATIONS = [ + 'Black' => self::COLOR_BLACK, + 'White' => self::COLOR_WHITE, + 'Red' => self::COLOR_RED, + 'Green' => self::COLOR_GREEN, + 'Blue' => self::COLOR_BLUE, + 'Yellow' => self::COLOR_YELLOW, + 'Magenta' => self::COLOR_MAGENTA, + 'Cyan' => self::COLOR_CYAN, + ]; + + const VALIDATE_ARGB_SIZE = 8; + const VALIDATE_RGB_SIZE = 6; + const VALIDATE_COLOR_6 = '/^[A-F0-9]{6}$/i'; + const VALIDATE_COLOR_8 = '/^[A-F0-9]{8}$/i'; + + private const INDEXED_COLORS = [ + 1 => 'FF000000', // System Colour #1 - Black + 2 => 'FFFFFFFF', // System Colour #2 - White + 3 => 'FFFF0000', // System Colour #3 - Red + 4 => 'FF00FF00', // System Colour #4 - Green + 5 => 'FF0000FF', // System Colour #5 - Blue + 6 => 'FFFFFF00', // System Colour #6 - Yellow + 7 => 'FFFF00FF', // System Colour #7- Magenta + 8 => 'FF00FFFF', // System Colour #8- Cyan + 9 => 'FF800000', // Standard Colour #9 + 10 => 'FF008000', // Standard Colour #10 + 11 => 'FF000080', // Standard Colour #11 + 12 => 'FF808000', // Standard Colour #12 + 13 => 'FF800080', // Standard Colour #13 + 14 => 'FF008080', // Standard Colour #14 + 15 => 'FFC0C0C0', // Standard Colour #15 + 16 => 'FF808080', // Standard Colour #16 + 17 => 'FF9999FF', // Chart Fill Colour #17 + 18 => 'FF993366', // Chart Fill Colour #18 + 19 => 'FFFFFFCC', // Chart Fill Colour #19 + 20 => 'FFCCFFFF', // Chart Fill Colour #20 + 21 => 'FF660066', // Chart Fill Colour #21 + 22 => 'FFFF8080', // Chart Fill Colour #22 + 23 => 'FF0066CC', // Chart Fill Colour #23 + 24 => 'FFCCCCFF', // Chart Fill Colour #24 + 25 => 'FF000080', // Chart Line Colour #25 + 26 => 'FFFF00FF', // Chart Line Colour #26 + 27 => 'FFFFFF00', // Chart Line Colour #27 + 28 => 'FF00FFFF', // Chart Line Colour #28 + 29 => 'FF800080', // Chart Line Colour #29 + 30 => 'FF800000', // Chart Line Colour #30 + 31 => 'FF008080', // Chart Line Colour #31 + 32 => 'FF0000FF', // Chart Line Colour #32 + 33 => 'FF00CCFF', // Standard Colour #33 + 34 => 'FFCCFFFF', // Standard Colour #34 + 35 => 'FFCCFFCC', // Standard Colour #35 + 36 => 'FFFFFF99', // Standard Colour #36 + 37 => 'FF99CCFF', // Standard Colour #37 + 38 => 'FFFF99CC', // Standard Colour #38 + 39 => 'FFCC99FF', // Standard Colour #39 + 40 => 'FFFFCC99', // Standard Colour #40 + 41 => 'FF3366FF', // Standard Colour #41 + 42 => 'FF33CCCC', // Standard Colour #42 + 43 => 'FF99CC00', // Standard Colour #43 + 44 => 'FFFFCC00', // Standard Colour #44 + 45 => 'FFFF9900', // Standard Colour #45 + 46 => 'FFFF6600', // Standard Colour #46 + 47 => 'FF666699', // Standard Colour #47 + 48 => 'FF969696', // Standard Colour #48 + 49 => 'FF003366', // Standard Colour #49 + 50 => 'FF339966', // Standard Colour #50 + 51 => 'FF003300', // Standard Colour #51 + 52 => 'FF333300', // Standard Colour #52 + 53 => 'FF993300', // Standard Colour #53 + 54 => 'FF993366', // Standard Colour #54 + 55 => 'FF333399', // Standard Colour #55 + 56 => 'FF333333', // Standard Colour #56 + ]; + + /** + * ARGB - Alpha RGB. + * + * @var null|string + */ + protected $argb; + + /** @var bool */ + private $hasChanged = false; + + /** + * Create a new Color. + * + * @param string $colorValue ARGB value for the colour, or named colour + * @param bool $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + * @param bool $isConditional Flag indicating if this is a conditional style or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($colorValue = self::COLOR_BLACK, $isSupervisor = false, $isConditional = false) + { + // Supervisor? + parent::__construct($isSupervisor); + + // Initialise values + if (!$isConditional) { + $this->argb = $this->validateColor($colorValue) ?: self::COLOR_BLACK; + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor. + * + * @return Color + */ + public function getSharedComponent() + { + /** @var Style */ + $parent = $this->parent; + /** @var Border|Fill $sharedComponent */ + $sharedComponent = $parent->getSharedComponent(); + if ($sharedComponent instanceof Fill) { + if ($this->parentPropertyName === 'endColor') { + return $sharedComponent->getEndColor(); + } + + return $sharedComponent->getStartColor(); + } + + return $sharedComponent->getColor(); + } + + /** + * Build style array from subcomponents. + * + * @param array $array + * + * @return array + */ + public function getStyleArray($array) + { + /** @var Style */ + $parent = $this->parent; + + return $parent->getStyleArray([$this->parentPropertyName => $array]); + } + + /** + * Apply styles from array. + * + * <code> + * $spreadsheet->getActiveSheet()->getStyle('B2')->getFont()->getColor()->applyFromArray(['rgb' => '808080']); + * </code> + * + * @param array $styleArray Array containing style information + * + * @return $this + */ + public function applyFromArray(array $styleArray) + { + if ($this->isSupervisor) { + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($this->getStyleArray($styleArray)); + } else { + if (isset($styleArray['rgb'])) { + $this->setRGB($styleArray['rgb']); + } + if (isset($styleArray['argb'])) { + $this->setARGB($styleArray['argb']); + } + } + + return $this; + } + + private function validateColor(?string $colorValue): string + { + if ($colorValue === null || $colorValue === '') { + return self::COLOR_BLACK; + } + $named = ucfirst(strtolower($colorValue)); + if (array_key_exists($named, self::NAMED_COLOR_TRANSLATIONS)) { + return self::NAMED_COLOR_TRANSLATIONS[$named]; + } + if (preg_match(self::VALIDATE_COLOR_8, $colorValue) === 1) { + return $colorValue; + } + if (preg_match(self::VALIDATE_COLOR_6, $colorValue) === 1) { + return 'FF' . $colorValue; + } + + return ''; + } + + /** + * Get ARGB. + */ + public function getARGB(): ?string + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getARGB(); + } + + return $this->argb; + } + + /** + * Set ARGB. + * + * @param string $colorValue ARGB value, or a named color + * + * @return $this + */ + public function setARGB(?string $colorValue = self::COLOR_BLACK) + { + $this->hasChanged = true; + $colorValue = $this->validateColor($colorValue); + if ($colorValue === '') { + return $this; + } + + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['argb' => $colorValue]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->argb = $colorValue; + } + + return $this; + } + + /** + * Get RGB. + */ + public function getRGB(): string + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getRGB(); + } + + return substr($this->argb ?? '', 2); + } + + /** + * Set RGB. + * + * @param string $colorValue RGB value, or a named color + * + * @return $this + */ + public function setRGB(?string $colorValue = self::COLOR_BLACK) + { + return $this->setARGB($colorValue); + } + + /** + * Get a specified colour component of an RGB value. + * + * @param string $rgbValue The colour as an RGB value (e.g. FF00CCCC or CCDDEE + * @param int $offset Position within the RGB value to extract + * @param bool $hex Flag indicating whether the component should be returned as a hex or a + * decimal value + * + * @return int|string The extracted colour component + */ + private static function getColourComponent($rgbValue, $offset, $hex = true) + { + $colour = substr($rgbValue, $offset, 2) ?: ''; + if (preg_match('/^[0-9a-f]{2}$/i', $colour) !== 1) { + $colour = '00'; + } + + return ($hex) ? $colour : (int) hexdec($colour); + } + + /** + * Get the red colour component of an RGB value. + * + * @param string $rgbValue The colour as an RGB value (e.g. FF00CCCC or CCDDEE + * @param bool $hex Flag indicating whether the component should be returned as a hex or a + * decimal value + * + * @return int|string The red colour component + */ + public static function getRed($rgbValue, $hex = true) + { + return self::getColourComponent($rgbValue, strlen($rgbValue) - 6, $hex); + } + + /** + * Get the green colour component of an RGB value. + * + * @param string $rgbValue The colour as an RGB value (e.g. FF00CCCC or CCDDEE + * @param bool $hex Flag indicating whether the component should be returned as a hex or a + * decimal value + * + * @return int|string The green colour component + */ + public static function getGreen($rgbValue, $hex = true) + { + return self::getColourComponent($rgbValue, strlen($rgbValue) - 4, $hex); + } + + /** + * Get the blue colour component of an RGB value. + * + * @param string $rgbValue The colour as an RGB value (e.g. FF00CCCC or CCDDEE + * @param bool $hex Flag indicating whether the component should be returned as a hex or a + * decimal value + * + * @return int|string The blue colour component + */ + public static function getBlue($rgbValue, $hex = true) + { + return self::getColourComponent($rgbValue, strlen($rgbValue) - 2, $hex); + } + + /** + * Adjust the brightness of a color. + * + * @param string $hexColourValue The colour as an RGBA or RGB value (e.g. FF00CCCC or CCDDEE) + * @param float $adjustPercentage The percentage by which to adjust the colour as a float from -1 to 1 + * + * @return string The adjusted colour as an RGBA or RGB value (e.g. FF00CCCC or CCDDEE) + */ + public static function changeBrightness($hexColourValue, $adjustPercentage) + { + $rgba = (strlen($hexColourValue) === 8); + $adjustPercentage = max(-1.0, min(1.0, $adjustPercentage)); + + /** @var int $red */ + $red = self::getRed($hexColourValue, false); + /** @var int $green */ + $green = self::getGreen($hexColourValue, false); + /** @var int $blue */ + $blue = self::getBlue($hexColourValue, false); + if ($adjustPercentage > 0) { + $red += (255 - $red) * $adjustPercentage; + $green += (255 - $green) * $adjustPercentage; + $blue += (255 - $blue) * $adjustPercentage; + } else { + $red += $red * $adjustPercentage; + $green += $green * $adjustPercentage; + $blue += $blue * $adjustPercentage; + } + + $rgb = strtoupper( + str_pad(dechex((int) $red), 2, '0', 0) . + str_pad(dechex((int) $green), 2, '0', 0) . + str_pad(dechex((int) $blue), 2, '0', 0) + ); + + return (($rgba) ? 'FF' : '') . $rgb; + } + + /** + * Get indexed color. + * + * @param int $colorIndex Index entry point into the colour array + * @param bool $background Flag to indicate whether default background or foreground colour + * should be returned if the indexed colour doesn't exist + * + * @return Color + */ + public static function indexedColor($colorIndex, $background = false, ?array $palette = null): self + { + // Clean parameter + $colorIndex = (int) $colorIndex; + + if (empty($palette)) { + if (isset(self::INDEXED_COLORS[$colorIndex])) { + return new self(self::INDEXED_COLORS[$colorIndex]); + } + } else { + if (isset($palette[$colorIndex])) { + return new self($palette[$colorIndex]); + } + } + + return ($background) ? new self(self::COLOR_WHITE) : new self(self::COLOR_BLACK); + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode(): string + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHashCode(); + } + + return md5( + $this->argb . + __CLASS__ + ); + } + + protected function exportArray1(): array + { + $exportedArray = []; + $this->exportArray2($exportedArray, 'argb', $this->getARGB()); + + return $exportedArray; + } + + public function getHasChanged(): bool + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->hasChanged; + } + + return $this->hasChanged; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Conditional.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Conditional.php new file mode 100644 index 0000000..019c064 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Conditional.php @@ -0,0 +1,346 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style; + +use PhpOffice\PhpSpreadsheet\IComparable; +use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalDataBar; + +class Conditional implements IComparable +{ + // Condition types + const CONDITION_NONE = 'none'; + const CONDITION_BEGINSWITH = 'beginsWith'; + const CONDITION_CELLIS = 'cellIs'; + const CONDITION_CONTAINSBLANKS = 'containsBlanks'; + const CONDITION_CONTAINSERRORS = 'containsErrors'; + const CONDITION_CONTAINSTEXT = 'containsText'; + const CONDITION_DATABAR = 'dataBar'; + const CONDITION_ENDSWITH = 'endsWith'; + const CONDITION_EXPRESSION = 'expression'; + const CONDITION_NOTCONTAINSBLANKS = 'notContainsBlanks'; + const CONDITION_NOTCONTAINSERRORS = 'notContainsErrors'; + const CONDITION_NOTCONTAINSTEXT = 'notContainsText'; + const CONDITION_TIMEPERIOD = 'timePeriod'; + const CONDITION_DUPLICATES = 'duplicateValues'; + const CONDITION_UNIQUE = 'uniqueValues'; + + private const CONDITION_TYPES = [ + self::CONDITION_BEGINSWITH, + self::CONDITION_CELLIS, + self::CONDITION_CONTAINSBLANKS, + self::CONDITION_CONTAINSERRORS, + self::CONDITION_CONTAINSTEXT, + self::CONDITION_DATABAR, + self::CONDITION_DUPLICATES, + self::CONDITION_ENDSWITH, + self::CONDITION_EXPRESSION, + self::CONDITION_NONE, + self::CONDITION_NOTCONTAINSBLANKS, + self::CONDITION_NOTCONTAINSERRORS, + self::CONDITION_NOTCONTAINSTEXT, + self::CONDITION_TIMEPERIOD, + self::CONDITION_UNIQUE, + ]; + + // Operator types + const OPERATOR_NONE = ''; + const OPERATOR_BEGINSWITH = 'beginsWith'; + const OPERATOR_ENDSWITH = 'endsWith'; + const OPERATOR_EQUAL = 'equal'; + const OPERATOR_GREATERTHAN = 'greaterThan'; + const OPERATOR_GREATERTHANOREQUAL = 'greaterThanOrEqual'; + const OPERATOR_LESSTHAN = 'lessThan'; + const OPERATOR_LESSTHANOREQUAL = 'lessThanOrEqual'; + const OPERATOR_NOTEQUAL = 'notEqual'; + const OPERATOR_CONTAINSTEXT = 'containsText'; + const OPERATOR_NOTCONTAINS = 'notContains'; + const OPERATOR_BETWEEN = 'between'; + const OPERATOR_NOTBETWEEN = 'notBetween'; + + const TIMEPERIOD_TODAY = 'today'; + const TIMEPERIOD_YESTERDAY = 'yesterday'; + const TIMEPERIOD_TOMORROW = 'tomorrow'; + const TIMEPERIOD_LAST_7_DAYS = 'last7Days'; + const TIMEPERIOD_LAST_WEEK = 'lastWeek'; + const TIMEPERIOD_THIS_WEEK = 'thisWeek'; + const TIMEPERIOD_NEXT_WEEK = 'nextWeek'; + const TIMEPERIOD_LAST_MONTH = 'lastMonth'; + const TIMEPERIOD_THIS_MONTH = 'thisMonth'; + const TIMEPERIOD_NEXT_MONTH = 'nextMonth'; + + /** + * Condition type. + * + * @var string + */ + private $conditionType = self::CONDITION_NONE; + + /** + * Operator type. + * + * @var string + */ + private $operatorType = self::OPERATOR_NONE; + + /** + * Text. + * + * @var string + */ + private $text; + + /** + * Stop on this condition, if it matches. + * + * @var bool + */ + private $stopIfTrue = false; + + /** + * Condition. + * + * @var (bool|float|int|string)[] + */ + private $condition = []; + + /** + * @var ConditionalDataBar + */ + private $dataBar; + + /** + * Style. + * + * @var Style + */ + private $style; + + /** + * Create a new Conditional. + */ + public function __construct() + { + // Initialise values + $this->style = new Style(false, true); + } + + /** + * Get Condition type. + * + * @return string + */ + public function getConditionType() + { + return $this->conditionType; + } + + /** + * Set Condition type. + * + * @param string $type Condition type, see self::CONDITION_* + * + * @return $this + */ + public function setConditionType($type) + { + $this->conditionType = $type; + + return $this; + } + + /** + * Get Operator type. + * + * @return string + */ + public function getOperatorType() + { + return $this->operatorType; + } + + /** + * Set Operator type. + * + * @param string $type Conditional operator type, see self::OPERATOR_* + * + * @return $this + */ + public function setOperatorType($type) + { + $this->operatorType = $type; + + return $this; + } + + /** + * Get text. + * + * @return string + */ + public function getText() + { + return $this->text; + } + + /** + * Set text. + * + * @param string $text + * + * @return $this + */ + public function setText($text) + { + $this->text = $text; + + return $this; + } + + /** + * Get StopIfTrue. + * + * @return bool + */ + public function getStopIfTrue() + { + return $this->stopIfTrue; + } + + /** + * Set StopIfTrue. + * + * @param bool $stopIfTrue + * + * @return $this + */ + public function setStopIfTrue($stopIfTrue) + { + $this->stopIfTrue = $stopIfTrue; + + return $this; + } + + /** + * Get Conditions. + * + * @return (bool|float|int|string)[] + */ + public function getConditions() + { + return $this->condition; + } + + /** + * Set Conditions. + * + * @param bool|float|int|string|(bool|float|int|string)[] $conditions Condition + * + * @return $this + */ + public function setConditions($conditions) + { + if (!is_array($conditions)) { + $conditions = [$conditions]; + } + $this->condition = $conditions; + + return $this; + } + + /** + * Add Condition. + * + * @param bool|float|int|string $condition Condition + * + * @return $this + */ + public function addCondition($condition) + { + $this->condition[] = $condition; + + return $this; + } + + /** + * Get Style. + * + * @return Style + */ + public function getStyle() + { + return $this->style; + } + + /** + * Set Style. + * + * @return $this + */ + public function setStyle(Style $style) + { + $this->style = $style; + + return $this; + } + + /** + * get DataBar. + * + * @return null|ConditionalDataBar + */ + public function getDataBar() + { + return $this->dataBar; + } + + /** + * set DataBar. + * + * @return $this + */ + public function setDataBar(ConditionalDataBar $dataBar) + { + $this->dataBar = $dataBar; + + return $this; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->conditionType . + $this->operatorType . + implode(';', $this->condition) . + $this->style->getHashCode() . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } + + /** + * Verify if param is valid condition type. + */ + public static function isValidConditionType(string $type): bool + { + return in_array($type, self::CONDITION_TYPES); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/CellMatcher.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/CellMatcher.php new file mode 100644 index 0000000..e0dc0ef --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/CellMatcher.php @@ -0,0 +1,312 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Exception; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class CellMatcher +{ + public const COMPARISON_OPERATORS = [ + Conditional::OPERATOR_EQUAL => '=', + Conditional::OPERATOR_GREATERTHAN => '>', + Conditional::OPERATOR_GREATERTHANOREQUAL => '>=', + Conditional::OPERATOR_LESSTHAN => '<', + Conditional::OPERATOR_LESSTHANOREQUAL => '<=', + Conditional::OPERATOR_NOTEQUAL => '<>', + ]; + + public const COMPARISON_RANGE_OPERATORS = [ + Conditional::OPERATOR_BETWEEN => 'IF(AND(A1>=%s,A1<=%s),TRUE,FALSE)', + Conditional::OPERATOR_NOTBETWEEN => 'IF(AND(A1>=%s,A1<=%s),FALSE,TRUE)', + ]; + + public const COMPARISON_DUPLICATES_OPERATORS = [ + Conditional::CONDITION_DUPLICATES => "COUNTIF('%s'!%s,%s)>1", + Conditional::CONDITION_UNIQUE => "COUNTIF('%s'!%s,%s)=1", + ]; + + /** + * @var Cell + */ + protected $cell; + + /** + * @var int + */ + protected $cellRow; + + /** + * @var Worksheet + */ + protected $worksheet; + + /** + * @var int + */ + protected $cellColumn; + + /** + * @var string + */ + protected $conditionalRange; + + /** + * @var string + */ + protected $referenceCell; + + /** + * @var int + */ + protected $referenceRow; + + /** + * @var int + */ + protected $referenceColumn; + + /** + * @var Calculation + */ + protected $engine; + + public function __construct(Cell $cell, string $conditionalRange) + { + $this->cell = $cell; + $this->worksheet = $cell->getWorksheet(); + [$this->cellColumn, $this->cellRow] = Coordinate::indexesFromString($this->cell->getCoordinate()); + $this->setReferenceCellForExpressions($conditionalRange); + + $this->engine = Calculation::getInstance($this->worksheet->getParent()); + } + + protected function setReferenceCellForExpressions(string $conditionalRange): void + { + $conditionalRange = Coordinate::splitRange(str_replace('$', '', strtoupper($conditionalRange))); + [$this->referenceCell] = $conditionalRange[0]; + + [$this->referenceColumn, $this->referenceRow] = Coordinate::indexesFromString($this->referenceCell); + + // Convert our conditional range to an absolute conditional range, so it can be used "pinned" in formulae + $rangeSets = []; + foreach ($conditionalRange as $rangeSet) { + $absoluteRangeSet = array_map( + [Coordinate::class, 'absoluteCoordinate'], + $rangeSet + ); + $rangeSets[] = implode(':', $absoluteRangeSet); + } + $this->conditionalRange = implode(',', $rangeSets); + } + + public function evaluateConditional(Conditional $conditional): bool + { + // Some calculations may modify the stored cell; so reset it before every evaluation. + $cellColumn = Coordinate::stringFromColumnIndex($this->cellColumn); + $cellAddress = "{$cellColumn}{$this->cellRow}"; + $this->cell = $this->worksheet->getCell($cellAddress); + + switch ($conditional->getConditionType()) { + case Conditional::CONDITION_CELLIS: + return $this->processOperatorComparison($conditional); + case Conditional::CONDITION_DUPLICATES: + case Conditional::CONDITION_UNIQUE: + return $this->processDuplicatesComparison($conditional); + case Conditional::CONDITION_CONTAINSTEXT: + // Expression is NOT(ISERROR(SEARCH("<TEXT>",<Cell Reference>))) + case Conditional::CONDITION_NOTCONTAINSTEXT: + // Expression is ISERROR(SEARCH("<TEXT>",<Cell Reference>)) + case Conditional::CONDITION_BEGINSWITH: + // Expression is LEFT(<Cell Reference>,LEN("<TEXT>"))="<TEXT>" + case Conditional::CONDITION_ENDSWITH: + // Expression is RIGHT(<Cell Reference>,LEN("<TEXT>"))="<TEXT>" + case Conditional::CONDITION_CONTAINSBLANKS: + // Expression is LEN(TRIM(<Cell Reference>))=0 + case Conditional::CONDITION_NOTCONTAINSBLANKS: + // Expression is LEN(TRIM(<Cell Reference>))>0 + case Conditional::CONDITION_CONTAINSERRORS: + // Expression is ISERROR(<Cell Reference>) + case Conditional::CONDITION_NOTCONTAINSERRORS: + // Expression is NOT(ISERROR(<Cell Reference>)) + case Conditional::CONDITION_TIMEPERIOD: + // Expression varies, depending on specified timePeriod value, e.g. + // Yesterday FLOOR(<Cell Reference>,1)=TODAY()-1 + // Today FLOOR(<Cell Reference>,1)=TODAY() + // Tomorrow FLOOR(<Cell Reference>,1)=TODAY()+1 + // Last 7 Days AND(TODAY()-FLOOR(<Cell Reference>,1)<=6,FLOOR(<Cell Reference>,1)<=TODAY()) + case Conditional::CONDITION_EXPRESSION: + return $this->processExpression($conditional); + } + + return false; + } + + /** + * @param mixed $value + * + * @return float|int|string + */ + protected function wrapValue($value) + { + if (!is_numeric($value)) { + if (is_bool($value)) { + return $value ? 'TRUE' : 'FALSE'; + } elseif ($value === null) { + return 'NULL'; + } + + return '"' . $value . '"'; + } + + return $value; + } + + /** + * @return float|int|string + */ + protected function wrapCellValue() + { + return $this->wrapValue($this->cell->getCalculatedValue()); + } + + /** + * @return float|int|string + */ + protected function conditionCellAdjustment(array $matches) + { + $column = $matches[6]; + $row = $matches[7]; + + if (strpos($column, '$') === false) { + $column = Coordinate::columnIndexFromString($column); + $column += $this->cellColumn - $this->referenceColumn; + $column = Coordinate::stringFromColumnIndex($column); + } + + if (strpos($row, '$') === false) { + $row += $this->cellRow - $this->referenceRow; + } + + if (!empty($matches[4])) { + $worksheet = $this->worksheet->getParent()->getSheetByName(trim($matches[4], "'")); + if ($worksheet === null) { + return $this->wrapValue(null); + } + + return $this->wrapValue( + $worksheet + ->getCell(str_replace('$', '', "{$column}{$row}")) + ->getCalculatedValue() + ); + } + + return $this->wrapValue( + $this->worksheet + ->getCell(str_replace('$', '', "{$column}{$row}")) + ->getCalculatedValue() + ); + } + + protected function cellConditionCheck(string $condition): string + { + $splitCondition = explode(Calculation::FORMULA_STRING_QUOTE, $condition); + $i = false; + foreach ($splitCondition as &$value) { + // Only count/replace in alternating array entries (ie. not in quoted strings) + if ($i = !$i) { + $value = (string) preg_replace_callback( + '/' . Calculation::CALCULATION_REGEXP_CELLREF_RELATIVE . '/i', + [$this, 'conditionCellAdjustment'], + $value + ); + } + } + unset($value); + // Then rebuild the condition string to return it + return implode(Calculation::FORMULA_STRING_QUOTE, $splitCondition); + } + + protected function adjustConditionsForCellReferences(array $conditions): array + { + return array_map( + [$this, 'cellConditionCheck'], + $conditions + ); + } + + protected function processOperatorComparison(Conditional $conditional): bool + { + if (array_key_exists($conditional->getOperatorType(), self::COMPARISON_RANGE_OPERATORS)) { + return $this->processRangeOperator($conditional); + } + + $operator = self::COMPARISON_OPERATORS[$conditional->getOperatorType()]; + $conditions = $this->adjustConditionsForCellReferences($conditional->getConditions()); + $expression = sprintf('%s%s%s', (string) $this->wrapCellValue(), $operator, (string) array_pop($conditions)); + + return $this->evaluateExpression($expression); + } + + protected function processRangeOperator(Conditional $conditional): bool + { + $conditions = $this->adjustConditionsForCellReferences($conditional->getConditions()); + sort($conditions); + $expression = sprintf( + (string) preg_replace( + '/\bA1\b/i', + (string) $this->wrapCellValue(), + self::COMPARISON_RANGE_OPERATORS[$conditional->getOperatorType()] + ), + ...$conditions + ); + + return $this->evaluateExpression($expression); + } + + protected function processDuplicatesComparison(Conditional $conditional): bool + { + $worksheetName = $this->cell->getWorksheet()->getTitle(); + + $expression = sprintf( + self::COMPARISON_DUPLICATES_OPERATORS[$conditional->getConditionType()], + $worksheetName, + $this->conditionalRange, + $this->cellConditionCheck($this->cell->getCalculatedValue()) + ); + + return $this->evaluateExpression($expression); + } + + protected function processExpression(Conditional $conditional): bool + { + $conditions = $this->adjustConditionsForCellReferences($conditional->getConditions()); + $expression = array_pop($conditions); + + $expression = (string) preg_replace( + '/\b' . $this->referenceCell . '\b/i', + (string) $this->wrapCellValue(), + $expression + ); + + return $this->evaluateExpression($expression); + } + + protected function evaluateExpression(string $expression): bool + { + $expression = "={$expression}"; + + try { + $this->engine->flushInstance(); + $result = (bool) $this->engine->calculateFormula($expression); + } catch (Exception $e) { + return false; + } + + return $result; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/CellStyleAssessor.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/CellStyleAssessor.php new file mode 100644 index 0000000..4c000db --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/CellStyleAssessor.php @@ -0,0 +1,45 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting; + +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Style\Style; + +class CellStyleAssessor +{ + /** + * @var CellMatcher + */ + protected $cellMatcher; + + /** + * @var StyleMerger + */ + protected $styleMerger; + + public function __construct(Cell $cell, string $conditionalRange) + { + $this->cellMatcher = new CellMatcher($cell, $conditionalRange); + $this->styleMerger = new StyleMerger($cell->getStyle()); + } + + /** + * @param Conditional[] $conditionalStyles + */ + public function matchConditions(array $conditionalStyles = []): Style + { + foreach ($conditionalStyles as $conditional) { + /** @var Conditional $conditional */ + if ($this->cellMatcher->evaluateConditional($conditional) === true) { + // Merging the conditional style into the base style goes in here + $this->styleMerger->mergeStyle($conditional->getStyle()); + if ($conditional->getStopIfTrue() === true) { + break; + } + } + } + + return $this->styleMerger->getStyle(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBar.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBar.php new file mode 100644 index 0000000..5451367 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBar.php @@ -0,0 +1,102 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting; + +class ConditionalDataBar +{ + /** <dataBar> attribute */ + + /** @var null|bool */ + private $showValue; + + /** <dataBar> children */ + + /** @var ConditionalFormatValueObject */ + private $minimumConditionalFormatValueObject; + + /** @var ConditionalFormatValueObject */ + private $maximumConditionalFormatValueObject; + + /** @var string */ + private $color; + + /** <extLst> */ + + /** @var ConditionalFormattingRuleExtension */ + private $conditionalFormattingRuleExt; + + /** + * @return null|bool + */ + public function getShowValue() + { + return $this->showValue; + } + + /** + * @param bool $showValue + */ + public function setShowValue($showValue) + { + $this->showValue = $showValue; + + return $this; + } + + /** + * @return ConditionalFormatValueObject + */ + public function getMinimumConditionalFormatValueObject() + { + return $this->minimumConditionalFormatValueObject; + } + + public function setMinimumConditionalFormatValueObject(ConditionalFormatValueObject $minimumConditionalFormatValueObject) + { + $this->minimumConditionalFormatValueObject = $minimumConditionalFormatValueObject; + + return $this; + } + + /** + * @return ConditionalFormatValueObject + */ + public function getMaximumConditionalFormatValueObject() + { + return $this->maximumConditionalFormatValueObject; + } + + public function setMaximumConditionalFormatValueObject(ConditionalFormatValueObject $maximumConditionalFormatValueObject) + { + $this->maximumConditionalFormatValueObject = $maximumConditionalFormatValueObject; + + return $this; + } + + public function getColor(): string + { + return $this->color; + } + + public function setColor(string $color): self + { + $this->color = $color; + + return $this; + } + + /** + * @return ConditionalFormattingRuleExtension + */ + public function getConditionalFormattingRuleExt() + { + return $this->conditionalFormattingRuleExt; + } + + public function setConditionalFormattingRuleExt(ConditionalFormattingRuleExtension $conditionalFormattingRuleExt) + { + $this->conditionalFormattingRuleExt = $conditionalFormattingRuleExt; + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBarExtension.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBarExtension.php new file mode 100644 index 0000000..c709cf3 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBarExtension.php @@ -0,0 +1,290 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting; + +class ConditionalDataBarExtension +{ + /** <dataBar> attributes */ + + /** @var int */ + private $minLength; + + /** @var int */ + private $maxLength; + + /** @var null|bool */ + private $border; + + /** @var null|bool */ + private $gradient; + + /** @var string */ + private $direction; + + /** @var null|bool */ + private $negativeBarBorderColorSameAsPositive; + + /** @var string */ + private $axisPosition; + + // <dataBar> children + + /** @var ConditionalFormatValueObject */ + private $maximumConditionalFormatValueObject; + + /** @var ConditionalFormatValueObject */ + private $minimumConditionalFormatValueObject; + + /** @var string */ + private $borderColor; + + /** @var string */ + private $negativeFillColor; + + /** @var string */ + private $negativeBorderColor; + + /** @var array */ + private $axisColor = [ + 'rgb' => null, + 'theme' => null, + 'tint' => null, + ]; + + public function getXmlAttributes() + { + $ret = []; + foreach (['minLength', 'maxLength', 'direction', 'axisPosition'] as $attrKey) { + if (null !== $this->{$attrKey}) { + $ret[$attrKey] = $this->{$attrKey}; + } + } + foreach (['border', 'gradient', 'negativeBarBorderColorSameAsPositive'] as $attrKey) { + if (null !== $this->{$attrKey}) { + $ret[$attrKey] = $this->{$attrKey} ? '1' : '0'; + } + } + + return $ret; + } + + public function getXmlElements() + { + $ret = []; + $elms = ['borderColor', 'negativeFillColor', 'negativeBorderColor']; + foreach ($elms as $elmKey) { + if (null !== $this->{$elmKey}) { + $ret[$elmKey] = ['rgb' => $this->{$elmKey}]; + } + } + foreach (array_filter($this->axisColor) as $attrKey => $axisColorAttr) { + if (!isset($ret['axisColor'])) { + $ret['axisColor'] = []; + } + $ret['axisColor'][$attrKey] = $axisColorAttr; + } + + return $ret; + } + + /** + * @return int + */ + public function getMinLength() + { + return $this->minLength; + } + + public function setMinLength(int $minLength): self + { + $this->minLength = $minLength; + + return $this; + } + + /** + * @return int + */ + public function getMaxLength() + { + return $this->maxLength; + } + + public function setMaxLength(int $maxLength): self + { + $this->maxLength = $maxLength; + + return $this; + } + + /** + * @return null|bool + */ + public function getBorder() + { + return $this->border; + } + + public function setBorder(bool $border): self + { + $this->border = $border; + + return $this; + } + + /** + * @return null|bool + */ + public function getGradient() + { + return $this->gradient; + } + + public function setGradient(bool $gradient): self + { + $this->gradient = $gradient; + + return $this; + } + + /** + * @return string + */ + public function getDirection() + { + return $this->direction; + } + + public function setDirection(string $direction): self + { + $this->direction = $direction; + + return $this; + } + + /** + * @return null|bool + */ + public function getNegativeBarBorderColorSameAsPositive() + { + return $this->negativeBarBorderColorSameAsPositive; + } + + public function setNegativeBarBorderColorSameAsPositive(bool $negativeBarBorderColorSameAsPositive): self + { + $this->negativeBarBorderColorSameAsPositive = $negativeBarBorderColorSameAsPositive; + + return $this; + } + + /** + * @return string + */ + public function getAxisPosition() + { + return $this->axisPosition; + } + + public function setAxisPosition(string $axisPosition): self + { + $this->axisPosition = $axisPosition; + + return $this; + } + + /** + * @return ConditionalFormatValueObject + */ + public function getMaximumConditionalFormatValueObject() + { + return $this->maximumConditionalFormatValueObject; + } + + public function setMaximumConditionalFormatValueObject(ConditionalFormatValueObject $maximumConditionalFormatValueObject) + { + $this->maximumConditionalFormatValueObject = $maximumConditionalFormatValueObject; + + return $this; + } + + /** + * @return ConditionalFormatValueObject + */ + public function getMinimumConditionalFormatValueObject() + { + return $this->minimumConditionalFormatValueObject; + } + + public function setMinimumConditionalFormatValueObject(ConditionalFormatValueObject $minimumConditionalFormatValueObject) + { + $this->minimumConditionalFormatValueObject = $minimumConditionalFormatValueObject; + + return $this; + } + + /** + * @return string + */ + public function getBorderColor() + { + return $this->borderColor; + } + + public function setBorderColor(string $borderColor): self + { + $this->borderColor = $borderColor; + + return $this; + } + + /** + * @return string + */ + public function getNegativeFillColor() + { + return $this->negativeFillColor; + } + + public function setNegativeFillColor(string $negativeFillColor): self + { + $this->negativeFillColor = $negativeFillColor; + + return $this; + } + + /** + * @return string + */ + public function getNegativeBorderColor() + { + return $this->negativeBorderColor; + } + + public function setNegativeBorderColor(string $negativeBorderColor): self + { + $this->negativeBorderColor = $negativeBorderColor; + + return $this; + } + + public function getAxisColor(): array + { + return $this->axisColor; + } + + /** + * @param mixed $rgb + * @param null|mixed $theme + * @param null|mixed $tint + */ + public function setAxisColor($rgb, $theme = null, $tint = null): self + { + $this->axisColor = [ + 'rgb' => $rgb, + 'theme' => $theme, + 'tint' => $tint, + ]; + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormatValueObject.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormatValueObject.php new file mode 100644 index 0000000..107969b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormatValueObject.php @@ -0,0 +1,78 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting; + +class ConditionalFormatValueObject +{ + private $type; + + private $value; + + private $cellFormula; + + /** + * ConditionalFormatValueObject constructor. + * + * @param null|mixed $cellFormula + */ + public function __construct($type, $value = null, $cellFormula = null) + { + $this->type = $type; + $this->value = $value; + $this->cellFormula = $cellFormula; + } + + /** + * @return mixed + */ + public function getType() + { + return $this->type; + } + + /** + * @param mixed $type + */ + public function setType($type) + { + $this->type = $type; + + return $this; + } + + /** + * @return mixed + */ + public function getValue() + { + return $this->value; + } + + /** + * @param mixed $value + */ + public function setValue($value) + { + $this->value = $value; + + return $this; + } + + /** + * @return mixed + */ + public function getCellFormula() + { + return $this->cellFormula; + } + + /** + * @param mixed $cellFormula + */ + public function setCellFormula($cellFormula) + { + $this->cellFormula = $cellFormula; + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php new file mode 100644 index 0000000..d8ef990 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php @@ -0,0 +1,208 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting; + +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use SimpleXMLElement; + +class ConditionalFormattingRuleExtension +{ + const CONDITION_EXTENSION_DATABAR = 'dataBar'; + + /** <conditionalFormatting> attributes */ + private $id; + + /** @var string Conditional Formatting Rule */ + private $cfRule; + + /** <conditionalFormatting> children */ + + /** @var ConditionalDataBarExtension */ + private $dataBar; + + /** @var string Sequence of References */ + private $sqref; + + /** + * ConditionalFormattingRuleExtension constructor. + */ + public function __construct($id = null, string $cfRule = self::CONDITION_EXTENSION_DATABAR) + { + if (null === $id) { + $this->id = '{' . $this->generateUuid() . '}'; + } else { + $this->id = $id; + } + $this->cfRule = $cfRule; + } + + private function generateUuid() + { + $chars = str_split('xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'); + + foreach ($chars as $i => $char) { + if ($char === 'x') { + $chars[$i] = dechex(random_int(0, 15)); + } elseif ($char === 'y') { + $chars[$i] = dechex(random_int(8, 11)); + } + } + + return implode('', $chars); + } + + public static function parseExtLstXml($extLstXml) + { + $conditionalFormattingRuleExtensions = []; + $conditionalFormattingRuleExtensionXml = null; + if ($extLstXml instanceof SimpleXMLElement) { + foreach ((count($extLstXml) > 0 ? $extLstXml : [$extLstXml]) as $extLst) { + //this uri is conditionalFormattings + //https://docs.microsoft.com/en-us/openspecs/office_standards/ms-xlsx/07d607af-5618-4ca2-b683-6a78dc0d9627 + if (isset($extLst->ext['uri']) && (string) $extLst->ext['uri'] === '{78C0D931-6437-407d-A8EE-F0AAD7539E65}') { + $conditionalFormattingRuleExtensionXml = $extLst->ext; + } + } + + if ($conditionalFormattingRuleExtensionXml) { + $ns = $conditionalFormattingRuleExtensionXml->getNamespaces(true); + $extFormattingsXml = $conditionalFormattingRuleExtensionXml->children($ns['x14']); + + foreach ($extFormattingsXml->children($ns['x14']) as $extFormattingXml) { + $extCfRuleXml = $extFormattingXml->cfRule; + $attributes = $extCfRuleXml->attributes(); + if (!$attributes || ((string) $attributes->type) !== Conditional::CONDITION_DATABAR) { + continue; + } + + $extFormattingRuleObj = new self((string) $attributes->id); + $extFormattingRuleObj->setSqref((string) $extFormattingXml->children($ns['xm'])->sqref); + $conditionalFormattingRuleExtensions[$extFormattingRuleObj->getId()] = $extFormattingRuleObj; + + $extDataBarObj = new ConditionalDataBarExtension(); + $extFormattingRuleObj->setDataBarExt($extDataBarObj); + $dataBarXml = $extCfRuleXml->dataBar; + self::parseExtDataBarAttributesFromXml($extDataBarObj, $dataBarXml); + self::parseExtDataBarElementChildrenFromXml($extDataBarObj, $dataBarXml, $ns); + } + } + } + + return $conditionalFormattingRuleExtensions; + } + + private static function parseExtDataBarAttributesFromXml( + ConditionalDataBarExtension $extDataBarObj, + SimpleXMLElement $dataBarXml + ): void { + $dataBarAttribute = $dataBarXml->attributes(); + if ($dataBarAttribute->minLength) { + $extDataBarObj->setMinLength((int) $dataBarAttribute->minLength); + } + if ($dataBarAttribute->maxLength) { + $extDataBarObj->setMaxLength((int) $dataBarAttribute->maxLength); + } + if ($dataBarAttribute->border) { + $extDataBarObj->setBorder((bool) (string) $dataBarAttribute->border); + } + if ($dataBarAttribute->gradient) { + $extDataBarObj->setGradient((bool) (string) $dataBarAttribute->gradient); + } + if ($dataBarAttribute->direction) { + $extDataBarObj->setDirection((string) $dataBarAttribute->direction); + } + if ($dataBarAttribute->negativeBarBorderColorSameAsPositive) { + $extDataBarObj->setNegativeBarBorderColorSameAsPositive((bool) (string) $dataBarAttribute->negativeBarBorderColorSameAsPositive); + } + if ($dataBarAttribute->axisPosition) { + $extDataBarObj->setAxisPosition((string) $dataBarAttribute->axisPosition); + } + } + + private static function parseExtDataBarElementChildrenFromXml(ConditionalDataBarExtension $extDataBarObj, SimpleXMLElement $dataBarXml, $ns): void + { + if ($dataBarXml->borderColor) { + $extDataBarObj->setBorderColor((string) $dataBarXml->borderColor->attributes()['rgb']); + } + if ($dataBarXml->negativeFillColor) { + $extDataBarObj->setNegativeFillColor((string) $dataBarXml->negativeFillColor->attributes()['rgb']); + } + if ($dataBarXml->negativeBorderColor) { + $extDataBarObj->setNegativeBorderColor((string) $dataBarXml->negativeBorderColor->attributes()['rgb']); + } + if ($dataBarXml->axisColor) { + $axisColorAttr = $dataBarXml->axisColor->attributes(); + $extDataBarObj->setAxisColor((string) $axisColorAttr['rgb'], (string) $axisColorAttr['theme'], (string) $axisColorAttr['tint']); + } + $cfvoIndex = 0; + foreach ($dataBarXml->cfvo as $cfvo) { + $f = (string) $cfvo->children($ns['xm'])->f; + $attributes = $cfvo->attributes(); + if (!($attributes)) { + continue; + } + + if ($cfvoIndex === 0) { + $extDataBarObj->setMinimumConditionalFormatValueObject(new ConditionalFormatValueObject((string) $attributes['type'], null, (empty($f) ? null : $f))); + } + if ($cfvoIndex === 1) { + $extDataBarObj->setMaximumConditionalFormatValueObject(new ConditionalFormatValueObject((string) $attributes['type'], null, (empty($f) ? null : $f))); + } + ++$cfvoIndex; + } + } + + /** + * @return mixed + */ + public function getId() + { + return $this->id; + } + + /** + * @param mixed $id + */ + public function setId($id): self + { + $this->id = $id; + + return $this; + } + + public function getCfRule(): string + { + return $this->cfRule; + } + + public function setCfRule(string $cfRule): self + { + $this->cfRule = $cfRule; + + return $this; + } + + public function getDataBarExt(): ConditionalDataBarExtension + { + return $this->dataBar; + } + + public function setDataBarExt(ConditionalDataBarExtension $dataBar): self + { + $this->dataBar = $dataBar; + + return $this; + } + + public function getSqref(): string + { + return $this->sqref; + } + + public function setSqref(string $sqref): self + { + $this->sqref = $sqref; + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/StyleMerger.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/StyleMerger.php new file mode 100644 index 0000000..95e6dfd --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/StyleMerger.php @@ -0,0 +1,118 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting; + +use PhpOffice\PhpSpreadsheet\Style\Border; +use PhpOffice\PhpSpreadsheet\Style\Borders; +use PhpOffice\PhpSpreadsheet\Style\Fill; +use PhpOffice\PhpSpreadsheet\Style\Font; +use PhpOffice\PhpSpreadsheet\Style\Style; + +class StyleMerger +{ + /** + * @var Style + */ + protected $baseStyle; + + public function __construct(Style $baseStyle) + { + $this->baseStyle = $baseStyle; + } + + public function getStyle(): Style + { + return $this->baseStyle; + } + + public function mergeStyle(Style $style): void + { + if ($style->getNumberFormat() !== null && $style->getNumberFormat()->getFormatCode() !== null) { + $this->baseStyle->getNumberFormat()->setFormatCode($style->getNumberFormat()->getFormatCode()); + } + + if ($style->getFont() !== null) { + $this->mergeFontStyle($this->baseStyle->getFont(), $style->getFont()); + } + + if ($style->getFill() !== null) { + $this->mergeFillStyle($this->baseStyle->getFill(), $style->getFill()); + } + + if ($style->getBorders() !== null) { + $this->mergeBordersStyle($this->baseStyle->getBorders(), $style->getBorders()); + } + } + + protected function mergeFontStyle(Font $baseFontStyle, Font $fontStyle): void + { + if ($fontStyle->getBold() !== null) { + $baseFontStyle->setBold($fontStyle->getBold()); + } + + if ($fontStyle->getItalic() !== null) { + $baseFontStyle->setItalic($fontStyle->getItalic()); + } + + if ($fontStyle->getStrikethrough() !== null) { + $baseFontStyle->setStrikethrough($fontStyle->getStrikethrough()); + } + + if ($fontStyle->getUnderline() !== null) { + $baseFontStyle->setUnderline($fontStyle->getUnderline()); + } + + if ($fontStyle->getColor() !== null && $fontStyle->getColor()->getARGB() !== null) { + $baseFontStyle->setColor($fontStyle->getColor()); + } + } + + protected function mergeFillStyle(Fill $baseFillStyle, Fill $fillStyle): void + { + if ($fillStyle->getFillType() !== null) { + $baseFillStyle->setFillType($fillStyle->getFillType()); + } + + if ($fillStyle->getRotation() !== null) { + $baseFillStyle->setRotation($fillStyle->getRotation()); + } + + if ($fillStyle->getStartColor() !== null && $fillStyle->getStartColor()->getARGB() !== null) { + $baseFillStyle->setStartColor($fillStyle->getStartColor()); + } + + if ($fillStyle->getEndColor() !== null && $fillStyle->getEndColor()->getARGB() !== null) { + $baseFillStyle->setEndColor($fillStyle->getEndColor()); + } + } + + protected function mergeBordersStyle(Borders $baseBordersStyle, Borders $bordersStyle): void + { + if ($bordersStyle->getTop() !== null) { + $this->mergeBorderStyle($baseBordersStyle->getTop(), $bordersStyle->getTop()); + } + + if ($bordersStyle->getBottom() !== null) { + $this->mergeBorderStyle($baseBordersStyle->getBottom(), $bordersStyle->getBottom()); + } + + if ($bordersStyle->getLeft() !== null) { + $this->mergeBorderStyle($baseBordersStyle->getLeft(), $bordersStyle->getLeft()); + } + + if ($bordersStyle->getRight() !== null) { + $this->mergeBorderStyle($baseBordersStyle->getRight(), $bordersStyle->getRight()); + } + } + + protected function mergeBorderStyle(Border $baseBorderStyle, Border $borderStyle): void + { + if ($borderStyle->getBorderStyle() !== null) { + $baseBorderStyle->setBorderStyle($borderStyle->getBorderStyle()); + } + + if ($borderStyle->getColor() !== null && $borderStyle->getColor()->getARGB() !== null) { + $baseBorderStyle->setColor($borderStyle->getColor()); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard.php new file mode 100644 index 0000000..d5d56a9 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard.php @@ -0,0 +1,95 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting; + +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard\WizardInterface; + +class Wizard +{ + public const CELL_VALUE = 'cellValue'; + public const TEXT_VALUE = 'textValue'; + public const BLANKS = Conditional::CONDITION_CONTAINSBLANKS; + public const NOT_BLANKS = Conditional::CONDITION_NOTCONTAINSBLANKS; + public const ERRORS = Conditional::CONDITION_CONTAINSERRORS; + public const NOT_ERRORS = Conditional::CONDITION_NOTCONTAINSERRORS; + public const EXPRESSION = Conditional::CONDITION_EXPRESSION; + public const FORMULA = Conditional::CONDITION_EXPRESSION; + public const DATES_OCCURRING = 'DateValue'; + public const DUPLICATES = Conditional::CONDITION_DUPLICATES; + public const UNIQUE = Conditional::CONDITION_UNIQUE; + + public const VALUE_TYPE_LITERAL = 'value'; + public const VALUE_TYPE_CELL = 'cell'; + public const VALUE_TYPE_FORMULA = 'formula'; + + /** + * @var string + */ + protected $cellRange; + + public function __construct(string $cellRange) + { + $this->cellRange = $cellRange; + } + + public function newRule(string $ruleType): WizardInterface + { + switch ($ruleType) { + case self::CELL_VALUE: + return new Wizard\CellValue($this->cellRange); + case self::TEXT_VALUE: + return new Wizard\TextValue($this->cellRange); + case self::BLANKS: + return new Wizard\Blanks($this->cellRange, true); + case self::NOT_BLANKS: + return new Wizard\Blanks($this->cellRange, false); + case self::ERRORS: + return new Wizard\Errors($this->cellRange, true); + case self::NOT_ERRORS: + return new Wizard\Errors($this->cellRange, false); + case self::EXPRESSION: + case self::FORMULA: + return new Wizard\Expression($this->cellRange); + case self::DATES_OCCURRING: + return new Wizard\DateValue($this->cellRange); + case self::DUPLICATES: + return new Wizard\Duplicates($this->cellRange, false); + case self::UNIQUE: + return new Wizard\Duplicates($this->cellRange, true); + default: + throw new Exception('No wizard exists for this CF rule type'); + } + } + + public static function fromConditional(Conditional $conditional, string $cellRange = 'A1'): WizardInterface + { + $conditionalType = $conditional->getConditionType(); + + switch ($conditionalType) { + case Conditional::CONDITION_CELLIS: + return Wizard\CellValue::fromConditional($conditional, $cellRange); + case Conditional::CONDITION_CONTAINSTEXT: + case Conditional::CONDITION_NOTCONTAINSTEXT: + case Conditional::CONDITION_BEGINSWITH: + case Conditional::CONDITION_ENDSWITH: + return Wizard\TextValue::fromConditional($conditional, $cellRange); + case Conditional::CONDITION_CONTAINSBLANKS: + case Conditional::CONDITION_NOTCONTAINSBLANKS: + return Wizard\Blanks::fromConditional($conditional, $cellRange); + case Conditional::CONDITION_CONTAINSERRORS: + case Conditional::CONDITION_NOTCONTAINSERRORS: + return Wizard\Errors::fromConditional($conditional, $cellRange); + case Conditional::CONDITION_TIMEPERIOD: + return Wizard\DateValue::fromConditional($conditional, $cellRange); + case Conditional::CONDITION_EXPRESSION: + return Wizard\Expression::fromConditional($conditional, $cellRange); + case Conditional::CONDITION_DUPLICATES: + case Conditional::CONDITION_UNIQUE: + return Wizard\Duplicates::fromConditional($conditional, $cellRange); + default: + throw new Exception('No wizard exists for this CF rule type'); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Blanks.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Blanks.php new file mode 100644 index 0000000..14f30d3 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Blanks.php @@ -0,0 +1,99 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard; + +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard; + +/** + * @method Blanks notBlank() + * @method Blanks notEmpty() + * @method Blanks isBlank() + * @method Blanks isEmpty() + */ +class Blanks extends WizardAbstract implements WizardInterface +{ + protected const OPERATORS = [ + 'notBlank' => false, + 'isBlank' => true, + 'notEmpty' => false, + 'empty' => true, + ]; + + protected const EXPRESSIONS = [ + Wizard::NOT_BLANKS => 'LEN(TRIM(%s))>0', + Wizard::BLANKS => 'LEN(TRIM(%s))=0', + ]; + + /** + * @var bool + */ + protected $inverse; + + public function __construct(string $cellRange, bool $inverse = false) + { + parent::__construct($cellRange); + $this->inverse = $inverse; + } + + protected function inverse(bool $inverse): void + { + $this->inverse = $inverse; + } + + protected function getExpression(): void + { + $this->expression = sprintf( + self::EXPRESSIONS[$this->inverse ? Wizard::BLANKS : Wizard::NOT_BLANKS], + $this->referenceCell + ); + } + + public function getConditional(): Conditional + { + $this->getExpression(); + + $conditional = new Conditional(); + $conditional->setConditionType( + $this->inverse ? Conditional::CONDITION_CONTAINSBLANKS : Conditional::CONDITION_NOTCONTAINSBLANKS + ); + $conditional->setConditions([$this->expression]); + $conditional->setStyle($this->getStyle()); + $conditional->setStopIfTrue($this->getStopIfTrue()); + + return $conditional; + } + + public static function fromConditional(Conditional $conditional, string $cellRange = 'A1'): WizardInterface + { + if ( + $conditional->getConditionType() !== Conditional::CONDITION_CONTAINSBLANKS && + $conditional->getConditionType() !== Conditional::CONDITION_NOTCONTAINSBLANKS + ) { + throw new Exception('Conditional is not a Blanks CF Rule conditional'); + } + + $wizard = new self($cellRange); + $wizard->style = $conditional->getStyle(); + $wizard->stopIfTrue = $conditional->getStopIfTrue(); + $wizard->inverse = $conditional->getConditionType() === Conditional::CONDITION_CONTAINSBLANKS; + + return $wizard; + } + + /** + * @param string $methodName + * @param mixed[] $arguments + */ + public function __call($methodName, $arguments): self + { + if (!array_key_exists($methodName, self::OPERATORS)) { + throw new Exception('Invalid Operation for Blanks CF Rule Wizard'); + } + + $this->inverse(self::OPERATORS[$methodName]); + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/CellValue.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/CellValue.php new file mode 100644 index 0000000..f36033d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/CellValue.php @@ -0,0 +1,189 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\CellMatcher; +use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard; + +/** + * @method CellValue equals($value, string $operandValueType = Wizard::VALUE_TYPE_LITERAL) + * @method CellValue notEquals($value, string $operandValueType = Wizard::VALUE_TYPE_LITERAL) + * @method CellValue greaterThan($value, string $operandValueType = Wizard::VALUE_TYPE_LITERAL) + * @method CellValue greaterThanOrEqual($value, string $operandValueType = Wizard::VALUE_TYPE_LITERAL) + * @method CellValue lessThan($value, string $operandValueType = Wizard::VALUE_TYPE_LITERAL) + * @method CellValue lessThanOrEqual($value, string $operandValueType = Wizard::VALUE_TYPE_LITERAL) + * @method CellValue between($value, string $operandValueType = Wizard::VALUE_TYPE_LITERAL) + * @method CellValue notBetween($value, string $operandValueType = Wizard::VALUE_TYPE_LITERAL) + * @method CellValue and($value, string $operandValueType = Wizard::VALUE_TYPE_LITERAL) + */ +class CellValue extends WizardAbstract implements WizardInterface +{ + protected const MAGIC_OPERATIONS = [ + 'equals' => Conditional::OPERATOR_EQUAL, + 'notEquals' => Conditional::OPERATOR_NOTEQUAL, + 'greaterThan' => Conditional::OPERATOR_GREATERTHAN, + 'greaterThanOrEqual' => Conditional::OPERATOR_GREATERTHANOREQUAL, + 'lessThan' => Conditional::OPERATOR_LESSTHAN, + 'lessThanOrEqual' => Conditional::OPERATOR_LESSTHANOREQUAL, + 'between' => Conditional::OPERATOR_BETWEEN, + 'notBetween' => Conditional::OPERATOR_NOTBETWEEN, + ]; + + protected const SINGLE_OPERATORS = CellMatcher::COMPARISON_OPERATORS; + + protected const RANGE_OPERATORS = CellMatcher::COMPARISON_RANGE_OPERATORS; + + /** @var string */ + protected $operator = Conditional::OPERATOR_EQUAL; + + /** @var array */ + protected $operand = [0]; + + /** + * @var string[] + */ + protected $operandValueType = []; + + public function __construct(string $cellRange) + { + parent::__construct($cellRange); + } + + protected function operator(string $operator): void + { + if ((!isset(self::SINGLE_OPERATORS[$operator])) && (!isset(self::RANGE_OPERATORS[$operator]))) { + throw new Exception('Invalid Operator for Cell Value CF Rule Wizard'); + } + + $this->operator = $operator; + } + + /** + * @param mixed $operand + */ + protected function operand(int $index, $operand, string $operandValueType = Wizard::VALUE_TYPE_LITERAL): void + { + if (is_string($operand)) { + $operand = $this->validateOperand($operand, $operandValueType); + } + + $this->operand[$index] = $operand; + $this->operandValueType[$index] = $operandValueType; + } + + /** + * @param mixed $value + * + * @return float|int|string + */ + protected function wrapValue($value, string $operandValueType) + { + if (!is_numeric($value) && !is_bool($value) && null !== $value) { + if ($operandValueType === Wizard::VALUE_TYPE_LITERAL) { + return '"' . str_replace('"', '""', $value) . '"'; + } + + return $this->cellConditionCheck($value); + } + + if (null === $value) { + $value = 'NULL'; + } elseif (is_bool($value)) { + $value = $value ? 'TRUE' : 'FALSE'; + } + + return $value; + } + + public function getConditional(): Conditional + { + if (!isset(self::RANGE_OPERATORS[$this->operator])) { + unset($this->operand[1], $this->operandValueType[1]); + } + $values = array_map([$this, 'wrapValue'], $this->operand, $this->operandValueType); + + $conditional = new Conditional(); + $conditional->setConditionType(Conditional::CONDITION_CELLIS); + $conditional->setOperatorType($this->operator); + $conditional->setConditions($values); + $conditional->setStyle($this->getStyle()); + $conditional->setStopIfTrue($this->getStopIfTrue()); + + return $conditional; + } + + protected static function unwrapString(string $condition): string + { + if ((strpos($condition, '"') === 0) && (strpos(strrev($condition), '"') === 0)) { + $condition = substr($condition, 1, -1); + } + + return str_replace('""', '"', $condition); + } + + public static function fromConditional(Conditional $conditional, string $cellRange = 'A1'): WizardInterface + { + if ($conditional->getConditionType() !== Conditional::CONDITION_CELLIS) { + throw new Exception('Conditional is not a Cell Value CF Rule conditional'); + } + + $wizard = new self($cellRange); + $wizard->style = $conditional->getStyle(); + $wizard->stopIfTrue = $conditional->getStopIfTrue(); + + $wizard->operator = $conditional->getOperatorType(); + $conditions = $conditional->getConditions(); + foreach ($conditions as $index => $condition) { + // Best-guess to try and identify if the text is a string literal, a cell reference or a formula? + $operandValueType = Wizard::VALUE_TYPE_LITERAL; + if (is_string($condition)) { + if (array_key_exists($condition, Calculation::$excelConstants)) { + $condition = Calculation::$excelConstants[$condition]; + } elseif (preg_match('/^' . Calculation::CALCULATION_REGEXP_CELLREF_RELATIVE . '$/i', $condition)) { + $operandValueType = Wizard::VALUE_TYPE_CELL; + $condition = self::reverseAdjustCellRef($condition, $cellRange); + } elseif ( + preg_match('/\(\)/', $condition) || + preg_match('/' . Calculation::CALCULATION_REGEXP_CELLREF_RELATIVE . '/i', $condition) + ) { + $operandValueType = Wizard::VALUE_TYPE_FORMULA; + $condition = self::reverseAdjustCellRef($condition, $cellRange); + } else { + $condition = self::unwrapString($condition); + } + } + $wizard->operand($index, $condition, $operandValueType); + } + + return $wizard; + } + + /** + * @param string $methodName + * @param mixed[] $arguments + */ + public function __call($methodName, $arguments): self + { + if (!isset(self::MAGIC_OPERATIONS[$methodName]) && $methodName !== 'and') { + throw new Exception('Invalid Operator for Cell Value CF Rule Wizard'); + } + + if ($methodName === 'and') { + if (!isset(self::RANGE_OPERATORS[$this->operator])) { + throw new Exception('AND Value is only appropriate for range operators'); + } + + $this->operand(1, ...$arguments); + + return $this; + } + + $this->operator(self::MAGIC_OPERATIONS[$methodName]); + $this->operand(0, ...$arguments); + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/DateValue.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/DateValue.php new file mode 100644 index 0000000..453dcdf --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/DateValue.php @@ -0,0 +1,111 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard; + +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\Style\Conditional; + +/** + * @method DateValue yesterday() + * @method DateValue today() + * @method DateValue tomorrow() + * @method DateValue lastSevenDays() + * @method DateValue lastWeek() + * @method DateValue thisWeek() + * @method DateValue nextWeek() + * @method DateValue lastMonth() + * @method DateValue thisMonth() + * @method DateValue nextMonth() + */ +class DateValue extends WizardAbstract implements WizardInterface +{ + protected const MAGIC_OPERATIONS = [ + 'yesterday' => Conditional::TIMEPERIOD_YESTERDAY, + 'today' => Conditional::TIMEPERIOD_TODAY, + 'tomorrow' => Conditional::TIMEPERIOD_TOMORROW, + 'lastSevenDays' => Conditional::TIMEPERIOD_LAST_7_DAYS, + 'last7Days' => Conditional::TIMEPERIOD_LAST_7_DAYS, + 'lastWeek' => Conditional::TIMEPERIOD_LAST_WEEK, + 'thisWeek' => Conditional::TIMEPERIOD_THIS_WEEK, + 'nextWeek' => Conditional::TIMEPERIOD_NEXT_WEEK, + 'lastMonth' => Conditional::TIMEPERIOD_LAST_MONTH, + 'thisMonth' => Conditional::TIMEPERIOD_THIS_MONTH, + 'nextMonth' => Conditional::TIMEPERIOD_NEXT_MONTH, + ]; + + protected const EXPRESSIONS = [ + Conditional::TIMEPERIOD_YESTERDAY => 'FLOOR(%s,1)=TODAY()-1', + Conditional::TIMEPERIOD_TODAY => 'FLOOR(%s,1)=TODAY()', + Conditional::TIMEPERIOD_TOMORROW => 'FLOOR(%s,1)=TODAY()+1', + Conditional::TIMEPERIOD_LAST_7_DAYS => 'AND(TODAY()-FLOOR(%s,1)<=6,FLOOR(%s,1)<=TODAY())', + Conditional::TIMEPERIOD_LAST_WEEK => 'AND(TODAY()-ROUNDDOWN(%s,0)>=(WEEKDAY(TODAY())),TODAY()-ROUNDDOWN(%s,0)<(WEEKDAY(TODAY())+7))', + Conditional::TIMEPERIOD_THIS_WEEK => 'AND(TODAY()-ROUNDDOWN(%s,0)<=WEEKDAY(TODAY())-1,ROUNDDOWN(%s,0)-TODAY()<=7-WEEKDAY(TODAY()))', + Conditional::TIMEPERIOD_NEXT_WEEK => 'AND(ROUNDDOWN(%s,0)-TODAY()>(7-WEEKDAY(TODAY())),ROUNDDOWN(%s,0)-TODAY()<(15-WEEKDAY(TODAY())))', + Conditional::TIMEPERIOD_LAST_MONTH => 'AND(MONTH(%s)=MONTH(EDATE(TODAY(),0-1)),YEAR(%s)=YEAR(EDATE(TODAY(),0-1)))', + Conditional::TIMEPERIOD_THIS_MONTH => 'AND(MONTH(%s)=MONTH(TODAY()),YEAR(%s)=YEAR(TODAY()))', + Conditional::TIMEPERIOD_NEXT_MONTH => 'AND(MONTH(%s)=MONTH(EDATE(TODAY(),0+1)),YEAR(%s)=YEAR(EDATE(TODAY(),0+1)))', + ]; + + /** @var string */ + protected $operator; + + public function __construct(string $cellRange) + { + parent::__construct($cellRange); + } + + protected function operator(string $operator): void + { + $this->operator = $operator; + } + + protected function setExpression(): void + { + $referenceCount = substr_count(self::EXPRESSIONS[$this->operator], '%s'); + $references = array_fill(0, $referenceCount, $this->referenceCell); + $this->expression = sprintf(self::EXPRESSIONS[$this->operator], ...$references); + } + + public function getConditional(): Conditional + { + $this->setExpression(); + + $conditional = new Conditional(); + $conditional->setConditionType(Conditional::CONDITION_TIMEPERIOD); + $conditional->setText($this->operator); + $conditional->setConditions([$this->expression]); + $conditional->setStyle($this->getStyle()); + $conditional->setStopIfTrue($this->getStopIfTrue()); + + return $conditional; + } + + public static function fromConditional(Conditional $conditional, string $cellRange = 'A1'): WizardInterface + { + if ($conditional->getConditionType() !== Conditional::CONDITION_TIMEPERIOD) { + throw new Exception('Conditional is not a Date Value CF Rule conditional'); + } + + $wizard = new self($cellRange); + $wizard->style = $conditional->getStyle(); + $wizard->stopIfTrue = $conditional->getStopIfTrue(); + $wizard->operator = $conditional->getText(); + + return $wizard; + } + + /** + * @param string $methodName + * @param mixed[] $arguments + */ + public function __call($methodName, $arguments): self + { + if (!isset(self::MAGIC_OPERATIONS[$methodName])) { + throw new Exception('Invalid Operation for Date Value CF Rule Wizard'); + } + + $this->operator(self::MAGIC_OPERATIONS[$methodName]); + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Duplicates.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Duplicates.php new file mode 100644 index 0000000..3f063fe --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Duplicates.php @@ -0,0 +1,78 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard; + +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\Style\Conditional; + +/** + * @method Errors duplicates() + * @method Errors unique() + */ +class Duplicates extends WizardAbstract implements WizardInterface +{ + protected const OPERATORS = [ + 'duplicates' => false, + 'unique' => true, + ]; + + /** + * @var bool + */ + protected $inverse; + + public function __construct(string $cellRange, bool $inverse = false) + { + parent::__construct($cellRange); + $this->inverse = $inverse; + } + + protected function inverse(bool $inverse): void + { + $this->inverse = $inverse; + } + + public function getConditional(): Conditional + { + $conditional = new Conditional(); + $conditional->setConditionType( + $this->inverse ? Conditional::CONDITION_UNIQUE : Conditional::CONDITION_DUPLICATES + ); + $conditional->setStyle($this->getStyle()); + $conditional->setStopIfTrue($this->getStopIfTrue()); + + return $conditional; + } + + public static function fromConditional(Conditional $conditional, string $cellRange = 'A1'): WizardInterface + { + if ( + $conditional->getConditionType() !== Conditional::CONDITION_DUPLICATES && + $conditional->getConditionType() !== Conditional::CONDITION_UNIQUE + ) { + throw new Exception('Conditional is not a Duplicates CF Rule conditional'); + } + + $wizard = new self($cellRange); + $wizard->style = $conditional->getStyle(); + $wizard->stopIfTrue = $conditional->getStopIfTrue(); + $wizard->inverse = $conditional->getConditionType() === Conditional::CONDITION_UNIQUE; + + return $wizard; + } + + /** + * @param string $methodName + * @param mixed[] $arguments + */ + public function __call($methodName, $arguments): self + { + if (!array_key_exists($methodName, self::OPERATORS)) { + throw new Exception('Invalid Operation for Errors CF Rule Wizard'); + } + + $this->inverse(self::OPERATORS[$methodName]); + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Errors.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Errors.php new file mode 100644 index 0000000..56b9086 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Errors.php @@ -0,0 +1,95 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard; + +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard; + +/** + * @method Errors notError() + * @method Errors isError() + */ +class Errors extends WizardAbstract implements WizardInterface +{ + protected const OPERATORS = [ + 'notError' => false, + 'isError' => true, + ]; + + protected const EXPRESSIONS = [ + Wizard::NOT_ERRORS => 'NOT(ISERROR(%s))', + Wizard::ERRORS => 'ISERROR(%s)', + ]; + + /** + * @var bool + */ + protected $inverse; + + public function __construct(string $cellRange, bool $inverse = false) + { + parent::__construct($cellRange); + $this->inverse = $inverse; + } + + protected function inverse(bool $inverse): void + { + $this->inverse = $inverse; + } + + protected function getExpression(): void + { + $this->expression = sprintf( + self::EXPRESSIONS[$this->inverse ? Wizard::ERRORS : Wizard::NOT_ERRORS], + $this->referenceCell + ); + } + + public function getConditional(): Conditional + { + $this->getExpression(); + + $conditional = new Conditional(); + $conditional->setConditionType( + $this->inverse ? Conditional::CONDITION_CONTAINSERRORS : Conditional::CONDITION_NOTCONTAINSERRORS + ); + $conditional->setConditions([$this->expression]); + $conditional->setStyle($this->getStyle()); + $conditional->setStopIfTrue($this->getStopIfTrue()); + + return $conditional; + } + + public static function fromConditional(Conditional $conditional, string $cellRange = 'A1'): WizardInterface + { + if ( + $conditional->getConditionType() !== Conditional::CONDITION_CONTAINSERRORS && + $conditional->getConditionType() !== Conditional::CONDITION_NOTCONTAINSERRORS + ) { + throw new Exception('Conditional is not an Errors CF Rule conditional'); + } + + $wizard = new self($cellRange); + $wizard->style = $conditional->getStyle(); + $wizard->stopIfTrue = $conditional->getStopIfTrue(); + $wizard->inverse = $conditional->getConditionType() === Conditional::CONDITION_CONTAINSERRORS; + + return $wizard; + } + + /** + * @param string $methodName + * @param mixed[] $arguments + */ + public function __call($methodName, $arguments): self + { + if (!array_key_exists($methodName, self::OPERATORS)) { + throw new Exception('Invalid Operation for Errors CF Rule Wizard'); + } + + $this->inverse(self::OPERATORS[$methodName]); + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Expression.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Expression.php new file mode 100644 index 0000000..ee71e34 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Expression.php @@ -0,0 +1,73 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard; + +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard; + +/** + * @method Expression formula(string $expression) + */ +class Expression extends WizardAbstract implements WizardInterface +{ + /** + * @var string + */ + protected $expression; + + public function __construct(string $cellRange) + { + parent::__construct($cellRange); + } + + public function expression(string $expression): self + { + $expression = $this->validateOperand($expression, Wizard::VALUE_TYPE_FORMULA); + $this->expression = $expression; + + return $this; + } + + public function getConditional(): Conditional + { + $expression = $this->adjustConditionsForCellReferences([$this->expression]); + + $conditional = new Conditional(); + $conditional->setConditionType(Conditional::CONDITION_EXPRESSION); + $conditional->setConditions($expression); + $conditional->setStyle($this->getStyle()); + $conditional->setStopIfTrue($this->getStopIfTrue()); + + return $conditional; + } + + public static function fromConditional(Conditional $conditional, string $cellRange = 'A1'): WizardInterface + { + if ($conditional->getConditionType() !== Conditional::CONDITION_EXPRESSION) { + throw new Exception('Conditional is not an Expression CF Rule conditional'); + } + + $wizard = new self($cellRange); + $wizard->style = $conditional->getStyle(); + $wizard->stopIfTrue = $conditional->getStopIfTrue(); + $wizard->expression = self::reverseAdjustCellRef((string) ($conditional->getConditions()[0]), $cellRange); + + return $wizard; + } + + /** + * @param string $methodName + * @param mixed[] $arguments + */ + public function __call($methodName, $arguments): self + { + if ($methodName !== 'formula') { + throw new Exception('Invalid Operation for Expression CF Rule Wizard'); + } + + $this->expression(...$arguments); + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/TextValue.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/TextValue.php new file mode 100644 index 0000000..4fa635b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/TextValue.php @@ -0,0 +1,163 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard; + +/** + * @method TextValue contains(string $value, string $operandValueType = Wizard::VALUE_TYPE_LITERAL) + * @method TextValue doesNotContain(string $value, string $operandValueType = Wizard::VALUE_TYPE_LITERAL) + * @method TextValue doesntContain(string $value, string $operandValueType = Wizard::VALUE_TYPE_LITERAL) + * @method TextValue beginsWith(string $value, string $operandValueType = Wizard::VALUE_TYPE_LITERAL) + * @method TextValue startsWith(string $value, string $operandValueType = Wizard::VALUE_TYPE_LITERAL) + * @method TextValue endsWith(string $value, string $operandValueType = Wizard::VALUE_TYPE_LITERAL) + */ +class TextValue extends WizardAbstract implements WizardInterface +{ + protected const MAGIC_OPERATIONS = [ + 'contains' => Conditional::OPERATOR_CONTAINSTEXT, + 'doesntContain' => Conditional::OPERATOR_NOTCONTAINS, + 'doesNotContain' => Conditional::OPERATOR_NOTCONTAINS, + 'beginsWith' => Conditional::OPERATOR_BEGINSWITH, + 'startsWith' => Conditional::OPERATOR_BEGINSWITH, + 'endsWith' => Conditional::OPERATOR_ENDSWITH, + ]; + + protected const OPERATORS = [ + Conditional::OPERATOR_CONTAINSTEXT => Conditional::CONDITION_CONTAINSTEXT, + Conditional::OPERATOR_NOTCONTAINS => Conditional::CONDITION_NOTCONTAINSTEXT, + Conditional::OPERATOR_BEGINSWITH => Conditional::CONDITION_BEGINSWITH, + Conditional::OPERATOR_ENDSWITH => Conditional::CONDITION_ENDSWITH, + ]; + + protected const EXPRESSIONS = [ + Conditional::OPERATOR_CONTAINSTEXT => 'NOT(ISERROR(SEARCH(%s,%s)))', + Conditional::OPERATOR_NOTCONTAINS => 'ISERROR(SEARCH(%s,%s))', + Conditional::OPERATOR_BEGINSWITH => 'LEFT(%s,LEN(%s))=%s', + Conditional::OPERATOR_ENDSWITH => 'RIGHT(%s,LEN(%s))=%s', + ]; + + /** @var string */ + protected $operator; + + /** @var string */ + protected $operand; + + /** + * @var string + */ + protected $operandValueType; + + public function __construct(string $cellRange) + { + parent::__construct($cellRange); + } + + protected function operator(string $operator): void + { + if (!isset(self::OPERATORS[$operator])) { + throw new Exception('Invalid Operator for Text Value CF Rule Wizard'); + } + + $this->operator = $operator; + } + + protected function operand(string $operand, string $operandValueType = Wizard::VALUE_TYPE_LITERAL): void + { + if (is_string($operand)) { + $operand = $this->validateOperand($operand, $operandValueType); + } + + $this->operand = $operand; + $this->operandValueType = $operandValueType; + } + + protected function wrapValue(string $value): string + { + return '"' . $value . '"'; + } + + protected function setExpression(): void + { + $operand = $this->operandValueType === Wizard::VALUE_TYPE_LITERAL + ? $this->wrapValue(str_replace('"', '""', $this->operand)) + : $this->cellConditionCheck($this->operand); + + if ( + $this->operator === Conditional::OPERATOR_CONTAINSTEXT || + $this->operator === Conditional::OPERATOR_NOTCONTAINS + ) { + $this->expression = sprintf(self::EXPRESSIONS[$this->operator], $operand, $this->referenceCell); + } else { + $this->expression = sprintf(self::EXPRESSIONS[$this->operator], $this->referenceCell, $operand, $operand); + } + } + + public function getConditional(): Conditional + { + $this->setExpression(); + + $conditional = new Conditional(); + $conditional->setConditionType(self::OPERATORS[$this->operator]); + $conditional->setOperatorType($this->operator); + $conditional->setText( + $this->operandValueType !== Wizard::VALUE_TYPE_LITERAL + ? $this->cellConditionCheck($this->operand) + : $this->operand + ); + $conditional->setConditions([$this->expression]); + $conditional->setStyle($this->getStyle()); + $conditional->setStopIfTrue($this->getStopIfTrue()); + + return $conditional; + } + + public static function fromConditional(Conditional $conditional, string $cellRange = 'A1'): WizardInterface + { + if (!in_array($conditional->getConditionType(), self::OPERATORS, true)) { + throw new Exception('Conditional is not a Text Value CF Rule conditional'); + } + + $wizard = new self($cellRange); + $wizard->operator = (string) array_search($conditional->getConditionType(), self::OPERATORS, true); + $wizard->style = $conditional->getStyle(); + $wizard->stopIfTrue = $conditional->getStopIfTrue(); + + // Best-guess to try and identify if the text is a string literal, a cell reference or a formula? + $wizard->operandValueType = Wizard::VALUE_TYPE_LITERAL; + $condition = $conditional->getText(); + if (is_string($condition) && array_key_exists($condition, Calculation::$excelConstants)) { + $condition = Calculation::$excelConstants[$condition]; + } elseif (preg_match('/^' . Calculation::CALCULATION_REGEXP_CELLREF_RELATIVE . '$/i', $condition)) { + $wizard->operandValueType = Wizard::VALUE_TYPE_CELL; + $condition = self::reverseAdjustCellRef($condition, $cellRange); + } elseif ( + preg_match('/\(\)/', $condition) || + preg_match('/' . Calculation::CALCULATION_REGEXP_CELLREF_RELATIVE . '/i', $condition) + ) { + $wizard->operandValueType = Wizard::VALUE_TYPE_FORMULA; + } + $wizard->operand = $condition; + + return $wizard; + } + + /** + * @param string $methodName + * @param mixed[] $arguments + */ + public function __call($methodName, $arguments): self + { + if (!isset(self::MAGIC_OPERATIONS[$methodName])) { + throw new Exception('Invalid Operation for Text Value CF Rule Wizard'); + } + + $this->operator(self::MAGIC_OPERATIONS[$methodName]); + $this->operand(...$arguments); + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/WizardAbstract.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/WizardAbstract.php new file mode 100644 index 0000000..3eb7d54 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/WizardAbstract.php @@ -0,0 +1,197 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard; +use PhpOffice\PhpSpreadsheet\Style\Style; + +abstract class WizardAbstract +{ + /** + * @var ?Style + */ + protected $style; + + /** + * @var string + */ + protected $expression; + + /** + * @var string + */ + protected $cellRange; + + /** + * @var string + */ + protected $referenceCell; + + /** + * @var int + */ + protected $referenceRow; + + /** + * @var bool + */ + protected $stopIfTrue = false; + + /** + * @var int + */ + protected $referenceColumn; + + public function __construct(string $cellRange) + { + $this->setCellRange($cellRange); + } + + public function getCellRange(): string + { + return $this->cellRange; + } + + public function setCellRange(string $cellRange): void + { + $this->cellRange = $cellRange; + $this->setReferenceCellForExpressions($cellRange); + } + + protected function setReferenceCellForExpressions(string $conditionalRange): void + { + $conditionalRange = Coordinate::splitRange(str_replace('$', '', strtoupper($conditionalRange))); + [$this->referenceCell] = $conditionalRange[0]; + + [$this->referenceColumn, $this->referenceRow] = Coordinate::indexesFromString($this->referenceCell); + } + + public function getStopIfTrue(): bool + { + return $this->stopIfTrue; + } + + public function setStopIfTrue(bool $stopIfTrue): void + { + $this->stopIfTrue = $stopIfTrue; + } + + public function getStyle(): Style + { + return $this->style ?? new Style(false, true); + } + + public function setStyle(Style $style): void + { + $this->style = $style; + } + + protected function validateOperand(string $operand, string $operandValueType = Wizard::VALUE_TYPE_LITERAL): string + { + if ( + $operandValueType === Wizard::VALUE_TYPE_LITERAL && + substr($operand, 0, 1) === '"' && + substr($operand, -1) === '"' + ) { + $operand = str_replace('""', '"', substr($operand, 1, -1)); + } elseif ($operandValueType === Wizard::VALUE_TYPE_FORMULA && substr($operand, 0, 1) === '=') { + $operand = substr($operand, 1); + } + + return $operand; + } + + protected static function reverseCellAdjustment(array $matches, int $referenceColumn, int $referenceRow): string + { + $worksheet = $matches[1]; + $column = $matches[6]; + $row = $matches[7]; + + if (strpos($column, '$') === false) { + $column = Coordinate::columnIndexFromString($column); + $column -= $referenceColumn - 1; + $column = Coordinate::stringFromColumnIndex($column); + } + + if (strpos($row, '$') === false) { + $row -= $referenceRow - 1; + } + + return "{$worksheet}{$column}{$row}"; + } + + public static function reverseAdjustCellRef(string $condition, string $cellRange): string + { + $conditionalRange = Coordinate::splitRange(str_replace('$', '', strtoupper($cellRange))); + [$referenceCell] = $conditionalRange[0]; + [$referenceColumnIndex, $referenceRow] = Coordinate::indexesFromString($referenceCell); + + $splitCondition = explode(Calculation::FORMULA_STRING_QUOTE, $condition); + $i = false; + foreach ($splitCondition as &$value) { + // Only count/replace in alternating array entries (ie. not in quoted strings) + if ($i = !$i) { + $value = (string) preg_replace_callback( + '/' . Calculation::CALCULATION_REGEXP_CELLREF_RELATIVE . '/i', + function ($matches) use ($referenceColumnIndex, $referenceRow) { + return self::reverseCellAdjustment($matches, $referenceColumnIndex, $referenceRow); + }, + $value + ); + } + } + unset($value); + + // Then rebuild the condition string to return it + return implode(Calculation::FORMULA_STRING_QUOTE, $splitCondition); + } + + protected function conditionCellAdjustment(array $matches): string + { + $worksheet = $matches[1]; + $column = $matches[6]; + $row = $matches[7]; + + if (strpos($column, '$') === false) { + $column = Coordinate::columnIndexFromString($column); + $column += $this->referenceColumn - 1; + $column = Coordinate::stringFromColumnIndex($column); + } + + if (strpos($row, '$') === false) { + $row += $this->referenceRow - 1; + } + + return "{$worksheet}{$column}{$row}"; + } + + protected function cellConditionCheck(string $condition): string + { + $splitCondition = explode(Calculation::FORMULA_STRING_QUOTE, $condition); + $i = false; + foreach ($splitCondition as &$value) { + // Only count/replace in alternating array entries (ie. not in quoted strings) + if ($i = !$i) { + $value = (string) preg_replace_callback( + '/' . Calculation::CALCULATION_REGEXP_CELLREF_RELATIVE . '/i', + [$this, 'conditionCellAdjustment'], + $value + ); + } + } + unset($value); + + // Then rebuild the condition string to return it + return implode(Calculation::FORMULA_STRING_QUOTE, $splitCondition); + } + + protected function adjustConditionsForCellReferences(array $conditions): array + { + return array_map( + [$this, 'cellConditionCheck'], + $conditions + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/WizardInterface.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/WizardInterface.php new file mode 100644 index 0000000..10ad57b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/WizardInterface.php @@ -0,0 +1,25 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard; + +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Style\Style; + +interface WizardInterface +{ + public function getCellRange(): string; + + public function setCellRange(string $cellRange): void; + + public function getStyle(): Style; + + public function setStyle(Style $style): void; + + public function getStopIfTrue(): bool; + + public function setStopIfTrue(bool $stopIfTrue): void; + + public function getConditional(): Conditional; + + public static function fromConditional(Conditional $conditional, string $cellRange = 'A1'): self; +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Fill.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Fill.php new file mode 100644 index 0000000..bd87a79 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Fill.php @@ -0,0 +1,347 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style; + +class Fill extends Supervisor +{ + // Fill types + const FILL_NONE = 'none'; + const FILL_SOLID = 'solid'; + const FILL_GRADIENT_LINEAR = 'linear'; + const FILL_GRADIENT_PATH = 'path'; + const FILL_PATTERN_DARKDOWN = 'darkDown'; + const FILL_PATTERN_DARKGRAY = 'darkGray'; + const FILL_PATTERN_DARKGRID = 'darkGrid'; + const FILL_PATTERN_DARKHORIZONTAL = 'darkHorizontal'; + const FILL_PATTERN_DARKTRELLIS = 'darkTrellis'; + const FILL_PATTERN_DARKUP = 'darkUp'; + const FILL_PATTERN_DARKVERTICAL = 'darkVertical'; + const FILL_PATTERN_GRAY0625 = 'gray0625'; + const FILL_PATTERN_GRAY125 = 'gray125'; + const FILL_PATTERN_LIGHTDOWN = 'lightDown'; + const FILL_PATTERN_LIGHTGRAY = 'lightGray'; + const FILL_PATTERN_LIGHTGRID = 'lightGrid'; + const FILL_PATTERN_LIGHTHORIZONTAL = 'lightHorizontal'; + const FILL_PATTERN_LIGHTTRELLIS = 'lightTrellis'; + const FILL_PATTERN_LIGHTUP = 'lightUp'; + const FILL_PATTERN_LIGHTVERTICAL = 'lightVertical'; + const FILL_PATTERN_MEDIUMGRAY = 'mediumGray'; + + /** + * @var null|int + */ + public $startcolorIndex; + + /** + * @var null|int + */ + public $endcolorIndex; + + /** + * Fill type. + * + * @var null|string + */ + protected $fillType = self::FILL_NONE; + + /** + * Rotation. + * + * @var float + */ + protected $rotation = 0.0; + + /** + * Start color. + * + * @var Color + */ + protected $startColor; + + /** + * End color. + * + * @var Color + */ + protected $endColor; + + /** @var bool */ + private $colorChanged = false; + + /** + * Create a new Fill. + * + * @param bool $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + * @param bool $isConditional Flag indicating if this is a conditional style or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false, $isConditional = false) + { + // Supervisor? + parent::__construct($isSupervisor); + + // Initialise values + if ($isConditional) { + $this->fillType = null; + } + $this->startColor = new Color(Color::COLOR_WHITE, $isSupervisor, $isConditional); + $this->endColor = new Color(Color::COLOR_BLACK, $isSupervisor, $isConditional); + + // bind parent if we are a supervisor + if ($isSupervisor) { + $this->startColor->bindParent($this, 'startColor'); + $this->endColor->bindParent($this, 'endColor'); + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor. + * + * @return Fill + */ + public function getSharedComponent() + { + /** @var Style */ + $parent = $this->parent; + + return $parent->getSharedComponent()->getFill(); + } + + /** + * Build style array from subcomponents. + * + * @param array $array + * + * @return array + */ + public function getStyleArray($array) + { + return ['fill' => $array]; + } + + /** + * Apply styles from array. + * + * <code> + * $spreadsheet->getActiveSheet()->getStyle('B2')->getFill()->applyFromArray( + * [ + * 'fillType' => Fill::FILL_GRADIENT_LINEAR, + * 'rotation' => 0.0, + * 'startColor' => [ + * 'rgb' => '000000' + * ], + * 'endColor' => [ + * 'argb' => 'FFFFFFFF' + * ] + * ] + * ); + * </code> + * + * @param array $styleArray Array containing style information + * + * @return $this + */ + public function applyFromArray(array $styleArray) + { + if ($this->isSupervisor) { + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($this->getStyleArray($styleArray)); + } else { + if (isset($styleArray['fillType'])) { + $this->setFillType($styleArray['fillType']); + } + if (isset($styleArray['rotation'])) { + $this->setRotation($styleArray['rotation']); + } + if (isset($styleArray['startColor'])) { + $this->getStartColor()->applyFromArray($styleArray['startColor']); + } + if (isset($styleArray['endColor'])) { + $this->getEndColor()->applyFromArray($styleArray['endColor']); + } + if (isset($styleArray['color'])) { + $this->getStartColor()->applyFromArray($styleArray['color']); + $this->getEndColor()->applyFromArray($styleArray['color']); + } + } + + return $this; + } + + /** + * Get Fill Type. + * + * @return null|string + */ + public function getFillType() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getFillType(); + } + + return $this->fillType; + } + + /** + * Set Fill Type. + * + * @param string $fillType Fill type, see self::FILL_* + * + * @return $this + */ + public function setFillType($fillType) + { + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['fillType' => $fillType]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->fillType = $fillType; + } + + return $this; + } + + /** + * Get Rotation. + * + * @return float + */ + public function getRotation() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getRotation(); + } + + return $this->rotation; + } + + /** + * Set Rotation. + * + * @param float $angleInDegrees + * + * @return $this + */ + public function setRotation($angleInDegrees) + { + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['rotation' => $angleInDegrees]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->rotation = $angleInDegrees; + } + + return $this; + } + + /** + * Get Start Color. + * + * @return Color + */ + public function getStartColor() + { + return $this->startColor; + } + + /** + * Set Start Color. + * + * @return $this + */ + public function setStartColor(Color $color) + { + $this->colorChanged = true; + // make sure parameter is a real color and not a supervisor + $color = $color->getIsSupervisor() ? $color->getSharedComponent() : $color; + + if ($this->isSupervisor) { + $styleArray = $this->getStartColor()->getStyleArray(['argb' => $color->getARGB()]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->startColor = $color; + } + + return $this; + } + + /** + * Get End Color. + * + * @return Color + */ + public function getEndColor() + { + return $this->endColor; + } + + /** + * Set End Color. + * + * @return $this + */ + public function setEndColor(Color $color) + { + $this->colorChanged = true; + // make sure parameter is a real color and not a supervisor + $color = $color->getIsSupervisor() ? $color->getSharedComponent() : $color; + + if ($this->isSupervisor) { + $styleArray = $this->getEndColor()->getStyleArray(['argb' => $color->getARGB()]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->endColor = $color; + } + + return $this; + } + + public function getColorsChanged(): bool + { + if ($this->isSupervisor) { + $changed = $this->getSharedComponent()->colorChanged; + } else { + $changed = $this->colorChanged; + } + + return $changed || $this->startColor->getHasChanged() || $this->endColor->getHasChanged(); + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHashCode(); + } + // Note that we don't care about colours for fill type NONE, but could have duplicate NONEs with + // different hashes if we don't explicitly prevent this + return md5( + $this->getFillType() . + $this->getRotation() . + ($this->getFillType() !== self::FILL_NONE ? $this->getStartColor()->getHashCode() : '') . + ($this->getFillType() !== self::FILL_NONE ? $this->getEndColor()->getHashCode() : '') . + ((string) $this->getColorsChanged()) . + __CLASS__ + ); + } + + protected function exportArray1(): array + { + $exportedArray = []; + $this->exportArray2($exportedArray, 'fillType', $this->getFillType()); + $this->exportArray2($exportedArray, 'rotation', $this->getRotation()); + if ($this->getColorsChanged()) { + $this->exportArray2($exportedArray, 'endColor', $this->getEndColor()); + $this->exportArray2($exportedArray, 'startColor', $this->getStartColor()); + } + + return $exportedArray; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Font.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Font.php new file mode 100644 index 0000000..19d6756 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Font.php @@ -0,0 +1,815 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style; + +use PhpOffice\PhpSpreadsheet\Chart\ChartColor; + +class Font extends Supervisor +{ + // Underline types + const UNDERLINE_NONE = 'none'; + const UNDERLINE_DOUBLE = 'double'; + const UNDERLINE_DOUBLEACCOUNTING = 'doubleAccounting'; + const UNDERLINE_SINGLE = 'single'; + const UNDERLINE_SINGLEACCOUNTING = 'singleAccounting'; + + /** + * Font Name. + * + * @var null|string + */ + protected $name = 'Calibri'; + + /** + * The following 7 are used only for chart titles, I think. + * + *@var string + */ + private $latin = ''; + + /** @var string */ + private $eastAsian = ''; + + /** @var string */ + private $complexScript = ''; + + /** @var int */ + private $baseLine = 0; + + /** @var string */ + private $strikeType = ''; + + /** @var ?ChartColor */ + private $underlineColor; + + /** @var ?ChartColor */ + private $chartColor; + // end of chart title items + + /** + * Font Size. + * + * @var null|float + */ + protected $size = 11; + + /** + * Bold. + * + * @var null|bool + */ + protected $bold = false; + + /** + * Italic. + * + * @var null|bool + */ + protected $italic = false; + + /** + * Superscript. + * + * @var null|bool + */ + protected $superscript = false; + + /** + * Subscript. + * + * @var null|bool + */ + protected $subscript = false; + + /** + * Underline. + * + * @var null|string + */ + protected $underline = self::UNDERLINE_NONE; + + /** + * Strikethrough. + * + * @var null|bool + */ + protected $strikethrough = false; + + /** + * Foreground color. + * + * @var Color + */ + protected $color; + + /** + * @var null|int + */ + public $colorIndex; + + /** + * Create a new Font. + * + * @param bool $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + * @param bool $isConditional Flag indicating if this is a conditional style or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false, $isConditional = false) + { + // Supervisor? + parent::__construct($isSupervisor); + + // Initialise values + if ($isConditional) { + $this->name = null; + $this->size = null; + $this->bold = null; + $this->italic = null; + $this->superscript = null; + $this->subscript = null; + $this->underline = null; + $this->strikethrough = null; + $this->color = new Color(Color::COLOR_BLACK, $isSupervisor, $isConditional); + } else { + $this->color = new Color(Color::COLOR_BLACK, $isSupervisor); + } + // bind parent if we are a supervisor + if ($isSupervisor) { + $this->color->bindParent($this, 'color'); + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor. + * + * @return Font + */ + public function getSharedComponent() + { + /** @var Style */ + $parent = $this->parent; + + return $parent->getSharedComponent()->getFont(); + } + + /** + * Build style array from subcomponents. + * + * @param array $array + * + * @return array + */ + public function getStyleArray($array) + { + return ['font' => $array]; + } + + /** + * Apply styles from array. + * + * <code> + * $spreadsheet->getActiveSheet()->getStyle('B2')->getFont()->applyFromArray( + * [ + * 'name' => 'Arial', + * 'bold' => TRUE, + * 'italic' => FALSE, + * 'underline' => \PhpOffice\PhpSpreadsheet\Style\Font::UNDERLINE_DOUBLE, + * 'strikethrough' => FALSE, + * 'color' => [ + * 'rgb' => '808080' + * ] + * ] + * ); + * </code> + * + * @param array $styleArray Array containing style information + * + * @return $this + */ + public function applyFromArray(array $styleArray) + { + if ($this->isSupervisor) { + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($this->getStyleArray($styleArray)); + } else { + if (isset($styleArray['name'])) { + $this->setName($styleArray['name']); + } + if (isset($styleArray['latin'])) { + $this->setLatin($styleArray['latin']); + } + if (isset($styleArray['eastAsian'])) { + $this->setEastAsian($styleArray['eastAsian']); + } + if (isset($styleArray['complexScript'])) { + $this->setComplexScript($styleArray['complexScript']); + } + if (isset($styleArray['bold'])) { + $this->setBold($styleArray['bold']); + } + if (isset($styleArray['italic'])) { + $this->setItalic($styleArray['italic']); + } + if (isset($styleArray['superscript'])) { + $this->setSuperscript($styleArray['superscript']); + } + if (isset($styleArray['subscript'])) { + $this->setSubscript($styleArray['subscript']); + } + if (isset($styleArray['underline'])) { + $this->setUnderline($styleArray['underline']); + } + if (isset($styleArray['strikethrough'])) { + $this->setStrikethrough($styleArray['strikethrough']); + } + if (isset($styleArray['color'])) { + $this->getColor()->applyFromArray($styleArray['color']); + } + if (isset($styleArray['size'])) { + $this->setSize($styleArray['size']); + } + } + + return $this; + } + + /** + * Get Name. + * + * @return null|string + */ + public function getName() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getName(); + } + + return $this->name; + } + + public function getLatin(): string + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getLatin(); + } + + return $this->latin; + } + + public function getEastAsian(): string + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getEastAsian(); + } + + return $this->eastAsian; + } + + public function getComplexScript(): string + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getComplexScript(); + } + + return $this->complexScript; + } + + /** + * Set Name. + * + * @param string $fontname + * + * @return $this + */ + public function setName($fontname) + { + if ($fontname == '') { + $fontname = 'Calibri'; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['name' => $fontname]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->name = $fontname; + } + + return $this; + } + + public function setLatin(string $fontname): self + { + if ($fontname == '') { + $fontname = 'Calibri'; + } + if (!$this->isSupervisor) { + $this->latin = $fontname; + } else { + // should never be true + // @codeCoverageIgnoreStart + $styleArray = $this->getStyleArray(['latin' => $fontname]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + // @codeCoverageIgnoreEnd + } + + return $this; + } + + public function setEastAsian(string $fontname): self + { + if ($fontname == '') { + $fontname = 'Calibri'; + } + if (!$this->isSupervisor) { + $this->eastAsian = $fontname; + } else { + // should never be true + // @codeCoverageIgnoreStart + $styleArray = $this->getStyleArray(['eastAsian' => $fontname]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + // @codeCoverageIgnoreEnd + } + + return $this; + } + + public function setComplexScript(string $fontname): self + { + if ($fontname == '') { + $fontname = 'Calibri'; + } + if (!$this->isSupervisor) { + $this->complexScript = $fontname; + } else { + // should never be true + // @codeCoverageIgnoreStart + $styleArray = $this->getStyleArray(['complexScript' => $fontname]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + // @codeCoverageIgnoreEnd + } + + return $this; + } + + /** + * Get Size. + * + * @return null|float + */ + public function getSize() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getSize(); + } + + return $this->size; + } + + /** + * Set Size. + * + * @param mixed $sizeInPoints A float representing the value of a positive measurement in points (1/72 of an inch) + * + * @return $this + */ + public function setSize($sizeInPoints, bool $nullOk = false) + { + if (is_string($sizeInPoints) || is_int($sizeInPoints)) { + $sizeInPoints = (float) $sizeInPoints; // $pValue = 0 if given string is not numeric + } + + // Size must be a positive floating point number + // ECMA-376-1:2016, part 1, chapter 18.4.11 sz (Font Size), p. 1536 + if (!is_float($sizeInPoints) || !($sizeInPoints > 0)) { + if (!$nullOk || $sizeInPoints !== null) { + $sizeInPoints = 10.0; + } + } + + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['size' => $sizeInPoints]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->size = $sizeInPoints; + } + + return $this; + } + + /** + * Get Bold. + * + * @return null|bool + */ + public function getBold() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getBold(); + } + + return $this->bold; + } + + /** + * Set Bold. + * + * @param bool $bold + * + * @return $this + */ + public function setBold($bold) + { + if ($bold == '') { + $bold = false; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['bold' => $bold]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->bold = $bold; + } + + return $this; + } + + /** + * Get Italic. + * + * @return null|bool + */ + public function getItalic() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getItalic(); + } + + return $this->italic; + } + + /** + * Set Italic. + * + * @param bool $italic + * + * @return $this + */ + public function setItalic($italic) + { + if ($italic == '') { + $italic = false; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['italic' => $italic]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->italic = $italic; + } + + return $this; + } + + /** + * Get Superscript. + * + * @return null|bool + */ + public function getSuperscript() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getSuperscript(); + } + + return $this->superscript; + } + + /** + * Set Superscript. + * + * @return $this + */ + public function setSuperscript(bool $superscript) + { + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['superscript' => $superscript]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->superscript = $superscript; + if ($this->superscript) { + $this->subscript = false; + } + } + + return $this; + } + + /** + * Get Subscript. + * + * @return null|bool + */ + public function getSubscript() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getSubscript(); + } + + return $this->subscript; + } + + /** + * Set Subscript. + * + * @return $this + */ + public function setSubscript(bool $subscript) + { + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['subscript' => $subscript]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->subscript = $subscript; + if ($this->subscript) { + $this->superscript = false; + } + } + + return $this; + } + + public function getBaseLine(): int + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getBaseLine(); + } + + return $this->baseLine; + } + + public function setBaseLine(int $baseLine): self + { + if (!$this->isSupervisor) { + $this->baseLine = $baseLine; + } else { + // should never be true + // @codeCoverageIgnoreStart + $styleArray = $this->getStyleArray(['baseLine' => $baseLine]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + // @codeCoverageIgnoreEnd + } + + return $this; + } + + public function getStrikeType(): string + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getStrikeType(); + } + + return $this->strikeType; + } + + public function setStrikeType(string $strikeType): self + { + if (!$this->isSupervisor) { + $this->strikeType = $strikeType; + } else { + // should never be true + // @codeCoverageIgnoreStart + $styleArray = $this->getStyleArray(['strikeType' => $strikeType]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + // @codeCoverageIgnoreEnd + } + + return $this; + } + + public function getUnderlineColor(): ?ChartColor + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getUnderlineColor(); + } + + return $this->underlineColor; + } + + public function setUnderlineColor(array $colorArray): self + { + if (!$this->isSupervisor) { + $this->underlineColor = new ChartColor($colorArray); + } else { + // should never be true + // @codeCoverageIgnoreStart + $styleArray = $this->getStyleArray(['underlineColor' => $colorArray]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + // @codeCoverageIgnoreEnd + } + + return $this; + } + + public function getChartColor(): ?ChartColor + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getChartColor(); + } + + return $this->chartColor; + } + + public function setChartColor(array $colorArray): self + { + if (!$this->isSupervisor) { + $this->chartColor = new ChartColor($colorArray); + } else { + // should never be true + // @codeCoverageIgnoreStart + $styleArray = $this->getStyleArray(['chartColor' => $colorArray]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + // @codeCoverageIgnoreEnd + } + + return $this; + } + + /** + * Get Underline. + * + * @return null|string + */ + public function getUnderline() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getUnderline(); + } + + return $this->underline; + } + + /** + * Set Underline. + * + * @param bool|string $underlineStyle \PhpOffice\PhpSpreadsheet\Style\Font underline type + * If a boolean is passed, then TRUE equates to UNDERLINE_SINGLE, + * false equates to UNDERLINE_NONE + * + * @return $this + */ + public function setUnderline($underlineStyle) + { + if (is_bool($underlineStyle)) { + $underlineStyle = ($underlineStyle) ? self::UNDERLINE_SINGLE : self::UNDERLINE_NONE; + } elseif ($underlineStyle == '') { + $underlineStyle = self::UNDERLINE_NONE; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['underline' => $underlineStyle]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->underline = $underlineStyle; + } + + return $this; + } + + /** + * Get Strikethrough. + * + * @return null|bool + */ + public function getStrikethrough() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getStrikethrough(); + } + + return $this->strikethrough; + } + + /** + * Set Strikethrough. + * + * @param bool $strikethru + * + * @return $this + */ + public function setStrikethrough($strikethru) + { + if ($strikethru == '') { + $strikethru = false; + } + + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['strikethrough' => $strikethru]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->strikethrough = $strikethru; + } + + return $this; + } + + /** + * Get Color. + * + * @return Color + */ + public function getColor() + { + return $this->color; + } + + /** + * Set Color. + * + * @return $this + */ + public function setColor(Color $color) + { + // make sure parameter is a real color and not a supervisor + $color = $color->getIsSupervisor() ? $color->getSharedComponent() : $color; + + if ($this->isSupervisor) { + $styleArray = $this->getColor()->getStyleArray(['argb' => $color->getARGB()]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->color = $color; + } + + return $this; + } + + private function hashChartColor(?ChartColor $underlineColor): string + { + if ($this->underlineColor === null) { + return ''; + } + + return + $this->underlineColor->getValue() + . $this->underlineColor->getType() + . (string) $this->underlineColor->getAlpha(); + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHashCode(); + } + + return md5( + $this->name . + $this->size . + ($this->bold ? 't' : 'f') . + ($this->italic ? 't' : 'f') . + ($this->superscript ? 't' : 'f') . + ($this->subscript ? 't' : 'f') . + $this->underline . + ($this->strikethrough ? 't' : 'f') . + $this->color->getHashCode() . + implode( + '*', + [ + $this->latin, + $this->eastAsian, + $this->complexScript, + $this->strikeType, + $this->hashChartColor($this->chartColor), + $this->hashChartColor($this->underlineColor), + (string) $this->baseLine, + ] + ) . + __CLASS__ + ); + } + + protected function exportArray1(): array + { + $exportedArray = []; + $this->exportArray2($exportedArray, 'baseLine', $this->getBaseLine()); + $this->exportArray2($exportedArray, 'bold', $this->getBold()); + $this->exportArray2($exportedArray, 'chartColor', $this->getChartColor()); + $this->exportArray2($exportedArray, 'color', $this->getColor()); + $this->exportArray2($exportedArray, 'complexScript', $this->getComplexScript()); + $this->exportArray2($exportedArray, 'eastAsian', $this->getEastAsian()); + $this->exportArray2($exportedArray, 'italic', $this->getItalic()); + $this->exportArray2($exportedArray, 'latin', $this->getLatin()); + $this->exportArray2($exportedArray, 'name', $this->getName()); + $this->exportArray2($exportedArray, 'size', $this->getSize()); + $this->exportArray2($exportedArray, 'strikethrough', $this->getStrikethrough()); + $this->exportArray2($exportedArray, 'strikeType', $this->getStrikeType()); + $this->exportArray2($exportedArray, 'subscript', $this->getSubscript()); + $this->exportArray2($exportedArray, 'superscript', $this->getSuperscript()); + $this->exportArray2($exportedArray, 'underline', $this->getUnderline()); + $this->exportArray2($exportedArray, 'underlineColor', $this->getUnderlineColor()); + + return $exportedArray; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat.php new file mode 100644 index 0000000..6f552cb --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat.php @@ -0,0 +1,414 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style; + +class NumberFormat extends Supervisor +{ + // Pre-defined formats + const FORMAT_GENERAL = 'General'; + + const FORMAT_TEXT = '@'; + + const FORMAT_NUMBER = '0'; + const FORMAT_NUMBER_0 = '0.0'; + const FORMAT_NUMBER_00 = '0.00'; + const FORMAT_NUMBER_COMMA_SEPARATED1 = '#,##0.00'; + const FORMAT_NUMBER_COMMA_SEPARATED2 = '#,##0.00_-'; + + const FORMAT_PERCENTAGE = '0%'; + const FORMAT_PERCENTAGE_0 = '0.0%'; + const FORMAT_PERCENTAGE_00 = '0.00%'; + + const FORMAT_DATE_YYYYMMDD2 = 'yyyy-mm-dd'; + const FORMAT_DATE_YYYYMMDD = 'yyyy-mm-dd'; + const FORMAT_DATE_DDMMYYYY = 'dd/mm/yyyy'; + const FORMAT_DATE_DMYSLASH = 'd/m/yy'; + const FORMAT_DATE_DMYMINUS = 'd-m-yy'; + const FORMAT_DATE_DMMINUS = 'd-m'; + const FORMAT_DATE_MYMINUS = 'm-yy'; + const FORMAT_DATE_XLSX14 = 'mm-dd-yy'; + const FORMAT_DATE_XLSX15 = 'd-mmm-yy'; + const FORMAT_DATE_XLSX16 = 'd-mmm'; + const FORMAT_DATE_XLSX17 = 'mmm-yy'; + const FORMAT_DATE_XLSX22 = 'm/d/yy h:mm'; + const FORMAT_DATE_DATETIME = 'd/m/yy h:mm'; + const FORMAT_DATE_TIME1 = 'h:mm AM/PM'; + const FORMAT_DATE_TIME2 = 'h:mm:ss AM/PM'; + const FORMAT_DATE_TIME3 = 'h:mm'; + const FORMAT_DATE_TIME4 = 'h:mm:ss'; + const FORMAT_DATE_TIME5 = 'mm:ss'; + const FORMAT_DATE_TIME6 = 'h:mm:ss'; + const FORMAT_DATE_TIME7 = 'i:s.S'; + const FORMAT_DATE_TIME8 = 'h:mm:ss;@'; + const FORMAT_DATE_YYYYMMDDSLASH = 'yyyy/mm/dd;@'; + + const FORMAT_CURRENCY_USD_SIMPLE = '"$"#,##0.00_-'; + const FORMAT_CURRENCY_USD = '$#,##0_-'; + const FORMAT_CURRENCY_EUR_SIMPLE = '#,##0.00_-"€"'; + const FORMAT_CURRENCY_EUR = '#,##0_-"€"'; + const FORMAT_ACCOUNTING_USD = '_("$"* #,##0.00_);_("$"* \(#,##0.00\);_("$"* "-"??_);_(@_)'; + const FORMAT_ACCOUNTING_EUR = '_("€"* #,##0.00_);_("€"* \(#,##0.00\);_("€"* "-"??_);_(@_)'; + + /** + * Excel built-in number formats. + * + * @var array + */ + protected static $builtInFormats; + + /** + * Excel built-in number formats (flipped, for faster lookups). + * + * @var array + */ + protected static $flippedBuiltInFormats; + + /** + * Format Code. + * + * @var null|string + */ + protected $formatCode = self::FORMAT_GENERAL; + + /** + * Built-in format Code. + * + * @var false|int + */ + protected $builtInFormatCode = 0; + + /** + * Create a new NumberFormat. + * + * @param bool $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + * @param bool $isConditional Flag indicating if this is a conditional style or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false, $isConditional = false) + { + // Supervisor? + parent::__construct($isSupervisor); + + if ($isConditional) { + $this->formatCode = null; + $this->builtInFormatCode = false; + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor. + * + * @return NumberFormat + */ + public function getSharedComponent() + { + /** @var Style */ + $parent = $this->parent; + + return $parent->getSharedComponent()->getNumberFormat(); + } + + /** + * Build style array from subcomponents. + * + * @param array $array + * + * @return array + */ + public function getStyleArray($array) + { + return ['numberFormat' => $array]; + } + + /** + * Apply styles from array. + * + * <code> + * $spreadsheet->getActiveSheet()->getStyle('B2')->getNumberFormat()->applyFromArray( + * [ + * 'formatCode' => NumberFormat::FORMAT_CURRENCY_EUR_SIMPLE + * ] + * ); + * </code> + * + * @param array $styleArray Array containing style information + * + * @return $this + */ + public function applyFromArray(array $styleArray) + { + if ($this->isSupervisor) { + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($this->getStyleArray($styleArray)); + } else { + if (isset($styleArray['formatCode'])) { + $this->setFormatCode($styleArray['formatCode']); + } + } + + return $this; + } + + /** + * Get Format Code. + * + * @return null|string + */ + public function getFormatCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getFormatCode(); + } + if (is_int($this->builtInFormatCode)) { + return self::builtInFormatCode($this->builtInFormatCode); + } + + return $this->formatCode; + } + + /** + * Set Format Code. + * + * @param string $formatCode see self::FORMAT_* + * + * @return $this + */ + public function setFormatCode($formatCode) + { + if ($formatCode == '') { + $formatCode = self::FORMAT_GENERAL; + } + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['formatCode' => $formatCode]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->formatCode = $formatCode; + $this->builtInFormatCode = self::builtInFormatCodeIndex($formatCode); + } + + return $this; + } + + /** + * Get Built-In Format Code. + * + * @return false|int + */ + public function getBuiltInFormatCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getBuiltInFormatCode(); + } + + return $this->builtInFormatCode; + } + + /** + * Set Built-In Format Code. + * + * @param int $formatCodeIndex + * + * @return $this + */ + public function setBuiltInFormatCode($formatCodeIndex) + { + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['formatCode' => self::builtInFormatCode($formatCodeIndex)]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->builtInFormatCode = $formatCodeIndex; + $this->formatCode = self::builtInFormatCode($formatCodeIndex); + } + + return $this; + } + + /** + * Fill built-in format codes. + */ + private static function fillBuiltInFormatCodes(): void + { + // [MS-OI29500: Microsoft Office Implementation Information for ISO/IEC-29500 Standard Compliance] + // 18.8.30. numFmt (Number Format) + // + // The ECMA standard defines built-in format IDs + // 14: "mm-dd-yy" + // 22: "m/d/yy h:mm" + // 37: "#,##0 ;(#,##0)" + // 38: "#,##0 ;[Red](#,##0)" + // 39: "#,##0.00;(#,##0.00)" + // 40: "#,##0.00;[Red](#,##0.00)" + // 47: "mmss.0" + // KOR fmt 55: "yyyy-mm-dd" + // Excel defines built-in format IDs + // 14: "m/d/yyyy" + // 22: "m/d/yyyy h:mm" + // 37: "#,##0_);(#,##0)" + // 38: "#,##0_);[Red](#,##0)" + // 39: "#,##0.00_);(#,##0.00)" + // 40: "#,##0.00_);[Red](#,##0.00)" + // 47: "mm:ss.0" + // KOR fmt 55: "yyyy/mm/dd" + + // Built-in format codes + if (self::$builtInFormats === null) { + self::$builtInFormats = []; + + // General + self::$builtInFormats[0] = self::FORMAT_GENERAL; + self::$builtInFormats[1] = '0'; + self::$builtInFormats[2] = '0.00'; + self::$builtInFormats[3] = '#,##0'; + self::$builtInFormats[4] = '#,##0.00'; + + self::$builtInFormats[9] = '0%'; + self::$builtInFormats[10] = '0.00%'; + self::$builtInFormats[11] = '0.00E+00'; + self::$builtInFormats[12] = '# ?/?'; + self::$builtInFormats[13] = '# ??/??'; + self::$builtInFormats[14] = 'm/d/yyyy'; // Despite ECMA 'mm-dd-yy'; + self::$builtInFormats[15] = 'd-mmm-yy'; + self::$builtInFormats[16] = 'd-mmm'; + self::$builtInFormats[17] = 'mmm-yy'; + self::$builtInFormats[18] = 'h:mm AM/PM'; + self::$builtInFormats[19] = 'h:mm:ss AM/PM'; + self::$builtInFormats[20] = 'h:mm'; + self::$builtInFormats[21] = 'h:mm:ss'; + self::$builtInFormats[22] = 'm/d/yyyy h:mm'; // Despite ECMA 'm/d/yy h:mm'; + + self::$builtInFormats[37] = '#,##0_);(#,##0)'; // Despite ECMA '#,##0 ;(#,##0)'; + self::$builtInFormats[38] = '#,##0_);[Red](#,##0)'; // Despite ECMA '#,##0 ;[Red](#,##0)'; + self::$builtInFormats[39] = '#,##0.00_);(#,##0.00)'; // Despite ECMA '#,##0.00;(#,##0.00)'; + self::$builtInFormats[40] = '#,##0.00_);[Red](#,##0.00)'; // Despite ECMA '#,##0.00;[Red](#,##0.00)'; + + self::$builtInFormats[44] = '_("$"* #,##0.00_);_("$"* \(#,##0.00\);_("$"* "-"??_);_(@_)'; + self::$builtInFormats[45] = 'mm:ss'; + self::$builtInFormats[46] = '[h]:mm:ss'; + self::$builtInFormats[47] = 'mm:ss.0'; // Despite ECMA 'mmss.0'; + self::$builtInFormats[48] = '##0.0E+0'; + self::$builtInFormats[49] = '@'; + + // CHT + self::$builtInFormats[27] = '[$-404]e/m/d'; + self::$builtInFormats[30] = 'm/d/yy'; + self::$builtInFormats[36] = '[$-404]e/m/d'; + self::$builtInFormats[50] = '[$-404]e/m/d'; + self::$builtInFormats[57] = '[$-404]e/m/d'; + + // THA + self::$builtInFormats[59] = 't0'; + self::$builtInFormats[60] = 't0.00'; + self::$builtInFormats[61] = 't#,##0'; + self::$builtInFormats[62] = 't#,##0.00'; + self::$builtInFormats[67] = 't0%'; + self::$builtInFormats[68] = 't0.00%'; + self::$builtInFormats[69] = 't# ?/?'; + self::$builtInFormats[70] = 't# ??/??'; + + // JPN + self::$builtInFormats[28] = '[$-411]ggge"å¹´"m"月"d"æ—¥"'; + self::$builtInFormats[29] = '[$-411]ggge"å¹´"m"月"d"æ—¥"'; + self::$builtInFormats[31] = 'yyyy"å¹´"m"月"d"æ—¥"'; + self::$builtInFormats[32] = 'h"時"mm"分"'; + self::$builtInFormats[33] = 'h"時"mm"分"ss"ç§’"'; + self::$builtInFormats[34] = 'yyyy"å¹´"m"月"'; + self::$builtInFormats[35] = 'm"月"d"æ—¥"'; + self::$builtInFormats[51] = '[$-411]ggge"å¹´"m"月"d"æ—¥"'; + self::$builtInFormats[52] = 'yyyy"å¹´"m"月"'; + self::$builtInFormats[53] = 'm"月"d"æ—¥"'; + self::$builtInFormats[54] = '[$-411]ggge"å¹´"m"月"d"æ—¥"'; + self::$builtInFormats[55] = 'yyyy"å¹´"m"月"'; + self::$builtInFormats[56] = 'm"月"d"æ—¥"'; + self::$builtInFormats[58] = '[$-411]ggge"å¹´"m"月"d"æ—¥"'; + + // Flip array (for faster lookups) + self::$flippedBuiltInFormats = array_flip(self::$builtInFormats); + } + } + + /** + * Get built-in format code. + * + * @param int $index + * + * @return string + */ + public static function builtInFormatCode($index) + { + // Clean parameter + $index = (int) $index; + + // Ensure built-in format codes are available + self::fillBuiltInFormatCodes(); + + // Lookup format code + if (isset(self::$builtInFormats[$index])) { + return self::$builtInFormats[$index]; + } + + return ''; + } + + /** + * Get built-in format code index. + * + * @param string $formatCodeIndex + * + * @return false|int + */ + public static function builtInFormatCodeIndex($formatCodeIndex) + { + // Ensure built-in format codes are available + self::fillBuiltInFormatCodes(); + + // Lookup format code + if (array_key_exists($formatCodeIndex, self::$flippedBuiltInFormats)) { + return self::$flippedBuiltInFormats[$formatCodeIndex]; + } + + return false; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHashCode(); + } + + return md5( + $this->formatCode . + $this->builtInFormatCode . + __CLASS__ + ); + } + + /** + * Convert a value in a pre-defined format to a PHP string. + * + * @param mixed $value Value to format + * @param string $format Format code, see = self::FORMAT_* + * @param array $callBack Callback function for additional formatting of string + * + * @return string Formatted string + */ + public static function toFormattedString($value, $format, $callBack = null) + { + return NumberFormat\Formatter::toFormattedString($value, $format, $callBack); + } + + protected function exportArray1(): array + { + $exportedArray = []; + $this->exportArray2($exportedArray, 'formatCode', $this->getFormatCode()); + + return $exportedArray; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/BaseFormatter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/BaseFormatter.php new file mode 100644 index 0000000..7988143 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/BaseFormatter.php @@ -0,0 +1,12 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\NumberFormat; + +abstract class BaseFormatter +{ + protected static function stripQuotes(string $format): string + { + // Some non-number strings are quoted, so we'll get rid of the quotes, likewise any positional * symbols + return str_replace(['"', '*'], '', $format); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/DateFormatter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/DateFormatter.php new file mode 100644 index 0000000..6c4d9d6 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/DateFormatter.php @@ -0,0 +1,182 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\NumberFormat; + +use PhpOffice\PhpSpreadsheet\Shared\Date; + +class DateFormatter +{ + /** + * Search/replace values to convert Excel date/time format masks to PHP format masks. + */ + private const DATE_FORMAT_REPLACEMENTS = [ + // first remove escapes related to non-format characters + '\\' => '', + // 12-hour suffix + 'am/pm' => 'A', + // 4-digit year + 'e' => 'Y', + 'yyyy' => 'Y', + // 2-digit year + 'yy' => 'y', + // first letter of month - no php equivalent + 'mmmmm' => 'M', + // full month name + 'mmmm' => 'F', + // short month name + 'mmm' => 'M', + // mm is minutes if time, but can also be month w/leading zero + // so we try to identify times be the inclusion of a : separator in the mask + // It isn't perfect, but the best way I know how + ':mm' => ':i', + 'mm:' => 'i:', + // full day of week name + 'dddd' => 'l', + // short day of week name + 'ddd' => 'D', + // days leading zero + 'dd' => 'd', + // days no leading zero + 'd' => 'j', + // fractional seconds - no php equivalent + '.s' => '', + ]; + + /** + * Search/replace values to convert Excel date/time format masks hours to PHP format masks (24 hr clock). + */ + private const DATE_FORMAT_REPLACEMENTS24 = [ + 'hh' => 'H', + 'h' => 'G', + // month leading zero + 'mm' => 'm', + // month no leading zero + 'm' => 'n', + // seconds + 'ss' => 's', + ]; + + /** + * Search/replace values to convert Excel date/time format masks hours to PHP format masks (12 hr clock). + */ + private const DATE_FORMAT_REPLACEMENTS12 = [ + 'hh' => 'h', + 'h' => 'g', + // month leading zero + 'mm' => 'm', + // month no leading zero + 'm' => 'n', + // seconds + 'ss' => 's', + ]; + + private const HOURS_IN_DAY = 24; + private const MINUTES_IN_DAY = 60 * self::HOURS_IN_DAY; + private const SECONDS_IN_DAY = 60 * self::MINUTES_IN_DAY; + private const INTERVAL_PRECISION = 10; + private const INTERVAL_LEADING_ZERO = [ + '[hh]', + '[mm]', + '[ss]', + ]; + private const INTERVAL_ROUND_PRECISION = [ + // hours and minutes truncate + '[h]' => self::INTERVAL_PRECISION, + '[hh]' => self::INTERVAL_PRECISION, + '[m]' => self::INTERVAL_PRECISION, + '[mm]' => self::INTERVAL_PRECISION, + // seconds round + '[s]' => 0, + '[ss]' => 0, + ]; + private const INTERVAL_MULTIPLIER = [ + '[h]' => self::HOURS_IN_DAY, + '[hh]' => self::HOURS_IN_DAY, + '[m]' => self::MINUTES_IN_DAY, + '[mm]' => self::MINUTES_IN_DAY, + '[s]' => self::SECONDS_IN_DAY, + '[ss]' => self::SECONDS_IN_DAY, + ]; + + /** @param mixed $value */ + private static function tryInterval(bool &$seekingBracket, string &$block, $value, string $format): void + { + if ($seekingBracket) { + if (false !== strpos($block, $format)) { + $hours = (string) (int) round( + self::INTERVAL_MULTIPLIER[$format] * $value, + self::INTERVAL_ROUND_PRECISION[$format] + ); + if (strlen($hours) === 1 && in_array($format, self::INTERVAL_LEADING_ZERO, true)) { + $hours = "0$hours"; + } + $block = str_replace($format, $hours, $block); + $seekingBracket = false; + } + } + } + + /** @param mixed $value */ + public static function format($value, string $format): string + { + // strip off first part containing e.g. [$-F800] or [$USD-409] + // general syntax: [$<Currency string>-<language info>] + // language info is in hexadecimal + // strip off chinese part like [DBNum1][$-804] + $format = (string) preg_replace('/^(\[DBNum\d\])*(\[\$[^\]]*\])/i', '', $format); + + // OpenOffice.org uses upper-case number formats, e.g. 'YYYY', convert to lower-case; + // but we don't want to change any quoted strings + /** @var callable */ + $callable = [self::class, 'setLowercaseCallback']; + $format = (string) preg_replace_callback('/(?:^|")([^"]*)(?:$|")/', $callable, $format); + + // Only process the non-quoted blocks for date format characters + + $blocks = explode('"', $format); + foreach ($blocks as $key => &$block) { + if ($key % 2 == 0) { + $block = strtr($block, self::DATE_FORMAT_REPLACEMENTS); + if (!strpos($block, 'A')) { + // 24-hour time format + // when [h]:mm format, the [h] should replace to the hours of the value * 24 + $seekingBracket = true; + self::tryInterval($seekingBracket, $block, $value, '[h]'); + self::tryInterval($seekingBracket, $block, $value, '[hh]'); + self::tryInterval($seekingBracket, $block, $value, '[mm]'); + self::tryInterval($seekingBracket, $block, $value, '[m]'); + self::tryInterval($seekingBracket, $block, $value, '[s]'); + self::tryInterval($seekingBracket, $block, $value, '[ss]'); + $block = strtr($block, self::DATE_FORMAT_REPLACEMENTS24); + } else { + // 12-hour time format + $block = strtr($block, self::DATE_FORMAT_REPLACEMENTS12); + } + } + } + $format = implode('"', $blocks); + + // escape any quoted characters so that DateTime format() will render them correctly + /** @var callable */ + $callback = [self::class, 'escapeQuotesCallback']; + $format = (string) preg_replace_callback('/"(.*)"/U', $callback, $format); + + $dateObj = Date::excelToDateTimeObject($value); + // If the colon preceding minute had been quoted, as happens in + // Excel 2003 XML formats, m will not have been changed to i above. + // Change it now. + $format = (string) \preg_replace('/\\\\:m/', ':i', $format); + + return $dateObj->format($format); + } + + private static function setLowercaseCallback(array $matches): string + { + return mb_strtolower($matches[0]); + } + + private static function escapeQuotesCallback(array $matches): string + { + return '\\' . implode('\\', str_split($matches[1])); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Formatter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Formatter.php new file mode 100644 index 0000000..be195a8 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Formatter.php @@ -0,0 +1,165 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\NumberFormat; + +use PhpOffice\PhpSpreadsheet\Style\Color; +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; + +class Formatter +{ + private static function splitFormatCompare($value, $cond, $val, $dfcond, $dfval) + { + if (!$cond) { + $cond = $dfcond; + $val = $dfval; + } + switch ($cond) { + case '>': + return $value > $val; + + case '<': + return $value < $val; + + case '<=': + return $value <= $val; + + case '<>': + return $value != $val; + + case '=': + return $value == $val; + } + + return $value >= $val; + } + + private static function splitFormat($sections, $value) + { + // Extract the relevant section depending on whether number is positive, negative, or zero? + // Text not supported yet. + // Here is how the sections apply to various values in Excel: + // 1 section: [POSITIVE/NEGATIVE/ZERO/TEXT] + // 2 sections: [POSITIVE/ZERO/TEXT] [NEGATIVE] + // 3 sections: [POSITIVE/TEXT] [NEGATIVE] [ZERO] + // 4 sections: [POSITIVE] [NEGATIVE] [ZERO] [TEXT] + $cnt = count($sections); + $color_regex = '/\\[(' . implode('|', Color::NAMED_COLORS) . ')\\]/mui'; + $cond_regex = '/\\[(>|>=|<|<=|=|<>)([+-]?\\d+([.]\\d+)?)\\]/'; + $colors = ['', '', '', '', '']; + $condops = ['', '', '', '', '']; + $condvals = [0, 0, 0, 0, 0]; + for ($idx = 0; $idx < $cnt; ++$idx) { + if (preg_match($color_regex, $sections[$idx], $matches)) { + $colors[$idx] = $matches[0]; + $sections[$idx] = (string) preg_replace($color_regex, '', $sections[$idx]); + } + if (preg_match($cond_regex, $sections[$idx], $matches)) { + $condops[$idx] = $matches[1]; + $condvals[$idx] = $matches[2]; + $sections[$idx] = (string) preg_replace($cond_regex, '', $sections[$idx]); + } + } + $color = $colors[0]; + $format = $sections[0]; + $absval = $value; + switch ($cnt) { + case 2: + $absval = abs($value); + if (!self::splitFormatCompare($value, $condops[0], $condvals[0], '>=', 0)) { + $color = $colors[1]; + $format = $sections[1]; + } + + break; + case 3: + case 4: + $absval = abs($value); + if (!self::splitFormatCompare($value, $condops[0], $condvals[0], '>', 0)) { + if (self::splitFormatCompare($value, $condops[1], $condvals[1], '<', 0)) { + $color = $colors[1]; + $format = $sections[1]; + } else { + $color = $colors[2]; + $format = $sections[2]; + } + } + + break; + } + + return [$color, $format, $absval]; + } + + /** + * Convert a value in a pre-defined format to a PHP string. + * + * @param mixed $value Value to format + * @param string $format Format code, see = NumberFormat::FORMAT_* + * @param array $callBack Callback function for additional formatting of string + * + * @return string Formatted string + */ + public static function toFormattedString($value, $format, $callBack = null) + { + // For now we do not treat strings although section 4 of a format code affects strings + if (!is_numeric($value)) { + return $value; + } + + // For 'General' format code, we just pass the value although this is not entirely the way Excel does it, + // it seems to round numbers to a total of 10 digits. + if (($format === NumberFormat::FORMAT_GENERAL) || ($format === NumberFormat::FORMAT_TEXT)) { + return $value; + } + + // Ignore square-$-brackets prefix in format string, like "[$-411]ge.m.d", "[$-010419]0%", etc + $format = (string) preg_replace('/^\[\$-[^\]]*\]/', '', $format); + + $format = (string) preg_replace_callback( + '/(["])(?:(?=(\\\\?))\\2.)*?\\1/u', + function ($matches) { + return str_replace('.', chr(0x00), $matches[0]); + }, + $format + ); + + // Convert any other escaped characters to quoted strings, e.g. (\T to "T") + $format = (string) preg_replace('/(\\\(((.)(?!((AM\/PM)|(A\/P))))|([^ ])))(?=(?:[^"]|"[^"]*")*$)/ui', '"${2}"', $format); + + // Get the sections, there can be up to four sections, separated with a semi-colon (but only if not a quoted literal) + $sections = preg_split('/(;)(?=(?:[^"]|"[^"]*")*$)/u', $format); + + [$colors, $format, $value] = self::splitFormat($sections, $value); + + // In Excel formats, "_" is used to add spacing, + // The following character indicates the size of the spacing, which we can't do in HTML, so we just use a standard space + $format = (string) preg_replace('/_.?/ui', ' ', $format); + + // Let's begin inspecting the format and converting the value to a formatted string + + // Check for date/time characters (not inside quotes) + if (preg_match('/(\[\$[A-Z]*-[0-9A-F]*\])*[hmsdy](?=(?:[^"]|"[^"]*")*$)/miu', $format, $matches)) { + // datetime format + $value = DateFormatter::format($value, $format); + } else { + if (substr($format, 0, 1) === '"' && substr($format, -1, 1) === '"' && substr_count($format, '"') === 2) { + $value = substr($format, 1, -1); + } elseif (preg_match('/[0#, ]%/', $format)) { + // % number format + $value = PercentageFormatter::format($value, $format); + } else { + $value = NumberFormatter::format($value, $format); + } + } + + // Additional formatting provided by callback function + if ($callBack !== null) { + [$writerInstance, $function] = $callBack; + $value = $writerInstance->$function($value, $colors); + } + + $value = str_replace(chr(0x00), '.', $value); + + return $value; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/FractionFormatter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/FractionFormatter.php new file mode 100644 index 0000000..d1fc89f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/FractionFormatter.php @@ -0,0 +1,67 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\NumberFormat; + +use PhpOffice\PhpSpreadsheet\Calculation\MathTrig; + +class FractionFormatter extends BaseFormatter +{ + /** + * @param mixed $value + */ + public static function format($value, string $format): string + { + $format = self::stripQuotes($format); + $value = (float) $value; + $absValue = abs($value); + + $sign = ($value < 0.0) ? '-' : ''; + + $integerPart = floor($absValue); + + $decimalPart = self::getDecimal((string) $absValue); + if ($decimalPart === '0') { + return "{$sign}{$integerPart}"; + } + $decimalLength = strlen($decimalPart); + $decimalDivisor = 10 ** $decimalLength; + + /** @var float */ + $GCD = MathTrig\Gcd::evaluate($decimalPart, $decimalDivisor); + /** @var float */ + $decimalPartx = $decimalPart; + + $adjustedDecimalPart = $decimalPartx / $GCD; + $adjustedDecimalDivisor = $decimalDivisor / $GCD; + + if ((strpos($format, '0') !== false)) { + return "{$sign}{$integerPart} {$adjustedDecimalPart}/{$adjustedDecimalDivisor}"; + } elseif ((strpos($format, '#') !== false)) { + if ($integerPart == 0) { + return "{$sign}{$adjustedDecimalPart}/{$adjustedDecimalDivisor}"; + } + + return "{$sign}{$integerPart} {$adjustedDecimalPart}/{$adjustedDecimalDivisor}"; + } elseif ((substr($format, 0, 3) == '? ?')) { + if ($integerPart == 0) { + $integerPart = ''; + } + + return "{$sign}{$integerPart} {$adjustedDecimalPart}/{$adjustedDecimalDivisor}"; + } + + $adjustedDecimalPart += $integerPart * $adjustedDecimalDivisor; + + return "{$sign}{$adjustedDecimalPart}/{$adjustedDecimalDivisor}"; + } + + private static function getDecimal(string $value): string + { + $decimalPart = '0'; + if (preg_match('/^\\d*[.](\\d*[1-9])0*$/', $value, $matches) === 1) { + $decimalPart = $matches[1]; + } + + return $decimalPart; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/NumberFormatter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/NumberFormatter.php new file mode 100644 index 0000000..1dd0bcd --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/NumberFormatter.php @@ -0,0 +1,221 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\NumberFormat; + +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; + +class NumberFormatter +{ + private const NUMBER_REGEX = '/(0+)(\\.?)(0*)/'; + + private static function mergeComplexNumberFormatMasks(array $numbers, array $masks): array + { + $decimalCount = strlen($numbers[1]); + $postDecimalMasks = []; + + do { + $tempMask = array_pop($masks); + if ($tempMask !== null) { + $postDecimalMasks[] = $tempMask; + $decimalCount -= strlen($tempMask); + } + } while ($tempMask !== null && $decimalCount > 0); + + return [ + implode('.', $masks), + implode('.', array_reverse($postDecimalMasks)), + ]; + } + + /** + * @param mixed $number + */ + private static function processComplexNumberFormatMask($number, string $mask): string + { + /** @var string */ + $result = $number; + $maskingBlockCount = preg_match_all('/0+/', $mask, $maskingBlocks, PREG_OFFSET_CAPTURE); + + if ($maskingBlockCount > 1) { + $maskingBlocks = array_reverse($maskingBlocks[0]); + + $offset = 0; + foreach ($maskingBlocks as $block) { + $size = strlen($block[0]); + $divisor = 10 ** $size; + $offset = $block[1]; + + /** @var float */ + $numberFloat = $number; + $blockValue = sprintf("%0{$size}d", fmod($numberFloat, $divisor)); + $number = floor($numberFloat / $divisor); + $mask = substr_replace($mask, $blockValue, $offset, $size); + } + /** @var string */ + $numberString = $number; + if ($number > 0) { + $mask = substr_replace($mask, $numberString, $offset, 0); + } + $result = $mask; + } + + return self::makeString($result); + } + + /** + * @param mixed $number + */ + private static function complexNumberFormatMask($number, string $mask, bool $splitOnPoint = true): string + { + $sign = ($number < 0.0) ? '-' : ''; + /** @var float */ + $numberFloat = $number; + $number = (string) abs($numberFloat); + + if ($splitOnPoint && strpos($mask, '.') !== false && strpos($number, '.') !== false) { + $numbers = explode('.', $number); + $masks = explode('.', $mask); + if (count($masks) > 2) { + $masks = self::mergeComplexNumberFormatMasks($numbers, $masks); + } + $integerPart = self::complexNumberFormatMask($numbers[0], $masks[0], false); + $decimalPart = strrev(self::complexNumberFormatMask(strrev($numbers[1]), strrev($masks[1]), false)); + + return "{$sign}{$integerPart}.{$decimalPart}"; + } + + $result = self::processComplexNumberFormatMask($number, $mask); + + return "{$sign}{$result}"; + } + + /** + * @param mixed $value + */ + private static function formatStraightNumericValue($value, string $format, array $matches, bool $useThousands): string + { + /** @var float */ + $valueFloat = $value; + $left = $matches[1]; + $dec = $matches[2]; + $right = $matches[3]; + + // minimun width of formatted number (including dot) + $minWidth = strlen($left) + strlen($dec) + strlen($right); + if ($useThousands) { + $value = number_format( + $valueFloat, + strlen($right), + StringHelper::getDecimalSeparator(), + StringHelper::getThousandsSeparator() + ); + + return self::pregReplace(self::NUMBER_REGEX, $value, $format); + } + + if (preg_match('/[0#]E[+-]0/i', $format)) { + // Scientific format + return sprintf('%5.2E', $valueFloat); + } elseif (preg_match('/0([^\d\.]+)0/', $format) || substr_count($format, '.') > 1) { + if ($value == (int) $valueFloat && substr_count($format, '.') === 1) { + $value *= 10 ** strlen(explode('.', $format)[1]); + } + + return self::complexNumberFormatMask($value, $format); + } + + $sprintf_pattern = "%0$minWidth." . strlen($right) . 'f'; + /** @var float */ + $valueFloat = $value; + $value = sprintf($sprintf_pattern, round($valueFloat, strlen($right))); + + return self::pregReplace(self::NUMBER_REGEX, $value, $format); + } + + /** + * @param mixed $value + */ + public static function format($value, string $format): string + { + // The "_" in this string has already been stripped out, + // so this test is never true. Furthermore, testing + // on Excel shows this format uses Euro symbol, not "EUR". + //if ($format === NumberFormat::FORMAT_CURRENCY_EUR_SIMPLE) { + // return 'EUR ' . sprintf('%1.2f', $value); + //} + + // Some non-number strings are quoted, so we'll get rid of the quotes, likewise any positional * symbols + $format = self::makeString(str_replace(['"', '*'], '', $format)); + + // Find out if we need thousands separator + // This is indicated by a comma enclosed by a digit placeholder: + // #,# or 0,0 + $useThousands = (bool) preg_match('/(#,#|0,0)/', $format); + if ($useThousands) { + $format = self::pregReplace('/0,0/', '00', $format); + $format = self::pregReplace('/#,#/', '##', $format); + } + + // Scale thousands, millions,... + // This is indicated by a number of commas after a digit placeholder: + // #, or 0.0,, + $scale = 1; // same as no scale + $matches = []; + if (preg_match('/(#|0)(,+)/', $format, $matches)) { + $scale = 1000 ** strlen($matches[2]); + + // strip the commas + $format = self::pregReplace('/0,+/', '0', $format); + $format = self::pregReplace('/#,+/', '#', $format); + } + if (preg_match('/#?.*\?\/\?/', $format, $m)) { + $value = FractionFormatter::format($value, $format); + } else { + // Handle the number itself + + // scale number + $value = $value / $scale; + // Strip # + $format = self::pregReplace('/\\#/', '0', $format); + // Remove locale code [$-###] + $format = self::pregReplace('/\[\$\-.*\]/', '', $format); + + $n = '/\\[[^\\]]+\\]/'; + $m = self::pregReplace($n, '', $format); + if (preg_match(self::NUMBER_REGEX, $m, $matches)) { + // There are placeholders for digits, so inject digits from the value into the mask + $value = self::formatStraightNumericValue($value, $format, $matches, $useThousands); + } elseif ($format !== NumberFormat::FORMAT_GENERAL) { + // Yes, I know that this is basically just a hack; + // if there's no placeholders for digits, just return the format mask "as is" + $value = self::makeString(str_replace('?', '', $format)); + } + } + + if (preg_match('/\[\$(.*)\]/u', $format, $m)) { + // Currency or Accounting + $currencyCode = $m[1]; + [$currencyCode] = explode('-', $currencyCode); + if ($currencyCode == '') { + $currencyCode = StringHelper::getCurrencyCode(); + } + $value = self::pregReplace('/\[\$([^\]]*)\]/u', $currencyCode, (string) $value); + } + + return (string) $value; + } + + /** + * @param array|string $value + */ + private static function makeString($value): string + { + return is_array($value) ? '' : "$value"; + } + + private static function pregReplace(string $pattern, string $replacement, string $subject): string + { + return self::makeString(preg_replace($pattern, $replacement, $subject) ?? ''); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/PercentageFormatter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/PercentageFormatter.php new file mode 100644 index 0000000..f4d3412 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/PercentageFormatter.php @@ -0,0 +1,45 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style\NumberFormat; + +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; + +class PercentageFormatter extends BaseFormatter +{ + public static function format($value, string $format): string + { + if ($format === NumberFormat::FORMAT_PERCENTAGE) { + return round((100 * $value), 0) . '%'; + } + + $value *= 100; + $format = self::stripQuotes($format); + + [, $vDecimals] = explode('.', ((string) $value) . '.'); + $vDecimalCount = strlen(rtrim($vDecimals, '0')); + + $format = str_replace('%', '%%', $format); + $wholePartSize = strlen((string) floor($value)); + $decimalPartSize = $placeHolders = 0; + // Number of decimals + if (preg_match('/\.([?0]+)/u', $format, $matches)) { + $decimalPartSize = strlen($matches[1]); + $vMinDecimalCount = strlen(rtrim($matches[1], '?')); + $decimalPartSize = min(max($vMinDecimalCount, $vDecimalCount), $decimalPartSize); + $placeHolders = str_repeat(' ', strlen($matches[1]) - $decimalPartSize); + } + // Number of digits to display before the decimal + if (preg_match('/([#0,]+)\./u', $format, $matches)) { + $wholePartSize = max($wholePartSize, strlen($matches[1])); + } + + $wholePartSize += $decimalPartSize; + $replacement = "{$wholePartSize}.{$decimalPartSize}"; + $mask = (string) preg_replace('/[#0,]+\.?[?#0,]*/ui', "%{$replacement}f{$placeHolders}", $format); + + /** @var float */ + $valueFloat = $value; + + return sprintf($mask, round($valueFloat, $decimalPartSize)); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Protection.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Protection.php new file mode 100644 index 0000000..1c174e7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Protection.php @@ -0,0 +1,198 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style; + +class Protection extends Supervisor +{ + /** Protection styles */ + const PROTECTION_INHERIT = 'inherit'; + const PROTECTION_PROTECTED = 'protected'; + const PROTECTION_UNPROTECTED = 'unprotected'; + + /** + * Locked. + * + * @var string + */ + protected $locked; + + /** + * Hidden. + * + * @var string + */ + protected $hidden; + + /** + * Create a new Protection. + * + * @param bool $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + * @param bool $isConditional Flag indicating if this is a conditional style or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false, $isConditional = false) + { + // Supervisor? + parent::__construct($isSupervisor); + + // Initialise values + if (!$isConditional) { + $this->locked = self::PROTECTION_INHERIT; + $this->hidden = self::PROTECTION_INHERIT; + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor. + * + * @return Protection + */ + public function getSharedComponent() + { + /** @var Style */ + $parent = $this->parent; + + return $parent->getSharedComponent()->getProtection(); + } + + /** + * Build style array from subcomponents. + * + * @param array $array + * + * @return array + */ + public function getStyleArray($array) + { + return ['protection' => $array]; + } + + /** + * Apply styles from array. + * + * <code> + * $spreadsheet->getActiveSheet()->getStyle('B2')->getLocked()->applyFromArray( + * [ + * 'locked' => TRUE, + * 'hidden' => FALSE + * ] + * ); + * </code> + * + * @param array $styleArray Array containing style information + * + * @return $this + */ + public function applyFromArray(array $styleArray) + { + if ($this->isSupervisor) { + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($this->getStyleArray($styleArray)); + } else { + if (isset($styleArray['locked'])) { + $this->setLocked($styleArray['locked']); + } + if (isset($styleArray['hidden'])) { + $this->setHidden($styleArray['hidden']); + } + } + + return $this; + } + + /** + * Get locked. + * + * @return string + */ + public function getLocked() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getLocked(); + } + + return $this->locked; + } + + /** + * Set locked. + * + * @param string $lockType see self::PROTECTION_* + * + * @return $this + */ + public function setLocked($lockType) + { + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['locked' => $lockType]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->locked = $lockType; + } + + return $this; + } + + /** + * Get hidden. + * + * @return string + */ + public function getHidden() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHidden(); + } + + return $this->hidden; + } + + /** + * Set hidden. + * + * @param string $hiddenType see self::PROTECTION_* + * + * @return $this + */ + public function setHidden($hiddenType) + { + if ($this->isSupervisor) { + $styleArray = $this->getStyleArray(['hidden' => $hiddenType]); + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->hidden = $hiddenType; + } + + return $this; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getHashCode(); + } + + return md5( + $this->locked . + $this->hidden . + __CLASS__ + ); + } + + protected function exportArray1(): array + { + $exportedArray = []; + $this->exportArray2($exportedArray, 'locked', $this->getLocked()); + $this->exportArray2($exportedArray, 'hidden', $this->getHidden()); + + return $exportedArray; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Style.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Style.php new file mode 100644 index 0000000..5ea7059 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Style.php @@ -0,0 +1,735 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Spreadsheet; + +class Style extends Supervisor +{ + /** + * Font. + * + * @var Font + */ + protected $font; + + /** + * Fill. + * + * @var Fill + */ + protected $fill; + + /** + * Borders. + * + * @var Borders + */ + protected $borders; + + /** + * Alignment. + * + * @var Alignment + */ + protected $alignment; + + /** + * Number Format. + * + * @var NumberFormat + */ + protected $numberFormat; + + /** + * Protection. + * + * @var Protection + */ + protected $protection; + + /** + * Index of style in collection. Only used for real style. + * + * @var int + */ + protected $index; + + /** + * Use Quote Prefix when displaying in cell editor. Only used for real style. + * + * @var bool + */ + protected $quotePrefix = false; + + /** + * Internal cache for styles + * Used when applying style on range of cells (column or row) and cleared when + * all cells in range is styled. + * + * PhpSpreadsheet will always minimize the amount of styles used. So cells with + * same styles will reference the same Style instance. To check if two styles + * are similar Style::getHashCode() is used. This call is expensive. To minimize + * the need to call this method we can cache the internal PHP object id of the + * Style in the range. Style::getHashCode() will then only be called when we + * encounter a unique style. + * + * @see Style::applyFromArray() + * @see Style::getHashCode() + * + * @var ?array<string, array> + */ + private static $cachedStyles; + + /** + * Create a new Style. + * + * @param bool $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + * @param bool $isConditional Flag indicating if this is a conditional style or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false, $isConditional = false) + { + parent::__construct($isSupervisor); + + // Initialise values + $this->font = new Font($isSupervisor, $isConditional); + $this->fill = new Fill($isSupervisor, $isConditional); + $this->borders = new Borders($isSupervisor); + $this->alignment = new Alignment($isSupervisor, $isConditional); + $this->numberFormat = new NumberFormat($isSupervisor, $isConditional); + $this->protection = new Protection($isSupervisor, $isConditional); + + // bind parent if we are a supervisor + if ($isSupervisor) { + $this->font->bindParent($this); + $this->fill->bindParent($this); + $this->borders->bindParent($this); + $this->alignment->bindParent($this); + $this->numberFormat->bindParent($this); + $this->protection->bindParent($this); + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor. + */ + public function getSharedComponent(): self + { + $activeSheet = $this->getActiveSheet(); + $selectedCell = $this->getActiveCell(); // e.g. 'A1' + + if ($activeSheet->cellExists($selectedCell)) { + $xfIndex = $activeSheet->getCell($selectedCell)->getXfIndex(); + } else { + $xfIndex = 0; + } + + return $activeSheet->getParent()->getCellXfByIndex($xfIndex); + } + + /** + * Get parent. Only used for style supervisor. + */ + public function getParent(): Spreadsheet + { + return $this->getActiveSheet()->getParent(); + } + + /** + * Build style array from subcomponents. + * + * @param array $array + * + * @return array + */ + public function getStyleArray($array) + { + return ['quotePrefix' => $array]; + } + + /** + * Apply styles from array. + * + * <code> + * $spreadsheet->getActiveSheet()->getStyle('B2')->applyFromArray( + * [ + * 'font' => [ + * 'name' => 'Arial', + * 'bold' => true, + * 'italic' => false, + * 'underline' => Font::UNDERLINE_DOUBLE, + * 'strikethrough' => false, + * 'color' => [ + * 'rgb' => '808080' + * ] + * ], + * 'borders' => [ + * 'bottom' => [ + * 'borderStyle' => Border::BORDER_DASHDOT, + * 'color' => [ + * 'rgb' => '808080' + * ] + * ], + * 'top' => [ + * 'borderStyle' => Border::BORDER_DASHDOT, + * 'color' => [ + * 'rgb' => '808080' + * ] + * ] + * ], + * 'alignment' => [ + * 'horizontal' => Alignment::HORIZONTAL_CENTER, + * 'vertical' => Alignment::VERTICAL_CENTER, + * 'wrapText' => true, + * ], + * 'quotePrefix' => true + * ] + * ); + * </code> + * + * @param array $styleArray Array containing style information + * @param bool $advancedBorders advanced mode for setting borders + * + * @return $this + */ + public function applyFromArray(array $styleArray, $advancedBorders = true) + { + if ($this->isSupervisor) { + $pRange = $this->getSelectedCells(); + + // Uppercase coordinate + $pRange = strtoupper($pRange); + + // Is it a cell range or a single cell? + if (strpos($pRange, ':') === false) { + $rangeA = $pRange; + $rangeB = $pRange; + } else { + [$rangeA, $rangeB] = explode(':', $pRange); + } + + // Calculate range outer borders + $rangeStart = Coordinate::coordinateFromString($rangeA); + $rangeEnd = Coordinate::coordinateFromString($rangeB); + $rangeStartIndexes = Coordinate::indexesFromString($rangeA); + $rangeEndIndexes = Coordinate::indexesFromString($rangeB); + + $columnStart = $rangeStart[0]; + $columnEnd = $rangeEnd[0]; + + // Make sure we can loop upwards on rows and columns + if ($rangeStartIndexes[0] > $rangeEndIndexes[0] && $rangeStartIndexes[1] > $rangeEndIndexes[1]) { + $tmp = $rangeStartIndexes; + $rangeStartIndexes = $rangeEndIndexes; + $rangeEndIndexes = $tmp; + } + + // ADVANCED MODE: + if ($advancedBorders && isset($styleArray['borders'])) { + // 'allBorders' is a shorthand property for 'outline' and 'inside' and + // it applies to components that have not been set explicitly + if (isset($styleArray['borders']['allBorders'])) { + foreach (['outline', 'inside'] as $component) { + if (!isset($styleArray['borders'][$component])) { + $styleArray['borders'][$component] = $styleArray['borders']['allBorders']; + } + } + unset($styleArray['borders']['allBorders']); // not needed any more + } + // 'outline' is a shorthand property for 'top', 'right', 'bottom', 'left' + // it applies to components that have not been set explicitly + if (isset($styleArray['borders']['outline'])) { + foreach (['top', 'right', 'bottom', 'left'] as $component) { + if (!isset($styleArray['borders'][$component])) { + $styleArray['borders'][$component] = $styleArray['borders']['outline']; + } + } + unset($styleArray['borders']['outline']); // not needed any more + } + // 'inside' is a shorthand property for 'vertical' and 'horizontal' + // it applies to components that have not been set explicitly + if (isset($styleArray['borders']['inside'])) { + foreach (['vertical', 'horizontal'] as $component) { + if (!isset($styleArray['borders'][$component])) { + $styleArray['borders'][$component] = $styleArray['borders']['inside']; + } + } + unset($styleArray['borders']['inside']); // not needed any more + } + // width and height characteristics of selection, 1, 2, or 3 (for 3 or more) + $xMax = min($rangeEndIndexes[0] - $rangeStartIndexes[0] + 1, 3); + $yMax = min($rangeEndIndexes[1] - $rangeStartIndexes[1] + 1, 3); + + // loop through up to 3 x 3 = 9 regions + for ($x = 1; $x <= $xMax; ++$x) { + // start column index for region + $colStart = ($x == 3) ? + Coordinate::stringFromColumnIndex($rangeEndIndexes[0]) + : Coordinate::stringFromColumnIndex($rangeStartIndexes[0] + $x - 1); + // end column index for region + $colEnd = ($x == 1) ? + Coordinate::stringFromColumnIndex($rangeStartIndexes[0]) + : Coordinate::stringFromColumnIndex($rangeEndIndexes[0] - $xMax + $x); + + for ($y = 1; $y <= $yMax; ++$y) { + // which edges are touching the region + $edges = []; + if ($x == 1) { + // are we at left edge + $edges[] = 'left'; + } + if ($x == $xMax) { + // are we at right edge + $edges[] = 'right'; + } + if ($y == 1) { + // are we at top edge? + $edges[] = 'top'; + } + if ($y == $yMax) { + // are we at bottom edge? + $edges[] = 'bottom'; + } + + // start row index for region + $rowStart = ($y == 3) ? + $rangeEndIndexes[1] : $rangeStartIndexes[1] + $y - 1; + + // end row index for region + $rowEnd = ($y == 1) ? + $rangeStartIndexes[1] : $rangeEndIndexes[1] - $yMax + $y; + + // build range for region + $range = $colStart . $rowStart . ':' . $colEnd . $rowEnd; + + // retrieve relevant style array for region + $regionStyles = $styleArray; + unset($regionStyles['borders']['inside']); + + // what are the inner edges of the region when looking at the selection + $innerEdges = array_diff(['top', 'right', 'bottom', 'left'], $edges); + + // inner edges that are not touching the region should take the 'inside' border properties if they have been set + foreach ($innerEdges as $innerEdge) { + switch ($innerEdge) { + case 'top': + case 'bottom': + // should pick up 'horizontal' border property if set + if (isset($styleArray['borders']['horizontal'])) { + $regionStyles['borders'][$innerEdge] = $styleArray['borders']['horizontal']; + } else { + unset($regionStyles['borders'][$innerEdge]); + } + + break; + case 'left': + case 'right': + // should pick up 'vertical' border property if set + if (isset($styleArray['borders']['vertical'])) { + $regionStyles['borders'][$innerEdge] = $styleArray['borders']['vertical']; + } else { + unset($regionStyles['borders'][$innerEdge]); + } + + break; + } + } + + // apply region style to region by calling applyFromArray() in simple mode + $this->getActiveSheet()->getStyle($range)->applyFromArray($regionStyles, false); + } + } + + // restore initial cell selection range + $this->getActiveSheet()->getStyle($pRange); + + return $this; + } + + // SIMPLE MODE: + // Selection type, inspect + if (preg_match('/^[A-Z]+1:[A-Z]+1048576$/', $pRange)) { + $selectionType = 'COLUMN'; + + // Enable caching of styles + self::$cachedStyles = ['hashByObjId' => [], 'styleByHash' => []]; + } elseif (preg_match('/^A\d+:XFD\d+$/', $pRange)) { + $selectionType = 'ROW'; + + // Enable caching of styles + self::$cachedStyles = ['hashByObjId' => [], 'styleByHash' => []]; + } else { + $selectionType = 'CELL'; + } + + // First loop through columns, rows, or cells to find out which styles are affected by this operation + $oldXfIndexes = $this->getOldXfIndexes($selectionType, $rangeStartIndexes, $rangeEndIndexes, $columnStart, $columnEnd, $styleArray); + + // clone each of the affected styles, apply the style array, and add the new styles to the workbook + $workbook = $this->getActiveSheet()->getParent(); + $newXfIndexes = []; + foreach ($oldXfIndexes as $oldXfIndex => $dummy) { + $style = $workbook->getCellXfByIndex($oldXfIndex); + + // $cachedStyles is set when applying style for a range of cells, either column or row + if (self::$cachedStyles === null) { + // Clone the old style and apply style-array + $newStyle = clone $style; + $newStyle->applyFromArray($styleArray); + + // Look for existing style we can use instead (reduce memory usage) + $existingStyle = $workbook->getCellXfByHashCode($newStyle->getHashCode()); + } else { + // Style cache is stored by Style::getHashCode(). But calling this method is + // expensive. So we cache the php obj id -> hash. + $objId = spl_object_id($style); + + // Look for the original HashCode + $styleHash = self::$cachedStyles['hashByObjId'][$objId] ?? null; + if ($styleHash === null) { + // This object_id is not cached, store the hashcode in case encounter again + $styleHash = self::$cachedStyles['hashByObjId'][$objId] = $style->getHashCode(); + } + + // Find existing style by hash. + $existingStyle = self::$cachedStyles['styleByHash'][$styleHash] ?? null; + + if (!$existingStyle) { + // The old style combined with the new style array is not cached, so we create it now + $newStyle = clone $style; + $newStyle->applyFromArray($styleArray); + + // Look for similar style in workbook to reduce memory usage + $existingStyle = $workbook->getCellXfByHashCode($newStyle->getHashCode()); + + // Cache the new style by original hashcode + self::$cachedStyles['styleByHash'][$styleHash] = $existingStyle instanceof self ? $existingStyle : $newStyle; + } + } + + if ($existingStyle) { + // there is already such cell Xf in our collection + $newXfIndexes[$oldXfIndex] = $existingStyle->getIndex(); + } else { + if (!isset($newStyle)) { + // Handle bug in PHPStan, see https://github.com/phpstan/phpstan/issues/5805 + // $newStyle should always be defined. + // This block might not be needed in the future + // @codeCoverageIgnoreStart + $newStyle = clone $style; + $newStyle->applyFromArray($styleArray); + // @codeCoverageIgnoreEnd + } + + // we don't have such a cell Xf, need to add + $workbook->addCellXf($newStyle); + $newXfIndexes[$oldXfIndex] = $newStyle->getIndex(); + } + } + + // Loop through columns, rows, or cells again and update the XF index + switch ($selectionType) { + case 'COLUMN': + for ($col = $rangeStartIndexes[0]; $col <= $rangeEndIndexes[0]; ++$col) { + $columnDimension = $this->getActiveSheet()->getColumnDimensionByColumn($col); + $oldXfIndex = $columnDimension->getXfIndex(); + $columnDimension->setXfIndex($newXfIndexes[$oldXfIndex]); + } + + // Disable caching of styles + self::$cachedStyles = null; + + break; + case 'ROW': + for ($row = $rangeStartIndexes[1]; $row <= $rangeEndIndexes[1]; ++$row) { + $rowDimension = $this->getActiveSheet()->getRowDimension($row); + // row without explicit style should be formatted based on default style + $oldXfIndex = $rowDimension->getXfIndex() ?? 0; + $rowDimension->setXfIndex($newXfIndexes[$oldXfIndex]); + } + + // Disable caching of styles + self::$cachedStyles = null; + + break; + case 'CELL': + for ($col = $rangeStartIndexes[0]; $col <= $rangeEndIndexes[0]; ++$col) { + for ($row = $rangeStartIndexes[1]; $row <= $rangeEndIndexes[1]; ++$row) { + $cell = $this->getActiveSheet()->getCellByColumnAndRow($col, $row); + $oldXfIndex = $cell->getXfIndex(); + $cell->setXfIndex($newXfIndexes[$oldXfIndex]); + } + } + + break; + } + } else { + // not a supervisor, just apply the style array directly on style object + if (isset($styleArray['fill'])) { + $this->getFill()->applyFromArray($styleArray['fill']); + } + if (isset($styleArray['font'])) { + $this->getFont()->applyFromArray($styleArray['font']); + } + if (isset($styleArray['borders'])) { + $this->getBorders()->applyFromArray($styleArray['borders']); + } + if (isset($styleArray['alignment'])) { + $this->getAlignment()->applyFromArray($styleArray['alignment']); + } + if (isset($styleArray['numberFormat'])) { + $this->getNumberFormat()->applyFromArray($styleArray['numberFormat']); + } + if (isset($styleArray['protection'])) { + $this->getProtection()->applyFromArray($styleArray['protection']); + } + if (isset($styleArray['quotePrefix'])) { + $this->quotePrefix = $styleArray['quotePrefix']; + } + } + + return $this; + } + + private function getOldXfIndexes(string $selectionType, array $rangeStart, array $rangeEnd, string $columnStart, string $columnEnd, array $styleArray): array + { + $oldXfIndexes = []; + switch ($selectionType) { + case 'COLUMN': + for ($col = $rangeStart[0]; $col <= $rangeEnd[0]; ++$col) { + $oldXfIndexes[$this->getActiveSheet()->getColumnDimensionByColumn($col)->getXfIndex()] = true; + } + foreach ($this->getActiveSheet()->getColumnIterator($columnStart, $columnEnd) as $columnIterator) { + $cellIterator = $columnIterator->getCellIterator(); + $cellIterator->setIterateOnlyExistingCells(true); + foreach ($cellIterator as $columnCell) { + if ($columnCell !== null) { + $columnCell->getStyle()->applyFromArray($styleArray); + } + } + } + + break; + case 'ROW': + for ($row = $rangeStart[1]; $row <= $rangeEnd[1]; ++$row) { + if ($this->getActiveSheet()->getRowDimension($row)->getXfIndex() === null) { + $oldXfIndexes[0] = true; // row without explicit style should be formatted based on default style + } else { + $oldXfIndexes[$this->getActiveSheet()->getRowDimension($row)->getXfIndex()] = true; + } + } + foreach ($this->getActiveSheet()->getRowIterator((int) $rangeStart[1], (int) $rangeEnd[1]) as $rowIterator) { + $cellIterator = $rowIterator->getCellIterator(); + $cellIterator->setIterateOnlyExistingCells(true); + foreach ($cellIterator as $rowCell) { + if ($rowCell !== null) { + $rowCell->getStyle()->applyFromArray($styleArray); + } + } + } + + break; + case 'CELL': + for ($col = $rangeStart[0]; $col <= $rangeEnd[0]; ++$col) { + for ($row = $rangeStart[1]; $row <= $rangeEnd[1]; ++$row) { + $oldXfIndexes[$this->getActiveSheet()->getCellByColumnAndRow($col, $row)->getXfIndex()] = true; + } + } + + break; + } + + return $oldXfIndexes; + } + + /** + * Get Fill. + * + * @return Fill + */ + public function getFill() + { + return $this->fill; + } + + /** + * Get Font. + * + * @return Font + */ + public function getFont() + { + return $this->font; + } + + /** + * Set font. + * + * @return $this + */ + public function setFont(Font $font) + { + $this->font = $font; + + return $this; + } + + /** + * Get Borders. + * + * @return Borders + */ + public function getBorders() + { + return $this->borders; + } + + /** + * Get Alignment. + * + * @return Alignment + */ + public function getAlignment() + { + return $this->alignment; + } + + /** + * Get Number Format. + * + * @return NumberFormat + */ + public function getNumberFormat() + { + return $this->numberFormat; + } + + /** + * Get Conditional Styles. Only used on supervisor. + * + * @return Conditional[] + */ + public function getConditionalStyles() + { + return $this->getActiveSheet()->getConditionalStyles($this->getActiveCell()); + } + + /** + * Set Conditional Styles. Only used on supervisor. + * + * @param Conditional[] $conditionalStyleArray Array of conditional styles + * + * @return $this + */ + public function setConditionalStyles(array $conditionalStyleArray) + { + $this->getActiveSheet()->setConditionalStyles($this->getSelectedCells(), $conditionalStyleArray); + + return $this; + } + + /** + * Get Protection. + * + * @return Protection + */ + public function getProtection() + { + return $this->protection; + } + + /** + * Get quote prefix. + * + * @return bool + */ + public function getQuotePrefix() + { + if ($this->isSupervisor) { + return $this->getSharedComponent()->getQuotePrefix(); + } + + return $this->quotePrefix; + } + + /** + * Set quote prefix. + * + * @param bool $quotePrefix + * + * @return $this + */ + public function setQuotePrefix($quotePrefix) + { + if ($quotePrefix == '') { + $quotePrefix = false; + } + if ($this->isSupervisor) { + $styleArray = ['quotePrefix' => $quotePrefix]; + $this->getActiveSheet()->getStyle($this->getSelectedCells())->applyFromArray($styleArray); + } else { + $this->quotePrefix = (bool) $quotePrefix; + } + + return $this; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->fill->getHashCode() . + $this->font->getHashCode() . + $this->borders->getHashCode() . + $this->alignment->getHashCode() . + $this->numberFormat->getHashCode() . + $this->protection->getHashCode() . + ($this->quotePrefix ? 't' : 'f') . + __CLASS__ + ); + } + + /** + * Get own index in style collection. + * + * @return int + */ + public function getIndex() + { + return $this->index; + } + + /** + * Set own index in style collection. + * + * @param int $index + */ + public function setIndex($index): void + { + $this->index = $index; + } + + protected function exportArray1(): array + { + $exportedArray = []; + $this->exportArray2($exportedArray, 'alignment', $this->getAlignment()); + $this->exportArray2($exportedArray, 'borders', $this->getBorders()); + $this->exportArray2($exportedArray, 'fill', $this->getFill()); + $this->exportArray2($exportedArray, 'font', $this->getFont()); + $this->exportArray2($exportedArray, 'numberFormat', $this->getNumberFormat()); + $this->exportArray2($exportedArray, 'protection', $this->getProtection()); + $this->exportArray2($exportedArray, 'quotePrefx', $this->getQuotePrefix()); + + return $exportedArray; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Supervisor.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Supervisor.php new file mode 100644 index 0000000..8a5c350 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Supervisor.php @@ -0,0 +1,175 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Style; + +use PhpOffice\PhpSpreadsheet\IComparable; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +abstract class Supervisor implements IComparable +{ + /** + * Supervisor? + * + * @var bool + */ + protected $isSupervisor; + + /** + * Parent. Only used for supervisor. + * + * @var Spreadsheet|Supervisor + */ + protected $parent; + + /** + * Parent property name. + * + * @var null|string + */ + protected $parentPropertyName; + + /** + * Create a new Supervisor. + * + * @param bool $isSupervisor Flag indicating if this is a supervisor or not + * Leave this value at default unless you understand exactly what + * its ramifications are + */ + public function __construct($isSupervisor = false) + { + // Supervisor? + $this->isSupervisor = $isSupervisor; + } + + /** + * Bind parent. Only used for supervisor. + * + * @param Spreadsheet|Supervisor $parent + * @param null|string $parentPropertyName + * + * @return $this + */ + public function bindParent($parent, $parentPropertyName = null) + { + $this->parent = $parent; + $this->parentPropertyName = $parentPropertyName; + + return $this; + } + + /** + * Is this a supervisor or a cell style component? + * + * @return bool + */ + public function getIsSupervisor() + { + return $this->isSupervisor; + } + + /** + * Get the currently active sheet. Only used for supervisor. + * + * @return Worksheet + */ + public function getActiveSheet() + { + return $this->parent->getActiveSheet(); + } + + /** + * Get the currently active cell coordinate in currently active sheet. + * Only used for supervisor. + * + * @return string E.g. 'A1' + */ + public function getSelectedCells() + { + return $this->getActiveSheet()->getSelectedCells(); + } + + /** + * Get the currently active cell coordinate in currently active sheet. + * Only used for supervisor. + * + * @return string E.g. 'A1' + */ + public function getActiveCell() + { + return $this->getActiveSheet()->getActiveCell(); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if ((is_object($value)) && ($key != 'parent')) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } + + /** + * Export style as array. + * + * Available to anything which extends this class: + * Alignment, Border, Borders, Color, Fill, Font, + * NumberFormat, Protection, and Style. + */ + final public function exportArray(): array + { + return $this->exportArray1(); + } + + /** + * Abstract method to be implemented in anything which + * extends this class. + * + * This method invokes exportArray2 with the names and values + * of all properties to be included in output array, + * returning that array to exportArray, then to caller. + */ + abstract protected function exportArray1(): array; + + /** + * Populate array from exportArray1. + * This method is available to anything which extends this class. + * The parameter index is the key to be added to the array. + * The parameter objOrValue is either a primitive type, + * which is the value added to the array, + * or a Style object to be recursively added via exportArray. + * + * @param mixed $objOrValue + */ + final protected function exportArray2(array &$exportedArray, string $index, $objOrValue): void + { + if ($objOrValue instanceof self) { + $exportedArray[$index] = $objOrValue->exportArray(); + } else { + $exportedArray[$index] = $objOrValue; + } + } + + /** + * Get the shared style component for the currently active cell in currently active sheet. + * Only used for style supervisor. + * + * @return mixed + */ + abstract public function getSharedComponent(); + + /** + * Build style array from subcomponents. + * + * @param array $array + * + * @return array + */ + abstract public function getStyleArray($array); +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter.php new file mode 100644 index 0000000..05b2e9a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter.php @@ -0,0 +1,1092 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use DateTime; +use DateTimeZone; +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Calculation\Internal\WildcardMatch; +use PhpOffice\PhpSpreadsheet\Cell\AddressRange; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; +use PhpOffice\PhpSpreadsheet\Shared\Date; +use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter\Column\Rule; + +class AutoFilter +{ + /** + * Autofilter Worksheet. + * + * @var null|Worksheet + */ + private $workSheet; + + /** + * Autofilter Range. + * + * @var string + */ + private $range = ''; + + /** + * Autofilter Column Ruleset. + * + * @var AutoFilter\Column[] + */ + private $columns = []; + + /** @var bool */ + private $evaluated = false; + + public function getEvaluated(): bool + { + return $this->evaluated; + } + + public function setEvaluated(bool $value): void + { + $this->evaluated = $value; + } + + /** + * Create a new AutoFilter. + * + * @param AddressRange|array<int>|string $range + * A simple string containing a Cell range like 'A1:E10' is permitted + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or an AddressRange object. + */ + public function __construct($range = '', ?Worksheet $worksheet = null) + { + if ($range !== '') { + [, $range] = Worksheet::extractSheetTitle(Validations::validateCellRange($range), true); + } + + $this->range = $range; + $this->workSheet = $worksheet; + } + + /** + * Get AutoFilter Parent Worksheet. + * + * @return null|Worksheet + */ + public function getParent() + { + return $this->workSheet; + } + + /** + * Set AutoFilter Parent Worksheet. + * + * @return $this + */ + public function setParent(?Worksheet $worksheet = null) + { + $this->evaluated = false; + $this->workSheet = $worksheet; + + return $this; + } + + /** + * Get AutoFilter Range. + * + * @return string + */ + public function getRange() + { + return $this->range; + } + + /** + * Set AutoFilter Cell Range. + * + * @param AddressRange|array<int>|string $range + * A simple string containing a Cell range like 'A1:E10' is permitted + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or an AddressRange object. + */ + public function setRange($range = ''): self + { + $this->evaluated = false; + // extract coordinate + if ($range !== '') { + [, $range] = Worksheet::extractSheetTitle(Validations::validateCellRange($range), true); + } + if (empty($range)) { + // Discard all column rules + $this->columns = []; + $this->range = ''; + + return $this; + } + + if (strpos($range, ':') === false) { + throw new PhpSpreadsheetException('Autofilter must be set on a range of cells.'); + } + + $this->range = $range; + // Discard any column rules that are no longer valid within this range + [$rangeStart, $rangeEnd] = Coordinate::rangeBoundaries($this->range); + foreach ($this->columns as $key => $value) { + $colIndex = Coordinate::columnIndexFromString($key); + if (($rangeStart[0] > $colIndex) || ($rangeEnd[0] < $colIndex)) { + unset($this->columns[$key]); + } + } + + return $this; + } + + public function setRangeToMaxRow(): self + { + $this->evaluated = false; + if ($this->workSheet !== null) { + $thisrange = $this->range; + $range = (string) preg_replace('/\\d+$/', (string) $this->workSheet->getHighestRow(), $thisrange); + if ($range !== $thisrange) { + $this->setRange($range); + } + } + + return $this; + } + + /** + * Get all AutoFilter Columns. + * + * @return AutoFilter\Column[] + */ + public function getColumns() + { + return $this->columns; + } + + /** + * Validate that the specified column is in the AutoFilter range. + * + * @param string $column Column name (e.g. A) + * + * @return int The column offset within the autofilter range + */ + public function testColumnInRange($column) + { + if (empty($this->range)) { + throw new PhpSpreadsheetException('No autofilter range is defined.'); + } + + $columnIndex = Coordinate::columnIndexFromString($column); + [$rangeStart, $rangeEnd] = Coordinate::rangeBoundaries($this->range); + if (($rangeStart[0] > $columnIndex) || ($rangeEnd[0] < $columnIndex)) { + throw new PhpSpreadsheetException('Column is outside of current autofilter range.'); + } + + return $columnIndex - $rangeStart[0]; + } + + /** + * Get a specified AutoFilter Column Offset within the defined AutoFilter range. + * + * @param string $column Column name (e.g. A) + * + * @return int The offset of the specified column within the autofilter range + */ + public function getColumnOffset($column) + { + return $this->testColumnInRange($column); + } + + /** + * Get a specified AutoFilter Column. + * + * @param string $column Column name (e.g. A) + * + * @return AutoFilter\Column + */ + public function getColumn($column) + { + $this->testColumnInRange($column); + + if (!isset($this->columns[$column])) { + $this->columns[$column] = new AutoFilter\Column($column, $this); + } + + return $this->columns[$column]; + } + + /** + * Get a specified AutoFilter Column by it's offset. + * + * @param int $columnOffset Column offset within range (starting from 0) + * + * @return AutoFilter\Column + */ + public function getColumnByOffset($columnOffset) + { + [$rangeStart, $rangeEnd] = Coordinate::rangeBoundaries($this->range); + $pColumn = Coordinate::stringFromColumnIndex($rangeStart[0] + $columnOffset); + + return $this->getColumn($pColumn); + } + + /** + * Set AutoFilter. + * + * @param AutoFilter\Column|string $columnObjectOrString + * A simple string containing a Column ID like 'A' is permitted + * + * @return $this + */ + public function setColumn($columnObjectOrString) + { + $this->evaluated = false; + if ((is_string($columnObjectOrString)) && (!empty($columnObjectOrString))) { + $column = $columnObjectOrString; + } elseif (is_object($columnObjectOrString) && ($columnObjectOrString instanceof AutoFilter\Column)) { + $column = $columnObjectOrString->getColumnIndex(); + } else { + throw new PhpSpreadsheetException('Column is not within the autofilter range.'); + } + $this->testColumnInRange($column); + + if (is_string($columnObjectOrString)) { + $this->columns[$columnObjectOrString] = new AutoFilter\Column($columnObjectOrString, $this); + } else { + $columnObjectOrString->setParent($this); + $this->columns[$column] = $columnObjectOrString; + } + ksort($this->columns); + + return $this; + } + + /** + * Clear a specified AutoFilter Column. + * + * @param string $column Column name (e.g. A) + * + * @return $this + */ + public function clearColumn($column) + { + $this->evaluated = false; + $this->testColumnInRange($column); + + if (isset($this->columns[$column])) { + unset($this->columns[$column]); + } + + return $this; + } + + /** + * Shift an AutoFilter Column Rule to a different column. + * + * Note: This method bypasses validation of the destination column to ensure it is within this AutoFilter range. + * Nor does it verify whether any column rule already exists at $toColumn, but will simply override any existing value. + * Use with caution. + * + * @param string $fromColumn Column name (e.g. A) + * @param string $toColumn Column name (e.g. B) + * + * @return $this + */ + public function shiftColumn($fromColumn, $toColumn) + { + $this->evaluated = false; + $fromColumn = strtoupper($fromColumn); + $toColumn = strtoupper($toColumn); + + if (($fromColumn !== null) && (isset($this->columns[$fromColumn])) && ($toColumn !== null)) { + $this->columns[$fromColumn]->setParent(); + $this->columns[$fromColumn]->setColumnIndex($toColumn); + $this->columns[$toColumn] = $this->columns[$fromColumn]; + $this->columns[$toColumn]->setParent($this); + unset($this->columns[$fromColumn]); + + ksort($this->columns); + } + + return $this; + } + + /** + * Test if cell value is in the defined set of values. + * + * @param mixed $cellValue + * @param mixed[] $dataSet + * + * @return bool + */ + private static function filterTestInSimpleDataSet($cellValue, $dataSet) + { + $dataSetValues = $dataSet['filterValues']; + $blanks = $dataSet['blanks']; + if (($cellValue == '') || ($cellValue === null)) { + return $blanks; + } + + return in_array($cellValue, $dataSetValues); + } + + /** + * Test if cell value is in the defined set of Excel date values. + * + * @param mixed $cellValue + * @param mixed[] $dataSet + * + * @return bool + */ + private static function filterTestInDateGroupSet($cellValue, $dataSet) + { + $dateSet = $dataSet['filterValues']; + $blanks = $dataSet['blanks']; + if (($cellValue == '') || ($cellValue === null)) { + return $blanks; + } + $timeZone = new DateTimeZone('UTC'); + + if (is_numeric($cellValue)) { + $dateTime = Date::excelToDateTimeObject((float) $cellValue, $timeZone); + $cellValue = (float) $cellValue; + if ($cellValue < 1) { + // Just the time part + $dtVal = $dateTime->format('His'); + $dateSet = $dateSet['time']; + } elseif ($cellValue == floor($cellValue)) { + // Just the date part + $dtVal = $dateTime->format('Ymd'); + $dateSet = $dateSet['date']; + } else { + // date and time parts + $dtVal = $dateTime->format('YmdHis'); + $dateSet = $dateSet['dateTime']; + } + foreach ($dateSet as $dateValue) { + // Use of substr to extract value at the appropriate group level + if (substr($dtVal, 0, strlen($dateValue)) == $dateValue) { + return true; + } + } + } + + return false; + } + + /** + * Test if cell value is within a set of values defined by a ruleset. + * + * @param mixed $cellValue + * @param mixed[] $ruleSet + * + * @return bool + */ + private static function filterTestInCustomDataSet($cellValue, $ruleSet) + { + /** @var array[] */ + $dataSet = $ruleSet['filterRules']; + $join = $ruleSet['join']; + $customRuleForBlanks = $ruleSet['customRuleForBlanks'] ?? false; + + if (!$customRuleForBlanks) { + // Blank cells are always ignored, so return a FALSE + if (($cellValue == '') || ($cellValue === null)) { + return false; + } + } + $returnVal = ($join == AutoFilter\Column::AUTOFILTER_COLUMN_JOIN_AND); + foreach ($dataSet as $rule) { + /** @var string */ + $ruleValue = $rule['value']; + /** @var string */ + $ruleOperator = $rule['operator']; + /** @var string */ + $cellValueString = $cellValue ?? ''; + $retVal = false; + + if (is_numeric($ruleValue)) { + // Numeric values are tested using the appropriate operator + $numericTest = is_numeric($cellValue); + switch ($ruleOperator) { + case Rule::AUTOFILTER_COLUMN_RULE_EQUAL: + $retVal = $numericTest && ($cellValue == $ruleValue); + + break; + case Rule::AUTOFILTER_COLUMN_RULE_NOTEQUAL: + $retVal = !$numericTest || ($cellValue != $ruleValue); + + break; + case Rule::AUTOFILTER_COLUMN_RULE_GREATERTHAN: + $retVal = $numericTest && ($cellValue > $ruleValue); + + break; + case Rule::AUTOFILTER_COLUMN_RULE_GREATERTHANOREQUAL: + $retVal = $numericTest && ($cellValue >= $ruleValue); + + break; + case Rule::AUTOFILTER_COLUMN_RULE_LESSTHAN: + $retVal = $numericTest && ($cellValue < $ruleValue); + + break; + case Rule::AUTOFILTER_COLUMN_RULE_LESSTHANOREQUAL: + $retVal = $numericTest && ($cellValue <= $ruleValue); + + break; + } + } elseif ($ruleValue == '') { + switch ($ruleOperator) { + case Rule::AUTOFILTER_COLUMN_RULE_EQUAL: + $retVal = (($cellValue == '') || ($cellValue === null)); + + break; + case Rule::AUTOFILTER_COLUMN_RULE_NOTEQUAL: + $retVal = (($cellValue != '') && ($cellValue !== null)); + + break; + default: + $retVal = true; + + break; + } + } else { + // String values are always tested for equality, factoring in for wildcards (hence a regexp test) + switch ($ruleOperator) { + case Rule::AUTOFILTER_COLUMN_RULE_EQUAL: + $retVal = (bool) preg_match('/^' . $ruleValue . '$/i', $cellValueString); + + break; + case Rule::AUTOFILTER_COLUMN_RULE_NOTEQUAL: + $retVal = !((bool) preg_match('/^' . $ruleValue . '$/i', $cellValueString)); + + break; + case Rule::AUTOFILTER_COLUMN_RULE_GREATERTHAN: + $retVal = strcasecmp($cellValueString, $ruleValue) > 0; + + break; + case Rule::AUTOFILTER_COLUMN_RULE_GREATERTHANOREQUAL: + $retVal = strcasecmp($cellValueString, $ruleValue) >= 0; + + break; + case Rule::AUTOFILTER_COLUMN_RULE_LESSTHAN: + $retVal = strcasecmp($cellValueString, $ruleValue) < 0; + + break; + case Rule::AUTOFILTER_COLUMN_RULE_LESSTHANOREQUAL: + $retVal = strcasecmp($cellValueString, $ruleValue) <= 0; + + break; + } + } + // If there are multiple conditions, then we need to test both using the appropriate join operator + switch ($join) { + case AutoFilter\Column::AUTOFILTER_COLUMN_JOIN_OR: + $returnVal = $returnVal || $retVal; + // Break as soon as we have a TRUE match for OR joins, + // to avoid unnecessary additional code execution + if ($returnVal) { + return $returnVal; + } + + break; + case AutoFilter\Column::AUTOFILTER_COLUMN_JOIN_AND: + $returnVal = $returnVal && $retVal; + + break; + } + } + + return $returnVal; + } + + /** + * Test if cell date value is matches a set of values defined by a set of months. + * + * @param mixed $cellValue + * @param mixed[] $monthSet + * + * @return bool + */ + private static function filterTestInPeriodDateSet($cellValue, $monthSet) + { + // Blank cells are always ignored, so return a FALSE + if (($cellValue == '') || ($cellValue === null)) { + return false; + } + + if (is_numeric($cellValue)) { + $dateObject = Date::excelToDateTimeObject((float) $cellValue, new DateTimeZone('UTC')); + $dateValue = (int) $dateObject->format('m'); + if (in_array($dateValue, $monthSet)) { + return true; + } + } + + return false; + } + + private static function makeDateObject(int $year, int $month, int $day, int $hour = 0, int $minute = 0, int $second = 0): DateTime + { + $baseDate = new DateTime(); + $baseDate->setDate($year, $month, $day); + $baseDate->setTime($hour, $minute, $second); + + return $baseDate; + } + + private const DATE_FUNCTIONS = [ + Rule::AUTOFILTER_RULETYPE_DYNAMIC_LASTMONTH => 'dynamicLastMonth', + Rule::AUTOFILTER_RULETYPE_DYNAMIC_LASTQUARTER => 'dynamicLastQuarter', + Rule::AUTOFILTER_RULETYPE_DYNAMIC_LASTWEEK => 'dynamicLastWeek', + Rule::AUTOFILTER_RULETYPE_DYNAMIC_LASTYEAR => 'dynamicLastYear', + Rule::AUTOFILTER_RULETYPE_DYNAMIC_NEXTMONTH => 'dynamicNextMonth', + Rule::AUTOFILTER_RULETYPE_DYNAMIC_NEXTQUARTER => 'dynamicNextQuarter', + Rule::AUTOFILTER_RULETYPE_DYNAMIC_NEXTWEEK => 'dynamicNextWeek', + Rule::AUTOFILTER_RULETYPE_DYNAMIC_NEXTYEAR => 'dynamicNextYear', + Rule::AUTOFILTER_RULETYPE_DYNAMIC_THISMONTH => 'dynamicThisMonth', + Rule::AUTOFILTER_RULETYPE_DYNAMIC_THISQUARTER => 'dynamicThisQuarter', + Rule::AUTOFILTER_RULETYPE_DYNAMIC_THISWEEK => 'dynamicThisWeek', + Rule::AUTOFILTER_RULETYPE_DYNAMIC_THISYEAR => 'dynamicThisYear', + Rule::AUTOFILTER_RULETYPE_DYNAMIC_TODAY => 'dynamicToday', + Rule::AUTOFILTER_RULETYPE_DYNAMIC_TOMORROW => 'dynamicTomorrow', + Rule::AUTOFILTER_RULETYPE_DYNAMIC_YEARTODATE => 'dynamicYearToDate', + Rule::AUTOFILTER_RULETYPE_DYNAMIC_YESTERDAY => 'dynamicYesterday', + ]; + + private static function dynamicLastMonth(): array + { + $maxval = new DateTime(); + $year = (int) $maxval->format('Y'); + $month = (int) $maxval->format('m'); + $maxval->setDate($year, $month, 1); + $maxval->setTime(0, 0, 0); + $val = clone $maxval; + $val->modify('-1 month'); + + return [$val, $maxval]; + } + + private static function firstDayOfQuarter(): DateTime + { + $val = new DateTime(); + $year = (int) $val->format('Y'); + $month = (int) $val->format('m'); + $month = 3 * intdiv($month - 1, 3) + 1; + $val->setDate($year, $month, 1); + $val->setTime(0, 0, 0); + + return $val; + } + + private static function dynamicLastQuarter(): array + { + $maxval = self::firstDayOfQuarter(); + $val = clone $maxval; + $val->modify('-3 months'); + + return [$val, $maxval]; + } + + private static function dynamicLastWeek(): array + { + $val = new DateTime(); + $val->setTime(0, 0, 0); + $dayOfWeek = (int) $val->format('w'); // Sunday is 0 + $subtract = $dayOfWeek + 7; // revert to prior Sunday + $val->modify("-$subtract days"); + $maxval = clone $val; + $maxval->modify('+7 days'); + + return [$val, $maxval]; + } + + private static function dynamicLastYear(): array + { + $val = new DateTime(); + $year = (int) $val->format('Y'); + $val = self::makeDateObject($year - 1, 1, 1); + $maxval = self::makeDateObject($year, 1, 1); + + return [$val, $maxval]; + } + + private static function dynamicNextMonth(): array + { + $val = new DateTime(); + $year = (int) $val->format('Y'); + $month = (int) $val->format('m'); + $val->setDate($year, $month, 1); + $val->setTime(0, 0, 0); + $val->modify('+1 month'); + $maxval = clone $val; + $maxval->modify('+1 month'); + + return [$val, $maxval]; + } + + private static function dynamicNextQuarter(): array + { + $val = self::firstDayOfQuarter(); + $val->modify('+3 months'); + $maxval = clone $val; + $maxval->modify('+3 months'); + + return [$val, $maxval]; + } + + private static function dynamicNextWeek(): array + { + $val = new DateTime(); + $val->setTime(0, 0, 0); + $dayOfWeek = (int) $val->format('w'); // Sunday is 0 + $add = 7 - $dayOfWeek; // move to next Sunday + $val->modify("+$add days"); + $maxval = clone $val; + $maxval->modify('+7 days'); + + return [$val, $maxval]; + } + + private static function dynamicNextYear(): array + { + $val = new DateTime(); + $year = (int) $val->format('Y'); + $val = self::makeDateObject($year + 1, 1, 1); + $maxval = self::makeDateObject($year + 2, 1, 1); + + return [$val, $maxval]; + } + + private static function dynamicThisMonth(): array + { + $baseDate = new DateTime(); + $baseDate->setTime(0, 0, 0); + $year = (int) $baseDate->format('Y'); + $month = (int) $baseDate->format('m'); + $val = self::makeDateObject($year, $month, 1); + $maxval = clone $val; + $maxval->modify('+1 month'); + + return [$val, $maxval]; + } + + private static function dynamicThisQuarter(): array + { + $val = self::firstDayOfQuarter(); + $maxval = clone $val; + $maxval->modify('+3 months'); + + return [$val, $maxval]; + } + + private static function dynamicThisWeek(): array + { + $val = new DateTime(); + $val->setTime(0, 0, 0); + $dayOfWeek = (int) $val->format('w'); // Sunday is 0 + $subtract = $dayOfWeek; // revert to Sunday + $val->modify("-$subtract days"); + $maxval = clone $val; + $maxval->modify('+7 days'); + + return [$val, $maxval]; + } + + private static function dynamicThisYear(): array + { + $val = new DateTime(); + $year = (int) $val->format('Y'); + $val = self::makeDateObject($year, 1, 1); + $maxval = self::makeDateObject($year + 1, 1, 1); + + return [$val, $maxval]; + } + + private static function dynamicToday(): array + { + $val = new DateTime(); + $val->setTime(0, 0, 0); + $maxval = clone $val; + $maxval->modify('+1 day'); + + return [$val, $maxval]; + } + + private static function dynamicTomorrow(): array + { + $val = new DateTime(); + $val->setTime(0, 0, 0); + $val->modify('+1 day'); + $maxval = clone $val; + $maxval->modify('+1 day'); + + return [$val, $maxval]; + } + + private static function dynamicYearToDate(): array + { + $maxval = new DateTime(); + $maxval->setTime(0, 0, 0); + $val = self::makeDateObject((int) $maxval->format('Y'), 1, 1); + $maxval->modify('+1 day'); + + return [$val, $maxval]; + } + + private static function dynamicYesterday(): array + { + $maxval = new DateTime(); + $maxval->setTime(0, 0, 0); + $val = clone $maxval; + $val->modify('-1 day'); + + return [$val, $maxval]; + } + + /** + * Convert a dynamic rule daterange to a custom filter range expression for ease of calculation. + * + * @param string $dynamicRuleType + * + * @return mixed[] + */ + private function dynamicFilterDateRange($dynamicRuleType, AutoFilter\Column &$filterColumn) + { + $ruleValues = []; + $callBack = [__CLASS__, self::DATE_FUNCTIONS[$dynamicRuleType]]; // What if not found? + // Calculate start/end dates for the required date range based on current date + // Val is lowest permitted value. + // Maxval is greater than highest permitted value + $val = $maxval = 0; + if (is_callable($callBack)) { + [$val, $maxval] = $callBack(); + } + $val = Date::dateTimeToExcel($val); + $maxval = Date::dateTimeToExcel($maxval); + + // Set the filter column rule attributes ready for writing + $filterColumn->setAttributes(['val' => $val, 'maxVal' => $maxval]); + + // Set the rules for identifying rows for hide/show + $ruleValues[] = ['operator' => Rule::AUTOFILTER_COLUMN_RULE_GREATERTHANOREQUAL, 'value' => $val]; + $ruleValues[] = ['operator' => Rule::AUTOFILTER_COLUMN_RULE_LESSTHAN, 'value' => $maxval]; + + return ['method' => 'filterTestInCustomDataSet', 'arguments' => ['filterRules' => $ruleValues, 'join' => AutoFilter\Column::AUTOFILTER_COLUMN_JOIN_AND]]; + } + + /** + * Apply the AutoFilter rules to the AutoFilter Range. + * + * @param string $columnID + * @param int $startRow + * @param int $endRow + * @param ?string $ruleType + * @param mixed $ruleValue + * + * @return mixed + */ + private function calculateTopTenValue($columnID, $startRow, $endRow, $ruleType, $ruleValue) + { + $range = $columnID . $startRow . ':' . $columnID . $endRow; + $retVal = null; + if ($this->workSheet !== null) { + $dataValues = Functions::flattenArray($this->workSheet->rangeToArray($range, null, true, false)); + $dataValues = array_filter($dataValues); + + if ($ruleType == Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_TOP) { + rsort($dataValues); + } else { + sort($dataValues); + } + + $slice = array_slice($dataValues, 0, $ruleValue); + + $retVal = array_pop($slice); + } + + return $retVal; + } + + /** + * Apply the AutoFilter rules to the AutoFilter Range. + * + * @return $this + */ + public function showHideRows() + { + if ($this->workSheet === null) { + return $this; + } + [$rangeStart, $rangeEnd] = Coordinate::rangeBoundaries($this->range); + + // The heading row should always be visible + $this->workSheet->getRowDimension($rangeStart[1])->setVisible(true); + + $columnFilterTests = []; + foreach ($this->columns as $columnID => $filterColumn) { + $rules = $filterColumn->getRules(); + switch ($filterColumn->getFilterType()) { + case AutoFilter\Column::AUTOFILTER_FILTERTYPE_FILTER: + $ruleType = null; + $ruleValues = []; + // Build a list of the filter value selections + foreach ($rules as $rule) { + $ruleType = $rule->getRuleType(); + $ruleValues[] = $rule->getValue(); + } + // Test if we want to include blanks in our filter criteria + $blanks = false; + $ruleDataSet = array_filter($ruleValues); + if (count($ruleValues) != count($ruleDataSet)) { + $blanks = true; + } + if ($ruleType == Rule::AUTOFILTER_RULETYPE_FILTER) { + // Filter on absolute values + $columnFilterTests[$columnID] = [ + 'method' => 'filterTestInSimpleDataSet', + 'arguments' => ['filterValues' => $ruleDataSet, 'blanks' => $blanks], + ]; + } else { + // Filter on date group values + $arguments = [ + 'date' => [], + 'time' => [], + 'dateTime' => [], + ]; + foreach ($ruleDataSet as $ruleValue) { + if (!is_array($ruleValue)) { + continue; + } + $date = $time = ''; + if ( + (isset($ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_YEAR])) && + ($ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_YEAR] !== '') + ) { + $date .= sprintf('%04d', $ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_YEAR]); + } + if ( + (isset($ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_MONTH])) && + ($ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_MONTH] != '') + ) { + $date .= sprintf('%02d', $ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_MONTH]); + } + if ( + (isset($ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_DAY])) && + ($ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_DAY] !== '') + ) { + $date .= sprintf('%02d', $ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_DAY]); + } + if ( + (isset($ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_HOUR])) && + ($ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_HOUR] !== '') + ) { + $time .= sprintf('%02d', $ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_HOUR]); + } + if ( + (isset($ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_MINUTE])) && + ($ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_MINUTE] !== '') + ) { + $time .= sprintf('%02d', $ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_MINUTE]); + } + if ( + (isset($ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_SECOND])) && + ($ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_SECOND] !== '') + ) { + $time .= sprintf('%02d', $ruleValue[Rule::AUTOFILTER_RULETYPE_DATEGROUP_SECOND]); + } + $dateTime = $date . $time; + $arguments['date'][] = $date; + $arguments['time'][] = $time; + $arguments['dateTime'][] = $dateTime; + } + // Remove empty elements + $arguments['date'] = array_filter($arguments['date']); + $arguments['time'] = array_filter($arguments['time']); + $arguments['dateTime'] = array_filter($arguments['dateTime']); + $columnFilterTests[$columnID] = [ + 'method' => 'filterTestInDateGroupSet', + 'arguments' => ['filterValues' => $arguments, 'blanks' => $blanks], + ]; + } + + break; + case AutoFilter\Column::AUTOFILTER_FILTERTYPE_CUSTOMFILTER: + $customRuleForBlanks = true; + $ruleValues = []; + // Build a list of the filter value selections + foreach ($rules as $rule) { + $ruleValue = $rule->getValue(); + if (!is_array($ruleValue) && !is_numeric($ruleValue)) { + // Convert to a regexp allowing for regexp reserved characters, wildcards and escaped wildcards + $ruleValue = WildcardMatch::wildcard($ruleValue); + if (trim($ruleValue) == '') { + $customRuleForBlanks = true; + $ruleValue = trim($ruleValue); + } + } + $ruleValues[] = ['operator' => $rule->getOperator(), 'value' => $ruleValue]; + } + $join = $filterColumn->getJoin(); + $columnFilterTests[$columnID] = [ + 'method' => 'filterTestInCustomDataSet', + 'arguments' => ['filterRules' => $ruleValues, 'join' => $join, 'customRuleForBlanks' => $customRuleForBlanks], + ]; + + break; + case AutoFilter\Column::AUTOFILTER_FILTERTYPE_DYNAMICFILTER: + $ruleValues = []; + foreach ($rules as $rule) { + // We should only ever have one Dynamic Filter Rule anyway + $dynamicRuleType = $rule->getGrouping(); + if ( + ($dynamicRuleType == Rule::AUTOFILTER_RULETYPE_DYNAMIC_ABOVEAVERAGE) || + ($dynamicRuleType == Rule::AUTOFILTER_RULETYPE_DYNAMIC_BELOWAVERAGE) + ) { + // Number (Average) based + // Calculate the average + $averageFormula = '=AVERAGE(' . $columnID . ($rangeStart[1] + 1) . ':' . $columnID . $rangeEnd[1] . ')'; + $spreadsheet = ($this->workSheet === null) ? null : $this->workSheet->getParent(); + $average = Calculation::getInstance($spreadsheet)->calculateFormula($averageFormula, null, $this->workSheet->getCell('A1')); + while (is_array($average)) { + $average = array_pop($average); + } + // Set above/below rule based on greaterThan or LessTan + $operator = ($dynamicRuleType === Rule::AUTOFILTER_RULETYPE_DYNAMIC_ABOVEAVERAGE) + ? Rule::AUTOFILTER_COLUMN_RULE_GREATERTHAN + : Rule::AUTOFILTER_COLUMN_RULE_LESSTHAN; + $ruleValues[] = [ + 'operator' => $operator, + 'value' => $average, + ]; + $columnFilterTests[$columnID] = [ + 'method' => 'filterTestInCustomDataSet', + 'arguments' => ['filterRules' => $ruleValues, 'join' => AutoFilter\Column::AUTOFILTER_COLUMN_JOIN_OR], + ]; + } else { + // Date based + if ($dynamicRuleType[0] == 'M' || $dynamicRuleType[0] == 'Q') { + $periodType = ''; + $period = 0; + // Month or Quarter + sscanf($dynamicRuleType, '%[A-Z]%d', $periodType, $period); + if ($periodType == 'M') { + $ruleValues = [$period]; + } else { + --$period; + $periodEnd = (1 + $period) * 3; + $periodStart = 1 + $period * 3; + $ruleValues = range($periodStart, $periodEnd); + } + $columnFilterTests[$columnID] = [ + 'method' => 'filterTestInPeriodDateSet', + 'arguments' => $ruleValues, + ]; + $filterColumn->setAttributes([]); + } else { + // Date Range + $columnFilterTests[$columnID] = $this->dynamicFilterDateRange($dynamicRuleType, $filterColumn); + + break; + } + } + } + + break; + case AutoFilter\Column::AUTOFILTER_FILTERTYPE_TOPTENFILTER: + $ruleValues = []; + $dataRowCount = $rangeEnd[1] - $rangeStart[1]; + $toptenRuleType = null; + $ruleValue = 0; + $ruleOperator = null; + foreach ($rules as $rule) { + // We should only ever have one Dynamic Filter Rule anyway + $toptenRuleType = $rule->getGrouping(); + $ruleValue = $rule->getValue(); + $ruleOperator = $rule->getOperator(); + } + if (is_numeric($ruleValue) && $ruleOperator === Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_PERCENT) { + $ruleValue = floor((float) $ruleValue * ($dataRowCount / 100)); + } + if (!is_array($ruleValue) && $ruleValue < 1) { + $ruleValue = 1; + } + if (!is_array($ruleValue) && $ruleValue > 500) { + $ruleValue = 500; + } + + $maxVal = $this->calculateTopTenValue($columnID, $rangeStart[1] + 1, (int) $rangeEnd[1], $toptenRuleType, $ruleValue); + + $operator = ($toptenRuleType == Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_TOP) + ? Rule::AUTOFILTER_COLUMN_RULE_GREATERTHANOREQUAL + : Rule::AUTOFILTER_COLUMN_RULE_LESSTHANOREQUAL; + $ruleValues[] = ['operator' => $operator, 'value' => $maxVal]; + $columnFilterTests[$columnID] = [ + 'method' => 'filterTestInCustomDataSet', + 'arguments' => ['filterRules' => $ruleValues, 'join' => AutoFilter\Column::AUTOFILTER_COLUMN_JOIN_OR], + ]; + $filterColumn->setAttributes(['maxVal' => $maxVal]); + + break; + } + } + + // Execute the column tests for each row in the autoFilter range to determine show/hide, + for ($row = $rangeStart[1] + 1; $row <= $rangeEnd[1]; ++$row) { + $result = true; + foreach ($columnFilterTests as $columnID => $columnFilterTest) { + $cellValue = $this->workSheet->getCell($columnID . $row)->getCalculatedValue(); + // Execute the filter test + $result = // $result && // phpstan says $result is always true here + // @phpstan-ignore-next-line + call_user_func_array([self::class, $columnFilterTest['method']], [$cellValue, $columnFilterTest['arguments']]); + // If filter test has resulted in FALSE, exit the loop straightaway rather than running any more tests + if (!$result) { + break; + } + } + // Set show/hide for the row based on the result of the autoFilter result + $this->workSheet->getRowDimension((int) $row)->setVisible($result); + } + $this->evaluated = true; + + return $this; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + if ($key === 'workSheet') { + // Detach from worksheet + $this->{$key} = null; + } else { + $this->{$key} = clone $value; + } + } elseif ((is_array($value)) && ($key == 'columns')) { + // The columns array of \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet\AutoFilter objects + $this->{$key} = []; + foreach ($value as $k => $v) { + $this->{$key}[$k] = clone $v; + // attach the new cloned Column to this new cloned Autofilter object + $this->{$key}[$k]->setParent($this); + } + } else { + $this->{$key} = $value; + } + } + } + + /** + * toString method replicates previous behavior by returning the range if object is + * referenced as a property of its parent. + */ + public function __toString() + { + return (string) $this->range; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter/Column.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter/Column.php new file mode 100644 index 0000000..076292f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter/Column.php @@ -0,0 +1,404 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; +use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter; + +class Column +{ + const AUTOFILTER_FILTERTYPE_FILTER = 'filters'; + const AUTOFILTER_FILTERTYPE_CUSTOMFILTER = 'customFilters'; + // Supports no more than 2 rules, with an And/Or join criteria + // if more than 1 rule is defined + const AUTOFILTER_FILTERTYPE_DYNAMICFILTER = 'dynamicFilter'; + // Even though the filter rule is constant, the filtered data can vary + // e.g. filtered by date = TODAY + const AUTOFILTER_FILTERTYPE_TOPTENFILTER = 'top10'; + + /** + * Types of autofilter rules. + * + * @var string[] + */ + private static $filterTypes = [ + // Currently we're not handling + // colorFilter + // extLst + // iconFilter + self::AUTOFILTER_FILTERTYPE_FILTER, + self::AUTOFILTER_FILTERTYPE_CUSTOMFILTER, + self::AUTOFILTER_FILTERTYPE_DYNAMICFILTER, + self::AUTOFILTER_FILTERTYPE_TOPTENFILTER, + ]; + + // Multiple Rule Connections + const AUTOFILTER_COLUMN_JOIN_AND = 'and'; + const AUTOFILTER_COLUMN_JOIN_OR = 'or'; + + /** + * Join options for autofilter rules. + * + * @var string[] + */ + private static $ruleJoins = [ + self::AUTOFILTER_COLUMN_JOIN_AND, + self::AUTOFILTER_COLUMN_JOIN_OR, + ]; + + /** + * Autofilter. + * + * @var null|AutoFilter + */ + private $parent; + + /** + * Autofilter Column Index. + * + * @var string + */ + private $columnIndex = ''; + + /** + * Autofilter Column Filter Type. + * + * @var string + */ + private $filterType = self::AUTOFILTER_FILTERTYPE_FILTER; + + /** + * Autofilter Multiple Rules And/Or. + * + * @var string + */ + private $join = self::AUTOFILTER_COLUMN_JOIN_OR; + + /** + * Autofilter Column Rules. + * + * @var Column\Rule[] + */ + private $ruleset = []; + + /** + * Autofilter Column Dynamic Attributes. + * + * @var mixed[] + */ + private $attributes = []; + + /** + * Create a new Column. + * + * @param string $column Column (e.g. A) + * @param AutoFilter $parent Autofilter for this column + */ + public function __construct($column, ?AutoFilter $parent = null) + { + $this->columnIndex = $column; + $this->parent = $parent; + } + + public function setEvaluatedFalse(): void + { + if ($this->parent !== null) { + $this->parent->setEvaluated(false); + } + } + + /** + * Get AutoFilter column index as string eg: 'A'. + * + * @return string + */ + public function getColumnIndex() + { + return $this->columnIndex; + } + + /** + * Set AutoFilter column index as string eg: 'A'. + * + * @param string $column Column (e.g. A) + * + * @return $this + */ + public function setColumnIndex($column) + { + $this->setEvaluatedFalse(); + // Uppercase coordinate + $column = strtoupper($column); + if ($this->parent !== null) { + $this->parent->testColumnInRange($column); + } + + $this->columnIndex = $column; + + return $this; + } + + /** + * Get this Column's AutoFilter Parent. + * + * @return null|AutoFilter + */ + public function getParent() + { + return $this->parent; + } + + /** + * Set this Column's AutoFilter Parent. + * + * @return $this + */ + public function setParent(?AutoFilter $parent = null) + { + $this->setEvaluatedFalse(); + $this->parent = $parent; + + return $this; + } + + /** + * Get AutoFilter Type. + * + * @return string + */ + public function getFilterType() + { + return $this->filterType; + } + + /** + * Set AutoFilter Type. + * + * @param string $filterType + * + * @return $this + */ + public function setFilterType($filterType) + { + $this->setEvaluatedFalse(); + if (!in_array($filterType, self::$filterTypes)) { + throw new PhpSpreadsheetException('Invalid filter type for column AutoFilter.'); + } + if ($filterType === self::AUTOFILTER_FILTERTYPE_CUSTOMFILTER && count($this->ruleset) > 2) { + throw new PhpSpreadsheetException('No more than 2 rules are allowed in a Custom Filter'); + } + + $this->filterType = $filterType; + + return $this; + } + + /** + * Get AutoFilter Multiple Rules And/Or Join. + * + * @return string + */ + public function getJoin() + { + return $this->join; + } + + /** + * Set AutoFilter Multiple Rules And/Or. + * + * @param string $join And/Or + * + * @return $this + */ + public function setJoin($join) + { + $this->setEvaluatedFalse(); + // Lowercase And/Or + $join = strtolower($join); + if (!in_array($join, self::$ruleJoins)) { + throw new PhpSpreadsheetException('Invalid rule connection for column AutoFilter.'); + } + + $this->join = $join; + + return $this; + } + + /** + * Set AutoFilter Attributes. + * + * @param mixed[] $attributes + * + * @return $this + */ + public function setAttributes($attributes) + { + $this->setEvaluatedFalse(); + $this->attributes = $attributes; + + return $this; + } + + /** + * Set An AutoFilter Attribute. + * + * @param string $name Attribute Name + * @param int|string $value Attribute Value + * + * @return $this + */ + public function setAttribute($name, $value) + { + $this->setEvaluatedFalse(); + $this->attributes[$name] = $value; + + return $this; + } + + /** + * Get AutoFilter Column Attributes. + * + * @return int[]|string[] + */ + public function getAttributes() + { + return $this->attributes; + } + + /** + * Get specific AutoFilter Column Attribute. + * + * @param string $name Attribute Name + * + * @return null|int|string + */ + public function getAttribute($name) + { + if (isset($this->attributes[$name])) { + return $this->attributes[$name]; + } + + return null; + } + + public function ruleCount(): int + { + return count($this->ruleset); + } + + /** + * Get all AutoFilter Column Rules. + * + * @return Column\Rule[] + */ + public function getRules() + { + return $this->ruleset; + } + + /** + * Get a specified AutoFilter Column Rule. + * + * @param int $index Rule index in the ruleset array + * + * @return Column\Rule + */ + public function getRule($index) + { + if (!isset($this->ruleset[$index])) { + $this->ruleset[$index] = new Column\Rule($this); + } + + return $this->ruleset[$index]; + } + + /** + * Create a new AutoFilter Column Rule in the ruleset. + * + * @return Column\Rule + */ + public function createRule() + { + $this->setEvaluatedFalse(); + if ($this->filterType === self::AUTOFILTER_FILTERTYPE_CUSTOMFILTER && count($this->ruleset) >= 2) { + throw new PhpSpreadsheetException('No more than 2 rules are allowed in a Custom Filter'); + } + $this->ruleset[] = new Column\Rule($this); + + return end($this->ruleset); + } + + /** + * Add a new AutoFilter Column Rule to the ruleset. + * + * @return $this + */ + public function addRule(Column\Rule $rule) + { + $this->setEvaluatedFalse(); + $rule->setParent($this); + $this->ruleset[] = $rule; + + return $this; + } + + /** + * Delete a specified AutoFilter Column Rule + * If the number of rules is reduced to 1, then we reset And/Or logic to Or. + * + * @param int $index Rule index in the ruleset array + * + * @return $this + */ + public function deleteRule($index) + { + $this->setEvaluatedFalse(); + if (isset($this->ruleset[$index])) { + unset($this->ruleset[$index]); + // If we've just deleted down to a single rule, then reset And/Or joining to Or + if (count($this->ruleset) <= 1) { + $this->setJoin(self::AUTOFILTER_COLUMN_JOIN_OR); + } + } + + return $this; + } + + /** + * Delete all AutoFilter Column Rules. + * + * @return $this + */ + public function clearRules() + { + $this->setEvaluatedFalse(); + $this->ruleset = []; + $this->setJoin(self::AUTOFILTER_COLUMN_JOIN_OR); + + return $this; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if ($key === 'parent') { + // Detach from autofilter parent + $this->parent = null; + } elseif ($key === 'ruleset') { + // The columns array of \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet\AutoFilter objects + $this->ruleset = []; + foreach ($value as $k => $v) { + $cloned = clone $v; + $cloned->setParent($this); // attach the new cloned Rule to this new cloned Autofilter Cloned object + $this->ruleset[$k] = $cloned; + } + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter/Column/Rule.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter/Column/Rule.php new file mode 100644 index 0000000..408dfb3 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter/Column/Rule.php @@ -0,0 +1,426 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter\Column; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; +use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter\Column; + +class Rule +{ + const AUTOFILTER_RULETYPE_FILTER = 'filter'; + const AUTOFILTER_RULETYPE_DATEGROUP = 'dateGroupItem'; + const AUTOFILTER_RULETYPE_CUSTOMFILTER = 'customFilter'; + const AUTOFILTER_RULETYPE_DYNAMICFILTER = 'dynamicFilter'; + const AUTOFILTER_RULETYPE_TOPTENFILTER = 'top10Filter'; + + private const RULE_TYPES = [ + // Currently we're not handling + // colorFilter + // extLst + // iconFilter + self::AUTOFILTER_RULETYPE_FILTER, + self::AUTOFILTER_RULETYPE_DATEGROUP, + self::AUTOFILTER_RULETYPE_CUSTOMFILTER, + self::AUTOFILTER_RULETYPE_DYNAMICFILTER, + self::AUTOFILTER_RULETYPE_TOPTENFILTER, + ]; + + const AUTOFILTER_RULETYPE_DATEGROUP_YEAR = 'year'; + const AUTOFILTER_RULETYPE_DATEGROUP_MONTH = 'month'; + const AUTOFILTER_RULETYPE_DATEGROUP_DAY = 'day'; + const AUTOFILTER_RULETYPE_DATEGROUP_HOUR = 'hour'; + const AUTOFILTER_RULETYPE_DATEGROUP_MINUTE = 'minute'; + const AUTOFILTER_RULETYPE_DATEGROUP_SECOND = 'second'; + + private const DATE_TIME_GROUPS = [ + self::AUTOFILTER_RULETYPE_DATEGROUP_YEAR, + self::AUTOFILTER_RULETYPE_DATEGROUP_MONTH, + self::AUTOFILTER_RULETYPE_DATEGROUP_DAY, + self::AUTOFILTER_RULETYPE_DATEGROUP_HOUR, + self::AUTOFILTER_RULETYPE_DATEGROUP_MINUTE, + self::AUTOFILTER_RULETYPE_DATEGROUP_SECOND, + ]; + + const AUTOFILTER_RULETYPE_DYNAMIC_YESTERDAY = 'yesterday'; + const AUTOFILTER_RULETYPE_DYNAMIC_TODAY = 'today'; + const AUTOFILTER_RULETYPE_DYNAMIC_TOMORROW = 'tomorrow'; + const AUTOFILTER_RULETYPE_DYNAMIC_YEARTODATE = 'yearToDate'; + const AUTOFILTER_RULETYPE_DYNAMIC_THISYEAR = 'thisYear'; + const AUTOFILTER_RULETYPE_DYNAMIC_THISQUARTER = 'thisQuarter'; + const AUTOFILTER_RULETYPE_DYNAMIC_THISMONTH = 'thisMonth'; + const AUTOFILTER_RULETYPE_DYNAMIC_THISWEEK = 'thisWeek'; + const AUTOFILTER_RULETYPE_DYNAMIC_LASTYEAR = 'lastYear'; + const AUTOFILTER_RULETYPE_DYNAMIC_LASTQUARTER = 'lastQuarter'; + const AUTOFILTER_RULETYPE_DYNAMIC_LASTMONTH = 'lastMonth'; + const AUTOFILTER_RULETYPE_DYNAMIC_LASTWEEK = 'lastWeek'; + const AUTOFILTER_RULETYPE_DYNAMIC_NEXTYEAR = 'nextYear'; + const AUTOFILTER_RULETYPE_DYNAMIC_NEXTQUARTER = 'nextQuarter'; + const AUTOFILTER_RULETYPE_DYNAMIC_NEXTMONTH = 'nextMonth'; + const AUTOFILTER_RULETYPE_DYNAMIC_NEXTWEEK = 'nextWeek'; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_1 = 'M1'; + const AUTOFILTER_RULETYPE_DYNAMIC_JANUARY = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_1; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_2 = 'M2'; + const AUTOFILTER_RULETYPE_DYNAMIC_FEBRUARY = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_2; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_3 = 'M3'; + const AUTOFILTER_RULETYPE_DYNAMIC_MARCH = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_3; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_4 = 'M4'; + const AUTOFILTER_RULETYPE_DYNAMIC_APRIL = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_4; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_5 = 'M5'; + const AUTOFILTER_RULETYPE_DYNAMIC_MAY = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_5; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_6 = 'M6'; + const AUTOFILTER_RULETYPE_DYNAMIC_JUNE = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_6; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_7 = 'M7'; + const AUTOFILTER_RULETYPE_DYNAMIC_JULY = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_7; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_8 = 'M8'; + const AUTOFILTER_RULETYPE_DYNAMIC_AUGUST = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_8; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_9 = 'M9'; + const AUTOFILTER_RULETYPE_DYNAMIC_SEPTEMBER = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_9; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_10 = 'M10'; + const AUTOFILTER_RULETYPE_DYNAMIC_OCTOBER = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_10; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_11 = 'M11'; + const AUTOFILTER_RULETYPE_DYNAMIC_NOVEMBER = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_11; + const AUTOFILTER_RULETYPE_DYNAMIC_MONTH_12 = 'M12'; + const AUTOFILTER_RULETYPE_DYNAMIC_DECEMBER = self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_12; + const AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_1 = 'Q1'; + const AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_2 = 'Q2'; + const AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_3 = 'Q3'; + const AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_4 = 'Q4'; + const AUTOFILTER_RULETYPE_DYNAMIC_ABOVEAVERAGE = 'aboveAverage'; + const AUTOFILTER_RULETYPE_DYNAMIC_BELOWAVERAGE = 'belowAverage'; + + private const DYNAMIC_TYPES = [ + self::AUTOFILTER_RULETYPE_DYNAMIC_YESTERDAY, + self::AUTOFILTER_RULETYPE_DYNAMIC_TODAY, + self::AUTOFILTER_RULETYPE_DYNAMIC_TOMORROW, + self::AUTOFILTER_RULETYPE_DYNAMIC_YEARTODATE, + self::AUTOFILTER_RULETYPE_DYNAMIC_THISYEAR, + self::AUTOFILTER_RULETYPE_DYNAMIC_THISQUARTER, + self::AUTOFILTER_RULETYPE_DYNAMIC_THISMONTH, + self::AUTOFILTER_RULETYPE_DYNAMIC_THISWEEK, + self::AUTOFILTER_RULETYPE_DYNAMIC_LASTYEAR, + self::AUTOFILTER_RULETYPE_DYNAMIC_LASTQUARTER, + self::AUTOFILTER_RULETYPE_DYNAMIC_LASTMONTH, + self::AUTOFILTER_RULETYPE_DYNAMIC_LASTWEEK, + self::AUTOFILTER_RULETYPE_DYNAMIC_NEXTYEAR, + self::AUTOFILTER_RULETYPE_DYNAMIC_NEXTQUARTER, + self::AUTOFILTER_RULETYPE_DYNAMIC_NEXTMONTH, + self::AUTOFILTER_RULETYPE_DYNAMIC_NEXTWEEK, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_1, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_2, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_3, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_4, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_5, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_6, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_7, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_8, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_9, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_10, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_11, + self::AUTOFILTER_RULETYPE_DYNAMIC_MONTH_12, + self::AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_1, + self::AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_2, + self::AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_3, + self::AUTOFILTER_RULETYPE_DYNAMIC_QUARTER_4, + self::AUTOFILTER_RULETYPE_DYNAMIC_ABOVEAVERAGE, + self::AUTOFILTER_RULETYPE_DYNAMIC_BELOWAVERAGE, + ]; + + // Filter rule operators for filter and customFilter types. + const AUTOFILTER_COLUMN_RULE_EQUAL = 'equal'; + const AUTOFILTER_COLUMN_RULE_NOTEQUAL = 'notEqual'; + const AUTOFILTER_COLUMN_RULE_GREATERTHAN = 'greaterThan'; + const AUTOFILTER_COLUMN_RULE_GREATERTHANOREQUAL = 'greaterThanOrEqual'; + const AUTOFILTER_COLUMN_RULE_LESSTHAN = 'lessThan'; + const AUTOFILTER_COLUMN_RULE_LESSTHANOREQUAL = 'lessThanOrEqual'; + + private const OPERATORS = [ + self::AUTOFILTER_COLUMN_RULE_EQUAL, + self::AUTOFILTER_COLUMN_RULE_NOTEQUAL, + self::AUTOFILTER_COLUMN_RULE_GREATERTHAN, + self::AUTOFILTER_COLUMN_RULE_GREATERTHANOREQUAL, + self::AUTOFILTER_COLUMN_RULE_LESSTHAN, + self::AUTOFILTER_COLUMN_RULE_LESSTHANOREQUAL, + ]; + + const AUTOFILTER_COLUMN_RULE_TOPTEN_BY_VALUE = 'byValue'; + const AUTOFILTER_COLUMN_RULE_TOPTEN_PERCENT = 'byPercent'; + + private const TOP_TEN_VALUE = [ + self::AUTOFILTER_COLUMN_RULE_TOPTEN_BY_VALUE, + self::AUTOFILTER_COLUMN_RULE_TOPTEN_PERCENT, + ]; + + const AUTOFILTER_COLUMN_RULE_TOPTEN_TOP = 'top'; + const AUTOFILTER_COLUMN_RULE_TOPTEN_BOTTOM = 'bottom'; + + private const TOP_TEN_TYPE = [ + self::AUTOFILTER_COLUMN_RULE_TOPTEN_TOP, + self::AUTOFILTER_COLUMN_RULE_TOPTEN_BOTTOM, + ]; + + // Unimplented Rule Operators (Numeric, Boolean etc) + // const AUTOFILTER_COLUMN_RULE_BETWEEN = 'between'; // greaterThanOrEqual 1 && lessThanOrEqual 2 + // Rule Operators (Numeric Special) which are translated to standard numeric operators with calculated values + // Rule Operators (String) which are set as wild-carded values + // const AUTOFILTER_COLUMN_RULE_BEGINSWITH = 'beginsWith'; // A* + // const AUTOFILTER_COLUMN_RULE_ENDSWITH = 'endsWith'; // *Z + // const AUTOFILTER_COLUMN_RULE_CONTAINS = 'contains'; // *B* + // const AUTOFILTER_COLUMN_RULE_DOESNTCONTAIN = 'notEqual'; // notEqual *B* + // Rule Operators (Date Special) which are translated to standard numeric operators with calculated values + // const AUTOFILTER_COLUMN_RULE_BEFORE = 'lessThan'; + // const AUTOFILTER_COLUMN_RULE_AFTER = 'greaterThan'; + + /** + * Autofilter Column. + * + * @var ?Column + */ + private $parent; + + /** + * Autofilter Rule Type. + * + * @var string + */ + private $ruleType = self::AUTOFILTER_RULETYPE_FILTER; + + /** + * Autofilter Rule Value. + * + * @var int|int[]|string|string[] + */ + private $value = ''; + + /** + * Autofilter Rule Operator. + * + * @var string + */ + private $operator = self::AUTOFILTER_COLUMN_RULE_EQUAL; + + /** + * DateTimeGrouping Group Value. + * + * @var string + */ + private $grouping = ''; + + /** + * Create a new Rule. + */ + public function __construct(?Column $parent = null) + { + $this->parent = $parent; + } + + private function setEvaluatedFalse(): void + { + if ($this->parent !== null) { + $this->parent->setEvaluatedFalse(); + } + } + + /** + * Get AutoFilter Rule Type. + * + * @return string + */ + public function getRuleType() + { + return $this->ruleType; + } + + /** + * Set AutoFilter Rule Type. + * + * @param string $ruleType see self::AUTOFILTER_RULETYPE_* + * + * @return $this + */ + public function setRuleType($ruleType) + { + $this->setEvaluatedFalse(); + if (!in_array($ruleType, self::RULE_TYPES)) { + throw new PhpSpreadsheetException('Invalid rule type for column AutoFilter Rule.'); + } + + $this->ruleType = $ruleType; + + return $this; + } + + /** + * Get AutoFilter Rule Value. + * + * @return int|int[]|string|string[] + */ + public function getValue() + { + return $this->value; + } + + /** + * Set AutoFilter Rule Value. + * + * @param int|int[]|string|string[] $value + * + * @return $this + */ + public function setValue($value) + { + $this->setEvaluatedFalse(); + if (is_array($value)) { + $grouping = -1; + foreach ($value as $key => $v) { + // Validate array entries + if (!in_array($key, self::DATE_TIME_GROUPS)) { + // Remove any invalid entries from the value array + unset($value[$key]); + } else { + // Work out what the dateTime grouping will be + $grouping = max($grouping, array_search($key, self::DATE_TIME_GROUPS)); + } + } + if (count($value) == 0) { + throw new PhpSpreadsheetException('Invalid rule value for column AutoFilter Rule.'); + } + // Set the dateTime grouping that we've anticipated + $this->setGrouping(self::DATE_TIME_GROUPS[$grouping]); + } + $this->value = $value; + + return $this; + } + + /** + * Get AutoFilter Rule Operator. + * + * @return string + */ + public function getOperator() + { + return $this->operator; + } + + /** + * Set AutoFilter Rule Operator. + * + * @param string $operator see self::AUTOFILTER_COLUMN_RULE_* + * + * @return $this + */ + public function setOperator($operator) + { + $this->setEvaluatedFalse(); + if (empty($operator)) { + $operator = self::AUTOFILTER_COLUMN_RULE_EQUAL; + } + if ( + (!in_array($operator, self::OPERATORS)) && + (!in_array($operator, self::TOP_TEN_VALUE)) + ) { + throw new PhpSpreadsheetException('Invalid operator for column AutoFilter Rule.'); + } + $this->operator = $operator; + + return $this; + } + + /** + * Get AutoFilter Rule Grouping. + * + * @return string + */ + public function getGrouping() + { + return $this->grouping; + } + + /** + * Set AutoFilter Rule Grouping. + * + * @param string $grouping + * + * @return $this + */ + public function setGrouping($grouping) + { + $this->setEvaluatedFalse(); + if ( + ($grouping !== null) && + (!in_array($grouping, self::DATE_TIME_GROUPS)) && + (!in_array($grouping, self::DYNAMIC_TYPES)) && + (!in_array($grouping, self::TOP_TEN_TYPE)) + ) { + throw new PhpSpreadsheetException('Invalid grouping for column AutoFilter Rule.'); + } + $this->grouping = $grouping; + + return $this; + } + + /** + * Set AutoFilter Rule. + * + * @param string $operator see self::AUTOFILTER_COLUMN_RULE_* + * @param int|int[]|string|string[] $value + * @param string $grouping + * + * @return $this + */ + public function setRule($operator, $value, $grouping = null) + { + $this->setEvaluatedFalse(); + $this->setOperator($operator); + $this->setValue($value); + // Only set grouping if it's been passed in as a user-supplied argument, + // otherwise we're calculating it when we setValue() and don't want to overwrite that + // If the user supplies an argumnet for grouping, then on their own head be it + if ($grouping !== null) { + $this->setGrouping($grouping); + } + + return $this; + } + + /** + * Get this Rule's AutoFilter Column Parent. + * + * @return ?Column + */ + public function getParent() + { + return $this->parent; + } + + /** + * Set this Rule's AutoFilter Column Parent. + * + * @return $this + */ + public function setParent(?Column $parent = null) + { + $this->setEvaluatedFalse(); + $this->parent = $parent; + + return $this; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + if ($key == 'parent') { // this is only object + // Detach from autofilter column parent + $this->$key = null; + } + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/BaseDrawing.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/BaseDrawing.php new file mode 100644 index 0000000..369e416 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/BaseDrawing.php @@ -0,0 +1,535 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use PhpOffice\PhpSpreadsheet\Cell\Hyperlink; +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; +use PhpOffice\PhpSpreadsheet\IComparable; + +class BaseDrawing implements IComparable +{ + const EDIT_AS_ABSOLUTE = 'absolute'; + const EDIT_AS_ONECELL = 'oneCell'; + const EDIT_AS_TWOCELL = 'twoCell'; + private const VALID_EDIT_AS = [ + self::EDIT_AS_ABSOLUTE, + self::EDIT_AS_ONECELL, + self::EDIT_AS_TWOCELL, + ]; + + /** + * The editAs attribute, used only with two cell anchor. + * + * @var string + */ + protected $editAs = ''; + + /** + * Image counter. + * + * @var int + */ + private static $imageCounter = 0; + + /** + * Image index. + * + * @var int + */ + private $imageIndex = 0; + + /** + * Name. + * + * @var string + */ + protected $name = ''; + + /** + * Description. + * + * @var string + */ + protected $description = ''; + + /** + * Worksheet. + * + * @var null|Worksheet + */ + protected $worksheet; + + /** + * Coordinates. + * + * @var string + */ + protected $coordinates = 'A1'; + + /** + * Offset X. + * + * @var int + */ + protected $offsetX = 0; + + /** + * Offset Y. + * + * @var int + */ + protected $offsetY = 0; + + /** + * Coordinates2. + * + * @var string + */ + protected $coordinates2 = ''; + + /** + * Offset X2. + * + * @var int + */ + protected $offsetX2 = 0; + + /** + * Offset Y2. + * + * @var int + */ + protected $offsetY2 = 0; + + /** + * Width. + * + * @var int + */ + protected $width = 0; + + /** + * Height. + * + * @var int + */ + protected $height = 0; + + /** + * Pixel width of image. See $width for the size the Drawing will be in the sheet. + * + * @var int + */ + protected $imageWidth = 0; + + /** + * Pixel width of image. See $height for the size the Drawing will be in the sheet. + * + * @var int + */ + protected $imageHeight = 0; + + /** + * Proportional resize. + * + * @var bool + */ + protected $resizeProportional = true; + + /** + * Rotation. + * + * @var int + */ + protected $rotation = 0; + + /** + * Shadow. + * + * @var Drawing\Shadow + */ + protected $shadow; + + /** + * Image hyperlink. + * + * @var null|Hyperlink + */ + private $hyperlink; + + /** + * Image type. + * + * @var int + */ + protected $type = IMAGETYPE_UNKNOWN; + + /** + * Create a new BaseDrawing. + */ + public function __construct() + { + // Initialise values + $this->setShadow(); + + // Set image index + ++self::$imageCounter; + $this->imageIndex = self::$imageCounter; + } + + public function getImageIndex(): int + { + return $this->imageIndex; + } + + public function getName(): string + { + return $this->name; + } + + public function setName(string $name): self + { + $this->name = $name; + + return $this; + } + + public function getDescription(): string + { + return $this->description; + } + + public function setDescription(string $description): self + { + $this->description = $description; + + return $this; + } + + public function getWorksheet(): ?Worksheet + { + return $this->worksheet; + } + + /** + * Set Worksheet. + * + * @param bool $overrideOld If a Worksheet has already been assigned, overwrite it and remove image from old Worksheet? + */ + public function setWorksheet(?Worksheet $worksheet = null, bool $overrideOld = false): self + { + if ($this->worksheet === null) { + // Add drawing to \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet + if ($worksheet !== null) { + $this->worksheet = $worksheet; + $this->worksheet->getCell($this->coordinates); + $this->worksheet->getDrawingCollection()->append($this); + } + } else { + if ($overrideOld) { + // Remove drawing from old \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet + $iterator = $this->worksheet->getDrawingCollection()->getIterator(); + + while ($iterator->valid()) { + if ($iterator->current()->getHashCode() === $this->getHashCode()) { + $this->worksheet->getDrawingCollection()->offsetUnset($iterator->key()); + $this->worksheet = null; + + break; + } + } + + // Set new \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet + $this->setWorksheet($worksheet); + } else { + throw new PhpSpreadsheetException('A Worksheet has already been assigned. Drawings can only exist on one \\PhpOffice\\PhpSpreadsheet\\Worksheet.'); + } + } + + return $this; + } + + public function getCoordinates(): string + { + return $this->coordinates; + } + + public function setCoordinates(string $coordinates): self + { + $this->coordinates = $coordinates; + + return $this; + } + + public function getOffsetX(): int + { + return $this->offsetX; + } + + public function setOffsetX(int $offsetX): self + { + $this->offsetX = $offsetX; + + return $this; + } + + public function getOffsetY(): int + { + return $this->offsetY; + } + + public function setOffsetY(int $offsetY): self + { + $this->offsetY = $offsetY; + + return $this; + } + + public function getCoordinates2(): string + { + return $this->coordinates2; + } + + public function setCoordinates2(string $coordinates2): self + { + $this->coordinates2 = $coordinates2; + + return $this; + } + + public function getOffsetX2(): int + { + return $this->offsetX2; + } + + public function setOffsetX2(int $offsetX2): self + { + $this->offsetX2 = $offsetX2; + + return $this; + } + + public function getOffsetY2(): int + { + return $this->offsetY2; + } + + public function setOffsetY2(int $offsetY2): self + { + $this->offsetY2 = $offsetY2; + + return $this; + } + + public function getWidth(): int + { + return $this->width; + } + + public function setWidth(int $width): self + { + // Resize proportional? + if ($this->resizeProportional && $width != 0) { + $ratio = $this->height / ($this->width != 0 ? $this->width : 1); + $this->height = (int) round($ratio * $width); + } + + // Set width + $this->width = $width; + + return $this; + } + + public function getHeight(): int + { + return $this->height; + } + + public function setHeight(int $height): self + { + // Resize proportional? + if ($this->resizeProportional && $height != 0) { + $ratio = $this->width / ($this->height != 0 ? $this->height : 1); + $this->width = (int) round($ratio * $height); + } + + // Set height + $this->height = $height; + + return $this; + } + + /** + * Set width and height with proportional resize. + * + * Example: + * <code> + * $objDrawing->setResizeProportional(true); + * $objDrawing->setWidthAndHeight(160,120); + * </code> + * + * @author Vincent@luo MSN:kele_100@hotmail.com + */ + public function setWidthAndHeight(int $width, int $height): self + { + $xratio = $width / ($this->width != 0 ? $this->width : 1); + $yratio = $height / ($this->height != 0 ? $this->height : 1); + if ($this->resizeProportional && !($width == 0 || $height == 0)) { + if (($xratio * $this->height) < $height) { + $this->height = (int) ceil($xratio * $this->height); + $this->width = $width; + } else { + $this->width = (int) ceil($yratio * $this->width); + $this->height = $height; + } + } else { + $this->width = $width; + $this->height = $height; + } + + return $this; + } + + public function getResizeProportional(): bool + { + return $this->resizeProportional; + } + + public function setResizeProportional(bool $resizeProportional): self + { + $this->resizeProportional = $resizeProportional; + + return $this; + } + + public function getRotation(): int + { + return $this->rotation; + } + + public function setRotation(int $rotation): self + { + $this->rotation = $rotation; + + return $this; + } + + public function getShadow(): Drawing\Shadow + { + return $this->shadow; + } + + public function setShadow(?Drawing\Shadow $shadow = null): self + { + $this->shadow = $shadow ?? new Drawing\Shadow(); + + return $this; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->name . + $this->description . + (($this->worksheet === null) ? '' : $this->worksheet->getHashCode()) . + $this->coordinates . + $this->offsetX . + $this->offsetY . + $this->coordinates2 . + $this->offsetX2 . + $this->offsetY2 . + $this->width . + $this->height . + $this->rotation . + $this->shadow->getHashCode() . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if ($key == 'worksheet') { + $this->worksheet = null; + } elseif (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } + + public function setHyperlink(?Hyperlink $hyperlink = null): void + { + $this->hyperlink = $hyperlink; + } + + public function getHyperlink(): ?Hyperlink + { + return $this->hyperlink; + } + + /** + * Set Fact Sizes and Type of Image. + */ + protected function setSizesAndType(string $path): void + { + if ($this->imageWidth === 0 && $this->imageHeight === 0 && $this->type === IMAGETYPE_UNKNOWN) { + $imageData = getimagesize($path); + + if (is_array($imageData)) { + $this->imageWidth = $imageData[0]; + $this->imageHeight = $imageData[1]; + $this->type = $imageData[2]; + } + } + if ($this->width === 0 && $this->height === 0) { + $this->width = $this->imageWidth; + $this->height = $this->imageHeight; + } + } + + /** + * Get Image Type. + */ + public function getType(): int + { + return $this->type; + } + + public function getImageWidth(): int + { + return $this->imageWidth; + } + + public function getImageHeight(): int + { + return $this->imageHeight; + } + + public function getEditAs(): string + { + return $this->editAs; + } + + public function setEditAs(string $editAs): self + { + $this->editAs = $editAs; + + return $this; + } + + public function validEditAs(): bool + { + return in_array($this->editAs, self::VALID_EDIT_AS, true); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/CellIterator.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/CellIterator.php new file mode 100644 index 0000000..17286f9 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/CellIterator.php @@ -0,0 +1,71 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use Iterator; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Collection\Cells; + +/** + * @template TKey + * @implements Iterator<TKey, Cell> + */ +abstract class CellIterator implements Iterator +{ + public const TREAT_NULL_VALUE_AS_EMPTY_CELL = 1; + + public const TREAT_EMPTY_STRING_AS_EMPTY_CELL = 2; + + /** + * Worksheet to iterate. + * + * @var Worksheet + */ + protected $worksheet; + + /** + * Cell Collection to iterate. + * + * @var Cells + */ + protected $cellCollection; + + /** + * Iterate only existing cells. + * + * @var bool + */ + protected $onlyExistingCells = false; + + /** + * Destructor. + */ + public function __destruct() + { + // @phpstan-ignore-next-line + $this->worksheet = $this->cellCollection = null; + } + + /** + * Get loop only existing cells. + */ + public function getIterateOnlyExistingCells(): bool + { + return $this->onlyExistingCells; + } + + /** + * Validate start/end values for "IterateOnlyExistingCells" mode, and adjust if necessary. + */ + abstract protected function adjustForExistingOnlyRange(); + + /** + * Set the iterator to loop only existing cells. + */ + public function setIterateOnlyExistingCells(bool $value): void + { + $this->onlyExistingCells = (bool) $value; + + $this->adjustForExistingOnlyRange(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Column.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Column.php new file mode 100644 index 0000000..e6e332a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Column.php @@ -0,0 +1,109 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +class Column +{ + /** + * \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet. + * + * @var Worksheet + */ + private $worksheet; + + /** + * Column index. + * + * @var string + */ + private $columnIndex; + + /** + * Create a new column. + * + * @param string $columnIndex + */ + public function __construct(Worksheet $worksheet, $columnIndex = 'A') + { + // Set parent and column index + $this->worksheet = $worksheet; + $this->columnIndex = $columnIndex; + } + + /** + * Destructor. + */ + public function __destruct() + { + // @phpstan-ignore-next-line + $this->worksheet = null; + } + + /** + * Get column index as string eg: 'A'. + */ + public function getColumnIndex(): string + { + return $this->columnIndex; + } + + /** + * Get cell iterator. + * + * @param int $startRow The row number at which to start iterating + * @param int $endRow Optionally, the row number at which to stop iterating + * + * @return ColumnCellIterator + */ + public function getCellIterator($startRow = 1, $endRow = null) + { + return new ColumnCellIterator($this->worksheet, $this->columnIndex, $startRow, $endRow); + } + + /** + * Returns a boolean true if the column contains no cells. By default, this means that no cell records exist in the + * collection for this column. false will be returned otherwise. + * This rule can be modified by passing a $definitionOfEmptyFlags value: + * 1 - CellIterator::TREAT_NULL_VALUE_AS_EMPTY_CELL If the only cells in the collection are null value + * cells, then the column will be considered empty. + * 2 - CellIterator::TREAT_EMPTY_STRING_AS_EMPTY_CELL If the only cells in the collection are empty + * string value cells, then the column will be considered empty. + * 3 - CellIterator::TREAT_NULL_VALUE_AS_EMPTY_CELL | CellIterator::TREAT_EMPTY_STRING_AS_EMPTY_CELL + * If the only cells in the collection are null value or empty string value cells, then the column + * will be considered empty. + * + * @param int $definitionOfEmptyFlags + * Possible Flag Values are: + * CellIterator::TREAT_NULL_VALUE_AS_EMPTY_CELL + * CellIterator::TREAT_EMPTY_STRING_AS_EMPTY_CELL + */ + public function isEmpty(int $definitionOfEmptyFlags = 0): bool + { + $nullValueCellIsEmpty = (bool) ($definitionOfEmptyFlags & CellIterator::TREAT_NULL_VALUE_AS_EMPTY_CELL); + $emptyStringCellIsEmpty = (bool) ($definitionOfEmptyFlags & CellIterator::TREAT_EMPTY_STRING_AS_EMPTY_CELL); + + $cellIterator = $this->getCellIterator(); + $cellIterator->setIterateOnlyExistingCells(true); + foreach ($cellIterator as $cell) { + $value = $cell->getValue(); + if ($value === null && $nullValueCellIsEmpty === true) { + continue; + } + if ($value === '' && $emptyStringCellIsEmpty === true) { + continue; + } + + return false; + } + + return true; + } + + /** + * Returns bound worksheet. + */ + public function getWorksheet(): Worksheet + { + return $this->worksheet; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnCellIterator.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnCellIterator.php new file mode 100644 index 0000000..a518f59 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnCellIterator.php @@ -0,0 +1,201 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; + +/** + * @extends CellIterator<int> + */ +class ColumnCellIterator extends CellIterator +{ + /** + * Current iterator position. + * + * @var int + */ + private $currentRow; + + /** + * Column index. + * + * @var int + */ + private $columnIndex; + + /** + * Start position. + * + * @var int + */ + private $startRow = 1; + + /** + * End position. + * + * @var int + */ + private $endRow = 1; + + /** + * Create a new row iterator. + * + * @param Worksheet $worksheet The worksheet to iterate over + * @param string $columnIndex The column that we want to iterate + * @param int $startRow The row number at which to start iterating + * @param int $endRow Optionally, the row number at which to stop iterating + */ + public function __construct(Worksheet $worksheet, $columnIndex = 'A', $startRow = 1, $endRow = null) + { + // Set subject + $this->worksheet = $worksheet; + $this->cellCollection = $worksheet->getCellCollection(); + $this->columnIndex = Coordinate::columnIndexFromString($columnIndex); + $this->resetEnd($endRow); + $this->resetStart($startRow); + } + + /** + * (Re)Set the start row and the current row pointer. + * + * @param int $startRow The row number at which to start iterating + * + * @return $this + */ + public function resetStart(int $startRow = 1) + { + $this->startRow = $startRow; + $this->adjustForExistingOnlyRange(); + $this->seek($startRow); + + return $this; + } + + /** + * (Re)Set the end row. + * + * @param int $endRow The row number at which to stop iterating + * + * @return $this + */ + public function resetEnd($endRow = null) + { + $this->endRow = $endRow ?: $this->worksheet->getHighestRow(); + $this->adjustForExistingOnlyRange(); + + return $this; + } + + /** + * Set the row pointer to the selected row. + * + * @param int $row The row number to set the current pointer at + * + * @return $this + */ + public function seek(int $row = 1) + { + if ( + $this->onlyExistingCells && + (!$this->cellCollection->has(Coordinate::stringFromColumnIndex($this->columnIndex) . $row)) + ) { + throw new PhpSpreadsheetException('In "IterateOnlyExistingCells" mode and Cell does not exist'); + } + if (($row < $this->startRow) || ($row > $this->endRow)) { + throw new PhpSpreadsheetException("Row $row is out of range ({$this->startRow} - {$this->endRow})"); + } + $this->currentRow = $row; + + return $this; + } + + /** + * Rewind the iterator to the starting row. + */ + public function rewind(): void + { + $this->currentRow = $this->startRow; + } + + /** + * Return the current cell in this worksheet column. + */ + public function current(): ?Cell + { + $cellAddress = Coordinate::stringFromColumnIndex($this->columnIndex) . $this->currentRow; + + return $this->cellCollection->has($cellAddress) + ? $this->cellCollection->get($cellAddress) + : $this->worksheet->createNewCell($cellAddress); + } + + /** + * Return the current iterator key. + */ + public function key(): int + { + return $this->currentRow; + } + + /** + * Set the iterator to its next value. + */ + public function next(): void + { + $columnAddress = Coordinate::stringFromColumnIndex($this->columnIndex); + do { + ++$this->currentRow; + } while ( + ($this->onlyExistingCells) && + ($this->currentRow <= $this->endRow) && + (!$this->cellCollection->has($columnAddress . $this->currentRow)) + ); + } + + /** + * Set the iterator to its previous value. + */ + public function prev(): void + { + $columnAddress = Coordinate::stringFromColumnIndex($this->columnIndex); + do { + --$this->currentRow; + } while ( + ($this->onlyExistingCells) && + ($this->currentRow >= $this->startRow) && + (!$this->cellCollection->has($columnAddress . $this->currentRow)) + ); + } + + /** + * Indicate if more rows exist in the worksheet range of rows that we're iterating. + */ + public function valid(): bool + { + return $this->currentRow <= $this->endRow && $this->currentRow >= $this->startRow; + } + + /** + * Validate start/end values for "IterateOnlyExistingCells" mode, and adjust if necessary. + */ + protected function adjustForExistingOnlyRange(): void + { + if ($this->onlyExistingCells) { + $columnAddress = Coordinate::stringFromColumnIndex($this->columnIndex); + while ( + (!$this->cellCollection->has($columnAddress . $this->startRow)) && + ($this->startRow <= $this->endRow) + ) { + ++$this->startRow; + } + while ( + (!$this->cellCollection->has($columnAddress . $this->endRow)) && + ($this->endRow >= $this->startRow) + ) { + --$this->endRow; + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnDimension.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnDimension.php new file mode 100644 index 0000000..b64ecec --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnDimension.php @@ -0,0 +1,137 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Helper\Dimension as CssDimension; + +class ColumnDimension extends Dimension +{ + /** + * Column index. + * + * @var string + */ + private $columnIndex; + + /** + * Column width. + * + * When this is set to a negative value, the column width should be ignored by IWriter + * + * @var float + */ + private $width = -1; + + /** + * Auto size? + * + * @var bool + */ + private $autoSize = false; + + /** + * Create a new ColumnDimension. + * + * @param string $index Character column index + */ + public function __construct($index = 'A') + { + // Initialise values + $this->columnIndex = $index; + + // set dimension as unformatted by default + parent::__construct(0); + } + + /** + * Get column index as string eg: 'A'. + */ + public function getColumnIndex(): string + { + return $this->columnIndex; + } + + /** + * Set column index as string eg: 'A'. + */ + public function setColumnIndex(string $index): self + { + $this->columnIndex = $index; + + return $this; + } + + /** + * Get column index as numeric. + */ + public function getColumnNumeric(): int + { + return Coordinate::columnIndexFromString($this->columnIndex); + } + + /** + * Set column index as numeric. + */ + public function setColumnNumeric(int $index): self + { + $this->columnIndex = Coordinate::stringFromColumnIndex($index); + + return $this; + } + + /** + * Get Width. + * + * Each unit of column width is equal to the width of one character in the default font size. A value of -1 + * tells Excel to display this column in its default width. + * By default, this will be the return value; but this method also accepts an optional unit of measure argument + * and will convert the returned value to the specified UoM.. + */ + public function getWidth(?string $unitOfMeasure = null): float + { + return ($unitOfMeasure === null || $this->width < 0) + ? $this->width + : (new CssDimension((string) $this->width))->toUnit($unitOfMeasure); + } + + /** + * Set Width. + * + * Each unit of column width is equal to the width of one character in the default font size. A value of -1 + * tells Excel to display this column in its default width. + * By default, this will be the unit of measure for the passed value; but this method also accepts an + * optional unit of measure argument, and will convert the value from the specified UoM using an + * approximation method. + * + * @return $this + */ + public function setWidth(float $width, ?string $unitOfMeasure = null) + { + $this->width = ($unitOfMeasure === null || $width < 0) + ? $width + : (new CssDimension("{$width}{$unitOfMeasure}"))->width(); + + return $this; + } + + /** + * Get Auto Size. + */ + public function getAutoSize(): bool + { + return $this->autoSize; + } + + /** + * Set Auto Size. + * + * @return $this + */ + public function setAutoSize(bool $autosizeEnabled) + { + $this->autoSize = $autosizeEnabled; + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnIterator.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnIterator.php new file mode 100644 index 0000000..b64ae5a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnIterator.php @@ -0,0 +1,174 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use Iterator; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; + +/** + * @implements Iterator<string, Column> + */ +class ColumnIterator implements Iterator +{ + /** + * Worksheet to iterate. + * + * @var Worksheet + */ + private $worksheet; + + /** + * Current iterator position. + * + * @var int + */ + private $currentColumnIndex = 1; + + /** + * Start position. + * + * @var int + */ + private $startColumnIndex = 1; + + /** + * End position. + * + * @var int + */ + private $endColumnIndex = 1; + + /** + * Create a new column iterator. + * + * @param Worksheet $worksheet The worksheet to iterate over + * @param string $startColumn The column address at which to start iterating + * @param string $endColumn Optionally, the column address at which to stop iterating + */ + public function __construct(Worksheet $worksheet, $startColumn = 'A', $endColumn = null) + { + // Set subject + $this->worksheet = $worksheet; + $this->resetEnd($endColumn); + $this->resetStart($startColumn); + } + + /** + * Destructor. + */ + public function __destruct() + { + // @phpstan-ignore-next-line + $this->worksheet = null; + } + + /** + * (Re)Set the start column and the current column pointer. + * + * @param string $startColumn The column address at which to start iterating + * + * @return $this + */ + public function resetStart(string $startColumn = 'A') + { + $startColumnIndex = Coordinate::columnIndexFromString($startColumn); + if ($startColumnIndex > Coordinate::columnIndexFromString($this->worksheet->getHighestColumn())) { + throw new Exception( + "Start column ({$startColumn}) is beyond highest column ({$this->worksheet->getHighestColumn()})" + ); + } + + $this->startColumnIndex = $startColumnIndex; + if ($this->endColumnIndex < $this->startColumnIndex) { + $this->endColumnIndex = $this->startColumnIndex; + } + $this->seek($startColumn); + + return $this; + } + + /** + * (Re)Set the end column. + * + * @param string $endColumn The column address at which to stop iterating + * + * @return $this + */ + public function resetEnd($endColumn = null) + { + $endColumn = $endColumn ?: $this->worksheet->getHighestColumn(); + $this->endColumnIndex = Coordinate::columnIndexFromString($endColumn); + + return $this; + } + + /** + * Set the column pointer to the selected column. + * + * @param string $column The column address to set the current pointer at + * + * @return $this + */ + public function seek(string $column = 'A') + { + $column = Coordinate::columnIndexFromString($column); + if (($column < $this->startColumnIndex) || ($column > $this->endColumnIndex)) { + throw new PhpSpreadsheetException( + "Column $column is out of range ({$this->startColumnIndex} - {$this->endColumnIndex})" + ); + } + $this->currentColumnIndex = $column; + + return $this; + } + + /** + * Rewind the iterator to the starting column. + */ + public function rewind(): void + { + $this->currentColumnIndex = $this->startColumnIndex; + } + + /** + * Return the current column in this worksheet. + */ + public function current(): Column + { + return new Column($this->worksheet, Coordinate::stringFromColumnIndex($this->currentColumnIndex)); + } + + /** + * Return the current iterator key. + */ + public function key(): string + { + return Coordinate::stringFromColumnIndex($this->currentColumnIndex); + } + + /** + * Set the iterator to its next value. + */ + public function next(): void + { + ++$this->currentColumnIndex; + } + + /** + * Set the iterator to its previous value. + */ + public function prev(): void + { + --$this->currentColumnIndex; + } + + /** + * Indicate if more columns exist in the worksheet range of columns that we're iterating. + */ + public function valid(): bool + { + return $this->currentColumnIndex <= $this->endColumnIndex && $this->currentColumnIndex >= $this->startColumnIndex; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Dimension.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Dimension.php new file mode 100644 index 0000000..ba03b5b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Dimension.php @@ -0,0 +1,134 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; + +abstract class Dimension +{ + /** + * Visible? + * + * @var bool + */ + private $visible = true; + + /** + * Outline level. + * + * @var int + */ + private $outlineLevel = 0; + + /** + * Collapsed. + * + * @var bool + */ + private $collapsed = false; + + /** + * Index to cellXf. Null value means row has no explicit cellXf format. + * + * @var null|int + */ + private $xfIndex; + + /** + * Create a new Dimension. + * + * @param int $initialValue Numeric row index + */ + public function __construct($initialValue = null) + { + // set dimension as unformatted by default + $this->xfIndex = $initialValue; + } + + /** + * Get Visible. + */ + public function getVisible(): bool + { + return $this->visible; + } + + /** + * Set Visible. + * + * @return $this + */ + public function setVisible(bool $visible) + { + $this->visible = $visible; + + return $this; + } + + /** + * Get Outline Level. + */ + public function getOutlineLevel(): int + { + return $this->outlineLevel; + } + + /** + * Set Outline Level. + * Value must be between 0 and 7. + * + * @return $this + */ + public function setOutlineLevel(int $level) + { + if ($level < 0 || $level > 7) { + throw new PhpSpreadsheetException('Outline level must range between 0 and 7.'); + } + + $this->outlineLevel = $level; + + return $this; + } + + /** + * Get Collapsed. + */ + public function getCollapsed(): bool + { + return $this->collapsed; + } + + /** + * Set Collapsed. + * + * @return $this + */ + public function setCollapsed(bool $collapsed) + { + $this->collapsed = $collapsed; + + return $this; + } + + /** + * Get index to cellXf. + * + * @return int + */ + public function getXfIndex(): ?int + { + return $this->xfIndex; + } + + /** + * Set index to cellXf. + * + * @return $this + */ + public function setXfIndex(int $XfIndex) + { + $this->xfIndex = $XfIndex; + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Drawing.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Drawing.php new file mode 100644 index 0000000..ebda19b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Drawing.php @@ -0,0 +1,214 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; +use ZipArchive; + +class Drawing extends BaseDrawing +{ + const IMAGE_TYPES_CONVERTION_MAP = [ + IMAGETYPE_GIF => IMAGETYPE_PNG, + IMAGETYPE_JPEG => IMAGETYPE_JPEG, + IMAGETYPE_PNG => IMAGETYPE_PNG, + IMAGETYPE_BMP => IMAGETYPE_PNG, + ]; + + /** + * Path. + * + * @var string + */ + private $path; + + /** + * Whether or not we are dealing with a URL. + * + * @var bool + */ + private $isUrl; + + /** + * Create a new Drawing. + */ + public function __construct() + { + // Initialise values + $this->path = ''; + $this->isUrl = false; + + // Initialize parent + parent::__construct(); + } + + /** + * Get Filename. + * + * @return string + */ + public function getFilename() + { + return basename($this->path); + } + + /** + * Get indexed filename (using image index). + */ + public function getIndexedFilename(): string + { + return md5($this->path) . '.' . $this->getExtension(); + } + + /** + * Get Extension. + * + * @return string + */ + public function getExtension() + { + $exploded = explode('.', basename($this->path)); + + return $exploded[count($exploded) - 1]; + } + + /** + * Get full filepath to store drawing in zip archive. + * + * @return string + */ + public function getMediaFilename() + { + if (!array_key_exists($this->type, self::IMAGE_TYPES_CONVERTION_MAP)) { + throw new PhpSpreadsheetException('Unsupported image type in comment background. Supported types: PNG, JPEG, BMP, GIF.'); + } + + return sprintf('image%d%s', $this->getImageIndex(), $this->getImageFileExtensionForSave()); + } + + /** + * Get Path. + * + * @return string + */ + public function getPath() + { + return $this->path; + } + + /** + * Set Path. + * + * @param string $path File path + * @param bool $verifyFile Verify file + * @param ZipArchive $zip Zip archive instance + * + * @return $this + */ + public function setPath($path, $verifyFile = true, $zip = null) + { + if ($verifyFile && preg_match('~^data:image/[a-z]+;base64,~', $path) !== 1) { + // Check if a URL has been passed. https://stackoverflow.com/a/2058596/1252979 + if (filter_var($path, FILTER_VALIDATE_URL)) { + $this->path = $path; + // Implicit that it is a URL, rather store info than running check above on value in other places. + $this->isUrl = true; + $imageContents = file_get_contents($path); + $filePath = tempnam(sys_get_temp_dir(), 'Drawing'); + if ($filePath) { + file_put_contents($filePath, $imageContents); + if (file_exists($filePath)) { + $this->setSizesAndType($filePath); + unlink($filePath); + } + } + } elseif (file_exists($path)) { + $this->path = $path; + $this->setSizesAndType($path); + } elseif ($zip instanceof ZipArchive) { + $zipPath = explode('#', $path)[1]; + if ($zip->locateName($zipPath) !== false) { + $this->path = $path; + $this->setSizesAndType($path); + } + } else { + throw new PhpSpreadsheetException("File $path not found!"); + } + } else { + $this->path = $path; + } + + return $this; + } + + /** + * Get isURL. + */ + public function getIsURL(): bool + { + return $this->isUrl; + } + + /** + * Set isURL. + * + * @return $this + */ + public function setIsURL(bool $isUrl): self + { + $this->isUrl = $isUrl; + + return $this; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->path . + parent::getHashCode() . + __CLASS__ + ); + } + + /** + * Get Image Type for Save. + */ + public function getImageTypeForSave(): int + { + if (!array_key_exists($this->type, self::IMAGE_TYPES_CONVERTION_MAP)) { + throw new PhpSpreadsheetException('Unsupported image type in comment background. Supported types: PNG, JPEG, BMP, GIF.'); + } + + return self::IMAGE_TYPES_CONVERTION_MAP[$this->type]; + } + + /** + * Get Image file extention for Save. + */ + public function getImageFileExtensionForSave(bool $includeDot = true): string + { + if (!array_key_exists($this->type, self::IMAGE_TYPES_CONVERTION_MAP)) { + throw new PhpSpreadsheetException('Unsupported image type in comment background. Supported types: PNG, JPEG, BMP, GIF.'); + } + + $result = image_type_to_extension(self::IMAGE_TYPES_CONVERTION_MAP[$this->type], $includeDot); + + return is_string($result) ? $result : ''; + } + + /** + * Get Image mime type. + */ + public function getImageMimeType(): string + { + if (!array_key_exists($this->type, self::IMAGE_TYPES_CONVERTION_MAP)) { + throw new PhpSpreadsheetException('Unsupported image type in comment background. Supported types: PNG, JPEG, BMP, GIF.'); + } + + return image_type_to_mime_type(self::IMAGE_TYPES_CONVERTION_MAP[$this->type]); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Drawing/Shadow.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Drawing/Shadow.php new file mode 100644 index 0000000..a461a51 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Drawing/Shadow.php @@ -0,0 +1,287 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet\Drawing; + +use PhpOffice\PhpSpreadsheet\IComparable; +use PhpOffice\PhpSpreadsheet\Style\Color; + +class Shadow implements IComparable +{ + // Shadow alignment + const SHADOW_BOTTOM = 'b'; + const SHADOW_BOTTOM_LEFT = 'bl'; + const SHADOW_BOTTOM_RIGHT = 'br'; + const SHADOW_CENTER = 'ctr'; + const SHADOW_LEFT = 'l'; + const SHADOW_TOP = 't'; + const SHADOW_TOP_LEFT = 'tl'; + const SHADOW_TOP_RIGHT = 'tr'; + + /** + * Visible. + * + * @var bool + */ + private $visible; + + /** + * Blur radius. + * + * Defaults to 6 + * + * @var int + */ + private $blurRadius; + + /** + * Shadow distance. + * + * Defaults to 2 + * + * @var int + */ + private $distance; + + /** + * Shadow direction (in degrees). + * + * @var int + */ + private $direction; + + /** + * Shadow alignment. + * + * @var string + */ + private $alignment; + + /** + * Color. + * + * @var Color + */ + private $color; + + /** + * Alpha. + * + * @var int + */ + private $alpha; + + /** + * Create a new Shadow. + */ + public function __construct() + { + // Initialise values + $this->visible = false; + $this->blurRadius = 6; + $this->distance = 2; + $this->direction = 0; + $this->alignment = self::SHADOW_BOTTOM_RIGHT; + $this->color = new Color(Color::COLOR_BLACK); + $this->alpha = 50; + } + + /** + * Get Visible. + * + * @return bool + */ + public function getVisible() + { + return $this->visible; + } + + /** + * Set Visible. + * + * @param bool $visible + * + * @return $this + */ + public function setVisible($visible) + { + $this->visible = $visible; + + return $this; + } + + /** + * Get Blur radius. + * + * @return int + */ + public function getBlurRadius() + { + return $this->blurRadius; + } + + /** + * Set Blur radius. + * + * @param int $blurRadius + * + * @return $this + */ + public function setBlurRadius($blurRadius) + { + $this->blurRadius = $blurRadius; + + return $this; + } + + /** + * Get Shadow distance. + * + * @return int + */ + public function getDistance() + { + return $this->distance; + } + + /** + * Set Shadow distance. + * + * @param int $distance + * + * @return $this + */ + public function setDistance($distance) + { + $this->distance = $distance; + + return $this; + } + + /** + * Get Shadow direction (in degrees). + * + * @return int + */ + public function getDirection() + { + return $this->direction; + } + + /** + * Set Shadow direction (in degrees). + * + * @param int $direction + * + * @return $this + */ + public function setDirection($direction) + { + $this->direction = $direction; + + return $this; + } + + /** + * Get Shadow alignment. + * + * @return string + */ + public function getAlignment() + { + return $this->alignment; + } + + /** + * Set Shadow alignment. + * + * @param string $alignment + * + * @return $this + */ + public function setAlignment($alignment) + { + $this->alignment = $alignment; + + return $this; + } + + /** + * Get Color. + * + * @return Color + */ + public function getColor() + { + return $this->color; + } + + /** + * Set Color. + * + * @return $this + */ + public function setColor(?Color $color = null) + { + $this->color = $color; + + return $this; + } + + /** + * Get Alpha. + * + * @return int + */ + public function getAlpha() + { + return $this->alpha; + } + + /** + * Set Alpha. + * + * @param int $alpha + * + * @return $this + */ + public function setAlpha($alpha) + { + $this->alpha = $alpha; + + return $this; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + ($this->visible ? 't' : 'f') . + $this->blurRadius . + $this->distance . + $this->direction . + $this->alignment . + $this->color->getHashCode() . + $this->alpha . + __CLASS__ + ); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/HeaderFooter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/HeaderFooter.php new file mode 100644 index 0000000..c3504d8 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/HeaderFooter.php @@ -0,0 +1,490 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +/** + * <code> + * Header/Footer Formatting Syntax taken from Office Open XML Part 4 - Markup Language Reference, page 1970:. + * + * There are a number of formatting codes that can be written inline with the actual header / footer text, which + * affect the formatting in the header or footer. + * + * Example: This example shows the text "Center Bold Header" on the first line (center section), and the date on + * the second line (center section). + * &CCenter &"-,Bold"Bold&"-,Regular"Header_x000A_&D + * + * General Rules: + * There is no required order in which these codes must appear. + * + * The first occurrence of the following codes turns the formatting ON, the second occurrence turns it OFF again: + * - strikethrough + * - superscript + * - subscript + * Superscript and subscript cannot both be ON at same time. Whichever comes first wins and the other is ignored, + * while the first is ON. + * &L - code for "left section" (there are three header / footer locations, "left", "center", and "right"). When + * two or more occurrences of this section marker exist, the contents from all markers are concatenated, in the + * order of appearance, and placed into the left section. + * &P - code for "current page #" + * &N - code for "total pages" + * &font size - code for "text font size", where font size is a font size in points. + * &K - code for "text font color" + * RGB Color is specified as RRGGBB + * Theme Color is specifed as TTSNN where TT is the theme color Id, S is either "+" or "-" of the tint/shade + * value, NN is the tint/shade value. + * &S - code for "text strikethrough" on / off + * &X - code for "text super script" on / off + * &Y - code for "text subscript" on / off + * &C - code for "center section". When two or more occurrences of this section marker exist, the contents + * from all markers are concatenated, in the order of appearance, and placed into the center section. + * + * &D - code for "date" + * &T - code for "time" + * &G - code for "picture as background" + * &U - code for "text single underline" + * &E - code for "double underline" + * &R - code for "right section". When two or more occurrences of this section marker exist, the contents + * from all markers are concatenated, in the order of appearance, and placed into the right section. + * &Z - code for "this workbook's file path" + * &F - code for "this workbook's file name" + * &A - code for "sheet tab name" + * &+ - code for add to page #. + * &- - code for subtract from page #. + * &"font name,font type" - code for "text font name" and "text font type", where font name and font type + * are strings specifying the name and type of the font, separated by a comma. When a hyphen appears in font + * name, it means "none specified". Both of font name and font type can be localized values. + * &"-,Bold" - code for "bold font style" + * &B - also means "bold font style". + * &"-,Regular" - code for "regular font style" + * &"-,Italic" - code for "italic font style" + * &I - also means "italic font style" + * &"-,Bold Italic" code for "bold italic font style" + * &O - code for "outline style" + * &H - code for "shadow style" + * </code> + */ +class HeaderFooter +{ + // Header/footer image location + const IMAGE_HEADER_LEFT = 'LH'; + const IMAGE_HEADER_CENTER = 'CH'; + const IMAGE_HEADER_RIGHT = 'RH'; + const IMAGE_FOOTER_LEFT = 'LF'; + const IMAGE_FOOTER_CENTER = 'CF'; + const IMAGE_FOOTER_RIGHT = 'RF'; + + /** + * OddHeader. + * + * @var string + */ + private $oddHeader = ''; + + /** + * OddFooter. + * + * @var string + */ + private $oddFooter = ''; + + /** + * EvenHeader. + * + * @var string + */ + private $evenHeader = ''; + + /** + * EvenFooter. + * + * @var string + */ + private $evenFooter = ''; + + /** + * FirstHeader. + * + * @var string + */ + private $firstHeader = ''; + + /** + * FirstFooter. + * + * @var string + */ + private $firstFooter = ''; + + /** + * Different header for Odd/Even, defaults to false. + * + * @var bool + */ + private $differentOddEven = false; + + /** + * Different header for first page, defaults to false. + * + * @var bool + */ + private $differentFirst = false; + + /** + * Scale with document, defaults to true. + * + * @var bool + */ + private $scaleWithDocument = true; + + /** + * Align with margins, defaults to true. + * + * @var bool + */ + private $alignWithMargins = true; + + /** + * Header/footer images. + * + * @var HeaderFooterDrawing[] + */ + private $headerFooterImages = []; + + /** + * Create a new HeaderFooter. + */ + public function __construct() + { + } + + /** + * Get OddHeader. + * + * @return string + */ + public function getOddHeader() + { + return $this->oddHeader; + } + + /** + * Set OddHeader. + * + * @param string $oddHeader + * + * @return $this + */ + public function setOddHeader($oddHeader) + { + $this->oddHeader = $oddHeader; + + return $this; + } + + /** + * Get OddFooter. + * + * @return string + */ + public function getOddFooter() + { + return $this->oddFooter; + } + + /** + * Set OddFooter. + * + * @param string $oddFooter + * + * @return $this + */ + public function setOddFooter($oddFooter) + { + $this->oddFooter = $oddFooter; + + return $this; + } + + /** + * Get EvenHeader. + * + * @return string + */ + public function getEvenHeader() + { + return $this->evenHeader; + } + + /** + * Set EvenHeader. + * + * @param string $eventHeader + * + * @return $this + */ + public function setEvenHeader($eventHeader) + { + $this->evenHeader = $eventHeader; + + return $this; + } + + /** + * Get EvenFooter. + * + * @return string + */ + public function getEvenFooter() + { + return $this->evenFooter; + } + + /** + * Set EvenFooter. + * + * @param string $evenFooter + * + * @return $this + */ + public function setEvenFooter($evenFooter) + { + $this->evenFooter = $evenFooter; + + return $this; + } + + /** + * Get FirstHeader. + * + * @return string + */ + public function getFirstHeader() + { + return $this->firstHeader; + } + + /** + * Set FirstHeader. + * + * @param string $firstHeader + * + * @return $this + */ + public function setFirstHeader($firstHeader) + { + $this->firstHeader = $firstHeader; + + return $this; + } + + /** + * Get FirstFooter. + * + * @return string + */ + public function getFirstFooter() + { + return $this->firstFooter; + } + + /** + * Set FirstFooter. + * + * @param string $firstFooter + * + * @return $this + */ + public function setFirstFooter($firstFooter) + { + $this->firstFooter = $firstFooter; + + return $this; + } + + /** + * Get DifferentOddEven. + * + * @return bool + */ + public function getDifferentOddEven() + { + return $this->differentOddEven; + } + + /** + * Set DifferentOddEven. + * + * @param bool $differentOddEvent + * + * @return $this + */ + public function setDifferentOddEven($differentOddEvent) + { + $this->differentOddEven = $differentOddEvent; + + return $this; + } + + /** + * Get DifferentFirst. + * + * @return bool + */ + public function getDifferentFirst() + { + return $this->differentFirst; + } + + /** + * Set DifferentFirst. + * + * @param bool $differentFirst + * + * @return $this + */ + public function setDifferentFirst($differentFirst) + { + $this->differentFirst = $differentFirst; + + return $this; + } + + /** + * Get ScaleWithDocument. + * + * @return bool + */ + public function getScaleWithDocument() + { + return $this->scaleWithDocument; + } + + /** + * Set ScaleWithDocument. + * + * @param bool $scaleWithDocument + * + * @return $this + */ + public function setScaleWithDocument($scaleWithDocument) + { + $this->scaleWithDocument = $scaleWithDocument; + + return $this; + } + + /** + * Get AlignWithMargins. + * + * @return bool + */ + public function getAlignWithMargins() + { + return $this->alignWithMargins; + } + + /** + * Set AlignWithMargins. + * + * @param bool $alignWithMargins + * + * @return $this + */ + public function setAlignWithMargins($alignWithMargins) + { + $this->alignWithMargins = $alignWithMargins; + + return $this; + } + + /** + * Add header/footer image. + * + * @param string $location + * + * @return $this + */ + public function addImage(HeaderFooterDrawing $image, $location = self::IMAGE_HEADER_LEFT) + { + $this->headerFooterImages[$location] = $image; + + return $this; + } + + /** + * Remove header/footer image. + * + * @param string $location + * + * @return $this + */ + public function removeImage($location = self::IMAGE_HEADER_LEFT) + { + if (isset($this->headerFooterImages[$location])) { + unset($this->headerFooterImages[$location]); + } + + return $this; + } + + /** + * Set header/footer images. + * + * @param HeaderFooterDrawing[] $images + * + * @return $this + */ + public function setImages(array $images) + { + $this->headerFooterImages = $images; + + return $this; + } + + /** + * Get header/footer images. + * + * @return HeaderFooterDrawing[] + */ + public function getImages() + { + // Sort array + $images = []; + if (isset($this->headerFooterImages[self::IMAGE_HEADER_LEFT])) { + $images[self::IMAGE_HEADER_LEFT] = $this->headerFooterImages[self::IMAGE_HEADER_LEFT]; + } + if (isset($this->headerFooterImages[self::IMAGE_HEADER_CENTER])) { + $images[self::IMAGE_HEADER_CENTER] = $this->headerFooterImages[self::IMAGE_HEADER_CENTER]; + } + if (isset($this->headerFooterImages[self::IMAGE_HEADER_RIGHT])) { + $images[self::IMAGE_HEADER_RIGHT] = $this->headerFooterImages[self::IMAGE_HEADER_RIGHT]; + } + if (isset($this->headerFooterImages[self::IMAGE_FOOTER_LEFT])) { + $images[self::IMAGE_FOOTER_LEFT] = $this->headerFooterImages[self::IMAGE_FOOTER_LEFT]; + } + if (isset($this->headerFooterImages[self::IMAGE_FOOTER_CENTER])) { + $images[self::IMAGE_FOOTER_CENTER] = $this->headerFooterImages[self::IMAGE_FOOTER_CENTER]; + } + if (isset($this->headerFooterImages[self::IMAGE_FOOTER_RIGHT])) { + $images[self::IMAGE_FOOTER_RIGHT] = $this->headerFooterImages[self::IMAGE_FOOTER_RIGHT]; + } + $this->headerFooterImages = $images; + + return $this->headerFooterImages; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/HeaderFooterDrawing.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/HeaderFooterDrawing.php new file mode 100644 index 0000000..b42c732 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/HeaderFooterDrawing.php @@ -0,0 +1,24 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +class HeaderFooterDrawing extends Drawing +{ + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->getPath() . + $this->name . + $this->offsetX . + $this->offsetY . + $this->width . + $this->height . + __CLASS__ + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Iterator.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Iterator.php new file mode 100644 index 0000000..dc08204 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Iterator.php @@ -0,0 +1,74 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use PhpOffice\PhpSpreadsheet\Spreadsheet; + +/** + * @implements \Iterator<int, Worksheet> + */ +class Iterator implements \Iterator +{ + /** + * Spreadsheet to iterate. + * + * @var Spreadsheet + */ + private $subject; + + /** + * Current iterator position. + * + * @var int + */ + private $position = 0; + + /** + * Create a new worksheet iterator. + */ + public function __construct(Spreadsheet $subject) + { + // Set subject + $this->subject = $subject; + } + + /** + * Rewind iterator. + */ + public function rewind(): void + { + $this->position = 0; + } + + /** + * Current Worksheet. + */ + public function current(): Worksheet + { + return $this->subject->getSheet($this->position); + } + + /** + * Current key. + */ + public function key(): int + { + return $this->position; + } + + /** + * Next value. + */ + public function next(): void + { + ++$this->position; + } + + /** + * Are there more Worksheet instances available? + */ + public function valid(): bool + { + return $this->position < $this->subject->getSheetCount() && $this->position >= 0; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/MemoryDrawing.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/MemoryDrawing.php new file mode 100644 index 0000000..b2d1aa6 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/MemoryDrawing.php @@ -0,0 +1,235 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use GdImage; +use PhpOffice\PhpSpreadsheet\Exception; + +class MemoryDrawing extends BaseDrawing +{ + // Rendering functions + const RENDERING_DEFAULT = 'imagepng'; + const RENDERING_PNG = 'imagepng'; + const RENDERING_GIF = 'imagegif'; + const RENDERING_JPEG = 'imagejpeg'; + + // MIME types + const MIMETYPE_DEFAULT = 'image/png'; + const MIMETYPE_PNG = 'image/png'; + const MIMETYPE_GIF = 'image/gif'; + const MIMETYPE_JPEG = 'image/jpeg'; + + /** + * Image resource. + * + * @var null|GdImage|resource + */ + private $imageResource; + + /** + * Rendering function. + * + * @var string + */ + private $renderingFunction; + + /** + * Mime type. + * + * @var string + */ + private $mimeType; + + /** + * Unique name. + * + * @var string + */ + private $uniqueName; + + /** @var null|resource */ + private $alwaysNull; + + /** + * Create a new MemoryDrawing. + */ + public function __construct() + { + // Initialise values + $this->renderingFunction = self::RENDERING_DEFAULT; + $this->mimeType = self::MIMETYPE_DEFAULT; + $this->uniqueName = md5(mt_rand(0, 9999) . time() . mt_rand(0, 9999)); + $this->alwaysNull = null; + + // Initialize parent + parent::__construct(); + } + + public function __destruct() + { + if ($this->imageResource) { + $rslt = @imagedestroy($this->imageResource); + // "Fix" for Scrutinizer + $this->imageResource = $rslt ? null : $this->alwaysNull; + } + } + + public function __clone() + { + parent::__clone(); + $this->cloneResource(); + } + + private function cloneResource(): void + { + if (!$this->imageResource) { + return; + } + + $width = (int) imagesx($this->imageResource); + $height = (int) imagesy($this->imageResource); + + if (imageistruecolor($this->imageResource)) { + $clone = imagecreatetruecolor($width, $height); + if (!$clone) { + throw new Exception('Could not clone image resource'); + } + + imagealphablending($clone, false); + imagesavealpha($clone, true); + } else { + $clone = imagecreate($width, $height); + if (!$clone) { + throw new Exception('Could not clone image resource'); + } + + // If the image has transparency... + $transparent = imagecolortransparent($this->imageResource); + if ($transparent >= 0) { + $rgb = imagecolorsforindex($this->imageResource, $transparent); + if (empty($rgb)) { + throw new Exception('Could not get image colors'); + } + + imagesavealpha($clone, true); + $color = imagecolorallocatealpha($clone, $rgb['red'], $rgb['green'], $rgb['blue'], $rgb['alpha']); + if ($color === false) { + throw new Exception('Could not get image alpha color'); + } + + imagefill($clone, 0, 0, $color); + } + } + + //Create the Clone!! + imagecopy($clone, $this->imageResource, 0, 0, 0, 0, $width, $height); + + $this->imageResource = $clone; + } + + /** + * Get image resource. + * + * @return null|GdImage|resource + */ + public function getImageResource() + { + return $this->imageResource; + } + + /** + * Set image resource. + * + * @param GdImage|resource $value + * + * @return $this + */ + public function setImageResource($value) + { + $this->imageResource = $value; + + if ($this->imageResource !== null) { + // Get width/height + $this->width = (int) imagesx($this->imageResource); + $this->height = (int) imagesy($this->imageResource); + } + + return $this; + } + + /** + * Get rendering function. + * + * @return string + */ + public function getRenderingFunction() + { + return $this->renderingFunction; + } + + /** + * Set rendering function. + * + * @param string $value see self::RENDERING_* + * + * @return $this + */ + public function setRenderingFunction($value) + { + $this->renderingFunction = $value; + + return $this; + } + + /** + * Get mime type. + * + * @return string + */ + public function getMimeType() + { + return $this->mimeType; + } + + /** + * Set mime type. + * + * @param string $value see self::MIMETYPE_* + * + * @return $this + */ + public function setMimeType($value) + { + $this->mimeType = $value; + + return $this; + } + + /** + * Get indexed filename (using image index). + */ + public function getIndexedFilename(): string + { + $extension = strtolower($this->getMimeType()); + $extension = explode('/', $extension); + $extension = $extension[1]; + + return $this->uniqueName . $this->getImageIndex() . '.' . $extension; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + return md5( + $this->renderingFunction . + $this->mimeType . + $this->uniqueName . + parent::getHashCode() . + __CLASS__ + ); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/PageMargins.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/PageMargins.php new file mode 100644 index 0000000..34e1145 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/PageMargins.php @@ -0,0 +1,244 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +class PageMargins +{ + /** + * Left. + * + * @var float + */ + private $left = 0.7; + + /** + * Right. + * + * @var float + */ + private $right = 0.7; + + /** + * Top. + * + * @var float + */ + private $top = 0.75; + + /** + * Bottom. + * + * @var float + */ + private $bottom = 0.75; + + /** + * Header. + * + * @var float + */ + private $header = 0.3; + + /** + * Footer. + * + * @var float + */ + private $footer = 0.3; + + /** + * Create a new PageMargins. + */ + public function __construct() + { + } + + /** + * Get Left. + * + * @return float + */ + public function getLeft() + { + return $this->left; + } + + /** + * Set Left. + * + * @param float $left + * + * @return $this + */ + public function setLeft($left) + { + $this->left = $left; + + return $this; + } + + /** + * Get Right. + * + * @return float + */ + public function getRight() + { + return $this->right; + } + + /** + * Set Right. + * + * @param float $right + * + * @return $this + */ + public function setRight($right) + { + $this->right = $right; + + return $this; + } + + /** + * Get Top. + * + * @return float + */ + public function getTop() + { + return $this->top; + } + + /** + * Set Top. + * + * @param float $top + * + * @return $this + */ + public function setTop($top) + { + $this->top = $top; + + return $this; + } + + /** + * Get Bottom. + * + * @return float + */ + public function getBottom() + { + return $this->bottom; + } + + /** + * Set Bottom. + * + * @param float $bottom + * + * @return $this + */ + public function setBottom($bottom) + { + $this->bottom = $bottom; + + return $this; + } + + /** + * Get Header. + * + * @return float + */ + public function getHeader() + { + return $this->header; + } + + /** + * Set Header. + * + * @param float $header + * + * @return $this + */ + public function setHeader($header) + { + $this->header = $header; + + return $this; + } + + /** + * Get Footer. + * + * @return float + */ + public function getFooter() + { + return $this->footer; + } + + /** + * Set Footer. + * + * @param float $footer + * + * @return $this + */ + public function setFooter($footer) + { + $this->footer = $footer; + + return $this; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } + + public static function fromCentimeters(float $value): float + { + return $value / 2.54; + } + + public static function toCentimeters(float $value): float + { + return $value * 2.54; + } + + public static function fromMillimeters(float $value): float + { + return $value / 25.4; + } + + public static function toMillimeters(float $value): float + { + return $value * 25.4; + } + + public static function fromPoints(float $value): float + { + return $value / 72; + } + + public static function toPoints(float $value): float + { + return $value * 72; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/PageSetup.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/PageSetup.php new file mode 100644 index 0000000..c23bfc5 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/PageSetup.php @@ -0,0 +1,907 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; + +/** + * <code> + * Paper size taken from Office Open XML Part 4 - Markup Language Reference, page 1988:. + * + * 1 = Letter paper (8.5 in. by 11 in.) + * 2 = Letter small paper (8.5 in. by 11 in.) + * 3 = Tabloid paper (11 in. by 17 in.) + * 4 = Ledger paper (17 in. by 11 in.) + * 5 = Legal paper (8.5 in. by 14 in.) + * 6 = Statement paper (5.5 in. by 8.5 in.) + * 7 = Executive paper (7.25 in. by 10.5 in.) + * 8 = A3 paper (297 mm by 420 mm) + * 9 = A4 paper (210 mm by 297 mm) + * 10 = A4 small paper (210 mm by 297 mm) + * 11 = A5 paper (148 mm by 210 mm) + * 12 = B4 paper (250 mm by 353 mm) + * 13 = B5 paper (176 mm by 250 mm) + * 14 = Folio paper (8.5 in. by 13 in.) + * 15 = Quarto paper (215 mm by 275 mm) + * 16 = Standard paper (10 in. by 14 in.) + * 17 = Standard paper (11 in. by 17 in.) + * 18 = Note paper (8.5 in. by 11 in.) + * 19 = #9 envelope (3.875 in. by 8.875 in.) + * 20 = #10 envelope (4.125 in. by 9.5 in.) + * 21 = #11 envelope (4.5 in. by 10.375 in.) + * 22 = #12 envelope (4.75 in. by 11 in.) + * 23 = #14 envelope (5 in. by 11.5 in.) + * 24 = C paper (17 in. by 22 in.) + * 25 = D paper (22 in. by 34 in.) + * 26 = E paper (34 in. by 44 in.) + * 27 = DL envelope (110 mm by 220 mm) + * 28 = C5 envelope (162 mm by 229 mm) + * 29 = C3 envelope (324 mm by 458 mm) + * 30 = C4 envelope (229 mm by 324 mm) + * 31 = C6 envelope (114 mm by 162 mm) + * 32 = C65 envelope (114 mm by 229 mm) + * 33 = B4 envelope (250 mm by 353 mm) + * 34 = B5 envelope (176 mm by 250 mm) + * 35 = B6 envelope (176 mm by 125 mm) + * 36 = Italy envelope (110 mm by 230 mm) + * 37 = Monarch envelope (3.875 in. by 7.5 in.). + * 38 = 6 3/4 envelope (3.625 in. by 6.5 in.) + * 39 = US standard fanfold (14.875 in. by 11 in.) + * 40 = German standard fanfold (8.5 in. by 12 in.) + * 41 = German legal fanfold (8.5 in. by 13 in.) + * 42 = ISO B4 (250 mm by 353 mm) + * 43 = Japanese double postcard (200 mm by 148 mm) + * 44 = Standard paper (9 in. by 11 in.) + * 45 = Standard paper (10 in. by 11 in.) + * 46 = Standard paper (15 in. by 11 in.) + * 47 = Invite envelope (220 mm by 220 mm) + * 50 = Letter extra paper (9.275 in. by 12 in.) + * 51 = Legal extra paper (9.275 in. by 15 in.) + * 52 = Tabloid extra paper (11.69 in. by 18 in.) + * 53 = A4 extra paper (236 mm by 322 mm) + * 54 = Letter transverse paper (8.275 in. by 11 in.) + * 55 = A4 transverse paper (210 mm by 297 mm) + * 56 = Letter extra transverse paper (9.275 in. by 12 in.) + * 57 = SuperA/SuperA/A4 paper (227 mm by 356 mm) + * 58 = SuperB/SuperB/A3 paper (305 mm by 487 mm) + * 59 = Letter plus paper (8.5 in. by 12.69 in.) + * 60 = A4 plus paper (210 mm by 330 mm) + * 61 = A5 transverse paper (148 mm by 210 mm) + * 62 = JIS B5 transverse paper (182 mm by 257 mm) + * 63 = A3 extra paper (322 mm by 445 mm) + * 64 = A5 extra paper (174 mm by 235 mm) + * 65 = ISO B5 extra paper (201 mm by 276 mm) + * 66 = A2 paper (420 mm by 594 mm) + * 67 = A3 transverse paper (297 mm by 420 mm) + * 68 = A3 extra transverse paper (322 mm by 445 mm) + * </code> + */ +class PageSetup +{ + // Paper size + const PAPERSIZE_LETTER = 1; + const PAPERSIZE_LETTER_SMALL = 2; + const PAPERSIZE_TABLOID = 3; + const PAPERSIZE_LEDGER = 4; + const PAPERSIZE_LEGAL = 5; + const PAPERSIZE_STATEMENT = 6; + const PAPERSIZE_EXECUTIVE = 7; + const PAPERSIZE_A3 = 8; + const PAPERSIZE_A4 = 9; + const PAPERSIZE_A4_SMALL = 10; + const PAPERSIZE_A5 = 11; + const PAPERSIZE_B4 = 12; + const PAPERSIZE_B5 = 13; + const PAPERSIZE_FOLIO = 14; + const PAPERSIZE_QUARTO = 15; + const PAPERSIZE_STANDARD_1 = 16; + const PAPERSIZE_STANDARD_2 = 17; + const PAPERSIZE_NOTE = 18; + const PAPERSIZE_NO9_ENVELOPE = 19; + const PAPERSIZE_NO10_ENVELOPE = 20; + const PAPERSIZE_NO11_ENVELOPE = 21; + const PAPERSIZE_NO12_ENVELOPE = 22; + const PAPERSIZE_NO14_ENVELOPE = 23; + const PAPERSIZE_C = 24; + const PAPERSIZE_D = 25; + const PAPERSIZE_E = 26; + const PAPERSIZE_DL_ENVELOPE = 27; + const PAPERSIZE_C5_ENVELOPE = 28; + const PAPERSIZE_C3_ENVELOPE = 29; + const PAPERSIZE_C4_ENVELOPE = 30; + const PAPERSIZE_C6_ENVELOPE = 31; + const PAPERSIZE_C65_ENVELOPE = 32; + const PAPERSIZE_B4_ENVELOPE = 33; + const PAPERSIZE_B5_ENVELOPE = 34; + const PAPERSIZE_B6_ENVELOPE = 35; + const PAPERSIZE_ITALY_ENVELOPE = 36; + const PAPERSIZE_MONARCH_ENVELOPE = 37; + const PAPERSIZE_6_3_4_ENVELOPE = 38; + const PAPERSIZE_US_STANDARD_FANFOLD = 39; + const PAPERSIZE_GERMAN_STANDARD_FANFOLD = 40; + const PAPERSIZE_GERMAN_LEGAL_FANFOLD = 41; + const PAPERSIZE_ISO_B4 = 42; + const PAPERSIZE_JAPANESE_DOUBLE_POSTCARD = 43; + const PAPERSIZE_STANDARD_PAPER_1 = 44; + const PAPERSIZE_STANDARD_PAPER_2 = 45; + const PAPERSIZE_STANDARD_PAPER_3 = 46; + const PAPERSIZE_INVITE_ENVELOPE = 47; + const PAPERSIZE_LETTER_EXTRA_PAPER = 48; + const PAPERSIZE_LEGAL_EXTRA_PAPER = 49; + const PAPERSIZE_TABLOID_EXTRA_PAPER = 50; + const PAPERSIZE_A4_EXTRA_PAPER = 51; + const PAPERSIZE_LETTER_TRANSVERSE_PAPER = 52; + const PAPERSIZE_A4_TRANSVERSE_PAPER = 53; + const PAPERSIZE_LETTER_EXTRA_TRANSVERSE_PAPER = 54; + const PAPERSIZE_SUPERA_SUPERA_A4_PAPER = 55; + const PAPERSIZE_SUPERB_SUPERB_A3_PAPER = 56; + const PAPERSIZE_LETTER_PLUS_PAPER = 57; + const PAPERSIZE_A4_PLUS_PAPER = 58; + const PAPERSIZE_A5_TRANSVERSE_PAPER = 59; + const PAPERSIZE_JIS_B5_TRANSVERSE_PAPER = 60; + const PAPERSIZE_A3_EXTRA_PAPER = 61; + const PAPERSIZE_A5_EXTRA_PAPER = 62; + const PAPERSIZE_ISO_B5_EXTRA_PAPER = 63; + const PAPERSIZE_A2_PAPER = 64; + const PAPERSIZE_A3_TRANSVERSE_PAPER = 65; + const PAPERSIZE_A3_EXTRA_TRANSVERSE_PAPER = 66; + + // Page orientation + const ORIENTATION_DEFAULT = 'default'; + const ORIENTATION_LANDSCAPE = 'landscape'; + const ORIENTATION_PORTRAIT = 'portrait'; + + // Print Range Set Method + const SETPRINTRANGE_OVERWRITE = 'O'; + const SETPRINTRANGE_INSERT = 'I'; + + const PAGEORDER_OVER_THEN_DOWN = 'overThenDown'; + const PAGEORDER_DOWN_THEN_OVER = 'downThenOver'; + + /** + * Paper size default. + * + * @var int + */ + private static $paperSizeDefault = self::PAPERSIZE_LETTER; + + /** + * Paper size. + * + * @var ?int + */ + private $paperSize; + + /** + * Orientation default. + * + * @var string + */ + private static $orientationDefault = self::ORIENTATION_DEFAULT; + + /** + * Orientation. + * + * @var string + */ + private $orientation; + + /** + * Scale (Print Scale). + * + * Print scaling. Valid values range from 10 to 400 + * This setting is overridden when fitToWidth and/or fitToHeight are in use + * + * @var null|int + */ + private $scale = 100; + + /** + * Fit To Page + * Whether scale or fitToWith / fitToHeight applies. + * + * @var bool + */ + private $fitToPage = false; + + /** + * Fit To Height + * Number of vertical pages to fit on. + * + * @var null|int + */ + private $fitToHeight = 1; + + /** + * Fit To Width + * Number of horizontal pages to fit on. + * + * @var null|int + */ + private $fitToWidth = 1; + + /** + * Columns to repeat at left. + * + * @var array Containing start column and end column, empty array if option unset + */ + private $columnsToRepeatAtLeft = ['', '']; + + /** + * Rows to repeat at top. + * + * @var array Containing start row number and end row number, empty array if option unset + */ + private $rowsToRepeatAtTop = [0, 0]; + + /** + * Center page horizontally. + * + * @var bool + */ + private $horizontalCentered = false; + + /** + * Center page vertically. + * + * @var bool + */ + private $verticalCentered = false; + + /** + * Print area. + * + * @var null|string + */ + private $printArea; + + /** + * First page number. + * + * @var int + */ + private $firstPageNumber; + + private $pageOrder = self::PAGEORDER_DOWN_THEN_OVER; + + /** + * Create a new PageSetup. + */ + public function __construct() + { + $this->orientation = self::$orientationDefault; + } + + /** + * Get Paper Size. + * + * @return int + */ + public function getPaperSize() + { + return $this->paperSize ?? self::$paperSizeDefault; + } + + /** + * Set Paper Size. + * + * @param int $paperSize see self::PAPERSIZE_* + * + * @return $this + */ + public function setPaperSize($paperSize) + { + $this->paperSize = $paperSize; + + return $this; + } + + /** + * Get Paper Size default. + */ + public static function getPaperSizeDefault(): int + { + return self::$paperSizeDefault; + } + + /** + * Set Paper Size Default. + */ + public static function setPaperSizeDefault(int $paperSize): void + { + self::$paperSizeDefault = $paperSize; + } + + /** + * Get Orientation. + * + * @return string + */ + public function getOrientation() + { + return $this->orientation; + } + + /** + * Set Orientation. + * + * @param string $orientation see self::ORIENTATION_* + * + * @return $this + */ + public function setOrientation($orientation) + { + if ($orientation === self::ORIENTATION_LANDSCAPE || $orientation === self::ORIENTATION_PORTRAIT || $orientation === self::ORIENTATION_DEFAULT) { + $this->orientation = $orientation; + } + + return $this; + } + + public static function getOrientationDefault(): string + { + return self::$orientationDefault; + } + + public static function setOrientationDefault(string $orientation): void + { + if ($orientation === self::ORIENTATION_LANDSCAPE || $orientation === self::ORIENTATION_PORTRAIT || $orientation === self::ORIENTATION_DEFAULT) { + self::$orientationDefault = $orientation; + } + } + + /** + * Get Scale. + * + * @return null|int + */ + public function getScale() + { + return $this->scale; + } + + /** + * Set Scale. + * Print scaling. Valid values range from 10 to 400 + * This setting is overridden when fitToWidth and/or fitToHeight are in use. + * + * @param null|int $scale + * @param bool $update Update fitToPage so scaling applies rather than fitToHeight / fitToWidth + * + * @return $this + */ + public function setScale($scale, $update = true) + { + // Microsoft Office Excel 2007 only allows setting a scale between 10 and 400 via the user interface, + // but it is apparently still able to handle any scale >= 0, where 0 results in 100 + if (($scale >= 0) || $scale === null) { + $this->scale = $scale; + if ($update) { + $this->fitToPage = false; + } + } else { + throw new PhpSpreadsheetException('Scale must not be negative'); + } + + return $this; + } + + /** + * Get Fit To Page. + * + * @return bool + */ + public function getFitToPage() + { + return $this->fitToPage; + } + + /** + * Set Fit To Page. + * + * @param bool $fitToPage + * + * @return $this + */ + public function setFitToPage($fitToPage) + { + $this->fitToPage = $fitToPage; + + return $this; + } + + /** + * Get Fit To Height. + * + * @return null|int + */ + public function getFitToHeight() + { + return $this->fitToHeight; + } + + /** + * Set Fit To Height. + * + * @param null|int $fitToHeight + * @param bool $update Update fitToPage so it applies rather than scaling + * + * @return $this + */ + public function setFitToHeight($fitToHeight, $update = true) + { + $this->fitToHeight = $fitToHeight; + if ($update) { + $this->fitToPage = true; + } + + return $this; + } + + /** + * Get Fit To Width. + * + * @return null|int + */ + public function getFitToWidth() + { + return $this->fitToWidth; + } + + /** + * Set Fit To Width. + * + * @param null|int $value + * @param bool $update Update fitToPage so it applies rather than scaling + * + * @return $this + */ + public function setFitToWidth($value, $update = true) + { + $this->fitToWidth = $value; + if ($update) { + $this->fitToPage = true; + } + + return $this; + } + + /** + * Is Columns to repeat at left set? + * + * @return bool + */ + public function isColumnsToRepeatAtLeftSet() + { + if (is_array($this->columnsToRepeatAtLeft)) { + if ($this->columnsToRepeatAtLeft[0] != '' && $this->columnsToRepeatAtLeft[1] != '') { + return true; + } + } + + return false; + } + + /** + * Get Columns to repeat at left. + * + * @return array Containing start column and end column, empty array if option unset + */ + public function getColumnsToRepeatAtLeft() + { + return $this->columnsToRepeatAtLeft; + } + + /** + * Set Columns to repeat at left. + * + * @param array $columnsToRepeatAtLeft Containing start column and end column, empty array if option unset + * + * @return $this + */ + public function setColumnsToRepeatAtLeft(array $columnsToRepeatAtLeft) + { + $this->columnsToRepeatAtLeft = $columnsToRepeatAtLeft; + + return $this; + } + + /** + * Set Columns to repeat at left by start and end. + * + * @param string $start eg: 'A' + * @param string $end eg: 'B' + * + * @return $this + */ + public function setColumnsToRepeatAtLeftByStartAndEnd($start, $end) + { + $this->columnsToRepeatAtLeft = [$start, $end]; + + return $this; + } + + /** + * Is Rows to repeat at top set? + * + * @return bool + */ + public function isRowsToRepeatAtTopSet() + { + if (is_array($this->rowsToRepeatAtTop)) { + if ($this->rowsToRepeatAtTop[0] != 0 && $this->rowsToRepeatAtTop[1] != 0) { + return true; + } + } + + return false; + } + + /** + * Get Rows to repeat at top. + * + * @return array Containing start column and end column, empty array if option unset + */ + public function getRowsToRepeatAtTop() + { + return $this->rowsToRepeatAtTop; + } + + /** + * Set Rows to repeat at top. + * + * @param array $rowsToRepeatAtTop Containing start column and end column, empty array if option unset + * + * @return $this + */ + public function setRowsToRepeatAtTop(array $rowsToRepeatAtTop) + { + $this->rowsToRepeatAtTop = $rowsToRepeatAtTop; + + return $this; + } + + /** + * Set Rows to repeat at top by start and end. + * + * @param int $start eg: 1 + * @param int $end eg: 1 + * + * @return $this + */ + public function setRowsToRepeatAtTopByStartAndEnd($start, $end) + { + $this->rowsToRepeatAtTop = [$start, $end]; + + return $this; + } + + /** + * Get center page horizontally. + * + * @return bool + */ + public function getHorizontalCentered() + { + return $this->horizontalCentered; + } + + /** + * Set center page horizontally. + * + * @param bool $value + * + * @return $this + */ + public function setHorizontalCentered($value) + { + $this->horizontalCentered = $value; + + return $this; + } + + /** + * Get center page vertically. + * + * @return bool + */ + public function getVerticalCentered() + { + return $this->verticalCentered; + } + + /** + * Set center page vertically. + * + * @param bool $value + * + * @return $this + */ + public function setVerticalCentered($value) + { + $this->verticalCentered = $value; + + return $this; + } + + /** + * Get print area. + * + * @param int $index Identifier for a specific print area range if several ranges have been set + * Default behaviour, or a index value of 0, will return all ranges as a comma-separated string + * Otherwise, the specific range identified by the value of $index will be returned + * Print areas are numbered from 1 + * + * @return string + */ + public function getPrintArea($index = 0) + { + if ($index == 0) { + return $this->printArea; + } + /** @phpstan-ignore-next-line */ + $printAreas = explode(',', $this->printArea); + if (isset($printAreas[$index - 1])) { + return $printAreas[$index - 1]; + } + + throw new PhpSpreadsheetException('Requested Print Area does not exist'); + } + + /** + * Is print area set? + * + * @param int $index Identifier for a specific print area range if several ranges have been set + * Default behaviour, or an index value of 0, will identify whether any print range is set + * Otherwise, existence of the range identified by the value of $index will be returned + * Print areas are numbered from 1 + * + * @return bool + */ + public function isPrintAreaSet($index = 0) + { + if ($index == 0) { + return $this->printArea !== null; + } + /** @phpstan-ignore-next-line */ + $printAreas = explode(',', $this->printArea); + + return isset($printAreas[$index - 1]); + } + + /** + * Clear a print area. + * + * @param int $index Identifier for a specific print area range if several ranges have been set + * Default behaviour, or an index value of 0, will clear all print ranges that are set + * Otherwise, the range identified by the value of $index will be removed from the series + * Print areas are numbered from 1 + * + * @return $this + */ + public function clearPrintArea($index = 0) + { + if ($index == 0) { + $this->printArea = null; + } else { + /** @phpstan-ignore-next-line */ + $printAreas = explode(',', $this->printArea); + if (isset($printAreas[$index - 1])) { + unset($printAreas[$index - 1]); + $this->printArea = implode(',', $printAreas); + } + } + + return $this; + } + + /** + * Set print area. e.g. 'A1:D10' or 'A1:D10,G5:M20'. + * + * @param string $value + * @param int $index Identifier for a specific print area range allowing several ranges to be set + * When the method is "O"verwrite, then a positive integer index will overwrite that indexed + * entry in the print areas list; a negative index value will identify which entry to + * overwrite working bacward through the print area to the list, with the last entry as -1. + * Specifying an index value of 0, will overwrite <b>all</b> existing print ranges. + * When the method is "I"nsert, then a positive index will insert after that indexed entry in + * the print areas list, while a negative index will insert before the indexed entry. + * Specifying an index value of 0, will always append the new print range at the end of the + * list. + * Print areas are numbered from 1 + * @param string $method Determines the method used when setting multiple print areas + * Default behaviour, or the "O" method, overwrites existing print area + * The "I" method, inserts the new print area before any specified index, or at the end of the list + * + * @return $this + */ + public function setPrintArea($value, $index = 0, $method = self::SETPRINTRANGE_OVERWRITE) + { + if (strpos($value, '!') !== false) { + throw new PhpSpreadsheetException('Cell coordinate must not specify a worksheet.'); + } elseif (strpos($value, ':') === false) { + throw new PhpSpreadsheetException('Cell coordinate must be a range of cells.'); + } elseif (strpos($value, '$') !== false) { + throw new PhpSpreadsheetException('Cell coordinate must not be absolute.'); + } + $value = strtoupper($value); + if (!$this->printArea) { + $index = 0; + } + + if ($method == self::SETPRINTRANGE_OVERWRITE) { + if ($index == 0) { + $this->printArea = $value; + } else { + /** @phpstan-ignore-next-line */ + $printAreas = explode(',', $this->printArea); + if ($index < 0) { + $index = count($printAreas) - abs($index) + 1; + } + if (($index <= 0) || ($index > count($printAreas))) { + throw new PhpSpreadsheetException('Invalid index for setting print range.'); + } + $printAreas[$index - 1] = $value; + $this->printArea = implode(',', $printAreas); + } + } elseif ($method == self::SETPRINTRANGE_INSERT) { + if ($index == 0) { + $this->printArea = $this->printArea ? ($this->printArea . ',' . $value) : $value; + } else { + /** @phpstan-ignore-next-line */ + $printAreas = explode(',', $this->printArea); + if ($index < 0) { + $index = abs($index) - 1; + } + if ($index > count($printAreas)) { + throw new PhpSpreadsheetException('Invalid index for setting print range.'); + } + $printAreas = array_merge(array_slice($printAreas, 0, $index), [$value], array_slice($printAreas, $index)); + $this->printArea = implode(',', $printAreas); + } + } else { + throw new PhpSpreadsheetException('Invalid method for setting print range.'); + } + + return $this; + } + + /** + * Add a new print area (e.g. 'A1:D10' or 'A1:D10,G5:M20') to the list of print areas. + * + * @param string $value + * @param int $index Identifier for a specific print area range allowing several ranges to be set + * A positive index will insert after that indexed entry in the print areas list, while a + * negative index will insert before the indexed entry. + * Specifying an index value of 0, will always append the new print range at the end of the + * list. + * Print areas are numbered from 1 + * + * @return $this + */ + public function addPrintArea($value, $index = -1) + { + return $this->setPrintArea($value, $index, self::SETPRINTRANGE_INSERT); + } + + /** + * Set print area. + * + * @param int $column1 Column 1 + * @param int $row1 Row 1 + * @param int $column2 Column 2 + * @param int $row2 Row 2 + * @param int $index Identifier for a specific print area range allowing several ranges to be set + * When the method is "O"verwrite, then a positive integer index will overwrite that indexed + * entry in the print areas list; a negative index value will identify which entry to + * overwrite working backward through the print area to the list, with the last entry as -1. + * Specifying an index value of 0, will overwrite <b>all</b> existing print ranges. + * When the method is "I"nsert, then a positive index will insert after that indexed entry in + * the print areas list, while a negative index will insert before the indexed entry. + * Specifying an index value of 0, will always append the new print range at the end of the + * list. + * Print areas are numbered from 1 + * @param string $method Determines the method used when setting multiple print areas + * Default behaviour, or the "O" method, overwrites existing print area + * The "I" method, inserts the new print area before any specified index, or at the end of the list + * + * @return $this + */ + public function setPrintAreaByColumnAndRow($column1, $row1, $column2, $row2, $index = 0, $method = self::SETPRINTRANGE_OVERWRITE) + { + return $this->setPrintArea( + Coordinate::stringFromColumnIndex($column1) . $row1 . ':' . Coordinate::stringFromColumnIndex($column2) . $row2, + $index, + $method + ); + } + + /** + * Add a new print area to the list of print areas. + * + * @param int $column1 Start Column for the print area + * @param int $row1 Start Row for the print area + * @param int $column2 End Column for the print area + * @param int $row2 End Row for the print area + * @param int $index Identifier for a specific print area range allowing several ranges to be set + * A positive index will insert after that indexed entry in the print areas list, while a + * negative index will insert before the indexed entry. + * Specifying an index value of 0, will always append the new print range at the end of the + * list. + * Print areas are numbered from 1 + * + * @return $this + */ + public function addPrintAreaByColumnAndRow($column1, $row1, $column2, $row2, $index = -1) + { + return $this->setPrintArea( + Coordinate::stringFromColumnIndex($column1) . $row1 . ':' . Coordinate::stringFromColumnIndex($column2) . $row2, + $index, + self::SETPRINTRANGE_INSERT + ); + } + + /** + * Get first page number. + * + * @return int + */ + public function getFirstPageNumber() + { + return $this->firstPageNumber; + } + + /** + * Set first page number. + * + * @param int $value + * + * @return $this + */ + public function setFirstPageNumber($value) + { + $this->firstPageNumber = $value; + + return $this; + } + + /** + * Reset first page number. + * + * @return $this + */ + public function resetFirstPageNumber() + { + return $this->setFirstPageNumber(null); + } + + public function getPageOrder(): string + { + return $this->pageOrder; + } + + public function setPageOrder(?string $pageOrder): self + { + if ($pageOrder === null || $pageOrder === self::PAGEORDER_DOWN_THEN_OVER || $pageOrder === self::PAGEORDER_OVER_THEN_DOWN) { + $this->pageOrder = $pageOrder ?? self::PAGEORDER_DOWN_THEN_OVER; + } + + return $this; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Protection.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Protection.php new file mode 100644 index 0000000..4d44d8e --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Protection.php @@ -0,0 +1,691 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use PhpOffice\PhpSpreadsheet\Shared\PasswordHasher; + +class Protection +{ + const ALGORITHM_MD2 = 'MD2'; + const ALGORITHM_MD4 = 'MD4'; + const ALGORITHM_MD5 = 'MD5'; + const ALGORITHM_SHA_1 = 'SHA-1'; + const ALGORITHM_SHA_256 = 'SHA-256'; + const ALGORITHM_SHA_384 = 'SHA-384'; + const ALGORITHM_SHA_512 = 'SHA-512'; + const ALGORITHM_RIPEMD_128 = 'RIPEMD-128'; + const ALGORITHM_RIPEMD_160 = 'RIPEMD-160'; + const ALGORITHM_WHIRLPOOL = 'WHIRLPOOL'; + + /** + * Sheet. + * + * @var bool + */ + private $sheet = false; + + /** + * Objects. + * + * @var bool + */ + private $objects = false; + + /** + * Scenarios. + * + * @var bool + */ + private $scenarios = false; + + /** + * Format cells. + * + * @var bool + */ + private $formatCells = false; + + /** + * Format columns. + * + * @var bool + */ + private $formatColumns = false; + + /** + * Format rows. + * + * @var bool + */ + private $formatRows = false; + + /** + * Insert columns. + * + * @var bool + */ + private $insertColumns = false; + + /** + * Insert rows. + * + * @var bool + */ + private $insertRows = false; + + /** + * Insert hyperlinks. + * + * @var bool + */ + private $insertHyperlinks = false; + + /** + * Delete columns. + * + * @var bool + */ + private $deleteColumns = false; + + /** + * Delete rows. + * + * @var bool + */ + private $deleteRows = false; + + /** + * Select locked cells. + * + * @var bool + */ + private $selectLockedCells = false; + + /** + * Sort. + * + * @var bool + */ + private $sort = false; + + /** + * AutoFilter. + * + * @var bool + */ + private $autoFilter = false; + + /** + * Pivot tables. + * + * @var bool + */ + private $pivotTables = false; + + /** + * Select unlocked cells. + * + * @var bool + */ + private $selectUnlockedCells = false; + + /** + * Hashed password. + * + * @var string + */ + private $password = ''; + + /** + * Algorithm name. + * + * @var string + */ + private $algorithm = ''; + + /** + * Salt value. + * + * @var string + */ + private $salt = ''; + + /** + * Spin count. + * + * @var int + */ + private $spinCount = 10000; + + /** + * Create a new Protection. + */ + public function __construct() + { + } + + /** + * Is some sort of protection enabled? + * + * @return bool + */ + public function isProtectionEnabled() + { + return $this->sheet || + $this->objects || + $this->scenarios || + $this->formatCells || + $this->formatColumns || + $this->formatRows || + $this->insertColumns || + $this->insertRows || + $this->insertHyperlinks || + $this->deleteColumns || + $this->deleteRows || + $this->selectLockedCells || + $this->sort || + $this->autoFilter || + $this->pivotTables || + $this->selectUnlockedCells; + } + + /** + * Get Sheet. + * + * @return bool + */ + public function getSheet() + { + return $this->sheet; + } + + /** + * Set Sheet. + * + * @param bool $sheet + * + * @return $this + */ + public function setSheet($sheet) + { + $this->sheet = $sheet; + + return $this; + } + + /** + * Get Objects. + * + * @return bool + */ + public function getObjects() + { + return $this->objects; + } + + /** + * Set Objects. + * + * @param bool $objects + * + * @return $this + */ + public function setObjects($objects) + { + $this->objects = $objects; + + return $this; + } + + /** + * Get Scenarios. + * + * @return bool + */ + public function getScenarios() + { + return $this->scenarios; + } + + /** + * Set Scenarios. + * + * @param bool $scenarios + * + * @return $this + */ + public function setScenarios($scenarios) + { + $this->scenarios = $scenarios; + + return $this; + } + + /** + * Get FormatCells. + * + * @return bool + */ + public function getFormatCells() + { + return $this->formatCells; + } + + /** + * Set FormatCells. + * + * @param bool $formatCells + * + * @return $this + */ + public function setFormatCells($formatCells) + { + $this->formatCells = $formatCells; + + return $this; + } + + /** + * Get FormatColumns. + * + * @return bool + */ + public function getFormatColumns() + { + return $this->formatColumns; + } + + /** + * Set FormatColumns. + * + * @param bool $formatColumns + * + * @return $this + */ + public function setFormatColumns($formatColumns) + { + $this->formatColumns = $formatColumns; + + return $this; + } + + /** + * Get FormatRows. + * + * @return bool + */ + public function getFormatRows() + { + return $this->formatRows; + } + + /** + * Set FormatRows. + * + * @param bool $formatRows + * + * @return $this + */ + public function setFormatRows($formatRows) + { + $this->formatRows = $formatRows; + + return $this; + } + + /** + * Get InsertColumns. + * + * @return bool + */ + public function getInsertColumns() + { + return $this->insertColumns; + } + + /** + * Set InsertColumns. + * + * @param bool $insertColumns + * + * @return $this + */ + public function setInsertColumns($insertColumns) + { + $this->insertColumns = $insertColumns; + + return $this; + } + + /** + * Get InsertRows. + * + * @return bool + */ + public function getInsertRows() + { + return $this->insertRows; + } + + /** + * Set InsertRows. + * + * @param bool $insertRows + * + * @return $this + */ + public function setInsertRows($insertRows) + { + $this->insertRows = $insertRows; + + return $this; + } + + /** + * Get InsertHyperlinks. + * + * @return bool + */ + public function getInsertHyperlinks() + { + return $this->insertHyperlinks; + } + + /** + * Set InsertHyperlinks. + * + * @param bool $insertHyperLinks + * + * @return $this + */ + public function setInsertHyperlinks($insertHyperLinks) + { + $this->insertHyperlinks = $insertHyperLinks; + + return $this; + } + + /** + * Get DeleteColumns. + * + * @return bool + */ + public function getDeleteColumns() + { + return $this->deleteColumns; + } + + /** + * Set DeleteColumns. + * + * @param bool $deleteColumns + * + * @return $this + */ + public function setDeleteColumns($deleteColumns) + { + $this->deleteColumns = $deleteColumns; + + return $this; + } + + /** + * Get DeleteRows. + * + * @return bool + */ + public function getDeleteRows() + { + return $this->deleteRows; + } + + /** + * Set DeleteRows. + * + * @param bool $deleteRows + * + * @return $this + */ + public function setDeleteRows($deleteRows) + { + $this->deleteRows = $deleteRows; + + return $this; + } + + /** + * Get SelectLockedCells. + * + * @return bool + */ + public function getSelectLockedCells() + { + return $this->selectLockedCells; + } + + /** + * Set SelectLockedCells. + * + * @param bool $selectLockedCells + * + * @return $this + */ + public function setSelectLockedCells($selectLockedCells) + { + $this->selectLockedCells = $selectLockedCells; + + return $this; + } + + /** + * Get Sort. + * + * @return bool + */ + public function getSort() + { + return $this->sort; + } + + /** + * Set Sort. + * + * @param bool $sort + * + * @return $this + */ + public function setSort($sort) + { + $this->sort = $sort; + + return $this; + } + + /** + * Get AutoFilter. + * + * @return bool + */ + public function getAutoFilter() + { + return $this->autoFilter; + } + + /** + * Set AutoFilter. + * + * @param bool $autoFilter + * + * @return $this + */ + public function setAutoFilter($autoFilter) + { + $this->autoFilter = $autoFilter; + + return $this; + } + + /** + * Get PivotTables. + * + * @return bool + */ + public function getPivotTables() + { + return $this->pivotTables; + } + + /** + * Set PivotTables. + * + * @param bool $pivotTables + * + * @return $this + */ + public function setPivotTables($pivotTables) + { + $this->pivotTables = $pivotTables; + + return $this; + } + + /** + * Get SelectUnlockedCells. + * + * @return bool + */ + public function getSelectUnlockedCells() + { + return $this->selectUnlockedCells; + } + + /** + * Set SelectUnlockedCells. + * + * @param bool $selectUnlockedCells + * + * @return $this + */ + public function setSelectUnlockedCells($selectUnlockedCells) + { + $this->selectUnlockedCells = $selectUnlockedCells; + + return $this; + } + + /** + * Get hashed password. + * + * @return string + */ + public function getPassword() + { + return $this->password; + } + + /** + * Set Password. + * + * @param string $password + * @param bool $alreadyHashed If the password has already been hashed, set this to true + * + * @return $this + */ + public function setPassword($password, $alreadyHashed = false) + { + if (!$alreadyHashed) { + $salt = $this->generateSalt(); + $this->setSalt($salt); + $password = PasswordHasher::hashPassword($password, $this->getAlgorithm(), $this->getSalt(), $this->getSpinCount()); + } + + $this->password = $password; + + return $this; + } + + /** + * Create a pseudorandom string. + */ + private function generateSalt(): string + { + return base64_encode(random_bytes(16)); + } + + /** + * Get algorithm name. + */ + public function getAlgorithm(): string + { + return $this->algorithm; + } + + /** + * Set algorithm name. + */ + public function setAlgorithm(string $algorithm): void + { + $this->algorithm = $algorithm; + } + + /** + * Get salt value. + */ + public function getSalt(): string + { + return $this->salt; + } + + /** + * Set salt value. + */ + public function setSalt(string $salt): void + { + $this->salt = $salt; + } + + /** + * Get spin count. + */ + public function getSpinCount(): int + { + return $this->spinCount; + } + + /** + * Set spin count. + */ + public function setSpinCount(int $spinCount): void + { + $this->spinCount = $spinCount; + } + + /** + * Verify that the given non-hashed password can "unlock" the protection. + */ + public function verify(string $password): bool + { + if (!$this->isProtectionEnabled()) { + return true; + } + + $hash = PasswordHasher::hashPassword($password, $this->getAlgorithm(), $this->getSalt(), $this->getSpinCount()); + + return $this->getPassword() === $hash; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Row.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Row.php new file mode 100644 index 0000000..5c16275 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Row.php @@ -0,0 +1,108 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +class Row +{ + /** + * \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet. + * + * @var Worksheet + */ + private $worksheet; + + /** + * Row index. + * + * @var int + */ + private $rowIndex = 0; + + /** + * Create a new row. + * + * @param int $rowIndex + */ + public function __construct(Worksheet $worksheet, $rowIndex = 1) + { + // Set parent and row index + $this->worksheet = $worksheet; + $this->rowIndex = $rowIndex; + } + + /** + * Destructor. + */ + public function __destruct() + { + $this->worksheet = null; // @phpstan-ignore-line + } + + /** + * Get row index. + */ + public function getRowIndex(): int + { + return $this->rowIndex; + } + + /** + * Get cell iterator. + * + * @param string $startColumn The column address at which to start iterating + * @param string $endColumn Optionally, the column address at which to stop iterating + * + * @return RowCellIterator + */ + public function getCellIterator($startColumn = 'A', $endColumn = null) + { + return new RowCellIterator($this->worksheet, $this->rowIndex, $startColumn, $endColumn); + } + + /** + * Returns a boolean true if the row contains no cells. By default, this means that no cell records exist in the + * collection for this row. false will be returned otherwise. + * This rule can be modified by passing a $definitionOfEmptyFlags value: + * 1 - CellIterator::TREAT_NULL_VALUE_AS_EMPTY_CELL If the only cells in the collection are null value + * cells, then the row will be considered empty. + * 2 - CellIterator::TREAT_EMPTY_STRING_AS_EMPTY_CELL If the only cells in the collection are empty + * string value cells, then the row will be considered empty. + * 3 - CellIterator::TREAT_NULL_VALUE_AS_EMPTY_CELL | CellIterator::TREAT_EMPTY_STRING_AS_EMPTY_CELL + * If the only cells in the collection are null value or empty string value cells, then the row + * will be considered empty. + * + * @param int $definitionOfEmptyFlags + * Possible Flag Values are: + * CellIterator::TREAT_NULL_VALUE_AS_EMPTY_CELL + * CellIterator::TREAT_EMPTY_STRING_AS_EMPTY_CELL + */ + public function isEmpty(int $definitionOfEmptyFlags = 0): bool + { + $nullValueCellIsEmpty = (bool) ($definitionOfEmptyFlags & CellIterator::TREAT_NULL_VALUE_AS_EMPTY_CELL); + $emptyStringCellIsEmpty = (bool) ($definitionOfEmptyFlags & CellIterator::TREAT_EMPTY_STRING_AS_EMPTY_CELL); + + $cellIterator = $this->getCellIterator(); + $cellIterator->setIterateOnlyExistingCells(true); + foreach ($cellIterator as $cell) { + $value = $cell->getValue(); + if ($value === null && $nullValueCellIsEmpty === true) { + continue; + } + if ($value === '' && $emptyStringCellIsEmpty === true) { + continue; + } + + return false; + } + + return true; + } + + /** + * Returns bound worksheet. + */ + public function getWorksheet(): Worksheet + { + return $this->worksheet; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowCellIterator.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowCellIterator.php new file mode 100644 index 0000000..5af0507 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowCellIterator.php @@ -0,0 +1,191 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; + +/** + * @extends CellIterator<string> + */ +class RowCellIterator extends CellIterator +{ + /** + * Current iterator position. + * + * @var int + */ + private $currentColumnIndex; + + /** + * Row index. + * + * @var int + */ + private $rowIndex = 1; + + /** + * Start position. + * + * @var int + */ + private $startColumnIndex = 1; + + /** + * End position. + * + * @var int + */ + private $endColumnIndex = 1; + + /** + * Create a new column iterator. + * + * @param Worksheet $worksheet The worksheet to iterate over + * @param int $rowIndex The row that we want to iterate + * @param string $startColumn The column address at which to start iterating + * @param string $endColumn Optionally, the column address at which to stop iterating + */ + public function __construct(Worksheet $worksheet, $rowIndex = 1, $startColumn = 'A', $endColumn = null) + { + // Set subject and row index + $this->worksheet = $worksheet; + $this->cellCollection = $worksheet->getCellCollection(); + $this->rowIndex = $rowIndex; + $this->resetEnd($endColumn); + $this->resetStart($startColumn); + } + + /** + * (Re)Set the start column and the current column pointer. + * + * @param string $startColumn The column address at which to start iterating + * + * @return $this + */ + public function resetStart(string $startColumn = 'A') + { + $this->startColumnIndex = Coordinate::columnIndexFromString($startColumn); + $this->adjustForExistingOnlyRange(); + $this->seek(Coordinate::stringFromColumnIndex($this->startColumnIndex)); + + return $this; + } + + /** + * (Re)Set the end column. + * + * @param string $endColumn The column address at which to stop iterating + * + * @return $this + */ + public function resetEnd($endColumn = null) + { + $endColumn = $endColumn ?: $this->worksheet->getHighestColumn(); + $this->endColumnIndex = Coordinate::columnIndexFromString($endColumn); + $this->adjustForExistingOnlyRange(); + + return $this; + } + + /** + * Set the column pointer to the selected column. + * + * @param string $column The column address to set the current pointer at + * + * @return $this + */ + public function seek(string $column = 'A') + { + $columnId = Coordinate::columnIndexFromString($column); + if ($this->onlyExistingCells && !($this->cellCollection->has($column . $this->rowIndex))) { + throw new PhpSpreadsheetException('In "IterateOnlyExistingCells" mode and Cell does not exist'); + } + if (($columnId < $this->startColumnIndex) || ($columnId > $this->endColumnIndex)) { + throw new PhpSpreadsheetException("Column $column is out of range ({$this->startColumnIndex} - {$this->endColumnIndex})"); + } + $this->currentColumnIndex = $columnId; + + return $this; + } + + /** + * Rewind the iterator to the starting column. + */ + public function rewind(): void + { + $this->currentColumnIndex = $this->startColumnIndex; + } + + /** + * Return the current cell in this worksheet row. + */ + public function current(): ?Cell + { + $cellAddress = Coordinate::stringFromColumnIndex($this->currentColumnIndex) . $this->rowIndex; + + return $this->cellCollection->has($cellAddress) + ? $this->cellCollection->get($cellAddress) + : $this->worksheet->createNewCell($cellAddress); + } + + /** + * Return the current iterator key. + */ + public function key(): string + { + return Coordinate::stringFromColumnIndex($this->currentColumnIndex); + } + + /** + * Set the iterator to its next value. + */ + public function next(): void + { + do { + ++$this->currentColumnIndex; + } while (($this->onlyExistingCells) && (!$this->cellCollection->has(Coordinate::stringFromColumnIndex($this->currentColumnIndex) . $this->rowIndex)) && ($this->currentColumnIndex <= $this->endColumnIndex)); + } + + /** + * Set the iterator to its previous value. + */ + public function prev(): void + { + do { + --$this->currentColumnIndex; + } while (($this->onlyExistingCells) && (!$this->cellCollection->has(Coordinate::stringFromColumnIndex($this->currentColumnIndex) . $this->rowIndex)) && ($this->currentColumnIndex >= $this->startColumnIndex)); + } + + /** + * Indicate if more columns exist in the worksheet range of columns that we're iterating. + */ + public function valid(): bool + { + return $this->currentColumnIndex <= $this->endColumnIndex && $this->currentColumnIndex >= $this->startColumnIndex; + } + + /** + * Return the current iterator position. + */ + public function getCurrentColumnIndex(): int + { + return $this->currentColumnIndex; + } + + /** + * Validate start/end values for "IterateOnlyExistingCells" mode, and adjust if necessary. + */ + protected function adjustForExistingOnlyRange(): void + { + if ($this->onlyExistingCells) { + while ((!$this->cellCollection->has(Coordinate::stringFromColumnIndex($this->startColumnIndex) . $this->rowIndex)) && ($this->startColumnIndex <= $this->endColumnIndex)) { + ++$this->startColumnIndex; + } + while ((!$this->cellCollection->has(Coordinate::stringFromColumnIndex($this->endColumnIndex) . $this->rowIndex)) && ($this->endColumnIndex >= $this->startColumnIndex)) { + --$this->endColumnIndex; + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowDimension.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowDimension.php new file mode 100644 index 0000000..acaafac --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowDimension.php @@ -0,0 +1,118 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use PhpOffice\PhpSpreadsheet\Helper\Dimension as CssDimension; + +class RowDimension extends Dimension +{ + /** + * Row index. + * + * @var int + */ + private $rowIndex; + + /** + * Row height (in pt). + * + * When this is set to a negative value, the row height should be ignored by IWriter + * + * @var float + */ + private $height = -1; + + /** + * ZeroHeight for Row? + * + * @var bool + */ + private $zeroHeight = false; + + /** + * Create a new RowDimension. + * + * @param int $index Numeric row index + */ + public function __construct($index = 0) + { + // Initialise values + $this->rowIndex = $index; + + // set dimension as unformatted by default + parent::__construct(null); + } + + /** + * Get Row Index. + */ + public function getRowIndex(): int + { + return $this->rowIndex; + } + + /** + * Set Row Index. + * + * @return $this + */ + public function setRowIndex(int $index) + { + $this->rowIndex = $index; + + return $this; + } + + /** + * Get Row Height. + * By default, this will be in points; but this method also accepts an optional unit of measure + * argument, and will convert the value from points to the specified UoM. + * A value of -1 tells Excel to display this column in its default height. + * + * @return float + */ + public function getRowHeight(?string $unitOfMeasure = null) + { + return ($unitOfMeasure === null || $this->height < 0) + ? $this->height + : (new CssDimension($this->height . CssDimension::UOM_POINTS))->toUnit($unitOfMeasure); + } + + /** + * Set Row Height. + * + * @param float $height in points. A value of -1 tells Excel to display this column in its default height. + * By default, this will be the passed argument value; but this method also accepts an optional unit of measure + * argument, and will convert the passed argument value to points from the specified UoM + * + * @return $this + */ + public function setRowHeight($height, ?string $unitOfMeasure = null) + { + $this->height = ($unitOfMeasure === null || $height < 0) + ? $height + : (new CssDimension("{$height}{$unitOfMeasure}"))->height(); + + return $this; + } + + /** + * Get ZeroHeight. + */ + public function getZeroHeight(): bool + { + return $this->zeroHeight; + } + + /** + * Set ZeroHeight. + * + * @return $this + */ + public function setZeroHeight(bool $zeroHeight) + { + $this->zeroHeight = $zeroHeight; + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowIterator.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowIterator.php new file mode 100644 index 0000000..5c51bfe --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowIterator.php @@ -0,0 +1,158 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use Iterator; +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; + +/** + * @implements Iterator<int, Row> + */ +class RowIterator implements Iterator +{ + /** + * Worksheet to iterate. + * + * @var Worksheet + */ + private $subject; + + /** + * Current iterator position. + * + * @var int + */ + private $position = 1; + + /** + * Start position. + * + * @var int + */ + private $startRow = 1; + + /** + * End position. + * + * @var int + */ + private $endRow = 1; + + /** + * Create a new row iterator. + * + * @param Worksheet $subject The worksheet to iterate over + * @param int $startRow The row number at which to start iterating + * @param int $endRow Optionally, the row number at which to stop iterating + */ + public function __construct(Worksheet $subject, $startRow = 1, $endRow = null) + { + // Set subject + $this->subject = $subject; + $this->resetEnd($endRow); + $this->resetStart($startRow); + } + + /** + * (Re)Set the start row and the current row pointer. + * + * @param int $startRow The row number at which to start iterating + * + * @return $this + */ + public function resetStart(int $startRow = 1) + { + if ($startRow > $this->subject->getHighestRow()) { + throw new PhpSpreadsheetException( + "Start row ({$startRow}) is beyond highest row ({$this->subject->getHighestRow()})" + ); + } + + $this->startRow = $startRow; + if ($this->endRow < $this->startRow) { + $this->endRow = $this->startRow; + } + $this->seek($startRow); + + return $this; + } + + /** + * (Re)Set the end row. + * + * @param int $endRow The row number at which to stop iterating + * + * @return $this + */ + public function resetEnd($endRow = null) + { + $this->endRow = $endRow ?: $this->subject->getHighestRow(); + + return $this; + } + + /** + * Set the row pointer to the selected row. + * + * @param int $row The row number to set the current pointer at + * + * @return $this + */ + public function seek(int $row = 1) + { + if (($row < $this->startRow) || ($row > $this->endRow)) { + throw new PhpSpreadsheetException("Row $row is out of range ({$this->startRow} - {$this->endRow})"); + } + $this->position = $row; + + return $this; + } + + /** + * Rewind the iterator to the starting row. + */ + public function rewind(): void + { + $this->position = $this->startRow; + } + + /** + * Return the current row in this worksheet. + */ + public function current(): Row + { + return new Row($this->subject, $this->position); + } + + /** + * Return the current iterator key. + */ + public function key(): int + { + return $this->position; + } + + /** + * Set the iterator to its next value. + */ + public function next(): void + { + ++$this->position; + } + + /** + * Set the iterator to its previous value. + */ + public function prev(): void + { + --$this->position; + } + + /** + * Indicate if more rows exist in the worksheet range of rows that we're iterating. + */ + public function valid(): bool + { + return $this->position <= $this->endRow && $this->position >= $this->startRow; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/SheetView.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/SheetView.php new file mode 100644 index 0000000..80c4433 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/SheetView.php @@ -0,0 +1,193 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; + +class SheetView +{ + // Sheet View types + const SHEETVIEW_NORMAL = 'normal'; + const SHEETVIEW_PAGE_LAYOUT = 'pageLayout'; + const SHEETVIEW_PAGE_BREAK_PREVIEW = 'pageBreakPreview'; + + private static $sheetViewTypes = [ + self::SHEETVIEW_NORMAL, + self::SHEETVIEW_PAGE_LAYOUT, + self::SHEETVIEW_PAGE_BREAK_PREVIEW, + ]; + + /** + * ZoomScale. + * + * Valid values range from 10 to 400. + * + * @var int + */ + private $zoomScale = 100; + + /** + * ZoomScaleNormal. + * + * Valid values range from 10 to 400. + * + * @var int + */ + private $zoomScaleNormal = 100; + + /** + * ShowZeros. + * + * If true, "null" values from a calculation will be shown as "0". This is the default Excel behaviour and can be changed + * with the advanced worksheet option "Show a zero in cells that have zero value" + * + * @var bool + */ + private $showZeros = true; + + /** + * View. + * + * Valid values range from 10 to 400. + * + * @var string + */ + private $sheetviewType = self::SHEETVIEW_NORMAL; + + /** + * Create a new SheetView. + */ + public function __construct() + { + } + + /** + * Get ZoomScale. + * + * @return int + */ + public function getZoomScale() + { + return $this->zoomScale; + } + + /** + * Set ZoomScale. + * Valid values range from 10 to 400. + * + * @param int $zoomScale + * + * @return $this + */ + public function setZoomScale($zoomScale) + { + // Microsoft Office Excel 2007 only allows setting a scale between 10 and 400 via the user interface, + // but it is apparently still able to handle any scale >= 1 + if (($zoomScale >= 1) || $zoomScale === null) { + $this->zoomScale = $zoomScale; + } else { + throw new PhpSpreadsheetException('Scale must be greater than or equal to 1.'); + } + + return $this; + } + + /** + * Get ZoomScaleNormal. + * + * @return int + */ + public function getZoomScaleNormal() + { + return $this->zoomScaleNormal; + } + + /** + * Set ZoomScale. + * Valid values range from 10 to 400. + * + * @param int $zoomScaleNormal + * + * @return $this + */ + public function setZoomScaleNormal($zoomScaleNormal) + { + if (($zoomScaleNormal >= 1) || $zoomScaleNormal === null) { + $this->zoomScaleNormal = $zoomScaleNormal; + } else { + throw new PhpSpreadsheetException('Scale must be greater than or equal to 1.'); + } + + return $this; + } + + /** + * Set ShowZeroes setting. + * + * @param bool $showZeros + */ + public function setShowZeros($showZeros): void + { + $this->showZeros = $showZeros; + } + + /** + * @return bool + */ + public function getShowZeros() + { + return $this->showZeros; + } + + /** + * Get View. + * + * @return string + */ + public function getView() + { + return $this->sheetviewType; + } + + /** + * Set View. + * + * Valid values are + * 'normal' self::SHEETVIEW_NORMAL + * 'pageLayout' self::SHEETVIEW_PAGE_LAYOUT + * 'pageBreakPreview' self::SHEETVIEW_PAGE_BREAK_PREVIEW + * + * @param string $sheetViewType + * + * @return $this + */ + public function setView($sheetViewType) + { + // MS Excel 2007 allows setting the view to 'normal', 'pageLayout' or 'pageBreakPreview' via the user interface + if ($sheetViewType === null) { + $sheetViewType = self::SHEETVIEW_NORMAL; + } + if (in_array($sheetViewType, self::$sheetViewTypes)) { + $this->sheetviewType = $sheetViewType; + } else { + throw new PhpSpreadsheetException('Invalid sheetview layout type.'); + } + + return $this; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + $this->$key = clone $value; + } else { + $this->$key = $value; + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table.php new file mode 100644 index 0000000..ffdbf9a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table.php @@ -0,0 +1,454 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use PhpOffice\PhpSpreadsheet\Cell\AddressRange; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Worksheet\Table\TableStyle; + +class Table +{ + /** + * Table Name. + * + * @var string + */ + private $name = ''; + + /** + * Show Header Row. + * + * @var bool + */ + private $showHeaderRow = true; + + /** + * Show Totals Row. + * + * @var bool + */ + private $showTotalsRow = false; + + /** + * Table Range. + * + * @var string + */ + private $range = ''; + + /** + * Table Worksheet. + * + * @var null|Worksheet + */ + private $workSheet; + + /** + * Table Column. + * + * @var Table\Column[] + */ + private $columns = []; + + /** + * Table Style. + * + * @var TableStyle + */ + private $style; + + /** + * Create a new Table. + * + * @param AddressRange|array<int>|string $range + * A simple string containing a Cell range like 'A1:E10' is permitted + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or an AddressRange object. + * @param string $name (e.g. Table1) + */ + public function __construct($range = '', string $name = '') + { + $this->setRange($range); + $this->setName($name); + $this->style = new TableStyle(); + } + + /** + * Get Table name. + */ + public function getName(): string + { + return $this->name; + } + + /** + * Set Table name. + */ + public function setName(string $name): self + { + $name = trim($name); + + if (!empty($name)) { + if (strlen($name) === 1 && in_array($name, ['C', 'c', 'R', 'r'])) { + throw new PhpSpreadsheetException('The table name is invalid'); + } + if (strlen($name) > 255) { + throw new PhpSpreadsheetException('The table name cannot be longer than 255 characters'); + } + // Check for A1 or R1C1 cell reference notation + if ( + preg_match(Coordinate::A1_COORDINATE_REGEX, $name) || + preg_match('/^R\[?\-?[0-9]*\]?C\[?\-?[0-9]*\]?$/i', $name) + ) { + throw new PhpSpreadsheetException('The table name can\'t be the same as a cell reference'); + } + if (!preg_match('/^[\p{L}_\\\\]/iu', $name)) { + throw new PhpSpreadsheetException('The table name must begin a name with a letter, an underscore character (_), or a backslash (\)'); + } + if (!preg_match('/^[\p{L}_\\\\][\p{L}\p{M}0-9\._]+$/iu', $name)) { + throw new PhpSpreadsheetException('The table name contains invalid characters'); + } + } + + $this->name = $name; + + return $this; + } + + /** + * Get show Header Row. + */ + public function getShowHeaderRow(): bool + { + return $this->showHeaderRow; + } + + /** + * Set show Header Row. + */ + public function setShowHeaderRow(bool $showHeaderRow): self + { + $this->showHeaderRow = $showHeaderRow; + + return $this; + } + + /** + * Get show Totals Row. + */ + public function getShowTotalsRow(): bool + { + return $this->showTotalsRow; + } + + /** + * Set show Totals Row. + */ + public function setShowTotalsRow(bool $showTotalsRow): self + { + $this->showTotalsRow = $showTotalsRow; + + return $this; + } + + /** + * Get Table Range. + */ + public function getRange(): string + { + return $this->range; + } + + /** + * Set Table Cell Range. + * + * @param AddressRange|array<int>|string $range + * A simple string containing a Cell range like 'A1:E10' is permitted + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or an AddressRange object. + */ + public function setRange($range = ''): self + { + // extract coordinate + if ($range !== '') { + [, $range] = Worksheet::extractSheetTitle(Validations::validateCellRange($range), true); + } + if (empty($range)) { + // Discard all column rules + $this->columns = []; + $this->range = ''; + + return $this; + } + + if (strpos($range, ':') === false) { + throw new PhpSpreadsheetException('Table must be set on a range of cells.'); + } + + [$width, $height] = Coordinate::rangeDimension($range); + if ($width < 1 || $height < 2) { + throw new PhpSpreadsheetException('The table range must be at least 1 column and 2 rows'); + } + + $this->range = $range; + // Discard any column ruless that are no longer valid within this range + [$rangeStart, $rangeEnd] = Coordinate::rangeBoundaries($this->range); + foreach ($this->columns as $key => $value) { + $colIndex = Coordinate::columnIndexFromString($key); + if (($rangeStart[0] > $colIndex) || ($rangeEnd[0] < $colIndex)) { + unset($this->columns[$key]); + } + } + + return $this; + } + + /** + * Set Table Cell Range to max row. + */ + public function setRangeToMaxRow(): self + { + if ($this->workSheet !== null) { + $thisrange = $this->range; + $range = (string) preg_replace('/\\d+$/', (string) $this->workSheet->getHighestRow(), $thisrange); + if ($range !== $thisrange) { + $this->setRange($range); + } + } + + return $this; + } + + /** + * Get Table's Worksheet. + */ + public function getWorksheet(): ?Worksheet + { + return $this->workSheet; + } + + /** + * Set Table's Worksheet. + */ + public function setWorksheet(?Worksheet $worksheet = null): self + { + if ($this->name !== '' && $worksheet !== null) { + $spreadsheet = $worksheet->getParent(); + $tableName = StringHelper::strToUpper($this->name); + + foreach ($spreadsheet->getWorksheetIterator() as $sheet) { + foreach ($sheet->getTableCollection() as $table) { + if (StringHelper::strToUpper($table->getName()) === $tableName) { + throw new PhpSpreadsheetException("Workbook already contains a table named '{$this->name}'"); + } + } + } + } + + $this->workSheet = $worksheet; + + return $this; + } + + /** + * Get all Table Columns. + * + * @return Table\Column[] + */ + public function getColumns(): array + { + return $this->columns; + } + + /** + * Validate that the specified column is in the Table range. + * + * @param string $column Column name (e.g. A) + * + * @return int The column offset within the table range + */ + public function isColumnInRange(string $column): int + { + if (empty($this->range)) { + throw new PhpSpreadsheetException('No table range is defined.'); + } + + $columnIndex = Coordinate::columnIndexFromString($column); + [$rangeStart, $rangeEnd] = Coordinate::rangeBoundaries($this->range); + if (($rangeStart[0] > $columnIndex) || ($rangeEnd[0] < $columnIndex)) { + throw new PhpSpreadsheetException('Column is outside of current table range.'); + } + + return $columnIndex - $rangeStart[0]; + } + + /** + * Get a specified Table Column Offset within the defined Table range. + * + * @param string $column Column name (e.g. A) + * + * @return int The offset of the specified column within the table range + */ + public function getColumnOffset($column): int + { + return $this->isColumnInRange($column); + } + + /** + * Get a specified Table Column. + * + * @param string $column Column name (e.g. A) + */ + public function getColumn($column): Table\Column + { + $this->isColumnInRange($column); + + if (!isset($this->columns[$column])) { + $this->columns[$column] = new Table\Column($column, $this); + } + + return $this->columns[$column]; + } + + /** + * Get a specified Table Column by it's offset. + * + * @param int $columnOffset Column offset within range (starting from 0) + */ + public function getColumnByOffset($columnOffset): Table\Column + { + [$rangeStart, $rangeEnd] = Coordinate::rangeBoundaries($this->range); + $pColumn = Coordinate::stringFromColumnIndex($rangeStart[0] + $columnOffset); + + return $this->getColumn($pColumn); + } + + /** + * Set Table. + * + * @param string|Table\Column $columnObjectOrString + * A simple string containing a Column ID like 'A' is permitted + */ + public function setColumn($columnObjectOrString): self + { + if ((is_string($columnObjectOrString)) && (!empty($columnObjectOrString))) { + $column = $columnObjectOrString; + } elseif (is_object($columnObjectOrString) && ($columnObjectOrString instanceof Table\Column)) { + $column = $columnObjectOrString->getColumnIndex(); + } else { + throw new PhpSpreadsheetException('Column is not within the table range.'); + } + $this->isColumnInRange($column); + + if (is_string($columnObjectOrString)) { + $this->columns[$columnObjectOrString] = new Table\Column($columnObjectOrString, $this); + } else { + $columnObjectOrString->setTable($this); + $this->columns[$column] = $columnObjectOrString; + } + ksort($this->columns); + + return $this; + } + + /** + * Clear a specified Table Column. + * + * @param string $column Column name (e.g. A) + */ + public function clearColumn($column): self + { + $this->isColumnInRange($column); + + if (isset($this->columns[$column])) { + unset($this->columns[$column]); + } + + return $this; + } + + /** + * Shift an Table Column Rule to a different column. + * + * Note: This method bypasses validation of the destination column to ensure it is within this Table range. + * Nor does it verify whether any column rule already exists at $toColumn, but will simply override any existing value. + * Use with caution. + * + * @param string $fromColumn Column name (e.g. A) + * @param string $toColumn Column name (e.g. B) + */ + public function shiftColumn($fromColumn, $toColumn): self + { + $fromColumn = strtoupper($fromColumn); + $toColumn = strtoupper($toColumn); + + if (($fromColumn !== null) && (isset($this->columns[$fromColumn])) && ($toColumn !== null)) { + $this->columns[$fromColumn]->setTable(); + $this->columns[$fromColumn]->setColumnIndex($toColumn); + $this->columns[$toColumn] = $this->columns[$fromColumn]; + $this->columns[$toColumn]->setTable($this); + unset($this->columns[$fromColumn]); + + ksort($this->columns); + } + + return $this; + } + + /** + * Get table Style. + */ + public function getStyle(): Table\TableStyle + { + return $this->style; + } + + /** + * Set table Style. + */ + public function setStyle(TableStyle $style): self + { + $this->style = $style; + + return $this; + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + $vars = get_object_vars($this); + foreach ($vars as $key => $value) { + if (is_object($value)) { + if ($key === 'workSheet') { + // Detach from worksheet + $this->{$key} = null; + } else { + $this->{$key} = clone $value; + } + } elseif ((is_array($value)) && ($key === 'columns')) { + // The columns array of \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet\Table objects + $this->{$key} = []; + foreach ($value as $k => $v) { + $this->{$key}[$k] = clone $v; + // attach the new cloned Column to this new cloned Table object + $this->{$key}[$k]->setTable($this); + } + } else { + $this->{$key} = $value; + } + } + } + + /** + * toString method replicates previous behavior by returning the range if object is + * referenced as a property of its worksheet. + */ + public function __toString() + { + return (string) $this->range; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table/Column.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table/Column.php new file mode 100644 index 0000000..a7c445f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table/Column.php @@ -0,0 +1,203 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet\Table; + +use PhpOffice\PhpSpreadsheet\Worksheet\Table; + +class Column +{ + /** + * Table Column Index. + * + * @var string + */ + private $columnIndex = ''; + + /** + * Show Filter Button. + * + * @var bool + */ + private $showFilterButton = true; + + /** + * Total Row Label. + * + * @var string + */ + private $totalsRowLabel; + + /** + * Total Row Function. + * + * @var string + */ + private $totalsRowFunction; + + /** + * Total Row Formula. + * + * @var string + */ + private $totalsRowFormula; + + /** + * Column Formula. + * + * @var string + */ + private $columnFormula; + + /** + * Table. + * + * @var null|Table + */ + private $table; + + /** + * Create a new Column. + * + * @param string $column Column (e.g. A) + * @param Table $table Table for this column + */ + public function __construct($column, ?Table $table = null) + { + $this->columnIndex = $column; + $this->table = $table; + } + + /** + * Get Table column index as string eg: 'A'. + */ + public function getColumnIndex(): string + { + return $this->columnIndex; + } + + /** + * Set Table column index as string eg: 'A'. + * + * @param string $column Column (e.g. A) + */ + public function setColumnIndex($column): self + { + // Uppercase coordinate + $column = strtoupper($column); + if ($this->table !== null) { + $this->table->isColumnInRange($column); + } + + $this->columnIndex = $column; + + return $this; + } + + /** + * Get show Filter Button. + */ + public function getShowFilterButton(): bool + { + return $this->showFilterButton; + } + + /** + * Set show Filter Button. + */ + public function setShowFilterButton(bool $showFilterButton): self + { + $this->showFilterButton = $showFilterButton; + + return $this; + } + + /** + * Get total Row Label. + */ + public function getTotalsRowLabel(): ?string + { + return $this->totalsRowLabel; + } + + /** + * Set total Row Label. + */ + public function setTotalsRowLabel(string $totalsRowLabel): self + { + $this->totalsRowLabel = $totalsRowLabel; + + return $this; + } + + /** + * Get total Row Function. + */ + public function getTotalsRowFunction(): ?string + { + return $this->totalsRowFunction; + } + + /** + * Set total Row Function. + */ + public function setTotalsRowFunction(string $totalsRowFunction): self + { + $this->totalsRowFunction = $totalsRowFunction; + + return $this; + } + + /** + * Get total Row Formula. + */ + public function getTotalsRowFormula(): ?string + { + return $this->totalsRowFormula; + } + + /** + * Set total Row Formula. + */ + public function setTotalsRowFormula(string $totalsRowFormula): self + { + $this->totalsRowFormula = $totalsRowFormula; + + return $this; + } + + /** + * Get column Formula. + */ + public function getColumnFormula(): ?string + { + return $this->columnFormula; + } + + /** + * Set column Formula. + */ + public function setColumnFormula(string $columnFormula): self + { + $this->columnFormula = $columnFormula; + + return $this; + } + + /** + * Get this Column's Table. + */ + public function getTable(): ?Table + { + return $this->table; + } + + /** + * Set this Column's Table. + */ + public function setTable(?Table $table = null): self + { + $this->table = $table; + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table/TableStyle.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table/TableStyle.php new file mode 100644 index 0000000..78643c7 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table/TableStyle.php @@ -0,0 +1,230 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet\Table; + +use PhpOffice\PhpSpreadsheet\Worksheet\Table; + +class TableStyle +{ + const TABLE_STYLE_NONE = ''; + const TABLE_STYLE_LIGHT1 = 'TableStyleLight1'; + const TABLE_STYLE_LIGHT2 = 'TableStyleLight2'; + const TABLE_STYLE_LIGHT3 = 'TableStyleLight3'; + const TABLE_STYLE_LIGHT4 = 'TableStyleLight4'; + const TABLE_STYLE_LIGHT5 = 'TableStyleLight5'; + const TABLE_STYLE_LIGHT6 = 'TableStyleLight6'; + const TABLE_STYLE_LIGHT7 = 'TableStyleLight7'; + const TABLE_STYLE_LIGHT8 = 'TableStyleLight8'; + const TABLE_STYLE_LIGHT9 = 'TableStyleLight9'; + const TABLE_STYLE_LIGHT10 = 'TableStyleLight10'; + const TABLE_STYLE_LIGHT11 = 'TableStyleLight11'; + const TABLE_STYLE_LIGHT12 = 'TableStyleLight12'; + const TABLE_STYLE_LIGHT13 = 'TableStyleLight13'; + const TABLE_STYLE_LIGHT14 = 'TableStyleLight14'; + const TABLE_STYLE_LIGHT15 = 'TableStyleLight15'; + const TABLE_STYLE_LIGHT16 = 'TableStyleLight16'; + const TABLE_STYLE_LIGHT17 = 'TableStyleLight17'; + const TABLE_STYLE_LIGHT18 = 'TableStyleLight18'; + const TABLE_STYLE_LIGHT19 = 'TableStyleLight19'; + const TABLE_STYLE_LIGHT20 = 'TableStyleLight20'; + const TABLE_STYLE_LIGHT21 = 'TableStyleLight21'; + const TABLE_STYLE_MEDIUM1 = 'TableStyleMedium1'; + const TABLE_STYLE_MEDIUM2 = 'TableStyleMedium2'; + const TABLE_STYLE_MEDIUM3 = 'TableStyleMedium3'; + const TABLE_STYLE_MEDIUM4 = 'TableStyleMedium4'; + const TABLE_STYLE_MEDIUM5 = 'TableStyleMedium5'; + const TABLE_STYLE_MEDIUM6 = 'TableStyleMedium6'; + const TABLE_STYLE_MEDIUM7 = 'TableStyleMedium7'; + const TABLE_STYLE_MEDIUM8 = 'TableStyleMedium8'; + const TABLE_STYLE_MEDIUM9 = 'TableStyleMedium9'; + const TABLE_STYLE_MEDIUM10 = 'TableStyleMedium10'; + const TABLE_STYLE_MEDIUM11 = 'TableStyleMedium11'; + const TABLE_STYLE_MEDIUM12 = 'TableStyleMedium12'; + const TABLE_STYLE_MEDIUM13 = 'TableStyleMedium13'; + const TABLE_STYLE_MEDIUM14 = 'TableStyleMedium14'; + const TABLE_STYLE_MEDIUM15 = 'TableStyleMedium15'; + const TABLE_STYLE_MEDIUM16 = 'TableStyleMedium16'; + const TABLE_STYLE_MEDIUM17 = 'TableStyleMedium17'; + const TABLE_STYLE_MEDIUM18 = 'TableStyleMedium18'; + const TABLE_STYLE_MEDIUM19 = 'TableStyleMedium19'; + const TABLE_STYLE_MEDIUM20 = 'TableStyleMedium20'; + const TABLE_STYLE_MEDIUM21 = 'TableStyleMedium21'; + const TABLE_STYLE_MEDIUM22 = 'TableStyleMedium22'; + const TABLE_STYLE_MEDIUM23 = 'TableStyleMedium23'; + const TABLE_STYLE_MEDIUM24 = 'TableStyleMedium24'; + const TABLE_STYLE_MEDIUM25 = 'TableStyleMedium25'; + const TABLE_STYLE_MEDIUM26 = 'TableStyleMedium26'; + const TABLE_STYLE_MEDIUM27 = 'TableStyleMedium27'; + const TABLE_STYLE_MEDIUM28 = 'TableStyleMedium28'; + const TABLE_STYLE_DARK1 = 'TableStyleDark1'; + const TABLE_STYLE_DARK2 = 'TableStyleDark2'; + const TABLE_STYLE_DARK3 = 'TableStyleDark3'; + const TABLE_STYLE_DARK4 = 'TableStyleDark4'; + const TABLE_STYLE_DARK5 = 'TableStyleDark5'; + const TABLE_STYLE_DARK6 = 'TableStyleDark6'; + const TABLE_STYLE_DARK7 = 'TableStyleDark7'; + const TABLE_STYLE_DARK8 = 'TableStyleDark8'; + const TABLE_STYLE_DARK9 = 'TableStyleDark9'; + const TABLE_STYLE_DARK10 = 'TableStyleDark10'; + const TABLE_STYLE_DARK11 = 'TableStyleDark11'; + + /** + * Theme. + * + * @var string + */ + private $theme; + + /** + * Show First Column. + * + * @var bool + */ + private $showFirstColumn = false; + + /** + * Show Last Column. + * + * @var bool + */ + private $showLastColumn = false; + + /** + * Show Row Stripes. + * + * @var bool + */ + private $showRowStripes = false; + + /** + * Show Column Stripes. + * + * @var bool + */ + private $showColumnStripes = false; + + /** + * Table. + * + * @var null|Table + */ + private $table; + + /** + * Create a new Table Style. + * + * @param string $theme (e.g. TableStyle::TABLE_STYLE_MEDIUM2) + */ + public function __construct(string $theme = self::TABLE_STYLE_MEDIUM2) + { + $this->theme = $theme; + } + + /** + * Get theme. + */ + public function getTheme(): string + { + return $this->theme; + } + + /** + * Set theme. + */ + public function setTheme(string $theme): self + { + $this->theme = $theme; + + return $this; + } + + /** + * Get show First Column. + */ + public function getShowFirstColumn(): bool + { + return $this->showFirstColumn; + } + + /** + * Set show First Column. + */ + public function setShowFirstColumn(bool $showFirstColumn): self + { + $this->showFirstColumn = $showFirstColumn; + + return $this; + } + + /** + * Get show Last Column. + */ + public function getShowLastColumn(): bool + { + return $this->showLastColumn; + } + + /** + * Set show Last Column. + */ + public function setShowLastColumn(bool $showLastColumn): self + { + $this->showLastColumn = $showLastColumn; + + return $this; + } + + /** + * Get show Row Stripes. + */ + public function getShowRowStripes(): bool + { + return $this->showRowStripes; + } + + /** + * Set show Row Stripes. + */ + public function setShowRowStripes(bool $showRowStripes): self + { + $this->showRowStripes = $showRowStripes; + + return $this; + } + + /** + * Get show Column Stripes. + */ + public function getShowColumnStripes(): bool + { + return $this->showColumnStripes; + } + + /** + * Set show Column Stripes. + */ + public function setShowColumnStripes(bool $showColumnStripes): self + { + $this->showColumnStripes = $showColumnStripes; + + return $this; + } + + /** + * Get this Style's Table. + */ + public function getTable(): ?Table + { + return $this->table; + } + + /** + * Set this Style's Table. + */ + public function setTable(?Table $table = null): self + { + $this->table = $table; + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Validations.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Validations.php new file mode 100644 index 0000000..a56dda4 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Validations.php @@ -0,0 +1,101 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use PhpOffice\PhpSpreadsheet\Cell\AddressRange; +use PhpOffice\PhpSpreadsheet\Cell\CellAddress; +use PhpOffice\PhpSpreadsheet\Cell\CellRange; + +class Validations +{ + /** + * Validate a cell address. + * + * @param null|array<int>|CellAddress|string $cellAddress Coordinate of the cell as a string, eg: 'C5'; + * or as an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + */ + public static function validateCellAddress($cellAddress): string + { + if (is_string($cellAddress)) { + [$worksheet, $address] = Worksheet::extractSheetTitle($cellAddress, true); +// if (!empty($worksheet) && $worksheet !== $this->getTitle()) { +// throw new Exception('Reference is not for this worksheet'); +// } + + return empty($worksheet) ? strtoupper($address) : $worksheet . '!' . strtoupper($address); + } + + if (is_array($cellAddress)) { + $cellAddress = CellAddress::fromColumnRowArray($cellAddress); + } + + return (string) $cellAddress; + } + + /** + * Validate a cell address or cell range. + * + * @param AddressRange|array<int>|CellAddress|int|string $cellRange Coordinate of the cells as a string, eg: 'C5:F12'; + * or as an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 12]), + * or as a CellAddress or AddressRange object. + */ + public static function validateCellOrCellRange($cellRange): string + { + if (is_string($cellRange) || is_numeric($cellRange)) { + // Convert a single column reference like 'A' to 'A:A', + // a single row reference like '1' to '1:1' + $cellRange = (string) preg_replace('/^([A-Z]+|\d+)$/', '${1}:${1}', (string) $cellRange); + } elseif (is_object($cellRange) && $cellRange instanceof CellAddress) { + $cellRange = new CellRange($cellRange, $cellRange); + } + + return self::validateCellRange($cellRange); + } + + /** + * Validate a cell range. + * + * @param AddressRange|array<int>|string $cellRange Coordinate of the cells as a string, eg: 'C5:F12'; + * or as an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 12]), + * or as an AddressRange object. + */ + public static function validateCellRange($cellRange): string + { + if (is_string($cellRange)) { + [$worksheet, $addressRange] = Worksheet::extractSheetTitle($cellRange, true); + + // Convert Column ranges like 'A:C' to 'A1:C1048576' + // or Row ranges like '1:3' to 'A1:XFD3' + $addressRange = (string) preg_replace( + ['/^([A-Z]+):([A-Z]+)$/i', '/^(\\d+):(\\d+)$/'], + ['${1}1:${2}1048576', 'A${1}:XFD${2}'], + $addressRange + ); + + return empty($worksheet) ? strtoupper($addressRange) : $worksheet . '!' . strtoupper($addressRange); + } + + if (is_array($cellRange)) { + [$from, $to] = array_chunk($cellRange, 2); + $cellRange = new CellRange(CellAddress::fromColumnRowArray($from), CellAddress::fromColumnRowArray($to)); + } + + return (string) $cellRange; + } + + public static function definedNameToCoordinate(string $coordinate, Worksheet $worksheet): string + { + // Uppercase coordinate + $coordinate = strtoupper($coordinate); + // Eliminate leading equal sign + $testCoordinate = (string) preg_replace('/^=/', '', $coordinate); + $defined = $worksheet->getParent()->getDefinedName($testCoordinate, $worksheet); + if ($defined !== null) { + if ($defined->getWorksheet() === $worksheet && !$defined->isFormula()) { + $coordinate = (string) preg_replace('/^=/', '', $defined->getValue()); + } + } + + return $coordinate; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Worksheet.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Worksheet.php new file mode 100644 index 0000000..45111f3 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Worksheet.php @@ -0,0 +1,3453 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Worksheet; + +use ArrayObject; +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Cell\AddressRange; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\CellAddress; +use PhpOffice\PhpSpreadsheet\Cell\CellRange; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Cell\DataType; +use PhpOffice\PhpSpreadsheet\Cell\DataValidation; +use PhpOffice\PhpSpreadsheet\Cell\Hyperlink; +use PhpOffice\PhpSpreadsheet\Chart\Chart; +use PhpOffice\PhpSpreadsheet\Collection\Cells; +use PhpOffice\PhpSpreadsheet\Collection\CellsFactory; +use PhpOffice\PhpSpreadsheet\Comment; +use PhpOffice\PhpSpreadsheet\DefinedName; +use PhpOffice\PhpSpreadsheet\Exception; +use PhpOffice\PhpSpreadsheet\IComparable; +use PhpOffice\PhpSpreadsheet\ReferenceHelper; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\Shared; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Style\Color; +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; +use PhpOffice\PhpSpreadsheet\Style\Style; + +class Worksheet implements IComparable +{ + // Break types + const BREAK_NONE = 0; + const BREAK_ROW = 1; + const BREAK_COLUMN = 2; + + // Sheet state + const SHEETSTATE_VISIBLE = 'visible'; + const SHEETSTATE_HIDDEN = 'hidden'; + const SHEETSTATE_VERYHIDDEN = 'veryHidden'; + + /** + * Maximum 31 characters allowed for sheet title. + * + * @var int + */ + const SHEET_TITLE_MAXIMUM_LENGTH = 31; + + /** + * Invalid characters in sheet title. + * + * @var array + */ + private static $invalidCharacters = ['*', ':', '/', '\\', '?', '[', ']']; + + /** + * Parent spreadsheet. + * + * @var Spreadsheet + */ + private $parent; + + /** + * Collection of cells. + * + * @var Cells + */ + private $cellCollection; + + /** + * Collection of row dimensions. + * + * @var RowDimension[] + */ + private $rowDimensions = []; + + /** + * Default row dimension. + * + * @var RowDimension + */ + private $defaultRowDimension; + + /** + * Collection of column dimensions. + * + * @var ColumnDimension[] + */ + private $columnDimensions = []; + + /** + * Default column dimension. + * + * @var ColumnDimension + */ + private $defaultColumnDimension; + + /** + * Collection of drawings. + * + * @var ArrayObject<int, BaseDrawing> + */ + private $drawingCollection; + + /** + * Collection of Chart objects. + * + * @var ArrayObject<int, Chart> + */ + private $chartCollection; + + /** + * Collection of Table objects. + * + * @var ArrayObject<int, Table> + */ + private $tableCollection; + + /** + * Worksheet title. + * + * @var string + */ + private $title; + + /** + * Sheet state. + * + * @var string + */ + private $sheetState; + + /** + * Page setup. + * + * @var PageSetup + */ + private $pageSetup; + + /** + * Page margins. + * + * @var PageMargins + */ + private $pageMargins; + + /** + * Page header/footer. + * + * @var HeaderFooter + */ + private $headerFooter; + + /** + * Sheet view. + * + * @var SheetView + */ + private $sheetView; + + /** + * Protection. + * + * @var Protection + */ + private $protection; + + /** + * Collection of styles. + * + * @var Style[] + */ + private $styles = []; + + /** + * Conditional styles. Indexed by cell coordinate, e.g. 'A1'. + * + * @var array + */ + private $conditionalStylesCollection = []; + + /** + * Collection of breaks. + * + * @var int[] + */ + private $breaks = []; + + /** + * Collection of merged cell ranges. + * + * @var string[] + */ + private $mergeCells = []; + + /** + * Collection of protected cell ranges. + * + * @var string[] + */ + private $protectedCells = []; + + /** + * Autofilter Range and selection. + * + * @var AutoFilter + */ + private $autoFilter; + + /** + * Freeze pane. + * + * @var null|string + */ + private $freezePane; + + /** + * Default position of the right bottom pane. + * + * @var null|string + */ + private $topLeftCell; + + /** + * Show gridlines? + * + * @var bool + */ + private $showGridlines = true; + + /** + * Print gridlines? + * + * @var bool + */ + private $printGridlines = false; + + /** + * Show row and column headers? + * + * @var bool + */ + private $showRowColHeaders = true; + + /** + * Show summary below? (Row/Column outline). + * + * @var bool + */ + private $showSummaryBelow = true; + + /** + * Show summary right? (Row/Column outline). + * + * @var bool + */ + private $showSummaryRight = true; + + /** + * Collection of comments. + * + * @var Comment[] + */ + private $comments = []; + + /** + * Active cell. (Only one!). + * + * @var string + */ + private $activeCell = 'A1'; + + /** + * Selected cells. + * + * @var string + */ + private $selectedCells = 'A1'; + + /** + * Cached highest column. + * + * @var int + */ + private $cachedHighestColumn = 1; + + /** + * Cached highest row. + * + * @var int + */ + private $cachedHighestRow = 1; + + /** + * Right-to-left? + * + * @var bool + */ + private $rightToLeft = false; + + /** + * Hyperlinks. Indexed by cell coordinate, e.g. 'A1'. + * + * @var array + */ + private $hyperlinkCollection = []; + + /** + * Data validation objects. Indexed by cell coordinate, e.g. 'A1'. + * + * @var array + */ + private $dataValidationCollection = []; + + /** + * Tab color. + * + * @var null|Color + */ + private $tabColor; + + /** + * Dirty flag. + * + * @var bool + */ + private $dirty = true; + + /** + * Hash. + * + * @var string + */ + private $hash; + + /** + * CodeName. + * + * @var string + */ + private $codeName; + + /** + * Create a new worksheet. + * + * @param string $title + */ + public function __construct(?Spreadsheet $parent = null, $title = 'Worksheet') + { + // Set parent and title + $this->parent = $parent; + $this->setTitle($title, false); + // setTitle can change $pTitle + $this->setCodeName($this->getTitle()); + $this->setSheetState(self::SHEETSTATE_VISIBLE); + + $this->cellCollection = CellsFactory::getInstance($this); + // Set page setup + $this->pageSetup = new PageSetup(); + // Set page margins + $this->pageMargins = new PageMargins(); + // Set page header/footer + $this->headerFooter = new HeaderFooter(); + // Set sheet view + $this->sheetView = new SheetView(); + // Drawing collection + $this->drawingCollection = new ArrayObject(); + // Chart collection + $this->chartCollection = new ArrayObject(); + // Protection + $this->protection = new Protection(); + // Default row dimension + $this->defaultRowDimension = new RowDimension(null); + // Default column dimension + $this->defaultColumnDimension = new ColumnDimension(null); + // AutoFilter + $this->autoFilter = new AutoFilter('', $this); + // Table collection + $this->tableCollection = new ArrayObject(); + } + + /** + * Disconnect all cells from this Worksheet object, + * typically so that the worksheet object can be unset. + */ + public function disconnectCells(): void + { + if ($this->cellCollection !== null) { + $this->cellCollection->unsetWorksheetCells(); + // @phpstan-ignore-next-line + $this->cellCollection = null; + } + // detach ourself from the workbook, so that it can then delete this worksheet successfully + // @phpstan-ignore-next-line + $this->parent = null; + } + + /** + * Code to execute when this worksheet is unset(). + */ + public function __destruct() + { + Calculation::getInstance($this->parent)->clearCalculationCacheForWorksheet($this->title); + + $this->disconnectCells(); + $this->rowDimensions = []; + } + + /** + * Return the cell collection. + * + * @return Cells + */ + public function getCellCollection() + { + return $this->cellCollection; + } + + /** + * Get array of invalid characters for sheet title. + * + * @return array + */ + public static function getInvalidCharacters() + { + return self::$invalidCharacters; + } + + /** + * Check sheet code name for valid Excel syntax. + * + * @param string $sheetCodeName The string to check + * + * @return string The valid string + */ + private static function checkSheetCodeName($sheetCodeName) + { + $charCount = Shared\StringHelper::countCharacters($sheetCodeName); + if ($charCount == 0) { + throw new Exception('Sheet code name cannot be empty.'); + } + // Some of the printable ASCII characters are invalid: * : / \ ? [ ] and first and last characters cannot be a "'" + if ( + (str_replace(self::$invalidCharacters, '', $sheetCodeName) !== $sheetCodeName) || + (Shared\StringHelper::substring($sheetCodeName, -1, 1) == '\'') || + (Shared\StringHelper::substring($sheetCodeName, 0, 1) == '\'') + ) { + throw new Exception('Invalid character found in sheet code name'); + } + + // Enforce maximum characters allowed for sheet title + if ($charCount > self::SHEET_TITLE_MAXIMUM_LENGTH) { + throw new Exception('Maximum ' . self::SHEET_TITLE_MAXIMUM_LENGTH . ' characters allowed in sheet code name.'); + } + + return $sheetCodeName; + } + + /** + * Check sheet title for valid Excel syntax. + * + * @param string $sheetTitle The string to check + * + * @return string The valid string + */ + private static function checkSheetTitle($sheetTitle) + { + // Some of the printable ASCII characters are invalid: * : / \ ? [ ] + if (str_replace(self::$invalidCharacters, '', $sheetTitle) !== $sheetTitle) { + throw new Exception('Invalid character found in sheet title'); + } + + // Enforce maximum characters allowed for sheet title + if (Shared\StringHelper::countCharacters($sheetTitle) > self::SHEET_TITLE_MAXIMUM_LENGTH) { + throw new Exception('Maximum ' . self::SHEET_TITLE_MAXIMUM_LENGTH . ' characters allowed in sheet title.'); + } + + return $sheetTitle; + } + + /** + * Get a sorted list of all cell coordinates currently held in the collection by row and column. + * + * @param bool $sorted Also sort the cell collection? + * + * @return string[] + */ + public function getCoordinates($sorted = true) + { + if ($this->cellCollection == null) { + return []; + } + + if ($sorted) { + return $this->cellCollection->getSortedCoordinates(); + } + + return $this->cellCollection->getCoordinates(); + } + + /** + * Get collection of row dimensions. + * + * @return RowDimension[] + */ + public function getRowDimensions() + { + return $this->rowDimensions; + } + + /** + * Get default row dimension. + * + * @return RowDimension + */ + public function getDefaultRowDimension() + { + return $this->defaultRowDimension; + } + + /** + * Get collection of column dimensions. + * + * @return ColumnDimension[] + */ + public function getColumnDimensions() + { + return $this->columnDimensions; + } + + /** + * Get default column dimension. + * + * @return ColumnDimension + */ + public function getDefaultColumnDimension() + { + return $this->defaultColumnDimension; + } + + /** + * Get collection of drawings. + * + * @return ArrayObject<int, BaseDrawing> + */ + public function getDrawingCollection() + { + return $this->drawingCollection; + } + + /** + * Get collection of charts. + * + * @return ArrayObject<int, Chart> + */ + public function getChartCollection() + { + return $this->chartCollection; + } + + /** + * Add chart. + * + * @param null|int $chartIndex Index where chart should go (0,1,..., or null for last) + * + * @return Chart + */ + public function addChart(Chart $chart, $chartIndex = null) + { + $chart->setWorksheet($this); + if ($chartIndex === null) { + $this->chartCollection[] = $chart; + } else { + // Insert the chart at the requested index + // @phpstan-ignore-next-line + array_splice($this->chartCollection, $chartIndex, 0, [$chart]); + } + + return $chart; + } + + /** + * Return the count of charts on this worksheet. + * + * @return int The number of charts + */ + public function getChartCount() + { + return count($this->chartCollection); + } + + /** + * Get a chart by its index position. + * + * @param string $index Chart index position + * + * @return Chart|false + */ + public function getChartByIndex($index) + { + $chartCount = count($this->chartCollection); + if ($chartCount == 0) { + return false; + } + if ($index === null) { + $index = --$chartCount; + } + if (!isset($this->chartCollection[$index])) { + return false; + } + + return $this->chartCollection[$index]; + } + + /** + * Return an array of the names of charts on this worksheet. + * + * @return string[] The names of charts + */ + public function getChartNames() + { + $chartNames = []; + foreach ($this->chartCollection as $chart) { + $chartNames[] = $chart->getName(); + } + + return $chartNames; + } + + /** + * Get a chart by name. + * + * @param string $chartName Chart name + * + * @return Chart|false + */ + public function getChartByName($chartName) + { + $chartCount = count($this->chartCollection); + if ($chartCount == 0) { + return false; + } + foreach ($this->chartCollection as $index => $chart) { + if ($chart->getName() == $chartName) { + return $this->chartCollection[$index]; + } + } + + return false; + } + + /** + * Refresh column dimensions. + * + * @return $this + */ + public function refreshColumnDimensions() + { + $newColumnDimensions = []; + foreach ($this->getColumnDimensions() as $objColumnDimension) { + $newColumnDimensions[$objColumnDimension->getColumnIndex()] = $objColumnDimension; + } + + $this->columnDimensions = $newColumnDimensions; + + return $this; + } + + /** + * Refresh row dimensions. + * + * @return $this + */ + public function refreshRowDimensions() + { + $newRowDimensions = []; + foreach ($this->getRowDimensions() as $objRowDimension) { + $newRowDimensions[$objRowDimension->getRowIndex()] = $objRowDimension; + } + + $this->rowDimensions = $newRowDimensions; + + return $this; + } + + /** + * Calculate worksheet dimension. + * + * @return string String containing the dimension of this worksheet + */ + public function calculateWorksheetDimension() + { + // Return + return 'A1:' . $this->getHighestColumn() . $this->getHighestRow(); + } + + /** + * Calculate worksheet data dimension. + * + * @return string String containing the dimension of this worksheet that actually contain data + */ + public function calculateWorksheetDataDimension() + { + // Return + return 'A1:' . $this->getHighestDataColumn() . $this->getHighestDataRow(); + } + + /** + * Calculate widths for auto-size columns. + * + * @return $this + */ + public function calculateColumnWidths() + { + // initialize $autoSizes array + $autoSizes = []; + foreach ($this->getColumnDimensions() as $colDimension) { + if ($colDimension->getAutoSize()) { + $autoSizes[$colDimension->getColumnIndex()] = -1; + } + } + + // There is only something to do if there are some auto-size columns + if (!empty($autoSizes)) { + // build list of cells references that participate in a merge + $isMergeCell = []; + foreach ($this->getMergeCells() as $cells) { + foreach (Coordinate::extractAllCellReferencesInRange($cells) as $cellReference) { + $isMergeCell[$cellReference] = true; + } + } + + $autoFilterRange = $autoFilterFirstRowRange = $this->autoFilter->getRange(); + if (!empty($autoFilterRange)) { + $autoFilterRangeBoundaries = Coordinate::rangeBoundaries($autoFilterRange); + $autoFilterFirstRowRange = (string) new CellRange( + CellAddress::fromColumnAndRow($autoFilterRangeBoundaries[0][0], $autoFilterRangeBoundaries[0][1]), + CellAddress::fromColumnAndRow($autoFilterRangeBoundaries[1][0], $autoFilterRangeBoundaries[0][1]) + ); + } + + // loop through all cells in the worksheet + foreach ($this->getCoordinates(false) as $coordinate) { + $cell = $this->getCellOrNull($coordinate); + + if ($cell !== null && isset($autoSizes[$this->cellCollection->getCurrentColumn()])) { + //Determine if cell is in merge range + $isMerged = isset($isMergeCell[$this->cellCollection->getCurrentCoordinate()]); + + //By default merged cells should be ignored + $isMergedButProceed = false; + + //The only exception is if it's a merge range value cell of a 'vertical' range (1 column wide) + if ($isMerged && $cell->isMergeRangeValueCell()) { + $range = $cell->getMergeRange(); + $rangeBoundaries = Coordinate::rangeDimension($range); + if ($rangeBoundaries[0] === 1) { + $isMergedButProceed = true; + } + } + + // Determine width if cell is not part of a merge or does and is a value cell of 1-column wide range + if (!$isMerged || $isMergedButProceed) { + // Determine if we need to make an adjustment for the first row in an AutoFilter range that + // has a column filter dropdown + $filterAdjustment = false; + if (!empty($autoFilterRange) && $cell->isInRange($autoFilterFirstRowRange)) { + $filterAdjustment = true; + } + + $indentAdjustment = $cell->getStyle()->getAlignment()->getIndent(); + + // Calculated value + // To formatted string + $cellValue = NumberFormat::toFormattedString( + $cell->getCalculatedValue(), + $this->getParent()->getCellXfByIndex($cell->getXfIndex()) + ->getNumberFormat()->getFormatCode() + ); + + if ($cellValue !== null && $cellValue !== '') { + $autoSizes[$this->cellCollection->getCurrentColumn()] = max( + (float) $autoSizes[$this->cellCollection->getCurrentColumn()], + (float) Shared\Font::calculateColumnWidth( + $this->getParent()->getCellXfByIndex($cell->getXfIndex())->getFont(), + $cellValue, + $this->getParent()->getCellXfByIndex($cell->getXfIndex()) + ->getAlignment()->getTextRotation(), + $this->getParent()->getDefaultStyle()->getFont(), + $filterAdjustment, + $indentAdjustment + ) + ); + } + } + } + } + + // adjust column widths + foreach ($autoSizes as $columnIndex => $width) { + if ($width == -1) { + $width = $this->getDefaultColumnDimension()->getWidth(); + } + $this->getColumnDimension($columnIndex)->setWidth($width); + } + } + + return $this; + } + + /** + * Get parent. + * + * @return Spreadsheet + */ + public function getParent() + { + return $this->parent; + } + + /** + * Re-bind parent. + * + * @return $this + */ + public function rebindParent(Spreadsheet $parent) + { + if ($this->parent !== null) { + $definedNames = $this->parent->getDefinedNames(); + foreach ($definedNames as $definedName) { + $parent->addDefinedName($definedName); + } + + $this->parent->removeSheetByIndex( + $this->parent->getIndex($this) + ); + } + $this->parent = $parent; + + return $this; + } + + /** + * Get title. + * + * @return string + */ + public function getTitle() + { + return $this->title; + } + + /** + * Set title. + * + * @param string $title String containing the dimension of this worksheet + * @param bool $updateFormulaCellReferences Flag indicating whether cell references in formulae should + * be updated to reflect the new sheet name. + * This should be left as the default true, unless you are + * certain that no formula cells on any worksheet contain + * references to this worksheet + * @param bool $validate False to skip validation of new title. WARNING: This should only be set + * at parse time (by Readers), where titles can be assumed to be valid. + * + * @return $this + */ + public function setTitle($title, $updateFormulaCellReferences = true, $validate = true) + { + // Is this a 'rename' or not? + if ($this->getTitle() == $title) { + return $this; + } + + // Old title + $oldTitle = $this->getTitle(); + + if ($validate) { + // Syntax check + self::checkSheetTitle($title); + + if ($this->parent) { + // Is there already such sheet name? + if ($this->parent->sheetNameExists($title)) { + // Use name, but append with lowest possible integer + + if (Shared\StringHelper::countCharacters($title) > 29) { + $title = Shared\StringHelper::substring($title, 0, 29); + } + $i = 1; + while ($this->parent->sheetNameExists($title . ' ' . $i)) { + ++$i; + if ($i == 10) { + if (Shared\StringHelper::countCharacters($title) > 28) { + $title = Shared\StringHelper::substring($title, 0, 28); + } + } elseif ($i == 100) { + if (Shared\StringHelper::countCharacters($title) > 27) { + $title = Shared\StringHelper::substring($title, 0, 27); + } + } + } + + $title .= " $i"; + } + } + } + + // Set title + $this->title = $title; + $this->dirty = true; + + if ($this->parent && $this->parent->getCalculationEngine()) { + // New title + $newTitle = $this->getTitle(); + $this->parent->getCalculationEngine() + ->renameCalculationCacheForWorksheet($oldTitle, $newTitle); + if ($updateFormulaCellReferences) { + ReferenceHelper::getInstance()->updateNamedFormulas($this->parent, $oldTitle, $newTitle); + } + } + + return $this; + } + + /** + * Get sheet state. + * + * @return string Sheet state (visible, hidden, veryHidden) + */ + public function getSheetState() + { + return $this->sheetState; + } + + /** + * Set sheet state. + * + * @param string $value Sheet state (visible, hidden, veryHidden) + * + * @return $this + */ + public function setSheetState($value) + { + $this->sheetState = $value; + + return $this; + } + + /** + * Get page setup. + * + * @return PageSetup + */ + public function getPageSetup() + { + return $this->pageSetup; + } + + /** + * Set page setup. + * + * @return $this + */ + public function setPageSetup(PageSetup $pageSetup) + { + $this->pageSetup = $pageSetup; + + return $this; + } + + /** + * Get page margins. + * + * @return PageMargins + */ + public function getPageMargins() + { + return $this->pageMargins; + } + + /** + * Set page margins. + * + * @return $this + */ + public function setPageMargins(PageMargins $pageMargins) + { + $this->pageMargins = $pageMargins; + + return $this; + } + + /** + * Get page header/footer. + * + * @return HeaderFooter + */ + public function getHeaderFooter() + { + return $this->headerFooter; + } + + /** + * Set page header/footer. + * + * @return $this + */ + public function setHeaderFooter(HeaderFooter $headerFooter) + { + $this->headerFooter = $headerFooter; + + return $this; + } + + /** + * Get sheet view. + * + * @return SheetView + */ + public function getSheetView() + { + return $this->sheetView; + } + + /** + * Set sheet view. + * + * @return $this + */ + public function setSheetView(SheetView $sheetView) + { + $this->sheetView = $sheetView; + + return $this; + } + + /** + * Get Protection. + * + * @return Protection + */ + public function getProtection() + { + return $this->protection; + } + + /** + * Set Protection. + * + * @return $this + */ + public function setProtection(Protection $protection) + { + $this->protection = $protection; + $this->dirty = true; + + return $this; + } + + /** + * Get highest worksheet column. + * + * @param null|int|string $row Return the data highest column for the specified row, + * or the highest column of any row if no row number is passed + * + * @return string Highest column name + */ + public function getHighestColumn($row = null) + { + if ($row === null) { + return Coordinate::stringFromColumnIndex($this->cachedHighestColumn); + } + + return $this->getHighestDataColumn($row); + } + + /** + * Get highest worksheet column that contains data. + * + * @param null|int|string $row Return the highest data column for the specified row, + * or the highest data column of any row if no row number is passed + * + * @return string Highest column name that contains data + */ + public function getHighestDataColumn($row = null) + { + return $this->cellCollection->getHighestColumn($row); + } + + /** + * Get highest worksheet row. + * + * @param null|string $column Return the highest data row for the specified column, + * or the highest row of any column if no column letter is passed + * + * @return int Highest row number + */ + public function getHighestRow($column = null) + { + if ($column === null) { + return $this->cachedHighestRow; + } + + return $this->getHighestDataRow($column); + } + + /** + * Get highest worksheet row that contains data. + * + * @param null|string $column Return the highest data row for the specified column, + * or the highest data row of any column if no column letter is passed + * + * @return int Highest row number that contains data + */ + public function getHighestDataRow($column = null) + { + return $this->cellCollection->getHighestRow($column); + } + + /** + * Get highest worksheet column and highest row that have cell records. + * + * @return array Highest column name and highest row number + */ + public function getHighestRowAndColumn() + { + return $this->cellCollection->getHighestRowAndColumn(); + } + + /** + * Set a cell value. + * + * @param array<int>|CellAddress|string $coordinate Coordinate of the cell as a string, eg: 'C5'; + * or as an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + * @param mixed $value Value for the cell + * + * @return $this + */ + public function setCellValue($coordinate, $value) + { + $cellAddress = Functions::trimSheetFromCellReference(Validations::validateCellAddress($coordinate)); + $this->getCell($cellAddress)->setValue($value); + + return $this; + } + + /** + * Set a cell value by using numeric cell coordinates. + * + * @Deprecated 1.23.0 + * Use the setCellValue() method with a cell address such as 'C5' instead;, + * or passing in an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + * + * @param int $columnIndex Numeric column coordinate of the cell + * @param int $row Numeric row coordinate of the cell + * @param mixed $value Value of the cell + * + * @return $this + */ + public function setCellValueByColumnAndRow($columnIndex, $row, $value) + { + $this->getCell(Coordinate::stringFromColumnIndex($columnIndex) . $row)->setValue($value); + + return $this; + } + + /** + * Set a cell value. + * + * @param array<int>|CellAddress|string $coordinate Coordinate of the cell as a string, eg: 'C5'; + * or as an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + * @param mixed $value Value of the cell + * @param string $dataType Explicit data type, see DataType::TYPE_* + * Note that PhpSpreadsheet does not validate that the value and datatype are consistent, in using this + * method, then it is your responsibility as an end-user developer to validate that the value and + * the datatype match. + * If you do mismatch value and datatpe, then the value you enter may be changed to match the datatype + * that you specify. + * + * @return $this + */ + public function setCellValueExplicit($coordinate, $value, $dataType) + { + $cellAddress = Functions::trimSheetFromCellReference(Validations::validateCellAddress($coordinate)); + $this->getCell($cellAddress)->setValueExplicit($value, $dataType); + + return $this; + } + + /** + * Set a cell value by using numeric cell coordinates. + * + * @Deprecated 1.23.0 + * Use the setCellValueExplicit() method with a cell address such as 'C5' instead;, + * or passing in an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + * + * @param int $columnIndex Numeric column coordinate of the cell + * @param int $row Numeric row coordinate of the cell + * @param mixed $value Value of the cell + * @param string $dataType Explicit data type, see DataType::TYPE_* + * Note that PhpSpreadsheet does not validate that the value and datatype are consistent, in using this + * method, then it is your responsibility as an end-user developer to validate that the value and + * the datatype match. + * If you do mismatch value and datatpe, then the value you enter may be changed to match the datatype + * that you specify. + * + * @return $this + */ + public function setCellValueExplicitByColumnAndRow($columnIndex, $row, $value, $dataType) + { + $this->getCell(Coordinate::stringFromColumnIndex($columnIndex) . $row)->setValueExplicit($value, $dataType); + + return $this; + } + + /** + * Get cell at a specific coordinate. + * + * @param array<int>|CellAddress|string $coordinate Coordinate of the cell as a string, eg: 'C5'; + * or as an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + * + * @return Cell Cell that was found or created + */ + public function getCell($coordinate): Cell + { + $cellAddress = Functions::trimSheetFromCellReference(Validations::validateCellAddress($coordinate)); + + // Shortcut for increased performance for the vast majority of simple cases + if ($this->cellCollection->has($cellAddress)) { + /** @var Cell $cell */ + $cell = $this->cellCollection->get($cellAddress); + + return $cell; + } + + /** @var Worksheet $sheet */ + [$sheet, $finalCoordinate] = $this->getWorksheetAndCoordinate($cellAddress); + $cell = $sheet->cellCollection->get($finalCoordinate); + + return $cell ?? $sheet->createNewCell($finalCoordinate); + } + + /** + * Get the correct Worksheet and coordinate from a coordinate that may + * contains reference to another sheet or a named range. + * + * @return array{0: Worksheet, 1: string} + */ + private function getWorksheetAndCoordinate(string $coordinate): array + { + $sheet = null; + $finalCoordinate = null; + + // Worksheet reference? + if (strpos($coordinate, '!') !== false) { + $worksheetReference = self::extractSheetTitle($coordinate, true); + + $sheet = $this->parent->getSheetByName($worksheetReference[0]); + $finalCoordinate = strtoupper($worksheetReference[1]); + + if ($sheet === null) { + throw new Exception('Sheet not found for name: ' . $worksheetReference[0]); + } + } elseif ( + !preg_match('/^' . Calculation::CALCULATION_REGEXP_CELLREF . '$/i', $coordinate) && + preg_match('/^' . Calculation::CALCULATION_REGEXP_DEFINEDNAME . '$/i', $coordinate) + ) { + // Named range? + $namedRange = $this->validateNamedRange($coordinate, true); + if ($namedRange !== null) { + $sheet = $namedRange->getWorksheet(); + if ($sheet === null) { + throw new Exception('Sheet not found for named range: ' . $namedRange->getName()); + } + + /** @phpstan-ignore-next-line */ + $cellCoordinate = ltrim(substr($namedRange->getValue(), strrpos($namedRange->getValue(), '!')), '!'); + $finalCoordinate = str_replace('$', '', $cellCoordinate); + } + } + + if ($sheet === null || $finalCoordinate === null) { + $sheet = $this; + $finalCoordinate = strtoupper($coordinate); + } + + if (Coordinate::coordinateIsRange($finalCoordinate)) { + throw new Exception('Cell coordinate string can not be a range of cells.'); + } elseif (strpos($finalCoordinate, '$') !== false) { + throw new Exception('Cell coordinate must not be absolute.'); + } + + return [$sheet, $finalCoordinate]; + } + + /** + * Get an existing cell at a specific coordinate, or null. + * + * @param string $coordinate Coordinate of the cell, eg: 'A1' + * + * @return null|Cell Cell that was found or null + */ + private function getCellOrNull($coordinate): ?Cell + { + // Check cell collection + if ($this->cellCollection->has($coordinate)) { + return $this->cellCollection->get($coordinate); + } + + return null; + } + + /** + * Get cell at a specific coordinate by using numeric cell coordinates. + * + * @Deprecated 1.23.0 + * Use the getCell() method with a cell address such as 'C5' instead;, + * or passing in an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + * + * @param int $columnIndex Numeric column coordinate of the cell + * @param int $row Numeric row coordinate of the cell + * + * @return Cell Cell that was found/created or null + */ + public function getCellByColumnAndRow($columnIndex, $row): Cell + { + return $this->getCell(Coordinate::stringFromColumnIndex($columnIndex) . $row); + } + + /** + * Create a new cell at the specified coordinate. + * + * @param string $coordinate Coordinate of the cell + * + * @return Cell Cell that was created + */ + public function createNewCell($coordinate) + { + [$column, $row, $columnString] = Coordinate::indexesFromString($coordinate); + $cell = new Cell(null, DataType::TYPE_NULL, $this); + $this->cellCollection->add($coordinate, $cell); + + // Coordinates + if ($column > $this->cachedHighestColumn) { + $this->cachedHighestColumn = $column; + } + if ($row > $this->cachedHighestRow) { + $this->cachedHighestRow = $row; + } + + // Cell needs appropriate xfIndex from dimensions records + // but don't create dimension records if they don't already exist + $rowDimension = $this->rowDimensions[$row] ?? null; + $columnDimension = $this->columnDimensions[$columnString] ?? null; + + if ($rowDimension !== null && $rowDimension->getXfIndex() > 0) { + // then there is a row dimension with explicit style, assign it to the cell + $cell->setXfIndex($rowDimension->getXfIndex()); + } elseif ($columnDimension !== null && $columnDimension->getXfIndex() > 0) { + // then there is a column dimension, assign it to the cell + $cell->setXfIndex($columnDimension->getXfIndex()); + } + + return $cell; + } + + /** + * Does the cell at a specific coordinate exist? + * + * @param array<int>|CellAddress|string $coordinate Coordinate of the cell as a string, eg: 'C5'; + * or as an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + */ + public function cellExists($coordinate): bool + { + $cellAddress = Validations::validateCellAddress($coordinate); + /** @var Worksheet $sheet */ + [$sheet, $finalCoordinate] = $this->getWorksheetAndCoordinate($cellAddress); + + return $sheet->cellCollection->has($finalCoordinate); + } + + /** + * Cell at a specific coordinate by using numeric cell coordinates exists? + * + * @Deprecated 1.23.0 + * Use the cellExists() method with a cell address such as 'C5' instead;, + * or passing in an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + * + * @param int $columnIndex Numeric column coordinate of the cell + * @param int $row Numeric row coordinate of the cell + */ + public function cellExistsByColumnAndRow($columnIndex, $row): bool + { + return $this->cellExists(Coordinate::stringFromColumnIndex($columnIndex) . $row); + } + + /** + * Get row dimension at a specific row. + * + * @param int $row Numeric index of the row + */ + public function getRowDimension(int $row): RowDimension + { + // Get row dimension + if (!isset($this->rowDimensions[$row])) { + $this->rowDimensions[$row] = new RowDimension($row); + + $this->cachedHighestRow = max($this->cachedHighestRow, $row); + } + + return $this->rowDimensions[$row]; + } + + public function rowDimensionExists(int $row): bool + { + return isset($this->rowDimensions[$row]); + } + + /** + * Get column dimension at a specific column. + * + * @param string $column String index of the column eg: 'A' + */ + public function getColumnDimension(string $column): ColumnDimension + { + // Uppercase coordinate + $column = strtoupper($column); + + // Fetch dimensions + if (!isset($this->columnDimensions[$column])) { + $this->columnDimensions[$column] = new ColumnDimension($column); + + $columnIndex = Coordinate::columnIndexFromString($column); + if ($this->cachedHighestColumn < $columnIndex) { + $this->cachedHighestColumn = $columnIndex; + } + } + + return $this->columnDimensions[$column]; + } + + /** + * Get column dimension at a specific column by using numeric cell coordinates. + * + * @param int $columnIndex Numeric column coordinate of the cell + */ + public function getColumnDimensionByColumn(int $columnIndex): ColumnDimension + { + return $this->getColumnDimension(Coordinate::stringFromColumnIndex($columnIndex)); + } + + /** + * Get styles. + * + * @return Style[] + */ + public function getStyles() + { + return $this->styles; + } + + /** + * Get style for cell. + * + * @param AddressRange|array<int>|CellAddress|int|string $cellCoordinate + * A simple string containing a cell address like 'A1' or a cell range like 'A1:E10' + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or a CellAddress or AddressRange object. + */ + public function getStyle($cellCoordinate): Style + { + $cellCoordinate = Validations::validateCellOrCellRange($cellCoordinate); + + // set this sheet as active + $this->parent->setActiveSheetIndex($this->parent->getIndex($this)); + + // set cell coordinate as active + $this->setSelectedCells($cellCoordinate); + + return $this->parent->getCellXfSupervisor(); + } + + /** + * Get style for cell by using numeric cell coordinates. + * + * @Deprecated 1.23.0 + * Use the getStyle() method with a cell address range such as 'C5:F8' instead;, + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or an AddressRange object. + * + * @param int $columnIndex1 Numeric column coordinate of the cell + * @param int $row1 Numeric row coordinate of the cell + * @param null|int $columnIndex2 Numeric column coordinate of the range cell + * @param null|int $row2 Numeric row coordinate of the range cell + * + * @return Style + */ + public function getStyleByColumnAndRow($columnIndex1, $row1, $columnIndex2 = null, $row2 = null) + { + if ($columnIndex2 !== null && $row2 !== null) { + $cellRange = new CellRange( + CellAddress::fromColumnAndRow($columnIndex1, $row1), + CellAddress::fromColumnAndRow($columnIndex2, $row2) + ); + + return $this->getStyle($cellRange); + } + + return $this->getStyle(CellAddress::fromColumnAndRow($columnIndex1, $row1)); + } + + /** + * Get conditional styles for a cell. + * + * @param string $coordinate eg: 'A1' or 'A1:A3'. + * If a single cell is referenced, then the array of conditional styles will be returned if the cell is + * included in a conditional style range. + * If a range of cells is specified, then the styles will only be returned if the range matches the entire + * range of the conditional. + * + * @return Conditional[] + */ + public function getConditionalStyles(string $coordinate): array + { + $coordinate = strtoupper($coordinate); + if (strpos($coordinate, ':') !== false) { + return $this->conditionalStylesCollection[$coordinate] ?? []; + } + + $cell = $this->getCell($coordinate); + foreach (array_keys($this->conditionalStylesCollection) as $conditionalRange) { + if ($cell->isInRange($conditionalRange)) { + return $this->conditionalStylesCollection[$conditionalRange]; + } + } + + return []; + } + + public function getConditionalRange(string $coordinate): ?string + { + $coordinate = strtoupper($coordinate); + $cell = $this->getCell($coordinate); + foreach (array_keys($this->conditionalStylesCollection) as $conditionalRange) { + if ($cell->isInRange($conditionalRange)) { + return $conditionalRange; + } + } + + return null; + } + + /** + * Do conditional styles exist for this cell? + * + * @param string $coordinate eg: 'A1' or 'A1:A3'. + * If a single cell is specified, then this method will return true if that cell is included in a + * conditional style range. + * If a range of cells is specified, then true will only be returned if the range matches the entire + * range of the conditional. + */ + public function conditionalStylesExists($coordinate): bool + { + $coordinate = strtoupper($coordinate); + if (strpos($coordinate, ':') !== false) { + return isset($this->conditionalStylesCollection[$coordinate]); + } + + $cell = $this->getCell($coordinate); + foreach (array_keys($this->conditionalStylesCollection) as $conditionalRange) { + if ($cell->isInRange($conditionalRange)) { + return true; + } + } + + return false; + } + + /** + * Removes conditional styles for a cell. + * + * @param string $coordinate eg: 'A1' + * + * @return $this + */ + public function removeConditionalStyles($coordinate) + { + unset($this->conditionalStylesCollection[strtoupper($coordinate)]); + + return $this; + } + + /** + * Get collection of conditional styles. + * + * @return array + */ + public function getConditionalStylesCollection() + { + return $this->conditionalStylesCollection; + } + + /** + * Set conditional styles. + * + * @param string $coordinate eg: 'A1' + * @param Conditional[] $styles + * + * @return $this + */ + public function setConditionalStyles($coordinate, $styles) + { + $this->conditionalStylesCollection[strtoupper($coordinate)] = $styles; + + return $this; + } + + /** + * Duplicate cell style to a range of cells. + * + * Please note that this will overwrite existing cell styles for cells in range! + * + * @param Style $style Cell style to duplicate + * @param string $range Range of cells (i.e. "A1:B10"), or just one cell (i.e. "A1") + * + * @return $this + */ + public function duplicateStyle(Style $style, $range) + { + // Add the style to the workbook if necessary + $workbook = $this->parent; + if ($existingStyle = $this->parent->getCellXfByHashCode($style->getHashCode())) { + // there is already such cell Xf in our collection + $xfIndex = $existingStyle->getIndex(); + } else { + // we don't have such a cell Xf, need to add + $workbook->addCellXf($style); + $xfIndex = $style->getIndex(); + } + + // Calculate range outer borders + [$rangeStart, $rangeEnd] = Coordinate::rangeBoundaries($range . ':' . $range); + + // Make sure we can loop upwards on rows and columns + if ($rangeStart[0] > $rangeEnd[0] && $rangeStart[1] > $rangeEnd[1]) { + $tmp = $rangeStart; + $rangeStart = $rangeEnd; + $rangeEnd = $tmp; + } + + // Loop through cells and apply styles + for ($col = $rangeStart[0]; $col <= $rangeEnd[0]; ++$col) { + for ($row = $rangeStart[1]; $row <= $rangeEnd[1]; ++$row) { + $this->getCell(Coordinate::stringFromColumnIndex($col) . $row)->setXfIndex($xfIndex); + } + } + + return $this; + } + + /** + * Duplicate conditional style to a range of cells. + * + * Please note that this will overwrite existing cell styles for cells in range! + * + * @param Conditional[] $styles Cell style to duplicate + * @param string $range Range of cells (i.e. "A1:B10"), or just one cell (i.e. "A1") + * + * @return $this + */ + public function duplicateConditionalStyle(array $styles, $range = '') + { + foreach ($styles as $cellStyle) { + if (!($cellStyle instanceof Conditional)) { + throw new Exception('Style is not a conditional style'); + } + } + + // Calculate range outer borders + [$rangeStart, $rangeEnd] = Coordinate::rangeBoundaries($range . ':' . $range); + + // Make sure we can loop upwards on rows and columns + if ($rangeStart[0] > $rangeEnd[0] && $rangeStart[1] > $rangeEnd[1]) { + $tmp = $rangeStart; + $rangeStart = $rangeEnd; + $rangeEnd = $tmp; + } + + // Loop through cells and apply styles + for ($col = $rangeStart[0]; $col <= $rangeEnd[0]; ++$col) { + for ($row = $rangeStart[1]; $row <= $rangeEnd[1]; ++$row) { + $this->setConditionalStyles(Coordinate::stringFromColumnIndex($col) . $row, $styles); + } + } + + return $this; + } + + /** + * Set break on a cell. + * + * @param array<int>|CellAddress|string $coordinate Coordinate of the cell as a string, eg: 'C5'; + * or as an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + * @param int $break Break type (type of Worksheet::BREAK_*) + * + * @return $this + */ + public function setBreak($coordinate, $break) + { + $cellAddress = Functions::trimSheetFromCellReference(Validations::validateCellAddress($coordinate)); + + if ($break === self::BREAK_NONE) { + if (isset($this->breaks[$cellAddress])) { + unset($this->breaks[$cellAddress]); + } + } else { + $this->breaks[$cellAddress] = $break; + } + + return $this; + } + + /** + * Set break on a cell by using numeric cell coordinates. + * + * @Deprecated 1.23.0 + * Use the setBreak() method with a cell address such as 'C5' instead;, + * or passing in an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + * + * @param int $columnIndex Numeric column coordinate of the cell + * @param int $row Numeric row coordinate of the cell + * @param int $break Break type (type of Worksheet::BREAK_*) + * + * @return $this + */ + public function setBreakByColumnAndRow($columnIndex, $row, $break) + { + return $this->setBreak(Coordinate::stringFromColumnIndex($columnIndex) . $row, $break); + } + + /** + * Get breaks. + * + * @return int[] + */ + public function getBreaks() + { + return $this->breaks; + } + + /** + * Set merge on a cell range. + * + * @param AddressRange|array<int>|string $range A simple string containing a Cell range like 'A1:E10' + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or an AddressRange. + * + * @return $this + */ + public function mergeCells($range) + { + $range = Functions::trimSheetFromCellReference(Validations::validateCellRange($range)); + + if (strpos($range, ':') === false) { + $range .= ":{$range}"; + } + + if (preg_match('/^([A-Z]+)(\\d+):([A-Z]+)(\\d+)$/', $range, $matches) !== 1) { + throw new Exception('Merge must be on a valid range of cells.'); + } + + $this->mergeCells[$range] = $range; + $firstRow = (int) $matches[2]; + $lastRow = (int) $matches[4]; + $firstColumn = $matches[1]; + $lastColumn = $matches[3]; + $firstColumnIndex = Coordinate::columnIndexFromString($firstColumn); + $lastColumnIndex = Coordinate::columnIndexFromString($lastColumn); + $numberRows = $lastRow - $firstRow; + $numberColumns = $lastColumnIndex - $firstColumnIndex; + + if ($numberRows === 1 && $numberColumns === 1) { + return $this; + } + + // create upper left cell if it does not already exist + $upperLeft = "{$firstColumn}{$firstRow}"; + if (!$this->cellExists($upperLeft)) { + $this->getCell($upperLeft)->setValueExplicit(null, DataType::TYPE_NULL); + } + + // Blank out the rest of the cells in the range (if they exist) + if ($numberRows > $numberColumns) { + $this->clearMergeCellsByColumn($firstColumn, $lastColumn, $firstRow, $lastRow, $upperLeft); + } else { + $this->clearMergeCellsByRow($firstColumn, $lastColumnIndex, $firstRow, $lastRow, $upperLeft); + } + + return $this; + } + + private function clearMergeCellsByColumn(string $firstColumn, string $lastColumn, int $firstRow, int $lastRow, string $upperLeft): void + { + foreach ($this->getColumnIterator($firstColumn, $lastColumn) as $column) { + $iterator = $column->getCellIterator($firstRow); + $iterator->setIterateOnlyExistingCells(true); + foreach ($iterator as $cell) { + if ($cell !== null) { + $row = $cell->getRow(); + if ($row > $lastRow) { + break; + } + $thisCell = $cell->getColumn() . $row; + if ($upperLeft !== $thisCell) { + $cell->setValueExplicit(null, DataType::TYPE_NULL); + } + } + } + } + } + + private function clearMergeCellsByRow(string $firstColumn, int $lastColumnIndex, int $firstRow, int $lastRow, string $upperLeft): void + { + foreach ($this->getRowIterator($firstRow, $lastRow) as $row) { + $iterator = $row->getCellIterator($firstColumn); + $iterator->setIterateOnlyExistingCells(true); + foreach ($iterator as $cell) { + if ($cell !== null) { + $column = $cell->getColumn(); + $columnIndex = Coordinate::columnIndexFromString($column); + if ($columnIndex > $lastColumnIndex) { + break; + } + $thisCell = $column . $cell->getRow(); + if ($upperLeft !== $thisCell) { + $cell->setValueExplicit(null, DataType::TYPE_NULL); + } + } + } + } + } + + /** + * Set merge on a cell range by using numeric cell coordinates. + * + * @Deprecated 1.23.0 + * Use the mergeCells() method with a cell address range such as 'C5:F8' instead;, + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or an AddressRange object. + * + * @param int $columnIndex1 Numeric column coordinate of the first cell + * @param int $row1 Numeric row coordinate of the first cell + * @param int $columnIndex2 Numeric column coordinate of the last cell + * @param int $row2 Numeric row coordinate of the last cell + * + * @return $this + */ + public function mergeCellsByColumnAndRow($columnIndex1, $row1, $columnIndex2, $row2) + { + $cellRange = new CellRange( + CellAddress::fromColumnAndRow($columnIndex1, $row1), + CellAddress::fromColumnAndRow($columnIndex2, $row2) + ); + + return $this->mergeCells($cellRange); + } + + /** + * Remove merge on a cell range. + * + * @param AddressRange|array<int>|string $range A simple string containing a Cell range like 'A1:E10' + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or an AddressRange. + * + * @return $this + */ + public function unmergeCells($range) + { + $range = Functions::trimSheetFromCellReference(Validations::validateCellRange($range)); + + if (strpos($range, ':') !== false) { + if (isset($this->mergeCells[$range])) { + unset($this->mergeCells[$range]); + } else { + throw new Exception('Cell range ' . $range . ' not known as merged.'); + } + } else { + throw new Exception('Merge can only be removed from a range of cells.'); + } + + return $this; + } + + /** + * Remove merge on a cell range by using numeric cell coordinates. + * + * @Deprecated 1.23.0 + * Use the unmergeCells() method with a cell address range such as 'C5:F8' instead;, + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or an AddressRange object. + * + * @param int $columnIndex1 Numeric column coordinate of the first cell + * @param int $row1 Numeric row coordinate of the first cell + * @param int $columnIndex2 Numeric column coordinate of the last cell + * @param int $row2 Numeric row coordinate of the last cell + * + * @return $this + */ + public function unmergeCellsByColumnAndRow($columnIndex1, $row1, $columnIndex2, $row2) + { + $cellRange = new CellRange( + CellAddress::fromColumnAndRow($columnIndex1, $row1), + CellAddress::fromColumnAndRow($columnIndex2, $row2) + ); + + return $this->unmergeCells($cellRange); + } + + /** + * Get merge cells array. + * + * @return string[] + */ + public function getMergeCells() + { + return $this->mergeCells; + } + + /** + * Set merge cells array for the entire sheet. Use instead mergeCells() to merge + * a single cell range. + * + * @param string[] $mergeCells + * + * @return $this + */ + public function setMergeCells(array $mergeCells) + { + $this->mergeCells = $mergeCells; + + return $this; + } + + /** + * Set protection on a cell or cell range. + * + * @param AddressRange|array<int>|CellAddress|int|string $range A simple string containing a Cell range like 'A1:E10' + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or a CellAddress or AddressRange object. + * @param string $password Password to unlock the protection + * @param bool $alreadyHashed If the password has already been hashed, set this to true + * + * @return $this + */ + public function protectCells($range, $password, $alreadyHashed = false) + { + $range = Functions::trimSheetFromCellReference(Validations::validateCellOrCellRange($range)); + + if (!$alreadyHashed) { + $password = Shared\PasswordHasher::hashPassword($password); + } + $this->protectedCells[$range] = $password; + + return $this; + } + + /** + * Set protection on a cell range by using numeric cell coordinates. + * + * @Deprecated 1.23.0 + * Use the protectCells() method with a cell address range such as 'C5:F8' instead;, + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or an AddressRange object. + * + * @param int $columnIndex1 Numeric column coordinate of the first cell + * @param int $row1 Numeric row coordinate of the first cell + * @param int $columnIndex2 Numeric column coordinate of the last cell + * @param int $row2 Numeric row coordinate of the last cell + * @param string $password Password to unlock the protection + * @param bool $alreadyHashed If the password has already been hashed, set this to true + * + * @return $this + */ + public function protectCellsByColumnAndRow($columnIndex1, $row1, $columnIndex2, $row2, $password, $alreadyHashed = false) + { + $cellRange = new CellRange( + CellAddress::fromColumnAndRow($columnIndex1, $row1), + CellAddress::fromColumnAndRow($columnIndex2, $row2) + ); + + return $this->protectCells($cellRange, $password, $alreadyHashed); + } + + /** + * Remove protection on a cell or cell range. + * + * @param AddressRange|array<int>|CellAddress|int|string $range A simple string containing a Cell range like 'A1:E10' + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or a CellAddress or AddressRange object. + * + * @return $this + */ + public function unprotectCells($range) + { + $range = Functions::trimSheetFromCellReference(Validations::validateCellOrCellRange($range)); + + if (isset($this->protectedCells[$range])) { + unset($this->protectedCells[$range]); + } else { + throw new Exception('Cell range ' . $range . ' not known as protected.'); + } + + return $this; + } + + /** + * Remove protection on a cell range by using numeric cell coordinates. + * + * @Deprecated 1.23.0 + * Use the protectCells() method with a cell address range such as 'C5:F8' instead;, + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or an AddressRange object. + * + * @param int $columnIndex1 Numeric column coordinate of the first cell + * @param int $row1 Numeric row coordinate of the first cell + * @param int $columnIndex2 Numeric column coordinate of the last cell + * @param int $row2 Numeric row coordinate of the last cell + * + * @return $this + */ + public function unprotectCellsByColumnAndRow($columnIndex1, $row1, $columnIndex2, $row2) + { + $cellRange = new CellRange( + CellAddress::fromColumnAndRow($columnIndex1, $row1), + CellAddress::fromColumnAndRow($columnIndex2, $row2) + ); + + return $this->unprotectCells($cellRange); + } + + /** + * Get protected cells. + * + * @return string[] + */ + public function getProtectedCells() + { + return $this->protectedCells; + } + + /** + * Get Autofilter. + * + * @return AutoFilter + */ + public function getAutoFilter() + { + return $this->autoFilter; + } + + /** + * Set AutoFilter. + * + * @param AddressRange|array<int>|AutoFilter|string $autoFilterOrRange + * A simple string containing a Cell range like 'A1:E10' is permitted for backward compatibility + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or an AddressRange. + * + * @return $this + */ + public function setAutoFilter($autoFilterOrRange) + { + if (is_object($autoFilterOrRange) && ($autoFilterOrRange instanceof AutoFilter)) { + $this->autoFilter = $autoFilterOrRange; + } else { + $cellRange = Functions::trimSheetFromCellReference(Validations::validateCellRange($autoFilterOrRange)); + + $this->autoFilter->setRange($cellRange); + } + + return $this; + } + + /** + * Set Autofilter Range by using numeric cell coordinates. + * + * @Deprecated 1.23.0 + * Use the setAutoFilter() method with a cell address range such as 'C5:F8' instead;, + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or an AddressRange object or AutoFilter object. + * + * @param int $columnIndex1 Numeric column coordinate of the first cell + * @param int $row1 Numeric row coordinate of the first cell + * @param int $columnIndex2 Numeric column coordinate of the second cell + * @param int $row2 Numeric row coordinate of the second cell + * + * @return $this + */ + public function setAutoFilterByColumnAndRow($columnIndex1, $row1, $columnIndex2, $row2) + { + $cellRange = new CellRange( + CellAddress::fromColumnAndRow($columnIndex1, $row1), + CellAddress::fromColumnAndRow($columnIndex2, $row2) + ); + + return $this->setAutoFilter($cellRange); + } + + /** + * Remove autofilter. + */ + public function removeAutoFilter(): self + { + $this->autoFilter->setRange(''); + + return $this; + } + + /** + * Get collection of Tables. + * + * @return ArrayObject<int, Table> + */ + public function getTableCollection() + { + return $this->tableCollection; + } + + /** + * Add Table. + * + * @return $this + */ + public function addTable(Table $table): self + { + $table->setWorksheet($this); + $this->tableCollection[] = $table; + + return $this; + } + + /** + * Remove Table by name. + * + * @param string $name Table name + * + * @return $this + */ + public function removeTableByName(string $name): self + { + $name = Shared\StringHelper::strToUpper($name); + foreach ($this->tableCollection as $key => $table) { + if (Shared\StringHelper::strToUpper($table->getName()) === $name) { + unset($this->tableCollection[$key]); + } + } + + return $this; + } + + /** + * Remove collection of Tables. + */ + public function removeTableCollection(): self + { + $this->tableCollection = new ArrayObject(); + + return $this; + } + + /** + * Get Freeze Pane. + * + * @return null|string + */ + public function getFreezePane() + { + return $this->freezePane; + } + + /** + * Freeze Pane. + * + * Examples: + * + * - A2 will freeze the rows above cell A2 (i.e row 1) + * - B1 will freeze the columns to the left of cell B1 (i.e column A) + * - B2 will freeze the rows above and to the left of cell B2 (i.e row 1 and column A) + * + * @param null|array<int>|CellAddress|string $coordinate Coordinate of the cell as a string, eg: 'C5'; + * or as an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + * Passing a null value for this argument will clear any existing freeze pane for this worksheet. + * @param null|array<int>|CellAddress|string $topLeftCell default position of the right bottom pane + * Coordinate of the cell as a string, eg: 'C5'; or as an array of [$columnIndex, $row] (e.g. [3, 5]), + * or a CellAddress object. + * + * @return $this + */ + public function freezePane($coordinate, $topLeftCell = null) + { + $cellAddress = ($coordinate !== null) + ? Functions::trimSheetFromCellReference(Validations::validateCellAddress($coordinate)) + : null; + if ($cellAddress !== null && Coordinate::coordinateIsRange($cellAddress)) { + throw new Exception('Freeze pane can not be set on a range of cells.'); + } + $topLeftCell = ($topLeftCell !== null) + ? Functions::trimSheetFromCellReference(Validations::validateCellAddress($topLeftCell)) + : null; + + if ($cellAddress !== null && $topLeftCell === null) { + $coordinate = Coordinate::coordinateFromString($cellAddress); + $topLeftCell = $coordinate[0] . $coordinate[1]; + } + + $this->freezePane = $cellAddress; + $this->topLeftCell = $topLeftCell; + + return $this; + } + + public function setTopLeftCell(string $topLeftCell): self + { + $this->topLeftCell = $topLeftCell; + + return $this; + } + + /** + * Freeze Pane by using numeric cell coordinates. + * + * @Deprecated 1.23.0 + * Use the freezePane() method with a cell address such as 'C5' instead;, + * or passing in an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + * + * @param int $columnIndex Numeric column coordinate of the cell + * @param int $row Numeric row coordinate of the cell + * + * @return $this + */ + public function freezePaneByColumnAndRow($columnIndex, $row) + { + return $this->freezePane(Coordinate::stringFromColumnIndex($columnIndex) . $row); + } + + /** + * Unfreeze Pane. + * + * @return $this + */ + public function unfreezePane() + { + return $this->freezePane(null); + } + + /** + * Get the default position of the right bottom pane. + * + * @return null|string + */ + public function getTopLeftCell() + { + return $this->topLeftCell; + } + + /** + * Insert a new row, updating all possible related data. + * + * @param int $before Insert before this one + * @param int $numberOfRows Number of rows to insert + * + * @return $this + */ + public function insertNewRowBefore($before, $numberOfRows = 1) + { + if ($before >= 1) { + $objReferenceHelper = ReferenceHelper::getInstance(); + $objReferenceHelper->insertNewBefore('A' . $before, 0, $numberOfRows, $this); + } else { + throw new Exception('Rows can only be inserted before at least row 1.'); + } + + return $this; + } + + /** + * Insert a new column, updating all possible related data. + * + * @param string $before Insert before this one, eg: 'A' + * @param int $numberOfColumns Number of columns to insert + * + * @return $this + */ + public function insertNewColumnBefore($before, $numberOfColumns = 1) + { + if (!is_numeric($before)) { + $objReferenceHelper = ReferenceHelper::getInstance(); + $objReferenceHelper->insertNewBefore($before . '1', $numberOfColumns, 0, $this); + } else { + throw new Exception('Column references should not be numeric.'); + } + + return $this; + } + + /** + * Insert a new column, updating all possible related data. + * + * @param int $beforeColumnIndex Insert before this one (numeric column coordinate of the cell) + * @param int $numberOfColumns Number of columns to insert + * + * @return $this + */ + public function insertNewColumnBeforeByIndex($beforeColumnIndex, $numberOfColumns = 1) + { + if ($beforeColumnIndex >= 1) { + return $this->insertNewColumnBefore(Coordinate::stringFromColumnIndex($beforeColumnIndex), $numberOfColumns); + } + + throw new Exception('Columns can only be inserted before at least column A (1).'); + } + + /** + * Delete a row, updating all possible related data. + * + * @param int $row Remove starting with this one + * @param int $numberOfRows Number of rows to remove + * + * @return $this + */ + public function removeRow($row, $numberOfRows = 1) + { + if ($row < 1) { + throw new Exception('Rows to be deleted should at least start from row 1.'); + } + + $holdRowDimensions = $this->removeRowDimensions($row, $numberOfRows); + $highestRow = $this->getHighestDataRow(); + $removedRowsCounter = 0; + + for ($r = 0; $r < $numberOfRows; ++$r) { + if ($row + $r <= $highestRow) { + $this->getCellCollection()->removeRow($row + $r); + ++$removedRowsCounter; + } + } + + $objReferenceHelper = ReferenceHelper::getInstance(); + $objReferenceHelper->insertNewBefore('A' . ($row + $numberOfRows), 0, -$numberOfRows, $this); + for ($r = 0; $r < $removedRowsCounter; ++$r) { + $this->getCellCollection()->removeRow($highestRow); + --$highestRow; + } + + $this->rowDimensions = $holdRowDimensions; + + return $this; + } + + private function removeRowDimensions(int $row, int $numberOfRows): array + { + $highRow = $row + $numberOfRows - 1; + $holdRowDimensions = []; + foreach ($this->rowDimensions as $rowDimension) { + $num = $rowDimension->getRowIndex(); + if ($num < $row) { + $holdRowDimensions[$num] = $rowDimension; + } elseif ($num > $highRow) { + $num -= $numberOfRows; + $cloneDimension = clone $rowDimension; + $cloneDimension->setRowIndex($num); + $holdRowDimensions[$num] = $cloneDimension; + } + } + + return $holdRowDimensions; + } + + /** + * Remove a column, updating all possible related data. + * + * @param string $column Remove starting with this one, eg: 'A' + * @param int $numberOfColumns Number of columns to remove + * + * @return $this + */ + public function removeColumn($column, $numberOfColumns = 1) + { + if (is_numeric($column)) { + throw new Exception('Column references should not be numeric.'); + } + + $highestColumn = $this->getHighestDataColumn(); + $highestColumnIndex = Coordinate::columnIndexFromString($highestColumn); + $pColumnIndex = Coordinate::columnIndexFromString($column); + + $holdColumnDimensions = $this->removeColumnDimensions($pColumnIndex, $numberOfColumns); + + $column = Coordinate::stringFromColumnIndex($pColumnIndex + $numberOfColumns); + $objReferenceHelper = ReferenceHelper::getInstance(); + $objReferenceHelper->insertNewBefore($column . '1', -$numberOfColumns, 0, $this); + + $this->columnDimensions = $holdColumnDimensions; + + if ($pColumnIndex > $highestColumnIndex) { + return $this; + } + + $maxPossibleColumnsToBeRemoved = $highestColumnIndex - $pColumnIndex + 1; + + for ($c = 0, $n = min($maxPossibleColumnsToBeRemoved, $numberOfColumns); $c < $n; ++$c) { + $this->getCellCollection()->removeColumn($highestColumn); + $highestColumn = Coordinate::stringFromColumnIndex(Coordinate::columnIndexFromString($highestColumn) - 1); + } + + $this->garbageCollect(); + + return $this; + } + + private function removeColumnDimensions(int $pColumnIndex, int $numberOfColumns): array + { + $highCol = $pColumnIndex + $numberOfColumns - 1; + $holdColumnDimensions = []; + foreach ($this->columnDimensions as $columnDimension) { + $num = $columnDimension->getColumnNumeric(); + if ($num < $pColumnIndex) { + $str = $columnDimension->getColumnIndex(); + $holdColumnDimensions[$str] = $columnDimension; + } elseif ($num > $highCol) { + $cloneDimension = clone $columnDimension; + $cloneDimension->setColumnNumeric($num - $numberOfColumns); + $str = $cloneDimension->getColumnIndex(); + $holdColumnDimensions[$str] = $cloneDimension; + } + } + + return $holdColumnDimensions; + } + + /** + * Remove a column, updating all possible related data. + * + * @param int $columnIndex Remove starting with this one (numeric column coordinate of the cell) + * @param int $numColumns Number of columns to remove + * + * @return $this + */ + public function removeColumnByIndex($columnIndex, $numColumns = 1) + { + if ($columnIndex >= 1) { + return $this->removeColumn(Coordinate::stringFromColumnIndex($columnIndex), $numColumns); + } + + throw new Exception('Columns to be deleted should at least start from column A (1)'); + } + + /** + * Show gridlines? + * + * @return bool + */ + public function getShowGridlines() + { + return $this->showGridlines; + } + + /** + * Set show gridlines. + * + * @param bool $showGridLines Show gridlines (true/false) + * + * @return $this + */ + public function setShowGridlines($showGridLines) + { + $this->showGridlines = $showGridLines; + + return $this; + } + + /** + * Print gridlines? + * + * @return bool + */ + public function getPrintGridlines() + { + return $this->printGridlines; + } + + /** + * Set print gridlines. + * + * @param bool $printGridLines Print gridlines (true/false) + * + * @return $this + */ + public function setPrintGridlines($printGridLines) + { + $this->printGridlines = $printGridLines; + + return $this; + } + + /** + * Show row and column headers? + * + * @return bool + */ + public function getShowRowColHeaders() + { + return $this->showRowColHeaders; + } + + /** + * Set show row and column headers. + * + * @param bool $showRowColHeaders Show row and column headers (true/false) + * + * @return $this + */ + public function setShowRowColHeaders($showRowColHeaders) + { + $this->showRowColHeaders = $showRowColHeaders; + + return $this; + } + + /** + * Show summary below? (Row/Column outlining). + * + * @return bool + */ + public function getShowSummaryBelow() + { + return $this->showSummaryBelow; + } + + /** + * Set show summary below. + * + * @param bool $showSummaryBelow Show summary below (true/false) + * + * @return $this + */ + public function setShowSummaryBelow($showSummaryBelow) + { + $this->showSummaryBelow = $showSummaryBelow; + + return $this; + } + + /** + * Show summary right? (Row/Column outlining). + * + * @return bool + */ + public function getShowSummaryRight() + { + return $this->showSummaryRight; + } + + /** + * Set show summary right. + * + * @param bool $showSummaryRight Show summary right (true/false) + * + * @return $this + */ + public function setShowSummaryRight($showSummaryRight) + { + $this->showSummaryRight = $showSummaryRight; + + return $this; + } + + /** + * Get comments. + * + * @return Comment[] + */ + public function getComments() + { + return $this->comments; + } + + /** + * Set comments array for the entire sheet. + * + * @param Comment[] $comments + * + * @return $this + */ + public function setComments(array $comments) + { + $this->comments = $comments; + + return $this; + } + + /** + * Remove comment from cell. + * + * @param array<int>|CellAddress|string $cellCoordinate Coordinate of the cell as a string, eg: 'C5'; + * or as an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + * + * @return $this + */ + public function removeComment($cellCoordinate) + { + $cellAddress = Functions::trimSheetFromCellReference(Validations::validateCellAddress($cellCoordinate)); + + if (Coordinate::coordinateIsRange($cellAddress)) { + throw new Exception('Cell coordinate string can not be a range of cells.'); + } elseif (strpos($cellAddress, '$') !== false) { + throw new Exception('Cell coordinate string must not be absolute.'); + } elseif ($cellAddress == '') { + throw new Exception('Cell coordinate can not be zero-length string.'); + } + // Check if we have a comment for this cell and delete it + if (isset($this->comments[$cellAddress])) { + unset($this->comments[$cellAddress]); + } + + return $this; + } + + /** + * Get comment for cell. + * + * @param array<int>|CellAddress|string $cellCoordinate Coordinate of the cell as a string, eg: 'C5'; + * or as an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + * + * @return Comment + */ + public function getComment($cellCoordinate) + { + $cellAddress = Functions::trimSheetFromCellReference(Validations::validateCellAddress($cellCoordinate)); + + if (Coordinate::coordinateIsRange($cellAddress)) { + throw new Exception('Cell coordinate string can not be a range of cells.'); + } elseif (strpos($cellAddress, '$') !== false) { + throw new Exception('Cell coordinate string must not be absolute.'); + } elseif ($cellAddress == '') { + throw new Exception('Cell coordinate can not be zero-length string.'); + } + + // Check if we already have a comment for this cell. + if (isset($this->comments[$cellAddress])) { + return $this->comments[$cellAddress]; + } + + // If not, create a new comment. + $newComment = new Comment(); + $this->comments[$cellAddress] = $newComment; + + return $newComment; + } + + /** + * Get comment for cell by using numeric cell coordinates. + * + * @Deprecated 1.23.0 + * Use the getComment() method with a cell address such as 'C5' instead;, + * or passing in an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + * + * @param int $columnIndex Numeric column coordinate of the cell + * @param int $row Numeric row coordinate of the cell + * + * @return Comment + */ + public function getCommentByColumnAndRow($columnIndex, $row) + { + return $this->getComment(Coordinate::stringFromColumnIndex($columnIndex) . $row); + } + + /** + * Get active cell. + * + * @return string Example: 'A1' + */ + public function getActiveCell() + { + return $this->activeCell; + } + + /** + * Get selected cells. + * + * @return string + */ + public function getSelectedCells() + { + return $this->selectedCells; + } + + /** + * Selected cell. + * + * @param string $coordinate Cell (i.e. A1) + * + * @return $this + */ + public function setSelectedCell($coordinate) + { + return $this->setSelectedCells($coordinate); + } + + /** + * Select a range of cells. + * + * @param AddressRange|array<int>|CellAddress|int|string $coordinate A simple string containing a Cell range like 'A1:E10' + * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]), + * or a CellAddress or AddressRange object. + * + * @return $this + */ + public function setSelectedCells($coordinate) + { + if (is_string($coordinate)) { + $coordinate = Validations::definedNameToCoordinate($coordinate, $this); + } + $coordinate = Validations::validateCellOrCellRange($coordinate); + + if (Coordinate::coordinateIsRange($coordinate)) { + [$first] = Coordinate::splitRange($coordinate); + $this->activeCell = $first[0]; + } else { + $this->activeCell = $coordinate; + } + $this->selectedCells = $coordinate; + + return $this; + } + + /** + * Selected cell by using numeric cell coordinates. + * + * @Deprecated 1.23.0 + * Use the setSelectedCells() method with a cell address such as 'C5' instead;, + * or passing in an array of [$columnIndex, $row] (e.g. [3, 5]), or a CellAddress object. + * + * @param int $columnIndex Numeric column coordinate of the cell + * @param int $row Numeric row coordinate of the cell + * + * @return $this + */ + public function setSelectedCellByColumnAndRow($columnIndex, $row) + { + return $this->setSelectedCells(Coordinate::stringFromColumnIndex($columnIndex) . $row); + } + + /** + * Get right-to-left. + * + * @return bool + */ + public function getRightToLeft() + { + return $this->rightToLeft; + } + + /** + * Set right-to-left. + * + * @param bool $value Right-to-left true/false + * + * @return $this + */ + public function setRightToLeft($value) + { + $this->rightToLeft = $value; + + return $this; + } + + /** + * Fill worksheet from values in array. + * + * @param array $source Source array + * @param mixed $nullValue Value in source array that stands for blank cell + * @param string $startCell Insert array starting from this cell address as the top left coordinate + * @param bool $strictNullComparison Apply strict comparison when testing for null values in the array + * + * @return $this + */ + public function fromArray(array $source, $nullValue = null, $startCell = 'A1', $strictNullComparison = false) + { + // Convert a 1-D array to 2-D (for ease of looping) + if (!is_array(end($source))) { + $source = [$source]; + } + + // start coordinate + [$startColumn, $startRow] = Coordinate::coordinateFromString($startCell); + + // Loop through $source + foreach ($source as $rowData) { + $currentColumn = $startColumn; + foreach ($rowData as $cellValue) { + if ($strictNullComparison) { + if ($cellValue !== $nullValue) { + // Set cell value + $this->getCell($currentColumn . $startRow)->setValue($cellValue); + } + } else { + if ($cellValue != $nullValue) { + // Set cell value + $this->getCell($currentColumn . $startRow)->setValue($cellValue); + } + } + ++$currentColumn; + } + ++$startRow; + } + + return $this; + } + + /** + * Create array from a range of cells. + * + * @param string $range Range of cells (i.e. "A1:B10"), or just one cell (i.e. "A1") + * @param mixed $nullValue Value returned in the array entry if a cell doesn't exist + * @param bool $calculateFormulas Should formulas be calculated? + * @param bool $formatData Should formatting be applied to cell values? + * @param bool $returnCellRef False - Return a simple array of rows and columns indexed by number counting from zero + * True - Return rows and columns indexed by their actual row and column IDs + * + * @return array + */ + public function rangeToArray($range, $nullValue = null, $calculateFormulas = true, $formatData = true, $returnCellRef = false) + { + // Returnvalue + $returnValue = []; + // Identify the range that we need to extract from the worksheet + [$rangeStart, $rangeEnd] = Coordinate::rangeBoundaries($range); + $minCol = Coordinate::stringFromColumnIndex($rangeStart[0]); + $minRow = $rangeStart[1]; + $maxCol = Coordinate::stringFromColumnIndex($rangeEnd[0]); + $maxRow = $rangeEnd[1]; + + ++$maxCol; + // Loop through rows + $r = -1; + for ($row = $minRow; $row <= $maxRow; ++$row) { + $rRef = $returnCellRef ? $row : ++$r; + $c = -1; + // Loop through columns in the current row + for ($col = $minCol; $col != $maxCol; ++$col) { + $cRef = $returnCellRef ? $col : ++$c; + // Using getCell() will create a new cell if it doesn't already exist. We don't want that to happen + // so we test and retrieve directly against cellCollection + if ($this->cellCollection->has($col . $row)) { + // Cell exists + $cell = $this->cellCollection->get($col . $row); + if ($cell->getValue() !== null) { + if ($cell->getValue() instanceof RichText) { + $returnValue[$rRef][$cRef] = $cell->getValue()->getPlainText(); + } else { + if ($calculateFormulas) { + $returnValue[$rRef][$cRef] = $cell->getCalculatedValue(); + } else { + $returnValue[$rRef][$cRef] = $cell->getValue(); + } + } + + if ($formatData) { + $style = $this->parent->getCellXfByIndex($cell->getXfIndex()); + $returnValue[$rRef][$cRef] = NumberFormat::toFormattedString( + $returnValue[$rRef][$cRef], + ($style && $style->getNumberFormat()) ? $style->getNumberFormat()->getFormatCode() : NumberFormat::FORMAT_GENERAL + ); + } + } else { + // Cell holds a NULL + $returnValue[$rRef][$cRef] = $nullValue; + } + } else { + // Cell doesn't exist + $returnValue[$rRef][$cRef] = $nullValue; + } + } + } + + // Return + return $returnValue; + } + + private function validateNamedRange(string $definedName, bool $returnNullIfInvalid = false): ?DefinedName + { + $namedRange = DefinedName::resolveName($definedName, $this); + if ($namedRange === null) { + if ($returnNullIfInvalid) { + return null; + } + + throw new Exception('Named Range ' . $definedName . ' does not exist.'); + } + + if ($namedRange->isFormula()) { + if ($returnNullIfInvalid) { + return null; + } + + throw new Exception('Defined Named ' . $definedName . ' is a formula, not a range or cell.'); + } + + if ($namedRange->getLocalOnly() && $this->getHashCode() !== $namedRange->getWorksheet()->getHashCode()) { + if ($returnNullIfInvalid) { + return null; + } + + throw new Exception( + 'Named range ' . $definedName . ' is not accessible from within sheet ' . $this->getTitle() + ); + } + + return $namedRange; + } + + /** + * Create array from a range of cells. + * + * @param string $definedName The Named Range that should be returned + * @param mixed $nullValue Value returned in the array entry if a cell doesn't exist + * @param bool $calculateFormulas Should formulas be calculated? + * @param bool $formatData Should formatting be applied to cell values? + * @param bool $returnCellRef False - Return a simple array of rows and columns indexed by number counting from zero + * True - Return rows and columns indexed by their actual row and column IDs + * + * @return array + */ + public function namedRangeToArray(string $definedName, $nullValue = null, $calculateFormulas = true, $formatData = true, $returnCellRef = false) + { + $namedRange = $this->validateNamedRange($definedName); + $workSheet = $namedRange->getWorksheet(); + /** @phpstan-ignore-next-line */ + $cellRange = ltrim(substr($namedRange->getValue(), strrpos($namedRange->getValue(), '!')), '!'); + $cellRange = str_replace('$', '', $cellRange); + + return $workSheet->rangeToArray($cellRange, $nullValue, $calculateFormulas, $formatData, $returnCellRef); + } + + /** + * Create array from worksheet. + * + * @param mixed $nullValue Value returned in the array entry if a cell doesn't exist + * @param bool $calculateFormulas Should formulas be calculated? + * @param bool $formatData Should formatting be applied to cell values? + * @param bool $returnCellRef False - Return a simple array of rows and columns indexed by number counting from zero + * True - Return rows and columns indexed by their actual row and column IDs + * + * @return array + */ + public function toArray($nullValue = null, $calculateFormulas = true, $formatData = true, $returnCellRef = false) + { + // Garbage collect... + $this->garbageCollect(); + + // Identify the range that we need to extract from the worksheet + $maxCol = $this->getHighestColumn(); + $maxRow = $this->getHighestRow(); + + // Return + return $this->rangeToArray('A1:' . $maxCol . $maxRow, $nullValue, $calculateFormulas, $formatData, $returnCellRef); + } + + /** + * Get row iterator. + * + * @param int $startRow The row number at which to start iterating + * @param int $endRow The row number at which to stop iterating + * + * @return RowIterator + */ + public function getRowIterator($startRow = 1, $endRow = null) + { + return new RowIterator($this, $startRow, $endRow); + } + + /** + * Get column iterator. + * + * @param string $startColumn The column address at which to start iterating + * @param string $endColumn The column address at which to stop iterating + * + * @return ColumnIterator + */ + public function getColumnIterator($startColumn = 'A', $endColumn = null) + { + return new ColumnIterator($this, $startColumn, $endColumn); + } + + /** + * Run PhpSpreadsheet garbage collector. + * + * @return $this + */ + public function garbageCollect() + { + // Flush cache + $this->cellCollection->get('A1'); + + // Lookup highest column and highest row if cells are cleaned + $colRow = $this->cellCollection->getHighestRowAndColumn(); + $highestRow = $colRow['row']; + $highestColumn = Coordinate::columnIndexFromString($colRow['column']); + + // Loop through column dimensions + foreach ($this->columnDimensions as $dimension) { + $highestColumn = max($highestColumn, Coordinate::columnIndexFromString($dimension->getColumnIndex())); + } + + // Loop through row dimensions + foreach ($this->rowDimensions as $dimension) { + $highestRow = max($highestRow, $dimension->getRowIndex()); + } + + // Cache values + if ($highestColumn < 1) { + $this->cachedHighestColumn = 1; + } else { + $this->cachedHighestColumn = $highestColumn; + } + $this->cachedHighestRow = $highestRow; + + // Return + return $this; + } + + /** + * Get hash code. + * + * @return string Hash code + */ + public function getHashCode() + { + if ($this->dirty) { + $this->hash = md5($this->title . $this->autoFilter . ($this->protection->isProtectionEnabled() ? 't' : 'f') . __CLASS__); + $this->dirty = false; + } + + return $this->hash; + } + + /** + * Extract worksheet title from range. + * + * Example: extractSheetTitle("testSheet!A1") ==> 'A1' + * Example: extractSheetTitle("'testSheet 1'!A1", true) ==> ['testSheet 1', 'A1']; + * + * @param string $range Range to extract title from + * @param bool $returnRange Return range? (see example) + * + * @return mixed + */ + public static function extractSheetTitle($range, $returnRange = false) + { + if ($range === null) { + return $returnRange ? [null, null] : null; + } + + // Sheet title included? + if (($sep = strrpos($range, '!')) === false) { + return $returnRange ? ['', $range] : ''; + } + + if ($returnRange) { + return [substr($range, 0, $sep), substr($range, $sep + 1)]; + } + + return substr($range, $sep + 1); + } + + /** + * Get hyperlink. + * + * @param string $cellCoordinate Cell coordinate to get hyperlink for, eg: 'A1' + * + * @return Hyperlink + */ + public function getHyperlink($cellCoordinate) + { + // return hyperlink if we already have one + if (isset($this->hyperlinkCollection[$cellCoordinate])) { + return $this->hyperlinkCollection[$cellCoordinate]; + } + + // else create hyperlink + $this->hyperlinkCollection[$cellCoordinate] = new Hyperlink(); + + return $this->hyperlinkCollection[$cellCoordinate]; + } + + /** + * Set hyperlink. + * + * @param string $cellCoordinate Cell coordinate to insert hyperlink, eg: 'A1' + * + * @return $this + */ + public function setHyperlink($cellCoordinate, ?Hyperlink $hyperlink = null) + { + if ($hyperlink === null) { + unset($this->hyperlinkCollection[$cellCoordinate]); + } else { + $this->hyperlinkCollection[$cellCoordinate] = $hyperlink; + } + + return $this; + } + + /** + * Hyperlink at a specific coordinate exists? + * + * @param string $coordinate eg: 'A1' + * + * @return bool + */ + public function hyperlinkExists($coordinate) + { + return isset($this->hyperlinkCollection[$coordinate]); + } + + /** + * Get collection of hyperlinks. + * + * @return Hyperlink[] + */ + public function getHyperlinkCollection() + { + return $this->hyperlinkCollection; + } + + /** + * Get data validation. + * + * @param string $cellCoordinate Cell coordinate to get data validation for, eg: 'A1' + * + * @return DataValidation + */ + public function getDataValidation($cellCoordinate) + { + // return data validation if we already have one + if (isset($this->dataValidationCollection[$cellCoordinate])) { + return $this->dataValidationCollection[$cellCoordinate]; + } + + // else create data validation + $this->dataValidationCollection[$cellCoordinate] = new DataValidation(); + + return $this->dataValidationCollection[$cellCoordinate]; + } + + /** + * Set data validation. + * + * @param string $cellCoordinate Cell coordinate to insert data validation, eg: 'A1' + * + * @return $this + */ + public function setDataValidation($cellCoordinate, ?DataValidation $dataValidation = null) + { + if ($dataValidation === null) { + unset($this->dataValidationCollection[$cellCoordinate]); + } else { + $this->dataValidationCollection[$cellCoordinate] = $dataValidation; + } + + return $this; + } + + /** + * Data validation at a specific coordinate exists? + * + * @param string $coordinate eg: 'A1' + * + * @return bool + */ + public function dataValidationExists($coordinate) + { + return isset($this->dataValidationCollection[$coordinate]); + } + + /** + * Get collection of data validations. + * + * @return DataValidation[] + */ + public function getDataValidationCollection() + { + return $this->dataValidationCollection; + } + + /** + * Accepts a range, returning it as a range that falls within the current highest row and column of the worksheet. + * + * @param string $range + * + * @return string Adjusted range value + */ + public function shrinkRangeToFit($range) + { + $maxCol = $this->getHighestColumn(); + $maxRow = $this->getHighestRow(); + $maxCol = Coordinate::columnIndexFromString($maxCol); + + $rangeBlocks = explode(' ', $range); + foreach ($rangeBlocks as &$rangeSet) { + $rangeBoundaries = Coordinate::getRangeBoundaries($rangeSet); + + if (Coordinate::columnIndexFromString($rangeBoundaries[0][0]) > $maxCol) { + $rangeBoundaries[0][0] = Coordinate::stringFromColumnIndex($maxCol); + } + if ($rangeBoundaries[0][1] > $maxRow) { + $rangeBoundaries[0][1] = $maxRow; + } + if (Coordinate::columnIndexFromString($rangeBoundaries[1][0]) > $maxCol) { + $rangeBoundaries[1][0] = Coordinate::stringFromColumnIndex($maxCol); + } + if ($rangeBoundaries[1][1] > $maxRow) { + $rangeBoundaries[1][1] = $maxRow; + } + $rangeSet = $rangeBoundaries[0][0] . $rangeBoundaries[0][1] . ':' . $rangeBoundaries[1][0] . $rangeBoundaries[1][1]; + } + unset($rangeSet); + + return implode(' ', $rangeBlocks); + } + + /** + * Get tab color. + * + * @return Color + */ + public function getTabColor() + { + if ($this->tabColor === null) { + $this->tabColor = new Color(); + } + + return $this->tabColor; + } + + /** + * Reset tab color. + * + * @return $this + */ + public function resetTabColor() + { + $this->tabColor = null; + + return $this; + } + + /** + * Tab color set? + * + * @return bool + */ + public function isTabColorSet() + { + return $this->tabColor !== null; + } + + /** + * Copy worksheet (!= clone!). + * + * @return static + */ + public function copy() + { + return clone $this; + } + + /** + * Returns a boolean true if the specified row contains no cells. By default, this means that no cell records + * exist in the collection for this row. false will be returned otherwise. + * This rule can be modified by passing a $definitionOfEmptyFlags value: + * 1 - CellIterator::TREAT_NULL_VALUE_AS_EMPTY_CELL If the only cells in the collection are null value + * cells, then the row will be considered empty. + * 2 - CellIterator::TREAT_EMPTY_STRING_AS_EMPTY_CELL If the only cells in the collection are empty + * string value cells, then the row will be considered empty. + * 3 - CellIterator::TREAT_NULL_VALUE_AS_EMPTY_CELL | CellIterator::TREAT_EMPTY_STRING_AS_EMPTY_CELL + * If the only cells in the collection are null value or empty string value cells, then the row + * will be considered empty. + * + * @param int $definitionOfEmptyFlags + * Possible Flag Values are: + * CellIterator::TREAT_NULL_VALUE_AS_EMPTY_CELL + * CellIterator::TREAT_EMPTY_STRING_AS_EMPTY_CELL + */ + public function isEmptyRow(int $rowId, int $definitionOfEmptyFlags = 0): bool + { + try { + $iterator = new RowIterator($this, $rowId, $rowId); + $iterator->seek($rowId); + $row = $iterator->current(); + } catch (Exception $e) { + return true; + } + + return $row->isEmpty($definitionOfEmptyFlags); + } + + /** + * Returns a boolean true if the specified column contains no cells. By default, this means that no cell records + * exist in the collection for this column. false will be returned otherwise. + * This rule can be modified by passing a $definitionOfEmptyFlags value: + * 1 - CellIterator::TREAT_NULL_VALUE_AS_EMPTY_CELL If the only cells in the collection are null value + * cells, then the column will be considered empty. + * 2 - CellIterator::TREAT_EMPTY_STRING_AS_EMPTY_CELL If the only cells in the collection are empty + * string value cells, then the column will be considered empty. + * 3 - CellIterator::TREAT_NULL_VALUE_AS_EMPTY_CELL | CellIterator::TREAT_EMPTY_STRING_AS_EMPTY_CELL + * If the only cells in the collection are null value or empty string value cells, then the column + * will be considered empty. + * + * @param int $definitionOfEmptyFlags + * Possible Flag Values are: + * CellIterator::TREAT_NULL_VALUE_AS_EMPTY_CELL + * CellIterator::TREAT_EMPTY_STRING_AS_EMPTY_CELL + */ + public function isEmptyColumn(string $columnId, int $definitionOfEmptyFlags = 0): bool + { + try { + $iterator = new ColumnIterator($this, $columnId, $columnId); + $iterator->seek($columnId); + $column = $iterator->current(); + } catch (Exception $e) { + return true; + } + + return $column->isEmpty($definitionOfEmptyFlags); + } + + /** + * Implement PHP __clone to create a deep clone, not just a shallow copy. + */ + public function __clone() + { + // @phpstan-ignore-next-line + foreach ($this as $key => $val) { + if ($key == 'parent') { + continue; + } + + if (is_object($val) || (is_array($val))) { + if ($key == 'cellCollection') { + $newCollection = $this->cellCollection->cloneCellCollection($this); + $this->cellCollection = $newCollection; + } elseif ($key == 'drawingCollection') { + $currentCollection = $this->drawingCollection; + $this->drawingCollection = new ArrayObject(); + foreach ($currentCollection as $item) { + if (is_object($item)) { + $newDrawing = clone $item; + $newDrawing->setWorksheet($this); + } + } + } elseif (($key == 'autoFilter') && ($this->autoFilter instanceof AutoFilter)) { + $newAutoFilter = clone $this->autoFilter; + $this->autoFilter = $newAutoFilter; + $this->autoFilter->setParent($this); + } else { + $this->{$key} = unserialize(serialize($val)); + } + } + } + } + + /** + * Define the code name of the sheet. + * + * @param string $codeName Same rule as Title minus space not allowed (but, like Excel, change + * silently space to underscore) + * @param bool $validate False to skip validation of new title. WARNING: This should only be set + * at parse time (by Readers), where titles can be assumed to be valid. + * + * @return $this + */ + public function setCodeName($codeName, $validate = true) + { + // Is this a 'rename' or not? + if ($this->getCodeName() == $codeName) { + return $this; + } + + if ($validate) { + $codeName = str_replace(' ', '_', $codeName); //Excel does this automatically without flinching, we are doing the same + + // Syntax check + // throw an exception if not valid + self::checkSheetCodeName($codeName); + + // We use the same code that setTitle to find a valid codeName else not using a space (Excel don't like) but a '_' + + if ($this->getParent()) { + // Is there already such sheet name? + if ($this->getParent()->sheetCodeNameExists($codeName)) { + // Use name, but append with lowest possible integer + + if (Shared\StringHelper::countCharacters($codeName) > 29) { + $codeName = Shared\StringHelper::substring($codeName, 0, 29); + } + $i = 1; + while ($this->getParent()->sheetCodeNameExists($codeName . '_' . $i)) { + ++$i; + if ($i == 10) { + if (Shared\StringHelper::countCharacters($codeName) > 28) { + $codeName = Shared\StringHelper::substring($codeName, 0, 28); + } + } elseif ($i == 100) { + if (Shared\StringHelper::countCharacters($codeName) > 27) { + $codeName = Shared\StringHelper::substring($codeName, 0, 27); + } + } + } + + $codeName .= '_' . $i; // ok, we have a valid name + } + } + } + + $this->codeName = $codeName; + + return $this; + } + + /** + * Return the code name of the sheet. + * + * @return null|string + */ + public function getCodeName() + { + return $this->codeName; + } + + /** + * Sheet has a code name ? + * + * @return bool + */ + public function hasCodeName() + { + return $this->codeName !== null; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/BaseWriter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/BaseWriter.php new file mode 100644 index 0000000..2ea0ea8 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/BaseWriter.php @@ -0,0 +1,145 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer; + +abstract class BaseWriter implements IWriter +{ + /** + * Write charts that are defined in the workbook? + * Identifies whether the Writer should write definitions for any charts that exist in the PhpSpreadsheet object. + * + * @var bool + */ + protected $includeCharts = false; + + /** + * Pre-calculate formulas + * Forces PhpSpreadsheet to recalculate all formulae in a workbook when saving, so that the pre-calculated values are + * immediately available to MS Excel or other office spreadsheet viewer when opening the file. + * + * @var bool + */ + protected $preCalculateFormulas = true; + + /** + * Use disk caching where possible? + * + * @var bool + */ + private $useDiskCaching = false; + + /** + * Disk caching directory. + * + * @var string + */ + private $diskCachingDirectory = './'; + + /** + * @var resource + */ + protected $fileHandle; + + /** + * @var bool + */ + private $shouldCloseFile; + + public function getIncludeCharts() + { + return $this->includeCharts; + } + + public function setIncludeCharts($includeCharts) + { + $this->includeCharts = (bool) $includeCharts; + + return $this; + } + + public function getPreCalculateFormulas() + { + return $this->preCalculateFormulas; + } + + public function setPreCalculateFormulas($precalculateFormulas) + { + $this->preCalculateFormulas = (bool) $precalculateFormulas; + + return $this; + } + + public function getUseDiskCaching() + { + return $this->useDiskCaching; + } + + public function setUseDiskCaching($useDiskCache, $cacheDirectory = null) + { + $this->useDiskCaching = $useDiskCache; + + if ($cacheDirectory !== null) { + if (is_dir($cacheDirectory)) { + $this->diskCachingDirectory = $cacheDirectory; + } else { + throw new Exception("Directory does not exist: $cacheDirectory"); + } + } + + return $this; + } + + public function getDiskCachingDirectory() + { + return $this->diskCachingDirectory; + } + + protected function processFlags(int $flags): void + { + if (((bool) ($flags & self::SAVE_WITH_CHARTS)) === true) { + $this->setIncludeCharts(true); + } + } + + /** + * Open file handle. + * + * @param resource|string $filename + */ + public function openFileHandle($filename): void + { + if (is_resource($filename)) { + $this->fileHandle = $filename; + $this->shouldCloseFile = false; + + return; + } + + $mode = 'wb'; + $scheme = parse_url($filename, PHP_URL_SCHEME); + if ($scheme === 's3') { + // @codeCoverageIgnoreStart + $mode = 'w'; + // @codeCoverageIgnoreEnd + } + $fileHandle = $filename ? fopen($filename, $mode) : false; + if ($fileHandle === false) { + throw new Exception('Could not open file "' . $filename . '" for writing.'); + } + + $this->fileHandle = $fileHandle; + $this->shouldCloseFile = true; + } + + /** + * Close file handle only if we opened it ourselves. + */ + protected function maybeCloseFileHandle(): void + { + if ($this->shouldCloseFile) { + if (!fclose($this->fileHandle)) { + throw new Exception('Could not close file after writing.'); + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Csv.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Csv.php new file mode 100644 index 0000000..0f385de --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Csv.php @@ -0,0 +1,404 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Spreadsheet; + +class Csv extends BaseWriter +{ + /** + * PhpSpreadsheet object. + * + * @var Spreadsheet + */ + private $spreadsheet; + + /** + * Delimiter. + * + * @var string + */ + private $delimiter = ','; + + /** + * Enclosure. + * + * @var string + */ + private $enclosure = '"'; + + /** + * Line ending. + * + * @var string + */ + private $lineEnding = PHP_EOL; + + /** + * Sheet index to write. + * + * @var int + */ + private $sheetIndex = 0; + + /** + * Whether to write a BOM (for UTF8). + * + * @var bool + */ + private $useBOM = false; + + /** + * Whether to write a Separator line as the first line of the file + * sep=x. + * + * @var bool + */ + private $includeSeparatorLine = false; + + /** + * Whether to write a fully Excel compatible CSV file. + * + * @var bool + */ + private $excelCompatibility = false; + + /** + * Output encoding. + * + * @var string + */ + private $outputEncoding = ''; + + /** + * Create a new CSV. + * + * @param Spreadsheet $spreadsheet Spreadsheet object + */ + public function __construct(Spreadsheet $spreadsheet) + { + $this->spreadsheet = $spreadsheet; + } + + /** + * Save PhpSpreadsheet to file. + * + * @param resource|string $filename + */ + public function save($filename, int $flags = 0): void + { + $this->processFlags($flags); + + // Fetch sheet + $sheet = $this->spreadsheet->getSheet($this->sheetIndex); + + $saveDebugLog = Calculation::getInstance($this->spreadsheet)->getDebugLog()->getWriteDebugLog(); + Calculation::getInstance($this->spreadsheet)->getDebugLog()->setWriteDebugLog(false); + $saveArrayReturnType = Calculation::getArrayReturnType(); + Calculation::setArrayReturnType(Calculation::RETURN_ARRAY_AS_VALUE); + + // Open file + $this->openFileHandle($filename); + + if ($this->excelCompatibility) { + $this->setUseBOM(true); // Enforce UTF-8 BOM Header + $this->setIncludeSeparatorLine(true); // Set separator line + $this->setEnclosure('"'); // Set enclosure to " + $this->setDelimiter(';'); // Set delimiter to a semi-colon + $this->setLineEnding("\r\n"); + } + + if ($this->useBOM) { + // Write the UTF-8 BOM code if required + fwrite($this->fileHandle, "\xEF\xBB\xBF"); + } + + if ($this->includeSeparatorLine) { + // Write the separator line if required + fwrite($this->fileHandle, 'sep=' . $this->getDelimiter() . $this->lineEnding); + } + + // Identify the range that we need to extract from the worksheet + $maxCol = $sheet->getHighestDataColumn(); + $maxRow = $sheet->getHighestDataRow(); + + // Write rows to file + for ($row = 1; $row <= $maxRow; ++$row) { + // Convert the row to an array... + $cellsArray = $sheet->rangeToArray('A' . $row . ':' . $maxCol . $row, '', $this->preCalculateFormulas); + // ... and write to the file + $this->writeLine($this->fileHandle, $cellsArray[0]); + } + + $this->maybeCloseFileHandle(); + Calculation::setArrayReturnType($saveArrayReturnType); + Calculation::getInstance($this->spreadsheet)->getDebugLog()->setWriteDebugLog($saveDebugLog); + } + + /** + * Get delimiter. + * + * @return string + */ + public function getDelimiter() + { + return $this->delimiter; + } + + /** + * Set delimiter. + * + * @param string $delimiter Delimiter, defaults to ',' + * + * @return $this + */ + public function setDelimiter($delimiter) + { + $this->delimiter = $delimiter; + + return $this; + } + + /** + * Get enclosure. + * + * @return string + */ + public function getEnclosure() + { + return $this->enclosure; + } + + /** + * Set enclosure. + * + * @param string $enclosure Enclosure, defaults to " + * + * @return $this + */ + public function setEnclosure($enclosure = '"') + { + $this->enclosure = $enclosure; + + return $this; + } + + /** + * Get line ending. + * + * @return string + */ + public function getLineEnding() + { + return $this->lineEnding; + } + + /** + * Set line ending. + * + * @param string $lineEnding Line ending, defaults to OS line ending (PHP_EOL) + * + * @return $this + */ + public function setLineEnding($lineEnding) + { + $this->lineEnding = $lineEnding; + + return $this; + } + + /** + * Get whether BOM should be used. + * + * @return bool + */ + public function getUseBOM() + { + return $this->useBOM; + } + + /** + * Set whether BOM should be used. + * + * @param bool $useBOM Use UTF-8 byte-order mark? Defaults to false + * + * @return $this + */ + public function setUseBOM($useBOM) + { + $this->useBOM = $useBOM; + + return $this; + } + + /** + * Get whether a separator line should be included. + * + * @return bool + */ + public function getIncludeSeparatorLine() + { + return $this->includeSeparatorLine; + } + + /** + * Set whether a separator line should be included as the first line of the file. + * + * @param bool $includeSeparatorLine Use separator line? Defaults to false + * + * @return $this + */ + public function setIncludeSeparatorLine($includeSeparatorLine) + { + $this->includeSeparatorLine = $includeSeparatorLine; + + return $this; + } + + /** + * Get whether the file should be saved with full Excel Compatibility. + * + * @return bool + */ + public function getExcelCompatibility() + { + return $this->excelCompatibility; + } + + /** + * Set whether the file should be saved with full Excel Compatibility. + * + * @param bool $excelCompatibility Set the file to be written as a fully Excel compatible csv file + * Note that this overrides other settings such as useBOM, enclosure and delimiter + * + * @return $this + */ + public function setExcelCompatibility($excelCompatibility) + { + $this->excelCompatibility = $excelCompatibility; + + return $this; + } + + /** + * Get sheet index. + * + * @return int + */ + public function getSheetIndex() + { + return $this->sheetIndex; + } + + /** + * Set sheet index. + * + * @param int $sheetIndex Sheet index + * + * @return $this + */ + public function setSheetIndex($sheetIndex) + { + $this->sheetIndex = $sheetIndex; + + return $this; + } + + /** + * Get output encoding. + * + * @return string + */ + public function getOutputEncoding() + { + return $this->outputEncoding; + } + + /** + * Set output encoding. + * + * @param string $outputEnconding Output encoding + * + * @return $this + */ + public function setOutputEncoding($outputEnconding) + { + $this->outputEncoding = $outputEnconding; + + return $this; + } + + /** @var bool */ + private $enclosureRequired = true; + + public function setEnclosureRequired(bool $value): self + { + $this->enclosureRequired = $value; + + return $this; + } + + public function getEnclosureRequired(): bool + { + return $this->enclosureRequired; + } + + /** + * Convert boolean to TRUE/FALSE; otherwise return element cast to string. + * + * @param mixed $element + */ + private static function elementToString($element): string + { + if (is_bool($element)) { + return $element ? 'TRUE' : 'FALSE'; + } + + return (string) $element; + } + + /** + * Write line to CSV file. + * + * @param resource $fileHandle PHP filehandle + * @param array $values Array containing values in a row + */ + private function writeLine($fileHandle, array $values): void + { + // No leading delimiter + $delimiter = ''; + + // Build the line + $line = ''; + + foreach ($values as $element) { + $element = self::elementToString($element); + // Add delimiter + $line .= $delimiter; + $delimiter = $this->delimiter; + // Escape enclosures + $enclosure = $this->enclosure; + if ($enclosure) { + // If enclosure is not required, use enclosure only if + // element contains newline, delimiter, or enclosure. + if (!$this->enclosureRequired && strpbrk($element, "$delimiter$enclosure\n") === false) { + $enclosure = ''; + } else { + $element = str_replace($enclosure, $enclosure . $enclosure, $element); + } + } + // Add enclosed string + $line .= $enclosure . $element . $enclosure; + } + + // Add line ending + $line .= $this->lineEnding; + + // Write to file + if ($this->outputEncoding != '') { + $line = mb_convert_encoding($line, $this->outputEncoding); + } + fwrite($fileHandle, $line); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Exception.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Exception.php new file mode 100644 index 0000000..92e6f5f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Exception.php @@ -0,0 +1,9 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; + +class Exception extends PhpSpreadsheetException +{ +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Html.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Html.php new file mode 100644 index 0000000..da32025 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Html.php @@ -0,0 +1,1856 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer; + +use HTMLPurifier; +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Chart\Chart; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\RichText\Run; +use PhpOffice\PhpSpreadsheet\Settings; +use PhpOffice\PhpSpreadsheet\Shared\Drawing as SharedDrawing; +use PhpOffice\PhpSpreadsheet\Shared\File; +use PhpOffice\PhpSpreadsheet\Shared\Font as SharedFont; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Style\Alignment; +use PhpOffice\PhpSpreadsheet\Style\Border; +use PhpOffice\PhpSpreadsheet\Style\Borders; +use PhpOffice\PhpSpreadsheet\Style\Fill; +use PhpOffice\PhpSpreadsheet\Style\Font; +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; +use PhpOffice\PhpSpreadsheet\Style\Style; +use PhpOffice\PhpSpreadsheet\Worksheet\Drawing; +use PhpOffice\PhpSpreadsheet\Worksheet\MemoryDrawing; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class Html extends BaseWriter +{ + /** + * Spreadsheet object. + * + * @var Spreadsheet + */ + protected $spreadsheet; + + /** + * Sheet index to write. + * + * @var null|int + */ + private $sheetIndex = 0; + + /** + * Images root. + * + * @var string + */ + private $imagesRoot = ''; + + /** + * embed images, or link to images. + * + * @var bool + */ + private $embedImages = false; + + /** + * Use inline CSS? + * + * @var bool + */ + private $useInlineCss = false; + + /** + * Use embedded CSS? + * + * @var bool + */ + private $useEmbeddedCSS = true; + + /** + * Array of CSS styles. + * + * @var array + */ + private $cssStyles; + + /** + * Array of column widths in points. + * + * @var array + */ + private $columnWidths; + + /** + * Default font. + * + * @var Font + */ + private $defaultFont; + + /** + * Flag whether spans have been calculated. + * + * @var bool + */ + private $spansAreCalculated = false; + + /** + * Excel cells that should not be written as HTML cells. + * + * @var array + */ + private $isSpannedCell = []; + + /** + * Excel cells that are upper-left corner in a cell merge. + * + * @var array + */ + private $isBaseCell = []; + + /** + * Excel rows that should not be written as HTML rows. + * + * @var array + */ + private $isSpannedRow = []; + + /** + * Is the current writer creating PDF? + * + * @var bool + */ + protected $isPdf = false; + + /** + * Generate the Navigation block. + * + * @var bool + */ + private $generateSheetNavigationBlock = true; + + /** + * Callback for editing generated html. + * + * @var null|callable + */ + private $editHtmlCallback; + + /** + * Create a new HTML. + */ + public function __construct(Spreadsheet $spreadsheet) + { + $this->spreadsheet = $spreadsheet; + $this->defaultFont = $this->spreadsheet->getDefaultStyle()->getFont(); + } + + /** + * Save Spreadsheet to file. + * + * @param resource|string $filename + */ + public function save($filename, int $flags = 0): void + { + $this->processFlags($flags); + + // Open file + $this->openFileHandle($filename); + + // Write html + fwrite($this->fileHandle, $this->generateHTMLAll()); + + // Close file + $this->maybeCloseFileHandle(); + } + + /** + * Save Spreadsheet as html to variable. + * + * @return string + */ + public function generateHtmlAll() + { + // garbage collect + $this->spreadsheet->garbageCollect(); + + $saveDebugLog = Calculation::getInstance($this->spreadsheet)->getDebugLog()->getWriteDebugLog(); + Calculation::getInstance($this->spreadsheet)->getDebugLog()->setWriteDebugLog(false); + $saveArrayReturnType = Calculation::getArrayReturnType(); + Calculation::setArrayReturnType(Calculation::RETURN_ARRAY_AS_VALUE); + + // Build CSS + $this->buildCSS(!$this->useInlineCss); + + $html = ''; + + // Write headers + $html .= $this->generateHTMLHeader(!$this->useInlineCss); + + // Write navigation (tabs) + if ((!$this->isPdf) && ($this->generateSheetNavigationBlock)) { + $html .= $this->generateNavigation(); + } + + // Write data + $html .= $this->generateSheetData(); + + // Write footer + $html .= $this->generateHTMLFooter(); + $callback = $this->editHtmlCallback; + if ($callback) { + $html = $callback($html); + } + + Calculation::setArrayReturnType($saveArrayReturnType); + Calculation::getInstance($this->spreadsheet)->getDebugLog()->setWriteDebugLog($saveDebugLog); + + return $html; + } + + /** + * Set a callback to edit the entire HTML. + * + * The callback must accept the HTML as string as first parameter, + * and it must return the edited HTML as string. + */ + public function setEditHtmlCallback(?callable $callback): void + { + $this->editHtmlCallback = $callback; + } + + const VALIGN_ARR = [ + Alignment::VERTICAL_BOTTOM => 'bottom', + Alignment::VERTICAL_TOP => 'top', + Alignment::VERTICAL_CENTER => 'middle', + Alignment::VERTICAL_JUSTIFY => 'middle', + ]; + + /** + * Map VAlign. + * + * @param string $vAlign Vertical alignment + * + * @return string + */ + private function mapVAlign($vAlign) + { + return array_key_exists($vAlign, self::VALIGN_ARR) ? self::VALIGN_ARR[$vAlign] : 'baseline'; + } + + const HALIGN_ARR = [ + Alignment::HORIZONTAL_LEFT => 'left', + Alignment::HORIZONTAL_RIGHT => 'right', + Alignment::HORIZONTAL_CENTER => 'center', + Alignment::HORIZONTAL_CENTER_CONTINUOUS => 'center', + Alignment::HORIZONTAL_JUSTIFY => 'justify', + ]; + + /** + * Map HAlign. + * + * @param string $hAlign Horizontal alignment + * + * @return string + */ + private function mapHAlign($hAlign) + { + return array_key_exists($hAlign, self::HALIGN_ARR) ? self::HALIGN_ARR[$hAlign] : ''; + } + + const BORDER_ARR = [ + Border::BORDER_NONE => 'none', + Border::BORDER_DASHDOT => '1px dashed', + Border::BORDER_DASHDOTDOT => '1px dotted', + Border::BORDER_DASHED => '1px dashed', + Border::BORDER_DOTTED => '1px dotted', + Border::BORDER_DOUBLE => '3px double', + Border::BORDER_HAIR => '1px solid', + Border::BORDER_MEDIUM => '2px solid', + Border::BORDER_MEDIUMDASHDOT => '2px dashed', + Border::BORDER_MEDIUMDASHDOTDOT => '2px dotted', + Border::BORDER_SLANTDASHDOT => '2px dashed', + Border::BORDER_THICK => '3px solid', + ]; + + /** + * Map border style. + * + * @param int $borderStyle Sheet index + * + * @return string + */ + private function mapBorderStyle($borderStyle) + { + return array_key_exists($borderStyle, self::BORDER_ARR) ? self::BORDER_ARR[$borderStyle] : '1px solid'; + } + + /** + * Get sheet index. + */ + public function getSheetIndex(): ?int + { + return $this->sheetIndex; + } + + /** + * Set sheet index. + * + * @param int $sheetIndex Sheet index + * + * @return $this + */ + public function setSheetIndex($sheetIndex) + { + $this->sheetIndex = $sheetIndex; + + return $this; + } + + /** + * Get sheet index. + * + * @return bool + */ + public function getGenerateSheetNavigationBlock() + { + return $this->generateSheetNavigationBlock; + } + + /** + * Set sheet index. + * + * @param bool $generateSheetNavigationBlock Flag indicating whether the sheet navigation block should be generated or not + * + * @return $this + */ + public function setGenerateSheetNavigationBlock($generateSheetNavigationBlock) + { + $this->generateSheetNavigationBlock = (bool) $generateSheetNavigationBlock; + + return $this; + } + + /** + * Write all sheets (resets sheetIndex to NULL). + * + * @return $this + */ + public function writeAllSheets() + { + $this->sheetIndex = null; + + return $this; + } + + private static function generateMeta($val, $desc) + { + return $val + ? (' <meta name="' . $desc . '" content="' . htmlspecialchars($val, Settings::htmlEntityFlags()) . '" />' . PHP_EOL) + : ''; + } + + public const BODY_LINE = ' <body>' . PHP_EOL; + + /** + * Generate HTML header. + * + * @param bool $includeStyles Include styles? + * + * @return string + */ + public function generateHTMLHeader($includeStyles = false) + { + // Construct HTML + $properties = $this->spreadsheet->getProperties(); + $html = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">' . PHP_EOL; + $html .= '<html xmlns="http://www.w3.org/1999/xhtml">' . PHP_EOL; + $html .= ' <head>' . PHP_EOL; + $html .= ' <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />' . PHP_EOL; + $html .= ' <meta name="generator" content="PhpSpreadsheet, https://github.com/PHPOffice/PhpSpreadsheet" />' . PHP_EOL; + $html .= ' <title>' . htmlspecialchars($properties->getTitle(), Settings::htmlEntityFlags()) . '</title>' . PHP_EOL; + $html .= self::generateMeta($properties->getCreator(), 'author'); + $html .= self::generateMeta($properties->getTitle(), 'title'); + $html .= self::generateMeta($properties->getDescription(), 'description'); + $html .= self::generateMeta($properties->getSubject(), 'subject'); + $html .= self::generateMeta($properties->getKeywords(), 'keywords'); + $html .= self::generateMeta($properties->getCategory(), 'category'); + $html .= self::generateMeta($properties->getCompany(), 'company'); + $html .= self::generateMeta($properties->getManager(), 'manager'); + + $html .= $includeStyles ? $this->generateStyles(true) : $this->generatePageDeclarations(true); + + $html .= ' </head>' . PHP_EOL; + $html .= '' . PHP_EOL; + $html .= self::BODY_LINE; + + return $html; + } + + private function generateSheetPrep() + { + // Ensure that Spans have been calculated? + $this->calculateSpans(); + + // Fetch sheets + if ($this->sheetIndex === null) { + $sheets = $this->spreadsheet->getAllSheets(); + } else { + $sheets = [$this->spreadsheet->getSheet($this->sheetIndex)]; + } + + return $sheets; + } + + private function generateSheetStarts($sheet, $rowMin) + { + // calculate start of <tbody>, <thead> + $tbodyStart = $rowMin; + $theadStart = $theadEnd = 0; // default: no <thead> no </thead> + if ($sheet->getPageSetup()->isRowsToRepeatAtTopSet()) { + $rowsToRepeatAtTop = $sheet->getPageSetup()->getRowsToRepeatAtTop(); + + // we can only support repeating rows that start at top row + if ($rowsToRepeatAtTop[0] == 1) { + $theadStart = $rowsToRepeatAtTop[0]; + $theadEnd = $rowsToRepeatAtTop[1]; + $tbodyStart = $rowsToRepeatAtTop[1] + 1; + } + } + + return [$theadStart, $theadEnd, $tbodyStart]; + } + + private function generateSheetTags($row, $theadStart, $theadEnd, $tbodyStart) + { + // <thead> ? + $startTag = ($row == $theadStart) ? (' <thead>' . PHP_EOL) : ''; + if (!$startTag) { + $startTag = ($row == $tbodyStart) ? (' <tbody>' . PHP_EOL) : ''; + } + $endTag = ($row == $theadEnd) ? (' </thead>' . PHP_EOL) : ''; + $cellType = ($row >= $tbodyStart) ? 'td' : 'th'; + + return [$cellType, $startTag, $endTag]; + } + + /** + * Generate sheet data. + * + * @return string + */ + public function generateSheetData() + { + $sheets = $this->generateSheetPrep(); + + // Construct HTML + $html = ''; + + // Loop all sheets + $sheetId = 0; + foreach ($sheets as $sheet) { + // Write table header + $html .= $this->generateTableHeader($sheet); + + // Get worksheet dimension + [$min, $max] = explode(':', $sheet->calculateWorksheetDataDimension()); + [$minCol, $minRow] = Coordinate::indexesFromString($min); + [$maxCol, $maxRow] = Coordinate::indexesFromString($max); + + [$theadStart, $theadEnd, $tbodyStart] = $this->generateSheetStarts($sheet, $minRow); + + // Loop through cells + $row = $minRow - 1; + while ($row++ < $maxRow) { + [$cellType, $startTag, $endTag] = $this->generateSheetTags($row, $theadStart, $theadEnd, $tbodyStart); + $html .= $startTag; + + // Write row if there are HTML table cells in it + if (!isset($this->isSpannedRow[$sheet->getParent()->getIndex($sheet)][$row])) { + // Start a new rowData + $rowData = []; + // Loop through columns + $column = $minCol; + while ($column <= $maxCol) { + // Cell exists? + $cellAddress = Coordinate::stringFromColumnIndex($column) . $row; + $rowData[$column++] = ($sheet->getCellCollection()->has($cellAddress)) ? $cellAddress : ''; + } + $html .= $this->generateRow($sheet, $rowData, $row - 1, $cellType); + } + + $html .= $endTag; + } + --$row; + $html .= $this->extendRowsForChartsAndImages($sheet, $row); + + // Write table footer + $html .= $this->generateTableFooter(); + // Writing PDF? + if ($this->isPdf && $this->useInlineCss) { + if ($this->sheetIndex === null && $sheetId + 1 < $this->spreadsheet->getSheetCount()) { + $html .= '<div style="page-break-before:always" ></div>'; + } + } + + // Next sheet + ++$sheetId; + } + + return $html; + } + + /** + * Generate sheet tabs. + * + * @return string + */ + public function generateNavigation() + { + // Fetch sheets + $sheets = []; + if ($this->sheetIndex === null) { + $sheets = $this->spreadsheet->getAllSheets(); + } else { + $sheets[] = $this->spreadsheet->getSheet($this->sheetIndex); + } + + // Construct HTML + $html = ''; + + // Only if there are more than 1 sheets + if (count($sheets) > 1) { + // Loop all sheets + $sheetId = 0; + + $html .= '<ul class="navigation">' . PHP_EOL; + + foreach ($sheets as $sheet) { + $html .= ' <li class="sheet' . $sheetId . '"><a href="#sheet' . $sheetId . '">' . $sheet->getTitle() . '</a></li>' . PHP_EOL; + ++$sheetId; + } + + $html .= '</ul>' . PHP_EOL; + } + + return $html; + } + + /** + * Extend Row if chart is placed after nominal end of row. + * This code should be exercised by sample: + * Chart/32_Chart_read_write_PDF.php. + * However, that test is suppressed due to out-of-date + * Jpgraph code issuing warnings. So, don't measure + * code coverage for this function till that is fixed. + * + * @param int $row Row to check for charts + * + * @return array + * + * @codeCoverageIgnore + */ + private function extendRowsForCharts(Worksheet $worksheet, int $row) + { + $rowMax = $row; + $colMax = 'A'; + $anyfound = false; + if ($this->includeCharts) { + foreach ($worksheet->getChartCollection() as $chart) { + if ($chart instanceof Chart) { + $anyfound = true; + $chartCoordinates = $chart->getTopLeftPosition(); + $chartTL = Coordinate::coordinateFromString($chartCoordinates['cell']); + $chartCol = Coordinate::columnIndexFromString($chartTL[0]); + if ($chartTL[1] > $rowMax) { + $rowMax = $chartTL[1]; + if ($chartCol > Coordinate::columnIndexFromString($colMax)) { + $colMax = $chartTL[0]; + } + } + } + } + } + + return [$rowMax, $colMax, $anyfound]; + } + + private function extendRowsForChartsAndImages(Worksheet $worksheet, int $row): string + { + [$rowMax, $colMax, $anyfound] = $this->extendRowsForCharts($worksheet, $row); + + foreach ($worksheet->getDrawingCollection() as $drawing) { + $anyfound = true; + $imageTL = Coordinate::coordinateFromString($drawing->getCoordinates()); + $imageCol = Coordinate::columnIndexFromString($imageTL[0]); + if ($imageTL[1] > $rowMax) { + $rowMax = $imageTL[1]; + if ($imageCol > Coordinate::columnIndexFromString($colMax)) { + $colMax = $imageTL[0]; + } + } + } + + // Don't extend rows if not needed + if ($row === $rowMax || !$anyfound) { + return ''; + } + + $html = ''; + ++$colMax; + ++$row; + while ($row <= $rowMax) { + $html .= '<tr>'; + for ($col = 'A'; $col != $colMax; ++$col) { + $htmlx = $this->writeImageInCell($worksheet, $col . $row); + $htmlx .= $this->includeCharts ? $this->writeChartInCell($worksheet, $col . $row) : ''; + if ($htmlx) { + $html .= "<td class='style0' style='position: relative;'>$htmlx</td>"; + } else { + $html .= "<td class='style0'></td>"; + } + } + ++$row; + $html .= '</tr>' . PHP_EOL; + } + + return $html; + } + + /** + * Convert Windows file name to file protocol URL. + * + * @param string $filename file name on local system + * + * @return string + */ + public static function winFileToUrl($filename) + { + // Windows filename + if (substr($filename, 1, 2) === ':\\') { + $filename = 'file:///' . str_replace('\\', '/', $filename); + } + + return $filename; + } + + /** + * Generate image tag in cell. + * + * @param Worksheet $worksheet \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet + * @param string $coordinates Cell coordinates + * + * @return string + */ + private function writeImageInCell(Worksheet $worksheet, $coordinates) + { + // Construct HTML + $html = ''; + + // Write images + foreach ($worksheet->getDrawingCollection() as $drawing) { + if ($drawing->getCoordinates() != $coordinates) { + continue; + } + $filedesc = $drawing->getDescription(); + $filedesc = $filedesc ? htmlspecialchars($filedesc, ENT_QUOTES) : 'Embedded image'; + if ($drawing instanceof Drawing) { + $filename = $drawing->getPath(); + + // Strip off eventual '.' + $filename = (string) preg_replace('/^[.]/', '', $filename); + + // Prepend images root + $filename = $this->getImagesRoot() . $filename; + + // Strip off eventual '.' if followed by non-/ + $filename = (string) preg_replace('@^[.]([^/])@', '$1', $filename); + + // Convert UTF8 data to PCDATA + $filename = htmlspecialchars($filename, Settings::htmlEntityFlags()); + + $html .= PHP_EOL; + $imageData = self::winFileToUrl($filename); + + if (($this->embedImages && !$this->isPdf) || substr($imageData, 0, 6) === 'zip://') { + $picture = @file_get_contents($filename); + if ($picture !== false) { + $imageDetails = getimagesize($filename); + // base64 encode the binary data + $base64 = base64_encode($picture); + $imageData = 'data:' . $imageDetails['mime'] . ';base64,' . $base64; + } + } + + $html .= '<img style="position: absolute; z-index: 1; left: ' . + $drawing->getOffsetX() . 'px; top: ' . $drawing->getOffsetY() . 'px; width: ' . + $drawing->getWidth() . 'px; height: ' . $drawing->getHeight() . 'px;" src="' . + $imageData . '" alt="' . $filedesc . '" />'; + } elseif ($drawing instanceof MemoryDrawing) { + $imageResource = $drawing->getImageResource(); + if ($imageResource) { + ob_start(); // Let's start output buffering. + // @phpstan-ignore-next-line + imagepng($imageResource); // This will normally output the image, but because of ob_start(), it won't. + $contents = ob_get_contents(); // Instead, output above is saved to $contents + ob_end_clean(); // End the output buffer. + + /** @phpstan-ignore-next-line */ + $dataUri = 'data:image/png;base64,' . base64_encode($contents); + + // Because of the nature of tables, width is more important than height. + // max-width: 100% ensures that image doesnt overflow containing cell + // width: X sets width of supplied image. + // As a result, images bigger than cell will be contained and images smaller will not get stretched + $html .= '<img alt="' . $filedesc . '" src="' . $dataUri . '" style="max-width:100%;width:' . $drawing->getWidth() . 'px;" />'; + } + } + } + + return $html; + } + + /** + * Generate chart tag in cell. + * This code should be exercised by sample: + * Chart/32_Chart_read_write_PDF.php. + * However, that test is suppressed due to out-of-date + * Jpgraph code issuing warnings. So, don't measure + * code coverage for this function till that is fixed. + * + * @codeCoverageIgnore + */ + private function writeChartInCell(Worksheet $worksheet, string $coordinates): string + { + // Construct HTML + $html = ''; + + // Write charts + foreach ($worksheet->getChartCollection() as $chart) { + if ($chart instanceof Chart) { + $chartCoordinates = $chart->getTopLeftPosition(); + if ($chartCoordinates['cell'] == $coordinates) { + $chartFileName = File::sysGetTempDir() . '/' . uniqid('', true) . '.png'; + if (!$chart->render($chartFileName)) { + return ''; + } + + $html .= PHP_EOL; + $imageDetails = getimagesize($chartFileName); + $filedesc = $chart->getTitle(); + $filedesc = $filedesc ? $filedesc->getCaptionText() : ''; + $filedesc = $filedesc ? htmlspecialchars($filedesc, ENT_QUOTES) : 'Embedded chart'; + if ($fp = fopen($chartFileName, 'rb', 0)) { + $picture = fread($fp, filesize($chartFileName)); + fclose($fp); + /** @phpstan-ignore-next-line */ + $base64 = base64_encode($picture); + $imageData = 'data:' . $imageDetails['mime'] . ';base64,' . $base64; + + $html .= '<img style="position: absolute; z-index: 1; left: ' . $chartCoordinates['xOffset'] . 'px; top: ' . $chartCoordinates['yOffset'] . 'px; width: ' . $imageDetails[0] . 'px; height: ' . $imageDetails[1] . 'px;" src="' . $imageData . '" alt="' . $filedesc . '" />' . PHP_EOL; + + unlink($chartFileName); + } + } + } + } + + // Return + return $html; + } + + /** + * Generate CSS styles. + * + * @param bool $generateSurroundingHTML Generate surrounding HTML tags? (&lt;style&gt; and &lt;/style&gt;) + * + * @return string + */ + public function generateStyles($generateSurroundingHTML = true) + { + // Build CSS + $css = $this->buildCSS($generateSurroundingHTML); + + // Construct HTML + $html = ''; + + // Start styles + if ($generateSurroundingHTML) { + $html .= ' <style type="text/css">' . PHP_EOL; + $html .= (array_key_exists('html', $css)) ? (' html { ' . $this->assembleCSS($css['html']) . ' }' . PHP_EOL) : ''; + } + + // Write all other styles + foreach ($css as $styleName => $styleDefinition) { + if ($styleName != 'html') { + $html .= ' ' . $styleName . ' { ' . $this->assembleCSS($styleDefinition) . ' }' . PHP_EOL; + } + } + $html .= $this->generatePageDeclarations(false); + + // End styles + if ($generateSurroundingHTML) { + $html .= ' </style>' . PHP_EOL; + } + + // Return + return $html; + } + + private function buildCssRowHeights(Worksheet $sheet, array &$css, int $sheetIndex): void + { + // Calculate row heights + foreach ($sheet->getRowDimensions() as $rowDimension) { + $row = $rowDimension->getRowIndex() - 1; + + // table.sheetN tr.rowYYYYYY { } + $css['table.sheet' . $sheetIndex . ' tr.row' . $row] = []; + + if ($rowDimension->getRowHeight() != -1) { + $pt_height = $rowDimension->getRowHeight(); + $css['table.sheet' . $sheetIndex . ' tr.row' . $row]['height'] = $pt_height . 'pt'; + } + if ($rowDimension->getVisible() === false) { + $css['table.sheet' . $sheetIndex . ' tr.row' . $row]['display'] = 'none'; + $css['table.sheet' . $sheetIndex . ' tr.row' . $row]['visibility'] = 'hidden'; + } + } + } + + private function buildCssPerSheet(Worksheet $sheet, array &$css): void + { + // Calculate hash code + $sheetIndex = $sheet->getParent()->getIndex($sheet); + + // Build styles + // Calculate column widths + $sheet->calculateColumnWidths(); + + // col elements, initialize + $highestColumnIndex = Coordinate::columnIndexFromString($sheet->getHighestColumn()) - 1; + $column = -1; + while ($column++ < $highestColumnIndex) { + $this->columnWidths[$sheetIndex][$column] = 42; // approximation + $css['table.sheet' . $sheetIndex . ' col.col' . $column]['width'] = '42pt'; + } + + // col elements, loop through columnDimensions and set width + foreach ($sheet->getColumnDimensions() as $columnDimension) { + $column = Coordinate::columnIndexFromString($columnDimension->getColumnIndex()) - 1; + $width = SharedDrawing::cellDimensionToPixels($columnDimension->getWidth(), $this->defaultFont); + $width = SharedDrawing::pixelsToPoints($width); + if ($columnDimension->getVisible() === false) { + $css['table.sheet' . $sheetIndex . ' .column' . $column]['display'] = 'none'; + } + if ($width >= 0) { + $this->columnWidths[$sheetIndex][$column] = $width; + $css['table.sheet' . $sheetIndex . ' col.col' . $column]['width'] = $width . 'pt'; + } + } + + // Default row height + $rowDimension = $sheet->getDefaultRowDimension(); + + // table.sheetN tr { } + $css['table.sheet' . $sheetIndex . ' tr'] = []; + + if ($rowDimension->getRowHeight() == -1) { + $pt_height = SharedFont::getDefaultRowHeightByFont($this->spreadsheet->getDefaultStyle()->getFont()); + } else { + $pt_height = $rowDimension->getRowHeight(); + } + $css['table.sheet' . $sheetIndex . ' tr']['height'] = $pt_height . 'pt'; + if ($rowDimension->getVisible() === false) { + $css['table.sheet' . $sheetIndex . ' tr']['display'] = 'none'; + $css['table.sheet' . $sheetIndex . ' tr']['visibility'] = 'hidden'; + } + + $this->buildCssRowHeights($sheet, $css, $sheetIndex); + } + + /** + * Build CSS styles. + * + * @param bool $generateSurroundingHTML Generate surrounding HTML style? (html { }) + * + * @return array + */ + public function buildCSS($generateSurroundingHTML = true) + { + // Cached? + if ($this->cssStyles !== null) { + return $this->cssStyles; + } + + // Ensure that spans have been calculated + $this->calculateSpans(); + + // Construct CSS + $css = []; + + // Start styles + if ($generateSurroundingHTML) { + // html { } + $css['html']['font-family'] = 'Calibri, Arial, Helvetica, sans-serif'; + $css['html']['font-size'] = '11pt'; + $css['html']['background-color'] = 'white'; + } + + // CSS for comments as found in LibreOffice + $css['a.comment-indicator:hover + div.comment'] = [ + 'background' => '#ffd', + 'position' => 'absolute', + 'display' => 'block', + 'border' => '1px solid black', + 'padding' => '0.5em', + ]; + + $css['a.comment-indicator'] = [ + 'background' => 'red', + 'display' => 'inline-block', + 'border' => '1px solid black', + 'width' => '0.5em', + 'height' => '0.5em', + ]; + + $css['div.comment']['display'] = 'none'; + + // table { } + $css['table']['border-collapse'] = 'collapse'; + + // .b {} + $css['.b']['text-align'] = 'center'; // BOOL + + // .e {} + $css['.e']['text-align'] = 'center'; // ERROR + + // .f {} + $css['.f']['text-align'] = 'right'; // FORMULA + + // .inlineStr {} + $css['.inlineStr']['text-align'] = 'left'; // INLINE + + // .n {} + $css['.n']['text-align'] = 'right'; // NUMERIC + + // .s {} + $css['.s']['text-align'] = 'left'; // STRING + + // Calculate cell style hashes + foreach ($this->spreadsheet->getCellXfCollection() as $index => $style) { + $css['td.style' . $index] = $this->createCSSStyle($style); + $css['th.style' . $index] = $this->createCSSStyle($style); + } + + // Fetch sheets + $sheets = []; + if ($this->sheetIndex === null) { + $sheets = $this->spreadsheet->getAllSheets(); + } else { + $sheets[] = $this->spreadsheet->getSheet($this->sheetIndex); + } + + // Build styles per sheet + foreach ($sheets as $sheet) { + $this->buildCssPerSheet($sheet, $css); + } + + // Cache + if ($this->cssStyles === null) { + $this->cssStyles = $css; + } + + // Return + return $css; + } + + /** + * Create CSS style. + * + * @return array + */ + private function createCSSStyle(Style $style) + { + // Create CSS + return array_merge( + $this->createCSSStyleAlignment($style->getAlignment()), + $this->createCSSStyleBorders($style->getBorders()), + $this->createCSSStyleFont($style->getFont()), + $this->createCSSStyleFill($style->getFill()) + ); + } + + /** + * Create CSS style. + * + * @return array + */ + private function createCSSStyleAlignment(Alignment $alignment) + { + // Construct CSS + $css = []; + + // Create CSS + $css['vertical-align'] = $this->mapVAlign($alignment->getVertical()); + $textAlign = $this->mapHAlign($alignment->getHorizontal()); + if ($textAlign) { + $css['text-align'] = $textAlign; + if (in_array($textAlign, ['left', 'right'])) { + $css['padding-' . $textAlign] = (string) ((int) $alignment->getIndent() * 9) . 'px'; + } + } + + return $css; + } + + /** + * Create CSS style. + * + * @return array + */ + private function createCSSStyleFont(Font $font) + { + // Construct CSS + $css = []; + + // Create CSS + if ($font->getBold()) { + $css['font-weight'] = 'bold'; + } + if ($font->getUnderline() != Font::UNDERLINE_NONE && $font->getStrikethrough()) { + $css['text-decoration'] = 'underline line-through'; + } elseif ($font->getUnderline() != Font::UNDERLINE_NONE) { + $css['text-decoration'] = 'underline'; + } elseif ($font->getStrikethrough()) { + $css['text-decoration'] = 'line-through'; + } + if ($font->getItalic()) { + $css['font-style'] = 'italic'; + } + + $css['color'] = '#' . $font->getColor()->getRGB(); + $css['font-family'] = '\'' . $font->getName() . '\''; + $css['font-size'] = $font->getSize() . 'pt'; + + return $css; + } + + /** + * Create CSS style. + * + * @param Borders $borders Borders + * + * @return array + */ + private function createCSSStyleBorders(Borders $borders) + { + // Construct CSS + $css = []; + + // Create CSS + $css['border-bottom'] = $this->createCSSStyleBorder($borders->getBottom()); + $css['border-top'] = $this->createCSSStyleBorder($borders->getTop()); + $css['border-left'] = $this->createCSSStyleBorder($borders->getLeft()); + $css['border-right'] = $this->createCSSStyleBorder($borders->getRight()); + + return $css; + } + + /** + * Create CSS style. + * + * @param Border $border Border + * + * @return string + */ + private function createCSSStyleBorder(Border $border) + { + // Create CSS - add !important to non-none border styles for merged cells + $borderStyle = $this->mapBorderStyle($border->getBorderStyle()); + + return $borderStyle . ' #' . $border->getColor()->getRGB() . (($borderStyle == 'none') ? '' : ' !important'); + } + + /** + * Create CSS style (Fill). + * + * @param Fill $fill Fill + * + * @return array + */ + private function createCSSStyleFill(Fill $fill) + { + // Construct HTML + $css = []; + + // Create CSS + $value = $fill->getFillType() == Fill::FILL_NONE ? + 'white' : '#' . $fill->getStartColor()->getRGB(); + $css['background-color'] = $value; + + return $css; + } + + /** + * Generate HTML footer. + */ + public function generateHTMLFooter() + { + // Construct HTML + $html = ''; + $html .= ' </body>' . PHP_EOL; + $html .= '</html>' . PHP_EOL; + + return $html; + } + + private function generateTableTagInline(Worksheet $worksheet, $id) + { + $style = isset($this->cssStyles['table']) ? + $this->assembleCSS($this->cssStyles['table']) : ''; + + $prntgrid = $worksheet->getPrintGridlines(); + $viewgrid = $this->isPdf ? $prntgrid : $worksheet->getShowGridlines(); + if ($viewgrid && $prntgrid) { + $html = " <table border='1' cellpadding='1' $id cellspacing='1' style='$style' class='gridlines gridlinesp'>" . PHP_EOL; + } elseif ($viewgrid) { + $html = " <table border='0' cellpadding='0' $id cellspacing='0' style='$style' class='gridlines'>" . PHP_EOL; + } elseif ($prntgrid) { + $html = " <table border='0' cellpadding='0' $id cellspacing='0' style='$style' class='gridlinesp'>" . PHP_EOL; + } else { + $html = " <table border='0' cellpadding='1' $id cellspacing='0' style='$style'>" . PHP_EOL; + } + + return $html; + } + + private function generateTableTag(Worksheet $worksheet, $id, &$html, $sheetIndex): void + { + if (!$this->useInlineCss) { + $gridlines = $worksheet->getShowGridlines() ? ' gridlines' : ''; + $gridlinesp = $worksheet->getPrintGridlines() ? ' gridlinesp' : ''; + $html .= " <table border='0' cellpadding='0' cellspacing='0' $id class='sheet$sheetIndex$gridlines$gridlinesp'>" . PHP_EOL; + } else { + $html .= $this->generateTableTagInline($worksheet, $id); + } + } + + /** + * Generate table header. + * + * @param Worksheet $worksheet The worksheet for the table we are writing + * @param bool $showid whether or not to add id to table tag + * + * @return string + */ + private function generateTableHeader(Worksheet $worksheet, $showid = true) + { + $sheetIndex = $worksheet->getParent()->getIndex($worksheet); + + // Construct HTML + $html = ''; + $id = $showid ? "id='sheet$sheetIndex'" : ''; + if ($showid) { + $html .= "<div style='page: page$sheetIndex'>\n"; + } else { + $html .= "<div style='page: page$sheetIndex' class='scrpgbrk'>\n"; + } + + $this->generateTableTag($worksheet, $id, $html, $sheetIndex); + + // Write <col> elements + $highestColumnIndex = Coordinate::columnIndexFromString($worksheet->getHighestColumn()) - 1; + $i = -1; + while ($i++ < $highestColumnIndex) { + if (!$this->useInlineCss) { + $html .= ' <col class="col' . $i . '" />' . PHP_EOL; + } else { + $style = isset($this->cssStyles['table.sheet' . $sheetIndex . ' col.col' . $i]) ? + $this->assembleCSS($this->cssStyles['table.sheet' . $sheetIndex . ' col.col' . $i]) : ''; + $html .= ' <col style="' . $style . '" />' . PHP_EOL; + } + } + + return $html; + } + + /** + * Generate table footer. + */ + private function generateTableFooter() + { + return ' </tbody></table>' . PHP_EOL . '</div>' . PHP_EOL; + } + + /** + * Generate row start. + * + * @param int $sheetIndex Sheet index (0-based) + * @param int $row row number + * + * @return string + */ + private function generateRowStart(Worksheet $worksheet, $sheetIndex, $row) + { + $html = ''; + if (count($worksheet->getBreaks()) > 0) { + $breaks = $worksheet->getBreaks(); + + // check if a break is needed before this row + if (isset($breaks['A' . $row])) { + // close table: </table> + $html .= $this->generateTableFooter(); + if ($this->isPdf && $this->useInlineCss) { + $html .= '<div style="page-break-before:always" />'; + } + + // open table again: <table> + <col> etc. + $html .= $this->generateTableHeader($worksheet, false); + $html .= '<tbody>' . PHP_EOL; + } + } + + // Write row start + if (!$this->useInlineCss) { + $html .= ' <tr class="row' . $row . '">' . PHP_EOL; + } else { + $style = isset($this->cssStyles['table.sheet' . $sheetIndex . ' tr.row' . $row]) + ? $this->assembleCSS($this->cssStyles['table.sheet' . $sheetIndex . ' tr.row' . $row]) : ''; + + $html .= ' <tr style="' . $style . '">' . PHP_EOL; + } + + return $html; + } + + private function generateRowCellCss(Worksheet $worksheet, $cellAddress, $row, $columnNumber) + { + $cell = ($cellAddress > '') ? $worksheet->getCellCollection()->get($cellAddress) : ''; + $coordinate = Coordinate::stringFromColumnIndex($columnNumber + 1) . ($row + 1); + if (!$this->useInlineCss) { + $cssClass = 'column' . $columnNumber; + } else { + $cssClass = []; + // The statements below do nothing. + // Commenting out the code rather than deleting it + // in case someone can figure out what their intent was. + //if ($cellType == 'th') { + // if (isset($this->cssStyles['table.sheet' . $sheetIndex . ' th.column' . $colNum])) { + // $this->cssStyles['table.sheet' . $sheetIndex . ' th.column' . $colNum]; + // } + //} else { + // if (isset($this->cssStyles['table.sheet' . $sheetIndex . ' td.column' . $colNum])) { + // $this->cssStyles['table.sheet' . $sheetIndex . ' td.column' . $colNum]; + // } + //} + // End of mystery statements. + } + + return [$cell, $cssClass, $coordinate]; + } + + private function generateRowCellDataValueRich($cell, &$cellData): void + { + // Loop through rich text elements + $elements = $cell->getValue()->getRichTextElements(); + foreach ($elements as $element) { + // Rich text start? + if ($element instanceof Run) { + $cellData .= '<span style="' . $this->assembleCSS($this->createCSSStyleFont($element->getFont())) . '">'; + + $cellEnd = ''; + if ($element->getFont()->getSuperscript()) { + $cellData .= '<sup>'; + $cellEnd = '</sup>'; + } elseif ($element->getFont()->getSubscript()) { + $cellData .= '<sub>'; + $cellEnd = '</sub>'; + } + + // Convert UTF8 data to PCDATA + $cellText = $element->getText(); + $cellData .= htmlspecialchars($cellText, Settings::htmlEntityFlags()); + + $cellData .= $cellEnd; + + $cellData .= '</span>'; + } else { + // Convert UTF8 data to PCDATA + $cellText = $element->getText(); + $cellData .= htmlspecialchars($cellText, Settings::htmlEntityFlags()); + } + } + } + + private function generateRowCellDataValue(Worksheet $worksheet, $cell, &$cellData): void + { + if ($cell->getValue() instanceof RichText) { + $this->generateRowCellDataValueRich($cell, $cellData); + } else { + $origData = $this->preCalculateFormulas ? $cell->getCalculatedValue() : $cell->getValue(); + $formatCode = $worksheet->getParent()->getCellXfByIndex($cell->getXfIndex())->getNumberFormat()->getFormatCode(); + if ($formatCode !== null) { + $cellData = NumberFormat::toFormattedString( + $origData, + $formatCode, + [$this, 'formatColor'] + ); + } + + if ($cellData === $origData) { + $cellData = htmlspecialchars($cellData ?? '', Settings::htmlEntityFlags()); + } + if ($worksheet->getParent()->getCellXfByIndex($cell->getXfIndex())->getFont()->getSuperscript()) { + $cellData = '<sup>' . $cellData . '</sup>'; + } elseif ($worksheet->getParent()->getCellXfByIndex($cell->getXfIndex())->getFont()->getSubscript()) { + $cellData = '<sub>' . $cellData . '</sub>'; + } + } + } + + private function generateRowCellData(Worksheet $worksheet, $cell, &$cssClass, $cellType) + { + $cellData = '&nbsp;'; + if ($cell instanceof Cell) { + $cellData = ''; + // Don't know what this does, and no test cases. + //if ($cell->getParent() === null) { + // $cell->attach($worksheet); + //} + // Value + $this->generateRowCellDataValue($worksheet, $cell, $cellData); + + // Converts the cell content so that spaces occuring at beginning of each new line are replaced by &nbsp; + // Example: " Hello\n to the world" is converted to "&nbsp;&nbsp;Hello\n&nbsp;to the world" + $cellData = (string) preg_replace('/(?m)(?:^|\\G) /', '&nbsp;', $cellData); + + // convert newline "\n" to '<br>' + $cellData = nl2br($cellData); + + // Extend CSS class? + if (!$this->useInlineCss) { + $cssClass .= ' style' . $cell->getXfIndex(); + $cssClass .= ' ' . $cell->getDataType(); + } else { + if ($cellType == 'th') { + if (isset($this->cssStyles['th.style' . $cell->getXfIndex()])) { + $cssClass = array_merge($cssClass, $this->cssStyles['th.style' . $cell->getXfIndex()]); + } + } else { + if (isset($this->cssStyles['td.style' . $cell->getXfIndex()])) { + $cssClass = array_merge($cssClass, $this->cssStyles['td.style' . $cell->getXfIndex()]); + } + } + + // General horizontal alignment: Actual horizontal alignment depends on dataType + $sharedStyle = $worksheet->getParent()->getCellXfByIndex($cell->getXfIndex()); + if ( + $sharedStyle->getAlignment()->getHorizontal() == Alignment::HORIZONTAL_GENERAL + && isset($this->cssStyles['.' . $cell->getDataType()]['text-align']) + ) { + $cssClass['text-align'] = $this->cssStyles['.' . $cell->getDataType()]['text-align']; + } + } + } else { + // Use default borders for empty cell + if (is_string($cssClass)) { + $cssClass .= ' style0'; + } + } + + return $cellData; + } + + private function generateRowIncludeCharts(Worksheet $worksheet, $coordinate) + { + return $this->includeCharts ? $this->writeChartInCell($worksheet, $coordinate) : ''; + } + + private function generateRowSpans($html, $rowSpan, $colSpan) + { + $html .= ($colSpan > 1) ? (' colspan="' . $colSpan . '"') : ''; + $html .= ($rowSpan > 1) ? (' rowspan="' . $rowSpan . '"') : ''; + + return $html; + } + + private function generateRowWriteCell(&$html, Worksheet $worksheet, $coordinate, $cellType, $cellData, $colSpan, $rowSpan, $cssClass, $colNum, $sheetIndex, $row): void + { + // Image? + $htmlx = $this->writeImageInCell($worksheet, $coordinate); + // Chart? + $htmlx .= $this->generateRowIncludeCharts($worksheet, $coordinate); + // Column start + $html .= ' <' . $cellType; + if (!$this->useInlineCss && !$this->isPdf) { + $html .= ' class="' . $cssClass . '"'; + if ($htmlx) { + $html .= " style='position: relative;'"; + } + } else { + //** Necessary redundant code for the sake of \PhpOffice\PhpSpreadsheet\Writer\Pdf ** + // We must explicitly write the width of the <td> element because TCPDF + // does not recognize e.g. <col style="width:42pt"> + if ($this->useInlineCss) { + $xcssClass = $cssClass; + } else { + $html .= ' class="' . $cssClass . '"'; + $xcssClass = []; + } + $width = 0; + $i = $colNum - 1; + $e = $colNum + $colSpan - 1; + while ($i++ < $e) { + if (isset($this->columnWidths[$sheetIndex][$i])) { + $width += $this->columnWidths[$sheetIndex][$i]; + } + } + $xcssClass['width'] = $width . 'pt'; + + // We must also explicitly write the height of the <td> element because TCPDF + // does not recognize e.g. <tr style="height:50pt"> + if (isset($this->cssStyles['table.sheet' . $sheetIndex . ' tr.row' . $row]['height'])) { + $height = $this->cssStyles['table.sheet' . $sheetIndex . ' tr.row' . $row]['height']; + $xcssClass['height'] = $height; + } + //** end of redundant code ** + + if ($htmlx) { + $xcssClass['position'] = 'relative'; + } + $html .= ' style="' . $this->assembleCSS($xcssClass) . '"'; + } + $html = $this->generateRowSpans($html, $rowSpan, $colSpan); + + $html .= '>'; + $html .= $htmlx; + + $html .= $this->writeComment($worksheet, $coordinate); + + // Cell data + $html .= $cellData; + + // Column end + $html .= '</' . $cellType . '>' . PHP_EOL; + } + + /** + * Generate row. + * + * @param array $values Array containing cells in a row + * @param int $row Row number (0-based) + * @param string $cellType eg: 'td' + * + * @return string + */ + private function generateRow(Worksheet $worksheet, array $values, $row, $cellType) + { + // Sheet index + $sheetIndex = $worksheet->getParent()->getIndex($worksheet); + $html = $this->generateRowStart($worksheet, $sheetIndex, $row); + + // Write cells + $colNum = 0; + foreach ($values as $cellAddress) { + [$cell, $cssClass, $coordinate] = $this->generateRowCellCss($worksheet, $cellAddress, $row, $colNum); + + $colSpan = 1; + $rowSpan = 1; + + // Cell Data + $cellData = $this->generateRowCellData($worksheet, $cell, $cssClass, $cellType); + + // Hyperlink? + if ($worksheet->hyperlinkExists($coordinate) && !$worksheet->getHyperlink($coordinate)->isInternal()) { + $cellData = '<a href="' . htmlspecialchars($worksheet->getHyperlink($coordinate)->getUrl(), Settings::htmlEntityFlags()) . '" title="' . htmlspecialchars($worksheet->getHyperlink($coordinate)->getTooltip(), Settings::htmlEntityFlags()) . '">' . $cellData . '</a>'; + } + + // Should the cell be written or is it swallowed by a rowspan or colspan? + $writeCell = !(isset($this->isSpannedCell[$worksheet->getParent()->getIndex($worksheet)][$row + 1][$colNum]) + && $this->isSpannedCell[$worksheet->getParent()->getIndex($worksheet)][$row + 1][$colNum]); + + // Colspan and Rowspan + $colspan = 1; + $rowspan = 1; + if (isset($this->isBaseCell[$worksheet->getParent()->getIndex($worksheet)][$row + 1][$colNum])) { + $spans = $this->isBaseCell[$worksheet->getParent()->getIndex($worksheet)][$row + 1][$colNum]; + $rowSpan = $spans['rowspan']; + $colSpan = $spans['colspan']; + + // Also apply style from last cell in merge to fix borders - + // relies on !important for non-none border declarations in createCSSStyleBorder + $endCellCoord = Coordinate::stringFromColumnIndex($colNum + $colSpan) . ($row + $rowSpan); + if (!$this->useInlineCss) { + $cssClass .= ' style' . $worksheet->getCell($endCellCoord)->getXfIndex(); + } + } + + // Write + if ($writeCell) { + $this->generateRowWriteCell($html, $worksheet, $coordinate, $cellType, $cellData, $colSpan, $rowSpan, $cssClass, $colNum, $sheetIndex, $row); + } + + // Next column + ++$colNum; + } + + // Write row end + $html .= ' </tr>' . PHP_EOL; + + // Return + return $html; + } + + /** + * Takes array where of CSS properties / values and converts to CSS string. + * + * @return string + */ + private function assembleCSS(array $values = []) + { + $pairs = []; + foreach ($values as $property => $value) { + $pairs[] = $property . ':' . $value; + } + $string = implode('; ', $pairs); + + return $string; + } + + /** + * Get images root. + * + * @return string + */ + public function getImagesRoot() + { + return $this->imagesRoot; + } + + /** + * Set images root. + * + * @param string $imagesRoot + * + * @return $this + */ + public function setImagesRoot($imagesRoot) + { + $this->imagesRoot = $imagesRoot; + + return $this; + } + + /** + * Get embed images. + * + * @return bool + */ + public function getEmbedImages() + { + return $this->embedImages; + } + + /** + * Set embed images. + * + * @param bool $embedImages + * + * @return $this + */ + public function setEmbedImages($embedImages) + { + $this->embedImages = $embedImages; + + return $this; + } + + /** + * Get use inline CSS? + * + * @return bool + */ + public function getUseInlineCss() + { + return $this->useInlineCss; + } + + /** + * Set use inline CSS? + * + * @param bool $useInlineCss + * + * @return $this + */ + public function setUseInlineCss($useInlineCss) + { + $this->useInlineCss = $useInlineCss; + + return $this; + } + + /** + * Get use embedded CSS? + * + * @return bool + * + * @codeCoverageIgnore + * + * @deprecated no longer used + */ + public function getUseEmbeddedCSS() + { + return $this->useEmbeddedCSS; + } + + /** + * Set use embedded CSS? + * + * @param bool $useEmbeddedCSS + * + * @return $this + * + * @codeCoverageIgnore + * + * @deprecated no longer used + */ + public function setUseEmbeddedCSS($useEmbeddedCSS) + { + $this->useEmbeddedCSS = $useEmbeddedCSS; + + return $this; + } + + /** + * Add color to formatted string as inline style. + * + * @param string $value Plain formatted value without color + * @param string $format Format code + * + * @return string + */ + public function formatColor($value, $format) + { + // Color information, e.g. [Red] is always at the beginning + $color = null; // initialize + $matches = []; + + $color_regex = '/^\\[[a-zA-Z]+\\]/'; + if (preg_match($color_regex, $format, $matches)) { + $color = str_replace(['[', ']'], '', $matches[0]); + $color = strtolower($color); + } + + // convert to PCDATA + $result = htmlspecialchars($value, Settings::htmlEntityFlags()); + + // color span tag + if ($color !== null) { + $result = '<span style="color:' . $color . '">' . $result . '</span>'; + } + + return $result; + } + + /** + * Calculate information about HTML colspan and rowspan which is not always the same as Excel's. + */ + private function calculateSpans(): void + { + if ($this->spansAreCalculated) { + return; + } + // Identify all cells that should be omitted in HTML due to cell merge. + // In HTML only the upper-left cell should be written and it should have + // appropriate rowspan / colspan attribute + $sheetIndexes = $this->sheetIndex !== null ? + [$this->sheetIndex] : range(0, $this->spreadsheet->getSheetCount() - 1); + + foreach ($sheetIndexes as $sheetIndex) { + $sheet = $this->spreadsheet->getSheet($sheetIndex); + + $candidateSpannedRow = []; + + // loop through all Excel merged cells + foreach ($sheet->getMergeCells() as $cells) { + [$cells] = Coordinate::splitRange($cells); + $first = $cells[0]; + $last = $cells[1]; + + [$fc, $fr] = Coordinate::indexesFromString($first); + $fc = $fc - 1; + + [$lc, $lr] = Coordinate::indexesFromString($last); + $lc = $lc - 1; + + // loop through the individual cells in the individual merge + $r = $fr - 1; + while ($r++ < $lr) { + // also, flag this row as a HTML row that is candidate to be omitted + $candidateSpannedRow[$r] = $r; + + $c = $fc - 1; + while ($c++ < $lc) { + if (!($c == $fc && $r == $fr)) { + // not the upper-left cell (should not be written in HTML) + $this->isSpannedCell[$sheetIndex][$r][$c] = [ + 'baseCell' => [$fr, $fc], + ]; + } else { + // upper-left is the base cell that should hold the colspan/rowspan attribute + $this->isBaseCell[$sheetIndex][$r][$c] = [ + 'xlrowspan' => $lr - $fr + 1, // Excel rowspan + 'rowspan' => $lr - $fr + 1, // HTML rowspan, value may change + 'xlcolspan' => $lc - $fc + 1, // Excel colspan + 'colspan' => $lc - $fc + 1, // HTML colspan, value may change + ]; + } + } + } + } + + $this->calculateSpansOmitRows($sheet, $sheetIndex, $candidateSpannedRow); + + // TODO: Same for columns + } + + // We have calculated the spans + $this->spansAreCalculated = true; + } + + private function calculateSpansOmitRows($sheet, $sheetIndex, $candidateSpannedRow): void + { + // Identify which rows should be omitted in HTML. These are the rows where all the cells + // participate in a merge and the where base cells are somewhere above. + $countColumns = Coordinate::columnIndexFromString($sheet->getHighestColumn()); + foreach ($candidateSpannedRow as $rowIndex) { + if (isset($this->isSpannedCell[$sheetIndex][$rowIndex])) { + if (count($this->isSpannedCell[$sheetIndex][$rowIndex]) == $countColumns) { + $this->isSpannedRow[$sheetIndex][$rowIndex] = $rowIndex; + } + } + } + + // For each of the omitted rows we found above, the affected rowspans should be subtracted by 1 + if (isset($this->isSpannedRow[$sheetIndex])) { + foreach ($this->isSpannedRow[$sheetIndex] as $rowIndex) { + $adjustedBaseCells = []; + $c = -1; + $e = $countColumns - 1; + while ($c++ < $e) { + $baseCell = $this->isSpannedCell[$sheetIndex][$rowIndex][$c]['baseCell']; + + if (!in_array($baseCell, $adjustedBaseCells, true)) { + // subtract rowspan by 1 + --$this->isBaseCell[$sheetIndex][$baseCell[0]][$baseCell[1]]['rowspan']; + $adjustedBaseCells[] = $baseCell; + } + } + } + } + } + + /** + * Write a comment in the same format as LibreOffice. + * + * @see https://github.com/LibreOffice/core/blob/9fc9bf3240f8c62ad7859947ab8a033ac1fe93fa/sc/source/filter/html/htmlexp.cxx#L1073-L1092 + * + * @param string $coordinate + * + * @return string + */ + private function writeComment(Worksheet $worksheet, $coordinate) + { + $result = ''; + if (!$this->isPdf && isset($worksheet->getComments()[$coordinate])) { + $sanitizer = new HTMLPurifier(); + $cachePath = File::sysGetTempDir() . '/phpsppur'; + if (is_dir($cachePath) || mkdir($cachePath)) { + $sanitizer->config->set('Cache.SerializerPath', $cachePath); + } + $sanitizedString = $sanitizer->purify($worksheet->getComment($coordinate)->getText()->getPlainText()); + if ($sanitizedString !== '') { + $result .= '<a class="comment-indicator"></a>'; + $result .= '<div class="comment">' . nl2br($sanitizedString) . '</div>'; + $result .= PHP_EOL; + } + } + + return $result; + } + + public function getOrientation(): ?string + { + return null; + } + + /** + * Generate @page declarations. + * + * @param bool $generateSurroundingHTML + * + * @return string + */ + private function generatePageDeclarations($generateSurroundingHTML) + { + // Ensure that Spans have been calculated? + $this->calculateSpans(); + + // Fetch sheets + $sheets = []; + if ($this->sheetIndex === null) { + $sheets = $this->spreadsheet->getAllSheets(); + } else { + $sheets[] = $this->spreadsheet->getSheet($this->sheetIndex); + } + + // Construct HTML + $htmlPage = $generateSurroundingHTML ? ('<style type="text/css">' . PHP_EOL) : ''; + + // Loop all sheets + $sheetId = 0; + foreach ($sheets as $worksheet) { + $htmlPage .= "@page page$sheetId { "; + $left = StringHelper::formatNumber($worksheet->getPageMargins()->getLeft()) . 'in; '; + $htmlPage .= 'margin-left: ' . $left; + $right = StringHelper::FormatNumber($worksheet->getPageMargins()->getRight()) . 'in; '; + $htmlPage .= 'margin-right: ' . $right; + $top = StringHelper::FormatNumber($worksheet->getPageMargins()->getTop()) . 'in; '; + $htmlPage .= 'margin-top: ' . $top; + $bottom = StringHelper::FormatNumber($worksheet->getPageMargins()->getBottom()) . 'in; '; + $htmlPage .= 'margin-bottom: ' . $bottom; + $orientation = $this->getOrientation() ?? $worksheet->getPageSetup()->getOrientation(); + if ($orientation === \PhpOffice\PhpSpreadsheet\Worksheet\PageSetup::ORIENTATION_LANDSCAPE) { + $htmlPage .= 'size: landscape; '; + } elseif ($orientation === \PhpOffice\PhpSpreadsheet\Worksheet\PageSetup::ORIENTATION_PORTRAIT) { + $htmlPage .= 'size: portrait; '; + } + $htmlPage .= "}\n"; + ++$sheetId; + } + $htmlPage .= <<<EOF +.navigation {page-break-after: always;} +.scrpgbrk, div + div {page-break-before: always;} +@media screen { + .gridlines td {border: 1px solid black;} + .gridlines th {border: 1px solid black;} + body>div {margin-top: 5px;} + body>div:first-child {margin-top: 0;} + .scrpgbrk {margin-top: 1px;} +} +@media print { + .gridlinesp td {border: 1px solid black;} + .gridlinesp th {border: 1px solid black;} + .navigation {display: none;} +} + +EOF; + $htmlPage .= $generateSurroundingHTML ? ('</style>' . PHP_EOL) : ''; + + return $htmlPage; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/IWriter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/IWriter.php new file mode 100644 index 0000000..b0a6272 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/IWriter.php @@ -0,0 +1,91 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer; + +use PhpOffice\PhpSpreadsheet\Spreadsheet; + +interface IWriter +{ + public const SAVE_WITH_CHARTS = 1; + + /** + * IWriter constructor. + * + * @param Spreadsheet $spreadsheet The spreadsheet that we want to save using this Writer + */ + public function __construct(Spreadsheet $spreadsheet); + + /** + * Write charts in workbook? + * If this is true, then the Writer will write definitions for any charts that exist in the PhpSpreadsheet object. + * If false (the default) it will ignore any charts defined in the PhpSpreadsheet object. + * + * @return bool + */ + public function getIncludeCharts(); + + /** + * Set write charts in workbook + * Set to true, to advise the Writer to include any charts that exist in the PhpSpreadsheet object. + * Set to false (the default) to ignore charts. + * + * @param bool $includeCharts + * + * @return IWriter + */ + public function setIncludeCharts($includeCharts); + + /** + * Get Pre-Calculate Formulas flag + * If this is true (the default), then the writer will recalculate all formulae in a workbook when saving, + * so that the pre-calculated values are immediately available to MS Excel or other office spreadsheet + * viewer when opening the file + * If false, then formulae are not calculated on save. This is faster for saving in PhpSpreadsheet, but slower + * when opening the resulting file in MS Excel, because Excel has to recalculate the formulae itself. + * + * @return bool + */ + public function getPreCalculateFormulas(); + + /** + * Set Pre-Calculate Formulas + * Set to true (the default) to advise the Writer to calculate all formulae on save + * Set to false to prevent precalculation of formulae on save. + * + * @param bool $precalculateFormulas Pre-Calculate Formulas? + * + * @return IWriter + */ + public function setPreCalculateFormulas($precalculateFormulas); + + /** + * Save PhpSpreadsheet to file. + * + * @param resource|string $filename Name of the file to save + */ + public function save($filename, int $flags = 0): void; + + /** + * Get use disk caching where possible? + * + * @return bool + */ + public function getUseDiskCaching(); + + /** + * Set use disk caching where possible? + * + * @param bool $useDiskCache + * @param string $cacheDirectory Disk caching directory + * + * @return IWriter + */ + public function setUseDiskCaching($useDiskCache, $cacheDirectory = null); + + /** + * Get disk caching directory. + * + * @return string + */ + public function getDiskCachingDirectory(); +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods.php new file mode 100644 index 0000000..827c43b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods.php @@ -0,0 +1,199 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer; + +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Writer\Exception as WriterException; +use PhpOffice\PhpSpreadsheet\Writer\Ods\Content; +use PhpOffice\PhpSpreadsheet\Writer\Ods\Meta; +use PhpOffice\PhpSpreadsheet\Writer\Ods\MetaInf; +use PhpOffice\PhpSpreadsheet\Writer\Ods\Mimetype; +use PhpOffice\PhpSpreadsheet\Writer\Ods\Settings; +use PhpOffice\PhpSpreadsheet\Writer\Ods\Styles; +use PhpOffice\PhpSpreadsheet\Writer\Ods\Thumbnails; +use ZipStream\Exception\OverflowException; +use ZipStream\Option\Archive; +use ZipStream\ZipStream; + +class Ods extends BaseWriter +{ + /** + * Private PhpSpreadsheet. + * + * @var Spreadsheet + */ + private $spreadSheet; + + /** + * @var Content + */ + private $writerPartContent; + + /** + * @var Meta + */ + private $writerPartMeta; + + /** + * @var MetaInf + */ + private $writerPartMetaInf; + + /** + * @var Mimetype + */ + private $writerPartMimetype; + + /** + * @var Settings + */ + private $writerPartSettings; + + /** + * @var Styles + */ + private $writerPartStyles; + + /** + * @var Thumbnails + */ + private $writerPartThumbnails; + + /** + * Create a new Ods. + */ + public function __construct(Spreadsheet $spreadsheet) + { + $this->setSpreadsheet($spreadsheet); + + $this->writerPartContent = new Content($this); + $this->writerPartMeta = new Meta($this); + $this->writerPartMetaInf = new MetaInf($this); + $this->writerPartMimetype = new Mimetype($this); + $this->writerPartSettings = new Settings($this); + $this->writerPartStyles = new Styles($this); + $this->writerPartThumbnails = new Thumbnails($this); + } + + public function getWriterPartContent(): Content + { + return $this->writerPartContent; + } + + public function getWriterPartMeta(): Meta + { + return $this->writerPartMeta; + } + + public function getWriterPartMetaInf(): MetaInf + { + return $this->writerPartMetaInf; + } + + public function getWriterPartMimetype(): Mimetype + { + return $this->writerPartMimetype; + } + + public function getWriterPartSettings(): Settings + { + return $this->writerPartSettings; + } + + public function getWriterPartStyles(): Styles + { + return $this->writerPartStyles; + } + + public function getWriterPartThumbnails(): Thumbnails + { + return $this->writerPartThumbnails; + } + + /** + * Save PhpSpreadsheet to file. + * + * @param resource|string $filename + */ + public function save($filename, int $flags = 0): void + { + if (!$this->spreadSheet) { + throw new WriterException('PhpSpreadsheet object unassigned.'); + } + + $this->processFlags($flags); + + // garbage collect + $this->spreadSheet->garbageCollect(); + + $this->openFileHandle($filename); + + $zip = $this->createZip(); + + $zip->addFile('META-INF/manifest.xml', $this->getWriterPartMetaInf()->write()); + $zip->addFile('Thumbnails/thumbnail.png', $this->getWriterPartthumbnails()->write()); + // Settings always need to be written before Content; Styles after Content + $zip->addFile('settings.xml', $this->getWriterPartsettings()->write()); + $zip->addFile('content.xml', $this->getWriterPartcontent()->write()); + $zip->addFile('meta.xml', $this->getWriterPartmeta()->write()); + $zip->addFile('mimetype', $this->getWriterPartmimetype()->write()); + $zip->addFile('styles.xml', $this->getWriterPartstyles()->write()); + + // Close file + try { + $zip->finish(); + } catch (OverflowException $e) { + throw new WriterException('Could not close resource.'); + } + + $this->maybeCloseFileHandle(); + } + + /** + * Create zip object. + * + * @return ZipStream + */ + private function createZip() + { + // Try opening the ZIP file + if (!is_resource($this->fileHandle)) { + throw new WriterException('Could not open resource for writing.'); + } + + // Create new ZIP stream + $options = new Archive(); + $options->setEnableZip64(false); + $options->setOutputStream($this->fileHandle); + + return new ZipStream(null, $options); + } + + /** + * Get Spreadsheet object. + * + * @return Spreadsheet + */ + public function getSpreadsheet() + { + if ($this->spreadSheet !== null) { + return $this->spreadSheet; + } + + throw new WriterException('No PhpSpreadsheet assigned.'); + } + + /** + * Set Spreadsheet object. + * + * @param Spreadsheet $spreadsheet PhpSpreadsheet object + * + * @return $this + */ + public function setSpreadsheet(Spreadsheet $spreadsheet) + { + $this->spreadSheet = $spreadsheet; + + return $this; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/AutoFilters.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/AutoFilters.php new file mode 100644 index 0000000..cf0450f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/AutoFilters.php @@ -0,0 +1,63 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Ods; + +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class AutoFilters +{ + /** + * @var XMLWriter + */ + private $objWriter; + + /** + * @var Spreadsheet + */ + private $spreadsheet; + + public function __construct(XMLWriter $objWriter, Spreadsheet $spreadsheet) + { + $this->objWriter = $objWriter; + $this->spreadsheet = $spreadsheet; + } + + public function write(): void + { + $wrapperWritten = false; + $sheetCount = $this->spreadsheet->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + $worksheet = $this->spreadsheet->getSheet($i); + $autofilter = $worksheet->getAutoFilter(); + if ($autofilter !== null && !empty($autofilter->getRange())) { + if ($wrapperWritten === false) { + $this->objWriter->startElement('table:database-ranges'); + $wrapperWritten = true; + } + $this->objWriter->startElement('table:database-range'); + $this->objWriter->writeAttribute('table:orientation', 'column'); + $this->objWriter->writeAttribute('table:display-filter-buttons', 'true'); + $this->objWriter->writeAttribute( + 'table:target-range-address', + $this->formatRange($worksheet, $autofilter) + ); + $this->objWriter->endElement(); + } + } + + if ($wrapperWritten === true) { + $this->objWriter->endElement(); + } + } + + protected function formatRange(Worksheet $worksheet, Autofilter $autofilter): string + { + $title = $worksheet->getTitle(); + $range = $autofilter->getRange(); + + return "'{$title}'.{$range}"; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Cell/Comment.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Cell/Comment.php new file mode 100644 index 0000000..b0829bf --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Cell/Comment.php @@ -0,0 +1,30 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Ods\Cell; + +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; + +/** + * @author Alexander Pervakov <frost-nzcr4@jagmort.com> + */ +class Comment +{ + public static function write(XMLWriter $objWriter, Cell $cell): void + { + $comments = $cell->getWorksheet()->getComments(); + if (!isset($comments[$cell->getCoordinate()])) { + return; + } + $comment = $comments[$cell->getCoordinate()]; + + $objWriter->startElement('office:annotation'); + $objWriter->writeAttribute('svg:width', $comment->getWidth()); + $objWriter->writeAttribute('svg:height', $comment->getHeight()); + $objWriter->writeAttribute('svg:x', $comment->getMarginLeft()); + $objWriter->writeAttribute('svg:y', $comment->getMarginTop()); + $objWriter->writeElement('dc:creator', $comment->getAuthor()); + $objWriter->writeElement('text:p', $comment->getText()->getPlainText()); + $objWriter->endElement(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Cell/Style.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Cell/Style.php new file mode 100644 index 0000000..1bf2c46 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Cell/Style.php @@ -0,0 +1,262 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Ods\Cell; + +use PhpOffice\PhpSpreadsheet\Helper\Dimension; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Style\Alignment; +use PhpOffice\PhpSpreadsheet\Style\Fill; +use PhpOffice\PhpSpreadsheet\Style\Font; +use PhpOffice\PhpSpreadsheet\Style\Style as CellStyle; +use PhpOffice\PhpSpreadsheet\Worksheet\ColumnDimension; +use PhpOffice\PhpSpreadsheet\Worksheet\RowDimension; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class Style +{ + public const CELL_STYLE_PREFIX = 'ce'; + public const COLUMN_STYLE_PREFIX = 'co'; + public const ROW_STYLE_PREFIX = 'ro'; + public const TABLE_STYLE_PREFIX = 'ta'; + + private $writer; + + public function __construct(XMLWriter $writer) + { + $this->writer = $writer; + } + + private function mapHorizontalAlignment(string $horizontalAlignment): string + { + switch ($horizontalAlignment) { + case Alignment::HORIZONTAL_CENTER: + case Alignment::HORIZONTAL_CENTER_CONTINUOUS: + case Alignment::HORIZONTAL_DISTRIBUTED: + return 'center'; + case Alignment::HORIZONTAL_RIGHT: + return 'end'; + case Alignment::HORIZONTAL_FILL: + case Alignment::HORIZONTAL_JUSTIFY: + return 'justify'; + } + + return 'start'; + } + + private function mapVerticalAlignment(string $verticalAlignment): string + { + switch ($verticalAlignment) { + case Alignment::VERTICAL_TOP: + return 'top'; + case Alignment::VERTICAL_CENTER: + return 'middle'; + case Alignment::VERTICAL_DISTRIBUTED: + case Alignment::VERTICAL_JUSTIFY: + return 'automatic'; + } + + return 'bottom'; + } + + private function writeFillStyle(Fill $fill): void + { + switch ($fill->getFillType()) { + case Fill::FILL_SOLID: + $this->writer->writeAttribute('fo:background-color', sprintf( + '#%s', + strtolower($fill->getStartColor()->getRGB()) + )); + + break; + case Fill::FILL_GRADIENT_LINEAR: + case Fill::FILL_GRADIENT_PATH: + /// TODO :: To be implemented + break; + case Fill::FILL_NONE: + default: + } + } + + private function writeCellProperties(CellStyle $style): void + { + // Align + $hAlign = $style->getAlignment()->getHorizontal(); + $vAlign = $style->getAlignment()->getVertical(); + $wrap = $style->getAlignment()->getWrapText(); + + $this->writer->startElement('style:table-cell-properties'); + if (!empty($vAlign) || $wrap) { + if (!empty($vAlign)) { + $vAlign = $this->mapVerticalAlignment($vAlign); + $this->writer->writeAttribute('style:vertical-align', $vAlign); + } + if ($wrap) { + $this->writer->writeAttribute('fo:wrap-option', 'wrap'); + } + } + $this->writer->writeAttribute('style:rotation-align', 'none'); + + // Fill + if ($fill = $style->getFill()) { + $this->writeFillStyle($fill); + } + + $this->writer->endElement(); + + if (!empty($hAlign)) { + $hAlign = $this->mapHorizontalAlignment($hAlign); + $this->writer->startElement('style:paragraph-properties'); + $this->writer->writeAttribute('fo:text-align', $hAlign); + $this->writer->endElement(); + } + } + + protected function mapUnderlineStyle(Font $font): string + { + switch ($font->getUnderline()) { + case Font::UNDERLINE_DOUBLE: + case Font::UNDERLINE_DOUBLEACCOUNTING: + return'double'; + case Font::UNDERLINE_SINGLE: + case Font::UNDERLINE_SINGLEACCOUNTING: + return'single'; + } + + return 'none'; + } + + protected function writeTextProperties(CellStyle $style): void + { + // Font + $this->writer->startElement('style:text-properties'); + + $font = $style->getFont(); + + if ($font->getBold()) { + $this->writer->writeAttribute('fo:font-weight', 'bold'); + $this->writer->writeAttribute('style:font-weight-complex', 'bold'); + $this->writer->writeAttribute('style:font-weight-asian', 'bold'); + } + + if ($font->getItalic()) { + $this->writer->writeAttribute('fo:font-style', 'italic'); + } + + if ($color = $font->getColor()) { + $this->writer->writeAttribute('fo:color', sprintf('#%s', $color->getRGB())); + } + + if ($family = $font->getName()) { + $this->writer->writeAttribute('fo:font-family', $family); + } + + if ($size = $font->getSize()) { + $this->writer->writeAttribute('fo:font-size', sprintf('%.1Fpt', $size)); + } + + if ($font->getUnderline() && $font->getUnderline() !== Font::UNDERLINE_NONE) { + $this->writer->writeAttribute('style:text-underline-style', 'solid'); + $this->writer->writeAttribute('style:text-underline-width', 'auto'); + $this->writer->writeAttribute('style:text-underline-color', 'font-color'); + + $underline = $this->mapUnderlineStyle($font); + $this->writer->writeAttribute('style:text-underline-type', $underline); + } + + $this->writer->endElement(); // Close style:text-properties + } + + protected function writeColumnProperties(ColumnDimension $columnDimension): void + { + $this->writer->startElement('style:table-column-properties'); + $this->writer->writeAttribute( + 'style:column-width', + round($columnDimension->getWidth(Dimension::UOM_CENTIMETERS), 3) . 'cm' + ); + $this->writer->writeAttribute('fo:break-before', 'auto'); + + // End + $this->writer->endElement(); // Close style:table-column-properties + } + + public function writeColumnStyles(ColumnDimension $columnDimension, int $sheetId): void + { + $this->writer->startElement('style:style'); + $this->writer->writeAttribute('style:family', 'table-column'); + $this->writer->writeAttribute( + 'style:name', + sprintf('%s_%d_%d', self::COLUMN_STYLE_PREFIX, $sheetId, $columnDimension->getColumnNumeric()) + ); + + $this->writeColumnProperties($columnDimension); + + // End + $this->writer->endElement(); // Close style:style + } + + protected function writeRowProperties(RowDimension $rowDimension): void + { + $this->writer->startElement('style:table-row-properties'); + $this->writer->writeAttribute( + 'style:row-height', + round($rowDimension->getRowHeight(Dimension::UOM_CENTIMETERS), 3) . 'cm' + ); + $this->writer->writeAttribute('style:use-optimal-row-height', 'false'); + $this->writer->writeAttribute('fo:break-before', 'auto'); + + // End + $this->writer->endElement(); // Close style:table-row-properties + } + + public function writeRowStyles(RowDimension $rowDimension, int $sheetId): void + { + $this->writer->startElement('style:style'); + $this->writer->writeAttribute('style:family', 'table-row'); + $this->writer->writeAttribute( + 'style:name', + sprintf('%s_%d_%d', self::ROW_STYLE_PREFIX, $sheetId, $rowDimension->getRowIndex()) + ); + + $this->writeRowProperties($rowDimension); + + // End + $this->writer->endElement(); // Close style:style + } + + public function writeTableStyle(Worksheet $worksheet, int $sheetId): void + { + $this->writer->startElement('style:style'); + $this->writer->writeAttribute('style:family', 'table'); + $this->writer->writeAttribute( + 'style:name', + sprintf('%s%d', self::TABLE_STYLE_PREFIX, $sheetId) + ); + + $this->writer->startElement('style:table-properties'); + + $this->writer->writeAttribute( + 'table:display', + $worksheet->getSheetState() === Worksheet::SHEETSTATE_VISIBLE ? 'true' : 'false' + ); + + $this->writer->endElement(); // Close style:table-properties + $this->writer->endElement(); // Close style:style + } + + public function write(CellStyle $style): void + { + $this->writer->startElement('style:style'); + $this->writer->writeAttribute('style:name', self::CELL_STYLE_PREFIX . $style->getIndex()); + $this->writer->writeAttribute('style:family', 'table-cell'); + $this->writer->writeAttribute('style:parent-style-name', 'Default'); + + // Alignment, fill colour, etc + $this->writeCellProperties($style); + + // style:text-properties + $this->writeTextProperties($style); + + // End + $this->writer->endElement(); // Close style:style + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Content.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Content.php new file mode 100644 index 0000000..00ab064 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Content.php @@ -0,0 +1,335 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Ods; + +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Cell\DataType; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\Row; +use PhpOffice\PhpSpreadsheet\Worksheet\RowCellIterator; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; +use PhpOffice\PhpSpreadsheet\Writer\Exception; +use PhpOffice\PhpSpreadsheet\Writer\Ods; +use PhpOffice\PhpSpreadsheet\Writer\Ods\Cell\Comment; +use PhpOffice\PhpSpreadsheet\Writer\Ods\Cell\Style; + +/** + * @author Alexander Pervakov <frost-nzcr4@jagmort.com> + */ +class Content extends WriterPart +{ + const NUMBER_COLS_REPEATED_MAX = 1024; + const NUMBER_ROWS_REPEATED_MAX = 1048576; + + private $formulaConvertor; + + /** + * Set parent Ods writer. + */ + public function __construct(Ods $writer) + { + parent::__construct($writer); + + $this->formulaConvertor = new Formula($this->getParentWriter()->getSpreadsheet()->getDefinedNames()); + } + + /** + * Write content.xml to XML format. + * + * @return string XML Output + */ + public function write(): string + { + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8'); + + // Content + $objWriter->startElement('office:document-content'); + $objWriter->writeAttribute('xmlns:office', 'urn:oasis:names:tc:opendocument:xmlns:office:1.0'); + $objWriter->writeAttribute('xmlns:style', 'urn:oasis:names:tc:opendocument:xmlns:style:1.0'); + $objWriter->writeAttribute('xmlns:text', 'urn:oasis:names:tc:opendocument:xmlns:text:1.0'); + $objWriter->writeAttribute('xmlns:table', 'urn:oasis:names:tc:opendocument:xmlns:table:1.0'); + $objWriter->writeAttribute('xmlns:draw', 'urn:oasis:names:tc:opendocument:xmlns:drawing:1.0'); + $objWriter->writeAttribute('xmlns:fo', 'urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0'); + $objWriter->writeAttribute('xmlns:xlink', 'http://www.w3.org/1999/xlink'); + $objWriter->writeAttribute('xmlns:dc', 'http://purl.org/dc/elements/1.1/'); + $objWriter->writeAttribute('xmlns:meta', 'urn:oasis:names:tc:opendocument:xmlns:meta:1.0'); + $objWriter->writeAttribute('xmlns:number', 'urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0'); + $objWriter->writeAttribute('xmlns:presentation', 'urn:oasis:names:tc:opendocument:xmlns:presentation:1.0'); + $objWriter->writeAttribute('xmlns:svg', 'urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0'); + $objWriter->writeAttribute('xmlns:chart', 'urn:oasis:names:tc:opendocument:xmlns:chart:1.0'); + $objWriter->writeAttribute('xmlns:dr3d', 'urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0'); + $objWriter->writeAttribute('xmlns:math', 'http://www.w3.org/1998/Math/MathML'); + $objWriter->writeAttribute('xmlns:form', 'urn:oasis:names:tc:opendocument:xmlns:form:1.0'); + $objWriter->writeAttribute('xmlns:script', 'urn:oasis:names:tc:opendocument:xmlns:script:1.0'); + $objWriter->writeAttribute('xmlns:ooo', 'http://openoffice.org/2004/office'); + $objWriter->writeAttribute('xmlns:ooow', 'http://openoffice.org/2004/writer'); + $objWriter->writeAttribute('xmlns:oooc', 'http://openoffice.org/2004/calc'); + $objWriter->writeAttribute('xmlns:dom', 'http://www.w3.org/2001/xml-events'); + $objWriter->writeAttribute('xmlns:xforms', 'http://www.w3.org/2002/xforms'); + $objWriter->writeAttribute('xmlns:xsd', 'http://www.w3.org/2001/XMLSchema'); + $objWriter->writeAttribute('xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance'); + $objWriter->writeAttribute('xmlns:rpt', 'http://openoffice.org/2005/report'); + $objWriter->writeAttribute('xmlns:of', 'urn:oasis:names:tc:opendocument:xmlns:of:1.2'); + $objWriter->writeAttribute('xmlns:xhtml', 'http://www.w3.org/1999/xhtml'); + $objWriter->writeAttribute('xmlns:grddl', 'http://www.w3.org/2003/g/data-view#'); + $objWriter->writeAttribute('xmlns:tableooo', 'http://openoffice.org/2009/table'); + $objWriter->writeAttribute('xmlns:field', 'urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0'); + $objWriter->writeAttribute('xmlns:formx', 'urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0'); + $objWriter->writeAttribute('xmlns:css3t', 'http://www.w3.org/TR/css3-text/'); + $objWriter->writeAttribute('office:version', '1.2'); + + $objWriter->writeElement('office:scripts'); + $objWriter->writeElement('office:font-face-decls'); + + // Styles XF + $objWriter->startElement('office:automatic-styles'); + $this->writeXfStyles($objWriter, $this->getParentWriter()->getSpreadsheet()); + $objWriter->endElement(); + + $objWriter->startElement('office:body'); + $objWriter->startElement('office:spreadsheet'); + $objWriter->writeElement('table:calculation-settings'); + + $this->writeSheets($objWriter); + + (new AutoFilters($objWriter, $this->getParentWriter()->getSpreadsheet()))->write(); + // Defined names (ranges and formulae) + (new NamedExpressions($objWriter, $this->getParentWriter()->getSpreadsheet(), $this->formulaConvertor))->write(); + + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + + return $objWriter->getData(); + } + + /** + * Write sheets. + */ + private function writeSheets(XMLWriter $objWriter): void + { + $spreadsheet = $this->getParentWriter()->getSpreadsheet(); /** @var Spreadsheet $spreadsheet */ + $sheetCount = $spreadsheet->getSheetCount(); + for ($sheetIndex = 0; $sheetIndex < $sheetCount; ++$sheetIndex) { + $objWriter->startElement('table:table'); + $objWriter->writeAttribute('table:name', $spreadsheet->getSheet($sheetIndex)->getTitle()); + $objWriter->writeAttribute('table:style-name', Style::TABLE_STYLE_PREFIX . (string) ($sheetIndex + 1)); + $objWriter->writeElement('office:forms'); + foreach ($spreadsheet->getSheet($sheetIndex)->getColumnDimensions() as $columnDimension) { + $objWriter->startElement('table:table-column'); + $objWriter->writeAttribute( + 'table:style-name', + sprintf('%s_%d_%d', Style::COLUMN_STYLE_PREFIX, $sheetIndex, $columnDimension->getColumnNumeric()) + ); + $objWriter->writeAttribute('table:default-cell-style-name', 'ce0'); +// $objWriter->writeAttribute('table:number-columns-repeated', self::NUMBER_COLS_REPEATED_MAX); + $objWriter->endElement(); + } + $this->writeRows($objWriter, $spreadsheet->getSheet($sheetIndex), $sheetIndex); + $objWriter->endElement(); + } + } + + /** + * Write rows of the specified sheet. + */ + private function writeRows(XMLWriter $objWriter, Worksheet $sheet, int $sheetIndex): void + { + $numberRowsRepeated = self::NUMBER_ROWS_REPEATED_MAX; + $span_row = 0; + $rows = $sheet->getRowIterator(); + foreach ($rows as $row) { + $cellIterator = $row->getCellIterator(); + --$numberRowsRepeated; + if ($cellIterator->valid()) { + $objWriter->startElement('table:table-row'); + if ($span_row) { + if ($span_row > 1) { + $objWriter->writeAttribute('table:number-rows-repeated', $span_row); + } + $objWriter->startElement('table:table-cell'); + $objWriter->writeAttribute('table:number-columns-repeated', (string) self::NUMBER_COLS_REPEATED_MAX); + $objWriter->endElement(); + $span_row = 0; + } else { + if ($sheet->getRowDimension($row->getRowIndex())->getRowHeight() > 0) { + $objWriter->writeAttribute( + 'table:style-name', + sprintf('%s_%d_%d', Style::ROW_STYLE_PREFIX, $sheetIndex, $row->getRowIndex()) + ); + } + $this->writeCells($objWriter, $cellIterator); + } + $objWriter->endElement(); + } else { + ++$span_row; + } + } + } + + /** + * Write cells of the specified row. + */ + private function writeCells(XMLWriter $objWriter, RowCellIterator $cells): void + { + $numberColsRepeated = self::NUMBER_COLS_REPEATED_MAX; + $prevColumn = -1; + foreach ($cells as $cell) { + /** @var \PhpOffice\PhpSpreadsheet\Cell\Cell $cell */ + $column = Coordinate::columnIndexFromString($cell->getColumn()) - 1; + + $this->writeCellSpan($objWriter, $column, $prevColumn); + $objWriter->startElement('table:table-cell'); + $this->writeCellMerge($objWriter, $cell); + + // Style XF + $style = $cell->getXfIndex(); + if ($style !== null) { + $objWriter->writeAttribute('table:style-name', Style::CELL_STYLE_PREFIX . $style); + } + + switch ($cell->getDataType()) { + case DataType::TYPE_BOOL: + $objWriter->writeAttribute('office:value-type', 'boolean'); + $objWriter->writeAttribute('office:value', $cell->getValue()); + $objWriter->writeElement('text:p', $cell->getValue()); + + break; + case DataType::TYPE_ERROR: + $objWriter->writeAttribute('table:formula', 'of:=#NULL!'); + $objWriter->writeAttribute('office:value-type', 'string'); + $objWriter->writeAttribute('office:string-value', ''); + $objWriter->writeElement('text:p', '#NULL!'); + + break; + case DataType::TYPE_FORMULA: + $formulaValue = $cell->getValue(); + if ($this->getParentWriter()->getPreCalculateFormulas()) { + try { + $formulaValue = $cell->getCalculatedValue(); + } catch (Exception $e) { + // don't do anything + } + } + $objWriter->writeAttribute('table:formula', $this->formulaConvertor->convertFormula($cell->getValue())); + if (is_numeric($formulaValue)) { + $objWriter->writeAttribute('office:value-type', 'float'); + } else { + $objWriter->writeAttribute('office:value-type', 'string'); + } + $objWriter->writeAttribute('office:value', $formulaValue); + $objWriter->writeElement('text:p', $formulaValue); + + break; + case DataType::TYPE_NUMERIC: + $objWriter->writeAttribute('office:value-type', 'float'); + $objWriter->writeAttribute('office:value', $cell->getValue()); + $objWriter->writeElement('text:p', $cell->getValue()); + + break; + case DataType::TYPE_INLINE: + // break intentionally omitted + case DataType::TYPE_STRING: + $objWriter->writeAttribute('office:value-type', 'string'); + $objWriter->writeElement('text:p', $cell->getValue()); + + break; + } + Comment::write($objWriter, $cell); + $objWriter->endElement(); + $prevColumn = $column; + } + + $numberColsRepeated = $numberColsRepeated - $prevColumn - 1; + if ($numberColsRepeated > 0) { + if ($numberColsRepeated > 1) { + $objWriter->startElement('table:table-cell'); + $objWriter->writeAttribute('table:number-columns-repeated', $numberColsRepeated); + $objWriter->endElement(); + } else { + $objWriter->writeElement('table:table-cell'); + } + } + } + + /** + * Write span. + * + * @param int $curColumn + * @param int $prevColumn + */ + private function writeCellSpan(XMLWriter $objWriter, $curColumn, $prevColumn): void + { + $diff = $curColumn - $prevColumn - 1; + if (1 === $diff) { + $objWriter->writeElement('table:table-cell'); + } elseif ($diff > 1) { + $objWriter->startElement('table:table-cell'); + $objWriter->writeAttribute('table:number-columns-repeated', $diff); + $objWriter->endElement(); + } + } + + /** + * Write XF cell styles. + */ + private function writeXfStyles(XMLWriter $writer, Spreadsheet $spreadsheet): void + { + $styleWriter = new Style($writer); + + $sheetCount = $spreadsheet->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + $worksheet = $spreadsheet->getSheet($i); + $styleWriter->writeTableStyle($worksheet, $i + 1); + + $worksheet->calculateColumnWidths(); + foreach ($worksheet->getColumnDimensions() as $columnDimension) { + if ($columnDimension->getWidth() !== -1.0) { + $styleWriter->writeColumnStyles($columnDimension, $i); + } + } + } + for ($i = 0; $i < $sheetCount; ++$i) { + $worksheet = $spreadsheet->getSheet($i); + foreach ($worksheet->getRowDimensions() as $rowDimension) { + if ($rowDimension->getRowHeight() > 0.0) { + $styleWriter->writeRowStyles($rowDimension, $i); + } + } + } + + foreach ($spreadsheet->getCellXfCollection() as $style) { + $styleWriter->write($style); + } + } + + /** + * Write attributes for merged cell. + */ + private function writeCellMerge(XMLWriter $objWriter, Cell $cell): void + { + if (!$cell->isMergeRangeValueCell()) { + return; + } + + $mergeRange = Coordinate::splitRange($cell->getMergeRange()); + [$startCell, $endCell] = $mergeRange[0]; + $start = Coordinate::coordinateFromString($startCell); + $end = Coordinate::coordinateFromString($endCell); + $columnSpan = Coordinate::columnIndexFromString($end[0]) - Coordinate::columnIndexFromString($start[0]) + 1; + $rowSpan = ((int) $end[1]) - ((int) $start[1]) + 1; + + $objWriter->writeAttribute('table:number-columns-spanned', (string) $columnSpan); + $objWriter->writeAttribute('table:number-rows-spanned', (string) $rowSpan); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Formula.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Formula.php new file mode 100644 index 0000000..db766fb --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Formula.php @@ -0,0 +1,119 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Ods; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\DefinedName; + +class Formula +{ + private $definedNames = []; + + /** + * @param DefinedName[] $definedNames + */ + public function __construct(array $definedNames) + { + foreach ($definedNames as $definedName) { + $this->definedNames[] = $definedName->getName(); + } + } + + public function convertFormula(string $formula, string $worksheetName = ''): string + { + $formula = $this->convertCellReferences($formula, $worksheetName); + $formula = $this->convertDefinedNames($formula); + + if (substr($formula, 0, 1) !== '=') { + $formula = '=' . $formula; + } + + return 'of:' . $formula; + } + + private function convertDefinedNames(string $formula): string + { + $splitCount = preg_match_all( + '/' . Calculation::CALCULATION_REGEXP_DEFINEDNAME . '/mui', + $formula, + $splitRanges, + PREG_OFFSET_CAPTURE + ); + + $lengths = array_map('strlen', array_column($splitRanges[0], 0)); + $offsets = array_column($splitRanges[0], 1); + $values = array_column($splitRanges[0], 0); + + while ($splitCount > 0) { + --$splitCount; + $length = $lengths[$splitCount]; + $offset = $offsets[$splitCount]; + $value = $values[$splitCount]; + + if (in_array($value, $this->definedNames, true)) { + $formula = substr($formula, 0, $offset) . '$$' . $value . substr($formula, $offset + $length); + } + } + + return $formula; + } + + private function convertCellReferences(string $formula, string $worksheetName): string + { + $splitCount = preg_match_all( + '/' . Calculation::CALCULATION_REGEXP_CELLREF_RELATIVE . '/mui', + $formula, + $splitRanges, + PREG_OFFSET_CAPTURE + ); + + $lengths = array_map('strlen', array_column($splitRanges[0], 0)); + $offsets = array_column($splitRanges[0], 1); + + $worksheets = $splitRanges[2]; + $columns = $splitRanges[6]; + $rows = $splitRanges[7]; + + // Replace any commas in the formula with semi-colons for Ods + // If by chance there are commas in worksheet names, then they will be "fixed" again in the loop + // because we've already extracted worksheet names with our preg_match_all() + $formula = str_replace(',', ';', $formula); + while ($splitCount > 0) { + --$splitCount; + $length = $lengths[$splitCount]; + $offset = $offsets[$splitCount]; + $worksheet = $worksheets[$splitCount][0]; + $column = $columns[$splitCount][0]; + $row = $rows[$splitCount][0]; + + $newRange = ''; + if (empty($worksheet)) { + if (($offset === 0) || ($formula[$offset - 1] !== ':')) { + // We need a worksheet + $worksheet = $worksheetName; + } + } else { + $worksheet = str_replace("''", "'", trim($worksheet, "'")); + } + if (!empty($worksheet)) { + $newRange = "['" . str_replace("'", "''", $worksheet) . "'"; + } elseif (substr($formula, $offset - 1, 1) !== ':') { + $newRange = '['; + } + $newRange .= '.'; + + if (!empty($column)) { + $newRange .= $column; + } + if (!empty($row)) { + $newRange .= $row; + } + // close the wrapping [] unless this is the first part of a range + $newRange .= substr($formula, $offset + $length, 1) !== ':' ? ']' : ''; + + $formula = substr($formula, 0, $offset) . $newRange . substr($formula, $offset + $length); + } + + return $formula; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Meta.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Meta.php new file mode 100644 index 0000000..16f7c8b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Meta.php @@ -0,0 +1,122 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Ods; + +use PhpOffice\PhpSpreadsheet\Document\Properties; +use PhpOffice\PhpSpreadsheet\Shared\Date; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Spreadsheet; + +class Meta extends WriterPart +{ + /** + * Write meta.xml to XML format. + * + * @return string XML Output + */ + public function write(): string + { + $spreadsheet = $this->getParentWriter()->getSpreadsheet(); + + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8'); + + // Meta + $objWriter->startElement('office:document-meta'); + + $objWriter->writeAttribute('xmlns:office', 'urn:oasis:names:tc:opendocument:xmlns:office:1.0'); + $objWriter->writeAttribute('xmlns:xlink', 'http://www.w3.org/1999/xlink'); + $objWriter->writeAttribute('xmlns:dc', 'http://purl.org/dc/elements/1.1/'); + $objWriter->writeAttribute('xmlns:meta', 'urn:oasis:names:tc:opendocument:xmlns:meta:1.0'); + $objWriter->writeAttribute('xmlns:ooo', 'http://openoffice.org/2004/office'); + $objWriter->writeAttribute('xmlns:grddl', 'http://www.w3.org/2003/g/data-view#'); + $objWriter->writeAttribute('office:version', '1.2'); + + $objWriter->startElement('office:meta'); + + $objWriter->writeElement('meta:initial-creator', $spreadsheet->getProperties()->getCreator()); + $objWriter->writeElement('dc:creator', $spreadsheet->getProperties()->getCreator()); + $created = $spreadsheet->getProperties()->getCreated(); + $date = Date::dateTimeFromTimestamp("$created"); + $date->setTimeZone(Date::getDefaultOrLocalTimeZone()); + $objWriter->writeElement('meta:creation-date', $date->format(DATE_W3C)); + $created = $spreadsheet->getProperties()->getModified(); + $date = Date::dateTimeFromTimestamp("$created"); + $date->setTimeZone(Date::getDefaultOrLocalTimeZone()); + $objWriter->writeElement('dc:date', $date->format(DATE_W3C)); + $objWriter->writeElement('dc:title', $spreadsheet->getProperties()->getTitle()); + $objWriter->writeElement('dc:description', $spreadsheet->getProperties()->getDescription()); + $objWriter->writeElement('dc:subject', $spreadsheet->getProperties()->getSubject()); + $objWriter->writeElement('meta:keyword', $spreadsheet->getProperties()->getKeywords()); + // Don't know if this changed over time, but the keywords are all + // in a single declaration now. + //$keywords = explode(' ', $spreadsheet->getProperties()->getKeywords()); + //foreach ($keywords as $keyword) { + // $objWriter->writeElement('meta:keyword', $keyword); + //} + + //<meta:document-statistic meta:table-count="XXX" meta:cell-count="XXX" meta:object-count="XXX"/> + $objWriter->startElement('meta:user-defined'); + $objWriter->writeAttribute('meta:name', 'Company'); + $objWriter->writeRaw($spreadsheet->getProperties()->getCompany()); + $objWriter->endElement(); + + $objWriter->startElement('meta:user-defined'); + $objWriter->writeAttribute('meta:name', 'category'); + $objWriter->writeRaw($spreadsheet->getProperties()->getCategory()); + $objWriter->endElement(); + + self::writeDocPropsCustom($objWriter, $spreadsheet); + + $objWriter->endElement(); + + $objWriter->endElement(); + + return $objWriter->getData(); + } + + private static function writeDocPropsCustom(XMLWriter $objWriter, Spreadsheet $spreadsheet): void + { + $customPropertyList = $spreadsheet->getProperties()->getCustomProperties(); + foreach ($customPropertyList as $key => $customProperty) { + $propertyValue = $spreadsheet->getProperties()->getCustomPropertyValue($customProperty); + $propertyType = $spreadsheet->getProperties()->getCustomPropertyType($customProperty); + + $objWriter->startElement('meta:user-defined'); + $objWriter->writeAttribute('meta:name', $customProperty); + + switch ($propertyType) { + case Properties::PROPERTY_TYPE_INTEGER: + case Properties::PROPERTY_TYPE_FLOAT: + $objWriter->writeAttribute('meta:value-type', 'float'); + $objWriter->writeRawData($propertyValue); + + break; + case Properties::PROPERTY_TYPE_BOOLEAN: + $objWriter->writeAttribute('meta:value-type', 'boolean'); + $objWriter->writeRawData($propertyValue ? 'true' : 'false'); + + break; + case Properties::PROPERTY_TYPE_DATE: + $objWriter->writeAttribute('meta:value-type', 'date'); + $dtobj = Date::dateTimeFromTimestamp($propertyValue ?? 0); + $objWriter->writeRawData($dtobj->format(DATE_W3C)); + + break; + default: + $objWriter->writeRawData($propertyValue); + + break; + } + + $objWriter->endElement(); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/MetaInf.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/MetaInf.php new file mode 100644 index 0000000..f3f0d5f --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/MetaInf.php @@ -0,0 +1,60 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Ods; + +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; + +class MetaInf extends WriterPart +{ + /** + * Write META-INF/manifest.xml to XML format. + * + * @return string XML Output + */ + public function write(): string + { + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8'); + + // Manifest + $objWriter->startElement('manifest:manifest'); + $objWriter->writeAttribute('xmlns:manifest', 'urn:oasis:names:tc:opendocument:xmlns:manifest:1.0'); + $objWriter->writeAttribute('manifest:version', '1.2'); + + $objWriter->startElement('manifest:file-entry'); + $objWriter->writeAttribute('manifest:full-path', '/'); + $objWriter->writeAttribute('manifest:version', '1.2'); + $objWriter->writeAttribute('manifest:media-type', 'application/vnd.oasis.opendocument.spreadsheet'); + $objWriter->endElement(); + $objWriter->startElement('manifest:file-entry'); + $objWriter->writeAttribute('manifest:full-path', 'meta.xml'); + $objWriter->writeAttribute('manifest:media-type', 'text/xml'); + $objWriter->endElement(); + $objWriter->startElement('manifest:file-entry'); + $objWriter->writeAttribute('manifest:full-path', 'settings.xml'); + $objWriter->writeAttribute('manifest:media-type', 'text/xml'); + $objWriter->endElement(); + $objWriter->startElement('manifest:file-entry'); + $objWriter->writeAttribute('manifest:full-path', 'content.xml'); + $objWriter->writeAttribute('manifest:media-type', 'text/xml'); + $objWriter->endElement(); + $objWriter->startElement('manifest:file-entry'); + $objWriter->writeAttribute('manifest:full-path', 'Thumbnails/thumbnail.png'); + $objWriter->writeAttribute('manifest:media-type', 'image/png'); + $objWriter->endElement(); + $objWriter->startElement('manifest:file-entry'); + $objWriter->writeAttribute('manifest:full-path', 'styles.xml'); + $objWriter->writeAttribute('manifest:media-type', 'text/xml'); + $objWriter->endElement(); + $objWriter->endElement(); + + return $objWriter->getData(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Mimetype.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Mimetype.php new file mode 100644 index 0000000..e109e6e --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Mimetype.php @@ -0,0 +1,16 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Ods; + +class Mimetype extends WriterPart +{ + /** + * Write mimetype to plain text format. + * + * @return string XML Output + */ + public function write(): string + { + return 'application/vnd.oasis.opendocument.spreadsheet'; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/NamedExpressions.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/NamedExpressions.php new file mode 100644 index 0000000..e309dab --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/NamedExpressions.php @@ -0,0 +1,140 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Ods; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\DefinedName; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class NamedExpressions +{ + /** @var XMLWriter */ + private $objWriter; + + /** @var Spreadsheet */ + private $spreadsheet; + + /** @var Formula */ + private $formulaConvertor; + + public function __construct(XMLWriter $objWriter, Spreadsheet $spreadsheet, Formula $formulaConvertor) + { + $this->objWriter = $objWriter; + $this->spreadsheet = $spreadsheet; + $this->formulaConvertor = $formulaConvertor; + } + + public function write(): string + { + $this->objWriter->startElement('table:named-expressions'); + $this->writeExpressions(); + $this->objWriter->endElement(); + + return ''; + } + + private function writeExpressions(): void + { + $definedNames = $this->spreadsheet->getDefinedNames(); + + foreach ($definedNames as $definedName) { + if ($definedName->isFormula()) { + $this->objWriter->startElement('table:named-expression'); + $this->writeNamedFormula($definedName, $this->spreadsheet->getActiveSheet()); + } else { + $this->objWriter->startElement('table:named-range'); + $this->writeNamedRange($definedName); + } + + $this->objWriter->endElement(); + } + } + + private function writeNamedFormula(DefinedName $definedName, Worksheet $defaultWorksheet): void + { + $title = ($definedName->getWorksheet() !== null) ? $definedName->getWorksheet()->getTitle() : $defaultWorksheet->getTitle(); + $this->objWriter->writeAttribute('table:name', $definedName->getName()); + $this->objWriter->writeAttribute( + 'table:expression', + $this->formulaConvertor->convertFormula($definedName->getValue(), $title) + ); + $this->objWriter->writeAttribute('table:base-cell-address', $this->convertAddress( + $definedName, + "'" . $title . "'!\$A\$1" + )); + } + + private function writeNamedRange(DefinedName $definedName): void + { + $baseCell = '$A$1'; + $ws = $definedName->getWorksheet(); + if ($ws !== null) { + $baseCell = "'" . $ws->getTitle() . "'!$baseCell"; + } + $this->objWriter->writeAttribute('table:name', $definedName->getName()); + $this->objWriter->writeAttribute('table:base-cell-address', $this->convertAddress( + $definedName, + $baseCell + )); + $this->objWriter->writeAttribute('table:cell-range-address', $this->convertAddress($definedName, $definedName->getValue())); + } + + private function convertAddress(DefinedName $definedName, string $address): string + { + $splitCount = preg_match_all( + '/' . Calculation::CALCULATION_REGEXP_CELLREF_RELATIVE . '/mui', + $address, + $splitRanges, + PREG_OFFSET_CAPTURE + ); + + $lengths = array_map('strlen', array_column($splitRanges[0], 0)); + $offsets = array_column($splitRanges[0], 1); + + $worksheets = $splitRanges[2]; + $columns = $splitRanges[6]; + $rows = $splitRanges[7]; + + while ($splitCount > 0) { + --$splitCount; + $length = $lengths[$splitCount]; + $offset = $offsets[$splitCount]; + $worksheet = $worksheets[$splitCount][0]; + $column = $columns[$splitCount][0]; + $row = $rows[$splitCount][0]; + + $newRange = ''; + if (empty($worksheet)) { + if (($offset === 0) || ($address[$offset - 1] !== ':')) { + // We need a worksheet + $ws = $definedName->getWorksheet(); + if ($ws !== null) { + $worksheet = $ws->getTitle(); + } + } + } else { + $worksheet = str_replace("''", "'", trim($worksheet, "'")); + } + if (!empty($worksheet)) { + $newRange = "'" . str_replace("'", "''", $worksheet) . "'."; + } + + if (!empty($column)) { + $newRange .= $column; + } + if (!empty($row)) { + $newRange .= $row; + } + + $address = substr($address, 0, $offset) . $newRange . substr($address, $offset + $length); + } + + if (substr($address, 0, 1) === '=') { + $address = substr($address, 1); + } + + return $address; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Settings.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Settings.php new file mode 100644 index 0000000..0644559 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Settings.php @@ -0,0 +1,152 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Ods; + +use PhpOffice\PhpSpreadsheet\Cell\CellAddress; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class Settings extends WriterPart +{ + /** + * Write settings.xml to XML format. + * + * @return string XML Output + */ + public function write(): string + { + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8'); + + // Settings + $objWriter->startElement('office:document-settings'); + $objWriter->writeAttribute('xmlns:office', 'urn:oasis:names:tc:opendocument:xmlns:office:1.0'); + $objWriter->writeAttribute('xmlns:xlink', 'http://www.w3.org/1999/xlink'); + $objWriter->writeAttribute('xmlns:config', 'urn:oasis:names:tc:opendocument:xmlns:config:1.0'); + $objWriter->writeAttribute('xmlns:ooo', 'http://openoffice.org/2004/office'); + $objWriter->writeAttribute('office:version', '1.2'); + + $objWriter->startElement('office:settings'); + $objWriter->startElement('config:config-item-set'); + $objWriter->writeAttribute('config:name', 'ooo:view-settings'); + $objWriter->startElement('config:config-item-map-indexed'); + $objWriter->writeAttribute('config:name', 'Views'); + $objWriter->startElement('config:config-item-map-entry'); + $spreadsheet = $this->getParentWriter()->getSpreadsheet(); + + $objWriter->startElement('config:config-item'); + $objWriter->writeAttribute('config:name', 'ViewId'); + $objWriter->writeAttribute('config:type', 'string'); + $objWriter->text('view1'); + $objWriter->endElement(); // ViewId + $objWriter->startElement('config:config-item-map-named'); + + $this->writeAllWorksheetSettings($objWriter, $spreadsheet); + + $wstitle = $spreadsheet->getActiveSheet()->getTitle(); + $objWriter->startElement('config:config-item'); + $objWriter->writeAttribute('config:name', 'ActiveTable'); + $objWriter->writeAttribute('config:type', 'string'); + $objWriter->text($wstitle); + $objWriter->endElement(); // config:config-item ActiveTable + + $objWriter->endElement(); // config:config-item-map-entry + $objWriter->endElement(); // config:config-item-map-indexed Views + $objWriter->endElement(); // config:config-item-set ooo:view-settings + $objWriter->startElement('config:config-item-set'); + $objWriter->writeAttribute('config:name', 'ooo:configuration-settings'); + $objWriter->endElement(); // config:config-item-set ooo:configuration-settings + $objWriter->endElement(); // office:settings + $objWriter->endElement(); // office:document-settings + + return $objWriter->getData(); + } + + private function writeAllWorksheetSettings(XMLWriter $objWriter, Spreadsheet $spreadsheet): void + { + $objWriter->writeAttribute('config:name', 'Tables'); + + foreach ($spreadsheet->getWorksheetIterator() as $worksheet) { + $this->writeWorksheetSettings($objWriter, $worksheet); + } + + $objWriter->endElement(); // config:config-item-map-entry Tables + } + + private function writeWorksheetSettings(XMLWriter $objWriter, Worksheet $worksheet): void + { + $objWriter->startElement('config:config-item-map-entry'); + $objWriter->writeAttribute('config:name', $worksheet->getTitle()); + + $this->writeSelectedCells($objWriter, $worksheet); + if ($worksheet->getFreezePane() !== null) { + $this->writeFreezePane($objWriter, $worksheet); + } + + $objWriter->endElement(); // config:config-item-map-entry Worksheet + } + + private function writeSelectedCells(XMLWriter $objWriter, Worksheet $worksheet): void + { + $selected = $worksheet->getSelectedCells(); + if (preg_match('/^([a-z]+)([0-9]+)/i', $selected, $matches) === 1) { + $colSel = Coordinate::columnIndexFromString($matches[1]) - 1; + $rowSel = (int) $matches[2] - 1; + $objWriter->startElement('config:config-item'); + $objWriter->writeAttribute('config:name', 'CursorPositionX'); + $objWriter->writeAttribute('config:type', 'int'); + $objWriter->text((string) $colSel); + $objWriter->endElement(); + $objWriter->startElement('config:config-item'); + $objWriter->writeAttribute('config:name', 'CursorPositionY'); + $objWriter->writeAttribute('config:type', 'int'); + $objWriter->text((string) $rowSel); + $objWriter->endElement(); + } + } + + private function writeSplitValue(XMLWriter $objWriter, string $splitMode, string $type, string $value): void + { + $objWriter->startElement('config:config-item'); + $objWriter->writeAttribute('config:name', $splitMode); + $objWriter->writeAttribute('config:type', $type); + $objWriter->text($value); + $objWriter->endElement(); + } + + private function writeFreezePane(XMLWriter $objWriter, Worksheet $worksheet): void + { + $freezePane = CellAddress::fromCellAddress($worksheet->getFreezePane()); + if ($freezePane->cellAddress() === 'A1') { + return; + } + + $columnId = $freezePane->columnId(); + $columnName = $freezePane->columnName(); + $row = $freezePane->rowId(); + + $this->writeSplitValue($objWriter, 'HorizontalSplitMode', 'short', '2'); + $this->writeSplitValue($objWriter, 'HorizontalSplitPosition', 'int', (string) ($columnId - 1)); + $this->writeSplitValue($objWriter, 'PositionLeft', 'short', '0'); + $this->writeSplitValue($objWriter, 'PositionRight', 'short', (string) ($columnId - 1)); + + for ($column = 'A'; $column !== $columnName; ++$column) { + $worksheet->getColumnDimension($column)->setAutoSize(true); + } + + $this->writeSplitValue($objWriter, 'VerticalSplitMode', 'short', '2'); + $this->writeSplitValue($objWriter, 'VerticalSplitPosition', 'int', (string) ($row - 1)); + $this->writeSplitValue($objWriter, 'PositionTop', 'short', '0'); + $this->writeSplitValue($objWriter, 'PositionBottom', 'short', (string) ($row - 1)); + + $this->writeSplitValue($objWriter, 'ActiveSplitRange', 'short', '3'); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Styles.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Styles.php new file mode 100644 index 0000000..448b1ef --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Styles.php @@ -0,0 +1,65 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Ods; + +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; + +class Styles extends WriterPart +{ + /** + * Write styles.xml to XML format. + * + * @return string XML Output + */ + public function write(): string + { + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8'); + + // Content + $objWriter->startElement('office:document-styles'); + $objWriter->writeAttribute('xmlns:office', 'urn:oasis:names:tc:opendocument:xmlns:office:1.0'); + $objWriter->writeAttribute('xmlns:style', 'urn:oasis:names:tc:opendocument:xmlns:style:1.0'); + $objWriter->writeAttribute('xmlns:text', 'urn:oasis:names:tc:opendocument:xmlns:text:1.0'); + $objWriter->writeAttribute('xmlns:table', 'urn:oasis:names:tc:opendocument:xmlns:table:1.0'); + $objWriter->writeAttribute('xmlns:draw', 'urn:oasis:names:tc:opendocument:xmlns:drawing:1.0'); + $objWriter->writeAttribute('xmlns:fo', 'urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0'); + $objWriter->writeAttribute('xmlns:xlink', 'http://www.w3.org/1999/xlink'); + $objWriter->writeAttribute('xmlns:dc', 'http://purl.org/dc/elements/1.1/'); + $objWriter->writeAttribute('xmlns:meta', 'urn:oasis:names:tc:opendocument:xmlns:meta:1.0'); + $objWriter->writeAttribute('xmlns:number', 'urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0'); + $objWriter->writeAttribute('xmlns:presentation', 'urn:oasis:names:tc:opendocument:xmlns:presentation:1.0'); + $objWriter->writeAttribute('xmlns:svg', 'urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0'); + $objWriter->writeAttribute('xmlns:chart', 'urn:oasis:names:tc:opendocument:xmlns:chart:1.0'); + $objWriter->writeAttribute('xmlns:dr3d', 'urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0'); + $objWriter->writeAttribute('xmlns:math', 'http://www.w3.org/1998/Math/MathML'); + $objWriter->writeAttribute('xmlns:form', 'urn:oasis:names:tc:opendocument:xmlns:form:1.0'); + $objWriter->writeAttribute('xmlns:script', 'urn:oasis:names:tc:opendocument:xmlns:script:1.0'); + $objWriter->writeAttribute('xmlns:ooo', 'http://openoffice.org/2004/office'); + $objWriter->writeAttribute('xmlns:ooow', 'http://openoffice.org/2004/writer'); + $objWriter->writeAttribute('xmlns:oooc', 'http://openoffice.org/2004/calc'); + $objWriter->writeAttribute('xmlns:dom', 'http://www.w3.org/2001/xml-events'); + $objWriter->writeAttribute('xmlns:rpt', 'http://openoffice.org/2005/report'); + $objWriter->writeAttribute('xmlns:of', 'urn:oasis:names:tc:opendocument:xmlns:of:1.2'); + $objWriter->writeAttribute('xmlns:xhtml', 'http://www.w3.org/1999/xhtml'); + $objWriter->writeAttribute('xmlns:grddl', 'http://www.w3.org/2003/g/data-view#'); + $objWriter->writeAttribute('xmlns:tableooo', 'http://openoffice.org/2009/table'); + $objWriter->writeAttribute('xmlns:css3t', 'http://www.w3.org/TR/css3-text/'); + $objWriter->writeAttribute('office:version', '1.2'); + + $objWriter->writeElement('office:font-face-decls'); + $objWriter->writeElement('office:styles'); + $objWriter->writeElement('office:automatic-styles'); + $objWriter->writeElement('office:master-styles'); + $objWriter->endElement(); + + return $objWriter->getData(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Thumbnails.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Thumbnails.php new file mode 100644 index 0000000..db9579d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Thumbnails.php @@ -0,0 +1,16 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Ods; + +class Thumbnails extends WriterPart +{ + /** + * Write Thumbnails/thumbnail.png to PNG format. + * + * @return string XML Output + */ + public function write(): string + { + return ''; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/WriterPart.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/WriterPart.php new file mode 100644 index 0000000..17d5d16 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/WriterPart.php @@ -0,0 +1,35 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Ods; + +use PhpOffice\PhpSpreadsheet\Writer\Ods; + +abstract class WriterPart +{ + /** + * Parent Ods object. + * + * @var Ods + */ + private $parentWriter; + + /** + * Get Ods writer. + * + * @return Ods + */ + public function getParentWriter() + { + return $this->parentWriter; + } + + /** + * Set parent Ods writer. + */ + public function __construct(Ods $writer) + { + $this->parentWriter = $writer; + } + + abstract public function write(): string; +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf.php new file mode 100644 index 0000000..493bbba --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf.php @@ -0,0 +1,251 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer; + +use PhpOffice\PhpSpreadsheet\Shared\File; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\PageSetup; +use PhpOffice\PhpSpreadsheet\Writer\Exception as WriterException; + +abstract class Pdf extends Html +{ + /** + * Temporary storage directory. + * + * @var string + */ + protected $tempDir = ''; + + /** + * Font. + * + * @var string + */ + protected $font = 'freesans'; + + /** + * Orientation (Over-ride). + * + * @var ?string + */ + protected $orientation; + + /** + * Paper size (Over-ride). + * + * @var ?int + */ + protected $paperSize; + + /** + * Paper Sizes xRef List. + * + * @var array + */ + protected static $paperSizes = [ + PageSetup::PAPERSIZE_LETTER => 'LETTER', // (8.5 in. by 11 in.) + PageSetup::PAPERSIZE_LETTER_SMALL => 'LETTER', // (8.5 in. by 11 in.) + PageSetup::PAPERSIZE_TABLOID => [792.00, 1224.00], // (11 in. by 17 in.) + PageSetup::PAPERSIZE_LEDGER => [1224.00, 792.00], // (17 in. by 11 in.) + PageSetup::PAPERSIZE_LEGAL => 'LEGAL', // (8.5 in. by 14 in.) + PageSetup::PAPERSIZE_STATEMENT => [396.00, 612.00], // (5.5 in. by 8.5 in.) + PageSetup::PAPERSIZE_EXECUTIVE => 'EXECUTIVE', // (7.25 in. by 10.5 in.) + PageSetup::PAPERSIZE_A3 => 'A3', // (297 mm by 420 mm) + PageSetup::PAPERSIZE_A4 => 'A4', // (210 mm by 297 mm) + PageSetup::PAPERSIZE_A4_SMALL => 'A4', // (210 mm by 297 mm) + PageSetup::PAPERSIZE_A5 => 'A5', // (148 mm by 210 mm) + PageSetup::PAPERSIZE_B4 => 'B4', // (250 mm by 353 mm) + PageSetup::PAPERSIZE_B5 => 'B5', // (176 mm by 250 mm) + PageSetup::PAPERSIZE_FOLIO => 'FOLIO', // (8.5 in. by 13 in.) + PageSetup::PAPERSIZE_QUARTO => [609.45, 779.53], // (215 mm by 275 mm) + PageSetup::PAPERSIZE_STANDARD_1 => [720.00, 1008.00], // (10 in. by 14 in.) + PageSetup::PAPERSIZE_STANDARD_2 => [792.00, 1224.00], // (11 in. by 17 in.) + PageSetup::PAPERSIZE_NOTE => 'LETTER', // (8.5 in. by 11 in.) + PageSetup::PAPERSIZE_NO9_ENVELOPE => [279.00, 639.00], // (3.875 in. by 8.875 in.) + PageSetup::PAPERSIZE_NO10_ENVELOPE => [297.00, 684.00], // (4.125 in. by 9.5 in.) + PageSetup::PAPERSIZE_NO11_ENVELOPE => [324.00, 747.00], // (4.5 in. by 10.375 in.) + PageSetup::PAPERSIZE_NO12_ENVELOPE => [342.00, 792.00], // (4.75 in. by 11 in.) + PageSetup::PAPERSIZE_NO14_ENVELOPE => [360.00, 828.00], // (5 in. by 11.5 in.) + PageSetup::PAPERSIZE_C => [1224.00, 1584.00], // (17 in. by 22 in.) + PageSetup::PAPERSIZE_D => [1584.00, 2448.00], // (22 in. by 34 in.) + PageSetup::PAPERSIZE_E => [2448.00, 3168.00], // (34 in. by 44 in.) + PageSetup::PAPERSIZE_DL_ENVELOPE => [311.81, 623.62], // (110 mm by 220 mm) + PageSetup::PAPERSIZE_C5_ENVELOPE => 'C5', // (162 mm by 229 mm) + PageSetup::PAPERSIZE_C3_ENVELOPE => 'C3', // (324 mm by 458 mm) + PageSetup::PAPERSIZE_C4_ENVELOPE => 'C4', // (229 mm by 324 mm) + PageSetup::PAPERSIZE_C6_ENVELOPE => 'C6', // (114 mm by 162 mm) + PageSetup::PAPERSIZE_C65_ENVELOPE => [323.15, 649.13], // (114 mm by 229 mm) + PageSetup::PAPERSIZE_B4_ENVELOPE => 'B4', // (250 mm by 353 mm) + PageSetup::PAPERSIZE_B5_ENVELOPE => 'B5', // (176 mm by 250 mm) + PageSetup::PAPERSIZE_B6_ENVELOPE => [498.90, 354.33], // (176 mm by 125 mm) + PageSetup::PAPERSIZE_ITALY_ENVELOPE => [311.81, 651.97], // (110 mm by 230 mm) + PageSetup::PAPERSIZE_MONARCH_ENVELOPE => [279.00, 540.00], // (3.875 in. by 7.5 in.) + PageSetup::PAPERSIZE_6_3_4_ENVELOPE => [261.00, 468.00], // (3.625 in. by 6.5 in.) + PageSetup::PAPERSIZE_US_STANDARD_FANFOLD => [1071.00, 792.00], // (14.875 in. by 11 in.) + PageSetup::PAPERSIZE_GERMAN_STANDARD_FANFOLD => [612.00, 864.00], // (8.5 in. by 12 in.) + PageSetup::PAPERSIZE_GERMAN_LEGAL_FANFOLD => 'FOLIO', // (8.5 in. by 13 in.) + PageSetup::PAPERSIZE_ISO_B4 => 'B4', // (250 mm by 353 mm) + PageSetup::PAPERSIZE_JAPANESE_DOUBLE_POSTCARD => [566.93, 419.53], // (200 mm by 148 mm) + PageSetup::PAPERSIZE_STANDARD_PAPER_1 => [648.00, 792.00], // (9 in. by 11 in.) + PageSetup::PAPERSIZE_STANDARD_PAPER_2 => [720.00, 792.00], // (10 in. by 11 in.) + PageSetup::PAPERSIZE_STANDARD_PAPER_3 => [1080.00, 792.00], // (15 in. by 11 in.) + PageSetup::PAPERSIZE_INVITE_ENVELOPE => [623.62, 623.62], // (220 mm by 220 mm) + PageSetup::PAPERSIZE_LETTER_EXTRA_PAPER => [667.80, 864.00], // (9.275 in. by 12 in.) + PageSetup::PAPERSIZE_LEGAL_EXTRA_PAPER => [667.80, 1080.00], // (9.275 in. by 15 in.) + PageSetup::PAPERSIZE_TABLOID_EXTRA_PAPER => [841.68, 1296.00], // (11.69 in. by 18 in.) + PageSetup::PAPERSIZE_A4_EXTRA_PAPER => [668.98, 912.76], // (236 mm by 322 mm) + PageSetup::PAPERSIZE_LETTER_TRANSVERSE_PAPER => [595.80, 792.00], // (8.275 in. by 11 in.) + PageSetup::PAPERSIZE_A4_TRANSVERSE_PAPER => 'A4', // (210 mm by 297 mm) + PageSetup::PAPERSIZE_LETTER_EXTRA_TRANSVERSE_PAPER => [667.80, 864.00], // (9.275 in. by 12 in.) + PageSetup::PAPERSIZE_SUPERA_SUPERA_A4_PAPER => [643.46, 1009.13], // (227 mm by 356 mm) + PageSetup::PAPERSIZE_SUPERB_SUPERB_A3_PAPER => [864.57, 1380.47], // (305 mm by 487 mm) + PageSetup::PAPERSIZE_LETTER_PLUS_PAPER => [612.00, 913.68], // (8.5 in. by 12.69 in.) + PageSetup::PAPERSIZE_A4_PLUS_PAPER => [595.28, 935.43], // (210 mm by 330 mm) + PageSetup::PAPERSIZE_A5_TRANSVERSE_PAPER => 'A5', // (148 mm by 210 mm) + PageSetup::PAPERSIZE_JIS_B5_TRANSVERSE_PAPER => [515.91, 728.50], // (182 mm by 257 mm) + PageSetup::PAPERSIZE_A3_EXTRA_PAPER => [912.76, 1261.42], // (322 mm by 445 mm) + PageSetup::PAPERSIZE_A5_EXTRA_PAPER => [493.23, 666.14], // (174 mm by 235 mm) + PageSetup::PAPERSIZE_ISO_B5_EXTRA_PAPER => [569.76, 782.36], // (201 mm by 276 mm) + PageSetup::PAPERSIZE_A2_PAPER => 'A2', // (420 mm by 594 mm) + PageSetup::PAPERSIZE_A3_TRANSVERSE_PAPER => 'A3', // (297 mm by 420 mm) + PageSetup::PAPERSIZE_A3_EXTRA_TRANSVERSE_PAPER => [912.76, 1261.42], // (322 mm by 445 mm) + ]; + + /** + * Create a new PDF Writer instance. + * + * @param Spreadsheet $spreadsheet Spreadsheet object + */ + public function __construct(Spreadsheet $spreadsheet) + { + parent::__construct($spreadsheet); + //$this->setUseInlineCss(true); + $this->tempDir = File::sysGetTempDir() . '/phpsppdf'; + $this->isPdf = true; + } + + /** + * Get Font. + * + * @return string + */ + public function getFont() + { + return $this->font; + } + + /** + * Set font. Examples: + * 'arialunicid0-chinese-simplified' + * 'arialunicid0-chinese-traditional' + * 'arialunicid0-korean' + * 'arialunicid0-japanese'. + * + * @param string $fontName + * + * @return $this + */ + public function setFont($fontName) + { + $this->font = $fontName; + + return $this; + } + + /** + * Get Paper Size. + * + * @return ?int + */ + public function getPaperSize() + { + return $this->paperSize; + } + + /** + * Set Paper Size. + * + * @param int $paperSize Paper size see PageSetup::PAPERSIZE_* + * + * @return self + */ + public function setPaperSize($paperSize) + { + $this->paperSize = $paperSize; + + return $this; + } + + /** + * Get Orientation. + */ + public function getOrientation(): ?string + { + return $this->orientation; + } + + /** + * Set Orientation. + * + * @param string $orientation Page orientation see PageSetup::ORIENTATION_* + * + * @return self + */ + public function setOrientation($orientation) + { + $this->orientation = $orientation; + + return $this; + } + + /** + * Get temporary storage directory. + * + * @return string + */ + public function getTempDir() + { + return $this->tempDir; + } + + /** + * Set temporary storage directory. + * + * @param string $temporaryDirectory Temporary storage directory + * + * @return self + */ + public function setTempDir($temporaryDirectory) + { + if (is_dir($temporaryDirectory)) { + $this->tempDir = $temporaryDirectory; + } else { + throw new WriterException("Directory does not exist: $temporaryDirectory"); + } + + return $this; + } + + /** + * Save Spreadsheet to PDF file, pre-save. + * + * @param string $filename Name of the file to save as + * + * @return resource + */ + protected function prepareForSave($filename) + { + // Open file + $this->openFileHandle($filename); + + return $this->fileHandle; + } + + /** + * Save PhpSpreadsheet to PDF file, post-save. + */ + protected function restoreStateAfterSave(): void + { + $this->maybeCloseFileHandle(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Dompdf.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Dompdf.php new file mode 100644 index 0000000..fc96f90 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Dompdf.php @@ -0,0 +1,53 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Pdf; + +use PhpOffice\PhpSpreadsheet\Worksheet\PageSetup; +use PhpOffice\PhpSpreadsheet\Writer\Pdf; + +class Dompdf extends Pdf +{ + /** + * Gets the implementation of external PDF library that should be used. + * + * @return \Dompdf\Dompdf implementation + */ + protected function createExternalWriterInstance() + { + return new \Dompdf\Dompdf(); + } + + /** + * Save Spreadsheet to file. + * + * @param string $filename Name of the file to save as + */ + public function save($filename, int $flags = 0): void + { + $fileHandle = parent::prepareForSave($filename); + + // Default PDF paper size + $paperSize = 'LETTER'; // Letter (8.5 in. by 11 in.) + + // Check for paper size and page orientation + $setup = $this->spreadsheet->getSheet($this->getSheetIndex() ?? 0)->getPageSetup(); + $orientation = $this->getOrientation() ?? $setup->getOrientation(); + $orientation = ($orientation === PageSetup::ORIENTATION_LANDSCAPE) ? 'L' : 'P'; + $printPaperSize = $this->getPaperSize() ?? $setup->getPaperSize(); + $paperSize = self::$paperSizes[$printPaperSize] ?? PageSetup::getPaperSizeDefault(); + + $orientation = ($orientation == 'L') ? 'landscape' : 'portrait'; + + // Create PDF + $pdf = $this->createExternalWriterInstance(); + $pdf->setPaper($paperSize, $orientation); + + $pdf->loadHtml($this->generateHTMLAll()); + $pdf->render(); + + // Write to file + fwrite($fileHandle, $pdf->output() ?? ''); + + parent::restoreStateAfterSave(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Mpdf.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Mpdf.php new file mode 100644 index 0000000..281e1a4 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Mpdf.php @@ -0,0 +1,90 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Pdf; + +use PhpOffice\PhpSpreadsheet\Worksheet\PageSetup; +use PhpOffice\PhpSpreadsheet\Writer\Html; +use PhpOffice\PhpSpreadsheet\Writer\Pdf; + +class Mpdf extends Pdf +{ + /** + * Gets the implementation of external PDF library that should be used. + * + * @param array $config Configuration array + * + * @return \Mpdf\Mpdf implementation + */ + protected function createExternalWriterInstance($config) + { + return new \Mpdf\Mpdf($config); + } + + /** + * Save Spreadsheet to file. + * + * @param string $filename Name of the file to save as + */ + public function save($filename, int $flags = 0): void + { + $fileHandle = parent::prepareForSave($filename); + + // Check for paper size and page orientation + $setup = $this->spreadsheet->getSheet($this->getSheetIndex() ?? 0)->getPageSetup(); + $orientation = $this->getOrientation() ?? $setup->getOrientation(); + $orientation = ($orientation === PageSetup::ORIENTATION_LANDSCAPE) ? 'L' : 'P'; + $printPaperSize = $this->getPaperSize() ?? $setup->getPaperSize(); + $paperSize = self::$paperSizes[$printPaperSize] ?? PageSetup::getPaperSizeDefault(); + + // Create PDF + $config = ['tempDir' => $this->tempDir . '/mpdf']; + $pdf = $this->createExternalWriterInstance($config); + $ortmp = $orientation; + $pdf->_setPageSize($paperSize, $ortmp); + $pdf->DefOrientation = $orientation; + $pdf->AddPageByArray([ + 'orientation' => $orientation, + 'margin-left' => $this->inchesToMm($this->spreadsheet->getActiveSheet()->getPageMargins()->getLeft()), + 'margin-right' => $this->inchesToMm($this->spreadsheet->getActiveSheet()->getPageMargins()->getRight()), + 'margin-top' => $this->inchesToMm($this->spreadsheet->getActiveSheet()->getPageMargins()->getTop()), + 'margin-bottom' => $this->inchesToMm($this->spreadsheet->getActiveSheet()->getPageMargins()->getBottom()), + ]); + + // Document info + $pdf->SetTitle($this->spreadsheet->getProperties()->getTitle()); + $pdf->SetAuthor($this->spreadsheet->getProperties()->getCreator()); + $pdf->SetSubject($this->spreadsheet->getProperties()->getSubject()); + $pdf->SetKeywords($this->spreadsheet->getProperties()->getKeywords()); + $pdf->SetCreator($this->spreadsheet->getProperties()->getCreator()); + + $html = $this->generateHTMLAll(); + $bodyLocation = strpos($html, Html::BODY_LINE); + // Make sure first data presented to Mpdf includes body tag + // so that Mpdf doesn't parse it as content. Issue 2432. + if ($bodyLocation !== false) { + $bodyLocation += strlen(Html::BODY_LINE); + $pdf->WriteHTML(substr($html, 0, $bodyLocation)); + $html = substr($html, $bodyLocation); + } + foreach (\array_chunk(\explode(PHP_EOL, $html), 1000) as $lines) { + $pdf->WriteHTML(\implode(PHP_EOL, $lines)); + } + + // Write to file + fwrite($fileHandle, $pdf->Output('', 'S')); + + parent::restoreStateAfterSave(); + } + + /** + * Convert inches to mm. + * + * @param float $inches + * + * @return float + */ + private function inchesToMm($inches) + { + return $inches * 25.4; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Tcpdf.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Tcpdf.php new file mode 100644 index 0000000..d29d476 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Tcpdf.php @@ -0,0 +1,84 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Pdf; + +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\PageSetup; +use PhpOffice\PhpSpreadsheet\Writer\Pdf; + +class Tcpdf extends Pdf +{ + /** + * Create a new PDF Writer instance. + * + * @param Spreadsheet $spreadsheet Spreadsheet object + */ + public function __construct(Spreadsheet $spreadsheet) + { + parent::__construct($spreadsheet); + $this->setUseInlineCss(true); + } + + /** + * Gets the implementation of external PDF library that should be used. + * + * @param string $orientation Page orientation + * @param string $unit Unit measure + * @param array|string $paperSize Paper size + * + * @return \TCPDF implementation + */ + protected function createExternalWriterInstance($orientation, $unit, $paperSize) + { + return new \TCPDF($orientation, $unit, $paperSize); + } + + /** + * Save Spreadsheet to file. + * + * @param string $filename Name of the file to save as + */ + public function save($filename, int $flags = 0): void + { + $fileHandle = parent::prepareForSave($filename); + + // Default PDF paper size + $paperSize = 'LETTER'; // Letter (8.5 in. by 11 in.) + + // Check for paper size and page orientation + $setup = $this->spreadsheet->getSheet($this->getSheetIndex() ?? 0)->getPageSetup(); + $orientation = $this->getOrientation() ?? $setup->getOrientation(); + $orientation = ($orientation === PageSetup::ORIENTATION_LANDSCAPE) ? 'L' : 'P'; + $printPaperSize = $this->getPaperSize() ?? $setup->getPaperSize(); + $paperSize = self::$paperSizes[$printPaperSize] ?? PageSetup::getPaperSizeDefault(); + $printMargins = $this->spreadsheet->getSheet($this->getSheetIndex() ?? 0)->getPageMargins(); + + // Create PDF + $pdf = $this->createExternalWriterInstance($orientation, 'pt', $paperSize); + $pdf->setFontSubsetting(false); + // Set margins, converting inches to points (using 72 dpi) + $pdf->SetMargins($printMargins->getLeft() * 72, $printMargins->getTop() * 72, $printMargins->getRight() * 72); + $pdf->SetAutoPageBreak(true, $printMargins->getBottom() * 72); + + $pdf->setPrintHeader(false); + $pdf->setPrintFooter(false); + + $pdf->AddPage(); + + // Set the appropriate font + $pdf->SetFont($this->getFont()); + $pdf->writeHTML($this->generateHTMLAll()); + + // Document info + $pdf->SetTitle($this->spreadsheet->getProperties()->getTitle()); + $pdf->SetAuthor($this->spreadsheet->getProperties()->getCreator()); + $pdf->SetSubject($this->spreadsheet->getProperties()->getSubject()); + $pdf->SetKeywords($this->spreadsheet->getProperties()->getKeywords()); + $pdf->SetCreator($this->spreadsheet->getProperties()->getCreator()); + + // Write to file + fwrite($fileHandle, $pdf->output($filename, 'S')); + + parent::restoreStateAfterSave(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls.php new file mode 100644 index 0000000..eadf008 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls.php @@ -0,0 +1,915 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\RichText\Run; +use PhpOffice\PhpSpreadsheet\Shared\Drawing as SharedDrawing; +use PhpOffice\PhpSpreadsheet\Shared\Escher; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DgContainer; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DgContainer\SpgrContainer; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DgContainer\SpgrContainer\SpContainer; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE\Blip; +use PhpOffice\PhpSpreadsheet\Shared\OLE; +use PhpOffice\PhpSpreadsheet\Shared\OLE\PPS\File; +use PhpOffice\PhpSpreadsheet\Shared\OLE\PPS\Root; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\BaseDrawing; +use PhpOffice\PhpSpreadsheet\Worksheet\Drawing; +use PhpOffice\PhpSpreadsheet\Worksheet\MemoryDrawing; +use PhpOffice\PhpSpreadsheet\Writer\Xls\Parser; +use PhpOffice\PhpSpreadsheet\Writer\Xls\Workbook; +use PhpOffice\PhpSpreadsheet\Writer\Xls\Worksheet; + +class Xls extends BaseWriter +{ + /** + * PhpSpreadsheet object. + * + * @var Spreadsheet + */ + private $spreadsheet; + + /** + * Total number of shared strings in workbook. + * + * @var int + */ + private $strTotal = 0; + + /** + * Number of unique shared strings in workbook. + * + * @var int + */ + private $strUnique = 0; + + /** + * Array of unique shared strings in workbook. + * + * @var array + */ + private $strTable = []; + + /** + * Color cache. Mapping between RGB value and color index. + * + * @var array + */ + private $colors; + + /** + * Formula parser. + * + * @var Parser + */ + private $parser; + + /** + * Identifier clusters for drawings. Used in MSODRAWINGGROUP record. + * + * @var array + */ + private $IDCLs; + + /** + * Basic OLE object summary information. + * + * @var string + */ + private $summaryInformation; + + /** + * Extended OLE object document summary information. + * + * @var string + */ + private $documentSummaryInformation; + + /** + * @var Workbook + */ + private $writerWorkbook; + + /** + * @var Worksheet[] + */ + private $writerWorksheets; + + /** + * Create a new Xls Writer. + * + * @param Spreadsheet $spreadsheet PhpSpreadsheet object + */ + public function __construct(Spreadsheet $spreadsheet) + { + $this->spreadsheet = $spreadsheet; + + $this->parser = new Xls\Parser($spreadsheet); + } + + /** + * Save Spreadsheet to file. + * + * @param resource|string $filename + */ + public function save($filename, int $flags = 0): void + { + $this->processFlags($flags); + + // garbage collect + $this->spreadsheet->garbageCollect(); + + $saveDebugLog = Calculation::getInstance($this->spreadsheet)->getDebugLog()->getWriteDebugLog(); + Calculation::getInstance($this->spreadsheet)->getDebugLog()->setWriteDebugLog(false); + $saveDateReturnType = Functions::getReturnDateType(); + Functions::setReturnDateType(Functions::RETURNDATE_EXCEL); + + // initialize colors array + $this->colors = []; + + // Initialise workbook writer + $this->writerWorkbook = new Xls\Workbook($this->spreadsheet, $this->strTotal, $this->strUnique, $this->strTable, $this->colors, $this->parser); + + // Initialise worksheet writers + $countSheets = $this->spreadsheet->getSheetCount(); + for ($i = 0; $i < $countSheets; ++$i) { + $this->writerWorksheets[$i] = new Xls\Worksheet($this->strTotal, $this->strUnique, $this->strTable, $this->colors, $this->parser, $this->preCalculateFormulas, $this->spreadsheet->getSheet($i)); + } + + // build Escher objects. Escher objects for workbooks needs to be build before Escher object for workbook. + $this->buildWorksheetEschers(); + $this->buildWorkbookEscher(); + + // add 15 identical cell style Xfs + // for now, we use the first cellXf instead of cellStyleXf + $cellXfCollection = $this->spreadsheet->getCellXfCollection(); + for ($i = 0; $i < 15; ++$i) { + $this->writerWorkbook->addXfWriter($cellXfCollection[0], true); + } + + // add all the cell Xfs + foreach ($this->spreadsheet->getCellXfCollection() as $style) { + $this->writerWorkbook->addXfWriter($style, false); + } + + // add fonts from rich text eleemnts + for ($i = 0; $i < $countSheets; ++$i) { + foreach ($this->writerWorksheets[$i]->phpSheet->getCellCollection()->getCoordinates() as $coordinate) { + /** @var Cell $cell */ + $cell = $this->writerWorksheets[$i]->phpSheet->getCellCollection()->get($coordinate); + $cVal = $cell->getValue(); + if ($cVal instanceof RichText) { + $elements = $cVal->getRichTextElements(); + foreach ($elements as $element) { + if ($element instanceof Run) { + $font = $element->getFont(); + $this->writerWorksheets[$i]->fontHashIndex[$font->getHashCode()] = $this->writerWorkbook->addFont($font); + } + } + } + } + } + + // initialize OLE file + $workbookStreamName = 'Workbook'; + $OLE = new File(OLE::ascToUcs($workbookStreamName)); + + // Write the worksheet streams before the global workbook stream, + // because the byte sizes of these are needed in the global workbook stream + $worksheetSizes = []; + for ($i = 0; $i < $countSheets; ++$i) { + $this->writerWorksheets[$i]->close(); + $worksheetSizes[] = $this->writerWorksheets[$i]->_datasize; + } + + // add binary data for global workbook stream + $OLE->append($this->writerWorkbook->writeWorkbook($worksheetSizes)); + + // add binary data for sheet streams + for ($i = 0; $i < $countSheets; ++$i) { + $OLE->append($this->writerWorksheets[$i]->getData()); + } + + $this->documentSummaryInformation = $this->writeDocumentSummaryInformation(); + // initialize OLE Document Summary Information + if (isset($this->documentSummaryInformation) && !empty($this->documentSummaryInformation)) { + $OLE_DocumentSummaryInformation = new File(OLE::ascToUcs(chr(5) . 'DocumentSummaryInformation')); + $OLE_DocumentSummaryInformation->append($this->documentSummaryInformation); + } + + $this->summaryInformation = $this->writeSummaryInformation(); + // initialize OLE Summary Information + if (isset($this->summaryInformation) && !empty($this->summaryInformation)) { + $OLE_SummaryInformation = new File(OLE::ascToUcs(chr(5) . 'SummaryInformation')); + $OLE_SummaryInformation->append($this->summaryInformation); + } + + // define OLE Parts + $arrRootData = [$OLE]; + // initialize OLE Properties file + if (isset($OLE_SummaryInformation)) { + $arrRootData[] = $OLE_SummaryInformation; + } + // initialize OLE Extended Properties file + if (isset($OLE_DocumentSummaryInformation)) { + $arrRootData[] = $OLE_DocumentSummaryInformation; + } + + $time = $this->spreadsheet->getProperties()->getModified(); + $root = new Root($time, $time, $arrRootData); + // save the OLE file + $this->openFileHandle($filename); + $root->save($this->fileHandle); + $this->maybeCloseFileHandle(); + + Functions::setReturnDateType($saveDateReturnType); + Calculation::getInstance($this->spreadsheet)->getDebugLog()->setWriteDebugLog($saveDebugLog); + } + + /** + * Build the Worksheet Escher objects. + */ + private function buildWorksheetEschers(): void + { + // 1-based index to BstoreContainer + $blipIndex = 0; + $lastReducedSpId = 0; + $lastSpId = 0; + + foreach ($this->spreadsheet->getAllsheets() as $sheet) { + // sheet index + $sheetIndex = $sheet->getParent()->getIndex($sheet); + + // check if there are any shapes for this sheet + $filterRange = $sheet->getAutoFilter()->getRange(); + if (count($sheet->getDrawingCollection()) == 0 && empty($filterRange)) { + continue; + } + + // create intermediate Escher object + $escher = new Escher(); + + // dgContainer + $dgContainer = new DgContainer(); + + // set the drawing index (we use sheet index + 1) + $dgId = $sheet->getParent()->getIndex($sheet) + 1; + $dgContainer->setDgId($dgId); + $escher->setDgContainer($dgContainer); + + // spgrContainer + $spgrContainer = new SpgrContainer(); + $dgContainer->setSpgrContainer($spgrContainer); + + // add one shape which is the group shape + $spContainer = new SpContainer(); + $spContainer->setSpgr(true); + $spContainer->setSpType(0); + $spContainer->setSpId(($sheet->getParent()->getIndex($sheet) + 1) << 10); + $spgrContainer->addChild($spContainer); + + // add the shapes + + $countShapes[$sheetIndex] = 0; // count number of shapes (minus group shape), in sheet + + foreach ($sheet->getDrawingCollection() as $drawing) { + ++$blipIndex; + + ++$countShapes[$sheetIndex]; + + // add the shape + $spContainer = new SpContainer(); + + // set the shape type + $spContainer->setSpType(0x004B); + // set the shape flag + $spContainer->setSpFlag(0x02); + + // set the shape index (we combine 1-based sheet index and $countShapes to create unique shape index) + $reducedSpId = $countShapes[$sheetIndex]; + $spId = $reducedSpId | ($sheet->getParent()->getIndex($sheet) + 1) << 10; + $spContainer->setSpId($spId); + + // keep track of last reducedSpId + $lastReducedSpId = $reducedSpId; + + // keep track of last spId + $lastSpId = $spId; + + // set the BLIP index + $spContainer->setOPT(0x4104, $blipIndex); + + // set coordinates and offsets, client anchor + $coordinates = $drawing->getCoordinates(); + $offsetX = $drawing->getOffsetX(); + $offsetY = $drawing->getOffsetY(); + $width = $drawing->getWidth(); + $height = $drawing->getHeight(); + + $twoAnchor = \PhpOffice\PhpSpreadsheet\Shared\Xls::oneAnchor2twoAnchor($sheet, $coordinates, $offsetX, $offsetY, $width, $height); + + $spContainer->setStartCoordinates($twoAnchor['startCoordinates']); + $spContainer->setStartOffsetX($twoAnchor['startOffsetX']); + $spContainer->setStartOffsetY($twoAnchor['startOffsetY']); + $spContainer->setEndCoordinates($twoAnchor['endCoordinates']); + $spContainer->setEndOffsetX($twoAnchor['endOffsetX']); + $spContainer->setEndOffsetY($twoAnchor['endOffsetY']); + + $spgrContainer->addChild($spContainer); + } + + // AutoFilters + if (!empty($filterRange)) { + $rangeBounds = Coordinate::rangeBoundaries($filterRange); + $iNumColStart = $rangeBounds[0][0]; + $iNumColEnd = $rangeBounds[1][0]; + + $iInc = $iNumColStart; + while ($iInc <= $iNumColEnd) { + ++$countShapes[$sheetIndex]; + + // create an Drawing Object for the dropdown + $oDrawing = new BaseDrawing(); + // get the coordinates of drawing + $cDrawing = Coordinate::stringFromColumnIndex($iInc) . $rangeBounds[0][1]; + $oDrawing->setCoordinates($cDrawing); + $oDrawing->setWorksheet($sheet); + + // add the shape + $spContainer = new SpContainer(); + // set the shape type + $spContainer->setSpType(0x00C9); + // set the shape flag + $spContainer->setSpFlag(0x01); + + // set the shape index (we combine 1-based sheet index and $countShapes to create unique shape index) + $reducedSpId = $countShapes[$sheetIndex]; + $spId = $reducedSpId | ($sheet->getParent()->getIndex($sheet) + 1) << 10; + $spContainer->setSpId($spId); + + // keep track of last reducedSpId + $lastReducedSpId = $reducedSpId; + + // keep track of last spId + $lastSpId = $spId; + + $spContainer->setOPT(0x007F, 0x01040104); // Protection -> fLockAgainstGrouping + $spContainer->setOPT(0x00BF, 0x00080008); // Text -> fFitTextToShape + $spContainer->setOPT(0x01BF, 0x00010000); // Fill Style -> fNoFillHitTest + $spContainer->setOPT(0x01FF, 0x00080000); // Line Style -> fNoLineDrawDash + $spContainer->setOPT(0x03BF, 0x000A0000); // Group Shape -> fPrint + + // set coordinates and offsets, client anchor + $endCoordinates = Coordinate::stringFromColumnIndex($iInc); + $endCoordinates .= $rangeBounds[0][1] + 1; + + $spContainer->setStartCoordinates($cDrawing); + $spContainer->setStartOffsetX(0); + $spContainer->setStartOffsetY(0); + $spContainer->setEndCoordinates($endCoordinates); + $spContainer->setEndOffsetX(0); + $spContainer->setEndOffsetY(0); + + $spgrContainer->addChild($spContainer); + ++$iInc; + } + } + + // identifier clusters, used for workbook Escher object + $this->IDCLs[$dgId] = $lastReducedSpId; + + // set last shape index + $dgContainer->setLastSpId($lastSpId); + + // set the Escher object + $this->writerWorksheets[$sheetIndex]->setEscher($escher); + } + } + + private function processMemoryDrawing(BstoreContainer &$bstoreContainer, MemoryDrawing $drawing, string $renderingFunctionx): void + { + switch ($renderingFunctionx) { + case MemoryDrawing::RENDERING_JPEG: + $blipType = BSE::BLIPTYPE_JPEG; + $renderingFunction = 'imagejpeg'; + + break; + default: + $blipType = BSE::BLIPTYPE_PNG; + $renderingFunction = 'imagepng'; + + break; + } + + ob_start(); + call_user_func($renderingFunction, $drawing->getImageResource()); + $blipData = ob_get_contents(); + ob_end_clean(); + + $blip = new Blip(); + $blip->setData($blipData); + + $BSE = new BSE(); + $BSE->setBlipType($blipType); + $BSE->setBlip($blip); + + $bstoreContainer->addBSE($BSE); + } + + private function processDrawing(BstoreContainer &$bstoreContainer, Drawing $drawing): void + { + $blipType = null; + $blipData = ''; + $filename = $drawing->getPath(); + + [$imagesx, $imagesy, $imageFormat] = getimagesize($filename); + + switch ($imageFormat) { + case 1: // GIF, not supported by BIFF8, we convert to PNG + $blipType = BSE::BLIPTYPE_PNG; + ob_start(); + // @phpstan-ignore-next-line + imagepng(imagecreatefromgif($filename)); + $blipData = ob_get_contents(); + ob_end_clean(); + + break; + case 2: // JPEG + $blipType = BSE::BLIPTYPE_JPEG; + $blipData = file_get_contents($filename); + + break; + case 3: // PNG + $blipType = BSE::BLIPTYPE_PNG; + $blipData = file_get_contents($filename); + + break; + case 6: // Windows DIB (BMP), we convert to PNG + $blipType = BSE::BLIPTYPE_PNG; + ob_start(); + // @phpstan-ignore-next-line + imagepng(SharedDrawing::imagecreatefrombmp($filename)); + $blipData = ob_get_contents(); + ob_end_clean(); + + break; + } + if ($blipData) { + $blip = new Blip(); + $blip->setData($blipData); + + $BSE = new BSE(); + $BSE->setBlipType($blipType); + $BSE->setBlip($blip); + + $bstoreContainer->addBSE($BSE); + } + } + + private function processBaseDrawing(BstoreContainer &$bstoreContainer, BaseDrawing $drawing): void + { + if ($drawing instanceof Drawing) { + $this->processDrawing($bstoreContainer, $drawing); + } elseif ($drawing instanceof MemoryDrawing) { + $this->processMemoryDrawing($bstoreContainer, $drawing, $drawing->getRenderingFunction()); + } + } + + private function checkForDrawings(): bool + { + // any drawings in this workbook? + $found = false; + foreach ($this->spreadsheet->getAllSheets() as $sheet) { + if (count($sheet->getDrawingCollection()) > 0) { + $found = true; + + break; + } + } + + return $found; + } + + /** + * Build the Escher object corresponding to the MSODRAWINGGROUP record. + */ + private function buildWorkbookEscher(): void + { + // nothing to do if there are no drawings + if (!$this->checkForDrawings()) { + return; + } + + // if we reach here, then there are drawings in the workbook + $escher = new Escher(); + + // dggContainer + $dggContainer = new DggContainer(); + $escher->setDggContainer($dggContainer); + + // set IDCLs (identifier clusters) + $dggContainer->setIDCLs($this->IDCLs); + + // this loop is for determining maximum shape identifier of all drawing + $spIdMax = 0; + $totalCountShapes = 0; + $countDrawings = 0; + + foreach ($this->spreadsheet->getAllsheets() as $sheet) { + $sheetCountShapes = 0; // count number of shapes (minus group shape), in sheet + + $addCount = 0; + foreach ($sheet->getDrawingCollection() as $drawing) { + $addCount = 1; + ++$sheetCountShapes; + ++$totalCountShapes; + + $spId = $sheetCountShapes | ($this->spreadsheet->getIndex($sheet) + 1) << 10; + $spIdMax = max($spId, $spIdMax); + } + $countDrawings += $addCount; + } + + $dggContainer->setSpIdMax($spIdMax + 1); + $dggContainer->setCDgSaved($countDrawings); + $dggContainer->setCSpSaved($totalCountShapes + $countDrawings); // total number of shapes incl. one group shapes per drawing + + // bstoreContainer + $bstoreContainer = new BstoreContainer(); + $dggContainer->setBstoreContainer($bstoreContainer); + + // the BSE's (all the images) + foreach ($this->spreadsheet->getAllsheets() as $sheet) { + foreach ($sheet->getDrawingCollection() as $drawing) { + $this->processBaseDrawing($bstoreContainer, $drawing); + } + } + + // Set the Escher object + $this->writerWorkbook->setEscher($escher); + } + + /** + * Build the OLE Part for DocumentSummary Information. + * + * @return string + */ + private function writeDocumentSummaryInformation() + { + // offset: 0; size: 2; must be 0xFE 0xFF (UTF-16 LE byte order mark) + $data = pack('v', 0xFFFE); + // offset: 2; size: 2; + $data .= pack('v', 0x0000); + // offset: 4; size: 2; OS version + $data .= pack('v', 0x0106); + // offset: 6; size: 2; OS indicator + $data .= pack('v', 0x0002); + // offset: 8; size: 16 + $data .= pack('VVVV', 0x00, 0x00, 0x00, 0x00); + // offset: 24; size: 4; section count + $data .= pack('V', 0x0001); + + // offset: 28; size: 16; first section's class id: 02 d5 cd d5 9c 2e 1b 10 93 97 08 00 2b 2c f9 ae + $data .= pack('vvvvvvvv', 0xD502, 0xD5CD, 0x2E9C, 0x101B, 0x9793, 0x0008, 0x2C2B, 0xAEF9); + // offset: 44; size: 4; offset of the start + $data .= pack('V', 0x30); + + // SECTION + $dataSection = []; + $dataSection_NumProps = 0; + $dataSection_Summary = ''; + $dataSection_Content = ''; + + // GKPIDDSI_CODEPAGE: CodePage + $dataSection[] = [ + 'summary' => ['pack' => 'V', 'data' => 0x01], + 'offset' => ['pack' => 'V'], + 'type' => ['pack' => 'V', 'data' => 0x02], // 2 byte signed integer + 'data' => ['data' => 1252], + ]; + ++$dataSection_NumProps; + + // GKPIDDSI_CATEGORY : Category + $dataProp = $this->spreadsheet->getProperties()->getCategory(); + if ($dataProp) { + $dataSection[] = [ + 'summary' => ['pack' => 'V', 'data' => 0x02], + 'offset' => ['pack' => 'V'], + 'type' => ['pack' => 'V', 'data' => 0x1E], + 'data' => ['data' => $dataProp, 'length' => strlen($dataProp)], + ]; + ++$dataSection_NumProps; + } + // GKPIDDSI_VERSION :Version of the application that wrote the property storage + $dataSection[] = [ + 'summary' => ['pack' => 'V', 'data' => 0x17], + 'offset' => ['pack' => 'V'], + 'type' => ['pack' => 'V', 'data' => 0x03], + 'data' => ['pack' => 'V', 'data' => 0x000C0000], + ]; + ++$dataSection_NumProps; + // GKPIDDSI_SCALE : FALSE + $dataSection[] = [ + 'summary' => ['pack' => 'V', 'data' => 0x0B], + 'offset' => ['pack' => 'V'], + 'type' => ['pack' => 'V', 'data' => 0x0B], + 'data' => ['data' => false], + ]; + ++$dataSection_NumProps; + // GKPIDDSI_LINKSDIRTY : True if any of the values for the linked properties have changed outside of the application + $dataSection[] = [ + 'summary' => ['pack' => 'V', 'data' => 0x10], + 'offset' => ['pack' => 'V'], + 'type' => ['pack' => 'V', 'data' => 0x0B], + 'data' => ['data' => false], + ]; + ++$dataSection_NumProps; + // GKPIDDSI_SHAREDOC : FALSE + $dataSection[] = [ + 'summary' => ['pack' => 'V', 'data' => 0x13], + 'offset' => ['pack' => 'V'], + 'type' => ['pack' => 'V', 'data' => 0x0B], + 'data' => ['data' => false], + ]; + ++$dataSection_NumProps; + // GKPIDDSI_HYPERLINKSCHANGED : True if any of the values for the _PID_LINKS (hyperlink text) have changed outside of the application + $dataSection[] = [ + 'summary' => ['pack' => 'V', 'data' => 0x16], + 'offset' => ['pack' => 'V'], + 'type' => ['pack' => 'V', 'data' => 0x0B], + 'data' => ['data' => false], + ]; + ++$dataSection_NumProps; + + // GKPIDDSI_DOCSPARTS + // MS-OSHARED p75 (2.3.3.2.2.1) + // Structure is VtVecUnalignedLpstrValue (2.3.3.1.9) + // cElements + $dataProp = pack('v', 0x0001); + $dataProp .= pack('v', 0x0000); + // array of UnalignedLpstr + // cch + $dataProp .= pack('v', 0x000A); + $dataProp .= pack('v', 0x0000); + // value + $dataProp .= 'Worksheet' . chr(0); + + $dataSection[] = [ + 'summary' => ['pack' => 'V', 'data' => 0x0D], + 'offset' => ['pack' => 'V'], + 'type' => ['pack' => 'V', 'data' => 0x101E], + 'data' => ['data' => $dataProp, 'length' => strlen($dataProp)], + ]; + ++$dataSection_NumProps; + + // GKPIDDSI_HEADINGPAIR + // VtVecHeadingPairValue + // cElements + $dataProp = pack('v', 0x0002); + $dataProp .= pack('v', 0x0000); + // Array of vtHeadingPair + // vtUnalignedString - headingString + // stringType + $dataProp .= pack('v', 0x001E); + // padding + $dataProp .= pack('v', 0x0000); + // UnalignedLpstr + // cch + $dataProp .= pack('v', 0x0013); + $dataProp .= pack('v', 0x0000); + // value + $dataProp .= 'Feuilles de calcul'; + // vtUnalignedString - headingParts + // wType : 0x0003 = 32 bit signed integer + $dataProp .= pack('v', 0x0300); + // padding + $dataProp .= pack('v', 0x0000); + // value + $dataProp .= pack('v', 0x0100); + $dataProp .= pack('v', 0x0000); + $dataProp .= pack('v', 0x0000); + $dataProp .= pack('v', 0x0000); + + $dataSection[] = [ + 'summary' => ['pack' => 'V', 'data' => 0x0C], + 'offset' => ['pack' => 'V'], + 'type' => ['pack' => 'V', 'data' => 0x100C], + 'data' => ['data' => $dataProp, 'length' => strlen($dataProp)], + ]; + ++$dataSection_NumProps; + + // 4 Section Length + // 4 Property count + // 8 * $dataSection_NumProps (8 = ID (4) + OffSet(4)) + $dataSection_Content_Offset = 8 + $dataSection_NumProps * 8; + foreach ($dataSection as $dataProp) { + // Summary + $dataSection_Summary .= pack($dataProp['summary']['pack'], $dataProp['summary']['data']); + // Offset + $dataSection_Summary .= pack($dataProp['offset']['pack'], $dataSection_Content_Offset); + // DataType + $dataSection_Content .= pack($dataProp['type']['pack'], $dataProp['type']['data']); + // Data + if ($dataProp['type']['data'] == 0x02) { // 2 byte signed integer + $dataSection_Content .= pack('V', $dataProp['data']['data']); + + $dataSection_Content_Offset += 4 + 4; + } elseif ($dataProp['type']['data'] == 0x03) { // 4 byte signed integer + $dataSection_Content .= pack('V', $dataProp['data']['data']); + + $dataSection_Content_Offset += 4 + 4; + } elseif ($dataProp['type']['data'] == 0x0B) { // Boolean + $dataSection_Content .= pack('V', (int) $dataProp['data']['data']); + $dataSection_Content_Offset += 4 + 4; + } elseif ($dataProp['type']['data'] == 0x1E) { // null-terminated string prepended by dword string length + // Null-terminated string + $dataProp['data']['data'] .= chr(0); + // @phpstan-ignore-next-line + ++$dataProp['data']['length']; + // Complete the string with null string for being a %4 + $dataProp['data']['length'] = $dataProp['data']['length'] + ((4 - $dataProp['data']['length'] % 4) == 4 ? 0 : (4 - $dataProp['data']['length'] % 4)); + $dataProp['data']['data'] = str_pad($dataProp['data']['data'], $dataProp['data']['length'], chr(0), STR_PAD_RIGHT); + + $dataSection_Content .= pack('V', $dataProp['data']['length']); + $dataSection_Content .= $dataProp['data']['data']; + + $dataSection_Content_Offset += 4 + 4 + strlen($dataProp['data']['data']); + // Condition below can never be true + //} elseif ($dataProp['type']['data'] == 0x40) { // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601) + // $dataSection_Content .= $dataProp['data']['data']; + + // $dataSection_Content_Offset += 4 + 8; + } else { + $dataSection_Content .= $dataProp['data']['data']; + + // @phpstan-ignore-next-line + $dataSection_Content_Offset += 4 + $dataProp['data']['length']; + } + } + // Now $dataSection_Content_Offset contains the size of the content + + // section header + // offset: $secOffset; size: 4; section length + // + x Size of the content (summary + content) + $data .= pack('V', $dataSection_Content_Offset); + // offset: $secOffset+4; size: 4; property count + $data .= pack('V', $dataSection_NumProps); + // Section Summary + $data .= $dataSection_Summary; + // Section Content + $data .= $dataSection_Content; + + return $data; + } + + /** + * @param float|int $dataProp + */ + private function writeSummaryPropOle($dataProp, int &$dataSection_NumProps, array &$dataSection, int $sumdata, int $typdata): void + { + if ($dataProp) { + $dataSection[] = [ + 'summary' => ['pack' => 'V', 'data' => $sumdata], + 'offset' => ['pack' => 'V'], + 'type' => ['pack' => 'V', 'data' => $typdata], // null-terminated string prepended by dword string length + 'data' => ['data' => OLE::localDateToOLE($dataProp)], + ]; + ++$dataSection_NumProps; + } + } + + private function writeSummaryProp(string $dataProp, int &$dataSection_NumProps, array &$dataSection, int $sumdata, int $typdata): void + { + if ($dataProp) { + $dataSection[] = [ + 'summary' => ['pack' => 'V', 'data' => $sumdata], + 'offset' => ['pack' => 'V'], + 'type' => ['pack' => 'V', 'data' => $typdata], // null-terminated string prepended by dword string length + 'data' => ['data' => $dataProp, 'length' => strlen($dataProp)], + ]; + ++$dataSection_NumProps; + } + } + + /** + * Build the OLE Part for Summary Information. + * + * @return string + */ + private function writeSummaryInformation() + { + // offset: 0; size: 2; must be 0xFE 0xFF (UTF-16 LE byte order mark) + $data = pack('v', 0xFFFE); + // offset: 2; size: 2; + $data .= pack('v', 0x0000); + // offset: 4; size: 2; OS version + $data .= pack('v', 0x0106); + // offset: 6; size: 2; OS indicator + $data .= pack('v', 0x0002); + // offset: 8; size: 16 + $data .= pack('VVVV', 0x00, 0x00, 0x00, 0x00); + // offset: 24; size: 4; section count + $data .= pack('V', 0x0001); + + // offset: 28; size: 16; first section's class id: e0 85 9f f2 f9 4f 68 10 ab 91 08 00 2b 27 b3 d9 + $data .= pack('vvvvvvvv', 0x85E0, 0xF29F, 0x4FF9, 0x1068, 0x91AB, 0x0008, 0x272B, 0xD9B3); + // offset: 44; size: 4; offset of the start + $data .= pack('V', 0x30); + + // SECTION + $dataSection = []; + $dataSection_NumProps = 0; + $dataSection_Summary = ''; + $dataSection_Content = ''; + + // CodePage : CP-1252 + $dataSection[] = [ + 'summary' => ['pack' => 'V', 'data' => 0x01], + 'offset' => ['pack' => 'V'], + 'type' => ['pack' => 'V', 'data' => 0x02], // 2 byte signed integer + 'data' => ['data' => 1252], + ]; + ++$dataSection_NumProps; + + $props = $this->spreadsheet->getProperties(); + $this->writeSummaryProp($props->getTitle(), $dataSection_NumProps, $dataSection, 0x02, 0x1e); + $this->writeSummaryProp($props->getSubject(), $dataSection_NumProps, $dataSection, 0x03, 0x1e); + $this->writeSummaryProp($props->getCreator(), $dataSection_NumProps, $dataSection, 0x04, 0x1e); + $this->writeSummaryProp($props->getKeywords(), $dataSection_NumProps, $dataSection, 0x05, 0x1e); + $this->writeSummaryProp($props->getDescription(), $dataSection_NumProps, $dataSection, 0x06, 0x1e); + $this->writeSummaryProp($props->getLastModifiedBy(), $dataSection_NumProps, $dataSection, 0x08, 0x1e); + $this->writeSummaryPropOle($props->getCreated(), $dataSection_NumProps, $dataSection, 0x0c, 0x40); + $this->writeSummaryPropOle($props->getModified(), $dataSection_NumProps, $dataSection, 0x0d, 0x40); + + // Security + $dataSection[] = [ + 'summary' => ['pack' => 'V', 'data' => 0x13], + 'offset' => ['pack' => 'V'], + 'type' => ['pack' => 'V', 'data' => 0x03], // 4 byte signed integer + 'data' => ['data' => 0x00], + ]; + ++$dataSection_NumProps; + + // 4 Section Length + // 4 Property count + // 8 * $dataSection_NumProps (8 = ID (4) + OffSet(4)) + $dataSection_Content_Offset = 8 + $dataSection_NumProps * 8; + foreach ($dataSection as $dataProp) { + // Summary + $dataSection_Summary .= pack($dataProp['summary']['pack'], $dataProp['summary']['data']); + // Offset + $dataSection_Summary .= pack($dataProp['offset']['pack'], $dataSection_Content_Offset); + // DataType + $dataSection_Content .= pack($dataProp['type']['pack'], $dataProp['type']['data']); + // Data + if ($dataProp['type']['data'] == 0x02) { // 2 byte signed integer + $dataSection_Content .= pack('V', $dataProp['data']['data']); + + $dataSection_Content_Offset += 4 + 4; + } elseif ($dataProp['type']['data'] == 0x03) { // 4 byte signed integer + $dataSection_Content .= pack('V', $dataProp['data']['data']); + + $dataSection_Content_Offset += 4 + 4; + } elseif ($dataProp['type']['data'] == 0x1E) { // null-terminated string prepended by dword string length + // Null-terminated string + $dataProp['data']['data'] .= chr(0); + ++$dataProp['data']['length']; + // Complete the string with null string for being a %4 + $dataProp['data']['length'] = $dataProp['data']['length'] + ((4 - $dataProp['data']['length'] % 4) == 4 ? 0 : (4 - $dataProp['data']['length'] % 4)); + $dataProp['data']['data'] = str_pad($dataProp['data']['data'], $dataProp['data']['length'], chr(0), STR_PAD_RIGHT); + + $dataSection_Content .= pack('V', $dataProp['data']['length']); + $dataSection_Content .= $dataProp['data']['data']; + + $dataSection_Content_Offset += 4 + 4 + strlen($dataProp['data']['data']); + } elseif ($dataProp['type']['data'] == 0x40) { // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601) + $dataSection_Content .= $dataProp['data']['data']; + + $dataSection_Content_Offset += 4 + 8; + } + // Data Type Not Used at the moment + } + // Now $dataSection_Content_Offset contains the size of the content + + // section header + // offset: $secOffset; size: 4; section length + // + x Size of the content (summary + content) + $data .= pack('V', $dataSection_Content_Offset); + // offset: $secOffset+4; size: 4; property count + $data .= pack('V', $dataSection_NumProps); + // Section Summary + $data .= $dataSection_Summary; + // Section Content + $data .= $dataSection_Content; + + return $data; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/BIFFwriter.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/BIFFwriter.php new file mode 100644 index 0000000..4a7e065 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/BIFFwriter.php @@ -0,0 +1,224 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xls; + +use PhpOffice\PhpSpreadsheet\Writer\Exception as WriterException; + +// Original file header of PEAR::Spreadsheet_Excel_Writer_BIFFwriter (used as the base for this class): +// ----------------------------------------------------------------------------------------- +// * Module written/ported by Xavier Noguer <xnoguer@rezebra.com> +// * +// * The majority of this is _NOT_ my code. I simply ported it from the +// * PERL Spreadsheet::WriteExcel module. +// * +// * The author of the Spreadsheet::WriteExcel module is John McNamara +// * <jmcnamara@cpan.org> +// * +// * I _DO_ maintain this code, and John McNamara has nothing to do with the +// * porting of this code to PHP. Any questions directly related to this +// * class library should be directed to me. +// * +// * License Information: +// * +// * Spreadsheet_Excel_Writer: A library for generating Excel Spreadsheets +// * Copyright (c) 2002-2003 Xavier Noguer xnoguer@rezebra.com +// * +// * This library is free software; you can redistribute it and/or +// * modify it under the terms of the GNU Lesser General Public +// * License as published by the Free Software Foundation; either +// * version 2.1 of the License, or (at your option) any later version. +// * +// * This library is distributed in the hope that it will be useful, +// * but WITHOUT ANY WARRANTY; without even the implied warranty of +// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// * Lesser General Public License for more details. +// * +// * You should have received a copy of the GNU Lesser General Public +// * License along with this library; if not, write to the Free Software +// * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// */ +class BIFFwriter +{ + /** + * The byte order of this architecture. 0 => little endian, 1 => big endian. + * + * @var int + */ + private static $byteOrder; + + /** + * The string containing the data of the BIFF stream. + * + * @var null|string + */ + public $_data; + + /** + * The size of the data in bytes. Should be the same as strlen($this->_data). + * + * @var int + */ + public $_datasize; + + /** + * The maximum length for a BIFF record (excluding record header and length field). See addContinue(). + * + * @var int + * + * @see addContinue() + */ + private $limit = 8224; + + /** + * Constructor. + */ + public function __construct() + { + $this->_data = ''; + $this->_datasize = 0; + } + + /** + * Determine the byte order and store it as class data to avoid + * recalculating it for each call to new(). + * + * @return int + */ + public static function getByteOrder() + { + if (!isset(self::$byteOrder)) { + // Check if "pack" gives the required IEEE 64bit float + $teststr = pack('d', 1.2345); + $number = pack('C8', 0x8D, 0x97, 0x6E, 0x12, 0x83, 0xC0, 0xF3, 0x3F); + if ($number == $teststr) { + $byte_order = 0; // Little Endian + } elseif ($number == strrev($teststr)) { + $byte_order = 1; // Big Endian + } else { + // Give up. I'll fix this in a later version. + throw new WriterException('Required floating point format not supported on this platform.'); + } + self::$byteOrder = $byte_order; + } + + return self::$byteOrder; + } + + /** + * General storage function. + * + * @param string $data binary data to append + */ + protected function append($data): void + { + if (strlen($data) - 4 > $this->limit) { + $data = $this->addContinue($data); + } + $this->_data .= $data; + $this->_datasize += strlen($data); + } + + /** + * General storage function like append, but returns string instead of modifying $this->_data. + * + * @param string $data binary data to write + * + * @return string + */ + public function writeData($data) + { + if (strlen($data) - 4 > $this->limit) { + $data = $this->addContinue($data); + } + $this->_datasize += strlen($data); + + return $data; + } + + /** + * Writes Excel BOF record to indicate the beginning of a stream or + * sub-stream in the BIFF file. + * + * @param int $type type of BIFF file to write: 0x0005 Workbook, + * 0x0010 Worksheet + */ + protected function storeBof($type): void + { + $record = 0x0809; // Record identifier (BIFF5-BIFF8) + $length = 0x0010; + + // by inspection of real files, MS Office Excel 2007 writes the following + $unknown = pack('VV', 0x000100D1, 0x00000406); + + $build = 0x0DBB; // Excel 97 + $year = 0x07CC; // Excel 97 + + $version = 0x0600; // BIFF8 + + $header = pack('vv', $record, $length); + $data = pack('vvvv', $version, $type, $build, $year); + $this->append($header . $data . $unknown); + } + + /** + * Writes Excel EOF record to indicate the end of a BIFF stream. + */ + protected function storeEof(): void + { + $record = 0x000A; // Record identifier + $length = 0x0000; // Number of bytes to follow + + $header = pack('vv', $record, $length); + $this->append($header); + } + + /** + * Writes Excel EOF record to indicate the end of a BIFF stream. + */ + public function writeEof() + { + $record = 0x000A; // Record identifier + $length = 0x0000; // Number of bytes to follow + $header = pack('vv', $record, $length); + + return $this->writeData($header); + } + + /** + * Excel limits the size of BIFF records. In Excel 5 the limit is 2084 bytes. In + * Excel 97 the limit is 8228 bytes. Records that are longer than these limits + * must be split up into CONTINUE blocks. + * + * This function takes a long BIFF record and inserts CONTINUE records as + * necessary. + * + * @param string $data The original binary data to be written + * + * @return string A very convenient string of continue blocks + */ + private function addContinue($data) + { + $limit = $this->limit; + $record = 0x003C; // Record identifier + + // The first 2080/8224 bytes remain intact. However, we have to change + // the length field of the record. + $tmp = substr($data, 0, 2) . pack('v', $limit) . substr($data, 4, $limit); + + $header = pack('vv', $record, $limit); // Headers for continue records + + // Retrieve chunks of 2080/8224 bytes +4 for the header. + $data_length = strlen($data); + for ($i = $limit + 4; $i < ($data_length - $limit); $i += $limit) { + $tmp .= $header; + $tmp .= substr($data, $i, $limit); + } + + // Retrieve the last chunk of data + $header = pack('vv', $record, strlen($data) - $i); + $tmp .= $header; + $tmp .= substr($data, $i); + + return $tmp; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/CellDataValidation.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/CellDataValidation.php new file mode 100644 index 0000000..7e9b3cf --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/CellDataValidation.php @@ -0,0 +1,78 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xls; + +use PhpOffice\PhpSpreadsheet\Cell\DataValidation; + +class CellDataValidation +{ + /** + * @var array<string, int> + */ + protected static $validationTypeMap = [ + DataValidation::TYPE_NONE => 0x00, + DataValidation::TYPE_WHOLE => 0x01, + DataValidation::TYPE_DECIMAL => 0x02, + DataValidation::TYPE_LIST => 0x03, + DataValidation::TYPE_DATE => 0x04, + DataValidation::TYPE_TIME => 0x05, + DataValidation::TYPE_TEXTLENGTH => 0x06, + DataValidation::TYPE_CUSTOM => 0x07, + ]; + + /** + * @var array<string, int> + */ + protected static $errorStyleMap = [ + DataValidation::STYLE_STOP => 0x00, + DataValidation::STYLE_WARNING => 0x01, + DataValidation::STYLE_INFORMATION => 0x02, + ]; + + /** + * @var array<string, int> + */ + protected static $operatorMap = [ + DataValidation::OPERATOR_BETWEEN => 0x00, + DataValidation::OPERATOR_NOTBETWEEN => 0x01, + DataValidation::OPERATOR_EQUAL => 0x02, + DataValidation::OPERATOR_NOTEQUAL => 0x03, + DataValidation::OPERATOR_GREATERTHAN => 0x04, + DataValidation::OPERATOR_LESSTHAN => 0x05, + DataValidation::OPERATOR_GREATERTHANOREQUAL => 0x06, + DataValidation::OPERATOR_LESSTHANOREQUAL => 0x07, + ]; + + public static function type(DataValidation $dataValidation): int + { + $validationType = $dataValidation->getType(); + + if (is_string($validationType) && array_key_exists($validationType, self::$validationTypeMap)) { + return self::$validationTypeMap[$validationType]; + } + + return self::$validationTypeMap[DataValidation::TYPE_NONE]; + } + + public static function errorStyle(DataValidation $dataValidation): int + { + $errorStyle = $dataValidation->getErrorStyle(); + + if (is_string($errorStyle) && array_key_exists($errorStyle, self::$errorStyleMap)) { + return self::$errorStyleMap[$errorStyle]; + } + + return self::$errorStyleMap[DataValidation::STYLE_STOP]; + } + + public static function operator(DataValidation $dataValidation): int + { + $operator = $dataValidation->getOperator(); + + if (is_string($operator) && array_key_exists($operator, self::$operatorMap)) { + return self::$operatorMap[$operator]; + } + + return self::$operatorMap[DataValidation::OPERATOR_BETWEEN]; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/ConditionalHelper.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/ConditionalHelper.php new file mode 100644 index 0000000..0f78b8c --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/ConditionalHelper.php @@ -0,0 +1,76 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xls; + +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; +use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard; + +class ConditionalHelper +{ + /** + * Formula parser. + * + * @var Parser + */ + protected $parser; + + /** + * @var mixed + */ + protected $condition; + + /** + * @var string + */ + protected $cellRange; + + /** + * @var null|string + */ + protected $tokens; + + /** + * @var int + */ + protected $size; + + public function __construct(Parser $parser) + { + $this->parser = $parser; + } + + /** + * @param mixed $condition + */ + public function processCondition($condition, string $cellRange): void + { + $this->condition = $condition; + $this->cellRange = $cellRange; + + if (is_int($condition) || is_float($condition)) { + $this->size = ($condition <= 65535 ? 3 : 0x0000); + $this->tokens = pack('Cv', 0x1E, $condition); + } else { + try { + $formula = Wizard\WizardAbstract::reverseAdjustCellRef((string) $condition, $cellRange); + $this->parser->parse($formula); + $this->tokens = $this->parser->toReversePolish(); + $this->size = strlen($this->tokens ?? ''); + } catch (PhpSpreadsheetException $e) { + // In the event of a parser error with a formula value, we set the expression to ptgInt + 0 + $this->tokens = pack('Cv', 0x1E, 0); + $this->size = 3; + } + } + } + + public function tokens(): ?string + { + return $this->tokens; + } + + public function size(): int + { + return $this->size; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/ErrorCode.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/ErrorCode.php new file mode 100644 index 0000000..7a864f5 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/ErrorCode.php @@ -0,0 +1,28 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xls; + +class ErrorCode +{ + /** + * @var array<string, int> + */ + protected static $errorCodeMap = [ + '#NULL!' => 0x00, + '#DIV/0!' => 0x07, + '#VALUE!' => 0x0F, + '#REF!' => 0x17, + '#NAME?' => 0x1D, + '#NUM!' => 0x24, + '#N/A' => 0x2A, + ]; + + public static function error(string $errorCode): int + { + if (array_key_exists($errorCode, self::$errorCodeMap)) { + return self::$errorCodeMap[$errorCode]; + } + + return 0; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Escher.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Escher.php new file mode 100644 index 0000000..e42139b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Escher.php @@ -0,0 +1,510 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xls; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DgContainer; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DgContainer\SpgrContainer; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DgContainer\SpgrContainer\SpContainer; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE; +use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE\Blip; + +class Escher +{ + /** + * The object we are writing. + */ + private $object; + + /** + * The written binary data. + */ + private $data; + + /** + * Shape offsets. Positions in binary stream where a new shape record begins. + * + * @var array + */ + private $spOffsets; + + /** + * Shape types. + * + * @var array + */ + private $spTypes; + + /** + * Constructor. + * + * @param mixed $object + */ + public function __construct($object) + { + $this->object = $object; + } + + /** + * Process the object to be written. + * + * @return string + */ + public function close() + { + // initialize + $this->data = ''; + + switch (get_class($this->object)) { + case \PhpOffice\PhpSpreadsheet\Shared\Escher::class: + if ($dggContainer = $this->object->getDggContainer()) { + $writer = new self($dggContainer); + $this->data = $writer->close(); + } elseif ($dgContainer = $this->object->getDgContainer()) { + $writer = new self($dgContainer); + $this->data = $writer->close(); + $this->spOffsets = $writer->getSpOffsets(); + $this->spTypes = $writer->getSpTypes(); + } + + break; + case DggContainer::class: + // this is a container record + + // initialize + $innerData = ''; + + // write the dgg + $recVer = 0x0; + $recInstance = 0x0000; + $recType = 0xF006; + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + // dgg data + $dggData = + pack( + 'VVVV', + $this->object->getSpIdMax(), // maximum shape identifier increased by one + $this->object->getCDgSaved() + 1, // number of file identifier clusters increased by one + $this->object->getCSpSaved(), + $this->object->getCDgSaved() // count total number of drawings saved + ); + + // add file identifier clusters (one per drawing) + $IDCLs = $this->object->getIDCLs(); + + foreach ($IDCLs as $dgId => $maxReducedSpId) { + $dggData .= pack('VV', $dgId, $maxReducedSpId + 1); + } + + $header = pack('vvV', $recVerInstance, $recType, strlen($dggData)); + $innerData .= $header . $dggData; + + // write the bstoreContainer + if ($bstoreContainer = $this->object->getBstoreContainer()) { + $writer = new self($bstoreContainer); + $innerData .= $writer->close(); + } + + // write the record + $recVer = 0xF; + $recInstance = 0x0000; + $recType = 0xF000; + $length = strlen($innerData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $this->data = $header . $innerData; + + break; + case BstoreContainer::class: + // this is a container record + + // initialize + $innerData = ''; + + // treat the inner data + if ($BSECollection = $this->object->getBSECollection()) { + foreach ($BSECollection as $BSE) { + $writer = new self($BSE); + $innerData .= $writer->close(); + } + } + + // write the record + $recVer = 0xF; + $recInstance = count($this->object->getBSECollection()); + $recType = 0xF001; + $length = strlen($innerData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $this->data = $header . $innerData; + + break; + case BSE::class: + // this is a semi-container record + + // initialize + $innerData = ''; + + // here we treat the inner data + if ($blip = $this->object->getBlip()) { + $writer = new self($blip); + $innerData .= $writer->close(); + } + + // initialize + $data = ''; + + $btWin32 = $this->object->getBlipType(); + $btMacOS = $this->object->getBlipType(); + $data .= pack('CC', $btWin32, $btMacOS); + + $rgbUid = pack('VVVV', 0, 0, 0, 0); // todo + $data .= $rgbUid; + + $tag = 0; + $size = strlen($innerData); + $cRef = 1; + $foDelay = 0; //todo + $unused1 = 0x0; + $cbName = 0x0; + $unused2 = 0x0; + $unused3 = 0x0; + $data .= pack('vVVVCCCC', $tag, $size, $cRef, $foDelay, $unused1, $cbName, $unused2, $unused3); + + $data .= $innerData; + + // write the record + $recVer = 0x2; + $recInstance = $this->object->getBlipType(); + $recType = 0xF007; + $length = strlen($data); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $this->data = $header; + + $this->data .= $data; + + break; + case Blip::class: + // this is an atom record + + // write the record + switch ($this->object->getParent()->getBlipType()) { + case BSE::BLIPTYPE_JPEG: + // initialize + $innerData = ''; + + $rgbUid1 = pack('VVVV', 0, 0, 0, 0); // todo + $innerData .= $rgbUid1; + + $tag = 0xFF; // todo + $innerData .= pack('C', $tag); + + $innerData .= $this->object->getData(); + + $recVer = 0x0; + $recInstance = 0x46A; + $recType = 0xF01D; + $length = strlen($innerData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $this->data = $header; + + $this->data .= $innerData; + + break; + case BSE::BLIPTYPE_PNG: + // initialize + $innerData = ''; + + $rgbUid1 = pack('VVVV', 0, 0, 0, 0); // todo + $innerData .= $rgbUid1; + + $tag = 0xFF; // todo + $innerData .= pack('C', $tag); + + $innerData .= $this->object->getData(); + + $recVer = 0x0; + $recInstance = 0x6E0; + $recType = 0xF01E; + $length = strlen($innerData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $this->data = $header; + + $this->data .= $innerData; + + break; + } + + break; + case DgContainer::class: + // this is a container record + + // initialize + $innerData = ''; + + // write the dg + $recVer = 0x0; + $recInstance = $this->object->getDgId(); + $recType = 0xF008; + $length = 8; + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + // number of shapes in this drawing (including group shape) + $countShapes = count($this->object->getSpgrContainer()->getChildren()); + $innerData .= $header . pack('VV', $countShapes, $this->object->getLastSpId()); + + // write the spgrContainer + if ($spgrContainer = $this->object->getSpgrContainer()) { + $writer = new self($spgrContainer); + $innerData .= $writer->close(); + + // get the shape offsets relative to the spgrContainer record + $spOffsets = $writer->getSpOffsets(); + $spTypes = $writer->getSpTypes(); + + // save the shape offsets relative to dgContainer + foreach ($spOffsets as &$spOffset) { + $spOffset += 24; // add length of dgContainer header data (8 bytes) plus dg data (16 bytes) + } + + $this->spOffsets = $spOffsets; + $this->spTypes = $spTypes; + } + + // write the record + $recVer = 0xF; + $recInstance = 0x0000; + $recType = 0xF002; + $length = strlen($innerData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $this->data = $header . $innerData; + + break; + case SpgrContainer::class: + // this is a container record + + // initialize + $innerData = ''; + + // initialize spape offsets + $totalSize = 8; + $spOffsets = []; + $spTypes = []; + + // treat the inner data + foreach ($this->object->getChildren() as $spContainer) { + $writer = new self($spContainer); + $spData = $writer->close(); + $innerData .= $spData; + + // save the shape offsets (where new shape records begin) + $totalSize += strlen($spData); + $spOffsets[] = $totalSize; + + $spTypes = array_merge($spTypes, $writer->getSpTypes()); + } + + // write the record + $recVer = 0xF; + $recInstance = 0x0000; + $recType = 0xF003; + $length = strlen($innerData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $this->data = $header . $innerData; + $this->spOffsets = $spOffsets; + $this->spTypes = $spTypes; + + break; + case SpContainer::class: + // initialize + $data = ''; + + // build the data + + // write group shape record, if necessary? + if ($this->object->getSpgr()) { + $recVer = 0x1; + $recInstance = 0x0000; + $recType = 0xF009; + $length = 0x00000010; + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $data .= $header . pack('VVVV', 0, 0, 0, 0); + } + $this->spTypes[] = ($this->object->getSpType()); + + // write the shape record + $recVer = 0x2; + $recInstance = $this->object->getSpType(); // shape type + $recType = 0xF00A; + $length = 0x00000008; + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $data .= $header . pack('VV', $this->object->getSpId(), $this->object->getSpgr() ? 0x0005 : 0x0A00); + + // the options + if ($this->object->getOPTCollection()) { + $optData = ''; + + $recVer = 0x3; + $recInstance = count($this->object->getOPTCollection()); + $recType = 0xF00B; + foreach ($this->object->getOPTCollection() as $property => $value) { + $optData .= pack('vV', $property, $value); + } + $length = strlen($optData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + $data .= $header . $optData; + } + + // the client anchor + if ($this->object->getStartCoordinates()) { + $clientAnchorData = ''; + + $recVer = 0x0; + $recInstance = 0x0; + $recType = 0xF010; + + // start coordinates + [$column, $row] = Coordinate::indexesFromString($this->object->getStartCoordinates()); + $c1 = $column - 1; + $r1 = $row - 1; + + // start offsetX + $startOffsetX = $this->object->getStartOffsetX(); + + // start offsetY + $startOffsetY = $this->object->getStartOffsetY(); + + // end coordinates + [$column, $row] = Coordinate::indexesFromString($this->object->getEndCoordinates()); + $c2 = $column - 1; + $r2 = $row - 1; + + // end offsetX + $endOffsetX = $this->object->getEndOffsetX(); + + // end offsetY + $endOffsetY = $this->object->getEndOffsetY(); + + $clientAnchorData = pack('vvvvvvvvv', $this->object->getSpFlag(), $c1, $startOffsetX, $r1, $startOffsetY, $c2, $endOffsetX, $r2, $endOffsetY); + + $length = strlen($clientAnchorData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + $data .= $header . $clientAnchorData; + } + + // the client data, just empty for now + if (!$this->object->getSpgr()) { + $clientDataData = ''; + + $recVer = 0x0; + $recInstance = 0x0; + $recType = 0xF011; + + $length = strlen($clientDataData); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + $data .= $header . $clientDataData; + } + + // write the record + $recVer = 0xF; + $recInstance = 0x0000; + $recType = 0xF004; + $length = strlen($data); + + $recVerInstance = $recVer; + $recVerInstance |= $recInstance << 4; + + $header = pack('vvV', $recVerInstance, $recType, $length); + + $this->data = $header . $data; + + break; + } + + return $this->data; + } + + /** + * Gets the shape offsets. + * + * @return array + */ + public function getSpOffsets() + { + return $this->spOffsets; + } + + /** + * Gets the shape types. + * + * @return array + */ + public function getSpTypes() + { + return $this->spTypes; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Font.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Font.php new file mode 100644 index 0000000..1266cf2 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Font.php @@ -0,0 +1,147 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xls; + +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; + +class Font +{ + /** + * Color index. + * + * @var int + */ + private $colorIndex; + + /** + * Font. + * + * @var \PhpOffice\PhpSpreadsheet\Style\Font + */ + private $font; + + /** + * Constructor. + */ + public function __construct(\PhpOffice\PhpSpreadsheet\Style\Font $font) + { + $this->colorIndex = 0x7FFF; + $this->font = $font; + } + + /** + * Set the color index. + * + * @param int $colorIndex + */ + public function setColorIndex($colorIndex): void + { + $this->colorIndex = $colorIndex; + } + + /** + * Get font record data. + * + * @return string + */ + public function writeFont() + { + $font_outline = 0; + $font_shadow = 0; + + $icv = $this->colorIndex; // Index to color palette + if ($this->font->getSuperscript()) { + $sss = 1; + } elseif ($this->font->getSubscript()) { + $sss = 2; + } else { + $sss = 0; + } + $bFamily = 0; // Font family + $bCharSet = \PhpOffice\PhpSpreadsheet\Shared\Font::getCharsetFromFontName($this->font->getName()); // Character set + + $record = 0x31; // Record identifier + $reserved = 0x00; // Reserved + $grbit = 0x00; // Font attributes + if ($this->font->getItalic()) { + $grbit |= 0x02; + } + if ($this->font->getStrikethrough()) { + $grbit |= 0x08; + } + if ($font_outline) { + $grbit |= 0x10; + } + if ($font_shadow) { + $grbit |= 0x20; + } + + $data = pack( + 'vvvvvCCCC', + // Fontsize (in twips) + $this->font->getSize() * 20, + $grbit, + // Colour + $icv, + // Font weight + self::mapBold($this->font->getBold()), + // Superscript/Subscript + $sss, + self::mapUnderline($this->font->getUnderline()), + $bFamily, + $bCharSet, + $reserved + ); + $data .= StringHelper::UTF8toBIFF8UnicodeShort($this->font->getName()); + + $length = strlen($data); + $header = pack('vv', $record, $length); + + return $header . $data; + } + + /** + * Map to BIFF5-BIFF8 codes for bold. + * + * @param bool $bold + * + * @return int + */ + private static function mapBold($bold) + { + if ($bold) { + return 0x2BC; // 700 = Bold font weight + } + + return 0x190; // 400 = Normal font weight + } + + /** + * Map of BIFF2-BIFF8 codes for underline styles. + * + * @var int[] + */ + private static $mapUnderline = [ + \PhpOffice\PhpSpreadsheet\Style\Font::UNDERLINE_NONE => 0x00, + \PhpOffice\PhpSpreadsheet\Style\Font::UNDERLINE_SINGLE => 0x01, + \PhpOffice\PhpSpreadsheet\Style\Font::UNDERLINE_DOUBLE => 0x02, + \PhpOffice\PhpSpreadsheet\Style\Font::UNDERLINE_SINGLEACCOUNTING => 0x21, + \PhpOffice\PhpSpreadsheet\Style\Font::UNDERLINE_DOUBLEACCOUNTING => 0x22, + ]; + + /** + * Map underline. + * + * @param string $underline + * + * @return int + */ + private static function mapUnderline($underline) + { + if (isset(self::$mapUnderline[$underline])) { + return self::$mapUnderline[$underline]; + } + + return 0x00; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Parser.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Parser.php new file mode 100644 index 0000000..2f75f90 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Parser.php @@ -0,0 +1,1485 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xls; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet as PhpspreadsheetWorksheet; +use PhpOffice\PhpSpreadsheet\Writer\Exception as WriterException; + +// Original file header of PEAR::Spreadsheet_Excel_Writer_Parser (used as the base for this class): +// ----------------------------------------------------------------------------------------- +// * Class for parsing Excel formulas +// * +// * License Information: +// * +// * Spreadsheet_Excel_Writer: A library for generating Excel Spreadsheets +// * Copyright (c) 2002-2003 Xavier Noguer xnoguer@rezebra.com +// * +// * This library is free software; you can redistribute it and/or +// * modify it under the terms of the GNU Lesser General Public +// * License as published by the Free Software Foundation; either +// * version 2.1 of the License, or (at your option) any later version. +// * +// * This library is distributed in the hope that it will be useful, +// * but WITHOUT ANY WARRANTY; without even the implied warranty of +// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// * Lesser General Public License for more details. +// * +// * You should have received a copy of the GNU Lesser General Public +// * License along with this library; if not, write to the Free Software +// * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// */ +class Parser +{ + /** Constants */ + // Sheet title in unquoted form + // Invalid sheet title characters cannot occur in the sheet title: + // *:/\?[] + // Moreover, there are valid sheet title characters that cannot occur in unquoted form (there may be more?) + // +-% '^&<>=,;#()"{} + const REGEX_SHEET_TITLE_UNQUOTED = '[^\*\:\/\\\\\?\[\]\+\-\% \\\'\^\&\<\>\=\,\;\#\(\)\"\{\}]+'; + + // Sheet title in quoted form (without surrounding quotes) + // Invalid sheet title characters cannot occur in the sheet title: + // *:/\?[] (usual invalid sheet title characters) + // Single quote is represented as a pair '' + const REGEX_SHEET_TITLE_QUOTED = '(([^\*\:\/\\\\\?\[\]\\\'])+|(\\\'\\\')+)+'; + + /** + * The index of the character we are currently looking at. + * + * @var int + */ + public $currentCharacter; + + /** + * The token we are working on. + * + * @var string + */ + public $currentToken; + + /** + * The formula to parse. + * + * @var string + */ + private $formula; + + /** + * The character ahead of the current char. + * + * @var string + */ + public $lookAhead; + + /** + * The parse tree to be generated. + * + * @var string + */ + public $parseTree; + + /** + * Array of external sheets. + * + * @var array + */ + private $externalSheets; + + /** + * Array of sheet references in the form of REF structures. + * + * @var array + */ + public $references; + + /** + * The Excel ptg indices. + * + * @var array + */ + private $ptg = [ + 'ptgExp' => 0x01, + 'ptgTbl' => 0x02, + 'ptgAdd' => 0x03, + 'ptgSub' => 0x04, + 'ptgMul' => 0x05, + 'ptgDiv' => 0x06, + 'ptgPower' => 0x07, + 'ptgConcat' => 0x08, + 'ptgLT' => 0x09, + 'ptgLE' => 0x0A, + 'ptgEQ' => 0x0B, + 'ptgGE' => 0x0C, + 'ptgGT' => 0x0D, + 'ptgNE' => 0x0E, + 'ptgIsect' => 0x0F, + 'ptgUnion' => 0x10, + 'ptgRange' => 0x11, + 'ptgUplus' => 0x12, + 'ptgUminus' => 0x13, + 'ptgPercent' => 0x14, + 'ptgParen' => 0x15, + 'ptgMissArg' => 0x16, + 'ptgStr' => 0x17, + 'ptgAttr' => 0x19, + 'ptgSheet' => 0x1A, + 'ptgEndSheet' => 0x1B, + 'ptgErr' => 0x1C, + 'ptgBool' => 0x1D, + 'ptgInt' => 0x1E, + 'ptgNum' => 0x1F, + 'ptgArray' => 0x20, + 'ptgFunc' => 0x21, + 'ptgFuncVar' => 0x22, + 'ptgName' => 0x23, + 'ptgRef' => 0x24, + 'ptgArea' => 0x25, + 'ptgMemArea' => 0x26, + 'ptgMemErr' => 0x27, + 'ptgMemNoMem' => 0x28, + 'ptgMemFunc' => 0x29, + 'ptgRefErr' => 0x2A, + 'ptgAreaErr' => 0x2B, + 'ptgRefN' => 0x2C, + 'ptgAreaN' => 0x2D, + 'ptgMemAreaN' => 0x2E, + 'ptgMemNoMemN' => 0x2F, + 'ptgNameX' => 0x39, + 'ptgRef3d' => 0x3A, + 'ptgArea3d' => 0x3B, + 'ptgRefErr3d' => 0x3C, + 'ptgAreaErr3d' => 0x3D, + 'ptgArrayV' => 0x40, + 'ptgFuncV' => 0x41, + 'ptgFuncVarV' => 0x42, + 'ptgNameV' => 0x43, + 'ptgRefV' => 0x44, + 'ptgAreaV' => 0x45, + 'ptgMemAreaV' => 0x46, + 'ptgMemErrV' => 0x47, + 'ptgMemNoMemV' => 0x48, + 'ptgMemFuncV' => 0x49, + 'ptgRefErrV' => 0x4A, + 'ptgAreaErrV' => 0x4B, + 'ptgRefNV' => 0x4C, + 'ptgAreaNV' => 0x4D, + 'ptgMemAreaNV' => 0x4E, + 'ptgMemNoMemNV' => 0x4F, + 'ptgFuncCEV' => 0x58, + 'ptgNameXV' => 0x59, + 'ptgRef3dV' => 0x5A, + 'ptgArea3dV' => 0x5B, + 'ptgRefErr3dV' => 0x5C, + 'ptgAreaErr3dV' => 0x5D, + 'ptgArrayA' => 0x60, + 'ptgFuncA' => 0x61, + 'ptgFuncVarA' => 0x62, + 'ptgNameA' => 0x63, + 'ptgRefA' => 0x64, + 'ptgAreaA' => 0x65, + 'ptgMemAreaA' => 0x66, + 'ptgMemErrA' => 0x67, + 'ptgMemNoMemA' => 0x68, + 'ptgMemFuncA' => 0x69, + 'ptgRefErrA' => 0x6A, + 'ptgAreaErrA' => 0x6B, + 'ptgRefNA' => 0x6C, + 'ptgAreaNA' => 0x6D, + 'ptgMemAreaNA' => 0x6E, + 'ptgMemNoMemNA' => 0x6F, + 'ptgFuncCEA' => 0x78, + 'ptgNameXA' => 0x79, + 'ptgRef3dA' => 0x7A, + 'ptgArea3dA' => 0x7B, + 'ptgRefErr3dA' => 0x7C, + 'ptgAreaErr3dA' => 0x7D, + ]; + + /** + * Thanks to Michael Meeks and Gnumeric for the initial arg values. + * + * The following hash was generated by "function_locale.pl" in the distro. + * Refer to function_locale.pl for non-English function names. + * + * The array elements are as follow: + * ptg: The Excel function ptg code. + * args: The number of arguments that the function takes: + * >=0 is a fixed number of arguments. + * -1 is a variable number of arguments. + * class: The reference, value or array class of the function args. + * vol: The function is volatile. + * + * @var array + */ + private $functions = [ + // function ptg args class vol + 'COUNT' => [0, -1, 0, 0], + 'IF' => [1, -1, 1, 0], + 'ISNA' => [2, 1, 1, 0], + 'ISERROR' => [3, 1, 1, 0], + 'SUM' => [4, -1, 0, 0], + 'AVERAGE' => [5, -1, 0, 0], + 'MIN' => [6, -1, 0, 0], + 'MAX' => [7, -1, 0, 0], + 'ROW' => [8, -1, 0, 0], + 'COLUMN' => [9, -1, 0, 0], + 'NA' => [10, 0, 0, 0], + 'NPV' => [11, -1, 1, 0], + 'STDEV' => [12, -1, 0, 0], + 'DOLLAR' => [13, -1, 1, 0], + 'FIXED' => [14, -1, 1, 0], + 'SIN' => [15, 1, 1, 0], + 'COS' => [16, 1, 1, 0], + 'TAN' => [17, 1, 1, 0], + 'ATAN' => [18, 1, 1, 0], + 'PI' => [19, 0, 1, 0], + 'SQRT' => [20, 1, 1, 0], + 'EXP' => [21, 1, 1, 0], + 'LN' => [22, 1, 1, 0], + 'LOG10' => [23, 1, 1, 0], + 'ABS' => [24, 1, 1, 0], + 'INT' => [25, 1, 1, 0], + 'SIGN' => [26, 1, 1, 0], + 'ROUND' => [27, 2, 1, 0], + 'LOOKUP' => [28, -1, 0, 0], + 'INDEX' => [29, -1, 0, 1], + 'REPT' => [30, 2, 1, 0], + 'MID' => [31, 3, 1, 0], + 'LEN' => [32, 1, 1, 0], + 'VALUE' => [33, 1, 1, 0], + 'TRUE' => [34, 0, 1, 0], + 'FALSE' => [35, 0, 1, 0], + 'AND' => [36, -1, 0, 0], + 'OR' => [37, -1, 0, 0], + 'NOT' => [38, 1, 1, 0], + 'MOD' => [39, 2, 1, 0], + 'DCOUNT' => [40, 3, 0, 0], + 'DSUM' => [41, 3, 0, 0], + 'DAVERAGE' => [42, 3, 0, 0], + 'DMIN' => [43, 3, 0, 0], + 'DMAX' => [44, 3, 0, 0], + 'DSTDEV' => [45, 3, 0, 0], + 'VAR' => [46, -1, 0, 0], + 'DVAR' => [47, 3, 0, 0], + 'TEXT' => [48, 2, 1, 0], + 'LINEST' => [49, -1, 0, 0], + 'TREND' => [50, -1, 0, 0], + 'LOGEST' => [51, -1, 0, 0], + 'GROWTH' => [52, -1, 0, 0], + 'PV' => [56, -1, 1, 0], + 'FV' => [57, -1, 1, 0], + 'NPER' => [58, -1, 1, 0], + 'PMT' => [59, -1, 1, 0], + 'RATE' => [60, -1, 1, 0], + 'MIRR' => [61, 3, 0, 0], + 'IRR' => [62, -1, 0, 0], + 'RAND' => [63, 0, 1, 1], + 'MATCH' => [64, -1, 0, 0], + 'DATE' => [65, 3, 1, 0], + 'TIME' => [66, 3, 1, 0], + 'DAY' => [67, 1, 1, 0], + 'MONTH' => [68, 1, 1, 0], + 'YEAR' => [69, 1, 1, 0], + 'WEEKDAY' => [70, -1, 1, 0], + 'HOUR' => [71, 1, 1, 0], + 'MINUTE' => [72, 1, 1, 0], + 'SECOND' => [73, 1, 1, 0], + 'NOW' => [74, 0, 1, 1], + 'AREAS' => [75, 1, 0, 1], + 'ROWS' => [76, 1, 0, 1], + 'COLUMNS' => [77, 1, 0, 1], + 'OFFSET' => [78, -1, 0, 1], + 'SEARCH' => [82, -1, 1, 0], + 'TRANSPOSE' => [83, 1, 1, 0], + 'TYPE' => [86, 1, 1, 0], + 'ATAN2' => [97, 2, 1, 0], + 'ASIN' => [98, 1, 1, 0], + 'ACOS' => [99, 1, 1, 0], + 'CHOOSE' => [100, -1, 1, 0], + 'HLOOKUP' => [101, -1, 0, 0], + 'VLOOKUP' => [102, -1, 0, 0], + 'ISREF' => [105, 1, 0, 0], + 'LOG' => [109, -1, 1, 0], + 'CHAR' => [111, 1, 1, 0], + 'LOWER' => [112, 1, 1, 0], + 'UPPER' => [113, 1, 1, 0], + 'PROPER' => [114, 1, 1, 0], + 'LEFT' => [115, -1, 1, 0], + 'RIGHT' => [116, -1, 1, 0], + 'EXACT' => [117, 2, 1, 0], + 'TRIM' => [118, 1, 1, 0], + 'REPLACE' => [119, 4, 1, 0], + 'SUBSTITUTE' => [120, -1, 1, 0], + 'CODE' => [121, 1, 1, 0], + 'FIND' => [124, -1, 1, 0], + 'CELL' => [125, -1, 0, 1], + 'ISERR' => [126, 1, 1, 0], + 'ISTEXT' => [127, 1, 1, 0], + 'ISNUMBER' => [128, 1, 1, 0], + 'ISBLANK' => [129, 1, 1, 0], + 'T' => [130, 1, 0, 0], + 'N' => [131, 1, 0, 0], + 'DATEVALUE' => [140, 1, 1, 0], + 'TIMEVALUE' => [141, 1, 1, 0], + 'SLN' => [142, 3, 1, 0], + 'SYD' => [143, 4, 1, 0], + 'DDB' => [144, -1, 1, 0], + 'INDIRECT' => [148, -1, 1, 1], + 'CALL' => [150, -1, 1, 0], + 'CLEAN' => [162, 1, 1, 0], + 'MDETERM' => [163, 1, 2, 0], + 'MINVERSE' => [164, 1, 2, 0], + 'MMULT' => [165, 2, 2, 0], + 'IPMT' => [167, -1, 1, 0], + 'PPMT' => [168, -1, 1, 0], + 'COUNTA' => [169, -1, 0, 0], + 'PRODUCT' => [183, -1, 0, 0], + 'FACT' => [184, 1, 1, 0], + 'DPRODUCT' => [189, 3, 0, 0], + 'ISNONTEXT' => [190, 1, 1, 0], + 'STDEVP' => [193, -1, 0, 0], + 'VARP' => [194, -1, 0, 0], + 'DSTDEVP' => [195, 3, 0, 0], + 'DVARP' => [196, 3, 0, 0], + 'TRUNC' => [197, -1, 1, 0], + 'ISLOGICAL' => [198, 1, 1, 0], + 'DCOUNTA' => [199, 3, 0, 0], + 'USDOLLAR' => [204, -1, 1, 0], + 'FINDB' => [205, -1, 1, 0], + 'SEARCHB' => [206, -1, 1, 0], + 'REPLACEB' => [207, 4, 1, 0], + 'LEFTB' => [208, -1, 1, 0], + 'RIGHTB' => [209, -1, 1, 0], + 'MIDB' => [210, 3, 1, 0], + 'LENB' => [211, 1, 1, 0], + 'ROUNDUP' => [212, 2, 1, 0], + 'ROUNDDOWN' => [213, 2, 1, 0], + 'ASC' => [214, 1, 1, 0], + 'DBCS' => [215, 1, 1, 0], + 'RANK' => [216, -1, 0, 0], + 'ADDRESS' => [219, -1, 1, 0], + 'DAYS360' => [220, -1, 1, 0], + 'TODAY' => [221, 0, 1, 1], + 'VDB' => [222, -1, 1, 0], + 'MEDIAN' => [227, -1, 0, 0], + 'SUMPRODUCT' => [228, -1, 2, 0], + 'SINH' => [229, 1, 1, 0], + 'COSH' => [230, 1, 1, 0], + 'TANH' => [231, 1, 1, 0], + 'ASINH' => [232, 1, 1, 0], + 'ACOSH' => [233, 1, 1, 0], + 'ATANH' => [234, 1, 1, 0], + 'DGET' => [235, 3, 0, 0], + 'INFO' => [244, 1, 1, 1], + 'DB' => [247, -1, 1, 0], + 'FREQUENCY' => [252, 2, 0, 0], + 'ERROR.TYPE' => [261, 1, 1, 0], + 'REGISTER.ID' => [267, -1, 1, 0], + 'AVEDEV' => [269, -1, 0, 0], + 'BETADIST' => [270, -1, 1, 0], + 'GAMMALN' => [271, 1, 1, 0], + 'BETAINV' => [272, -1, 1, 0], + 'BINOMDIST' => [273, 4, 1, 0], + 'CHIDIST' => [274, 2, 1, 0], + 'CHIINV' => [275, 2, 1, 0], + 'COMBIN' => [276, 2, 1, 0], + 'CONFIDENCE' => [277, 3, 1, 0], + 'CRITBINOM' => [278, 3, 1, 0], + 'EVEN' => [279, 1, 1, 0], + 'EXPONDIST' => [280, 3, 1, 0], + 'FDIST' => [281, 3, 1, 0], + 'FINV' => [282, 3, 1, 0], + 'FISHER' => [283, 1, 1, 0], + 'FISHERINV' => [284, 1, 1, 0], + 'FLOOR' => [285, 2, 1, 0], + 'GAMMADIST' => [286, 4, 1, 0], + 'GAMMAINV' => [287, 3, 1, 0], + 'CEILING' => [288, 2, 1, 0], + 'HYPGEOMDIST' => [289, 4, 1, 0], + 'LOGNORMDIST' => [290, 3, 1, 0], + 'LOGINV' => [291, 3, 1, 0], + 'NEGBINOMDIST' => [292, 3, 1, 0], + 'NORMDIST' => [293, 4, 1, 0], + 'NORMSDIST' => [294, 1, 1, 0], + 'NORMINV' => [295, 3, 1, 0], + 'NORMSINV' => [296, 1, 1, 0], + 'STANDARDIZE' => [297, 3, 1, 0], + 'ODD' => [298, 1, 1, 0], + 'PERMUT' => [299, 2, 1, 0], + 'POISSON' => [300, 3, 1, 0], + 'TDIST' => [301, 3, 1, 0], + 'WEIBULL' => [302, 4, 1, 0], + 'SUMXMY2' => [303, 2, 2, 0], + 'SUMX2MY2' => [304, 2, 2, 0], + 'SUMX2PY2' => [305, 2, 2, 0], + 'CHITEST' => [306, 2, 2, 0], + 'CORREL' => [307, 2, 2, 0], + 'COVAR' => [308, 2, 2, 0], + 'FORECAST' => [309, 3, 2, 0], + 'FTEST' => [310, 2, 2, 0], + 'INTERCEPT' => [311, 2, 2, 0], + 'PEARSON' => [312, 2, 2, 0], + 'RSQ' => [313, 2, 2, 0], + 'STEYX' => [314, 2, 2, 0], + 'SLOPE' => [315, 2, 2, 0], + 'TTEST' => [316, 4, 2, 0], + 'PROB' => [317, -1, 2, 0], + 'DEVSQ' => [318, -1, 0, 0], + 'GEOMEAN' => [319, -1, 0, 0], + 'HARMEAN' => [320, -1, 0, 0], + 'SUMSQ' => [321, -1, 0, 0], + 'KURT' => [322, -1, 0, 0], + 'SKEW' => [323, -1, 0, 0], + 'ZTEST' => [324, -1, 0, 0], + 'LARGE' => [325, 2, 0, 0], + 'SMALL' => [326, 2, 0, 0], + 'QUARTILE' => [327, 2, 0, 0], + 'PERCENTILE' => [328, 2, 0, 0], + 'PERCENTRANK' => [329, -1, 0, 0], + 'MODE' => [330, -1, 2, 0], + 'TRIMMEAN' => [331, 2, 0, 0], + 'TINV' => [332, 2, 1, 0], + 'CONCATENATE' => [336, -1, 1, 0], + 'POWER' => [337, 2, 1, 0], + 'RADIANS' => [342, 1, 1, 0], + 'DEGREES' => [343, 1, 1, 0], + 'SUBTOTAL' => [344, -1, 0, 0], + 'SUMIF' => [345, -1, 0, 0], + 'COUNTIF' => [346, 2, 0, 0], + 'COUNTBLANK' => [347, 1, 0, 0], + 'ISPMT' => [350, 4, 1, 0], + 'DATEDIF' => [351, 3, 1, 0], + 'DATESTRING' => [352, 1, 1, 0], + 'NUMBERSTRING' => [353, 2, 1, 0], + 'ROMAN' => [354, -1, 1, 0], + 'GETPIVOTDATA' => [358, -1, 0, 0], + 'HYPERLINK' => [359, -1, 1, 0], + 'PHONETIC' => [360, 1, 0, 0], + 'AVERAGEA' => [361, -1, 0, 0], + 'MAXA' => [362, -1, 0, 0], + 'MINA' => [363, -1, 0, 0], + 'STDEVPA' => [364, -1, 0, 0], + 'VARPA' => [365, -1, 0, 0], + 'STDEVA' => [366, -1, 0, 0], + 'VARA' => [367, -1, 0, 0], + 'BAHTTEXT' => [368, 1, 0, 0], + ]; + + private $spreadsheet; + + /** + * The class constructor. + */ + public function __construct(Spreadsheet $spreadsheet) + { + $this->spreadsheet = $spreadsheet; + + $this->currentCharacter = 0; + $this->currentToken = ''; // The token we are working on. + $this->formula = ''; // The formula to parse. + $this->lookAhead = ''; // The character ahead of the current char. + $this->parseTree = ''; // The parse tree to be generated. + $this->externalSheets = []; + $this->references = []; + } + + /** + * Convert a token to the proper ptg value. + * + * @param mixed $token the token to convert + * + * @return mixed the converted token on success + */ + private function convert($token) + { + if (preg_match('/"([^"]|""){0,255}"/', $token)) { + return $this->convertString($token); + } elseif (is_numeric($token)) { + return $this->convertNumber($token); + // match references like A1 or $A$1 + } elseif (preg_match('/^\$?([A-Ia-i]?[A-Za-z])\$?(\d+)$/', $token)) { + return $this->convertRef2d($token); + // match external references like Sheet1!A1 or Sheet1:Sheet2!A1 or Sheet1!$A$1 or Sheet1:Sheet2!$A$1 + } elseif (preg_match('/^' . self::REGEX_SHEET_TITLE_UNQUOTED . '(\\:' . self::REGEX_SHEET_TITLE_UNQUOTED . ')?\\!\$?[A-Ia-i]?[A-Za-z]\$?(\\d+)$/u', $token)) { + return $this->convertRef3d($token); + // match external references like 'Sheet1'!A1 or 'Sheet1:Sheet2'!A1 or 'Sheet1'!$A$1 or 'Sheet1:Sheet2'!$A$1 + } elseif (preg_match("/^'" . self::REGEX_SHEET_TITLE_QUOTED . '(\\:' . self::REGEX_SHEET_TITLE_QUOTED . ")?'\\!\\$?[A-Ia-i]?[A-Za-z]\\$?(\\d+)$/u", $token)) { + return $this->convertRef3d($token); + // match ranges like A1:B2 or $A$1:$B$2 + } elseif (preg_match('/^(\$)?[A-Ia-i]?[A-Za-z](\$)?(\d+)\:(\$)?[A-Ia-i]?[A-Za-z](\$)?(\d+)$/', $token)) { + return $this->convertRange2d($token); + // match external ranges like Sheet1!A1:B2 or Sheet1:Sheet2!A1:B2 or Sheet1!$A$1:$B$2 or Sheet1:Sheet2!$A$1:$B$2 + } elseif (preg_match('/^' . self::REGEX_SHEET_TITLE_UNQUOTED . '(\\:' . self::REGEX_SHEET_TITLE_UNQUOTED . ')?\\!\$?([A-Ia-i]?[A-Za-z])?\$?(\\d+)\\:\$?([A-Ia-i]?[A-Za-z])?\$?(\\d+)$/u', $token)) { + return $this->convertRange3d($token); + // match external ranges like 'Sheet1'!A1:B2 or 'Sheet1:Sheet2'!A1:B2 or 'Sheet1'!$A$1:$B$2 or 'Sheet1:Sheet2'!$A$1:$B$2 + } elseif (preg_match("/^'" . self::REGEX_SHEET_TITLE_QUOTED . '(\\:' . self::REGEX_SHEET_TITLE_QUOTED . ")?'\\!\\$?([A-Ia-i]?[A-Za-z])?\\$?(\\d+)\\:\\$?([A-Ia-i]?[A-Za-z])?\\$?(\\d+)$/u", $token)) { + return $this->convertRange3d($token); + // operators (including parentheses) + } elseif (isset($this->ptg[$token])) { + return pack('C', $this->ptg[$token]); + // match error codes + } elseif (preg_match('/^#[A-Z0\\/]{3,5}[!?]{1}$/', $token) || $token == '#N/A') { + return $this->convertError($token); + } elseif (preg_match('/^' . Calculation::CALCULATION_REGEXP_DEFINEDNAME . '$/mui', $token) && $this->spreadsheet->getDefinedName($token) !== null) { + return $this->convertDefinedName($token); + // commented so argument number can be processed correctly. See toReversePolish(). + /*elseif (preg_match("/[A-Z0-9\xc0-\xdc\.]+/", $token)) + { + return($this->convertFunction($token, $this->_func_args)); + }*/ + // if it's an argument, ignore the token (the argument remains) + } elseif ($token == 'arg') { + return ''; + } + + // TODO: use real error codes + throw new WriterException("Unknown token $token"); + } + + /** + * Convert a number token to ptgInt or ptgNum. + * + * @param mixed $num an integer or double for conversion to its ptg value + * + * @return string + */ + private function convertNumber($num) + { + // Integer in the range 0..2**16-1 + if ((preg_match('/^\\d+$/', $num)) && ($num <= 65535)) { + return pack('Cv', $this->ptg['ptgInt'], $num); + } + + // A float + if (BIFFwriter::getByteOrder()) { // if it's Big Endian + $num = strrev($num); + } + + return pack('Cd', $this->ptg['ptgNum'], $num); + } + + /** + * Convert a string token to ptgStr. + * + * @param string $string a string for conversion to its ptg value + * + * @return mixed the converted token on success + */ + private function convertString($string) + { + // chop away beggining and ending quotes + $string = substr($string, 1, -1); + if (strlen($string) > 255) { + throw new WriterException('String is too long'); + } + + return pack('C', $this->ptg['ptgStr']) . StringHelper::UTF8toBIFF8UnicodeShort($string); + } + + /** + * Convert a function to a ptgFunc or ptgFuncVarV depending on the number of + * args that it takes. + * + * @param string $token the name of the function for convertion to ptg value + * @param int $num_args the number of arguments the function receives + * + * @return string The packed ptg for the function + */ + private function convertFunction($token, $num_args) + { + $args = $this->functions[$token][1]; + + // Fixed number of args eg. TIME($i, $j, $k). + if ($args >= 0) { + return pack('Cv', $this->ptg['ptgFuncV'], $this->functions[$token][0]); + } + + // Variable number of args eg. SUM($i, $j, $k, ..). + return pack('CCv', $this->ptg['ptgFuncVarV'], $num_args, $this->functions[$token][0]); + } + + /** + * Convert an Excel range such as A1:D4 to a ptgRefV. + * + * @param string $range An Excel range in the A1:A2 + * @param int $class + * + * @return string + */ + private function convertRange2d($range, $class = 0) + { + // TODO: possible class value 0,1,2 check Formula.pm + // Split the range into 2 cell refs + if (preg_match('/^(\$)?([A-Ia-i]?[A-Za-z])(\$)?(\d+)\:(\$)?([A-Ia-i]?[A-Za-z])(\$)?(\d+)$/', $range)) { + [$cell1, $cell2] = explode(':', $range); + } else { + // TODO: use real error codes + throw new WriterException('Unknown range separator'); + } + + // Convert the cell references + [$row1, $col1] = $this->cellToPackedRowcol($cell1); + [$row2, $col2] = $this->cellToPackedRowcol($cell2); + + // The ptg value depends on the class of the ptg. + if ($class == 0) { + $ptgArea = pack('C', $this->ptg['ptgArea']); + } elseif ($class == 1) { + $ptgArea = pack('C', $this->ptg['ptgAreaV']); + } elseif ($class == 2) { + $ptgArea = pack('C', $this->ptg['ptgAreaA']); + } else { + // TODO: use real error codes + throw new WriterException("Unknown class $class"); + } + + return $ptgArea . $row1 . $row2 . $col1 . $col2; + } + + /** + * Convert an Excel 3d range such as "Sheet1!A1:D4" or "Sheet1:Sheet2!A1:D4" to + * a ptgArea3d. + * + * @param string $token an Excel range in the Sheet1!A1:A2 format + * + * @return mixed the packed ptgArea3d token on success + */ + private function convertRange3d($token) + { + // Split the ref at the ! symbol + [$ext_ref, $range] = PhpspreadsheetWorksheet::extractSheetTitle($token, true); + + // Convert the external reference part (different for BIFF8) + $ext_ref = $this->getRefIndex($ext_ref); + + // Split the range into 2 cell refs + [$cell1, $cell2] = explode(':', $range); + + // Convert the cell references + if (preg_match('/^(\$)?[A-Ia-i]?[A-Za-z](\$)?(\\d+)$/', $cell1)) { + [$row1, $col1] = $this->cellToPackedRowcol($cell1); + [$row2, $col2] = $this->cellToPackedRowcol($cell2); + } else { // It's a rows range (like 26:27) + [$row1, $col1, $row2, $col2] = $this->rangeToPackedRange($cell1 . ':' . $cell2); + } + + // The ptg value depends on the class of the ptg. + $ptgArea = pack('C', $this->ptg['ptgArea3d']); + + return $ptgArea . $ext_ref . $row1 . $row2 . $col1 . $col2; + } + + /** + * Convert an Excel reference such as A1, $B2, C$3 or $D$4 to a ptgRefV. + * + * @param string $cell An Excel cell reference + * + * @return string The cell in packed() format with the corresponding ptg + */ + private function convertRef2d($cell) + { + // Convert the cell reference + $cell_array = $this->cellToPackedRowcol($cell); + [$row, $col] = $cell_array; + + // The ptg value depends on the class of the ptg. + $ptgRef = pack('C', $this->ptg['ptgRefA']); + + return $ptgRef . $row . $col; + } + + /** + * Convert an Excel 3d reference such as "Sheet1!A1" or "Sheet1:Sheet2!A1" to a + * ptgRef3d. + * + * @param string $cell An Excel cell reference + * + * @return mixed the packed ptgRef3d token on success + */ + private function convertRef3d($cell) + { + // Split the ref at the ! symbol + [$ext_ref, $cell] = PhpspreadsheetWorksheet::extractSheetTitle($cell, true); + + // Convert the external reference part (different for BIFF8) + $ext_ref = $this->getRefIndex($ext_ref); + + // Convert the cell reference part + [$row, $col] = $this->cellToPackedRowcol($cell); + + // The ptg value depends on the class of the ptg. + $ptgRef = pack('C', $this->ptg['ptgRef3dA']); + + return $ptgRef . $ext_ref . $row . $col; + } + + /** + * Convert an error code to a ptgErr. + * + * @param string $errorCode The error code for conversion to its ptg value + * + * @return string The error code ptgErr + */ + private function convertError($errorCode) + { + switch ($errorCode) { + case '#NULL!': + return pack('C', 0x00); + case '#DIV/0!': + return pack('C', 0x07); + case '#VALUE!': + return pack('C', 0x0F); + case '#REF!': + return pack('C', 0x17); + case '#NAME?': + return pack('C', 0x1D); + case '#NUM!': + return pack('C', 0x24); + case '#N/A': + return pack('C', 0x2A); + } + + return pack('C', 0xFF); + } + + private function convertDefinedName(string $name): string + { + if (strlen($name) > 255) { + throw new WriterException('Defined Name is too long'); + } + + $nameReference = 1; + foreach ($this->spreadsheet->getDefinedNames() as $definedName) { + if ($name === $definedName->getName()) { + break; + } + ++$nameReference; + } + + $ptgRef = pack('Cvxx', $this->ptg['ptgName'], $nameReference); + + throw new WriterException('Cannot yet write formulae with defined names to Xls'); + + return $ptgRef; + } + + /** + * Look up the REF index that corresponds to an external sheet name + * (or range). If it doesn't exist yet add it to the workbook's references + * array. It assumes all sheet names given must exist. + * + * @param string $ext_ref The name of the external reference + * + * @return mixed The reference index in packed() format on success + */ + private function getRefIndex($ext_ref) + { + $ext_ref = (string) preg_replace(["/^'/", "/'$/"], ['', ''], $ext_ref); // Remove leading and trailing ' if any. + $ext_ref = str_replace('\'\'', '\'', $ext_ref); // Replace escaped '' with ' + + // Check if there is a sheet range eg., Sheet1:Sheet2. + if (preg_match('/:/', $ext_ref)) { + [$sheet_name1, $sheet_name2] = explode(':', $ext_ref); + + $sheet1 = $this->getSheetIndex($sheet_name1); + if ($sheet1 == -1) { + throw new WriterException("Unknown sheet name $sheet_name1 in formula"); + } + $sheet2 = $this->getSheetIndex($sheet_name2); + if ($sheet2 == -1) { + throw new WriterException("Unknown sheet name $sheet_name2 in formula"); + } + + // Reverse max and min sheet numbers if necessary + if ($sheet1 > $sheet2) { + [$sheet1, $sheet2] = [$sheet2, $sheet1]; + } + } else { // Single sheet name only. + $sheet1 = $this->getSheetIndex($ext_ref); + if ($sheet1 == -1) { + throw new WriterException("Unknown sheet name $ext_ref in formula"); + } + $sheet2 = $sheet1; + } + + // assume all references belong to this document + $supbook_index = 0x00; + $ref = pack('vvv', $supbook_index, $sheet1, $sheet2); + $totalreferences = count($this->references); + $index = -1; + for ($i = 0; $i < $totalreferences; ++$i) { + if ($ref == $this->references[$i]) { + $index = $i; + + break; + } + } + // if REF was not found add it to references array + if ($index == -1) { + $this->references[$totalreferences] = $ref; + $index = $totalreferences; + } + + return pack('v', $index); + } + + /** + * Look up the index that corresponds to an external sheet name. The hash of + * sheet names is updated by the addworksheet() method of the + * \PhpOffice\PhpSpreadsheet\Writer\Xls\Workbook class. + * + * @param string $sheet_name Sheet name + * + * @return int The sheet index, -1 if the sheet was not found + */ + private function getSheetIndex($sheet_name) + { + if (!isset($this->externalSheets[$sheet_name])) { + return -1; + } + + return $this->externalSheets[$sheet_name]; + } + + /** + * This method is used to update the array of sheet names. It is + * called by the addWorksheet() method of the + * \PhpOffice\PhpSpreadsheet\Writer\Xls\Workbook class. + * + * @param string $name The name of the worksheet being added + * @param int $index The index of the worksheet being added + * + * @see \PhpOffice\PhpSpreadsheet\Writer\Xls\Workbook::addWorksheet() + */ + public function setExtSheet($name, $index): void + { + $this->externalSheets[$name] = $index; + } + + /** + * pack() row and column into the required 3 or 4 byte format. + * + * @param string $cell The Excel cell reference to be packed + * + * @return array Array containing the row and column in packed() format + */ + private function cellToPackedRowcol($cell) + { + $cell = strtoupper($cell); + [$row, $col, $row_rel, $col_rel] = $this->cellToRowcol($cell); + if ($col >= 256) { + throw new WriterException("Column in: $cell greater than 255"); + } + if ($row >= 65536) { + throw new WriterException("Row in: $cell greater than 65536 "); + } + + // Set the high bits to indicate if row or col are relative. + $col |= $col_rel << 14; + $col |= $row_rel << 15; + $col = pack('v', $col); + + $row = pack('v', $row); + + return [$row, $col]; + } + + /** + * pack() row range into the required 3 or 4 byte format. + * Just using maximum col/rows, which is probably not the correct solution. + * + * @param string $range The Excel range to be packed + * + * @return array Array containing (row1,col1,row2,col2) in packed() format + */ + private function rangeToPackedRange($range) + { + preg_match('/(\$)?(\d+)\:(\$)?(\d+)/', $range, $match); + // return absolute rows if there is a $ in the ref + $row1_rel = empty($match[1]) ? 1 : 0; + $row1 = $match[2]; + $row2_rel = empty($match[3]) ? 1 : 0; + $row2 = $match[4]; + // Convert 1-index to zero-index + --$row1; + --$row2; + // Trick poor inocent Excel + $col1 = 0; + $col2 = 65535; // FIXME: maximum possible value for Excel 5 (change this!!!) + + // FIXME: this changes for BIFF8 + if (($row1 >= 65536) || ($row2 >= 65536)) { + throw new WriterException("Row in: $range greater than 65536 "); + } + + // Set the high bits to indicate if rows are relative. + $col1 |= $row1_rel << 15; + $col2 |= $row2_rel << 15; + $col1 = pack('v', $col1); + $col2 = pack('v', $col2); + + $row1 = pack('v', $row1); + $row2 = pack('v', $row2); + + return [$row1, $col1, $row2, $col2]; + } + + /** + * Convert an Excel cell reference such as A1 or $B2 or C$3 or $D$4 to a zero + * indexed row and column number. Also returns two (0,1) values to indicate + * whether the row or column are relative references. + * + * @param string $cell the Excel cell reference in A1 format + * + * @return array + */ + private function cellToRowcol($cell) + { + preg_match('/(\$)?([A-I]?[A-Z])(\$)?(\d+)/', $cell, $match); + // return absolute column if there is a $ in the ref + $col_rel = empty($match[1]) ? 1 : 0; + $col_ref = $match[2]; + $row_rel = empty($match[3]) ? 1 : 0; + $row = $match[4]; + + // Convert base26 column string to a number. + $expn = strlen($col_ref) - 1; + $col = 0; + $col_ref_length = strlen($col_ref); + for ($i = 0; $i < $col_ref_length; ++$i) { + $col += (ord($col_ref[$i]) - 64) * 26 ** $expn; + --$expn; + } + + // Convert 1-index to zero-index + --$row; + --$col; + + return [$row, $col, $row_rel, $col_rel]; + } + + /** + * Advance to the next valid token. + */ + private function advance() + { + $token = ''; + $i = $this->currentCharacter; + $formula_length = strlen($this->formula); + // eat up white spaces + if ($i < $formula_length) { + while ($this->formula[$i] == ' ') { + ++$i; + } + + if ($i < ($formula_length - 1)) { + $this->lookAhead = $this->formula[$i + 1]; + } + $token = ''; + } + + while ($i < $formula_length) { + $token .= $this->formula[$i]; + + if ($i < ($formula_length - 1)) { + $this->lookAhead = $this->formula[$i + 1]; + } else { + $this->lookAhead = ''; + } + + if ($this->match($token) != '') { + $this->currentCharacter = $i + 1; + $this->currentToken = $token; + + return 1; + } + + if ($i < ($formula_length - 2)) { + $this->lookAhead = $this->formula[$i + 2]; + } else { // if we run out of characters lookAhead becomes empty + $this->lookAhead = ''; + } + ++$i; + } + //die("Lexical error ".$this->currentCharacter); + } + + /** + * Checks if it's a valid token. + * + * @param mixed $token the token to check + * + * @return mixed The checked token or false on failure + */ + private function match($token) + { + switch ($token) { + case '+': + case '-': + case '*': + case '/': + case '(': + case ')': + case ',': + case ';': + case '>=': + case '<=': + case '=': + case '<>': + case '^': + case '&': + case '%': + return $token; + + break; + case '>': + if ($this->lookAhead === '=') { // it's a GE token + break; + } + + return $token; + + break; + case '<': + // it's a LE or a NE token + if (($this->lookAhead === '=') || ($this->lookAhead === '>')) { + break; + } + + return $token; + + break; + default: + // if it's a reference A1 or $A$1 or $A1 or A$1 + if (preg_match('/^\$?[A-Ia-i]?[A-Za-z]\$?\d+$/', $token) && !preg_match('/\d/', $this->lookAhead) && ($this->lookAhead !== ':') && ($this->lookAhead !== '.') && ($this->lookAhead !== '!')) { + return $token; + } elseif (preg_match('/^' . self::REGEX_SHEET_TITLE_UNQUOTED . '(\\:' . self::REGEX_SHEET_TITLE_UNQUOTED . ')?\\!\$?[A-Ia-i]?[A-Za-z]\$?\\d+$/u', $token) && !preg_match('/\d/', $this->lookAhead) && ($this->lookAhead !== ':') && ($this->lookAhead !== '.')) { + // If it's an external reference (Sheet1!A1 or Sheet1:Sheet2!A1 or Sheet1!$A$1 or Sheet1:Sheet2!$A$1) + return $token; + } elseif (preg_match("/^'" . self::REGEX_SHEET_TITLE_QUOTED . '(\\:' . self::REGEX_SHEET_TITLE_QUOTED . ")?'\\!\\$?[A-Ia-i]?[A-Za-z]\\$?\\d+$/u", $token) && !preg_match('/\d/', $this->lookAhead) && ($this->lookAhead !== ':') && ($this->lookAhead !== '.')) { + // If it's an external reference ('Sheet1'!A1 or 'Sheet1:Sheet2'!A1 or 'Sheet1'!$A$1 or 'Sheet1:Sheet2'!$A$1) + return $token; + } elseif (preg_match('/^(\$)?[A-Ia-i]?[A-Za-z](\$)?\d+:(\$)?[A-Ia-i]?[A-Za-z](\$)?\d+$/', $token) && !preg_match('/\d/', $this->lookAhead)) { + // if it's a range A1:A2 or $A$1:$A$2 + return $token; + } elseif (preg_match('/^' . self::REGEX_SHEET_TITLE_UNQUOTED . '(\\:' . self::REGEX_SHEET_TITLE_UNQUOTED . ')?\\!\$?([A-Ia-i]?[A-Za-z])?\$?\\d+:\$?([A-Ia-i]?[A-Za-z])?\$?\\d+$/u', $token) && !preg_match('/\d/', $this->lookAhead)) { + // If it's an external range like Sheet1!A1:B2 or Sheet1:Sheet2!A1:B2 or Sheet1!$A$1:$B$2 or Sheet1:Sheet2!$A$1:$B$2 + return $token; + } elseif (preg_match("/^'" . self::REGEX_SHEET_TITLE_QUOTED . '(\\:' . self::REGEX_SHEET_TITLE_QUOTED . ")?'\\!\\$?([A-Ia-i]?[A-Za-z])?\\$?\\d+:\\$?([A-Ia-i]?[A-Za-z])?\\$?\\d+$/u", $token) && !preg_match('/\d/', $this->lookAhead)) { + // If it's an external range like 'Sheet1'!A1:B2 or 'Sheet1:Sheet2'!A1:B2 or 'Sheet1'!$A$1:$B$2 or 'Sheet1:Sheet2'!$A$1:$B$2 + return $token; + } elseif (is_numeric($token) && (!is_numeric($token . $this->lookAhead) || ($this->lookAhead == '')) && ($this->lookAhead !== '!') && ($this->lookAhead !== ':')) { + // If it's a number (check that it's not a sheet name or range) + return $token; + } elseif (preg_match('/"([^"]|""){0,255}"/', $token) && $this->lookAhead !== '"' && (substr_count($token, '"') % 2 == 0)) { + // If it's a string (of maximum 255 characters) + return $token; + } elseif (preg_match('/^#[A-Z0\\/]{3,5}[!?]{1}$/', $token) || $token === '#N/A') { + // If it's an error code + return $token; + } elseif (preg_match("/^[A-Z0-9\xc0-\xdc\\.]+$/i", $token) && ($this->lookAhead === '(')) { + // if it's a function call + return $token; + } elseif (preg_match('/^' . Calculation::CALCULATION_REGEXP_DEFINEDNAME . '$/miu', $token) && $this->spreadsheet->getDefinedName($token) !== null) { + return $token; + } elseif (substr($token, -1) === ')') { + // It's an argument of some description (e.g. a named range), + // precise nature yet to be determined + return $token; + } + + return ''; + } + } + + /** + * The parsing method. It parses a formula. + * + * @param string $formula the formula to parse, without the initial equal + * sign (=) + * + * @return mixed true on success + */ + public function parse($formula) + { + $this->currentCharacter = 0; + $this->formula = (string) $formula; + $this->lookAhead = $formula[1] ?? ''; + $this->advance(); + $this->parseTree = $this->condition(); + + return true; + } + + /** + * It parses a condition. It assumes the following rule: + * Cond -> Expr [(">" | "<") Expr]. + * + * @return mixed The parsed ptg'd tree on success + */ + private function condition() + { + $result = $this->expression(); + if ($this->currentToken == '<') { + $this->advance(); + $result2 = $this->expression(); + $result = $this->createTree('ptgLT', $result, $result2); + } elseif ($this->currentToken == '>') { + $this->advance(); + $result2 = $this->expression(); + $result = $this->createTree('ptgGT', $result, $result2); + } elseif ($this->currentToken == '<=') { + $this->advance(); + $result2 = $this->expression(); + $result = $this->createTree('ptgLE', $result, $result2); + } elseif ($this->currentToken == '>=') { + $this->advance(); + $result2 = $this->expression(); + $result = $this->createTree('ptgGE', $result, $result2); + } elseif ($this->currentToken == '=') { + $this->advance(); + $result2 = $this->expression(); + $result = $this->createTree('ptgEQ', $result, $result2); + } elseif ($this->currentToken == '<>') { + $this->advance(); + $result2 = $this->expression(); + $result = $this->createTree('ptgNE', $result, $result2); + } + + return $result; + } + + /** + * It parses a expression. It assumes the following rule: + * Expr -> Term [("+" | "-") Term] + * -> "string" + * -> "-" Term : Negative value + * -> "+" Term : Positive value + * -> Error code. + * + * @return mixed The parsed ptg'd tree on success + */ + private function expression() + { + // If it's a string return a string node + if (preg_match('/"([^"]|""){0,255}"/', $this->currentToken)) { + $tmp = str_replace('""', '"', $this->currentToken); + if (($tmp == '"') || ($tmp == '')) { + // Trap for "" that has been used for an empty string + $tmp = '""'; + } + $result = $this->createTree($tmp, '', ''); + $this->advance(); + + return $result; + // If it's an error code + } elseif (preg_match('/^#[A-Z0\\/]{3,5}[!?]{1}$/', $this->currentToken) || $this->currentToken == '#N/A') { + $result = $this->createTree($this->currentToken, 'ptgErr', ''); + $this->advance(); + + return $result; + // If it's a negative value + } elseif ($this->currentToken == '-') { + // catch "-" Term + $this->advance(); + $result2 = $this->expression(); + + return $this->createTree('ptgUminus', $result2, ''); + // If it's a positive value + } elseif ($this->currentToken == '+') { + // catch "+" Term + $this->advance(); + $result2 = $this->expression(); + + return $this->createTree('ptgUplus', $result2, ''); + } + $result = $this->term(); + while ($this->currentToken === '&') { + $this->advance(); + $result2 = $this->expression(); + $result = $this->createTree('ptgConcat', $result, $result2); + } + while ( + ($this->currentToken == '+') || + ($this->currentToken == '-') || + ($this->currentToken == '^') + ) { + if ($this->currentToken == '+') { + $this->advance(); + $result2 = $this->term(); + $result = $this->createTree('ptgAdd', $result, $result2); + } elseif ($this->currentToken == '-') { + $this->advance(); + $result2 = $this->term(); + $result = $this->createTree('ptgSub', $result, $result2); + } else { + $this->advance(); + $result2 = $this->term(); + $result = $this->createTree('ptgPower', $result, $result2); + } + } + + return $result; + } + + /** + * This function just introduces a ptgParen element in the tree, so that Excel + * doesn't get confused when working with a parenthesized formula afterwards. + * + * @return array The parsed ptg'd tree + * + * @see fact() + */ + private function parenthesizedExpression() + { + return $this->createTree('ptgParen', $this->expression(), ''); + } + + /** + * It parses a term. It assumes the following rule: + * Term -> Fact [("*" | "/") Fact]. + * + * @return mixed The parsed ptg'd tree on success + */ + private function term() + { + $result = $this->fact(); + while ( + ($this->currentToken == '*') || + ($this->currentToken == '/') + ) { + if ($this->currentToken == '*') { + $this->advance(); + $result2 = $this->fact(); + $result = $this->createTree('ptgMul', $result, $result2); + } else { + $this->advance(); + $result2 = $this->fact(); + $result = $this->createTree('ptgDiv', $result, $result2); + } + } + + return $result; + } + + /** + * It parses a factor. It assumes the following rule: + * Fact -> ( Expr ) + * | CellRef + * | CellRange + * | Number + * | Function. + * + * @return mixed The parsed ptg'd tree on success + */ + private function fact() + { + if ($this->currentToken === '(') { + $this->advance(); // eat the "(" + $result = $this->parenthesizedExpression(); + if ($this->currentToken !== ')') { + throw new WriterException("')' token expected."); + } + $this->advance(); // eat the ")" + + return $result; + } + // if it's a reference + if (preg_match('/^\$?[A-Ia-i]?[A-Za-z]\$?\d+$/', $this->currentToken)) { + $result = $this->createTree($this->currentToken, '', ''); + $this->advance(); + + return $result; + } elseif (preg_match('/^' . self::REGEX_SHEET_TITLE_UNQUOTED . '(\\:' . self::REGEX_SHEET_TITLE_UNQUOTED . ')?\\!\$?[A-Ia-i]?[A-Za-z]\$?\\d+$/u', $this->currentToken)) { + // If it's an external reference (Sheet1!A1 or Sheet1:Sheet2!A1 or Sheet1!$A$1 or Sheet1:Sheet2!$A$1) + $result = $this->createTree($this->currentToken, '', ''); + $this->advance(); + + return $result; + } elseif (preg_match("/^'" . self::REGEX_SHEET_TITLE_QUOTED . '(\\:' . self::REGEX_SHEET_TITLE_QUOTED . ")?'\\!\\$?[A-Ia-i]?[A-Za-z]\\$?\\d+$/u", $this->currentToken)) { + // If it's an external reference ('Sheet1'!A1 or 'Sheet1:Sheet2'!A1 or 'Sheet1'!$A$1 or 'Sheet1:Sheet2'!$A$1) + $result = $this->createTree($this->currentToken, '', ''); + $this->advance(); + + return $result; + } elseif ( + preg_match('/^(\$)?[A-Ia-i]?[A-Za-z](\$)?\d+:(\$)?[A-Ia-i]?[A-Za-z](\$)?\d+$/', $this->currentToken) || + preg_match('/^(\$)?[A-Ia-i]?[A-Za-z](\$)?\d+\.\.(\$)?[A-Ia-i]?[A-Za-z](\$)?\d+$/', $this->currentToken) + ) { + // if it's a range A1:B2 or $A$1:$B$2 + // must be an error? + $result = $this->createTree($this->currentToken, '', ''); + $this->advance(); + + return $result; + } elseif (preg_match('/^' . self::REGEX_SHEET_TITLE_UNQUOTED . '(\\:' . self::REGEX_SHEET_TITLE_UNQUOTED . ')?\\!\$?([A-Ia-i]?[A-Za-z])?\$?\\d+:\$?([A-Ia-i]?[A-Za-z])?\$?\\d+$/u', $this->currentToken)) { + // If it's an external range (Sheet1!A1:B2 or Sheet1:Sheet2!A1:B2 or Sheet1!$A$1:$B$2 or Sheet1:Sheet2!$A$1:$B$2) + // must be an error? + $result = $this->createTree($this->currentToken, '', ''); + $this->advance(); + + return $result; + } elseif (preg_match("/^'" . self::REGEX_SHEET_TITLE_QUOTED . '(\\:' . self::REGEX_SHEET_TITLE_QUOTED . ")?'\\!\\$?([A-Ia-i]?[A-Za-z])?\\$?\\d+:\\$?([A-Ia-i]?[A-Za-z])?\\$?\\d+$/u", $this->currentToken)) { + // If it's an external range ('Sheet1'!A1:B2 or 'Sheet1'!A1:B2 or 'Sheet1'!$A$1:$B$2 or 'Sheet1'!$A$1:$B$2) + // must be an error? + $result = $this->createTree($this->currentToken, '', ''); + $this->advance(); + + return $result; + } elseif (is_numeric($this->currentToken)) { + // If it's a number or a percent + if ($this->lookAhead === '%') { + $result = $this->createTree('ptgPercent', $this->currentToken, ''); + $this->advance(); // Skip the percentage operator once we've pre-built that tree + } else { + $result = $this->createTree($this->currentToken, '', ''); + } + $this->advance(); + + return $result; + } elseif (preg_match("/^[A-Z0-9\xc0-\xdc\\.]+$/i", $this->currentToken) && ($this->lookAhead === '(')) { + // if it's a function call + return $this->func(); + } elseif (preg_match('/^' . Calculation::CALCULATION_REGEXP_DEFINEDNAME . '$/miu', $this->currentToken) && $this->spreadsheet->getDefinedName($this->currentToken) !== null) { + $result = $this->createTree('ptgName', $this->currentToken, ''); + $this->advance(); + + return $result; + } + + throw new WriterException('Syntax error: ' . $this->currentToken . ', lookahead: ' . $this->lookAhead . ', current char: ' . $this->currentCharacter); + } + + /** + * It parses a function call. It assumes the following rule: + * Func -> ( Expr [,Expr]* ). + * + * @return mixed The parsed ptg'd tree on success + */ + private function func() + { + $num_args = 0; // number of arguments received + $function = strtoupper($this->currentToken); + $result = ''; // initialize result + $this->advance(); + $this->advance(); // eat the "(" + while ($this->currentToken !== ')') { + if ($num_args > 0) { + if ($this->currentToken === ',' || $this->currentToken === ';') { + $this->advance(); // eat the "," or ";" + } else { + throw new WriterException("Syntax error: comma expected in function $function, arg #{$num_args}"); + } + $result2 = $this->condition(); + $result = $this->createTree('arg', $result, $result2); + } else { // first argument + $result2 = $this->condition(); + $result = $this->createTree('arg', '', $result2); + } + ++$num_args; + } + if (!isset($this->functions[$function])) { + throw new WriterException("Function $function() doesn't exist"); + } + $args = $this->functions[$function][1]; + // If fixed number of args eg. TIME($i, $j, $k). Check that the number of args is valid. + if (($args >= 0) && ($args != $num_args)) { + throw new WriterException("Incorrect number of arguments in function $function() "); + } + + $result = $this->createTree($function, $result, $num_args); + $this->advance(); // eat the ")" + + return $result; + } + + /** + * Creates a tree. In fact an array which may have one or two arrays (sub-trees) + * as elements. + * + * @param mixed $value the value of this node + * @param mixed $left the left array (sub-tree) or a final node + * @param mixed $right the right array (sub-tree) or a final node + * + * @return array A tree + */ + private function createTree($value, $left, $right) + { + return ['value' => $value, 'left' => $left, 'right' => $right]; + } + + /** + * Builds a string containing the tree in reverse polish notation (What you + * would use in a HP calculator stack). + * The following tree:. + * + * + + * / \ + * 2 3 + * + * produces: "23+" + * + * The following tree: + * + * + + * / \ + * 3 * + * / \ + * 6 A1 + * + * produces: "36A1*+" + * + * In fact all operands, functions, references, etc... are written as ptg's + * + * @param array $tree the optional tree to convert + * + * @return string The tree in reverse polish notation + */ + public function toReversePolish($tree = []) + { + $polish = ''; // the string we are going to return + if (empty($tree)) { // If it's the first call use parseTree + $tree = $this->parseTree; + } + + if (is_array($tree['left'])) { + $converted_tree = $this->toReversePolish($tree['left']); + $polish .= $converted_tree; + } elseif ($tree['left'] != '') { // It's a final node + $converted_tree = $this->convert($tree['left']); + $polish .= $converted_tree; + } + if (is_array($tree['right'])) { + $converted_tree = $this->toReversePolish($tree['right']); + $polish .= $converted_tree; + } elseif ($tree['right'] != '') { // It's a final node + $converted_tree = $this->convert($tree['right']); + $polish .= $converted_tree; + } + // if it's a function convert it here (so we can set it's arguments) + if ( + preg_match("/^[A-Z0-9\xc0-\xdc\\.]+$/", $tree['value']) && + !preg_match('/^([A-Ia-i]?[A-Za-z])(\d+)$/', $tree['value']) && + !preg_match('/^[A-Ia-i]?[A-Za-z](\\d+)\\.\\.[A-Ia-i]?[A-Za-z](\\d+)$/', $tree['value']) && + !is_numeric($tree['value']) && + !isset($this->ptg[$tree['value']]) + ) { + // left subtree for a function is always an array. + if ($tree['left'] != '') { + $left_tree = $this->toReversePolish($tree['left']); + } else { + $left_tree = ''; + } + + // add it's left subtree and return. + return $left_tree . $this->convertFunction($tree['value'], $tree['right']); + } + $converted_tree = $this->convert($tree['value']); + + return $polish . $converted_tree; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/CellAlignment.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/CellAlignment.php new file mode 100644 index 0000000..711d88d --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/CellAlignment.php @@ -0,0 +1,59 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xls\Style; + +use PhpOffice\PhpSpreadsheet\Style\Alignment; + +class CellAlignment +{ + /** + * @var array<string, int> + */ + private static $horizontalMap = [ + Alignment::HORIZONTAL_GENERAL => 0, + Alignment::HORIZONTAL_LEFT => 1, + Alignment::HORIZONTAL_RIGHT => 3, + Alignment::HORIZONTAL_CENTER => 2, + Alignment::HORIZONTAL_CENTER_CONTINUOUS => 6, + Alignment::HORIZONTAL_JUSTIFY => 5, + ]; + + /** + * @var array<string, int> + */ + private static $verticalMap = [ + Alignment::VERTICAL_BOTTOM => 2, + Alignment::VERTICAL_TOP => 0, + Alignment::VERTICAL_CENTER => 1, + Alignment::VERTICAL_JUSTIFY => 3, + ]; + + public static function horizontal(Alignment $alignment): int + { + $horizontalAlignment = $alignment->getHorizontal(); + + if (is_string($horizontalAlignment) && array_key_exists($horizontalAlignment, self::$horizontalMap)) { + return self::$horizontalMap[$horizontalAlignment]; + } + + return self::$horizontalMap[Alignment::HORIZONTAL_GENERAL]; + } + + public static function wrap(Alignment $alignment): int + { + $wrap = $alignment->getWrapText(); + + return ($wrap === true) ? 1 : 0; + } + + public static function vertical(Alignment $alignment): int + { + $verticalAlignment = $alignment->getVertical(); + + if (is_string($verticalAlignment) && array_key_exists($verticalAlignment, self::$verticalMap)) { + return self::$verticalMap[$verticalAlignment]; + } + + return self::$verticalMap[Alignment::VERTICAL_BOTTOM]; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/CellBorder.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/CellBorder.php new file mode 100644 index 0000000..8d47d6a --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/CellBorder.php @@ -0,0 +1,39 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xls\Style; + +use PhpOffice\PhpSpreadsheet\Style\Border; + +class CellBorder +{ + /** + * @var array<string, int> + */ + protected static $styleMap = [ + Border::BORDER_NONE => 0x00, + Border::BORDER_THIN => 0x01, + Border::BORDER_MEDIUM => 0x02, + Border::BORDER_DASHED => 0x03, + Border::BORDER_DOTTED => 0x04, + Border::BORDER_THICK => 0x05, + Border::BORDER_DOUBLE => 0x06, + Border::BORDER_HAIR => 0x07, + Border::BORDER_MEDIUMDASHED => 0x08, + Border::BORDER_DASHDOT => 0x09, + Border::BORDER_MEDIUMDASHDOT => 0x0A, + Border::BORDER_DASHDOTDOT => 0x0B, + Border::BORDER_MEDIUMDASHDOTDOT => 0x0C, + Border::BORDER_SLANTDASHDOT => 0x0D, + ]; + + public static function style(Border $border): int + { + $borderStyle = $border->getBorderStyle(); + + if (is_string($borderStyle) && array_key_exists($borderStyle, self::$styleMap)) { + return self::$styleMap[$borderStyle]; + } + + return self::$styleMap[Border::BORDER_NONE]; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/CellFill.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/CellFill.php new file mode 100644 index 0000000..f5a8c47 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/CellFill.php @@ -0,0 +1,46 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xls\Style; + +use PhpOffice\PhpSpreadsheet\Style\Fill; + +class CellFill +{ + /** + * @var array<string, int> + */ + protected static $fillStyleMap = [ + Fill::FILL_NONE => 0x00, + Fill::FILL_SOLID => 0x01, + Fill::FILL_PATTERN_MEDIUMGRAY => 0x02, + Fill::FILL_PATTERN_DARKGRAY => 0x03, + Fill::FILL_PATTERN_LIGHTGRAY => 0x04, + Fill::FILL_PATTERN_DARKHORIZONTAL => 0x05, + Fill::FILL_PATTERN_DARKVERTICAL => 0x06, + Fill::FILL_PATTERN_DARKDOWN => 0x07, + Fill::FILL_PATTERN_DARKUP => 0x08, + Fill::FILL_PATTERN_DARKGRID => 0x09, + Fill::FILL_PATTERN_DARKTRELLIS => 0x0A, + Fill::FILL_PATTERN_LIGHTHORIZONTAL => 0x0B, + Fill::FILL_PATTERN_LIGHTVERTICAL => 0x0C, + Fill::FILL_PATTERN_LIGHTDOWN => 0x0D, + Fill::FILL_PATTERN_LIGHTUP => 0x0E, + Fill::FILL_PATTERN_LIGHTGRID => 0x0F, + Fill::FILL_PATTERN_LIGHTTRELLIS => 0x10, + Fill::FILL_PATTERN_GRAY125 => 0x11, + Fill::FILL_PATTERN_GRAY0625 => 0x12, + Fill::FILL_GRADIENT_LINEAR => 0x00, // does not exist in BIFF8 + Fill::FILL_GRADIENT_PATH => 0x00, // does not exist in BIFF8 + ]; + + public static function style(Fill $fill): int + { + $fillStyle = $fill->getFillType(); + + if (is_string($fillStyle) && array_key_exists($fillStyle, self::$fillStyleMap)) { + return self::$fillStyleMap[$fillStyle]; + } + + return self::$fillStyleMap[Fill::FILL_NONE]; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/ColorMap.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/ColorMap.php new file mode 100644 index 0000000..caf85c0 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/ColorMap.php @@ -0,0 +1,90 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xls\Style; + +use PhpOffice\PhpSpreadsheet\Style\Color; + +class ColorMap +{ + /** + * @var array<string, int> + */ + private static $colorMap = [ + '#000000' => 0x08, + '#FFFFFF' => 0x09, + '#FF0000' => 0x0A, + '#00FF00' => 0x0B, + '#0000FF' => 0x0C, + '#FFFF00' => 0x0D, + '#FF00FF' => 0x0E, + '#00FFFF' => 0x0F, + '#800000' => 0x10, + '#008000' => 0x11, + '#000080' => 0x12, + '#808000' => 0x13, + '#800080' => 0x14, + '#008080' => 0x15, + '#C0C0C0' => 0x16, + '#808080' => 0x17, + '#9999FF' => 0x18, + '#993366' => 0x19, + '#FFFFCC' => 0x1A, + '#CCFFFF' => 0x1B, + '#660066' => 0x1C, + '#FF8080' => 0x1D, + '#0066CC' => 0x1E, + '#CCCCFF' => 0x1F, + // '#000080' => 0x20, + // '#FF00FF' => 0x21, + // '#FFFF00' => 0x22, + // '#00FFFF' => 0x23, + // '#800080' => 0x24, + // '#800000' => 0x25, + // '#008080' => 0x26, + // '#0000FF' => 0x27, + '#00CCFF' => 0x28, + // '#CCFFFF' => 0x29, + '#CCFFCC' => 0x2A, + '#FFFF99' => 0x2B, + '#99CCFF' => 0x2C, + '#FF99CC' => 0x2D, + '#CC99FF' => 0x2E, + '#FFCC99' => 0x2F, + '#3366FF' => 0x30, + '#33CCCC' => 0x31, + '#99CC00' => 0x32, + '#FFCC00' => 0x33, + '#FF9900' => 0x34, + '#FF6600' => 0x35, + '#666699' => 0x36, + '#969696' => 0x37, + '#003366' => 0x38, + '#339966' => 0x39, + '#003300' => 0x3A, + '#333300' => 0x3B, + '#993300' => 0x3C, + // '#993366' => 0x3D, + '#333399' => 0x3E, + '#333333' => 0x3F, + ]; + + public static function lookup(Color $color, int $defaultIndex = 0x00): int + { + $colorRgb = $color->getRGB(); + if (is_string($colorRgb) && array_key_exists("#{$colorRgb}", self::$colorMap)) { + return self::$colorMap["#{$colorRgb}"]; + } + +// TODO Try and map RGB value to nearest colour within the define pallette +// $red = Color::getRed($colorRgb, false); +// $green = Color::getGreen($colorRgb, false); +// $blue = Color::getBlue($colorRgb, false); + +// $paletteSpace = 3; +// $newColor = ($red * $paletteSpace / 256) * ($paletteSpace * $paletteSpace) + +// ($green * $paletteSpace / 256) * $paletteSpace + +// ($blue * $paletteSpace / 256); + + return $defaultIndex; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Workbook.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Workbook.php new file mode 100644 index 0000000..ccffa18 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Workbook.php @@ -0,0 +1,1190 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xls; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\DefinedName; +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; +use PhpOffice\PhpSpreadsheet\Shared\Date; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Style\Style; + +// Original file header of PEAR::Spreadsheet_Excel_Writer_Workbook (used as the base for this class): +// ----------------------------------------------------------------------------------------- +// /* +// * Module written/ported by Xavier Noguer <xnoguer@rezebra.com> +// * +// * The majority of this is _NOT_ my code. I simply ported it from the +// * PERL Spreadsheet::WriteExcel module. +// * +// * The author of the Spreadsheet::WriteExcel module is John McNamara +// * <jmcnamara@cpan.org> +// * +// * I _DO_ maintain this code, and John McNamara has nothing to do with the +// * porting of this code to PHP. Any questions directly related to this +// * class library should be directed to me. +// * +// * License Information: +// * +// * Spreadsheet_Excel_Writer: A library for generating Excel Spreadsheets +// * Copyright (c) 2002-2003 Xavier Noguer xnoguer@rezebra.com +// * +// * This library is free software; you can redistribute it and/or +// * modify it under the terms of the GNU Lesser General Public +// * License as published by the Free Software Foundation; either +// * version 2.1 of the License, or (at your option) any later version. +// * +// * This library is distributed in the hope that it will be useful, +// * but WITHOUT ANY WARRANTY; without even the implied warranty of +// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// * Lesser General Public License for more details. +// * +// * You should have received a copy of the GNU Lesser General Public +// * License along with this library; if not, write to the Free Software +// * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// */ +class Workbook extends BIFFwriter +{ + /** + * Formula parser. + * + * @var \PhpOffice\PhpSpreadsheet\Writer\Xls\Parser + */ + private $parser; + + /** + * The BIFF file size for the workbook. + * + * @var int + * + * @see calcSheetOffsets() + */ + private $biffSize; + + /** + * XF Writers. + * + * @var \PhpOffice\PhpSpreadsheet\Writer\Xls\Xf[] + */ + private $xfWriters = []; + + /** + * Array containing the colour palette. + * + * @var array + */ + private $palette; + + /** + * The codepage indicates the text encoding used for strings. + * + * @var int + */ + private $codepage; + + /** + * The country code used for localization. + * + * @var int + */ + private $countryCode; + + /** + * Workbook. + * + * @var Spreadsheet + */ + private $spreadsheet; + + /** + * Fonts writers. + * + * @var Font[] + */ + private $fontWriters = []; + + /** + * Added fonts. Maps from font's hash => index in workbook. + * + * @var array + */ + private $addedFonts = []; + + /** + * Shared number formats. + * + * @var array + */ + private $numberFormats = []; + + /** + * Added number formats. Maps from numberFormat's hash => index in workbook. + * + * @var array + */ + private $addedNumberFormats = []; + + /** + * Sizes of the binary worksheet streams. + * + * @var array + */ + private $worksheetSizes = []; + + /** + * Offsets of the binary worksheet streams relative to the start of the global workbook stream. + * + * @var array + */ + private $worksheetOffsets = []; + + /** + * Total number of shared strings in workbook. + * + * @var int + */ + private $stringTotal; + + /** + * Number of unique shared strings in workbook. + * + * @var int + */ + private $stringUnique; + + /** + * Array of unique shared strings in workbook. + * + * @var array + */ + private $stringTable; + + /** + * Color cache. + */ + private $colors; + + /** + * Escher object corresponding to MSODRAWINGGROUP. + * + * @var null|\PhpOffice\PhpSpreadsheet\Shared\Escher + */ + private $escher; + + /** + * Class constructor. + * + * @param Spreadsheet $spreadsheet The Workbook + * @param int $str_total Total number of strings + * @param int $str_unique Total number of unique strings + * @param array $str_table String Table + * @param array $colors Colour Table + * @param Parser $parser The formula parser created for the Workbook + */ + public function __construct(Spreadsheet $spreadsheet, &$str_total, &$str_unique, &$str_table, &$colors, Parser $parser) + { + // It needs to call its parent's constructor explicitly + parent::__construct(); + + $this->parser = $parser; + $this->biffSize = 0; + $this->palette = []; + $this->countryCode = -1; + + $this->stringTotal = &$str_total; + $this->stringUnique = &$str_unique; + $this->stringTable = &$str_table; + $this->colors = &$colors; + $this->setPaletteXl97(); + + $this->spreadsheet = $spreadsheet; + + $this->codepage = 0x04B0; + + // Add empty sheets and Build color cache + $countSheets = $spreadsheet->getSheetCount(); + for ($i = 0; $i < $countSheets; ++$i) { + $phpSheet = $spreadsheet->getSheet($i); + + $this->parser->setExtSheet($phpSheet->getTitle(), $i); // Register worksheet name with parser + + $supbook_index = 0x00; + $ref = pack('vvv', $supbook_index, $i, $i); + $this->parser->references[] = $ref; // Register reference with parser + + // Sheet tab colors? + if ($phpSheet->isTabColorSet()) { + $this->addColor($phpSheet->getTabColor()->getRGB()); + } + } + } + + /** + * Add a new XF writer. + * + * @param bool $isStyleXf Is it a style XF? + * + * @return int Index to XF record + */ + public function addXfWriter(Style $style, $isStyleXf = false) + { + $xfWriter = new Xf($style); + $xfWriter->setIsStyleXf($isStyleXf); + + // Add the font if not already added + $fontIndex = $this->addFont($style->getFont()); + + // Assign the font index to the xf record + $xfWriter->setFontIndex($fontIndex); + + // Background colors, best to treat these after the font so black will come after white in custom palette + $xfWriter->setFgColor($this->addColor($style->getFill()->getStartColor()->getRGB())); + $xfWriter->setBgColor($this->addColor($style->getFill()->getEndColor()->getRGB())); + $xfWriter->setBottomColor($this->addColor($style->getBorders()->getBottom()->getColor()->getRGB())); + $xfWriter->setTopColor($this->addColor($style->getBorders()->getTop()->getColor()->getRGB())); + $xfWriter->setRightColor($this->addColor($style->getBorders()->getRight()->getColor()->getRGB())); + $xfWriter->setLeftColor($this->addColor($style->getBorders()->getLeft()->getColor()->getRGB())); + $xfWriter->setDiagColor($this->addColor($style->getBorders()->getDiagonal()->getColor()->getRGB())); + + // Add the number format if it is not a built-in one and not already added + if ($style->getNumberFormat()->getBuiltInFormatCode() === false) { + $numberFormatHashCode = $style->getNumberFormat()->getHashCode(); + + if (isset($this->addedNumberFormats[$numberFormatHashCode])) { + $numberFormatIndex = $this->addedNumberFormats[$numberFormatHashCode]; + } else { + $numberFormatIndex = 164 + count($this->numberFormats); + $this->numberFormats[$numberFormatIndex] = $style->getNumberFormat(); + $this->addedNumberFormats[$numberFormatHashCode] = $numberFormatIndex; + } + } else { + $numberFormatIndex = (int) $style->getNumberFormat()->getBuiltInFormatCode(); + } + + // Assign the number format index to xf record + $xfWriter->setNumberFormatIndex($numberFormatIndex); + + $this->xfWriters[] = $xfWriter; + + return count($this->xfWriters) - 1; + } + + /** + * Add a font to added fonts. + * + * @return int Index to FONT record + */ + public function addFont(\PhpOffice\PhpSpreadsheet\Style\Font $font) + { + $fontHashCode = $font->getHashCode(); + if (isset($this->addedFonts[$fontHashCode])) { + $fontIndex = $this->addedFonts[$fontHashCode]; + } else { + $countFonts = count($this->fontWriters); + $fontIndex = ($countFonts < 4) ? $countFonts : $countFonts + 1; + + $fontWriter = new Font($font); + $fontWriter->setColorIndex($this->addColor($font->getColor()->getRGB())); + $this->fontWriters[] = $fontWriter; + + $this->addedFonts[$fontHashCode] = $fontIndex; + } + + return $fontIndex; + } + + /** + * Alter color palette adding a custom color. + * + * @param string $rgb E.g. 'FF00AA' + * + * @return int Color index + */ + private function addColor($rgb) + { + if (!isset($this->colors[$rgb])) { + $color = + [ + hexdec(substr($rgb, 0, 2)), + hexdec(substr($rgb, 2, 2)), + hexdec(substr($rgb, 4)), + 0, + ]; + $colorIndex = array_search($color, $this->palette); + if ($colorIndex) { + $this->colors[$rgb] = $colorIndex; + } else { + if (count($this->colors) === 0) { + $lastColor = 7; + } else { + $lastColor = end($this->colors); + } + if ($lastColor < 57) { + // then we add a custom color altering the palette + $colorIndex = $lastColor + 1; + $this->palette[$colorIndex] = $color; + $this->colors[$rgb] = $colorIndex; + } else { + // no room for more custom colors, just map to black + $colorIndex = 0; + } + } + } else { + // fetch already added custom color + $colorIndex = $this->colors[$rgb]; + } + + return $colorIndex; + } + + /** + * Sets the colour palette to the Excel 97+ default. + */ + private function setPaletteXl97(): void + { + $this->palette = [ + 0x08 => [0x00, 0x00, 0x00, 0x00], + 0x09 => [0xff, 0xff, 0xff, 0x00], + 0x0A => [0xff, 0x00, 0x00, 0x00], + 0x0B => [0x00, 0xff, 0x00, 0x00], + 0x0C => [0x00, 0x00, 0xff, 0x00], + 0x0D => [0xff, 0xff, 0x00, 0x00], + 0x0E => [0xff, 0x00, 0xff, 0x00], + 0x0F => [0x00, 0xff, 0xff, 0x00], + 0x10 => [0x80, 0x00, 0x00, 0x00], + 0x11 => [0x00, 0x80, 0x00, 0x00], + 0x12 => [0x00, 0x00, 0x80, 0x00], + 0x13 => [0x80, 0x80, 0x00, 0x00], + 0x14 => [0x80, 0x00, 0x80, 0x00], + 0x15 => [0x00, 0x80, 0x80, 0x00], + 0x16 => [0xc0, 0xc0, 0xc0, 0x00], + 0x17 => [0x80, 0x80, 0x80, 0x00], + 0x18 => [0x99, 0x99, 0xff, 0x00], + 0x19 => [0x99, 0x33, 0x66, 0x00], + 0x1A => [0xff, 0xff, 0xcc, 0x00], + 0x1B => [0xcc, 0xff, 0xff, 0x00], + 0x1C => [0x66, 0x00, 0x66, 0x00], + 0x1D => [0xff, 0x80, 0x80, 0x00], + 0x1E => [0x00, 0x66, 0xcc, 0x00], + 0x1F => [0xcc, 0xcc, 0xff, 0x00], + 0x20 => [0x00, 0x00, 0x80, 0x00], + 0x21 => [0xff, 0x00, 0xff, 0x00], + 0x22 => [0xff, 0xff, 0x00, 0x00], + 0x23 => [0x00, 0xff, 0xff, 0x00], + 0x24 => [0x80, 0x00, 0x80, 0x00], + 0x25 => [0x80, 0x00, 0x00, 0x00], + 0x26 => [0x00, 0x80, 0x80, 0x00], + 0x27 => [0x00, 0x00, 0xff, 0x00], + 0x28 => [0x00, 0xcc, 0xff, 0x00], + 0x29 => [0xcc, 0xff, 0xff, 0x00], + 0x2A => [0xcc, 0xff, 0xcc, 0x00], + 0x2B => [0xff, 0xff, 0x99, 0x00], + 0x2C => [0x99, 0xcc, 0xff, 0x00], + 0x2D => [0xff, 0x99, 0xcc, 0x00], + 0x2E => [0xcc, 0x99, 0xff, 0x00], + 0x2F => [0xff, 0xcc, 0x99, 0x00], + 0x30 => [0x33, 0x66, 0xff, 0x00], + 0x31 => [0x33, 0xcc, 0xcc, 0x00], + 0x32 => [0x99, 0xcc, 0x00, 0x00], + 0x33 => [0xff, 0xcc, 0x00, 0x00], + 0x34 => [0xff, 0x99, 0x00, 0x00], + 0x35 => [0xff, 0x66, 0x00, 0x00], + 0x36 => [0x66, 0x66, 0x99, 0x00], + 0x37 => [0x96, 0x96, 0x96, 0x00], + 0x38 => [0x00, 0x33, 0x66, 0x00], + 0x39 => [0x33, 0x99, 0x66, 0x00], + 0x3A => [0x00, 0x33, 0x00, 0x00], + 0x3B => [0x33, 0x33, 0x00, 0x00], + 0x3C => [0x99, 0x33, 0x00, 0x00], + 0x3D => [0x99, 0x33, 0x66, 0x00], + 0x3E => [0x33, 0x33, 0x99, 0x00], + 0x3F => [0x33, 0x33, 0x33, 0x00], + ]; + } + + /** + * Assemble worksheets into a workbook and send the BIFF data to an OLE + * storage. + * + * @param array $worksheetSizes The sizes in bytes of the binary worksheet streams + * + * @return string Binary data for workbook stream + */ + public function writeWorkbook(array $worksheetSizes) + { + $this->worksheetSizes = $worksheetSizes; + + // Calculate the number of selected worksheet tabs and call the finalization + // methods for each worksheet + $total_worksheets = $this->spreadsheet->getSheetCount(); + + // Add part 1 of the Workbook globals, what goes before the SHEET records + $this->storeBof(0x0005); + $this->writeCodepage(); + $this->writeWindow1(); + + $this->writeDateMode(); + $this->writeAllFonts(); + $this->writeAllNumberFormats(); + $this->writeAllXfs(); + $this->writeAllStyles(); + $this->writePalette(); + + // Prepare part 3 of the workbook global stream, what goes after the SHEET records + $part3 = ''; + if ($this->countryCode !== -1) { + $part3 .= $this->writeCountry(); + } + $part3 .= $this->writeRecalcId(); + + $part3 .= $this->writeSupbookInternal(); + /* TODO: store external SUPBOOK records and XCT and CRN records + in case of external references for BIFF8 */ + $part3 .= $this->writeExternalsheetBiff8(); + $part3 .= $this->writeAllDefinedNamesBiff8(); + $part3 .= $this->writeMsoDrawingGroup(); + $part3 .= $this->writeSharedStringsTable(); + + $part3 .= $this->writeEof(); + + // Add part 2 of the Workbook globals, the SHEET records + $this->calcSheetOffsets(); + for ($i = 0; $i < $total_worksheets; ++$i) { + $this->writeBoundSheet($this->spreadsheet->getSheet($i), $this->worksheetOffsets[$i]); + } + + // Add part 3 of the Workbook globals + $this->_data .= $part3; + + return $this->_data; + } + + /** + * Calculate offsets for Worksheet BOF records. + */ + private function calcSheetOffsets(): void + { + $boundsheet_length = 10; // fixed length for a BOUNDSHEET record + + // size of Workbook globals part 1 + 3 + $offset = $this->_datasize; + + // add size of Workbook globals part 2, the length of the SHEET records + $total_worksheets = count($this->spreadsheet->getAllSheets()); + foreach ($this->spreadsheet->getWorksheetIterator() as $sheet) { + $offset += $boundsheet_length + strlen(StringHelper::UTF8toBIFF8UnicodeShort($sheet->getTitle())); + } + + // add the sizes of each of the Sheet substreams, respectively + for ($i = 0; $i < $total_worksheets; ++$i) { + $this->worksheetOffsets[$i] = $offset; + $offset += $this->worksheetSizes[$i]; + } + $this->biffSize = $offset; + } + + /** + * Store the Excel FONT records. + */ + private function writeAllFonts(): void + { + foreach ($this->fontWriters as $fontWriter) { + $this->append($fontWriter->writeFont()); + } + } + + /** + * Store user defined numerical formats i.e. FORMAT records. + */ + private function writeAllNumberFormats(): void + { + foreach ($this->numberFormats as $numberFormatIndex => $numberFormat) { + $this->writeNumberFormat($numberFormat->getFormatCode(), $numberFormatIndex); + } + } + + /** + * Write all XF records. + */ + private function writeAllXfs(): void + { + foreach ($this->xfWriters as $xfWriter) { + $this->append($xfWriter->writeXf()); + } + } + + /** + * Write all STYLE records. + */ + private function writeAllStyles(): void + { + $this->writeStyle(); + } + + private function parseDefinedNameValue(DefinedName $definedName): string + { + $definedRange = $definedName->getValue(); + $splitCount = preg_match_all( + '/' . Calculation::CALCULATION_REGEXP_CELLREF . '/mui', + $definedRange, + $splitRanges, + PREG_OFFSET_CAPTURE + ); + + $lengths = array_map('strlen', array_column($splitRanges[0], 0)); + $offsets = array_column($splitRanges[0], 1); + + $worksheets = $splitRanges[2]; + $columns = $splitRanges[6]; + $rows = $splitRanges[7]; + + while ($splitCount > 0) { + --$splitCount; + $length = $lengths[$splitCount]; + $offset = $offsets[$splitCount]; + $worksheet = $worksheets[$splitCount][0]; + $column = $columns[$splitCount][0]; + $row = $rows[$splitCount][0]; + + $newRange = ''; + if (empty($worksheet)) { + if (($offset === 0) || ($definedRange[$offset - 1] !== ':')) { + // We should have a worksheet + $worksheet = $definedName->getWorksheet() ? $definedName->getWorksheet()->getTitle() : null; + } + } else { + $worksheet = str_replace("''", "'", trim($worksheet, "'")); + } + if (!empty($worksheet)) { + $newRange = "'" . str_replace("'", "''", $worksheet) . "'!"; + } + + if (!empty($column)) { + $newRange .= "\${$column}"; + } + if (!empty($row)) { + $newRange .= "\${$row}"; + } + + $definedRange = substr($definedRange, 0, $offset) . $newRange . substr($definedRange, $offset + $length); + } + + return $definedRange; + } + + /** + * Writes all the DEFINEDNAME records (BIFF8). + * So far this is only used for repeating rows/columns (print titles) and print areas. + */ + private function writeAllDefinedNamesBiff8() + { + $chunk = ''; + + // Named ranges + $definedNames = $this->spreadsheet->getDefinedNames(); + if (count($definedNames) > 0) { + // Loop named ranges + foreach ($definedNames as $definedName) { + $range = $this->parseDefinedNameValue($definedName); + + // parse formula + try { + $error = $this->parser->parse($range); + $formulaData = $this->parser->toReversePolish(); + + // make sure tRef3d is of type tRef3dR (0x3A) + if (isset($formulaData[0]) && ($formulaData[0] == "\x7A" || $formulaData[0] == "\x5A")) { + $formulaData = "\x3A" . substr($formulaData, 1); + } + + if ($definedName->getLocalOnly()) { + /** + * local scope. + * + * @phpstan-ignore-next-line + */ + $scope = $this->spreadsheet->getIndex($definedName->getScope()) + 1; + } else { + // global scope + $scope = 0; + } + $chunk .= $this->writeData($this->writeDefinedNameBiff8($definedName->getName(), $formulaData, $scope, false)); + } catch (PhpSpreadsheetException $e) { + // do nothing + } + } + } + + // total number of sheets + $total_worksheets = $this->spreadsheet->getSheetCount(); + + // write the print titles (repeating rows, columns), if any + for ($i = 0; $i < $total_worksheets; ++$i) { + $sheetSetup = $this->spreadsheet->getSheet($i)->getPageSetup(); + // simultaneous repeatColumns repeatRows + if ($sheetSetup->isColumnsToRepeatAtLeftSet() && $sheetSetup->isRowsToRepeatAtTopSet()) { + $repeat = $sheetSetup->getColumnsToRepeatAtLeft(); + $colmin = Coordinate::columnIndexFromString($repeat[0]) - 1; + $colmax = Coordinate::columnIndexFromString($repeat[1]) - 1; + + $repeat = $sheetSetup->getRowsToRepeatAtTop(); + $rowmin = $repeat[0] - 1; + $rowmax = $repeat[1] - 1; + + // construct formula data manually + $formulaData = pack('Cv', 0x29, 0x17); // tMemFunc + $formulaData .= pack('Cvvvvv', 0x3B, $i, 0, 65535, $colmin, $colmax); // tArea3d + $formulaData .= pack('Cvvvvv', 0x3B, $i, $rowmin, $rowmax, 0, 255); // tArea3d + $formulaData .= pack('C', 0x10); // tList + + // store the DEFINEDNAME record + $chunk .= $this->writeData($this->writeDefinedNameBiff8(pack('C', 0x07), $formulaData, $i + 1, true)); + + // (exclusive) either repeatColumns or repeatRows + } elseif ($sheetSetup->isColumnsToRepeatAtLeftSet() || $sheetSetup->isRowsToRepeatAtTopSet()) { + // Columns to repeat + if ($sheetSetup->isColumnsToRepeatAtLeftSet()) { + $repeat = $sheetSetup->getColumnsToRepeatAtLeft(); + $colmin = Coordinate::columnIndexFromString($repeat[0]) - 1; + $colmax = Coordinate::columnIndexFromString($repeat[1]) - 1; + } else { + $colmin = 0; + $colmax = 255; + } + // Rows to repeat + if ($sheetSetup->isRowsToRepeatAtTopSet()) { + $repeat = $sheetSetup->getRowsToRepeatAtTop(); + $rowmin = $repeat[0] - 1; + $rowmax = $repeat[1] - 1; + } else { + $rowmin = 0; + $rowmax = 65535; + } + + // construct formula data manually because parser does not recognize absolute 3d cell references + $formulaData = pack('Cvvvvv', 0x3B, $i, $rowmin, $rowmax, $colmin, $colmax); + + // store the DEFINEDNAME record + $chunk .= $this->writeData($this->writeDefinedNameBiff8(pack('C', 0x07), $formulaData, $i + 1, true)); + } + } + + // write the print areas, if any + for ($i = 0; $i < $total_worksheets; ++$i) { + $sheetSetup = $this->spreadsheet->getSheet($i)->getPageSetup(); + if ($sheetSetup->isPrintAreaSet()) { + // Print area, e.g. A3:J6,H1:X20 + $printArea = Coordinate::splitRange($sheetSetup->getPrintArea()); + $countPrintArea = count($printArea); + + $formulaData = ''; + for ($j = 0; $j < $countPrintArea; ++$j) { + $printAreaRect = $printArea[$j]; // e.g. A3:J6 + $printAreaRect[0] = Coordinate::indexesFromString($printAreaRect[0]); + $printAreaRect[1] = Coordinate::indexesFromString($printAreaRect[1]); + + $print_rowmin = $printAreaRect[0][1] - 1; + $print_rowmax = $printAreaRect[1][1] - 1; + $print_colmin = $printAreaRect[0][0] - 1; + $print_colmax = $printAreaRect[1][0] - 1; + + // construct formula data manually because parser does not recognize absolute 3d cell references + $formulaData .= pack('Cvvvvv', 0x3B, $i, $print_rowmin, $print_rowmax, $print_colmin, $print_colmax); + + if ($j > 0) { + $formulaData .= pack('C', 0x10); // list operator token ',' + } + } + + // store the DEFINEDNAME record + $chunk .= $this->writeData($this->writeDefinedNameBiff8(pack('C', 0x06), $formulaData, $i + 1, true)); + } + } + + // write autofilters, if any + for ($i = 0; $i < $total_worksheets; ++$i) { + $sheetAutoFilter = $this->spreadsheet->getSheet($i)->getAutoFilter(); + $autoFilterRange = $sheetAutoFilter->getRange(); + if (!empty($autoFilterRange)) { + $rangeBounds = Coordinate::rangeBoundaries($autoFilterRange); + + //Autofilter built in name + $name = pack('C', 0x0D); + + $chunk .= $this->writeData($this->writeShortNameBiff8($name, $i + 1, $rangeBounds, true)); + } + } + + return $chunk; + } + + /** + * Write a DEFINEDNAME record for BIFF8 using explicit binary formula data. + * + * @param string $name The name in UTF-8 + * @param string $formulaData The binary formula data + * @param int $sheetIndex 1-based sheet index the defined name applies to. 0 = global + * @param bool $isBuiltIn Built-in name? + * + * @return string Complete binary record data + */ + private function writeDefinedNameBiff8($name, $formulaData, $sheetIndex = 0, $isBuiltIn = false) + { + $record = 0x0018; + + // option flags + $options = $isBuiltIn ? 0x20 : 0x00; + + // length of the name, character count + $nlen = StringHelper::countCharacters($name); + + // name with stripped length field + $name = substr(StringHelper::UTF8toBIFF8UnicodeLong($name), 2); + + // size of the formula (in bytes) + $sz = strlen($formulaData); + + // combine the parts + $data = pack('vCCvvvCCCC', $options, 0, $nlen, $sz, 0, $sheetIndex, 0, 0, 0, 0) + . $name . $formulaData; + $length = strlen($data); + + $header = pack('vv', $record, $length); + + return $header . $data; + } + + /** + * Write a short NAME record. + * + * @param string $name + * @param int $sheetIndex 1-based sheet index the defined name applies to. 0 = global + * @param int[][] $rangeBounds range boundaries + * @param bool $isHidden + * + * @return string Complete binary record data + * */ + private function writeShortNameBiff8($name, $sheetIndex, $rangeBounds, $isHidden = false) + { + $record = 0x0018; + + // option flags + $options = ($isHidden ? 0x21 : 0x00); + + $extra = pack( + 'Cvvvvv', + 0x3B, + $sheetIndex - 1, + $rangeBounds[0][1] - 1, + $rangeBounds[1][1] - 1, + $rangeBounds[0][0] - 1, + $rangeBounds[1][0] - 1 + ); + + // size of the formula (in bytes) + $sz = strlen($extra); + + // combine the parts + $data = pack('vCCvvvCCCCC', $options, 0, 1, $sz, 0, $sheetIndex, 0, 0, 0, 0, 0) + . $name . $extra; + $length = strlen($data); + + $header = pack('vv', $record, $length); + + return $header . $data; + } + + /** + * Stores the CODEPAGE biff record. + */ + private function writeCodepage(): void + { + $record = 0x0042; // Record identifier + $length = 0x0002; // Number of bytes to follow + $cv = $this->codepage; // The code page + + $header = pack('vv', $record, $length); + $data = pack('v', $cv); + + $this->append($header . $data); + } + + /** + * Write Excel BIFF WINDOW1 record. + */ + private function writeWindow1(): void + { + $record = 0x003D; // Record identifier + $length = 0x0012; // Number of bytes to follow + + $xWn = 0x0000; // Horizontal position of window + $yWn = 0x0000; // Vertical position of window + $dxWn = 0x25BC; // Width of window + $dyWn = 0x1572; // Height of window + + $grbit = 0x0038; // Option flags + + // not supported by PhpSpreadsheet, so there is only one selected sheet, the active + $ctabsel = 1; // Number of workbook tabs selected + + $wTabRatio = 0x0258; // Tab to scrollbar ratio + + // not supported by PhpSpreadsheet, set to 0 + $itabFirst = 0; // 1st displayed worksheet + $itabCur = $this->spreadsheet->getActiveSheetIndex(); // Active worksheet + + $header = pack('vv', $record, $length); + $data = pack('vvvvvvvvv', $xWn, $yWn, $dxWn, $dyWn, $grbit, $itabCur, $itabFirst, $ctabsel, $wTabRatio); + $this->append($header . $data); + } + + /** + * Writes Excel BIFF BOUNDSHEET record. + * + * @param int $offset Location of worksheet BOF + */ + private function writeBoundSheet(\PhpOffice\PhpSpreadsheet\Worksheet\Worksheet $sheet, $offset): void + { + $sheetname = $sheet->getTitle(); + $record = 0x0085; // Record identifier + + // sheet state + switch ($sheet->getSheetState()) { + case \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet::SHEETSTATE_VISIBLE: + $ss = 0x00; + + break; + case \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet::SHEETSTATE_HIDDEN: + $ss = 0x01; + + break; + case \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet::SHEETSTATE_VERYHIDDEN: + $ss = 0x02; + + break; + default: + $ss = 0x00; + + break; + } + + // sheet type + $st = 0x00; + + $grbit = 0x0000; // Visibility and sheet type + + $data = pack('VCC', $offset, $ss, $st); + $data .= StringHelper::UTF8toBIFF8UnicodeShort($sheetname); + + $length = strlen($data); + $header = pack('vv', $record, $length); + $this->append($header . $data); + } + + /** + * Write Internal SUPBOOK record. + */ + private function writeSupbookInternal() + { + $record = 0x01AE; // Record identifier + $length = 0x0004; // Bytes to follow + + $header = pack('vv', $record, $length); + $data = pack('vv', $this->spreadsheet->getSheetCount(), 0x0401); + + return $this->writeData($header . $data); + } + + /** + * Writes the Excel BIFF EXTERNSHEET record. These references are used by + * formulas. + */ + private function writeExternalsheetBiff8() + { + $totalReferences = count($this->parser->references); + $record = 0x0017; // Record identifier + $length = 2 + 6 * $totalReferences; // Number of bytes to follow + + $supbook_index = 0; // FIXME: only using internal SUPBOOK record + $header = pack('vv', $record, $length); + $data = pack('v', $totalReferences); + for ($i = 0; $i < $totalReferences; ++$i) { + $data .= $this->parser->references[$i]; + } + + return $this->writeData($header . $data); + } + + /** + * Write Excel BIFF STYLE records. + */ + private function writeStyle(): void + { + $record = 0x0293; // Record identifier + $length = 0x0004; // Bytes to follow + + $ixfe = 0x8000; // Index to cell style XF + $BuiltIn = 0x00; // Built-in style + $iLevel = 0xff; // Outline style level + + $header = pack('vv', $record, $length); + $data = pack('vCC', $ixfe, $BuiltIn, $iLevel); + $this->append($header . $data); + } + + /** + * Writes Excel FORMAT record for non "built-in" numerical formats. + * + * @param string $format Custom format string + * @param int $ifmt Format index code + */ + private function writeNumberFormat($format, $ifmt): void + { + $record = 0x041E; // Record identifier + + $numberFormatString = StringHelper::UTF8toBIFF8UnicodeLong($format); + $length = 2 + strlen($numberFormatString); // Number of bytes to follow + + $header = pack('vv', $record, $length); + $data = pack('v', $ifmt) . $numberFormatString; + $this->append($header . $data); + } + + /** + * Write DATEMODE record to indicate the date system in use (1904 or 1900). + */ + private function writeDateMode(): void + { + $record = 0x0022; // Record identifier + $length = 0x0002; // Bytes to follow + + $f1904 = (Date::getExcelCalendar() === Date::CALENDAR_MAC_1904) + ? 1 + : 0; // Flag for 1904 date system + + $header = pack('vv', $record, $length); + $data = pack('v', $f1904); + $this->append($header . $data); + } + + /** + * Stores the COUNTRY record for localization. + * + * @return string + */ + private function writeCountry() + { + $record = 0x008C; // Record identifier + $length = 4; // Number of bytes to follow + + $header = pack('vv', $record, $length); + // using the same country code always for simplicity + $data = pack('vv', $this->countryCode, $this->countryCode); + + return $this->writeData($header . $data); + } + + /** + * Write the RECALCID record. + * + * @return string + */ + private function writeRecalcId() + { + $record = 0x01C1; // Record identifier + $length = 8; // Number of bytes to follow + + $header = pack('vv', $record, $length); + + // by inspection of real Excel files, MS Office Excel 2007 writes this + $data = pack('VV', 0x000001C1, 0x00001E667); + + return $this->writeData($header . $data); + } + + /** + * Stores the PALETTE biff record. + */ + private function writePalette(): void + { + $aref = $this->palette; + + $record = 0x0092; // Record identifier + $length = 2 + 4 * count($aref); // Number of bytes to follow + $ccv = count($aref); // Number of RGB values to follow + $data = ''; // The RGB data + + // Pack the RGB data + foreach ($aref as $color) { + foreach ($color as $byte) { + $data .= pack('C', $byte); + } + } + + $header = pack('vvv', $record, $length, $ccv); + $this->append($header . $data); + } + + /** + * Handling of the SST continue blocks is complicated by the need to include an + * additional continuation byte depending on whether the string is split between + * blocks or whether it starts at the beginning of the block. (There are also + * additional complications that will arise later when/if Rich Strings are + * supported). + * + * The Excel documentation says that the SST record should be followed by an + * EXTSST record. The EXTSST record is a hash table that is used to optimise + * access to SST. However, despite the documentation it doesn't seem to be + * required so we will ignore it. + * + * @return string Binary data + */ + private function writeSharedStringsTable() + { + // maximum size of record data (excluding record header) + $continue_limit = 8224; + + // initialize array of record data blocks + $recordDatas = []; + + // start SST record data block with total number of strings, total number of unique strings + $recordData = pack('VV', $this->stringTotal, $this->stringUnique); + + // loop through all (unique) strings in shared strings table + foreach (array_keys($this->stringTable) as $string) { + // here $string is a BIFF8 encoded string + + // length = character count + $headerinfo = unpack('vlength/Cencoding', $string); + + // currently, this is always 1 = uncompressed + $encoding = $headerinfo['encoding']; + + // initialize finished writing current $string + $finished = false; + + while ($finished === false) { + // normally, there will be only one cycle, but if string cannot immediately be written as is + // there will be need for more than one cylcle, if string longer than one record data block, there + // may be need for even more cycles + + if (strlen($recordData) + strlen($string) <= $continue_limit) { + // then we can write the string (or remainder of string) without any problems + $recordData .= $string; + + if (strlen($recordData) + strlen($string) == $continue_limit) { + // we close the record data block, and initialize a new one + $recordDatas[] = $recordData; + $recordData = ''; + } + + // we are finished writing this string + $finished = true; + } else { + // special treatment writing the string (or remainder of the string) + // If the string is very long it may need to be written in more than one CONTINUE record. + + // check how many bytes more there is room for in the current record + $space_remaining = $continue_limit - strlen($recordData); + + // minimum space needed + // uncompressed: 2 byte string length length field + 1 byte option flags + 2 byte character + // compressed: 2 byte string length length field + 1 byte option flags + 1 byte character + $min_space_needed = ($encoding == 1) ? 5 : 4; + + // We have two cases + // 1. space remaining is less than minimum space needed + // here we must waste the space remaining and move to next record data block + // 2. space remaining is greater than or equal to minimum space needed + // here we write as much as we can in the current block, then move to next record data block + + // 1. space remaining is less than minimum space needed + if ($space_remaining < $min_space_needed) { + // we close the block, store the block data + $recordDatas[] = $recordData; + + // and start new record data block where we start writing the string + $recordData = ''; + + // 2. space remaining is greater than or equal to minimum space needed + } else { + // initialize effective remaining space, for Unicode strings this may need to be reduced by 1, see below + $effective_space_remaining = $space_remaining; + + // for uncompressed strings, sometimes effective space remaining is reduced by 1 + if ($encoding == 1 && (strlen($string) - $space_remaining) % 2 == 1) { + --$effective_space_remaining; + } + + // one block fininshed, store the block data + $recordData .= substr($string, 0, $effective_space_remaining); + + $string = substr($string, $effective_space_remaining); // for next cycle in while loop + $recordDatas[] = $recordData; + + // start new record data block with the repeated option flags + $recordData = pack('C', $encoding); + } + } + } + } + + // Store the last record data block unless it is empty + // if there was no need for any continue records, this will be the for SST record data block itself + if (strlen($recordData) > 0) { + $recordDatas[] = $recordData; + } + + // combine into one chunk with all the blocks SST, CONTINUE,... + $chunk = ''; + foreach ($recordDatas as $i => $recordData) { + // first block should have the SST record header, remaing should have CONTINUE header + $record = ($i == 0) ? 0x00FC : 0x003C; + + $header = pack('vv', $record, strlen($recordData)); + $data = $header . $recordData; + + $chunk .= $this->writeData($data); + } + + return $chunk; + } + + /** + * Writes the MSODRAWINGGROUP record if needed. Possibly split using CONTINUE records. + */ + private function writeMsoDrawingGroup() + { + // write the Escher stream if necessary + if (isset($this->escher)) { + $writer = new Escher($this->escher); + $data = $writer->close(); + + $record = 0x00EB; + $length = strlen($data); + $header = pack('vv', $record, $length); + + return $this->writeData($header . $data); + } + + return ''; + } + + /** + * Get Escher object. + */ + public function getEscher(): ?\PhpOffice\PhpSpreadsheet\Shared\Escher + { + return $this->escher; + } + + /** + * Set Escher object. + */ + public function setEscher(?\PhpOffice\PhpSpreadsheet\Shared\Escher $escher): void + { + $this->escher = $escher; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Worksheet.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Worksheet.php new file mode 100644 index 0000000..3786551 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Worksheet.php @@ -0,0 +1,3212 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xls; + +use GdImage; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Cell\DataType; +use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\RichText\Run; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Shared\Xls; +use PhpOffice\PhpSpreadsheet\Style\Border; +use PhpOffice\PhpSpreadsheet\Style\Color; +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Style\Protection; +use PhpOffice\PhpSpreadsheet\Worksheet\PageSetup; +use PhpOffice\PhpSpreadsheet\Worksheet\SheetView; +use PhpOffice\PhpSpreadsheet\Writer\Exception as WriterException; + +// Original file header of PEAR::Spreadsheet_Excel_Writer_Worksheet (used as the base for this class): +// ----------------------------------------------------------------------------------------- +// /* +// * Module written/ported by Xavier Noguer <xnoguer@rezebra.com> +// * +// * The majority of this is _NOT_ my code. I simply ported it from the +// * PERL Spreadsheet::WriteExcel module. +// * +// * The author of the Spreadsheet::WriteExcel module is John McNamara +// * <jmcnamara@cpan.org> +// * +// * I _DO_ maintain this code, and John McNamara has nothing to do with the +// * porting of this code to PHP. Any questions directly related to this +// * class library should be directed to me. +// * +// * License Information: +// * +// * Spreadsheet_Excel_Writer: A library for generating Excel Spreadsheets +// * Copyright (c) 2002-2003 Xavier Noguer xnoguer@rezebra.com +// * +// * This library is free software; you can redistribute it and/or +// * modify it under the terms of the GNU Lesser General Public +// * License as published by the Free Software Foundation; either +// * version 2.1 of the License, or (at your option) any later version. +// * +// * This library is distributed in the hope that it will be useful, +// * but WITHOUT ANY WARRANTY; without even the implied warranty of +// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// * Lesser General Public License for more details. +// * +// * You should have received a copy of the GNU Lesser General Public +// * License along with this library; if not, write to the Free Software +// * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// */ +class Worksheet extends BIFFwriter +{ + /** @var int */ + private static $always0 = 0; + + /** @var int */ + private static $always1 = 1; + + /** + * Formula parser. + * + * @var \PhpOffice\PhpSpreadsheet\Writer\Xls\Parser + */ + private $parser; + + /** + * Maximum number of characters for a string (LABEL record in BIFF5). + * + * @var int + */ + private $xlsStringMaxLength; + + /** + * Array containing format information for columns. + * + * @var array + */ + private $columnInfo; + + /** + * Array containing the selected area for the worksheet. + * + * @var array + */ + private $selection; + + /** + * The active pane for the worksheet. + * + * @var int + */ + private $activePane; + + /** + * Whether to use outline. + * + * @var bool + */ + private $outlineOn; + + /** + * Auto outline styles. + * + * @var bool + */ + private $outlineStyle; + + /** + * Whether to have outline summary below. + * + * @var bool + */ + private $outlineBelow; + + /** + * Whether to have outline summary at the right. + * + * @var bool + */ + private $outlineRight; + + /** + * Reference to the total number of strings in the workbook. + * + * @var int + */ + private $stringTotal; + + /** + * Reference to the number of unique strings in the workbook. + * + * @var int + */ + private $stringUnique; + + /** + * Reference to the array containing all the unique strings in the workbook. + * + * @var array + */ + private $stringTable; + + /** + * Color cache. + */ + private $colors; + + /** + * Index of first used row (at least 0). + * + * @var int + */ + private $firstRowIndex; + + /** + * Index of last used row. (no used rows means -1). + * + * @var int + */ + private $lastRowIndex; + + /** + * Index of first used column (at least 0). + * + * @var int + */ + private $firstColumnIndex; + + /** + * Index of last used column (no used columns means -1). + * + * @var int + */ + private $lastColumnIndex; + + /** + * Sheet object. + * + * @var \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet + */ + public $phpSheet; + + /** + * Count cell style Xfs. + * + * @var int + */ + private $countCellStyleXfs; + + /** + * Escher object corresponding to MSODRAWING. + * + * @var null|\PhpOffice\PhpSpreadsheet\Shared\Escher + */ + private $escher; + + /** + * Array of font hashes associated to FONT records index. + * + * @var array + */ + public $fontHashIndex; + + /** + * @var bool + */ + private $preCalculateFormulas; + + /** + * @var int + */ + private $printHeaders; + + /** + * Constructor. + * + * @param int $str_total Total number of strings + * @param int $str_unique Total number of unique strings + * @param array $str_table String Table + * @param array $colors Colour Table + * @param Parser $parser The formula parser created for the Workbook + * @param bool $preCalculateFormulas Flag indicating whether formulas should be calculated or just written + * @param \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet $phpSheet The worksheet to write + */ + public function __construct(&$str_total, &$str_unique, &$str_table, &$colors, Parser $parser, $preCalculateFormulas, \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet $phpSheet) + { + // It needs to call its parent's constructor explicitly + parent::__construct(); + + $this->preCalculateFormulas = $preCalculateFormulas; + $this->stringTotal = &$str_total; + $this->stringUnique = &$str_unique; + $this->stringTable = &$str_table; + $this->colors = &$colors; + $this->parser = $parser; + + $this->phpSheet = $phpSheet; + + $this->xlsStringMaxLength = 255; + $this->columnInfo = []; + $this->selection = [0, 0, 0, 0]; + $this->activePane = 3; + + $this->printHeaders = 0; + + $this->outlineStyle = false; + $this->outlineBelow = true; + $this->outlineRight = true; + $this->outlineOn = true; + + $this->fontHashIndex = []; + + // calculate values for DIMENSIONS record + $minR = 1; + $minC = 'A'; + + $maxR = $this->phpSheet->getHighestRow(); + $maxC = $this->phpSheet->getHighestColumn(); + + // Determine lowest and highest column and row + $this->firstRowIndex = $minR; + $this->lastRowIndex = ($maxR > 65535) ? 65535 : $maxR; + + $this->firstColumnIndex = Coordinate::columnIndexFromString($minC); + $this->lastColumnIndex = Coordinate::columnIndexFromString($maxC); + + if ($this->lastColumnIndex > 255) { + $this->lastColumnIndex = 255; + } + + $this->countCellStyleXfs = count($phpSheet->getParent()->getCellStyleXfCollection()); + } + + /** + * Add data to the beginning of the workbook (note the reverse order) + * and to the end of the workbook. + * + * @see \PhpOffice\PhpSpreadsheet\Writer\Xls\Workbook::storeWorkbook() + */ + public function close(): void + { + $phpSheet = $this->phpSheet; + + // Storing selected cells and active sheet because it changes while parsing cells with formulas. + $selectedCells = $this->phpSheet->getSelectedCells(); + $activeSheetIndex = $this->phpSheet->getParent()->getActiveSheetIndex(); + + // Write BOF record + $this->storeBof(0x0010); + + // Write PRINTHEADERS + $this->writePrintHeaders(); + + // Write PRINTGRIDLINES + $this->writePrintGridlines(); + + // Write GRIDSET + $this->writeGridset(); + + // Calculate column widths + $phpSheet->calculateColumnWidths(); + + // Column dimensions + if (($defaultWidth = $phpSheet->getDefaultColumnDimension()->getWidth()) < 0) { + $defaultWidth = \PhpOffice\PhpSpreadsheet\Shared\Font::getDefaultColumnWidthByFont($phpSheet->getParent()->getDefaultStyle()->getFont()); + } + + $columnDimensions = $phpSheet->getColumnDimensions(); + $maxCol = $this->lastColumnIndex - 1; + for ($i = 0; $i <= $maxCol; ++$i) { + $hidden = 0; + $level = 0; + $xfIndex = 15; // there are 15 cell style Xfs + + $width = $defaultWidth; + + $columnLetter = Coordinate::stringFromColumnIndex($i + 1); + if (isset($columnDimensions[$columnLetter])) { + $columnDimension = $columnDimensions[$columnLetter]; + if ($columnDimension->getWidth() >= 0) { + $width = $columnDimension->getWidth(); + } + $hidden = $columnDimension->getVisible() ? 0 : 1; + $level = $columnDimension->getOutlineLevel(); + $xfIndex = $columnDimension->getXfIndex() + 15; // there are 15 cell style Xfs + } + + // Components of columnInfo: + // $firstcol first column on the range + // $lastcol last column on the range + // $width width to set + // $xfIndex The optional cell style Xf index to apply to the columns + // $hidden The optional hidden atribute + // $level The optional outline level + $this->columnInfo[] = [$i, $i, $width, $xfIndex, $hidden, $level]; + } + + // Write GUTS + $this->writeGuts(); + + // Write DEFAULTROWHEIGHT + $this->writeDefaultRowHeight(); + // Write WSBOOL + $this->writeWsbool(); + // Write horizontal and vertical page breaks + $this->writeBreaks(); + // Write page header + $this->writeHeader(); + // Write page footer + $this->writeFooter(); + // Write page horizontal centering + $this->writeHcenter(); + // Write page vertical centering + $this->writeVcenter(); + // Write left margin + $this->writeMarginLeft(); + // Write right margin + $this->writeMarginRight(); + // Write top margin + $this->writeMarginTop(); + // Write bottom margin + $this->writeMarginBottom(); + // Write page setup + $this->writeSetup(); + // Write sheet protection + $this->writeProtect(); + // Write SCENPROTECT + $this->writeScenProtect(); + // Write OBJECTPROTECT + $this->writeObjectProtect(); + // Write sheet password + $this->writePassword(); + // Write DEFCOLWIDTH record + $this->writeDefcol(); + + // Write the COLINFO records if they exist + if (!empty($this->columnInfo)) { + $colcount = count($this->columnInfo); + for ($i = 0; $i < $colcount; ++$i) { + $this->writeColinfo($this->columnInfo[$i]); + } + } + $autoFilterRange = $phpSheet->getAutoFilter()->getRange(); + if (!empty($autoFilterRange)) { + // Write AUTOFILTERINFO + $this->writeAutoFilterInfo(); + } + + // Write sheet dimensions + $this->writeDimensions(); + + // Row dimensions + foreach ($phpSheet->getRowDimensions() as $rowDimension) { + $xfIndex = $rowDimension->getXfIndex() + 15; // there are 15 cellXfs + $this->writeRow( + $rowDimension->getRowIndex() - 1, + (int) $rowDimension->getRowHeight(), + $xfIndex, + !$rowDimension->getVisible(), + $rowDimension->getOutlineLevel() + ); + } + + // Write Cells + foreach ($phpSheet->getCellCollection()->getSortedCoordinates() as $coordinate) { + /** @var Cell $cell */ + $cell = $phpSheet->getCellCollection()->get($coordinate); + $row = $cell->getRow() - 1; + $column = Coordinate::columnIndexFromString($cell->getColumn()) - 1; + + // Don't break Excel break the code! + if ($row > 65535 || $column > 255) { + throw new WriterException('Rows or columns overflow! Excel5 has limit to 65535 rows and 255 columns. Use XLSX instead.'); + } + + // Write cell value + $xfIndex = $cell->getXfIndex() + 15; // there are 15 cell style Xfs + + $cVal = $cell->getValue(); + if ($cVal instanceof RichText) { + $arrcRun = []; + $str_pos = 0; + $elements = $cVal->getRichTextElements(); + foreach ($elements as $element) { + // FONT Index + if ($element instanceof Run) { + $str_fontidx = $this->fontHashIndex[$element->getFont()->getHashCode()]; + } else { + $str_fontidx = 0; + } + $arrcRun[] = ['strlen' => $str_pos, 'fontidx' => $str_fontidx]; + // Position FROM + $str_pos += StringHelper::countCharacters($element->getText(), 'UTF-8'); + } + $this->writeRichTextString($row, $column, $cVal->getPlainText(), $xfIndex, $arrcRun); + } else { + switch ($cell->getDatatype()) { + case DataType::TYPE_STRING: + case DataType::TYPE_INLINE: + case DataType::TYPE_NULL: + if ($cVal === '' || $cVal === null) { + $this->writeBlank($row, $column, $xfIndex); + } else { + $this->writeString($row, $column, $cVal, $xfIndex); + } + + break; + case DataType::TYPE_NUMERIC: + $this->writeNumber($row, $column, $cVal, $xfIndex); + + break; + case DataType::TYPE_FORMULA: + $calculatedValue = $this->preCalculateFormulas ? + $cell->getCalculatedValue() : null; + if (self::WRITE_FORMULA_EXCEPTION == $this->writeFormula($row, $column, $cVal, $xfIndex, $calculatedValue)) { + if ($calculatedValue === null) { + $calculatedValue = $cell->getCalculatedValue(); + } + $calctype = gettype($calculatedValue); + switch ($calctype) { + case 'integer': + case 'double': + $this->writeNumber($row, $column, $calculatedValue, $xfIndex); + + break; + case 'string': + $this->writeString($row, $column, $calculatedValue, $xfIndex); + + break; + case 'boolean': + $this->writeBoolErr($row, $column, $calculatedValue, 0, $xfIndex); + + break; + default: + $this->writeString($row, $column, $cVal, $xfIndex); + } + } + + break; + case DataType::TYPE_BOOL: + $this->writeBoolErr($row, $column, $cVal, 0, $xfIndex); + + break; + case DataType::TYPE_ERROR: + $this->writeBoolErr($row, $column, ErrorCode::error($cVal), 1, $xfIndex); + + break; + } + } + } + + // Append + $this->writeMsoDrawing(); + + // Restoring active sheet. + $this->phpSheet->getParent()->setActiveSheetIndex($activeSheetIndex); + + // Write WINDOW2 record + $this->writeWindow2(); + + // Write PLV record + $this->writePageLayoutView(); + + // Write ZOOM record + $this->writeZoom(); + if ($phpSheet->getFreezePane()) { + $this->writePanes(); + } + + // Restoring selected cells. + $this->phpSheet->setSelectedCells($selectedCells); + + // Write SELECTION record + $this->writeSelection(); + + // Write MergedCellsTable Record + $this->writeMergedCells(); + + // Hyperlinks + foreach ($phpSheet->getHyperLinkCollection() as $coordinate => $hyperlink) { + [$column, $row] = Coordinate::indexesFromString($coordinate); + + $url = $hyperlink->getUrl(); + + if (strpos($url, 'sheet://') !== false) { + // internal to current workbook + $url = str_replace('sheet://', 'internal:', $url); + } elseif (preg_match('/^(http:|https:|ftp:|mailto:)/', $url)) { + // URL + } else { + // external (local file) + $url = 'external:' . $url; + } + + $this->writeUrl($row - 1, $column - 1, $url); + } + + $this->writeDataValidity(); + $this->writeSheetLayout(); + + // Write SHEETPROTECTION record + $this->writeSheetProtection(); + $this->writeRangeProtection(); + + // Write Conditional Formatting Rules and Styles + $this->writeConditionalFormatting(); + + $this->storeEof(); + } + + private function writeConditionalFormatting(): void + { + $conditionalFormulaHelper = new ConditionalHelper($this->parser); + + $arrConditionalStyles = $this->phpSheet->getConditionalStylesCollection(); + if (!empty($arrConditionalStyles)) { + $arrConditional = []; + + // Write ConditionalFormattingTable records + foreach ($arrConditionalStyles as $cellCoordinate => $conditionalStyles) { + $cfHeaderWritten = false; + foreach ($conditionalStyles as $conditional) { + /** @var Conditional $conditional */ + if ( + $conditional->getConditionType() === Conditional::CONDITION_EXPRESSION || + $conditional->getConditionType() === Conditional::CONDITION_CELLIS + ) { + // Write CFHEADER record (only if there are Conditional Styles that we are able to write) + if ($cfHeaderWritten === false) { + $cfHeaderWritten = $this->writeCFHeader($cellCoordinate, $conditionalStyles); + } + if ($cfHeaderWritten === true && !isset($arrConditional[$conditional->getHashCode()])) { + // This hash code has been handled + $arrConditional[$conditional->getHashCode()] = true; + + // Write CFRULE record + $this->writeCFRule($conditionalFormulaHelper, $conditional, $cellCoordinate); + } + } + } + } + } + } + + /** + * Write a cell range address in BIFF8 + * always fixed range + * See section 2.5.14 in OpenOffice.org's Documentation of the Microsoft Excel File Format. + * + * @param string $range E.g. 'A1' or 'A1:B6' + * + * @return string Binary data + */ + private function writeBIFF8CellRangeAddressFixed($range) + { + $explodes = explode(':', $range); + + // extract first cell, e.g. 'A1' + $firstCell = $explodes[0]; + + // extract last cell, e.g. 'B6' + if (count($explodes) == 1) { + $lastCell = $firstCell; + } else { + $lastCell = $explodes[1]; + } + + $firstCellCoordinates = Coordinate::indexesFromString($firstCell); // e.g. [0, 1] + $lastCellCoordinates = Coordinate::indexesFromString($lastCell); // e.g. [1, 6] + + return pack('vvvv', $firstCellCoordinates[1] - 1, $lastCellCoordinates[1] - 1, $firstCellCoordinates[0] - 1, $lastCellCoordinates[0] - 1); + } + + /** + * Retrieves data from memory in one chunk, or from disk + * sized chunks. + * + * @return string The data + */ + public function getData() + { + // Return data stored in memory + if (isset($this->_data)) { + $tmp = $this->_data; + $this->_data = null; + + return $tmp; + } + + // No data to return + return ''; + } + + /** + * Set the option to print the row and column headers on the printed page. + * + * @param int $print Whether to print the headers or not. Defaults to 1 (print). + */ + public function printRowColHeaders($print = 1): void + { + $this->printHeaders = $print; + } + + /** + * This method sets the properties for outlining and grouping. The defaults + * correspond to Excel's defaults. + * + * @param bool $visible + * @param bool $symbols_below + * @param bool $symbols_right + * @param bool $auto_style + */ + public function setOutline($visible = true, $symbols_below = true, $symbols_right = true, $auto_style = false): void + { + $this->outlineOn = $visible; + $this->outlineBelow = $symbols_below; + $this->outlineRight = $symbols_right; + $this->outlineStyle = $auto_style; + } + + /** + * Write a double to the specified row and column (zero indexed). + * An integer can be written as a double. Excel will display an + * integer. $format is optional. + * + * Returns 0 : normal termination + * -2 : row or column out of range + * + * @param int $row Zero indexed row + * @param int $col Zero indexed column + * @param float $num The number to write + * @param mixed $xfIndex The optional XF format + * + * @return int + */ + private function writeNumber($row, $col, $num, $xfIndex) + { + $record = 0x0203; // Record identifier + $length = 0x000E; // Number of bytes to follow + + $header = pack('vv', $record, $length); + $data = pack('vvv', $row, $col, $xfIndex); + $xl_double = pack('d', $num); + if (self::getByteOrder()) { // if it's Big Endian + $xl_double = strrev($xl_double); + } + + $this->append($header . $data . $xl_double); + + return 0; + } + + /** + * Write a LABELSST record or a LABEL record. Which one depends on BIFF version. + * + * @param int $row Row index (0-based) + * @param int $col Column index (0-based) + * @param string $str The string + * @param int $xfIndex Index to XF record + */ + private function writeString($row, $col, $str, $xfIndex): void + { + $this->writeLabelSst($row, $col, $str, $xfIndex); + } + + /** + * Write a LABELSST record or a LABEL record. Which one depends on BIFF version + * It differs from writeString by the writing of rich text strings. + * + * @param int $row Row index (0-based) + * @param int $col Column index (0-based) + * @param string $str The string + * @param int $xfIndex The XF format index for the cell + * @param array $arrcRun Index to Font record and characters beginning + */ + private function writeRichTextString($row, $col, $str, $xfIndex, $arrcRun): void + { + $record = 0x00FD; // Record identifier + $length = 0x000A; // Bytes to follow + $str = StringHelper::UTF8toBIFF8UnicodeShort($str, $arrcRun); + + // check if string is already present + if (!isset($this->stringTable[$str])) { + $this->stringTable[$str] = $this->stringUnique++; + } + ++$this->stringTotal; + + $header = pack('vv', $record, $length); + $data = pack('vvvV', $row, $col, $xfIndex, $this->stringTable[$str]); + $this->append($header . $data); + } + + /** + * Write a string to the specified row and column (zero indexed). + * This is the BIFF8 version (no 255 chars limit). + * $format is optional. + * + * @param int $row Zero indexed row + * @param int $col Zero indexed column + * @param string $str The string to write + * @param mixed $xfIndex The XF format index for the cell + */ + private function writeLabelSst($row, $col, $str, $xfIndex): void + { + $record = 0x00FD; // Record identifier + $length = 0x000A; // Bytes to follow + + $str = StringHelper::UTF8toBIFF8UnicodeLong($str); + + // check if string is already present + if (!isset($this->stringTable[$str])) { + $this->stringTable[$str] = $this->stringUnique++; + } + ++$this->stringTotal; + + $header = pack('vv', $record, $length); + $data = pack('vvvV', $row, $col, $xfIndex, $this->stringTable[$str]); + $this->append($header . $data); + } + + /** + * Write a blank cell to the specified row and column (zero indexed). + * A blank cell is used to specify formatting without adding a string + * or a number. + * + * A blank cell without a format serves no purpose. Therefore, we don't write + * a BLANK record unless a format is specified. + * + * Returns 0 : normal termination (including no format) + * -1 : insufficient number of arguments + * -2 : row or column out of range + * + * @param int $row Zero indexed row + * @param int $col Zero indexed column + * @param mixed $xfIndex The XF format index + * + * @return int + */ + public function writeBlank($row, $col, $xfIndex) + { + $record = 0x0201; // Record identifier + $length = 0x0006; // Number of bytes to follow + + $header = pack('vv', $record, $length); + $data = pack('vvv', $row, $col, $xfIndex); + $this->append($header . $data); + + return 0; + } + + /** + * Write a boolean or an error type to the specified row and column (zero indexed). + * + * @param int $row Row index (0-based) + * @param int $col Column index (0-based) + * @param int $value + * @param bool $isError Error or Boolean? + * @param int $xfIndex + * + * @return int + */ + private function writeBoolErr($row, $col, $value, $isError, $xfIndex) + { + $record = 0x0205; + $length = 8; + + $header = pack('vv', $record, $length); + $data = pack('vvvCC', $row, $col, $xfIndex, $value, $isError); + $this->append($header . $data); + + return 0; + } + + const WRITE_FORMULA_NORMAL = 0; + const WRITE_FORMULA_ERRORS = -1; + const WRITE_FORMULA_RANGE = -2; + const WRITE_FORMULA_EXCEPTION = -3; + + /** + * Write a formula to the specified row and column (zero indexed). + * The textual representation of the formula is passed to the parser in + * Parser.php which returns a packed binary string. + * + * Returns 0 : WRITE_FORMULA_NORMAL normal termination + * -1 : WRITE_FORMULA_ERRORS formula errors (bad formula) + * -2 : WRITE_FORMULA_RANGE row or column out of range + * -3 : WRITE_FORMULA_EXCEPTION parse raised exception, probably due to definedname + * + * @param int $row Zero indexed row + * @param int $col Zero indexed column + * @param string $formula The formula text string + * @param mixed $xfIndex The XF format index + * @param mixed $calculatedValue Calculated value + * + * @return int + */ + private function writeFormula($row, $col, $formula, $xfIndex, $calculatedValue) + { + $record = 0x0006; // Record identifier + // Initialize possible additional value for STRING record that should be written after the FORMULA record? + $stringValue = null; + + // calculated value + if (isset($calculatedValue)) { + // Since we can't yet get the data type of the calculated value, + // we use best effort to determine data type + if (is_bool($calculatedValue)) { + // Boolean value + $num = pack('CCCvCv', 0x01, 0x00, (int) $calculatedValue, 0x00, 0x00, 0xFFFF); + } elseif (is_int($calculatedValue) || is_float($calculatedValue)) { + // Numeric value + $num = pack('d', $calculatedValue); + } elseif (is_string($calculatedValue)) { + $errorCodes = DataType::getErrorCodes(); + if (isset($errorCodes[$calculatedValue])) { + // Error value + $num = pack('CCCvCv', 0x02, 0x00, ErrorCode::error($calculatedValue), 0x00, 0x00, 0xFFFF); + } elseif ($calculatedValue === '') { + // Empty string (and BIFF8) + $num = pack('CCCvCv', 0x03, 0x00, 0x00, 0x00, 0x00, 0xFFFF); + } else { + // Non-empty string value (or empty string BIFF5) + $stringValue = $calculatedValue; + $num = pack('CCCvCv', 0x00, 0x00, 0x00, 0x00, 0x00, 0xFFFF); + } + } else { + // We are really not supposed to reach here + $num = pack('d', 0x00); + } + } else { + $num = pack('d', 0x00); + } + + $grbit = 0x03; // Option flags + $unknown = 0x0000; // Must be zero + + // Strip the '=' or '@' sign at the beginning of the formula string + if ($formula[0] == '=') { + $formula = substr($formula, 1); + } else { + // Error handling + $this->writeString($row, $col, 'Unrecognised character for formula', 0); + + return self::WRITE_FORMULA_ERRORS; + } + + // Parse the formula using the parser in Parser.php + try { + $this->parser->parse($formula); + $formula = $this->parser->toReversePolish(); + + $formlen = strlen($formula); // Length of the binary string + $length = 0x16 + $formlen; // Length of the record data + + $header = pack('vv', $record, $length); + + $data = pack('vvv', $row, $col, $xfIndex) + . $num + . pack('vVv', $grbit, $unknown, $formlen); + $this->append($header . $data . $formula); + + // Append also a STRING record if necessary + if ($stringValue !== null) { + $this->writeStringRecord($stringValue); + } + + return self::WRITE_FORMULA_NORMAL; + } catch (PhpSpreadsheetException $e) { + return self::WRITE_FORMULA_EXCEPTION; + } + } + + /** + * Write a STRING record. This. + * + * @param string $stringValue + */ + private function writeStringRecord($stringValue): void + { + $record = 0x0207; // Record identifier + $data = StringHelper::UTF8toBIFF8UnicodeLong($stringValue); + + $length = strlen($data); + $header = pack('vv', $record, $length); + + $this->append($header . $data); + } + + /** + * Write a hyperlink. + * This is comprised of two elements: the visible label and + * the invisible link. The visible label is the same as the link unless an + * alternative string is specified. The label is written using the + * writeString() method. Therefore the 255 characters string limit applies. + * $string and $format are optional. + * + * The hyperlink can be to a http, ftp, mail, internal sheet (not yet), or external + * directory url. + * + * @param int $row Row + * @param int $col Column + * @param string $url URL string + */ + private function writeUrl($row, $col, $url): void + { + // Add start row and col to arg list + $this->writeUrlRange($row, $col, $row, $col, $url); + } + + /** + * This is the more general form of writeUrl(). It allows a hyperlink to be + * written to a range of cells. This function also decides the type of hyperlink + * to be written. These are either, Web (http, ftp, mailto), Internal + * (Sheet1!A1) or external ('c:\temp\foo.xls#Sheet1!A1'). + * + * @param int $row1 Start row + * @param int $col1 Start column + * @param int $row2 End row + * @param int $col2 End column + * @param string $url URL string + * + * @see writeUrl() + */ + private function writeUrlRange($row1, $col1, $row2, $col2, $url): void + { + // Check for internal/external sheet links or default to web link + if (preg_match('[^internal:]', $url)) { + $this->writeUrlInternal($row1, $col1, $row2, $col2, $url); + } + if (preg_match('[^external:]', $url)) { + $this->writeUrlExternal($row1, $col1, $row2, $col2, $url); + } + + $this->writeUrlWeb($row1, $col1, $row2, $col2, $url); + } + + /** + * Used to write http, ftp and mailto hyperlinks. + * The link type ($options) is 0x03 is the same as absolute dir ref without + * sheet. However it is differentiated by the $unknown2 data stream. + * + * @param int $row1 Start row + * @param int $col1 Start column + * @param int $row2 End row + * @param int $col2 End column + * @param string $url URL string + * + * @see writeUrl() + */ + public function writeUrlWeb($row1, $col1, $row2, $col2, $url): void + { + $record = 0x01B8; // Record identifier + + // Pack the undocumented parts of the hyperlink stream + $unknown1 = pack('H*', 'D0C9EA79F9BACE118C8200AA004BA90B02000000'); + $unknown2 = pack('H*', 'E0C9EA79F9BACE118C8200AA004BA90B'); + + // Pack the option flags + $options = pack('V', 0x03); + + // Convert URL to a null terminated wchar string + + /** @phpstan-ignore-next-line */ + $url = implode("\0", preg_split("''", $url, -1, PREG_SPLIT_NO_EMPTY)); + $url = $url . "\0\0\0"; + + // Pack the length of the URL + $url_len = pack('V', strlen($url)); + + // Calculate the data length + $length = 0x34 + strlen($url); + + // Pack the header data + $header = pack('vv', $record, $length); + $data = pack('vvvv', $row1, $row2, $col1, $col2); + + // Write the packed data + $this->append($header . $data . $unknown1 . $options . $unknown2 . $url_len . $url); + } + + /** + * Used to write internal reference hyperlinks such as "Sheet1!A1". + * + * @param int $row1 Start row + * @param int $col1 Start column + * @param int $row2 End row + * @param int $col2 End column + * @param string $url URL string + * + * @see writeUrl() + */ + private function writeUrlInternal($row1, $col1, $row2, $col2, $url): void + { + $record = 0x01B8; // Record identifier + + // Strip URL type + $url = (string) preg_replace('/^internal:/', '', $url); + + // Pack the undocumented parts of the hyperlink stream + $unknown1 = pack('H*', 'D0C9EA79F9BACE118C8200AA004BA90B02000000'); + + // Pack the option flags + $options = pack('V', 0x08); + + // Convert the URL type and to a null terminated wchar string + $url .= "\0"; + + // character count + $url_len = StringHelper::countCharacters($url); + $url_len = pack('V', $url_len); + + $url = StringHelper::convertEncoding($url, 'UTF-16LE', 'UTF-8'); + + // Calculate the data length + $length = 0x24 + strlen($url); + + // Pack the header data + $header = pack('vv', $record, $length); + $data = pack('vvvv', $row1, $row2, $col1, $col2); + + // Write the packed data + $this->append($header . $data . $unknown1 . $options . $url_len . $url); + } + + /** + * Write links to external directory names such as 'c:\foo.xls', + * c:\foo.xls#Sheet1!A1', '../../foo.xls'. and '../../foo.xls#Sheet1!A1'. + * + * Note: Excel writes some relative links with the $dir_long string. We ignore + * these cases for the sake of simpler code. + * + * @param int $row1 Start row + * @param int $col1 Start column + * @param int $row2 End row + * @param int $col2 End column + * @param string $url URL string + * + * @see writeUrl() + */ + private function writeUrlExternal($row1, $col1, $row2, $col2, $url): void + { + // Network drives are different. We will handle them separately + // MS/Novell network drives and shares start with \\ + if (preg_match('[^external:\\\\]', $url)) { + return; + } + + $record = 0x01B8; // Record identifier + $length = 0x00000; // Bytes to follow + + // Strip URL type and change Unix dir separator to Dos style (if needed) + // + $url = (string) preg_replace(['/^external:/', '/\//'], ['', '\\'], $url); + + // Determine if the link is relative or absolute: + // relative if link contains no dir separator, "somefile.xls" + // relative if link starts with up-dir, "..\..\somefile.xls" + // otherwise, absolute + + $absolute = 0x00; // relative path + if (preg_match('/^[A-Z]:/', $url)) { + $absolute = 0x02; // absolute path on Windows, e.g. C:\... + } + $link_type = 0x01 | $absolute; + + // Determine if the link contains a sheet reference and change some of the + // parameters accordingly. + // Split the dir name and sheet name (if it exists) + $dir_long = $url; + if (preg_match('/\\#/', $url)) { + $link_type |= 0x08; + } + + // Pack the link type + $link_type = pack('V', $link_type); + + // Calculate the up-level dir count e.g.. (..\..\..\ == 3) + $up_count = preg_match_all('/\\.\\.\\\\/', $dir_long, $useless); + $up_count = pack('v', $up_count); + + // Store the short dos dir name (null terminated) + $dir_short = (string) preg_replace('/\\.\\.\\\\/', '', $dir_long) . "\0"; + + // Store the long dir name as a wchar string (non-null terminated) + $dir_long = $dir_long . "\0"; + + // Pack the lengths of the dir strings + $dir_short_len = pack('V', strlen($dir_short)); + $dir_long_len = pack('V', strlen($dir_long)); + $stream_len = pack('V', 0); //strlen($dir_long) + 0x06); + + // Pack the undocumented parts of the hyperlink stream + $unknown1 = pack('H*', 'D0C9EA79F9BACE118C8200AA004BA90B02000000'); + $unknown2 = pack('H*', '0303000000000000C000000000000046'); + $unknown3 = pack('H*', 'FFFFADDE000000000000000000000000000000000000000'); + $unknown4 = pack('v', 0x03); + + // Pack the main data stream + $data = pack('vvvv', $row1, $row2, $col1, $col2) . + $unknown1 . + $link_type . + $unknown2 . + $up_count . + $dir_short_len . + $dir_short . + $unknown3 . + $stream_len; /*. + $dir_long_len . + $unknown4 . + $dir_long . + $sheet_len . + $sheet ;*/ + + // Pack the header data + $length = strlen($data); + $header = pack('vv', $record, $length); + + // Write the packed data + $this->append($header . $data); + } + + /** + * This method is used to set the height and format for a row. + * + * @param int $row The row to set + * @param int $height Height we are giving to the row. + * Use null to set XF without setting height + * @param int $xfIndex The optional cell style Xf index to apply to the columns + * @param bool $hidden The optional hidden attribute + * @param int $level The optional outline level for row, in range [0,7] + */ + private function writeRow($row, $height, $xfIndex, $hidden = false, $level = 0): void + { + $record = 0x0208; // Record identifier + $length = 0x0010; // Number of bytes to follow + + $colMic = 0x0000; // First defined column + $colMac = 0x0000; // Last defined column + $irwMac = 0x0000; // Used by Excel to optimise loading + $reserved = 0x0000; // Reserved + $grbit = 0x0000; // Option flags + $ixfe = $xfIndex; + + if ($height < 0) { + $height = null; + } + + // Use writeRow($row, null, $XF) to set XF format without setting height + if ($height !== null) { + $miyRw = $height * 20; // row height + } else { + $miyRw = 0xff; // default row height is 256 + } + + // Set the options flags. fUnsynced is used to show that the font and row + // heights are not compatible. This is usually the case for WriteExcel. + // The collapsed flag 0x10 doesn't seem to be used to indicate that a row + // is collapsed. Instead it is used to indicate that the previous row is + // collapsed. The zero height flag, 0x20, is used to collapse a row. + + $grbit |= $level; + if ($hidden === true) { + $grbit |= 0x0030; + } + if ($height !== null) { + $grbit |= 0x0040; // fUnsynced + } + if ($xfIndex !== 0xF) { + $grbit |= 0x0080; + } + $grbit |= 0x0100; + + $header = pack('vv', $record, $length); + $data = pack('vvvvvvvv', $row, $colMic, $colMac, $miyRw, $irwMac, $reserved, $grbit, $ixfe); + $this->append($header . $data); + } + + /** + * Writes Excel DIMENSIONS to define the area in which there is data. + */ + private function writeDimensions(): void + { + $record = 0x0200; // Record identifier + + $length = 0x000E; + $data = pack('VVvvv', $this->firstRowIndex, $this->lastRowIndex + 1, $this->firstColumnIndex, $this->lastColumnIndex + 1, 0x0000); // reserved + + $header = pack('vv', $record, $length); + $this->append($header . $data); + } + + /** + * Write BIFF record Window2. + */ + private function writeWindow2(): void + { + $record = 0x023E; // Record identifier + $length = 0x0012; + + $grbit = 0x00B6; // Option flags + $rwTop = 0x0000; // Top row visible in window + $colLeft = 0x0000; // Leftmost column visible in window + + // The options flags that comprise $grbit + $fDspFmla = 0; // 0 - bit + $fDspGrid = $this->phpSheet->getShowGridlines() ? 1 : 0; // 1 + $fDspRwCol = $this->phpSheet->getShowRowColHeaders() ? 1 : 0; // 2 + $fFrozen = $this->phpSheet->getFreezePane() ? 1 : 0; // 3 + $fDspZeros = 1; // 4 + $fDefaultHdr = 1; // 5 + $fArabic = $this->phpSheet->getRightToLeft() ? 1 : 0; // 6 + $fDspGuts = $this->outlineOn; // 7 + $fFrozenNoSplit = 0; // 0 - bit + // no support in PhpSpreadsheet for selected sheet, therefore sheet is only selected if it is the active sheet + $fSelected = ($this->phpSheet === $this->phpSheet->getParent()->getActiveSheet()) ? 1 : 0; + $fPageBreakPreview = $this->phpSheet->getSheetView()->getView() === SheetView::SHEETVIEW_PAGE_BREAK_PREVIEW; + + $grbit = $fDspFmla; + $grbit |= $fDspGrid << 1; + $grbit |= $fDspRwCol << 2; + $grbit |= $fFrozen << 3; + $grbit |= $fDspZeros << 4; + $grbit |= $fDefaultHdr << 5; + $grbit |= $fArabic << 6; + $grbit |= $fDspGuts << 7; + $grbit |= $fFrozenNoSplit << 8; + $grbit |= $fSelected << 9; // Selected sheets. + $grbit |= $fSelected << 10; // Active sheet. + $grbit |= $fPageBreakPreview << 11; + + $header = pack('vv', $record, $length); + $data = pack('vvv', $grbit, $rwTop, $colLeft); + + // FIXME !!! + $rgbHdr = 0x0040; // Row/column heading and gridline color index + $zoom_factor_page_break = ($fPageBreakPreview ? $this->phpSheet->getSheetView()->getZoomScale() : 0x0000); + $zoom_factor_normal = $this->phpSheet->getSheetView()->getZoomScaleNormal(); + + $data .= pack('vvvvV', $rgbHdr, 0x0000, $zoom_factor_page_break, $zoom_factor_normal, 0x00000000); + + $this->append($header . $data); + } + + /** + * Write BIFF record DEFAULTROWHEIGHT. + */ + private function writeDefaultRowHeight(): void + { + $defaultRowHeight = $this->phpSheet->getDefaultRowDimension()->getRowHeight(); + + if ($defaultRowHeight < 0) { + return; + } + + // convert to twips + $defaultRowHeight = (int) 20 * $defaultRowHeight; + + $record = 0x0225; // Record identifier + $length = 0x0004; // Number of bytes to follow + + $header = pack('vv', $record, $length); + $data = pack('vv', 1, $defaultRowHeight); + $this->append($header . $data); + } + + /** + * Write BIFF record DEFCOLWIDTH if COLINFO records are in use. + */ + private function writeDefcol(): void + { + $defaultColWidth = 8; + + $record = 0x0055; // Record identifier + $length = 0x0002; // Number of bytes to follow + + $header = pack('vv', $record, $length); + $data = pack('v', $defaultColWidth); + $this->append($header . $data); + } + + /** + * Write BIFF record COLINFO to define column widths. + * + * Note: The SDK says the record length is 0x0B but Excel writes a 0x0C + * length record. + * + * @param array $col_array This is the only parameter received and is composed of the following: + * 0 => First formatted column, + * 1 => Last formatted column, + * 2 => Col width (8.43 is Excel default), + * 3 => The optional XF format of the column, + * 4 => Option flags. + * 5 => Optional outline level + */ + private function writeColinfo($col_array): void + { + $colFirst = $col_array[0] ?? null; + $colLast = $col_array[1] ?? null; + $coldx = $col_array[2] ?? 8.43; + $xfIndex = $col_array[3] ?? 15; + $grbit = $col_array[4] ?? 0; + $level = $col_array[5] ?? 0; + + $record = 0x007D; // Record identifier + $length = 0x000C; // Number of bytes to follow + + $coldx *= 256; // Convert to units of 1/256 of a char + + $ixfe = $xfIndex; + $reserved = 0x0000; // Reserved + + $level = max(0, min($level, 7)); + $grbit |= $level << 8; + + $header = pack('vv', $record, $length); + $data = pack('vvvvvv', $colFirst, $colLast, $coldx, $ixfe, $grbit, $reserved); + $this->append($header . $data); + } + + /** + * Write BIFF record SELECTION. + */ + private function writeSelection(): void + { + // look up the selected cell range + $selectedCells = Coordinate::splitRange($this->phpSheet->getSelectedCells()); + $selectedCells = $selectedCells[0]; + if (count($selectedCells) == 2) { + [$first, $last] = $selectedCells; + } else { + $first = $selectedCells[0]; + $last = $selectedCells[0]; + } + + [$colFirst, $rwFirst] = Coordinate::coordinateFromString($first); + $colFirst = Coordinate::columnIndexFromString($colFirst) - 1; // base 0 column index + --$rwFirst; // base 0 row index + + [$colLast, $rwLast] = Coordinate::coordinateFromString($last); + $colLast = Coordinate::columnIndexFromString($colLast) - 1; // base 0 column index + --$rwLast; // base 0 row index + + // make sure we are not out of bounds + $colFirst = min($colFirst, 255); + $colLast = min($colLast, 255); + + $rwFirst = min($rwFirst, 65535); + $rwLast = min($rwLast, 65535); + + $record = 0x001D; // Record identifier + $length = 0x000F; // Number of bytes to follow + + $pnn = $this->activePane; // Pane position + $rwAct = $rwFirst; // Active row + $colAct = $colFirst; // Active column + $irefAct = 0; // Active cell ref + $cref = 1; // Number of refs + + // Swap last row/col for first row/col as necessary + if ($rwFirst > $rwLast) { + [$rwFirst, $rwLast] = [$rwLast, $rwFirst]; + } + + if ($colFirst > $colLast) { + [$colFirst, $colLast] = [$colLast, $colFirst]; + } + + $header = pack('vv', $record, $length); + $data = pack('CvvvvvvCC', $pnn, $rwAct, $colAct, $irefAct, $cref, $rwFirst, $rwLast, $colFirst, $colLast); + $this->append($header . $data); + } + + /** + * Store the MERGEDCELLS records for all ranges of merged cells. + */ + private function writeMergedCells(): void + { + $mergeCells = $this->phpSheet->getMergeCells(); + $countMergeCells = count($mergeCells); + + if ($countMergeCells == 0) { + return; + } + + // maximum allowed number of merged cells per record + $maxCountMergeCellsPerRecord = 1027; + + // record identifier + $record = 0x00E5; + + // counter for total number of merged cells treated so far by the writer + $i = 0; + + // counter for number of merged cells written in record currently being written + $j = 0; + + // initialize record data + $recordData = ''; + + // loop through the merged cells + foreach ($mergeCells as $mergeCell) { + ++$i; + ++$j; + + // extract the row and column indexes + $range = Coordinate::splitRange($mergeCell); + [$first, $last] = $range[0]; + [$firstColumn, $firstRow] = Coordinate::indexesFromString($first); + [$lastColumn, $lastRow] = Coordinate::indexesFromString($last); + + $recordData .= pack('vvvv', $firstRow - 1, $lastRow - 1, $firstColumn - 1, $lastColumn - 1); + + // flush record if we have reached limit for number of merged cells, or reached final merged cell + if ($j == $maxCountMergeCellsPerRecord || $i == $countMergeCells) { + $recordData = pack('v', $j) . $recordData; + $length = strlen($recordData); + $header = pack('vv', $record, $length); + $this->append($header . $recordData); + + // initialize for next record, if any + $recordData = ''; + $j = 0; + } + } + } + + /** + * Write SHEETLAYOUT record. + */ + private function writeSheetLayout(): void + { + if (!$this->phpSheet->isTabColorSet()) { + return; + } + + $recordData = pack( + 'vvVVVvv', + 0x0862, + 0x0000, // unused + 0x00000000, // unused + 0x00000000, // unused + 0x00000014, // size of record data + $this->colors[$this->phpSheet->getTabColor()->getRGB()], // color index + 0x0000 // unused + ); + + $length = strlen($recordData); + + $record = 0x0862; // Record identifier + $header = pack('vv', $record, $length); + $this->append($header . $recordData); + } + + /** + * Write SHEETPROTECTION. + */ + private function writeSheetProtection(): void + { + // record identifier + $record = 0x0867; + + // prepare options + $options = (int) !$this->phpSheet->getProtection()->getObjects() + | (int) !$this->phpSheet->getProtection()->getScenarios() << 1 + | (int) !$this->phpSheet->getProtection()->getFormatCells() << 2 + | (int) !$this->phpSheet->getProtection()->getFormatColumns() << 3 + | (int) !$this->phpSheet->getProtection()->getFormatRows() << 4 + | (int) !$this->phpSheet->getProtection()->getInsertColumns() << 5 + | (int) !$this->phpSheet->getProtection()->getInsertRows() << 6 + | (int) !$this->phpSheet->getProtection()->getInsertHyperlinks() << 7 + | (int) !$this->phpSheet->getProtection()->getDeleteColumns() << 8 + | (int) !$this->phpSheet->getProtection()->getDeleteRows() << 9 + | (int) !$this->phpSheet->getProtection()->getSelectLockedCells() << 10 + | (int) !$this->phpSheet->getProtection()->getSort() << 11 + | (int) !$this->phpSheet->getProtection()->getAutoFilter() << 12 + | (int) !$this->phpSheet->getProtection()->getPivotTables() << 13 + | (int) !$this->phpSheet->getProtection()->getSelectUnlockedCells() << 14; + + // record data + $recordData = pack( + 'vVVCVVvv', + 0x0867, // repeated record identifier + 0x0000, // not used + 0x0000, // not used + 0x00, // not used + 0x01000200, // unknown data + 0xFFFFFFFF, // unknown data + $options, // options + 0x0000 // not used + ); + + $length = strlen($recordData); + $header = pack('vv', $record, $length); + + $this->append($header . $recordData); + } + + /** + * Write BIFF record RANGEPROTECTION. + * + * Openoffice.org's Documentation of the Microsoft Excel File Format uses term RANGEPROTECTION for these records + * Microsoft Office Excel 97-2007 Binary File Format Specification uses term FEAT for these records + */ + private function writeRangeProtection(): void + { + foreach ($this->phpSheet->getProtectedCells() as $range => $password) { + // number of ranges, e.g. 'A1:B3 C20:D25' + $cellRanges = explode(' ', $range); + $cref = count($cellRanges); + + $recordData = pack( + 'vvVVvCVvVv', + 0x0868, + 0x00, + 0x0000, + 0x0000, + 0x02, + 0x0, + 0x0000, + $cref, + 0x0000, + 0x00 + ); + + foreach ($cellRanges as $cellRange) { + $recordData .= $this->writeBIFF8CellRangeAddressFixed($cellRange); + } + + // the rgbFeat structure + $recordData .= pack( + 'VV', + 0x0000, + hexdec($password) + ); + + $recordData .= StringHelper::UTF8toBIFF8UnicodeLong('p' . md5($recordData)); + + $length = strlen($recordData); + + $record = 0x0868; // Record identifier + $header = pack('vv', $record, $length); + $this->append($header . $recordData); + } + } + + /** + * Writes the Excel BIFF PANE record. + * The panes can either be frozen or thawed (unfrozen). + * Frozen panes are specified in terms of an integer number of rows and columns. + * Thawed panes are specified in terms of Excel's units for rows and columns. + */ + private function writePanes(): void + { + if (!$this->phpSheet->getFreezePane()) { + // thaw panes + return; + } + + [$column, $row] = Coordinate::indexesFromString($this->phpSheet->getFreezePane() ?? ''); + $x = $column - 1; + $y = $row - 1; + + [$leftMostColumn, $topRow] = Coordinate::indexesFromString($this->phpSheet->getTopLeftCell()); + //Coordinates are zero-based in xls files + $rwTop = $topRow - 1; + $colLeft = $leftMostColumn - 1; + + $record = 0x0041; // Record identifier + $length = 0x000A; // Number of bytes to follow + + // Determine which pane should be active. There is also the undocumented + // option to override this should it be necessary: may be removed later. + $pnnAct = null; + if ($x != 0 && $y != 0) { + $pnnAct = 0; // Bottom right + } + if ($x != 0 && $y == 0) { + $pnnAct = 1; // Top right + } + if ($x == 0 && $y != 0) { + $pnnAct = 2; // Bottom left + } + if ($x == 0 && $y == 0) { + $pnnAct = 3; // Top left + } + + $this->activePane = $pnnAct; // Used in writeSelection + + $header = pack('vv', $record, $length); + $data = pack('vvvvv', $x, $y, $rwTop, $colLeft, $pnnAct); + $this->append($header . $data); + } + + /** + * Store the page setup SETUP BIFF record. + */ + private function writeSetup(): void + { + $record = 0x00A1; // Record identifier + $length = 0x0022; // Number of bytes to follow + + $iPaperSize = $this->phpSheet->getPageSetup()->getPaperSize(); // Paper size + $iScale = $this->phpSheet->getPageSetup()->getScale() ?: 100; // Print scaling factor + + $iPageStart = 0x01; // Starting page number + $iFitWidth = (int) $this->phpSheet->getPageSetup()->getFitToWidth(); // Fit to number of pages wide + $iFitHeight = (int) $this->phpSheet->getPageSetup()->getFitToHeight(); // Fit to number of pages high + $grbit = 0x00; // Option flags + $iRes = 0x0258; // Print resolution + $iVRes = 0x0258; // Vertical print resolution + + $numHdr = $this->phpSheet->getPageMargins()->getHeader(); // Header Margin + + $numFtr = $this->phpSheet->getPageMargins()->getFooter(); // Footer Margin + $iCopies = 0x01; // Number of copies + + // Order of printing pages + $fLeftToRight = $this->phpSheet->getPageSetup()->getPageOrder() === PageSetup::PAGEORDER_DOWN_THEN_OVER + ? 0x1 : 0x0; + // Page orientation + $fLandscape = ($this->phpSheet->getPageSetup()->getOrientation() == PageSetup::ORIENTATION_LANDSCAPE) + ? 0x0 : 0x1; + + $fNoPls = 0x0; // Setup not read from printer + $fNoColor = 0x0; // Print black and white + $fDraft = 0x0; // Print draft quality + $fNotes = 0x0; // Print notes + $fNoOrient = 0x0; // Orientation not set + $fUsePage = 0x0; // Use custom starting page + + $grbit = $fLeftToRight; + $grbit |= $fLandscape << 1; + $grbit |= $fNoPls << 2; + $grbit |= $fNoColor << 3; + $grbit |= $fDraft << 4; + $grbit |= $fNotes << 5; + $grbit |= $fNoOrient << 6; + $grbit |= $fUsePage << 7; + + $numHdr = pack('d', $numHdr); + $numFtr = pack('d', $numFtr); + if (self::getByteOrder()) { // if it's Big Endian + $numHdr = strrev($numHdr); + $numFtr = strrev($numFtr); + } + + $header = pack('vv', $record, $length); + $data1 = pack('vvvvvvvv', $iPaperSize, $iScale, $iPageStart, $iFitWidth, $iFitHeight, $grbit, $iRes, $iVRes); + $data2 = $numHdr . $numFtr; + $data3 = pack('v', $iCopies); + $this->append($header . $data1 . $data2 . $data3); + } + + /** + * Store the header caption BIFF record. + */ + private function writeHeader(): void + { + $record = 0x0014; // Record identifier + + /* removing for now + // need to fix character count (multibyte!) + if (strlen($this->phpSheet->getHeaderFooter()->getOddHeader()) <= 255) { + $str = $this->phpSheet->getHeaderFooter()->getOddHeader(); // header string + } else { + $str = ''; + } + */ + + $recordData = StringHelper::UTF8toBIFF8UnicodeLong($this->phpSheet->getHeaderFooter()->getOddHeader()); + $length = strlen($recordData); + + $header = pack('vv', $record, $length); + + $this->append($header . $recordData); + } + + /** + * Store the footer caption BIFF record. + */ + private function writeFooter(): void + { + $record = 0x0015; // Record identifier + + /* removing for now + // need to fix character count (multibyte!) + if (strlen($this->phpSheet->getHeaderFooter()->getOddFooter()) <= 255) { + $str = $this->phpSheet->getHeaderFooter()->getOddFooter(); + } else { + $str = ''; + } + */ + + $recordData = StringHelper::UTF8toBIFF8UnicodeLong($this->phpSheet->getHeaderFooter()->getOddFooter()); + $length = strlen($recordData); + + $header = pack('vv', $record, $length); + + $this->append($header . $recordData); + } + + /** + * Store the horizontal centering HCENTER BIFF record. + */ + private function writeHcenter(): void + { + $record = 0x0083; // Record identifier + $length = 0x0002; // Bytes to follow + + $fHCenter = $this->phpSheet->getPageSetup()->getHorizontalCentered() ? 1 : 0; // Horizontal centering + + $header = pack('vv', $record, $length); + $data = pack('v', $fHCenter); + + $this->append($header . $data); + } + + /** + * Store the vertical centering VCENTER BIFF record. + */ + private function writeVcenter(): void + { + $record = 0x0084; // Record identifier + $length = 0x0002; // Bytes to follow + + $fVCenter = $this->phpSheet->getPageSetup()->getVerticalCentered() ? 1 : 0; // Horizontal centering + + $header = pack('vv', $record, $length); + $data = pack('v', $fVCenter); + $this->append($header . $data); + } + + /** + * Store the LEFTMARGIN BIFF record. + */ + private function writeMarginLeft(): void + { + $record = 0x0026; // Record identifier + $length = 0x0008; // Bytes to follow + + $margin = $this->phpSheet->getPageMargins()->getLeft(); // Margin in inches + + $header = pack('vv', $record, $length); + $data = pack('d', $margin); + if (self::getByteOrder()) { // if it's Big Endian + $data = strrev($data); + } + + $this->append($header . $data); + } + + /** + * Store the RIGHTMARGIN BIFF record. + */ + private function writeMarginRight(): void + { + $record = 0x0027; // Record identifier + $length = 0x0008; // Bytes to follow + + $margin = $this->phpSheet->getPageMargins()->getRight(); // Margin in inches + + $header = pack('vv', $record, $length); + $data = pack('d', $margin); + if (self::getByteOrder()) { // if it's Big Endian + $data = strrev($data); + } + + $this->append($header . $data); + } + + /** + * Store the TOPMARGIN BIFF record. + */ + private function writeMarginTop(): void + { + $record = 0x0028; // Record identifier + $length = 0x0008; // Bytes to follow + + $margin = $this->phpSheet->getPageMargins()->getTop(); // Margin in inches + + $header = pack('vv', $record, $length); + $data = pack('d', $margin); + if (self::getByteOrder()) { // if it's Big Endian + $data = strrev($data); + } + + $this->append($header . $data); + } + + /** + * Store the BOTTOMMARGIN BIFF record. + */ + private function writeMarginBottom(): void + { + $record = 0x0029; // Record identifier + $length = 0x0008; // Bytes to follow + + $margin = $this->phpSheet->getPageMargins()->getBottom(); // Margin in inches + + $header = pack('vv', $record, $length); + $data = pack('d', $margin); + if (self::getByteOrder()) { // if it's Big Endian + $data = strrev($data); + } + + $this->append($header . $data); + } + + /** + * Write the PRINTHEADERS BIFF record. + */ + private function writePrintHeaders(): void + { + $record = 0x002a; // Record identifier + $length = 0x0002; // Bytes to follow + + $fPrintRwCol = $this->printHeaders; // Boolean flag + + $header = pack('vv', $record, $length); + $data = pack('v', $fPrintRwCol); + $this->append($header . $data); + } + + /** + * Write the PRINTGRIDLINES BIFF record. Must be used in conjunction with the + * GRIDSET record. + */ + private function writePrintGridlines(): void + { + $record = 0x002b; // Record identifier + $length = 0x0002; // Bytes to follow + + $fPrintGrid = $this->phpSheet->getPrintGridlines() ? 1 : 0; // Boolean flag + + $header = pack('vv', $record, $length); + $data = pack('v', $fPrintGrid); + $this->append($header . $data); + } + + /** + * Write the GRIDSET BIFF record. Must be used in conjunction with the + * PRINTGRIDLINES record. + */ + private function writeGridset(): void + { + $record = 0x0082; // Record identifier + $length = 0x0002; // Bytes to follow + + $fGridSet = !$this->phpSheet->getPrintGridlines(); // Boolean flag + + $header = pack('vv', $record, $length); + $data = pack('v', $fGridSet); + $this->append($header . $data); + } + + /** + * Write the AUTOFILTERINFO BIFF record. This is used to configure the number of autofilter select used in the sheet. + */ + private function writeAutoFilterInfo(): void + { + $record = 0x009D; // Record identifier + $length = 0x0002; // Bytes to follow + + $rangeBounds = Coordinate::rangeBoundaries($this->phpSheet->getAutoFilter()->getRange()); + $iNumFilters = 1 + $rangeBounds[1][0] - $rangeBounds[0][0]; + + $header = pack('vv', $record, $length); + $data = pack('v', $iNumFilters); + $this->append($header . $data); + } + + /** + * Write the GUTS BIFF record. This is used to configure the gutter margins + * where Excel outline symbols are displayed. The visibility of the gutters is + * controlled by a flag in WSBOOL. + * + * @see writeWsbool() + */ + private function writeGuts(): void + { + $record = 0x0080; // Record identifier + $length = 0x0008; // Bytes to follow + + $dxRwGut = 0x0000; // Size of row gutter + $dxColGut = 0x0000; // Size of col gutter + + // determine maximum row outline level + $maxRowOutlineLevel = 0; + foreach ($this->phpSheet->getRowDimensions() as $rowDimension) { + $maxRowOutlineLevel = max($maxRowOutlineLevel, $rowDimension->getOutlineLevel()); + } + + $col_level = 0; + + // Calculate the maximum column outline level. The equivalent calculation + // for the row outline level is carried out in writeRow(). + $colcount = count($this->columnInfo); + for ($i = 0; $i < $colcount; ++$i) { + $col_level = max($this->columnInfo[$i][5], $col_level); + } + + // Set the limits for the outline levels (0 <= x <= 7). + $col_level = max(0, min($col_level, 7)); + + // The displayed level is one greater than the max outline levels + if ($maxRowOutlineLevel) { + ++$maxRowOutlineLevel; + } + if ($col_level) { + ++$col_level; + } + + $header = pack('vv', $record, $length); + $data = pack('vvvv', $dxRwGut, $dxColGut, $maxRowOutlineLevel, $col_level); + + $this->append($header . $data); + } + + /** + * Write the WSBOOL BIFF record, mainly for fit-to-page. Used in conjunction + * with the SETUP record. + */ + private function writeWsbool(): void + { + $record = 0x0081; // Record identifier + $length = 0x0002; // Bytes to follow + $grbit = 0x0000; + + // The only option that is of interest is the flag for fit to page. So we + // set all the options in one go. + // + // Set the option flags + $grbit |= 0x0001; // Auto page breaks visible + if ($this->outlineStyle) { + $grbit |= 0x0020; // Auto outline styles + } + if ($this->phpSheet->getShowSummaryBelow()) { + $grbit |= 0x0040; // Outline summary below + } + if ($this->phpSheet->getShowSummaryRight()) { + $grbit |= 0x0080; // Outline summary right + } + if ($this->phpSheet->getPageSetup()->getFitToPage()) { + $grbit |= 0x0100; // Page setup fit to page + } + if ($this->outlineOn) { + $grbit |= 0x0400; // Outline symbols displayed + } + + $header = pack('vv', $record, $length); + $data = pack('v', $grbit); + $this->append($header . $data); + } + + /** + * Write the HORIZONTALPAGEBREAKS and VERTICALPAGEBREAKS BIFF records. + */ + private function writeBreaks(): void + { + // initialize + $vbreaks = []; + $hbreaks = []; + + foreach ($this->phpSheet->getBreaks() as $cell => $breakType) { + // Fetch coordinates + $coordinates = Coordinate::coordinateFromString($cell); + + // Decide what to do by the type of break + switch ($breakType) { + case \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet::BREAK_COLUMN: + // Add to list of vertical breaks + $vbreaks[] = Coordinate::columnIndexFromString($coordinates[0]) - 1; + + break; + case \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet::BREAK_ROW: + // Add to list of horizontal breaks + $hbreaks[] = $coordinates[1]; + + break; + case \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet::BREAK_NONE: + default: + // Nothing to do + break; + } + } + + //horizontal page breaks + if (!empty($hbreaks)) { + // Sort and filter array of page breaks + sort($hbreaks, SORT_NUMERIC); + if ($hbreaks[0] == 0) { // don't use first break if it's 0 + array_shift($hbreaks); + } + + $record = 0x001b; // Record identifier + $cbrk = count($hbreaks); // Number of page breaks + $length = 2 + 6 * $cbrk; // Bytes to follow + + $header = pack('vv', $record, $length); + $data = pack('v', $cbrk); + + // Append each page break + foreach ($hbreaks as $hbreak) { + $data .= pack('vvv', $hbreak, 0x0000, 0x00ff); + } + + $this->append($header . $data); + } + + // vertical page breaks + if (!empty($vbreaks)) { + // 1000 vertical pagebreaks appears to be an internal Excel 5 limit. + // It is slightly higher in Excel 97/200, approx. 1026 + $vbreaks = array_slice($vbreaks, 0, 1000); + + // Sort and filter array of page breaks + sort($vbreaks, SORT_NUMERIC); + if ($vbreaks[0] == 0) { // don't use first break if it's 0 + array_shift($vbreaks); + } + + $record = 0x001a; // Record identifier + $cbrk = count($vbreaks); // Number of page breaks + $length = 2 + 6 * $cbrk; // Bytes to follow + + $header = pack('vv', $record, $length); + $data = pack('v', $cbrk); + + // Append each page break + foreach ($vbreaks as $vbreak) { + $data .= pack('vvv', $vbreak, 0x0000, 0xffff); + } + + $this->append($header . $data); + } + } + + /** + * Set the Biff PROTECT record to indicate that the worksheet is protected. + */ + private function writeProtect(): void + { + // Exit unless sheet protection has been specified + if (!$this->phpSheet->getProtection()->getSheet()) { + return; + } + + $record = 0x0012; // Record identifier + $length = 0x0002; // Bytes to follow + + $fLock = 1; // Worksheet is protected + + $header = pack('vv', $record, $length); + $data = pack('v', $fLock); + + $this->append($header . $data); + } + + /** + * Write SCENPROTECT. + */ + private function writeScenProtect(): void + { + // Exit if sheet protection is not active + if (!$this->phpSheet->getProtection()->getSheet()) { + return; + } + + // Exit if scenarios are not protected + if (!$this->phpSheet->getProtection()->getScenarios()) { + return; + } + + $record = 0x00DD; // Record identifier + $length = 0x0002; // Bytes to follow + + $header = pack('vv', $record, $length); + $data = pack('v', 1); + + $this->append($header . $data); + } + + /** + * Write OBJECTPROTECT. + */ + private function writeObjectProtect(): void + { + // Exit if sheet protection is not active + if (!$this->phpSheet->getProtection()->getSheet()) { + return; + } + + // Exit if objects are not protected + if (!$this->phpSheet->getProtection()->getObjects()) { + return; + } + + $record = 0x0063; // Record identifier + $length = 0x0002; // Bytes to follow + + $header = pack('vv', $record, $length); + $data = pack('v', 1); + + $this->append($header . $data); + } + + /** + * Write the worksheet PASSWORD record. + */ + private function writePassword(): void + { + // Exit unless sheet protection and password have been specified + if (!$this->phpSheet->getProtection()->getSheet() || !$this->phpSheet->getProtection()->getPassword() || $this->phpSheet->getProtection()->getAlgorithm() !== '') { + return; + } + + $record = 0x0013; // Record identifier + $length = 0x0002; // Bytes to follow + + $wPassword = hexdec($this->phpSheet->getProtection()->getPassword()); // Encoded password + + $header = pack('vv', $record, $length); + $data = pack('v', $wPassword); + + $this->append($header . $data); + } + + /** + * Insert a 24bit bitmap image in a worksheet. + * + * @param int $row The row we are going to insert the bitmap into + * @param int $col The column we are going to insert the bitmap into + * @param mixed $bitmap The bitmap filename or GD-image resource + * @param int $x the horizontal position (offset) of the image inside the cell + * @param int $y the vertical position (offset) of the image inside the cell + * @param float $scale_x The horizontal scale + * @param float $scale_y The vertical scale + */ + public function insertBitmap($row, $col, $bitmap, $x = 0, $y = 0, $scale_x = 1, $scale_y = 1): void + { + $bitmap_array = (is_resource($bitmap) || $bitmap instanceof GdImage + ? $this->processBitmapGd($bitmap) + : $this->processBitmap($bitmap)); + [$width, $height, $size, $data] = $bitmap_array; + + // Scale the frame of the image. + $width *= $scale_x; + $height *= $scale_y; + + // Calculate the vertices of the image and write the OBJ record + $this->positionImage($col, $row, $x, $y, $width, $height); + + // Write the IMDATA record to store the bitmap data + $record = 0x007f; + $length = 8 + $size; + $cf = 0x09; + $env = 0x01; + $lcb = $size; + + $header = pack('vvvvV', $record, $length, $cf, $env, $lcb); + $this->append($header . $data); + } + + /** + * Calculate the vertices that define the position of the image as required by + * the OBJ record. + * + * +------------+------------+ + * | A | B | + * +-----+------------+------------+ + * | |(x1,y1) | | + * | 1 |(A1)._______|______ | + * | | | | | + * | | | | | + * +-----+----| BITMAP |-----+ + * | | | | | + * | 2 | |______________. | + * | | | (B2)| + * | | | (x2,y2)| + * +---- +------------+------------+ + * + * Example of a bitmap that covers some of the area from cell A1 to cell B2. + * + * Based on the width and height of the bitmap we need to calculate 8 vars: + * $col_start, $row_start, $col_end, $row_end, $x1, $y1, $x2, $y2. + * The width and height of the cells are also variable and have to be taken into + * account. + * The values of $col_start and $row_start are passed in from the calling + * function. The values of $col_end and $row_end are calculated by subtracting + * the width and height of the bitmap from the width and height of the + * underlying cells. + * The vertices are expressed as a percentage of the underlying cell width as + * follows (rhs values are in pixels): + * + * x1 = X / W *1024 + * y1 = Y / H *256 + * x2 = (X-1) / W *1024 + * y2 = (Y-1) / H *256 + * + * Where: X is distance from the left side of the underlying cell + * Y is distance from the top of the underlying cell + * W is the width of the cell + * H is the height of the cell + * The SDK incorrectly states that the height should be expressed as a + * percentage of 1024. + * + * @param int $col_start Col containing upper left corner of object + * @param int $row_start Row containing top left corner of object + * @param int $x1 Distance to left side of object + * @param int $y1 Distance to top of object + * @param int $width Width of image frame + * @param int $height Height of image frame + */ + public function positionImage($col_start, $row_start, $x1, $y1, $width, $height): void + { + // Initialise end cell to the same as the start cell + $col_end = $col_start; // Col containing lower right corner of object + $row_end = $row_start; // Row containing bottom right corner of object + + // Zero the specified offset if greater than the cell dimensions + if ($x1 >= Xls::sizeCol($this->phpSheet, Coordinate::stringFromColumnIndex($col_start + 1))) { + $x1 = 0; + } + if ($y1 >= Xls::sizeRow($this->phpSheet, $row_start + 1)) { + $y1 = 0; + } + + $width = $width + $x1 - 1; + $height = $height + $y1 - 1; + + // Subtract the underlying cell widths to find the end cell of the image + while ($width >= Xls::sizeCol($this->phpSheet, Coordinate::stringFromColumnIndex($col_end + 1))) { + $width -= Xls::sizeCol($this->phpSheet, Coordinate::stringFromColumnIndex($col_end + 1)); + ++$col_end; + } + + // Subtract the underlying cell heights to find the end cell of the image + while ($height >= Xls::sizeRow($this->phpSheet, $row_end + 1)) { + $height -= Xls::sizeRow($this->phpSheet, $row_end + 1); + ++$row_end; + } + + // Bitmap isn't allowed to start or finish in a hidden cell, i.e. a cell + // with zero eight or width. + // + if (Xls::sizeCol($this->phpSheet, Coordinate::stringFromColumnIndex($col_start + 1)) == 0) { + return; + } + if (Xls::sizeCol($this->phpSheet, Coordinate::stringFromColumnIndex($col_end + 1)) == 0) { + return; + } + if (Xls::sizeRow($this->phpSheet, $row_start + 1) == 0) { + return; + } + if (Xls::sizeRow($this->phpSheet, $row_end + 1) == 0) { + return; + } + + // Convert the pixel values to the percentage value expected by Excel + $x1 = $x1 / Xls::sizeCol($this->phpSheet, Coordinate::stringFromColumnIndex($col_start + 1)) * 1024; + $y1 = $y1 / Xls::sizeRow($this->phpSheet, $row_start + 1) * 256; + $x2 = $width / Xls::sizeCol($this->phpSheet, Coordinate::stringFromColumnIndex($col_end + 1)) * 1024; // Distance to right side of object + $y2 = $height / Xls::sizeRow($this->phpSheet, $row_end + 1) * 256; // Distance to bottom of object + + $this->writeObjPicture($col_start, $x1, $row_start, $y1, $col_end, $x2, $row_end, $y2); + } + + /** + * Store the OBJ record that precedes an IMDATA record. This could be generalise + * to support other Excel objects. + * + * @param int $colL Column containing upper left corner of object + * @param int $dxL Distance from left side of cell + * @param int $rwT Row containing top left corner of object + * @param int $dyT Distance from top of cell + * @param int $colR Column containing lower right corner of object + * @param int $dxR Distance from right of cell + * @param int $rwB Row containing bottom right corner of object + * @param int $dyB Distance from bottom of cell + */ + private function writeObjPicture($colL, $dxL, $rwT, $dyT, $colR, $dxR, $rwB, $dyB): void + { + $record = 0x005d; // Record identifier + $length = 0x003c; // Bytes to follow + + $cObj = 0x0001; // Count of objects in file (set to 1) + $OT = 0x0008; // Object type. 8 = Picture + $id = 0x0001; // Object ID + $grbit = 0x0614; // Option flags + + $cbMacro = 0x0000; // Length of FMLA structure + $Reserved1 = 0x0000; // Reserved + $Reserved2 = 0x0000; // Reserved + + $icvBack = 0x09; // Background colour + $icvFore = 0x09; // Foreground colour + $fls = 0x00; // Fill pattern + $fAuto = 0x00; // Automatic fill + $icv = 0x08; // Line colour + $lns = 0xff; // Line style + $lnw = 0x01; // Line weight + $fAutoB = 0x00; // Automatic border + $frs = 0x0000; // Frame style + $cf = 0x0009; // Image format, 9 = bitmap + $Reserved3 = 0x0000; // Reserved + $cbPictFmla = 0x0000; // Length of FMLA structure + $Reserved4 = 0x0000; // Reserved + $grbit2 = 0x0001; // Option flags + $Reserved5 = 0x0000; // Reserved + + $header = pack('vv', $record, $length); + $data = pack('V', $cObj); + $data .= pack('v', $OT); + $data .= pack('v', $id); + $data .= pack('v', $grbit); + $data .= pack('v', $colL); + $data .= pack('v', $dxL); + $data .= pack('v', $rwT); + $data .= pack('v', $dyT); + $data .= pack('v', $colR); + $data .= pack('v', $dxR); + $data .= pack('v', $rwB); + $data .= pack('v', $dyB); + $data .= pack('v', $cbMacro); + $data .= pack('V', $Reserved1); + $data .= pack('v', $Reserved2); + $data .= pack('C', $icvBack); + $data .= pack('C', $icvFore); + $data .= pack('C', $fls); + $data .= pack('C', $fAuto); + $data .= pack('C', $icv); + $data .= pack('C', $lns); + $data .= pack('C', $lnw); + $data .= pack('C', $fAutoB); + $data .= pack('v', $frs); + $data .= pack('V', $cf); + $data .= pack('v', $Reserved3); + $data .= pack('v', $cbPictFmla); + $data .= pack('v', $Reserved4); + $data .= pack('v', $grbit2); + $data .= pack('V', $Reserved5); + + $this->append($header . $data); + } + + /** + * Convert a GD-image into the internal format. + * + * @param GdImage|resource $image The image to process + * + * @return array Array with data and properties of the bitmap + */ + public function processBitmapGd($image) + { + $width = imagesx($image); + $height = imagesy($image); + + $data = pack('Vvvvv', 0x000c, $width, $height, 0x01, 0x18); + for ($j = $height; --$j;) { + for ($i = 0; $i < $width; ++$i) { + /** @phpstan-ignore-next-line */ + $color = imagecolorsforindex($image, imagecolorat($image, $i, $j)); + foreach (['red', 'green', 'blue'] as $key) { + $color[$key] = $color[$key] + (int) round((255 - $color[$key]) * $color['alpha'] / 127); + } + $data .= chr($color['blue']) . chr($color['green']) . chr($color['red']); + } + if (3 * $width % 4) { + $data .= str_repeat("\x00", 4 - 3 * $width % 4); + } + } + + return [$width, $height, strlen($data), $data]; + } + + /** + * Convert a 24 bit bitmap into the modified internal format used by Windows. + * This is described in BITMAPCOREHEADER and BITMAPCOREINFO structures in the + * MSDN library. + * + * @param string $bitmap The bitmap to process + * + * @return array Array with data and properties of the bitmap + */ + public function processBitmap($bitmap) + { + // Open file. + $bmp_fd = @fopen($bitmap, 'rb'); + if (!$bmp_fd) { + throw new WriterException("Couldn't import $bitmap"); + } + + // Slurp the file into a string. + $data = fread($bmp_fd, filesize($bitmap)); + + // Check that the file is big enough to be a bitmap. + if (strlen($data) <= 0x36) { + throw new WriterException("$bitmap doesn't contain enough data.\n"); + } + + // The first 2 bytes are used to identify the bitmap. + + /** @phpstan-ignore-next-line */ + $identity = unpack('A2ident', $data); + if ($identity['ident'] != 'BM') { + throw new WriterException("$bitmap doesn't appear to be a valid bitmap image.\n"); + } + + // Remove bitmap data: ID. + $data = substr($data, 2); + + // Read and remove the bitmap size. This is more reliable than reading + // the data size at offset 0x22. + // + $size_array = unpack('Vsa', substr($data, 0, 4)); + $size = $size_array['sa']; + $data = substr($data, 4); + $size -= 0x36; // Subtract size of bitmap header. + $size += 0x0C; // Add size of BIFF header. + + // Remove bitmap data: reserved, offset, header length. + $data = substr($data, 12); + + // Read and remove the bitmap width and height. Verify the sizes. + $width_and_height = unpack('V2', substr($data, 0, 8)); + $width = $width_and_height[1]; + $height = $width_and_height[2]; + $data = substr($data, 8); + if ($width > 0xFFFF) { + throw new WriterException("$bitmap: largest image width supported is 65k.\n"); + } + if ($height > 0xFFFF) { + throw new WriterException("$bitmap: largest image height supported is 65k.\n"); + } + + // Read and remove the bitmap planes and bpp data. Verify them. + $planes_and_bitcount = unpack('v2', substr($data, 0, 4)); + $data = substr($data, 4); + if ($planes_and_bitcount[2] != 24) { // Bitcount + throw new WriterException("$bitmap isn't a 24bit true color bitmap.\n"); + } + if ($planes_and_bitcount[1] != 1) { + throw new WriterException("$bitmap: only 1 plane supported in bitmap image.\n"); + } + + // Read and remove the bitmap compression. Verify compression. + $compression = unpack('Vcomp', substr($data, 0, 4)); + $data = substr($data, 4); + + if ($compression['comp'] != 0) { + throw new WriterException("$bitmap: compression not supported in bitmap image.\n"); + } + + // Remove bitmap data: data size, hres, vres, colours, imp. colours. + $data = substr($data, 20); + + // Add the BITMAPCOREHEADER data + $header = pack('Vvvvv', 0x000c, $width, $height, 0x01, 0x18); + $data = $header . $data; + + return [$width, $height, $size, $data]; + } + + /** + * Store the window zoom factor. This should be a reduced fraction but for + * simplicity we will store all fractions with a numerator of 100. + */ + private function writeZoom(): void + { + // If scale is 100 we don't need to write a record + if ($this->phpSheet->getSheetView()->getZoomScale() == 100) { + return; + } + + $record = 0x00A0; // Record identifier + $length = 0x0004; // Bytes to follow + + $header = pack('vv', $record, $length); + $data = pack('vv', $this->phpSheet->getSheetView()->getZoomScale(), 100); + $this->append($header . $data); + } + + /** + * Get Escher object. + */ + public function getEscher(): ?\PhpOffice\PhpSpreadsheet\Shared\Escher + { + return $this->escher; + } + + /** + * Set Escher object. + */ + public function setEscher(?\PhpOffice\PhpSpreadsheet\Shared\Escher $escher): void + { + $this->escher = $escher; + } + + /** + * Write MSODRAWING record. + */ + private function writeMsoDrawing(): void + { + // write the Escher stream if necessary + if (isset($this->escher)) { + $writer = new Escher($this->escher); + $data = $writer->close(); + $spOffsets = $writer->getSpOffsets(); + $spTypes = $writer->getSpTypes(); + // write the neccesary MSODRAWING, OBJ records + + // split the Escher stream + $spOffsets[0] = 0; + $nm = count($spOffsets) - 1; // number of shapes excluding first shape + for ($i = 1; $i <= $nm; ++$i) { + // MSODRAWING record + $record = 0x00EC; // Record identifier + + // chunk of Escher stream for one shape + $dataChunk = substr($data, $spOffsets[$i - 1], $spOffsets[$i] - $spOffsets[$i - 1]); + + $length = strlen($dataChunk); + $header = pack('vv', $record, $length); + + $this->append($header . $dataChunk); + + // OBJ record + $record = 0x005D; // record identifier + $objData = ''; + + // ftCmo + if ($spTypes[$i] == 0x00C9) { + // Add ftCmo (common object data) subobject + $objData .= + pack( + 'vvvvvVVV', + 0x0015, // 0x0015 = ftCmo + 0x0012, // length of ftCmo data + 0x0014, // object type, 0x0014 = filter + $i, // object id number, Excel seems to use 1-based index, local for the sheet + 0x2101, // option flags, 0x2001 is what OpenOffice.org uses + 0, // reserved + 0, // reserved + 0 // reserved + ); + + // Add ftSbs Scroll bar subobject + $objData .= pack('vv', 0x00C, 0x0014); + $objData .= pack('H*', '0000000000000000640001000A00000010000100'); + // Add ftLbsData (List box data) subobject + $objData .= pack('vv', 0x0013, 0x1FEE); + $objData .= pack('H*', '00000000010001030000020008005700'); + } else { + // Add ftCmo (common object data) subobject + $objData .= + pack( + 'vvvvvVVV', + 0x0015, // 0x0015 = ftCmo + 0x0012, // length of ftCmo data + 0x0008, // object type, 0x0008 = picture + $i, // object id number, Excel seems to use 1-based index, local for the sheet + 0x6011, // option flags, 0x6011 is what OpenOffice.org uses + 0, // reserved + 0, // reserved + 0 // reserved + ); + } + + // ftEnd + $objData .= + pack( + 'vv', + 0x0000, // 0x0000 = ftEnd + 0x0000 // length of ftEnd data + ); + + $length = strlen($objData); + $header = pack('vv', $record, $length); + $this->append($header . $objData); + } + } + } + + /** + * Store the DATAVALIDATIONS and DATAVALIDATION records. + */ + private function writeDataValidity(): void + { + // Datavalidation collection + $dataValidationCollection = $this->phpSheet->getDataValidationCollection(); + + // Write data validations? + if (!empty($dataValidationCollection)) { + // DATAVALIDATIONS record + $record = 0x01B2; // Record identifier + $length = 0x0012; // Bytes to follow + + $grbit = 0x0000; // Prompt box at cell, no cached validity data at DV records + $horPos = 0x00000000; // Horizontal position of prompt box, if fixed position + $verPos = 0x00000000; // Vertical position of prompt box, if fixed position + $objId = 0xFFFFFFFF; // Object identifier of drop down arrow object, or -1 if not visible + + $header = pack('vv', $record, $length); + $data = pack('vVVVV', $grbit, $horPos, $verPos, $objId, count($dataValidationCollection)); + $this->append($header . $data); + + // DATAVALIDATION records + $record = 0x01BE; // Record identifier + + foreach ($dataValidationCollection as $cellCoordinate => $dataValidation) { + // options + $options = 0x00000000; + + // data type + $type = CellDataValidation::type($dataValidation); + + $options |= $type << 0; + + // error style + $errorStyle = CellDataValidation::errorStyle($dataValidation); + + $options |= $errorStyle << 4; + + // explicit formula? + if ($type == 0x03 && preg_match('/^\".*\"$/', $dataValidation->getFormula1())) { + $options |= 0x01 << 7; + } + + // empty cells allowed + $options |= $dataValidation->getAllowBlank() << 8; + + // show drop down + $options |= (!$dataValidation->getShowDropDown()) << 9; + + // show input message + $options |= $dataValidation->getShowInputMessage() << 18; + + // show error message + $options |= $dataValidation->getShowErrorMessage() << 19; + + // condition operator + $operator = CellDataValidation::operator($dataValidation); + + $options |= $operator << 20; + + $data = pack('V', $options); + + // prompt title + $promptTitle = $dataValidation->getPromptTitle() !== '' ? + $dataValidation->getPromptTitle() : chr(0); + $data .= StringHelper::UTF8toBIFF8UnicodeLong($promptTitle); + + // error title + $errorTitle = $dataValidation->getErrorTitle() !== '' ? + $dataValidation->getErrorTitle() : chr(0); + $data .= StringHelper::UTF8toBIFF8UnicodeLong($errorTitle); + + // prompt text + $prompt = $dataValidation->getPrompt() !== '' ? + $dataValidation->getPrompt() : chr(0); + $data .= StringHelper::UTF8toBIFF8UnicodeLong($prompt); + + // error text + $error = $dataValidation->getError() !== '' ? + $dataValidation->getError() : chr(0); + $data .= StringHelper::UTF8toBIFF8UnicodeLong($error); + + // formula 1 + try { + $formula1 = $dataValidation->getFormula1(); + if ($type == 0x03) { // list type + $formula1 = str_replace(',', chr(0), $formula1); + } + $this->parser->parse($formula1); + $formula1 = $this->parser->toReversePolish(); + $sz1 = strlen($formula1); + } catch (PhpSpreadsheetException $e) { + $sz1 = 0; + $formula1 = ''; + } + $data .= pack('vv', $sz1, 0x0000); + $data .= $formula1; + + // formula 2 + try { + $formula2 = $dataValidation->getFormula2(); + if ($formula2 === '') { + throw new WriterException('No formula2'); + } + $this->parser->parse($formula2); + $formula2 = $this->parser->toReversePolish(); + $sz2 = strlen($formula2); + } catch (PhpSpreadsheetException $e) { + $sz2 = 0; + $formula2 = ''; + } + $data .= pack('vv', $sz2, 0x0000); + $data .= $formula2; + + // cell range address list + $data .= pack('v', 0x0001); + $data .= $this->writeBIFF8CellRangeAddressFixed($cellCoordinate); + + $length = strlen($data); + $header = pack('vv', $record, $length); + + $this->append($header . $data); + } + } + } + + /** + * Write PLV Record. + */ + private function writePageLayoutView(): void + { + $record = 0x088B; // Record identifier + $length = 0x0010; // Bytes to follow + + $rt = 0x088B; // 2 + $grbitFrt = 0x0000; // 2 + $reserved = 0x0000000000000000; // 8 + $wScalvePLV = $this->phpSheet->getSheetView()->getZoomScale(); // 2 + + // The options flags that comprise $grbit + if ($this->phpSheet->getSheetView()->getView() == SheetView::SHEETVIEW_PAGE_LAYOUT) { + $fPageLayoutView = 1; + } else { + $fPageLayoutView = 0; + } + $fRulerVisible = 0; + $fWhitespaceHidden = 0; + + $grbit = $fPageLayoutView; // 2 + $grbit |= $fRulerVisible << 1; + $grbit |= $fWhitespaceHidden << 3; + + $header = pack('vv', $record, $length); + $data = pack('vvVVvv', $rt, $grbitFrt, 0x00000000, 0x00000000, $wScalvePLV, $grbit); + $this->append($header . $data); + } + + /** + * Write CFRule Record. + */ + private function writeCFRule( + ConditionalHelper $conditionalFormulaHelper, + Conditional $conditional, + string $cellRange + ): void { + $record = 0x01B1; // Record identifier + $type = null; // Type of the CF + $operatorType = null; // Comparison operator + + if ($conditional->getConditionType() == Conditional::CONDITION_EXPRESSION) { + $type = 0x02; + $operatorType = 0x00; + } elseif ($conditional->getConditionType() == Conditional::CONDITION_CELLIS) { + $type = 0x01; + + switch ($conditional->getOperatorType()) { + case Conditional::OPERATOR_NONE: + $operatorType = 0x00; + + break; + case Conditional::OPERATOR_EQUAL: + $operatorType = 0x03; + + break; + case Conditional::OPERATOR_GREATERTHAN: + $operatorType = 0x05; + + break; + case Conditional::OPERATOR_GREATERTHANOREQUAL: + $operatorType = 0x07; + + break; + case Conditional::OPERATOR_LESSTHAN: + $operatorType = 0x06; + + break; + case Conditional::OPERATOR_LESSTHANOREQUAL: + $operatorType = 0x08; + + break; + case Conditional::OPERATOR_NOTEQUAL: + $operatorType = 0x04; + + break; + case Conditional::OPERATOR_BETWEEN: + $operatorType = 0x01; + + break; + // not OPERATOR_NOTBETWEEN 0x02 + } + } + + // $szValue1 : size of the formula data for first value or formula + // $szValue2 : size of the formula data for second value or formula + $arrConditions = $conditional->getConditions(); + $numConditions = count($arrConditions); + + $szValue1 = 0x0000; + $szValue2 = 0x0000; + $operand1 = null; + $operand2 = null; + + if ($numConditions === 1) { + $conditionalFormulaHelper->processCondition($arrConditions[0], $cellRange); + $szValue1 = $conditionalFormulaHelper->size(); + $operand1 = $conditionalFormulaHelper->tokens(); + } elseif ($numConditions === 2 && ($conditional->getOperatorType() === Conditional::OPERATOR_BETWEEN)) { + $conditionalFormulaHelper->processCondition($arrConditions[0], $cellRange); + $szValue1 = $conditionalFormulaHelper->size(); + $operand1 = $conditionalFormulaHelper->tokens(); + $conditionalFormulaHelper->processCondition($arrConditions[1], $cellRange); + $szValue2 = $conditionalFormulaHelper->size(); + $operand2 = $conditionalFormulaHelper->tokens(); + } + + // $flags : Option flags + // Alignment + $bAlignHz = ($conditional->getStyle()->getAlignment()->getHorizontal() === null ? 1 : 0); + $bAlignVt = ($conditional->getStyle()->getAlignment()->getVertical() === null ? 1 : 0); + $bAlignWrapTx = ($conditional->getStyle()->getAlignment()->getWrapText() === false ? 1 : 0); + $bTxRotation = ($conditional->getStyle()->getAlignment()->getTextRotation() === null ? 1 : 0); + $bIndent = ($conditional->getStyle()->getAlignment()->getIndent() === 0 ? 1 : 0); + $bShrinkToFit = ($conditional->getStyle()->getAlignment()->getShrinkToFit() === false ? 1 : 0); + if ($bAlignHz == 0 || $bAlignVt == 0 || $bAlignWrapTx == 0 || $bTxRotation == 0 || $bIndent == 0 || $bShrinkToFit == 0) { + $bFormatAlign = 1; + } else { + $bFormatAlign = 0; + } + // Protection + $bProtLocked = ($conditional->getStyle()->getProtection()->getLocked() == null ? 1 : 0); + $bProtHidden = ($conditional->getStyle()->getProtection()->getHidden() == null ? 1 : 0); + if ($bProtLocked == 0 || $bProtHidden == 0) { + $bFormatProt = 1; + } else { + $bFormatProt = 0; + } + // Border + $bBorderLeft = ($conditional->getStyle()->getBorders()->getLeft()->getColor()->getARGB() == Color::COLOR_BLACK + && $conditional->getStyle()->getBorders()->getLeft()->getBorderStyle() == Border::BORDER_NONE ? 1 : 0); + $bBorderRight = ($conditional->getStyle()->getBorders()->getRight()->getColor()->getARGB() == Color::COLOR_BLACK + && $conditional->getStyle()->getBorders()->getRight()->getBorderStyle() == Border::BORDER_NONE ? 1 : 0); + $bBorderTop = ($conditional->getStyle()->getBorders()->getTop()->getColor()->getARGB() == Color::COLOR_BLACK + && $conditional->getStyle()->getBorders()->getTop()->getBorderStyle() == Border::BORDER_NONE ? 1 : 0); + $bBorderBottom = ($conditional->getStyle()->getBorders()->getBottom()->getColor()->getARGB() == Color::COLOR_BLACK + && $conditional->getStyle()->getBorders()->getBottom()->getBorderStyle() == Border::BORDER_NONE ? 1 : 0); + if ($bBorderLeft == 0 || $bBorderRight == 0 || $bBorderTop == 0 || $bBorderBottom == 0) { + $bFormatBorder = 1; + } else { + $bFormatBorder = 0; + } + // Pattern + $bFillStyle = ($conditional->getStyle()->getFill()->getFillType() === null ? 0 : 1); + $bFillColor = ($conditional->getStyle()->getFill()->getStartColor()->getARGB() == null ? 0 : 1); + $bFillColorBg = ($conditional->getStyle()->getFill()->getEndColor()->getARGB() == null ? 0 : 1); + if ($bFillStyle == 0 || $bFillColor == 0 || $bFillColorBg == 0) { + $bFormatFill = 1; + } else { + $bFormatFill = 0; + } + // Font + if ( + $conditional->getStyle()->getFont()->getName() !== null + || $conditional->getStyle()->getFont()->getSize() !== null + || $conditional->getStyle()->getFont()->getBold() !== null + || $conditional->getStyle()->getFont()->getItalic() !== null + || $conditional->getStyle()->getFont()->getSuperscript() !== null + || $conditional->getStyle()->getFont()->getSubscript() !== null + || $conditional->getStyle()->getFont()->getUnderline() !== null + || $conditional->getStyle()->getFont()->getStrikethrough() !== null + || $conditional->getStyle()->getFont()->getColor()->getARGB() != null + ) { + $bFormatFont = 1; + } else { + $bFormatFont = 0; + } + // Alignment + $flags = 0; + $flags |= (1 == $bAlignHz ? 0x00000001 : 0); + $flags |= (1 == $bAlignVt ? 0x00000002 : 0); + $flags |= (1 == $bAlignWrapTx ? 0x00000004 : 0); + $flags |= (1 == $bTxRotation ? 0x00000008 : 0); + // Justify last line flag + $flags |= (1 == self::$always1 ? 0x00000010 : 0); + $flags |= (1 == $bIndent ? 0x00000020 : 0); + $flags |= (1 == $bShrinkToFit ? 0x00000040 : 0); + // Default + $flags |= (1 == self::$always1 ? 0x00000080 : 0); + // Protection + $flags |= (1 == $bProtLocked ? 0x00000100 : 0); + $flags |= (1 == $bProtHidden ? 0x00000200 : 0); + // Border + $flags |= (1 == $bBorderLeft ? 0x00000400 : 0); + $flags |= (1 == $bBorderRight ? 0x00000800 : 0); + $flags |= (1 == $bBorderTop ? 0x00001000 : 0); + $flags |= (1 == $bBorderBottom ? 0x00002000 : 0); + $flags |= (1 == self::$always1 ? 0x00004000 : 0); // Top left to Bottom right border + $flags |= (1 == self::$always1 ? 0x00008000 : 0); // Bottom left to Top right border + // Pattern + $flags |= (1 == $bFillStyle ? 0x00010000 : 0); + $flags |= (1 == $bFillColor ? 0x00020000 : 0); + $flags |= (1 == $bFillColorBg ? 0x00040000 : 0); + $flags |= (1 == self::$always1 ? 0x00380000 : 0); + // Font + $flags |= (1 == $bFormatFont ? 0x04000000 : 0); + // Alignment: + $flags |= (1 == $bFormatAlign ? 0x08000000 : 0); + // Border + $flags |= (1 == $bFormatBorder ? 0x10000000 : 0); + // Pattern + $flags |= (1 == $bFormatFill ? 0x20000000 : 0); + // Protection + $flags |= (1 == $bFormatProt ? 0x40000000 : 0); + // Text direction + $flags |= (1 == self::$always0 ? 0x80000000 : 0); + + $dataBlockFont = null; + $dataBlockAlign = null; + $dataBlockBorder = null; + $dataBlockFill = null; + + // Data Blocks + if ($bFormatFont == 1) { + // Font Name + if ($conditional->getStyle()->getFont()->getName() === null) { + $dataBlockFont = pack('VVVVVVVV', 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000); + $dataBlockFont .= pack('VVVVVVVV', 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000); + } else { + $dataBlockFont = StringHelper::UTF8toBIFF8UnicodeLong($conditional->getStyle()->getFont()->getName()); + } + // Font Size + if ($conditional->getStyle()->getFont()->getSize() === null) { + $dataBlockFont .= pack('V', 20 * 11); + } else { + $dataBlockFont .= pack('V', 20 * $conditional->getStyle()->getFont()->getSize()); + } + // Font Options + $dataBlockFont .= pack('V', 0); + // Font weight + if ($conditional->getStyle()->getFont()->getBold() === true) { + $dataBlockFont .= pack('v', 0x02BC); + } else { + $dataBlockFont .= pack('v', 0x0190); + } + // Escapement type + if ($conditional->getStyle()->getFont()->getSubscript() === true) { + $dataBlockFont .= pack('v', 0x02); + $fontEscapement = 0; + } elseif ($conditional->getStyle()->getFont()->getSuperscript() === true) { + $dataBlockFont .= pack('v', 0x01); + $fontEscapement = 0; + } else { + $dataBlockFont .= pack('v', 0x00); + $fontEscapement = 1; + } + // Underline type + switch ($conditional->getStyle()->getFont()->getUnderline()) { + case \PhpOffice\PhpSpreadsheet\Style\Font::UNDERLINE_NONE: + $dataBlockFont .= pack('C', 0x00); + $fontUnderline = 0; + + break; + case \PhpOffice\PhpSpreadsheet\Style\Font::UNDERLINE_DOUBLE: + $dataBlockFont .= pack('C', 0x02); + $fontUnderline = 0; + + break; + case \PhpOffice\PhpSpreadsheet\Style\Font::UNDERLINE_DOUBLEACCOUNTING: + $dataBlockFont .= pack('C', 0x22); + $fontUnderline = 0; + + break; + case \PhpOffice\PhpSpreadsheet\Style\Font::UNDERLINE_SINGLE: + $dataBlockFont .= pack('C', 0x01); + $fontUnderline = 0; + + break; + case \PhpOffice\PhpSpreadsheet\Style\Font::UNDERLINE_SINGLEACCOUNTING: + $dataBlockFont .= pack('C', 0x21); + $fontUnderline = 0; + + break; + default: + $dataBlockFont .= pack('C', 0x00); + $fontUnderline = 1; + + break; + } + // Not used (3) + $dataBlockFont .= pack('vC', 0x0000, 0x00); + // Font color index + $colorIdx = Style\ColorMap::lookup($conditional->getStyle()->getFont()->getColor(), 0x00); + + $dataBlockFont .= pack('V', $colorIdx); + // Not used (4) + $dataBlockFont .= pack('V', 0x00000000); + // Options flags for modified font attributes + $optionsFlags = 0; + $optionsFlagsBold = ($conditional->getStyle()->getFont()->getBold() === null ? 1 : 0); + $optionsFlags |= (1 == $optionsFlagsBold ? 0x00000002 : 0); + $optionsFlags |= (1 == self::$always1 ? 0x00000008 : 0); + $optionsFlags |= (1 == self::$always1 ? 0x00000010 : 0); + $optionsFlags |= (1 == self::$always0 ? 0x00000020 : 0); + $optionsFlags |= (1 == self::$always1 ? 0x00000080 : 0); + $dataBlockFont .= pack('V', $optionsFlags); + // Escapement type + $dataBlockFont .= pack('V', $fontEscapement); + // Underline type + $dataBlockFont .= pack('V', $fontUnderline); + // Always + $dataBlockFont .= pack('V', 0x00000000); + // Always + $dataBlockFont .= pack('V', 0x00000000); + // Not used (8) + $dataBlockFont .= pack('VV', 0x00000000, 0x00000000); + // Always + $dataBlockFont .= pack('v', 0x0001); + } + if ($bFormatAlign === 1) { + // Alignment and text break + $blockAlign = Style\CellAlignment::horizontal($conditional->getStyle()->getAlignment()); + $blockAlign |= Style\CellAlignment::wrap($conditional->getStyle()->getAlignment()) << 3; + $blockAlign |= Style\CellAlignment::vertical($conditional->getStyle()->getAlignment()) << 4; + $blockAlign |= 0 << 7; + + // Text rotation angle + $blockRotation = $conditional->getStyle()->getAlignment()->getTextRotation(); + + // Indentation + $blockIndent = $conditional->getStyle()->getAlignment()->getIndent(); + if ($conditional->getStyle()->getAlignment()->getShrinkToFit() === true) { + $blockIndent |= 1 << 4; + } else { + $blockIndent |= 0 << 4; + } + $blockIndent |= 0 << 6; + + // Relative indentation + $blockIndentRelative = 255; + + $dataBlockAlign = pack('CCvvv', $blockAlign, $blockRotation, $blockIndent, $blockIndentRelative, 0x0000); + } + if ($bFormatBorder === 1) { + $blockLineStyle = Style\CellBorder::style($conditional->getStyle()->getBorders()->getLeft()); + $blockLineStyle |= Style\CellBorder::style($conditional->getStyle()->getBorders()->getRight()) << 4; + $blockLineStyle |= Style\CellBorder::style($conditional->getStyle()->getBorders()->getTop()) << 8; + $blockLineStyle |= Style\CellBorder::style($conditional->getStyle()->getBorders()->getBottom()) << 12; + + // TODO writeCFRule() => $blockLineStyle => Index Color for left line + // TODO writeCFRule() => $blockLineStyle => Index Color for right line + // TODO writeCFRule() => $blockLineStyle => Top-left to bottom-right on/off + // TODO writeCFRule() => $blockLineStyle => Bottom-left to top-right on/off + $blockColor = 0; + // TODO writeCFRule() => $blockColor => Index Color for top line + // TODO writeCFRule() => $blockColor => Index Color for bottom line + // TODO writeCFRule() => $blockColor => Index Color for diagonal line + $blockColor |= Style\CellBorder::style($conditional->getStyle()->getBorders()->getDiagonal()) << 21; + $dataBlockBorder = pack('vv', $blockLineStyle, $blockColor); + } + if ($bFormatFill === 1) { + // Fill Pattern Style + $blockFillPatternStyle = Style\CellFill::style($conditional->getStyle()->getFill()); + // Background Color + $colorIdxBg = Style\ColorMap::lookup($conditional->getStyle()->getFill()->getStartColor(), 0x41); + // Foreground Color + $colorIdxFg = Style\ColorMap::lookup($conditional->getStyle()->getFill()->getEndColor(), 0x40); + + $dataBlockFill = pack('v', $blockFillPatternStyle); + $dataBlockFill .= pack('v', $colorIdxFg | ($colorIdxBg << 7)); + } + + $data = pack('CCvvVv', $type, $operatorType, $szValue1, $szValue2, $flags, 0x0000); + if ($bFormatFont === 1) { // Block Formatting : OK + $data .= $dataBlockFont; + } + if ($bFormatAlign === 1) { + $data .= $dataBlockAlign; + } + if ($bFormatBorder === 1) { + $data .= $dataBlockBorder; + } + if ($bFormatFill === 1) { // Block Formatting : OK + $data .= $dataBlockFill; + } + if ($bFormatProt == 1) { + $data .= $this->getDataBlockProtection($conditional); + } + if ($operand1 !== null) { + $data .= $operand1; + } + if ($operand2 !== null) { + $data .= $operand2; + } + $header = pack('vv', $record, strlen($data)); + $this->append($header . $data); + } + + /** + * Write CFHeader record. + * + * @param Conditional[] $conditionalStyles + */ + private function writeCFHeader(string $cellCoordinate, array $conditionalStyles): bool + { + $record = 0x01B0; // Record identifier + $length = 0x0016; // Bytes to follow + + $numColumnMin = null; + $numColumnMax = null; + $numRowMin = null; + $numRowMax = null; + + $arrConditional = []; + foreach ($conditionalStyles as $conditional) { + if (!in_array($conditional->getHashCode(), $arrConditional)) { + $arrConditional[] = $conditional->getHashCode(); + } + // Cells + $rangeCoordinates = Coordinate::rangeBoundaries($cellCoordinate); + if ($numColumnMin === null || ($numColumnMin > $rangeCoordinates[0][0])) { + $numColumnMin = $rangeCoordinates[0][0]; + } + if ($numColumnMax === null || ($numColumnMax < $rangeCoordinates[1][0])) { + $numColumnMax = $rangeCoordinates[1][0]; + } + if ($numRowMin === null || ($numRowMin > $rangeCoordinates[0][1])) { + $numRowMin = (int) $rangeCoordinates[0][1]; + } + if ($numRowMax === null || ($numRowMax < $rangeCoordinates[1][1])) { + $numRowMax = (int) $rangeCoordinates[1][1]; + } + } + + if (count($arrConditional) === 0) { + return false; + } + + $needRedraw = 1; + $cellRange = pack('vvvv', $numRowMin - 1, $numRowMax - 1, $numColumnMin - 1, $numColumnMax - 1); + + $header = pack('vv', $record, $length); + $data = pack('vv', count($arrConditional), $needRedraw); + $data .= $cellRange; + $data .= pack('v', 0x0001); + $data .= $cellRange; + $this->append($header . $data); + + return true; + } + + private function getDataBlockProtection(Conditional $conditional): int + { + $dataBlockProtection = 0; + if ($conditional->getStyle()->getProtection()->getLocked() == Protection::PROTECTION_PROTECTED) { + $dataBlockProtection = 1; + } + if ($conditional->getStyle()->getProtection()->getHidden() == Protection::PROTECTION_PROTECTED) { + $dataBlockProtection = 1 << 1; + } + + return $dataBlockProtection; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Xf.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Xf.php new file mode 100644 index 0000000..b2dbc67 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Xf.php @@ -0,0 +1,418 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xls; + +use PhpOffice\PhpSpreadsheet\Style\Alignment; +use PhpOffice\PhpSpreadsheet\Style\Borders; +use PhpOffice\PhpSpreadsheet\Style\Protection; +use PhpOffice\PhpSpreadsheet\Style\Style; +use PhpOffice\PhpSpreadsheet\Writer\Xls\Style\CellAlignment; +use PhpOffice\PhpSpreadsheet\Writer\Xls\Style\CellBorder; +use PhpOffice\PhpSpreadsheet\Writer\Xls\Style\CellFill; + +// Original file header of PEAR::Spreadsheet_Excel_Writer_Format (used as the base for this class): +// ----------------------------------------------------------------------------------------- +// /* +// * Module written/ported by Xavier Noguer <xnoguer@rezebra.com> +// * +// * The majority of this is _NOT_ my code. I simply ported it from the +// * PERL Spreadsheet::WriteExcel module. +// * +// * The author of the Spreadsheet::WriteExcel module is John McNamara +// * <jmcnamara@cpan.org> +// * +// * I _DO_ maintain this code, and John McNamara has nothing to do with the +// * porting of this code to PHP. Any questions directly related to this +// * class library should be directed to me. +// * +// * License Information: +// * +// * Spreadsheet_Excel_Writer: A library for generating Excel Spreadsheets +// * Copyright (c) 2002-2003 Xavier Noguer xnoguer@rezebra.com +// * +// * This library is free software; you can redistribute it and/or +// * modify it under the terms of the GNU Lesser General Public +// * License as published by the Free Software Foundation; either +// * version 2.1 of the License, or (at your option) any later version. +// * +// * This library is distributed in the hope that it will be useful, +// * but WITHOUT ANY WARRANTY; without even the implied warranty of +// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// * Lesser General Public License for more details. +// * +// * You should have received a copy of the GNU Lesser General Public +// * License along with this library; if not, write to the Free Software +// * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// */ +class Xf +{ + /** + * Style XF or a cell XF ? + * + * @var bool + */ + private $isStyleXf; + + /** + * Index to the FONT record. Index 4 does not exist. + * + * @var int + */ + private $fontIndex; + + /** + * An index (2 bytes) to a FORMAT record (number format). + * + * @var int + */ + private $numberFormatIndex; + + /** + * 1 bit, apparently not used. + * + * @var int + */ + private $textJustLast; + + /** + * The cell's foreground color. + * + * @var int + */ + private $foregroundColor; + + /** + * The cell's background color. + * + * @var int + */ + private $backgroundColor; + + /** + * Color of the bottom border of the cell. + * + * @var int + */ + private $bottomBorderColor; + + /** + * Color of the top border of the cell. + * + * @var int + */ + private $topBorderColor; + + /** + * Color of the left border of the cell. + * + * @var int + */ + private $leftBorderColor; + + /** + * Color of the right border of the cell. + * + * @var int + */ + private $rightBorderColor; + + /** + * @var int + */ + private $diag; + + /** + * @var int + */ + private $diagColor; + + /** + * @var Style + */ + private $style; + + /** + * Constructor. + * + * @param Style $style The XF format + */ + public function __construct(Style $style) + { + $this->isStyleXf = false; + $this->fontIndex = 0; + + $this->numberFormatIndex = 0; + + $this->textJustLast = 0; + + $this->foregroundColor = 0x40; + $this->backgroundColor = 0x41; + + $this->diag = 0; + + $this->bottomBorderColor = 0x40; + $this->topBorderColor = 0x40; + $this->leftBorderColor = 0x40; + $this->rightBorderColor = 0x40; + $this->diagColor = 0x40; + $this->style = $style; + } + + /** + * Generate an Excel BIFF XF record (style or cell). + * + * @return string The XF record + */ + public function writeXf() + { + // Set the type of the XF record and some of the attributes. + if ($this->isStyleXf) { + $style = 0xFFF5; + } else { + $style = self::mapLocked($this->style->getProtection()->getLocked()); + $style |= self::mapHidden($this->style->getProtection()->getHidden()) << 1; + } + + // Flags to indicate if attributes have been set. + $atr_num = ($this->numberFormatIndex != 0) ? 1 : 0; + $atr_fnt = ($this->fontIndex != 0) ? 1 : 0; + $atr_alc = ((int) $this->style->getAlignment()->getWrapText()) ? 1 : 0; + $atr_bdr = (CellBorder::style($this->style->getBorders()->getBottom()) || + CellBorder::style($this->style->getBorders()->getTop()) || + CellBorder::style($this->style->getBorders()->getLeft()) || + CellBorder::style($this->style->getBorders()->getRight())) ? 1 : 0; + $atr_pat = ($this->foregroundColor != 0x40) ? 1 : 0; + $atr_pat = ($this->backgroundColor != 0x41) ? 1 : $atr_pat; + $atr_pat = CellFill::style($this->style->getFill()) ? 1 : $atr_pat; + $atr_prot = self::mapLocked($this->style->getProtection()->getLocked()) + | self::mapHidden($this->style->getProtection()->getHidden()); + + // Zero the default border colour if the border has not been set. + if (CellBorder::style($this->style->getBorders()->getBottom()) == 0) { + $this->bottomBorderColor = 0; + } + if (CellBorder::style($this->style->getBorders()->getTop()) == 0) { + $this->topBorderColor = 0; + } + if (CellBorder::style($this->style->getBorders()->getRight()) == 0) { + $this->rightBorderColor = 0; + } + if (CellBorder::style($this->style->getBorders()->getLeft()) == 0) { + $this->leftBorderColor = 0; + } + if (CellBorder::style($this->style->getBorders()->getDiagonal()) == 0) { + $this->diagColor = 0; + } + + $record = 0x00E0; // Record identifier + $length = 0x0014; // Number of bytes to follow + + $ifnt = $this->fontIndex; // Index to FONT record + $ifmt = $this->numberFormatIndex; // Index to FORMAT record + + // Alignment + $align = CellAlignment::horizontal($this->style->getAlignment()); + $align |= CellAlignment::wrap($this->style->getAlignment()) << 3; + $align |= CellAlignment::vertical($this->style->getAlignment()) << 4; + $align |= $this->textJustLast << 7; + + $used_attrib = $atr_num << 2; + $used_attrib |= $atr_fnt << 3; + $used_attrib |= $atr_alc << 4; + $used_attrib |= $atr_bdr << 5; + $used_attrib |= $atr_pat << 6; + $used_attrib |= $atr_prot << 7; + + $icv = $this->foregroundColor; // fg and bg pattern colors + $icv |= $this->backgroundColor << 7; + + $border1 = CellBorder::style($this->style->getBorders()->getLeft()); // Border line style and color + $border1 |= CellBorder::style($this->style->getBorders()->getRight()) << 4; + $border1 |= CellBorder::style($this->style->getBorders()->getTop()) << 8; + $border1 |= CellBorder::style($this->style->getBorders()->getBottom()) << 12; + $border1 |= $this->leftBorderColor << 16; + $border1 |= $this->rightBorderColor << 23; + + $diagonalDirection = $this->style->getBorders()->getDiagonalDirection(); + $diag_tl_to_rb = $diagonalDirection == Borders::DIAGONAL_BOTH + || $diagonalDirection == Borders::DIAGONAL_DOWN; + $diag_tr_to_lb = $diagonalDirection == Borders::DIAGONAL_BOTH + || $diagonalDirection == Borders::DIAGONAL_UP; + $border1 |= $diag_tl_to_rb << 30; + $border1 |= $diag_tr_to_lb << 31; + + $border2 = $this->topBorderColor; // Border color + $border2 |= $this->bottomBorderColor << 7; + $border2 |= $this->diagColor << 14; + $border2 |= CellBorder::style($this->style->getBorders()->getDiagonal()) << 21; + $border2 |= CellFill::style($this->style->getFill()) << 26; + + $header = pack('vv', $record, $length); + + //BIFF8 options: identation, shrinkToFit and text direction + $biff8_options = $this->style->getAlignment()->getIndent(); + $biff8_options |= (int) $this->style->getAlignment()->getShrinkToFit() << 4; + + $data = pack('vvvC', $ifnt, $ifmt, $style, $align); + $data .= pack('CCC', self::mapTextRotation($this->style->getAlignment()->getTextRotation()), $biff8_options, $used_attrib); + $data .= pack('VVv', $border1, $border2, $icv); + + return $header . $data; + } + + /** + * Is this a style XF ? + * + * @param bool $value + */ + public function setIsStyleXf($value): void + { + $this->isStyleXf = $value; + } + + /** + * Sets the cell's bottom border color. + * + * @param int $colorIndex Color index + */ + public function setBottomColor($colorIndex): void + { + $this->bottomBorderColor = $colorIndex; + } + + /** + * Sets the cell's top border color. + * + * @param int $colorIndex Color index + */ + public function setTopColor($colorIndex): void + { + $this->topBorderColor = $colorIndex; + } + + /** + * Sets the cell's left border color. + * + * @param int $colorIndex Color index + */ + public function setLeftColor($colorIndex): void + { + $this->leftBorderColor = $colorIndex; + } + + /** + * Sets the cell's right border color. + * + * @param int $colorIndex Color index + */ + public function setRightColor($colorIndex): void + { + $this->rightBorderColor = $colorIndex; + } + + /** + * Sets the cell's diagonal border color. + * + * @param int $colorIndex Color index + */ + public function setDiagColor($colorIndex): void + { + $this->diagColor = $colorIndex; + } + + /** + * Sets the cell's foreground color. + * + * @param int $colorIndex Color index + */ + public function setFgColor($colorIndex): void + { + $this->foregroundColor = $colorIndex; + } + + /** + * Sets the cell's background color. + * + * @param int $colorIndex Color index + */ + public function setBgColor($colorIndex): void + { + $this->backgroundColor = $colorIndex; + } + + /** + * Sets the index to the number format record + * It can be date, time, currency, etc... + * + * @param int $numberFormatIndex Index to format record + */ + public function setNumberFormatIndex($numberFormatIndex): void + { + $this->numberFormatIndex = $numberFormatIndex; + } + + /** + * Set the font index. + * + * @param int $value Font index, note that value 4 does not exist + */ + public function setFontIndex($value): void + { + $this->fontIndex = $value; + } + + /** + * Map to BIFF8 codes for text rotation angle. + * + * @param int $textRotation + * + * @return int + */ + private static function mapTextRotation($textRotation) + { + if ($textRotation >= 0) { + return $textRotation; + } + if ($textRotation == Alignment::TEXTROTATION_STACK_PHPSPREADSHEET) { + return Alignment::TEXTROTATION_STACK_EXCEL; + } + + return 90 - $textRotation; + } + + private const LOCK_ARRAY = [ + Protection::PROTECTION_INHERIT => 1, + Protection::PROTECTION_PROTECTED => 1, + Protection::PROTECTION_UNPROTECTED => 0, + ]; + + /** + * Map locked values. + * + * @param string $locked + * + * @return int + */ + private static function mapLocked($locked) + { + return array_key_exists($locked, self::LOCK_ARRAY) ? self::LOCK_ARRAY[$locked] : 1; + } + + private const HIDDEN_ARRAY = [ + Protection::PROTECTION_INHERIT => 0, + Protection::PROTECTION_PROTECTED => 1, + Protection::PROTECTION_UNPROTECTED => 0, + ]; + + /** + * Map hidden. + * + * @param string $hidden + * + * @return int + */ + private static function mapHidden($hidden) + { + return array_key_exists($hidden, self::HIDDEN_ARRAY) ? self::HIDDEN_ARRAY[$hidden] : 0; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx.php new file mode 100644 index 0000000..5aca511 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx.php @@ -0,0 +1,751 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer; + +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Calculation\Functions; +use PhpOffice\PhpSpreadsheet\HashTable; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Style\Borders; +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Style\Fill; +use PhpOffice\PhpSpreadsheet\Style\Font; +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; +use PhpOffice\PhpSpreadsheet\Worksheet\BaseDrawing; +use PhpOffice\PhpSpreadsheet\Worksheet\Drawing as WorksheetDrawing; +use PhpOffice\PhpSpreadsheet\Worksheet\MemoryDrawing; +use PhpOffice\PhpSpreadsheet\Writer\Exception as WriterException; +use PhpOffice\PhpSpreadsheet\Writer\Xlsx\Chart; +use PhpOffice\PhpSpreadsheet\Writer\Xlsx\Comments; +use PhpOffice\PhpSpreadsheet\Writer\Xlsx\ContentTypes; +use PhpOffice\PhpSpreadsheet\Writer\Xlsx\DocProps; +use PhpOffice\PhpSpreadsheet\Writer\Xlsx\Drawing; +use PhpOffice\PhpSpreadsheet\Writer\Xlsx\Rels; +use PhpOffice\PhpSpreadsheet\Writer\Xlsx\RelsRibbon; +use PhpOffice\PhpSpreadsheet\Writer\Xlsx\RelsVBA; +use PhpOffice\PhpSpreadsheet\Writer\Xlsx\StringTable; +use PhpOffice\PhpSpreadsheet\Writer\Xlsx\Style; +use PhpOffice\PhpSpreadsheet\Writer\Xlsx\Table; +use PhpOffice\PhpSpreadsheet\Writer\Xlsx\Theme; +use PhpOffice\PhpSpreadsheet\Writer\Xlsx\Workbook; +use PhpOffice\PhpSpreadsheet\Writer\Xlsx\Worksheet; +use ZipArchive; +use ZipStream\Exception\OverflowException; +use ZipStream\Option\Archive; +use ZipStream\ZipStream; + +class Xlsx extends BaseWriter +{ + /** + * Office2003 compatibility. + * + * @var bool + */ + private $office2003compatibility = false; + + /** + * Private Spreadsheet. + * + * @var Spreadsheet + */ + private $spreadSheet; + + /** + * Private string table. + * + * @var string[] + */ + private $stringTable = []; + + /** + * Private unique Conditional HashTable. + * + * @var HashTable<Conditional> + */ + private $stylesConditionalHashTable; + + /** + * Private unique Style HashTable. + * + * @var HashTable<\PhpOffice\PhpSpreadsheet\Style\Style> + */ + private $styleHashTable; + + /** + * Private unique Fill HashTable. + * + * @var HashTable<Fill> + */ + private $fillHashTable; + + /** + * Private unique \PhpOffice\PhpSpreadsheet\Style\Font HashTable. + * + * @var HashTable<Font> + */ + private $fontHashTable; + + /** + * Private unique Borders HashTable. + * + * @var HashTable<Borders> + */ + private $bordersHashTable; + + /** + * Private unique NumberFormat HashTable. + * + * @var HashTable<NumberFormat> + */ + private $numFmtHashTable; + + /** + * Private unique \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet\BaseDrawing HashTable. + * + * @var HashTable<BaseDrawing> + */ + private $drawingHashTable; + + /** + * Private handle for zip stream. + * + * @var ZipStream + */ + private $zip; + + /** + * @var Chart + */ + private $writerPartChart; + + /** + * @var Comments + */ + private $writerPartComments; + + /** + * @var ContentTypes + */ + private $writerPartContentTypes; + + /** + * @var DocProps + */ + private $writerPartDocProps; + + /** + * @var Drawing + */ + private $writerPartDrawing; + + /** + * @var Rels + */ + private $writerPartRels; + + /** + * @var RelsRibbon + */ + private $writerPartRelsRibbon; + + /** + * @var RelsVBA + */ + private $writerPartRelsVBA; + + /** + * @var StringTable + */ + private $writerPartStringTable; + + /** + * @var Style + */ + private $writerPartStyle; + + /** + * @var Theme + */ + private $writerPartTheme; + + /** + * @var Table + */ + private $writerPartTable; + + /** + * @var Workbook + */ + private $writerPartWorkbook; + + /** + * @var Worksheet + */ + private $writerPartWorksheet; + + /** + * Create a new Xlsx Writer. + */ + public function __construct(Spreadsheet $spreadsheet) + { + // Assign PhpSpreadsheet + $this->setSpreadsheet($spreadsheet); + + $this->writerPartChart = new Chart($this); + $this->writerPartComments = new Comments($this); + $this->writerPartContentTypes = new ContentTypes($this); + $this->writerPartDocProps = new DocProps($this); + $this->writerPartDrawing = new Drawing($this); + $this->writerPartRels = new Rels($this); + $this->writerPartRelsRibbon = new RelsRibbon($this); + $this->writerPartRelsVBA = new RelsVBA($this); + $this->writerPartStringTable = new StringTable($this); + $this->writerPartStyle = new Style($this); + $this->writerPartTheme = new Theme($this); + $this->writerPartTable = new Table($this); + $this->writerPartWorkbook = new Workbook($this); + $this->writerPartWorksheet = new Worksheet($this); + + // Set HashTable variables + // @phpstan-ignore-next-line + $this->bordersHashTable = new HashTable(); + // @phpstan-ignore-next-line + $this->drawingHashTable = new HashTable(); + // @phpstan-ignore-next-line + $this->fillHashTable = new HashTable(); + // @phpstan-ignore-next-line + $this->fontHashTable = new HashTable(); + // @phpstan-ignore-next-line + $this->numFmtHashTable = new HashTable(); + // @phpstan-ignore-next-line + $this->styleHashTable = new HashTable(); + // @phpstan-ignore-next-line + $this->stylesConditionalHashTable = new HashTable(); + } + + public function getWriterPartChart(): Chart + { + return $this->writerPartChart; + } + + public function getWriterPartComments(): Comments + { + return $this->writerPartComments; + } + + public function getWriterPartContentTypes(): ContentTypes + { + return $this->writerPartContentTypes; + } + + public function getWriterPartDocProps(): DocProps + { + return $this->writerPartDocProps; + } + + public function getWriterPartDrawing(): Drawing + { + return $this->writerPartDrawing; + } + + public function getWriterPartRels(): Rels + { + return $this->writerPartRels; + } + + public function getWriterPartRelsRibbon(): RelsRibbon + { + return $this->writerPartRelsRibbon; + } + + public function getWriterPartRelsVBA(): RelsVBA + { + return $this->writerPartRelsVBA; + } + + public function getWriterPartStringTable(): StringTable + { + return $this->writerPartStringTable; + } + + public function getWriterPartStyle(): Style + { + return $this->writerPartStyle; + } + + public function getWriterPartTheme(): Theme + { + return $this->writerPartTheme; + } + + public function getWriterPartTable(): Table + { + return $this->writerPartTable; + } + + public function getWriterPartWorkbook(): Workbook + { + return $this->writerPartWorkbook; + } + + public function getWriterPartWorksheet(): Worksheet + { + return $this->writerPartWorksheet; + } + + /** + * Save PhpSpreadsheet to file. + * + * @param resource|string $filename + */ + public function save($filename, int $flags = 0): void + { + $this->processFlags($flags); + + // garbage collect + $this->pathNames = []; + $this->spreadSheet->garbageCollect(); + + $saveDebugLog = Calculation::getInstance($this->spreadSheet)->getDebugLog()->getWriteDebugLog(); + Calculation::getInstance($this->spreadSheet)->getDebugLog()->setWriteDebugLog(false); + $saveDateReturnType = Functions::getReturnDateType(); + Functions::setReturnDateType(Functions::RETURNDATE_EXCEL); + + // Create string lookup table + $this->stringTable = []; + for ($i = 0; $i < $this->spreadSheet->getSheetCount(); ++$i) { + $this->stringTable = $this->getWriterPartStringTable()->createStringTable($this->spreadSheet->getSheet($i), $this->stringTable); + } + + // Create styles dictionaries + $this->styleHashTable->addFromSource($this->getWriterPartStyle()->allStyles($this->spreadSheet)); + $this->stylesConditionalHashTable->addFromSource($this->getWriterPartStyle()->allConditionalStyles($this->spreadSheet)); + $this->fillHashTable->addFromSource($this->getWriterPartStyle()->allFills($this->spreadSheet)); + $this->fontHashTable->addFromSource($this->getWriterPartStyle()->allFonts($this->spreadSheet)); + $this->bordersHashTable->addFromSource($this->getWriterPartStyle()->allBorders($this->spreadSheet)); + $this->numFmtHashTable->addFromSource($this->getWriterPartStyle()->allNumberFormats($this->spreadSheet)); + + // Create drawing dictionary + $this->drawingHashTable->addFromSource($this->getWriterPartDrawing()->allDrawings($this->spreadSheet)); + + $zipContent = []; + // Add [Content_Types].xml to ZIP file + $zipContent['[Content_Types].xml'] = $this->getWriterPartContentTypes()->writeContentTypes($this->spreadSheet, $this->includeCharts); + + //if hasMacros, add the vbaProject.bin file, Certificate file(if exists) + if ($this->spreadSheet->hasMacros()) { + $macrosCode = $this->spreadSheet->getMacrosCode(); + if ($macrosCode !== null) { + // we have the code ? + $zipContent['xl/vbaProject.bin'] = $macrosCode; //allways in 'xl', allways named vbaProject.bin + if ($this->spreadSheet->hasMacrosCertificate()) { + //signed macros ? + // Yes : add the certificate file and the related rels file + $zipContent['xl/vbaProjectSignature.bin'] = $this->spreadSheet->getMacrosCertificate(); + $zipContent['xl/_rels/vbaProject.bin.rels'] = $this->getWriterPartRelsVBA()->writeVBARelationships($this->spreadSheet); + } + } + } + //a custom UI in this workbook ? add it ("base" xml and additional objects (pictures) and rels) + if ($this->spreadSheet->hasRibbon()) { + $tmpRibbonTarget = $this->spreadSheet->getRibbonXMLData('target'); + $zipContent[$tmpRibbonTarget] = $this->spreadSheet->getRibbonXMLData('data'); + if ($this->spreadSheet->hasRibbonBinObjects()) { + $tmpRootPath = dirname($tmpRibbonTarget) . '/'; + $ribbonBinObjects = $this->spreadSheet->getRibbonBinObjects('data'); //the files to write + foreach ($ribbonBinObjects as $aPath => $aContent) { + $zipContent[$tmpRootPath . $aPath] = $aContent; + } + //the rels for files + $zipContent[$tmpRootPath . '_rels/' . basename($tmpRibbonTarget) . '.rels'] = $this->getWriterPartRelsRibbon()->writeRibbonRelationships($this->spreadSheet); + } + } + + // Add relationships to ZIP file + $zipContent['_rels/.rels'] = $this->getWriterPartRels()->writeRelationships($this->spreadSheet); + $zipContent['xl/_rels/workbook.xml.rels'] = $this->getWriterPartRels()->writeWorkbookRelationships($this->spreadSheet); + + // Add document properties to ZIP file + $zipContent['docProps/app.xml'] = $this->getWriterPartDocProps()->writeDocPropsApp($this->spreadSheet); + $zipContent['docProps/core.xml'] = $this->getWriterPartDocProps()->writeDocPropsCore($this->spreadSheet); + $customPropertiesPart = $this->getWriterPartDocProps()->writeDocPropsCustom($this->spreadSheet); + if ($customPropertiesPart !== null) { + $zipContent['docProps/custom.xml'] = $customPropertiesPart; + } + + // Add theme to ZIP file + $zipContent['xl/theme/theme1.xml'] = $this->getWriterPartTheme()->writeTheme($this->spreadSheet); + + // Add string table to ZIP file + $zipContent['xl/sharedStrings.xml'] = $this->getWriterPartStringTable()->writeStringTable($this->stringTable); + + // Add styles to ZIP file + $zipContent['xl/styles.xml'] = $this->getWriterPartStyle()->writeStyles($this->spreadSheet); + + // Add workbook to ZIP file + $zipContent['xl/workbook.xml'] = $this->getWriterPartWorkbook()->writeWorkbook($this->spreadSheet, $this->preCalculateFormulas); + + $chartCount = 0; + // Add worksheets + for ($i = 0; $i < $this->spreadSheet->getSheetCount(); ++$i) { + $zipContent['xl/worksheets/sheet' . ($i + 1) . '.xml'] = $this->getWriterPartWorksheet()->writeWorksheet($this->spreadSheet->getSheet($i), $this->stringTable, $this->includeCharts); + if ($this->includeCharts) { + $charts = $this->spreadSheet->getSheet($i)->getChartCollection(); + if (count($charts) > 0) { + foreach ($charts as $chart) { + $zipContent['xl/charts/chart' . ($chartCount + 1) . '.xml'] = $this->getWriterPartChart()->writeChart($chart, $this->preCalculateFormulas); + ++$chartCount; + } + } + } + } + + $chartRef1 = 0; + $tableRef1 = 1; + // Add worksheet relationships (drawings, ...) + for ($i = 0; $i < $this->spreadSheet->getSheetCount(); ++$i) { + // Add relationships + $zipContent['xl/worksheets/_rels/sheet' . ($i + 1) . '.xml.rels'] = $this->getWriterPartRels()->writeWorksheetRelationships($this->spreadSheet->getSheet($i), ($i + 1), $this->includeCharts, $tableRef1); + + // Add unparsedLoadedData + $sheetCodeName = $this->spreadSheet->getSheet($i)->getCodeName(); + $unparsedLoadedData = $this->spreadSheet->getUnparsedLoadedData(); + if (isset($unparsedLoadedData['sheets'][$sheetCodeName]['ctrlProps'])) { + foreach ($unparsedLoadedData['sheets'][$sheetCodeName]['ctrlProps'] as $ctrlProp) { + $zipContent[$ctrlProp['filePath']] = $ctrlProp['content']; + } + } + if (isset($unparsedLoadedData['sheets'][$sheetCodeName]['printerSettings'])) { + foreach ($unparsedLoadedData['sheets'][$sheetCodeName]['printerSettings'] as $ctrlProp) { + $zipContent[$ctrlProp['filePath']] = $ctrlProp['content']; + } + } + + $drawings = $this->spreadSheet->getSheet($i)->getDrawingCollection(); + $drawingCount = count($drawings); + if ($this->includeCharts) { + $chartCount = $this->spreadSheet->getSheet($i)->getChartCount(); + } + + // Add drawing and image relationship parts + if (($drawingCount > 0) || ($chartCount > 0)) { + // Drawing relationships + $zipContent['xl/drawings/_rels/drawing' . ($i + 1) . '.xml.rels'] = $this->getWriterPartRels()->writeDrawingRelationships($this->spreadSheet->getSheet($i), $chartRef1, $this->includeCharts); + + // Drawings + $zipContent['xl/drawings/drawing' . ($i + 1) . '.xml'] = $this->getWriterPartDrawing()->writeDrawings($this->spreadSheet->getSheet($i), $this->includeCharts); + } elseif (isset($unparsedLoadedData['sheets'][$sheetCodeName]['drawingAlternateContents'])) { + // Drawings + $zipContent['xl/drawings/drawing' . ($i + 1) . '.xml'] = $this->getWriterPartDrawing()->writeDrawings($this->spreadSheet->getSheet($i), $this->includeCharts); + } + + // Add unparsed drawings + if (isset($unparsedLoadedData['sheets'][$sheetCodeName]['Drawings'])) { + foreach ($unparsedLoadedData['sheets'][$sheetCodeName]['Drawings'] as $relId => $drawingXml) { + $drawingFile = array_search($relId, $unparsedLoadedData['sheets'][$sheetCodeName]['drawingOriginalIds']); + if ($drawingFile !== false) { + //$drawingFile = ltrim($drawingFile, '.'); + //$zipContent['xl' . $drawingFile] = $drawingXml; + $zipContent['xl/drawings/drawing' . ($i + 1) . '.xml'] = $drawingXml; + } + } + } + + // Add comment relationship parts + if (count($this->spreadSheet->getSheet($i)->getComments()) > 0) { + // VML Comments relationships + $zipContent['xl/drawings/_rels/vmlDrawing' . ($i + 1) . '.vml.rels'] = $this->getWriterPartRels()->writeVMLDrawingRelationships($this->spreadSheet->getSheet($i)); + + // VML Comments + $zipContent['xl/drawings/vmlDrawing' . ($i + 1) . '.vml'] = $this->getWriterPartComments()->writeVMLComments($this->spreadSheet->getSheet($i)); + + // Comments + $zipContent['xl/comments' . ($i + 1) . '.xml'] = $this->getWriterPartComments()->writeComments($this->spreadSheet->getSheet($i)); + + // Media + foreach ($this->spreadSheet->getSheet($i)->getComments() as $comment) { + if ($comment->hasBackgroundImage()) { + $image = $comment->getBackgroundImage(); + $zipContent['xl/media/' . $image->getMediaFilename()] = $this->processDrawing($image); + } + } + } + + // Add unparsed relationship parts + if (isset($unparsedLoadedData['sheets'][$sheetCodeName]['vmlDrawings'])) { + foreach ($unparsedLoadedData['sheets'][$sheetCodeName]['vmlDrawings'] as $vmlDrawing) { + $zipContent[$vmlDrawing['filePath']] = $vmlDrawing['content']; + } + } + + // Add header/footer relationship parts + if (count($this->spreadSheet->getSheet($i)->getHeaderFooter()->getImages()) > 0) { + // VML Drawings + $zipContent['xl/drawings/vmlDrawingHF' . ($i + 1) . '.vml'] = $this->getWriterPartDrawing()->writeVMLHeaderFooterImages($this->spreadSheet->getSheet($i)); + + // VML Drawing relationships + $zipContent['xl/drawings/_rels/vmlDrawingHF' . ($i + 1) . '.vml.rels'] = $this->getWriterPartRels()->writeHeaderFooterDrawingRelationships($this->spreadSheet->getSheet($i)); + + // Media + foreach ($this->spreadSheet->getSheet($i)->getHeaderFooter()->getImages() as $image) { + $zipContent['xl/media/' . $image->getIndexedFilename()] = file_get_contents($image->getPath()); + } + } + + // Add Table parts + $tables = $this->spreadSheet->getSheet($i)->getTableCollection(); + foreach ($tables as $table) { + $zipContent['xl/tables/table' . $tableRef1 . '.xml'] = $this->getWriterPartTable()->writeTable($table, $tableRef1++); + } + } + + // Add media + for ($i = 0; $i < $this->getDrawingHashTable()->count(); ++$i) { + if ($this->getDrawingHashTable()->getByIndex($i) instanceof WorksheetDrawing) { + $imageContents = null; + $imagePath = $this->getDrawingHashTable()->getByIndex($i)->getPath(); + if (strpos($imagePath, 'zip://') !== false) { + $imagePath = substr($imagePath, 6); + $imagePathSplitted = explode('#', $imagePath); + + $imageZip = new ZipArchive(); + $imageZip->open($imagePathSplitted[0]); + $imageContents = $imageZip->getFromName($imagePathSplitted[1]); + $imageZip->close(); + unset($imageZip); + } else { + $imageContents = file_get_contents($imagePath); + } + + $zipContent['xl/media/' . $this->getDrawingHashTable()->getByIndex($i)->getIndexedFilename()] = $imageContents; + } elseif ($this->getDrawingHashTable()->getByIndex($i) instanceof MemoryDrawing) { + ob_start(); + /** @var callable */ + $callable = $this->getDrawingHashTable()->getByIndex($i)->getRenderingFunction(); + call_user_func( + $callable, + $this->getDrawingHashTable()->getByIndex($i)->getImageResource() + ); + $imageContents = ob_get_contents(); + ob_end_clean(); + + $zipContent['xl/media/' . $this->getDrawingHashTable()->getByIndex($i)->getIndexedFilename()] = $imageContents; + } + } + + Functions::setReturnDateType($saveDateReturnType); + Calculation::getInstance($this->spreadSheet)->getDebugLog()->setWriteDebugLog($saveDebugLog); + + $this->openFileHandle($filename); + + $options = new Archive(); + $options->setEnableZip64(false); + $options->setOutputStream($this->fileHandle); + + $this->zip = new ZipStream(null, $options); + + $this->addZipFiles($zipContent); + + // Close file + try { + $this->zip->finish(); + } catch (OverflowException $e) { + throw new WriterException('Could not close resource.'); + } + + $this->maybeCloseFileHandle(); + } + + /** + * Get Spreadsheet object. + * + * @return Spreadsheet + */ + public function getSpreadsheet() + { + return $this->spreadSheet; + } + + /** + * Set Spreadsheet object. + * + * @param Spreadsheet $spreadsheet PhpSpreadsheet object + * + * @return $this + */ + public function setSpreadsheet(Spreadsheet $spreadsheet) + { + $this->spreadSheet = $spreadsheet; + + return $this; + } + + /** + * Get string table. + * + * @return string[] + */ + public function getStringTable() + { + return $this->stringTable; + } + + /** + * Get Style HashTable. + * + * @return HashTable<\PhpOffice\PhpSpreadsheet\Style\Style> + */ + public function getStyleHashTable() + { + return $this->styleHashTable; + } + + /** + * Get Conditional HashTable. + * + * @return HashTable<Conditional> + */ + public function getStylesConditionalHashTable() + { + return $this->stylesConditionalHashTable; + } + + /** + * Get Fill HashTable. + * + * @return HashTable<Fill> + */ + public function getFillHashTable() + { + return $this->fillHashTable; + } + + /** + * Get \PhpOffice\PhpSpreadsheet\Style\Font HashTable. + * + * @return HashTable<Font> + */ + public function getFontHashTable() + { + return $this->fontHashTable; + } + + /** + * Get Borders HashTable. + * + * @return HashTable<Borders> + */ + public function getBordersHashTable() + { + return $this->bordersHashTable; + } + + /** + * Get NumberFormat HashTable. + * + * @return HashTable<NumberFormat> + */ + public function getNumFmtHashTable() + { + return $this->numFmtHashTable; + } + + /** + * Get \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet\BaseDrawing HashTable. + * + * @return HashTable<BaseDrawing> + */ + public function getDrawingHashTable() + { + return $this->drawingHashTable; + } + + /** + * Get Office2003 compatibility. + * + * @return bool + */ + public function getOffice2003Compatibility() + { + return $this->office2003compatibility; + } + + /** + * Set Office2003 compatibility. + * + * @param bool $office2003compatibility Office2003 compatibility? + * + * @return $this + */ + public function setOffice2003Compatibility($office2003compatibility) + { + $this->office2003compatibility = $office2003compatibility; + + return $this; + } + + private $pathNames = []; + + private function addZipFile(string $path, string $content): void + { + if (!in_array($path, $this->pathNames)) { + $this->pathNames[] = $path; + $this->zip->addFile($path, $content); + } + } + + private function addZipFiles(array $zipContent): void + { + foreach ($zipContent as $path => $content) { + $this->addZipFile($path, $content); + } + } + + /** + * @return mixed + */ + private function processDrawing(WorksheetDrawing $drawing) + { + $data = null; + $filename = $drawing->getPath(); + $imageData = getimagesize($filename); + + if (is_array($imageData)) { + switch ($imageData[2]) { + case 1: // GIF, not supported by BIFF8, we convert to PNG + $image = imagecreatefromgif($filename); + if ($image !== false) { + ob_start(); + imagepng($image); + $data = ob_get_contents(); + ob_end_clean(); + } + + break; + + case 2: // JPEG + $data = file_get_contents($filename); + + break; + + case 3: // PNG + $data = file_get_contents($filename); + + break; + + case 6: // Windows DIB (BMP), we convert to PNG + $image = imagecreatefrombmp($filename); + if ($image !== false) { + ob_start(); + imagepng($image); + $data = ob_get_contents(); + ob_end_clean(); + } + + break; + } + } + + return $data; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Chart.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Chart.php new file mode 100644 index 0000000..d9d96da --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Chart.php @@ -0,0 +1,1623 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +use PhpOffice\PhpSpreadsheet\Chart\Axis; +use PhpOffice\PhpSpreadsheet\Chart\ChartColor; +use PhpOffice\PhpSpreadsheet\Chart\DataSeries; +use PhpOffice\PhpSpreadsheet\Chart\DataSeriesValues; +use PhpOffice\PhpSpreadsheet\Chart\Layout; +use PhpOffice\PhpSpreadsheet\Chart\Legend; +use PhpOffice\PhpSpreadsheet\Chart\PlotArea; +use PhpOffice\PhpSpreadsheet\Chart\Properties; +use PhpOffice\PhpSpreadsheet\Chart\Title; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Writer\Exception as WriterException; + +class Chart extends WriterPart +{ + /** + * @var int + */ + private $seriesIndex; + + /** + * Write charts to XML format. + * + * @param mixed $calculateCellValues + * + * @return string XML Output + */ + public function writeChart(\PhpOffice\PhpSpreadsheet\Chart\Chart $chart, $calculateCellValues = true) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + // Ensure that data series values are up-to-date before we save + if ($calculateCellValues) { + $chart->refresh(); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // c:chartSpace + $objWriter->startElement('c:chartSpace'); + $objWriter->writeAttribute('xmlns:c', 'http://schemas.openxmlformats.org/drawingml/2006/chart'); + $objWriter->writeAttribute('xmlns:a', 'http://schemas.openxmlformats.org/drawingml/2006/main'); + $objWriter->writeAttribute('xmlns:r', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships'); + + $objWriter->startElement('c:date1904'); + $objWriter->writeAttribute('val', '0'); + $objWriter->endElement(); + $objWriter->startElement('c:lang'); + $objWriter->writeAttribute('val', 'en-GB'); + $objWriter->endElement(); + $objWriter->startElement('c:roundedCorners'); + $objWriter->writeAttribute('val', '0'); + $objWriter->endElement(); + + $this->writeAlternateContent($objWriter); + + $objWriter->startElement('c:chart'); + + $this->writeTitle($objWriter, $chart->getTitle()); + + $objWriter->startElement('c:autoTitleDeleted'); + $objWriter->writeAttribute('val', (string) (int) $chart->getAutoTitleDeleted()); + $objWriter->endElement(); + + $objWriter->startElement('c:view3D'); + $surface2D = false; + $plotArea = $chart->getPlotArea(); + if ($plotArea !== null) { + $seriesArray = $plotArea->getPlotGroup(); + foreach ($seriesArray as $series) { + if ($series->getPlotType() === DataSeries::TYPE_SURFACECHART) { + $surface2D = true; + + break; + } + } + } + $this->writeView3D($objWriter, $chart->getRotX(), 'c:rotX', $surface2D, 90); + $this->writeView3D($objWriter, $chart->getRotY(), 'c:rotY', $surface2D); + $this->writeView3D($objWriter, $chart->getRAngAx(), 'c:rAngAx', $surface2D); + $this->writeView3D($objWriter, $chart->getPerspective(), 'c:perspective', $surface2D); + $objWriter->endElement(); // view3D + + $this->writePlotArea($objWriter, $chart->getPlotArea(), $chart->getXAxisLabel(), $chart->getYAxisLabel(), $chart->getChartAxisX(), $chart->getChartAxisY()); + + $this->writeLegend($objWriter, $chart->getLegend()); + + $objWriter->startElement('c:plotVisOnly'); + $objWriter->writeAttribute('val', (string) (int) $chart->getPlotVisibleOnly()); + $objWriter->endElement(); + + $objWriter->startElement('c:dispBlanksAs'); + $objWriter->writeAttribute('val', $chart->getDisplayBlanksAs()); + $objWriter->endElement(); + + $objWriter->startElement('c:showDLblsOverMax'); + $objWriter->writeAttribute('val', '0'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $this->writePrintSettings($objWriter); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + private function writeView3D(XMLWriter $objWriter, ?int $value, string $tag, bool $surface2D, int $default = 0): void + { + if ($value === null && $surface2D) { + $value = $default; + } + if ($value !== null) { + $objWriter->startElement($tag); + $objWriter->writeAttribute('val', "$value"); + $objWriter->endElement(); + } + } + + /** + * Write Chart Title. + */ + private function writeTitle(XMLWriter $objWriter, ?Title $title = null): void + { + if ($title === null) { + return; + } + + $objWriter->startElement('c:title'); + $objWriter->startElement('c:tx'); + $objWriter->startElement('c:rich'); + + $objWriter->startElement('a:bodyPr'); + $objWriter->endElement(); + + $objWriter->startElement('a:lstStyle'); + $objWriter->endElement(); + + $objWriter->startElement('a:p'); + $objWriter->startElement('a:pPr'); + $objWriter->startElement('a:defRPr'); + $objWriter->endElement(); + $objWriter->endElement(); + + $caption = $title->getCaption(); + if ((is_array($caption)) && (count($caption) > 0)) { + $caption = $caption[0]; + } + $this->getParentWriter()->getWriterPartstringtable()->writeRichTextForCharts($objWriter, $caption, 'a'); + + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + + $this->writeLayout($objWriter, $title->getLayout()); + + $objWriter->startElement('c:overlay'); + $objWriter->writeAttribute('val', '0'); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write Chart Legend. + */ + private function writeLegend(XMLWriter $objWriter, ?Legend $legend = null): void + { + if ($legend === null) { + return; + } + + $objWriter->startElement('c:legend'); + + $objWriter->startElement('c:legendPos'); + $objWriter->writeAttribute('val', $legend->getPosition()); + $objWriter->endElement(); + + $this->writeLayout($objWriter, $legend->getLayout()); + + $objWriter->startElement('c:overlay'); + $objWriter->writeAttribute('val', ($legend->getOverlay()) ? '1' : '0'); + $objWriter->endElement(); + + $objWriter->startElement('c:txPr'); + $objWriter->startElement('a:bodyPr'); + $objWriter->endElement(); + + $objWriter->startElement('a:lstStyle'); + $objWriter->endElement(); + + $objWriter->startElement('a:p'); + $objWriter->startElement('a:pPr'); + $objWriter->writeAttribute('rtl', '0'); + + $objWriter->startElement('a:defRPr'); + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->startElement('a:endParaRPr'); + $objWriter->writeAttribute('lang', 'en-US'); + $objWriter->endElement(); + + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write Chart Plot Area. + */ + private function writePlotArea(XMLWriter $objWriter, ?PlotArea $plotArea, ?Title $xAxisLabel = null, ?Title $yAxisLabel = null, ?Axis $xAxis = null, ?Axis $yAxis = null): void + { + if ($plotArea === null) { + return; + } + $majorGridlines = ($yAxis === null) ? null : $yAxis->getMajorGridlines(); + $minorGridlines = ($yAxis === null) ? null : $yAxis->getMinorGridlines(); + + $id1 = $id2 = $id3 = '0'; + $this->seriesIndex = 0; + $objWriter->startElement('c:plotArea'); + + $layout = $plotArea->getLayout(); + + $this->writeLayout($objWriter, $layout); + + $chartTypes = self::getChartType($plotArea); + $catIsMultiLevelSeries = $valIsMultiLevelSeries = false; + $plotGroupingType = ''; + $chartType = null; + foreach ($chartTypes as $chartType) { + $objWriter->startElement('c:' . $chartType); + + $groupCount = $plotArea->getPlotGroupCount(); + $plotGroup = null; + for ($i = 0; $i < $groupCount; ++$i) { + $plotGroup = $plotArea->getPlotGroupByIndex($i); + $groupType = $plotGroup->getPlotType(); + if ($groupType == $chartType) { + $plotStyle = $plotGroup->getPlotStyle(); + if (!empty($plotStyle) && $groupType === DataSeries::TYPE_RADARCHART) { + $objWriter->startElement('c:radarStyle'); + $objWriter->writeAttribute('val', $plotStyle); + $objWriter->endElement(); + } elseif (!empty($plotStyle) && $groupType === DataSeries::TYPE_SCATTERCHART) { + $objWriter->startElement('c:scatterStyle'); + $objWriter->writeAttribute('val', $plotStyle); + $objWriter->endElement(); + } elseif ($groupType === DataSeries::TYPE_SURFACECHART_3D || $groupType === DataSeries::TYPE_SURFACECHART) { + $objWriter->startElement('c:wireframe'); + $objWriter->writeAttribute('val', $plotStyle ? '1' : '0'); + $objWriter->endElement(); + } + + $this->writePlotGroup($plotGroup, $chartType, $objWriter, $catIsMultiLevelSeries, $valIsMultiLevelSeries, $plotGroupingType); + } + } + + $this->writeDataLabels($objWriter, $layout); + + if ($chartType === DataSeries::TYPE_LINECHART && $plotGroup) { + // Line only, Line3D can't be smoothed + $objWriter->startElement('c:smooth'); + $objWriter->writeAttribute('val', (string) (int) $plotGroup->getSmoothLine()); + $objWriter->endElement(); + } elseif (($chartType === DataSeries::TYPE_BARCHART) || ($chartType === DataSeries::TYPE_BARCHART_3D)) { + $objWriter->startElement('c:gapWidth'); + $objWriter->writeAttribute('val', '150'); + $objWriter->endElement(); + + if ($plotGroupingType == 'percentStacked' || $plotGroupingType == 'stacked') { + $objWriter->startElement('c:overlap'); + $objWriter->writeAttribute('val', '100'); + $objWriter->endElement(); + } + } elseif ($chartType === DataSeries::TYPE_BUBBLECHART) { + $scale = ($plotGroup === null) ? '' : (string) $plotGroup->getPlotStyle(); + if ($scale !== '') { + $objWriter->startElement('c:bubbleScale'); + $objWriter->writeAttribute('val', $scale); + $objWriter->endElement(); + } + + $objWriter->startElement('c:showNegBubbles'); + $objWriter->writeAttribute('val', '0'); + $objWriter->endElement(); + } elseif ($chartType === DataSeries::TYPE_STOCKCHART) { + $objWriter->startElement('c:hiLowLines'); + $objWriter->endElement(); + + $objWriter->startElement('c:upDownBars'); + + $objWriter->startElement('c:gapWidth'); + $objWriter->writeAttribute('val', '300'); + $objWriter->endElement(); + + $objWriter->startElement('c:upBars'); + $objWriter->endElement(); + + $objWriter->startElement('c:downBars'); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + // Generate 3 unique numbers to use for axId values + $id1 = '110438656'; + $id2 = '110444544'; + $id3 = '110365312'; // used in Surface Chart + + if (($chartType !== DataSeries::TYPE_PIECHART) && ($chartType !== DataSeries::TYPE_PIECHART_3D) && ($chartType !== DataSeries::TYPE_DONUTCHART)) { + $objWriter->startElement('c:axId'); + $objWriter->writeAttribute('val', $id1); + $objWriter->endElement(); + $objWriter->startElement('c:axId'); + $objWriter->writeAttribute('val', $id2); + $objWriter->endElement(); + if ($chartType === DataSeries::TYPE_SURFACECHART_3D || $chartType === DataSeries::TYPE_SURFACECHART) { + $objWriter->startElement('c:axId'); + $objWriter->writeAttribute('val', $id3); + $objWriter->endElement(); + } + } else { + $objWriter->startElement('c:firstSliceAng'); + $objWriter->writeAttribute('val', '0'); + $objWriter->endElement(); + + if ($chartType === DataSeries::TYPE_DONUTCHART) { + $objWriter->startElement('c:holeSize'); + $objWriter->writeAttribute('val', '50'); + $objWriter->endElement(); + } + } + + $objWriter->endElement(); + } + + if (($chartType !== DataSeries::TYPE_PIECHART) && ($chartType !== DataSeries::TYPE_PIECHART_3D) && ($chartType !== DataSeries::TYPE_DONUTCHART)) { + if ($chartType === DataSeries::TYPE_BUBBLECHART) { + $this->writeValueAxis($objWriter, $xAxisLabel, $chartType, $id2, $id1, $catIsMultiLevelSeries, $xAxis ?? new Axis()); + } else { + $this->writeCategoryAxis($objWriter, $xAxisLabel, $id1, $id2, $catIsMultiLevelSeries, $xAxis ?? new Axis()); + } + + $this->writeValueAxis($objWriter, $yAxisLabel, $chartType, $id1, $id2, $valIsMultiLevelSeries, $yAxis ?? new Axis()); + if ($chartType === DataSeries::TYPE_SURFACECHART_3D || $chartType === DataSeries::TYPE_SURFACECHART) { + $this->writeSerAxis($objWriter, $id2, $id3); + } + } + + $objWriter->endElement(); + } + + private function writeDataLabelsBool(XMLWriter $objWriter, string $name, ?bool $value): void + { + if ($value !== null) { + $objWriter->startElement("c:$name"); + $objWriter->writeAttribute('val', $value ? '1' : '0'); + $objWriter->endElement(); + } + } + + /** + * Write Data Labels. + */ + private function writeDataLabels(XMLWriter $objWriter, ?Layout $chartLayout = null): void + { + if (!isset($chartLayout)) { + return; + } + $objWriter->startElement('c:dLbls'); + + $fillColor = $chartLayout->getLabelFillColor(); + $borderColor = $chartLayout->getLabelBorderColor(); + if ($fillColor && $fillColor->isUsable()) { + $objWriter->startElement('c:spPr'); + $this->writeColor($objWriter, $fillColor); + if ($borderColor && $borderColor->isUsable()) { + $objWriter->startElement('a:ln'); + $this->writeColor($objWriter, $borderColor); + $objWriter->endElement(); // a:ln + } + $objWriter->endElement(); // c:spPr + } + $fontColor = $chartLayout->getLabelFontColor(); + if ($fontColor && $fontColor->isUsable()) { + $objWriter->startElement('c:txPr'); + + $objWriter->startElement('a:bodyPr'); + $objWriter->writeAttribute('wrap', 'square'); + $objWriter->writeAttribute('lIns', '38100'); + $objWriter->writeAttribute('tIns', '19050'); + $objWriter->writeAttribute('rIns', '38100'); + $objWriter->writeAttribute('bIns', '19050'); + $objWriter->writeAttribute('anchor', 'ctr'); + $objWriter->startElement('a:spAutoFit'); + $objWriter->endElement(); // a:spAutoFit + $objWriter->endElement(); // a:bodyPr + + $objWriter->startElement('a:lstStyle'); + $objWriter->endElement(); // a:lstStyle + + $objWriter->startElement('a:p'); + $objWriter->startElement('a:pPr'); + $objWriter->startElement('a:defRPr'); + $this->writeColor($objWriter, $fontColor); + $objWriter->endElement(); // a:defRPr + $objWriter->endElement(); // a:pPr + $objWriter->endElement(); // a:p + + $objWriter->endElement(); // c:txPr + } + + if ($chartLayout->getNumFmtCode() !== '') { + $objWriter->startElement('c:numFmt'); + $objWriter->writeAttribute('formatCode', $chartLayout->getnumFmtCode()); + $objWriter->writeAttribute('sourceLinked', (string) (int) $chartLayout->getnumFmtLinked()); + $objWriter->endElement(); // c:numFmt + } + if ($chartLayout->getDLblPos() !== '') { + $objWriter->startElement('c:dLblPos'); + $objWriter->writeAttribute('val', $chartLayout->getDLblPos()); + $objWriter->endElement(); // c:dLblPos + } + $this->writeDataLabelsBool($objWriter, 'showLegendKey', $chartLayout->getShowLegendKey()); + $this->writeDataLabelsBool($objWriter, 'showVal', $chartLayout->getShowVal()); + $this->writeDataLabelsBool($objWriter, 'showCatName', $chartLayout->getShowCatName()); + $this->writeDataLabelsBool($objWriter, 'showSerName', $chartLayout->getShowSerName()); + $this->writeDataLabelsBool($objWriter, 'showPercent', $chartLayout->getShowPercent()); + $this->writeDataLabelsBool($objWriter, 'showBubbleSize', $chartLayout->getShowBubbleSize()); + $this->writeDataLabelsBool($objWriter, 'showLeaderLines', $chartLayout->getShowLeaderLines()); + + $objWriter->endElement(); // c:dLbls + } + + /** + * Write Category Axis. + * + * @param string $id1 + * @param string $id2 + * @param bool $isMultiLevelSeries + */ + private function writeCategoryAxis(XMLWriter $objWriter, ?Title $xAxisLabel, $id1, $id2, $isMultiLevelSeries, Axis $yAxis): void + { + // N.B. writeCategoryAxis may be invoked with the last parameter($yAxis) using $xAxis for ScatterChart, etc + // In that case, xAxis is NOT a category. + if ($yAxis->getAxisType() !== '') { + $objWriter->startElement('c:' . $yAxis->getAxisType()); + } elseif ($yAxis->getAxisIsNumericFormat()) { + $objWriter->startElement('c:valAx'); + } else { + $objWriter->startElement('c:catAx'); + } + $majorGridlines = $yAxis->getMajorGridlines(); + $minorGridlines = $yAxis->getMinorGridlines(); + + if ($id1 !== '0') { + $objWriter->startElement('c:axId'); + $objWriter->writeAttribute('val', $id1); + $objWriter->endElement(); + } + + $objWriter->startElement('c:scaling'); + if ($yAxis->getAxisOptionsProperty('maximum') !== null) { + $objWriter->startElement('c:max'); + $objWriter->writeAttribute('val', $yAxis->getAxisOptionsProperty('maximum')); + $objWriter->endElement(); + } + if ($yAxis->getAxisOptionsProperty('minimum') !== null) { + $objWriter->startElement('c:min'); + $objWriter->writeAttribute('val', $yAxis->getAxisOptionsProperty('minimum')); + $objWriter->endElement(); + } + if (!empty($yAxis->getAxisOptionsProperty('orientation'))) { + $objWriter->startElement('c:orientation'); + $objWriter->writeAttribute('val', $yAxis->getAxisOptionsProperty('orientation')); + $objWriter->endElement(); + } + $objWriter->endElement(); // c:scaling + + $objWriter->startElement('c:delete'); + $objWriter->writeAttribute('val', '0'); + $objWriter->endElement(); + + $objWriter->startElement('c:axPos'); + $objWriter->writeAttribute('val', 'b'); + $objWriter->endElement(); + + if ($majorGridlines !== null) { + $objWriter->startElement('c:majorGridlines'); + $objWriter->startElement('c:spPr'); + $this->writeLineStyles($objWriter, $majorGridlines); + $this->writeEffects($objWriter, $majorGridlines); + $objWriter->endElement(); //end spPr + $objWriter->endElement(); //end majorGridLines + } + + if ($minorGridlines !== null && $minorGridlines->getObjectState()) { + $objWriter->startElement('c:minorGridlines'); + $objWriter->startElement('c:spPr'); + $this->writeLineStyles($objWriter, $minorGridlines); + $this->writeEffects($objWriter, $minorGridlines); + $objWriter->endElement(); //end spPr + $objWriter->endElement(); //end minorGridLines + } + + if ($xAxisLabel !== null) { + $objWriter->startElement('c:title'); + $objWriter->startElement('c:tx'); + $objWriter->startElement('c:rich'); + + $objWriter->startElement('a:bodyPr'); + $objWriter->endElement(); + + $objWriter->startElement('a:lstStyle'); + $objWriter->endElement(); + + $objWriter->startElement('a:p'); + + $caption = $xAxisLabel->getCaption(); + if (is_array($caption)) { + $caption = $caption[0]; + } + $this->getParentWriter()->getWriterPartstringtable()->writeRichTextForCharts($objWriter, $caption, 'a'); + + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + + $layout = $xAxisLabel->getLayout(); + $this->writeLayout($objWriter, $layout); + + $objWriter->startElement('c:overlay'); + $objWriter->writeAttribute('val', '0'); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + $objWriter->startElement('c:numFmt'); + $objWriter->writeAttribute('formatCode', $yAxis->getAxisNumberFormat()); + $objWriter->writeAttribute('sourceLinked', $yAxis->getAxisNumberSourceLinked()); + $objWriter->endElement(); + + if (!empty($yAxis->getAxisOptionsProperty('major_tick_mark'))) { + $objWriter->startElement('c:majorTickMark'); + $objWriter->writeAttribute('val', $yAxis->getAxisOptionsProperty('major_tick_mark')); + $objWriter->endElement(); + } + + if (!empty($yAxis->getAxisOptionsProperty('minor_tick_mark'))) { + $objWriter->startElement('c:minorTickMark'); + $objWriter->writeAttribute('val', $yAxis->getAxisOptionsProperty('minor_tick_mark')); + $objWriter->endElement(); + } + + if (!empty($yAxis->getAxisOptionsProperty('axis_labels'))) { + $objWriter->startElement('c:tickLblPos'); + $objWriter->writeAttribute('val', $yAxis->getAxisOptionsProperty('axis_labels')); + $objWriter->endElement(); + } + + $textRotation = $yAxis->getAxisOptionsProperty('textRotation'); + if (is_numeric($textRotation)) { + $objWriter->startElement('c:txPr'); + $objWriter->startElement('a:bodyPr'); + $objWriter->writeAttribute('rot', Properties::angleToXml((float) $textRotation)); + $objWriter->endElement(); // a:bodyPr + $objWriter->startElement('a:lstStyle'); + $objWriter->endElement(); // a:lstStyle + $objWriter->startElement('a:p'); + $objWriter->startElement('a:pPr'); + $objWriter->startElement('a:defRPr'); + $objWriter->endElement(); // a:defRPr + $objWriter->endElement(); // a:pPr + $objWriter->endElement(); // a:p + $objWriter->endElement(); // c:txPr + } + + $objWriter->startElement('c:spPr'); + $this->writeColor($objWriter, $yAxis->getFillColorObject()); + $this->writeEffects($objWriter, $yAxis); + $objWriter->endElement(); // spPr + + if ($yAxis->getAxisOptionsProperty('major_unit') !== null) { + $objWriter->startElement('c:majorUnit'); + $objWriter->writeAttribute('val', $yAxis->getAxisOptionsProperty('major_unit')); + $objWriter->endElement(); + } + + if ($yAxis->getAxisOptionsProperty('minor_unit') !== null) { + $objWriter->startElement('c:minorUnit'); + $objWriter->writeAttribute('val', $yAxis->getAxisOptionsProperty('minor_unit')); + $objWriter->endElement(); + } + + if ($id2 !== '0') { + $objWriter->startElement('c:crossAx'); + $objWriter->writeAttribute('val', $id2); + $objWriter->endElement(); + + if (!empty($yAxis->getAxisOptionsProperty('horizontal_crosses'))) { + $objWriter->startElement('c:crosses'); + $objWriter->writeAttribute('val', $yAxis->getAxisOptionsProperty('horizontal_crosses')); + $objWriter->endElement(); + } + } + + $objWriter->startElement('c:auto'); + $objWriter->writeAttribute('val', '1'); + $objWriter->endElement(); + + $objWriter->startElement('c:lblAlgn'); + $objWriter->writeAttribute('val', 'ctr'); + $objWriter->endElement(); + + $objWriter->startElement('c:lblOffset'); + $objWriter->writeAttribute('val', '100'); + $objWriter->endElement(); + + if ($isMultiLevelSeries) { + $objWriter->startElement('c:noMultiLvlLbl'); + $objWriter->writeAttribute('val', '0'); + $objWriter->endElement(); + } + $objWriter->endElement(); + } + + /** + * Write Value Axis. + * + * @param null|string $groupType Chart type + * @param string $id1 + * @param string $id2 + * @param bool $isMultiLevelSeries + */ + private function writeValueAxis(XMLWriter $objWriter, ?Title $yAxisLabel, $groupType, $id1, $id2, $isMultiLevelSeries, Axis $xAxis): void + { + $objWriter->startElement('c:valAx'); + $majorGridlines = $xAxis->getMajorGridlines(); + $minorGridlines = $xAxis->getMinorGridlines(); + + if ($id2 !== '0') { + $objWriter->startElement('c:axId'); + $objWriter->writeAttribute('val', $id2); + $objWriter->endElement(); + } + + $objWriter->startElement('c:scaling'); + + if ($xAxis->getAxisOptionsProperty('maximum') !== null) { + $objWriter->startElement('c:max'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('maximum')); + $objWriter->endElement(); + } + + if ($xAxis->getAxisOptionsProperty('minimum') !== null) { + $objWriter->startElement('c:min'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('minimum')); + $objWriter->endElement(); + } + + if (!empty($xAxis->getAxisOptionsProperty('orientation'))) { + $objWriter->startElement('c:orientation'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('orientation')); + $objWriter->endElement(); + } + + $objWriter->endElement(); // c:scaling + + $objWriter->startElement('c:delete'); + $objWriter->writeAttribute('val', '0'); + $objWriter->endElement(); + + $objWriter->startElement('c:axPos'); + $objWriter->writeAttribute('val', 'l'); + $objWriter->endElement(); + + if ($majorGridlines !== null) { + $objWriter->startElement('c:majorGridlines'); + $objWriter->startElement('c:spPr'); + $this->writeLineStyles($objWriter, $majorGridlines); + $this->writeEffects($objWriter, $majorGridlines); + $objWriter->endElement(); //end spPr + $objWriter->endElement(); //end majorGridLines + } + + if ($minorGridlines !== null && $minorGridlines->getObjectState()) { + $objWriter->startElement('c:minorGridlines'); + $objWriter->startElement('c:spPr'); + $this->writeLineStyles($objWriter, $minorGridlines); + $this->writeEffects($objWriter, $minorGridlines); + $objWriter->endElement(); //end spPr + $objWriter->endElement(); //end minorGridLines + } + + if ($yAxisLabel !== null) { + $objWriter->startElement('c:title'); + $objWriter->startElement('c:tx'); + $objWriter->startElement('c:rich'); + + $objWriter->startElement('a:bodyPr'); + $objWriter->endElement(); + + $objWriter->startElement('a:lstStyle'); + $objWriter->endElement(); + + $objWriter->startElement('a:p'); + + $caption = $yAxisLabel->getCaption(); + if (is_array($caption)) { + $caption = $caption[0]; + } + $this->getParentWriter()->getWriterPartstringtable()->writeRichTextForCharts($objWriter, $caption, 'a'); + + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + + if ($groupType !== DataSeries::TYPE_BUBBLECHART) { + $layout = $yAxisLabel->getLayout(); + $this->writeLayout($objWriter, $layout); + } + + $objWriter->startElement('c:overlay'); + $objWriter->writeAttribute('val', '0'); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + $objWriter->startElement('c:numFmt'); + $objWriter->writeAttribute('formatCode', $xAxis->getAxisNumberFormat()); + $objWriter->writeAttribute('sourceLinked', $xAxis->getAxisNumberSourceLinked()); + $objWriter->endElement(); + + if (!empty($xAxis->getAxisOptionsProperty('major_tick_mark'))) { + $objWriter->startElement('c:majorTickMark'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('major_tick_mark')); + $objWriter->endElement(); + } + + if (!empty($xAxis->getAxisOptionsProperty('minor_tick_mark'))) { + $objWriter->startElement('c:minorTickMark'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('minor_tick_mark')); + $objWriter->endElement(); + } + + if (!empty($xAxis->getAxisOptionsProperty('axis_labels'))) { + $objWriter->startElement('c:tickLblPos'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('axis_labels')); + $objWriter->endElement(); + } + + $textRotation = $xAxis->getAxisOptionsProperty('textRotation'); + if (is_numeric($textRotation)) { + $objWriter->startElement('c:txPr'); + $objWriter->startElement('a:bodyPr'); + $objWriter->writeAttribute('rot', Properties::angleToXml((float) $textRotation)); + $objWriter->endElement(); // a:bodyPr + $objWriter->startElement('a:lstStyle'); + $objWriter->endElement(); // a:lstStyle + $objWriter->startElement('a:p'); + $objWriter->startElement('a:pPr'); + $objWriter->startElement('a:defRPr'); + $objWriter->endElement(); // a:defRPr + $objWriter->endElement(); // a:pPr + $objWriter->endElement(); // a:p + $objWriter->endElement(); // c:txPr + } + + $objWriter->startElement('c:spPr'); + $this->writeColor($objWriter, $xAxis->getFillColorObject()); + $this->writeLineStyles($objWriter, $xAxis); + $this->writeEffects($objWriter, $xAxis); + $objWriter->endElement(); //end spPr + + if ($id1 !== '0') { + $objWriter->startElement('c:crossAx'); + $objWriter->writeAttribute('val', $id1); + $objWriter->endElement(); + + if ($xAxis->getAxisOptionsProperty('horizontal_crosses_value') !== null) { + $objWriter->startElement('c:crossesAt'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('horizontal_crosses_value')); + $objWriter->endElement(); + } else { + $crosses = $xAxis->getAxisOptionsProperty('horizontal_crosses'); + if ($crosses) { + $objWriter->startElement('c:crosses'); + $objWriter->writeAttribute('val', $crosses); + $objWriter->endElement(); + } + } + + $crossBetween = $xAxis->getCrossBetween(); + if ($crossBetween !== '') { + $objWriter->startElement('c:crossBetween'); + $objWriter->writeAttribute('val', $crossBetween); + $objWriter->endElement(); + } + + if ($xAxis->getAxisOptionsProperty('major_unit') !== null) { + $objWriter->startElement('c:majorUnit'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('major_unit')); + $objWriter->endElement(); + } + + if ($xAxis->getAxisOptionsProperty('minor_unit') !== null) { + $objWriter->startElement('c:minorUnit'); + $objWriter->writeAttribute('val', $xAxis->getAxisOptionsProperty('minor_unit')); + $objWriter->endElement(); + } + } + + if ($isMultiLevelSeries) { + if ($groupType !== DataSeries::TYPE_BUBBLECHART) { + $objWriter->startElement('c:noMultiLvlLbl'); + $objWriter->writeAttribute('val', '0'); + $objWriter->endElement(); + } + } + + $objWriter->endElement(); + } + + /** + * Write Ser Axis, for Surface chart. + */ + private function writeSerAxis(XMLWriter $objWriter, string $id2, string $id3): void + { + $objWriter->startElement('c:serAx'); + + $objWriter->startElement('c:axId'); + $objWriter->writeAttribute('val', $id3); + $objWriter->endElement(); // axId + + $objWriter->startElement('c:scaling'); + $objWriter->startElement('c:orientation'); + $objWriter->writeAttribute('val', 'minMax'); + $objWriter->endElement(); // orientation + $objWriter->endElement(); // scaling + + $objWriter->startElement('c:delete'); + $objWriter->writeAttribute('val', '0'); + $objWriter->endElement(); // delete + + $objWriter->startElement('c:axPos'); + $objWriter->writeAttribute('val', 'b'); + $objWriter->endElement(); // axPos + + $objWriter->startElement('c:majorTickMark'); + $objWriter->writeAttribute('val', 'out'); + $objWriter->endElement(); // majorTickMark + + $objWriter->startElement('c:minorTickMark'); + $objWriter->writeAttribute('val', 'none'); + $objWriter->endElement(); // minorTickMark + + $objWriter->startElement('c:tickLblPos'); + $objWriter->writeAttribute('val', 'nextTo'); + $objWriter->endElement(); // tickLblPos + + $objWriter->startElement('c:crossAx'); + $objWriter->writeAttribute('val', $id2); + $objWriter->endElement(); // crossAx + + $objWriter->startElement('c:crosses'); + $objWriter->writeAttribute('val', 'autoZero'); + $objWriter->endElement(); // crosses + + $objWriter->endElement(); //serAx + } + + /** + * Get the data series type(s) for a chart plot series. + * + * @return string[] + */ + private static function getChartType(PlotArea $plotArea): array + { + $groupCount = $plotArea->getPlotGroupCount(); + + if ($groupCount == 1) { + $chartType = [$plotArea->getPlotGroupByIndex(0)->getPlotType()]; + } else { + $chartTypes = []; + for ($i = 0; $i < $groupCount; ++$i) { + $chartTypes[] = $plotArea->getPlotGroupByIndex($i)->getPlotType(); + } + $chartType = array_unique($chartTypes); + if (count($chartTypes) == 0) { + throw new WriterException('Chart is not yet implemented'); + } + } + + return $chartType; + } + + /** + * Method writing plot series values. + */ + private function writePlotSeriesValuesElement(XMLWriter $objWriter, int $val, ?ChartColor $fillColor): void + { + if ($fillColor === null || !$fillColor->isUsable()) { + return; + } + $objWriter->startElement('c:dPt'); + + $objWriter->startElement('c:idx'); + $objWriter->writeAttribute('val', "$val"); + $objWriter->endElement(); // c:idx + + $objWriter->startElement('c:spPr'); + $this->writeColor($objWriter, $fillColor); + $objWriter->endElement(); // c:spPr + + $objWriter->endElement(); // c:dPt + } + + /** + * Write Plot Group (series of related plots). + * + * @param string $groupType Type of plot for dataseries + * @param bool $catIsMultiLevelSeries Is category a multi-series category + * @param bool $valIsMultiLevelSeries Is value set a multi-series set + * @param string $plotGroupingType Type of grouping for multi-series values + */ + private function writePlotGroup(?DataSeries $plotGroup, string $groupType, XMLWriter $objWriter, &$catIsMultiLevelSeries, &$valIsMultiLevelSeries, &$plotGroupingType): void + { + if ($plotGroup === null) { + return; + } + + if (($groupType == DataSeries::TYPE_BARCHART) || ($groupType == DataSeries::TYPE_BARCHART_3D)) { + $objWriter->startElement('c:barDir'); + $objWriter->writeAttribute('val', $plotGroup->getPlotDirection()); + $objWriter->endElement(); + } + + $plotGroupingType = $plotGroup->getPlotGrouping(); + if ($plotGroupingType !== null && $groupType !== DataSeries::TYPE_SURFACECHART && $groupType !== DataSeries::TYPE_SURFACECHART_3D) { + $objWriter->startElement('c:grouping'); + $objWriter->writeAttribute('val', $plotGroupingType); + $objWriter->endElement(); + } + + // Get these details before the loop, because we can use the count to check for varyColors + $plotSeriesOrder = $plotGroup->getPlotOrder(); + $plotSeriesCount = count($plotSeriesOrder); + + if (($groupType !== DataSeries::TYPE_RADARCHART) && ($groupType !== DataSeries::TYPE_STOCKCHART)) { + if ($groupType !== DataSeries::TYPE_LINECHART) { + if (($groupType == DataSeries::TYPE_PIECHART) || ($groupType == DataSeries::TYPE_PIECHART_3D) || ($groupType == DataSeries::TYPE_DONUTCHART) || ($plotSeriesCount > 1)) { + $objWriter->startElement('c:varyColors'); + $objWriter->writeAttribute('val', '1'); + $objWriter->endElement(); + } else { + $objWriter->startElement('c:varyColors'); + $objWriter->writeAttribute('val', '0'); + $objWriter->endElement(); + } + } + } + + $plotSeriesIdx = 0; + foreach ($plotSeriesOrder as $plotSeriesIdx => $plotSeriesRef) { + $objWriter->startElement('c:ser'); + + $objWriter->startElement('c:idx'); + $objWriter->writeAttribute('val', (string) ($this->seriesIndex + $plotSeriesIdx)); + $objWriter->endElement(); + + $objWriter->startElement('c:order'); + $objWriter->writeAttribute('val', (string) ($this->seriesIndex + $plotSeriesRef)); + $objWriter->endElement(); + + $plotLabel = $plotGroup->getPlotLabelByIndex($plotSeriesIdx); + $labelFill = null; + if ($plotLabel && $groupType === DataSeries::TYPE_LINECHART) { + $labelFill = $plotLabel->getFillColorObject(); + $labelFill = ($labelFill instanceof ChartColor) ? $labelFill : null; + } + if ($plotLabel && $groupType !== DataSeries::TYPE_LINECHART) { + $fillColor = $plotLabel->getFillColorObject(); + if ($fillColor !== null && !is_array($fillColor) && $fillColor->isUsable()) { + $objWriter->startElement('c:spPr'); + $this->writeColor($objWriter, $fillColor); + $objWriter->endElement(); // c:spPr + } + } + + // Values + $plotSeriesValues = $plotGroup->getPlotValuesByIndex($plotSeriesIdx); + + if ($plotSeriesValues !== false && in_array($groupType, self::CUSTOM_COLOR_TYPES, true)) { + $fillColorValues = $plotSeriesValues->getFillColorObject(); + if ($fillColorValues !== null && is_array($fillColorValues)) { + foreach ($plotSeriesValues->getDataValues() as $dataKey => $dataValue) { + $this->writePlotSeriesValuesElement($objWriter, $dataKey, $fillColorValues[$dataKey] ?? null); + } + } + } + if ($plotSeriesValues !== false && $plotSeriesValues->getLabelLayout()) { + $this->writeDataLabels($objWriter, $plotSeriesValues->getLabelLayout()); + } + + // Labels + $plotSeriesLabel = $plotGroup->getPlotLabelByIndex($plotSeriesIdx); + if ($plotSeriesLabel && ($plotSeriesLabel->getPointCount() > 0)) { + $objWriter->startElement('c:tx'); + $objWriter->startElement('c:strRef'); + $this->writePlotSeriesLabel($plotSeriesLabel, $objWriter); + $objWriter->endElement(); + $objWriter->endElement(); + } + + // Formatting for the points + if ( + $plotSeriesValues !== false + ) { + $objWriter->startElement('c:spPr'); + $fillObject = $labelFill ?? $plotSeriesValues->getFillColorObject(); + $callLineStyles = true; + if ($fillObject instanceof ChartColor && $fillObject->isUsable()) { + if ($groupType === DataSeries::TYPE_LINECHART) { + $objWriter->startElement('a:ln'); + $callLineStyles = false; + } + $this->writeColor($objWriter, $fillObject); + if (!$callLineStyles) { + $objWriter->endElement(); // a:ln + } + } + $nofill = $groupType == DataSeries::TYPE_STOCKCHART || ($groupType === DataSeries::TYPE_SCATTERCHART && !$plotSeriesValues->getScatterLines()); + if ($callLineStyles) { + $this->writeLineStyles($objWriter, $plotSeriesValues, $nofill); + $this->writeEffects($objWriter, $plotSeriesValues); + } + $objWriter->endElement(); // c:spPr + } + + if ($plotSeriesValues) { + $plotSeriesMarker = $plotSeriesValues->getPointMarker(); + $markerFillColor = $plotSeriesValues->getMarkerFillColor(); + $fillUsed = $markerFillColor->IsUsable(); + $markerBorderColor = $plotSeriesValues->getMarkerBorderColor(); + $borderUsed = $markerBorderColor->isUsable(); + if ($plotSeriesMarker || $fillUsed || $borderUsed) { + $objWriter->startElement('c:marker'); + $objWriter->startElement('c:symbol'); + if ($plotSeriesMarker) { + $objWriter->writeAttribute('val', $plotSeriesMarker); + } + $objWriter->endElement(); + + if ($plotSeriesMarker !== 'none') { + $objWriter->startElement('c:size'); + $objWriter->writeAttribute('val', (string) $plotSeriesValues->getPointSize()); + $objWriter->endElement(); // c:size + $objWriter->startElement('c:spPr'); + $this->writeColor($objWriter, $markerFillColor); + if ($borderUsed) { + $objWriter->startElement('a:ln'); + $this->writeColor($objWriter, $markerBorderColor); + $objWriter->endElement(); // a:ln + } + $objWriter->endElement(); // spPr + } + + $objWriter->endElement(); + } + } + + if (($groupType === DataSeries::TYPE_BARCHART) || ($groupType === DataSeries::TYPE_BARCHART_3D) || ($groupType === DataSeries::TYPE_BUBBLECHART)) { + $objWriter->startElement('c:invertIfNegative'); + $objWriter->writeAttribute('val', '0'); + $objWriter->endElement(); + } + + // Category Labels + $plotSeriesCategory = $plotGroup->getPlotCategoryByIndex($plotSeriesIdx); + if ($plotSeriesCategory && ($plotSeriesCategory->getPointCount() > 0)) { + $catIsMultiLevelSeries = $catIsMultiLevelSeries || $plotSeriesCategory->isMultiLevelSeries(); + + if (($groupType == DataSeries::TYPE_PIECHART) || ($groupType == DataSeries::TYPE_PIECHART_3D) || ($groupType == DataSeries::TYPE_DONUTCHART)) { + $plotStyle = $plotGroup->getPlotStyle(); + if (is_numeric($plotStyle)) { + $objWriter->startElement('c:explosion'); + $objWriter->writeAttribute('val', $plotStyle); + $objWriter->endElement(); + } + } + + if (($groupType === DataSeries::TYPE_BUBBLECHART) || ($groupType === DataSeries::TYPE_SCATTERCHART)) { + $objWriter->startElement('c:xVal'); + } else { + $objWriter->startElement('c:cat'); + } + + // xVals (Categories) are not always 'str' + // Test X-axis Label's Datatype to decide 'str' vs 'num' + $CategoryDatatype = $plotSeriesCategory->getDataType(); + if ($CategoryDatatype == DataSeriesValues::DATASERIES_TYPE_NUMBER) { + $this->writePlotSeriesValues($plotSeriesCategory, $objWriter, $groupType, 'num'); + } else { + $this->writePlotSeriesValues($plotSeriesCategory, $objWriter, $groupType, 'str'); + } + $objWriter->endElement(); + } + + // Values + if ($plotSeriesValues) { + $valIsMultiLevelSeries = $valIsMultiLevelSeries || $plotSeriesValues->isMultiLevelSeries(); + + if (($groupType === DataSeries::TYPE_BUBBLECHART) || ($groupType === DataSeries::TYPE_SCATTERCHART)) { + $objWriter->startElement('c:yVal'); + } else { + $objWriter->startElement('c:val'); + } + + $this->writePlotSeriesValues($plotSeriesValues, $objWriter, $groupType, 'num'); + $objWriter->endElement(); + if ($groupType === DataSeries::TYPE_SCATTERCHART && $plotGroup->getPlotStyle() === 'smoothMarker') { + $objWriter->startElement('c:smooth'); + $objWriter->writeAttribute('val', $plotSeriesValues->getSmoothLine() ? '1' : '0'); + $objWriter->endElement(); + } + } + + if ($groupType === DataSeries::TYPE_BUBBLECHART) { + if (!empty($plotGroup->getPlotBubbleSizes()[$plotSeriesIdx])) { + $objWriter->startElement('c:bubbleSize'); + $this->writePlotSeriesValues( + $plotGroup->getPlotBubbleSizes()[$plotSeriesIdx], + $objWriter, + $groupType, + 'num' + ); + $objWriter->endElement(); + if ($plotSeriesValues !== false) { + $objWriter->startElement('c:bubble3D'); + $objWriter->writeAttribute('val', $plotSeriesValues->getBubble3D() ? '1' : '0'); + $objWriter->endElement(); + } + } elseif ($plotSeriesValues !== false) { + $this->writeBubbles($plotSeriesValues, $objWriter); + } + } + + $objWriter->endElement(); + } + + $this->seriesIndex += $plotSeriesIdx + 1; + } + + /** + * Write Plot Series Label. + */ + private function writePlotSeriesLabel(?DataSeriesValues $plotSeriesLabel, XMLWriter $objWriter): void + { + if ($plotSeriesLabel === null) { + return; + } + + $objWriter->startElement('c:f'); + $objWriter->writeRawData($plotSeriesLabel->getDataSource()); + $objWriter->endElement(); + + $objWriter->startElement('c:strCache'); + $objWriter->startElement('c:ptCount'); + $objWriter->writeAttribute('val', (string) $plotSeriesLabel->getPointCount()); + $objWriter->endElement(); + + foreach ($plotSeriesLabel->getDataValues() as $plotLabelKey => $plotLabelValue) { + $objWriter->startElement('c:pt'); + $objWriter->writeAttribute('idx', $plotLabelKey); + + $objWriter->startElement('c:v'); + $objWriter->writeRawData($plotLabelValue); + $objWriter->endElement(); + $objWriter->endElement(); + } + $objWriter->endElement(); + } + + /** + * Write Plot Series Values. + * + * @param string $groupType Type of plot for dataseries + * @param string $dataType Datatype of series values + */ + private function writePlotSeriesValues(?DataSeriesValues $plotSeriesValues, XMLWriter $objWriter, $groupType, $dataType = 'str'): void + { + if ($plotSeriesValues === null) { + return; + } + + if ($plotSeriesValues->isMultiLevelSeries()) { + $levelCount = $plotSeriesValues->multiLevelCount(); + + $objWriter->startElement('c:multiLvlStrRef'); + + $objWriter->startElement('c:f'); + $objWriter->writeRawData($plotSeriesValues->getDataSource()); + $objWriter->endElement(); + + $objWriter->startElement('c:multiLvlStrCache'); + + $objWriter->startElement('c:ptCount'); + $objWriter->writeAttribute('val', (string) $plotSeriesValues->getPointCount()); + $objWriter->endElement(); + + for ($level = 0; $level < $levelCount; ++$level) { + $objWriter->startElement('c:lvl'); + + foreach ($plotSeriesValues->getDataValues() as $plotSeriesKey => $plotSeriesValue) { + if (isset($plotSeriesValue[$level])) { + $objWriter->startElement('c:pt'); + $objWriter->writeAttribute('idx', $plotSeriesKey); + + $objWriter->startElement('c:v'); + $objWriter->writeRawData($plotSeriesValue[$level]); + $objWriter->endElement(); + $objWriter->endElement(); + } + } + + $objWriter->endElement(); + } + + $objWriter->endElement(); + + $objWriter->endElement(); + } else { + $objWriter->startElement('c:' . $dataType . 'Ref'); + + $objWriter->startElement('c:f'); + $objWriter->writeRawData($plotSeriesValues->getDataSource()); + $objWriter->endElement(); + + $count = $plotSeriesValues->getPointCount(); + $source = $plotSeriesValues->getDataSource(); + $values = $plotSeriesValues->getDataValues(); + if ($count > 1 || ($count === 1 && "=$source" !== (string) $values[0])) { + $objWriter->startElement('c:' . $dataType . 'Cache'); + + if (($groupType != DataSeries::TYPE_PIECHART) && ($groupType != DataSeries::TYPE_PIECHART_3D) && ($groupType != DataSeries::TYPE_DONUTCHART)) { + if (($plotSeriesValues->getFormatCode() !== null) && ($plotSeriesValues->getFormatCode() !== '')) { + $objWriter->startElement('c:formatCode'); + $objWriter->writeRawData($plotSeriesValues->getFormatCode()); + $objWriter->endElement(); + } + } + + $objWriter->startElement('c:ptCount'); + $objWriter->writeAttribute('val', (string) $plotSeriesValues->getPointCount()); + $objWriter->endElement(); + + $dataValues = $plotSeriesValues->getDataValues(); + if (!empty($dataValues)) { + if (is_array($dataValues)) { + foreach ($dataValues as $plotSeriesKey => $plotSeriesValue) { + $objWriter->startElement('c:pt'); + $objWriter->writeAttribute('idx', $plotSeriesKey); + + $objWriter->startElement('c:v'); + $objWriter->writeRawData($plotSeriesValue); + $objWriter->endElement(); + $objWriter->endElement(); + } + } + } + + $objWriter->endElement(); // *Cache + } + + $objWriter->endElement(); // *Ref + } + } + + private const CUSTOM_COLOR_TYPES = [ + DataSeries::TYPE_BARCHART, + DataSeries::TYPE_BARCHART_3D, + DataSeries::TYPE_PIECHART, + DataSeries::TYPE_PIECHART_3D, + DataSeries::TYPE_DONUTCHART, + ]; + + /** + * Write Bubble Chart Details. + */ + private function writeBubbles(?DataSeriesValues $plotSeriesValues, XMLWriter $objWriter): void + { + if ($plotSeriesValues === null) { + return; + } + + $objWriter->startElement('c:bubbleSize'); + $objWriter->startElement('c:numLit'); + + $objWriter->startElement('c:formatCode'); + $objWriter->writeRawData('General'); + $objWriter->endElement(); + + $objWriter->startElement('c:ptCount'); + $objWriter->writeAttribute('val', (string) $plotSeriesValues->getPointCount()); + $objWriter->endElement(); + + $dataValues = $plotSeriesValues->getDataValues(); + if (!empty($dataValues)) { + if (is_array($dataValues)) { + foreach ($dataValues as $plotSeriesKey => $plotSeriesValue) { + $objWriter->startElement('c:pt'); + $objWriter->writeAttribute('idx', $plotSeriesKey); + $objWriter->startElement('c:v'); + $objWriter->writeRawData('1'); + $objWriter->endElement(); + $objWriter->endElement(); + } + } + } + + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->startElement('c:bubble3D'); + $objWriter->writeAttribute('val', $plotSeriesValues->getBubble3D() ? '1' : '0'); + $objWriter->endElement(); + } + + /** + * Write Layout. + */ + private function writeLayout(XMLWriter $objWriter, ?Layout $layout = null): void + { + $objWriter->startElement('c:layout'); + + if ($layout !== null) { + $objWriter->startElement('c:manualLayout'); + + $layoutTarget = $layout->getLayoutTarget(); + if ($layoutTarget !== null) { + $objWriter->startElement('c:layoutTarget'); + $objWriter->writeAttribute('val', $layoutTarget); + $objWriter->endElement(); + } + + $xMode = $layout->getXMode(); + if ($xMode !== null) { + $objWriter->startElement('c:xMode'); + $objWriter->writeAttribute('val', $xMode); + $objWriter->endElement(); + } + + $yMode = $layout->getYMode(); + if ($yMode !== null) { + $objWriter->startElement('c:yMode'); + $objWriter->writeAttribute('val', $yMode); + $objWriter->endElement(); + } + + $x = $layout->getXPosition(); + if ($x !== null) { + $objWriter->startElement('c:x'); + $objWriter->writeAttribute('val', "$x"); + $objWriter->endElement(); + } + + $y = $layout->getYPosition(); + if ($y !== null) { + $objWriter->startElement('c:y'); + $objWriter->writeAttribute('val', "$y"); + $objWriter->endElement(); + } + + $w = $layout->getWidth(); + if ($w !== null) { + $objWriter->startElement('c:w'); + $objWriter->writeAttribute('val', "$w"); + $objWriter->endElement(); + } + + $h = $layout->getHeight(); + if ($h !== null) { + $objWriter->startElement('c:h'); + $objWriter->writeAttribute('val', "$h"); + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + + /** + * Write Alternate Content block. + */ + private function writeAlternateContent(XMLWriter $objWriter): void + { + $objWriter->startElement('mc:AlternateContent'); + $objWriter->writeAttribute('xmlns:mc', 'http://schemas.openxmlformats.org/markup-compatibility/2006'); + + $objWriter->startElement('mc:Choice'); + $objWriter->writeAttribute('Requires', 'c14'); + $objWriter->writeAttribute('xmlns:c14', 'http://schemas.microsoft.com/office/drawing/2007/8/2/chart'); + + $objWriter->startElement('c14:style'); + $objWriter->writeAttribute('val', '102'); + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->startElement('mc:Fallback'); + $objWriter->startElement('c:style'); + $objWriter->writeAttribute('val', '2'); + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write Printer Settings. + */ + private function writePrintSettings(XMLWriter $objWriter): void + { + $objWriter->startElement('c:printSettings'); + + $objWriter->startElement('c:headerFooter'); + $objWriter->endElement(); + + $objWriter->startElement('c:pageMargins'); + $objWriter->writeAttribute('footer', '0.3'); + $objWriter->writeAttribute('header', '0.3'); + $objWriter->writeAttribute('r', '0.7'); + $objWriter->writeAttribute('l', '0.7'); + $objWriter->writeAttribute('t', '0.75'); + $objWriter->writeAttribute('b', '0.75'); + $objWriter->endElement(); + + $objWriter->startElement('c:pageSetup'); + $objWriter->writeAttribute('orientation', 'portrait'); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + private function writeEffects(XMLWriter $objWriter, Properties $yAxis): void + { + if ( + !empty($yAxis->getSoftEdgesSize()) + || !empty($yAxis->getShadowProperty('effect')) + || !empty($yAxis->getGlowProperty('size')) + ) { + $objWriter->startElement('a:effectLst'); + $this->writeGlow($objWriter, $yAxis); + $this->writeShadow($objWriter, $yAxis); + $this->writeSoftEdge($objWriter, $yAxis); + $objWriter->endElement(); // effectLst + } + } + + private function writeShadow(XMLWriter $objWriter, Properties $xAxis): void + { + if (empty($xAxis->getShadowProperty('effect'))) { + return; + } + /** @var string */ + $effect = $xAxis->getShadowProperty('effect'); + $objWriter->startElement("a:$effect"); + + if (is_numeric($xAxis->getShadowProperty('blur'))) { + $objWriter->writeAttribute('blurRad', Properties::pointsToXml((float) $xAxis->getShadowProperty('blur'))); + } + if (is_numeric($xAxis->getShadowProperty('distance'))) { + $objWriter->writeAttribute('dist', Properties::pointsToXml((float) $xAxis->getShadowProperty('distance'))); + } + if (is_numeric($xAxis->getShadowProperty('direction'))) { + $objWriter->writeAttribute('dir', Properties::angleToXml((float) $xAxis->getShadowProperty('direction'))); + } + $algn = $xAxis->getShadowProperty('algn'); + if (is_string($algn) && $algn !== '') { + $objWriter->writeAttribute('algn', $algn); + } + foreach (['sx', 'sy'] as $sizeType) { + $sizeValue = $xAxis->getShadowProperty(['size', $sizeType]); + if (is_numeric($sizeValue)) { + $objWriter->writeAttribute($sizeType, Properties::tenthOfPercentToXml((float) $sizeValue)); + } + } + foreach (['kx', 'ky'] as $sizeType) { + $sizeValue = $xAxis->getShadowProperty(['size', $sizeType]); + if (is_numeric($sizeValue)) { + $objWriter->writeAttribute($sizeType, Properties::angleToXml((float) $sizeValue)); + } + } + $rotWithShape = $xAxis->getShadowProperty('rotWithShape'); + if (is_numeric($rotWithShape)) { + $objWriter->writeAttribute('rotWithShape', (string) (int) $rotWithShape); + } + + $this->writeColor($objWriter, $xAxis->getShadowColorObject(), false); + + $objWriter->endElement(); + } + + private function writeGlow(XMLWriter $objWriter, Properties $yAxis): void + { + $size = $yAxis->getGlowProperty('size'); + if (empty($size)) { + return; + } + $objWriter->startElement('a:glow'); + $objWriter->writeAttribute('rad', Properties::pointsToXml((float) $size)); + $this->writeColor($objWriter, $yAxis->getGlowColorObject(), false); + $objWriter->endElement(); // glow + } + + private function writeSoftEdge(XMLWriter $objWriter, Properties $yAxis): void + { + $softEdgeSize = $yAxis->getSoftEdgesSize(); + if (empty($softEdgeSize)) { + return; + } + $objWriter->startElement('a:softEdge'); + $objWriter->writeAttribute('rad', Properties::pointsToXml((float) $softEdgeSize)); + $objWriter->endElement(); //end softEdge + } + + private function writeLineStyles(XMLWriter $objWriter, Properties $gridlines, bool $noFill = false): void + { + $objWriter->startElement('a:ln'); + $widthTemp = $gridlines->getLineStyleProperty('width'); + if (is_numeric($widthTemp)) { + $objWriter->writeAttribute('w', Properties::pointsToXml((float) $widthTemp)); + } + $this->writeNotEmpty($objWriter, 'cap', $gridlines->getLineStyleProperty('cap')); + $this->writeNotEmpty($objWriter, 'cmpd', $gridlines->getLineStyleProperty('compound')); + if ($noFill) { + $objWriter->startElement('a:noFill'); + $objWriter->endElement(); + } else { + $this->writeColor($objWriter, $gridlines->getLineColor()); + } + + $dash = $gridlines->getLineStyleProperty('dash'); + if (!empty($dash)) { + $objWriter->startElement('a:prstDash'); + $this->writeNotEmpty($objWriter, 'val', $dash); + $objWriter->endElement(); + } + + if ($gridlines->getLineStyleProperty('join') === 'miter') { + $objWriter->startElement('a:miter'); + $objWriter->writeAttribute('lim', '800000'); + $objWriter->endElement(); + } elseif ($gridlines->getLineStyleProperty('join') === 'bevel') { + $objWriter->startElement('a:bevel'); + $objWriter->endElement(); + } + + if ($gridlines->getLineStyleProperty(['arrow', 'head', 'type'])) { + $objWriter->startElement('a:headEnd'); + $objWriter->writeAttribute('type', $gridlines->getLineStyleProperty(['arrow', 'head', 'type'])); + $this->writeNotEmpty($objWriter, 'w', $gridlines->getLineStyleArrowWidth('head')); + $this->writeNotEmpty($objWriter, 'len', $gridlines->getLineStyleArrowLength('head')); + $objWriter->endElement(); + } + + if ($gridlines->getLineStyleProperty(['arrow', 'end', 'type'])) { + $objWriter->startElement('a:tailEnd'); + $objWriter->writeAttribute('type', $gridlines->getLineStyleProperty(['arrow', 'end', 'type'])); + $this->writeNotEmpty($objWriter, 'w', $gridlines->getLineStyleArrowWidth('end')); + $this->writeNotEmpty($objWriter, 'len', $gridlines->getLineStyleArrowLength('end')); + $objWriter->endElement(); + } + $objWriter->endElement(); //end ln + } + + private function writeNotEmpty(XMLWriter $objWriter, string $name, ?string $value): void + { + if ($value !== null && $value !== '') { + $objWriter->writeAttribute($name, $value); + } + } + + private function writeColor(XMLWriter $objWriter, ChartColor $chartColor, bool $solidFill = true): void + { + $type = $chartColor->getType(); + $value = $chartColor->getValue(); + if (!empty($type) && !empty($value)) { + if ($solidFill) { + $objWriter->startElement('a:solidFill'); + } + $objWriter->startElement("a:$type"); + $objWriter->writeAttribute('val', $value); + $alpha = $chartColor->getAlpha(); + if (is_numeric($alpha)) { + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', ChartColor::alphaToXml((int) $alpha)); + $objWriter->endElement(); + } + $objWriter->endElement(); //a:srgbClr/schemeClr/prstClr + if ($solidFill) { + $objWriter->endElement(); //a:solidFill + } + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Comments.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Comments.php new file mode 100644 index 0000000..ea0f1fa --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Comments.php @@ -0,0 +1,235 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Comment; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; + +class Comments extends WriterPart +{ + /** + * Write comments to XML format. + * + * @return string XML Output + */ + public function writeComments(\PhpOffice\PhpSpreadsheet\Worksheet\Worksheet $worksheet) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Comments cache + $comments = $worksheet->getComments(); + + // Authors cache + $authors = []; + $authorId = 0; + foreach ($comments as $comment) { + if (!isset($authors[$comment->getAuthor()])) { + $authors[$comment->getAuthor()] = $authorId++; + } + } + + // comments + $objWriter->startElement('comments'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'); + + // Loop through authors + $objWriter->startElement('authors'); + foreach ($authors as $author => $index) { + $objWriter->writeElement('author', $author); + } + $objWriter->endElement(); + + // Loop through comments + $objWriter->startElement('commentList'); + foreach ($comments as $key => $value) { + $this->writeComment($objWriter, $key, $value, $authors); + } + $objWriter->endElement(); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write comment to XML format. + * + * @param string $cellReference Cell reference + * @param Comment $comment Comment + * @param array $authors Array of authors + */ + private function writeComment(XMLWriter $objWriter, $cellReference, Comment $comment, array $authors): void + { + // comment + $objWriter->startElement('comment'); + $objWriter->writeAttribute('ref', $cellReference); + $objWriter->writeAttribute('authorId', $authors[$comment->getAuthor()]); + + // text + $objWriter->startElement('text'); + $this->getParentWriter()->getWriterPartstringtable()->writeRichText($objWriter, $comment->getText()); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write VML comments to XML format. + * + * @return string XML Output + */ + public function writeVMLComments(\PhpOffice\PhpSpreadsheet\Worksheet\Worksheet $worksheet) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Comments cache + $comments = $worksheet->getComments(); + + // xml + $objWriter->startElement('xml'); + $objWriter->writeAttribute('xmlns:v', 'urn:schemas-microsoft-com:vml'); + $objWriter->writeAttribute('xmlns:o', 'urn:schemas-microsoft-com:office:office'); + $objWriter->writeAttribute('xmlns:x', 'urn:schemas-microsoft-com:office:excel'); + + // o:shapelayout + $objWriter->startElement('o:shapelayout'); + $objWriter->writeAttribute('v:ext', 'edit'); + + // o:idmap + $objWriter->startElement('o:idmap'); + $objWriter->writeAttribute('v:ext', 'edit'); + $objWriter->writeAttribute('data', '1'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // v:shapetype + $objWriter->startElement('v:shapetype'); + $objWriter->writeAttribute('id', '_x0000_t202'); + $objWriter->writeAttribute('coordsize', '21600,21600'); + $objWriter->writeAttribute('o:spt', '202'); + $objWriter->writeAttribute('path', 'm,l,21600r21600,l21600,xe'); + + // v:stroke + $objWriter->startElement('v:stroke'); + $objWriter->writeAttribute('joinstyle', 'miter'); + $objWriter->endElement(); + + // v:path + $objWriter->startElement('v:path'); + $objWriter->writeAttribute('gradientshapeok', 't'); + $objWriter->writeAttribute('o:connecttype', 'rect'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // Loop through comments + foreach ($comments as $key => $value) { + $this->writeVMLComment($objWriter, $key, $value); + } + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write VML comment to XML format. + * + * @param string $cellReference Cell reference, eg: 'A1' + * @param Comment $comment Comment + */ + private function writeVMLComment(XMLWriter $objWriter, $cellReference, Comment $comment): void + { + // Metadata + [$column, $row] = Coordinate::indexesFromString($cellReference); + $id = 1024 + $column + $row; + $id = substr($id, 0, 4); + + // v:shape + $objWriter->startElement('v:shape'); + $objWriter->writeAttribute('id', '_x0000_s' . $id); + $objWriter->writeAttribute('type', '#_x0000_t202'); + $objWriter->writeAttribute('style', 'position:absolute;margin-left:' . $comment->getMarginLeft() . ';margin-top:' . $comment->getMarginTop() . ';width:' . $comment->getWidth() . ';height:' . $comment->getHeight() . ';z-index:1;visibility:' . ($comment->getVisible() ? 'visible' : 'hidden')); + $objWriter->writeAttribute('fillcolor', '#' . $comment->getFillColor()->getRGB()); + $objWriter->writeAttribute('o:insetmode', 'auto'); + + // v:fill + $objWriter->startElement('v:fill'); + $objWriter->writeAttribute('color2', '#' . $comment->getFillColor()->getRGB()); + if ($comment->hasBackgroundImage()) { + $bgImage = $comment->getBackgroundImage(); + $objWriter->writeAttribute('o:relid', 'rId' . $bgImage->getImageIndex()); + $objWriter->writeAttribute('o:title', $bgImage->getName()); + $objWriter->writeAttribute('type', 'frame'); + } + $objWriter->endElement(); + + // v:shadow + $objWriter->startElement('v:shadow'); + $objWriter->writeAttribute('on', 't'); + $objWriter->writeAttribute('color', 'black'); + $objWriter->writeAttribute('obscured', 't'); + $objWriter->endElement(); + + // v:path + $objWriter->startElement('v:path'); + $objWriter->writeAttribute('o:connecttype', 'none'); + $objWriter->endElement(); + + // v:textbox + $objWriter->startElement('v:textbox'); + $objWriter->writeAttribute('style', 'mso-direction-alt:auto'); + + // div + $objWriter->startElement('div'); + $objWriter->writeAttribute('style', 'text-align:left'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // x:ClientData + $objWriter->startElement('x:ClientData'); + $objWriter->writeAttribute('ObjectType', 'Note'); + + // x:MoveWithCells + $objWriter->writeElement('x:MoveWithCells', ''); + + // x:SizeWithCells + $objWriter->writeElement('x:SizeWithCells', ''); + + // x:AutoFill + $objWriter->writeElement('x:AutoFill', 'False'); + + // x:Row + $objWriter->writeElement('x:Row', ($row - 1)); + + // x:Column + $objWriter->writeElement('x:Column', ($column - 1)); + + $objWriter->endElement(); + + $objWriter->endElement(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/ContentTypes.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/ContentTypes.php new file mode 100644 index 0000000..acb85b5 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/ContentTypes.php @@ -0,0 +1,265 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +use PhpOffice\PhpSpreadsheet\Shared\File; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\MemoryDrawing; +use PhpOffice\PhpSpreadsheet\Writer\Exception as WriterException; + +class ContentTypes extends WriterPart +{ + /** + * Write content types to XML format. + * + * @param bool $includeCharts Flag indicating if we should include drawing details for charts + * + * @return string XML Output + */ + public function writeContentTypes(Spreadsheet $spreadsheet, $includeCharts = false) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Types + $objWriter->startElement('Types'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/content-types'); + + // Theme + $this->writeOverrideContentType($objWriter, '/xl/theme/theme1.xml', 'application/vnd.openxmlformats-officedocument.theme+xml'); + + // Styles + $this->writeOverrideContentType($objWriter, '/xl/styles.xml', 'application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml'); + + // Rels + $this->writeDefaultContentType($objWriter, 'rels', 'application/vnd.openxmlformats-package.relationships+xml'); + + // XML + $this->writeDefaultContentType($objWriter, 'xml', 'application/xml'); + + // VML + $this->writeDefaultContentType($objWriter, 'vml', 'application/vnd.openxmlformats-officedocument.vmlDrawing'); + + // Workbook + if ($spreadsheet->hasMacros()) { //Macros in workbook ? + // Yes : not standard content but "macroEnabled" + $this->writeOverrideContentType($objWriter, '/xl/workbook.xml', 'application/vnd.ms-excel.sheet.macroEnabled.main+xml'); + //... and define a new type for the VBA project + // Better use Override, because we can use 'bin' also for xl\printerSettings\printerSettings1.bin + $this->writeOverrideContentType($objWriter, '/xl/vbaProject.bin', 'application/vnd.ms-office.vbaProject'); + if ($spreadsheet->hasMacrosCertificate()) { + // signed macros ? + // Yes : add needed information + $this->writeOverrideContentType($objWriter, '/xl/vbaProjectSignature.bin', 'application/vnd.ms-office.vbaProjectSignature'); + } + } else { + // no macros in workbook, so standard type + $this->writeOverrideContentType($objWriter, '/xl/workbook.xml', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml'); + } + + // DocProps + $this->writeOverrideContentType($objWriter, '/docProps/app.xml', 'application/vnd.openxmlformats-officedocument.extended-properties+xml'); + + $this->writeOverrideContentType($objWriter, '/docProps/core.xml', 'application/vnd.openxmlformats-package.core-properties+xml'); + + $customPropertyList = $spreadsheet->getProperties()->getCustomProperties(); + if (!empty($customPropertyList)) { + $this->writeOverrideContentType($objWriter, '/docProps/custom.xml', 'application/vnd.openxmlformats-officedocument.custom-properties+xml'); + } + + // Worksheets + $sheetCount = $spreadsheet->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + $this->writeOverrideContentType($objWriter, '/xl/worksheets/sheet' . ($i + 1) . '.xml', 'application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml'); + } + + // Shared strings + $this->writeOverrideContentType($objWriter, '/xl/sharedStrings.xml', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml'); + + // Table + $table = 1; + for ($i = 0; $i < $sheetCount; ++$i) { + $tableCount = $spreadsheet->getSheet($i)->getTableCollection()->count(); + + for ($t = 1; $t <= $tableCount; ++$t) { + $this->writeOverrideContentType($objWriter, '/xl/tables/table' . $table++ . '.xml', 'application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml'); + } + } + + // Add worksheet relationship content types + $unparsedLoadedData = $spreadsheet->getUnparsedLoadedData(); + $chart = 1; + for ($i = 0; $i < $sheetCount; ++$i) { + $drawings = $spreadsheet->getSheet($i)->getDrawingCollection(); + $drawingCount = count($drawings); + $chartCount = ($includeCharts) ? $spreadsheet->getSheet($i)->getChartCount() : 0; + $hasUnparsedDrawing = isset($unparsedLoadedData['sheets'][$spreadsheet->getSheet($i)->getCodeName()]['drawingOriginalIds']); + + // We need a drawing relationship for the worksheet if we have either drawings or charts + if (($drawingCount > 0) || ($chartCount > 0) || $hasUnparsedDrawing) { + $this->writeOverrideContentType($objWriter, '/xl/drawings/drawing' . ($i + 1) . '.xml', 'application/vnd.openxmlformats-officedocument.drawing+xml'); + } + + // If we have charts, then we need a chart relationship for every individual chart + if ($chartCount > 0) { + for ($c = 0; $c < $chartCount; ++$c) { + $this->writeOverrideContentType($objWriter, '/xl/charts/chart' . $chart++ . '.xml', 'application/vnd.openxmlformats-officedocument.drawingml.chart+xml'); + } + } + } + + // Comments + for ($i = 0; $i < $sheetCount; ++$i) { + if (count($spreadsheet->getSheet($i)->getComments()) > 0) { + $this->writeOverrideContentType($objWriter, '/xl/comments' . ($i + 1) . '.xml', 'application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml'); + } + } + + // Add media content-types + $aMediaContentTypes = []; + $mediaCount = $this->getParentWriter()->getDrawingHashTable()->count(); + for ($i = 0; $i < $mediaCount; ++$i) { + $extension = ''; + $mimeType = ''; + + if ($this->getParentWriter()->getDrawingHashTable()->getByIndex($i) instanceof \PhpOffice\PhpSpreadsheet\Worksheet\Drawing) { + $extension = strtolower($this->getParentWriter()->getDrawingHashTable()->getByIndex($i)->getExtension()); + $mimeType = $this->getImageMimeType($this->getParentWriter()->getDrawingHashTable()->getByIndex($i)->getPath()); + } elseif ($this->getParentWriter()->getDrawingHashTable()->getByIndex($i) instanceof MemoryDrawing) { + $extension = strtolower($this->getParentWriter()->getDrawingHashTable()->getByIndex($i)->getMimeType()); + $extension = explode('/', $extension); + $extension = $extension[1]; + + $mimeType = $this->getParentWriter()->getDrawingHashTable()->getByIndex($i)->getMimeType(); + } + + if (!isset($aMediaContentTypes[$extension])) { + $aMediaContentTypes[$extension] = $mimeType; + + $this->writeDefaultContentType($objWriter, $extension, $mimeType); + } + } + if ($spreadsheet->hasRibbonBinObjects()) { + // Some additional objects in the ribbon ? + // we need to write "Extension" but not already write for media content + $tabRibbonTypes = array_diff($spreadsheet->getRibbonBinObjects('types') ?? [], array_keys($aMediaContentTypes)); + foreach ($tabRibbonTypes as $aRibbonType) { + $mimeType = 'image/.' . $aRibbonType; //we wrote $mimeType like customUI Editor + $this->writeDefaultContentType($objWriter, $aRibbonType, $mimeType); + } + } + $sheetCount = $spreadsheet->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + if (count($spreadsheet->getSheet($i)->getHeaderFooter()->getImages()) > 0) { + foreach ($spreadsheet->getSheet($i)->getHeaderFooter()->getImages() as $image) { + if (!isset($aMediaContentTypes[strtolower($image->getExtension())])) { + $aMediaContentTypes[strtolower($image->getExtension())] = $this->getImageMimeType($image->getPath()); + + $this->writeDefaultContentType($objWriter, strtolower($image->getExtension()), $aMediaContentTypes[strtolower($image->getExtension())]); + } + } + } + + if (count($spreadsheet->getSheet($i)->getComments()) > 0) { + foreach ($spreadsheet->getSheet($i)->getComments() as $comment) { + if (!$comment->hasBackgroundImage()) { + continue; + } + + $bgImage = $comment->getBackgroundImage(); + $bgImageExtentionKey = strtolower($bgImage->getImageFileExtensionForSave(false)); + + if (!isset($aMediaContentTypes[$bgImageExtentionKey])) { + $aMediaContentTypes[$bgImageExtentionKey] = $bgImage->getImageMimeType(); + + $this->writeDefaultContentType($objWriter, $bgImageExtentionKey, $aMediaContentTypes[$bgImageExtentionKey]); + } + } + } + } + + // unparsed defaults + if (isset($unparsedLoadedData['default_content_types'])) { + foreach ($unparsedLoadedData['default_content_types'] as $extName => $contentType) { + $this->writeDefaultContentType($objWriter, $extName, $contentType); + } + } + + // unparsed overrides + if (isset($unparsedLoadedData['override_content_types'])) { + foreach ($unparsedLoadedData['override_content_types'] as $partName => $overrideType) { + $this->writeOverrideContentType($objWriter, $partName, $overrideType); + } + } + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Get image mime type. + * + * @param string $filename Filename + * + * @return string Mime Type + */ + private function getImageMimeType($filename) + { + if (File::fileExists($filename)) { + $image = getimagesize($filename); + + return image_type_to_mime_type((is_array($image) && count($image) >= 3) ? $image[2] : 0); + } + + throw new WriterException("File $filename does not exist"); + } + + /** + * Write Default content type. + * + * @param string $partName Part name + * @param string $contentType Content type + */ + private function writeDefaultContentType(XMLWriter $objWriter, $partName, $contentType): void + { + if ($partName != '' && $contentType != '') { + // Write content type + $objWriter->startElement('Default'); + $objWriter->writeAttribute('Extension', $partName); + $objWriter->writeAttribute('ContentType', $contentType); + $objWriter->endElement(); + } else { + throw new WriterException('Invalid parameters passed.'); + } + } + + /** + * Write Override content type. + * + * @param string $partName Part name + * @param string $contentType Content type + */ + private function writeOverrideContentType(XMLWriter $objWriter, $partName, $contentType): void + { + if ($partName != '' && $contentType != '') { + // Write content type + $objWriter->startElement('Override'); + $objWriter->writeAttribute('PartName', $partName); + $objWriter->writeAttribute('ContentType', $contentType); + $objWriter->endElement(); + } else { + throw new WriterException('Invalid parameters passed.'); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/DefinedNames.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/DefinedNames.php new file mode 100644 index 0000000..b8285fc --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/DefinedNames.php @@ -0,0 +1,242 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +use Exception; +use PhpOffice\PhpSpreadsheet\Calculation\Calculation; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\DefinedName; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class DefinedNames +{ + /** @var XMLWriter */ + private $objWriter; + + /** @var Spreadsheet */ + private $spreadsheet; + + public function __construct(XMLWriter $objWriter, Spreadsheet $spreadsheet) + { + $this->objWriter = $objWriter; + $this->spreadsheet = $spreadsheet; + } + + public function write(): void + { + // Write defined names + $this->objWriter->startElement('definedNames'); + + // Named ranges + if (count($this->spreadsheet->getDefinedNames()) > 0) { + // Named ranges + $this->writeNamedRangesAndFormulae(); + } + + // Other defined names + $sheetCount = $this->spreadsheet->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + // NamedRange for autoFilter + $this->writeNamedRangeForAutofilter($this->spreadsheet->getSheet($i), $i); + + // NamedRange for Print_Titles + $this->writeNamedRangeForPrintTitles($this->spreadsheet->getSheet($i), $i); + + // NamedRange for Print_Area + $this->writeNamedRangeForPrintArea($this->spreadsheet->getSheet($i), $i); + } + + $this->objWriter->endElement(); + } + + /** + * Write defined names. + */ + private function writeNamedRangesAndFormulae(): void + { + // Loop named ranges + $definedNames = $this->spreadsheet->getDefinedNames(); + foreach ($definedNames as $definedName) { + $this->writeDefinedName($definedName); + } + } + + /** + * Write Defined Name for named range. + */ + private function writeDefinedName(DefinedName $definedName): void + { + // definedName for named range + $local = -1; + if ($definedName->getLocalOnly() && $definedName->getScope() !== null) { + try { + $local = $definedName->getScope()->getParent()->getIndex($definedName->getScope()); + } catch (Exception $e) { + // See issue 2266 - deleting sheet which contains + // defined names will cause Exception above. + return; + } + } + $this->objWriter->startElement('definedName'); + $this->objWriter->writeAttribute('name', $definedName->getName()); + if ($local >= 0) { + $this->objWriter->writeAttribute( + 'localSheetId', + "$local" + ); + } + + $definedRange = $this->getDefinedRange($definedName); + + $this->objWriter->writeRawData($definedRange); + + $this->objWriter->endElement(); + } + + /** + * Write Defined Name for autoFilter. + */ + private function writeNamedRangeForAutofilter(Worksheet $worksheet, int $worksheetId = 0): void + { + // NamedRange for autoFilter + $autoFilterRange = $worksheet->getAutoFilter()->getRange(); + if (!empty($autoFilterRange)) { + $this->objWriter->startElement('definedName'); + $this->objWriter->writeAttribute('name', '_xlnm._FilterDatabase'); + $this->objWriter->writeAttribute('localSheetId', "$worksheetId"); + $this->objWriter->writeAttribute('hidden', '1'); + + // Create absolute coordinate and write as raw text + $range = Coordinate::splitRange($autoFilterRange); + $range = $range[0]; + // Strip any worksheet ref so we can make the cell ref absolute + [, $range[0]] = Worksheet::extractSheetTitle($range[0], true); + + $range[0] = Coordinate::absoluteCoordinate($range[0]); + $range[1] = Coordinate::absoluteCoordinate($range[1]); + $range = implode(':', $range); + + $this->objWriter->writeRawData('\'' . str_replace("'", "''", $worksheet->getTitle() ?? '') . '\'!' . $range); + + $this->objWriter->endElement(); + } + } + + /** + * Write Defined Name for PrintTitles. + */ + private function writeNamedRangeForPrintTitles(Worksheet $worksheet, int $worksheetId = 0): void + { + // NamedRange for PrintTitles + if ($worksheet->getPageSetup()->isColumnsToRepeatAtLeftSet() || $worksheet->getPageSetup()->isRowsToRepeatAtTopSet()) { + $this->objWriter->startElement('definedName'); + $this->objWriter->writeAttribute('name', '_xlnm.Print_Titles'); + $this->objWriter->writeAttribute('localSheetId', "$worksheetId"); + + // Setting string + $settingString = ''; + + // Columns to repeat + if ($worksheet->getPageSetup()->isColumnsToRepeatAtLeftSet()) { + $repeat = $worksheet->getPageSetup()->getColumnsToRepeatAtLeft(); + + $settingString .= '\'' . str_replace("'", "''", $worksheet->getTitle()) . '\'!$' . $repeat[0] . ':$' . $repeat[1]; + } + + // Rows to repeat + if ($worksheet->getPageSetup()->isRowsToRepeatAtTopSet()) { + if ($worksheet->getPageSetup()->isColumnsToRepeatAtLeftSet()) { + $settingString .= ','; + } + + $repeat = $worksheet->getPageSetup()->getRowsToRepeatAtTop(); + + $settingString .= '\'' . str_replace("'", "''", $worksheet->getTitle()) . '\'!$' . $repeat[0] . ':$' . $repeat[1]; + } + + $this->objWriter->writeRawData($settingString); + + $this->objWriter->endElement(); + } + } + + /** + * Write Defined Name for PrintTitles. + */ + private function writeNamedRangeForPrintArea(Worksheet $worksheet, int $worksheetId = 0): void + { + // NamedRange for PrintArea + if ($worksheet->getPageSetup()->isPrintAreaSet()) { + $this->objWriter->startElement('definedName'); + $this->objWriter->writeAttribute('name', '_xlnm.Print_Area'); + $this->objWriter->writeAttribute('localSheetId', "$worksheetId"); + + // Print area + $printArea = Coordinate::splitRange($worksheet->getPageSetup()->getPrintArea()); + + $chunks = []; + foreach ($printArea as $printAreaRect) { + $printAreaRect[0] = Coordinate::absoluteReference($printAreaRect[0]); + $printAreaRect[1] = Coordinate::absoluteReference($printAreaRect[1]); + $chunks[] = '\'' . str_replace("'", "''", $worksheet->getTitle()) . '\'!' . implode(':', $printAreaRect); + } + + $this->objWriter->writeRawData(implode(',', $chunks)); + + $this->objWriter->endElement(); + } + } + + private function getDefinedRange(DefinedName $definedName): string + { + $definedRange = $definedName->getValue(); + $splitCount = preg_match_all( + '/' . Calculation::CALCULATION_REGEXP_CELLREF_RELATIVE . '/mui', + $definedRange, + $splitRanges, + PREG_OFFSET_CAPTURE + ); + + $lengths = array_map('strlen', array_column($splitRanges[0], 0)); + $offsets = array_column($splitRanges[0], 1); + + $worksheets = $splitRanges[2]; + $columns = $splitRanges[6]; + $rows = $splitRanges[7]; + + while ($splitCount > 0) { + --$splitCount; + $length = $lengths[$splitCount]; + $offset = $offsets[$splitCount]; + $worksheet = $worksheets[$splitCount][0]; + $column = $columns[$splitCount][0]; + $row = $rows[$splitCount][0]; + + $newRange = ''; + if (empty($worksheet)) { + if (($offset === 0) || ($definedRange[$offset - 1] !== ':')) { + // We should have a worksheet + $ws = $definedName->getWorksheet(); + $worksheet = ($ws === null) ? null : $ws->getTitle(); + } + } else { + $worksheet = str_replace("''", "'", trim($worksheet, "'")); + } + + if (!empty($worksheet)) { + $newRange = "'" . str_replace("'", "''", $worksheet) . "'!"; + } + $newRange = "{$newRange}{$column}{$row}"; + + $definedRange = substr($definedRange, 0, $offset) . $newRange . substr($definedRange, $offset + $length); + } + + if (substr($definedRange, 0, 1) === '=') { + $definedRange = substr($definedRange, 1); + } + + return $definedRange; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/DocProps.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/DocProps.php new file mode 100644 index 0000000..43ce442 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/DocProps.php @@ -0,0 +1,246 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +use PhpOffice\PhpSpreadsheet\Document\Properties; +use PhpOffice\PhpSpreadsheet\Shared\Date; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Spreadsheet; + +class DocProps extends WriterPart +{ + /** + * Write docProps/app.xml to XML format. + * + * @return string XML Output + */ + public function writeDocPropsApp(Spreadsheet $spreadsheet) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Properties + $objWriter->startElement('Properties'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/officeDocument/2006/extended-properties'); + $objWriter->writeAttribute('xmlns:vt', 'http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes'); + + // Application + $objWriter->writeElement('Application', 'Microsoft Excel'); + + // DocSecurity + $objWriter->writeElement('DocSecurity', '0'); + + // ScaleCrop + $objWriter->writeElement('ScaleCrop', 'false'); + + // HeadingPairs + $objWriter->startElement('HeadingPairs'); + + // Vector + $objWriter->startElement('vt:vector'); + $objWriter->writeAttribute('size', '2'); + $objWriter->writeAttribute('baseType', 'variant'); + + // Variant + $objWriter->startElement('vt:variant'); + $objWriter->writeElement('vt:lpstr', 'Worksheets'); + $objWriter->endElement(); + + // Variant + $objWriter->startElement('vt:variant'); + $objWriter->writeElement('vt:i4', $spreadsheet->getSheetCount()); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // TitlesOfParts + $objWriter->startElement('TitlesOfParts'); + + // Vector + $objWriter->startElement('vt:vector'); + $objWriter->writeAttribute('size', $spreadsheet->getSheetCount()); + $objWriter->writeAttribute('baseType', 'lpstr'); + + $sheetCount = $spreadsheet->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + $objWriter->writeElement('vt:lpstr', $spreadsheet->getSheet($i)->getTitle()); + } + + $objWriter->endElement(); + + $objWriter->endElement(); + + // Company + $objWriter->writeElement('Company', $spreadsheet->getProperties()->getCompany()); + + // Company + $objWriter->writeElement('Manager', $spreadsheet->getProperties()->getManager()); + + // LinksUpToDate + $objWriter->writeElement('LinksUpToDate', 'false'); + + // SharedDoc + $objWriter->writeElement('SharedDoc', 'false'); + + // HyperlinksChanged + $objWriter->writeElement('HyperlinksChanged', 'false'); + + // AppVersion + $objWriter->writeElement('AppVersion', '12.0000'); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write docProps/core.xml to XML format. + * + * @return string XML Output + */ + public function writeDocPropsCore(Spreadsheet $spreadsheet) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // cp:coreProperties + $objWriter->startElement('cp:coreProperties'); + $objWriter->writeAttribute('xmlns:cp', 'http://schemas.openxmlformats.org/package/2006/metadata/core-properties'); + $objWriter->writeAttribute('xmlns:dc', 'http://purl.org/dc/elements/1.1/'); + $objWriter->writeAttribute('xmlns:dcterms', 'http://purl.org/dc/terms/'); + $objWriter->writeAttribute('xmlns:dcmitype', 'http://purl.org/dc/dcmitype/'); + $objWriter->writeAttribute('xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance'); + + // dc:creator + $objWriter->writeElement('dc:creator', $spreadsheet->getProperties()->getCreator()); + + // cp:lastModifiedBy + $objWriter->writeElement('cp:lastModifiedBy', $spreadsheet->getProperties()->getLastModifiedBy()); + + // dcterms:created + $objWriter->startElement('dcterms:created'); + $objWriter->writeAttribute('xsi:type', 'dcterms:W3CDTF'); + $created = $spreadsheet->getProperties()->getCreated(); + $date = Date::dateTimeFromTimestamp("$created"); + $objWriter->writeRawData($date->format(DATE_W3C)); + $objWriter->endElement(); + + // dcterms:modified + $objWriter->startElement('dcterms:modified'); + $objWriter->writeAttribute('xsi:type', 'dcterms:W3CDTF'); + $created = $spreadsheet->getProperties()->getModified(); + $date = Date::dateTimeFromTimestamp("$created"); + $objWriter->writeRawData($date->format(DATE_W3C)); + $objWriter->endElement(); + + // dc:title + $objWriter->writeElement('dc:title', $spreadsheet->getProperties()->getTitle()); + + // dc:description + $objWriter->writeElement('dc:description', $spreadsheet->getProperties()->getDescription()); + + // dc:subject + $objWriter->writeElement('dc:subject', $spreadsheet->getProperties()->getSubject()); + + // cp:keywords + $objWriter->writeElement('cp:keywords', $spreadsheet->getProperties()->getKeywords()); + + // cp:category + $objWriter->writeElement('cp:category', $spreadsheet->getProperties()->getCategory()); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write docProps/custom.xml to XML format. + * + * @return null|string XML Output + */ + public function writeDocPropsCustom(Spreadsheet $spreadsheet) + { + $customPropertyList = $spreadsheet->getProperties()->getCustomProperties(); + if (empty($customPropertyList)) { + return null; + } + + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // cp:coreProperties + $objWriter->startElement('Properties'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/officeDocument/2006/custom-properties'); + $objWriter->writeAttribute('xmlns:vt', 'http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes'); + + foreach ($customPropertyList as $key => $customProperty) { + $propertyValue = $spreadsheet->getProperties()->getCustomPropertyValue($customProperty); + $propertyType = $spreadsheet->getProperties()->getCustomPropertyType($customProperty); + + $objWriter->startElement('property'); + $objWriter->writeAttribute('fmtid', '{D5CDD505-2E9C-101B-9397-08002B2CF9AE}'); + $objWriter->writeAttribute('pid', $key + 2); + $objWriter->writeAttribute('name', $customProperty); + + switch ($propertyType) { + case Properties::PROPERTY_TYPE_INTEGER: + $objWriter->writeElement('vt:i4', $propertyValue); + + break; + case Properties::PROPERTY_TYPE_FLOAT: + $objWriter->writeElement('vt:r8', $propertyValue); + + break; + case Properties::PROPERTY_TYPE_BOOLEAN: + $objWriter->writeElement('vt:bool', ($propertyValue) ? 'true' : 'false'); + + break; + case Properties::PROPERTY_TYPE_DATE: + $objWriter->startElement('vt:filetime'); + $date = Date::dateTimeFromTimestamp("$propertyValue"); + $objWriter->writeRawData($date->format(DATE_W3C)); + $objWriter->endElement(); + + break; + default: + $objWriter->writeElement('vt:lpwstr', $propertyValue); + + break; + } + + $objWriter->endElement(); + } + + $objWriter->endElement(); + + return $objWriter->getData(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Drawing.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Drawing.php new file mode 100644 index 0000000..7693c72 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Drawing.php @@ -0,0 +1,570 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Shared\Drawing as SharedDrawing; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\BaseDrawing; +use PhpOffice\PhpSpreadsheet\Worksheet\HeaderFooterDrawing; +use PhpOffice\PhpSpreadsheet\Writer\Exception as WriterException; + +class Drawing extends WriterPart +{ + /** + * Write drawings to XML format. + * + * @param bool $includeCharts Flag indicating if we should include drawing details for charts + * + * @return string XML Output + */ + public function writeDrawings(\PhpOffice\PhpSpreadsheet\Worksheet\Worksheet $worksheet, $includeCharts = false) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // xdr:wsDr + $objWriter->startElement('xdr:wsDr'); + $objWriter->writeAttribute('xmlns:xdr', 'http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing'); + $objWriter->writeAttribute('xmlns:a', 'http://schemas.openxmlformats.org/drawingml/2006/main'); + + // Loop through images and write drawings + $i = 1; + $iterator = $worksheet->getDrawingCollection()->getIterator(); + while ($iterator->valid()) { + /** @var BaseDrawing $pDrawing */ + $pDrawing = $iterator->current(); + $pRelationId = $i; + $hlinkClickId = $pDrawing->getHyperlink() === null ? null : ++$i; + + $this->writeDrawing($objWriter, $pDrawing, $pRelationId, $hlinkClickId); + + $iterator->next(); + ++$i; + } + + if ($includeCharts) { + $chartCount = $worksheet->getChartCount(); + // Loop through charts and write the chart position + if ($chartCount > 0) { + for ($c = 0; $c < $chartCount; ++$c) { + $chart = $worksheet->getChartByIndex((string) $c); + if ($chart !== false) { + $this->writeChart($objWriter, $chart, $c + $i); + } + } + } + } + + // unparsed AlternateContent + $unparsedLoadedData = $worksheet->getParent()->getUnparsedLoadedData(); + if (isset($unparsedLoadedData['sheets'][$worksheet->getCodeName()]['drawingAlternateContents'])) { + foreach ($unparsedLoadedData['sheets'][$worksheet->getCodeName()]['drawingAlternateContents'] as $drawingAlternateContent) { + $objWriter->writeRaw($drawingAlternateContent); + } + } + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write drawings to XML format. + * + * @param int $relationId + */ + public function writeChart(XMLWriter $objWriter, \PhpOffice\PhpSpreadsheet\Chart\Chart $chart, $relationId = -1): void + { + $tl = $chart->getTopLeftPosition(); + $tlColRow = Coordinate::indexesFromString($tl['cell']); + $br = $chart->getBottomRightPosition(); + + $isTwoCellAnchor = $br['cell'] !== ''; + if ($isTwoCellAnchor) { + $brColRow = Coordinate::indexesFromString($br['cell']); + + $objWriter->startElement('xdr:twoCellAnchor'); + + $objWriter->startElement('xdr:from'); + $objWriter->writeElement('xdr:col', (string) ($tlColRow[0] - 1)); + $objWriter->writeElement('xdr:colOff', self::stringEmu($tl['xOffset'])); + $objWriter->writeElement('xdr:row', (string) ($tlColRow[1] - 1)); + $objWriter->writeElement('xdr:rowOff', self::stringEmu($tl['yOffset'])); + $objWriter->endElement(); + $objWriter->startElement('xdr:to'); + $objWriter->writeElement('xdr:col', (string) ($brColRow[0] - 1)); + $objWriter->writeElement('xdr:colOff', self::stringEmu($br['xOffset'])); + $objWriter->writeElement('xdr:row', (string) ($brColRow[1] - 1)); + $objWriter->writeElement('xdr:rowOff', self::stringEmu($br['yOffset'])); + $objWriter->endElement(); + } elseif ($chart->getOneCellAnchor()) { + $objWriter->startElement('xdr:oneCellAnchor'); + + $objWriter->startElement('xdr:from'); + $objWriter->writeElement('xdr:col', (string) ($tlColRow[0] - 1)); + $objWriter->writeElement('xdr:colOff', self::stringEmu($tl['xOffset'])); + $objWriter->writeElement('xdr:row', (string) ($tlColRow[1] - 1)); + $objWriter->writeElement('xdr:rowOff', self::stringEmu($tl['yOffset'])); + $objWriter->endElement(); + $objWriter->startElement('xdr:ext'); + $objWriter->writeAttribute('cx', self::stringEmu($br['xOffset'])); + $objWriter->writeAttribute('cy', self::stringEmu($br['yOffset'])); + $objWriter->endElement(); + } else { + $objWriter->startElement('xdr:absoluteAnchor'); + $objWriter->startElement('xdr:pos'); + $objWriter->writeAttribute('x', '0'); + $objWriter->writeAttribute('y', '0'); + $objWriter->endElement(); + $objWriter->startElement('xdr:ext'); + $objWriter->writeAttribute('cx', self::stringEmu($br['xOffset'])); + $objWriter->writeAttribute('cy', self::stringEmu($br['yOffset'])); + $objWriter->endElement(); + } + + $objWriter->startElement('xdr:graphicFrame'); + $objWriter->writeAttribute('macro', ''); + $objWriter->startElement('xdr:nvGraphicFramePr'); + $objWriter->startElement('xdr:cNvPr'); + $objWriter->writeAttribute('name', 'Chart ' . $relationId); + $objWriter->writeAttribute('id', (string) (1025 * $relationId)); + $objWriter->endElement(); + $objWriter->startElement('xdr:cNvGraphicFramePr'); + $objWriter->startElement('a:graphicFrameLocks'); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->startElement('xdr:xfrm'); + $objWriter->startElement('a:off'); + $objWriter->writeAttribute('x', '0'); + $objWriter->writeAttribute('y', '0'); + $objWriter->endElement(); + $objWriter->startElement('a:ext'); + $objWriter->writeAttribute('cx', '0'); + $objWriter->writeAttribute('cy', '0'); + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->startElement('a:graphic'); + $objWriter->startElement('a:graphicData'); + $objWriter->writeAttribute('uri', 'http://schemas.openxmlformats.org/drawingml/2006/chart'); + $objWriter->startElement('c:chart'); + $objWriter->writeAttribute('xmlns:c', 'http://schemas.openxmlformats.org/drawingml/2006/chart'); + $objWriter->writeAttribute('xmlns:r', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships'); + $objWriter->writeAttribute('r:id', 'rId' . $relationId); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); + + $objWriter->startElement('xdr:clientData'); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write drawings to XML format. + * + * @param int $relationId + * @param null|int $hlinkClickId + */ + public function writeDrawing(XMLWriter $objWriter, BaseDrawing $drawing, $relationId = -1, $hlinkClickId = null): void + { + if ($relationId >= 0) { + $isTwoCellAnchor = $drawing->getCoordinates2() !== ''; + if ($isTwoCellAnchor) { + // xdr:twoCellAnchor + $objWriter->startElement('xdr:twoCellAnchor'); + if ($drawing->validEditAs()) { + $objWriter->writeAttribute('editAs', $drawing->getEditAs()); + } + // Image location + $aCoordinates = Coordinate::indexesFromString($drawing->getCoordinates()); + $aCoordinates2 = Coordinate::indexesFromString($drawing->getCoordinates2()); + + // xdr:from + $objWriter->startElement('xdr:from'); + $objWriter->writeElement('xdr:col', (string) ($aCoordinates[0] - 1)); + $objWriter->writeElement('xdr:colOff', self::stringEmu($drawing->getOffsetX())); + $objWriter->writeElement('xdr:row', (string) ($aCoordinates[1] - 1)); + $objWriter->writeElement('xdr:rowOff', self::stringEmu($drawing->getOffsetY())); + $objWriter->endElement(); + + // xdr:to + $objWriter->startElement('xdr:to'); + $objWriter->writeElement('xdr:col', (string) ($aCoordinates2[0] - 1)); + $objWriter->writeElement('xdr:colOff', self::stringEmu($drawing->getOffsetX2())); + $objWriter->writeElement('xdr:row', (string) ($aCoordinates2[1] - 1)); + $objWriter->writeElement('xdr:rowOff', self::stringEmu($drawing->getOffsetY2())); + $objWriter->endElement(); + } else { + // xdr:oneCellAnchor + $objWriter->startElement('xdr:oneCellAnchor'); + // Image location + $aCoordinates = Coordinate::indexesFromString($drawing->getCoordinates()); + + // xdr:from + $objWriter->startElement('xdr:from'); + $objWriter->writeElement('xdr:col', (string) ($aCoordinates[0] - 1)); + $objWriter->writeElement('xdr:colOff', self::stringEmu($drawing->getOffsetX())); + $objWriter->writeElement('xdr:row', (string) ($aCoordinates[1] - 1)); + $objWriter->writeElement('xdr:rowOff', self::stringEmu($drawing->getOffsetY())); + $objWriter->endElement(); + + // xdr:ext + $objWriter->startElement('xdr:ext'); + $objWriter->writeAttribute('cx', self::stringEmu($drawing->getWidth())); + $objWriter->writeAttribute('cy', self::stringEmu($drawing->getHeight())); + $objWriter->endElement(); + } + + // xdr:pic + $objWriter->startElement('xdr:pic'); + + // xdr:nvPicPr + $objWriter->startElement('xdr:nvPicPr'); + + // xdr:cNvPr + $objWriter->startElement('xdr:cNvPr'); + $objWriter->writeAttribute('id', (string) $relationId); + $objWriter->writeAttribute('name', $drawing->getName()); + $objWriter->writeAttribute('descr', $drawing->getDescription()); + + //a:hlinkClick + $this->writeHyperLinkDrawing($objWriter, $hlinkClickId); + + $objWriter->endElement(); + + // xdr:cNvPicPr + $objWriter->startElement('xdr:cNvPicPr'); + + // a:picLocks + $objWriter->startElement('a:picLocks'); + $objWriter->writeAttribute('noChangeAspect', '1'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // xdr:blipFill + $objWriter->startElement('xdr:blipFill'); + + // a:blip + $objWriter->startElement('a:blip'); + $objWriter->writeAttribute('xmlns:r', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships'); + $objWriter->writeAttribute('r:embed', 'rId' . $relationId); + $objWriter->endElement(); + + // a:stretch + $objWriter->startElement('a:stretch'); + $objWriter->writeElement('a:fillRect', null); + $objWriter->endElement(); + + $objWriter->endElement(); + + // xdr:spPr + $objWriter->startElement('xdr:spPr'); + + // a:xfrm + $objWriter->startElement('a:xfrm'); + $objWriter->writeAttribute('rot', (string) SharedDrawing::degreesToAngle($drawing->getRotation())); + if ($isTwoCellAnchor) { + $objWriter->startElement('a:ext'); + $objWriter->writeAttribute('cx', self::stringEmu($drawing->getWidth())); + $objWriter->writeAttribute('cy', self::stringEmu($drawing->getHeight())); + $objWriter->endElement(); + } + $objWriter->endElement(); + + // a:prstGeom + $objWriter->startElement('a:prstGeom'); + $objWriter->writeAttribute('prst', 'rect'); + + // a:avLst + $objWriter->writeElement('a:avLst', null); + + $objWriter->endElement(); + + if ($drawing->getShadow()->getVisible()) { + // a:effectLst + $objWriter->startElement('a:effectLst'); + + // a:outerShdw + $objWriter->startElement('a:outerShdw'); + $objWriter->writeAttribute('blurRad', self::stringEmu($drawing->getShadow()->getBlurRadius())); + $objWriter->writeAttribute('dist', self::stringEmu($drawing->getShadow()->getDistance())); + $objWriter->writeAttribute('dir', (string) SharedDrawing::degreesToAngle($drawing->getShadow()->getDirection())); + $objWriter->writeAttribute('algn', $drawing->getShadow()->getAlignment()); + $objWriter->writeAttribute('rotWithShape', '0'); + + // a:srgbClr + $objWriter->startElement('a:srgbClr'); + $objWriter->writeAttribute('val', $drawing->getShadow()->getColor()->getRGB()); + + // a:alpha + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', (string) ($drawing->getShadow()->getAlpha() * 1000)); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + } + $objWriter->endElement(); + + $objWriter->endElement(); + + // xdr:clientData + $objWriter->writeElement('xdr:clientData', null); + + $objWriter->endElement(); + } else { + throw new WriterException('Invalid parameters passed.'); + } + } + + /** + * Write VML header/footer images to XML format. + * + * @return string XML Output + */ + public function writeVMLHeaderFooterImages(\PhpOffice\PhpSpreadsheet\Worksheet\Worksheet $worksheet) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Header/footer images + $images = $worksheet->getHeaderFooter()->getImages(); + + // xml + $objWriter->startElement('xml'); + $objWriter->writeAttribute('xmlns:v', 'urn:schemas-microsoft-com:vml'); + $objWriter->writeAttribute('xmlns:o', 'urn:schemas-microsoft-com:office:office'); + $objWriter->writeAttribute('xmlns:x', 'urn:schemas-microsoft-com:office:excel'); + + // o:shapelayout + $objWriter->startElement('o:shapelayout'); + $objWriter->writeAttribute('v:ext', 'edit'); + + // o:idmap + $objWriter->startElement('o:idmap'); + $objWriter->writeAttribute('v:ext', 'edit'); + $objWriter->writeAttribute('data', '1'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // v:shapetype + $objWriter->startElement('v:shapetype'); + $objWriter->writeAttribute('id', '_x0000_t75'); + $objWriter->writeAttribute('coordsize', '21600,21600'); + $objWriter->writeAttribute('o:spt', '75'); + $objWriter->writeAttribute('o:preferrelative', 't'); + $objWriter->writeAttribute('path', 'm@4@5l@4@11@9@11@9@5xe'); + $objWriter->writeAttribute('filled', 'f'); + $objWriter->writeAttribute('stroked', 'f'); + + // v:stroke + $objWriter->startElement('v:stroke'); + $objWriter->writeAttribute('joinstyle', 'miter'); + $objWriter->endElement(); + + // v:formulas + $objWriter->startElement('v:formulas'); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'if lineDrawn pixelLineWidth 0'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'sum @0 1 0'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'sum 0 0 @1'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'prod @2 1 2'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'prod @3 21600 pixelWidth'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'prod @3 21600 pixelHeight'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'sum @0 0 1'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'prod @6 1 2'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'prod @7 21600 pixelWidth'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'sum @8 21600 0'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'prod @7 21600 pixelHeight'); + $objWriter->endElement(); + + // v:f + $objWriter->startElement('v:f'); + $objWriter->writeAttribute('eqn', 'sum @10 21600 0'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // v:path + $objWriter->startElement('v:path'); + $objWriter->writeAttribute('o:extrusionok', 'f'); + $objWriter->writeAttribute('gradientshapeok', 't'); + $objWriter->writeAttribute('o:connecttype', 'rect'); + $objWriter->endElement(); + + // o:lock + $objWriter->startElement('o:lock'); + $objWriter->writeAttribute('v:ext', 'edit'); + $objWriter->writeAttribute('aspectratio', 't'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // Loop through images + foreach ($images as $key => $value) { + $this->writeVMLHeaderFooterImage($objWriter, $key, $value); + } + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write VML comment to XML format. + * + * @param string $reference Reference + */ + private function writeVMLHeaderFooterImage(XMLWriter $objWriter, $reference, HeaderFooterDrawing $image): void + { + // Calculate object id + preg_match('{(\d+)}', md5($reference), $m); + $id = 1500 + ((int) substr($m[1], 0, 2) * 1); + + // Calculate offset + $width = $image->getWidth(); + $height = $image->getHeight(); + $marginLeft = $image->getOffsetX(); + $marginTop = $image->getOffsetY(); + + // v:shape + $objWriter->startElement('v:shape'); + $objWriter->writeAttribute('id', $reference); + $objWriter->writeAttribute('o:spid', '_x0000_s' . $id); + $objWriter->writeAttribute('type', '#_x0000_t75'); + $objWriter->writeAttribute('style', "position:absolute;margin-left:{$marginLeft}px;margin-top:{$marginTop}px;width:{$width}px;height:{$height}px;z-index:1"); + + // v:imagedata + $objWriter->startElement('v:imagedata'); + $objWriter->writeAttribute('o:relid', 'rId' . $reference); + $objWriter->writeAttribute('o:title', $image->getName()); + $objWriter->endElement(); + + // o:lock + $objWriter->startElement('o:lock'); + $objWriter->writeAttribute('v:ext', 'edit'); + $objWriter->writeAttribute('textRotation', 't'); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Get an array of all drawings. + * + * @return BaseDrawing[] All drawings in PhpSpreadsheet + */ + public function allDrawings(Spreadsheet $spreadsheet) + { + // Get an array of all drawings + $aDrawings = []; + + // Loop through PhpSpreadsheet + $sheetCount = $spreadsheet->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + // Loop through images and add to array + $iterator = $spreadsheet->getSheet($i)->getDrawingCollection()->getIterator(); + while ($iterator->valid()) { + $aDrawings[] = $iterator->current(); + + $iterator->next(); + } + } + + return $aDrawings; + } + + /** + * @param null|int $hlinkClickId + */ + private function writeHyperLinkDrawing(XMLWriter $objWriter, $hlinkClickId): void + { + if ($hlinkClickId === null) { + return; + } + + $objWriter->startElement('a:hlinkClick'); + $objWriter->writeAttribute('xmlns:r', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships'); + $objWriter->writeAttribute('r:id', 'rId' . $hlinkClickId); + $objWriter->endElement(); + } + + private static function stringEmu(int $pixelValue): string + { + return (string) SharedDrawing::pixelsToEMU($pixelValue); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Rels.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Rels.php new file mode 100644 index 0000000..238fb5b --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Rels.php @@ -0,0 +1,492 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Worksheet\BaseDrawing; +use PhpOffice\PhpSpreadsheet\Worksheet\MemoryDrawing; +use PhpOffice\PhpSpreadsheet\Writer\Exception as WriterException; + +class Rels extends WriterPart +{ + /** + * Write relationships to XML format. + * + * @return string XML Output + */ + public function writeRelationships(Spreadsheet $spreadsheet) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Relationships + $objWriter->startElement('Relationships'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships'); + + $customPropertyList = $spreadsheet->getProperties()->getCustomProperties(); + if (!empty($customPropertyList)) { + // Relationship docProps/app.xml + $this->writeRelationship( + $objWriter, + 4, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties', + 'docProps/custom.xml' + ); + } + + // Relationship docProps/app.xml + $this->writeRelationship( + $objWriter, + 3, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties', + 'docProps/app.xml' + ); + + // Relationship docProps/core.xml + $this->writeRelationship( + $objWriter, + 2, + 'http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties', + 'docProps/core.xml' + ); + + // Relationship xl/workbook.xml + $this->writeRelationship( + $objWriter, + 1, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument', + 'xl/workbook.xml' + ); + // a custom UI in workbook ? + if ($spreadsheet->hasRibbon()) { + $this->writeRelationShip( + $objWriter, + 5, + 'http://schemas.microsoft.com/office/2006/relationships/ui/extensibility', + $spreadsheet->getRibbonXMLData('target') + ); + } + + $objWriter->endElement(); + + return $objWriter->getData(); + } + + /** + * Write workbook relationships to XML format. + * + * @return string XML Output + */ + public function writeWorkbookRelationships(Spreadsheet $spreadsheet) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Relationships + $objWriter->startElement('Relationships'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships'); + + // Relationship styles.xml + $this->writeRelationship( + $objWriter, + 1, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles', + 'styles.xml' + ); + + // Relationship theme/theme1.xml + $this->writeRelationship( + $objWriter, + 2, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme', + 'theme/theme1.xml' + ); + + // Relationship sharedStrings.xml + $this->writeRelationship( + $objWriter, + 3, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings', + 'sharedStrings.xml' + ); + + // Relationships with sheets + $sheetCount = $spreadsheet->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + $this->writeRelationship( + $objWriter, + ($i + 1 + 3), + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet', + 'worksheets/sheet' . ($i + 1) . '.xml' + ); + } + // Relationships for vbaProject if needed + // id : just after the last sheet + if ($spreadsheet->hasMacros()) { + $this->writeRelationShip( + $objWriter, + ($i + 1 + 3), + 'http://schemas.microsoft.com/office/2006/relationships/vbaProject', + 'vbaProject.bin' + ); + ++$i; //increment i if needed for an another relation + } + + $objWriter->endElement(); + + return $objWriter->getData(); + } + + /** + * Write worksheet relationships to XML format. + * + * Numbering is as follows: + * rId1 - Drawings + * rId_hyperlink_x - Hyperlinks + * + * @param int $worksheetId + * @param bool $includeCharts Flag indicating if we should write charts + * @param int $tableRef Table ID + * + * @return string XML Output + */ + public function writeWorksheetRelationships(\PhpOffice\PhpSpreadsheet\Worksheet\Worksheet $worksheet, $worksheetId = 1, $includeCharts = false, $tableRef = 1) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Relationships + $objWriter->startElement('Relationships'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships'); + + // Write drawing relationships? + $drawingOriginalIds = []; + $unparsedLoadedData = $worksheet->getParent()->getUnparsedLoadedData(); + if (isset($unparsedLoadedData['sheets'][$worksheet->getCodeName()]['drawingOriginalIds'])) { + $drawingOriginalIds = $unparsedLoadedData['sheets'][$worksheet->getCodeName()]['drawingOriginalIds']; + } + + if ($includeCharts) { + $charts = $worksheet->getChartCollection(); + } else { + $charts = []; + } + + if (($worksheet->getDrawingCollection()->count() > 0) || (count($charts) > 0) || $drawingOriginalIds) { + $rId = 1; + + // Use original $relPath to get original $rId. + // Take first. In future can be overwritten. + // (! synchronize with \PhpOffice\PhpSpreadsheet\Writer\Xlsx\Worksheet::writeDrawings) + reset($drawingOriginalIds); + $relPath = key($drawingOriginalIds); + if (isset($drawingOriginalIds[$relPath])) { + $rId = (int) (substr($drawingOriginalIds[$relPath], 3)); + } + + // Generate new $relPath to write drawing relationship + $relPath = '../drawings/drawing' . $worksheetId . '.xml'; + $this->writeRelationship( + $objWriter, + $rId, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/drawing', + $relPath + ); + } + + // Write hyperlink relationships? + $i = 1; + foreach ($worksheet->getHyperlinkCollection() as $hyperlink) { + if (!$hyperlink->isInternal()) { + $this->writeRelationship( + $objWriter, + '_hyperlink_' . $i, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink', + $hyperlink->getUrl(), + 'External' + ); + + ++$i; + } + } + + // Write comments relationship? + $i = 1; + if (count($worksheet->getComments()) > 0) { + $this->writeRelationship( + $objWriter, + '_comments_vml' . $i, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing', + '../drawings/vmlDrawing' . $worksheetId . '.vml' + ); + + $this->writeRelationship( + $objWriter, + '_comments' . $i, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments', + '../comments' . $worksheetId . '.xml' + ); + } + + // Write Table + $tableCount = $worksheet->getTableCollection()->count(); + for ($i = 1; $i <= $tableCount; ++$i) { + $this->writeRelationship( + $objWriter, + '_table_' . $i, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/table', + '../tables/table' . $tableRef++ . '.xml' + ); + } + + // Write header/footer relationship? + $i = 1; + if (count($worksheet->getHeaderFooter()->getImages()) > 0) { + $this->writeRelationship( + $objWriter, + '_headerfooter_vml' . $i, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing', + '../drawings/vmlDrawingHF' . $worksheetId . '.vml' + ); + } + + $this->writeUnparsedRelationship($worksheet, $objWriter, 'ctrlProps', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/ctrlProp'); + $this->writeUnparsedRelationship($worksheet, $objWriter, 'vmlDrawings', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing'); + $this->writeUnparsedRelationship($worksheet, $objWriter, 'printerSettings', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/printerSettings'); + + $objWriter->endElement(); + + return $objWriter->getData(); + } + + private function writeUnparsedRelationship(\PhpOffice\PhpSpreadsheet\Worksheet\Worksheet $worksheet, XMLWriter $objWriter, $relationship, $type): void + { + $unparsedLoadedData = $worksheet->getParent()->getUnparsedLoadedData(); + if (!isset($unparsedLoadedData['sheets'][$worksheet->getCodeName()][$relationship])) { + return; + } + + foreach ($unparsedLoadedData['sheets'][$worksheet->getCodeName()][$relationship] as $rId => $value) { + $this->writeRelationship( + $objWriter, + $rId, + $type, + $value['relFilePath'] + ); + } + } + + /** + * Write drawing relationships to XML format. + * + * @param int $chartRef Chart ID + * @param bool $includeCharts Flag indicating if we should write charts + * + * @return string XML Output + */ + public function writeDrawingRelationships(\PhpOffice\PhpSpreadsheet\Worksheet\Worksheet $worksheet, &$chartRef, $includeCharts = false) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Relationships + $objWriter->startElement('Relationships'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships'); + + // Loop through images and write relationships + $i = 1; + $iterator = $worksheet->getDrawingCollection()->getIterator(); + while ($iterator->valid()) { + $drawing = $iterator->current(); + if ( + $drawing instanceof \PhpOffice\PhpSpreadsheet\Worksheet\Drawing + || $drawing instanceof MemoryDrawing + ) { + // Write relationship for image drawing + $this->writeRelationship( + $objWriter, + $i, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image', + '../media/' . $drawing->getIndexedFilename() + ); + + $i = $this->writeDrawingHyperLink($objWriter, $drawing, $i); + } + + $iterator->next(); + ++$i; + } + + if ($includeCharts) { + // Loop through charts and write relationships + $chartCount = $worksheet->getChartCount(); + if ($chartCount > 0) { + for ($c = 0; $c < $chartCount; ++$c) { + $this->writeRelationship( + $objWriter, + $i++, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart', + '../charts/chart' . ++$chartRef . '.xml' + ); + } + } + } + + $objWriter->endElement(); + + return $objWriter->getData(); + } + + /** + * Write header/footer drawing relationships to XML format. + * + * @return string XML Output + */ + public function writeHeaderFooterDrawingRelationships(\PhpOffice\PhpSpreadsheet\Worksheet\Worksheet $worksheet) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Relationships + $objWriter->startElement('Relationships'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships'); + + // Loop through images and write relationships + foreach ($worksheet->getHeaderFooter()->getImages() as $key => $value) { + // Write relationship for image drawing + $this->writeRelationship( + $objWriter, + $key, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image', + '../media/' . $value->getIndexedFilename() + ); + } + + $objWriter->endElement(); + + return $objWriter->getData(); + } + + public function writeVMLDrawingRelationships(\PhpOffice\PhpSpreadsheet\Worksheet\Worksheet $worksheet): string + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Relationships + $objWriter->startElement('Relationships'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships'); + + // Loop through images and write relationships + foreach ($worksheet->getComments() as $comment) { + if (!$comment->hasBackgroundImage()) { + continue; + } + + $bgImage = $comment->getBackgroundImage(); + $this->writeRelationship( + $objWriter, + $bgImage->getImageIndex(), + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image', + '../media/' . $bgImage->getMediaFilename() + ); + } + + $objWriter->endElement(); + + return $objWriter->getData(); + } + + /** + * Write Override content type. + * + * @param int $id Relationship ID. rId will be prepended! + * @param string $type Relationship type + * @param string $target Relationship target + * @param string $targetMode Relationship target mode + */ + private function writeRelationship(XMLWriter $objWriter, $id, $type, $target, $targetMode = ''): void + { + if ($type != '' && $target != '') { + // Write relationship + $objWriter->startElement('Relationship'); + $objWriter->writeAttribute('Id', 'rId' . $id); + $objWriter->writeAttribute('Type', $type); + $objWriter->writeAttribute('Target', $target); + + if ($targetMode != '') { + $objWriter->writeAttribute('TargetMode', $targetMode); + } + + $objWriter->endElement(); + } else { + throw new WriterException('Invalid parameters passed.'); + } + } + + private function writeDrawingHyperLink(XMLWriter $objWriter, BaseDrawing $drawing, int $i): int + { + if ($drawing->getHyperlink() === null) { + return $i; + } + + ++$i; + $this->writeRelationship( + $objWriter, + $i, + 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink', + $drawing->getHyperlink()->getUrl(), + $drawing->getHyperlink()->getTypeHyperlink() + ); + + return $i; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/RelsRibbon.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/RelsRibbon.php new file mode 100644 index 0000000..8005207 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/RelsRibbon.php @@ -0,0 +1,45 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Spreadsheet; + +class RelsRibbon extends WriterPart +{ + /** + * Write relationships for additional objects of custom UI (ribbon). + * + * @return string XML Output + */ + public function writeRibbonRelationships(Spreadsheet $spreadsheet) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Relationships + $objWriter->startElement('Relationships'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships'); + $localRels = $spreadsheet->getRibbonBinObjects('names'); + if (is_array($localRels)) { + foreach ($localRels as $aId => $aTarget) { + $objWriter->startElement('Relationship'); + $objWriter->writeAttribute('Id', $aId); + $objWriter->writeAttribute('Type', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image'); + $objWriter->writeAttribute('Target', $aTarget); + $objWriter->endElement(); + } + } + $objWriter->endElement(); + + return $objWriter->getData(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/RelsVBA.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/RelsVBA.php new file mode 100644 index 0000000..55bcd36 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/RelsVBA.php @@ -0,0 +1,40 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Spreadsheet; + +class RelsVBA extends WriterPart +{ + /** + * Write relationships for a signed VBA Project. + * + * @return string XML Output + */ + public function writeVBARelationships(Spreadsheet $spreadsheet) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Relationships + $objWriter->startElement('Relationships'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships'); + $objWriter->startElement('Relationship'); + $objWriter->writeAttribute('Id', 'rId1'); + $objWriter->writeAttribute('Type', 'http://schemas.microsoft.com/office/2006/relationships/vbaProjectSignature'); + $objWriter->writeAttribute('Target', 'vbaProjectSignature.bin'); + $objWriter->endElement(); + $objWriter->endElement(); + + return $objWriter->getData(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/StringTable.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/StringTable.php new file mode 100644 index 0000000..8b293bc --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/StringTable.php @@ -0,0 +1,337 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\DataType; +use PhpOffice\PhpSpreadsheet\Chart\ChartColor; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\RichText\Run; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; + +class StringTable extends WriterPart +{ + /** + * Create worksheet stringtable. + * + * @param Worksheet $worksheet Worksheet + * @param string[] $existingTable Existing table to eventually merge with + * + * @return string[] String table for worksheet + */ + public function createStringTable(Worksheet $worksheet, $existingTable = null) + { + // Create string lookup table + $aStringTable = []; + $cellCollection = null; + $aFlippedStringTable = null; // For faster lookup + + // Is an existing table given? + if (($existingTable !== null) && is_array($existingTable)) { + $aStringTable = $existingTable; + } + + // Fill index array + $aFlippedStringTable = $this->flipStringTable($aStringTable); + + // Loop through cells + foreach ($worksheet->getCellCollection()->getCoordinates() as $coordinate) { + /** @var Cell $cell */ + $cell = $worksheet->getCellCollection()->get($coordinate); + $cellValue = $cell->getValue(); + if ( + !is_object($cellValue) && + ($cellValue !== null) && + $cellValue !== '' && + ($cell->getDataType() == DataType::TYPE_STRING || $cell->getDataType() == DataType::TYPE_STRING2 || $cell->getDataType() == DataType::TYPE_NULL) && + !isset($aFlippedStringTable[$cellValue]) + ) { + $aStringTable[] = $cellValue; + $aFlippedStringTable[$cellValue] = true; + } elseif ( + $cellValue instanceof RichText && + ($cellValue !== null) && + !isset($aFlippedStringTable[$cellValue->getHashCode()]) + ) { + $aStringTable[] = $cellValue; + $aFlippedStringTable[$cellValue->getHashCode()] = true; + } + } + + return $aStringTable; + } + + /** + * Write string table to XML format. + * + * @param string[] $stringTable + * + * @return string XML Output + */ + public function writeStringTable(array $stringTable) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // String table + $objWriter->startElement('sst'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'); + $objWriter->writeAttribute('uniqueCount', count($stringTable)); + + // Loop through string table + foreach ($stringTable as $textElement) { + $objWriter->startElement('si'); + + if (!$textElement instanceof RichText) { + $textToWrite = StringHelper::controlCharacterPHP2OOXML($textElement); + $objWriter->startElement('t'); + if ($textToWrite !== trim($textToWrite)) { + $objWriter->writeAttribute('xml:space', 'preserve'); + } + $objWriter->writeRawData($textToWrite); + $objWriter->endElement(); + } elseif ($textElement instanceof RichText) { + $this->writeRichText($objWriter, $textElement); + } + + $objWriter->endElement(); + } + + $objWriter->endElement(); + + return $objWriter->getData(); + } + + /** + * Write Rich Text. + * + * @param string $prefix Optional Namespace prefix + */ + public function writeRichText(XMLWriter $objWriter, RichText $richText, $prefix = null): void + { + if ($prefix !== null) { + $prefix .= ':'; + } + + // Loop through rich text elements + $elements = $richText->getRichTextElements(); + foreach ($elements as $element) { + // r + $objWriter->startElement($prefix . 'r'); + + // rPr + if ($element instanceof Run) { + // rPr + $objWriter->startElement($prefix . 'rPr'); + + // rFont + $objWriter->startElement($prefix . 'rFont'); + $objWriter->writeAttribute('val', $element->getFont()->getName()); + $objWriter->endElement(); + + // Bold + $objWriter->startElement($prefix . 'b'); + $objWriter->writeAttribute('val', ($element->getFont()->getBold() ? 'true' : 'false')); + $objWriter->endElement(); + + // Italic + $objWriter->startElement($prefix . 'i'); + $objWriter->writeAttribute('val', ($element->getFont()->getItalic() ? 'true' : 'false')); + $objWriter->endElement(); + + // Superscript / subscript + if ($element->getFont()->getSuperscript() || $element->getFont()->getSubscript()) { + $objWriter->startElement($prefix . 'vertAlign'); + if ($element->getFont()->getSuperscript()) { + $objWriter->writeAttribute('val', 'superscript'); + } elseif ($element->getFont()->getSubscript()) { + $objWriter->writeAttribute('val', 'subscript'); + } + $objWriter->endElement(); + } + + // Strikethrough + $objWriter->startElement($prefix . 'strike'); + $objWriter->writeAttribute('val', ($element->getFont()->getStrikethrough() ? 'true' : 'false')); + $objWriter->endElement(); + + // Color + $objWriter->startElement($prefix . 'color'); + $objWriter->writeAttribute('rgb', $element->getFont()->getColor()->getARGB()); + $objWriter->endElement(); + + // Size + $objWriter->startElement($prefix . 'sz'); + $objWriter->writeAttribute('val', $element->getFont()->getSize()); + $objWriter->endElement(); + + // Underline + $objWriter->startElement($prefix . 'u'); + $objWriter->writeAttribute('val', $element->getFont()->getUnderline()); + $objWriter->endElement(); + + $objWriter->endElement(); + } + + // t + $objWriter->startElement($prefix . 't'); + $objWriter->writeAttribute('xml:space', 'preserve'); + $objWriter->writeRawData(StringHelper::controlCharacterPHP2OOXML($element->getText())); + $objWriter->endElement(); + + $objWriter->endElement(); + } + } + + /** + * Write Rich Text. + * + * @param RichText|string $richText text string or Rich text + * @param string $prefix Optional Namespace prefix + */ + public function writeRichTextForCharts(XMLWriter $objWriter, $richText = null, $prefix = ''): void + { + if (!$richText instanceof RichText) { + $textRun = $richText; + $richText = new RichText(); + $run = $richText->createTextRun($textRun); + $run->setFont(null); + } + + if ($prefix !== '') { + $prefix .= ':'; + } + + // Loop through rich text elements + $elements = $richText->getRichTextElements(); + foreach ($elements as $element) { + // r + $objWriter->startElement($prefix . 'r'); + if ($element->getFont() !== null) { + // rPr + $objWriter->startElement($prefix . 'rPr'); + $size = $element->getFont()->getSize(); + if (is_numeric($size)) { + $objWriter->writeAttribute('sz', (string) (int) ($size * 100)); + } + + // Bold + $objWriter->writeAttribute('b', ($element->getFont()->getBold() ? 1 : 0)); + // Italic + $objWriter->writeAttribute('i', ($element->getFont()->getItalic() ? 1 : 0)); + // Underline + $underlineType = $element->getFont()->getUnderline(); + switch ($underlineType) { + case 'single': + $underlineType = 'sng'; + + break; + case 'double': + $underlineType = 'dbl'; + + break; + } + $objWriter->writeAttribute('u', $underlineType); + // Strikethrough + $objWriter->writeAttribute('strike', ($element->getFont()->getStriketype() ?: 'noStrike')); + // Superscript/subscript + if ($element->getFont()->getBaseLine()) { + $objWriter->writeAttribute('baseline', (string) $element->getFont()->getBaseLine()); + } + + // Color + $this->writeChartTextColor($objWriter, $element->getFont()->getChartColor(), $prefix); + + // Underscore Color + $this->writeChartTextColor($objWriter, $element->getFont()->getUnderlineColor(), $prefix, 'uFill'); + + // fontName + if ($element->getFont()->getLatin()) { + $objWriter->startElement($prefix . 'latin'); + $objWriter->writeAttribute('typeface', $element->getFont()->getLatin()); + $objWriter->endElement(); + } + if ($element->getFont()->getEastAsian()) { + $objWriter->startElement($prefix . 'ea'); + $objWriter->writeAttribute('typeface', $element->getFont()->getEastAsian()); + $objWriter->endElement(); + } + if ($element->getFont()->getComplexScript()) { + $objWriter->startElement($prefix . 'cs'); + $objWriter->writeAttribute('typeface', $element->getFont()->getComplexScript()); + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + + // t + $objWriter->startElement($prefix . 't'); + $objWriter->writeRawData(StringHelper::controlCharacterPHP2OOXML($element->getText())); + $objWriter->endElement(); + + $objWriter->endElement(); + } + } + + private function writeChartTextColor(XMLWriter $objWriter, ?ChartColor $underlineColor, string $prefix, ?string $openTag = ''): void + { + if ($underlineColor !== null) { + $type = $underlineColor->getType(); + $value = $underlineColor->getValue(); + if (!empty($type) && !empty($value)) { + if ($openTag !== '') { + $objWriter->startElement($prefix . $openTag); + } + $objWriter->startElement($prefix . 'solidFill'); + $objWriter->startElement($prefix . $type); + $objWriter->writeAttribute('val', $value); + $alpha = $underlineColor->getAlpha(); + if (is_numeric($alpha)) { + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', ChartColor::alphaToXml((int) $alpha)); + $objWriter->endElement(); + } + $objWriter->endElement(); // srgbClr/schemeClr/prstClr + $objWriter->endElement(); // solidFill + if ($openTag !== '') { + $objWriter->endElement(); // uFill + } + } + } + } + + /** + * Flip string table (for index searching). + * + * @param array $stringTable Stringtable + * + * @return array + */ + public function flipStringTable(array $stringTable) + { + // Return value + $returnValue = []; + + // Loop through stringtable and add flipped items to $returnValue + foreach ($stringTable as $key => $value) { + if (!$value instanceof RichText) { + $returnValue[$value] = $key; + } elseif ($value instanceof RichText) { + $returnValue[$value->getHashCode()] = $key; + } + } + + return $returnValue; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Style.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Style.php new file mode 100644 index 0000000..cb2e385 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Style.php @@ -0,0 +1,657 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Style\Border; +use PhpOffice\PhpSpreadsheet\Style\Borders; +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Style\Fill; +use PhpOffice\PhpSpreadsheet\Style\Font; +use PhpOffice\PhpSpreadsheet\Style\NumberFormat; +use PhpOffice\PhpSpreadsheet\Style\Protection; + +class Style extends WriterPart +{ + /** + * Write styles to XML format. + * + * @return string XML Output + */ + public function writeStyles(Spreadsheet $spreadsheet) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // styleSheet + $objWriter->startElement('styleSheet'); + $objWriter->writeAttribute('xml:space', 'preserve'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'); + + // numFmts + $objWriter->startElement('numFmts'); + $objWriter->writeAttribute('count', $this->getParentWriter()->getNumFmtHashTable()->count()); + + // numFmt + for ($i = 0; $i < $this->getParentWriter()->getNumFmtHashTable()->count(); ++$i) { + $this->writeNumFmt($objWriter, $this->getParentWriter()->getNumFmtHashTable()->getByIndex($i), $i); + } + + $objWriter->endElement(); + + // fonts + $objWriter->startElement('fonts'); + $objWriter->writeAttribute('count', $this->getParentWriter()->getFontHashTable()->count()); + + // font + for ($i = 0; $i < $this->getParentWriter()->getFontHashTable()->count(); ++$i) { + $this->writeFont($objWriter, $this->getParentWriter()->getFontHashTable()->getByIndex($i)); + } + + $objWriter->endElement(); + + // fills + $objWriter->startElement('fills'); + $objWriter->writeAttribute('count', $this->getParentWriter()->getFillHashTable()->count()); + + // fill + for ($i = 0; $i < $this->getParentWriter()->getFillHashTable()->count(); ++$i) { + $this->writeFill($objWriter, $this->getParentWriter()->getFillHashTable()->getByIndex($i)); + } + + $objWriter->endElement(); + + // borders + $objWriter->startElement('borders'); + $objWriter->writeAttribute('count', $this->getParentWriter()->getBordersHashTable()->count()); + + // border + for ($i = 0; $i < $this->getParentWriter()->getBordersHashTable()->count(); ++$i) { + $this->writeBorder($objWriter, $this->getParentWriter()->getBordersHashTable()->getByIndex($i)); + } + + $objWriter->endElement(); + + // cellStyleXfs + $objWriter->startElement('cellStyleXfs'); + $objWriter->writeAttribute('count', 1); + + // xf + $objWriter->startElement('xf'); + $objWriter->writeAttribute('numFmtId', 0); + $objWriter->writeAttribute('fontId', 0); + $objWriter->writeAttribute('fillId', 0); + $objWriter->writeAttribute('borderId', 0); + $objWriter->endElement(); + + $objWriter->endElement(); + + // cellXfs + $objWriter->startElement('cellXfs'); + $objWriter->writeAttribute('count', count($spreadsheet->getCellXfCollection())); + + // xf + foreach ($spreadsheet->getCellXfCollection() as $cellXf) { + $this->writeCellStyleXf($objWriter, $cellXf, $spreadsheet); + } + + $objWriter->endElement(); + + // cellStyles + $objWriter->startElement('cellStyles'); + $objWriter->writeAttribute('count', 1); + + // cellStyle + $objWriter->startElement('cellStyle'); + $objWriter->writeAttribute('name', 'Normal'); + $objWriter->writeAttribute('xfId', 0); + $objWriter->writeAttribute('builtinId', 0); + $objWriter->endElement(); + + $objWriter->endElement(); + + // dxfs + $objWriter->startElement('dxfs'); + $objWriter->writeAttribute('count', $this->getParentWriter()->getStylesConditionalHashTable()->count()); + + // dxf + for ($i = 0; $i < $this->getParentWriter()->getStylesConditionalHashTable()->count(); ++$i) { + $this->writeCellStyleDxf($objWriter, $this->getParentWriter()->getStylesConditionalHashTable()->getByIndex($i)->getStyle()); + } + + $objWriter->endElement(); + + // tableStyles + $objWriter->startElement('tableStyles'); + $objWriter->writeAttribute('defaultTableStyle', 'TableStyleMedium9'); + $objWriter->writeAttribute('defaultPivotStyle', 'PivotTableStyle1'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write Fill. + */ + private function writeFill(XMLWriter $objWriter, Fill $fill): void + { + // Check if this is a pattern type or gradient type + if ( + $fill->getFillType() === Fill::FILL_GRADIENT_LINEAR || + $fill->getFillType() === Fill::FILL_GRADIENT_PATH + ) { + // Gradient fill + $this->writeGradientFill($objWriter, $fill); + } elseif ($fill->getFillType() !== null) { + // Pattern fill + $this->writePatternFill($objWriter, $fill); + } + } + + /** + * Write Gradient Fill. + */ + private function writeGradientFill(XMLWriter $objWriter, Fill $fill): void + { + // fill + $objWriter->startElement('fill'); + + // gradientFill + $objWriter->startElement('gradientFill'); + $objWriter->writeAttribute('type', $fill->getFillType()); + $objWriter->writeAttribute('degree', $fill->getRotation()); + + // stop + $objWriter->startElement('stop'); + $objWriter->writeAttribute('position', '0'); + + // color + $objWriter->startElement('color'); + $objWriter->writeAttribute('rgb', $fill->getStartColor()->getARGB()); + $objWriter->endElement(); + + $objWriter->endElement(); + + // stop + $objWriter->startElement('stop'); + $objWriter->writeAttribute('position', '1'); + + // color + $objWriter->startElement('color'); + $objWriter->writeAttribute('rgb', $fill->getEndColor()->getARGB()); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + } + + private static function writePatternColors(Fill $fill): bool + { + if ($fill->getFillType() === Fill::FILL_NONE) { + return false; + } + + return $fill->getFillType() === Fill::FILL_SOLID || $fill->getColorsChanged(); + } + + /** + * Write Pattern Fill. + */ + private function writePatternFill(XMLWriter $objWriter, Fill $fill): void + { + // fill + $objWriter->startElement('fill'); + + // patternFill + $objWriter->startElement('patternFill'); + $objWriter->writeAttribute('patternType', $fill->getFillType()); + + if (self::writePatternColors($fill)) { + // fgColor + if ($fill->getStartColor()->getARGB()) { + $objWriter->startElement('fgColor'); + $objWriter->writeAttribute('rgb', $fill->getStartColor()->getARGB()); + $objWriter->endElement(); + } + // bgColor + if ($fill->getEndColor()->getARGB()) { + $objWriter->startElement('bgColor'); + $objWriter->writeAttribute('rgb', $fill->getEndColor()->getARGB()); + $objWriter->endElement(); + } + } + + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write Font. + */ + private function writeFont(XMLWriter $objWriter, Font $font): void + { + // font + $objWriter->startElement('font'); + // Weird! The order of these elements actually makes a difference when opening Xlsx + // files in Excel2003 with the compatibility pack. It's not documented behaviour, + // and makes for a real WTF! + + // Bold. We explicitly write this element also when false (like MS Office Excel 2007 does + // for conditional formatting). Otherwise it will apparently not be picked up in conditional + // formatting style dialog + if ($font->getBold() !== null) { + $objWriter->startElement('b'); + $objWriter->writeAttribute('val', $font->getBold() ? '1' : '0'); + $objWriter->endElement(); + } + + // Italic + if ($font->getItalic() !== null) { + $objWriter->startElement('i'); + $objWriter->writeAttribute('val', $font->getItalic() ? '1' : '0'); + $objWriter->endElement(); + } + + // Strikethrough + if ($font->getStrikethrough() !== null) { + $objWriter->startElement('strike'); + $objWriter->writeAttribute('val', $font->getStrikethrough() ? '1' : '0'); + $objWriter->endElement(); + } + + // Underline + if ($font->getUnderline() !== null) { + $objWriter->startElement('u'); + $objWriter->writeAttribute('val', $font->getUnderline()); + $objWriter->endElement(); + } + + // Superscript / subscript + if ($font->getSuperscript() === true || $font->getSubscript() === true) { + $objWriter->startElement('vertAlign'); + if ($font->getSuperscript() === true) { + $objWriter->writeAttribute('val', 'superscript'); + } elseif ($font->getSubscript() === true) { + $objWriter->writeAttribute('val', 'subscript'); + } + $objWriter->endElement(); + } + + // Size + if ($font->getSize() !== null) { + $objWriter->startElement('sz'); + $objWriter->writeAttribute('val', StringHelper::formatNumber($font->getSize())); + $objWriter->endElement(); + } + + // Foreground color + if ($font->getColor()->getARGB() !== null) { + $objWriter->startElement('color'); + $objWriter->writeAttribute('rgb', $font->getColor()->getARGB()); + $objWriter->endElement(); + } + + // Name + if ($font->getName() !== null) { + $objWriter->startElement('name'); + $objWriter->writeAttribute('val', $font->getName()); + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + + /** + * Write Border. + */ + private function writeBorder(XMLWriter $objWriter, Borders $borders): void + { + // Write border + $objWriter->startElement('border'); + // Diagonal? + switch ($borders->getDiagonalDirection()) { + case Borders::DIAGONAL_UP: + $objWriter->writeAttribute('diagonalUp', 'true'); + $objWriter->writeAttribute('diagonalDown', 'false'); + + break; + case Borders::DIAGONAL_DOWN: + $objWriter->writeAttribute('diagonalUp', 'false'); + $objWriter->writeAttribute('diagonalDown', 'true'); + + break; + case Borders::DIAGONAL_BOTH: + $objWriter->writeAttribute('diagonalUp', 'true'); + $objWriter->writeAttribute('diagonalDown', 'true'); + + break; + } + + // BorderPr + $this->writeBorderPr($objWriter, 'left', $borders->getLeft()); + $this->writeBorderPr($objWriter, 'right', $borders->getRight()); + $this->writeBorderPr($objWriter, 'top', $borders->getTop()); + $this->writeBorderPr($objWriter, 'bottom', $borders->getBottom()); + $this->writeBorderPr($objWriter, 'diagonal', $borders->getDiagonal()); + $objWriter->endElement(); + } + + /** + * Write Cell Style Xf. + */ + private function writeCellStyleXf(XMLWriter $objWriter, \PhpOffice\PhpSpreadsheet\Style\Style $style, Spreadsheet $spreadsheet): void + { + // xf + $objWriter->startElement('xf'); + $objWriter->writeAttribute('xfId', 0); + $objWriter->writeAttribute('fontId', (int) $this->getParentWriter()->getFontHashTable()->getIndexForHashCode($style->getFont()->getHashCode())); + if ($style->getQuotePrefix()) { + $objWriter->writeAttribute('quotePrefix', 1); + } + + if ($style->getNumberFormat()->getBuiltInFormatCode() === false) { + $objWriter->writeAttribute('numFmtId', (int) ($this->getParentWriter()->getNumFmtHashTable()->getIndexForHashCode($style->getNumberFormat()->getHashCode()) + 164)); + } else { + $objWriter->writeAttribute('numFmtId', (int) $style->getNumberFormat()->getBuiltInFormatCode()); + } + + $objWriter->writeAttribute('fillId', (int) $this->getParentWriter()->getFillHashTable()->getIndexForHashCode($style->getFill()->getHashCode())); + $objWriter->writeAttribute('borderId', (int) $this->getParentWriter()->getBordersHashTable()->getIndexForHashCode($style->getBorders()->getHashCode())); + + // Apply styles? + $objWriter->writeAttribute('applyFont', ($spreadsheet->getDefaultStyle()->getFont()->getHashCode() != $style->getFont()->getHashCode()) ? '1' : '0'); + $objWriter->writeAttribute('applyNumberFormat', ($spreadsheet->getDefaultStyle()->getNumberFormat()->getHashCode() != $style->getNumberFormat()->getHashCode()) ? '1' : '0'); + $objWriter->writeAttribute('applyFill', ($spreadsheet->getDefaultStyle()->getFill()->getHashCode() != $style->getFill()->getHashCode()) ? '1' : '0'); + $objWriter->writeAttribute('applyBorder', ($spreadsheet->getDefaultStyle()->getBorders()->getHashCode() != $style->getBorders()->getHashCode()) ? '1' : '0'); + $objWriter->writeAttribute('applyAlignment', ($spreadsheet->getDefaultStyle()->getAlignment()->getHashCode() != $style->getAlignment()->getHashCode()) ? '1' : '0'); + if ($style->getProtection()->getLocked() != Protection::PROTECTION_INHERIT || $style->getProtection()->getHidden() != Protection::PROTECTION_INHERIT) { + $objWriter->writeAttribute('applyProtection', 'true'); + } + + // alignment + $objWriter->startElement('alignment'); + $objWriter->writeAttribute('horizontal', $style->getAlignment()->getHorizontal()); + $objWriter->writeAttribute('vertical', $style->getAlignment()->getVertical()); + + $textRotation = 0; + if ($style->getAlignment()->getTextRotation() >= 0) { + $textRotation = $style->getAlignment()->getTextRotation(); + } elseif ($style->getAlignment()->getTextRotation() < 0) { + $textRotation = 90 - $style->getAlignment()->getTextRotation(); + } + $objWriter->writeAttribute('textRotation', $textRotation); + + $objWriter->writeAttribute('wrapText', ($style->getAlignment()->getWrapText() ? 'true' : 'false')); + $objWriter->writeAttribute('shrinkToFit', ($style->getAlignment()->getShrinkToFit() ? 'true' : 'false')); + + if ($style->getAlignment()->getIndent() > 0) { + $objWriter->writeAttribute('indent', $style->getAlignment()->getIndent()); + } + if ($style->getAlignment()->getReadOrder() > 0) { + $objWriter->writeAttribute('readingOrder', $style->getAlignment()->getReadOrder()); + } + $objWriter->endElement(); + + // protection + if ($style->getProtection()->getLocked() != Protection::PROTECTION_INHERIT || $style->getProtection()->getHidden() != Protection::PROTECTION_INHERIT) { + $objWriter->startElement('protection'); + if ($style->getProtection()->getLocked() != Protection::PROTECTION_INHERIT) { + $objWriter->writeAttribute('locked', ($style->getProtection()->getLocked() == Protection::PROTECTION_PROTECTED ? 'true' : 'false')); + } + if ($style->getProtection()->getHidden() != Protection::PROTECTION_INHERIT) { + $objWriter->writeAttribute('hidden', ($style->getProtection()->getHidden() == Protection::PROTECTION_PROTECTED ? 'true' : 'false')); + } + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + + /** + * Write Cell Style Dxf. + */ + private function writeCellStyleDxf(XMLWriter $objWriter, \PhpOffice\PhpSpreadsheet\Style\Style $style): void + { + // dxf + $objWriter->startElement('dxf'); + + // font + $this->writeFont($objWriter, $style->getFont()); + + // numFmt + $this->writeNumFmt($objWriter, $style->getNumberFormat()); + + // fill + $this->writeFill($objWriter, $style->getFill()); + + // alignment + $objWriter->startElement('alignment'); + if ($style->getAlignment()->getHorizontal() !== null) { + $objWriter->writeAttribute('horizontal', $style->getAlignment()->getHorizontal()); + } + if ($style->getAlignment()->getVertical() !== null) { + $objWriter->writeAttribute('vertical', $style->getAlignment()->getVertical()); + } + + if ($style->getAlignment()->getTextRotation() !== null) { + $textRotation = 0; + if ($style->getAlignment()->getTextRotation() >= 0) { + $textRotation = $style->getAlignment()->getTextRotation(); + } elseif ($style->getAlignment()->getTextRotation() < 0) { + $textRotation = 90 - $style->getAlignment()->getTextRotation(); + } + $objWriter->writeAttribute('textRotation', $textRotation); + } + $objWriter->endElement(); + + // border + $this->writeBorder($objWriter, $style->getBorders()); + + // protection + if (($style->getProtection()->getLocked() !== null) || ($style->getProtection()->getHidden() !== null)) { + if ( + $style->getProtection()->getLocked() !== Protection::PROTECTION_INHERIT || + $style->getProtection()->getHidden() !== Protection::PROTECTION_INHERIT + ) { + $objWriter->startElement('protection'); + if ( + ($style->getProtection()->getLocked() !== null) && + ($style->getProtection()->getLocked() !== Protection::PROTECTION_INHERIT) + ) { + $objWriter->writeAttribute('locked', ($style->getProtection()->getLocked() == Protection::PROTECTION_PROTECTED ? 'true' : 'false')); + } + if ( + ($style->getProtection()->getHidden() !== null) && + ($style->getProtection()->getHidden() !== Protection::PROTECTION_INHERIT) + ) { + $objWriter->writeAttribute('hidden', ($style->getProtection()->getHidden() == Protection::PROTECTION_PROTECTED ? 'true' : 'false')); + } + $objWriter->endElement(); + } + } + + $objWriter->endElement(); + } + + /** + * Write BorderPr. + * + * @param string $name Element name + */ + private function writeBorderPr(XMLWriter $objWriter, $name, Border $border): void + { + // Write BorderPr + if ($border->getBorderStyle() != Border::BORDER_NONE) { + $objWriter->startElement($name); + $objWriter->writeAttribute('style', $border->getBorderStyle()); + + // color + $objWriter->startElement('color'); + $objWriter->writeAttribute('rgb', $border->getColor()->getARGB()); + $objWriter->endElement(); + + $objWriter->endElement(); + } + } + + /** + * Write NumberFormat. + * + * @param int $id Number Format identifier + */ + private function writeNumFmt(XMLWriter $objWriter, NumberFormat $numberFormat, $id = 0): void + { + // Translate formatcode + $formatCode = $numberFormat->getFormatCode(); + + // numFmt + if ($formatCode !== null) { + $objWriter->startElement('numFmt'); + $objWriter->writeAttribute('numFmtId', ($id + 164)); + $objWriter->writeAttribute('formatCode', $formatCode); + $objWriter->endElement(); + } + } + + /** + * Get an array of all styles. + * + * @return \PhpOffice\PhpSpreadsheet\Style\Style[] All styles in PhpSpreadsheet + */ + public function allStyles(Spreadsheet $spreadsheet) + { + return $spreadsheet->getCellXfCollection(); + } + + /** + * Get an array of all conditional styles. + * + * @return Conditional[] All conditional styles in PhpSpreadsheet + */ + public function allConditionalStyles(Spreadsheet $spreadsheet) + { + // Get an array of all styles + $aStyles = []; + + $sheetCount = $spreadsheet->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + foreach ($spreadsheet->getSheet($i)->getConditionalStylesCollection() as $conditionalStyles) { + foreach ($conditionalStyles as $conditionalStyle) { + $aStyles[] = $conditionalStyle; + } + } + } + + return $aStyles; + } + + /** + * Get an array of all fills. + * + * @return Fill[] All fills in PhpSpreadsheet + */ + public function allFills(Spreadsheet $spreadsheet) + { + // Get an array of unique fills + $aFills = []; + + // Two first fills are predefined + $fill0 = new Fill(); + $fill0->setFillType(Fill::FILL_NONE); + $aFills[] = $fill0; + + $fill1 = new Fill(); + $fill1->setFillType(Fill::FILL_PATTERN_GRAY125); + $aFills[] = $fill1; + // The remaining fills + $aStyles = $this->allStyles($spreadsheet); + /** @var \PhpOffice\PhpSpreadsheet\Style\Style $style */ + foreach ($aStyles as $style) { + if (!isset($aFills[$style->getFill()->getHashCode()])) { + $aFills[$style->getFill()->getHashCode()] = $style->getFill(); + } + } + + return $aFills; + } + + /** + * Get an array of all fonts. + * + * @return Font[] All fonts in PhpSpreadsheet + */ + public function allFonts(Spreadsheet $spreadsheet) + { + // Get an array of unique fonts + $aFonts = []; + $aStyles = $this->allStyles($spreadsheet); + + /** @var \PhpOffice\PhpSpreadsheet\Style\Style $style */ + foreach ($aStyles as $style) { + if (!isset($aFonts[$style->getFont()->getHashCode()])) { + $aFonts[$style->getFont()->getHashCode()] = $style->getFont(); + } + } + + return $aFonts; + } + + /** + * Get an array of all borders. + * + * @return Borders[] All borders in PhpSpreadsheet + */ + public function allBorders(Spreadsheet $spreadsheet) + { + // Get an array of unique borders + $aBorders = []; + $aStyles = $this->allStyles($spreadsheet); + + /** @var \PhpOffice\PhpSpreadsheet\Style\Style $style */ + foreach ($aStyles as $style) { + if (!isset($aBorders[$style->getBorders()->getHashCode()])) { + $aBorders[$style->getBorders()->getHashCode()] = $style->getBorders(); + } + } + + return $aBorders; + } + + /** + * Get an array of all number formats. + * + * @return NumberFormat[] All number formats in PhpSpreadsheet + */ + public function allNumberFormats(Spreadsheet $spreadsheet) + { + // Get an array of unique number formats + $aNumFmts = []; + $aStyles = $this->allStyles($spreadsheet); + + /** @var \PhpOffice\PhpSpreadsheet\Style\Style $style */ + foreach ($aStyles as $style) { + if ($style->getNumberFormat()->getBuiltInFormatCode() === false && !isset($aNumFmts[$style->getNumberFormat()->getHashCode()])) { + $aNumFmts[$style->getNumberFormat()->getHashCode()] = $style->getNumberFormat(); + } + } + + return $aNumFmts; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Table.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Table.php new file mode 100644 index 0000000..67dbd19 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Table.php @@ -0,0 +1,111 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Worksheet\Table as WorksheetTable; + +class Table extends WriterPart +{ + /** + * Write Table to XML format. + * + * @param int $tableRef Table ID + * + * @return string XML Output + */ + public function writeTable(WorksheetTable $table, $tableRef): string + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Table + $name = 'Table' . $tableRef; + $range = $table->getRange(); + + $objWriter->startElement('table'); + $objWriter->writeAttribute('xml:space', 'preserve'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'); + $objWriter->writeAttribute('id', (string) $tableRef); + $objWriter->writeAttribute('name', $name); + $objWriter->writeAttribute('displayName', $table->getName() ?: $name); + $objWriter->writeAttribute('ref', $range); + $objWriter->writeAttribute('headerRowCount', $table->getShowHeaderRow() ? '1' : '0'); + $objWriter->writeAttribute('totalsRowCount', $table->getShowTotalsRow() ? '1' : '0'); + + // Table Boundaries + [$rangeStart, $rangeEnd] = Coordinate::rangeBoundaries($table->getRange()); + + // Table Auto Filter + if ($table->getShowHeaderRow()) { + $objWriter->startElement('autoFilter'); + $objWriter->writeAttribute('ref', $range); + foreach (range($rangeStart[0], $rangeEnd[0]) as $offset => $columnIndex) { + $column = $table->getColumnByOffset($offset); + + if (!$column->getShowFilterButton()) { + $objWriter->startElement('filterColumn'); + $objWriter->writeAttribute('colId', (string) $offset); + $objWriter->writeAttribute('hiddenButton', '1'); + $objWriter->endElement(); + } + } + $objWriter->endElement(); + } + + // Table Columns + $objWriter->startElement('tableColumns'); + $objWriter->writeAttribute('count', (string) ($rangeEnd[0] - $rangeStart[0] + 1)); + foreach (range($rangeStart[0], $rangeEnd[0]) as $offset => $columnIndex) { + $worksheet = $table->getWorksheet(); + if (!$worksheet) { + continue; + } + + $column = $table->getColumnByOffset($offset); + $cell = $worksheet->getCellByColumnAndRow($columnIndex, $rangeStart[1]); + + $objWriter->startElement('tableColumn'); + $objWriter->writeAttribute('id', (string) ($offset + 1)); + $objWriter->writeAttribute('name', $table->getShowHeaderRow() ? $cell->getValue() : 'Column' . ($offset + 1)); + + if ($table->getShowTotalsRow()) { + if ($column->getTotalsRowLabel()) { + $objWriter->writeAttribute('totalsRowLabel', $column->getTotalsRowLabel()); + } + if ($column->getTotalsRowFunction()) { + $objWriter->writeAttribute('totalsRowFunction', $column->getTotalsRowFunction()); + } + } + if ($column->getColumnFormula()) { + $objWriter->writeElement('calculatedColumnFormula', $column->getColumnFormula()); + } + + $objWriter->endElement(); + } + $objWriter->endElement(); + + // Table Styles + $objWriter->startElement('tableStyleInfo'); + $objWriter->writeAttribute('name', $table->getStyle()->getTheme()); + $objWriter->writeAttribute('showFirstColumn', $table->getStyle()->getShowFirstColumn() ? '1' : '0'); + $objWriter->writeAttribute('showLastColumn', $table->getStyle()->getShowLastColumn() ? '1' : '0'); + $objWriter->writeAttribute('showRowStripes', $table->getStyle()->getShowRowStripes() ? '1' : '0'); + $objWriter->writeAttribute('showColumnStripes', $table->getStyle()->getShowColumnStripes() ? '1' : '0'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Theme.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Theme.php new file mode 100644 index 0000000..9917729 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Theme.php @@ -0,0 +1,829 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Spreadsheet; + +class Theme extends WriterPart +{ + /** + * Map of Major fonts to write. + * + * @var string[] + */ + private static $majorFonts = [ + 'Jpan' => 'ï¼­ï¼³ Pゴシック', + 'Hang' => 'ë§‘ì€ ê³ ë”•', + 'Hans' => '宋体', + 'Hant' => '新細明體', + 'Arab' => 'Times New Roman', + 'Hebr' => 'Times New Roman', + 'Thai' => 'Tahoma', + 'Ethi' => 'Nyala', + 'Beng' => 'Vrinda', + 'Gujr' => 'Shruti', + 'Khmr' => 'MoolBoran', + 'Knda' => 'Tunga', + 'Guru' => 'Raavi', + 'Cans' => 'Euphemia', + 'Cher' => 'Plantagenet Cherokee', + 'Yiii' => 'Microsoft Yi Baiti', + 'Tibt' => 'Microsoft Himalaya', + 'Thaa' => 'MV Boli', + 'Deva' => 'Mangal', + 'Telu' => 'Gautami', + 'Taml' => 'Latha', + 'Syrc' => 'Estrangelo Edessa', + 'Orya' => 'Kalinga', + 'Mlym' => 'Kartika', + 'Laoo' => 'DokChampa', + 'Sinh' => 'Iskoola Pota', + 'Mong' => 'Mongolian Baiti', + 'Viet' => 'Times New Roman', + 'Uigh' => 'Microsoft Uighur', + 'Geor' => 'Sylfaen', + ]; + + /** + * Map of Minor fonts to write. + * + * @var string[] + */ + private static $minorFonts = [ + 'Jpan' => 'ï¼­ï¼³ Pゴシック', + 'Hang' => 'ë§‘ì€ ê³ ë”•', + 'Hans' => '宋体', + 'Hant' => '新細明體', + 'Arab' => 'Arial', + 'Hebr' => 'Arial', + 'Thai' => 'Tahoma', + 'Ethi' => 'Nyala', + 'Beng' => 'Vrinda', + 'Gujr' => 'Shruti', + 'Khmr' => 'DaunPenh', + 'Knda' => 'Tunga', + 'Guru' => 'Raavi', + 'Cans' => 'Euphemia', + 'Cher' => 'Plantagenet Cherokee', + 'Yiii' => 'Microsoft Yi Baiti', + 'Tibt' => 'Microsoft Himalaya', + 'Thaa' => 'MV Boli', + 'Deva' => 'Mangal', + 'Telu' => 'Gautami', + 'Taml' => 'Latha', + 'Syrc' => 'Estrangelo Edessa', + 'Orya' => 'Kalinga', + 'Mlym' => 'Kartika', + 'Laoo' => 'DokChampa', + 'Sinh' => 'Iskoola Pota', + 'Mong' => 'Mongolian Baiti', + 'Viet' => 'Arial', + 'Uigh' => 'Microsoft Uighur', + 'Geor' => 'Sylfaen', + ]; + + /** + * Map of core colours. + * + * @var string[] + */ + private static $colourScheme = [ + 'dk2' => '1F497D', + 'lt2' => 'EEECE1', + 'accent1' => '4F81BD', + 'accent2' => 'C0504D', + 'accent3' => '9BBB59', + 'accent4' => '8064A2', + 'accent5' => '4BACC6', + 'accent6' => 'F79646', + 'hlink' => '0000FF', + 'folHlink' => '800080', + ]; + + /** + * Write theme to XML format. + * + * @return string XML Output + */ + public function writeTheme(Spreadsheet $spreadsheet) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // a:theme + $objWriter->startElement('a:theme'); + $objWriter->writeAttribute('xmlns:a', 'http://schemas.openxmlformats.org/drawingml/2006/main'); + $objWriter->writeAttribute('name', 'Office Theme'); + + // a:themeElements + $objWriter->startElement('a:themeElements'); + + // a:clrScheme + $objWriter->startElement('a:clrScheme'); + $objWriter->writeAttribute('name', 'Office'); + + // a:dk1 + $objWriter->startElement('a:dk1'); + + // a:sysClr + $objWriter->startElement('a:sysClr'); + $objWriter->writeAttribute('val', 'windowText'); + $objWriter->writeAttribute('lastClr', '000000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:lt1 + $objWriter->startElement('a:lt1'); + + // a:sysClr + $objWriter->startElement('a:sysClr'); + $objWriter->writeAttribute('val', 'window'); + $objWriter->writeAttribute('lastClr', 'FFFFFF'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:dk2 + $this->writeColourScheme($objWriter); + + $objWriter->endElement(); + + // a:fontScheme + $objWriter->startElement('a:fontScheme'); + $objWriter->writeAttribute('name', 'Office'); + + // a:majorFont + $objWriter->startElement('a:majorFont'); + $this->writeFonts($objWriter, 'Cambria', self::$majorFonts); + $objWriter->endElement(); + + // a:minorFont + $objWriter->startElement('a:minorFont'); + $this->writeFonts($objWriter, 'Calibri', self::$minorFonts); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:fmtScheme + $objWriter->startElement('a:fmtScheme'); + $objWriter->writeAttribute('name', 'Office'); + + // a:fillStyleLst + $objWriter->startElement('a:fillStyleLst'); + + // a:solidFill + $objWriter->startElement('a:solidFill'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gradFill + $objWriter->startElement('a:gradFill'); + $objWriter->writeAttribute('rotWithShape', '1'); + + // a:gsLst + $objWriter->startElement('a:gsLst'); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '0'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:tint + $objWriter->startElement('a:tint'); + $objWriter->writeAttribute('val', '50000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '300000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '35000'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:tint + $objWriter->startElement('a:tint'); + $objWriter->writeAttribute('val', '37000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '300000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '100000'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:tint + $objWriter->startElement('a:tint'); + $objWriter->writeAttribute('val', '15000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '350000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:lin + $objWriter->startElement('a:lin'); + $objWriter->writeAttribute('ang', '16200000'); + $objWriter->writeAttribute('scaled', '1'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gradFill + $objWriter->startElement('a:gradFill'); + $objWriter->writeAttribute('rotWithShape', '1'); + + // a:gsLst + $objWriter->startElement('a:gsLst'); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '0'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:shade + $objWriter->startElement('a:shade'); + $objWriter->writeAttribute('val', '51000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '130000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '80000'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:shade + $objWriter->startElement('a:shade'); + $objWriter->writeAttribute('val', '93000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '130000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '100000'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:shade + $objWriter->startElement('a:shade'); + $objWriter->writeAttribute('val', '94000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '135000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:lin + $objWriter->startElement('a:lin'); + $objWriter->writeAttribute('ang', '16200000'); + $objWriter->writeAttribute('scaled', '0'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:lnStyleLst + $objWriter->startElement('a:lnStyleLst'); + + // a:ln + $objWriter->startElement('a:ln'); + $objWriter->writeAttribute('w', '9525'); + $objWriter->writeAttribute('cap', 'flat'); + $objWriter->writeAttribute('cmpd', 'sng'); + $objWriter->writeAttribute('algn', 'ctr'); + + // a:solidFill + $objWriter->startElement('a:solidFill'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:shade + $objWriter->startElement('a:shade'); + $objWriter->writeAttribute('val', '95000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '105000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:prstDash + $objWriter->startElement('a:prstDash'); + $objWriter->writeAttribute('val', 'solid'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:ln + $objWriter->startElement('a:ln'); + $objWriter->writeAttribute('w', '25400'); + $objWriter->writeAttribute('cap', 'flat'); + $objWriter->writeAttribute('cmpd', 'sng'); + $objWriter->writeAttribute('algn', 'ctr'); + + // a:solidFill + $objWriter->startElement('a:solidFill'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:prstDash + $objWriter->startElement('a:prstDash'); + $objWriter->writeAttribute('val', 'solid'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:ln + $objWriter->startElement('a:ln'); + $objWriter->writeAttribute('w', '38100'); + $objWriter->writeAttribute('cap', 'flat'); + $objWriter->writeAttribute('cmpd', 'sng'); + $objWriter->writeAttribute('algn', 'ctr'); + + // a:solidFill + $objWriter->startElement('a:solidFill'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:prstDash + $objWriter->startElement('a:prstDash'); + $objWriter->writeAttribute('val', 'solid'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:effectStyleLst + $objWriter->startElement('a:effectStyleLst'); + + // a:effectStyle + $objWriter->startElement('a:effectStyle'); + + // a:effectLst + $objWriter->startElement('a:effectLst'); + + // a:outerShdw + $objWriter->startElement('a:outerShdw'); + $objWriter->writeAttribute('blurRad', '40000'); + $objWriter->writeAttribute('dist', '20000'); + $objWriter->writeAttribute('dir', '5400000'); + $objWriter->writeAttribute('rotWithShape', '0'); + + // a:srgbClr + $objWriter->startElement('a:srgbClr'); + $objWriter->writeAttribute('val', '000000'); + + // a:alpha + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', '38000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:effectStyle + $objWriter->startElement('a:effectStyle'); + + // a:effectLst + $objWriter->startElement('a:effectLst'); + + // a:outerShdw + $objWriter->startElement('a:outerShdw'); + $objWriter->writeAttribute('blurRad', '40000'); + $objWriter->writeAttribute('dist', '23000'); + $objWriter->writeAttribute('dir', '5400000'); + $objWriter->writeAttribute('rotWithShape', '0'); + + // a:srgbClr + $objWriter->startElement('a:srgbClr'); + $objWriter->writeAttribute('val', '000000'); + + // a:alpha + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', '35000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:effectStyle + $objWriter->startElement('a:effectStyle'); + + // a:effectLst + $objWriter->startElement('a:effectLst'); + + // a:outerShdw + $objWriter->startElement('a:outerShdw'); + $objWriter->writeAttribute('blurRad', '40000'); + $objWriter->writeAttribute('dist', '23000'); + $objWriter->writeAttribute('dir', '5400000'); + $objWriter->writeAttribute('rotWithShape', '0'); + + // a:srgbClr + $objWriter->startElement('a:srgbClr'); + $objWriter->writeAttribute('val', '000000'); + + // a:alpha + $objWriter->startElement('a:alpha'); + $objWriter->writeAttribute('val', '35000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:scene3d + $objWriter->startElement('a:scene3d'); + + // a:camera + $objWriter->startElement('a:camera'); + $objWriter->writeAttribute('prst', 'orthographicFront'); + + // a:rot + $objWriter->startElement('a:rot'); + $objWriter->writeAttribute('lat', '0'); + $objWriter->writeAttribute('lon', '0'); + $objWriter->writeAttribute('rev', '0'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:lightRig + $objWriter->startElement('a:lightRig'); + $objWriter->writeAttribute('rig', 'threePt'); + $objWriter->writeAttribute('dir', 't'); + + // a:rot + $objWriter->startElement('a:rot'); + $objWriter->writeAttribute('lat', '0'); + $objWriter->writeAttribute('lon', '0'); + $objWriter->writeAttribute('rev', '1200000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:sp3d + $objWriter->startElement('a:sp3d'); + + // a:bevelT + $objWriter->startElement('a:bevelT'); + $objWriter->writeAttribute('w', '63500'); + $objWriter->writeAttribute('h', '25400'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:bgFillStyleLst + $objWriter->startElement('a:bgFillStyleLst'); + + // a:solidFill + $objWriter->startElement('a:solidFill'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gradFill + $objWriter->startElement('a:gradFill'); + $objWriter->writeAttribute('rotWithShape', '1'); + + // a:gsLst + $objWriter->startElement('a:gsLst'); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '0'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:tint + $objWriter->startElement('a:tint'); + $objWriter->writeAttribute('val', '40000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '350000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '40000'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:tint + $objWriter->startElement('a:tint'); + $objWriter->writeAttribute('val', '45000'); + $objWriter->endElement(); + + // a:shade + $objWriter->startElement('a:shade'); + $objWriter->writeAttribute('val', '99000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '350000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '100000'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:shade + $objWriter->startElement('a:shade'); + $objWriter->writeAttribute('val', '20000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '255000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:path + $objWriter->startElement('a:path'); + $objWriter->writeAttribute('path', 'circle'); + + // a:fillToRect + $objWriter->startElement('a:fillToRect'); + $objWriter->writeAttribute('l', '50000'); + $objWriter->writeAttribute('t', '-80000'); + $objWriter->writeAttribute('r', '50000'); + $objWriter->writeAttribute('b', '180000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gradFill + $objWriter->startElement('a:gradFill'); + $objWriter->writeAttribute('rotWithShape', '1'); + + // a:gsLst + $objWriter->startElement('a:gsLst'); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '0'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:tint + $objWriter->startElement('a:tint'); + $objWriter->writeAttribute('val', '80000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '300000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:gs + $objWriter->startElement('a:gs'); + $objWriter->writeAttribute('pos', '100000'); + + // a:schemeClr + $objWriter->startElement('a:schemeClr'); + $objWriter->writeAttribute('val', 'phClr'); + + // a:shade + $objWriter->startElement('a:shade'); + $objWriter->writeAttribute('val', '30000'); + $objWriter->endElement(); + + // a:satMod + $objWriter->startElement('a:satMod'); + $objWriter->writeAttribute('val', '200000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:path + $objWriter->startElement('a:path'); + $objWriter->writeAttribute('path', 'circle'); + + // a:fillToRect + $objWriter->startElement('a:fillToRect'); + $objWriter->writeAttribute('l', '50000'); + $objWriter->writeAttribute('t', '50000'); + $objWriter->writeAttribute('r', '50000'); + $objWriter->writeAttribute('b', '50000'); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + + // a:objectDefaults + $objWriter->writeElement('a:objectDefaults', null); + + // a:extraClrSchemeLst + $objWriter->writeElement('a:extraClrSchemeLst', null); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write fonts to XML format. + * + * @param string[] $fontSet + */ + private function writeFonts(XMLWriter $objWriter, string $latinFont, array $fontSet): void + { + // a:latin + $objWriter->startElement('a:latin'); + $objWriter->writeAttribute('typeface', $latinFont); + $objWriter->endElement(); + + // a:ea + $objWriter->startElement('a:ea'); + $objWriter->writeAttribute('typeface', ''); + $objWriter->endElement(); + + // a:cs + $objWriter->startElement('a:cs'); + $objWriter->writeAttribute('typeface', ''); + $objWriter->endElement(); + + foreach ($fontSet as $fontScript => $typeface) { + $objWriter->startElement('a:font'); + $objWriter->writeAttribute('script', $fontScript); + $objWriter->writeAttribute('typeface', $typeface); + $objWriter->endElement(); + } + } + + /** + * Write colour scheme to XML format. + */ + private function writeColourScheme(XMLWriter $objWriter): void + { + foreach (self::$colourScheme as $colourName => $colourValue) { + $objWriter->startElement('a:' . $colourName); + + $objWriter->startElement('a:srgbClr'); + $objWriter->writeAttribute('val', $colourValue); + $objWriter->endElement(); + + $objWriter->endElement(); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Workbook.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Workbook.php new file mode 100644 index 0000000..f9d7197 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Workbook.php @@ -0,0 +1,213 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +use PhpOffice\PhpSpreadsheet\Shared\Date; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Spreadsheet; +use PhpOffice\PhpSpreadsheet\Writer\Exception as WriterException; +use PhpOffice\PhpSpreadsheet\Writer\Xlsx\DefinedNames as DefinedNamesWriter; + +class Workbook extends WriterPart +{ + /** + * Write workbook to XML format. + * + * @param bool $recalcRequired Indicate whether formulas should be recalculated before writing + * + * @return string XML Output + */ + public function writeWorkbook(Spreadsheet $spreadsheet, $recalcRequired = false) + { + // Create XML writer + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // workbook + $objWriter->startElement('workbook'); + $objWriter->writeAttribute('xml:space', 'preserve'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'); + $objWriter->writeAttribute('xmlns:r', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships'); + + // fileVersion + $this->writeFileVersion($objWriter); + + // workbookPr + $this->writeWorkbookPr($objWriter); + + // workbookProtection + $this->writeWorkbookProtection($objWriter, $spreadsheet); + + // bookViews + if ($this->getParentWriter()->getOffice2003Compatibility() === false) { + $this->writeBookViews($objWriter, $spreadsheet); + } + + // sheets + $this->writeSheets($objWriter, $spreadsheet); + + // definedNames + (new DefinedNamesWriter($objWriter, $spreadsheet))->write(); + + // calcPr + $this->writeCalcPr($objWriter, $recalcRequired); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write file version. + */ + private function writeFileVersion(XMLWriter $objWriter): void + { + $objWriter->startElement('fileVersion'); + $objWriter->writeAttribute('appName', 'xl'); + $objWriter->writeAttribute('lastEdited', '4'); + $objWriter->writeAttribute('lowestEdited', '4'); + $objWriter->writeAttribute('rupBuild', '4505'); + $objWriter->endElement(); + } + + /** + * Write WorkbookPr. + */ + private function writeWorkbookPr(XMLWriter $objWriter): void + { + $objWriter->startElement('workbookPr'); + + if (Date::getExcelCalendar() === Date::CALENDAR_MAC_1904) { + $objWriter->writeAttribute('date1904', '1'); + } + + $objWriter->writeAttribute('codeName', 'ThisWorkbook'); + + $objWriter->endElement(); + } + + /** + * Write BookViews. + */ + private function writeBookViews(XMLWriter $objWriter, Spreadsheet $spreadsheet): void + { + // bookViews + $objWriter->startElement('bookViews'); + + // workbookView + $objWriter->startElement('workbookView'); + + $objWriter->writeAttribute('activeTab', $spreadsheet->getActiveSheetIndex()); + $objWriter->writeAttribute('autoFilterDateGrouping', ($spreadsheet->getAutoFilterDateGrouping() ? 'true' : 'false')); + $objWriter->writeAttribute('firstSheet', $spreadsheet->getFirstSheetIndex()); + $objWriter->writeAttribute('minimized', ($spreadsheet->getMinimized() ? 'true' : 'false')); + $objWriter->writeAttribute('showHorizontalScroll', ($spreadsheet->getShowHorizontalScroll() ? 'true' : 'false')); + $objWriter->writeAttribute('showSheetTabs', ($spreadsheet->getShowSheetTabs() ? 'true' : 'false')); + $objWriter->writeAttribute('showVerticalScroll', ($spreadsheet->getShowVerticalScroll() ? 'true' : 'false')); + $objWriter->writeAttribute('tabRatio', $spreadsheet->getTabRatio()); + $objWriter->writeAttribute('visibility', $spreadsheet->getVisibility()); + + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write WorkbookProtection. + */ + private function writeWorkbookProtection(XMLWriter $objWriter, Spreadsheet $spreadsheet): void + { + if ($spreadsheet->getSecurity()->isSecurityEnabled()) { + $objWriter->startElement('workbookProtection'); + $objWriter->writeAttribute('lockRevision', ($spreadsheet->getSecurity()->getLockRevision() ? 'true' : 'false')); + $objWriter->writeAttribute('lockStructure', ($spreadsheet->getSecurity()->getLockStructure() ? 'true' : 'false')); + $objWriter->writeAttribute('lockWindows', ($spreadsheet->getSecurity()->getLockWindows() ? 'true' : 'false')); + + if ($spreadsheet->getSecurity()->getRevisionsPassword() != '') { + $objWriter->writeAttribute('revisionsPassword', $spreadsheet->getSecurity()->getRevisionsPassword()); + } + + if ($spreadsheet->getSecurity()->getWorkbookPassword() != '') { + $objWriter->writeAttribute('workbookPassword', $spreadsheet->getSecurity()->getWorkbookPassword()); + } + + $objWriter->endElement(); + } + } + + /** + * Write calcPr. + * + * @param bool $recalcRequired Indicate whether formulas should be recalculated before writing + */ + private function writeCalcPr(XMLWriter $objWriter, $recalcRequired = true): void + { + $objWriter->startElement('calcPr'); + + // Set the calcid to a higher value than Excel itself will use, otherwise Excel will always recalc + // If MS Excel does do a recalc, then users opening a file in MS Excel will be prompted to save on exit + // because the file has changed + $objWriter->writeAttribute('calcId', '999999'); + $objWriter->writeAttribute('calcMode', 'auto'); + // fullCalcOnLoad isn't needed if we've recalculating for the save + $objWriter->writeAttribute('calcCompleted', ($recalcRequired) ? 1 : 0); + $objWriter->writeAttribute('fullCalcOnLoad', ($recalcRequired) ? 0 : 1); + $objWriter->writeAttribute('forceFullCalc', ($recalcRequired) ? 0 : 1); + + $objWriter->endElement(); + } + + /** + * Write sheets. + */ + private function writeSheets(XMLWriter $objWriter, Spreadsheet $spreadsheet): void + { + // Write sheets + $objWriter->startElement('sheets'); + $sheetCount = $spreadsheet->getSheetCount(); + for ($i = 0; $i < $sheetCount; ++$i) { + // sheet + $this->writeSheet( + $objWriter, + $spreadsheet->getSheet($i)->getTitle(), + ($i + 1), + ($i + 1 + 3), + $spreadsheet->getSheet($i)->getSheetState() + ); + } + + $objWriter->endElement(); + } + + /** + * Write sheet. + * + * @param string $worksheetName Sheet name + * @param int $worksheetId Sheet id + * @param int $relId Relationship ID + * @param string $sheetState Sheet state (visible, hidden, veryHidden) + */ + private function writeSheet(XMLWriter $objWriter, $worksheetName, $worksheetId = 1, $relId = 1, $sheetState = 'visible'): void + { + if ($worksheetName != '') { + // Write sheet + $objWriter->startElement('sheet'); + $objWriter->writeAttribute('name', $worksheetName); + $objWriter->writeAttribute('sheetId', $worksheetId); + if ($sheetState !== 'visible' && $sheetState != '') { + $objWriter->writeAttribute('state', $sheetState); + } + $objWriter->writeAttribute('r:id', 'rId' . $relId); + $objWriter->endElement(); + } else { + throw new WriterException('Invalid parameters passed.'); + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php new file mode 100644 index 0000000..4b0cb63 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php @@ -0,0 +1,1473 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +use PhpOffice\PhpSpreadsheet\Calculation\Information\ErrorValue; +use PhpOffice\PhpSpreadsheet\Calculation\Information\Value; +use PhpOffice\PhpSpreadsheet\Cell\Cell; +use PhpOffice\PhpSpreadsheet\Cell\Coordinate; +use PhpOffice\PhpSpreadsheet\RichText\RichText; +use PhpOffice\PhpSpreadsheet\Settings; +use PhpOffice\PhpSpreadsheet\Shared\StringHelper; +use PhpOffice\PhpSpreadsheet\Shared\XMLWriter; +use PhpOffice\PhpSpreadsheet\Style\Conditional; +use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalDataBar; +use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalFormattingRuleExtension; +use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter\Column; +use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter\Column\Rule; +use PhpOffice\PhpSpreadsheet\Worksheet\SheetView; +use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet as PhpspreadsheetWorksheet; + +class Worksheet extends WriterPart +{ + /** + * Write worksheet to XML format. + * + * @param string[] $stringTable + * @param bool $includeCharts Flag indicating if we should write charts + * + * @return string XML Output + */ + public function writeWorksheet(PhpspreadsheetWorksheet $worksheet, $stringTable = null, $includeCharts = false) + { + // Create XML writer + $objWriter = null; + if ($this->getParentWriter()->getUseDiskCaching()) { + $objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory()); + } else { + $objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY); + } + + // XML header + $objWriter->startDocument('1.0', 'UTF-8', 'yes'); + + // Worksheet + $objWriter->startElement('worksheet'); + $objWriter->writeAttribute('xml:space', 'preserve'); + $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'); + $objWriter->writeAttribute('xmlns:r', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships'); + + $objWriter->writeAttribute('xmlns:xdr', 'http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing'); + $objWriter->writeAttribute('xmlns:x14', 'http://schemas.microsoft.com/office/spreadsheetml/2009/9/main'); + $objWriter->writeAttribute('xmlns:xm', 'http://schemas.microsoft.com/office/excel/2006/main'); + $objWriter->writeAttribute('xmlns:mc', 'http://schemas.openxmlformats.org/markup-compatibility/2006'); + $objWriter->writeAttribute('mc:Ignorable', 'x14ac'); + $objWriter->writeAttribute('xmlns:x14ac', 'http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac'); + + // sheetPr + $this->writeSheetPr($objWriter, $worksheet); + + // Dimension + $this->writeDimension($objWriter, $worksheet); + + // sheetViews + $this->writeSheetViews($objWriter, $worksheet); + + // sheetFormatPr + $this->writeSheetFormatPr($objWriter, $worksheet); + + // cols + $this->writeCols($objWriter, $worksheet); + + // sheetData + $this->writeSheetData($objWriter, $worksheet, $stringTable); + + // sheetProtection + $this->writeSheetProtection($objWriter, $worksheet); + + // protectedRanges + $this->writeProtectedRanges($objWriter, $worksheet); + + // autoFilter + $this->writeAutoFilter($objWriter, $worksheet); + + // mergeCells + $this->writeMergeCells($objWriter, $worksheet); + + // conditionalFormatting + $this->writeConditionalFormatting($objWriter, $worksheet); + + // dataValidations + $this->writeDataValidations($objWriter, $worksheet); + + // hyperlinks + $this->writeHyperlinks($objWriter, $worksheet); + + // Print options + $this->writePrintOptions($objWriter, $worksheet); + + // Page margins + $this->writePageMargins($objWriter, $worksheet); + + // Page setup + $this->writePageSetup($objWriter, $worksheet); + + // Header / footer + $this->writeHeaderFooter($objWriter, $worksheet); + + // Breaks + $this->writeBreaks($objWriter, $worksheet); + + // Drawings and/or Charts + $this->writeDrawings($objWriter, $worksheet, $includeCharts); + + // LegacyDrawing + $this->writeLegacyDrawing($objWriter, $worksheet); + + // LegacyDrawingHF + $this->writeLegacyDrawingHF($objWriter, $worksheet); + + // AlternateContent + $this->writeAlternateContent($objWriter, $worksheet); + + // Table + $this->writeTable($objWriter, $worksheet); + + // ConditionalFormattingRuleExtensionList + // (Must be inserted last. Not insert last, an Excel parse error will occur) + $this->writeExtLst($objWriter, $worksheet); + + $objWriter->endElement(); + + // Return + return $objWriter->getData(); + } + + /** + * Write SheetPr. + */ + private function writeSheetPr(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + // sheetPr + $objWriter->startElement('sheetPr'); + if ($worksheet->getParent()->hasMacros()) { + //if the workbook have macros, we need to have codeName for the sheet + if (!$worksheet->hasCodeName()) { + $worksheet->setCodeName($worksheet->getTitle()); + } + self::writeAttributeNotNull($objWriter, 'codeName', $worksheet->getCodeName()); + } + $autoFilterRange = $worksheet->getAutoFilter()->getRange(); + if (!empty($autoFilterRange)) { + $objWriter->writeAttribute('filterMode', 1); + if (!$worksheet->getAutoFilter()->getEvaluated()) { + $worksheet->getAutoFilter()->showHideRows(); + } + } + + // tabColor + if ($worksheet->isTabColorSet()) { + $objWriter->startElement('tabColor'); + $objWriter->writeAttribute('rgb', $worksheet->getTabColor()->getARGB()); + $objWriter->endElement(); + } + + // outlinePr + $objWriter->startElement('outlinePr'); + $objWriter->writeAttribute('summaryBelow', ($worksheet->getShowSummaryBelow() ? '1' : '0')); + $objWriter->writeAttribute('summaryRight', ($worksheet->getShowSummaryRight() ? '1' : '0')); + $objWriter->endElement(); + + // pageSetUpPr + if ($worksheet->getPageSetup()->getFitToPage()) { + $objWriter->startElement('pageSetUpPr'); + $objWriter->writeAttribute('fitToPage', '1'); + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + + /** + * Write Dimension. + */ + private function writeDimension(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + // dimension + $objWriter->startElement('dimension'); + $objWriter->writeAttribute('ref', $worksheet->calculateWorksheetDimension()); + $objWriter->endElement(); + } + + /** + * Write SheetViews. + */ + private function writeSheetViews(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + // sheetViews + $objWriter->startElement('sheetViews'); + + // Sheet selected? + $sheetSelected = false; + if ($this->getParentWriter()->getSpreadsheet()->getIndex($worksheet) == $this->getParentWriter()->getSpreadsheet()->getActiveSheetIndex()) { + $sheetSelected = true; + } + + // sheetView + $objWriter->startElement('sheetView'); + $objWriter->writeAttribute('tabSelected', $sheetSelected ? '1' : '0'); + $objWriter->writeAttribute('workbookViewId', '0'); + + // Zoom scales + if ($worksheet->getSheetView()->getZoomScale() != 100) { + $objWriter->writeAttribute('zoomScale', (string) $worksheet->getSheetView()->getZoomScale()); + } + if ($worksheet->getSheetView()->getZoomScaleNormal() != 100) { + $objWriter->writeAttribute('zoomScaleNormal', (string) $worksheet->getSheetView()->getZoomScaleNormal()); + } + + // Show zeros (Excel also writes this attribute only if set to false) + if ($worksheet->getSheetView()->getShowZeros() === false) { + $objWriter->writeAttribute('showZeros', 0); + } + + // View Layout Type + if ($worksheet->getSheetView()->getView() !== SheetView::SHEETVIEW_NORMAL) { + $objWriter->writeAttribute('view', $worksheet->getSheetView()->getView()); + } + + // Gridlines + if ($worksheet->getShowGridlines()) { + $objWriter->writeAttribute('showGridLines', 'true'); + } else { + $objWriter->writeAttribute('showGridLines', 'false'); + } + + // Row and column headers + if ($worksheet->getShowRowColHeaders()) { + $objWriter->writeAttribute('showRowColHeaders', '1'); + } else { + $objWriter->writeAttribute('showRowColHeaders', '0'); + } + + // Right-to-left + if ($worksheet->getRightToLeft()) { + $objWriter->writeAttribute('rightToLeft', 'true'); + } + + $topLeftCell = $worksheet->getTopLeftCell(); + $activeCell = $worksheet->getActiveCell(); + $sqref = $worksheet->getSelectedCells(); + + // Pane + $pane = ''; + if ($worksheet->getFreezePane()) { + [$xSplit, $ySplit] = Coordinate::coordinateFromString($worksheet->getFreezePane() ?? ''); + $xSplit = Coordinate::columnIndexFromString($xSplit); + --$xSplit; + --$ySplit; + + // pane + $pane = 'topRight'; + $objWriter->startElement('pane'); + if ($xSplit > 0) { + $objWriter->writeAttribute('xSplit', $xSplit); + } + if ($ySplit > 0) { + $objWriter->writeAttribute('ySplit', $ySplit); + $pane = ($xSplit > 0) ? 'bottomRight' : 'bottomLeft'; + } + self::writeAttributeNotNull($objWriter, 'topLeftCell', $topLeftCell); + $objWriter->writeAttribute('activePane', $pane); + $objWriter->writeAttribute('state', 'frozen'); + $objWriter->endElement(); + + if (($xSplit > 0) && ($ySplit > 0)) { + // Write additional selections if more than two panes (ie both an X and a Y split) + $objWriter->startElement('selection'); + $objWriter->writeAttribute('pane', 'topRight'); + $objWriter->endElement(); + $objWriter->startElement('selection'); + $objWriter->writeAttribute('pane', 'bottomLeft'); + $objWriter->endElement(); + } + } else { + self::writeAttributeNotNull($objWriter, 'topLeftCell', $topLeftCell); + } + + // Selection + // Only need to write selection element if we have a split pane + // We cheat a little by over-riding the active cell selection, setting it to the split cell + $objWriter->startElement('selection'); + if ($pane != '') { + $objWriter->writeAttribute('pane', $pane); + } + $objWriter->writeAttribute('activeCell', $activeCell); + $objWriter->writeAttribute('sqref', $sqref); + $objWriter->endElement(); + + $objWriter->endElement(); + + $objWriter->endElement(); + } + + /** + * Write SheetFormatPr. + */ + private function writeSheetFormatPr(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + // sheetFormatPr + $objWriter->startElement('sheetFormatPr'); + + // Default row height + if ($worksheet->getDefaultRowDimension()->getRowHeight() >= 0) { + $objWriter->writeAttribute('customHeight', 'true'); + $objWriter->writeAttribute('defaultRowHeight', StringHelper::formatNumber($worksheet->getDefaultRowDimension()->getRowHeight())); + } else { + $objWriter->writeAttribute('defaultRowHeight', '14.4'); + } + + // Set Zero Height row + if ($worksheet->getDefaultRowDimension()->getZeroHeight()) { + $objWriter->writeAttribute('zeroHeight', '1'); + } + + // Default column width + if ($worksheet->getDefaultColumnDimension()->getWidth() >= 0) { + $objWriter->writeAttribute('defaultColWidth', StringHelper::formatNumber($worksheet->getDefaultColumnDimension()->getWidth())); + } + + // Outline level - row + $outlineLevelRow = 0; + foreach ($worksheet->getRowDimensions() as $dimension) { + if ($dimension->getOutlineLevel() > $outlineLevelRow) { + $outlineLevelRow = $dimension->getOutlineLevel(); + } + } + $objWriter->writeAttribute('outlineLevelRow', (int) $outlineLevelRow); + + // Outline level - column + $outlineLevelCol = 0; + foreach ($worksheet->getColumnDimensions() as $dimension) { + if ($dimension->getOutlineLevel() > $outlineLevelCol) { + $outlineLevelCol = $dimension->getOutlineLevel(); + } + } + $objWriter->writeAttribute('outlineLevelCol', (int) $outlineLevelCol); + + $objWriter->endElement(); + } + + /** + * Write Cols. + */ + private function writeCols(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + // cols + if (count($worksheet->getColumnDimensions()) > 0) { + $objWriter->startElement('cols'); + + $worksheet->calculateColumnWidths(); + + // Loop through column dimensions + foreach ($worksheet->getColumnDimensions() as $colDimension) { + // col + $objWriter->startElement('col'); + $objWriter->writeAttribute('min', Coordinate::columnIndexFromString($colDimension->getColumnIndex())); + $objWriter->writeAttribute('max', Coordinate::columnIndexFromString($colDimension->getColumnIndex())); + + if ($colDimension->getWidth() < 0) { + // No width set, apply default of 10 + $objWriter->writeAttribute('width', '9.10'); + } else { + // Width set + $objWriter->writeAttribute('width', StringHelper::formatNumber($colDimension->getWidth())); + } + + // Column visibility + if ($colDimension->getVisible() === false) { + $objWriter->writeAttribute('hidden', 'true'); + } + + // Auto size? + if ($colDimension->getAutoSize()) { + $objWriter->writeAttribute('bestFit', 'true'); + } + + // Custom width? + if ($colDimension->getWidth() != $worksheet->getDefaultColumnDimension()->getWidth()) { + $objWriter->writeAttribute('customWidth', 'true'); + } + + // Collapsed + if ($colDimension->getCollapsed() === true) { + $objWriter->writeAttribute('collapsed', 'true'); + } + + // Outline level + if ($colDimension->getOutlineLevel() > 0) { + $objWriter->writeAttribute('outlineLevel', $colDimension->getOutlineLevel()); + } + + // Style + $objWriter->writeAttribute('style', $colDimension->getXfIndex()); + + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + } + + /** + * Write SheetProtection. + */ + private function writeSheetProtection(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + // sheetProtection + $objWriter->startElement('sheetProtection'); + + $protection = $worksheet->getProtection(); + + if ($protection->getAlgorithm()) { + $objWriter->writeAttribute('algorithmName', $protection->getAlgorithm()); + $objWriter->writeAttribute('hashValue', $protection->getPassword()); + $objWriter->writeAttribute('saltValue', $protection->getSalt()); + $objWriter->writeAttribute('spinCount', $protection->getSpinCount()); + } elseif ($protection->getPassword() !== '') { + $objWriter->writeAttribute('password', $protection->getPassword()); + } + + $objWriter->writeAttribute('sheet', ($protection->getSheet() ? 'true' : 'false')); + $objWriter->writeAttribute('objects', ($protection->getObjects() ? 'true' : 'false')); + $objWriter->writeAttribute('scenarios', ($protection->getScenarios() ? 'true' : 'false')); + $objWriter->writeAttribute('formatCells', ($protection->getFormatCells() ? 'true' : 'false')); + $objWriter->writeAttribute('formatColumns', ($protection->getFormatColumns() ? 'true' : 'false')); + $objWriter->writeAttribute('formatRows', ($protection->getFormatRows() ? 'true' : 'false')); + $objWriter->writeAttribute('insertColumns', ($protection->getInsertColumns() ? 'true' : 'false')); + $objWriter->writeAttribute('insertRows', ($protection->getInsertRows() ? 'true' : 'false')); + $objWriter->writeAttribute('insertHyperlinks', ($protection->getInsertHyperlinks() ? 'true' : 'false')); + $objWriter->writeAttribute('deleteColumns', ($protection->getDeleteColumns() ? 'true' : 'false')); + $objWriter->writeAttribute('deleteRows', ($protection->getDeleteRows() ? 'true' : 'false')); + $objWriter->writeAttribute('selectLockedCells', ($protection->getSelectLockedCells() ? 'true' : 'false')); + $objWriter->writeAttribute('sort', ($protection->getSort() ? 'true' : 'false')); + $objWriter->writeAttribute('autoFilter', ($protection->getAutoFilter() ? 'true' : 'false')); + $objWriter->writeAttribute('pivotTables', ($protection->getPivotTables() ? 'true' : 'false')); + $objWriter->writeAttribute('selectUnlockedCells', ($protection->getSelectUnlockedCells() ? 'true' : 'false')); + $objWriter->endElement(); + } + + private static function writeAttributeIf(XMLWriter $objWriter, $condition, string $attr, string $val): void + { + if ($condition) { + $objWriter->writeAttribute($attr, $val); + } + } + + private static function writeAttributeNotNull(XMLWriter $objWriter, string $attr, ?string $val): void + { + if ($val !== null) { + $objWriter->writeAttribute($attr, $val); + } + } + + private static function writeElementIf(XMLWriter $objWriter, $condition, string $attr, string $val): void + { + if ($condition) { + $objWriter->writeElement($attr, $val); + } + } + + private static function writeOtherCondElements(XMLWriter $objWriter, Conditional $conditional, string $cellCoordinate): void + { + $conditions = $conditional->getConditions(); + if ( + $conditional->getConditionType() == Conditional::CONDITION_CELLIS + || $conditional->getConditionType() == Conditional::CONDITION_EXPRESSION + || !empty($conditions) + ) { + foreach ($conditions as $formula) { + // Formula + if (is_bool($formula)) { + $formula = $formula ? 'TRUE' : 'FALSE'; + } + $objWriter->writeElement('formula', Xlfn::addXlfn("$formula")); + } + } else { + if ($conditional->getConditionType() == Conditional::CONDITION_CONTAINSBLANKS) { + // formula copied from ms xlsx xml source file + $objWriter->writeElement('formula', 'LEN(TRIM(' . $cellCoordinate . '))=0'); + } elseif ($conditional->getConditionType() == Conditional::CONDITION_NOTCONTAINSBLANKS) { + // formula copied from ms xlsx xml source file + $objWriter->writeElement('formula', 'LEN(TRIM(' . $cellCoordinate . '))>0'); + } elseif ($conditional->getConditionType() == Conditional::CONDITION_CONTAINSERRORS) { + // formula copied from ms xlsx xml source file + $objWriter->writeElement('formula', 'ISERROR(' . $cellCoordinate . ')'); + } elseif ($conditional->getConditionType() == Conditional::CONDITION_NOTCONTAINSERRORS) { + // formula copied from ms xlsx xml source file + $objWriter->writeElement('formula', 'NOT(ISERROR(' . $cellCoordinate . '))'); + } + } + } + + private static function writeTimePeriodCondElements(XMLWriter $objWriter, Conditional $conditional, string $cellCoordinate): void + { + $txt = $conditional->getText(); + if ($txt !== null) { + $objWriter->writeAttribute('timePeriod', $txt); + if (empty($conditional->getConditions())) { + if ($conditional->getOperatorType() == Conditional::TIMEPERIOD_TODAY) { + $objWriter->writeElement('formula', 'FLOOR(' . $cellCoordinate . ')=TODAY()'); + } elseif ($conditional->getOperatorType() == Conditional::TIMEPERIOD_TOMORROW) { + $objWriter->writeElement('formula', 'FLOOR(' . $cellCoordinate . ')=TODAY()+1'); + } elseif ($conditional->getOperatorType() == Conditional::TIMEPERIOD_YESTERDAY) { + $objWriter->writeElement('formula', 'FLOOR(' . $cellCoordinate . ')=TODAY()-1'); + } elseif ($conditional->getOperatorType() == Conditional::TIMEPERIOD_LAST_7_DAYS) { + $objWriter->writeElement('formula', 'AND(TODAY()-FLOOR(' . $cellCoordinate . ',1)<=6,FLOOR(' . $cellCoordinate . ',1)<=TODAY())'); + } elseif ($conditional->getOperatorType() == Conditional::TIMEPERIOD_LAST_WEEK) { + $objWriter->writeElement('formula', 'AND(TODAY()-ROUNDDOWN(' . $cellCoordinate . ',0)>=(WEEKDAY(TODAY())),TODAY()-ROUNDDOWN(' . $cellCoordinate . ',0)<(WEEKDAY(TODAY())+7))'); + } elseif ($conditional->getOperatorType() == Conditional::TIMEPERIOD_THIS_WEEK) { + $objWriter->writeElement('formula', 'AND(TODAY()-ROUNDDOWN(' . $cellCoordinate . ',0)<=WEEKDAY(TODAY())-1,ROUNDDOWN(' . $cellCoordinate . ',0)-TODAY()<=7-WEEKDAY(TODAY()))'); + } elseif ($conditional->getOperatorType() == Conditional::TIMEPERIOD_NEXT_WEEK) { + $objWriter->writeElement('formula', 'AND(ROUNDDOWN(' . $cellCoordinate . ',0)-TODAY()>(7-WEEKDAY(TODAY())),ROUNDDOWN(' . $cellCoordinate . ',0)-TODAY()<(15-WEEKDAY(TODAY())))'); + } elseif ($conditional->getOperatorType() == Conditional::TIMEPERIOD_LAST_MONTH) { + $objWriter->writeElement('formula', 'AND(MONTH(' . $cellCoordinate . ')=MONTH(EDATE(TODAY(),0-1)),YEAR(' . $cellCoordinate . ')=YEAR(EDATE(TODAY(),0-1)))'); + } elseif ($conditional->getOperatorType() == Conditional::TIMEPERIOD_THIS_MONTH) { + $objWriter->writeElement('formula', 'AND(MONTH(' . $cellCoordinate . ')=MONTH(TODAY()),YEAR(' . $cellCoordinate . ')=YEAR(TODAY()))'); + } elseif ($conditional->getOperatorType() == Conditional::TIMEPERIOD_NEXT_MONTH) { + $objWriter->writeElement('formula', 'AND(MONTH(' . $cellCoordinate . ')=MONTH(EDATE(TODAY(),0+1)),YEAR(' . $cellCoordinate . ')=YEAR(EDATE(TODAY(),0+1)))'); + } + } else { + $objWriter->writeElement('formula', (string) ($conditional->getConditions()[0])); + } + } + } + + private static function writeTextCondElements(XMLWriter $objWriter, Conditional $conditional, string $cellCoordinate): void + { + $txt = $conditional->getText(); + if ($txt !== null) { + $objWriter->writeAttribute('text', $txt); + if (empty($conditional->getConditions())) { + if ($conditional->getOperatorType() == Conditional::OPERATOR_CONTAINSTEXT) { + $objWriter->writeElement('formula', 'NOT(ISERROR(SEARCH("' . $txt . '",' . $cellCoordinate . ')))'); + } elseif ($conditional->getOperatorType() == Conditional::OPERATOR_BEGINSWITH) { + $objWriter->writeElement('formula', 'LEFT(' . $cellCoordinate . ',LEN("' . $txt . '"))="' . $txt . '"'); + } elseif ($conditional->getOperatorType() == Conditional::OPERATOR_ENDSWITH) { + $objWriter->writeElement('formula', 'RIGHT(' . $cellCoordinate . ',LEN("' . $txt . '"))="' . $txt . '"'); + } elseif ($conditional->getOperatorType() == Conditional::OPERATOR_NOTCONTAINS) { + $objWriter->writeElement('formula', 'ISERROR(SEARCH("' . $txt . '",' . $cellCoordinate . '))'); + } + } else { + $objWriter->writeElement('formula', (string) ($conditional->getConditions()[0])); + } + } + } + + private static function writeExtConditionalFormattingElements(XMLWriter $objWriter, ConditionalFormattingRuleExtension $ruleExtension): void + { + $prefix = 'x14'; + $objWriter->startElementNs($prefix, 'conditionalFormatting', null); + + $objWriter->startElementNs($prefix, 'cfRule', null); + $objWriter->writeAttribute('type', $ruleExtension->getCfRule()); + $objWriter->writeAttribute('id', $ruleExtension->getId()); + $objWriter->startElementNs($prefix, 'dataBar', null); + $dataBar = $ruleExtension->getDataBarExt(); + foreach ($dataBar->getXmlAttributes() as $attrKey => $val) { + $objWriter->writeAttribute($attrKey, $val); + } + $minCfvo = $dataBar->getMinimumConditionalFormatValueObject(); + if ($minCfvo) { + $objWriter->startElementNs($prefix, 'cfvo', null); + $objWriter->writeAttribute('type', $minCfvo->getType()); + if ($minCfvo->getCellFormula()) { + $objWriter->writeElement('xm:f', $minCfvo->getCellFormula()); + } + $objWriter->endElement(); //end cfvo + } + + $maxCfvo = $dataBar->getMaximumConditionalFormatValueObject(); + if ($maxCfvo) { + $objWriter->startElementNs($prefix, 'cfvo', null); + $objWriter->writeAttribute('type', $maxCfvo->getType()); + if ($maxCfvo->getCellFormula()) { + $objWriter->writeElement('xm:f', $maxCfvo->getCellFormula()); + } + $objWriter->endElement(); //end cfvo + } + + foreach ($dataBar->getXmlElements() as $elmKey => $elmAttr) { + $objWriter->startElementNs($prefix, $elmKey, null); + foreach ($elmAttr as $attrKey => $attrVal) { + $objWriter->writeAttribute($attrKey, $attrVal); + } + $objWriter->endElement(); //end elmKey + } + $objWriter->endElement(); //end dataBar + $objWriter->endElement(); //end cfRule + $objWriter->writeElement('xm:sqref', $ruleExtension->getSqref()); + $objWriter->endElement(); //end conditionalFormatting + } + + private static function writeDataBarElements(XMLWriter $objWriter, $dataBar): void + { + /** @var ConditionalDataBar $dataBar */ + if ($dataBar) { + $objWriter->startElement('dataBar'); + self::writeAttributeIf($objWriter, null !== $dataBar->getShowValue(), 'showValue', $dataBar->getShowValue() ? '1' : '0'); + + $minCfvo = $dataBar->getMinimumConditionalFormatValueObject(); + if ($minCfvo) { + $objWriter->startElement('cfvo'); + self::writeAttributeIf($objWriter, $minCfvo->getType(), 'type', (string) $minCfvo->getType()); + self::writeAttributeIf($objWriter, $minCfvo->getValue(), 'val', (string) $minCfvo->getValue()); + $objWriter->endElement(); + } + $maxCfvo = $dataBar->getMaximumConditionalFormatValueObject(); + if ($maxCfvo) { + $objWriter->startElement('cfvo'); + self::writeAttributeIf($objWriter, $maxCfvo->getType(), 'type', (string) $maxCfvo->getType()); + self::writeAttributeIf($objWriter, $maxCfvo->getValue(), 'val', (string) $maxCfvo->getValue()); + $objWriter->endElement(); + } + if ($dataBar->getColor()) { + $objWriter->startElement('color'); + $objWriter->writeAttribute('rgb', $dataBar->getColor()); + $objWriter->endElement(); + } + $objWriter->endElement(); // end dataBar + + if ($dataBar->getConditionalFormattingRuleExt()) { + $objWriter->startElement('extLst'); + $extension = $dataBar->getConditionalFormattingRuleExt(); + $objWriter->startElement('ext'); + $objWriter->writeAttribute('uri', '{B025F937-C7B1-47D3-B67F-A62EFF666E3E}'); + $objWriter->startElementNs('x14', 'id', null); + $objWriter->text($extension->getId()); + $objWriter->endElement(); + $objWriter->endElement(); + $objWriter->endElement(); //end extLst + } + } + } + + /** + * Write ConditionalFormatting. + */ + private function writeConditionalFormatting(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + // Conditional id + $id = 1; + + // Loop through styles in the current worksheet + foreach ($worksheet->getConditionalStylesCollection() as $cellCoordinate => $conditionalStyles) { + $objWriter->startElement('conditionalFormatting'); + $objWriter->writeAttribute('sqref', $cellCoordinate); + + foreach ($conditionalStyles as $conditional) { + // WHY was this again? + // if ($this->getParentWriter()->getStylesConditionalHashTable()->getIndexForHashCode($conditional->getHashCode()) == '') { + // continue; + // } + // cfRule + $objWriter->startElement('cfRule'); + $objWriter->writeAttribute('type', $conditional->getConditionType()); + self::writeAttributeIf( + $objWriter, + ($conditional->getConditionType() != Conditional::CONDITION_DATABAR), + 'dxfId', + (string) $this->getParentWriter()->getStylesConditionalHashTable()->getIndexForHashCode($conditional->getHashCode()) + ); + $objWriter->writeAttribute('priority', $id++); + + self::writeAttributeif( + $objWriter, + ( + $conditional->getConditionType() === Conditional::CONDITION_CELLIS + || $conditional->getConditionType() === Conditional::CONDITION_CONTAINSTEXT + || $conditional->getConditionType() === Conditional::CONDITION_NOTCONTAINSTEXT + || $conditional->getConditionType() === Conditional::CONDITION_BEGINSWITH + || $conditional->getConditionType() === Conditional::CONDITION_ENDSWITH + ) && $conditional->getOperatorType() !== Conditional::OPERATOR_NONE, + 'operator', + $conditional->getOperatorType() + ); + + self::writeAttributeIf($objWriter, $conditional->getStopIfTrue(), 'stopIfTrue', '1'); + + $cellRange = Coordinate::splitRange(str_replace('$', '', strtoupper($cellCoordinate))); + [$topLeftCell] = $cellRange[0]; + + if ( + $conditional->getConditionType() === Conditional::CONDITION_CONTAINSTEXT + || $conditional->getConditionType() === Conditional::CONDITION_NOTCONTAINSTEXT + || $conditional->getConditionType() === Conditional::CONDITION_BEGINSWITH + || $conditional->getConditionType() === Conditional::CONDITION_ENDSWITH + ) { + self::writeTextCondElements($objWriter, $conditional, $topLeftCell); + } elseif ($conditional->getConditionType() === Conditional::CONDITION_TIMEPERIOD) { + self::writeTimePeriodCondElements($objWriter, $conditional, $topLeftCell); + } else { + self::writeOtherCondElements($objWriter, $conditional, $topLeftCell); + } + + //<dataBar> + self::writeDataBarElements($objWriter, $conditional->getDataBar()); + + $objWriter->endElement(); //end cfRule + } + + $objWriter->endElement(); //end conditionalFormatting + } + } + + /** + * Write DataValidations. + */ + private function writeDataValidations(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + // Datavalidation collection + $dataValidationCollection = $worksheet->getDataValidationCollection(); + + // Write data validations? + if (!empty($dataValidationCollection)) { + $dataValidationCollection = Coordinate::mergeRangesInCollection($dataValidationCollection); + $objWriter->startElement('dataValidations'); + $objWriter->writeAttribute('count', count($dataValidationCollection)); + + foreach ($dataValidationCollection as $coordinate => $dv) { + $objWriter->startElement('dataValidation'); + + if ($dv->getType() != '') { + $objWriter->writeAttribute('type', $dv->getType()); + } + + if ($dv->getErrorStyle() != '') { + $objWriter->writeAttribute('errorStyle', $dv->getErrorStyle()); + } + + if ($dv->getOperator() != '') { + $objWriter->writeAttribute('operator', $dv->getOperator()); + } + + $objWriter->writeAttribute('allowBlank', ($dv->getAllowBlank() ? '1' : '0')); + $objWriter->writeAttribute('showDropDown', (!$dv->getShowDropDown() ? '1' : '0')); + $objWriter->writeAttribute('showInputMessage', ($dv->getShowInputMessage() ? '1' : '0')); + $objWriter->writeAttribute('showErrorMessage', ($dv->getShowErrorMessage() ? '1' : '0')); + + if ($dv->getErrorTitle() !== '') { + $objWriter->writeAttribute('errorTitle', $dv->getErrorTitle()); + } + if ($dv->getError() !== '') { + $objWriter->writeAttribute('error', $dv->getError()); + } + if ($dv->getPromptTitle() !== '') { + $objWriter->writeAttribute('promptTitle', $dv->getPromptTitle()); + } + if ($dv->getPrompt() !== '') { + $objWriter->writeAttribute('prompt', $dv->getPrompt()); + } + + $objWriter->writeAttribute('sqref', $dv->getSqref() ?? $coordinate); + + if ($dv->getFormula1() !== '') { + $objWriter->writeElement('formula1', $dv->getFormula1()); + } + if ($dv->getFormula2() !== '') { + $objWriter->writeElement('formula2', $dv->getFormula2()); + } + + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + } + + /** + * Write Hyperlinks. + */ + private function writeHyperlinks(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + // Hyperlink collection + $hyperlinkCollection = $worksheet->getHyperlinkCollection(); + + // Relation ID + $relationId = 1; + + // Write hyperlinks? + if (!empty($hyperlinkCollection)) { + $objWriter->startElement('hyperlinks'); + + foreach ($hyperlinkCollection as $coordinate => $hyperlink) { + $objWriter->startElement('hyperlink'); + + $objWriter->writeAttribute('ref', $coordinate); + if (!$hyperlink->isInternal()) { + $objWriter->writeAttribute('r:id', 'rId_hyperlink_' . $relationId); + ++$relationId; + } else { + $objWriter->writeAttribute('location', str_replace('sheet://', '', $hyperlink->getUrl())); + } + + if ($hyperlink->getTooltip() !== '') { + $objWriter->writeAttribute('tooltip', $hyperlink->getTooltip()); + $objWriter->writeAttribute('display', $hyperlink->getTooltip()); + } + + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + } + + /** + * Write ProtectedRanges. + */ + private function writeProtectedRanges(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + if (count($worksheet->getProtectedCells()) > 0) { + // protectedRanges + $objWriter->startElement('protectedRanges'); + + // Loop protectedRanges + foreach ($worksheet->getProtectedCells() as $protectedCell => $passwordHash) { + // protectedRange + $objWriter->startElement('protectedRange'); + $objWriter->writeAttribute('name', 'p' . md5($protectedCell)); + $objWriter->writeAttribute('sqref', $protectedCell); + if (!empty($passwordHash)) { + $objWriter->writeAttribute('password', $passwordHash); + } + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + } + + /** + * Write MergeCells. + */ + private function writeMergeCells(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + if (count($worksheet->getMergeCells()) > 0) { + // mergeCells + $objWriter->startElement('mergeCells'); + + // Loop mergeCells + foreach ($worksheet->getMergeCells() as $mergeCell) { + // mergeCell + $objWriter->startElement('mergeCell'); + $objWriter->writeAttribute('ref', $mergeCell); + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + } + + /** + * Write PrintOptions. + */ + private function writePrintOptions(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + // printOptions + $objWriter->startElement('printOptions'); + + $objWriter->writeAttribute('gridLines', ($worksheet->getPrintGridlines() ? 'true' : 'false')); + $objWriter->writeAttribute('gridLinesSet', 'true'); + + if ($worksheet->getPageSetup()->getHorizontalCentered()) { + $objWriter->writeAttribute('horizontalCentered', 'true'); + } + + if ($worksheet->getPageSetup()->getVerticalCentered()) { + $objWriter->writeAttribute('verticalCentered', 'true'); + } + + $objWriter->endElement(); + } + + /** + * Write PageMargins. + */ + private function writePageMargins(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + // pageMargins + $objWriter->startElement('pageMargins'); + $objWriter->writeAttribute('left', StringHelper::formatNumber($worksheet->getPageMargins()->getLeft())); + $objWriter->writeAttribute('right', StringHelper::formatNumber($worksheet->getPageMargins()->getRight())); + $objWriter->writeAttribute('top', StringHelper::formatNumber($worksheet->getPageMargins()->getTop())); + $objWriter->writeAttribute('bottom', StringHelper::formatNumber($worksheet->getPageMargins()->getBottom())); + $objWriter->writeAttribute('header', StringHelper::formatNumber($worksheet->getPageMargins()->getHeader())); + $objWriter->writeAttribute('footer', StringHelper::formatNumber($worksheet->getPageMargins()->getFooter())); + $objWriter->endElement(); + } + + /** + * Write AutoFilter. + */ + private function writeAutoFilter(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + $autoFilterRange = $worksheet->getAutoFilter()->getRange(); + if (!empty($autoFilterRange)) { + // autoFilter + $objWriter->startElement('autoFilter'); + + // Strip any worksheet reference from the filter coordinates + $range = Coordinate::splitRange($autoFilterRange); + $range = $range[0]; + // Strip any worksheet ref + [$ws, $range[0]] = PhpspreadsheetWorksheet::extractSheetTitle($range[0], true); + $range = implode(':', $range); + + $objWriter->writeAttribute('ref', str_replace('$', '', $range)); + + $columns = $worksheet->getAutoFilter()->getColumns(); + if (count($columns) > 0) { + foreach ($columns as $columnID => $column) { + $rules = $column->getRules(); + if (count($rules) > 0) { + $objWriter->startElement('filterColumn'); + $objWriter->writeAttribute('colId', $worksheet->getAutoFilter()->getColumnOffset($columnID)); + + $objWriter->startElement($column->getFilterType()); + if ($column->getJoin() == Column::AUTOFILTER_COLUMN_JOIN_AND) { + $objWriter->writeAttribute('and', 1); + } + + foreach ($rules as $rule) { + if ( + ($column->getFilterType() === Column::AUTOFILTER_FILTERTYPE_FILTER) && + ($rule->getOperator() === Rule::AUTOFILTER_COLUMN_RULE_EQUAL) && + ($rule->getValue() === '') + ) { + // Filter rule for Blanks + $objWriter->writeAttribute('blank', 1); + } elseif ($rule->getRuleType() === Rule::AUTOFILTER_RULETYPE_DYNAMICFILTER) { + // Dynamic Filter Rule + $objWriter->writeAttribute('type', $rule->getGrouping()); + $val = $column->getAttribute('val'); + if ($val !== null) { + $objWriter->writeAttribute('val', "$val"); + } + $maxVal = $column->getAttribute('maxVal'); + if ($maxVal !== null) { + $objWriter->writeAttribute('maxVal', "$maxVal"); + } + } elseif ($rule->getRuleType() === Rule::AUTOFILTER_RULETYPE_TOPTENFILTER) { + // Top 10 Filter Rule + $ruleValue = $rule->getValue(); + if (!is_array($ruleValue)) { + $objWriter->writeAttribute('val', "$ruleValue"); + } + $objWriter->writeAttribute('percent', (($rule->getOperator() === Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_PERCENT) ? '1' : '0')); + $objWriter->writeAttribute('top', (($rule->getGrouping() === Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_TOP) ? '1' : '0')); + } else { + // Filter, DateGroupItem or CustomFilter + $objWriter->startElement($rule->getRuleType()); + + if ($rule->getOperator() !== Rule::AUTOFILTER_COLUMN_RULE_EQUAL) { + $objWriter->writeAttribute('operator', $rule->getOperator()); + } + if ($rule->getRuleType() === Rule::AUTOFILTER_RULETYPE_DATEGROUP) { + // Date Group filters + $ruleValue = $rule->getValue(); + if (is_array($ruleValue)) { + foreach ($ruleValue as $key => $value) { + $objWriter->writeAttribute($key, "$value"); + } + } + $objWriter->writeAttribute('dateTimeGrouping', $rule->getGrouping()); + } else { + $ruleValue = $rule->getValue(); + if (!is_array($ruleValue)) { + $objWriter->writeAttribute('val', "$ruleValue"); + } + } + + $objWriter->endElement(); + } + } + + $objWriter->endElement(); + + $objWriter->endElement(); + } + } + } + $objWriter->endElement(); + } + } + + /** + * Write Table. + */ + private function writeTable(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + $tableCount = $worksheet->getTableCollection()->count(); + + $objWriter->startElement('tableParts'); + $objWriter->writeAttribute('count', (string) $tableCount); + + for ($t = 1; $t <= $tableCount; ++$t) { + $objWriter->startElement('tablePart'); + $objWriter->writeAttribute('r:id', 'rId_table_' . $t); + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + + /** + * Write PageSetup. + */ + private function writePageSetup(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + // pageSetup + $objWriter->startElement('pageSetup'); + $objWriter->writeAttribute('paperSize', $worksheet->getPageSetup()->getPaperSize()); + $objWriter->writeAttribute('orientation', $worksheet->getPageSetup()->getOrientation()); + + if ($worksheet->getPageSetup()->getScale() !== null) { + $objWriter->writeAttribute('scale', $worksheet->getPageSetup()->getScale()); + } + if ($worksheet->getPageSetup()->getFitToHeight() !== null) { + $objWriter->writeAttribute('fitToHeight', $worksheet->getPageSetup()->getFitToHeight()); + } else { + $objWriter->writeAttribute('fitToHeight', '0'); + } + if ($worksheet->getPageSetup()->getFitToWidth() !== null) { + $objWriter->writeAttribute('fitToWidth', $worksheet->getPageSetup()->getFitToWidth()); + } else { + $objWriter->writeAttribute('fitToWidth', '0'); + } + if ($worksheet->getPageSetup()->getFirstPageNumber() !== null) { + $objWriter->writeAttribute('firstPageNumber', $worksheet->getPageSetup()->getFirstPageNumber()); + $objWriter->writeAttribute('useFirstPageNumber', '1'); + } + $objWriter->writeAttribute('pageOrder', $worksheet->getPageSetup()->getPageOrder()); + + $getUnparsedLoadedData = $worksheet->getParent()->getUnparsedLoadedData(); + if (isset($getUnparsedLoadedData['sheets'][$worksheet->getCodeName()]['pageSetupRelId'])) { + $objWriter->writeAttribute('r:id', $getUnparsedLoadedData['sheets'][$worksheet->getCodeName()]['pageSetupRelId']); + } + + $objWriter->endElement(); + } + + /** + * Write Header / Footer. + */ + private function writeHeaderFooter(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + // headerFooter + $objWriter->startElement('headerFooter'); + $objWriter->writeAttribute('differentOddEven', ($worksheet->getHeaderFooter()->getDifferentOddEven() ? 'true' : 'false')); + $objWriter->writeAttribute('differentFirst', ($worksheet->getHeaderFooter()->getDifferentFirst() ? 'true' : 'false')); + $objWriter->writeAttribute('scaleWithDoc', ($worksheet->getHeaderFooter()->getScaleWithDocument() ? 'true' : 'false')); + $objWriter->writeAttribute('alignWithMargins', ($worksheet->getHeaderFooter()->getAlignWithMargins() ? 'true' : 'false')); + + $objWriter->writeElement('oddHeader', $worksheet->getHeaderFooter()->getOddHeader()); + $objWriter->writeElement('oddFooter', $worksheet->getHeaderFooter()->getOddFooter()); + $objWriter->writeElement('evenHeader', $worksheet->getHeaderFooter()->getEvenHeader()); + $objWriter->writeElement('evenFooter', $worksheet->getHeaderFooter()->getEvenFooter()); + $objWriter->writeElement('firstHeader', $worksheet->getHeaderFooter()->getFirstHeader()); + $objWriter->writeElement('firstFooter', $worksheet->getHeaderFooter()->getFirstFooter()); + $objWriter->endElement(); + } + + /** + * Write Breaks. + */ + private function writeBreaks(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + // Get row and column breaks + $aRowBreaks = []; + $aColumnBreaks = []; + foreach ($worksheet->getBreaks() as $cell => $breakType) { + if ($breakType == PhpspreadsheetWorksheet::BREAK_ROW) { + $aRowBreaks[] = $cell; + } elseif ($breakType == PhpspreadsheetWorksheet::BREAK_COLUMN) { + $aColumnBreaks[] = $cell; + } + } + + // rowBreaks + if (!empty($aRowBreaks)) { + $objWriter->startElement('rowBreaks'); + $objWriter->writeAttribute('count', count($aRowBreaks)); + $objWriter->writeAttribute('manualBreakCount', count($aRowBreaks)); + + foreach ($aRowBreaks as $cell) { + $coords = Coordinate::coordinateFromString($cell); + + $objWriter->startElement('brk'); + $objWriter->writeAttribute('id', $coords[1]); + $objWriter->writeAttribute('man', '1'); + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + + // Second, write column breaks + if (!empty($aColumnBreaks)) { + $objWriter->startElement('colBreaks'); + $objWriter->writeAttribute('count', count($aColumnBreaks)); + $objWriter->writeAttribute('manualBreakCount', count($aColumnBreaks)); + + foreach ($aColumnBreaks as $cell) { + $coords = Coordinate::coordinateFromString($cell); + + $objWriter->startElement('brk'); + $objWriter->writeAttribute('id', Coordinate::columnIndexFromString($coords[0]) - 1); + $objWriter->writeAttribute('man', '1'); + $objWriter->endElement(); + } + + $objWriter->endElement(); + } + } + + /** + * Write SheetData. + * + * @param string[] $stringTable String table + */ + private function writeSheetData(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet, array $stringTable): void + { + // Flipped stringtable, for faster index searching + $aFlippedStringTable = $this->getParentWriter()->getWriterPartstringtable()->flipStringTable($stringTable); + + // sheetData + $objWriter->startElement('sheetData'); + + // Get column count + $colCount = Coordinate::columnIndexFromString($worksheet->getHighestColumn()); + + // Highest row number + $highestRow = $worksheet->getHighestRow(); + + // Loop through cells building a comma-separated list of the columns in each row + // This is a trade-off between the memory usage that is required for a full array of columns, + // and execution speed + /** @var array<int, string> $cellsByRow */ + $cellsByRow = []; + foreach ($worksheet->getCoordinates() as $coordinate) { + [$column, $row] = Coordinate::coordinateFromString($coordinate); + $cellsByRow[$row] = $cellsByRow[$row] ?? ''; + $cellsByRow[$row] .= "{$column},"; + } + + $currentRow = 0; + while ($currentRow++ < $highestRow) { + $isRowSet = isset($cellsByRow[$currentRow]); + if ($isRowSet || $worksheet->rowDimensionExists($currentRow)) { + // Get row dimension + $rowDimension = $worksheet->getRowDimension($currentRow); + + // Write current row? + $writeCurrentRow = $isRowSet || $rowDimension->getRowHeight() >= 0 || $rowDimension->getVisible() === false || $rowDimension->getCollapsed() === true || $rowDimension->getOutlineLevel() > 0 || $rowDimension->getXfIndex() !== null; + + if ($writeCurrentRow) { + // Start a new row + $objWriter->startElement('row'); + $objWriter->writeAttribute('r', $currentRow); + $objWriter->writeAttribute('spans', '1:' . $colCount); + + // Row dimensions + if ($rowDimension->getRowHeight() >= 0) { + $objWriter->writeAttribute('customHeight', '1'); + $objWriter->writeAttribute('ht', StringHelper::formatNumber($rowDimension->getRowHeight())); + } + + // Row visibility + if (!$rowDimension->getVisible() === true) { + $objWriter->writeAttribute('hidden', 'true'); + } + + // Collapsed + if ($rowDimension->getCollapsed() === true) { + $objWriter->writeAttribute('collapsed', 'true'); + } + + // Outline level + if ($rowDimension->getOutlineLevel() > 0) { + $objWriter->writeAttribute('outlineLevel', $rowDimension->getOutlineLevel()); + } + + // Style + if ($rowDimension->getXfIndex() !== null) { + $objWriter->writeAttribute('s', $rowDimension->getXfIndex()); + $objWriter->writeAttribute('customFormat', '1'); + } + + // Write cells + if (isset($cellsByRow[$currentRow])) { + // We have a comma-separated list of column names (with a trailing entry); split to an array + $columnsInRow = explode(',', $cellsByRow[$currentRow]); + array_pop($columnsInRow); + foreach ($columnsInRow as $column) { + // Write cell + $this->writeCell($objWriter, $worksheet, "{$column}{$currentRow}", $aFlippedStringTable); + } + } + + // End row + $objWriter->endElement(); + } + } + } + + $objWriter->endElement(); + } + + /** + * @param RichText|string $cellValue + */ + private function writeCellInlineStr(XMLWriter $objWriter, string $mappedType, $cellValue): void + { + $objWriter->writeAttribute('t', $mappedType); + if (!$cellValue instanceof RichText) { + $objWriter->startElement('is'); + $objWriter->writeElement( + 't', + StringHelper::controlCharacterPHP2OOXML(htmlspecialchars($cellValue, Settings::htmlEntityFlags())) + ); + $objWriter->endElement(); + } elseif ($cellValue instanceof RichText) { + $objWriter->startElement('is'); + $this->getParentWriter()->getWriterPartstringtable()->writeRichText($objWriter, $cellValue); + $objWriter->endElement(); + } + } + + /** + * @param RichText|string $cellValue + * @param string[] $flippedStringTable + */ + private function writeCellString(XMLWriter $objWriter, string $mappedType, $cellValue, array $flippedStringTable): void + { + $objWriter->writeAttribute('t', $mappedType); + if (!$cellValue instanceof RichText) { + self::writeElementIf($objWriter, isset($flippedStringTable[$cellValue]), 'v', $flippedStringTable[$cellValue] ?? ''); + } else { + $objWriter->writeElement('v', $flippedStringTable[$cellValue->getHashCode()]); + } + } + + /** + * @param float|int $cellValue + */ + private function writeCellNumeric(XMLWriter $objWriter, $cellValue): void + { + //force a decimal to be written if the type is float + if (is_float($cellValue)) { + // force point as decimal separator in case current locale uses comma + $cellValue = str_replace(',', '.', (string) $cellValue); + if (strpos($cellValue, '.') === false) { + $cellValue = $cellValue . '.0'; + } + } + $objWriter->writeElement('v', $cellValue); + } + + private function writeCellBoolean(XMLWriter $objWriter, string $mappedType, bool $cellValue): void + { + $objWriter->writeAttribute('t', $mappedType); + $objWriter->writeElement('v', $cellValue ? '1' : '0'); + } + + private function writeCellError(XMLWriter $objWriter, string $mappedType, string $cellValue, string $formulaerr = '#NULL!'): void + { + $objWriter->writeAttribute('t', $mappedType); + $cellIsFormula = substr($cellValue, 0, 1) === '='; + self::writeElementIf($objWriter, $cellIsFormula, 'f', Xlfn::addXlfnStripEquals($cellValue)); + $objWriter->writeElement('v', $cellIsFormula ? $formulaerr : $cellValue); + } + + private function writeCellFormula(XMLWriter $objWriter, string $cellValue, Cell $cell): void + { + $calculatedValue = $this->getParentWriter()->getPreCalculateFormulas() ? $cell->getCalculatedValue() : $cellValue; + if (is_string($calculatedValue)) { + if (ErrorValue::isError($calculatedValue)) { + $this->writeCellError($objWriter, 'e', $cellValue, $calculatedValue); + + return; + } + $objWriter->writeAttribute('t', 'str'); + $calculatedValue = StringHelper::controlCharacterPHP2OOXML($calculatedValue); + } elseif (is_bool($calculatedValue)) { + $objWriter->writeAttribute('t', 'b'); + $calculatedValue = (int) $calculatedValue; + } + + $attributes = $cell->getFormulaAttributes(); + if (($attributes['t'] ?? null) === 'array') { + $objWriter->startElement('f'); + $objWriter->writeAttribute('t', 'array'); + $objWriter->writeAttribute('ref', $cell->getCoordinate()); + $objWriter->writeAttribute('aca', '1'); + $objWriter->writeAttribute('ca', '1'); + $objWriter->text(substr($cellValue, 1)); + $objWriter->endElement(); + } else { + $objWriter->writeElement('f', Xlfn::addXlfnStripEquals($cellValue)); + self::writeElementIf( + $objWriter, + $this->getParentWriter()->getOffice2003Compatibility() === false, + 'v', + ($this->getParentWriter()->getPreCalculateFormulas() && !is_array($calculatedValue) && substr($calculatedValue ?? '', 0, 1) !== '#') + ? StringHelper::formatNumber($calculatedValue) : '0' + ); + } + } + + /** + * Write Cell. + * + * @param string $cellAddress Cell Address + * @param string[] $flippedStringTable String table (flipped), for faster index searching + */ + private function writeCell(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet, string $cellAddress, array $flippedStringTable): void + { + // Cell + $pCell = $worksheet->getCell($cellAddress); + $objWriter->startElement('c'); + $objWriter->writeAttribute('r', $cellAddress); + + // Sheet styles + $xfi = $pCell->getXfIndex(); + self::writeAttributeIf($objWriter, $xfi, 's', $xfi); + + // If cell value is supplied, write cell value + $cellValue = $pCell->getValue(); + if (is_object($cellValue) || $cellValue !== '') { + // Map type + $mappedType = $pCell->getDataType(); + + // Write data depending on its type + switch (strtolower($mappedType)) { + case 'inlinestr': // Inline string + $this->writeCellInlineStr($objWriter, $mappedType, $cellValue); + + break; + case 's': // String + $this->writeCellString($objWriter, $mappedType, $cellValue, $flippedStringTable); + + break; + case 'f': // Formula + $this->writeCellFormula($objWriter, $cellValue, $pCell); + + break; + case 'n': // Numeric + $this->writeCellNumeric($objWriter, $cellValue); + + break; + case 'b': // Boolean + $this->writeCellBoolean($objWriter, $mappedType, $cellValue); + + break; + case 'e': // Error + $this->writeCellError($objWriter, $mappedType, $cellValue); + } + } + + $objWriter->endElement(); + } + + /** + * Write Drawings. + * + * @param bool $includeCharts Flag indicating if we should include drawing details for charts + */ + private function writeDrawings(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet, $includeCharts = false): void + { + $unparsedLoadedData = $worksheet->getParent()->getUnparsedLoadedData(); + $hasUnparsedDrawing = isset($unparsedLoadedData['sheets'][$worksheet->getCodeName()]['drawingOriginalIds']); + $chartCount = ($includeCharts) ? $worksheet->getChartCollection()->count() : 0; + if ($chartCount == 0 && $worksheet->getDrawingCollection()->count() == 0 && !$hasUnparsedDrawing) { + return; + } + + // If sheet contains drawings, add the relationships + $objWriter->startElement('drawing'); + + $rId = 'rId1'; + if (isset($unparsedLoadedData['sheets'][$worksheet->getCodeName()]['drawingOriginalIds'])) { + $drawingOriginalIds = $unparsedLoadedData['sheets'][$worksheet->getCodeName()]['drawingOriginalIds']; + // take first. In future can be overriten + // (! synchronize with \PhpOffice\PhpSpreadsheet\Writer\Xlsx\Rels::writeWorksheetRelationships) + $rId = reset($drawingOriginalIds); + } + + $objWriter->writeAttribute('r:id', $rId); + $objWriter->endElement(); + } + + /** + * Write LegacyDrawing. + */ + private function writeLegacyDrawing(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + // If sheet contains comments, add the relationships + if (count($worksheet->getComments()) > 0) { + $objWriter->startElement('legacyDrawing'); + $objWriter->writeAttribute('r:id', 'rId_comments_vml1'); + $objWriter->endElement(); + } + } + + /** + * Write LegacyDrawingHF. + */ + private function writeLegacyDrawingHF(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + // If sheet contains images, add the relationships + if (count($worksheet->getHeaderFooter()->getImages()) > 0) { + $objWriter->startElement('legacyDrawingHF'); + $objWriter->writeAttribute('r:id', 'rId_headerfooter_vml1'); + $objWriter->endElement(); + } + } + + private function writeAlternateContent(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + if (empty($worksheet->getParent()->getUnparsedLoadedData()['sheets'][$worksheet->getCodeName()]['AlternateContents'])) { + return; + } + + foreach ($worksheet->getParent()->getUnparsedLoadedData()['sheets'][$worksheet->getCodeName()]['AlternateContents'] as $alternateContent) { + $objWriter->writeRaw($alternateContent); + } + } + + /** + * write <ExtLst> + * only implementation conditionalFormattings. + * + * @url https://docs.microsoft.com/en-us/openspecs/office_standards/ms-xlsx/07d607af-5618-4ca2-b683-6a78dc0d9627 + */ + private function writeExtLst(XMLWriter $objWriter, PhpspreadsheetWorksheet $worksheet): void + { + $conditionalFormattingRuleExtList = []; + foreach ($worksheet->getConditionalStylesCollection() as $cellCoordinate => $conditionalStyles) { + /** @var Conditional $conditional */ + foreach ($conditionalStyles as $conditional) { + $dataBar = $conditional->getDataBar(); + // @phpstan-ignore-next-line + if ($dataBar && $dataBar->getConditionalFormattingRuleExt()) { + $conditionalFormattingRuleExtList[] = $dataBar->getConditionalFormattingRuleExt(); + } + } + } + + if (count($conditionalFormattingRuleExtList) > 0) { + $conditionalFormattingRuleExtNsPrefix = 'x14'; + $objWriter->startElement('extLst'); + $objWriter->startElement('ext'); + $objWriter->writeAttribute('uri', '{78C0D931-6437-407d-A8EE-F0AAD7539E65}'); + $objWriter->startElementNs($conditionalFormattingRuleExtNsPrefix, 'conditionalFormattings', null); + foreach ($conditionalFormattingRuleExtList as $extension) { + self::writeExtConditionalFormattingElements($objWriter, $extension); + } + $objWriter->endElement(); //end conditionalFormattings + $objWriter->endElement(); //end ext + $objWriter->endElement(); //end extLst + } + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/WriterPart.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/WriterPart.php new file mode 100644 index 0000000..0bfb356 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/WriterPart.php @@ -0,0 +1,33 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +use PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +abstract class WriterPart +{ + /** + * Parent Xlsx object. + * + * @var Xlsx + */ + private $parentWriter; + + /** + * Get parent Xlsx object. + * + * @return Xlsx + */ + public function getParentWriter() + { + return $this->parentWriter; + } + + /** + * Set parent Xlsx object. + */ + public function __construct(Xlsx $writer) + { + $this->parentWriter = $writer; + } +} diff --git a/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Xlfn.php b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Xlfn.php new file mode 100644 index 0000000..6fc0c66 --- /dev/null +++ b/src/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Xlfn.php @@ -0,0 +1,166 @@ +<?php + +namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; + +class Xlfn +{ + const XLFNREGEXP = '/(?<!_xlfn[.])\\b(' + // functions added with Excel 2010 + . 'beta[.]dist' + . '|beta[.]inv' + . '|binom[.]dist' + . '|binom[.]inv' + . '|ceiling[.]precise' + . '|chisq[.]dist' + . '|chisq[.]dist[.]rt' + . '|chisq[.]inv' + . '|chisq[.]inv[.]rt' + . '|chisq[.]test' + . '|confidence[.]norm' + . '|confidence[.]t' + . '|covariance[.]p' + . '|covariance[.]s' + . '|erf[.]precise' + . '|erfc[.]precise' + . '|expon[.]dist' + . '|f[.]dist' + . '|f[.]dist[.]rt' + . '|f[.]inv' + . '|f[.]inv[.]rt' + . '|f[.]test' + . '|floor[.]precise' + . '|gamma[.]dist' + . '|gamma[.]inv' + . '|gammaln[.]precise' + . '|lognorm[.]dist' + . '|lognorm[.]inv' + . '|mode[.]mult' + . '|mode[.]sngl' + . '|negbinom[.]dist' + . '|networkdays[.]intl' + . '|norm[.]dist' + . '|norm[.]inv' + . '|norm[.]s[.]dist' + . '|norm[.]s[.]inv' + . '|percentile[.]exc' + . '|percentile[.]inc' + . '|percentrank[.]exc' + . '|percentrank[.]inc' + . '|poisson[.]dist' + . '|quartile[.]exc' + . '|quartile[.]inc' + . '|rank[.]avg' + . '|rank[.]eq' + . '|stdev[.]p' + . '|stdev[.]s' + . '|t[.]dist' + . '|t[.]dist[.]2t' + . '|t[.]dist[.]rt' + . '|t[.]inv' + . '|t[.]inv[.]2t' + . '|t[.]test' + . '|var[.]p' + . '|var[.]s' + . '|weibull[.]dist' + . '|z[.]test' + // functions added with Excel 2013 + . '|acot' + . '|acoth' + . '|arabic' + . '|averageifs' + . '|binom[.]dist[.]range' + . '|bitand' + . '|bitlshift' + . '|bitor' + . '|bitrshift' + . '|bitxor' + . '|ceiling[.]math' + . '|combina' + . '|cot' + . '|coth' + . '|csc' + . '|csch' + . '|days' + . '|dbcs' + . '|decimal' + . '|encodeurl' + . '|filterxml' + . '|floor[.]math' + . '|formulatext' + . '|gamma' + . '|gauss' + . '|ifna' + . '|imcosh' + . '|imcot' + . '|imcsc' + . '|imcsch' + . '|imsec' + . '|imsech' + . '|imsinh' + . '|imtan' + . '|isformula' + . '|iso[.]ceiling' + . '|isoweeknum' + . '|munit' + . '|numbervalue' + . '|pduration' + . '|permutationa' + . '|phi' + . '|rri' + . '|sec' + . '|sech' + . '|sheet' + . '|sheets' + . '|skew[.]p' + . '|unichar' + . '|unicode' + . '|webservice' + . '|xor' + // functions added with Excel 2016 + . '|forecast[.]et2' + . '|forecast[.]ets[.]confint' + . '|forecast[.]ets[.]seasonality' + . '|forecast[.]ets[.]stat' + . '|forecast[.]linear' + . '|switch' + // functions added with Excel 2019 + . '|concat' + . '|countifs' + . '|ifs' + . '|maxifs' + . '|minifs' + . '|sumifs' + . '|textjoin' + // functions added with Excel 365 + . '|filter' + . '|randarray' + . '|sequence' + . '|sort' + . '|sortby' + . '|unique' + . '|xlookup' + . '|xmatch' + . '|arraytotext' + . '|call' + . '|let' + . '|register[.]id' + . '|valuetotext' + . ')(?=\\s*[(])/i'; + + /** + * Prefix function name in string with _xlfn. where required. + */ + public static function addXlfn(string $funcstring): string + { + return (string) preg_replace(self::XLFNREGEXP, '_xlfn.$1', $funcstring); + } + + /** + * Prefix function name in string with _xlfn. where required. + * Leading character, expected to be equals sign, is stripped. + */ + public static function addXlfnStripEquals(string $funcstring): string + { + return self::addXlfn(substr($funcstring, 1)); + } +}